From d5378ac285f200a9a75b52030856c77f4697325f Mon Sep 17 00:00:00 2001 From: Christoph Helma Date: Tue, 20 Jul 2010 11:25:37 +0200 Subject: @@config -> CONFIG --- Rakefile | 20 ++++++++++---------- application.rb | 2 +- db/migrate/002_init_reports.rb | 4 ++-- example.rb | 26 +++++++++++++------------- lib/validation_db.rb | 10 +++++----- nightly/nightly.rb | 4 ++-- report/environment.rb | 10 +++++----- report/report_persistance.rb | 4 ++-- report/report_test.rb | 10 +++++----- test/test_examples.rb | 28 ++++++++++++++-------------- test/test_examples_util.rb | 8 ++++---- 11 files changed, 63 insertions(+), 63 deletions(-) diff --git a/Rakefile b/Rakefile index 3c39279..c344157 100644 --- a/Rakefile +++ b/Rakefile @@ -40,8 +40,8 @@ task :load_config do config_dir = File.join(basedir, "config") config_file = File.join(config_dir, "#{ENV['RACK_ENV']}.yaml") if File.exist?(config_file) - @@config = YAML.load_file(config_file) - raise "could not load config, config file: "+config_file.to_s unless @@config + CONFIG = YAML.load_file(config_file) + raise "could not load config, config file: "+config_file.to_s unless CONFIG end puts "config loaded" end @@ -49,14 +49,14 @@ end # USER VERSION 0 instead #desc "Clear database" #task :clear_db => :load_config do -# if @@config[:database][:adapter]=="mysql" +# if CONFIG[:database][:adapter]=="mysql" # clear = nil # IO.popen("locate clear_mysql.sh"){ |f| clear=f.gets.chomp("\n") } # raise "clear_mysql.sh not found" unless clear -# cmd = clear+" "+@@config[:database][:username]+" "+@@config[:database][:password]+" "+@@config[:database][:database] +# cmd = clear+" "+CONFIG[:database][:username]+" "+CONFIG[:database][:password]+" "+CONFIG[:database][:database] # IO.popen(cmd){ |f| puts f.gets } # else -# raise "clear not implemented for database-type: "+@@config[:database][:adapter] +# raise "clear not implemented for database-type: "+CONFIG[:database][:adapter] # end #end @@ -64,11 +64,11 @@ desc "Migrate the database through scripts in db/migrate. Target specific versio task :migrate => :load_config do require 'active_record' ActiveRecord::Base.establish_connection( - :adapter => @@config[:database][:adapter], - :host => @@config[:database][:host], - :database => @@config[:database][:database], - :username => @@config[:database][:username], - :password => @@config[:database][:password] + :adapter => CONFIG[:database][:adapter], + :host => CONFIG[:database][:host], + :database => CONFIG[:database][:database], + :username => CONFIG[:database][:username], + :password => CONFIG[:database][:password] ) ActiveRecord::Base.logger = Logger.new($stdout) ActiveRecord::Migrator.migrate('db/migrate', ENV["VERSION"] ? ENV["VERSION"].to_i : 2 ) diff --git a/application.rb b/application.rb index 820fc83..f7208a4 100644 --- a/application.rb +++ b/application.rb @@ -1,5 +1,5 @@ require 'rubygems' -gem 'opentox-ruby-api-wrapper', '= 1.5.7' +gem 'opentox-ruby-api-wrapper', '= 1.6.0' [ 'sinatra', 'sinatra/url_for', 'opentox-ruby-api-wrapper', 'logger' ].each do |lib| require lib end diff --git a/db/migrate/002_init_reports.rb b/db/migrate/002_init_reports.rb index 8029223..dcf44a1 100644 --- a/db/migrate/002_init_reports.rb +++ b/db/migrate/002_init_reports.rb @@ -22,9 +22,9 @@ class InitReports < ActiveRecord::Migration def self.down drop_table :report_datum if table_exists? :report_datum - if @@config[:reports] and @@config[:reports][:report_dir] + if CONFIG[:reports] and CONFIG[:reports][:report_dir] ["validation", "crossvalidation", "algorithm_comparison"].each do |t| - dir = File.join(@@config[:reports][:report_dir],t) + dir = File.join(CONFIG[:reports][:report_dir],t) if File.exist?(dir) puts "deleting dir "+dir.to_s FileUtils.rm_rf(dir) diff --git a/example.rb b/example.rb index b0de21d..b3eed88 100644 --- a/example.rb +++ b/example.rb @@ -5,13 +5,13 @@ class Example @@file=File.new("data/hamster_carcinogenicity.yaml","r") @@file_type="text/x-yaml" - @@model=File.join @@config[:services]["opentox-model"],"1" + @@model=File.join CONFIG[:services]["opentox-model"],"1" @@feature= URI.encode("http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB)") - @@alg = File.join @@config[:services]["opentox-algorithm"],"lazar" - @@alg_params = "feature_generation_uri="+File.join(@@config[:services]["opentox-algorithm"],"fminer") - @@data=File.join @@config[:services]["opentox-dataset"],"1" - @@train_data=File.join @@config[:services]["opentox-dataset"],"2" - @@test_data=File.join @@config[:services]["opentox-dataset"],"3" + @@alg = File.join CONFIG[:services]["opentox-algorithm"],"lazar" + @@alg_params = "feature_generation_uri="+File.join(CONFIG[:services]["opentox-algorithm"],"fminer") + @@data=File.join CONFIG[:services]["opentox-dataset"],"1" + @@train_data=File.join CONFIG[:services]["opentox-dataset"],"2" + @@test_data=File.join CONFIG[:services]["opentox-dataset"],"3" @@css_file="http://apps.ideaconsult.net:8080/ToxPredict/style/global.css" @@summary="" @@ -26,7 +26,7 @@ class Example end file.close - sub = { "validation_service" => @@config[:services]["opentox-validation"].chomp("/"), + sub = { "validation_service" => CONFIG[:services]["opentox-validation"].chomp("/"), "validation_id" => "1", "model_uri" => @@model, "dataset_uri" => @@data, @@ -58,17 +58,17 @@ class Example ActiveRecord::Migrator.migrate('db/migrate', 1 ) ActiveRecord::Migrator.migrate('db/migrate', 2 ) - #delete_all(@@config[:services]["opentox-dataset"]) - log OpenTox::RestClientWrapper.delete @@config[:services]["opentox-dataset"] + #delete_all(CONFIG[:services]["opentox-dataset"]) + log OpenTox::RestClientWrapper.delete CONFIG[:services]["opentox-dataset"] log "upload dataset" halt 400,"File not found: "+@@file.path.to_s unless File.exist?(@@file.path) data = File.read(@@file.path) - data_uri = OpenTox::RestClientWrapper.post(@@config[:services]["opentox-dataset"],{:content_type => @@file_type},data).chomp("\n") + data_uri = OpenTox::RestClientWrapper.post(CONFIG[:services]["opentox-dataset"],{:content_type => @@file_type},data).chomp("\n") log "train-test-validation" - #delete_all(@@config[:services]["opentox-model"]) - OpenTox::RestClientWrapper.delete @@config[:services]["opentox-model"] + #delete_all(CONFIG[:services]["opentox-model"]) + OpenTox::RestClientWrapper.delete CONFIG[:services]["opentox-model"] split_params = Validation::Util.train_test_dataset_split(data_uri, URI.decode(@@feature), 0.9, 1) v = Validation::Validation.new :training_dataset_uri => split_params[:training_dataset_uri], @@ -84,7 +84,7 @@ class Example cv.perform_cv( @@alg_params ) log "create validation report" - rep = Reports::ReportService.new(File.join(@@config[:services]["opentox-validation"],"report")) + rep = Reports::ReportService.new(File.join(CONFIG[:services]["opentox-validation"],"report")) rep.delete_all_reports("validation") rep.create_report("validation",v.validation_uri) diff --git a/lib/validation_db.rb b/lib/validation_db.rb index aea036f..cb0267c 100644 --- a/lib/validation_db.rb +++ b/lib/validation_db.rb @@ -6,11 +6,11 @@ require "lib/merge.rb" unless ActiveRecord::Base.connected? ActiveRecord::Base.establish_connection( - :adapter => @@config[:database][:adapter], - :host => @@config[:database][:host], - :database => @@config[:database][:database], - :username => @@config[:database][:username], - :password => @@config[:database][:password] + :adapter => CONFIG[:database][:adapter], + :host => CONFIG[:database][:host], + :database => CONFIG[:database][:database], + :username => CONFIG[:database][:username], + :password => CONFIG[:database][:password] ) ActiveRecord::Base.logger = Logger.new("/dev/null") end diff --git a/nightly/nightly.rb b/nightly/nightly.rb index f402691..f68691e 100644 --- a/nightly/nightly.rb +++ b/nightly/nightly.rb @@ -98,7 +98,7 @@ class Nightly end #benchmarks.collect{|b| b.uris}.join(",") - File.join(@@config[:services]["opentox-validation"],"nightly") + File.join(CONFIG[:services]["opentox-validation"],"nightly") end if defined?(halt) halt 202,task_uri @@ -219,4 +219,4 @@ class Nightly end end -end \ No newline at end of file +end diff --git a/report/environment.rb b/report/environment.rb index 7c9aa8b..051c3ce 100644 --- a/report/environment.rb +++ b/report/environment.rb @@ -8,11 +8,11 @@ gem 'ruby-plot', '= 0.0.2' unless ActiveRecord::Base.connected? ActiveRecord::Base.establish_connection( - :adapter => @@config[:database][:adapter], - :host => @@config[:database][:host], - :database => @@config[:database][:database], - :username => @@config[:database][:username], - :password => @@config[:database][:password] + :adapter => CONFIG[:database][:adapter], + :host => CONFIG[:database][:host], + :database => CONFIG[:database][:database], + :username => CONFIG[:database][:username], + :password => CONFIG[:database][:password] ) ActiveRecord::Base.logger = Logger.new("/dev/null") end diff --git a/report/report_persistance.rb b/report/report_persistance.rb index a06dba8..04489c1 100644 --- a/report/report_persistance.rb +++ b/report/report_persistance.rb @@ -67,8 +67,8 @@ end class Reports::FileReportPersistance < Reports::ReportPersistance def initialize() - raise "pls specify report-directory (:reports -> :report_dir) in config file" unless @@config[:reports] and @@config[:reports][:report_dir] - @report_dir = @@config[:reports][:report_dir] + raise "pls specify report-directory (:reports -> :report_dir) in config file" unless CONFIG[:reports] and CONFIG[:reports][:report_dir] + @report_dir = CONFIG[:reports][:report_dir] FileUtils.mkdir @report_dir.to_s unless File.directory?(@report_dir) raise "report cannot be found nor created" unless File.directory?(@report_dir) LOGGER.debug "reports are stored in "+@report_dir.to_s diff --git a/report/report_test.rb b/report/report_test.rb index ff4e3db..119a672 100644 --- a/report/report_test.rb +++ b/report/report_test.rb @@ -113,12 +113,12 @@ end #class Reports::ReportServiceTest < Test::Unit::TestCase # include Lib::TestUtil # -# WS_VAL = @@config[:services]["opentox-validation"] -# WS_DATA=@@config[:services]["opentox-dataset"] +# WS_VAL = CONFIG[:services]["opentox-validation"] +# WS_DATA=CONFIG[:services]["opentox-dataset"] # FILE=File.new("data/hamster_carcinogenicity.owl","r") # -# WS_CLASS_ALG=File.join(@@config[:services]["opentox-algorithm"],"lazar") -# WS_FEATURE_ALG=File.join(@@config[:services]["opentox-algorithm"],"fminer") +# WS_CLASS_ALG=File.join(CONFIG[:services]["opentox-algorithm"],"lazar") +# WS_FEATURE_ALG=File.join(CONFIG[:services]["opentox-algorithm"],"fminer") # # #WS_CLASS_ALG_2="localhost:4008/algorithm" # #WS_FEATURE_ALG_2=nil @@ -328,4 +328,4 @@ end # # end # -#end \ No newline at end of file +#end diff --git a/test/test_examples.rb b/test/test_examples.rb index beeaa30..ae4f617 100644 --- a/test/test_examples.rb +++ b/test/test_examples.rb @@ -20,15 +20,15 @@ module ValidationExamples class LazarHamsterSplit < HamsterSplit def initialize - @algorithm_uri = File.join(@@config[:services]["opentox-algorithm"],"lazar") - @algorithm_params = "feature_generation_uri="+File.join(@@config[:services]["opentox-algorithm"],"fminer") + @algorithm_uri = File.join(CONFIG[:services]["opentox-algorithm"],"lazar") + @algorithm_params = "feature_generation_uri="+File.join(CONFIG[:services]["opentox-algorithm"],"fminer") super end end class MajorityHamsterSplit < HamsterSplit def initialize - @algorithm_uri = File.join(@@config[:services]["opentox-majority"],"/class/algorithm") + @algorithm_uri = File.join(CONFIG[:services]["opentox-majority"],"/class/algorithm") super end end @@ -46,15 +46,15 @@ module ValidationExamples class MajorityHamsterTrainingTest < HamsterTrainingTest def initialize - @algorithm_uri = File.join(@@config[:services]["opentox-majority"],"/class/algorithm") + @algorithm_uri = File.join(CONFIG[:services]["opentox-majority"],"/class/algorithm") super end end class LazarHamsterTrainingTest < HamsterTrainingTest def initialize - @algorithm_uri = File.join(@@config[:services]["opentox-algorithm"],"lazar") - @algorithm_params = "feature_generation_uri="+File.join(@@config[:services]["opentox-algorithm"],"fminer") + @algorithm_uri = File.join(CONFIG[:services]["opentox-algorithm"],"lazar") + @algorithm_params = "feature_generation_uri="+File.join(CONFIG[:services]["opentox-algorithm"],"fminer") super end end @@ -71,15 +71,15 @@ module ValidationExamples class MajorityHamsterCrossvalidation < HamsterCrossvalidation def initialize - @algorithm_uri = File.join(@@config[:services]["opentox-majority"],"/class/algorithm") + @algorithm_uri = File.join(CONFIG[:services]["opentox-majority"],"/class/algorithm") super end end class LazarHamsterCrossvalidation < HamsterCrossvalidation def initialize - @algorithm_uri = File.join(@@config[:services]["opentox-algorithm"],"lazar") - @algorithm_params = "feature_generation_uri="+File.join(@@config[:services]["opentox-algorithm"],"fminer") + @algorithm_uri = File.join(CONFIG[:services]["opentox-algorithm"],"lazar") + @algorithm_params = "feature_generation_uri="+File.join(CONFIG[:services]["opentox-algorithm"],"fminer") super end end @@ -95,15 +95,15 @@ module ValidationExamples class MajorityISTHamsterCrossvalidation < ISTHamsterCrossvalidationInsilico def initialize - @algorithm_uri = File.join(@@config[:services]["opentox-majority"],"/class/algorithm") + @algorithm_uri = File.join(CONFIG[:services]["opentox-majority"],"/class/algorithm") super end end class LazarISTHamsterCrossvalidation < ISTHamsterCrossvalidationInsilico def initialize - @algorithm_uri = File.join(@@config[:services]["opentox-algorithm"],"lazar") - @algorithm_params = "feature_generation_uri="+File.join(@@config[:services]["opentox-algorithm"],"fminer") + @algorithm_uri = File.join(CONFIG[:services]["opentox-algorithm"],"lazar") + @algorithm_params = "feature_generation_uri="+File.join(CONFIG[:services]["opentox-algorithm"],"fminer") super end end @@ -160,7 +160,7 @@ module ValidationExamples class MajorityCacoTrainingTest < CacoTrainingTest def initialize - @algorithm_uri = File.join(@@config[:services]["opentox-majority"],"/regr/algorithm") + @algorithm_uri = File.join(CONFIG[:services]["opentox-majority"],"/regr/algorithm") super end end @@ -212,4 +212,4 @@ module ValidationExamples end #puts ValidationExamples.list -#puts ValidationExamples.select("1,2a").inspect \ No newline at end of file +#puts ValidationExamples.select("1,2a").inspect diff --git a/test/test_examples_util.rb b/test/test_examples_util.rb index 582b814..3d4d605 100644 --- a/test/test_examples_util.rb +++ b/test/test_examples_util.rb @@ -5,7 +5,7 @@ module ValidationExamples @@dataset_uris = {} - def self.upload_dataset(file, dataset_service=@@config[:services]["opentox-dataset"], file_type="application/x-yaml") + def self.upload_dataset(file, dataset_service=CONFIG[:services]["opentox-dataset"], file_type="application/x-yaml") raise "File not found: "+file.path.to_s unless File.exist?(file.path) if @@dataset_uris[file.path.to_s]==nil data = File.read(file.path) @@ -40,7 +40,7 @@ module ValidationExamples $test_case.post uri,params return wait($test_case.last_response.body) else - return OpenTox::RestClientWrapper.post(File.join(@@config[:services]["opentox-validation"],uri),params) + return OpenTox::RestClientWrapper.post(File.join(CONFIG[:services]["opentox-validation"],uri),params) end end @@ -50,7 +50,7 @@ module ValidationExamples $test_case.get uri,nil,'HTTP_ACCEPT' => accept_header return wait($test_case.last_response.body) else - return OpenTox::RestClientWrapper.get(File.join(@@config[:services]["opentox-validation"],uri),{:accept => accept_header}) + return OpenTox::RestClientWrapper.get(File.join(CONFIG[:services]["opentox-validation"],uri),{:accept => accept_header}) end end @@ -291,4 +291,4 @@ module ValidationExamples "crossvalidation" end end -end \ No newline at end of file +end -- cgit v1.2.3 From ce0121c8d5e77e8f4cb9654d372a8745e9b3ef10 Mon Sep 17 00:00:00 2001 From: mguetlein Date: Wed, 28 Jul 2010 10:08:09 +0200 Subject: remove rdf_provider to use rewritten owl.rb in wrapper --- lib/format_util.rb | 32 ++++++ lib/predictions.rb | 4 +- lib/rdf_provider.rb | 188 ----------------------------------- lib/validation_db.rb | 7 +- report/environment.rb | 2 - report/report_persistance.rb | 46 ++++----- report/report_service.rb | 2 +- test/test_examples_util.rb | 53 +++++++++- validation/validation_application.rb | 2 +- validation/validation_format.rb | 94 +++++------------- 10 files changed, 136 insertions(+), 294 deletions(-) create mode 100644 lib/format_util.rb delete mode 100644 lib/rdf_provider.rb diff --git a/lib/format_util.rb b/lib/format_util.rb new file mode 100644 index 0000000..abd83d6 --- /dev/null +++ b/lib/format_util.rb @@ -0,0 +1,32 @@ + + +class String + + # :prediction_feature -> predictionFeature + # :test_dataset_uri -> testDataset + def to_rdf_format + s = gsub(/_uri(s|)$/,"") + s.gsub(/_./) do |m| + m.gsub!(/^_/,"") + m.upcase + end + end +end + +class Hash + + # applies to_rdf_format to all keys + def keys_to_rdf_format + res = {} + keys.each do |k| + v = self[k] + if v.is_a?(Hash) + v = v.keys_to_rdf_format + elsif v.is_a?(Array) + v = v.collect{ |vv| vv.is_a?(Hash) ? vv.keys_to_rdf_format : vv } + end + res[k.to_s.to_rdf_format] = v + end + return res + end +end \ No newline at end of file diff --git a/lib/predictions.rb b/lib/predictions.rb index f6351f8..2873689 100644 --- a/lib/predictions.rb +++ b/lib/predictions.rb @@ -441,8 +441,8 @@ module Lib def sample_correlation_coefficient # formula see http://en.wikipedia.org/wiki/Correlation_and_dependence#Pearson.27s_product-moment_coefficient return ( @num_predicted * @sum_multiply - @sum_actual * @sum_predicted ) / - ( Math.sqrt( @num_predicted * @sum_squares_actual - @sum_actual**2 ) * - Math.sqrt( @num_predicted * @sum_squares_predicted - @sum_predicted**2 ) ) + ( Math.sqrt( [0, @num_predicted * @sum_squares_actual - @sum_actual**2].max ) * + Math.sqrt( [0, @num_predicted * @sum_squares_predicted - @sum_predicted**2].max ) ) end def total_sum_of_squares diff --git a/lib/rdf_provider.rb b/lib/rdf_provider.rb deleted file mode 100644 index 7fa3ecc..0000000 --- a/lib/rdf_provider.rb +++ /dev/null @@ -1,188 +0,0 @@ - -class String - def convert_underscore - gsub(/_./) do |m| - m.gsub!(/^_/,"") - m.upcase - end - end -end - -module Lib - module RDFProvider - - def to_rdf - HashToOwl.to_rdf(self) - end - - def uri - raise "not implemented" - end - - def rdf_title - raise "not implemented" - end - - # the rdf output is generated from the hash that is provided by this method - # the keys in the hash structure are used to defined type of the resource (literal, objectProperty, dataProperty) - # example: if the structure should contain a literal named "size" with value 5 - # * add :property_xy => 5 to your hash - # * make sure literal?(:property_xy) returns true - # * literal_name(:property_xy) must return "size" - # - def get_content_as_hash - raise "not implemented" - end - - def to_yaml - get_content_as_hash.to_yaml - end - - def rdf_ignore?( prop ) - self.class::IGNORE.index( prop ) != nil - end - - def literal?( prop ) - self.class::LITERALS.index( prop ) != nil - end - - def literal_name( prop ) - if self.class::LITERAL_NAMES.has_key?(prop) - self.class::LITERAL_NAMES[prop] - else - OT[prop.to_s.convert_underscore] - end - end - - def object_property?( prop ) - self.class::OBJECT_PROPERTIES.has_key?( prop ) - end - - def object_property_name( prop ) - return self.class::OBJECT_PROPERTIES[ prop ] - end - - def object_type( prop ) - return self.class::OBJECTS[ prop ] - end - - def class?(prop) - self.class::CLASSES.has_key?( prop ) - end - - def class_name( prop ) - return self.class::CLASSES[ prop ] - end - - end - - class HashToOwl - #include OpenTox::Owl - - def self.to_rdf( rdf_provider ) - - owl = OpenTox::Owl.create(rdf_provider.rdf_title, rdf_provider.uri ) - toOwl = HashToOwl.new(owl) - toOwl.add_content(rdf_provider) - toOwl.rdf - end - - def add_content( rdf_provider ) - @rdf_provider = rdf_provider - recursiv_add_content( @rdf_provider.get_content_as_hash, @owl.root_node ) - end - - def rdf - @owl.rdf - end - - private - def initialize(owl) - @owl = owl - @model = owl.model - end - - def recursiv_add_content( output, node ) - output.each do |k,v| - if v==nil - LOGGER.warn "skipping nil value: "+k.to_s - next - end - if @rdf_provider.rdf_ignore?(k) - #do nothing - elsif v.is_a?(Hash) - new_node = add_class( k, node ) - recursiv_add_content( v, new_node ) - elsif v.is_a?(Array) - v.each do |value| - if @rdf_provider.class?(k) - new_node = add_class( k, node ) - recursiv_add_content( value, new_node ) - else - add_object_property( k, value, node) - end - end - elsif @rdf_provider.literal?(k) - set_literal( k, v, node) - elsif @rdf_provider.object_property?(k) - add_object_property( k, v, node) - else - raise "illegal value k:"+k.to_s+" v:"+v.to_s - end - end - end - - def add_class( property, node ) - raise "no object prop: "+property.to_s unless @rdf_provider.object_property?(property) - raise "no class name: "+property.to_s unless @rdf_provider.class_name(property) - # to avoid anonymous nodes, make up uris for sub-objects - # use counter to make sure each uri is unique - # for example we will get ../confusion_matrix_cell/1, ../confusion_matrix_cell/2, ... - count = 1 - while (true) - res = Redland::Resource.new( File.join(node.uri.to_s,property.to_s+"/"+count.to_s) ) - break if @model.subject(@rdf_provider.object_property_name(property), res).nil? - count += 1 - end - clazz = Redland::Resource.new(@rdf_provider.class_name(property)) - @model.add res, RDF['type'], clazz - @model.add res, DC['title'], clazz - @model.add clazz, RDF['type'], OWL['Class'] - @model.add DC['title'], RDF['type'],OWL['AnnotationProperty'] - - objectProp = Redland::Resource.new(@rdf_provider.object_property_name(property)) - @model.add objectProp, RDF['type'], OWL['ObjectProperty'] - @model.add node, objectProp, res - return res - end - - def set_literal(property, value, node ) - raise "empty literal value "+property.to_s if value==nil || value.to_s.size==0 - raise "no literal name "+propety.to_s unless @rdf_provider.literal_name(property) - begin - l = @model.object(subject, @rdf_provider.literal_name(property)) - @model.delete node, @rdf_provider.literal_name(property), l - rescue - end - literalProp = Redland::Resource.new(@rdf_provider.literal_name(property)) - @model.add literalProp, RDF['type'],OWL['AnnotationProperty'] - @model.add node, literalProp, Redland::Literal.create(value) - end - - def add_object_property(property, value, node ) - raise "empty object property value "+property.to_s if value==nil || value.to_s.size==0 - raise "no object property name "+propety.to_s unless @rdf_provider.object_property_name(property) - raise "no object type "+property.to_s unless @rdf_provider.object_type(property) - - objectProp = Redland::Resource.new(@rdf_provider.object_property_name(property)) - @model.add objectProp, RDF['type'], OWL['ObjectProperty'] - - val = Redland::Resource.new(value) - type = Redland::Resource.new(@rdf_provider.object_type(property)) - @model.add node, objectProp, val - @model.add val, RDF['type'], type - @model.add type, RDF['type'], OWL['Class'] - end - - end -end diff --git a/lib/validation_db.rb b/lib/validation_db.rb index 1152abf..09316ca 100644 --- a/lib/validation_db.rb +++ b/lib/validation_db.rb @@ -18,7 +18,7 @@ end module Lib VAL_PROPS_GENERAL = [ :validation_uri, :model_uri, :algorithm_uri, :training_dataset_uri, :prediction_feature, - :test_dataset_uri, :test_target_dataset_uri, :prediction_dataset_uri, :created_at ] + :test_dataset_uri, :test_target_dataset_uri, :prediction_dataset_uri, :date ] VAL_PROPS_SUM = [ :num_instances, :num_without_class, :num_unpredicted ] VAL_PROPS_AVG = [:real_runtime, :percent_without_class, :percent_unpredicted ] VAL_PROPS = VAL_PROPS_GENERAL + VAL_PROPS_SUM + VAL_PROPS_AVG @@ -50,7 +50,7 @@ module Lib :target_variance_actual, :target_variance_predicted, :sum_squared_error, :sample_correlation_coefficient ] CROSS_VAL_PROPS = [:dataset_uri, :num_folds, :stratified, :random_seed] - CROSS_VAL_PROPS_REDUNDANT = [:crossvalidation_uri, :algorithm_uri, :created_at] + CROSS_VAL_PROPS + CROSS_VAL_PROPS_REDUNDANT = [:crossvalidation_uri, :algorithm_uri, :date] + CROSS_VAL_PROPS ALL_PROPS = VAL_PROPS + VAL_CV_PROPS + VAL_CLASS_PROPS_EXTENDED + VAL_REGR_PROPS + CROSS_VAL_PROPS @@ -61,8 +61,11 @@ module Lib class Validation < ActiveRecord::Base serialize :classification_statistics serialize :regression_statistics + + alias_attribute :date, :created_at end class Crossvalidation < ActiveRecord::Base + alias_attribute :date, :created_at end end diff --git a/report/environment.rb b/report/environment.rb index 714cebe..d1321e7 100644 --- a/report/environment.rb +++ b/report/environment.rb @@ -20,8 +20,6 @@ end module Reports end -require "lib/rdf_provider.rb" - require "report/plot_factory.rb" require "report/xml_report.rb" require "report/xml_report_util.rb" diff --git a/report/report_persistance.rb b/report/report_persistance.rb index 46a014e..d79cf7e 100644 --- a/report/report_persistance.rb +++ b/report/report_persistance.rb @@ -1,5 +1,6 @@ REPORT_DIR = File.join(Dir.pwd,'/reports') +require "lib/format_util.rb" # = Reports::ReportPersistance # @@ -182,41 +183,32 @@ end module Reports class ReportData < ActiveRecord::Base - include Lib::RDFProvider + serialize :validation_uris + serialize :crossvalidation_uris + serialize :algorithm_uris + serialize :model_uris + + alias_attribute :date, :created_at + def get_content_as_hash map = {} - map[:created_at] = created_at - map[:report_uri] = report_uri - map[:report_type] = report_type - map[:validation_uris] = validation_uris - map[:crossvalidation_uris] = crossvalidation_uris - map[:algorithm_uris] = algorithm_uris - map[:model_uris] = model_uris + [ :date, :report_type, :validation_uris, :crossvalidation_uris, + :algorithm_uris, :model_uris ].each do |p| + map[p] = self.send(p) + end map end - def rdf_title - "ValidationReport" - end + def to_yaml + get_content_as_hash.to_yaml + end - def uri - report_uri + def to_rdf + owl = OpenTox::Owl.create("ValidationReport",report_uri) + owl.set_data(get_content_as_hash.keys_to_rdf_format) + owl.rdf end - - LITERALS = [ :created_at, :report_type ] - LITERAL_NAMES = {:created_at => OT["date"] } - OBJECT_PROPERTIES = { :crossvalidation_uris => OT['reportCrossvalidation'], :algorithm_uris => OT['reportAlgorithm'], - :validation_uris => OT['reportValidation'], :model_uris => OT['reportModel'] } - OBJECTS = { :crossvalidation_uris => OT['Crossvalidation'], :algorithm_uris => OT['Algorithm'], - :validation_uris => OT['Validation'], :model_uris => OT['Model'] } - CLASSES = {} - IGNORE = [ :id, :report_uri ] - - serialize :validation_uris - serialize :crossvalidation_uris - serialize :algorithm_uris - serialize :model_uris end class ExtendedFileReportPersistance < FileReportPersistance diff --git a/report/report_service.rb b/report/report_service.rb index d6d0e1a..04a2d2e 100644 --- a/report/report_service.rb +++ b/report/report_service.rb @@ -133,7 +133,7 @@ module Reports protected def create_meta_data(type, validation_set, validation_uris) - # the validtion_set contains the resolved single validations + # the validation_set contains the resolved single validations # crossvalidation uris are only added if given as validation_uris - param meta_data = {} { :validation_uri => "validation_uris", diff --git a/test/test_examples_util.rb b/test/test_examples_util.rb index 09f7d6c..8d945f0 100644 --- a/test/test_examples_util.rb +++ b/test/test_examples_util.rb @@ -67,14 +67,14 @@ module ValidationExamples def self.verify_crossvalidation(val_yaml) val = YAML.load(val_yaml) - puts val.inspect + #puts val.inspect assert_integer val["random_seed".to_sym],nil,nil,"random_seed" assert_boolean val["stratified".to_sym],"stratified" assert_integer val["num_folds".to_sym],0,1000,"num_folds" num_folds = val["num_folds".to_sym].to_i - validations = val["validations".to_sym] + validations = val["validation_uris".to_sym] assert_int_equal(num_folds, validations.size, "num_folds != validations.size") end @@ -82,7 +82,7 @@ module ValidationExamples val = YAML.load(val_yaml) - puts val.inspect + #puts val.inspect assert_integer val["num_instances".to_sym],0,1000,"num_instances" num_instances = val["num_instances".to_sym].to_i @@ -103,7 +103,7 @@ module ValidationExamples class_value_stats.each do |cvs| class_values << cvs["class_value".to_sym] end - puts class_values.inspect + #puts class_values.inspect confusion_matrix = class_stats["confusion_matrix".to_sym] confusion_matrix_cells = confusion_matrix["confusion_matrix_cell".to_sym] @@ -118,12 +118,40 @@ module ValidationExamples end end + def self.compare_yaml_and_owl(hash, owl, nested_params=[] ) + + hash.each do |k,v| + p = nested_params + [ k.to_s.to_rdf_format ] + if (v.is_a?(Hash)) + compare_yaml_and_owl( v, owl, p ) + elsif (v.is_a?(Array)) + v.each do |vv| + compare_yaml_and_owl( vv, owl, p ) + end + else + owl_value = owl.get_nested( p ) + if owl_value.size == 0 + raise "owl_value is nil, yaml value is '"+v.to_s+"'" unless v==nil or v.to_s.size==0 + elsif owl_value.size == 1 + assert_equal(v, owl_value[0], p.join(".")+" (yaml != rdf)") + else + raise p.join(".")+" yaml value '"+v.to_s+"' not included in rdf values '"+ + owl_value.inspect+"'" unless owl_value.include?(v) + end + end + end + end + private def self.assert_not_nil(val,msg_suffix=nil) raise msg_suffix.to_s+" is nil" if val==nil end def self.assert_int_equal(val1,val2,msg_suffix=nil) + assert_equal(val1, val2, msg_suffix) + end + + def self.assert_equal(val1,val2,msg_suffix=nil) raise msg_suffix.to_s+" not equal: "+val1.to_s+" != "+val2.to_s unless val1==val2 end @@ -211,7 +239,24 @@ module ValidationExamples end end + def compare_yaml_vs_rdf + if @validation_uri + yaml = YAML.load(Util.validation_get(@validation_uri.split("/")[-1],'application/x-yaml')) + owl = OpenTox::Owl.from_data(Util.validation_get(@validation_uri.split("/")[-1]),@validation_uri,"Validation") + Util.compare_yaml_and_owl(yaml,owl) + end + if @report_uri + yaml = YAML.load(Util.validation_get(@report_uri.split("/")[-3..-1].join("/"),'application/x-yaml')) + owl = OpenTox::Owl.from_data(Util.validation_get(@report_uri.split("/")[-3..-1].join("/")),@report_uri,"ValidationReport") + Util.compare_yaml_and_owl(yaml,owl) + else + puts "no report" + end + end + + def verify_yaml + raise "cannot very validation, validation_uri is null" unless @validation_uri if @validation_uri =~ /crossvalidation/ Util.verify_crossvalidation(Util.validation_get("crossvalidation/"+@validation_uri.split("/")[-1],'application/x-yaml')) Util.validation_get("crossvalidation/"+@validation_uri.split("/")[-1]+"/statistics",'application/x-yaml') diff --git a/validation/validation_application.rb b/validation/validation_application.rb index a43a2a6..a1affa2 100644 --- a/validation/validation_application.rb +++ b/validation/validation_application.rb @@ -79,7 +79,7 @@ get '/crossvalidation/:id/statistics' do v = Lib::MergeObjects.merge_array_objects( Validation::Validation.find( :all, :conditions => { :crossvalidation_id => params[:id] } ) ) v.validation_uri = nil - v.created_at = nil + v.date = nil v.id = nil content_type "application/x-yaml" v.to_yaml diff --git a/validation/validation_format.rb b/validation/validation_format.rb index a172f8a..0db8579 100644 --- a/validation/validation_format.rb +++ b/validation/validation_format.rb @@ -1,29 +1,26 @@ -require "lib/rdf_provider.rb" +require "lib/format_util.rb" module Validation - # adding to_yaml and to_rdf functionality to validation class Validation < Lib::Validation - include Lib::RDFProvider - # get_content_as_hash is the basis for to_yaml and to_rdf - # the idea is that everything is stored in a hash structure - # the hash is directly printed in to_yaml, whereas the has_keys can be used to resolve - # the right properties, classes for to_rdf - def get_content_as_hash + # builds hash for valiation, as the internal presentation differs from the owl-object + # the hash is directly printed in to_yaml, or added to the owl-structure + def get_content_as_hash() LOGGER.debug self.validation_uri h = {} - Lib::VAL_PROPS.each{|p| h[p] = self.send(p)} + (Lib::VAL_PROPS - [:validation_uri]).each do |p| + h[p] = self.send(p) + end if crossvalidation_id!=nil cv = {} - Lib::VAL_CV_PROPS.each do |p| - cv[p] = self.send(p) - end - # replace crossvalidation id with uri + #skip crossvalidation_id + cv[:crossvalidation_fold] = self.crossvalidation_fold + cv[:crossvalidation_uri] = self.crossvalidation_uri h[:crossvalidation_info] = cv end if classification_statistics @@ -64,79 +61,42 @@ module Validation return h end - def rdf_title - "Validation" + def to_rdf + owl = OpenTox::Owl.create("Validation",validation_uri) + owl.set_data(get_content_as_hash.keys_to_rdf_format) + owl.rdf end - def uri - validation_uri + def to_yaml + get_content_as_hash.to_yaml end - LITERALS = [ :created_at, :real_runtime, :num_instances, :num_without_class, - :percent_without_class, :num_unpredicted, :percent_unpredicted, - :crossvalidation_fold ] + - (Lib::VAL_CLASS_PROPS - [ :confusion_matrix ]) + Lib::VAL_REGR_PROPS + - [ :class_value, :confusion_matrix_value, - :confusion_matrix_actual, :confusion_matrix_predicted ] - - LITERAL_NAMES = {:created_at => OT["date"] } - - OBJECT_PROPERTIES = { :model_uri => OT['validationModel'], :training_dataset_uri => OT['validationTrainingDataset'], :algorithm_uri => OT['validationAlgorithm'], - :prediction_feature => OT['predictedFeature'], :test_dataset_uri => OT['validationTestDataset'], :test_target_dataset_uri => OT['validationTestTargetDataset'], - :prediction_dataset_uri => OT['validationPredictionDataset'], :crossvalidation_info => OT['hasValidationInfo'], - :crossvalidation_uri => OT['validationCrossvalidation'], - :classification_statistics => OT['hasValidationInfo'], :regression_statistics => OT['hasValidationInfo'], - :class_value_statistics => OT['classValueStatistics'], :confusion_matrix => OT['confusionMatrix'], - :confusion_matrix_cell => OT['confusionMatrixCell'], #:class_value => OT['classValue'], - #:confusion_matrix_actual => OT['confusionMatrixActual'], :confusion_matrix_predicted => OT['confusionMatrixPredicted'] - } - - OBJECTS = { :model_uri => OT['Model'], :training_dataset_uri => OT['Dataset'], :test_dataset_uri => OT['Dataset'], - :test_target_dataset_uri => OT['Dataset'], :prediction_dataset_uri => OT['Dataset'], :prediction_feature => OT['Feature'], - :algorithm_uri => OT['Algorithm'],} - - CLASSES = { :crossvalidation_info => OT['CrossvalidationInfo'], :classification_statistics => OT['ClassificationStatistics'], - :regression_statistics => OT['RegresssionStatistics'], :class_value_statistics => OT['ClassValueStatistics'], - :confusion_matrix => OT['ConfusionMatrix'], :confusion_matrix_cell => OT['ConfusionMatrixCell']} - - IGNORE = [ :id, :validation_uri, :crossvalidation_id ] - end class Crossvalidation < Lib::Crossvalidation - include Lib::RDFProvider - + def get_content_as_hash h = {} - Lib::CROSS_VAL_PROPS_REDUNDANT.each{|p| h[p] = self.send(p)} + (Lib::CROSS_VAL_PROPS_REDUNDANT - [:crossvalidation_uri]).each do |p| + h[p] = self.send(p) + end v = [] Validation.find( :all, :conditions => { :crossvalidation_id => self.id } ).each do |val| v.push( val.validation_uri.to_s ) end - h[:validations] = v + h[:validation_uris] = v h end - def uri - crossvalidation_uri + def to_rdf + owl = OpenTox::Owl.create("'Crossvalidation",crossvalidation_uri) + owl.set_data(get_content_as_hash.keys_to_rdf_format) + owl.rdf end - def rdf_title - "Crossvalidation" + def to_yaml + get_content_as_hash.to_yaml end - - LITERALS = [ :created_at, :stratified, :num_folds, :random_seed ] - - LITERAL_NAMES = {:created_at => OT["date"] } - - OBJECT_PROPERTIES = { :dataset_uri => OT['crossvalidationDataset'], :algorithm_uri => OT['crossvalidationAlgorithm'], - :validations => OT['crossvalidationValidation'] } - - OBJECTS = { :dataset_uri => OT['Dataset'], :validations => OT['Validation'], :algorithm_uri => OT['Algorithm']} - - CLASSES = {} - - IGNORE = [ :id, :crossvalidation_uri ] end end -- cgit v1.2.3 From ad376b7c5c3bb5c4270c78c5dd342436eb5dcdb9 Mon Sep 17 00:00:00 2001 From: mguetlein Date: Mon, 2 Aug 2010 13:03:37 +0200 Subject: improve search facilites to enable rdf-format properties --- EXAMPLES | 44 +++++++++++++++++++++++------------- lib/active_record_setup.rb | 38 +++++++++++++++++++++++++++++++ lib/format_util.rb | 10 +++++++- lib/ot_predictions.rb | 2 +- lib/validation_db.rb | 11 --------- report/environment.rb | 12 +--------- report/report_persistance.rb | 9 +++----- validation/validation_application.rb | 9 ++++---- 8 files changed, 84 insertions(+), 51 deletions(-) create mode 100644 lib/active_record_setup.rb diff --git a/EXAMPLES b/EXAMPLES index 30538cf..944688f 100644 --- a/EXAMPLES +++ b/EXAMPLES @@ -26,22 +26,6 @@ result example (accept-header: text/uri-list) <<< /validation_id_j -search available validations with url-encoded parameters -------------------------------------------------------------------- - ->>> curl ?training_dataset_uri=&algorithm_uri= - -Hint: you can perform a pattern search (instead of an exact match search) by adding a _like to the parameter, i.e. training_dataset_uri_like - -result example (accept-header: application/rdf-xml) -<<< not yet supported - -result example (accept-header: text/uri-list) -<<< / -<<< /validation_id_i -<<< /validation_id_j - - get validation ------------------------------------------------------------------- @@ -294,3 +278,31 @@ result example (accept-header: application/rdf-xml) result example (accept-header: text/uri-list) <<< /report/crossvalidation/id_i + + + +Filter resources +=================================================================== + +It is possible to filter the list of available resources (i.e. validations, crossvalidation, reports) according to property-values. + + +filter available validations for a particular training dataset and model +------------------------------------------------------------------- + +>>> curl ?trainingDataset=\&model= + +alternatively, use property names in (internal) yaml format: + +>>> curl ?training_dataset_uri=\&model_uri= + + +search available validation report for a particular algorithm +------------------------------------------------------------------- + +>>> curl /report/validation?algorithm=lazar + +alternatively, use property names in (internal) yaml format: + +>>> curl /report/validation?algorithm_uris=lazar + diff --git a/lib/active_record_setup.rb b/lib/active_record_setup.rb new file mode 100644 index 0000000..9fc99df --- /dev/null +++ b/lib/active_record_setup.rb @@ -0,0 +1,38 @@ + +['rubygems', 'logger', 'active_record', 'ar-extensions', 'opentox-ruby-api-wrapper' ].each do |g| + require g +end + +unless ActiveRecord::Base.connected? + ActiveRecord::Base.establish_connection( + :adapter => @@config[:database][:adapter], + :host => @@config[:database][:host], + :database => @@config[:database][:database], + :username => @@config[:database][:username], + :password => @@config[:database][:password] + ) + ActiveRecord::Base.logger = Logger.new("/dev/null") +end + +class ActiveRecord::Base + + def self.find_like(filter_params) + puts "params before "+filter_params.inspect + filter_params.keys.each do |k| + key = k.to_s + unless self.column_names.include?(key) + key = key.from_rdf_format + unless self.column_names.include?(key) + key = key+"_uri" + unless self.column_names.include?(key) + key = key+"s" + raise "no attribute found: '"+k.to_s+"'" unless self.column_names.include?(key) + end + end + end + filter_params[key+"_like"] = filter_params.delete(k) + end + puts "params after "+filter_params.inspect + self.find(:all, :conditions => filter_params) + end +end \ No newline at end of file diff --git a/lib/format_util.rb b/lib/format_util.rb index abd83d6..c1f5e7c 100644 --- a/lib/format_util.rb +++ b/lib/format_util.rb @@ -11,6 +11,13 @@ class String m.upcase end end + + def from_rdf_format + gsub(/[A-Z]/) do |m| + "_"+m.downcase + end + end + end class Hash @@ -29,4 +36,5 @@ class Hash end return res end -end \ No newline at end of file +end + diff --git a/lib/ot_predictions.rb b/lib/ot_predictions.rb index 63debc0..110a40e 100644 --- a/lib/ot_predictions.rb +++ b/lib/ot_predictions.rb @@ -17,7 +17,7 @@ module Lib def initialize(is_classification, test_dataset_uri, test_target_dataset_uri, prediction_feature, prediction_dataset_uri, predicted_variable) - LOGGER.debug("loading prediciton via test-dateset:'"+test_dataset_uri.to_s+ + LOGGER.debug("loading prediciton via test-dataset:'"+test_dataset_uri.to_s+ "', test-target-datset:'"+test_target_dataset_uri.to_s+ "', prediction-dataset:'"+prediction_dataset_uri.to_s+ "', prediction_feature: '"+prediction_feature.to_s+"' "+ diff --git a/lib/validation_db.rb b/lib/validation_db.rb index 09316ca..6de0bd4 100644 --- a/lib/validation_db.rb +++ b/lib/validation_db.rb @@ -4,17 +4,6 @@ #end require "lib/merge.rb" -unless ActiveRecord::Base.connected? - ActiveRecord::Base.establish_connection( - :adapter => @@config[:database][:adapter], - :host => @@config[:database][:host], - :database => @@config[:database][:database], - :username => @@config[:database][:username], - :password => @@config[:database][:password] - ) - ActiveRecord::Base.logger = Logger.new("/dev/null") -end - module Lib VAL_PROPS_GENERAL = [ :validation_uri, :model_uri, :algorithm_uri, :training_dataset_uri, :prediction_feature, diff --git a/report/environment.rb b/report/environment.rb index d1321e7..7499491 100644 --- a/report/environment.rb +++ b/report/environment.rb @@ -6,17 +6,6 @@ end gem 'ruby-plot', '= 0.0.2' -unless ActiveRecord::Base.connected? - ActiveRecord::Base.establish_connection( - :adapter => @@config[:database][:adapter], - :host => @@config[:database][:host], - :database => @@config[:database][:database], - :username => @@config[:database][:username], - :password => @@config[:database][:password] - ) - ActiveRecord::Base.logger = Logger.new("/dev/null") -end - module Reports end @@ -34,6 +23,7 @@ require "report/util.rb" require "report/external/mimeparse.rb" require "lib/ot_predictions.rb" +require "lib/active_record_setup.rb" diff --git a/report/report_persistance.rb b/report/report_persistance.rb index d79cf7e..b6f52b6 100644 --- a/report/report_persistance.rb +++ b/report/report_persistance.rb @@ -222,14 +222,11 @@ module Reports new_report_with_id(report_content, type, report.id) end - def list_reports(type, filter_params=nil) + def list_reports(type, filter_params={}) #QMRF-STUB return "1" if type == ReportFactory::RT_QMRF - - filter_params = {} unless filter_params - filter_params.each{ |k,v| raise Reports::BadRequest.new("no report-attribute: "+k.to_s) unless ReportData.column_names.include?(k.gsub(/_like$/,"")) } - filter_params[:report_type] = type - ReportData.find(:all, :conditions => filter_params).collect{ |r| r.id } + filter_params["report_type"]=type unless filter_params.has_key?("report_type") + ReportData.find_like(filter_params).collect{ |r| r.id } end def get_report(type, id, format, force_formating, params) diff --git a/validation/validation_application.rb b/validation/validation_application.rb index a1affa2..1987623 100644 --- a/validation/validation_application.rb +++ b/validation/validation_application.rb @@ -5,12 +5,12 @@ end require 'validation/validation_service.rb' require 'lib/merge.rb' +require 'lib/active_record_setup.rb' get '/crossvalidation/?' do LOGGER.info "list all crossvalidations" content_type "text/uri-list" - params.each{ |k,v| halt 400,"no crossvalidation-attribute: "+k.to_s unless Validation::Crossvalidation.column_names.include?(k.gsub(/_like$/,"")) } - Validation::Crossvalidation.find(:all, :conditions => params).collect{ |d| url_for("/crossvalidation/", :full) + d.id.to_s }.join("\n") + Validation::Crossvalidation.find_like(params).collect{ |d| url_for("/crossvalidation/", :full) + d.id.to_s }.join("\n") end post '/crossvalidation/loo/?' do @@ -115,8 +115,7 @@ end get '/?' do LOGGER.info "list all validations" content_type "text/uri-list" - params.each{ |k,v| halt 400,"no validation-attribute: "+k.to_s unless Validation::Validation.column_names.include?(k.gsub(/_like$/,"")) } - Validation::Validation.find(:all, :conditions => params).collect{ |d| url_for("/", :full) + d.id.to_s }.join("\n") + Validation::Validation.find_like(params).collect{ |d| url_for("/", :full) + d.id.to_s }.join("\n") end get '/:id' do @@ -252,5 +251,5 @@ delete '/:id' do halt 404, "Validation '#{params[:id]}' not found." end content_type "text/plain" - Validation::Validation.delete(params[:id]) + validation.delete end \ No newline at end of file -- cgit v1.2.3 From 148e4eaccf2e406586914150cf2f953fa5f12ece Mon Sep 17 00:00:00 2001 From: mguetlein Date: Wed, 4 Aug 2010 11:01:20 +0200 Subject: add new /predictions funcionality --- lib/ot_predictions.rb | 47 ++++++++++++++++++++++++++++++++++-- report/environment.rb | 1 - report/prediction_util.rb | 45 ---------------------------------- report/report_factory.rb | 9 ++++--- validation/validation_application.rb | 24 ++++++++++++++++++ validation/validation_service.rb | 38 ++++++++++++++++------------- 6 files changed, 96 insertions(+), 68 deletions(-) delete mode 100644 report/prediction_util.rb diff --git a/lib/ot_predictions.rb b/lib/ot_predictions.rb index 110a40e..a6c5028 100644 --- a/lib/ot_predictions.rb +++ b/lib/ot_predictions.rb @@ -105,7 +105,6 @@ module Lib value = value.to_s unless value==nil raise "illegal class_value of predicted value "+value.to_s+" class: "+value.class.to_s unless value==nil or class_values.index(value)!=nil predicted_values << class_values.index(value) - confidence_values << prediction_dataset.get_prediction_confidence(c, predicted_variable) else value = prediction_dataset.get_predicted_regression(c, predicted_variable) begin @@ -115,8 +114,8 @@ module Lib value = nil end predicted_values << value - confidence_values << nil end + confidence_values << prediction_dataset.get_prediction_confidence(c, predicted_variable) end end @@ -136,5 +135,49 @@ module Lib return res end + def to_array() + OTPredictions.to_array( [self] ) + end + + def self.to_array( predictions, add_pic=false, format=false ) + + res = [] + predictions.each do |p| + (0..p.num_instances-1).each do |i| + a = [] + + #PENDING! + a.push( "http://ambit.uni-plovdiv.bg:8080/ambit2/depict/cdk?search="+ + URI.encode(OpenTox::Compound.new(:uri=>p.identifier(i)).smiles) ) if add_pic + + a << (format ? p.actual_value(i).to_nice_s : p.actual_value(i)) + a << (format ? p.predicted_value(i).to_nice_s : p.predicted_value(i)) + if p.classification? + if (p.predicted_value(i)!=nil and p.actual_value(i)!=nil) + a << (p.classification_miss?(i) ? 1 : 0) + else + a << nil + end + end + if p.confidence_values_available? + a << (format ? p.confidence_value(i).to_nice_s : p.confidence_value(i)) + end + a << p.identifier(i) + res << a + end + end + + header = [] + header << "compound" if add_pic + header << "actual value" + header << "predicted value" + header << "missclassified" if predictions[0].classification? + header << "confidence value" if predictions[0].confidence_values_available? + header << "compound-uri" + res.insert(0, header) + + return res + end + end end diff --git a/report/environment.rb b/report/environment.rb index 7499491..e04c397 100644 --- a/report/environment.rb +++ b/report/environment.rb @@ -18,7 +18,6 @@ require "report/report_service.rb" require "report/report_format.rb" require "report/validation_access.rb" require "report/validation_data.rb" -require "report/prediction_util.rb" require "report/util.rb" require "report/external/mimeparse.rb" diff --git a/report/prediction_util.rb b/report/prediction_util.rb deleted file mode 100644 index 5ba3716..0000000 --- a/report/prediction_util.rb +++ /dev/null @@ -1,45 +0,0 @@ - - -module Reports::PredictionUtil - - # creates an Array for a table - # * first row: header values - # * other rows: the prediction values - # additional attribute values of the validation that should be added to the table can be defined via validation_attributes - # - # call-seq: - # predictions_to_array(validation_set, validation_attributes=[]) => Array - # - def self.predictions_to_array(validation_set, validation_attributes=[]) - - res = [] - - validation_set.validations.each do |v| - (0..v.get_predictions.num_instances-1).each do |i| - a = [] - validation_attributes.each{ |att| a.push(v.send(att).to_s) } - - #PENDING! - a.push( "http://ambit.uni-plovdiv.bg:8080/ambit2/depict/cdk?search="+URI.encode(OpenTox::Compound.new(:uri=>v.get_predictions.identifier(i)).smiles) ) - - a.push(v.get_predictions.actual_value(i).to_nice_s) - a.push(v.get_predictions.predicted_value(i).to_nice_s) - a.push(v.get_predictions.classification_miss?(i)?"X":"") if validation_set.all_classification? - a.push(v.get_predictions.confidence_value(i).to_nice_s) if v.get_predictions.confidence_values_available? - a.push(v.get_predictions.identifier(i)) #.gsub(/[-(),=]/, '')[0,10]) - res.push(a) - end - end - - #res = res.sort{|x,y| y[3] <=> x[3] } - header = [ "compound", "actual value", "predicted value"] - header.push "missclassified" if validation_set.all_classification? - header.push "confidence value" if validation_set.validations[0].get_predictions.confidence_values_available? - header << "compound-uri" - res.insert(0, validation_attributes + header) - #puts res.collect{|c| c.inspect}.join("\n") - - return res - end - -end diff --git a/report/report_factory.rb b/report/report_factory.rb index 646ecfd..b62f919 100644 --- a/report/report_factory.rb +++ b/report/report_factory.rb @@ -101,7 +101,7 @@ module Reports::ReportFactory end report.add_section_result(validation_set, Lib::ALL_PROPS, "All Results", "All Results") - report.add_section_predictions( validation_set, [:crossvalidation_fold] ) + report.add_section_predictions( validation_set ) #, [:crossvalidation_fold] ) return report end @@ -241,11 +241,14 @@ class Reports::ReportContent section_title="Predictions", section_text="This section contains predictions.", table_title="Predictions") - + + #PENING + raise "validation attributes not implemented in get prediction array" if validation_attributes.size>0 + section_table = @xml_report.add_section(@xml_report.get_root_element, section_title) if validation_set.validations[0].get_predictions @xml_report.add_paragraph(section_table, section_text) if section_text - @xml_report.add_table(section_table, table_title, Reports::PredictionUtil.predictions_to_array(validation_set, validation_attributes)) + @xml_report.add_table(section_table, table_title, Lib::OTPredictions.to_array(validation_set.validations.collect{|v| v.get_predictions}, true, true)) else @xml_report.add_paragraph(section_table, "No prediction info available.") end diff --git a/validation/validation_application.rb b/validation/validation_application.rb index 1987623..5740263 100644 --- a/validation/validation_application.rb +++ b/validation/validation_application.rb @@ -85,6 +85,18 @@ get '/crossvalidation/:id/statistics' do v.to_yaml end +get '/crossvalidation/:id/predictions' do + LOGGER.info "get predictions for crossvalidation with id "+params[:id].to_s + begin + crossvalidation = Validation::Crossvalidation.find(params[:id]) + rescue ActiveRecord::RecordNotFound => ex + halt 404, "Crossvalidation '#{params[:id]}' not found." + end + content_type "application/x-yaml" + validations = Validation::Validation.find( :all, :conditions => { :crossvalidation_id => params[:id] } ) + Lib::OTPredictions.to_array( validations.collect{ |v| v.compute_validation_stats_with_model(nil, true) } ).to_yaml +end + post '/crossvalidation/?' do content_type "text/uri-list" @@ -227,6 +239,18 @@ post '/validate_datasets' do halt 202,task_uri end +get '/:id/:predictions' do + LOGGER.info "get validation predictions "+params.inspect + begin + validation = Validation::Validation.find(params[:id]) + rescue ActiveRecord::RecordNotFound => ex + halt 404, "Validation '#{params[:id]}' not found." + end + content_type "text/x-yaml" + p = validation.compute_validation_stats_with_model(nil, true) + p.to_array.to_yaml +end + get '/:id/:attribute' do LOGGER.info "access validation attribute "+params.inspect begin diff --git a/validation/validation_service.rb b/validation/validation_service.rb index cfbb681..ce25ee9 100644 --- a/validation/validation_service.rb +++ b/validation/validation_service.rb @@ -49,14 +49,15 @@ module Validation # PENDING: model and referenced datasets are deleted as well, keep it that way? def delete - model = OpenTox::Model::PredictionModel.find(self.model_uri) if self.model_uri - model.destroy if model + #model = OpenTox::Model::PredictionModel.find(self.model_uri) if self.model_uri + #model.destroy if model #[@test_dataset_uri, @training_dataset_uri, @prediction_dataset_uri].each do |d| #dataset = OpenTox::Dataset.find(d) if d #dataset.delete if dataset #end - destroy + + Validation::Validation.delete(self.id) "Successfully deleted validation "+self.id.to_s+"." end @@ -121,16 +122,16 @@ module Validation compute_validation_stats_with_model( model ) end - def compute_validation_stats_with_model( model=nil ) + def compute_validation_stats_with_model( model=nil, dry_run=false ) model = OpenTox::Model::PredictionModel.find(self.model_uri) if model==nil and self.model_uri $sinatra.halt 400, "model not found: "+self.model_uri.to_s unless model prediction_feature = self.prediction_feature ? nil : model.dependentVariables algorithm_uri = self.algorithm_uri ? nil : model.algorithm - compute_validation_stats( model.classification?, model.predictedVariables, prediction_feature, algorithm_uri ) + compute_validation_stats( model.classification?, model.predictedVariables, prediction_feature, algorithm_uri, dry_run ) end - def compute_validation_stats( classification, predicted_feature, prediction_feature=nil, algorithm_uri=nil) + def compute_validation_stats( classification, predicted_feature, prediction_feature=nil, algorithm_uri=nil, dry_run=false) self.attributes = { :prediction_feature => prediction_feature } if self.prediction_feature==nil && prediction_feature self.attributes = { :algorithm_uri => algorithm_uri } if self.algorithm_uri==nil && algorithm_uri @@ -140,18 +141,21 @@ module Validation prediction = Lib::OTPredictions.new( classification, self.test_dataset_uri, self.test_target_dataset_uri, self.prediction_feature, self.prediction_dataset_uri, predicted_feature ) - if prediction.classification? - self.attributes = { :classification_statistics => prediction.compute_stats } - else - self.attributes = { :regression_statistics => prediction.compute_stats } + + unless dry_run + if prediction.classification? + self.attributes = { :classification_statistics => prediction.compute_stats } + else + self.attributes = { :regression_statistics => prediction.compute_stats } + end + self.attributes = { :num_instances => prediction.num_instances, + :num_without_class => prediction.num_without_class, + :percent_without_class => prediction.percent_without_class, + :num_unpredicted => prediction.num_unpredicted, + :percent_unpredicted => prediction.percent_unpredicted } + self.save! end - - self.attributes = { :num_instances => prediction.num_instances, - :num_without_class => prediction.num_without_class, - :percent_without_class => prediction.percent_without_class, - :num_unpredicted => prediction.num_unpredicted, - :percent_unpredicted => prediction.percent_unpredicted } - self.save! + prediction end end -- cgit v1.2.3 From 566786bdd7e253880b7fe6c00cb40fbc46f771a2 Mon Sep 17 00:00:00 2001 From: mguetlein Date: Wed, 11 Aug 2010 10:58:59 +0200 Subject: move to wrapper 1.6.2, remove report-dir-check, initial commit of reach reporting stuff --- Rakefile | 2 +- application.rb | 3 +- db/migrate/003_init_reach.rb | 31 +++++++ reach_reports/reach_application.rb | 69 +++++++++++++++ reach_reports/reach_persistance.rb | 47 +++++++++++ reach_reports/reach_properties.rb | 158 +++++++++++++++++++++++++++++++++++ reach_reports/reach_service.rb | 125 +++++++++++++++++++++++++++ reach_reports/reach_test.rb | 62 ++++++++++++++ reach_reports/reach_to_xml.rb | 60 +++++++++++++ report/report_persistance.rb | 1 - report/report_test.rb | 12 +-- validation/validation_application.rb | 2 +- validation/validation_test.rb | 35 ++++++-- 13 files changed, 590 insertions(+), 17 deletions(-) create mode 100644 db/migrate/003_init_reach.rb create mode 100644 reach_reports/reach_application.rb create mode 100644 reach_reports/reach_persistance.rb create mode 100644 reach_reports/reach_properties.rb create mode 100644 reach_reports/reach_service.rb create mode 100644 reach_reports/reach_test.rb create mode 100644 reach_reports/reach_to_xml.rb diff --git a/Rakefile b/Rakefile index 3c39279..5bce8e2 100644 --- a/Rakefile +++ b/Rakefile @@ -71,7 +71,7 @@ task :migrate => :load_config do :password => @@config[:database][:password] ) ActiveRecord::Base.logger = Logger.new($stdout) - ActiveRecord::Migrator.migrate('db/migrate', ENV["VERSION"] ? ENV["VERSION"].to_i : 2 ) + ActiveRecord::Migrator.migrate('db/migrate', ENV["VERSION"] ? ENV["VERSION"].to_i : 3 ) end diff --git a/application.rb b/application.rb index 7f6cfbd..b70d023 100644 --- a/application.rb +++ b/application.rb @@ -1,5 +1,5 @@ require 'rubygems' -gem 'opentox-ruby-api-wrapper', '= 1.5.7' +gem 'opentox-ruby-api-wrapper', '= 1.6.2' [ 'sinatra', 'sinatra/url_for', 'opentox-ruby-api-wrapper' ].each do |lib| require lib end @@ -36,6 +36,7 @@ require "nightly/nightly_application.rb" # (otherwise sinatra will try to locate a validation with name examples or report) require "report/report_application.rb" +require "reach_reports/reach_application.rb" require "validation/validation_application.rb" diff --git a/db/migrate/003_init_reach.rb b/db/migrate/003_init_reach.rb new file mode 100644 index 0000000..1f75b75 --- /dev/null +++ b/db/migrate/003_init_reach.rb @@ -0,0 +1,31 @@ + +require "reach_reports/reach_properties.rb" + +class InitReach < ActiveRecord::Migration + def self.up + + create_table :qmrf_reports do |t| + [:model_uri + ].each{ |p| t.column(p,:string,:limit => 255) } + [:created_at + ].each{ |p| t.column(p,:datetime) } + + ReachReports::QmrfProperties.properties.each{ |p| t.column(p,:text, :limit => 16320) } + end + + create_table :qprf_reports do |t| + [:compound_uri,:dataset_uri,:model_uri,:algorithm_uri + ].each{ |p| t.column(p,:string,:limit => 255) } + [:created_at + ].each{ |p| t.column(p,:datetime) } + end + + end + + def self.down + [:qmrf_reports, :qprf_reports].each do |t| + drop_table t if table_exists? t + end + end +end + diff --git a/reach_reports/reach_application.rb b/reach_reports/reach_application.rb new file mode 100644 index 0000000..96b6b37 --- /dev/null +++ b/reach_reports/reach_application.rb @@ -0,0 +1,69 @@ + +[ 'rubygems', 'sinatra', 'sinatra/url_for', 'active_record', 'ar-extensions', 'opentox-ruby-api-wrapper' ].each do |lib| + require lib +end + +require 'reach_reports/reach_properties.rb' +require 'reach_reports/reach_persistance.rb' +require 'reach_reports/reach_service.rb' +require 'reach_reports/reach_to_xml.rb' + + +require "lib/format_util.rb" + +def extract_type(params) + halt 400, "illegal type, neither QMRF nor QPRF: "+params[:type] unless params[:type] && params[:type] =~ /(?i)Q(M|P)RF/ + params.delete("type") +end + +get '/reach_report/:type' do + content_type "text/uri-list" + type = extract_type(params) + LOGGER.info "list all "+type+" reports" + ReachReports.list_reports(type) +end + +post '/reach_report/:type' do + content_type "text/uri-list" + type = extract_type(params) + LOGGER.info "creating "+type+" report "+params.inspect + ReachReports.create_report(type,params) +end + +get '/reach_report/:type/:id' do + + type = extract_type(params) + LOGGER.info "get "+type+" report with id "+params[:id].to_s+"' "+request.env['HTTP_ACCEPT'].to_s+"'" + rep = ReachReports.get_report(type, params[:id]) + + case request.env['HTTP_ACCEPT'].to_s + when "application/rdf+xml" + owl = OpenTox::Owl.create(rep.type+"Report",rep.report_uri) + owl.set_data( rep.get_content.keys_to_rdf_format ) + result = owl.rdf + when "application/qmrf-xml" + content_type "application/qmrf-xml" + result = ReachReports.reach_report_to_xml(rep) + when /application\/x-yaml|\*\/\*|^$/ # matches 'application/x-yaml', '*/*', '' + content_type "application/x-yaml" + result = rep.get_content.to_yaml + else + halt 400, "MIME type '"+request.env['HTTP_ACCEPT'].to_s+"' not supported, valid Accept-Headers are \"application/rdf+xml\", \"application/x-yaml\", \"application/qmrf-xml\"." + end + result +end + +get '/reach_report/:type/:id/:section' do + + type = extract_type(params) + LOGGER.info "get "+type+" report section '"+params[:section].to_s+"', with id "+params[:id].to_s+"' "+request.env['HTTP_ACCEPT'].to_s+"'" + ReachReports.get_report(type, params[:id], params[:section]).to_yaml +end + +get '/reach_report/:type/:id/:section/:subsection' do + + type = extract_type(params) + LOGGER.info "get "+type+" report subsection '"+params[:subsection].to_s+"', section '"+params[:section].to_s+"', with id "+params[:id].to_s+"' "+request.env['HTTP_ACCEPT'].to_s+"'" + ReachReports.get_report(type, params[:id], params[:section], params[:subsection]).to_yaml +end + diff --git a/reach_reports/reach_persistance.rb b/reach_reports/reach_persistance.rb new file mode 100644 index 0000000..786c48f --- /dev/null +++ b/reach_reports/reach_persistance.rb @@ -0,0 +1,47 @@ + +module ReachReports + + def self.get_uri( report ) + raise "internal error, id not set "+to_yaml if report.id==nil + return $sinatra.url_for("/"+File.join(report.type,report.id.to_s), :full).to_s + end + + class QmrfReport < ActiveRecord::Base + + alias_attribute :date, :created_at + + QmrfProperties.serialized_properties.each do |p| + serialize p + end + + def type + "QMRF" + end + + def report_uri + ReachReports.get_uri(self) + end + + def get_content + hash = {} + [ :model_uri, :date ].each{ |p| hash[p] = self.send(p) } + QmrfProperties.properties.each{ |p| hash[p] = self.send(p) } + return hash + end + end + + + class QprfReport < ActiveRecord::Base + + alias_attribute :date, :created_at + + def report_uri + ReachReports.get_uri(self) + end + + def type + "QPRF" + end + end + +end \ No newline at end of file diff --git a/reach_reports/reach_properties.rb b/reach_reports/reach_properties.rb new file mode 100644 index 0000000..5397206 --- /dev/null +++ b/reach_reports/reach_properties.rb @@ -0,0 +1,158 @@ + +module ReachReports + + class QmrfProperties + + private + PROPS = { + "QSAR_title" => "1.1", "QSAR_models" => "1.2", "QSAR_software" => "1.3", + "QMRF_date" => "2.1", "QMRF_authors" => "2.2", "QMRF_date_revision" => "2.3", "QMRF_revision" => "2.4", + "model_authors" => "2.5", "model_date" => "2.6", "references" => "2.7", "info_availability" => "2.8", + "related_models" => "2.9", + "model_species" => "3.1", "model_endpoint" => "3.2", "endpoint_comments" => "3.3", "endpoint_units" => "3.4", + "endpoint_variable" => "3.5", "endpoint_protocol" => "3.6", "endpoint_data_quality" => "3.7", + "algorithm_type" => "4.1", "algorithm_explicit" => "4.2", "algorithms_descriptors" => "4.3", + "descriptors_selection" => "4.4", "descriptors_generation" => "4.5", "descriptors_generation_software" => "4.6", + "descriptors_chemicals_ratio" => "4.7", + "app_domain_description" => "5.1", "app_domain_method" => "5.2", "app_domain_software" => "5.3", + "applicability_limits" => "5.4", + "training_set_availability" => "6.1", "training_set_data" => "6.2","training_set_descriptors" => "6.3", + "dependent_var_availability" => "6.4", "other_info" => "6.5", "preprocessing" => "6.6", "goodness_of_fit" => "6.7", + "loo" => "6.8", "lmo" => "6.9", "yscrambling" => "6.10", "bootstrap" => "6.11", "other_statistics" => "6.12", + "validation_set_availability" => "7.1", "validation_set_data" => "7.2", "validation_set_descriptors" => "7.3", + "validation_dependent_var_availability" => "7.4", "validation_other_info" => "7.5", "experimental_design" => "7.6", + "validation_predictivity" => "7.7", "validation_assessment" => "7.8", "validation_comments" => "7.9", + "mechanistic_basis" => "8.1", "mechanistic_basis_comments" => "8.2", "mechanistic_basis_info" => "8.3", + "comments" => "9.1", "bibliography" => "9.2", "attachments" => "9.3", + "QMRF_number" => "10.1", "date_publication" => "10.2", "keywords" => "10.3", "summary_comments" => "10.4", + } + + CHAPTER = { + "QSAR_identifier" => 1, + "QSAR_General_information" => 2, + "QSAR_Endpoint" => 3, + "QSAR_Algorithm" => 4, + "QSAR_Applicability_domain" => 5, + "QSAR_Robustness" => 6, + "QSAR_Predictivity" => 7, + "QSAR_Interpretation" => 8, + "QSAR_Miscelaneous" => 9, + "QMRF_Summary" => 10 } + + CATALOGS = { + "software_catalog" => + { :element => "software", + :fields => ["contact", "description", "name", "number", "url"] }, + "authors_catalog" => { + :element => "author", + :fields => ["affiliation", "contact", "email", "name", "number", "url"]}, + "algorithms_catalog" => { + :element => "algorithm", + :fields => ["definition", "description", "publication_ref"] }, + "descriptors_catalog" => { + :element => "descriptor", + :fields => [ "description", "name", "publication_ref", "units"] }, + "endpoints_catalog" => { + :element => "endpoint", + :fields => [ "group", "name", "subgroup" ]}, + "publications_catalog" => { + :element => "publication", + :fields => [ "title", "url"]}, + } + + CATALOG_REFERENCES = { + "QSAR_software" => "software_catalog", + "references" => "publications_catalog", + "QMRF_authors" => "authors_catalog", + "algorithm_explicit" => "algorithms_catalog", + "descriptors_generation_software" => "descriptors_catalog", + "model_endpoint" => "endpoints_catalog", + "bibliography" => "publications_catalog", + } + + SUBSUBSECTIONS = { + "algorithm_explicit" => [ "equation" ] + } + + #"attachment_training_data", "attachment_validation_data, "attachment_documents", + + public + def self.serialized_properties + return CATALOG_REFERENCES.keys | SUBSUBSECTIONS.keys + end + + def self.properties + return PROPS.keys + end + + def self.chapter_number( chapter ) + CHAPTER[chapter] + end + + def self.chapter_properties( chapter ) + chapter_number = CHAPTER[chapter] + unsorted_chapter_props = [] + PROPS.each do |k,v| + chapter_nr = v.split(".")[0].to_i + next unless chapter_number == chapter_nr + unsorted_chapter_props << [ k, v.split(".")[1].to_i ] + end + unsorted_chapter_props.sort{|a,b| a[1]<=>b[1]}.collect{ |a| a[0] } + end + + def self.chapters() + #h = { "a" => 20, "b" => 30, "c" => 10 } + # h.sort {|a,b| a[1]<=>b[1]} #=> [["c", 10], ["a", 20], ["b", 30]] + CHAPTER.sort{|a,b| a[1]<=>b[1]}.collect{ |a| a[0] } + end + + def self.to_xml(property, content, catalogs_node) + node = REXML::Element.new(property) + node.add_attribute "chapter",PROPS[property] + + return node unless content + + unless serialized_properties.include?(property) + node.text = content + else + if content[:text] + node.text = content.text + end + if SUBSUBSECTIONS.has_key?(property) + SUBSUBSECTIONS[property].each do |p| + subsubsection_node = REXML::Element.new(p) + subsubsection_node.text = content[p] + node << subsubsection_node + end + end + if CATALOG_REFERENCES.has_key?(property) and content[CATALOG_REFERENCES[property]] + catalog_prop = CATALOG_REFERENCES[property] + catalog_content = content[catalog_prop] + catalog_attributes = CATALOGS[catalog_prop] + catalog_node = REXML::Element.new(catalog_prop) + + catalog_content.each do |element| + ref_node = REXML::Element.new(catalog_attributes[:element]+"_ref") + id = catalog_attributes[:element]+"_"+(catalog_content.index(element)+1).to_s + ref_node.add_attribute "idref",id + ref_node.add_attribute "catalog",catalog_prop + node << ref_node + element_node = REXML::Element.new(catalog_attributes[:element]) + element_node.add_attribute "id",id + catalog_attributes[:fields].each do |k| + element_node.add_attribute k,element[k.to_sym] + end + catalog_node << element_node + end + catalogs_node << catalog_node + end + end + + node + end + end + +end + + + diff --git a/reach_reports/reach_service.rb b/reach_reports/reach_service.rb new file mode 100644 index 0000000..cdc0f9c --- /dev/null +++ b/reach_reports/reach_service.rb @@ -0,0 +1,125 @@ +module ReachReports + + def self.list_reports(type) + case type + when /(?i)QMRF/ + ReachReports::QmrfReport.all.collect{ |r| r.report_uri }.join("\n") + when /(?i)QPRF/ + ReachReports::QprfReport.all.collect{ |r| r.report_uri }.join("\n") + end + end + + def self.create_report( type, params ) + + #content_type "text/uri-list" + #task_uri = OpenTox::Task.as_task do |task| + + case type + when /(?i)QMRF/ + if params[:model_uri] + report = ReachReports::QmrfReport.new :model_uri => params[:model_uri] + build_qmrf_report(report) + else + $sinatra.halt 400, "illegal parameters for qmrf-report, use either\n"+ + "* model_uri\n"+ + "params given: "+params.inspect + end + when /(?i)QPRF/ + if params[:compound_uri] + report = ReachReports::QprfReport.new :compound_uri => params[:compound_uri] + else + $sinatra.halt 400, "illegal parameters for qprf-report, use either\n"+ + "* compound-uri\n"+ + "params given: "+params.inspect + end + end + + report.report_uri + + #end + #halt 202,task_uri + end + + def self.build_qmrf_report(r) + + model = OpenTox::Model::Generic.find(r.model_uri) + + # chapter 1 + r.QSAR_title = model.title + # TODO + # QSAR_models -> sparql same endpoint + software = [] + software << { :url => model.uri, :name => model.title, :contact => model.creator } + algorithm = OpenTox::Algorithm::Generic.find(model.algorithm) if model.algorithm + software << { :url => algorithm.uri, :name => algorithm.title } + r.QSAR_software = {"software_catalog" => software} + #chpater 2 + r.QMRF_date = DateTime.now.to_s + # EMPTY: QMRF_authors, QMRF_date_revision, QMRF_revision + # TODO: model_authors ? + r.model_date = model.date.to_s + # TODO: references? + # EMPTY: info_availablity + # TODO: related_models = find qmrf reports for QSAR_models + + # chapter 3 + # TODO "model_species" ? + endpoints = [] + model.predictedVariables.each do |p| + endpoints << { :name => p } # TODO :group, :subgroup ? + end + r.model_endpoint = { "endpoints_catalog" => endpoints } + # TODO "endpoint_comments" => "3.3", "endpoint_units" => "3.4", + r.endpoint_variable = model.dependentVariables + # TODO "endpoint_protocol" => "3.6", "endpoint_data_quality" => "3.7", + + # chapter 4 + # TODO algorithm_type (='type of model') + # TODO algorithm_explicit.equation + # TODO algorithm_explicit.algorithms_catalog + # TODO algorithms_descriptors, descriptors_selection, descriptors_generation, descriptors_generation_software, descriptors_chemicals_ratio + + # chapter 5 + # TODO app_domain_description, app_domain_method, app_domain_software, applicability_limits + + # chapter 6 + # "training_set_availability" => "6.1", "training_set_data" => "6.2","training_set_descriptors" => "6.3", + # "dependent_var_availability" => "6.4", "other_info" => "6.5", "preprocessing" => "6.6", "goodness_of_fit" => "6.7", + # "loo" => "6.8", "lmo" => "6.9", "yscrambling" => "6.10", "bootstrap" => "6.11", "other_statistics" => "6.12", + + # chapter 7 + # "validation_set_availability" => "7.1", "validation_set_data" => "7.2", "validation_set_descriptors" => "7.3", + # "validation_dependent_var_availability" => "7.4", "validation_other_info" => "7.5", "experimental_design" => "7.6", + # "validation_predictivity" => "7.7", "validation_assessment" => "7.8", "validation_comments" => "7.9", + + # chapter 8 + # "mechanistic_basis" => "8.1", "mechanistic_basis_comments" => "8.2", "mechanistic_basis_info" => "8.3", + + # chapter 9 + # "comments" => "9.1", "bibliography" => "9.2", "attachments" => "9.3", + + r.save! + end + + def self.get_report_content(type, id, *keys) + + report_content = get_report(type, id).get_content + keys.each do |k| + $sinatra.halt 400, type+" unknown report property '#{key}'" unless report_content.is_a?(Hash) and report_content.has_key?(k) + report_content = report_content[k] + end + report_content + end + + def self.get_report(type, id) + + case type + when /(?i)QMRF/ + report = ReachReports::QmrfReport.find(id) + when /(?i)QPRF/ + report = ReachReports::QprfReport.find(id) + end + $sinatra.halt 404, type+" report with id '#{id}' not found." unless report + return report + end +end \ No newline at end of file diff --git a/reach_reports/reach_test.rb b/reach_reports/reach_test.rb new file mode 100644 index 0000000..c96340a --- /dev/null +++ b/reach_reports/reach_test.rb @@ -0,0 +1,62 @@ +require "uri" +require "yaml" +ENV['RACK_ENV'] = 'test' +require 'application.rb' +require 'test/unit' +require 'rack/test' +require 'lib/test_util.rb' +require 'test/test_examples.rb' + +LOGGER = MyLogger.new(STDOUT) +LOGGER.datetime_format = "%Y-%m-%d %H:%M:%S " +LOGGER.formatter = Logger::Formatter.new + + +class ReachTest < Test::Unit::TestCase + include Rack::Test::Methods + include Lib::TestUtil + + + def app + Sinatra::Application + end + + def test_it + #$test_case = self + + post '/reach_report/qmrf',:model_uri=>"http://localhost/model/16" + ##post '/reach_report/qprf',:compound_uri=>"http://localhost/compound/XYZ" + uri = last_response.body + id = uri.split("/")[-1] + puts uri + + #get '/reach_report/qmrf' + #puts last_response.body + + get '/reach_report/qmrf/'+id.to_s,nil,'HTTP_ACCEPT'=>"application/x-yaml" + puts "YAML" + puts last_response.body + +# get '/reach_report/qmrf/'+id.to_s,nil,'HTTP_ACCEPT'=>"application/rdf+xml" +# puts "RDF" +# puts last_response.body + + get '/reach_report/qmrf/'+id,nil,'HTTP_ACCEPT' => "application/qmrf-xml" + puts "XML" + puts last_response.body + + + end +end + + +# query = < +#PREFIX rdf: +#select ?model +#where { +#?model rdf:type ot:Model +#} +#EOF +# puts OpenTox::RestClientWrapper.post("http://apps.ideaconsult.net:8080/ontology/",{:accept => "application/rdf+xml", :query => query}) +# exit \ No newline at end of file diff --git a/reach_reports/reach_to_xml.rb b/reach_reports/reach_to_xml.rb new file mode 100644 index 0000000..311f59f --- /dev/null +++ b/reach_reports/reach_to_xml.rb @@ -0,0 +1,60 @@ + +module ReachReports include REXML + + def self.reach_report_to_xml( report ) + + @@info = {} + if report.type=="QMRF" + @@info[:type ] = "QMRF" + @@info[:dtd_full ] = "http://ambit.sourceforge.net/qmrf/jws/qmrf.dtd" + @@info[:dtd ] = "qmrf.dtd" + @@info[:version ] = 1.2 + @@info[:schema_version] = 0.9 + @@info[:name ] = "(Q)SAR Model Reporting Format" + elsif report.type=="QPRF" + @@info[:type ] = "QPRF" + @@info[:dtd_full ] = "not-yet-defined/qprf.dtd" + @@info[:dtd ] = "qprf.dtd" + @@info[:version ] = 0.1 + @@info[:schema_version] = 0.1 + @@info[:name ] = "(Q)SAR Prediction Reporting Format" + end + @@info[:author] ="Joint Research Centre, European Commission" + @@info[:contact] ="Joint Research Centre, European Commission" + @@info[:date ] = Time.new.to_s + @@info[:email] ="qsardb@jrc.it" + @@info[:schema_version] ="0.9" + @@info[:url ] = "http://ecb.jrc.ec.europa.eu/qsar/" + + doc = Document.new + decl = XMLDecl.new + doc << decl + type = DocType.new(@@info[:type]+' PUBLIC "'+@@info[:dtd_full]+'" "'+@@info[:dtd]+'"') + doc << type + + main = Element.new(@@info[:type]) + main.add_attributes( Hash[*[:version, :schema_version, :name, :author, :contact, + :date, :email, :schema_version, :url].collect { |v| [v.to_s, @@info[v]]}.flatten] ) + + catalogs = Element.new("Catalogs") + chapters = Element.new(@@info[:type]+"_chapters") + + QmrfProperties.chapters.each do |c| + chapter = Element.new(c) + chapter.add_attribute("chapter",QmrfProperties.chapter_number(c)) + QmrfProperties.chapter_properties(c).each do |p| + chapter << QmrfProperties.to_xml(p, report.send(p), catalogs) + end + chapters << chapter + end + + main << chapters + main << catalogs + doc << main + + s = "" + doc.write(s, 2, false, false) + return s + end + +end \ No newline at end of file diff --git a/report/report_persistance.rb b/report/report_persistance.rb index b6f52b6..acb29c6 100644 --- a/report/report_persistance.rb +++ b/report/report_persistance.rb @@ -70,7 +70,6 @@ end class Reports::FileReportPersistance < Reports::ReportPersistance def initialize() - raise "pls specify report-directory (:reports -> :report_dir) in config file" unless @@config[:reports] and @@config[:reports][:report_dir] FileUtils.mkdir REPORT_DIR unless File.directory?(REPORT_DIR) raise "report cannot be found nor created" unless File.directory?(REPORT_DIR) LOGGER.debug "reports are stored in "+REPORT_DIR diff --git a/report/report_test.rb b/report/report_test.rb index 1c838bf..0256702 100644 --- a/report/report_test.rb +++ b/report/report_test.rb @@ -17,14 +17,14 @@ class Reports::ApplicationTest < Test::Unit::TestCase def test_nothing - file = File.new("qmrf-report.xml") - raise "File not found: "+file.path.to_s unless File.exist?(file.path) - data = File.read(file.path) - puts OpenTox::RestClientWrapper.post("http://localhost/validation/report/qmrf/1",{:content_type => "application/qmrf-xml"},data).to_s.chomp +# file = File.new("qmrf-report.xml") +# raise "File not found: "+file.path.to_s unless File.exist?(file.path) +# data = File.read(file.path) +# puts OpenTox::RestClientWrapper.post("http://localhost/validation/report/qmrf/1",{:content_type => "application/qmrf-xml"},data).to_s.chomp #get "/report/qmrf/1",nil,'HTTP_ACCEPT' => "application/qmrf-xml"#"application/rdf+xml"#"application/x-yaml" - #get "/report/validation/1",nil,'HTTP_ACCEPT' => "application/rdf+xml"#"application/x-yaml" - #puts last_response.body.to_s + get "/report/validation?model=http://localhost/model/1" #,nil,'HTTP_ACCEPT' => "application/rdf+xml"#"application/x-yaml" + puts last_response.body.to_s #Reports::XMLReport.generate_demo_xml_report.write_to #raise "stop" diff --git a/validation/validation_application.rb b/validation/validation_application.rb index 5740263..263c88c 100644 --- a/validation/validation_application.rb +++ b/validation/validation_application.rb @@ -239,7 +239,7 @@ post '/validate_datasets' do halt 202,task_uri end -get '/:id/:predictions' do +get '/:id/predictions' do LOGGER.info "get validation predictions "+params.inspect begin validation = Validation::Validation.find(params[:id]) diff --git a/validation/validation_test.rb b/validation/validation_test.rb index cbaa84b..4803167 100644 --- a/validation/validation_test.rb +++ b/validation/validation_test.rb @@ -18,13 +18,29 @@ class ValidationTest < Test::Unit::TestCase def test_it $test_case = self + + #get "?model=http://localhost/model/1" +# get "/crossvalidation/3/predictions" +# puts last_response.body + +# post "/validate_datasets",{ +# :test_dataset_uri=>"http://apps.deaconsult.net:8080/ambit2/dataset/R3924", +# :prediction_dataset_uri=>"http://apps.ideaconsult.net:8080/ambit2/dataset/R3924?feature_uris[]=http%3A%2F%2Fapps.ideaconsult.net%3A8080%2Fambit2%2Fmodel%2F52%2Fpredicted", +# #:test_target_dataset_uri=>"http://localhost/dataset/202", +# :prediction_feature=>"http://apps.ideaconsult.net:8080/ambit2/feature/21715", +# :predicted_feature=>"http://apps.ideaconsult.net:8080/ambit2/feature/28944", +# :regression=>"true"} +# #:classification=>"true"} +# puts last_response.body + + #delete "/7" #get "/crossvalidation/4/statistics" # post "",:model_uri=>"http://localhost/model/1",:test_dataset_uri=>"http://localhost/dataset/3", # :test_target_dataset_uri=>"http://localhost/dataset/1" - #get "/crossvalidation/1",nil,'HTTP_ACCEPT' => "application/rdf+xml" - #puts last_response.body + # get "/1",nil,'HTTP_ACCEPT' => "application/rdf+xml" + # puts last_response.body # post "/test_validation",:select=>"6d" #,:report=>"yes,please" # puts last_response.body @@ -39,9 +55,9 @@ class ValidationTest < Test::Unit::TestCase # #:classification=>"true"} # puts last_response.body - run_test("3b" ) #, "http://localhost/validation/826") #,"http://localhost/validation/report/validation/36") #, "http://localhost/validation/321") + run_test("8b") #, "http://localhost/validation/crossvalidation/3" )# //localhost/validation/42")#, "http://localhost/validation/report/validation/8") #,"http://localhost/validation/report/validation/36") #, "http://localhost/validation/321") - #run_test("7a") #,"http://localhost/validation/crossvalidation/10") #, "http://localhost/validation/321") + # run_test("7a","http://localhost/validation/40") #,"http://localhost/validation/crossvalidation/10") #, "http://localhost/validation/321") #run_test("8b", "http://localhost/validation/crossvalidation/4") @@ -55,7 +71,8 @@ class ValidationTest < Test::Unit::TestCase Sinatra::Application end - def run_test(select, validation_uri=nil) + def run_test(select=nil, validation_uri=nil, report_uri=nil) + puts ValidationExamples.list unless select validationExamples = ValidationExamples.select(select) validationExamples.each do |vv| vv.each do |v| @@ -65,10 +82,14 @@ class ValidationTest < Test::Unit::TestCase ex.upload_files ex.check_requirements ex.validate - LOGGER.debug "validation done "+ex.validation_uri.to_s + LOGGER.debug "validation done '"+ex.validation_uri.to_s+"'" + end + ex.report_uri = report_uri + unless ex.report_uri + ex.report end ex.verify_yaml - ex.report + ex.compare_yaml_vs_rdf end end end -- cgit v1.2.3 From 4e596159e74dea2124b89f1beb1dab01a97b0242 Mon Sep 17 00:00:00 2001 From: mguetlein Date: Thu, 12 Aug 2010 17:03:34 +0200 Subject: remove ominous require 'tasks/opentox' from Rakefile --- Rakefile | 1 - 1 file changed, 1 deletion(-) diff --git a/Rakefile b/Rakefile index 5bce8e2..938506a 100644 --- a/Rakefile +++ b/Rakefile @@ -1,6 +1,5 @@ require 'rubygems' require 'rake' -require 'tasks/opentox' REPORT_GEMS = ['rubygems', 'logger', 'fileutils', 'sinatra', 'sinatra/url_for', 'rest_client', 'yaml', 'opentox-ruby-api-wrapper', 'fileutils', 'mime/types', 'abbrev', -- cgit v1.2.3 From 0f5cc11dcecf6eda0a7230d69aa346cfb86c6a49 Mon Sep 17 00:00:00 2001 From: mguetlein Date: Wed, 18 Aug 2010 17:53:46 +0200 Subject: first version reach reporting --- db/migrate/003_init_reach.rb | 31 - reach_reports/reach_application.rb | 48 +- reach_reports/reach_persistance.rb | 1119 +++++++++++++++++++++++++++++++++++- reach_reports/reach_properties.rb | 158 ----- reach_reports/reach_service.rb | 60 +- reach_reports/reach_test.rb | 171 +++++- reach_reports/reach_to_xml.rb | 60 -- report/report_factory.rb | 1 + test/test_examples.rb | 1 + validation/validation_test.rb | 6 +- 10 files changed, 1326 insertions(+), 329 deletions(-) delete mode 100644 db/migrate/003_init_reach.rb delete mode 100644 reach_reports/reach_properties.rb delete mode 100644 reach_reports/reach_to_xml.rb diff --git a/db/migrate/003_init_reach.rb b/db/migrate/003_init_reach.rb deleted file mode 100644 index 1f75b75..0000000 --- a/db/migrate/003_init_reach.rb +++ /dev/null @@ -1,31 +0,0 @@ - -require "reach_reports/reach_properties.rb" - -class InitReach < ActiveRecord::Migration - def self.up - - create_table :qmrf_reports do |t| - [:model_uri - ].each{ |p| t.column(p,:string,:limit => 255) } - [:created_at - ].each{ |p| t.column(p,:datetime) } - - ReachReports::QmrfProperties.properties.each{ |p| t.column(p,:text, :limit => 16320) } - end - - create_table :qprf_reports do |t| - [:compound_uri,:dataset_uri,:model_uri,:algorithm_uri - ].each{ |p| t.column(p,:string,:limit => 255) } - [:created_at - ].each{ |p| t.column(p,:datetime) } - end - - end - - def self.down - [:qmrf_reports, :qprf_reports].each do |t| - drop_table t if table_exists? t - end - end -end - diff --git a/reach_reports/reach_application.rb b/reach_reports/reach_application.rb index 96b6b37..596bae2 100644 --- a/reach_reports/reach_application.rb +++ b/reach_reports/reach_application.rb @@ -1,13 +1,10 @@ -[ 'rubygems', 'sinatra', 'sinatra/url_for', 'active_record', 'ar-extensions', 'opentox-ruby-api-wrapper' ].each do |lib| +[ 'rubygems', 'sinatra', 'sinatra/url_for', 'opentox-ruby-api-wrapper' ].each do |lib| require lib end -require 'reach_reports/reach_properties.rb' require 'reach_reports/reach_persistance.rb' require 'reach_reports/reach_service.rb' -require 'reach_reports/reach_to_xml.rb' - require "lib/format_util.rb" @@ -27,7 +24,7 @@ post '/reach_report/:type' do content_type "text/uri-list" type = extract_type(params) LOGGER.info "creating "+type+" report "+params.inspect - ReachReports.create_report(type,params) + ReachReports.create_report(type,params,request.env["rack.input"]) end get '/reach_report/:type/:id' do @@ -38,32 +35,49 @@ get '/reach_report/:type/:id' do case request.env['HTTP_ACCEPT'].to_s when "application/rdf+xml" - owl = OpenTox::Owl.create(rep.type+"Report",rep.report_uri) + halt 400, "application/rdf+xml not yet supported" + owl = OpenTox::Owl.create(type+"Report",rep.report_uri) owl.set_data( rep.get_content.keys_to_rdf_format ) result = owl.rdf when "application/qmrf-xml" content_type "application/qmrf-xml" - result = ReachReports.reach_report_to_xml(rep) + result = rep.to_xml + #f = File.new("/home/martin/info_home/.public_html/qmrf.out.xml","w") + #f.puts result when /application\/x-yaml|\*\/\*|^$/ # matches 'application/x-yaml', '*/*', '' content_type "application/x-yaml" - result = rep.get_content.to_yaml + result = rep.to_yaml else halt 400, "MIME type '"+request.env['HTTP_ACCEPT'].to_s+"' not supported, valid Accept-Headers are \"application/rdf+xml\", \"application/x-yaml\", \"application/qmrf-xml\"." end + result end -get '/reach_report/:type/:id/:section' do +post '/reach_report/:type/:id' do type = extract_type(params) - LOGGER.info "get "+type+" report section '"+params[:section].to_s+"', with id "+params[:id].to_s+"' "+request.env['HTTP_ACCEPT'].to_s+"'" - ReachReports.get_report(type, params[:id], params[:section]).to_yaml -end + LOGGER.info "set "+type+" report with id "+params[:id].to_s+"' "+request.env['HTTP_ACCEPT'].to_s+"'" + rep = ReachReports.get_report(type, params[:id]) -get '/reach_report/:type/:id/:section/:subsection' do - - type = extract_type(params) - LOGGER.info "get "+type+" report subsection '"+params[:subsection].to_s+"', section '"+params[:section].to_s+"', with id "+params[:id].to_s+"' "+request.env['HTTP_ACCEPT'].to_s+"'" - ReachReports.get_report(type, params[:id], params[:section], params[:subsection]).to_yaml + input = request.env["rack.input"].read + halt 400, "no xml data specified" unless input && input.to_s.size>0 + ReachReports::QmrfReport.from_xml(rep,input) + #f = File.new("/home/martin/info_home/.public_html/qmrf.out.xml","w") + #f.puts rep.to_xml end +#get '/reach_report/:type/:id/:section' do +# +# type = extract_type(params) +# LOGGER.info "get "+type+" report section '"+params[:section].to_s+"', with id "+params[:id].to_s+"' "+request.env['HTTP_ACCEPT'].to_s+"'" +# ReachReports.get_report(type, params[:id], params[:section]).to_yaml +#end +# +#get '/reach_report/:type/:id/:section/:subsection' do +# +# type = extract_type(params) +# LOGGER.info "get "+type+" report subsection '"+params[:subsection].to_s+"', section '"+params[:section].to_s+"', with id "+params[:id].to_s+"' "+request.env['HTTP_ACCEPT'].to_s+"'" +# ReachReports.get_report(type, params[:id], params[:section], params[:subsection]).to_yaml +#end + diff --git a/reach_reports/reach_persistance.rb b/reach_reports/reach_persistance.rb index 786c48f..98c41fe 100644 --- a/reach_reports/reach_persistance.rb +++ b/reach_reports/reach_persistance.rb @@ -1,4 +1,370 @@ +require "dm-validations" + +DataMapper::Model.raise_on_save_failure = true + +module REXML + + class Element + def self.find_or_create(parent_node, name) + if parent_node.elements[name] + parent_node.elements[name] + else + node = Element.new(name) + parent_node << node + node + end + end + end + + class TextElement < Element + def initialize(name, text) + super(name) + self.text = text + end + + def self.find_or_create(parent_node, name, text) + elem = Element.find_or_create(parent_node, name) + elem.text = text + elem + end + end +end + + +class Symbol + + XML_ALIAS = { + :qsar_identifier => "QSAR_identifier", :qsar_title => "QSAR_title", :qsar_software => "QSAR_software", + :qsar_models => "QSAR_models", :qsar_general_information => "QSAR_General_information", + :qsar_endpoint => "QSAR_Endpoint", :qmrf_author => "qmrf_authors", :qsar_algorithm => "QSAR_Algorithm", + :qsar_applicability_domain => "QSAR_Applicability_domain", :qsar_robustness => "QSAR_Robustness", + :qsar_predictivity => "QSAR_Predictivity", :qsar_interpretation => "QSAR_Interpretation", + :qsar_miscelaneous => "QSAR_Miscelaneous", :qmrf_summary => "QMRF_Summary", :qmrf_number => "QMRF_number" } + + def xml_alias + XML_ALIAS[self] ? XML_ALIAS[self] : self.to_s + end +end + +class DataMapper::Associations::OneToMany::Relationship + def get_child_model + @child_model + end +end + +module DataMapper::Resource + + def association_class( property ) + relationship = relationships[property] + raise "no relationship found for "+property.to_s+" "+relationships.inspect unless relationship + raise "not a many-to-one or one-to-one association for "+property.to_s+" "+relationship.inspect unless + relationship.is_a?(DataMapper::Associations::OneToMany::Relationship) or + relationship.is_a?(DataMapper::Associations::OneToOne::Relationship) + relationship.get_child_model + end + + def from_xml(node) + + raise "node is nil ("+self.class.to_s+".from_xml)" unless node + #puts "FROM xml: "+self.class.to_s #+", NODE: "+node.to_s + + dbg_check = { :attributes => Set.new(), :nodes => Set.new(), :subnodes => Set.new() } + + xml_infos.each do |xml_info| + + if xml_info.is_a?(ReachReports::TextNodeProperty) + text_node = node.elements[ xml_info.xml_prop ] + raise "node not found: "+ xml_info.xml_prop+" ("+self.class.to_s+".from_xml)" unless text_node + self.send( xml_info.prop.to_s+"=", text_node.text ) + dbg_check[:nodes] << text_node.name + + elsif xml_info.is_a?(ReachReports::CatalogReference) + root_node = node.elements[ xml_info.xml_prop ] + raise "node not found: "+ xml_info.xml_prop+" ("+self.class.to_s+".from_xml)" unless root_node + dbg_check[:nodes] << root_node.name + + self.send(xml_info.prop).each{ |s| s.destroy } if self.send(xml_info.prop) + self.send(xml_info.prop).clear() #otherwise the content is tmp still here + + catalog_node = $catalogs_node.elements[xml_info.catalog_name] + + root_node.each_element(xml_info.catalog_element+"_ref") do |n| + ref = nil + catalog_node.each_element_with_attribute("id", n.attribute("idref").to_s) do |e| + ref = e + break + end + raise "referenced node not found for "+xml_info.xml_prop+" in catalog "+xml_info.catalog_name+" ref-node was "+n.to_s unless ref + dbg_check[:subnodes] << n + + entry = self.association_class(xml_info.prop).new + entry.from_xml( ref ) + self.send(xml_info.prop) << entry + end + + elsif xml_info.is_a?(ReachReports::AttributeProperty) + #puts "attr "+xml_info.prop.to_s + self.send(xml_info.prop.to_s+"=", node.attribute(xml_info.xml_prop)) + dbg_check[:attributes] << xml_info.prop + + elsif xml_info.is_a?(ReachReports::TextSubnodeProperty) + parent_node = node.elements[ xml_info.parent_prop.xml_alias ] + raise "parent node not found: '"+ xml_info.parent_prop.xml_alias+"' ("+self.class.to_s+".from_xml)" unless parent_node + text_node = parent_node.elements[ xml_info.xml_prop ] + raise "node not found: "+ xml_info.xml_prop+" ("+self.class.to_s+".from_xml)" unless text_node + self.send( xml_info.prop.to_s+"=", text_node.text ) + dbg_check[:nodes] << parent_node.name + dbg_check[:subnodes] << text_node + + elsif xml_info.is_a?(ReachReports::AttributeNodeProperty) + attr_node = node.elements[ xml_info.xml_prop ] + self.send(xml_info.prop.to_s+"=", attr_node.attribute(xml_info.attribute)) + dbg_check[:nodes] << attr_node.name + + elsif xml_info.is_a?(ReachReports::MultiAttributeNodeProperty) + attr_node = node.elements[ xml_info.xml_prop ] + entry = self.association_class( xml_info.prop ).new + entry.from_xml(attr_node) + self.send(xml_info.prop.to_s+"=",entry) + dbg_check[:nodes] << attr_node.name + + else + raise "type not supported yet: "+xml_info.inspect + end + end + + ##raise "not a qsar_identifier" unless qsar_identifier.is_a?(QsarIdentifier) + + #puts node.elements.inspect + #puts "there we go: "+qsar_identifier.qsar_software.to_s + #qsar_identifier.qsar_software = QsarSoftware.new + #puts "there we go: "+qsar_identifier.qsar_software.to_s + #exit + + # if defined?(self.class.text_properties) +# self.class.text_properties.each do |p| +# puts "set "+p.to_s +# raise "node not found: "+p.xml_alias.to_s+" ("+self.class.to_s+".from_xml)" unless node.elements[p.xml_alias] +# #puts "set "+p.to_s+" to: "+node.elements[p.xml_alias].text.to_s +# self.send(p.to_s+"=", node.elements[p.xml_alias].text) +# #qsar_identifier.qsar_models = node.elements["qsar_models".xml_alias].text +# dbg_check[:nodes] << node.elements[p.xml_alias].name +# end +# + + +# if defined?(self.class.subsection_properties) +# self.class.subsection_properties.each do |section_p, subsection_p| +# #puts "set "+p.to_s +# #raise "node not found: "+p.xml_alias.to_s+" ("+self.class.to_s+".from_xml)" unless node.elements[p.xml_alias] +# #puts "set "+p.to_s+" to: "+node.elements[p.xml_alias].text.to_s +# section = node.elements[section_p.xml_alias] +# subsection = section.elements[subsection_p.xml_alias] +# self.send(subsection_p.to_s+"=", subsection.text) +# +# dbg_check[:nodes] << section.name +# dbg_check[:subnodes] << subsection +# +# #qsar_identifier.qsar_models = node.elements["qsar_models".xml_alias].text +# #dbg_check[:text_nodes] << node.elements[p.xml_alias].name +# end +# end + +# if defined?(self.class.attribute_properties) +# self.class.attribute_properties.each do |p| +# puts "read attribute "+p.to_s +# #self.update(p => node.attribute(p.xml_alias)) +# self.send(p.to_s+"=", node.attribute(p.xml_alias)) +# dbg_check[:attributes] << p +# #qsar_identifier.qsar_models = node.elements["qsar_models".xml_alias].text +# end +# end + + #qsar_identifier.qsar_title = node.elements["qsar_title".xml_alias].text + #qsar_identifier.qsar_models = node.elements["qsar_models".xml_alias].text + + + + ignore_attribs =[ "id", "name", "help", "chapter" ] + node.attributes.each do |a,v| + unless (ignore_attribs.include?(a.to_s)) || dbg_check[:attributes].include?(a.to_sym) + raise "not handled : attribute '"+a.to_s+"' -> '"+v.to_s+"'" + + "\n("+self.class.to_s+".from_xml)" + + "\nchecked:\n"+dbg_check[:attributes].to_yaml+ + "\nnode-attribtues:\n"+node.attributes.to_yaml + end + end + + node.each_element do |n| +# if n.text!=nil and n.text.to_s.size>0 and +# !dbg_check[:text_nodes].include?(n.name) and +# (!dbg_check[:catalog_nodes].has_key?(n.name)) + + valid = dbg_check[:nodes].include?(n.name) + if (valid) + refs = dbg_check[:subnodes] + #puts "sub "+refs.inspect + n.each_element do |nn| + #puts "lookin for ref "+nn.to_s + unless refs.include?(nn) + valid = false + break + end + end + end + + unless valid + raise puts "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX\nXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX\nnot handled node : "+n.to_s+ + "\n("+self.class.to_s+".from_xml)" +# raise "not handled node : "+n.to_s+ +# "\n("+self.class.to_s+".from_xml)" + +# "\nchecked text nodes:\n"+dbg_check[:text_nodes].to_yaml+ +# "\nchecked catalog nodes:\n"+dbg_check[:catalog_nodes].to_yaml+ +# "\nnode-attribtues:\n"+n.attributes.to_yaml + end + end + + + #self.save! + #self.reload +# unless self.save +# self.errors.each do |e| +# puts "Error: "+e.to_s +# end +# end + #puts "self id: "+self.id.to_s + +# qsar_identifier.qsar_software.each{ |s| s.destroy } if qsar_identifier.qsar_software +# qsar_identifier.qsar_software.update({}) #otherwise the content is tmp still here +# +# catalog_node = $catalogs_node.elements["software_catalog"] +# +# node.elements[:qsar_software.xml_alias].each_element do |n| +# +# puts "reading software ref "+n.to_s +# ref = nil +# catalog_node.each_element_with_attribute("id", n.attribute("idref").to_s) do |e| +# ref = e +# break +# end +# software = QsarSoftware.new +# QsarSoftware.from_xml( software, ref ) +# qsar_identifier.qsar_software << software +# end +# #qsar_identifier.qsar_software = QsarSoftware.new unless qsar_identifier.qsar_software +# #QsarSoftware.from_xml( qsar_identifier.qsar_software, node.elements["qsar_software".xml_alias] ) + + end + + def to_XML(node, chapter=nil ) + + xml_infos.each do |xml_info| + if xml_info.is_a?(ReachReports::TextNodeProperty) + new_node = REXML::TextElement.find_or_create(node, xml_info.xml_prop,self.send(xml_info.prop)) + + elsif xml_info.is_a?(ReachReports::CatalogReference) + + new_node = REXML::Element.find_or_create( node, xml_info.xml_prop ) + catalog_node = $catalogs_node.elements[ xml_info.catalog_name ] + + self.send(xml_info.prop.to_s+"=",[self.association_class(xml_info.prop).new]) unless self.send(xml_info.prop) and self.send(xml_info.prop).size>0 + + self.send( xml_info.prop ).each do |elem| + elem_node = REXML::Element.new(xml_info.catalog_element ) + elem.to_XML( elem_node ) + # if not saved, i.e. the element was only created for a complete xml, count elements in catalog for id + element_id = xml_info.catalog_element+"_"+(elem.id ? elem.id.to_s : (catalog_node.elements.size+1).to_s) + elem_node.add_attribute("id",element_id) + catalog_node << elem_node + + ref_node = REXML::Element.new(xml_info.catalog_element+"_ref" ) + ref_node.add_attributes("idref"=>element_id,"catalog"=>xml_info.catalog_name) + new_node << ref_node + end + + elsif xml_info.is_a?(ReachReports::AttributeProperty) + node.add_attribute( xml_info.xml_prop, self.send(xml_info.prop).to_s ) + + elsif xml_info.is_a?(ReachReports::TextSubnodeProperty) + new_node = REXML::Element.find_or_create( node, xml_info.parent_prop.xml_alias) + REXML::TextElement.find_or_create( new_node, xml_info.xml_prop,self.send(xml_info.prop)) + + elsif xml_info.is_a?(ReachReports::AttributeNodeProperty) + new_node = REXML::Element.find_or_create(node, xml_info.xml_prop) + new_node.add_attribute(xml_info.attribute, self.send(xml_info.prop).to_s) + + elsif xml_info.is_a?(ReachReports::MultiAttributeNodeProperty) + new_node = REXML::Element.find_or_create(node, xml_info.xml_prop) + self.send(xml_info.prop.to_s+"=",self.association_class(xml_info.prop).new) unless self.send(xml_info.prop) + self.send(xml_info.prop).to_XML(new_node) + + else + raise "type not supported yet: "+xml_info.inspect + end + + new_node.add_attribute("chapter", chapter.to_s+"."+node.elements.size.to_s) if chapter and new_node and new_node.attribute("chapter")==nil + end + +# if defined?(self.class.text_properties) +# self.class.text_properties.each do |p| +# node << REXML::TextElement.new(p.xml_alias,self.send(p)) +# end +# end + #node << REXML::TextElement.new(:qsar_title.xml_alias,qsar_title) + #node << REXML::TextElement.new(:qsar_models.xml_alias,qsar_models) + +# if defined?(self.class.catalog_entries) +# self.class.catalog_entries.each do |p| #,associatedClass| +# +# assoc_node = REXML::Element.new( p.xml_alias ) +# self.send(p).each{ |s| s.to_XML( assoc_node ) } +# node << assoc_node +# end +# end +# +# if defined?(self.class.catalog_name) +# catalog_node = $catalogs_node.elements[self.class.catalog_name] +# node_ref = REXML::Element.new(self.class.catalog_element+"_ref") +# +# raise "id is nil" if self.id==nil || self.id.to_s.size==0 +# element_id = self.class.catalog_element+"_"+self.id.to_s +# node_ref.add_attributes("idref"=>element_id,"catalog"=>self.class.catalog_name) +# +# content_node = REXML::Element.new(self.class.catalog_element) +# content_node.add_attribute("id",element_id) +# self.class.attribute_properties.each do |p| +# content_node.add_attribute p.xml_alias,send(p) +# end +# catalog_node << content_node +# node << node_ref +# +## def catalog_to_xml(node, catalog_name, element_name, attributes) +## catalog_node = $catalogs_node.elements[catalog_name] +## node_ref = REXML::Element.new(element_name+"_ref") +## attributes["id"] = element_name+"_"+attributes.delete("id").to_s +## node_ref.add_attributes("idref"=>attributes["id"],"catalog"=>catalog_name) +## content_node = REXML::Element.new(element_name) +## #puts "my attribts: "+attributes.inspect +## attributes.each do |k,v| +## content_node.add_attribute k,v.to_s +## end +## catalog_node << content_node +## node << node_ref +## end +# end + + +# node << REXML::TextElement.new(:qsar_title.xml_alias,qsar_title) +# node << REXML::TextElement.new(:qsar_models.xml_alias,qsar_models) +# qsar_software_node = REXML::Element.new(:qsar_software.xml_alias) +# qsar_software.each{ |s| s.to_xml( qsar_software_node ) } +# node << qsar_software_node + end + +end + + module ReachReports def self.get_uri( report ) @@ -6,42 +372,755 @@ module ReachReports return $sinatra.url_for("/"+File.join(report.type,report.id.to_s), :full).to_s end - class QmrfReport < ActiveRecord::Base - alias_attribute :date, :created_at + + +# module CatalogEntry +# +# def catalog_to_xml(node, catalog_name, element_name, attributes) +# catalog_node = $catalogs_node.elements[catalog_name] +# node_ref = REXML::Element.new(element_name+"_ref") +# attributes["id"] = element_name+"_"+attributes.delete("id").to_s +# node_ref.add_attributes("idref"=>attributes["id"],"catalog"=>catalog_name) +# content_node = REXML::Element.new(element_name) +# #puts "my attribts: "+attributes.inspect +# attributes.each do |k,v| +# content_node.add_attribute k,v.to_s +# end +# catalog_node << content_node +# node << node_ref +# end +# end + +# class QsarSoftware +# include DataMapper::Resource #, CatalogEntry +# +# property :id, Serial +# property :contact, String, :length => 255 +# property :description, String, :length => 255 +# property :name, String, :length => 255 +# property :number, String, :length => 255 +# property :url, String, :length => 255 +# +# def self.attribute_properties +# [ :contact, :description, :name, :number, :url ] +# end +# +# def self.catalog_name +# "software_catalog" +# end +# +# def self.catalog_element +# "software" +# end +# +# belongs_to :qsar_identifier +# end + + class Software + include DataMapper::Resource #, CatalogEntry - QmrfProperties.serialized_properties.each do |p| - serialize p + property :id, Serial + property :contact, String, :length => 255 + property :description, String, :length => 255 + property :name, String, :length => 255 + property :number, String, :length => 255 + property :url, String, :length => 255 + + def xml_infos + [ AttributeProperty.new(:contact), + AttributeProperty.new(:description), + AttributeProperty.new(:name), + AttributeProperty.new(:number), + AttributeProperty.new(:url) ] end + end + + class QsarSoftware < Software + #belongs_to :qsar_identifier, :key => false + property :qsar_identifier_id, Integer + end + + class XmlInfo + + attr_accessor :prop - def type - "QMRF" + protected + def initialize( prop ) + @prop = prop end - def report_uri - ReachReports.get_uri(self) + public + def xml_prop + @prop.xml_alias end + end + + class TextNodeProperty < XmlInfo - def get_content - hash = {} - [ :model_uri, :date ].each{ |p| hash[p] = self.send(p) } - QmrfProperties.properties.each{ |p| hash[p] = self.send(p) } - return hash + end + + class TextSubnodeProperty < XmlInfo + attr_accessor :parent_prop + + def initialize( prop, parent_prop ) + super(prop) + @parent_prop = parent_prop end end + class AttributeProperty < XmlInfo + + end + + class MultiAttributeNodeProperty < XmlInfo + + end + + class AttributeNodeProperty < XmlInfo + attr_accessor :attribute + + def initialize( prop, attribute ) + super(prop) + @attribute = attribute + end + end - class QprfReport < ActiveRecord::Base + class CatalogReference < XmlInfo + attr_accessor :catalog_name, :catalog_element + + def initialize( prop, catalog_name, catalog_element ) + super(prop) + @catalog_name = catalog_name + @catalog_element = catalog_element + end + end + + + class QsarIdentifier + include DataMapper::Resource + + property :id, Serial + property :qsar_title, Text + property :qsar_models, Text + + has n, :qsar_software + + def xml_infos + [ TextNodeProperty.new(:qsar_title), + TextNodeProperty.new(:qsar_models), + CatalogReference.new(:qsar_software, "software_catalog", "software") ] + end + + belongs_to :qmrf_report + end + + class Author + include DataMapper::Resource + + property :id, Serial + property :affiliation, String, :length => 255 + property :contact, String, :length => 255 + property :email, String, :length => 255 + property :name, String, :length => 255 + property :number, String, :length => 255 + property :url, String, :length => 255 + + def xml_infos + [ AttributeProperty.new(:affiliation), + AttributeProperty.new(:contact), + AttributeProperty.new(:email), + AttributeProperty.new(:name), + AttributeProperty.new(:number), + AttributeProperty.new(:url) ] + end + end + + class QmrfAuthor < Author + belongs_to :qsar_general_information + end + + class ModelAuthor < Author + belongs_to :qsar_general_information + end + + class Publication + include DataMapper::Resource - alias_attribute :date, :created_at + property :id, Serial + property :title, Text + property :url, String, :length => 255 + + def xml_infos + [ AttributeProperty.new(:title), + AttributeProperty.new(:url) ] + end + end + + class Reference < Publication + #belongs_to :qsar_general_information + property :qsar_general_information_id, Integer + end - def report_uri - ReachReports.get_uri(self) + + class QsarGeneralInformation + include DataMapper::Resource + + property :id, Serial + property :qmrf_date, Text #String, :length => 255 #PENDING -> datetime + property :model_date, Text #String, :length => 255 #PENDING -> datetime + property :qmrf_date_revision, Text #String, :length => 255 #PENDING -> datetime + property :qmrf_revision, Text + property :model_date, Text + property :info_availability, Text + property :related_models, Text + + has n, :qmrf_authors + has n, :model_authors + has n, :references + + def xml_infos + [ TextNodeProperty.new(:qmrf_date), + CatalogReference.new(:qmrf_authors, "authors_catalog", "author"), + TextNodeProperty.new(:qmrf_date_revision), + TextNodeProperty.new(:qmrf_revision), + CatalogReference.new(:model_authors, "authors_catalog", "author"), + TextNodeProperty.new(:model_date), + CatalogReference.new(:references, "publications_catalog", "publication"), + TextNodeProperty.new(:info_availability), + TextNodeProperty.new(:related_models) ] + end + + belongs_to :qmrf_report + end + + class ModelEndpoint + include DataMapper::Resource + + property :id, Serial + property :group, String, :length => 255 + property :name, String, :length => 255 + property :subgroup, String, :length => 255 + + def xml_infos + [ AttributeProperty.new(:group), + AttributeProperty.new(:name), + AttributeProperty.new(:subgroup) ] end - def type - "QPRF" + belongs_to :qsar_endpoint + end + + class QsarEndpoint + include DataMapper::Resource + + property :id, Serial + property :endpoint_variable, Text + property :model_species, Text + property :endpoint_comments, Text + property :endpoint_units, Text + property :endpoint_protocol, Text + property :endpoint_data_quality, Text + + has n, :model_endpoint + + def xml_infos + [ TextNodeProperty.new(:model_species), + CatalogReference.new(:model_endpoint, "endpoints_catalog", "endpoint"), + TextNodeProperty.new(:endpoint_comments), + TextNodeProperty.new(:endpoint_units), + TextNodeProperty.new(:endpoint_variable), + TextNodeProperty.new(:endpoint_protocol), + TextNodeProperty.new(:endpoint_data_quality) ] end + + belongs_to :qmrf_report + end + + class AlgorithmExplicit + include DataMapper::Resource + + property :id, Serial + property :definition, Text + property :description, Text + property :publication_ref, Text + + def xml_infos + [ AttributeProperty.new(:definition), + AttributeProperty.new(:description), + AttributeProperty.new(:publication_ref) ] + end + + belongs_to :qsar_algorithm end -end \ No newline at end of file + class AlgorithmsDescriptor + include DataMapper::Resource + + property :id, Serial + property :description, Text + property :name, Text + property :publication_ref, Text + property :units, Text + + def xml_infos + [ AttributeProperty.new(:description), + AttributeProperty.new(:name), + AttributeProperty.new(:publication_ref), + AttributeProperty.new(:units) ] + end + + belongs_to :qsar_algorithm + end + + class DescriptorsGenerationSoftware < Software + + #belongs_to :qsar_algorithm, :key => false + property :qsar_algorithm_id, Integer + end + + class QsarAlgorithm + include DataMapper::Resource + + property :id, Serial + + property :algorithm_type, Text + property :descriptors_selection, Text + property :descriptors_generation, Text + property :descriptors_chemicals_ratio, Text + property :equation, Text + + has n, :algorithm_explicit + has n, :algorithms_descriptors + has n, :descriptors_generation_software + + def xml_infos + [ TextNodeProperty.new(:algorithm_type), + CatalogReference.new(:algorithm_explicit, "algorithms_catalog", "algorithm"), + TextSubnodeProperty.new(:equation, :algorithm_explicit), + CatalogReference.new(:algorithms_descriptors, "descriptors_catalog", "descriptor"), + TextNodeProperty.new(:descriptors_selection), + TextNodeProperty.new(:descriptors_generation), + CatalogReference.new(:descriptors_generation_software, "software_catalog", "software"), + TextNodeProperty.new(:descriptors_chemicals_ratio), + ] + end + + belongs_to :qmrf_report + end + + class AppDomainSoftware < Software + + #belongs_to :qsar_algorithm, :key => false + property :qsar_applicability_domain_id, Integer + end + + class QsarApplicabilityDomain + include DataMapper::Resource + + property :id, Serial + property :app_domain_description, Text + property :app_domain_method, Text + property :applicability_limits, Text + + has n,:app_domain_software + + def xml_infos + [ TextNodeProperty.new(:app_domain_description), + TextNodeProperty.new(:app_domain_method), + CatalogReference.new(:app_domain_software, "software_catalog", "software"), + TextNodeProperty.new(:applicability_limits), ] + end + + belongs_to :qmrf_report + + end + + class DatasetData + include DataMapper::Resource + + property :id, Serial + property :chemname, String, :default => "No" + property :cas, String, :default => "No" + property :smiles, String, :default => "No" + property :inchi, String, :default => "No" + property :mol, String, :default => "No" + property :formula, String, :default => "No" + + def xml_infos + [ AttributeProperty.new(:chemname), + AttributeProperty.new(:cas), + AttributeProperty.new(:smiles), + AttributeProperty.new(:inchi), + AttributeProperty.new(:mol), + AttributeProperty.new(:formula) ] + end + + end + + class TrainingSetData < DatasetData + + #belongs_to :qsar_robustness + property :qsar_robustness_id, Integer + end + + + class QsarRobustness + include DataMapper::Resource + + property :id, Serial + property :training_set_availability, String, :default => "No" + property :training_set_descriptors, String, :default => "No" + property :dependent_var_availability, String, :default => "No" + property :other_info, Text + property :preprocessing, Text + property :goodness_of_fit, Text + property :loo, Text + property :lmo, Text + property :yscrambling, Text + property :bootstrap, Text + property :other_statistics, Text + + has 1, :training_set_data + + def xml_infos + [ AttributeNodeProperty.new(:training_set_availability, "answer"), + MultiAttributeNodeProperty.new(:training_set_data), + AttributeNodeProperty.new(:training_set_descriptors, "answer"), + AttributeNodeProperty.new(:dependent_var_availability, "answer"), + TextNodeProperty.new(:other_info), + TextNodeProperty.new(:preprocessing), + TextNodeProperty.new(:goodness_of_fit), + TextNodeProperty.new(:loo), + TextNodeProperty.new(:lmo), + TextNodeProperty.new(:yscrambling), + TextNodeProperty.new(:bootstrap), + TextNodeProperty.new(:other_statistics), + ] + end + + belongs_to :qmrf_report + + end + + + class ValidationSetData < DatasetData + + #belongs_to :qsar_predictivity + property :qsar_predictivity_id, Integer + end + + class QsarPredictivity + include DataMapper::Resource + + property :id, Serial + + property :validation_set_availability, String, :default => "No" + property :validation_set_descriptors, String, :default => "No" + property :validation_dependent_var_availability, String, :default => "No" + property :validation_other_info, Text + property :experimental_design, Text + property :validation_predictivity, Text + property :validation_assessment, Text + property :validation_comments, Text + + has 1, :validation_set_data + + def xml_infos + [ AttributeNodeProperty.new(:validation_set_availability, "answer"), + MultiAttributeNodeProperty.new(:validation_set_data), + AttributeNodeProperty.new(:validation_set_descriptors, "answer"), + AttributeNodeProperty.new(:validation_dependent_var_availability, "answer"), + TextNodeProperty.new(:validation_other_info), + TextNodeProperty.new(:experimental_design), + TextNodeProperty.new(:validation_predictivity), + TextNodeProperty.new(:validation_assessment), + TextNodeProperty.new(:validation_comments), + ] + end + + belongs_to :qmrf_report + end + + class QsarInterpretation + include DataMapper::Resource + + property :id, Serial + property :mechanistic_basis, Text + property :mechanistic_basis_comments, Text + property :mechanistic_basis_info, Text + + def xml_infos + [ TextNodeProperty.new(:mechanistic_basis), + TextNodeProperty.new(:mechanistic_basis_comments), + TextNodeProperty.new(:mechanistic_basis_info), + ] + end + + belongs_to :qmrf_report + end + + class Bibliography < Publication + + #belongs_to :qsar_miscelaneous + property :qsar_miscelaneous_id, Integer + end + + class QsarMiscelaneous + include DataMapper::Resource + + property :id, Serial + property :comments, Text + property :attachment_training_data, Text + property :attachment_validation_data, Text + property :attachment_documents, Text + + has n, :bibliography, Text + + def xml_infos + [ TextNodeProperty.new(:comments), + CatalogReference.new(:bibliography,"publications_catalog", "publication"), + TextSubnodeProperty.new(:attachment_training_data, :attachments), + TextSubnodeProperty.new(:attachment_validation_data, :attachments), + TextSubnodeProperty.new(:attachment_documents, :attachments), + ] + end + + belongs_to :qmrf_report + end + + class QmrfSummary + include DataMapper::Resource + + property :id, Serial + property :qmrf_number, Text + property :date_publication, Text + property :keywords, Text + property :summary_comments, Text + + def xml_infos + [ TextNodeProperty.new(:qmrf_number), + TextNodeProperty.new(:date_publication), + TextNodeProperty.new(:keywords), + TextNodeProperty.new(:summary_comments), + ] + end + + belongs_to :qmrf_report + end + + class QmrfReport + include DataMapper::Resource, REXML + + property :id, Serial + property :model_uri, String, :length => 255 + + CHAPTERS = [ :qsar_identifier, :qsar_general_information, :qsar_endpoint, :qsar_algorithm, + :qsar_applicability_domain, :qsar_robustness, :qsar_predictivity, :qsar_interpretation, + :qsar_miscelaneous, :qmrf_summary ] + + CHAPTERS.each{ |c,clazz| has 1, c } + + def to_yaml + super(:methods => CHAPTERS) + end + + def report_uri + return $sinatra.url_for("/QMRF/"+@id.to_s, :full).to_s + end + + def self.from_xml(report, xml_data) + + # DEBUG: REMOVE THIS + #xml_data = File.new("qmrf-report.xml").read + #puts xml_data + # DEBUG: REMOVE THIS + + doc = Document.new xml_data + + root = doc.elements["QMRF"] + raise "no QMRF node found" unless root + chapters = root.elements["QMRF_chapters"] + raise "no chapter node found" unless chapters + $catalogs_node = root.elements["Catalogs"] + raise "catalogs not found" unless $catalogs_node + + CHAPTERS.each do |p| #, chapterClass| + #unless report.send(p) + report.send(p).destroy if report.send(p) + c = report.association_class(p).new #chapterClass.new + #c.save + report.send(p.to_s+"=",c) + #end + report.send(p).from_xml( chapters.elements[p.xml_alias] ) + end + + #raise "already exists" if report.qsar_identifier + #report.qsar_general_information.destroy if report.qsar_general_information + #report.qsar_identifier.clear + #report.qsar_general_information = QsarGeneralInformation.new + #report.qsar_general_information.qmrf_date = "DateTime.now" + #report.qsar_general_information.model_authors << ModelAuthor.new + #report.qsar_general_information.qmrf_authors << QmrfAuthor.new + + #report.qsar_identifier = QsarIdentifier.new unless report.qsar_identifier + #report.qsar_identifier.from_xml( chapters.elements[:qsar_identifier.xml_alias] ) + + #report.qsar_general_information = QsarGeneralInformation.new unless report.qsar_general_information + #report.qsar_general_information.from_xml( chapters.elements[:qsar_general_information.xml_alias] ) + + + #QsarGeneralInformation.from_xml( report.qsar_general_information, chapters.elements["qsar_general_information".xml_alias] ) + + #puts "set qsar_identifier to "+report.qsar_identifier.class.to_s + +# begin + report.save +# rescue DataObjects::SQLError => e +# puts e.message +# exit +# rescue DataObjects::DataError => e +# puts e.message +# exit +# rescue DataMapper::SaveFailureError => e +# puts e.resource.errors.inspect +# exit +# end + end + + def to_xml + #puts "now qsar_identifier is "+self.qsar_identifier.class.to_s + + doc = Document.new + decl = XMLDecl.new + decl.encoding = "UTF-8" + doc << decl + type = DocType.new('QMRF SYSTEM "http://ambit.sourceforge.net/qmrf/jws/qmrf.dtd"') + doc << type + + root = Element.new("QMRF") + root.add_attributes( "version" => 1.2, "schema_version" => 1.0, "name" => "(Q)SAR Model Reporting Format", + "author" => "Joint Research Centre, European Commission", "contact" => "Joint Research Centre, European Commission", + "date" => "July 2007", "email" => "qsardb@jrc.it", "url" => "http://ecb.jrc.ec.europa.eu/qsar/" ) + + catalogs = Element.new("Catalogs") + [ "software_catalog", "algorithms_catalog", "descriptors_catalog", + "endpoints_catalog", "publications_catalog", "authors_catalog"].each do |c| + catalogs << Element.new(c) + end + $catalogs_node = catalogs + + chapters = Element.new("QMRF_chapters") + chapter_count = 1 + + CHAPTERS.each do |p| + node = Element.new( p.xml_alias ) + node.add_attribute("chapter",chapter_count) + self.send(p.to_s+"=", self.association_class(p).new) unless self.send(p) # create empy chapter, as xml must be complete + self.send(p).to_XML( node, chapter_count ) + chapters << node + chapter_count += 1 + end + +# qsar_identifier_node = Element.new(:qsar_identifier.xml_alias) +# self.qsar_identifier.to_XML( qsar_identifier_node ) +# chapters << qsar_identifier_node +# +# qsar_general_information_node = Element.new(:qsar_general_information.xml_alias) +# self.qsar_general_information.to_XML( qsar_general_information_node ) +# chapters << qsar_general_information_node + + + +# [ @qsar_identifier, @qsar_general_information, @qsar_endpoint ].each do |c| +# n = c.to_xml +# raise "no node "+n.to_s+" "+n.class.to_s unless n.is_a?(Element) +# chapters << n +# end + + root << chapters + root << catalogs + doc << root + + s = "" + doc.write(s, 2, false, false) + return s + + end + end + +#Profile2.auto_upgrade! + +# class QmrfReport < ActiveRecord::Base +# +# alias_attribute :date, :created_at +# +# QmrfProperties.serialized_properties.each do |p| +# serialize p +# end +# +# def type +# "QMRF" +# end +# +# def report_uri +# ReachReports.get_uri(self) +# end +# +# def get_content +# hash = {} +# [ :model_uri, :date ].each{ |p| hash[p] = self.send(p) } +# QmrfProperties.properties.each{ |p| hash[p] = self.send(p) } +# return hash +# end +# end +# +# +# class QprfReport < ActiveRecord::Base +# +# alias_attribute :date, :created_at +# +# def report_uri +# ReachReports.get_uri(self) +# end +# +# def type +# "QPRF" +# end +# end + + QsarSoftware.auto_upgrade! + QsarIdentifier.auto_upgrade! + + QmrfAuthor.auto_upgrade! + ModelAuthor.auto_upgrade! + Reference.auto_upgrade! + QsarGeneralInformation.auto_upgrade! + + ModelEndpoint.auto_upgrade! + QsarEndpoint.auto_upgrade! + + AlgorithmExplicit.auto_upgrade! + AlgorithmsDescriptor.auto_upgrade! + DescriptorsGenerationSoftware.auto_upgrade! + QsarAlgorithm.auto_upgrade! + + AppDomainSoftware.auto_upgrade! + QsarApplicabilityDomain.auto_upgrade! + + TrainingSetData.auto_upgrade! + QsarRobustness.auto_upgrade! + + ValidationSetData.auto_upgrade! + QsarPredictivity.auto_upgrade! + + QsarInterpretation.auto_upgrade! + + Bibliography.auto_upgrade! + QsarMiscelaneous.auto_upgrade! + + QmrfSummary.auto_upgrade! + + QmrfReport.auto_upgrade! + +end \ No newline at end of file diff --git a/reach_reports/reach_properties.rb b/reach_reports/reach_properties.rb deleted file mode 100644 index 5397206..0000000 --- a/reach_reports/reach_properties.rb +++ /dev/null @@ -1,158 +0,0 @@ - -module ReachReports - - class QmrfProperties - - private - PROPS = { - "QSAR_title" => "1.1", "QSAR_models" => "1.2", "QSAR_software" => "1.3", - "QMRF_date" => "2.1", "QMRF_authors" => "2.2", "QMRF_date_revision" => "2.3", "QMRF_revision" => "2.4", - "model_authors" => "2.5", "model_date" => "2.6", "references" => "2.7", "info_availability" => "2.8", - "related_models" => "2.9", - "model_species" => "3.1", "model_endpoint" => "3.2", "endpoint_comments" => "3.3", "endpoint_units" => "3.4", - "endpoint_variable" => "3.5", "endpoint_protocol" => "3.6", "endpoint_data_quality" => "3.7", - "algorithm_type" => "4.1", "algorithm_explicit" => "4.2", "algorithms_descriptors" => "4.3", - "descriptors_selection" => "4.4", "descriptors_generation" => "4.5", "descriptors_generation_software" => "4.6", - "descriptors_chemicals_ratio" => "4.7", - "app_domain_description" => "5.1", "app_domain_method" => "5.2", "app_domain_software" => "5.3", - "applicability_limits" => "5.4", - "training_set_availability" => "6.1", "training_set_data" => "6.2","training_set_descriptors" => "6.3", - "dependent_var_availability" => "6.4", "other_info" => "6.5", "preprocessing" => "6.6", "goodness_of_fit" => "6.7", - "loo" => "6.8", "lmo" => "6.9", "yscrambling" => "6.10", "bootstrap" => "6.11", "other_statistics" => "6.12", - "validation_set_availability" => "7.1", "validation_set_data" => "7.2", "validation_set_descriptors" => "7.3", - "validation_dependent_var_availability" => "7.4", "validation_other_info" => "7.5", "experimental_design" => "7.6", - "validation_predictivity" => "7.7", "validation_assessment" => "7.8", "validation_comments" => "7.9", - "mechanistic_basis" => "8.1", "mechanistic_basis_comments" => "8.2", "mechanistic_basis_info" => "8.3", - "comments" => "9.1", "bibliography" => "9.2", "attachments" => "9.3", - "QMRF_number" => "10.1", "date_publication" => "10.2", "keywords" => "10.3", "summary_comments" => "10.4", - } - - CHAPTER = { - "QSAR_identifier" => 1, - "QSAR_General_information" => 2, - "QSAR_Endpoint" => 3, - "QSAR_Algorithm" => 4, - "QSAR_Applicability_domain" => 5, - "QSAR_Robustness" => 6, - "QSAR_Predictivity" => 7, - "QSAR_Interpretation" => 8, - "QSAR_Miscelaneous" => 9, - "QMRF_Summary" => 10 } - - CATALOGS = { - "software_catalog" => - { :element => "software", - :fields => ["contact", "description", "name", "number", "url"] }, - "authors_catalog" => { - :element => "author", - :fields => ["affiliation", "contact", "email", "name", "number", "url"]}, - "algorithms_catalog" => { - :element => "algorithm", - :fields => ["definition", "description", "publication_ref"] }, - "descriptors_catalog" => { - :element => "descriptor", - :fields => [ "description", "name", "publication_ref", "units"] }, - "endpoints_catalog" => { - :element => "endpoint", - :fields => [ "group", "name", "subgroup" ]}, - "publications_catalog" => { - :element => "publication", - :fields => [ "title", "url"]}, - } - - CATALOG_REFERENCES = { - "QSAR_software" => "software_catalog", - "references" => "publications_catalog", - "QMRF_authors" => "authors_catalog", - "algorithm_explicit" => "algorithms_catalog", - "descriptors_generation_software" => "descriptors_catalog", - "model_endpoint" => "endpoints_catalog", - "bibliography" => "publications_catalog", - } - - SUBSUBSECTIONS = { - "algorithm_explicit" => [ "equation" ] - } - - #"attachment_training_data", "attachment_validation_data, "attachment_documents", - - public - def self.serialized_properties - return CATALOG_REFERENCES.keys | SUBSUBSECTIONS.keys - end - - def self.properties - return PROPS.keys - end - - def self.chapter_number( chapter ) - CHAPTER[chapter] - end - - def self.chapter_properties( chapter ) - chapter_number = CHAPTER[chapter] - unsorted_chapter_props = [] - PROPS.each do |k,v| - chapter_nr = v.split(".")[0].to_i - next unless chapter_number == chapter_nr - unsorted_chapter_props << [ k, v.split(".")[1].to_i ] - end - unsorted_chapter_props.sort{|a,b| a[1]<=>b[1]}.collect{ |a| a[0] } - end - - def self.chapters() - #h = { "a" => 20, "b" => 30, "c" => 10 } - # h.sort {|a,b| a[1]<=>b[1]} #=> [["c", 10], ["a", 20], ["b", 30]] - CHAPTER.sort{|a,b| a[1]<=>b[1]}.collect{ |a| a[0] } - end - - def self.to_xml(property, content, catalogs_node) - node = REXML::Element.new(property) - node.add_attribute "chapter",PROPS[property] - - return node unless content - - unless serialized_properties.include?(property) - node.text = content - else - if content[:text] - node.text = content.text - end - if SUBSUBSECTIONS.has_key?(property) - SUBSUBSECTIONS[property].each do |p| - subsubsection_node = REXML::Element.new(p) - subsubsection_node.text = content[p] - node << subsubsection_node - end - end - if CATALOG_REFERENCES.has_key?(property) and content[CATALOG_REFERENCES[property]] - catalog_prop = CATALOG_REFERENCES[property] - catalog_content = content[catalog_prop] - catalog_attributes = CATALOGS[catalog_prop] - catalog_node = REXML::Element.new(catalog_prop) - - catalog_content.each do |element| - ref_node = REXML::Element.new(catalog_attributes[:element]+"_ref") - id = catalog_attributes[:element]+"_"+(catalog_content.index(element)+1).to_s - ref_node.add_attribute "idref",id - ref_node.add_attribute "catalog",catalog_prop - node << ref_node - element_node = REXML::Element.new(catalog_attributes[:element]) - element_node.add_attribute "id",id - catalog_attributes[:fields].each do |k| - element_node.add_attribute k,element[k.to_sym] - end - catalog_node << element_node - end - catalogs_node << catalog_node - end - end - - node - end - end - -end - - - diff --git a/reach_reports/reach_service.rb b/reach_reports/reach_service.rb index cdc0f9c..d0ace96 100644 --- a/reach_reports/reach_service.rb +++ b/reach_reports/reach_service.rb @@ -9,7 +9,7 @@ module ReachReports end end - def self.create_report( type, params ) + def self.create_report( type, params, xml_data=nil ) #content_type "text/uri-list" #task_uri = OpenTox::Task.as_task do |task| @@ -19,12 +19,17 @@ module ReachReports if params[:model_uri] report = ReachReports::QmrfReport.new :model_uri => params[:model_uri] build_qmrf_report(report) + elsif xml_data + input = xml_data.read + report = ReachReports::QmrfReport.new + ReachReports::QmrfReport.from_xml(report,input) else $sinatra.halt 400, "illegal parameters for qmrf-report, use either\n"+ "* model_uri\n"+ "params given: "+params.inspect end when /(?i)QPRF/ + $sinatra.halt 400,"qprf report creation not yet implemented" if params[:compound_uri] report = ReachReports::QprfReport.new :compound_uri => params[:compound_uri] else @@ -45,32 +50,35 @@ module ReachReports model = OpenTox::Model::Generic.find(r.model_uri) # chapter 1 - r.QSAR_title = model.title + #r.QSAR_title = model.title + r.qsar_identifier = QsarIdentifier.new + r.qsar_identifier.qsar_title = model.title + # TODO # QSAR_models -> sparql same endpoint - software = [] - software << { :url => model.uri, :name => model.title, :contact => model.creator } + r.qsar_identifier.qsar_software << QsarSoftware.new( :url => model.uri, :name => model.title, :contact => model.creator ) algorithm = OpenTox::Algorithm::Generic.find(model.algorithm) if model.algorithm - software << { :url => algorithm.uri, :name => algorithm.title } - r.QSAR_software = {"software_catalog" => software} + r.qsar_identifier.qsar_software << QsarSoftware.new( :url => algorithm.uri, :name => algorithm.title ) + #chpater 2 - r.QMRF_date = DateTime.now.to_s - # EMPTY: QMRF_authors, QMRF_date_revision, QMRF_revision + r.qsar_general_information = QsarGeneralInformation.new + r.qsar_general_information.qmrf_date = DateTime.now.to_s + # EMPTY: qmrf_authors, qmrf_date_revision, qmrf_revision # TODO: model_authors ? - r.model_date = model.date.to_s + r.qsar_general_information.model_date = model.date.to_s # TODO: references? # EMPTY: info_availablity # TODO: related_models = find qmrf reports for QSAR_models # chapter 3 # TODO "model_species" ? - endpoints = [] + r.qsar_endpoint = QsarEndpoint.new + model.predictedVariables.each do |p| - endpoints << { :name => p } # TODO :group, :subgroup ? + r.qsar_endpoint.model_endpoint << ModelEndpoint.new( :name => p ) end - r.model_endpoint = { "endpoints_catalog" => endpoints } # TODO "endpoint_comments" => "3.3", "endpoint_units" => "3.4", - r.endpoint_variable = model.dependentVariables + r.qsar_endpoint.endpoint_variable = model.dependentVariables # TODO "endpoint_protocol" => "3.6", "endpoint_data_quality" => "3.7", # chapter 4 @@ -98,28 +106,28 @@ module ReachReports # chapter 9 # "comments" => "9.1", "bibliography" => "9.2", "attachments" => "9.3", - r.save! + r.save end - def self.get_report_content(type, id, *keys) - - report_content = get_report(type, id).get_content - keys.each do |k| - $sinatra.halt 400, type+" unknown report property '#{key}'" unless report_content.is_a?(Hash) and report_content.has_key?(k) - report_content = report_content[k] - end - report_content - end +# def self.get_report_content(type, id, *keys) +# +# report_content = get_report(type, id).get_content +# keys.each do |k| +# $sinatra.halt 400, type+" unknown report property '#{key}'" unless report_content.is_a?(Hash) and report_content.has_key?(k) +# report_content = report_content[k] +# end +# report_content +# end def self.get_report(type, id) case type when /(?i)QMRF/ - report = ReachReports::QmrfReport.find(id) + report = ReachReports::QmrfReport.get(id) when /(?i)QPRF/ - report = ReachReports::QprfReport.find(id) + report = ReachReports::QprfReport.get(id) end $sinatra.halt 404, type+" report with id '#{id}' not found." unless report return report end -end \ No newline at end of file +end diff --git a/reach_reports/reach_test.rb b/reach_reports/reach_test.rb index c96340a..f2ad251 100644 --- a/reach_reports/reach_test.rb +++ b/reach_reports/reach_test.rb @@ -11,41 +11,119 @@ LOGGER = MyLogger.new(STDOUT) LOGGER.datetime_format = "%Y-%m-%d %H:%M:%S " LOGGER.formatter = Logger::Formatter.new +#DataMapper::Model.raise_on_save_failure = true +# +#class TestResourceX +# include DataMapper::Resource +# +# property :id, Serial +# +# has 1, :test_resource +#end +# +#class DataMapper::Associations::ManyToOne::Relationship +# def get_parent_model +# @parent_model +# end +#end +# +#class TestResource +# include DataMapper::Resource +# +# property :id, Serial +# property :time, DateTime +# property :body, Text +# +# def self.info +# relationships.each do |k,v| +# puts k +# puts v.inspect +# puts v.get_parent_model +# +# end +# end +# #validates_format_of :time +# #validates_length_of :body, :minimum => 1000 +# +# belongs_to :test_resource_x +#end +# +#TestResourceX.auto_upgrade! +#TestResource.auto_upgrade! class ReachTest < Test::Unit::TestCase include Rack::Test::Methods include Lib::TestUtil - def app Sinatra::Application end - + def test_it + +# testResource = TestResource.new +# +# TestResource.info +# exit + +# p = nil +# #puts TestResource.properties.inspect +# TestResource.properties.each do |pp| +# p = pp if pp.name==:time +# end +# #puts p +# val = "no time" #DateTime.new +# testResource.time = val +# #puts p.valid?(val) +# +# #puts "test restource: "+testResource.valid?.to_s +# +# #puts testResource.time.to_s + " " + testResource.time.class.to_s +# begin +# testResource.save +# rescue DataMapper::SaveFailureError => e +# puts e.message +# puts e.resource.errors.inspect +# end +# exit + #$test_case = self - post '/reach_report/qmrf',:model_uri=>"http://localhost/model/16" - ##post '/reach_report/qprf',:compound_uri=>"http://localhost/compound/XYZ" - uri = last_response.body - id = uri.split("/")[-1] - puts uri + file = File.new("qmrf-report.xml") + raise "File not found: "+file.path.to_s unless File.exist?(file.path) + data = File.read(file.path) + #puts "data found "+data.to_s[0..1000] + puts OpenTox::RestClientWrapper.post("http://localhost/validation/reach_report/qmrf",{:content_type => "application/qmrf-xml"},data).to_s.chomp + + #post "/reach_report/qmrf/2" + #puts last_response.body + +# post '/reach_report/qmrf',:model_uri=>"http://localhost/majority/class/model/1" #http://localhost/model/1" +# ##post '/reach_report/qprf',:compound_uri=>"http://localhost/compound/XYZ" +# uri = last_response.body +# id = uri.split("/")[-1] +# puts uri + + #id = "2" #get '/reach_report/qmrf' #puts last_response.body - get '/reach_report/qmrf/'+id.to_s,nil,'HTTP_ACCEPT'=>"application/x-yaml" - puts "YAML" - puts last_response.body +# get '/reach_report/qmrf/'+id.to_s,nil,'HTTP_ACCEPT'=>"application/x-yaml" +# puts "YAML" +# puts last_response.body -# get '/reach_report/qmrf/'+id.to_s,nil,'HTTP_ACCEPT'=>"application/rdf+xml" +# get '/reach_report/qmrf/'+id.to_s,nil,'HTTP_ACCEPT'=>"application/rdf+xml" # puts "RDF" # puts last_response.body - get '/reach_report/qmrf/'+id,nil,'HTTP_ACCEPT' => "application/qmrf-xml" - puts "XML" - puts last_response.body - +# get '/reach_report/qmrf/'+id,nil,'HTTP_ACCEPT' => "application/qmrf-xml" +# puts "XML" +# puts last_response.body + + #r = ReachReports::QmrfReport.find_like( :QSAR_title => "Hamster") + #puts r.collect{|rr| "report with id:"+rr.id.to_s}.inspect end end @@ -59,4 +137,65 @@ end #} #EOF # puts OpenTox::RestClientWrapper.post("http://apps.ideaconsult.net:8080/ontology/",{:accept => "application/rdf+xml", :query => query}) -# exit \ No newline at end of file +# exit + +#class Person +# include DataMapper::Resource +# +# property :id, Serial +# +# has 1, :profile +# has 1, :profile2 +# end +# +# class Profile +# include DataMapper::Resource +# +# property :id, Serial +# property :val, Text +# +# belongs_to :person +# end +# +# class Profile2 +# include DataMapper::Resource +# +# property :id, Serial +# property :val, Text +# +# belongs_to :person +# end +# +#Person.auto_upgrade! +#Profile.auto_upgrade! +#Profile2.auto_upgrade! +# +# A.auto_upgrade! +# ValTest.auto_upgrade! + #A.auto_migrate! + #ValTest.auto_migrate! + +# class ReachTest < Test::Unit::TestCase +# include Rack::Test::Methods +# include Lib::TestUtil +# +# +# def app +# Sinatra::Application +# end +# +# def test_datamapper +# +# # Assigning a resource to a one-to-one relationship +# puts Person.all.collect{|v| v.id}.inspect +# +# person = Person.create +# person.profile = Profile.new +# person.profile2 = Profile2.new +# person.profile2.val = "bla" +# person.save +# +# p = Person.get(11) +## puts p.profile2 +# puts p.profile2.val + diff --git a/reach_reports/reach_to_xml.rb b/reach_reports/reach_to_xml.rb deleted file mode 100644 index 311f59f..0000000 --- a/reach_reports/reach_to_xml.rb +++ /dev/null @@ -1,60 +0,0 @@ - -module ReachReports include REXML - - def self.reach_report_to_xml( report ) - - @@info = {} - if report.type=="QMRF" - @@info[:type ] = "QMRF" - @@info[:dtd_full ] = "http://ambit.sourceforge.net/qmrf/jws/qmrf.dtd" - @@info[:dtd ] = "qmrf.dtd" - @@info[:version ] = 1.2 - @@info[:schema_version] = 0.9 - @@info[:name ] = "(Q)SAR Model Reporting Format" - elsif report.type=="QPRF" - @@info[:type ] = "QPRF" - @@info[:dtd_full ] = "not-yet-defined/qprf.dtd" - @@info[:dtd ] = "qprf.dtd" - @@info[:version ] = 0.1 - @@info[:schema_version] = 0.1 - @@info[:name ] = "(Q)SAR Prediction Reporting Format" - end - @@info[:author] ="Joint Research Centre, European Commission" - @@info[:contact] ="Joint Research Centre, European Commission" - @@info[:date ] = Time.new.to_s - @@info[:email] ="qsardb@jrc.it" - @@info[:schema_version] ="0.9" - @@info[:url ] = "http://ecb.jrc.ec.europa.eu/qsar/" - - doc = Document.new - decl = XMLDecl.new - doc << decl - type = DocType.new(@@info[:type]+' PUBLIC "'+@@info[:dtd_full]+'" "'+@@info[:dtd]+'"') - doc << type - - main = Element.new(@@info[:type]) - main.add_attributes( Hash[*[:version, :schema_version, :name, :author, :contact, - :date, :email, :schema_version, :url].collect { |v| [v.to_s, @@info[v]]}.flatten] ) - - catalogs = Element.new("Catalogs") - chapters = Element.new(@@info[:type]+"_chapters") - - QmrfProperties.chapters.each do |c| - chapter = Element.new(c) - chapter.add_attribute("chapter",QmrfProperties.chapter_number(c)) - QmrfProperties.chapter_properties(c).each do |p| - chapter << QmrfProperties.to_xml(p, report.send(p), catalogs) - end - chapters << chapter - end - - main << chapters - main << catalogs - doc << main - - s = "" - doc.write(s, 2, false, false) - return s - end - -end \ No newline at end of file diff --git a/report/report_factory.rb b/report/report_factory.rb index b62f919..a9fe7fd 100644 --- a/report/report_factory.rb +++ b/report/report_factory.rb @@ -97,6 +97,7 @@ module Reports::ReportFactory report.add_section_result(validation_set, VAL_ATTR_CV+VAL_ATTR_CLASS-[:num_folds], "Results","Results") else #regression report.add_section_result(merged, VAL_ATTR_CV+VAL_ATTR_REGR-[:crossvalidation_fold],"Mean Results","Mean Results") + report.add_section_regression_plot(validation_set) report.add_section_result(validation_set, VAL_ATTR_CV+VAL_ATTR_REGR-[:num_folds], "Results","Results") end diff --git a/test/test_examples.rb b/test/test_examples.rb index bbe6ddd..2f02ccf 100644 --- a/test/test_examples.rb +++ b/test/test_examples.rb @@ -276,6 +276,7 @@ module ValidationExamples "7a" => [ LazarIrisSplit ], "7b" => [ MajorityIrisSplit ], + "8a" => [ LazarIrisCrossvalidation ], "8b" => [ MajorityIrisCrossvalidation ], "9a" => [ ISTLazarISTIrisCrossvalidation ], diff --git a/validation/validation_test.rb b/validation/validation_test.rb index 4803167..53aeeb0 100644 --- a/validation/validation_test.rb +++ b/validation/validation_test.rb @@ -19,6 +19,10 @@ class ValidationTest < Test::Unit::TestCase def test_it $test_case = self +# d = OpenTox::Dataset.find("http://ot-dev.in-silico.ch/dataset/307") +# puts d.compounds.inspect +# exit + #get "?model=http://localhost/model/1" # get "/crossvalidation/3/predictions" # puts last_response.body @@ -55,7 +59,7 @@ class ValidationTest < Test::Unit::TestCase # #:classification=>"true"} # puts last_response.body - run_test("8b") #, "http://localhost/validation/crossvalidation/3" )# //localhost/validation/42")#, "http://localhost/validation/report/validation/8") #,"http://localhost/validation/report/validation/36") #, "http://localhost/validation/321") + run_test("1b") #, "http://localhost/validation/crossvalidation/5" )# //localhost/validation/42")#, "http://localhost/validation/report/validation/8") #,"http://localhost/validation/report/validation/36") #, "http://localhost/validation/321") # run_test("7a","http://localhost/validation/40") #,"http://localhost/validation/crossvalidation/10") #, "http://localhost/validation/321") -- cgit v1.2.3 From f4c065998f6c918e67058b05ac17778cfbc57f58 Mon Sep 17 00:00:00 2001 From: mguetlein Date: Thu, 19 Aug 2010 11:26:00 +0200 Subject: task title and creator, reach report minor fixes --- nightly/nightly.rb | 2 +- reach_reports/reach_application.rb | 11 +++++++++-- reach_reports/reach_persistance.rb | 2 +- reach_reports/reach_service.rb | 8 ++++---- reach_reports/reach_test.rb | 5 +++-- report/report_application.rb | 2 +- test/test_application.rb | 2 +- test/test_examples_util.rb | 10 +++++----- validation/validation_application.rb | 8 ++++---- validation/validation_test.rb | 2 +- 10 files changed, 30 insertions(+), 22 deletions(-) diff --git a/nightly/nightly.rb b/nightly/nightly.rb index f402691..e3cf1bc 100644 --- a/nightly/nightly.rb +++ b/nightly/nightly.rb @@ -21,7 +21,7 @@ class Nightly validationExamples = ValidationExamples.select(select) return "please \"select\" validation examples:\n"+ValidationExamples.list if validationExamples.size==0 - task_uri = OpenTox::Task.as_task() do + task_uri = OpenTox::Task.as_task("Build nightly", "nightly-validation-test-service") do LOGGER.info("Building nightly report") benchmarks = validationExamples.collect{ |e| ValidationBenchmark.new(e) } diff --git a/reach_reports/reach_application.rb b/reach_reports/reach_application.rb index 596bae2..807800c 100644 --- a/reach_reports/reach_application.rb +++ b/reach_reports/reach_application.rb @@ -13,6 +13,11 @@ def extract_type(params) params.delete("type") end +get '/reach_report' do + content_type "text/uri-list" + url_for('/reach_report/QMRF', :full)+"\n"+url_for('/reach_report/QPRF', :full)+"\n" +end + get '/reach_report/:type' do content_type "text/uri-list" type = extract_type(params) @@ -57,12 +62,14 @@ end post '/reach_report/:type/:id' do type = extract_type(params) - LOGGER.info "set "+type+" report with id "+params[:id].to_s+"' "+request.env['HTTP_ACCEPT'].to_s+"'" + LOGGER.info "Post to "+type+" report with id "+params[:id].to_s+"' "+request.env['HTTP_ACCEPT'].to_s+"'" rep = ReachReports.get_report(type, params[:id]) input = request.env["rack.input"].read - halt 400, "no xml data specified" unless input && input.to_s.size>0 + halt 400, "no xml data specified" unless input && input.to_s.size>0 + ReachReports::QmrfReport.from_xml(rep,input) + #f = File.new("/home/martin/info_home/.public_html/qmrf.out.xml","w") #f.puts rep.to_xml end diff --git a/reach_reports/reach_persistance.rb b/reach_reports/reach_persistance.rb index 98c41fe..0a0e32f 100644 --- a/reach_reports/reach_persistance.rb +++ b/reach_reports/reach_persistance.rb @@ -926,7 +926,7 @@ module ReachReports end def report_uri - return $sinatra.url_for("/QMRF/"+@id.to_s, :full).to_s + return $sinatra.url_for("/reach_report/QMRF/"+@id.to_s, :full).to_s end def self.from_xml(report, xml_data) diff --git a/reach_reports/reach_service.rb b/reach_reports/reach_service.rb index d0ace96..795c81a 100644 --- a/reach_reports/reach_service.rb +++ b/reach_reports/reach_service.rb @@ -19,13 +19,13 @@ module ReachReports if params[:model_uri] report = ReachReports::QmrfReport.new :model_uri => params[:model_uri] build_qmrf_report(report) - elsif xml_data - input = xml_data.read + elsif xml_data and (input = xml_data.read).to_s.size>0 report = ReachReports::QmrfReport.new ReachReports::QmrfReport.from_xml(report,input) else - $sinatra.halt 400, "illegal parameters for qmrf-report, use either\n"+ - "* model_uri\n"+ + $sinatra.halt 400, "illegal parameters for qmrf-report creation, either\n"+ + "* give 'model_uri' as param\n"+ + "* provide xml file\n"+ "params given: "+params.inspect end when /(?i)QPRF/ diff --git a/reach_reports/reach_test.rb b/reach_reports/reach_test.rb index f2ad251..3f4609a 100644 --- a/reach_reports/reach_test.rb +++ b/reach_reports/reach_test.rb @@ -89,11 +89,12 @@ class ReachTest < Test::Unit::TestCase #$test_case = self - file = File.new("qmrf-report.xml") + #file = File.new("qmrf-report.xml") + file = File.new("/home/martin/win/home/test2.xml") raise "File not found: "+file.path.to_s unless File.exist?(file.path) data = File.read(file.path) #puts "data found "+data.to_s[0..1000] - puts OpenTox::RestClientWrapper.post("http://localhost/validation/reach_report/qmrf",{:content_type => "application/qmrf-xml"},data).to_s.chomp + puts OpenTox::RestClientWrapper.post("http://localhost/validation/reach_report/qmrf/20",{:content_type => "application/qmrf-xml"},data).to_s.chomp #post "/reach_report/qmrf/2" #puts last_response.body diff --git a/report/report_application.rb b/report/report_application.rb index efa0298..48787d3 100644 --- a/report/report_application.rb +++ b/report/report_application.rb @@ -98,7 +98,7 @@ delete '/report/:type/:id' do end post '/report/:type' do - task_uri = OpenTox::Task.as_task do + task_uri = OpenTox::Task.as_task("Create report",url_for("/report/"+params[:type], :full)) do perform do |rs| content_type "text/uri-list" rs.create_report(params[:type],params[:validation_uris]?params[:validation_uris].split(/\n|,/):nil) diff --git a/test/test_application.rb b/test/test_application.rb index cbc1057..94022da 100644 --- a/test/test_application.rb +++ b/test/test_application.rb @@ -2,7 +2,7 @@ post '/test_validation/?' do validationExamples = ValidationExamples.select(params[:select]) return "please \"select\" a single validation example:\n"+ValidationExamples.list if validationExamples.size!=1 or validationExamples[0].size!=1 - OpenTox::Task.as_task do + OpenTox::Task.as_task("Test validation",url_for("/test_validation",:full)) do v = validationExamples[0][0] ex = v.new ex.upload_files diff --git a/test/test_examples_util.rb b/test/test_examples_util.rb index 8d945f0..b18607d 100644 --- a/test/test_examples_util.rb +++ b/test/test_examples_util.rb @@ -231,12 +231,12 @@ module ValidationExamples end def validate - begin + #begin @validation_uri = Util.validation_post '/'+validation_type, get_params - rescue => ex - @validation_error = ex.message - LOGGER.error ex.message - end + #rescue => ex + # @validation_error = ex.message + # LOGGER.error ex.message + #end end def compare_yaml_vs_rdf diff --git a/validation/validation_application.rb b/validation/validation_application.rb index 263c88c..2da9694 100644 --- a/validation/validation_application.rb +++ b/validation/validation_application.rb @@ -100,7 +100,7 @@ end post '/crossvalidation/?' do content_type "text/uri-list" - task_uri = OpenTox::Task.as_task do + task_uri = OpenTox::Task.as_task( "Perform crossvalidation", url_for("/crossvalidation", :full) ) do LOGGER.info "creating crossvalidation "+params.inspect halt 400, "dataset_uri missing" unless params[:dataset_uri] halt 400, "algorithm_uri missing" unless params[:algorithm_uri] @@ -153,7 +153,7 @@ end post '/?' do content_type "text/uri-list" - task_uri = OpenTox::Task.as_task do |task| + task_uri = OpenTox::Task.as_task( "Perform validation", url_for("/", :full) ) do |task| LOGGER.info "creating validation "+params.inspect if params[:model_uri] and params[:test_dataset_uri] and !params[:training_dataset_uri] and !params[:algorithm_uri] v = Validation::Validation.new :model_uri => params[:model_uri], @@ -182,7 +182,7 @@ end post '/training_test_split' do content_type "text/uri-list" - task_uri = OpenTox::Task.as_task do + task_uri = OpenTox::Task.as_task( "Perform training test split validation", url_for("/training_test_split", :full) ) do LOGGER.info "creating training test split "+params.inspect halt 400, "dataset_uri missing" unless params[:dataset_uri] halt 400, "algorithm_uri missing" unless params[:algorithm_uri] @@ -213,7 +213,7 @@ end post '/validate_datasets' do content_type "text/uri-list" - task_uri = OpenTox::Task.as_task do + task_uri = OpenTox::Task.as_task( "Perform dataset validation", url_for("/validate_datasets", :full) ) do LOGGER.info "validating values "+params.inspect halt 400, "test_dataset_uri missing" unless params[:test_dataset_uri] halt 400, "prediction_datset_uri missing" unless params[:prediction_dataset_uri] diff --git a/validation/validation_test.rb b/validation/validation_test.rb index 53aeeb0..d96c012 100644 --- a/validation/validation_test.rb +++ b/validation/validation_test.rb @@ -59,7 +59,7 @@ class ValidationTest < Test::Unit::TestCase # #:classification=>"true"} # puts last_response.body - run_test("1b") #, "http://localhost/validation/crossvalidation/5" )# //localhost/validation/42")#, "http://localhost/validation/report/validation/8") #,"http://localhost/validation/report/validation/36") #, "http://localhost/validation/321") + #run_test("1a") #, "http://localhost/validation/crossvalidation/5" )# //localhost/validation/42")#, "http://localhost/validation/report/validation/8") #,"http://localhost/validation/report/validation/36") #, "http://localhost/validation/321") # run_test("7a","http://localhost/validation/40") #,"http://localhost/validation/crossvalidation/10") #, "http://localhost/validation/321") -- cgit v1.2.3 From 0ab80a2bf0efd624b9748b6b70afbf10ca5755db Mon Sep 17 00:00:00 2001 From: mguetlein Date: Sat, 21 Aug 2010 14:26:49 +0200 Subject: reach: fixed bugs, etended attachment-stuff --- reach_reports/reach_persistance.rb | 163 ++++++++++++++++++++++++++++++------- reach_reports/reach_service.rb | 2 +- reach_reports/reach_test.rb | 31 +++---- 3 files changed, 150 insertions(+), 46 deletions(-) diff --git a/reach_reports/reach_persistance.rb b/reach_reports/reach_persistance.rb index 0a0e32f..a96c0e6 100644 --- a/reach_reports/reach_persistance.rb +++ b/reach_reports/reach_persistance.rb @@ -117,18 +117,37 @@ module DataMapper::Resource dbg_check[:nodes] << parent_node.name dbg_check[:subnodes] << text_node - elsif xml_info.is_a?(ReachReports::AttributeNodeProperty) + elsif xml_info.is_a?(ReachReports::SingleAttributeNodeProperty) attr_node = node.elements[ xml_info.xml_prop ] self.send(xml_info.prop.to_s+"=", attr_node.attribute(xml_info.attribute)) dbg_check[:nodes] << attr_node.name - elsif xml_info.is_a?(ReachReports::MultiAttributeNodeProperty) + elsif xml_info.is_a?(ReachReports::AttributeNodeProperty) attr_node = node.elements[ xml_info.xml_prop ] entry = self.association_class( xml_info.prop ).new entry.from_xml(attr_node) self.send(xml_info.prop.to_s+"=",entry) dbg_check[:nodes] << attr_node.name + elsif xml_info.is_a?(ReachReports::AttributeSubNodeListProperty) + + parent_node = node.elements[ xml_info.parent_prop.xml_alias ] + raise "parent node not found: '"+ xml_info.parent_prop.xml_alias+"' ("+self.class.to_s+".from_xml)" unless parent_node + #puts "parent node "+xml_info.parent_prop.xml_alias + prop_node = parent_node.elements[ xml_info.xml_prop ] + if prop_node + #puts "prop node "+xml_info.xml_prop.to_s + prop_node.each_element do |n| + #puts "elem node "+n.name.to_s + raise "illegal node '"+n.name.to_s+"' should be '"+xml_info.list_element.to_s+"'" unless n.name==xml_info.list_element.to_s + entry = self.association_class( xml_info.prop ).new + entry.from_xml( n ) + self.send(xml_info.prop) << entry + end + dbg_check[:subnodes] << prop_node + end + dbg_check[:nodes] << parent_node.name + else raise "type not supported yet: "+xml_info.inspect end @@ -290,15 +309,27 @@ module DataMapper::Resource new_node = REXML::Element.find_or_create( node, xml_info.parent_prop.xml_alias) REXML::TextElement.find_or_create( new_node, xml_info.xml_prop,self.send(xml_info.prop)) - elsif xml_info.is_a?(ReachReports::AttributeNodeProperty) + elsif xml_info.is_a?(ReachReports::SingleAttributeNodeProperty) new_node = REXML::Element.find_or_create(node, xml_info.xml_prop) new_node.add_attribute(xml_info.attribute, self.send(xml_info.prop).to_s) - elsif xml_info.is_a?(ReachReports::MultiAttributeNodeProperty) + elsif xml_info.is_a?(ReachReports::AttributeNodeProperty) new_node = REXML::Element.find_or_create(node, xml_info.xml_prop) self.send(xml_info.prop.to_s+"=",self.association_class(xml_info.prop).new) unless self.send(xml_info.prop) self.send(xml_info.prop).to_XML(new_node) + elsif xml_info.is_a?(ReachReports::AttributeSubNodeListProperty) + new_node = REXML::Element.find_or_create( node, xml_info.parent_prop.xml_alias ) + #puts "new parent "+xml_info.parent_prop.xml_alias + prop_node = REXML::Element.find_or_create( new_node, xml_info.xml_prop ) + #puts "new prop "+xml_info.xml_prop + self.send( xml_info.prop ).each do |elem| + #puts "elem "+elem.to_yaml + elem_node = REXML::Element.new(xml_info.list_element ) + elem.to_XML( elem_node ) + prop_node << elem_node + end + else raise "type not supported yet: "+xml_info.inspect end @@ -473,19 +504,30 @@ module ReachReports end - class MultiAttributeNodeProperty < XmlInfo + class AttributeNodeProperty < XmlInfo + + end + + class AttributeSubNodeListProperty < XmlInfo + + attr_accessor :list_element, :parent_prop + def initialize( prop, list_element, parent_prop ) + super(prop) + @list_element = list_element + @parent_prop = parent_prop + end end - class AttributeNodeProperty < XmlInfo + class SingleAttributeNodeProperty < XmlInfo attr_accessor :attribute def initialize( prop, attribute ) super(prop) @attribute = attribute end - end - + end + class CatalogReference < XmlInfo attr_accessor :catalog_name, :catalog_element @@ -534,14 +576,16 @@ module ReachReports AttributeProperty.new(:number), AttributeProperty.new(:url) ] end + + belongs_to :qsar_general_information end class QmrfAuthor < Author - belongs_to :qsar_general_information + property :type, String, :default => "QmrfAuthor" end class ModelAuthor < Author - belongs_to :qsar_general_information + property :type, String, :default => "ModelAuthor" end class Publication @@ -575,8 +619,10 @@ module ReachReports property :info_availability, Text property :related_models, Text - has n, :qmrf_authors - has n, :model_authors + # type is needed to distinguish between authors + # (the datamapper creates a table "Atuhors", the relation is defined by QsarGeneral.id and Author.id) + has n, :qmrf_authors, :type => "QmrfAuthor" + has n, :model_authors, :type => "ModelAuthor" has n, :references def xml_infos @@ -784,10 +830,10 @@ module ReachReports has 1, :training_set_data def xml_infos - [ AttributeNodeProperty.new(:training_set_availability, "answer"), - MultiAttributeNodeProperty.new(:training_set_data), - AttributeNodeProperty.new(:training_set_descriptors, "answer"), - AttributeNodeProperty.new(:dependent_var_availability, "answer"), + [ SingleAttributeNodeProperty.new(:training_set_availability, "answer"), + AttributeNodeProperty.new(:training_set_data), + SingleAttributeNodeProperty.new(:training_set_descriptors, "answer"), + SingleAttributeNodeProperty.new(:dependent_var_availability, "answer"), TextNodeProperty.new(:other_info), TextNodeProperty.new(:preprocessing), TextNodeProperty.new(:goodness_of_fit), @@ -827,10 +873,10 @@ module ReachReports has 1, :validation_set_data def xml_infos - [ AttributeNodeProperty.new(:validation_set_availability, "answer"), - MultiAttributeNodeProperty.new(:validation_set_data), - AttributeNodeProperty.new(:validation_set_descriptors, "answer"), - AttributeNodeProperty.new(:validation_dependent_var_availability, "answer"), + [ SingleAttributeNodeProperty.new(:validation_set_availability, "answer"), + AttributeNodeProperty.new(:validation_set_data), + SingleAttributeNodeProperty.new(:validation_set_descriptors, "answer"), + SingleAttributeNodeProperty.new(:validation_dependent_var_availability, "answer"), TextNodeProperty.new(:validation_other_info), TextNodeProperty.new(:experimental_design), TextNodeProperty.new(:validation_predictivity), @@ -866,23 +912,57 @@ module ReachReports property :qsar_miscelaneous_id, Integer end + class Attachment + include DataMapper::Resource + + property :id, Serial + property :description, Text + property :filetype, String + property :url, String, :length => 255 + + def xml_infos + [ AttributeProperty.new(:description), + AttributeProperty.new(:filetype), + AttributeProperty.new(:url), + ] + end + + belongs_to :qsar_miscelaneous + end + + class AttachmentTrainingData < Attachment + property :type, String, :default => "AttachmentTrainingData" + end + + class AttachmentValidationData < Attachment + property :type, String, :default => "AttachmentValidationData" + end + + class AttachmentDocument < Attachment + property :type, String, :default => "AttachmentDocument" + end + + class QsarMiscelaneous include DataMapper::Resource property :id, Serial property :comments, Text - property :attachment_training_data, Text - property :attachment_validation_data, Text - property :attachment_documents, Text has n, :bibliography, Text + # type is needed to distinguish between attachments + # (the datamapper creates a table "Attachments", the relation is defined by QsarMisc.id and Attachment.id) + has n, :attachment_training_data, :type => "AttachmentTrainingData" + has n, :attachment_validation_data, :type => "AttachmentValidationData" + has n, :attachment_documents, :type => "AttachmentDocument" + def xml_infos [ TextNodeProperty.new(:comments), CatalogReference.new(:bibliography,"publications_catalog", "publication"), - TextSubnodeProperty.new(:attachment_training_data, :attachments), - TextSubnodeProperty.new(:attachment_validation_data, :attachments), - TextSubnodeProperty.new(:attachment_documents, :attachments), + AttributeSubNodeListProperty.new(:attachment_training_data, :molecules, :attachments), + AttributeSubNodeListProperty.new(:attachment_validation_data, :molecules, :attachments), + AttributeSubNodeListProperty.new(:attachment_documents, :documents, :attachments), ] end @@ -931,11 +1011,6 @@ module ReachReports def self.from_xml(report, xml_data) - # DEBUG: REMOVE THIS - #xml_data = File.new("qmrf-report.xml").read - #puts xml_data - # DEBUG: REMOVE THIS - doc = Document.new xml_data root = doc.elements["QMRF"] @@ -986,6 +1061,29 @@ module ReachReports # puts e.resource.errors.inspect # exit # end + +# puts "XXXXXXXxxxxx" +# +# puts "1" +# puts report.qsar_miscelaneous.attachment_training_data.inspect +# puts "2" +# puts report.qsar_miscelaneous.attachment_validation_data.inspect +# puts "3" +# puts report.qsar_miscelaneous.attachment_documents.inspect +# +# +# r = QmrfReport.get(report.id) +# +# puts "1" +# puts r.qsar_miscelaneous.attachment_training_data.inspect +# puts "2" +# puts r.qsar_miscelaneous.attachment_validation_data.inspect +# puts "3" +# puts r.qsar_miscelaneous.attachment_documents.inspect +# +# exit + + end def to_xml @@ -1117,6 +1215,9 @@ module ReachReports QsarInterpretation.auto_upgrade! Bibliography.auto_upgrade! + AttachmentTrainingData.auto_upgrade! + AttachmentValidationData.auto_upgrade! + AttachmentDocument.auto_upgrade! QsarMiscelaneous.auto_upgrade! QmrfSummary.auto_upgrade! diff --git a/reach_reports/reach_service.rb b/reach_reports/reach_service.rb index 795c81a..9fe79e6 100644 --- a/reach_reports/reach_service.rb +++ b/reach_reports/reach_service.rb @@ -78,7 +78,7 @@ module ReachReports r.qsar_endpoint.model_endpoint << ModelEndpoint.new( :name => p ) end # TODO "endpoint_comments" => "3.3", "endpoint_units" => "3.4", - r.qsar_endpoint.endpoint_variable = model.dependentVariables + r.qsar_endpoint.endpoint_variable = model.dependentVariables if model.dependentVariables # TODO "endpoint_protocol" => "3.6", "endpoint_data_quality" => "3.7", # chapter 4 diff --git a/reach_reports/reach_test.rb b/reach_reports/reach_test.rb index 3f4609a..152b355 100644 --- a/reach_reports/reach_test.rb +++ b/reach_reports/reach_test.rb @@ -89,23 +89,26 @@ class ReachTest < Test::Unit::TestCase #$test_case = self - #file = File.new("qmrf-report.xml") - file = File.new("/home/martin/win/home/test2.xml") - raise "File not found: "+file.path.to_s unless File.exist?(file.path) - data = File.read(file.path) - #puts "data found "+data.to_s[0..1000] - puts OpenTox::RestClientWrapper.post("http://localhost/validation/reach_report/qmrf/20",{:content_type => "application/qmrf-xml"},data).to_s.chomp +# #file = File.new("qmrf-report.xml") +# file = File.new("/home/martin/win/home/test2.xml") +# raise "File not found: "+file.path.to_s unless File.exist?(file.path) +# data = File.read(file.path) +# #puts "data found "+data.to_s[0..1000] +# puts OpenTox::RestClientWrapper.post("http://localhost/validation/reach_report/qmrf/20",{:content_type => "application/qmrf-xml"},data).to_s.chomp - #post "/reach_report/qmrf/2" - #puts last_response.body - -# post '/reach_report/qmrf',:model_uri=>"http://localhost/majority/class/model/1" #http://localhost/model/1" + post "/reach_report/qmrf/8" + puts last_response.body + + +# #model_uri = "http://localhost/model/1" +# model_uri = "http://apps.ideaconsult.net:8080/ambit2/model/2" +# post '/reach_report/qmrf',:model_uri=>model_uri #http://localhost/model/1" # ##post '/reach_report/qprf',:compound_uri=>"http://localhost/compound/XYZ" # uri = last_response.body # id = uri.split("/")[-1] # puts uri - #id = "2" + id = "8" #get '/reach_report/qmrf' #puts last_response.body @@ -118,9 +121,9 @@ class ReachTest < Test::Unit::TestCase # puts "RDF" # puts last_response.body -# get '/reach_report/qmrf/'+id,nil,'HTTP_ACCEPT' => "application/qmrf-xml" -# puts "XML" -# puts last_response.body + get '/reach_report/qmrf/'+id,nil,'HTTP_ACCEPT' => "application/qmrf-xml" + puts "XML" + puts last_response.body #r = ReachReports::QmrfReport.find_like( :QSAR_title => "Hamster") -- cgit v1.2.3 From 51613854268453746d33fbb16d6406cde4963e12 Mon Sep 17 00:00:00 2001 From: mguetlein Date: Tue, 24 Aug 2010 17:41:15 +0200 Subject: remove cv regr plot for now --- report/report_factory.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/report/report_factory.rb b/report/report_factory.rb index a9fe7fd..38d144b 100644 --- a/report/report_factory.rb +++ b/report/report_factory.rb @@ -97,7 +97,7 @@ module Reports::ReportFactory report.add_section_result(validation_set, VAL_ATTR_CV+VAL_ATTR_CLASS-[:num_folds], "Results","Results") else #regression report.add_section_result(merged, VAL_ATTR_CV+VAL_ATTR_REGR-[:crossvalidation_fold],"Mean Results","Mean Results") - report.add_section_regression_plot(validation_set) + #report.add_section_regression_plot(validation_set) report.add_section_result(validation_set, VAL_ATTR_CV+VAL_ATTR_REGR-[:num_folds], "Results","Results") end -- cgit v1.2.3 From f04a500388557a34d782c5310c009f559e47d046 Mon Sep 17 00:00:00 2001 From: mguetlein Date: Thu, 2 Sep 2010 14:25:02 +0200 Subject: fixing rakefile, adding some more content to reach qmrf report, fix :model-name for relations --- Rakefile | 2 +- lib/ot_predictions.rb | 8 ++++++-- reach_reports/reach_persistance.rb | 38 +++++++++++++++++++------------------- reach_reports/reach_service.rb | 22 ++++++++++++++++++---- test/test_examples.rb | 21 +++++++++++++++++++++ 5 files changed, 65 insertions(+), 26 deletions(-) diff --git a/Rakefile b/Rakefile index 938506a..0bc031c 100644 --- a/Rakefile +++ b/Rakefile @@ -70,7 +70,7 @@ task :migrate => :load_config do :password => @@config[:database][:password] ) ActiveRecord::Base.logger = Logger.new($stdout) - ActiveRecord::Migrator.migrate('db/migrate', ENV["VERSION"] ? ENV["VERSION"].to_i : 3 ) + ActiveRecord::Migrator.migrate('db/migrate', ENV["VERSION"] ? ENV["VERSION"].to_i : 2 ) end diff --git a/lib/ot_predictions.rb b/lib/ot_predictions.rb index a6c5028..dcd7d09 100644 --- a/lib/ot_predictions.rb +++ b/lib/ot_predictions.rb @@ -147,8 +147,12 @@ module Lib a = [] #PENDING! - a.push( "http://ambit.uni-plovdiv.bg:8080/ambit2/depict/cdk?search="+ - URI.encode(OpenTox::Compound.new(:uri=>p.identifier(i)).smiles) ) if add_pic + begin + a.push( "http://ambit.uni-plovdiv.bg:8080/ambit2/depict/cdk?search="+ + URI.encode(OpenTox::Compound.new(:uri=>p.identifier(i)).smiles) ) if add_pic + rescue => ex + a.push("Could not add pic: "+ex.message) + end a << (format ? p.actual_value(i).to_nice_s : p.actual_value(i)) a << (format ? p.predicted_value(i).to_nice_s : p.predicted_value(i)) diff --git a/reach_reports/reach_persistance.rb b/reach_reports/reach_persistance.rb index a96c0e6..6c80503 100644 --- a/reach_reports/reach_persistance.rb +++ b/reach_reports/reach_persistance.rb @@ -40,7 +40,7 @@ class Symbol :qsar_endpoint => "QSAR_Endpoint", :qmrf_author => "qmrf_authors", :qsar_algorithm => "QSAR_Algorithm", :qsar_applicability_domain => "QSAR_Applicability_domain", :qsar_robustness => "QSAR_Robustness", :qsar_predictivity => "QSAR_Predictivity", :qsar_interpretation => "QSAR_Interpretation", - :qsar_miscelaneous => "QSAR_Miscelaneous", :qmrf_summary => "QMRF_Summary", :qmrf_number => "QMRF_number" } + :qsar_miscellaneous => "QSAR_Miscelaneous", :qmrf_summary => "QMRF_Summary", :qmrf_number => "QMRF_number" } def xml_alias XML_ALIAS[self] ? XML_ALIAS[self] : self.to_s @@ -325,7 +325,7 @@ module DataMapper::Resource #puts "new prop "+xml_info.xml_prop self.send( xml_info.prop ).each do |elem| #puts "elem "+elem.to_yaml - elem_node = REXML::Element.new(xml_info.list_element ) + elem_node = REXML::Element.new( xml_info.list_element.xml_alias ) elem.to_XML( elem_node ) prop_node << elem_node end @@ -620,7 +620,7 @@ module ReachReports property :related_models, Text # type is needed to distinguish between authors - # (the datamapper creates a table "Atuhors", the relation is defined by QsarGeneral.id and Author.id) + # (the datamapper creates a table "Authors", the relation is defined by QsarGeneral.id and Author.id) has n, :qmrf_authors, :type => "QmrfAuthor" has n, :model_authors, :type => "ModelAuthor" has n, :references @@ -827,7 +827,7 @@ module ReachReports property :bootstrap, Text property :other_statistics, Text - has 1, :training_set_data + has 1, :training_set_data, :model => "TrainingSetData" def xml_infos [ SingleAttributeNodeProperty.new(:training_set_availability, "answer"), @@ -870,7 +870,7 @@ module ReachReports property :validation_assessment, Text property :validation_comments, Text - has 1, :validation_set_data + has 1, :validation_set_data, :model => "ValidationSetData" def xml_infos [ SingleAttributeNodeProperty.new(:validation_set_availability, "answer"), @@ -908,8 +908,8 @@ module ReachReports class Bibliography < Publication - #belongs_to :qsar_miscelaneous - property :qsar_miscelaneous_id, Integer + #belongs_to :qsar_miscellaneous + property :qsar_miscellaneous_id, Integer end class Attachment @@ -927,7 +927,7 @@ module ReachReports ] end - belongs_to :qsar_miscelaneous + belongs_to :qsar_miscellaneous end class AttachmentTrainingData < Attachment @@ -943,7 +943,7 @@ module ReachReports end - class QsarMiscelaneous + class QsarMiscellaneous include DataMapper::Resource property :id, Serial @@ -953,8 +953,8 @@ module ReachReports # type is needed to distinguish between attachments # (the datamapper creates a table "Attachments", the relation is defined by QsarMisc.id and Attachment.id) - has n, :attachment_training_data, :type => "AttachmentTrainingData" - has n, :attachment_validation_data, :type => "AttachmentValidationData" + has n, :attachment_training_data, :model => "AttachmentValidationData", :type => "AttachmentTrainingData" + has n, :attachment_validation_data, :model => "AttachmentValidationData", :type => "AttachmentValidationData" has n, :attachment_documents, :type => "AttachmentDocument" def xml_infos @@ -997,7 +997,7 @@ module ReachReports CHAPTERS = [ :qsar_identifier, :qsar_general_information, :qsar_endpoint, :qsar_algorithm, :qsar_applicability_domain, :qsar_robustness, :qsar_predictivity, :qsar_interpretation, - :qsar_miscelaneous, :qmrf_summary ] + :qsar_miscellaneous, :qmrf_summary ] CHAPTERS.each{ |c,clazz| has 1, c } @@ -1065,21 +1065,21 @@ module ReachReports # puts "XXXXXXXxxxxx" # # puts "1" -# puts report.qsar_miscelaneous.attachment_training_data.inspect +# puts report.qsar_miscellaneous.attachment_training_data.inspect # puts "2" -# puts report.qsar_miscelaneous.attachment_validation_data.inspect +# puts report.qsar_miscellaneous.attachment_validation_data.inspect # puts "3" -# puts report.qsar_miscelaneous.attachment_documents.inspect +# puts report.qsar_miscellaneous.attachment_documents.inspect # # # r = QmrfReport.get(report.id) # # puts "1" -# puts r.qsar_miscelaneous.attachment_training_data.inspect +# puts r.qsar_miscellaneous.attachment_training_data.inspect # puts "2" -# puts r.qsar_miscelaneous.attachment_validation_data.inspect +# puts r.qsar_miscellaneous.attachment_validation_data.inspect # puts "3" -# puts r.qsar_miscelaneous.attachment_documents.inspect +# puts r.qsar_miscellaneous.attachment_documents.inspect # # exit @@ -1218,7 +1218,7 @@ module ReachReports AttachmentTrainingData.auto_upgrade! AttachmentValidationData.auto_upgrade! AttachmentDocument.auto_upgrade! - QsarMiscelaneous.auto_upgrade! + QsarMiscellaneous.auto_upgrade! QmrfSummary.auto_upgrade! diff --git a/reach_reports/reach_service.rb b/reach_reports/reach_service.rb index 9fe79e6..f7b899c 100644 --- a/reach_reports/reach_service.rb +++ b/reach_reports/reach_service.rb @@ -73,12 +73,11 @@ module ReachReports # chapter 3 # TODO "model_species" ? r.qsar_endpoint = QsarEndpoint.new - model.predictedVariables.each do |p| r.qsar_endpoint.model_endpoint << ModelEndpoint.new( :name => p ) end # TODO "endpoint_comments" => "3.3", "endpoint_units" => "3.4", - r.qsar_endpoint.endpoint_variable = model.dependentVariables if model.dependentVariables + r.qsar_endpoint.endpoint_variable = model.dependentVariables if model.dependentVariables # TODO "endpoint_protocol" => "3.6", "endpoint_data_quality" => "3.7", # chapter 4 @@ -90,10 +89,18 @@ module ReachReports # chapter 5 # TODO app_domain_description, app_domain_method, app_domain_software, applicability_limits + dataset = model.trainingDataset ? OpenTox::Dataset.find(model.trainingDataset) : nil + # chapter 6 - # "training_set_availability" => "6.1", "training_set_data" => "6.2","training_set_descriptors" => "6.3", + r.qsar_robustness = QsarRobustness.new + r.qsar_robustness.training_set_availability = dataset ? "Yes" : "No" + #TODO "training_set_data" => "6.2", + # "training_set_descriptors" => "6.3", # "dependent_var_availability" => "6.4", "other_info" => "6.5", "preprocessing" => "6.6", "goodness_of_fit" => "6.7", - # "loo" => "6.8", "lmo" => "6.9", "yscrambling" => "6.10", "bootstrap" => "6.11", "other_statistics" => "6.12", + # "loo" => "6.8", + puts Lib::Crossvalidation.find(:all, :conditions => {:algorithm_uri => model.algorithm}).inspect if model.algorithm + #exit + # "lmo" => "6.9", "yscrambling" => "6.10", "bootstrap" => "6.11", "other_statistics" => "6.12", # chapter 7 # "validation_set_availability" => "7.1", "validation_set_data" => "7.2", "validation_set_descriptors" => "7.3", @@ -105,6 +112,13 @@ module ReachReports # chapter 9 # "comments" => "9.1", "bibliography" => "9.2", "attachments" => "9.3", + r.qsar_miscellaneous = QsarMiscellaneous.new + r.qsar_miscellaneous.attachment_training_data << AttachmentTrainingData.new( + { :description => dataset.title, + :filetype => "owl-dl", + :url => dataset.uri} ) if dataset + + r.save end diff --git a/test/test_examples.rb b/test/test_examples.rb index 2f02ccf..d7edba0 100644 --- a/test/test_examples.rb +++ b/test/test_examples.rb @@ -182,6 +182,22 @@ module ValidationExamples ######################################################################################################## + class ISTRatLiverCrossvalidation < CrossValidation + def initialize + @dataset_uri = "http://webservices.in-silico.ch/dataset/26" + @prediction_feature = "http://toxcreate.org/feature#chr_rat_liver_proliferativelesions" + end + end + + class MajorityISTRatLiverCrossvalidation < ISTRatLiverCrossvalidation + def initialize + @algorithm_uri = File.join(@@config[:services]["opentox-majority"],"/class/algorithm") + super + end + end + + ######################################################################################################## + class ISTEpaCrossvalidation < CrossValidation def initialize @dataset_uri = "http://ot-dev.in-silico.ch/dataset/69" @@ -197,6 +213,9 @@ module ValidationExamples end end + ######################################################################################################## + + ######################################################################################################## class LR_AmbitCacoModel < ModelValidation @@ -282,6 +301,8 @@ module ValidationExamples "9a" => [ ISTLazarISTIrisCrossvalidation ], "10a" => [ ISTLazarISTEpaCrossvalidation ], + + "11b" => [ MajorityISTRatLiverCrossvalidation ], } def self.list -- cgit v1.2.3 From 95ac5d0b0f79fe3fb20b380e6aec2e2e64f329ef Mon Sep 17 00:00:00 2001 From: mguetlein Date: Thu, 2 Sep 2010 16:32:07 +0200 Subject: fix activerecord version, improve rake init script --- Rakefile | 27 ++++++++++++++++++--------- lib/active_record_setup.rb | 6 ++++-- report/environment.rb | 7 ++++--- validation/validation_application.rb | 7 ++++--- 4 files changed, 30 insertions(+), 17 deletions(-) diff --git a/Rakefile b/Rakefile index 0bc031c..e388b03 100644 --- a/Rakefile +++ b/Rakefile @@ -1,23 +1,32 @@ require 'rubygems' require 'rake' -REPORT_GEMS = ['rubygems', 'logger', 'fileutils', 'sinatra', 'sinatra/url_for', 'rest_client', - 'yaml', 'opentox-ruby-api-wrapper', 'fileutils', 'mime/types', 'abbrev', - 'rexml/document', 'active_record', 'ar-extensions', 'ruby-plot'] -VALIDATION_GEMS = [ 'rubygems', 'sinatra', 'sinatra/url_for', 'opentox-ruby-api-wrapper', 'logger', 'active_record', 'ar-extensions' ] - +REPORT_GEMS = [ 'opentox-ruby-api-wrapper', 'mime-types', 'activerecord', 'activesupport', 'ar-extensions', 'ruby-plot'] +VALIDATION_GEMS = [ 'opentox-ruby-api-wrapper', 'activerecord', 'activesupport', 'ar-extensions', 'ruby-plot'] +GEM_VERSIONS = { "activerecord" => "= 2.3.8", "activesupport" => "= 2.3.8", "ar-extensions" => "= 0.9.2", "ruby-plot" => "= 0.0.2" } +# this is needed because otherwihse ar-extensions adds activesupport 3.0.0 which confuses things +GEM_INSTALL_OPTIONS = { "ar-extensions" => "--ignore-dependencies" } desc "Install required gems" task :install_gems do (REPORT_GEMS + VALIDATION_GEMS).uniq.each do |g| begin - print "> require "+g+" .. " - require g + if GEM_VERSIONS.has_key?(g) + print "> gem "+g+", '"+GEM_VERSIONS[g]+"' .. " + gem g, GEM_VERSIONS[g] + else + print "> gem "+g+" .. " + gem g + end puts "ok" rescue LoadError => ex puts "NOT FOUND" - cmd = "sudo env PATH=$PATH gem install "+g + options = "" + options += "--version '"+GEM_VERSIONS[g]+"' " if GEM_VERSIONS.has_key?(g) + options += GEM_INSTALL_OPTIONS[g]+" " if GEM_INSTALL_OPTIONS.has_key?(g) + cmd = "sudo env PATH=$PATH gem install "+options+" "+g + puts "installing gem, this may take some time..." puts cmd IO.popen(cmd){ |f| puts f.gets } end @@ -61,7 +70,7 @@ end desc "Migrate the database through scripts in db/migrate. Target specific version with VERSION=x" task :migrate => :load_config do - require 'active_record' + [ 'rubygems', 'active_record', 'logger' ].each{ |l| require l } ActiveRecord::Base.establish_connection( :adapter => @@config[:database][:adapter], :host => @@config[:database][:host], diff --git a/lib/active_record_setup.rb b/lib/active_record_setup.rb index 9fc99df..85690b6 100644 --- a/lib/active_record_setup.rb +++ b/lib/active_record_setup.rb @@ -1,4 +1,6 @@ +gem "activerecord", "= 2.3.8" +gem "ar-extensions", "= 0.9.2" ['rubygems', 'logger', 'active_record', 'ar-extensions', 'opentox-ruby-api-wrapper' ].each do |g| require g end @@ -17,7 +19,7 @@ end class ActiveRecord::Base def self.find_like(filter_params) - puts "params before "+filter_params.inspect + #puts "params before "+filter_params.inspect filter_params.keys.each do |k| key = k.to_s unless self.column_names.include?(key) @@ -32,7 +34,7 @@ class ActiveRecord::Base end filter_params[key+"_like"] = filter_params.delete(k) end - puts "params after "+filter_params.inspect + #puts "params after "+filter_params.inspect self.find(:all, :conditions => filter_params) end end \ No newline at end of file diff --git a/report/environment.rb b/report/environment.rb index e04c397..f2bbe66 100644 --- a/report/environment.rb +++ b/report/environment.rb @@ -1,7 +1,7 @@ ['rubygems', 'logger', 'fileutils', 'sinatra', 'sinatra/url_for', 'rest_client', 'yaml', 'fileutils', 'mime/types', 'abbrev', - 'rexml/document', 'ruby-plot', 'active_record', 'ar-extensions', 'opentox-ruby-api-wrapper' ].each do |g| + 'rexml/document', 'ruby-plot', 'opentox-ruby-api-wrapper' ].each do |g| require g end gem 'ruby-plot', '= 0.0.2' @@ -9,6 +9,9 @@ gem 'ruby-plot', '= 0.0.2' module Reports end +require "lib/ot_predictions.rb" +require "lib/active_record_setup.rb" + require "report/plot_factory.rb" require "report/xml_report.rb" require "report/xml_report_util.rb" @@ -21,8 +24,6 @@ require "report/validation_data.rb" require "report/util.rb" require "report/external/mimeparse.rb" -require "lib/ot_predictions.rb" -require "lib/active_record_setup.rb" diff --git a/validation/validation_application.rb b/validation/validation_application.rb index 2da9694..7ba968f 100644 --- a/validation/validation_application.rb +++ b/validation/validation_application.rb @@ -1,12 +1,13 @@ -[ 'rubygems', 'sinatra', 'sinatra/url_for', 'active_record', 'ar-extensions', 'opentox-ruby-api-wrapper' ].each do |lib| +[ 'rubygems', 'sinatra', 'sinatra/url_for', 'opentox-ruby-api-wrapper' ].each do |lib| require lib end -require 'validation/validation_service.rb' require 'lib/merge.rb' require 'lib/active_record_setup.rb' +require 'validation/validation_service.rb' + get '/crossvalidation/?' do LOGGER.info "list all crossvalidations" content_type "text/uri-list" @@ -125,7 +126,7 @@ get '/training_test_split' do end get '/?' do - LOGGER.info "list all validations" + LOGGER.info "list all validations, params: "+params.inspect content_type "text/uri-list" Validation::Validation.find_like(params).collect{ |d| url_for("/", :full) + d.id.to_s }.join("\n") end -- cgit v1.2.3 From 823fb7f7d74946640c38b91241c83a916588df91 Mon Sep 17 00:00:00 2001 From: mguetlein Date: Thu, 2 Sep 2010 16:38:37 +0200 Subject: add ruby-api-wrapper require to init script --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index e388b03..cc1aaed 100644 --- a/Rakefile +++ b/Rakefile @@ -70,7 +70,7 @@ end desc "Migrate the database through scripts in db/migrate. Target specific version with VERSION=x" task :migrate => :load_config do - [ 'rubygems', 'active_record', 'logger' ].each{ |l| require l } + [ 'rubygems', 'opentox-ruby-api-wrapper', 'active_record', 'logger' ].each{ |l| require l } ActiveRecord::Base.establish_connection( :adapter => @@config[:database][:adapter], :host => @@config[:database][:host], -- cgit v1.2.3 From 9ec38f1ebaffa51cac69e5e1a09c988556a690a1 Mon Sep 17 00:00:00 2001 From: mguetlein Date: Thu, 2 Sep 2010 16:50:16 +0200 Subject: set default rack_env in Rakefiel to production (like in ruby-api-wrapper) --- Rakefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Rakefile b/Rakefile index cc1aaed..4225438 100644 --- a/Rakefile +++ b/Rakefile @@ -43,7 +43,7 @@ end desc "load config" task :load_config do require 'yaml' - ENV['RACK_ENV'] = 'test' unless ENV['RACK_ENV'] + ENV['RACK_ENV'] = 'production' unless ENV['RACK_ENV'] basedir = File.join(ENV['HOME'], ".opentox") config_dir = File.join(basedir, "config") config_file = File.join(config_dir, "#{ENV['RACK_ENV']}.yaml") @@ -70,7 +70,7 @@ end desc "Migrate the database through scripts in db/migrate. Target specific version with VERSION=x" task :migrate => :load_config do - [ 'rubygems', 'opentox-ruby-api-wrapper', 'active_record', 'logger' ].each{ |l| require l } + [ 'rubygems', 'active_record', 'logger' ].each{ |l| require l } ActiveRecord::Base.establish_connection( :adapter => @@config[:database][:adapter], :host => @@config[:database][:host], -- cgit v1.2.3 From 7d69d09e79882cb826dacac2b6474fade13e8690 Mon Sep 17 00:00:00 2001 From: mguetlein Date: Tue, 7 Sep 2010 09:25:39 +0200 Subject: add validation to qmrf-report, bootstrapping --- EXAMPLES | 21 ++++++ lib/active_record_setup.rb | 2 +- reach_reports/reach_service.rb | 120 +++++++++++++++++++++++++++++++---- reach_reports/reach_test.rb | 41 ++++++++---- report/report_service.rb | 2 +- test/test_examples.rb | 28 ++++++++ test/test_examples_util.rb | 16 ++++- validation/validation_application.rb | 29 +++++++++ validation/validation_service.rb | 64 +++++++++++++++++++ validation/validation_test.rb | 31 +++++++-- 10 files changed, 320 insertions(+), 34 deletions(-) diff --git a/EXAMPLES b/EXAMPLES index 944688f..3653ed5 100644 --- a/EXAMPLES +++ b/EXAMPLES @@ -116,6 +116,27 @@ result example (accept-header: text/uri-list) <<< /id_i +validate an algorithm on a dataset via bootstrapping +------------------------------------------------------------------- + +>>> curl -X POST -d algorithm_uri="" \ + -d dataset_uri="" \ + -d prediction_feature="" \ + -d algorithm_params="" \ + -d random_seed=2 \ + /bootstrapping + +optional params: +algorithm_params, default is empty +random_seed, default is 1 + +result example (accept-header: application/rdf-xml) +<<< not yet supported + +result example (accept-header: text/uri-list) +<<< /id_i + + get list of available crossvalidations ------------------------------------------------------------------- diff --git a/lib/active_record_setup.rb b/lib/active_record_setup.rb index 85690b6..cea4fb2 100644 --- a/lib/active_record_setup.rb +++ b/lib/active_record_setup.rb @@ -28,7 +28,7 @@ class ActiveRecord::Base key = key+"_uri" unless self.column_names.include?(key) key = key+"s" - raise "no attribute found: '"+k.to_s+"'" unless self.column_names.include?(key) + $sinatra.halt 400,"no attribute found: '"+k.to_s+"'" unless self.column_names.include?(key) end end end diff --git a/reach_reports/reach_service.rb b/reach_reports/reach_service.rb index f7b899c..a742c49 100644 --- a/reach_reports/reach_service.rb +++ b/reach_reports/reach_service.rb @@ -1,3 +1,15 @@ + +class Array + + def to_html + return "" unless size>0 + s = "\n\n\n\n" + s += join("
\n") + s += "\n\n" + return s + end +end + module ReachReports def self.list_reports(type) @@ -45,17 +57,17 @@ module ReachReports #halt 202,task_uri end - def self.build_qmrf_report(r) - model = OpenTox::Model::Generic.find(r.model_uri) + + def self.build_qmrf_report(r) + + model = OpenTox::Model::PredictionModel.find(r.model_uri) + classification = model.classification? # chapter 1 - #r.QSAR_title = model.title r.qsar_identifier = QsarIdentifier.new r.qsar_identifier.qsar_title = model.title - - # TODO - # QSAR_models -> sparql same endpoint + # TODO QSAR_models -> sparql same endpoint r.qsar_identifier.qsar_software << QsarSoftware.new( :url => model.uri, :name => model.title, :contact => model.creator ) algorithm = OpenTox::Algorithm::Generic.find(model.algorithm) if model.algorithm r.qsar_identifier.qsar_software << QsarSoftware.new( :url => algorithm.uri, :name => algorithm.title ) @@ -89,19 +101,89 @@ module ReachReports # chapter 5 # TODO app_domain_description, app_domain_method, app_domain_software, applicability_limits - dataset = model.trainingDataset ? OpenTox::Dataset.find(model.trainingDataset) : nil + training_dataset = model.trainingDataset ? OpenTox::Dataset.find(model.trainingDataset+"/metadata") : nil # chapter 6 r.qsar_robustness = QsarRobustness.new - r.qsar_robustness.training_set_availability = dataset ? "Yes" : "No" + if training_dataset + r.qsar_robustness.training_set_availability = "Yes" + r.qsar_robustness.training_set_data = TrainingSetData.new(:chemname => "Yes", :cas => "Yes", + :smiles => "Yes", :inchi => "Yes", :mol => "Yes", :formula => "Yes") + end + #TODO "training_set_data" => "6.2", # "training_set_descriptors" => "6.3", # "dependent_var_availability" => "6.4", "other_info" => "6.5", "preprocessing" => "6.6", "goodness_of_fit" => "6.7", # "loo" => "6.8", - puts Lib::Crossvalidation.find(:all, :conditions => {:algorithm_uri => model.algorithm}).inspect if model.algorithm - #exit + + val_datasets = [] + + if model.algorithm + cvs = Lib::Crossvalidation.find(:all, :conditions => {:algorithm_uri => model.algorithm}) + cvs = [] unless cvs + lmo = [ "found "+cvs.size.to_s+" crossvalidation/s for algorithm '"+model.algorithm ] + lmo << "" + cvs.each do |cv| + lmo << "crossvalidation: "+cv.crossvalidation_uri + lmo << "dataset (see 9.3 Validation data): "+cv.dataset_uri + val_datasets << cv.dataset_uri + lmo << "num-folds: "+cv.num_folds.to_s + val = YAML.load( OpenTox::RestClientWrapper.get File.join(cv.crossvalidation_uri,"statistics") ) + if classification + lmo << "percent_correct: "+val[:classification_statistics][:percent_correct].to_s + lmo << "weighted AUC: "+val[:classification_statistics][:weighted_area_under_roc].to_s + else + lmo << "root_mean_squared_error: "+val[:regression_statistics][:root_mean_squared_error].to_s + lmo << "r_square "+val[:regression_statistics][:r_square].to_s + end + reports = OpenTox::RestClientWrapper.get File.join(CONFIG[:services]["opentox-validation"],"report/crossvalidation?crossvalidation_uris="+cv.crossvalidation_uri) + if reports and reports.size>0 + lmo << "for more info see report: "+reports + else + lmo << "for more info see report: not yet created for '"+cv.crossvalidation_uri+"'" + end + lmo << "" + end + else + lmo = [ "no prediction algortihm for model found, crossvalidation not possible" ] + end + r.qsar_robustness.lmo = lmo.to_html # "lmo" => "6.9", "yscrambling" => "6.10", "bootstrap" => "6.11", "other_statistics" => "6.12", + vals = Lib::Validation.find(:all, :conditions => {:model_uri => model.uri}) + if vals and vals.size > 0 + + r.qsar_predictivity = QsarPredictivity.new + r.qsar_predictivity.validation_set_availability = "Yes" + r.qsar_predictivity.validation_set_data = ValidationSetData.new(:chemname => "Yes", :cas => "Yes", + :smiles => "Yes", :inchi => "Yes", :mol => "Yes", :formula => "Yes") + + v = [ "found '"+vals.size.to_s+"' test-set validations of model '"+model.uri+"'" ] + v << "" + vals.each do |validation| + v << "validation: "+validation.validation_uri + v << "dataset (see 9.3 Validation data): "+validation.test_dataset_uri + val_datasets << validation.test_dataset_uri + if classification + v << "percent_correct: "+validation.classification_statistics[:percent_correct].to_s + v << "weighted AUC: "+validation.classification_statistics[:weighted_area_under_roc].to_s + else + v << "root_mean_squared_error: "+validation.regression_statistics[:root_mean_squared_error].to_s + v << "r_square "+validation.regression_statistics[:r_square].to_s + end + reports = OpenTox::RestClientWrapper.get File.join(CONFIG[:services]["opentox-validation"],"report/validation?validation_uris="+validation.validation_uri) + if reports and reports.size>0 + v << "for more info see report: "+reports + else + v << "for more info see report: not yet created for '"+validation.validation_uri+"'" + end + v << "" + end + else + v = [ "no validation of model '"+model.uri+" found" ] + end + r.qsar_predictivity.validation_predictivity = v.to_html + # chapter 7 # "validation_set_availability" => "7.1", "validation_set_data" => "7.2", "validation_set_descriptors" => "7.3", # "validation_dependent_var_availability" => "7.4", "validation_other_info" => "7.5", "experimental_design" => "7.6", @@ -112,15 +194,25 @@ module ReachReports # chapter 9 # "comments" => "9.1", "bibliography" => "9.2", "attachments" => "9.3", + r.qsar_miscellaneous = QsarMiscellaneous.new + r.qsar_miscellaneous.attachment_training_data << AttachmentTrainingData.new( - { :description => dataset.title, + { :description => training_dataset.title, :filetype => "owl-dl", - :url => dataset.uri} ) if dataset + :url => model.trainingDataset} ) if training_dataset + + val_datasets.each do |data_uri| + d = OpenTox::Dataset.find(data_uri+"/metadata") + r.qsar_miscellaneous.attachment_validation_data << AttachmentValidationData.new( + { :description => d.title, + :filetype => "owl-dl", + :url => data_uri} ) + end - - r.save + + end # def self.get_report_content(type, id, *keys) diff --git a/reach_reports/reach_test.rb b/reach_reports/reach_test.rb index 152b355..2f07302 100644 --- a/reach_reports/reach_test.rb +++ b/reach_reports/reach_test.rb @@ -11,6 +11,21 @@ LOGGER = MyLogger.new(STDOUT) LOGGER.datetime_format = "%Y-%m-%d %H:%M:%S " LOGGER.formatter = Logger::Formatter.new +#Rack::Test::DEFAULT_HOST = "localhost/validation" +module Sinatra + module UrlForHelper + BASE = "http://localhost/validation" + def url_for url_fragment, mode=:path_only + case mode + when :path_only + raise "not impl" + when :full + end + "#{BASE}#{url_fragment}" + end + end +end + #DataMapper::Model.raise_on_save_failure = true # #class TestResourceX @@ -96,19 +111,20 @@ class ReachTest < Test::Unit::TestCase # #puts "data found "+data.to_s[0..1000] # puts OpenTox::RestClientWrapper.post("http://localhost/validation/reach_report/qmrf/20",{:content_type => "application/qmrf-xml"},data).to_s.chomp - post "/reach_report/qmrf/8" - puts last_response.body - +# post "/reach_report/qmrf/8" +# puts last_response.body -# #model_uri = "http://localhost/model/1" -# model_uri = "http://apps.ideaconsult.net:8080/ambit2/model/2" -# post '/reach_report/qmrf',:model_uri=>model_uri #http://localhost/model/1" -# ##post '/reach_report/qprf',:compound_uri=>"http://localhost/compound/XYZ" -# uri = last_response.body -# id = uri.split("/")[-1] -# puts uri + model_uri = "http://localhost/model/1" + #model_uri = "http://localhost/majority/regr/model/12" + #model_uri = "http://localhost/majority/class/model/1" + #model_uri = "http://apps.ideaconsult.net:8080/ambit2/model/2" + post '/reach_report/qmrf',:model_uri=>model_uri #http://localhost/model/1" + ##post '/reach_report/qprf',:compound_uri=>"http://localhost/compound/XYZ" + uri = last_response.body + id = uri.split("/")[-1] + puts uri - id = "8" +# id = "8" #get '/reach_report/qmrf' #puts last_response.body @@ -128,6 +144,9 @@ class ReachTest < Test::Unit::TestCase #r = ReachReports::QmrfReport.find_like( :QSAR_title => "Hamster") #puts r.collect{|rr| "report with id:"+rr.id.to_s}.inspect + + File.new("/home/martin/win/home/qmr_rep_del_me.xml","w").puts last_response.body + File.new("/home/martin/info_home/.public_html/qmr_rep_del_me.xml","w").puts last_response.body end end diff --git a/report/report_service.rb b/report/report_service.rb index 04a2d2e..9aaa2e0 100644 --- a/report/report_service.rb +++ b/report/report_service.rb @@ -30,7 +30,7 @@ module Reports # def get_all_reports(type, filter_params) - LOGGER.info "get all reports of type '"+type.to_s+"'" + LOGGER.info "get all reports of type '"+type.to_s+"', filter_params: '"+filter_params.inspect+"'" check_report_type(type) @persistance.list_reports(type, filter_params).collect{ |id| get_uri(type,id) }.join("\n") end diff --git a/test/test_examples.rb b/test/test_examples.rb index d7edba0..8927fb1 100644 --- a/test/test_examples.rb +++ b/test/test_examples.rb @@ -80,6 +80,30 @@ module ValidationExamples end end + ######################################################################################################## + + class HamsterBootstrapping < BootstrappingValidation + def initialize + @dataset_file = File.new("data/hamster_carcinogenicity.yaml","r") + @prediction_feature = "http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB)" + end + end + + class LazarHamsterBootstrapping < HamsterBootstrapping + def initialize + @algorithm_uri = File.join(@@config[:services]["opentox-algorithm"],"lazar") + @algorithm_params = "feature_generation_uri="+File.join(@@config[:services]["opentox-algorithm"],"fminer") + super + end + end + + class MajorityHamsterBootstrapping < HamsterBootstrapping + def initialize + @algorithm_uri = File.join(@@config[:services]["opentox-majority"],"/class/algorithm") + super + end + end + ######################################################################################################## class HamsterTrainingTest < TrainingTestValidation @@ -303,6 +327,10 @@ module ValidationExamples "10a" => [ ISTLazarISTEpaCrossvalidation ], "11b" => [ MajorityISTRatLiverCrossvalidation ], + + "12" => [ LazarHamsterBootstrapping, MajorityHamsterBootstrapping ], + "12a" => [ LazarHamsterBootstrapping ], + "12b" => [ MajorityHamsterBootstrapping ], } def self.list diff --git a/test/test_examples_util.rb b/test/test_examples_util.rb index b18607d..c5a9900 100644 --- a/test/test_examples_util.rb +++ b/test/test_examples_util.rb @@ -40,7 +40,7 @@ module ValidationExamples $test_case.post uri,params return wait($test_case.last_response.body) else - return OpenTox::RestClientWrapper.post(File.join(@@config[:services]["opentox-validation"],uri),params) + return OpenTox::RestClientWrapper.post(File.join(@@config[:services]["opentox-validation"],uri),params).to_s end end @@ -323,6 +323,20 @@ module ValidationExamples end end + class BootstrappingValidation < ValidationExample + def params + [:algorithm_uri, :dataset_uri, :prediction_feature] + end + + def opt_params + [ :algorithm_params, :random_seed ] + end + + def validation_type + "bootstrapping" + end + end + class CrossValidation < ValidationExample def params [:algorithm_uri, :dataset_uri, :prediction_feature] diff --git a/validation/validation_application.rb b/validation/validation_application.rb index 7ba968f..a79de22 100644 --- a/validation/validation_application.rb +++ b/validation/validation_application.rb @@ -121,10 +121,17 @@ post '/crossvalidation/?' do halt 202,task_uri end + get '/training_test_split' do halt 400, "GET operation not supported, use POST to perform a training_test_split, see "+url_for("/", :full)+" for validation results" end + +get '/bootstrapping' do + halt 400, "GET operation not supported, use POST to perform a bootstrapping, see "+url_for("/", :full)+" for validation results" +end + + get '/?' do LOGGER.info "list all validations, params: "+params.inspect content_type "text/uri-list" @@ -203,6 +210,28 @@ post '/training_test_split' do end +post '/bootstrapping' do + content_type "text/uri-list" + task_uri = OpenTox::Task.as_task( "Perform bootstrapping validation", url_for("/bootstrapping", :full) ) do + LOGGER.info "performing bootstrapping validation "+params.inspect + halt 400, "dataset_uri missing" unless params[:dataset_uri] + halt 400, "algorithm_uri missing" unless params[:algorithm_uri] + halt 400, "prediction_feature missing" unless params[:prediction_feature] + + params.merge!(Validation::Util.bootstrapping(params[:dataset_uri], params[:prediction_feature], params[:random_seed])) + v = Validation::Validation.new :training_dataset_uri => params[:training_dataset_uri], + :test_dataset_uri => params[:test_dataset_uri], + :test_target_dataset_uri => params[:dataset_uri], + :prediction_feature => params[:prediction_feature], + :algorithm_uri => params[:algorithm_uri] + v.validate_algorithm( params[:algorithm_params]) + content_type "text/uri-list" + v.validation_uri + end + halt 202,task_uri +end + + post '/plain_training_test_split' do LOGGER.info "creating pure training test split "+params.inspect halt 400, "dataset_uri missing" unless params[:dataset_uri] diff --git a/validation/validation_service.rb b/validation/validation_service.rb index ce25ee9..67fdbee 100644 --- a/validation/validation_service.rb +++ b/validation/validation_service.rb @@ -332,6 +332,70 @@ module Validation module Util + # splits a dataset into test and training dataset via bootstrapping + # (training dataset-size is n, sampling from orig dataset with replacement) + # returns map with training_dataset_uri and test_dataset_uri + def self.bootstrapping( orig_dataset_uri, prediction_feature, random_seed=nil ) + + random_seed=1 unless random_seed + + orig_dataset = OpenTox::Dataset.find orig_dataset_uri + $sinatra.halt 400, "Dataset not found: "+orig_dataset_uri.to_s unless orig_dataset + if prediction_feature + $sinatra.halt 400, "Prediction feature '"+prediction_feature.to_s+ + "' not found in dataset, features are: \n"+ + orig_dataset.features.inspect unless orig_dataset.features.include?(prediction_feature) + else + LOGGER.warn "no prediciton feature given, all features included in test dataset" + end + + compounds = orig_dataset.compounds + $sinatra.halt 400, "Cannot split datset, num compounds in dataset < 2 ("+compounds.size.to_s+")" if compounds.size<2 + + srand random_seed.to_i + while true + training_compounds = [] + compounds.size.times do + training_compounds << compounds[rand(compounds.size)] + end + test_compounds = [] + compounds.each do |c| + test_compounds << c unless training_compounds.include?(c) + end + if test_compounds.size > 0 + break + else + srand rand(10000) + end + end + + LOGGER.debug "bootstrapping on dataset "+orig_dataset_uri+ + " into training ("+training_compounds.size.to_s+") and test ("+test_compounds.size.to_s+")"+ + ", duplicates in training dataset: "+test_compounds.size.to_s + + result = {} + result[:training_dataset_uri] = orig_dataset.create_new_dataset( training_compounds, + orig_dataset.features, + "Bootstrapping training dataset of "+orig_dataset.title.to_s, + $sinatra.url_for('/bootstrapping',:full) ) + result[:test_dataset_uri] = orig_dataset.create_new_dataset( test_compounds, + orig_dataset.features.dclone - [prediction_feature], + "Bootstrapping test dataset of "+orig_dataset.title.to_s, + $sinatra.url_for('/bootstrapping',:full) ) + + if ENV['RACK_ENV'] =~ /test|debug/ + training_dataset = OpenTox::Dataset.find result[:training_dataset_uri] + $sinatra.halt 400, "Training dataset not found: '"+result[:training_dataset_uri].to_s+"'" unless training_dataset + training_compounds_verify = training_dataset.compounds + $sinatra.halt 500, "training compounds error" unless training_compounds_verify==training_compounds + $sinatra.halt 400, "Test dataset not found: '"+result[:test_dataset_uri].to_s+"'" unless OpenTox::Dataset.find result[:test_dataset_uri] + end + + LOGGER.debug "bootstrapping done, training dataset: '"+result[:training_dataset_uri].to_s+"', test dataset: '"+result[:test_dataset_uri].to_s+"'" + + return result + end + # splits a dataset into test and training dataset # returns map with training_dataset_uri and test_dataset_uri def self.train_test_dataset_split( orig_dataset_uri, prediction_feature, split_ratio=nil, random_seed=nil ) diff --git a/validation/validation_test.rb b/validation/validation_test.rb index d96c012..9b5a11f 100644 --- a/validation/validation_test.rb +++ b/validation/validation_test.rb @@ -11,6 +11,21 @@ LOGGER = MyLogger.new(STDOUT) LOGGER.datetime_format = "%Y-%m-%d %H:%M:%S " LOGGER.formatter = Logger::Formatter.new +#Rack::Test::DEFAULT_HOST = "localhost" #"/validation" +module Sinatra + module UrlForHelper + BASE = "http://localhost/validation" + def url_for url_fragment, mode=:path_only + case mode + when :path_only + raise "not impl" + when :full + end + "#{BASE}#{url_fragment}" + end + end +end + class ValidationTest < Test::Unit::TestCase include Rack::Test::Methods @@ -37,17 +52,19 @@ class ValidationTest < Test::Unit::TestCase # #:classification=>"true"} # puts last_response.body - #delete "/7" + #get "/" + #puts last_response.body #get "/crossvalidation/4/statistics" # post "",:model_uri=>"http://localhost/model/1",:test_dataset_uri=>"http://localhost/dataset/3", # :test_target_dataset_uri=>"http://localhost/dataset/1" - # get "/1",nil,'HTTP_ACCEPT' => "application/rdf+xml" - # puts last_response.body +# get "/crossvalidation/2",nil,'HTTP_ACCEPT' => "application/rdf+xml" +# puts last_response.body + #get "/crossvalidation?model_uri=lazar" # post "/test_validation",:select=>"6d" #,:report=>"yes,please" -# puts last_response.body + #puts last_response.body # post "/validate_datasets",{ # :test_dataset_uri=>"http://localhost/dataset/204", @@ -59,7 +76,9 @@ class ValidationTest < Test::Unit::TestCase # #:classification=>"true"} # puts last_response.body - #run_test("1a") #, "http://localhost/validation/crossvalidation/5" )# //localhost/validation/42")#, "http://localhost/validation/report/validation/8") #,"http://localhost/validation/report/validation/36") #, "http://localhost/validation/321") + #run_test("12b"); #,"http://localhost/validation/crossvalidation/2"); + + #run_test("11b", "http://localhost/validation/crossvalidation/2" )# //localhost/validation/42")#, "http://localhost/validation/report/validation/8") #,"http://localhost/validation/report/validation/36") #, "http://localhost/validation/321") # run_test("7a","http://localhost/validation/40") #,"http://localhost/validation/crossvalidation/10") #, "http://localhost/validation/321") @@ -68,7 +87,7 @@ class ValidationTest < Test::Unit::TestCase #puts Nightly.build_nightly("1") #prepare_examples - #do_test_examples # USES CURL, DO NOT FORGET TO RESTART VALIDATION SERVICE + do_test_examples # USES CURL, DO NOT FORGET TO RESTART VALIDATION SERVICE end def app -- cgit v1.2.3 From 9fac92f0165d7e0a13b5680c92c5c26521beec65 Mon Sep 17 00:00:00 2001 From: mguetlein Date: Tue, 7 Sep 2010 09:59:28 +0200 Subject: change cv-rep-no in examples to 2 --- example.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example.rb b/example.rb index ceb1329..9b75e94 100644 --- a/example.rb +++ b/example.rb @@ -39,7 +39,7 @@ class Example "algorithm_params" => @@alg_params, "crossvalidation_id" => "1", "validation_report_id" => "1", - "crossvalidation_report_id" => "1", + "crossvalidation_report_id" => "2", "css_file" => @@css_file, "prediction_dataset_uri" => @@prediction_data, "predicted_feature" => @@predicted_feature } -- cgit v1.2.3 From fd1258afd54660cffe4c45472f9c856c68d30e61 Mon Sep 17 00:00:00 2001 From: mguetlein Date: Tue, 7 Sep 2010 10:23:16 +0200 Subject: fix examples --- application.rb | 7 ++++--- example.rb | 15 +++++++++++---- validation/validation_test.rb | 11 ++++++++--- 3 files changed, 23 insertions(+), 10 deletions(-) diff --git a/application.rb b/application.rb index b70d023..5e875c1 100644 --- a/application.rb +++ b/application.rb @@ -23,10 +23,11 @@ get '/prepare_examples/?' do Example.prepare_example_resources end -get '/test_examples/?' do - LOGGER.info "test examples" +post '/test_examples/?' do + examples = params[:examples] + LOGGER.info "test examples "+examples.to_s content_type "text/plain" - Example.test_examples + Example.test_examples(examples) end require "test/test_application.rb" diff --git a/example.rb b/example.rb index 9b75e94..274b4ba 100644 --- a/example.rb +++ b/example.rb @@ -100,8 +100,15 @@ class Example end # performs all curl calls listed in examples after ">>>", next line is added if line ends with "\" - def self.test_examples - lines = transform_example.split("\n") + def self.test_examples(example_uri=nil) + + if (example_uri) + examples = OpenTox::RestClientWrapper.get(example_uri) + else + examples = transform_example # use local examples + end + + lines = examples.split("\n") curl_call = false curl_calls = [] @@ -136,7 +143,7 @@ class Example result = "" IO.popen(cmd.to_s+" 2> /dev/null") do |f| while line = f.gets - result += line + result += line if result.size<50 end end result.gsub!(/\n/, " \\n ") @@ -151,7 +158,7 @@ class Example log "failed ( " +result.to_s[0,50]+" )" end end - log num.to_s+"/"+num.to_s+" curls succeeded" + log suc.to_s+"/"+num.to_s+" curls succeeded" @@summary end "testing in background, check log for results" diff --git a/validation/validation_test.rb b/validation/validation_test.rb index 9b5a11f..1265bdc 100644 --- a/validation/validation_test.rb +++ b/validation/validation_test.rb @@ -86,8 +86,9 @@ class ValidationTest < Test::Unit::TestCase #puts Nightly.build_nightly("1") - #prepare_examples - do_test_examples # USES CURL, DO NOT FORGET TO RESTART VALIDATION SERVICE + #prepare_examples + #do_test_examples # USES CURL, DO NOT FORGET TO RESTART VALIDATION SERVICE + do_test_examples_ortona end def app @@ -122,7 +123,11 @@ class ValidationTest < Test::Unit::TestCase end def do_test_examples # USES CURL, DO NOT FORGET TO RESTART - get '/test_examples' + post '/test_examples' + end + + def do_test_examples_ortona + post '/test_examples',:examples=>"http://ortona.informatik.uni-freiburg.de/validation/examples" end end -- cgit v1.2.3 From a53f82b606537154a0b77749cf779d9b27c5271f Mon Sep 17 00:00:00 2001 From: mguetlein Date: Tue, 7 Sep 2010 10:43:55 +0200 Subject: log posted report size --- reach_reports/reach_application.rb | 1 + reach_reports/reach_service.rb | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/reach_reports/reach_application.rb b/reach_reports/reach_application.rb index 807800c..74a1006 100644 --- a/reach_reports/reach_application.rb +++ b/reach_reports/reach_application.rb @@ -67,6 +67,7 @@ post '/reach_report/:type/:id' do input = request.env["rack.input"].read halt 400, "no xml data specified" unless input && input.to_s.size>0 + LOGGER.debug "size of posted data: "+input.to_s.size.to_s ReachReports::QmrfReport.from_xml(rep,input) diff --git a/reach_reports/reach_service.rb b/reach_reports/reach_service.rb index a742c49..3505031 100644 --- a/reach_reports/reach_service.rb +++ b/reach_reports/reach_service.rb @@ -15,9 +15,9 @@ module ReachReports def self.list_reports(type) case type when /(?i)QMRF/ - ReachReports::QmrfReport.all.collect{ |r| r.report_uri }.join("\n") + ReachReports::QmrfReport.all.collect{ |r| r.report_uri }.join("\n")+"\n" when /(?i)QPRF/ - ReachReports::QprfReport.all.collect{ |r| r.report_uri }.join("\n") + ReachReports::QprfReport.all.collect{ |r| r.report_uri }.join("\n")+"\n" end end -- cgit v1.2.3 From a3b0b9fbd81303e212bf063b9bf14f5f82941c36 Mon Sep 17 00:00:00 2001 From: mguetlein Date: Tue, 7 Sep 2010 11:32:06 +0200 Subject: fix minor qmrf error --- reach_reports/reach_service.rb | 6 +++--- validation/validation_application.rb | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/reach_reports/reach_service.rb b/reach_reports/reach_service.rb index 3505031..634f2b4 100644 --- a/reach_reports/reach_service.rb +++ b/reach_reports/reach_service.rb @@ -150,10 +150,10 @@ module ReachReports r.qsar_robustness.lmo = lmo.to_html # "lmo" => "6.9", "yscrambling" => "6.10", "bootstrap" => "6.11", "other_statistics" => "6.12", + LOGGER.debug "looking for validations with "+{:model_uri => model.uri}.inspect vals = Lib::Validation.find(:all, :conditions => {:model_uri => model.uri}) + r.qsar_predictivity = QsarPredictivity.new if vals and vals.size > 0 - - r.qsar_predictivity = QsarPredictivity.new r.qsar_predictivity.validation_set_availability = "Yes" r.qsar_predictivity.validation_set_data = ValidationSetData.new(:chemname => "Yes", :cas => "Yes", :smiles => "Yes", :inchi => "Yes", :mol => "Yes", :formula => "Yes") @@ -180,7 +180,7 @@ module ReachReports v << "" end else - v = [ "no validation of model '"+model.uri+" found" ] + v = [ "no validation for model '"+model.uri+"' found" ] end r.qsar_predictivity.validation_predictivity = v.to_html diff --git a/validation/validation_application.rb b/validation/validation_application.rb index a79de22..96387fe 100644 --- a/validation/validation_application.rb +++ b/validation/validation_application.rb @@ -11,7 +11,7 @@ require 'validation/validation_service.rb' get '/crossvalidation/?' do LOGGER.info "list all crossvalidations" content_type "text/uri-list" - Validation::Crossvalidation.find_like(params).collect{ |d| url_for("/crossvalidation/", :full) + d.id.to_s }.join("\n") + Validation::Crossvalidation.find_like(params).collect{ |d| url_for("/crossvalidation/", :full) + d.id.to_s }.join("\n")+"\n" end post '/crossvalidation/loo/?' do @@ -135,7 +135,7 @@ end get '/?' do LOGGER.info "list all validations, params: "+params.inspect content_type "text/uri-list" - Validation::Validation.find_like(params).collect{ |d| url_for("/", :full) + d.id.to_s }.join("\n") + Validation::Validation.find_like(params).collect{ |d| url_for("/", :full) + d.id.to_s }.join("\n")+"\n" end get '/:id' do -- cgit v1.2.3 From 5fd717dec9735895310f99c218f3dcac05a2e179 Mon Sep 17 00:00:00 2001 From: mguetlein Date: Tue, 7 Sep 2010 12:05:49 +0200 Subject: check for unique cvs in qmrf report generation --- reach_reports/reach_service.rb | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/reach_reports/reach_service.rb b/reach_reports/reach_service.rb index 634f2b4..42bb185 100644 --- a/reach_reports/reach_service.rb +++ b/reach_reports/reach_service.rb @@ -121,13 +121,25 @@ module ReachReports if model.algorithm cvs = Lib::Crossvalidation.find(:all, :conditions => {:algorithm_uri => model.algorithm}) cvs = [] unless cvs + uniq_cvs = [] + cvs.each do |cv| + match = false + uniq_cvs.each do |cv2| + if cv2.dataset_uri == cv.dataset_uri and cv.num_folds == cv2.num_folds and cv.stratified == cv2.stratified and cv.random_seed == cv2.random_seed + match = true + break + end + end + uniq_cvs << cv unless match + end + lmo = [ "found "+cvs.size.to_s+" crossvalidation/s for algorithm '"+model.algorithm ] lmo << "" - cvs.each do |cv| + uniq_cvs.each do |cv| lmo << "crossvalidation: "+cv.crossvalidation_uri lmo << "dataset (see 9.3 Validation data): "+cv.dataset_uri val_datasets << cv.dataset_uri - lmo << "num-folds: "+cv.num_folds.to_s + lmo << "settings: num-folds="+cv.num_folds.to_s+", random-seed="+cv.random_seed.to_s+", stratified:"+cv.stratified.to_s val = YAML.load( OpenTox::RestClientWrapper.get File.join(cv.crossvalidation_uri,"statistics") ) if classification lmo << "percent_correct: "+val[:classification_statistics][:percent_correct].to_s -- cgit v1.2.3 From 941da14e7e4444cdb8e81d7a144bbe0c069f20a7 Mon Sep 17 00:00:00 2001 From: mguetlein Date: Tue, 7 Sep 2010 12:34:09 +0200 Subject: added cv cleanup function --- reach_reports/reach_service.rb | 20 ++++++++++++++++---- validation/validation_application.rb | 16 ++++++++++++++++ 2 files changed, 32 insertions(+), 4 deletions(-) diff --git a/reach_reports/reach_service.rb b/reach_reports/reach_service.rb index 42bb185..98617a8 100644 --- a/reach_reports/reach_service.rb +++ b/reach_reports/reach_service.rb @@ -125,7 +125,7 @@ module ReachReports cvs.each do |cv| match = false uniq_cvs.each do |cv2| - if cv2.dataset_uri == cv.dataset_uri and cv.num_folds == cv2.num_folds and cv.stratified == cv2.stratified and cv.random_seed == cv2.random_seed + if cv.dataset_uri == cv2.dataset_uri and cv.num_folds == cv2.num_folds and cv.stratified == cv2.stratified and cv.random_seed == cv2.random_seed match = true break end @@ -164,15 +164,27 @@ module ReachReports LOGGER.debug "looking for validations with "+{:model_uri => model.uri}.inspect vals = Lib::Validation.find(:all, :conditions => {:model_uri => model.uri}) + uniq_vals = [] + vals.each do |val| + match = false + uniq_vals.each do |val2| + if val.test_dataset_uri == val2.test_dataset_uri + match = true + break + end + end + uniq_vals << val unless match + end + r.qsar_predictivity = QsarPredictivity.new - if vals and vals.size > 0 + if uniq_vals.size > 0 r.qsar_predictivity.validation_set_availability = "Yes" r.qsar_predictivity.validation_set_data = ValidationSetData.new(:chemname => "Yes", :cas => "Yes", :smiles => "Yes", :inchi => "Yes", :mol => "Yes", :formula => "Yes") - v = [ "found '"+vals.size.to_s+"' test-set validations of model '"+model.uri+"'" ] + v = [ "found '"+uniq_vals.size.to_s+"' test-set validations of model '"+model.uri+"'" ] v << "" - vals.each do |validation| + uniq_vals.each do |validation| v << "validation: "+validation.validation_uri v << "dataset (see 9.3 Validation data): "+validation.test_dataset_uri val_datasets << validation.test_dataset_uri diff --git a/validation/validation_application.rb b/validation/validation_application.rb index 96387fe..ff6cc4c 100644 --- a/validation/validation_application.rb +++ b/validation/validation_application.rb @@ -14,6 +14,22 @@ get '/crossvalidation/?' do Validation::Crossvalidation.find_like(params).collect{ |d| url_for("/crossvalidation/", :full) + d.id.to_s }.join("\n")+"\n" end +post '/crossvalidation/cleanup/?' do + LOGGER.info "crossvalidation cleanup, starting..." + content_type "text/uri-list" + deleted = [] + Validation::Crossvalidation.find_like(params).each do |cv| + num_vals = Validation::Validation.find( :all, :conditions => { :crossvalidation_id => cv.id } ).size + if cv.num_folds != num_vals + LOGGER.debug "delete cv with id:"+cv.id.to_s+" num-folds should be "+cv.num_folds.to_s+", is "+num_vals.to_s + deleted << url_for("/crossvalidation/", :full) + cv.id.to_s + Validation::Crossvalidation.delete(cv.id) + end + end + LOGGER.info "crossvalidation cleanup, deleted "+deleted.size.to_s+" cvs" + deleted.join("\n")+"\n" +end + post '/crossvalidation/loo/?' do halt 500, "not yet implemented" end -- cgit v1.2.3 From c31ba22137a3139cdcd283bfc1712aa484cce897 Mon Sep 17 00:00:00 2001 From: mguetlein Date: Wed, 8 Sep 2010 14:19:21 +0200 Subject: adding only first report of each type to validation field in qmrf report --- reach_reports/reach_service.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reach_reports/reach_service.rb b/reach_reports/reach_service.rb index 98617a8..c0f789f 100644 --- a/reach_reports/reach_service.rb +++ b/reach_reports/reach_service.rb @@ -150,7 +150,7 @@ module ReachReports end reports = OpenTox::RestClientWrapper.get File.join(CONFIG[:services]["opentox-validation"],"report/crossvalidation?crossvalidation_uris="+cv.crossvalidation_uri) if reports and reports.size>0 - lmo << "for more info see report: "+reports + lmo << "for more info see report: "+reports.split("\n")[0] else lmo << "for more info see report: not yet created for '"+cv.crossvalidation_uri+"'" end @@ -197,7 +197,7 @@ module ReachReports end reports = OpenTox::RestClientWrapper.get File.join(CONFIG[:services]["opentox-validation"],"report/validation?validation_uris="+validation.validation_uri) if reports and reports.size>0 - v << "for more info see report: "+reports + v << "for more info see report: "+reports.split("\n")[0] else v << "for more info see report: not yet created for '"+validation.validation_uri+"'" end -- cgit v1.2.3 From 543490dc2bc883412ed25d03a33d94b52786873d Mon Sep 17 00:00:00 2001 From: mguetlein Date: Fri, 10 Sep 2010 10:39:44 +0200 Subject: params for task and qmrf jnlp --- nightly/nightly.rb | 2 +- reach_reports/reach_application.rb | 91 +++++++++++++++++++++++++++++++++++- report/report_application.rb | 2 +- test/test_application.rb | 2 +- validation/validation_application.rb | 10 ++-- 5 files changed, 98 insertions(+), 9 deletions(-) diff --git a/nightly/nightly.rb b/nightly/nightly.rb index e3cf1bc..dca85d2 100644 --- a/nightly/nightly.rb +++ b/nightly/nightly.rb @@ -21,7 +21,7 @@ class Nightly validationExamples = ValidationExamples.select(select) return "please \"select\" validation examples:\n"+ValidationExamples.list if validationExamples.size==0 - task_uri = OpenTox::Task.as_task("Build nightly", "nightly-validation-test-service") do + task_uri = OpenTox::Task.as_task("Build nightly", "nightly-validation-test-service", {:select => select, :dry_run => dry_run}) do LOGGER.info("Building nightly report") benchmarks = validationExamples.collect{ |e| ValidationBenchmark.new(e) } diff --git a/reach_reports/reach_application.rb b/reach_reports/reach_application.rb index 74a1006..87bfcbe 100644 --- a/reach_reports/reach_application.rb +++ b/reach_reports/reach_application.rb @@ -35,7 +35,7 @@ end get '/reach_report/:type/:id' do type = extract_type(params) - LOGGER.info "get "+type+" report with id "+params[:id].to_s+"' "+request.env['HTTP_ACCEPT'].to_s+"'" + LOGGER.info "get "+type+" report with id '"+params[:id].to_s+"' "+request.env['HTTP_ACCEPT'].to_s+"'" rep = ReachReports.get_report(type, params[:id]) case request.env['HTTP_ACCEPT'].to_s @@ -75,6 +75,8 @@ post '/reach_report/:type/:id' do #f.puts rep.to_xml end + + #get '/reach_report/:type/:id/:section' do # # type = extract_type(params) @@ -89,3 +91,90 @@ end # ReachReports.get_report(type, params[:id], params[:section], params[:subsection]).to_yaml #end +get '/reach_report/:type/:id/editor' do + + type = extract_type(params) + LOGGER.info "editor for "+type+" report with id '"+params[:id].to_s+"' "+params.inspect + + jnlp = < + + +QMRF Editor +www.opentox.org +(Q)SAR Model Reporting Format Editor +(Q)SAR Model Reporting Format Editor + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +-x http://opentox.informatik.uni-freiburg.de/validation/reach_report/QMRF/ +EOF + jnlp += params[:id].to_s + + jnlp += < +-d http://opentox.informatik.uni-freiburg.de/qmrfedit2/qmrf.dtd +-t http://opentox.informatik.uni-freiburg.de/qmrfedit2/verdana.ttf + + + + + + +EOF + + content_type "application/x-java-jnlp-file" + jnlp +end + diff --git a/report/report_application.rb b/report/report_application.rb index 48787d3..12775cc 100644 --- a/report/report_application.rb +++ b/report/report_application.rb @@ -98,7 +98,7 @@ delete '/report/:type/:id' do end post '/report/:type' do - task_uri = OpenTox::Task.as_task("Create report",url_for("/report/"+params[:type], :full)) do + task_uri = OpenTox::Task.as_task("Create report",url_for("/report/"+params[:type], :full), params) do perform do |rs| content_type "text/uri-list" rs.create_report(params[:type],params[:validation_uris]?params[:validation_uris].split(/\n|,/):nil) diff --git a/test/test_application.rb b/test/test_application.rb index 94022da..48cced7 100644 --- a/test/test_application.rb +++ b/test/test_application.rb @@ -2,7 +2,7 @@ post '/test_validation/?' do validationExamples = ValidationExamples.select(params[:select]) return "please \"select\" a single validation example:\n"+ValidationExamples.list if validationExamples.size!=1 or validationExamples[0].size!=1 - OpenTox::Task.as_task("Test validation",url_for("/test_validation",:full)) do + OpenTox::Task.as_task("Test validation",url_for("/test_validation",:full), params) do v = validationExamples[0][0] ex = v.new ex.upload_files diff --git a/validation/validation_application.rb b/validation/validation_application.rb index ff6cc4c..ecaab4f 100644 --- a/validation/validation_application.rb +++ b/validation/validation_application.rb @@ -117,7 +117,7 @@ end post '/crossvalidation/?' do content_type "text/uri-list" - task_uri = OpenTox::Task.as_task( "Perform crossvalidation", url_for("/crossvalidation", :full) ) do + task_uri = OpenTox::Task.as_task( "Perform crossvalidation", url_for("/crossvalidation", :full), params ) do LOGGER.info "creating crossvalidation "+params.inspect halt 400, "dataset_uri missing" unless params[:dataset_uri] halt 400, "algorithm_uri missing" unless params[:algorithm_uri] @@ -177,7 +177,7 @@ end post '/?' do content_type "text/uri-list" - task_uri = OpenTox::Task.as_task( "Perform validation", url_for("/", :full) ) do |task| + task_uri = OpenTox::Task.as_task( "Perform validation", url_for("/", :full), params ) do |task| LOGGER.info "creating validation "+params.inspect if params[:model_uri] and params[:test_dataset_uri] and !params[:training_dataset_uri] and !params[:algorithm_uri] v = Validation::Validation.new :model_uri => params[:model_uri], @@ -206,7 +206,7 @@ end post '/training_test_split' do content_type "text/uri-list" - task_uri = OpenTox::Task.as_task( "Perform training test split validation", url_for("/training_test_split", :full) ) do + task_uri = OpenTox::Task.as_task( "Perform training test split validation", url_for("/training_test_split", :full), params ) do LOGGER.info "creating training test split "+params.inspect halt 400, "dataset_uri missing" unless params[:dataset_uri] halt 400, "algorithm_uri missing" unless params[:algorithm_uri] @@ -228,7 +228,7 @@ end post '/bootstrapping' do content_type "text/uri-list" - task_uri = OpenTox::Task.as_task( "Perform bootstrapping validation", url_for("/bootstrapping", :full) ) do + task_uri = OpenTox::Task.as_task( "Perform bootstrapping validation", url_for("/bootstrapping", :full), params ) do LOGGER.info "performing bootstrapping validation "+params.inspect halt 400, "dataset_uri missing" unless params[:dataset_uri] halt 400, "algorithm_uri missing" unless params[:algorithm_uri] @@ -259,7 +259,7 @@ end post '/validate_datasets' do content_type "text/uri-list" - task_uri = OpenTox::Task.as_task( "Perform dataset validation", url_for("/validate_datasets", :full) ) do + task_uri = OpenTox::Task.as_task( "Perform dataset validation", url_for("/validate_datasets", :full), params ) do LOGGER.info "validating values "+params.inspect halt 400, "test_dataset_uri missing" unless params[:test_dataset_uri] halt 400, "prediction_datset_uri missing" unless params[:prediction_dataset_uri] -- cgit v1.2.3 From e0872937009571570d2292ce94f0760fd17c9aff Mon Sep 17 00:00:00 2001 From: mguetlein Date: Fri, 10 Sep 2010 10:44:53 +0200 Subject: fix on qmrf editor --- reach_reports/reach_application.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/reach_reports/reach_application.rb b/reach_reports/reach_application.rb index 87bfcbe..74d35d7 100644 --- a/reach_reports/reach_application.rb +++ b/reach_reports/reach_application.rb @@ -160,6 +160,7 @@ get '/reach_report/:type/:id/editor' do -x http://opentox.informatik.uni-freiburg.de/validation/reach_report/QMRF/ EOF + jnlp.chomp! jnlp += params[:id].to_s jnlp += < Date: Fri, 10 Sep 2010 11:58:54 +0200 Subject: create qmrf report as task --- reach_reports/reach_application.rb | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/reach_reports/reach_application.rb b/reach_reports/reach_application.rb index 74d35d7..8890ece 100644 --- a/reach_reports/reach_application.rb +++ b/reach_reports/reach_application.rb @@ -26,10 +26,16 @@ get '/reach_report/:type' do end post '/reach_report/:type' do - content_type "text/uri-list" + type = extract_type(params) - LOGGER.info "creating "+type+" report "+params.inspect - ReachReports.create_report(type,params,request.env["rack.input"]) + content_type "text/uri-list" + task_uri = OpenTox::Task.as_task( "Create "+type+" report", url_for("/reach_report/"+type, :full), params ) do + + LOGGER.info "creating "+type+" report "+params.inspect + ReachReports.create_report(type,params,request.env["rack.input"]) + end + halt 202,task_uri + end get '/reach_report/:type/:id' do -- cgit v1.2.3 From f7464e766afebd71397c0f7ad9252f77e13f6c3a Mon Sep 17 00:00:00 2001 From: mguetlein Date: Mon, 13 Sep 2010 08:31:12 +0200 Subject: added missing jar for jnlp --- reach_reports/reach_application.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/reach_reports/reach_application.rb b/reach_reports/reach_application.rb index 8890ece..6d60d21 100644 --- a/reach_reports/reach_application.rb +++ b/reach_reports/reach_application.rb @@ -141,6 +141,7 @@ get '/reach_report/:type/:id/editor' do + -- cgit v1.2.3 From 0acc756e0f2db27abeacf9e229a910df315d279d Mon Sep 17 00:00:00 2001 From: mguetlein Date: Mon, 13 Sep 2010 10:59:36 +0200 Subject: remove task when creatign report from xml --- reach_reports/reach_application.rb | 12 +++++++----- reach_reports/reach_persistance.rb | 1 + reach_reports/reach_service.rb | 20 +++++++++----------- 3 files changed, 17 insertions(+), 16 deletions(-) diff --git a/reach_reports/reach_application.rb b/reach_reports/reach_application.rb index 6d60d21..4afaf51 100644 --- a/reach_reports/reach_application.rb +++ b/reach_reports/reach_application.rb @@ -29,13 +29,15 @@ post '/reach_report/:type' do type = extract_type(params) content_type "text/uri-list" - task_uri = OpenTox::Task.as_task( "Create "+type+" report", url_for("/reach_report/"+type, :full), params ) do - LOGGER.info "creating "+type+" report "+params.inspect - ReachReports.create_report(type,params,request.env["rack.input"]) - end - halt 202,task_uri + LOGGER.info "creating "+type+" report "+params.inspect + result_uri = ReachReports.create_report(type,params,request.env["rack.input"]) + if OpenTox::Utils.task_uri?(result_uri) + halt 202,result_uri + else + result_uri + end end get '/reach_report/:type/:id' do diff --git a/reach_reports/reach_persistance.rb b/reach_reports/reach_persistance.rb index 6c80503..2cbcd71 100644 --- a/reach_reports/reach_persistance.rb +++ b/reach_reports/reach_persistance.rb @@ -1011,6 +1011,7 @@ module ReachReports def self.from_xml(report, xml_data) + raise "xml data size < 255, probably no qmrf report : '"+xml_data.to_s+"'" if xml_data.to_s.size<255 doc = Document.new xml_data root = doc.elements["QMRF"] diff --git a/reach_reports/reach_service.rb b/reach_reports/reach_service.rb index c0f789f..8c8618b 100644 --- a/reach_reports/reach_service.rb +++ b/reach_reports/reach_service.rb @@ -23,17 +23,19 @@ module ReachReports def self.create_report( type, params, xml_data=nil ) - #content_type "text/uri-list" - #task_uri = OpenTox::Task.as_task do |task| - + result_uri = "" case type when /(?i)QMRF/ if params[:model_uri] - report = ReachReports::QmrfReport.new :model_uri => params[:model_uri] - build_qmrf_report(report) + result_uri = OpenTox::Task.as_task( "Create "+type+" report", $sinatra.url_for("/reach_report/"+type, :full), params ) do + report = ReachReports::QmrfReport.new :model_uri => params[:model_uri] + build_qmrf_report(report) + report.report_uri + end elsif xml_data and (input = xml_data.read).to_s.size>0 report = ReachReports::QmrfReport.new ReachReports::QmrfReport.from_xml(report,input) + result_uri = report.report_uri else $sinatra.halt 400, "illegal parameters for qmrf-report creation, either\n"+ "* give 'model_uri' as param\n"+ @@ -43,18 +45,14 @@ module ReachReports when /(?i)QPRF/ $sinatra.halt 400,"qprf report creation not yet implemented" if params[:compound_uri] - report = ReachReports::QprfReport.new :compound_uri => params[:compound_uri] + #report = ReachReports::QprfReport.new :compound_uri => params[:compound_uri] else $sinatra.halt 400, "illegal parameters for qprf-report, use either\n"+ "* compound-uri\n"+ "params given: "+params.inspect end end - - report.report_uri - - #end - #halt 202,task_uri + result_uri end -- cgit v1.2.3 From 3cf7ecd7f1f4811e1b7f77ebc36cf280268b495c Mon Sep 17 00:00:00 2001 From: mguetlein Date: Mon, 13 Sep 2010 12:13:28 +0200 Subject: fix report dtd --- report/report_application.rb | 6 ++++++ report/xml_report.rb | 6 ++++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/report/report_application.rb b/report/report_application.rb index 12775cc..f76ff32 100644 --- a/report/report_application.rb +++ b/report/report_application.rb @@ -18,6 +18,12 @@ def perform end +get '/+'ENV['REPORT_DTD'] do + content_type "application/xml-dtd" + body(File.new(ENV['REPORT_DTD'])) +end + + get '/report/:type/css_style_sheet/?' do perform do |rs| "@import \""+params[:css_style_sheet]+"\";" diff --git a/report/xml_report.rb b/report/xml_report.rb index a621400..50c9007 100644 --- a/report/xml_report.rb +++ b/report/xml_report.rb @@ -2,8 +2,10 @@ require "report/xml_report_util.rb" ENV['REPORT_DTD'] = "docbook-xml-4.5/docbookx.dtd" unless ENV['REPORT_DTD'] + #transfer to absolute path -ENV['REPORT_DTD'] = File.expand_path(ENV['REPORT_DTD']) if File.exist?(ENV['REPORT_DTD']) +#ENV['REPORT_DTD'] = File.expand_path(ENV['REPORT_DTD']) if File.exist?(ENV['REPORT_DTD']) + # = XMLReport # @@ -21,7 +23,7 @@ module Reports @doc = Document.new decl = XMLDecl.new @doc << decl - type = DocType.new('article PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "'+ENV['REPORT_DTD']+'"') + type = DocType.new('article PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "'+$sinatra.url_for('/'+ENV['REPORT_DTD'], :full)+'"') @doc << type @root = Element.new("article") -- cgit v1.2.3 From ede7b60f62fb4385ce1358f49e92dd325ed251f6 Mon Sep 17 00:00:00 2001 From: mguetlein Date: Mon, 13 Sep 2010 12:17:03 +0200 Subject: fix report dtd - v2 --- report/report_application.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/report/report_application.rb b/report/report_application.rb index f76ff32..b8f7eed 100644 --- a/report/report_application.rb +++ b/report/report_application.rb @@ -18,7 +18,7 @@ def perform end -get '/+'ENV['REPORT_DTD'] do +get '/'+ENV['REPORT_DTD'] do content_type "application/xml-dtd" body(File.new(ENV['REPORT_DTD'])) end -- cgit v1.2.3 From eb5d72a15942b2367c2c1178a0a50d10261c5132 Mon Sep 17 00:00:00 2001 From: mguetlein Date: Mon, 13 Sep 2010 13:29:09 +0200 Subject: fix report dtd - v3 --- report/report_application.rb | 18 ++++++++++++++---- report/xml_report.rb | 5 +++-- 2 files changed, 17 insertions(+), 6 deletions(-) diff --git a/report/report_application.rb b/report/report_application.rb index b8f7eed..31f5ac6 100644 --- a/report/report_application.rb +++ b/report/report_application.rb @@ -17,12 +17,23 @@ def perform end end +def get_docbook_resource(filepath) + perform do |rs| + halt 404,"not found: "+filepath unless File.exist?(filepath) + types = MIME::Types.type_for(filepath) + content_type(types[0].content_type) if types and types.size>0 and types[0] + result = body(File.new(filepath)) + end +end -get '/'+ENV['REPORT_DTD'] do - content_type "application/xml-dtd" - body(File.new(ENV['REPORT_DTD'])) +get '/'+ENV['DOCBOOK_DIRECTORY']+'/:subdir/:resource' do + path_array = request.env['REQUEST_URI'].split("/") + get_docbook_resource ENV['DOCBOOK_DIRECTORY']+"/"+path_array[-2]+"/"+path_array[-1] end +get '/'+ENV['DOCBOOK_DIRECTORY']+'/:resource' do + get_docbook_resource ENV['DOCBOOK_DIRECTORY']+"/"+request.env['REQUEST_URI'].split("/")[-1] +end get '/report/:type/css_style_sheet/?' do perform do |rs| @@ -30,7 +41,6 @@ get '/report/:type/css_style_sheet/?' do end end - get '/report/?' do perform do |rs| content_type "text/uri-list" diff --git a/report/xml_report.rb b/report/xml_report.rb index 50c9007..110c2a9 100644 --- a/report/xml_report.rb +++ b/report/xml_report.rb @@ -1,7 +1,8 @@ require "report/xml_report_util.rb" -ENV['REPORT_DTD'] = "docbook-xml-4.5/docbookx.dtd" unless ENV['REPORT_DTD'] +ENV['DOCBOOK_DIRECTORY'] = "docbook-xml-4.5" unless ENV['DOCBOOK_DIRECTORY'] +ENV['REPORT_DTD'] = "docbookx.dtd" unless ENV['REPORT_DTD'] #transfer to absolute path #ENV['REPORT_DTD'] = File.expand_path(ENV['REPORT_DTD']) if File.exist?(ENV['REPORT_DTD']) @@ -23,7 +24,7 @@ module Reports @doc = Document.new decl = XMLDecl.new @doc << decl - type = DocType.new('article PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "'+$sinatra.url_for('/'+ENV['REPORT_DTD'], :full)+'"') + type = DocType.new('article PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "'+$sinatra.url_for('/'+ENV['DOCBOOK_DIRECTORY']+'/'+ENV['REPORT_DTD'], :full)+'"') @doc << type @root = Element.new("article") -- cgit v1.2.3 From 58dc8bc78f6b2d4d62ff5d2750259b6a0568fe67 Mon Sep 17 00:00:00 2001 From: mguetlein Date: Mon, 13 Sep 2010 15:25:28 +0200 Subject: default report format to html --- report/report_format.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/report/report_format.rb b/report/report_format.rb index e61d9be..29d67d7 100644 --- a/report/report_format.rb +++ b/report/report_format.rb @@ -14,6 +14,7 @@ module Reports::ReportFormat # returns report-format, according to header value def self.get_format(accept_header_value) + return "text/html" if accept_header_value =~ /\*\/\*/ begin content_type = MIMEParse::best_match(CONTENT_TYPES, accept_header_value) raise RuntimeException.new unless content_type -- cgit v1.2.3 From 11105ce48ce21750dd88a8cf48a37cefdacb87cf Mon Sep 17 00:00:00 2001 From: mguetlein Date: Tue, 14 Sep 2010 13:42:34 +0200 Subject: add cleanup for validations --- validation/validation_application.rb | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/validation/validation_application.rb b/validation/validation_application.rb index ecaab4f..2073844 100644 --- a/validation/validation_application.rb +++ b/validation/validation_application.rb @@ -204,6 +204,20 @@ post '/?' do halt 202,task_uri end + +post '/cleanup/?' do + LOGGER.info "validation cleanup, starting..." + content_type "text/uri-list" + deleted = [] + Validation::Validation.find( :all, :conditions => { :prediction_dataset_uri => nil } ).each do |val| + LOGGER.debug "delete val with id:"+val.id.to_s+" prediction_dataset_uri is nil" + deleted << url_for("/", :full) + val.id.to_s + Validation::Validation.delete(val.id) + end + LOGGER.info "validation cleanup, deleted "+deleted.size.to_s+" validations" + deleted.join("\n")+"\n" +end + post '/training_test_split' do content_type "text/uri-list" task_uri = OpenTox::Task.as_task( "Perform training test split validation", url_for("/training_test_split", :full), params ) do -- cgit v1.2.3 From 6beb0004d97f9620d1f5c4f5465c191171c31fb1 Mon Sep 17 00:00:00 2001 From: mguetlein Date: Tue, 14 Sep 2010 16:45:14 +0200 Subject: add hack to distinguish between lazar cvs (regr vs class) --- reach_reports/reach_service.rb | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/reach_reports/reach_service.rb b/reach_reports/reach_service.rb index 8c8618b..8c485d9 100644 --- a/reach_reports/reach_service.rb +++ b/reach_reports/reach_service.rb @@ -61,7 +61,7 @@ module ReachReports model = OpenTox::Model::PredictionModel.find(r.model_uri) classification = model.classification? - + # chapter 1 r.qsar_identifier = QsarIdentifier.new r.qsar_identifier.qsar_title = model.title @@ -121,14 +121,18 @@ module ReachReports cvs = [] unless cvs uniq_cvs = [] cvs.each do |cv| - match = false - uniq_cvs.each do |cv2| - if cv.dataset_uri == cv2.dataset_uri and cv.num_folds == cv2.num_folds and cv.stratified == cv2.stratified and cv.random_seed == cv2.random_seed - match = true - break + # PENDING: cv classification hack + val = Validation::Validation.first( :all, :conditions => { :crossvalidation_id => cv.id } ) + if (val.classification_statistics!=nil) == classification + match = false + uniq_cvs.each do |cv2| + if cv.dataset_uri == cv2.dataset_uri and cv.num_folds == cv2.num_folds and cv.stratified == cv2.stratified and cv.random_seed == cv2.random_seed + match = true + break + end end + uniq_cvs << cv unless match end - uniq_cvs << cv unless match end lmo = [ "found "+cvs.size.to_s+" crossvalidation/s for algorithm '"+model.algorithm ] -- cgit v1.2.3 From 0b00c0857bf1a0e335aba9453b700bbd8a51444f Mon Sep 17 00:00:00 2001 From: mguetlein Date: Tue, 14 Sep 2010 16:55:20 +0200 Subject: use full dataset instead of metadata --- reach_reports/reach_service.rb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/reach_reports/reach_service.rb b/reach_reports/reach_service.rb index 8c485d9..1cc1466 100644 --- a/reach_reports/reach_service.rb +++ b/reach_reports/reach_service.rb @@ -99,7 +99,8 @@ module ReachReports # chapter 5 # TODO app_domain_description, app_domain_method, app_domain_software, applicability_limits - training_dataset = model.trainingDataset ? OpenTox::Dataset.find(model.trainingDataset+"/metadata") : nil + #training_dataset = model.trainingDataset ? OpenTox::Dataset.find(model.trainingDataset+"/metadata") : nil + training_dataset = model.trainingDataset ? OpenTox::Dataset.find(model.trainingDataset) : nil # chapter 6 r.qsar_robustness = QsarRobustness.new @@ -229,7 +230,7 @@ module ReachReports :url => model.trainingDataset} ) if training_dataset val_datasets.each do |data_uri| - d = OpenTox::Dataset.find(data_uri+"/metadata") + d = OpenTox::Dataset.find(data_uri) #+"/metadata") r.qsar_miscellaneous.attachment_validation_data << AttachmentValidationData.new( { :description => d.title, :filetype => "owl-dl", -- cgit v1.2.3 From 75d9552615dc88d30496df3aa86bceb961711b36 Mon Sep 17 00:00:00 2001 From: mguetlein Date: Tue, 14 Sep 2010 17:12:16 +0200 Subject: check dataset not null --- reach_reports/reach_service.rb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/reach_reports/reach_service.rb b/reach_reports/reach_service.rb index 1cc1466..3d8b73e 100644 --- a/reach_reports/reach_service.rb +++ b/reach_reports/reach_service.rb @@ -234,12 +234,10 @@ module ReachReports r.qsar_miscellaneous.attachment_validation_data << AttachmentValidationData.new( { :description => d.title, :filetype => "owl-dl", - :url => data_uri} ) + :url => data_uri} ) if d end - r.save - end # def self.get_report_content(type, id, *keys) -- cgit v1.2.3 From 53b0702a8264a426d6622e2eb12fa9e527b9f497 Mon Sep 17 00:00:00 2001 From: mguetlein Date: Tue, 14 Sep 2010 18:25:28 +0200 Subject: find_secure hack for report creation --- reach_reports/reach_service.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reach_reports/reach_service.rb b/reach_reports/reach_service.rb index 3d8b73e..96f234f 100644 --- a/reach_reports/reach_service.rb +++ b/reach_reports/reach_service.rb @@ -230,7 +230,7 @@ module ReachReports :url => model.trainingDataset} ) if training_dataset val_datasets.each do |data_uri| - d = OpenTox::Dataset.find(data_uri) #+"/metadata") + d = OpenTox::Dataset.find_secure(data_uri) #+"/metadata") r.qsar_miscellaneous.attachment_validation_data << AttachmentValidationData.new( { :description => d.title, :filetype => "owl-dl", -- cgit v1.2.3 From 18e1ec84378d711b36b1a77b29baa9b5ef664faa Mon Sep 17 00:00:00 2001 From: mguetlein Date: Tue, 14 Sep 2010 20:29:58 +0200 Subject: tmp disable delete for rhodes --- report/report_application.rb | 1 + validation/validation_application.rb | 2 ++ 2 files changed, 3 insertions(+) diff --git a/report/report_application.rb b/report/report_application.rb index 31f5ac6..5c8c1c8 100644 --- a/report/report_application.rb +++ b/report/report_application.rb @@ -107,6 +107,7 @@ get '/report/:type/:id/:resource' do end delete '/report/:type/:id' do + halt 400,"delete temporarily disabled" perform do |rs| content_type "text/plain" rs.delete_report(params[:type],params[:id]) diff --git a/validation/validation_application.rb b/validation/validation_application.rb index 2073844..1fdf8a4 100644 --- a/validation/validation_application.rb +++ b/validation/validation_application.rb @@ -60,6 +60,7 @@ get '/crossvalidation/:id' do end delete '/crossvalidation/:id/?' do + halt 400,"delete temporarily disabled" LOGGER.info "delete crossvalidation with id "+params[:id].to_s content_type "text/plain" begin @@ -328,6 +329,7 @@ get '/:id/:attribute' do end delete '/:id' do + halt 400,"delete temporarily disabled" LOGGER.info "delete validation with id "+params[:id].to_s begin validation = Validation::Validation.find(params[:id]) -- cgit v1.2.3 From f72a88dcb8fd18778445b4e6678cdfdee7feda28 Mon Sep 17 00:00:00 2001 From: mguetlein Date: Wed, 6 Oct 2010 12:09:08 +0200 Subject: add text/html support, remove delete disabling, add new line to uri-list returns --- EXAMPLES | 4 +- application.rb | 12 +- reach_reports/reach_application.rb | 4 +- reach_reports/reach_test.rb | 5 +- report/report_application.rb | 79 ++++--- report/report_factory.rb | 3 +- report/report_format.rb | 1 - report/report_persistance.rb | 2 - report/report_service.rb | 4 +- report/report_test.rb | 2 +- validation/validation_application.rb | 407 ++++++++++++++++++++++++----------- validation/validation_test.rb | 12 +- 12 files changed, 349 insertions(+), 186 deletions(-) diff --git a/EXAMPLES b/EXAMPLES index 3653ed5..8af2316 100644 --- a/EXAMPLES +++ b/EXAMPLES @@ -40,7 +40,7 @@ validate model on test-dateset >>> curl -X POST -d model_uri="" \ -d test_dataset_uri="" \ -d test_target_dataset_uri="" \ - + /test_set_validation optional params: test_target_dataset_uri, default is test_dataset_uri @@ -61,7 +61,7 @@ validate an algorithm on a training- and test-dataset -d test_target_dataset_uri="" \ -d prediction_feature="" \ -d algorithm_params="" \ - + /training_test_validation optional params: algorithm_params, default is empty diff --git a/application.rb b/application.rb index 5e875c1..2cdbe32 100644 --- a/application.rb +++ b/application.rb @@ -1,5 +1,5 @@ require 'rubygems' -gem 'opentox-ruby-api-wrapper', '= 1.6.2' +gem 'opentox-ruby-api-wrapper', '= 1.6.2.1' [ 'sinatra', 'sinatra/url_for', 'opentox-ruby-api-wrapper' ].each do |lib| require lib end @@ -13,8 +13,14 @@ require "example.rb" get '/examples/?' do LOGGER.info "list examples" - content_type "text/plain" - Example.transform_example + + if request.env['HTTP_ACCEPT'] =~ /text\/html/ + content_type "text/html" + OpenTox.text_to_html Example.transform_example + else + content_type "text/plain" + Example.transform_example + end end get '/prepare_examples/?' do diff --git a/reach_reports/reach_application.rb b/reach_reports/reach_application.rb index 4afaf51..e63c2a4 100644 --- a/reach_reports/reach_application.rb +++ b/reach_reports/reach_application.rb @@ -34,9 +34,9 @@ post '/reach_report/:type' do result_uri = ReachReports.create_report(type,params,request.env["rack.input"]) if OpenTox::Utils.task_uri?(result_uri) - halt 202,result_uri + halt 202,result_uri+"\n" else - result_uri + result_uri+"\n" end end diff --git a/reach_reports/reach_test.rb b/reach_reports/reach_test.rb index 2f07302..44f37ff 100644 --- a/reach_reports/reach_test.rb +++ b/reach_reports/reach_test.rb @@ -114,13 +114,16 @@ class ReachTest < Test::Unit::TestCase # post "/reach_report/qmrf/8" # puts last_response.body + #model_uri = "http://ambit.uni-plovdiv.bg:8080/ambit2/model/173393" model_uri = "http://localhost/model/1" #model_uri = "http://localhost/majority/regr/model/12" - #model_uri = "http://localhost/majority/class/model/1" + # model_uri = "http://localhost/majority/class/model/91" #model_uri = "http://apps.ideaconsult.net:8080/ambit2/model/2" post '/reach_report/qmrf',:model_uri=>model_uri #http://localhost/model/1" ##post '/reach_report/qprf',:compound_uri=>"http://localhost/compound/XYZ" uri = last_response.body + puts "task: "+uri.to_s + uri = Lib::TestUtil.wait_for_task(uri) id = uri.split("/")[-1] puts uri diff --git a/report/report_application.rb b/report/report_application.rb index 5c8c1c8..95913cd 100644 --- a/report/report_application.rb +++ b/report/report_application.rb @@ -43,15 +43,38 @@ end get '/report/?' do perform do |rs| - content_type "text/uri-list" - rs.get_report_types + case request.env['HTTP_ACCEPT'].to_s + when /text\/html/ + related_links = + "All validations: "+$sinatra.url_for("/",:full) + description = + "A list of all report types." + content_type "text/html" + OpenTox.text_to_html rs.get_report_types,related_links,description + else + content_type "text/uri-list" + rs.get_report_types + end end end get '/report/:report_type' do perform do |rs| - content_type "text/uri-list" - rs.get_all_reports(params[:report_type], params) + case request.env['HTTP_ACCEPT'].to_s + when /text\/html/ + related_links = + "Available report types: "+$sinatra.url_for("/report",:full)+"\n"+ + "Single validations: "+$sinatra.url_for("/",:full)+"\n"+ + "Crossvalidations: "+$sinatra.url_for("/crossvalidation",:full) + description = + "A list of all "+params[:report_type]+" reports. To create a report, use the POST method." + post_params = [[:validation_uris]] + content_type "text/html" + OpenTox.text_to_html rs.get_all_reports(params[:report_type], params),related_links,description,post_params + else + content_type "text/uri-list" + rs.get_all_reports(params[:report_type], params) + end end end @@ -60,7 +83,7 @@ post '/report/:type/:id/format_html' do perform do |rs| rs.get_report(params[:type],params[:id],"text/html",true,params) content_type "text/uri-list" - rs.get_uri(params[:type],params[:id]) + rs.get_uri(params[:type],params[:id])+"\n" end end @@ -70,27 +93,14 @@ get '/report/:type/:id' do perform do |rs| accept_header = request.env['HTTP_ACCEPT'] - if accept_header =~ /MSIE/ - LOGGER.info "Changing MSIE accept-header to text/html" - accept_header = "text/html" - end - #request.env['HTTP_ACCEPT'] = "application/pdf" - - #QMRF-STUB - if params[:type] == Reports::ReportFactory::RT_QMRF - #raise Reports::BadRequest.new("only 'application/qmrf-xml' provided so far") if accept_header != "application/qmrf-xml" - content_type "application/qmrf-xml" - result = body(OpenTox::RestClientWrapper.get("http://ecb.jrc.ec.europa.eu/qsar/qsar-tools/qrf/QMRF_v1.2_FishTox.xml")) + report = rs.get_report(params[:type],params[:id],accept_header) + format = Reports::ReportFormat.get_format(accept_header) + content_type format + #PENDING: get_report should return file or string, check for result.is_file instead of format + if format=="application/x-yaml" or format=="application/rdf+xml" + report else - report = rs.get_report(params[:type],params[:id],accept_header) - format = Reports::ReportFormat.get_format(accept_header) - content_type format - #PENDING: get_report should return file or string, check for result.is_file instead of format - if format=="application/x-yaml" or format=="application/rdf+xml" - report - else - result = body(File.new(report)) - end + result = body(File.new(report)) end end end @@ -107,7 +117,6 @@ get '/report/:type/:id/:resource' do end delete '/report/:type/:id' do - halt 400,"delete temporarily disabled" perform do |rs| content_type "text/plain" rs.delete_report(params[:type],params[:id]) @@ -117,23 +126,9 @@ end post '/report/:type' do task_uri = OpenTox::Task.as_task("Create report",url_for("/report/"+params[:type], :full), params) do perform do |rs| - content_type "text/uri-list" rs.create_report(params[:type],params[:validation_uris]?params[:validation_uris].split(/\n|,/):nil) end end - halt 202,task_uri -end - - -post '/report/:type/:id' do - perform do |rs| - #QMRF-STUB - if params[:type] == Reports::ReportFactory::RT_QMRF - #raise Reports::BadRequest.new("only 'application/qmrf-xml' provided so far") if request.content_type != "application/qmrf-xml" - input = request.env["rack.input"].read - "save qmrf would have been successfull, received data with "+input.to_s.size.to_s+" characters, this is just a stub, changes discarded" - else - "operation not supported yet" - end - end + content_type "text/uri-list" + halt 202,task_uri+"\n" end diff --git a/report/report_factory.rb b/report/report_factory.rb index 38d144b..7e63e32 100644 --- a/report/report_factory.rb +++ b/report/report_factory.rb @@ -20,9 +20,8 @@ module Reports::ReportFactory RT_VALIDATION = "validation" RT_CV = "crossvalidation" RT_ALG_COMP = "algorithm_comparison" - RT_QMRF = "qmrf" - REPORT_TYPES = [RT_VALIDATION, RT_CV, RT_ALG_COMP, RT_QMRF ] + REPORT_TYPES = [RT_VALIDATION, RT_CV, RT_ALG_COMP ] # creates a report of a certain type according to the validation data in validation_set # diff --git a/report/report_format.rb b/report/report_format.rb index 29d67d7..e61d9be 100644 --- a/report/report_format.rb +++ b/report/report_format.rb @@ -14,7 +14,6 @@ module Reports::ReportFormat # returns report-format, according to header value def self.get_format(accept_header_value) - return "text/html" if accept_header_value =~ /\*\/\*/ begin content_type = MIMEParse::best_match(CONTENT_TYPES, accept_header_value) raise RuntimeException.new unless content_type diff --git a/report/report_persistance.rb b/report/report_persistance.rb index acb29c6..424d5ca 100644 --- a/report/report_persistance.rb +++ b/report/report_persistance.rb @@ -222,8 +222,6 @@ module Reports end def list_reports(type, filter_params={}) - #QMRF-STUB - return "1" if type == ReportFactory::RT_QMRF filter_params["report_type"]=type unless filter_params.has_key?("report_type") ReportData.find_like(filter_params).collect{ |r| r.id } end diff --git a/report/report_service.rb b/report/report_service.rb index 9aaa2e0..2187493 100644 --- a/report/report_service.rb +++ b/report/report_service.rb @@ -20,7 +20,7 @@ module Reports def get_report_types LOGGER.info "list all report types" - Reports::ReportFactory::REPORT_TYPES.collect{ |t| get_uri(t) }.join("\n") + Reports::ReportFactory::REPORT_TYPES.collect{ |t| get_uri(t) }.join("\n")+"\n" end # lists all stored reports of a certain type, returns a list of uris @@ -32,7 +32,7 @@ module Reports LOGGER.info "get all reports of type '"+type.to_s+"', filter_params: '"+filter_params.inspect+"'" check_report_type(type) - @persistance.list_reports(type, filter_params).collect{ |id| get_uri(type,id) }.join("\n") + @persistance.list_reports(type, filter_params).collect{ |id| get_uri(type,id) }.join("\n")+"\n" end # creates a report of a certain type, __validation_uris__ must contain be a list of validation or cross-validation-uris diff --git a/report/report_test.rb b/report/report_test.rb index 0256702..9ea1a89 100644 --- a/report/report_test.rb +++ b/report/report_test.rb @@ -23,7 +23,7 @@ class Reports::ApplicationTest < Test::Unit::TestCase # puts OpenTox::RestClientWrapper.post("http://localhost/validation/report/qmrf/1",{:content_type => "application/qmrf-xml"},data).to_s.chomp #get "/report/qmrf/1",nil,'HTTP_ACCEPT' => "application/qmrf-xml"#"application/rdf+xml"#"application/x-yaml" - get "/report/validation?model=http://localhost/model/1" #,nil,'HTTP_ACCEPT' => "application/rdf+xml"#"application/x-yaml" + get "/report/validation" # ?model=http://localhost/model/1" #,nil,'HTTP_ACCEPT' => "application/rdf+xml"#"application/x-yaml" puts last_response.body.to_s #Reports::XMLReport.generate_demo_xml_report.write_to diff --git a/validation/validation_application.rb b/validation/validation_application.rb index 1fdf8a4..983f3bd 100644 --- a/validation/validation_application.rb +++ b/validation/validation_application.rb @@ -10,8 +10,42 @@ require 'validation/validation_service.rb' get '/crossvalidation/?' do LOGGER.info "list all crossvalidations" + uri_list = Validation::Crossvalidation.find_like(params).collect{ |d| url_for("/crossvalidation/", :full) + d.id.to_s }.join("\n")+"\n" + if request.env['HTTP_ACCEPT'] =~ /text\/html/ + related_links = + "Single validations: "+$sinatra.url_for("/",:full)+"\n"+ + "Crossvalidation reports: "+$sinatra.url_for("/report/crossvalidation",:full) + description = + "A list of all crossvalidations.\n"+ + "Use the POST method to perform a crossvalidation." + post_params = [[:dataset_uri,:algorithm_uri,:prediction_feature,[:num_folds,10],[:random_seed,1],[:stratified,false],[:algorithm_params,""]]] + content_type "text/html" + OpenTox.text_to_html uri_list,related_links,description,post_params + else + content_type "text/uri-list" + uri_list + end +end + +post '/crossvalidation/?' do content_type "text/uri-list" - Validation::Crossvalidation.find_like(params).collect{ |d| url_for("/crossvalidation/", :full) + d.id.to_s }.join("\n")+"\n" + task_uri = OpenTox::Task.as_task( "Perform crossvalidation", url_for("/crossvalidation", :full), params ) do + LOGGER.info "creating crossvalidation "+params.inspect + halt 400, "dataset_uri missing" unless params[:dataset_uri] + halt 400, "algorithm_uri missing" unless params[:algorithm_uri] + halt 400, "prediction_feature missing" unless params[:prediction_feature] + halt 400, "illegal param-value num_folds: '"+params[:num_folds].to_s+"', must be integer >1" unless params[:num_folds]==nil or + params[:num_folds].to_i>1 + + cv_params = { :dataset_uri => params[:dataset_uri], + :algorithm_uri => params[:algorithm_uri] } + [ :num_folds, :random_seed, :stratified ].each{ |sym| cv_params[sym] = params[sym] if params[sym] } + cv = Validation::Crossvalidation.new cv_params + cv.create_cv_datasets( params[:prediction_feature] ) + cv.perform_cv( params[:algorithm_params]) + cv.crossvalidation_uri + end + halt 202,task_uri+"\n" end post '/crossvalidation/cleanup/?' do @@ -49,18 +83,57 @@ get '/crossvalidation/:id' do case request.env['HTTP_ACCEPT'].to_s when "application/rdf+xml" content_type "application/rdf+xml" - result = crossvalidation.to_rdf - when /application\/x-yaml|\*\/\*|/ # matches 'text/x-yaml', '*/*', '' + crossvalidation.to_rdf + when /application\/x-yaml/ content_type "application/x-yaml" - result = crossvalidation.to_yaml + crossvalidation.to_yaml + when /text\/html/ + related_links = + "Search for corresponding cv report: "+$sinatra.url_for("/report/crossvalidation?crossvalidation="+crossvalidation.crossvalidation_uri,:full)+"\n"+ + "Statistics for this crossvalidation: "+$sinatra.url_for("/crossvalidation/"+params[:id]+"/statistics",:full)+"\n"+ + "All crossvalidations: "+$sinatra.url_for("/crossvalidation",:full)+"\n"+ + "All crossvalidation reports: "+$sinatra.url_for("/report/crossvalidation",:full) + description = + "A crossvalidation resource." + content_type "text/html" + OpenTox.text_to_html crossvalidation.to_yaml,related_links,description else - halt 400, "MIME type '"+request.env['HTTP_ACCEPT'].to_s+"' not supported." + halt 400, "MIME type '"+request.env['HTTP_ACCEPT'].to_s+"' not supported, valid Accept-Headers: \"application/rdf+xml\", \"application/x-yaml\", \"text/html\"." + end +end + +get '/crossvalidation/:id/statistics' do + LOGGER.info "get merged validation-result for crossvalidation with id "+params[:id].to_s + begin + crossvalidation = Validation::Crossvalidation.find(params[:id]) + rescue ActiveRecord::RecordNotFound => ex + halt 404, "Crossvalidation '#{params[:id]}' not found." + end + + Lib::MergeObjects.register_merge_attributes( Validation::Validation, + Lib::VAL_MERGE_AVG,Lib::VAL_MERGE_SUM,Lib::VAL_MERGE_GENERAL-[:validation_uri]) unless + Lib::MergeObjects.merge_attributes_registered?(Validation::Validation) + + v = Lib::MergeObjects.merge_array_objects( Validation::Validation.find( :all, :conditions => { :crossvalidation_id => params[:id] } ) ) + v.validation_uri = nil + v.date = nil + v.id = nil + + case request.env['HTTP_ACCEPT'].to_s + when /text\/html/ + related_links = + "The corresponding crossvalidation resource: "+$sinatra.url_for("/crossvalidation/"+params[:id],:full) + description = + "The averaged statistics for the crossvalidation." + content_type "text/html" + OpenTox.text_to_html v.to_yaml,related_links,description + else + content_type "application/x-yaml" + v.to_yaml end - result end delete '/crossvalidation/:id/?' do - halt 400,"delete temporarily disabled" LOGGER.info "delete crossvalidation with id "+params[:id].to_s content_type "text/plain" begin @@ -82,27 +155,6 @@ get '/crossvalidation/:id/validations' do Validation::Validation.find( :all, :conditions => { :crossvalidation_id => params[:id] } ).collect{ |v| v.validation_uri.to_s }.join("\n")+"\n" end - -get '/crossvalidation/:id/statistics' do - LOGGER.info "get merged validation-result for crossvalidation with id "+params[:id].to_s - begin - crossvalidation = Validation::Crossvalidation.find(params[:id]) - rescue ActiveRecord::RecordNotFound => ex - halt 404, "Crossvalidation '#{params[:id]}' not found." - end - - Lib::MergeObjects.register_merge_attributes( Validation::Validation, - Lib::VAL_MERGE_AVG,Lib::VAL_MERGE_SUM,Lib::VAL_MERGE_GENERAL-[:validation_uri]) unless - Lib::MergeObjects.merge_attributes_registered?(Validation::Validation) - - v = Lib::MergeObjects.merge_array_objects( Validation::Validation.find( :all, :conditions => { :crossvalidation_id => params[:id] } ) ) - v.validation_uri = nil - v.date = nil - v.id = nil - content_type "application/x-yaml" - v.to_yaml -end - get '/crossvalidation/:id/predictions' do LOGGER.info "get predictions for crossvalidation with id "+params[:id].to_s begin @@ -115,154 +167,222 @@ get '/crossvalidation/:id/predictions' do Lib::OTPredictions.to_array( validations.collect{ |v| v.compute_validation_stats_with_model(nil, true) } ).to_yaml end - -post '/crossvalidation/?' do - content_type "text/uri-list" - task_uri = OpenTox::Task.as_task( "Perform crossvalidation", url_for("/crossvalidation", :full), params ) do - LOGGER.info "creating crossvalidation "+params.inspect - halt 400, "dataset_uri missing" unless params[:dataset_uri] - halt 400, "algorithm_uri missing" unless params[:algorithm_uri] - halt 400, "prediction_feature missing" unless params[:prediction_feature] - halt 400, "illegal param-value num_folds: '"+params[:num_folds].to_s+"', must be integer >1" unless params[:num_folds]==nil or - params[:num_folds].to_i>1 - - cv_params = { :dataset_uri => params[:dataset_uri], - :algorithm_uri => params[:algorithm_uri] } - [ :num_folds, :random_seed, :stratified ].each{ |sym| cv_params[sym] = params[sym] if params[sym] } - cv = Validation::Crossvalidation.new cv_params - cv.create_cv_datasets( params[:prediction_feature] ) - cv.perform_cv( params[:algorithm_params]) +get '/?' do + LOGGER.info "list all validations, params: "+params.inspect + uri_list = Validation::Validation.find_like(params).collect{ |d| url_for("/", :full) + d.id.to_s }.join("\n")+"\n" + if request.env['HTTP_ACCEPT'] =~ /text\/html/ + related_links = + "To perform a validation:\n"+ + "* "+$sinatra.url_for("/test_set_validation",:full)+"\n"+ + "* "+$sinatra.url_for("/training_test_validation",:full)+"\n"+ + "* "+$sinatra.url_for("/bootstrapping",:full)+"\n"+ + "* "+$sinatra.url_for("/training_test_split",:full)+"\n"+ + "* "+$sinatra.url_for("/crossvalidation",:full)+"\n"+ + "Validation reports: "+$sinatra.url_for("/report/validation",:full)+"\n"+ + "Examples for using this service: "+$sinatra.url_for("/examples",:full)+"\n" + description = + "A validation web service for the OpenTox project ( http://opentox.org ).\n"+ + "In the root directory (this is where you are now), a list of all validation resources is returned." + content_type "text/html" + OpenTox.text_to_html uri_list,related_links,description + else content_type "text/uri-list" - cv.crossvalidation_uri + uri_list end - halt 202,task_uri end - -get '/training_test_split' do - halt 400, "GET operation not supported, use POST to perform a training_test_split, see "+url_for("/", :full)+" for validation results" -end - - -get '/bootstrapping' do - halt 400, "GET operation not supported, use POST to perform a bootstrapping, see "+url_for("/", :full)+" for validation results" +post '/?' do + halt 400, "Post not supported, to perfom a validation use '/test_set_validation', '/training_test_validation', 'bootstrapping', 'training_test_split'" end - -get '/?' do - LOGGER.info "list all validations, params: "+params.inspect +post '/test_set_validation' do content_type "text/uri-list" - Validation::Validation.find_like(params).collect{ |d| url_for("/", :full) + d.id.to_s }.join("\n")+"\n" -end - -get '/:id' do - LOGGER.info "get validation with id "+params[:id].to_s+" '"+request.env['HTTP_ACCEPT'].to_s+"'" - begin - validation = Validation::Validation.find(params[:id]) - rescue ActiveRecord::RecordNotFound => ex - halt 404, "Validation '#{params[:id]}' not found." + LOGGER.info "creating test-set-validation "+params.inspect + if params[:model_uri] and params[:test_dataset_uri] and !params[:training_dataset_uri] and !params[:algorithm_uri] + task_uri = OpenTox::Task.as_task( "Perform test-set-validation", url_for("/", :full), params ) do |task| + v = Validation::Validation.new :model_uri => params[:model_uri], + :test_dataset_uri => params[:test_dataset_uri], + :test_target_dataset_uri => params[:test_target_dataset_uri], + :prediction_feature => params[:prediction_feature] + v.validate_model + v.validation_uri + end + halt 202,task_uri+"\n" + else + halt 400, "illegal parameters, pls specify model_uri and test_dataset_uri\n"+ + "params given: "+params.inspect end +end - case request.env['HTTP_ACCEPT'].to_s - when "application/rdf+xml" - content_type "application/rdf+xml" - result = validation.to_rdf - when /application\/x-yaml|\*\/\*|^$/ # matches 'application/x-yaml', '*/*', '' - content_type "application/x-yaml" - result = validation.to_yaml +get '/test_set_validation' do + LOGGER.info "list all test-set-validations, params: "+params.inspect + uri_list = "NOT YET IMPLEMENTED" + if request.env['HTTP_ACCEPT'] =~ /text\/html/ + related_links = + "All validations: "+$sinatra.url_for("/",:full)+"\n"+ + "Validation reports: "+$sinatra.url_for("/report/validation",:full) + description = + "A list of all test-set-validations.\n"+ + "To perform a test-set-validation use the POST method." + post_params = [[:model_uri, :test_dataset_uri, [:test_target_dataset_uri,"same-as-test_dataset_uri"], [:prediction_feature, "dependent-variable-of-model"]]] + content_type "text/html" + OpenTox.text_to_html uri_list,related_links,description,post_params else - halt 400, "MIME type '"+request.env['HTTP_ACCEPT'].to_s+"' not supported, valid Accept-Headers are \"application/rdf+xml\" and \"application/x-yaml\"." + content_type "text/uri-list" + uri_list end - result end -post '/?' do +post '/training_test_validation/?' do content_type "text/uri-list" - task_uri = OpenTox::Task.as_task( "Perform validation", url_for("/", :full), params ) do |task| - LOGGER.info "creating validation "+params.inspect - if params[:model_uri] and params[:test_dataset_uri] and !params[:training_dataset_uri] and !params[:algorithm_uri] - v = Validation::Validation.new :model_uri => params[:model_uri], - :test_dataset_uri => params[:test_dataset_uri], - :test_target_dataset_uri => params[:test_target_dataset_uri], - :prediction_feature => params[:prediction_feature] - v.validate_model - elsif params[:algorithm_uri] and params[:training_dataset_uri] and params[:test_dataset_uri] and params[:prediction_feature] and !params[:model_uri] - v = Validation::Validation.new :algorithm_uri => params[:algorithm_uri], + LOGGER.info "creating training-test-validation "+params.inspect + if params[:algorithm_uri] and params[:training_dataset_uri] and params[:test_dataset_uri] and params[:prediction_feature] and !params[:model_uri] + task_uri = OpenTox::Task.as_task( "Perform training-test-validation", url_for("/", :full), params ) do |task| + v = Validation::Validation.new :algorithm_uri => params[:algorithm_uri], :training_dataset_uri => params[:training_dataset_uri], :test_dataset_uri => params[:test_dataset_uri], :test_target_dataset_uri => params[:test_target_dataset_uri], :prediction_feature => params[:prediction_feature] - v.validate_algorithm( params[:algorithm_params]) - else - halt 400, "illegal parameter combination for validation, use either\n"+ - "* model_uri, test_dataset_uri\n"+ - "* algorithm_uri, training_dataset_uri, test_dataset_uri, prediction_feature\n"+ - "params given: "+params.inspect + v.validate_algorithm( params[:algorithm_params]) + v.validation_uri end - content_type "text/uri-list" - v.validation_uri + halt 202,task_uri+"\n" + else + halt 400, "illegal parameters, pls specify algorithm_uri, training_dataset_uri, test_dataset_uri, prediction_feature\n"+ + "params given: "+params.inspect end - halt 202,task_uri end - -post '/cleanup/?' do - LOGGER.info "validation cleanup, starting..." - content_type "text/uri-list" - deleted = [] - Validation::Validation.find( :all, :conditions => { :prediction_dataset_uri => nil } ).each do |val| - LOGGER.debug "delete val with id:"+val.id.to_s+" prediction_dataset_uri is nil" - deleted << url_for("/", :full) + val.id.to_s - Validation::Validation.delete(val.id) +get '/training_test_validation' do + LOGGER.info "list all training-test-validations, params: "+params.inspect + uri_list = "NOT YET IMPLEMENTED" + if request.env['HTTP_ACCEPT'] =~ /text\/html/ + related_links = + "All validations: "+$sinatra.url_for("/",:full)+"\n"+ + "Validation reports: "+$sinatra.url_for("/report/validation",:full) + description = + "A list of all training-test-validations.\n"+ + "To perform a training-test-validation use the POST method." + post_params = [[:algorithm_uri, + :training_dataset_uri, + :test_dataset_uri, + [:test_target_dataset_uri,"same-as-test_dataset_uri"], + :prediction_feature, + [:algorithm_params, ""]]] + content_type "text/html" + OpenTox.text_to_html uri_list,related_links,description,post_params + else + content_type "text/uri-list" + uri_list end - LOGGER.info "validation cleanup, deleted "+deleted.size.to_s+" validations" - deleted.join("\n")+"\n" end -post '/training_test_split' do +post '/bootstrapping' do content_type "text/uri-list" - task_uri = OpenTox::Task.as_task( "Perform training test split validation", url_for("/training_test_split", :full), params ) do - LOGGER.info "creating training test split "+params.inspect + task_uri = OpenTox::Task.as_task( "Perform bootstrapping validation", url_for("/bootstrapping", :full), params ) do + LOGGER.info "performing bootstrapping validation "+params.inspect halt 400, "dataset_uri missing" unless params[:dataset_uri] halt 400, "algorithm_uri missing" unless params[:algorithm_uri] halt 400, "prediction_feature missing" unless params[:prediction_feature] - params.merge!(Validation::Util.train_test_dataset_split(params[:dataset_uri], params[:prediction_feature], params[:split_ratio], params[:random_seed])) + params.merge!(Validation::Util.bootstrapping(params[:dataset_uri], params[:prediction_feature], params[:random_seed])) v = Validation::Validation.new :training_dataset_uri => params[:training_dataset_uri], :test_dataset_uri => params[:test_dataset_uri], :test_target_dataset_uri => params[:dataset_uri], :prediction_feature => params[:prediction_feature], :algorithm_uri => params[:algorithm_uri] v.validate_algorithm( params[:algorithm_params]) - content_type "text/uri-list" v.validation_uri end - halt 202,task_uri + halt 202,task_uri+"\n" end +get '/bootstrapping' do + LOGGER.info "list all bootstrapping-validations, params: "+params.inspect + uri_list = "NOT YET IMPLEMENTED" + if request.env['HTTP_ACCEPT'] =~ /text\/html/ + related_links = + "All validations: "+$sinatra.url_for("/",:full)+"\n"+ + "Validation reports: "+$sinatra.url_for("/report/validation",:full) + description = + "A list of all bootstrapping-validations.\n"+ + "To perform a bootstrapping-validation use the POST method." + post_params = [[:algorithm_uri, + :dataset_uri, + :prediction_feature, + [:algorithm_params, ""], + [:random_seed, 1]]] + content_type "text/html" + OpenTox.text_to_html uri_list,related_links,description,post_params + else + content_type "text/uri-list" + uri_list + end +end -post '/bootstrapping' do +post '/training_test_split' do content_type "text/uri-list" - task_uri = OpenTox::Task.as_task( "Perform bootstrapping validation", url_for("/bootstrapping", :full), params ) do - LOGGER.info "performing bootstrapping validation "+params.inspect + task_uri = OpenTox::Task.as_task( "Perform training test split validation", url_for("/training_test_split", :full), params ) do + LOGGER.info "creating training test split "+params.inspect halt 400, "dataset_uri missing" unless params[:dataset_uri] halt 400, "algorithm_uri missing" unless params[:algorithm_uri] halt 400, "prediction_feature missing" unless params[:prediction_feature] - params.merge!(Validation::Util.bootstrapping(params[:dataset_uri], params[:prediction_feature], params[:random_seed])) + params.merge!(Validation::Util.train_test_dataset_split(params[:dataset_uri], params[:prediction_feature], params[:split_ratio], params[:random_seed])) v = Validation::Validation.new :training_dataset_uri => params[:training_dataset_uri], :test_dataset_uri => params[:test_dataset_uri], :test_target_dataset_uri => params[:dataset_uri], :prediction_feature => params[:prediction_feature], :algorithm_uri => params[:algorithm_uri] v.validate_algorithm( params[:algorithm_params]) - content_type "text/uri-list" v.validation_uri end - halt 202,task_uri + halt 202,task_uri+"\n" +end + +get '/training_test_split' do + LOGGER.info "list all training-test-split-validations, params: "+params.inspect + uri_list = "NOT YET IMPLEMENTED" + if request.env['HTTP_ACCEPT'] =~ /text\/html/ + related_links = + "All validations: "+$sinatra.url_for("/",:full)+"\n"+ + "Validation reports: "+$sinatra.url_for("/report/validation",:full) + description = + "A list of all training-test-split-validations.\n"+ + "To perform a training-test-split-validation use the POST method." + post_params = [[:algorithm_uri, + :dataset_uri, + :prediction_feature, + [:algorithm_params, ""], + [:random_seed, 1], + [:split_ratio, 0.66]]] + content_type "text/html" + OpenTox.text_to_html uri_list,related_links,description,post_params + else + content_type "text/uri-list" + uri_list + end +end + +post '/cleanup/?' do + LOGGER.info "validation cleanup, starting..." + content_type "text/uri-list" + deleted = [] + Validation::Validation.find( :all, :conditions => { :prediction_dataset_uri => nil } ).each do |val| + LOGGER.debug "delete val with id:"+val.id.to_s+" prediction_dataset_uri is nil" + deleted << url_for("/", :full) + val.id.to_s + Validation::Validation.delete(val.id) + end + LOGGER.info "validation cleanup, deleted "+deleted.size.to_s+" validations" + deleted.join("\n")+"\n" end + + + + + post '/plain_training_test_split' do LOGGER.info "creating pure training test split "+params.inspect halt 400, "dataset_uri missing" unless params[:dataset_uri] @@ -294,10 +414,9 @@ post '/validate_datasets' do v = Validation::Validation.new params v.compute_validation_stats((clazz and !regr),predicted_feature) end - content_type "text/uri-list" v.validation_uri end - halt 202,task_uri + halt 202,task_uri+"\n" end get '/:id/predictions' do @@ -307,9 +426,20 @@ get '/:id/predictions' do rescue ActiveRecord::RecordNotFound => ex halt 404, "Validation '#{params[:id]}' not found." end - content_type "text/x-yaml" p = validation.compute_validation_stats_with_model(nil, true) - p.to_array.to_yaml + case request.env['HTTP_ACCEPT'].to_s + when /text\/html/ + content_type "text/html" + description = + "The validation predictions as (yaml-)array." + related_links = + "All validations: "+$sinatra.url_for("/",:full)+"\n"+ + "Correspoding validation: "+$sinatra.url_for("/"+params[:id],:full) + OpenTox.text_to_html p.to_array.to_yaml, related_links, description + else + content_type "text/x-yaml" + p.to_array.to_yaml + end end get '/:id/:attribute' do @@ -328,8 +458,37 @@ get '/:id/:attribute' do return validation.send(params[:attribute]) end +get '/:id' do + LOGGER.info "get validation with id "+params[:id].to_s+" '"+request.env['HTTP_ACCEPT'].to_s+"'" + begin + validation = Validation::Validation.find(params[:id]) + rescue ActiveRecord::RecordNotFound => ex + halt 404, "Validation '#{params[:id]}' not found." + end + + case request.env['HTTP_ACCEPT'].to_s + when "application/rdf+xml" + content_type "application/rdf+xml" + validation.to_rdf + when /application\/x-yaml/ + content_type "application/x-yaml" + validation.to_yaml + when /text\/html/ + content_type "text/html" + description = + "A validation resource." + related_links = + "Search for corresponding report: "+$sinatra.url_for("/report/validation?validation="+validation.validation_uri,:full)+"\n"+ + "Get validation predictions: "+$sinatra.url_for("/"+params[:id]+"/predictions",:full)+"\n"+ + "All validations: "+$sinatra.url_for("/",:full)+"\n"+ + "All validation reports: "+$sinatra.url_for("/report/validation",:full) + OpenTox.text_to_html validation.to_yaml,related_links,description + else + halt 400, "MIME type '"+request.env['HTTP_ACCEPT'].to_s+"' not supported, valid Accept-Headers: \"application/rdf+xml\", \"application/x-yaml\", \"text/html\"." + end +end + delete '/:id' do - halt 400,"delete temporarily disabled" LOGGER.info "delete validation with id "+params[:id].to_s begin validation = Validation::Validation.find(params[:id]) diff --git a/validation/validation_test.rb b/validation/validation_test.rb index 1265bdc..5e068a3 100644 --- a/validation/validation_test.rb +++ b/validation/validation_test.rb @@ -34,6 +34,10 @@ class ValidationTest < Test::Unit::TestCase def test_it $test_case = self + #get "/report/crossvalidation/15",nil,'HTTP_ACCEPT' => "text/html" +# get "/",nil,'HTTP_ACCEPT' => "text/html" +# puts last_response.body + # d = OpenTox::Dataset.find("http://ot-dev.in-silico.ch/dataset/307") # puts d.compounds.inspect # exit @@ -52,7 +56,7 @@ class ValidationTest < Test::Unit::TestCase # #:classification=>"true"} # puts last_response.body - #get "/" + #post "/crossvalidation/cleanup" #puts last_response.body #get "/crossvalidation/4/statistics" @@ -76,7 +80,7 @@ class ValidationTest < Test::Unit::TestCase # #:classification=>"true"} # puts last_response.body - #run_test("12b"); #,"http://localhost/validation/crossvalidation/2"); + #run_test("1b")#,"http://localhost/validation/394"); #run_test("11b", "http://localhost/validation/crossvalidation/2" )# //localhost/validation/42")#, "http://localhost/validation/report/validation/8") #,"http://localhost/validation/report/validation/36") #, "http://localhost/validation/321") @@ -87,8 +91,8 @@ class ValidationTest < Test::Unit::TestCase #puts Nightly.build_nightly("1") #prepare_examples - #do_test_examples # USES CURL, DO NOT FORGET TO RESTART VALIDATION SERVICE - do_test_examples_ortona + do_test_examples # USES CURL, DO NOT FORGET TO RESTART VALIDATION SERVICE + #do_test_examples_ortona end def app -- cgit v1.2.3 From 8c1f54612806bf09d9a97ac0c97c0c1ab57aefb0 Mon Sep 17 00:00:00 2001 From: mguetlein Date: Thu, 7 Oct 2010 13:55:18 +0200 Subject: catch not existing datasets in qmrf report creation --- reach_reports/reach_service.rb | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/reach_reports/reach_service.rb b/reach_reports/reach_service.rb index 96f234f..ef75621 100644 --- a/reach_reports/reach_service.rb +++ b/reach_reports/reach_service.rb @@ -100,7 +100,11 @@ module ReachReports # TODO app_domain_description, app_domain_method, app_domain_software, applicability_limits #training_dataset = model.trainingDataset ? OpenTox::Dataset.find(model.trainingDataset+"/metadata") : nil - training_dataset = model.trainingDataset ? OpenTox::Dataset.find(model.trainingDataset) : nil + begin + training_dataset = model.trainingDataset ? OpenTox::Dataset.find(model.trainingDataset) : nil + rescue + LOGGER.warn "training_dataset not found "+model.trainingDataset.to_s + end # chapter 6 r.qsar_robustness = QsarRobustness.new @@ -230,11 +234,15 @@ module ReachReports :url => model.trainingDataset} ) if training_dataset val_datasets.each do |data_uri| - d = OpenTox::Dataset.find_secure(data_uri) #+"/metadata") - r.qsar_miscellaneous.attachment_validation_data << AttachmentValidationData.new( - { :description => d.title, - :filetype => "owl-dl", - :url => data_uri} ) if d + begin + d = OpenTox::Dataset.find(data_uri) #+"/metadata") + r.qsar_miscellaneous.attachment_validation_data << AttachmentValidationData.new( + { :description => d.title, + :filetype => "owl-dl", + :url => data_uri} ) if d + rescue + LOGGER.warn "could not add dataset: "+data_uri.to_s + end end r.save -- cgit v1.2.3 From a6d79dffc5f65300f06f3a33451ef26d0fb96f08 Mon Sep 17 00:00:00 2001 From: mguetlein Date: Mon, 11 Oct 2010 14:38:13 +0200 Subject: example fix, format-reports as task, report-format-simplified, validation resource with */* --- example.rb | 1 + report/external/mimeparse.rb | 220 ----------------------------------- report/report_application.rb | 12 +- report/report_format.rb | 25 ++-- validation/validation_application.rb | 79 ++++++++----- 5 files changed, 73 insertions(+), 264 deletions(-) delete mode 100644 report/external/mimeparse.rb diff --git a/example.rb b/example.rb index 274b4ba..eb997c2 100644 --- a/example.rb +++ b/example.rb @@ -146,6 +146,7 @@ class Example result += line if result.size<50 end end + result.chomp! result.gsub!(/\n/, " \\n ") if ($?==0) if OpenTox::Utils.task_uri?(result) diff --git a/report/external/mimeparse.rb b/report/external/mimeparse.rb deleted file mode 100644 index 553c431..0000000 --- a/report/external/mimeparse.rb +++ /dev/null @@ -1,220 +0,0 @@ -# mimeparse.rb -# -# This module provides basic functions for handling mime-types. It can -# handle matching mime-types against a list of media-ranges. See section -# 14.1 of the HTTP specification [RFC 2616] for a complete explanation. -# -# http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.1 -# -# --------- -# -# This is a port of Joe Gregario's mimeparse.py, which can be found at -# . -# -# ported from version 0.1.2 -# -# Comments are mostly excerpted from the original. - -module MIMEParse - module_function - -# Carves up a mime-type and returns an Array of the -# [type, subtype, params] where "params" is a Hash of all -# the parameters for the media range. -# -# For example, the media range "application/xhtml;q=0.5" would -# get parsed into: -# -# ["application", "xhtml", { "q" => "0.5" }] -def parse_mime_type(mime_type) - parts = mime_type.split(";") - - params = {} - - parts[1..-1].map do |param| - k,v = param.split("=").map { |s| s.strip } - params[k] = v - end - - full_type = parts[0].strip - # Java URLConnection class sends an Accept header that includes a single "*" - # Turn it into a legal wildcard. - full_type = "*/*" if full_type == "*" - type, subtype = full_type.split("/") - raise "malformed mime type" unless subtype - - [type.strip, subtype.strip, params] -end - -# Carves up a media range and returns an Array of the -# [type, subtype, params] where "params" is a Hash of all -# the parameters for the media range. -# -# For example, the media range "application/*;q=0.5" would -# get parsed into: -# -# ["application", "*", { "q", "0.5" }] -# -# In addition this function also guarantees that there -# is a value for "q" in the params dictionary, filling it -# in with a proper default if necessary. -def parse_media_range(range) - type, subtype, params = parse_mime_type(range) - unless params.has_key?("q") and params["q"] and params["q"].to_f and params["q"].to_f <= 1 and params["q"].to_f >= 0 - params["q"] = "1" - end - - [type, subtype, params] -end - -# Find the best match for a given mime-type against a list of -# media_ranges that have already been parsed by #parse_media_range -# -# Returns the fitness and the "q" quality parameter of the best match, -# or [-1, 0] if no match was found. Just as for #quality_parsed, -# "parsed_ranges" must be an Enumerable of parsed media ranges. -def fitness_and_quality_parsed(mime_type, parsed_ranges) - best_fitness = -1 - best_fit_q = 0 - target_type, target_subtype, target_params = parse_media_range(mime_type) - - parsed_ranges.each do |type,subtype,params| - if (type == target_type or type == "*" or target_type == "*") and - (subtype == target_subtype or subtype == "*" or target_subtype == "*") - param_matches = target_params.find_all { |k,v| k != "q" and params.has_key?(k) and v == params[k] }.length - - fitness = (type == target_type) ? 100 : 0 - fitness += (subtype == target_subtype) ? 10 : 0 - fitness += param_matches - - if fitness > best_fitness - best_fitness = fitness - best_fit_q = params["q"] - end - end - end - - [best_fitness, best_fit_q.to_f] -end - -# Find the best match for a given mime-type against a list of -# media_ranges that have already been parsed by #parse_media_range -# -# Returns the "q" quality parameter of the best match, 0 if no match -# was found. This function behaves the same as #quality except that -# "parsed_ranges" must be an Enumerable of parsed media ranges. -def quality_parsed(mime_type, parsed_ranges) - fitness_and_quality_parsed(mime_type, parsed_ranges)[1] -end - -# Returns the quality "q" of a mime_type when compared against -# the media-ranges in ranges. For example: -# -# irb> quality("text/html", "text/*;q=0.3, text/html;q=0.7, text/html;level=1, text/html;level=2;q=0.4, */*;q=0.5") -# => 0.7 -def quality(mime_type, ranges) - parsed_ranges = ranges.split(",").map { |r| parse_media_range(r) } - quality_parsed(mime_type, parsed_ranges) -end - -# Takes a list of supported mime-types and finds the best match -# for all the media-ranges listed in header. The value of header -# must be a string that conforms to the format of the HTTP Accept: -# header. The value of supported is an Enumerable of mime-types -# -# irb> best_match(["application/xbel+xml", "text/xml"], "text/*;q=0.5,*/*; q=0.1") -# => "text/xml" -def best_match(supported, header) - parsed_header = header.split(",").map { |r| parse_media_range(r) } - - weighted_matches = supported.map do |mime_type| - [fitness_and_quality_parsed(mime_type, parsed_header), mime_type] - end - - weighted_matches.sort! - - weighted_matches.last[0][1].zero? ? nil : weighted_matches.last[1] -end -end - -if __FILE__ == $0 - require "test/unit" - - class TestMimeParsing < Test::Unit::TestCase - include MIMEParse - - def test_parse_media_range - assert_equal [ "application", "xml", { "q" => "1" } ], - parse_media_range("application/xml;q=1") - - assert_equal [ "application", "xml", { "q" => "1" } ], - parse_media_range("application/xml") - - assert_equal [ "application", "xml", { "q" => "1" } ], - parse_media_range("application/xml;q=") - - assert_equal [ "application", "xml", { "q" => "1", "b" => "other" } ], - parse_media_range("application/xml ; q=1;b=other") - - assert_equal [ "application", "xml", { "q" => "1", "b" => "other" } ], - parse_media_range("application/xml ; q=2;b=other") - - # Java URLConnection class sends an Accept header that includes a single "*" - assert_equal [ "*", "*", { "q" => ".2" } ], - parse_media_range(" *; q=.2") - end - - def test_rfc_2616_example - accept = "text/*;q=0.3, text/html;q=0.7, text/html;level=1, text/html;level=2;q=0.4, */*;q=0.5" - - assert_equal 1, quality("text/html;level=1", accept) - assert_equal 0.7, quality("text/html", accept) - assert_equal 0.3, quality("text/plain", accept) - assert_equal 0.5, quality("image/jpeg", accept) - assert_equal 0.4, quality("text/html;level=2", accept) - assert_equal 0.7, quality("text/html;level=3", accept) - end - - def test_best_match - @supported_mime_types = [ "application/xbel+xml", "application/xml" ] - - # direct match - assert_best_match "application/xbel+xml", "application/xbel+xml" - # direct match with a q parameter - assert_best_match "application/xbel+xml", "application/xbel+xml; q=1" - # direct match of our second choice with a q parameter - assert_best_match "application/xml", "application/xml; q=1" - # match using a subtype wildcard - assert_best_match "application/xml", "application/*; q=1" - # match using a type wildcard - assert_best_match "application/xml", "*/*" - - @supported_mime_types = [ "application/xbel+xml", "text/xml" ] - # match using a type versus a lower weighted subtype - assert_best_match "text/xml", "text/*;q=0.5,*/*;q=0.1" - # fail to match anything - assert_best_match nil, "text/html,application/atom+xml; q=0.9" - # common AJAX scenario - @supported_mime_types = [ "application/json", "text/html" ] - assert_best_match "application/json", "application/json, text/javascript, */*" - # verify fitness sorting - assert_best_match "application/json", "application/json, text/html;q=0.9" - end - - def test_support_wildcards - @supported_mime_types = ['image/*', 'application/xml'] - # match using a type wildcard - assert_best_match 'image/*', 'image/png' - # match using a wildcard for both requested and supported - assert_best_match 'image/*', 'image/*' - end - - def assert_best_match(expected, header) - assert_equal(expected, best_match(@supported_mime_types, header)) - end - end -end - - -#puts MIMEParse::best_match(["text/xml","text/html","application/pdf"], -# 'application/x-ms-application,image/jpeg, application/xaml+xml, image/gif, image/pjpeg, application/x-ms-xbap, */*') diff --git a/report/report_application.rb b/report/report_application.rb index 95913cd..baa91a0 100644 --- a/report/report_application.rb +++ b/report/report_application.rb @@ -80,11 +80,15 @@ end post '/report/:type/:id/format_html' do - perform do |rs| - rs.get_report(params[:type],params[:id],"text/html",true,params) - content_type "text/uri-list" - rs.get_uri(params[:type],params[:id])+"\n" + task_uri = OpenTox::Task.as_task("Format report",url_for("/report/"+params[:type]+"/format_html", :full), params) do + perform do |rs| + rs.get_report(params[:type],params[:id],"text/html",true,params) + content_type "text/uri-list" + rs.get_uri(params[:type],params[:id])+"\n" + end end + content_type "text/uri-list" + halt 202,task_uri+"\n" end diff --git a/report/report_format.rb b/report/report_format.rb index e61d9be..aafa204 100644 --- a/report/report_format.rb +++ b/report/report_format.rb @@ -10,17 +10,26 @@ ENV['SAXON_JAR'] = "saxonhe9-2-0-3j/saxon9he.jar" unless ENV['SAXON_JAR'] # module Reports::ReportFormat - CONTENT_TYPES = ["application/x-yaml","text/html","application/rdf+xml", "text/xml","application/pdf"] - # returns report-format, according to header value def self.get_format(accept_header_value) - begin - content_type = MIMEParse::best_match(CONTENT_TYPES, accept_header_value) - raise RuntimeException.new unless content_type - rescue - raise Reports::BadRequest.new("Accept header '"+accept_header_value.to_s+"' not supported, supported types are "+CONTENT_TYPES.join(", ")) + + case accept_header_value + when /text\/html/ + "text/html" + when /application\/rdf\+xml/ + "application/rdf+xml" + when /text\/xml/ + "text/xml" + when /application\/x-yaml|\*\/\*/ + "application/x-yaml" + else + raise Reports::BadRequest.new("Accept header '"+accept_header_value.to_s+ + "' not supported, supported types are "+ + "text/html"+", "+ + "application/rdf+xml"+", "+ + "text/xml"+", "+ + "application/x-yaml") end - return content_type end def self.get_filename_extension(format) diff --git a/validation/validation_application.rb b/validation/validation_application.rb index 983f3bd..cf6fc78 100644 --- a/validation/validation_application.rb +++ b/validation/validation_application.rb @@ -84,19 +84,20 @@ get '/crossvalidation/:id' do when "application/rdf+xml" content_type "application/rdf+xml" crossvalidation.to_rdf - when /application\/x-yaml/ - content_type "application/x-yaml" - crossvalidation.to_yaml when /text\/html/ related_links = "Search for corresponding cv report: "+$sinatra.url_for("/report/crossvalidation?crossvalidation="+crossvalidation.crossvalidation_uri,:full)+"\n"+ "Statistics for this crossvalidation: "+$sinatra.url_for("/crossvalidation/"+params[:id]+"/statistics",:full)+"\n"+ + "Predictions of this crossvalidation: "+$sinatra.url_for("/crossvalidation/"+params[:id]+"/predictions",:full)+"\n"+ "All crossvalidations: "+$sinatra.url_for("/crossvalidation",:full)+"\n"+ "All crossvalidation reports: "+$sinatra.url_for("/report/crossvalidation",:full) description = "A crossvalidation resource." content_type "text/html" OpenTox.text_to_html crossvalidation.to_yaml,related_links,description + when /application\/x-yaml|\*\/\*/ + content_type "application/x-yaml" + crossvalidation.to_yaml else halt 400, "MIME type '"+request.env['HTTP_ACCEPT'].to_s+"' not supported, valid Accept-Headers: \"application/rdf+xml\", \"application/x-yaml\", \"text/html\"." end @@ -144,16 +145,16 @@ delete '/crossvalidation/:id/?' do Validation::Crossvalidation.delete(params[:id]) end -get '/crossvalidation/:id/validations' do - LOGGER.info "get all validations for crossvalidation with id "+params[:id].to_s - begin - crossvalidation = Validation::Crossvalidation.find(params[:id]) - rescue ActiveRecord::RecordNotFound => ex - halt 404, "Crossvalidation '#{params[:id]}' not found." - end - content_type "text/uri-list" - Validation::Validation.find( :all, :conditions => { :crossvalidation_id => params[:id] } ).collect{ |v| v.validation_uri.to_s }.join("\n")+"\n" -end +#get '/crossvalidation/:id/validations' do +# LOGGER.info "get all validations for crossvalidation with id "+params[:id].to_s +# begin +# crossvalidation = Validation::Crossvalidation.find(params[:id]) +# rescue ActiveRecord::RecordNotFound => ex +# halt 404, "Crossvalidation '#{params[:id]}' not found." +# end +# content_type "text/uri-list" +# Validation::Validation.find( :all, :conditions => { :crossvalidation_id => params[:id] } ).collect{ |v| v.validation_uri.to_s }.join("\n")+"\n" +#end get '/crossvalidation/:id/predictions' do LOGGER.info "get predictions for crossvalidation with id "+params[:id].to_s @@ -164,7 +165,21 @@ get '/crossvalidation/:id/predictions' do end content_type "application/x-yaml" validations = Validation::Validation.find( :all, :conditions => { :crossvalidation_id => params[:id] } ) - Lib::OTPredictions.to_array( validations.collect{ |v| v.compute_validation_stats_with_model(nil, true) } ).to_yaml + p = Lib::OTPredictions.to_array( validations.collect{ |v| v.compute_validation_stats_with_model(nil, true) } ).to_yaml + + case request.env['HTTP_ACCEPT'].to_s + when /text\/html/ + content_type "text/html" + description = + "The crossvalidation predictions as (yaml-)array." + related_links = + "All crossvalidations: "+$sinatra.url_for("/crossvalidation",:full)+"\n"+ + "Correspoding crossvalidation: "+$sinatra.url_for("/crossvalidation/"+params[:id],:full) + OpenTox.text_to_html p, related_links, description + else + content_type "text/x-yaml" + p + end end get '/?' do @@ -442,21 +457,21 @@ get '/:id/predictions' do end end -get '/:id/:attribute' do - LOGGER.info "access validation attribute "+params.inspect - begin - validation = Validation::Validation.find(params[:id]) - rescue ActiveRecord::RecordNotFound => ex - halt 404, "Validation '#{params[:id]}' not found." - end - begin - raise unless validation.attribute_loaded?(params[:attribute]) - rescue - halt 400, "Not a validation attribute: "+params[:attribute].to_s - end - content_type "text/plain" - return validation.send(params[:attribute]) -end +#get '/:id/:attribute' do +# LOGGER.info "access validation attribute "+params.inspect +# begin +# validation = Validation::Validation.find(params[:id]) +# rescue ActiveRecord::RecordNotFound => ex +# halt 404, "Validation '#{params[:id]}' not found." +# end +# begin +# raise unless validation.attribute_loaded?(params[:attribute]) +# rescue +# halt 400, "Not a validation attribute: "+params[:attribute].to_s +# end +# content_type "text/plain" +# return validation.send(params[:attribute]) +#end get '/:id' do LOGGER.info "get validation with id "+params[:id].to_s+" '"+request.env['HTTP_ACCEPT'].to_s+"'" @@ -470,9 +485,6 @@ get '/:id' do when "application/rdf+xml" content_type "application/rdf+xml" validation.to_rdf - when /application\/x-yaml/ - content_type "application/x-yaml" - validation.to_yaml when /text\/html/ content_type "text/html" description = @@ -483,6 +495,9 @@ get '/:id' do "All validations: "+$sinatra.url_for("/",:full)+"\n"+ "All validation reports: "+$sinatra.url_for("/report/validation",:full) OpenTox.text_to_html validation.to_yaml,related_links,description + when /application\/x-yaml|\*\/\*/ + content_type "application/x-yaml" + validation.to_yaml else halt 400, "MIME type '"+request.env['HTTP_ACCEPT'].to_s+"' not supported, valid Accept-Headers: \"application/rdf+xml\", \"application/x-yaml\", \"text/html\"." end -- cgit v1.2.3 From 16a25a63ba7882901a778745d0a32baaafc22cad Mon Sep 17 00:00:00 2001 From: mguetlein Date: Fri, 26 Nov 2010 16:05:25 +0100 Subject: huge commit, main changes: validation_type and .finished introduced, supporting subtasks, reporting slightly refactored --- Rakefile | 2 +- RankPlotter/RankPlotter.jar | Bin 12309188 -> 12327740 bytes db/migrate/001_init_validation.rb | 15 +- example.rb | 3 +- lib/active_record_setup.rb | 9 +- lib/ot_predictions.rb | 11 +- lib/predictions.rb | 67 +++-- lib/validation_db.rb | 57 +++- nightly/nightly.rb | 8 +- reach_reports/reach_application.rb | 1 + reach_reports/reach_service.rb | 117 ++++---- reach_reports/reach_test.rb | 10 +- report/environment.rb | 2 +- report/plot_factory.rb | 153 ++++++++--- report/report_application.rb | 14 +- report/report_content.rb | 259 ++++++++++++++++++ report/report_factory.rb | 411 +++++++--------------------- report/report_format.rb | 12 +- report/report_persistance.rb | 2 +- report/report_service.rb | 35 ++- report/report_test.rb | 6 +- report/util.rb | 2 +- report/validation_access.rb | 32 ++- report/validation_data.rb | 175 ++++++++++-- report/xml_report.rb | 25 +- saxonhe9-2-0-3j/doc/img/saxonica_logo.gif | Bin 8603 -> 0 bytes saxonhe9-2-0-3j/doc/index.html | 56 ---- saxonhe9-2-0-3j/doc/saxondocs.css | 228 --------------- saxonhe9-2-0-3j/notices/APACHE-ANT.txt | 13 - saxonhe9-2-0-3j/notices/APACHE-RESOLVER.txt | 9 - saxonhe9-2-0-3j/notices/APACHE-XERCES.txt | 17 -- saxonhe9-2-0-3j/notices/CERN.txt | 7 - saxonhe9-2-0-3j/notices/FRIJTERS.txt | 22 -- saxonhe9-2-0-3j/notices/GPL+CLASSPATH.txt | 347 ----------------------- saxonhe9-2-0-3j/notices/JAMESCLARK.txt | 25 -- saxonhe9-2-0-3j/notices/LEGAL.txt | 33 --- saxonhe9-2-0-3j/notices/LICENSE.txt | 15 - saxonhe9-2-0-3j/notices/THAI.txt | 31 --- saxonhe9-2-0-3j/notices/UNICODE.txt | 29 -- saxonhe9-2-0-3j/saxon9he.jar | Bin 5468048 -> 0 bytes test/test_examples_util.rb | 1 + validation/validation_application.rb | 73 ++--- validation/validation_service.rb | 95 ++++--- validation/validation_test.rb | 22 +- 44 files changed, 1020 insertions(+), 1431 deletions(-) create mode 100644 report/report_content.rb delete mode 100644 saxonhe9-2-0-3j/doc/img/saxonica_logo.gif delete mode 100644 saxonhe9-2-0-3j/doc/index.html delete mode 100644 saxonhe9-2-0-3j/doc/saxondocs.css delete mode 100644 saxonhe9-2-0-3j/notices/APACHE-ANT.txt delete mode 100644 saxonhe9-2-0-3j/notices/APACHE-RESOLVER.txt delete mode 100644 saxonhe9-2-0-3j/notices/APACHE-XERCES.txt delete mode 100644 saxonhe9-2-0-3j/notices/CERN.txt delete mode 100644 saxonhe9-2-0-3j/notices/FRIJTERS.txt delete mode 100644 saxonhe9-2-0-3j/notices/GPL+CLASSPATH.txt delete mode 100644 saxonhe9-2-0-3j/notices/JAMESCLARK.txt delete mode 100644 saxonhe9-2-0-3j/notices/LEGAL.txt delete mode 100644 saxonhe9-2-0-3j/notices/LICENSE.txt delete mode 100644 saxonhe9-2-0-3j/notices/THAI.txt delete mode 100644 saxonhe9-2-0-3j/notices/UNICODE.txt delete mode 100644 saxonhe9-2-0-3j/saxon9he.jar diff --git a/Rakefile b/Rakefile index 4225438..f764000 100644 --- a/Rakefile +++ b/Rakefile @@ -54,7 +54,7 @@ task :load_config do puts "config loaded" end -# USER VERSION 0 instead +# USE VERSION 0 instead #desc "Clear database" #task :clear_db => :load_config do # if @@config[:database][:adapter]=="mysql" diff --git a/RankPlotter/RankPlotter.jar b/RankPlotter/RankPlotter.jar index 80d8e64..036c40a 100644 Binary files a/RankPlotter/RankPlotter.jar and b/RankPlotter/RankPlotter.jar differ diff --git a/db/migrate/001_init_validation.rb b/db/migrate/001_init_validation.rb index 93d8d2f..2189568 100644 --- a/db/migrate/001_init_validation.rb +++ b/db/migrate/001_init_validation.rb @@ -4,8 +4,7 @@ class InitValidation < ActiveRecord::Migration create_table :crossvalidations do |t| - [:crossvalidation_uri, - :algorithm_uri, + [:algorithm_uri, :dataset_uri ].each do |p| t.column p, :string, :limit => 255 end @@ -19,23 +18,21 @@ class InitValidation < ActiveRecord::Migration t.column p, :integer, :null => false end - [ :stratified ].each do |p| + [ :stratified, :finished ].each do |p| t.column p, :boolean, :null => false end - end create_table :validations do |t| - [:validation_uri, + [:validation_type, :model_uri, :algorithm_uri, :training_dataset_uri, :test_target_dataset_uri, :test_dataset_uri, :prediction_dataset_uri, - :prediction_feature, - :crossvalidation_uri].each do |p| + :prediction_feature].each do |p| t.column p, :string, :limit => 255 end @@ -54,6 +51,10 @@ class InitValidation < ActiveRecord::Migration [:classification_statistics, :regression_statistics].each do |p| t.column(p, :text, :limit => 16320) end + + [ :finished ].each do |p| + t.column p, :boolean, :null => false + end end end diff --git a/example.rb b/example.rb index eb997c2..6417ae7 100644 --- a/example.rb +++ b/example.rb @@ -83,8 +83,7 @@ class Example log "crossvalidation" cv = Validation::Crossvalidation.new({ :dataset_uri => data_uri, :algorithm_uri => @@alg, :num_folds => 5, :stratified => false }) - cv.create_cv_datasets( URI.decode(@@feature) ) - cv.perform_cv( @@alg_params ) + cv.perform_cv( URI.decode(@@feature), @@alg_params ) log "create validation report" rep = Reports::ReportService.new(File.join(@@config[:services]["opentox-validation"],"report")) diff --git a/lib/active_record_setup.rb b/lib/active_record_setup.rb index cea4fb2..3682c7a 100644 --- a/lib/active_record_setup.rb +++ b/lib/active_record_setup.rb @@ -28,7 +28,14 @@ class ActiveRecord::Base key = key+"_uri" unless self.column_names.include?(key) key = key+"s" - $sinatra.halt 400,"no attribute found: '"+k.to_s+"'" unless self.column_names.include?(key) + unless self.column_names.include?(key) + err = "no attribute found: '"+k.to_s+"'" + if $sinatra + $sinatra.halt 400,err + else + raise err + end + end end end end diff --git a/lib/ot_predictions.rb b/lib/ot_predictions.rb index dcd7d09..0175a0c 100644 --- a/lib/ot_predictions.rb +++ b/lib/ot_predictions.rb @@ -15,7 +15,8 @@ module Lib return @compounds[instance_index] end - def initialize(is_classification, test_dataset_uri, test_target_dataset_uri, prediction_feature, prediction_dataset_uri, predicted_variable) + def initialize(is_classification, test_dataset_uri, test_target_dataset_uri, + prediction_feature, prediction_dataset_uri, predicted_variable, task=nil) LOGGER.debug("loading prediciton via test-dataset:'"+test_dataset_uri.to_s+ "', test-target-datset:'"+test_target_dataset_uri.to_s+ @@ -79,6 +80,7 @@ module Lib actual_values.push value end end + task.progress(40) if task # loaded actual values prediction_dataset = OpenTox::Dataset.find prediction_dataset_uri raise "prediction dataset not found: '"+prediction_dataset_uri.to_s+"'" unless prediction_dataset @@ -118,9 +120,11 @@ module Lib confidence_values << prediction_dataset.get_prediction_confidence(c, predicted_variable) end end + task.progress(80) if task # loaded predicted values and confidence super(predicted_values, actual_values, confidence_values, is_classification, class_values) raise "illegal num compounds "+num_info if @compounds.size != @predicted_values.size + task.progress(100) if task # done with the mathmatics end @@ -128,7 +132,7 @@ module Lib res = {} if @is_classification - (Lib::VAL_CLASS_PROPS_EXTENDED).each{ |s| res[s] = send(s)} + (Lib::VAL_CLASS_PROPS).each{ |s| res[s] = send(s)} else (Lib::VAL_REGR_PROPS).each{ |s| res[s] = send(s) } end @@ -151,7 +155,8 @@ module Lib a.push( "http://ambit.uni-plovdiv.bg:8080/ambit2/depict/cdk?search="+ URI.encode(OpenTox::Compound.new(:uri=>p.identifier(i)).smiles) ) if add_pic rescue => ex - a.push("Could not add pic: "+ex.message) + #a.push("Could not add pic: "+ex.message) + a.push(p.identifier(i)) end a << (format ? p.actual_value(i).to_nice_s : p.actual_value(i)) diff --git a/lib/predictions.rb b/lib/predictions.rb index 2873689..6e50e94 100644 --- a/lib/predictions.rb +++ b/lib/predictions.rb @@ -23,13 +23,13 @@ module Lib actual_values, confidence_values, is_classification, - prediction_feature_values=nil ) + class_domain=nil ) @predicted_values = predicted_values @actual_values = actual_values @confidence_values = confidence_values @is_classification = is_classification - @prediction_feature_values = prediction_feature_values + @class_domain = class_domain @num_classes = 1 #puts "predicted: "+predicted_values.inspect @@ -43,23 +43,27 @@ module Lib raise "illegal num confidence values "+num_info if @confidence_values.size != @predicted_values.size @confidence_values.each{ |c| raise "illegal confidence value: '"+c.to_s+"'" unless c==nil or (c.is_a?(Numeric) and c>=0 and c<=1) } - conf_val_tmp = {} - @confidence_values.each{ |c| conf_val_tmp[c] = nil } - if conf_val_tmp.keys.size<2 - LOGGER.warn("prediction w/o confidence values"); - @confidence_values=nil - end + ## check if there is more than one different conf value + ## DEPRECATED? not sure anymore what this was about, + ## I am pretty sure this was for r-plot of roc curves + ## roc curvers are now plotted manually + #conf_val_tmp = {} + #@confidence_values.each{ |c| conf_val_tmp[c] = nil } + #if conf_val_tmp.keys.size<2 + # LOGGER.warn("prediction w/o confidence values"); + # @confidence_values=nil + #end if @is_classification - raise "prediction_feature_values missing while performing classification" unless @prediction_feature_values - @num_classes = @prediction_feature_values.size + raise "class_domain missing while performing classification" unless @class_domain + @num_classes = @class_domain.size raise "num classes < 2" if @num_classes<2 { "predicted"=>@predicted_values, "actual"=>@actual_values }.each do |s,values| values.each{ |v| raise "illegal "+s+" classification-value ("+v.to_s+"),"+ "has to be either nil or index of predicted-values" if v!=nil and (v<0 or v>@num_classes)} end else - raise "prediction_feature_values != nil while performing regression" if @prediction_feature_values + raise "class_domain != nil while performing regression" if @class_domain { "predicted"=>@predicted_values, "actual"=>@actual_values }.each do |s,values| values.each{ |v| raise "illegal "+s+" regression-value ("+v.to_s+"),"+ "has to be either nil or number" unless v==nil or v.is_a?(Numeric)} @@ -81,7 +85,7 @@ module Lib if @is_classification @confusion_matrix = [] - @prediction_feature_values.each do |v| + @class_domain.each do |v| @confusion_matrix.push( Array.new( @num_classes, 0 ) ) end @@ -209,31 +213,35 @@ module Lib res = {} (0..@num_classes-1).each do |actual| (0..@num_classes-1).each do |predicted| - res[{:confusion_matrix_actual => @prediction_feature_values[actual], - :confusion_matrix_predicted => @prediction_feature_values[predicted]}] = @confusion_matrix[actual][predicted] + res[{:confusion_matrix_actual => @class_domain[actual], + :confusion_matrix_predicted => @class_domain[predicted]}] = @confusion_matrix[actual][predicted] end end return res end def area_under_roc(class_index=nil) - return prediction_feature_value_map( lambda{ |i| area_under_roc(i) } ) if class_index==nil + return prediction_feature_value_map( lambda{ |i| area_under_roc(i) } ) if + class_index==nil return 0.0 if @confidence_values==nil LOGGER.warn("TODO: implement approx computiation of AUC,"+ - "so far Wilcoxon-Man-Whitney is used (exponential)") if @predicted_values.size>1000 + "so far Wilcoxon-Man-Whitney is used (exponential)") if + @predicted_values.size>1000 + #puts "COMPUTING AUC "+class_index.to_s tp_conf = [] fp_conf = [] (0..@predicted_values.size-1).each do |i| if @predicted_values[i]==class_index - if @actual_values[i]==class_index + if @actual_values[i]==@predicted_values[i] tp_conf.push(@confidence_values[i]) else fp_conf.push(@confidence_values[i]) end end end + #puts tp_conf.inspect+"\n"+fp_conf.inspect+"\n\n" return 0.0 if tp_conf.size == 0 return 1.0 if fp_conf.size == 0 @@ -241,9 +249,9 @@ module Lib tp_conf.each do |tp| fp_conf.each do |fp| sum += 1 if tp>fp + sum += 0.5 if tp==fp end end - return sum / (tp_conf.size * fp_conf.size).to_f end @@ -460,21 +468,30 @@ module Lib # data for roc-plots ################################################################################### def get_roc_values(class_value) + + #puts "get_roc_values for class_value: "+class_value.to_s raise "no confidence values" if @confidence_values==nil - class_index = @prediction_feature_values.index(class_value) - raise "class not found "+class_value.to_s if class_index==nil and class_value!=nil + raise "no class-value specified" if class_value==nil + + class_index = @class_domain.index(class_value) + raise "class not found "+class_value.to_s if class_index==nil c = []; p = []; a = [] (0..@predicted_values.size-1).each do |i| # NOTE: not predicted instances are ignored here - if (@predicted_values[i]!=nil and (class_value==nil or @predicted_values[i]==class_index)) + if @predicted_values[i]!=nil and @predicted_values[i]==class_index c << @confidence_values[i] p << @predicted_values[i] a << @actual_values[i] end end - return {:predicted_values => p, :actual_values => a, :confidence_values => c} + # DO NOT raise exception here, maybe different validations are concated + #raise "no instance predicted as '"+class_value+"'" if p.size == 0 + + h = {:predicted_values => p, :actual_values => a, :confidence_values => c} + #puts h.inspect + return h end ######################################################################################## @@ -489,7 +506,7 @@ module Lib def predicted_value(instance_index) if @is_classification - @predicted_values[instance_index]==nil ? nil : @prediction_feature_values[@predicted_values[instance_index]] + @predicted_values[instance_index]==nil ? nil : @class_domain[@predicted_values[instance_index]] else @predicted_values[instance_index] end @@ -501,7 +518,7 @@ module Lib def actual_value(instance_index) if @is_classification - @actual_values[instance_index]==nil ? nil : @prediction_feature_values[@actual_values[instance_index]] + @actual_values[instance_index]==nil ? nil : @class_domain[@actual_values[instance_index]] else @actual_values[instance_index] end @@ -535,7 +552,7 @@ module Lib def prediction_feature_value_map(proc) res = {} (0..@num_classes-1).each do |i| - res[@prediction_feature_values[i]] = proc.call(i) + res[@class_domain[i]] = proc.call(i) end return res end diff --git a/lib/validation_db.rb b/lib/validation_db.rb index 6de0bd4..cb3ece7 100644 --- a/lib/validation_db.rb +++ b/lib/validation_db.rb @@ -6,7 +6,7 @@ require "lib/merge.rb" module Lib - VAL_PROPS_GENERAL = [ :validation_uri, :model_uri, :algorithm_uri, :training_dataset_uri, :prediction_feature, + VAL_PROPS_GENERAL = [ :validation_uri, :validation_type, :model_uri, :algorithm_uri, :training_dataset_uri, :prediction_feature, :test_dataset_uri, :test_target_dataset_uri, :prediction_dataset_uri, :date ] VAL_PROPS_SUM = [ :num_instances, :num_without_class, :num_unpredicted ] VAL_PROPS_AVG = [:real_runtime, :percent_without_class, :percent_unpredicted ] @@ -17,9 +17,11 @@ module Lib # :classification_statistics VAL_CLASS_PROPS_SINGLE_SUM = [ :num_correct, :num_incorrect, :confusion_matrix ] - VAL_CLASS_PROPS_SINGLE_AVG = [ :percent_correct, :percent_incorrect, :weighted_area_under_roc ] + VAL_CLASS_PROPS_SINGLE_AVG = [ :percent_correct, :percent_incorrect, + :weighted_area_under_roc, :accuracy ] VAL_CLASS_PROPS_SINGLE = VAL_CLASS_PROPS_SINGLE_SUM + VAL_CLASS_PROPS_SINGLE_AVG + # :class_value_statistics VAL_CLASS_PROPS_PER_CLASS_SUM = [ :num_false_positives, :num_false_negatives, :num_true_positives, :num_true_negatives ] @@ -32,7 +34,6 @@ module Lib :true_negative_rate, :true_positive_rate ] #:precision, :recall, VAL_CLASS_PROPS = VAL_CLASS_PROPS_SINGLE + VAL_CLASS_PROPS_PER_CLASS - VAL_CLASS_PROPS_EXTENDED = VAL_CLASS_PROPS + [:accuracy] # :regression_statistics VAL_REGR_PROPS = [ :root_mean_squared_error, :mean_absolute_error, :r_square, @@ -41,20 +42,66 @@ module Lib CROSS_VAL_PROPS = [:dataset_uri, :num_folds, :stratified, :random_seed] CROSS_VAL_PROPS_REDUNDANT = [:crossvalidation_uri, :algorithm_uri, :date] + CROSS_VAL_PROPS - ALL_PROPS = VAL_PROPS + VAL_CV_PROPS + VAL_CLASS_PROPS_EXTENDED + VAL_REGR_PROPS + CROSS_VAL_PROPS + ALL_PROPS = VAL_PROPS + VAL_CV_PROPS + VAL_CLASS_PROPS + VAL_REGR_PROPS + CROSS_VAL_PROPS VAL_MERGE_GENERAL = VAL_PROPS_GENERAL + VAL_CV_PROPS + [:classification_statistics, :regression_statistics] + CROSS_VAL_PROPS VAL_MERGE_SUM = VAL_PROPS_SUM + VAL_CLASS_PROPS_SINGLE_SUM + VAL_CLASS_PROPS_PER_CLASS_SUM VAL_MERGE_AVG = VAL_PROPS_AVG + VAL_CLASS_PROPS_SINGLE_AVG + VAL_CLASS_PROPS_PER_CLASS_AVG + VAL_REGR_PROPS - + + class Validation < ActiveRecord::Base serialize :classification_statistics serialize :regression_statistics alias_attribute :date, :created_at + + def validation_uri + $sinatra.url_for("/"+self.id.to_s, :full) + end + + def crossvalidation_uri + $sinatra.url_for("/crossvalidation/"+self.crossvalidation_id.to_s, :full) if self.crossvalidation_id + end + + def self.classification_property?( property ) + VAL_CLASS_PROPS.include?( property ) + end + + def self.depends_on_class_value?( property ) + VAL_CLASS_PROPS_PER_CLASS.include?( property ) + end + + def self.complement_exists?( property ) + VAL_CLASS_PROPS_PER_CLASS_COMPLEMENT_EXISTS.include?( property ) + end + end class Crossvalidation < ActiveRecord::Base alias_attribute :date, :created_at + + def crossvalidation_uri + $sinatra.url_for("/crossvalidation/"+self.id.to_s, :full) if self.id + end + + # convenience method to list all crossvalidations that are unique + # in terms of dataset_uri,num_folds,stratified,random_seed + # further conditions can be specified in __conditions__ + def self.find_all_uniq(conditions={}) + cvs = Lib::Crossvalidation.find(:all, :conditions => conditions) + uniq = [] + cvs.each do |cv| + match = false + uniq.each do |cv2| + if cv.dataset_uri == cv2.dataset_uri and cv.num_folds == cv2.num_folds and + cv.stratified == cv2.stratified and cv.random_seed == cv2.random_seed + match = true + break + end + end + uniq << cv unless match + end + uniq + end end end diff --git a/nightly/nightly.rb b/nightly/nightly.rb index dca85d2..eb802a3 100644 --- a/nightly/nightly.rb +++ b/nightly/nightly.rb @@ -21,7 +21,7 @@ class Nightly validationExamples = ValidationExamples.select(select) return "please \"select\" validation examples:\n"+ValidationExamples.list if validationExamples.size==0 - task_uri = OpenTox::Task.as_task("Build nightly", "nightly-validation-test-service", {:select => select, :dry_run => dry_run}) do + task_uri = OpenTox::Task.as_task("Build nightly","nightly-validation-test-service",{:select => select, :dry_run => dry_run}) do |task| LOGGER.info("Building nightly report") benchmarks = validationExamples.collect{ |e| ValidationBenchmark.new(e) } @@ -35,7 +35,7 @@ class Nightly running << id Thread.new do begin - b.build + b.build() rescue => ex LOGGER.error "uncaught nightly build error: "+ex.message ensure @@ -101,9 +101,9 @@ class Nightly File.join(@@config[:services]["opentox-validation"],"nightly") end if defined?(halt) - halt 202,task_uri + halt 202,task_uri+"\n" else - return task_uri + return task_uri+"\n" end end diff --git a/reach_reports/reach_application.rb b/reach_reports/reach_application.rb index e63c2a4..bbe4092 100644 --- a/reach_reports/reach_application.rb +++ b/reach_reports/reach_application.rb @@ -31,6 +31,7 @@ post '/reach_report/:type' do content_type "text/uri-list" LOGGER.info "creating "+type+" report "+params.inspect + #puts "creating "+type+" report "+params.inspect result_uri = ReachReports.create_report(type,params,request.env["rack.input"]) if OpenTox::Utils.task_uri?(result_uri) diff --git a/reach_reports/reach_service.rb b/reach_reports/reach_service.rb index ef75621..f297f26 100644 --- a/reach_reports/reach_service.rb +++ b/reach_reports/reach_service.rb @@ -23,13 +23,14 @@ module ReachReports def self.create_report( type, params, xml_data=nil ) - result_uri = "" case type when /(?i)QMRF/ if params[:model_uri] - result_uri = OpenTox::Task.as_task( "Create "+type+" report", $sinatra.url_for("/reach_report/"+type, :full), params ) do + result_uri = OpenTox::Task.as_task( "Create "+type+" report", + $sinatra.url_for("/reach_report/"+type, :full), params ) do |task| + report = ReachReports::QmrfReport.new :model_uri => params[:model_uri] - build_qmrf_report(report) + build_qmrf_report(report, task) report.report_uri end elsif xml_data and (input = xml_data.read).to_s.size>0 @@ -57,8 +58,9 @@ module ReachReports - def self.build_qmrf_report(r) + def self.build_qmrf_report(r, task=nil) + #puts r.model_uri model = OpenTox::Model::PredictionModel.find(r.model_uri) classification = model.classification? @@ -66,9 +68,11 @@ module ReachReports r.qsar_identifier = QsarIdentifier.new r.qsar_identifier.qsar_title = model.title # TODO QSAR_models -> sparql same endpoint - r.qsar_identifier.qsar_software << QsarSoftware.new( :url => model.uri, :name => model.title, :contact => model.creator ) + r.qsar_identifier.qsar_software << QsarSoftware.new( :url => model.uri, + :name => model.title, :contact => model.creator ) algorithm = OpenTox::Algorithm::Generic.find(model.algorithm) if model.algorithm r.qsar_identifier.qsar_software << QsarSoftware.new( :url => algorithm.uri, :name => algorithm.title ) + task.progress(10) if task #chpater 2 r.qsar_general_information = QsarGeneralInformation.new @@ -79,7 +83,8 @@ module ReachReports # TODO: references? # EMPTY: info_availablity # TODO: related_models = find qmrf reports for QSAR_models - + task.progress(20) if task + # chapter 3 # TODO "model_species" ? r.qsar_endpoint = QsarEndpoint.new @@ -89,12 +94,14 @@ module ReachReports # TODO "endpoint_comments" => "3.3", "endpoint_units" => "3.4", r.qsar_endpoint.endpoint_variable = model.dependentVariables if model.dependentVariables # TODO "endpoint_protocol" => "3.6", "endpoint_data_quality" => "3.7", - + task.progress(30) if task + # chapter 4 # TODO algorithm_type (='type of model') # TODO algorithm_explicit.equation # TODO algorithm_explicit.algorithms_catalog # TODO algorithms_descriptors, descriptors_selection, descriptors_generation, descriptors_generation_software, descriptors_chemicals_ratio + task.progress(40) if task # chapter 5 # TODO app_domain_description, app_domain_method, app_domain_software, applicability_limits @@ -103,8 +110,9 @@ module ReachReports begin training_dataset = model.trainingDataset ? OpenTox::Dataset.find(model.trainingDataset) : nil rescue - LOGGER.warn "training_dataset not found "+model.trainingDataset.to_s + LOGGER.warn "build qmrf: training_dataset not found "+model.trainingDataset.to_s end + task.progress(50) if task # chapter 6 r.qsar_robustness = QsarRobustness.new @@ -122,47 +130,56 @@ module ReachReports val_datasets = [] if model.algorithm - cvs = Lib::Crossvalidation.find(:all, :conditions => {:algorithm_uri => model.algorithm}) - cvs = [] unless cvs - uniq_cvs = [] - cvs.each do |cv| - # PENDING: cv classification hack + cvs = Lib::Crossvalidation.find_all_uniq({:algorithm_uri => model.algorithm}) + # PENDING: cv classification/regression hack + cvs = cvs.delete_if do |cv| val = Validation::Validation.first( :all, :conditions => { :crossvalidation_id => cv.id } ) - if (val.classification_statistics!=nil) == classification - match = false - uniq_cvs.each do |cv2| - if cv.dataset_uri == cv2.dataset_uri and cv.num_folds == cv2.num_folds and cv.stratified == cv2.stratified and cv.random_seed == cv2.random_seed - match = true - break - end - end - uniq_cvs << cv unless match - end + (val.classification_statistics!=nil) != classification end - - lmo = [ "found "+cvs.size.to_s+" crossvalidation/s for algorithm '"+model.algorithm ] - lmo << "" - uniq_cvs.each do |cv| - lmo << "crossvalidation: "+cv.crossvalidation_uri - lmo << "dataset (see 9.3 Validation data): "+cv.dataset_uri - val_datasets << cv.dataset_uri - lmo << "settings: num-folds="+cv.num_folds.to_s+", random-seed="+cv.random_seed.to_s+", stratified:"+cv.stratified.to_s - val = YAML.load( OpenTox::RestClientWrapper.get File.join(cv.crossvalidation_uri,"statistics") ) - if classification - lmo << "percent_correct: "+val[:classification_statistics][:percent_correct].to_s - lmo << "weighted AUC: "+val[:classification_statistics][:weighted_area_under_roc].to_s - else - lmo << "root_mean_squared_error: "+val[:regression_statistics][:root_mean_squared_error].to_s - lmo << "r_square "+val[:regression_statistics][:r_square].to_s - end - reports = OpenTox::RestClientWrapper.get File.join(CONFIG[:services]["opentox-validation"],"report/crossvalidation?crossvalidation_uris="+cv.crossvalidation_uri) - if reports and reports.size>0 - lmo << "for more info see report: "+reports.split("\n")[0] - else - lmo << "for more info see report: not yet created for '"+cv.crossvalidation_uri+"'" + + lmo = [ "found "+cvs.size.to_s+" crossvalidation/s for algorithm '"+model.algorithm+"'" ] + if cvs.size>0 + cvs_same_data = [] + cvs_other_data = [] + cvs.each do |cv| + if cv.dataset_uri == model.trainingDataset + cvs_same_data << cv + else + cvs_other_data << cv + end end + lmo << cvs_same_data.size.to_s+" crossvalidations/s where performed on the training dataset of the model ("+ + model.trainingDataset.to_s+")" + lmo << cvs_other_data.size.to_s+" crossvalidations/s where performed on the other datasets" lmo << "" + + {cvs_same_data => "training dataset", cvs_other_data => "other datasets"}.each do |cvs,desc| + next if cvs.size==0 + lmo << "crossvalidation/s on "+desc + cvs.each do |cv| + lmo << "crossvalidation: "+cv.crossvalidation_uri + lmo << "dataset (see 9.3 Validation data): "+cv.dataset_uri + val_datasets << cv.dataset_uri + lmo << "settings: num-folds="+cv.num_folds.to_s+", random-seed="+cv.random_seed.to_s+", stratified:"+cv.stratified.to_s + val = YAML.load( OpenTox::RestClientWrapper.get File.join(cv.crossvalidation_uri,"statistics") ) + if classification + lmo << "percent_correct: "+val[:classification_statistics][:percent_correct].to_s + lmo << "weighted AUC: "+val[:classification_statistics][:weighted_area_under_roc].to_s + else + lmo << "root_mean_squared_error: "+val[:regression_statistics][:root_mean_squared_error].to_s + lmo << "r_square "+val[:regression_statistics][:r_square].to_s + end + reports = OpenTox::RestClientWrapper.get File.join(CONFIG[:services]["opentox-validation"],"report/crossvalidation?crossvalidation_uris="+cv.crossvalidation_uri) + if reports and reports.size>0 + lmo << "for more info see report: "+reports.split("\n")[0] + else + lmo << "for more info see report: not yet created for '"+cv.crossvalidation_uri+"'" + end + end + lmo << "" + end end + else lmo = [ "no prediction algortihm for model found, crossvalidation not possible" ] end @@ -202,7 +219,8 @@ module ReachReports v << "root_mean_squared_error: "+validation.regression_statistics[:root_mean_squared_error].to_s v << "r_square "+validation.regression_statistics[:r_square].to_s end - reports = OpenTox::RestClientWrapper.get File.join(CONFIG[:services]["opentox-validation"],"report/validation?validation_uris="+validation.validation_uri) + reports = OpenTox::RestClientWrapper.get(File.join(CONFIG[:services]["opentox-validation"], + "report/validation?validation_uris="+validation.validation_uri)) if reports and reports.size>0 v << "for more info see report: "+reports.split("\n")[0] else @@ -214,15 +232,18 @@ module ReachReports v = [ "no validation for model '"+model.uri+"' found" ] end r.qsar_predictivity.validation_predictivity = v.to_html + task.progress(60) if task # chapter 7 # "validation_set_availability" => "7.1", "validation_set_data" => "7.2", "validation_set_descriptors" => "7.3", # "validation_dependent_var_availability" => "7.4", "validation_other_info" => "7.5", "experimental_design" => "7.6", # "validation_predictivity" => "7.7", "validation_assessment" => "7.8", "validation_comments" => "7.9", + task.progress(70) if task # chapter 8 # "mechanistic_basis" => "8.1", "mechanistic_basis_comments" => "8.2", "mechanistic_basis_info" => "8.3", - + task.progress(80) if task + # chapter 9 # "comments" => "9.1", "bibliography" => "9.2", "attachments" => "9.3", @@ -244,8 +265,10 @@ module ReachReports LOGGER.warn "could not add dataset: "+data_uri.to_s end end - r.save + task.progress(90) if task + r.save + task.progress(100) if task end # def self.get_report_content(type, id, *keys) diff --git a/reach_reports/reach_test.rb b/reach_reports/reach_test.rb index 44f37ff..4a18f6d 100644 --- a/reach_reports/reach_test.rb +++ b/reach_reports/reach_test.rb @@ -115,8 +115,9 @@ class ReachTest < Test::Unit::TestCase # puts last_response.body #model_uri = "http://ambit.uni-plovdiv.bg:8080/ambit2/model/173393" - model_uri = "http://localhost/model/1" - #model_uri = "http://localhost/majority/regr/model/12" + model_uri = "http://localhost/model/6" + #http://localhost/majority/class/model/15 + #model_uri = "http://localhost/majority/class/model/15" # model_uri = "http://localhost/majority/class/model/91" #model_uri = "http://apps.ideaconsult.net:8080/ambit2/model/2" post '/reach_report/qmrf',:model_uri=>model_uri #http://localhost/model/1" @@ -148,8 +149,9 @@ class ReachTest < Test::Unit::TestCase #r = ReachReports::QmrfReport.find_like( :QSAR_title => "Hamster") #puts r.collect{|rr| "report with id:"+rr.id.to_s}.inspect - File.new("/home/martin/win/home/qmr_rep_del_me.xml","w").puts last_response.body - File.new("/home/martin/info_home/.public_html/qmr_rep_del_me.xml","w").puts last_response.body + File.new("/home/martin/tmp/qmr_rep_del_me.xml","w").puts last_response.body + #File.new("/home/martin/win/home/qmr_rep_del_me.xml","w").puts last_response.body + #File.new("/home/martin/info_home/.public_html/qmr_rep_del_me.xml","w").puts last_response.body end end diff --git a/report/environment.rb b/report/environment.rb index f2bbe66..3daf39d 100644 --- a/report/environment.rb +++ b/report/environment.rb @@ -16,13 +16,13 @@ require "report/plot_factory.rb" require "report/xml_report.rb" require "report/xml_report_util.rb" require "report/report_persistance.rb" +require "report/report_content.rb" require "report/report_factory.rb" require "report/report_service.rb" require "report/report_format.rb" require "report/validation_access.rb" require "report/validation_data.rb" require "report/util.rb" -require "report/external/mimeparse.rb" diff --git a/report/plot_factory.rb b/report/plot_factory.rb index daaba52..43c45fc 100644 --- a/report/plot_factory.rb +++ b/report/plot_factory.rb @@ -8,6 +8,43 @@ class Array self[i] = self[j] self[j] = tmp end + + # summing up values of fields where array __groups__ has equal values + # EXAMPLE + # self: [1, 0, 1, 2, 3, 0, 2] + # __groups__: [100, 90, 70, 70, 30, 10, 0] + # returns: + # [ 1, 0, 3, 3, 0, 2] + # (fields with equal value 70 are compressed) + # PRECONDITION + # __groups__ has to be sorted + def compress_sum(groups) + compress(groups) do |a,b| + a+b + end + end + + # see compress_sum, replace sum with max + def compress_max(groups) + compress(groups) do |a,b| + a > b ? a : b + end + end + + private + def compress(groups) + raise "length not equal" unless self.size==groups.size + raise "to small" unless self.size>=2 + a = [ self[0] ] + (1..groups.size-1).each do |i| + if groups[i]!=groups[i-1] + a << self[i] + else + a[-1] = yield a[-1],self[i] + end + end + a + end end @@ -15,7 +52,7 @@ module Reports module PlotFactory - def self.create_regression_plot( out_file, validation_set ) + def self.create_regression_plot( out_file, validation_set, name_attribute ) LOGGER.debug "Creating regression plot, out-file:"+out_file.to_s @@ -23,14 +60,28 @@ module Reports x = [] y = [] validation_set.validations.each do |v| - names << v.algorithm_uri - x << v.get_predictions.predicted_values - y << v.get_predictions.actual_values + x_i = v.get_predictions.predicted_values + y_i = v.get_predictions.actual_values + + # filter out nil-predictions + not_nil_indices = [] + x_i.size.times do |i| + not_nil_indices << i if x_i[i]!=nil && y_i[i]!=nil + end + if not_nil_indices.size < x_i.size + x_i = not_nil_indices.collect{ |i| x_i[i] } + y_i = not_nil_indices.collect{ |i| y_i[i] } + end + + names << ( name_attribute==:crossvalidation_fold ? "fold " : "" ) + v.send(name_attribute).to_s + x << x_i + y << y_i end RubyPlot::plot_points(out_file, "Regression plot", "Predicted values", "Actual values", names, x, y ) end + # creates a roc plot (result is plotted into out_file) # * if (split_set_attributes == nil?) # * the predictions of all validations in the validation set are plotted as one average roc-curve @@ -41,19 +92,22 @@ module Reports # def self.create_roc_plot( out_file, validation_set, class_value, split_set_attribute=nil, show_single_curves=false ) - LOGGER.debug "creating roc plot, out-file:"+out_file.to_s + LOGGER.debug "creating roc plot for '"+validation_set.size.to_s+"' validations, out-file:"+out_file.to_s if split_set_attribute attribute_values = validation_set.get_values(split_set_attribute) - names = [] fp_rates = [] tp_rates = [] attribute_values.each do |value| - data = transform_predictions(validation_set.filter({split_set_attribute => value}), class_value, false) - names << value.to_s - fp_rates << data[:fp_rate][0] - tp_rates << data[:tp_rate][0] + begin + data = transform_predictions(validation_set.filter({split_set_attribute => value}), class_value, false) + names << value.to_s + fp_rates << data[:fp_rate][0] + tp_rates << data[:tp_rate][0] + rescue + LOGGER.warn "could not create ROC plot for "+value.to_s + end end RubyPlot::plot_lines(out_file, "ROC-Plot", "False positive rate", "True Positive Rate", names, fp_rates, tp_rates ) else @@ -62,28 +116,33 @@ module Reports end end - def self.create_bar_plot( out_file, validation_set, class_value, title_attribute, value_attributes ) + def self.create_bar_plot( out_file, validation_set, title_attribute, value_attributes ) LOGGER.debug "creating bar plot, out-file:"+out_file.to_s data = [] titles = [] + labels = [] validation_set.validations.each do |v| values = [] value_attributes.each do |a| - value = v.send(a) - if value.is_a?(Hash) - if class_value==nil - avg_value = 0 - value.values.each{ |val| avg_value+=val } - value = avg_value/value.values.size.to_f - else - raise "bar plot value is hash, but no entry for class-value ("+class_value.to_s+"); value for "+a.to_s+" -> "+value.inspect unless value.key?(class_value) - value = value[class_value] + validation_set.get_domain_for_attr(a).each do |class_value| + value = v.send(a) + if value.is_a?(Hash) + if class_value==nil + avg_value = 0 + value.values.each{ |val| avg_value+=val } + value = avg_value/value.values.size.to_f + else + raise "bar plot value is hash, but no entry for class-value ("+class_value.to_s+"); value for "+a.to_s+" -> "+value.inspect unless value.key?(class_value) + value = value[class_value] + end end + raise "value is nil\nattribute: "+a.to_s+"\nvalidation: "+v.inspect if value==nil + values.push(value) + labels.push(a.to_s.gsub("_","-") + ( class_value==nil ? "" : "("+class_value.to_s+")" )) end - values.push(value) end titles << v.send(title_attribute).to_s @@ -95,8 +154,6 @@ module Reports data[i] = [titles[i]] + data[i] end - labels = value_attributes.collect{|a| a.to_s.gsub("_","-")} - LOGGER.debug "bar plot labels: "+labels.inspect LOGGER.debug "bar plot data: "+data.inspect @@ -177,11 +234,15 @@ module Reports sum_roc_values[:confidence_values] += roc_values[:confidence_values] sum_roc_values[:actual_values] += roc_values[:actual_values] if add_single_folds - tp_fp_rates = get_tp_fp_rates(roc_values) - names << "fold "+i.to_s - fp_rate << tp_fp_rates[:fp_rate] - tp_rate << tp_fp_rates[:tp_rate] - faint << true + begin + tp_fp_rates = get_tp_fp_rates(roc_values) + names << "fold "+i.to_s + fp_rate << tp_fp_rates[:fp_rate] + tp_rate << tp_fp_rates[:tp_rate] + faint << true + rescue + LOGGER.warn "could not get ROC vals for fold "+i.to_s + end end end tp_fp_rates = get_tp_fp_rates(sum_roc_values) @@ -197,6 +258,18 @@ module Reports end end + def self.demo_rock_plot + roc_values = {:confidence_values => [0.1, 0.9, 0.5, 0.6, 0.6, 0.6], + :predicted_values => [1, 0, 0, 1, 0, 1], + :actual_values => [0, 1, 0, 0, 1, 1]} + tp_fp_rates = get_tp_fp_rates(roc_values) + data = { :names => ["default"], :fp_rate => [tp_fp_rates[:fp_rate]], :tp_rate => [tp_fp_rates[:tp_rate]] } + RubyPlot::plot_lines("/tmp/plot.svg", + "ROC-Plot", + "False positive rate", + "True Positive Rate", data[:names], data[:fp_rate], data[:tp_rate], data[:faint] ) + end + def self.get_tp_fp_rates(roc_values) c = roc_values[:confidence_values] @@ -232,9 +305,11 @@ module Reports end end #puts c.inspect+"\n"+a.inspect+"\n"+p.inspect+"\n\n" - + tp_rate = [0] fp_rate = [0] + w = [1] + c2 = [Float::MAX] (0..p.size-1).each do |i| if a[i]==p[i] tp_rate << tp_rate[-1]+1 @@ -243,8 +318,15 @@ module Reports fp_rate << fp_rate[-1]+1 tp_rate << tp_rate[-1] end + w << 1 + c2 << c[i] end - #puts tp_rate.inspect+"\n"+fp_rate.inspect+"\n\n" + #puts c2.inspect+"\n"+tp_rate.inspect+"\n"+fp_rate.inspect+"\n"+w.inspect+"\n\n" + + tp_rate = tp_rate.compress_max(c2) + fp_rate = fp_rate.compress_max(c2) + w = w.compress_sum(c2) + #puts tp_rate.inspect+"\n"+fp_rate.inspect+"\n"+w.inspect+"\n\n" (0..tp_rate.size-1).each do |i| tp_rate[i] = tp_rate[-1]>0 ? tp_rate[i]/tp_rate[-1].to_f*100 : 100 @@ -256,5 +338,14 @@ module Reports end end end - + +#require "rubygems" +#require "ruby-plot" #Reports::PlotFactory::demo_ranking_plot +#Reports::PlotFactory::demo_rock_plot + +#a = [1, 0, 1, 2, 3, 0, 2] +#puts a.compress_sum([100, 90, 70, 70, 30, 10, 0]).inspect +#puts a.compress_max([100, 90, 70, 70, 30, 10, 0]).inspect + + diff --git a/report/report_application.rb b/report/report_application.rb index baa91a0..f6b810c 100644 --- a/report/report_application.rb +++ b/report/report_application.rb @@ -80,15 +80,9 @@ end post '/report/:type/:id/format_html' do - task_uri = OpenTox::Task.as_task("Format report",url_for("/report/"+params[:type]+"/format_html", :full), params) do - perform do |rs| - rs.get_report(params[:type],params[:id],"text/html",true,params) - content_type "text/uri-list" - rs.get_uri(params[:type],params[:id])+"\n" - end - end + rs.get_report(params[:type],params[:id],"text/html",true,params) content_type "text/uri-list" - halt 202,task_uri+"\n" + rs.get_uri(params[:type],params[:id])+"\n" end @@ -128,9 +122,9 @@ delete '/report/:type/:id' do end post '/report/:type' do - task_uri = OpenTox::Task.as_task("Create report",url_for("/report/"+params[:type], :full), params) do + task_uri = OpenTox::Task.as_task("Create report",url_for("/report/"+params[:type], :full), params) do |task| perform do |rs| - rs.create_report(params[:type],params[:validation_uris]?params[:validation_uris].split(/\n|,/):nil) + rs.create_report(params[:type],params[:validation_uris]?params[:validation_uris].split(/\n|,/):nil,task) end end content_type "text/uri-list" diff --git a/report/report_content.rb b/report/report_content.rb new file mode 100644 index 0000000..98eaad6 --- /dev/null +++ b/report/report_content.rb @@ -0,0 +1,259 @@ + +# = Reports::ReportContent +# +# wraps an xml-report, adds functionality for adding sections, adds a hash for tmp files +# +class Reports::ReportContent + + attr_accessor :xml_report, :tmp_files + + def initialize(title) + @xml_report = Reports::XMLReport.new(title, Time.now.strftime("Created at %m.%d.%Y - %H:%M")) + @tmp_file_count = 0 + end + + def add_section_predictions( validation_set, + validation_attributes=[], + section_title="Predictions", + section_text=nil, + table_title="Predictions") + + #PENING + raise "validation attributes not implemented in get prediction array" if validation_attributes.size>0 + + section_table = @xml_report.add_section(@xml_report.get_root_element, section_title) + if validation_set.validations[0].get_predictions + @xml_report.add_paragraph(section_table, section_text) if section_text + @xml_report.add_table(section_table, table_title, Lib::OTPredictions.to_array(validation_set.validations.collect{|v| v.get_predictions}, true, true)) + else + @xml_report.add_paragraph(section_table, "No prediction info available.") + end + end + + + def add_section_result_overview( validation_set, + attribute_col, + attribute_row, + attribute_values, + table_titles=nil, + section_title="Result overview", + section_text=nil ) + + + section_table = @xml_report.add_section(xml_report.get_root_element, section_title) + @xml_report.add_paragraph(section_table, section_text) if section_text + + attribute_values.size.times do |i| + attribute_val = attribute_values[i] + table_title = table_titles ? table_titles[i] : "Result overview for "+attribute_val.to_s + vals = validation_set.to_table( attribute_col, attribute_row, attribute_val) + @xml_report.add_table(section_table, table_title, vals) + end + end + + # result (could be transposed) + # + # attr1 | attr2 | attr3 + # ===========|===========|=========== + # val1-attr1 |val1-attr2 |val1-attr3 + # val2-attr1 |val2-attr2 |val2-attr3 + # val3-attr1 |val3-attr2 |val3-attr3 + # + def add_section_result( validation_set, + validation_attributes, + table_title, + section_title="Results", + section_text=nil, + #rem_equal_vals_attr=[], + search_for_existing_report_type=nil) + + section_table = @xml_report.add_section(xml_report.get_root_element, section_title) + @xml_report.add_paragraph(section_table, section_text) if section_text + vals = validation_set.to_array(validation_attributes, true) + vals = vals.collect{|a| a.collect{|v| v.to_s }} + + if (search_for_existing_report_type) + vals.size.times do |i| + puts i + if (i==0) + vals[i] = [ "Reports" ] + vals[i] + puts vals[i].inspect + else + if search_for_existing_report_type=="validation" + vals[i] = [ validation_set.validations[i-1].validation_report_uri() ] + vals[i] + elsif search_for_existing_report_type=="crossvalidation" + vals[i] = [ validation_set.validations[i-1].cv_report_uri() ] + vals[i] + else + raise "illegal report type: "+search_for_existing_report_type.to_s + end + end + end + end + #PENDING transpose values if there more than 4 columns, and there are more than columns than rows + transpose = vals[0].size>4 && vals[0].size>vals.size + @xml_report.add_table(section_table, table_title, vals, !transpose, transpose) + end + + def add_section_confusion_matrix( validation, + section_title="Confusion Matrix", + section_text=nil, + table_title="Confusion Matrix") + section_confusion = @xml_report.add_section(xml_report.get_root_element, section_title) + @xml_report.add_paragraph(section_confusion, section_text) if section_text + @xml_report.add_table(section_confusion, table_title, + Reports::XMLReportUtil::create_confusion_matrix( validation.confusion_matrix ), false) + end + + def add_section_regression_plot( validation_set, + name_attribute, + section_title="Regression Plot", + section_text=nil, + image_title=nil, + image_caption=nil) + + image_title = "Regression plot" unless image_title + + section_regr = @xml_report.add_section(@xml_report.get_root_element, section_title) + prediction_set = validation_set.collect{ |v| v.get_predictions } + + if prediction_set.size>0 + + section_text += "\nWARNING: regression plot information not available for all validation results" if prediction_set.size!=validation_set.size + @xml_report.add_paragraph(section_regr, section_text) if section_text + plot_file_name = "regr_plot"+@tmp_file_count.to_s+".svg" + @tmp_file_count += 1 + begin + plot_file_path = add_tmp_file(plot_file_name) + Reports::PlotFactory.create_regression_plot( plot_file_path, prediction_set, name_attribute ) + @xml_report.add_imagefigure(section_regr, image_title, plot_file_name, "SVG", image_caption) + rescue RuntimeError => ex + LOGGER.error("Could not create regression plot: "+ex.message) + rm_tmp_file(plot_file_name) + @xml_report.add_paragraph(section_regr, "could not create regression plot: "+ex.message) + end + else + @xml_report.add_paragraph(section_regr, "No prediction info for regression available.") + end + end + + def add_section_roc_plot( validation_set, + split_set_attribute = nil, + section_title="ROC Plots", + section_text=nil, + image_titles=nil, + image_captions=nil) + + section_roc = @xml_report.add_section(@xml_report.get_root_element, section_title) + prediction_set = validation_set.collect{ |v| v.get_predictions && v.get_predictions.confidence_values_available? } + + if prediction_set.size>0 + if prediction_set.size!=validation_set.size + section_text += "\nWARNING: roc plot information not available for all validation results" + LOGGER.error "WARNING: roc plot information not available for all validation results:\n"+ + "validation set size: "+validation_set.size.to_s+", prediction set size: "+prediction_set.size.to_s + end + @xml_report.add_paragraph(section_roc, section_text) if section_text + + class_domain = validation_set.get_class_domain + class_domain.size.times do |i| + class_value = class_domain[i] + image_title = image_titles ? image_titles[i] : "ROC Plot for class-value '"+class_value+"'" + image_caption = image_captions ? image_captions[i] : nil + plot_file_name = "roc_plot"+@tmp_file_count.to_s+".svg" + @tmp_file_count += 1 + begin + plot_file_path = add_tmp_file(plot_file_name) + Reports::PlotFactory.create_roc_plot( plot_file_path, prediction_set, class_value, split_set_attribute, false )#prediction_set.size>1 ) + @xml_report.add_imagefigure(section_roc, image_title, plot_file_name, "SVG", image_caption) + rescue RuntimeError => ex + msg = "WARNING could not create roc plot for class value '"+class_value+"': "+ex.message + LOGGER.error(msg) + rm_tmp_file(plot_file_name) + @xml_report.add_paragraph(section_roc, msg) + end + end + else + @xml_report.add_paragraph(section_roc, "No prediction-confidence info for roc plot available.") + end + + end + + def add_section_ranking_plots( validation_set, + compare_attribute, + equal_attribute, + rank_attributes, + section_title="Ranking Plots", + section_text="This section contains the ranking plots.") + + section_rank = @xml_report.add_section(@xml_report.get_root_element, section_title) + @xml_report.add_paragraph(section_rank, section_text) if section_text + + rank_attributes.each do |a| + add_ranking_plot(section_rank, validation_set, compare_attribute, equal_attribute, a) + end + end + + def add_ranking_plot( report_section, + validation_set, + compare_attribute, + equal_attribute, + rank_attribute, + image_titles=nil, + image_captions=nil) + + class_domain = validation_set.get_domain_for_attr(rank_attribute) + puts "ranking plot for "+rank_attribute.to_s+", class values: "+class_domain.to_s + + class_domain.size.times do |i| + class_value = class_domain[i] + if image_titles + image_title = image_titles[i] + else + if class_value!=nil + image_title = rank_attribute.to_s+" Ranking Plot for class-value '"+class_value+"'" + else + image_title = rank_attribute.to_s+" Ranking Plot" + end + end + image_caption = image_captions ? image_captions[i] : nil + plot_file_name = "ranking_plot"+@tmp_file_count.to_s+".svg" + @tmp_file_count += 1 + plot_file_path = add_tmp_file(plot_file_name) + Reports::PlotFactory::create_ranking_plot(plot_file_path, validation_set, compare_attribute, equal_attribute, rank_attribute, class_value) + @xml_report.add_imagefigure(report_section, image_title, plot_file_name, "SVG", image_caption) + end + end + + def add_section_bar_plot(validation_set, + title_attribute, + value_attributes, + section_title="Bar Plot", + section_text=nil, + image_title="Bar Plot", + image_caption=nil) + + section_bar = @xml_report.add_section(@xml_report.get_root_element, section_title) + @xml_report.add_paragraph(section_bar, section_text) if section_text + + plot_file_name = "bar_plot"+@tmp_file_count.to_s+".svg" + @tmp_file_count += 1 + plot_file_path = add_tmp_file(plot_file_name) + Reports::PlotFactory.create_bar_plot(plot_file_path, validation_set, title_attribute, value_attributes ) + @xml_report.add_imagefigure(section_bar, image_title, plot_file_name, "SVG", image_caption) + end + + private + def add_tmp_file(tmp_file_name) + + @tmp_files = {} unless @tmp_files + raise "file name already exits" if @tmp_files[tmp_file_name] || (@text_files && @text_files[tmp_file_name]) + tmp_file_path = Reports::Util.create_tmp_file(tmp_file_name) + @tmp_files[tmp_file_name] = tmp_file_path + return tmp_file_path + end + + def rm_tmp_file(tmp_file_name) + @tmp_files.delete(tmp_file_name) if @tmp_files.has_key?(tmp_file_name) + end + +end \ No newline at end of file diff --git a/report/report_factory.rb b/report/report_factory.rb index 7e63e32..ef22be1 100644 --- a/report/report_factory.rb +++ b/report/report_factory.rb @@ -3,11 +3,14 @@ VAL_ATTR_TRAIN_TEST = [ :model_uri, :training_dataset_uri, :test_dataset_uri, :prediction_feature ] # selected attributes of interest when generating the crossvalidation report VAL_ATTR_CV = [ :algorithm_uri, :dataset_uri, :num_folds, :crossvalidation_fold ] + # selected attributes of interest when performing classification -VAL_ATTR_CLASS = [ :percent_correct, :weighted_area_under_roc, :area_under_roc, :f_measure, :true_positive_rate, :true_negative_rate ] +VAL_ATTR_CLASS = [ :percent_correct, :weighted_area_under_roc, + :area_under_roc, :f_measure, :true_positive_rate, :true_negative_rate ] VAL_ATTR_REGR = [ :root_mean_squared_error, :mean_absolute_error, :r_square ] -VAL_ATTR_BAR_PLOT_CLASS = [ :accuracy, :weighted_area_under_roc, :area_under_roc, :f_measure, :true_positive_rate, :true_negative_rate ] +VAL_ATTR_BAR_PLOT_CLASS = [ :accuracy, :weighted_area_under_roc, + :area_under_roc, :f_measure, :true_positive_rate, :true_negative_rate ] VAL_ATTR_BAR_PLOT_REGR = [ :root_mean_squared_error, :mean_absolute_error, :r_square ] @@ -28,45 +31,57 @@ module Reports::ReportFactory # call-seq: # self.create_report(type, validation_set) => Reports::ReportContent # - def self.create_report(type, validation_set) + def self.create_report(type, validation_set, task=nil) case type when RT_VALIDATION - create_report_validation(validation_set) + create_report_validation(validation_set, task) when RT_CV - create_report_crossvalidation(validation_set) + create_report_crossvalidation(validation_set, task) when RT_ALG_COMP - create_report_compare_algorithms(validation_set) + create_report_compare_algorithms(validation_set, task) else raise "unknown report type "+type.to_s end end private - def self.create_report_validation(validation_set) + # this function is only to set task progress accordingly + # loading predicitons is time consuming, and is done dynamically -> + # pre-load and set task progress + def self.pre_load_predictions( validation_set, task=nil) + i = 0 + task_step = 100 / validation_set.size.to_f + validation_set.validations.each do |v| + v.get_predictions( OpenTox::SubTask.create(task, i*task_step, (i+1)*task_step ) ) + i += 1 + end + end + + def self.create_report_validation(validation_set, task=nil) raise Reports::BadRequest.new("num validations is not equal to 1") unless validation_set.size==1 val = validation_set.validations[0] - + pre_load_predictions( validation_set, OpenTox::SubTask.create(task,0,80) ) + report = Reports::ReportContent.new("Validation report") if (val.classification?) - report.add_section_result(validation_set, VAL_ATTR_TRAIN_TEST + VAL_ATTR_CLASS, "Results", "Results") - report.add_section_roc_plot(validation_set, nil, nil, "roc-plot.svg") - #val.get_prediction_feature_values.each do |class_value| - #report.add_section_roc_plot(validation_set, class_value, nil, "roc-plot-"+class_value+".svg") - #end + report.add_section_result(validation_set, [:validation_uri] + VAL_ATTR_TRAIN_TEST + VAL_ATTR_CLASS, "Results", "Results") + report.add_section_roc_plot(validation_set) report.add_section_confusion_matrix(val) else #regression - report.add_section_result(validation_set, VAL_ATTR_TRAIN_TEST + VAL_ATTR_REGR, "Results", "Results") - report.add_section_regression_plot(validation_set) + report.add_section_result(validation_set, [:validation_uri] + VAL_ATTR_TRAIN_TEST + VAL_ATTR_REGR, "Results", "Results") + report.add_section_regression_plot(validation_set, :model_uri) end + task.progress(90) if task report.add_section_result(validation_set, Lib::ALL_PROPS, "All Results", "All Results") - report.add_section_predictions( validation_set ) - return report + report.add_section_predictions( validation_set ) + task.progress(100) if task + report end - def self.create_report_crossvalidation(validation_set) + def self.create_report_crossvalidation(validation_set, task=nil) raise Reports::BadRequest.new("num validations is not >1") unless validation_set.size>1 raise Reports::BadRequest.new("crossvalidation-id not unique and != nil: "+ @@ -77,6 +92,7 @@ module Reports::ReportFactory raise Reports::BadRequest.new("num different folds is not equal to num validations") unless validation_set.num_different_values(:crossvalidation_fold)==validation_set.size raise Reports::BadRequest.new("validations must be either all regression, "+ +"or all classification validations") unless validation_set.all_classification? or validation_set.all_regression? + pre_load_predictions( validation_set, OpenTox::SubTask.create(task,0,80) ) merged = validation_set.merge([:crossvalidation_id]) raise unless merged.size==1 @@ -85,27 +101,26 @@ module Reports::ReportFactory report = Reports::ReportContent.new("Crossvalidation report") if (validation_set.all_classification?) - report.add_section_result(merged, VAL_ATTR_CV+VAL_ATTR_CLASS-[:crossvalidation_fold],"Mean Results","Mean Results") - - report.add_section_roc_plot(validation_set, nil, nil, "roc-plot.svg", "Roc Plot", nil, "Roc plot") - report.add_section_roc_plot(validation_set, nil, :crossvalidation_fold, "roc-plot-folds.svg", "Roc Plot", nil, "Roc plots for folds") - #validation_set.first.get_prediction_feature_values.each do |class_value| - #report.add_section_roc_plot(validation_set, class_value, nil, "roc-plot-"+class_value+".svg") - #end + report.add_section_result(merged, [:crossvalidation_uri]+VAL_ATTR_CV+VAL_ATTR_CLASS-[:crossvalidation_fold],"Mean Results","Mean Results") + report.add_section_roc_plot(validation_set, nil, "ROC Plots over all folds") + report.add_section_roc_plot(validation_set, :crossvalidation_fold) report.add_section_confusion_matrix(merged.validations[0]) - report.add_section_result(validation_set, VAL_ATTR_CV+VAL_ATTR_CLASS-[:num_folds], "Results","Results") + report.add_section_result(validation_set, VAL_ATTR_CV+VAL_ATTR_CLASS-[:num_folds], + "Results","Results",nil,"validation") else #regression - report.add_section_result(merged, VAL_ATTR_CV+VAL_ATTR_REGR-[:crossvalidation_fold],"Mean Results","Mean Results") - #report.add_section_regression_plot(validation_set) + report.add_section_result(merged, [:crossvalidation_uri]+VAL_ATTR_CV+VAL_ATTR_REGR-[:crossvalidation_fold],"Mean Results","Mean Results") + report.add_section_regression_plot(validation_set, :crossvalidation_fold) report.add_section_result(validation_set, VAL_ATTR_CV+VAL_ATTR_REGR-[:num_folds], "Results","Results") end + task.progress(90) if task report.add_section_result(validation_set, Lib::ALL_PROPS, "All Results", "All Results") - report.add_section_predictions( validation_set ) #, [:crossvalidation_fold] ) - return report + report.add_section_predictions( validation_set ) #, [:crossvalidation_fold] ) + task.progress(100) if task + report end - def self.create_report_compare_algorithms(validation_set) + def self.create_report_compare_algorithms(validation_set, task=nil) #validation_set.to_array([:test_dataset_uri, :model_uri, :algorithm_uri], false).each{|a| puts a.inspect} raise Reports::BadRequest.new("num validations is not >1") unless validation_set.size>1 @@ -115,309 +130,67 @@ module Reports::ReportFactory validation_set.get_values(:algorithm_uri).inspect) if validation_set.num_different_values(:algorithm_uri)<2 if validation_set.has_nil_values?(:crossvalidation_id) - if validation_set.num_different_values(:test_dataset_uri)>1 - - # groups results into sets with equal test and training dataset - dataset_grouping = Reports::Util.group(validation_set.validations, [:test_dataset_uri, :training_dataset_uri]) - # check if the same algorithms exists for each test and training dataset - Reports::Util.check_group_matching(dataset_grouping, [:algorithm_uri]) - - #merged = validation_set.merge([:algorithm_uri, :dataset_uri]) - report = Reports::ReportContent.new("Algorithm comparison report - Many datasets") - - if (validation_set.all_classification?) - report.add_section_result(validation_set,[:algorithm_uri, :test_dataset_uri]+VAL_ATTR_CLASS,"Mean Results","Mean Results") - report.add_section_ranking_plots(validation_set, :algorithm_uri, :test_dataset_uri, - [:percent_correct, :true_positive_rate, :true_negative_rate], "true") - else # regression - raise Reports::BadRequest.new("not implemented yet for regression") - end - return report - else - # this groups all validations in x different groups (arrays) according to there algorithm-uri - algorithm_grouping = Reports::Util.group(validation_set.validations, [:algorithm_uri]) - # we check if there are corresponding validations in each group that have equal attributes (folds, num-folds,..) - Reports::Util.check_group_matching(algorithm_grouping, [:training_dataset_uri, :test_dataset_uri, :prediction_feature]) - - report = Reports::ReportContent.new("Algorithm comparison report") - - if (validation_set.all_classification?) - report.add_section_bar_plot(validation_set,nil,:algorithm_uri,VAL_ATTR_BAR_PLOT_CLASS, "bar-plot.svg") - report.add_section_roc_plot(validation_set,nil, :algorithm_uri, "roc-plot.svg") - #validation_set.first.get_prediction_feature_values.each do |class_value| - #report.add_section_bar_plot(validation_set,class_value,:algorithm_uri,VAL_ATTR_CLASS, "bar-plot-"+class_value+".svg") - #report.add_section_roc_plot(validation_set, class_value, :algorithm_uri, "roc-plot-"+class_value+".svg") - #end - report.add_section_result(validation_set,[:algorithm_uri]+VAL_ATTR_CLASS,"Results","Results") - else - #regression - report.add_section_result(validation_set,[:algorithm_uri]+VAL_ATTR_REGR,"Results","Results") - report.add_section_bar_plot(validation_set,nil,:algorithm_uri,VAL_ATTR_BAR_PLOT_REGR, "bar-plot.svg") - report.add_section_regression_plot(validation_set) - - #report.add_section_result(merged, VAL_ATTR_CV+VAL_ATTR_REGR-[:crossvalidation_fold],"Mean Results","Mean Results") - #report.add_section_result(validation_set, VAL_ATTR_CV+VAL_ATTR_REGR-[:num_folds], "Results","Results") - end - report.add_section_result(validation_set, Lib::ALL_PROPS, "All Results", "All Results") - return report - end + raise Reports::BadRequest.new("algorithm comparison for non crossvalidation not yet implemented") else raise Reports::BadRequest.new("num different cross-validation-ids <2") if validation_set.num_different_values(:crossvalidation_id)<2 validation_set.load_cv_attributes - - if validation_set.num_different_values(:dataset_uri)>1 - # groups results into sets with equal dataset - dataset_grouping = Reports::Util.group(validation_set.validations, [:dataset_uri]) - # check if equal values in each group exist - Reports::Util.check_group_matching(dataset_grouping, [:algorithm_uri, :crossvalidation_fold, :num_folds, :stratified, :random_seed]) - # we only checked that equal validations exist in each dataset group, now check for each algorithm - dataset_grouping.each do |validations| - algorithm_grouping = Reports::Util.group(validations, [:algorithm_uri]) - Reports::Util.check_group_matching(algorithm_grouping, [:crossvalidation_fold, :num_folds, :stratified, :random_seed]) - end - - merged = validation_set.merge([:algorithm_uri, :dataset_uri]) - report = Reports::ReportContent.new("Algorithm comparison report - Many datasets") - - if (validation_set.all_classification?) - report.add_section_result(merged,VAL_ATTR_CV+VAL_ATTR_CLASS-[:crossvalidation_fold],"Mean Results","Mean Results") - report.add_section_ranking_plots(merged, :algorithm_uri, :dataset_uri, [:acc, :auc, :sens, :spec], "true") - else # regression - report.add_section_result(merged,VAL_ATTR_CV+VAL_ATTR_REGR-[:crossvalidation_fold],"Mean Results","Mean Results") - end - - return report - else - # this groups all validations in x different groups (arrays) according to there algorithm-uri - algorithm_grouping = Reports::Util.group(validation_set.validations, [:algorithm_uri]) - # we check if there are corresponding validations in each group that have equal attributes (folds, num-folds,..) - Reports::Util.check_group_matching(algorithm_grouping, [:crossvalidation_fold, :num_folds, :dataset_uri, :stratified, :random_seed]) - merged = validation_set.merge([:algorithm_uri]) - - report = Reports::ReportContent.new("Algorithm comparison report") - - if (validation_set.all_classification?) - - report.add_section_result(merged,VAL_ATTR_CV+VAL_ATTR_CLASS-[:crossvalidation_fold],"Mean Results","Mean Results") - - true_class = validation_set.get_true_prediction_feature_value - if true_class!=nil - report.add_section_bar_plot(merged,true_class,:algorithm_uri,VAL_ATTR_BAR_PLOT_CLASS, "bar-plot.svg") - report.add_section_roc_plot(validation_set, nil, :algorithm_uri, "roc-plot.svg") - else - validation_set.get_prediction_feature_values.each do |class_value| - report.add_section_bar_plot(merged,class_value,:algorithm_uri,VAL_ATTR_BAR_PLOT_CLASS, "bar-plot-"+class_value+".svg") - report.add_section_roc_plot(validation_set, class_value, :algorithm_uri, "roc-plot-"+class_value+".svg") - end - end - - report.add_section_result(validation_set,VAL_ATTR_CV+VAL_ATTR_CLASS-[:num_folds],"Results","Results") - else #regression - report.add_section_result(merged, VAL_ATTR_CV+VAL_ATTR_REGR-[:crossvalidation_fold],"Mean Results","Mean Results") - report.add_section_result(validation_set, VAL_ATTR_CV+VAL_ATTR_REGR-[:num_folds], "Results","Results") - end - - return report - end + compare_algorithms_crossvalidation(validation_set, task) end - end - -end - -# = Reports::ReportContent -# -# wraps an xml-report, adds functionality for adding sections, adds a hash for tmp files -# -class Reports::ReportContent - - attr_accessor :xml_report, :tmp_files - - def initialize(title) - @xml_report = Reports::XMLReport.new(title, Time.now.strftime("Created at %m.%d.%Y - %H:%M")) - end + end - def add_section_predictions( validation_set, - validation_attributes=[], - section_title="Predictions", - section_text="This section contains predictions.", - table_title="Predictions") - - #PENING - raise "validation attributes not implemented in get prediction array" if validation_attributes.size>0 + # create Algorithm Comparison report + # crossvalidations, 1-n datasets, 2-n algorithms + def self.compare_algorithms_crossvalidation(validation_set, task=nil) - section_table = @xml_report.add_section(@xml_report.get_root_element, section_title) - if validation_set.validations[0].get_predictions - @xml_report.add_paragraph(section_table, section_text) if section_text - @xml_report.add_table(section_table, table_title, Lib::OTPredictions.to_array(validation_set.validations.collect{|v| v.get_predictions}, true, true)) + # groups results into sets with equal dataset + if (validation_set.num_different_values(:dataset_uri)>1) + dataset_grouping = Reports::Util.group(validation_set.validations, [:dataset_uri]) + # check if equal values in each group exist + Reports::Util.check_group_matching(dataset_grouping, [:algorithm_uri, :crossvalidation_fold, :num_folds, :stratified, :random_seed]) else - @xml_report.add_paragraph(section_table, "No prediction info available.") + dataset_grouping = [ validation_set.validations ] end - end - - def add_section_result( validation_set, - validation_attributes, - table_title, - section_title="Results", - section_text="This section contains results.") - - section_table = @xml_report.add_section(xml_report.get_root_element, section_title) - @xml_report.add_paragraph(section_table, section_text) if section_text - vals = validation_set.to_array(validation_attributes,true,validation_set.get_true_prediction_feature_value) - vals = vals.collect{|a| a.collect{|v| v.to_s }} - #PENDING transpose values if there more than 4 columns, and there are more than columns than rows - transpose = vals[0].size>4 && vals[0].size>vals.size - @xml_report.add_table(section_table, table_title, vals, !transpose, transpose) - end - - def add_section_confusion_matrix( validation, - section_title="Confusion Matrix", - section_text="This section contains the confusion matrix.", - table_title="Confusion Matrix") - section_confusion = @xml_report.add_section(xml_report.get_root_element, section_title) - @xml_report.add_paragraph(section_confusion, section_text) if section_text - @xml_report.add_table(section_confusion, table_title, - Reports::XMLReportUtil::create_confusion_matrix( validation.confusion_matrix ), false) - end - - def add_section_regression_plot( validation_set, - split_set_attribute = nil, - plot_file_name="regression-plot.svg", - section_title="Regression Plot", - section_text=nil, - image_title=nil, - image_caption=nil) - - section_text = "This section contains the regression plot." unless section_text - image_title = "Regression plot" unless image_title - section_regr = @xml_report.add_section(@xml_report.get_root_element, section_title) - prediction_set = validation_set.collect{ |v| v.get_predictions } - - if prediction_set.size>0 - - section_text += "\nWARNING: regression plot information not available for all validation results" if prediction_set.size!=validation_set.size - @xml_report.add_paragraph(section_regr, section_text) if section_text - begin - plot_file_path = add_tmp_file(plot_file_name) - Reports::PlotFactory.create_regression_plot( plot_file_path, prediction_set ) - @xml_report.add_imagefigure(section_regr, image_title, plot_file_name, "SVG", image_caption) - rescue RuntimeError => ex - LOGGER.error("Could not create regression plot: "+ex.message) - rm_tmp_file(plot_file_name) - @xml_report.add_paragraph(section_regr, "could not create regression plot: "+ex.message) - end - else - @xml_report.add_paragraph(section_regr, "No prediction info for regression available.") + # we only checked that equal validations exist in each dataset group, now check for each algorithm + dataset_grouping.each do |validations| + algorithm_grouping = Reports::Util.group(validations, [:algorithm_uri]) + Reports::Util.check_group_matching(algorithm_grouping, [:crossvalidation_fold, :num_folds, :stratified, :random_seed]) end - end - - def add_section_roc_plot( validation_set, - class_value = nil, - split_set_attribute = nil, - plot_file_name="roc-plot.svg", - section_title="Roc Plot", - section_text=nil, - image_title=nil, - image_caption=nil) - - if class_value - section_text = "This section contains the roc plot for class '"+class_value+"'." unless section_text - image_title = "Roc Plot for class-value '"+class_value+"'" unless image_title - else - section_text = "This section contains the roc plot." unless section_text - image_title = "Roc Plot for all classes" unless image_title - end + pre_load_predictions( validation_set, OpenTox::SubTask.create(task,0,80) ) + report = Reports::ReportContent.new("Algorithm comparison report - Many datasets") - section_roc = @xml_report.add_section(@xml_report.get_root_element, section_title) - prediction_set = validation_set.collect{ |v| v.get_predictions && v.get_predictions.confidence_values_available? } + if (validation_set.num_different_values(:dataset_uri)>1) + all_merged = validation_set.merge([:algorithm_uri, :dataset_uri, :crossvalidation_id, :crossvalidation_uri]) + report.add_section_ranking_plots(all_merged, :algorithm_uri, :dataset_uri, + [:percent_correct, :weighted_area_under_roc, :true_positive_rate, :true_negative_rate] ) + report.add_section_result_overview(all_merged, :algorithm_uri, :dataset_uri, [:percent_correct, :weighted_area_under_roc]) + end + + if (validation_set.all_classification?) + attributes = VAL_ATTR_CV+VAL_ATTR_CLASS-[:crossvalidation_fold] + attributes = ([ :dataset_uri ] + attributes).uniq + + dataset_grouping.each do |validations| + + set = Reports::ValidationSet.create(validations) + dataset = validations[0].dataset_uri + merged = set.merge([:algorithm_uri, :dataset_uri, :crossvalidation_id, :crossvalidation_uri]) + merged.sort(:algorithm_uri) + merged.sort(:dataset_uri) - if prediction_set.size>0 + report.add_section_result(merged,attributes, + "Mean Results","Dataset: "+dataset,nil,"crossvalidation") + report.add_section_bar_plot(merged, :algorithm_uri, VAL_ATTR_BAR_PLOT_CLASS) + report.add_section_roc_plot(set, :algorithm_uri) + end - section_text += "\nWARNING: roc plot information not available for all validation results" if prediction_set.size!=validation_set.size - @xml_report.add_paragraph(section_roc, section_text) if section_text - begin - plot_file_path = add_tmp_file(plot_file_name) - Reports::PlotFactory.create_roc_plot( plot_file_path, prediction_set, class_value, split_set_attribute, false )#prediction_set.size>1 ) - @xml_report.add_imagefigure(section_roc, image_title, plot_file_name, "SVG", image_caption) - rescue RuntimeError => ex - LOGGER.error("could not create roc plot: "+ex.message) - rm_tmp_file(plot_file_name) - @xml_report.add_paragraph(section_roc, "could not create roc plot: "+ex.message) - end - else - @xml_report.add_paragraph(section_roc, "No prediction-confidence info for roc plot available.") + else # regression + raise Reports::BadRequest.new("algorithm comparison for regression not yet implemented") end - + task.progress(100) if task + report end - - def add_section_ranking_plots( validation_set, - compare_attribute, - equal_attribute, - rank_attributes, - class_value, - section_title="Ranking Plots", - section_text="This section contains the ranking plots.") - - section_rank = @xml_report.add_section(@xml_report.get_root_element, section_title) - @xml_report.add_paragraph(section_rank, section_text) if section_text - rank_attributes.each{|a| add_ranking_plot(section_rank, validation_set, compare_attribute, equal_attribute, a, class_value, a.to_s+"-ranking.svg")} - end - - def add_ranking_plot( report_section, - validation_set, - compare_attribute, - equal_attribute, - rank_attribute, - class_value=nil, - plot_file_name="ranking.svg", - image_title=nil, - image_caption=nil) +end - image_title = "Ranking Plot for class value: '"+class_value.to_s+"'" if image_title==nil - plot_file_path = add_tmp_file(plot_file_name) - Reports::PlotFactory::create_ranking_plot(plot_file_path, validation_set, compare_attribute, equal_attribute, rank_attribute, class_value) - @xml_report.add_imagefigure(report_section, image_title, plot_file_name, "SVG", image_caption) - - end - - def add_section_bar_plot(validation_set, - class_value, - title_attribute, - value_attributes, - plot_file_name="bar-plot.svg", - section_title="Bar Plot", - section_text=nil, - image_title=nil, - image_caption=nil) - if class_value - section_text = "This section contains the bar plot for class '"+class_value+"'." unless section_text - image_title = "Bar Plot for class-value '"+class_value+"'" unless image_title - else - section_text = "This section contains the bar plot." unless section_text - image_title = "Bar Plot for all classes" unless image_title - end - section_bar = @xml_report.add_section(@xml_report.get_root_element, section_title) - @xml_report.add_paragraph(section_bar, section_text) if section_text - - plot_file_path = add_tmp_file(plot_file_name) - Reports::PlotFactory.create_bar_plot(plot_file_path, validation_set, class_value, title_attribute, value_attributes ) - @xml_report.add_imagefigure(section_bar, image_title, plot_file_name, "SVG", image_caption) - end - - private - def add_tmp_file(tmp_file_name) - - @tmp_files = {} unless @tmp_files - raise "file name already exits" if @tmp_files[tmp_file_name] || (@text_files && @text_files[tmp_file_name]) - tmp_file_path = Reports::Util.create_tmp_file(tmp_file_name) - @tmp_files[tmp_file_name] = tmp_file_path - return tmp_file_path - end - - def rm_tmp_file(tmp_file_name) - @tmp_files.delete(tmp_file_name) if @tmp_files.has_key?(tmp_file_name) - end - -end \ No newline at end of file diff --git a/report/report_format.rb b/report/report_format.rb index aafa204..5368858 100644 --- a/report/report_format.rb +++ b/report/report_format.rb @@ -69,14 +69,18 @@ module Reports::ReportFormat def self.format_report_to_html(directory, xml_filename, html_filename, css_style_sheet) css_style_sheet = "http://opentox.informatik.uni-freiburg.de/simple_ot_stylesheet.css" unless css_style_sheet - css = css_style_sheet ? " html.stylesheet=css_style_sheet?css_style_sheet="+URI.encode(css_style_sheet.to_s) : nil + + css = css_style_sheet ? "--stringparam html.stylesheet "+URI.encode(css_style_sheet.to_s) : nil + cmd = "xsltproc "+css.to_s+" "+ENV['REPORT_XSL']+" "+File.join(directory,xml_filename.to_s)+" > "+File.join(directory,html_filename.to_s) + #css = css_style_sheet ? " html.stylesheet=css_style_sheet?css_style_sheet="+URI.encode(css_style_sheet.to_s) : nil + #cmd = "java -jar "+ENV['SAXON_JAR']+" -o:" + File.join(directory,html_filename.to_s)+ + # " -s:"+File.join(directory,xml_filename.to_s)+" -xsl:"+ENV['REPORT_XSL']+" -versionmsg:off"+css.to_s - cmd = "java -jar "+ENV['SAXON_JAR']+" -o:" + File.join(directory,html_filename.to_s)+ - " -s:"+File.join(directory,xml_filename.to_s)+" -xsl:"+ENV['REPORT_XSL']+" -versionmsg:off"+css.to_s LOGGER.debug "Converting report to html: '"+cmd+"'" IO.popen(cmd.to_s) do |f| while line = f.gets do - LOGGER.info "saxon-xslt> "+line + LOGGER.info "xsltproc> "+line + #LOGGER.info "saxon-xslt> "+line end end raise "error during conversion" unless $?==0 diff --git a/report/report_persistance.rb b/report/report_persistance.rb index 424d5ca..1bd37b0 100644 --- a/report/report_persistance.rb +++ b/report/report_persistance.rb @@ -223,7 +223,7 @@ module Reports def list_reports(type, filter_params={}) filter_params["report_type"]=type unless filter_params.has_key?("report_type") - ReportData.find_like(filter_params).collect{ |r| r.id } + ReportData.find_like(filter_params).delete_if{|r| r.report_type!=type}.collect{ |r| r.id } end def get_report(type, id, format, force_formating, params) diff --git a/report/report_service.rb b/report/report_service.rb index 2187493..51be248 100644 --- a/report/report_service.rb +++ b/report/report_service.rb @@ -6,10 +6,21 @@ module Reports class ReportService + @@persistance = Reports::ExtendedFileReportPersistance.new + + def self.persistance + @@persistance + end + + def self.instance + @@instance + end + def initialize(home_uri) + raise "supposed to be a singleton" if defined?@@instance LOGGER.info "init report service" @home_uri = home_uri - @persistance = Reports::ExtendedFileReportPersistance.new + @@instance = self end # lists all available report types, returns list of uris @@ -32,7 +43,7 @@ module Reports LOGGER.info "get all reports of type '"+type.to_s+"', filter_params: '"+filter_params.inspect+"'" check_report_type(type) - @persistance.list_reports(type, filter_params).collect{ |id| get_uri(type,id) }.join("\n")+"\n" + @@persistance.list_reports(type, filter_params).collect{ |id| get_uri(type,id) }.join("\n")+"\n" end # creates a report of a certain type, __validation_uris__ must contain be a list of validation or cross-validation-uris @@ -41,7 +52,7 @@ module Reports # call-seq: # create_report(type, validation_uris) => string # - def create_report(type, validation_uris) + def create_report(type, validation_uris, task=nil) LOGGER.info "create report of type '"+type.to_s+"'" check_report_type(type) @@ -52,14 +63,17 @@ module Reports validation_set = Reports::ValidationSet.new(validation_uris) raise Reports::BadRequest.new("cannot get validations from validation_uris '"+validation_uris.inspect+"'") unless validation_set and validation_set.size > 0 LOGGER.debug "loaded "+validation_set.size.to_s+" validation/s" + task.progress(10) if task #step 2: create report of type - report_content = Reports::ReportFactory.create_report(type, validation_set) + report_content = Reports::ReportFactory.create_report(type, validation_set, + OpenTox::SubTask.create(task,10,90)) LOGGER.debug "report created" #step 3: persist report if creation not failed - id = @persistance.new_report(report_content, type, create_meta_data(type, validation_set, validation_uris), self) + id = @@persistance.new_report(report_content, type, create_meta_data(type, validation_set, validation_uris), self) LOGGER.debug "report persisted with id: '"+id.to_s+"'" + task.progress(100) if task return get_uri(type, id) end @@ -75,7 +89,7 @@ module Reports accept_header_value.to_s+"', force-formating:"+force_formating.to_s+" params: '"+params.inspect+"')" check_report_type(type) format = Reports::ReportFormat.get_format(accept_header_value) - return @persistance.get_report(type, id, format, force_formating, params) + return @@persistance.get_report(type, id, format, force_formating, params) end # returns a report resource (i.e. image) @@ -87,7 +101,7 @@ module Reports LOGGER.info "get resource '"+resource+"' for report '"+id.to_s+"' of type '"+type.to_s+"'" check_report_type(type) - return @persistance.get_report_resource(type, id, resource) + return @@persistance.get_report_resource(type, id, resource) end @@ -100,7 +114,7 @@ module Reports LOGGER.info "delete report '"+id.to_s+"' of type '"+type.to_s+"'" check_report_type(type) - @persistance.delete_report(type, id) + @@persistance.delete_report(type, id) end # no api-access for this method @@ -108,7 +122,7 @@ module Reports LOGGER.info "deleting all reports of type '"+type.to_s+"'" check_report_type(type) - @persistance.list_reports(type).each{ |id| @persistance.delete_report(type, id) } + @@persistance.list_reports(type).each{ |id| @@persistance.delete_report(type, id) } end def parse_type( report_uri ) @@ -123,7 +137,7 @@ module Reports raise "invalid uri" unless report_uri.to_s =~/^#{@home_uri}.*/ id = report_uri.squeeze("/").split("/")[-1] - @persistance.check_report_id_format(id) + @@persistance.check_report_id_format(id) return id end @@ -151,6 +165,7 @@ module Reports cvs << v if v =~ /crossvalidation/ and !cvs.include?(v) end meta_data[:crossvalidation_uris] = cvs + meta_data end diff --git a/report/report_test.rb b/report/report_test.rb index 9ea1a89..5351c7d 100644 --- a/report/report_test.rb +++ b/report/report_test.rb @@ -23,8 +23,8 @@ class Reports::ApplicationTest < Test::Unit::TestCase # puts OpenTox::RestClientWrapper.post("http://localhost/validation/report/qmrf/1",{:content_type => "application/qmrf-xml"},data).to_s.chomp #get "/report/qmrf/1",nil,'HTTP_ACCEPT' => "application/qmrf-xml"#"application/rdf+xml"#"application/x-yaml" - get "/report/validation" # ?model=http://localhost/model/1" #,nil,'HTTP_ACCEPT' => "application/rdf+xml"#"application/x-yaml" - puts last_response.body.to_s +# get "/report/validation" # ?model=http://localhost/model/1" #,nil,'HTTP_ACCEPT' => "application/rdf+xml"#"application/x-yaml" +# puts last_response.body.to_s #Reports::XMLReport.generate_demo_xml_report.write_to #raise "stop" @@ -33,7 +33,7 @@ class Reports::ApplicationTest < Test::Unit::TestCase #puts uri #get uri - #get '/report/validation/1',nil,'HTTP_ACCEPT' => "text/html" + get '/report/validation/117',nil,'HTTP_ACCEPT' => "text/html" #post '/report/validation/1/format_html',:css_style_sheet=>"http://apps.ideaconsult.net:8180/ToxPredict/style/global.css" #post 'http://ot.validation.de/report/validation',:validation_uris=>"http://ot.validation.de/1" diff --git a/report/util.rb b/report/util.rb index db783b3..9844fd8 100644 --- a/report/util.rb +++ b/report/util.rb @@ -1,4 +1,3 @@ - # graph-files are generated in the tmp-dir before they are stored ENV['TMP_DIR'] = File.join(FileUtils.pwd,"reports","tmp") unless ENV['TMP_DIR'] @@ -15,6 +14,7 @@ class Array return self.collect{|word| word[prefix.size..-1]} end end + self end end diff --git a/report/validation_access.rb b/report/validation_access.rb index 7d318af..a0b6355 100644 --- a/report/validation_access.rb +++ b/report/validation_access.rb @@ -20,7 +20,7 @@ class Reports::ValidationAccess # yields predictions (Lib::OTPredictions) if available # - def get_predictions(validation) + def get_predictions(validation, task=nil) raise "not implemented" end @@ -32,12 +32,11 @@ class Reports::ValidationAccess # get domain/class values of prediction feature # - def get_prediction_feature_values(validation) + def get_class_domain(validation) raise "not implemented" end # is validation classification? - # def classification?(validation) raise "not implemented" end @@ -50,8 +49,8 @@ end class Reports::ValidationDB < Reports::ValidationAccess - def initialize - @model_store = {} + def initialize() + @model_store = {} end def resolve_cv_uris(validation_uris) @@ -59,6 +58,14 @@ class Reports::ValidationDB < Reports::ValidationAccess validation_uris.each do |u| if u.to_s =~ /.*\/crossvalidation\/[0-9]+/ cv_id = u.split("/")[-1].to_i + cv = nil + begin + cv = Lib::Crossvalidation.find( cv_id ) + rescue => ex + raise "could not access crossvalidation with id "+validation_id.to_s+", error-msg: "+ex.message + end + raise Reports::BadRequest.new("crossvalidation with id '"+cv_id.to_s+"' not found") unless cv + raise Reports::BadRequest.new("crossvalidation with id '"+cv_id.to_s+"' not finished") unless cv.finished res += Lib::Validation.find( :all, :conditions => { :crossvalidation_id => cv_id } ).collect{|v| v.validation_uri.to_s} else res += [u.to_s] @@ -67,7 +74,6 @@ class Reports::ValidationDB < Reports::ValidationAccess res end - def init_validation(validation, uri) raise Reports::BadRequest.new "not a validation uri: "+uri.to_s unless uri =~ /.*\/[0-9]+/ @@ -81,6 +87,7 @@ class Reports::ValidationDB < Reports::ValidationAccess raise "could not access validation with id "+validation_id.to_s+", error-msg: "+ex.message end raise Reports::BadRequest.new "no validation found with id "+validation_id.to_s unless v #+" and uri "+uri.to_s unless v + raise Reports::BadRequest.new "validation with id "+validation_id.to_s+" is not finished yet" unless v.finished (Lib::VAL_PROPS + Lib::VAL_CV_PROPS).each do |p| validation.send("#{p.to_s}=".to_sym, v.send(p)) @@ -103,12 +110,13 @@ class Reports::ValidationDB < Reports::ValidationAccess end end - def get_predictions(validation) - Lib::OTPredictions.new( validation.classification?, validation.test_dataset_uri, validation.test_target_dataset_uri, - validation.prediction_feature, validation.prediction_dataset_uri, validation.predicted_variable) + def get_predictions(validation, task=nil) + Lib::OTPredictions.new( validation.classification?, validation.test_dataset_uri, + validation.test_target_dataset_uri, validation.prediction_feature, validation.prediction_dataset_uri, + validation.predicted_variable, task) end - def get_prediction_feature_values( validation ) + def get_class_domain( validation ) OpenTox::Feature.domain( validation.prediction_feature ) end @@ -197,7 +205,7 @@ class Reports::ValidationWebservice < Reports::ValidationAccess end end - def get_predictions(validation) + def get_predictions(validation, task=nil) Lib::Predictions.new( validation.prediction_feature, validation.test_dataset_uri, validation.prediction_dataset_uri) end end @@ -283,7 +291,7 @@ class Reports::ValidationMockLayer < Reports::ValidationAccess #validation.CV_dataset_name = @datasets[validation.crossvalidation_id.to_i * NUM_FOLDS] end - def get_predictions(validation) + def get_predictions(validation, task=nil) p = Array.new c = Array.new diff --git a/report/validation_data.rb b/report/validation_data.rb index 0a25e87..bd04554 100644 --- a/report/validation_data.rb +++ b/report/validation_data.rb @@ -1,7 +1,7 @@ # the variance is computed when merging results for these attributes VAL_ATTR_VARIANCE = [ :area_under_roc, :percent_correct, :root_mean_squared_error, :mean_absolute_error, :r_square, :accuracy ] -VAL_ATTR_RANKING = [ :area_under_roc, :percent_correct, :true_positive_rate, :true_negative_rate, :accuracy ] +VAL_ATTR_RANKING = [ :area_under_roc, :percent_correct, :true_positive_rate, :true_negative_rate, :weighted_area_under_roc ] #:accuracy ] ATTR_NICE_NAME = {} @@ -20,10 +20,14 @@ class Object def to_nice_s if is_a?(Float) - if self>0.01 + if self==0 + return "0" + elsif abs>0.1 return "%.2f" % self + elsif abs>0.01 + return "%.3f" % self else - return self.to_s + return "%.2e" % self end end return collect{ |i| i.to_nice_s }.join(", ") if is_a?(Array) @@ -81,20 +85,26 @@ module Reports # call-seq: # get_predictions => Reports::Predictions # - def get_predictions - return @predictions if @predictions - unless @prediction_dataset_uri - LOGGER.info("no predictions available, prediction_dataset_uri not set") - return nil + def get_predictions( task=nil ) + if @predictions + task.progress(100) if task + @predictions + else + unless @prediction_dataset_uri + LOGGER.info("no predictions available, prediction_dataset_uri not set") + task.progress(100) if task + nil + else + @predictions = @@validation_access.get_predictions( self, task ) + end end - @predictions = @@validation_access.get_predictions( self ) end # returns the predictions feature values (i.e. the domain of the class attribute) # - def get_prediction_feature_values - return @prediction_feature_values if @prediction_feature_values - @prediction_feature_values = @@validation_access.get_prediction_feature_values(self) + def get_class_domain() + @class_domain = @@validation_access.get_class_domain(self) unless @class_domain + @class_domain end # is classification validation? cache to save resr-calls @@ -115,6 +125,24 @@ module Reports @@validation_access.init_cv(self) end + @@persistance = Reports::ReportService.persistance + + def validation_report_uri + #puts "searching for validation report: "+self.validation_uri.to_s + return @validation_report_uri if @validation_report_uri!=nil + ids = @@persistance.list_reports("validation",{:validation=>validation_uri }) + @validation_report_uri = Reports::ReportService.instance.get_uri("validation",ids[-1]) if ids and ids.size>0 + end + + def cv_report_uri + #puts "searching for cv report: "+self.crossvalidation_uri.to_s + return @cv_report_uri if @cv_report_uri!=nil + raise "no cv uri "+to_yaml unless self.crossvalidation_uri + ids = @@persistance.list_reports("crossvalidation",{:crossvalidation=>self.crossvalidation_uri.to_s }) + #puts "-> "+ids.inspect + @cv_report_uri = Reports::ReportService.instance.get_uri("crossvalidation",ids[-1]) if ids and ids.size>0 + end + def clone_validation new_val = clone VAL_ATTR_VARIANCE.each { |a| new_val.send((a.to_s+"_variance=").to_sym,nil) } @@ -134,6 +162,13 @@ module Reports @validations = Array.new validation_uris.each{|u| @validations.push(Reports::Validation.new(u))} if validation_uris end + + + def self.create(validations) + set = ValidationSet.new + validations.each{ |v| set.validations.push(v) } + set + end def get(index) return @validations[index] @@ -194,20 +229,34 @@ module Reports return val end - def get_true_prediction_feature_value - if all_classification? - class_values = get_prediction_feature_values - if class_values.size == 2 - (0..1).each do |i| - return class_values[i] if (class_values[i].to_s.downcase == "true" || class_values[i].to_s.downcase == "active") - end - end - end - return nil +# def get_true_prediction_feature_value +# if all_classification? +# class_values = get_class_domain +# if class_values.size == 2 +# (0..1).each do |i| +# return class_values[i] if (class_values[i].to_s.downcase == "true" || class_values[i].to_s.downcase == "active") +# end +# end +# end +# return nil +# end + + def get_class_domain( ) + return unique_value("get_class_domain") end - def get_prediction_feature_values - return unique_value("get_prediction_feature_values") + def get_domain_for_attr( attribute ) + class_domain = get_class_domain() + if Lib::Validation.classification_property?(attribute) and + !Lib::Validation.depends_on_class_value?(attribute) + [ nil ] + elsif Lib::Validation.classification_property?(attribute) and + class_domain.size==2 and + Lib::Validation.complement_exists?(attribute) + [ class_domain[0] ] + else + class_domain + end end # checks weather all validations are classification validations @@ -246,6 +295,39 @@ module Reports return new_set end + def to_table( attribute_col, attribute_row, attribute_val) + + row_values = get_values(attribute_row) + #puts row_values.inspect + col_values = get_values(attribute_col) + #puts col_values.inspect + + cell_values = {} + row_values.each do |row| + col_values.each do |col| + val = nil + @validations.each do |v| + if v.send(attribute_row)==row and v.send(attribute_col)==col + raise "two validation have equal row and column values"if val!=nil + val = v.send(attribute_val).to_nice_s + end + end + cell_values[row] = [] if cell_values[row]==nil + cell_values[row] << val + end + end + #puts cell_values.inspect + + table = [] + table << [ "" ] + col_values + row_values.each do |row| + table << [ row ] + cell_values[row] + end + #puts table.inspect + + table + end + # returns an array, with values for __attributes__, that can be use for a table # * first row is header row # * other rows are values @@ -253,7 +335,7 @@ module Reports # call-seq: # to_array(attributes, remove_nil_attributes) => array # - def to_array(attributes, remove_nil_attributes=true, true_class_value=nil) + def to_array(attributes, remove_nil_attributes=true) array = Array.new array.push(attributes.collect{|a| a.to_s.nice_attr}) attribute_not_nil = Array.new(attributes.size) @@ -263,19 +345,43 @@ module Reports if VAL_ATTR_VARIANCE.index(a) variance = v.send( (a.to_s+"_variance").to_sym ) end - variance = " +- "+variance.to_nice_s if variance + + #variance = " +- "+variance.to_nice_s if variance attribute_not_nil[index] = true if remove_nil_attributes and v.send(a)!=nil index += 1 val = v.send(a) - val = val[true_class_value] if true_class_value!=nil && val.is_a?(Hash) && Lib::VAL_CLASS_PROPS_PER_CLASS_COMPLEMENT_EXISTS.index(a)!=nil - val.to_nice_s + variance.to_s + + class_domain = get_domain_for_attr(a) + # get domain for classification attribute, i.e. ["true","false"] + if class_domain.size==1 && class_domain[0]!=nil + # or the attribute has a complementary value, i.e. true_positive_rate + # -> domain is reduced to one class value + raise "illegal state" unless (val.is_a?(Hash)) + val = val[class_domain[0]] + end + + if variance + if (val.is_a?(Array)) + raise "not implemented" + elsif (val.is_a?(Hash)) + val.collect{ |i,j| i.to_nice_s+": "+j.to_nice_s + " +- " + + variance[i].to_nice_s }.join(", ") + else + val.to_nice_s + " +- " + variance.to_nice_s + end + else + val.to_nice_s + end + end) end + if remove_nil_attributes #delete in reverse order to avoid shifting of indices (0..attribute_not_nil.size-1).to_a.reverse.each do |i| array.each{|row| row.delete_at(i)} unless attribute_not_nil[i] end end + return array end @@ -294,6 +400,7 @@ module Reports #compute grouping grouping = Reports::Util.group(@validations, equal_attributes) + #puts "groups "+grouping.size.to_s Lib::MergeObjects.register_merge_attributes( Reports::Validation, Lib::VAL_MERGE_AVG,Lib::VAL_MERGE_SUM,Lib::VAL_MERGE_GENERAL) unless @@ -310,6 +417,10 @@ module Reports return new_set end + def sort(attribute, ascending=true) + @validations.sort!{ |a,b| a.send(attribute).to_s <=> b.send(attribute).to_s } + end + # creates a new validaiton set, that contains a ranking for __ranking_attribute__ # (i.e. for ranking attribute :acc, :acc_ranking is calculated) # all validation with equal values for __equal_attributes__ are compared @@ -319,7 +430,8 @@ module Reports # compute_ranking(equal_attributes, ranking_attribute) => array # def compute_ranking(equal_attributes, ranking_attribute, class_value=nil ) - + + #puts "compute_ranking("+equal_attributes.inspect+", "+ranking_attribute.inspect+", "+class_value.to_s+" )" new_set = Reports::ValidationSet.new (0..@validations.size-1).each do |i| new_set.validations.push(@validations[i].clone_validation) @@ -337,14 +449,16 @@ module Reports raise "no value for class value "+class_value.class.to_s+" "+class_value.to_s+" in hash "+val.inspect.to_s unless val.has_key?(class_value) val = val[class_value] else - raise "is a hash "+ranking_attribute+", specify class value plz" + raise "value for '"+ranking_attribute.to_s+"' is a hash, specify class value plz" end end rank_hash[i] = val end + #puts rank_hash.inspect # sort group accrording to second value (= ranking value) rank_array = rank_hash.sort { |a, b| b[1] <=> a[1] } + #puts rank_array.inspect # create ranks array ranks = Array.new @@ -370,6 +484,7 @@ module Reports end end end + #puts ranks.inspect # set rank as validation value (0..rank_array.size-1).each do |j| diff --git a/report/xml_report.rb b/report/xml_report.rb index 110c2a9..d280345 100644 --- a/report/xml_report.rb +++ b/report/xml_report.rb @@ -1,3 +1,6 @@ +#['rubygems', 'rexml/document' ].each do |g| +# require g +#end require "report/xml_report_util.rb" @@ -18,13 +21,23 @@ module Reports class XMLReport include REXML + def self.dtd_directory + if $sinatra + $sinatra.url_for('/'+ENV['DOCBOOK_DIRECTORY']+'/'+ENV['REPORT_DTD'], :full) + else + f = File.expand_path(File.join(ENV['DOCBOOK_DIRECTORY'],ENV['REPORT_DTD'])) + raise "cannot find dtd" unless File.exist?(f) + f + end + end + # create new xmlreport def initialize(title, pubdate=nil, author_firstname = nil, author_surname = nil) @doc = Document.new decl = XMLDecl.new @doc << decl - type = DocType.new('article PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "'+$sinatra.url_for('/'+ENV['DOCBOOK_DIRECTORY']+'/'+ENV['REPORT_DTD'], :full)+'"') + type = DocType.new('article PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "'+XMLReport.dtd_directory+'"') @doc << type @root = Element.new("article") @@ -94,12 +107,20 @@ module Reports media = Element.new("mediaobject") image = Element.new("imageobject") imagedata = Reports::XMLReportUtil.attribute_element("imagedata", - {"fileref" => path, "format"=>filetype, "contentwidth" => "6in", "contentdepth"=> "4in" + {"fileref" => path, "format"=>filetype, "contentwidth" => "100%", + #"contentdepth"=> "4in" })#"width" => "6in", "height" => "5in"}) #"contentwidth" => "100%"}) #imagedata = Reports::XMLReportUtil.attribute_element("imagedata",{"width" => "6in", "fileref" => path, "format"=>filetype}) @resource_path_elements[imagedata] = "fileref" image << imagedata + media << image + +# ulink = Element.new("ulink") +# ulink.add_attributes({"url" => "http://google.de"}) +# ulink << image +# media << ulink + media << Reports::XMLReportUtil.text_element("caption", caption) if caption figure << media element << figure diff --git a/saxonhe9-2-0-3j/doc/img/saxonica_logo.gif b/saxonhe9-2-0-3j/doc/img/saxonica_logo.gif deleted file mode 100644 index 8f0bd8d..0000000 Binary files a/saxonhe9-2-0-3j/doc/img/saxonica_logo.gif and /dev/null differ diff --git a/saxonhe9-2-0-3j/doc/index.html b/saxonhe9-2-0-3j/doc/index.html deleted file mode 100644 index ce4293a..0000000 --- a/saxonhe9-2-0-3j/doc/index.html +++ /dev/null @@ -1,56 +0,0 @@ - - - - - Saxonica: XSLT and XQuery Processing: Welcome - - - - - - - -
-
-
-
-
Saxonica.com
- -
-

Welcome to Saxon

- - -

Online Documentation

- -

Saxon documentation for the current release is available online:

- - - - -

Downloads

- -

Saxon documentation, together with source code and sample applications - can also be downloaded, both for the current release and for earlier releases. -

- -

The same file saxon-resources8-N.zip covers both Saxon products - (Saxon-B and Saxon-SA), and both platforms (Java and .NET).

- -

The file also contains sample applications and Saxon-B source code.

- - - - -
- - \ No newline at end of file diff --git a/saxonhe9-2-0-3j/doc/saxondocs.css b/saxonhe9-2-0-3j/doc/saxondocs.css deleted file mode 100644 index 681c337..0000000 --- a/saxonhe9-2-0-3j/doc/saxondocs.css +++ /dev/null @@ -1,228 +0,0 @@ - - -/* -Text blue: #3D5B96 -Dark blue: #c1cede -Mid blue: #e4eef0 -Light blue: #f6fffb -mid green #B1CCC7 -rust #96433D -*/ - -/* used for frameset holders */ -.bgnd { - margin-top:0; - margin-left:0; - background: #f6fffb; - } - -/* used for menu */ - -.menu { - background: #f6fffb; - margin-top:20; - margin-left:40; - SCROLLBAR-FACE-COLOR: #c1cede; - SCROLLBAR-HIGHLIGHT-COLOR: #e4eef0; - SCROLLBAR-SHADOW-COLOR: #e4eef0; - SCROLLBAR-ARROW-COLOR: #f6fffb; - SCROLLBAR-BASE-COLOR: #e4eef0; -} - -/* used for content pages */ - -.main { - background: #e4eef0; - margin-top:10px; - margin-left:5px; - margin-right:5px; - margin-bottom:20px; - SCROLLBAR-FACE-COLOR: #c1cede; - SCROLLBAR-HIGHLIGHT-COLOR: #e4eef0; - SCROLLBAR-SHADOW-COLOR: #e4eef0; - SCROLLBAR-ARROW-COLOR: #f6fffb; - SCROLLBAR-BASE-COLOR: #e4eef0; -} - -/* used for menu links */ - -a { - font-family: Verdana, Arial, Helvetica, sans-serif; - font-size: 8pt; - font-style:normal; - color: #3D5B96; - font-weight: normal; - text-decoration: none; -} - -/* used for in body links */ - -a.bodylink { - font-family: Verdana, Arial, Helvetica, sans-serif; - font-size: 9pt; - font-style:normal; - color: #3D5B96; - font-weight: normal; - text-decoration: underline; -} - -/* used for table of contents level 1 */ - -a.toc1 { - font-family: Verdana, Arial, Helvetica, sans-serif; - font-size: 12pt; - font-style:normal; - color: #3D5B96; - font-weight: bold; - text-decoration: none; -} - -/* used for table of contents level 2 */ - -a.toc2 { - font-family: Verdana, Arial, Helvetica, sans-serif; - font-size: 10pt; - font-style:normal; - color: #3D5B96; - font-weight: normal; - text-decoration: none; -} - -/* used for menu heading */ -.title { - font-family: Verdana, Arial, Helvetica, sans-serif; - font-size: 10pt; - font-style:normal; - color: #3D5B96; - font-weight: bold; - text-decoration: none; - line-height: 1.3em; -} - -/* used for main page headings */ - - -h1 { - font-family: Verdana, Arial, Helvetica, sans-serif; - font-size: 14pt; - font-style: normal; - color: #3D5B96; - font-weight: bold; - text-decoration: none; - } - -/* used for subheads in pref. to H2 etc, to limit underlining width */ - -.subhead { - font-family: Verdana, Arial, Helvetica, sans-serif; - font-size: 10pt; - font-style: normal; - color: #3D5B96; - font-weight: bold; - text-decoration: none; - border-bottom : thin dashed #3D5B96; - padding-right : 5px; -} - -/* used for standard text */ - -p { - font-family: Verdana, Arial, Helvetica, sans-serif; - font-size: 9pt; - font-style: normal; - color: #3D5B96; - font-weight: normal; - text-decoration: none; - line-height: 1.3em; - padding-right:15px; -} - -code { - font-family: lucida sans typewriter, courier, monospace; - font-size: 8pt; - font-style: normal; - font-weight: normal; - text-decoration: none; - line-height: 1.3em; -} - -ul { - font-family: Verdana, Arial, Helvetica, sans-serif; - font-size: 9pt; - font-style: normal; - color: #3D5B96; - font-weight: normal; - text-decoration: none; -} - -li { - font-family: Verdana, Arial, Helvetica, sans-serif; - font-size: 9pt; - font-style: normal; - color: #3D5B96; - font-weight: normal; - -} - -/* used for text in boxed areas */ - -.boxed { - font-family: Verdana, Arial, Helvetica, sans-serif; - font-size: 8pt; - font-style: normal; - color: #96433D; - font-weight: bold; - text-decoration: none; - margin-top:5px; - margin-bottom:5px; -} - -/* used for example code */ - -.codeblock { - background: #B1CCC7; - /*background: #e4eef0;*/ - font-family: lucida sans typewriter, courier, monospace; - font-size: 8pt; - font-style: normal; - color: #96433D; - font-weight: normal; - text-decoration: none; - padding-right:15px; -} - -/* used for example commands */ - -.command { - font-size: 8pt; - font-style: normal; - color: #96433D; - font-weight: bold; - text-decoration: none; - padding-right:15px; -} - - - -/* used for links in boxed areas */ - -a.rust { - font-family: Verdana, Arial, Helvetica, sans-serif; - font-size: 8pt; - font-style:normal; - color: #96433D; - font-weight: bold; - text-decoration: underline; -} - -/* used for links at the end of a page */ - -a.nav { - font-family: Verdana, Arial, Helvetica, sans-serif; - font-size: 8pt; - font-style:normal; - color: #96433D; - font-weight: bold; -} - - diff --git a/saxonhe9-2-0-3j/notices/APACHE-ANT.txt b/saxonhe9-2-0-3j/notices/APACHE-ANT.txt deleted file mode 100644 index fc3ed76..0000000 --- a/saxonhe9-2-0-3j/notices/APACHE-ANT.txt +++ /dev/null @@ -1,13 +0,0 @@ -Apache Ant -Copyright 1999-2006 The Apache Software Foundation - -This product includes software developed by -The Apache Software Foundation (http://www.apache.org/). - -This product includes also software developed by : - - the W3C consortium (http://www.w3c.org) , - - the SAX project (http://www.saxproject.org) - -The task is based on code Copyright (c) 2002, Landmark -Graphics Corp that has been kindly donated to the Apache Software -Foundation. diff --git a/saxonhe9-2-0-3j/notices/APACHE-RESOLVER.txt b/saxonhe9-2-0-3j/notices/APACHE-RESOLVER.txt deleted file mode 100644 index 214dadd..0000000 --- a/saxonhe9-2-0-3j/notices/APACHE-RESOLVER.txt +++ /dev/null @@ -1,9 +0,0 @@ -Apache XML Commons Resolver -Copyright 2006 The Apache Software Foundation. - -This product includes software developed at -The Apache Software Foundation http://www.apache.org/ - -Portions of this code are derived from classes placed in the -public domain by Arbortext on 10 Apr 2000. See: -http://www.arbortext.com/customer_support/updates_and_technical_notes/catalogs/docs/README.htm diff --git a/saxonhe9-2-0-3j/notices/APACHE-XERCES.txt b/saxonhe9-2-0-3j/notices/APACHE-XERCES.txt deleted file mode 100644 index e99c2e6..0000000 --- a/saxonhe9-2-0-3j/notices/APACHE-XERCES.txt +++ /dev/null @@ -1,17 +0,0 @@ - ========================================================================= - == NOTICE file corresponding to section 4(d) of the Apache License, == - == Version 2.0, in this case for the Apache Xerces Java distribution. == - ========================================================================= - - Apache Xerces Java - Copyright 1999-2006 The Apache Software Foundation - - This product includes software developed at - The Apache Software Foundation (http://www.apache.org/). - - Portions of this software were originally based on the following: - - software copyright (c) 1999, IBM Corporation., http://www.ibm.com. - - software copyright (c) 1999, Sun Microsystems., http://www.sun.com. - - voluntary contributions made by Paul Eng on behalf of the - Apache Software Foundation that were originally developed at iClick, Inc., - software copyright (c) 1999. \ No newline at end of file diff --git a/saxonhe9-2-0-3j/notices/CERN.txt b/saxonhe9-2-0-3j/notices/CERN.txt deleted file mode 100644 index f77ab1a..0000000 --- a/saxonhe9-2-0-3j/notices/CERN.txt +++ /dev/null @@ -1,7 +0,0 @@ -Copyright © 1999 CERN - European Organization for Nuclear Research.

- -Permission to use, copy, modify, distribute and sell this software and its documentation for any purpose -is hereby granted without fee, provided that the above copyright notice appear in all copies and -that both that copyright notice and this permission notice appear in supporting documentation. -CERN makes no representations about the suitability of this software for any purpose. -It is provided "as is" without expressed or implied warranty. \ No newline at end of file diff --git a/saxonhe9-2-0-3j/notices/FRIJTERS.txt b/saxonhe9-2-0-3j/notices/FRIJTERS.txt deleted file mode 100644 index 568f0bc..0000000 --- a/saxonhe9-2-0-3j/notices/FRIJTERS.txt +++ /dev/null @@ -1,22 +0,0 @@ -Copyright (C) 2002-2007 Jeroen Frijters - - This software is provided 'as-is', without any express or implied - warranty. In no event will the authors be held liable for any damages - arising from the use of this software. - - Permission is granted to anyone to use this software for any purpose, - including commercial applications, and to alter it and redistribute it - freely, subject to the following restrictions: - - 1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. - - 2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. - - 3. This notice may not be removed or altered from any source distribution. - - Jeroen Frijters - jeroen@frijters.net diff --git a/saxonhe9-2-0-3j/notices/GPL+CLASSPATH.txt b/saxonhe9-2-0-3j/notices/GPL+CLASSPATH.txt deleted file mode 100644 index eeab58c..0000000 --- a/saxonhe9-2-0-3j/notices/GPL+CLASSPATH.txt +++ /dev/null @@ -1,347 +0,0 @@ -The GNU General Public License (GPL) - -Version 2, June 1991 - -Copyright (C) 1989, 1991 Free Software Foundation, Inc. -59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - -Everyone is permitted to copy and distribute verbatim copies of this license -document, but changing it is not allowed. - -Preamble - -The licenses for most software are designed to take away your freedom to share -and change it. By contrast, the GNU General Public License is intended to -guarantee your freedom to share and change free software--to make sure the -software is free for all its users. This General Public License applies to -most of the Free Software Foundation's software and to any other program whose -authors commit to using it. (Some other Free Software Foundation software is -covered by the GNU Library General Public License instead.) You can apply it to -your programs, too. - -When we speak of free software, we are referring to freedom, not price. Our -General Public Licenses are designed to make sure that you have the freedom to -distribute copies of free software (and charge for this service if you wish), -that you receive source code or can get it if you want it, that you can change -the software or use pieces of it in new free programs; and that you know you -can do these things. - -To protect your rights, we need to make restrictions that forbid anyone to deny -you these rights or to ask you to surrender the rights. These restrictions -translate to certain responsibilities for you if you distribute copies of the -software, or if you modify it. - -For example, if you distribute copies of such a program, whether gratis or for -a fee, you must give the recipients all the rights that you have. You must -make sure that they, too, receive or can get the source code. And you must -show them these terms so they know their rights. - -We protect your rights with two steps: (1) copyright the software, and (2) -offer you this license which gives you legal permission to copy, distribute -and/or modify the software. - -Also, for each author's protection and ours, we want to make certain that -everyone understands that there is no warranty for this free software. If the -software is modified by someone else and passed on, we want its recipients to -know that what they have is not the original, so that any problems introduced -by others will not reflect on the original authors' reputations. - -Finally, any free program is threatened constantly by software patents. We -wish to avoid the danger that redistributors of a free program will -individually obtain patent licenses, in effect making the program proprietary. -To prevent this, we have made it clear that any patent must be licensed for -everyone's free use or not licensed at all. - -The precise terms and conditions for copying, distribution and modification -follow. - -TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - -0. This License applies to any program or other work which contains a notice -placed by the copyright holder saying it may be distributed under the terms of -this General Public License. The "Program", below, refers to any such program -or work, and a "work based on the Program" means either the Program or any -derivative work under copyright law: that is to say, a work containing the -Program or a portion of it, either verbatim or with modifications and/or -translated into another language. (Hereinafter, translation is included -without limitation in the term "modification".) Each licensee is addressed as -"you". - -Activities other than copying, distribution and modification are not covered by -this License; they are outside its scope. The act of running the Program is -not restricted, and the output from the Program is covered only if its contents -constitute a work based on the Program (independent of having been made by -running the Program). Whether that is true depends on what the Program does. - -1. You may copy and distribute verbatim copies of the Program's source code as -you receive it, in any medium, provided that you conspicuously and -appropriately publish on each copy an appropriate copyright notice and -disclaimer of warranty; keep intact all the notices that refer to this License -and to the absence of any warranty; and give any other recipients of the -Program a copy of this License along with the Program. - -You may charge a fee for the physical act of transferring a copy, and you may -at your option offer warranty protection in exchange for a fee. - -2. You may modify your copy or copies of the Program or any portion of it, thus -forming a work based on the Program, and copy and distribute such modifications -or work under the terms of Section 1 above, provided that you also meet all of -these conditions: - - a) You must cause the modified files to carry prominent notices stating - that you changed the files and the date of any change. - - b) You must cause any work that you distribute or publish, that in whole or - in part contains or is derived from the Program or any part thereof, to be - licensed as a whole at no charge to all third parties under the terms of - this License. - - c) If the modified program normally reads commands interactively when run, - you must cause it, when started running for such interactive use in the - most ordinary way, to print or display an announcement including an - appropriate copyright notice and a notice that there is no warranty (or - else, saying that you provide a warranty) and that users may redistribute - the program under these conditions, and telling the user how to view a copy - of this License. (Exception: if the Program itself is interactive but does - not normally print such an announcement, your work based on the Program is - not required to print an announcement.) - -These requirements apply to the modified work as a whole. If identifiable -sections of that work are not derived from the Program, and can be reasonably -considered independent and separate works in themselves, then this License, and -its terms, do not apply to those sections when you distribute them as separate -works. But when you distribute the same sections as part of a whole which is a -work based on the Program, the distribution of the whole must be on the terms -of this License, whose permissions for other licensees extend to the entire -whole, and thus to each and every part regardless of who wrote it. - -Thus, it is not the intent of this section to claim rights or contest your -rights to work written entirely by you; rather, the intent is to exercise the -right to control the distribution of derivative or collective works based on -the Program. - -In addition, mere aggregation of another work not based on the Program with the -Program (or with a work based on the Program) on a volume of a storage or -distribution medium does not bring the other work under the scope of this -License. - -3. You may copy and distribute the Program (or a work based on it, under -Section 2) in object code or executable form under the terms of Sections 1 and -2 above provided that you also do one of the following: - - a) Accompany it with the complete corresponding machine-readable source - code, which must be distributed under the terms of Sections 1 and 2 above - on a medium customarily used for software interchange; or, - - b) Accompany it with a written offer, valid for at least three years, to - give any third party, for a charge no more than your cost of physically - performing source distribution, a complete machine-readable copy of the - corresponding source code, to be distributed under the terms of Sections 1 - and 2 above on a medium customarily used for software interchange; or, - - c) Accompany it with the information you received as to the offer to - distribute corresponding source code. (This alternative is allowed only - for noncommercial distribution and only if you received the program in - object code or executable form with such an offer, in accord with - Subsection b above.) - -The source code for a work means the preferred form of the work for making -modifications to it. For an executable work, complete source code means all -the source code for all modules it contains, plus any associated interface -definition files, plus the scripts used to control compilation and installation -of the executable. However, as a special exception, the source code -distributed need not include anything that is normally distributed (in either -source or binary form) with the major components (compiler, kernel, and so on) -of the operating system on which the executable runs, unless that component -itself accompanies the executable. - -If distribution of executable or object code is made by offering access to copy -from a designated place, then offering equivalent access to copy the source -code from the same place counts as distribution of the source code, even though -third parties are not compelled to copy the source along with the object code. - -4. You may not copy, modify, sublicense, or distribute the Program except as -expressly provided under this License. Any attempt otherwise to copy, modify, -sublicense or distribute the Program is void, and will automatically terminate -your rights under this License. However, parties who have received copies, or -rights, from you under this License will not have their licenses terminated so -long as such parties remain in full compliance. - -5. You are not required to accept this License, since you have not signed it. -However, nothing else grants you permission to modify or distribute the Program -or its derivative works. These actions are prohibited by law if you do not -accept this License. Therefore, by modifying or distributing the Program (or -any work based on the Program), you indicate your acceptance of this License to -do so, and all its terms and conditions for copying, distributing or modifying -the Program or works based on it. - -6. Each time you redistribute the Program (or any work based on the Program), -the recipient automatically receives a license from the original licensor to -copy, distribute or modify the Program subject to these terms and conditions. -You may not impose any further restrictions on the recipients' exercise of the -rights granted herein. You are not responsible for enforcing compliance by -third parties to this License. - -7. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), conditions -are imposed on you (whether by court order, agreement or otherwise) that -contradict the conditions of this License, they do not excuse you from the -conditions of this License. If you cannot distribute so as to satisfy -simultaneously your obligations under this License and any other pertinent -obligations, then as a consequence you may not distribute the Program at all. -For example, if a patent license would not permit royalty-free redistribution -of the Program by all those who receive copies directly or indirectly through -you, then the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Program. - -If any portion of this section is held invalid or unenforceable under any -particular circumstance, the balance of the section is intended to apply and -the section as a whole is intended to apply in other circumstances. - -It is not the purpose of this section to induce you to infringe any patents or -other property right claims or to contest validity of any such claims; this -section has the sole purpose of protecting the integrity of the free software -distribution system, which is implemented by public license practices. Many -people have made generous contributions to the wide range of software -distributed through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing to -distribute software through any other system and a licensee cannot impose that -choice. - -This section is intended to make thoroughly clear what is believed to be a -consequence of the rest of this License. - -8. If the distribution and/or use of the Program is restricted in certain -countries either by patents or by copyrighted interfaces, the original -copyright holder who places the Program under this License may add an explicit -geographical distribution limitation excluding those countries, so that -distribution is permitted only in or among countries not thus excluded. In -such case, this License incorporates the limitation as if written in the body -of this License. - -9. The Free Software Foundation may publish revised and/or new versions of the -General Public License from time to time. Such new versions will be similar in -spirit to the present version, but may differ in detail to address new problems -or concerns. - -Each version is given a distinguishing version number. If the Program -specifies a version number of this License which applies to it and "any later -version", you have the option of following the terms and conditions either of -that version or of any later version published by the Free Software Foundation. -If the Program does not specify a version number of this License, you may -choose any version ever published by the Free Software Foundation. - -10. If you wish to incorporate parts of the Program into other free programs -whose distribution conditions are different, write to the author to ask for -permission. For software which is copyrighted by the Free Software Foundation, -write to the Free Software Foundation; we sometimes make exceptions for this. -Our decision will be guided by the two goals of preserving the free status of -all derivatives of our free software and of promoting the sharing and reuse of -software generally. - -NO WARRANTY - -11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR -THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE -STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE -PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, -INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND -PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, -YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - -12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL -ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE -PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY -GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR -INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA -BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A -FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER -OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -END OF TERMS AND CONDITIONS - -How to Apply These Terms to Your New Programs - -If you develop a new program, and you want it to be of the greatest possible -use to the public, the best way to achieve this is to make it free software -which everyone can redistribute and change under these terms. - -To do so, attach the following notices to the program. It is safest to attach -them to the start of each source file to most effectively convey the exclusion -of warranty; and each file should have at least the "copyright" line and a -pointer to where the full notice is found. - - One line to give the program's name and a brief idea of what it does. - - Copyright (C) - - This program is free software; you can redistribute it and/or modify it - under the terms of the GNU General Public License as published by the Free - Software Foundation; either version 2 of the License, or (at your option) - any later version. - - This program is distributed in the hope that it will be useful, but WITHOUT - ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for - more details. - - You should have received a copy of the GNU General Public License along - with this program; if not, write to the Free Software Foundation, Inc., 59 - Temple Place, Suite 330, Boston, MA 02111-1307 USA - -Also add information on how to contact you by electronic and paper mail. - -If the program is interactive, make it output a short notice like this when it -starts in an interactive mode: - - Gnomovision version 69, Copyright (C) year name of author Gnomovision comes - with ABSOLUTELY NO WARRANTY; for details type 'show w'. This is free - software, and you are welcome to redistribute it under certain conditions; - type 'show c' for details. - -The hypothetical commands 'show w' and 'show c' should show the appropriate -parts of the General Public License. Of course, the commands you use may be -called something other than 'show w' and 'show c'; they could even be -mouse-clicks or menu items--whatever suits your program. - -You should also get your employer (if you work as a programmer) or your school, -if any, to sign a "copyright disclaimer" for the program, if necessary. Here -is a sample; alter the names: - - Yoyodyne, Inc., hereby disclaims all copyright interest in the program - 'Gnomovision' (which makes passes at compilers) written by James Hacker. - - signature of Ty Coon, 1 April 1989 - - Ty Coon, President of Vice - -This General Public License does not permit incorporating your program into -proprietary programs. If your program is a subroutine library, you may -consider it more useful to permit linking proprietary applications with the -library. If this is what you want to do, use the GNU Library General Public -License instead of this License. - - -"CLASSPATH" EXCEPTION TO THE GPL - -Certain source files distributed by Sun Microsystems, Inc. are subject to -the following clarification and special exception to the GPL, but only where -Sun has expressly included in the particular source file's header the words -"Sun designates this particular file as subject to the "Classpath" exception -as provided by Sun in the LICENSE file that accompanied this code." - - Linking this library statically or dynamically with other modules is making - a combined work based on this library. Thus, the terms and conditions of - the GNU General Public License cover the whole combination. - - As a special exception, the copyright holders of this library give you - permission to link this library with independent modules to produce an - executable, regardless of the license terms of these independent modules, - and to copy and distribute the resulting executable under terms of your - choice, provided that you also meet, for each linked independent module, - the terms and conditions of the license of that module. An independent - module is a module which is not derived from or based on this library. If - you modify this library, you may extend this exception to your version of - the library, but you are not obligated to do so. If you do not wish to do - so, delete this exception statement from your version. diff --git a/saxonhe9-2-0-3j/notices/JAMESCLARK.txt b/saxonhe9-2-0-3j/notices/JAMESCLARK.txt deleted file mode 100644 index b3ffc4e..0000000 --- a/saxonhe9-2-0-3j/notices/JAMESCLARK.txt +++ /dev/null @@ -1,25 +0,0 @@ -Copyright (c) 1998, 1999 James Clark - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND, EXPRESS -OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL JAMES CLARK BE LIABLE FOR ANY CLAIM, DAMAGES OR -OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, -ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR -OTHER DEALINGS IN THE SOFTWARE. - -Except as contained in this notice, the name of James Clark shall -not be used in advertising or otherwise to promote the sale, use or -other dealings in this Software without prior written authorization -from James Clark. diff --git a/saxonhe9-2-0-3j/notices/LEGAL.txt b/saxonhe9-2-0-3j/notices/LEGAL.txt deleted file mode 100644 index 8e2a59b..0000000 --- a/saxonhe9-2-0-3j/notices/LEGAL.txt +++ /dev/null @@ -1,33 +0,0 @@ -LEGAL NOTICE - -This notice is issued to fulfil the requirements of the Mozilla Public License version 1.0 ("MPL 1.0") -sections 3.4(a) and 3.6. MPL 1.0 can be found at http://www.mozilla.org/MPL/MPL-1.0.html. - -Section 3.4(a) of MPL 1.0 states that any third party intellectual property rights in particular -functionality or code must be notified in a text file named LEGAL that is issued with the source code. Saxon -includes a number of such third party components, and the relevant claims are included in notices included -in the same directory as this notice. Although MPL 1.0 requires this notice to be included only with source -code, some of the third parties may also require notices to be included with executable code. Therefore, Saxon -executable code must not be distributed separately from this notice and all the accompanying third -party notices. The term "Distribution" here includes making the code available for download, and its -inclusion in download repositories such as Maven. - -Section 3.6 of MPL 1.0 states: - -You may distribute Covered Code in Executable form only if the requirements of Section 3.1-3.5 have -been met for that Covered Code, and if You include a notice stating that the Source Code version of -the Covered Code is available under the terms of this License, including a description of how and -where You have fulfilled the obligations of Section 3.2. - -Section 3.2 requires the Source Code of Covered Code to be made available via an accepted Electronic -Distribution Mechanism. - -The Source Code version of the Covered Code (that is, the source code of Saxon-B) is available under the -terms of the Mozilla Public License version 1.0, and may be obtained from the Subversion repository -for the Saxon project on SourceForge, at https://sourceforge.net/svn/?group_id=29872. -The precise version of the Subversion source for a particular Saxon maintenance release can be -determined by referring to the release notes for the particular release in the SourceForge download area. - -Note that MPL 1.0 requires that any modifications to this source code must be made available under the terms -of the MPL "to anyone to whom you made an executable version available". As a courtesy, it is also requested -that you make such modifications available to Saxonica Limited. \ No newline at end of file diff --git a/saxonhe9-2-0-3j/notices/LICENSE.txt b/saxonhe9-2-0-3j/notices/LICENSE.txt deleted file mode 100644 index c57dd4c..0000000 --- a/saxonhe9-2-0-3j/notices/LICENSE.txt +++ /dev/null @@ -1,15 +0,0 @@ -The contents of these file are subject to the Mozilla Public License Version 1.0 (the "License"); -you may not use these files except in compliance with the License. You may obtain a copy of the -License at http://www.mozilla.org/MPL/ - -Software distributed under the License is distributed on an "AS IS" basis, -WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the -specific language governing rights and limitations under the License. - -The Original Code is all Saxon modules labelled with a notice referring to this license. - -The Initial Developer of the Original Code is Michael Kay, except where otherwise specified in an individual module. - -Portions created by other named contributors are copyright as identified in the relevant module. All Rights Reserved. - -Contributor(s) are listed in the documentation: see notices/contributors. \ No newline at end of file diff --git a/saxonhe9-2-0-3j/notices/THAI.txt b/saxonhe9-2-0-3j/notices/THAI.txt deleted file mode 100644 index ccc7e42..0000000 --- a/saxonhe9-2-0-3j/notices/THAI.txt +++ /dev/null @@ -1,31 +0,0 @@ -Copyright (c) 2001-2003 Thai Open Source Software Center Ltd -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - Neither the name of the Thai Open Source Software Center Ltd nor - the names of its contributors may be used to endorse or promote - products derived from this software without specific prior written - permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR -CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, -EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/saxonhe9-2-0-3j/notices/UNICODE.txt b/saxonhe9-2-0-3j/notices/UNICODE.txt deleted file mode 100644 index 58f0484..0000000 --- a/saxonhe9-2-0-3j/notices/UNICODE.txt +++ /dev/null @@ -1,29 +0,0 @@ -COPYRIGHT AND PERMISSION NOTICE -Copyright © 1991-2007 Unicode, Inc. All rights reserved. Distributed under the Terms of Use -in http://www.unicode.org/copyright.html. - -Permission is hereby granted, free of charge, to any person obtaining a copy of the Unicode -data files and any associated documentation (the "Data Files") or Unicode software and any -associated documentation (the "Software") to deal in the Data Files or Software without -restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, -and/or sell copies of the Data Files or Software, and to permit persons to whom the Data Files or -Software are furnished to do so, provided that (a) the above copyright notice(s) and this -permission notice appear with all copies of the Data Files or Software, (b) both the above -copyright notice(s) and this permission notice appear in associated documentation, and -(c) there is clear notice in each modified Data File or in the Software as well as in the -documentation associated with the Data File(s) or Software that the data or software has -been modified. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE -BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, -OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, -WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, -ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA -FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder shall not be used -in advertising or otherwise to promote the sale, use or other dealings in these -Data Files or Software without prior written authorization of the copyright holder. diff --git a/saxonhe9-2-0-3j/saxon9he.jar b/saxonhe9-2-0-3j/saxon9he.jar deleted file mode 100644 index 0719a94..0000000 Binary files a/saxonhe9-2-0-3j/saxon9he.jar and /dev/null differ diff --git a/test/test_examples_util.rb b/test/test_examples_util.rb index c5a9900..cc31fe5 100644 --- a/test/test_examples_util.rb +++ b/test/test_examples_util.rb @@ -249,6 +249,7 @@ module ValidationExamples yaml = YAML.load(Util.validation_get(@report_uri.split("/")[-3..-1].join("/"),'application/x-yaml')) owl = OpenTox::Owl.from_data(Util.validation_get(@report_uri.split("/")[-3..-1].join("/")),@report_uri,"ValidationReport") Util.compare_yaml_and_owl(yaml,owl) + Util.validation_get(@report_uri.split("/")[-3..-1].join("/"),'text/html') else puts "no report" end diff --git a/validation/validation_application.rb b/validation/validation_application.rb index cf6fc78..6785943 100644 --- a/validation/validation_application.rb +++ b/validation/validation_application.rb @@ -10,7 +10,7 @@ require 'validation/validation_service.rb' get '/crossvalidation/?' do LOGGER.info "list all crossvalidations" - uri_list = Validation::Crossvalidation.find_like(params).collect{ |d| url_for("/crossvalidation/", :full) + d.id.to_s }.join("\n")+"\n" + uri_list = Validation::Crossvalidation.find_like(params).collect{ |cv| cv.crossvalidation_uri }.join("\n")+"\n" if request.env['HTTP_ACCEPT'] =~ /text\/html/ related_links = "Single validations: "+$sinatra.url_for("/",:full)+"\n"+ @@ -29,7 +29,7 @@ end post '/crossvalidation/?' do content_type "text/uri-list" - task_uri = OpenTox::Task.as_task( "Perform crossvalidation", url_for("/crossvalidation", :full), params ) do + task_uri = OpenTox::Task.as_task( "Perform crossvalidation", url_for("/crossvalidation", :full), params ) do |task| LOGGER.info "creating crossvalidation "+params.inspect halt 400, "dataset_uri missing" unless params[:dataset_uri] halt 400, "algorithm_uri missing" unless params[:algorithm_uri] @@ -41,8 +41,7 @@ post '/crossvalidation/?' do :algorithm_uri => params[:algorithm_uri] } [ :num_folds, :random_seed, :stratified ].each{ |sym| cv_params[sym] = params[sym] if params[sym] } cv = Validation::Crossvalidation.new cv_params - cv.create_cv_datasets( params[:prediction_feature] ) - cv.perform_cv( params[:algorithm_params]) + cv.perform_cv( params[:prediction_feature], params[:algorithm_params], task ) cv.crossvalidation_uri end halt 202,task_uri+"\n" @@ -56,7 +55,7 @@ post '/crossvalidation/cleanup/?' do num_vals = Validation::Validation.find( :all, :conditions => { :crossvalidation_id => cv.id } ).size if cv.num_folds != num_vals LOGGER.debug "delete cv with id:"+cv.id.to_s+" num-folds should be "+cv.num_folds.to_s+", is "+num_vals.to_s - deleted << url_for("/crossvalidation/", :full) + cv.id.to_s + deleted << cv.crossvalidation_uri Validation::Crossvalidation.delete(cv.id) end end @@ -110,13 +109,13 @@ get '/crossvalidation/:id/statistics' do rescue ActiveRecord::RecordNotFound => ex halt 404, "Crossvalidation '#{params[:id]}' not found." end + halt 400,"Crossvalidation '"+params[:id].to_s+"' not finished" unless crossvalidation.finished Lib::MergeObjects.register_merge_attributes( Validation::Validation, - Lib::VAL_MERGE_AVG,Lib::VAL_MERGE_SUM,Lib::VAL_MERGE_GENERAL-[:validation_uri]) unless + Lib::VAL_MERGE_AVG,Lib::VAL_MERGE_SUM,Lib::VAL_MERGE_GENERAL-[:validation_uri,:crossvalidation_uri]) unless Lib::MergeObjects.merge_attributes_registered?(Validation::Validation) v = Lib::MergeObjects.merge_array_objects( Validation::Validation.find( :all, :conditions => { :crossvalidation_id => params[:id] } ) ) - v.validation_uri = nil v.date = nil v.id = nil @@ -163,6 +162,8 @@ get '/crossvalidation/:id/predictions' do rescue ActiveRecord::RecordNotFound => ex halt 404, "Crossvalidation '#{params[:id]}' not found." end + halt 400,"Crossvalidation '"+params[:id].to_s+"' not finished" unless crossvalidation.finished + content_type "application/x-yaml" validations = Validation::Validation.find( :all, :conditions => { :crossvalidation_id => params[:id] } ) p = Lib::OTPredictions.to_array( validations.collect{ |v| v.compute_validation_stats_with_model(nil, true) } ).to_yaml @@ -184,7 +185,7 @@ end get '/?' do LOGGER.info "list all validations, params: "+params.inspect - uri_list = Validation::Validation.find_like(params).collect{ |d| url_for("/", :full) + d.id.to_s }.join("\n")+"\n" + uri_list = Validation::Validation.find_like(params).collect{ |v| v.validation_uri }.join("\n")+"\n" if request.env['HTTP_ACCEPT'] =~ /text\/html/ related_links = "To perform a validation:\n"+ @@ -215,11 +216,12 @@ post '/test_set_validation' do LOGGER.info "creating test-set-validation "+params.inspect if params[:model_uri] and params[:test_dataset_uri] and !params[:training_dataset_uri] and !params[:algorithm_uri] task_uri = OpenTox::Task.as_task( "Perform test-set-validation", url_for("/", :full), params ) do |task| - v = Validation::Validation.new :model_uri => params[:model_uri], + v = Validation::Validation.new :validation_type => "test_set_validation", + :model_uri => params[:model_uri], :test_dataset_uri => params[:test_dataset_uri], :test_target_dataset_uri => params[:test_target_dataset_uri], :prediction_feature => params[:prediction_feature] - v.validate_model + v.validate_model( task ) v.validation_uri end halt 202,task_uri+"\n" @@ -231,7 +233,7 @@ end get '/test_set_validation' do LOGGER.info "list all test-set-validations, params: "+params.inspect - uri_list = "NOT YET IMPLEMENTED" + uri_list = Validation::Validation.find( :all, :conditions => { :validation_type => "test_set_validation" } ).collect{ |v| v.validation_uri }.join("\n")+"\n" if request.env['HTTP_ACCEPT'] =~ /text\/html/ related_links = "All validations: "+$sinatra.url_for("/",:full)+"\n"+ @@ -253,12 +255,13 @@ post '/training_test_validation/?' do LOGGER.info "creating training-test-validation "+params.inspect if params[:algorithm_uri] and params[:training_dataset_uri] and params[:test_dataset_uri] and params[:prediction_feature] and !params[:model_uri] task_uri = OpenTox::Task.as_task( "Perform training-test-validation", url_for("/", :full), params ) do |task| - v = Validation::Validation.new :algorithm_uri => params[:algorithm_uri], + v = Validation::Validation.new :validation_type => "training_test_validation", + :algorithm_uri => params[:algorithm_uri], :training_dataset_uri => params[:training_dataset_uri], :test_dataset_uri => params[:test_dataset_uri], :test_target_dataset_uri => params[:test_target_dataset_uri], :prediction_feature => params[:prediction_feature] - v.validate_algorithm( params[:algorithm_params]) + v.validate_algorithm( params[:algorithm_params], task ) v.validation_uri end halt 202,task_uri+"\n" @@ -270,7 +273,7 @@ end get '/training_test_validation' do LOGGER.info "list all training-test-validations, params: "+params.inspect - uri_list = "NOT YET IMPLEMENTED" + uri_list = Validation::Validation.find( :all, :conditions => { :validation_type => "training_test_validation" } ).collect{ |v| v.validation_uri }.join("\n")+"\n" if request.env['HTTP_ACCEPT'] =~ /text\/html/ related_links = "All validations: "+$sinatra.url_for("/",:full)+"\n"+ @@ -294,19 +297,21 @@ end post '/bootstrapping' do content_type "text/uri-list" - task_uri = OpenTox::Task.as_task( "Perform bootstrapping validation", url_for("/bootstrapping", :full), params ) do + task_uri = OpenTox::Task.as_task( "Perform bootstrapping validation", url_for("/bootstrapping", :full), params ) do |task| LOGGER.info "performing bootstrapping validation "+params.inspect halt 400, "dataset_uri missing" unless params[:dataset_uri] halt 400, "algorithm_uri missing" unless params[:algorithm_uri] halt 400, "prediction_feature missing" unless params[:prediction_feature] - params.merge!(Validation::Util.bootstrapping(params[:dataset_uri], params[:prediction_feature], params[:random_seed])) - v = Validation::Validation.new :training_dataset_uri => params[:training_dataset_uri], + params.merge!( Validation::Util.bootstrapping( params[:dataset_uri], + params[:prediction_feature], params[:random_seed], OpenTox::SubTask.create(task,0,33)) ) + v = Validation::Validation.new :validation_type => "bootstrapping", + :training_dataset_uri => params[:training_dataset_uri], :test_dataset_uri => params[:test_dataset_uri], :test_target_dataset_uri => params[:dataset_uri], :prediction_feature => params[:prediction_feature], :algorithm_uri => params[:algorithm_uri] - v.validate_algorithm( params[:algorithm_params]) + v.validate_algorithm( params[:algorithm_params], OpenTox::SubTask.create(task,33,100)) v.validation_uri end halt 202,task_uri+"\n" @@ -314,7 +319,7 @@ end get '/bootstrapping' do LOGGER.info "list all bootstrapping-validations, params: "+params.inspect - uri_list = "NOT YET IMPLEMENTED" + uri_list = Validation::Validation.find( :all, :conditions => { :validation_type => "bootstrapping" } ).collect{ |v| v.validation_uri }.join("\n")+"\n" if request.env['HTTP_ACCEPT'] =~ /text\/html/ related_links = "All validations: "+$sinatra.url_for("/",:full)+"\n"+ @@ -336,20 +341,24 @@ get '/bootstrapping' do end post '/training_test_split' do + content_type "text/uri-list" - task_uri = OpenTox::Task.as_task( "Perform training test split validation", url_for("/training_test_split", :full), params ) do + task_uri = OpenTox::Task.as_task( "Perform training test split validation", url_for("/training_test_split", :full), params ) do |task| + LOGGER.info "creating training test split "+params.inspect halt 400, "dataset_uri missing" unless params[:dataset_uri] halt 400, "algorithm_uri missing" unless params[:algorithm_uri] halt 400, "prediction_feature missing" unless params[:prediction_feature] - params.merge!(Validation::Util.train_test_dataset_split(params[:dataset_uri], params[:prediction_feature], params[:split_ratio], params[:random_seed])) - v = Validation::Validation.new :training_dataset_uri => params[:training_dataset_uri], + params.merge!( Validation::Util.train_test_dataset_split(params[:dataset_uri], params[:prediction_feature], + params[:split_ratio], params[:random_seed], OpenTox::SubTask.create(task,0,33))) + v = Validation::Validation.new :validation_type => "training_test_split", + :training_dataset_uri => params[:training_dataset_uri], :test_dataset_uri => params[:test_dataset_uri], :test_target_dataset_uri => params[:dataset_uri], :prediction_feature => params[:prediction_feature], :algorithm_uri => params[:algorithm_uri] - v.validate_algorithm( params[:algorithm_params]) + v.validate_algorithm( params[:algorithm_params], OpenTox::SubTask.create(task,33,100)) v.validation_uri end halt 202,task_uri+"\n" @@ -357,7 +366,7 @@ end get '/training_test_split' do LOGGER.info "list all training-test-split-validations, params: "+params.inspect - uri_list = "NOT YET IMPLEMENTED" + uri_list = Validation::Validation.find( :all, :conditions => { :validation_type => "training_test_split" } ).collect{ |v| v.validation_uri }.join("\n")+"\n" if request.env['HTTP_ACCEPT'] =~ /text\/html/ related_links = "All validations: "+$sinatra.url_for("/",:full)+"\n"+ @@ -385,19 +394,13 @@ post '/cleanup/?' do deleted = [] Validation::Validation.find( :all, :conditions => { :prediction_dataset_uri => nil } ).each do |val| LOGGER.debug "delete val with id:"+val.id.to_s+" prediction_dataset_uri is nil" - deleted << url_for("/", :full) + val.id.to_s + deleted << val.validation_uri Validation::Validation.delete(val.id) end LOGGER.info "validation cleanup, deleted "+deleted.size.to_s+" validations" deleted.join("\n")+"\n" end - - - - - - post '/plain_training_test_split' do LOGGER.info "creating pure training test split "+params.inspect halt 400, "dataset_uri missing" unless params[:dataset_uri] @@ -409,14 +412,15 @@ end post '/validate_datasets' do content_type "text/uri-list" - task_uri = OpenTox::Task.as_task( "Perform dataset validation", url_for("/validate_datasets", :full), params ) do + task_uri = OpenTox::Task.as_task( "Perform dataset validation", url_for("/validate_datasets", :full), params ) do |task| LOGGER.info "validating values "+params.inspect halt 400, "test_dataset_uri missing" unless params[:test_dataset_uri] halt 400, "prediction_datset_uri missing" unless params[:prediction_dataset_uri] + params[:validation_type] = "validate_datasets" if params[:model_uri] v = Validation::Validation.new params - v.compute_validation_stats_with_model() + v.compute_validation_stats_with_model(nil,false,task) else halt 400, "please specify 'model_uri' or 'prediction_feature'" unless params[:prediction_feature] halt 400, "please specify 'model_uri' or 'predicted_feature'" unless params[:predicted_feature] @@ -427,7 +431,7 @@ post '/validate_datasets' do clazz = params.delete("classification")!=nil regr = params.delete("regression")!=nil v = Validation::Validation.new params - v.compute_validation_stats((clazz and !regr),predicted_feature) + v.compute_validation_stats((clazz and !regr),predicted_feature,nil,false,task) end v.validation_uri end @@ -441,6 +445,7 @@ get '/:id/predictions' do rescue ActiveRecord::RecordNotFound => ex halt 404, "Validation '#{params[:id]}' not found." end + halt 400,"Validation '"+params[:id].to_s+"' not finished" unless validation.finished p = validation.compute_validation_stats_with_model(nil, true) case request.env['HTTP_ACCEPT'].to_s when /text\/html/ diff --git a/validation/validation_service.rb b/validation/validation_service.rb index 67fdbee..0907edb 100644 --- a/validation/validation_service.rb +++ b/validation/validation_service.rb @@ -37,12 +37,10 @@ module Validation # constructs a validation object, Rsets id und uri def initialize( params={} ) $sinatra.halt 500,"do not set id manually" if params[:id] - $sinatra.halt 500,"do not set uri manually" if params[:validation_uri] + params[:finished] = false super params self.save! raise "internal error, validation-id not set "+to_yaml if self.id==nil - self.attributes = { :validation_uri => $sinatra.url_for("/"+self.id.to_s, :full).to_s } - self.save! end # deletes a validation @@ -62,7 +60,7 @@ module Validation end # validates an algorithm by building a model and validating this model - def validate_algorithm( algorithm_params=nil ) + def validate_algorithm( algorithm_params=nil, task=nil ) $sinatra.halt 404, "no algorithm uri: '"+self.algorithm_uri.to_s+"'" if self.algorithm_uri==nil or self.algorithm_uri.to_s.size<1 @@ -77,7 +75,8 @@ module Validation end LOGGER.debug "building model '"+algorithm_uri.to_s+"' "+params.inspect - model = OpenTox::Model::PredictionModel.build(algorithm_uri, params) + model = OpenTox::Model::PredictionModel.build(algorithm_uri, params, + OpenTox::SubTask.create(task, 0, 33) ) $sinatra.halt 500,"model building failed" unless model self.attributes = { :model_uri => model.uri } self.save! @@ -85,12 +84,12 @@ module Validation $sinatra.halt 500,"error after building model: model.dependent_variable != validation.prediciton_feature ("+ model.dependentVariables.to_s+" != "+self.prediction_feature+")" if self.prediction_feature!=model.dependentVariables - validate_model + validate_model OpenTox::SubTask.create(task, 33, 100) end # validates a model # PENDING: a new dataset is created to store the predictions, this should be optional: delete predictions afterwards yes/no - def validate_model + def validate_model( task=nil ) LOGGER.debug "validating model '"+self.model_uri+"'" @@ -113,25 +112,27 @@ module Validation prediction_dataset_uri = "" benchmark = Benchmark.measure do - prediction_dataset_uri = model.predict_dataset(self.test_dataset_uri) + prediction_dataset_uri = model.predict_dataset(self.test_dataset_uri, OpenTox::SubTask.create(task, 0, 50)) end self.attributes = { :prediction_dataset_uri => prediction_dataset_uri, :real_runtime => benchmark.real } self.save! - compute_validation_stats_with_model( model ) + compute_validation_stats_with_model( model, false, OpenTox::SubTask.create(task, 50, 100) ) end - def compute_validation_stats_with_model( model=nil, dry_run=false ) + def compute_validation_stats_with_model( model=nil, dry_run=false, task=nil ) model = OpenTox::Model::PredictionModel.find(self.model_uri) if model==nil and self.model_uri $sinatra.halt 400, "model not found: "+self.model_uri.to_s unless model prediction_feature = self.prediction_feature ? nil : model.dependentVariables algorithm_uri = self.algorithm_uri ? nil : model.algorithm - compute_validation_stats( model.classification?, model.predictedVariables, prediction_feature, algorithm_uri, dry_run ) + compute_validation_stats( model.classification?, model.predictedVariables, + prediction_feature, algorithm_uri, dry_run, task ) end - def compute_validation_stats( classification, predicted_feature, prediction_feature=nil, algorithm_uri=nil, dry_run=false) + def compute_validation_stats( classification, predicted_feature, prediction_feature=nil, + algorithm_uri=nil, dry_run=false, task=nil ) self.attributes = { :prediction_feature => prediction_feature } if self.prediction_feature==nil && prediction_feature self.attributes = { :algorithm_uri => algorithm_uri } if self.algorithm_uri==nil && algorithm_uri @@ -140,7 +141,8 @@ module Validation LOGGER.debug "computing prediction stats" prediction = Lib::OTPredictions.new( classification, self.test_dataset_uri, self.test_target_dataset_uri, self.prediction_feature, - self.prediction_dataset_uri, predicted_feature ) + self.prediction_dataset_uri, predicted_feature, OpenTox::SubTask.create(task, 0, 80) ) + #reading datasets and computing the main stats is 80% the work unless dry_run if prediction.classification? @@ -152,9 +154,12 @@ module Validation :num_without_class => prediction.num_without_class, :percent_without_class => prediction.percent_without_class, :num_unpredicted => prediction.num_unpredicted, - :percent_unpredicted => prediction.percent_unpredicted } + :percent_unpredicted => prediction.percent_unpredicted, + :finished => true} self.save! end + + task.progress(100) if task prediction end end @@ -165,16 +170,19 @@ module Validation def initialize( params={} ) $sinatra.halt 500,"do not set id manually" if params[:id] - $sinatra.halt 500,"do not set uri manually" if params[:crossvalidation_uri] - params[:num_folds] = 10 if params[:num_folds]==nil params[:random_seed] = 1 if params[:random_seed]==nil params[:stratified] = false if params[:stratified]==nil + params[:finished] = false super params self.save! raise "internal error, crossvalidation-id not set" if self.id==nil - self.attributes = { :crossvalidation_uri => $sinatra.url_for("/crossvalidation/"+self.id.to_s, :full) } - self.save! + end + + def perform_cv ( prediction_feature, algorithm_params=nil, task=nil ) + + create_cv_datasets( prediction_feature, OpenTox::SubTask.create(task, 0, 0.33) ) + perform_cv_validations( algorithm_params, OpenTox::SubTask.create(task, 0.33, 1) ) end # deletes a crossvalidation, all validations are deleted as well @@ -186,20 +194,28 @@ module Validation # creates the cv folds # PENDING copying datasets of an equal (same dataset, same params) crossvalidation is disabled for now - def create_cv_datasets( prediction_feature ) + def create_cv_datasets( prediction_feature, task=nil ) - create_new_cv_datasets( prediction_feature ) #unless copy_cv_datasets( prediction_feature ) + create_new_cv_datasets( prediction_feature, task ) #unless copy_cv_datasets( prediction_feature ) end # executes the cross-validation (build models and validates them) - def perform_cv ( algorithm_params=nil ) + def perform_cv_validations( algorithm_params, task=nil ) - LOGGER.debug "perform cv validations" + LOGGER.debug "perform cv validations "+algorithm_params.inspect + i = 0 + task_step = 100 / self.num_folds.to_f; @tmp_validations.each do | val | validation = Validation.new val - validation.validate_algorithm( algorithm_params ) - #break + validation.validate_algorithm( algorithm_params, + OpenTox::SubTask.create(task, i * task_step, ( i + 1 ) * task_step) ) + raise "validation '"+validation.validation_uri+"' for crossvaldation could not be finished" unless + validation.finished + i += 1 end + + self.attributes = { :finished => true } + self.save! end private @@ -222,7 +238,8 @@ module Validation Validation.all( :crossvalidation_id => self.id ).each{ |v| v.delete } return false end - validation = Validation.new :crossvalidation_id => self.id, + validation = Validation.new :validation_type => "crossvalidation", + :crossvalidation_id => self.id, :crossvalidation_fold => v.crossvalidation_fold, :training_dataset_uri => v.training_dataset_uri, :test_dataset_uri => v.test_dataset_uri, @@ -234,7 +251,7 @@ module Validation # creates cv folds (training and testdatasets) # stores uris in validation objects - def create_new_cv_datasets( prediction_feature ) + def create_new_cv_datasets( prediction_feature, task = nil ) $sinatra.halt(500,"random seed not set") unless self.random_seed LOGGER.debug "creating datasets for crossvalidation" @@ -318,13 +335,16 @@ module Validation LOGGER.debug "test set: "+datasetname+"_test, compounds: "+test_compounds.size.to_s test_dataset_uri = orig_dataset.create_new_dataset( test_compounds, test_features, datasetname + '_test', source ) - tmp_validation = { :training_dataset_uri => train_dataset_uri, + tmp_validation = { :validation_type => "crossvalidation", + :training_dataset_uri => train_dataset_uri, :test_dataset_uri => test_dataset_uri, :test_target_dataset_uri => self.dataset_uri, :crossvalidation_id => self.id, :crossvalidation_fold => n, :prediction_feature => prediction_feature, :algorithm_uri => self.algorithm_uri } @tmp_validations << tmp_validation + + task.progress( n / self.num_folds.to_f * 100 ) if task end end end @@ -335,7 +355,7 @@ module Validation # splits a dataset into test and training dataset via bootstrapping # (training dataset-size is n, sampling from orig dataset with replacement) # returns map with training_dataset_uri and test_dataset_uri - def self.bootstrapping( orig_dataset_uri, prediction_feature, random_seed=nil ) + def self.bootstrapping( orig_dataset_uri, prediction_feature, random_seed=nil, task=nil ) random_seed=1 unless random_seed @@ -372,16 +392,20 @@ module Validation LOGGER.debug "bootstrapping on dataset "+orig_dataset_uri+ " into training ("+training_compounds.size.to_s+") and test ("+test_compounds.size.to_s+")"+ ", duplicates in training dataset: "+test_compounds.size.to_s + task.progress(33) if task result = {} result[:training_dataset_uri] = orig_dataset.create_new_dataset( training_compounds, orig_dataset.features, "Bootstrapping training dataset of "+orig_dataset.title.to_s, $sinatra.url_for('/bootstrapping',:full) ) + task.progress(66) if task + result[:test_dataset_uri] = orig_dataset.create_new_dataset( test_compounds, orig_dataset.features.dclone - [prediction_feature], "Bootstrapping test dataset of "+orig_dataset.title.to_s, $sinatra.url_for('/bootstrapping',:full) ) + task.progress(100) if task if ENV['RACK_ENV'] =~ /test|debug/ training_dataset = OpenTox::Dataset.find result[:training_dataset_uri] @@ -390,7 +414,6 @@ module Validation $sinatra.halt 500, "training compounds error" unless training_compounds_verify==training_compounds $sinatra.halt 400, "Test dataset not found: '"+result[:test_dataset_uri].to_s+"'" unless OpenTox::Dataset.find result[:test_dataset_uri] end - LOGGER.debug "bootstrapping done, training dataset: '"+result[:training_dataset_uri].to_s+"', test dataset: '"+result[:test_dataset_uri].to_s+"'" return result @@ -398,7 +421,7 @@ module Validation # splits a dataset into test and training dataset # returns map with training_dataset_uri and test_dataset_uri - def self.train_test_dataset_split( orig_dataset_uri, prediction_feature, split_ratio=nil, random_seed=nil ) + def self.train_test_dataset_split( orig_dataset_uri, prediction_feature, split_ratio=nil, random_seed=nil, task=nil ) split_ratio=0.67 unless split_ratio random_seed=1 unless random_seed @@ -424,24 +447,28 @@ module Validation LOGGER.debug "splitting dataset "+orig_dataset_uri+ " into train:0-"+split.to_s+" and test:"+(split+1).to_s+"-"+(compounds.size-1).to_s+ " (shuffled with seed "+random_seed.to_s+")" - compounds.shuffle!( random_seed ) + task.progress(33) if task result = {} result[:training_dataset_uri] = orig_dataset.create_new_dataset( compounds[0..split], orig_dataset.features, "Training dataset split of "+orig_dataset.title.to_s, $sinatra.url_for('/training_test_split',:full) ) + task.progress(66) if task + result[:test_dataset_uri] = orig_dataset.create_new_dataset( compounds[(split+1)..-1], orig_dataset.features.dclone - [prediction_feature], "Test dataset split of "+orig_dataset.title.to_s, $sinatra.url_for('/training_test_split',:full) ) + task.progress(100) if task - $sinatra.halt 400, "Training dataset not found: '"+result[:training_dataset_uri].to_s+"'" unless OpenTox::Dataset.find result[:training_dataset_uri] - $sinatra.halt 400, "Test dataset not found: '"+result[:test_dataset_uri].to_s+"'" unless OpenTox::Dataset.find result[:test_dataset_uri] + if ENV['RACK_ENV'] =~ /test|debug/ + $sinatra.halt 400, "Training dataset not found: '"+result[:training_dataset_uri].to_s+"'" unless OpenTox::Dataset.find result[:training_dataset_uri] + $sinatra.halt 400, "Test dataset not found: '"+result[:test_dataset_uri].to_s+"'" unless OpenTox::Dataset.find result[:test_dataset_uri] + end LOGGER.debug "split done, training dataset: '"+result[:training_dataset_uri].to_s+"', test dataset: '"+result[:test_dataset_uri].to_s+"'" - return result end diff --git a/validation/validation_test.rb b/validation/validation_test.rb index 5e068a3..31495a2 100644 --- a/validation/validation_test.rb +++ b/validation/validation_test.rb @@ -34,9 +34,9 @@ class ValidationTest < Test::Unit::TestCase def test_it $test_case = self - #get "/report/crossvalidation/15",nil,'HTTP_ACCEPT' => "text/html" + #get "/1",nil,'HTTP_ACCEPT' => "text/html" # get "/",nil,'HTTP_ACCEPT' => "text/html" -# puts last_response.body + #puts last_response.body # d = OpenTox::Dataset.find("http://ot-dev.in-silico.ch/dataset/307") # puts d.compounds.inspect @@ -64,7 +64,7 @@ class ValidationTest < Test::Unit::TestCase # :test_target_dataset_uri=>"http://localhost/dataset/1" # get "/crossvalidation/2",nil,'HTTP_ACCEPT' => "application/rdf+xml" -# puts last_response.body + #puts last_response.body #get "/crossvalidation?model_uri=lazar" # post "/test_validation",:select=>"6d" #,:report=>"yes,please" @@ -80,18 +80,24 @@ class ValidationTest < Test::Unit::TestCase # #:classification=>"true"} # puts last_response.body - #run_test("1b")#,"http://localhost/validation/394"); + #run_test("1b","http://localhost/validation/20")#,"http://localhost/validation/394"); - #run_test("11b", "http://localhost/validation/crossvalidation/2" )# //localhost/validation/42")#, "http://localhost/validation/report/validation/8") #,"http://localhost/validation/report/validation/36") #, "http://localhost/validation/321") + #run_test("7b","http://localhost/validation/21") - # run_test("7a","http://localhost/validation/40") #,"http://localhost/validation/crossvalidation/10") #, "http://localhost/validation/321") + #run_test("3a","http://localhost/validation/crossvalidation/4") + #run_test("3b","http://localhost/validation/crossvalidation/3") + run_test("8a", "http://localhost/validation/crossvalidation/6") + #run_test("8b", "http://localhost/validation/crossvalidation/5") + + #run_test("11b", "http://localhost/validation/crossvalidation/2" )# //localhost/validation/42")#, "http://localhost/validation/report/validation/8") #,"http://localhost/validation/report/validation/36") #, "http://localhost/validation/321") + # run_test("7a","http://localhost/validation/40") #,"http://localhost/validation/crossvalidation/10") #, "http://localhost/validation/321") #run_test("8b", "http://localhost/validation/crossvalidation/4") #puts Nightly.build_nightly("1") - #prepare_examples - do_test_examples # USES CURL, DO NOT FORGET TO RESTART VALIDATION SERVICE + # prepare_examples + #do_test_examples # USES CURL, DO NOT FORGET TO RESTART VALIDATION SERVICE #do_test_examples_ortona end -- cgit v1.2.3 From b50453d2ad038c9bab17a418bf4e065e31acb999 Mon Sep 17 00:00:00 2001 From: mguetlein Date: Mon, 29 Nov 2010 11:07:48 +0100 Subject: addjust report service init to ortona --- example.rb | 2 +- report/report_application.rb | 13 +++++++------ report/report_service.rb | 14 +++++++++++++- validation/validation_test.rb | 4 ++-- 4 files changed, 23 insertions(+), 10 deletions(-) diff --git a/example.rb b/example.rb index 6417ae7..9d66cd4 100644 --- a/example.rb +++ b/example.rb @@ -86,7 +86,7 @@ class Example cv.perform_cv( URI.decode(@@feature), @@alg_params ) log "create validation report" - rep = Reports::ReportService.new(File.join(@@config[:services]["opentox-validation"],"report")) + rep = Reports::ReportService.instance(File.join(@@config[:services]["opentox-validation"],"report")) rep.delete_all_reports("validation") rep.create_report("validation",v.validation_uri) diff --git a/report/report_application.rb b/report/report_application.rb index f6b810c..a61a2df 100644 --- a/report/report_application.rb +++ b/report/report_application.rb @@ -2,8 +2,8 @@ require "report/environment.rb" def perform begin - $rep = Reports::ReportService.new(url_for("/report", :full)) unless $rep - yield( $rep ) + @@report_service = Reports::ReportService.instance( url_for("/report", :full) ) unless defined?@@report_service + yield( @@report_service ) rescue Reports::NotFound => ex halt 404, ex.message rescue Reports::BadRequest => ex @@ -79,10 +79,11 @@ get '/report/:report_type' do end post '/report/:type/:id/format_html' do - - rs.get_report(params[:type],params[:id],"text/html",true,params) - content_type "text/uri-list" - rs.get_uri(params[:type],params[:id])+"\n" + perform do |rs| + rs.get_report(params[:type],params[:id],"text/html",true,params) + content_type "text/uri-list" + rs.get_uri(params[:type],params[:id])+"\n" + end end diff --git a/report/report_service.rb b/report/report_service.rb index 51be248..5221b6d 100644 --- a/report/report_service.rb +++ b/report/report_service.rb @@ -12,17 +12,25 @@ module Reports @@persistance end - def self.instance + def self.instance( home_uri=nil ) + if !defined?@@instance + @@instance = ReportService.new(home_uri) + elsif home_uri && @@instance.home_uri != home_uri + raise "already initialized with different home_uri!!!" + end @@instance end + private def initialize(home_uri) raise "supposed to be a singleton" if defined?@@instance + raise "plz specify home_uri" unless home_uri LOGGER.info "init report service" @home_uri = home_uri @@instance = self end + public # lists all available report types, returns list of uris # # call-seq: @@ -141,6 +149,10 @@ module Reports return id end + def home_uri + @home_uri + end + def get_uri(type, id=nil) @home_uri+"/"+type.to_s+(id!=nil ? "/"+id.to_s : "") end diff --git a/validation/validation_test.rb b/validation/validation_test.rb index 31495a2..1bdbf90 100644 --- a/validation/validation_test.rb +++ b/validation/validation_test.rb @@ -80,14 +80,14 @@ class ValidationTest < Test::Unit::TestCase # #:classification=>"true"} # puts last_response.body - #run_test("1b","http://localhost/validation/20")#,"http://localhost/validation/394"); + run_test("1b","http://localhost/validation/28")#,"http://localhost/validation/394"); #run_test("7b","http://localhost/validation/21") #run_test("3a","http://localhost/validation/crossvalidation/4") #run_test("3b","http://localhost/validation/crossvalidation/3") - run_test("8a", "http://localhost/validation/crossvalidation/6") + #run_test("8a", "http://localhost/validation/crossvalidation/6") #run_test("8b", "http://localhost/validation/crossvalidation/5") #run_test("11b", "http://localhost/validation/crossvalidation/2" )# //localhost/validation/42")#, "http://localhost/validation/report/validation/8") #,"http://localhost/validation/report/validation/36") #, "http://localhost/validation/321") -- cgit v1.2.3 From 3d8db6648a7831d41aad27d1509f29f87a30723e Mon Sep 17 00:00:00 2001 From: mguetlein Date: Mon, 29 Nov 2010 12:44:19 +0100 Subject: add qmrf to examples, add text/html support for qmrf --- EXAMPLES | 31 ++++++++++++++++++++ example.rb | 10 ++++++- reach_reports/reach_application.rb | 57 ++++++++++++++++++++++++++++++------ validation/validation_application.rb | 3 +- 4 files changed, 90 insertions(+), 11 deletions(-) diff --git a/EXAMPLES b/EXAMPLES index 8af2316..df7626d 100644 --- a/EXAMPLES +++ b/EXAMPLES @@ -327,3 +327,34 @@ alternatively, use property names in (internal) yaml format: >>> curl /report/validation?algorithm_uris=lazar + + +Reach reporting +=================================================================== + + +get list of available qmrf report +------------------------------------------------------------------- + +>>> curl /reach_report/qmrf + +result example (accept-header: application/rdf-xml) +<<< not yet supported + +result example (accept-header: text/uri-list) +<<< /reach_report/qmrf/ +<<< /reach_report/qmrf/report_id_i +<<< /reach_report/qmrf/report_id_j + + +create a QMRF from a model +------------------------------------------------------------------- + +>>> curl -X POST -d model_uri="" \ + /reach_report/qmrf + +result example (accept-header: application/rdf-xml) +<<< not yet supported + +result example (accept-header: text/uri-list) +<<< /reach_report/qmrf/id \ No newline at end of file diff --git a/example.rb b/example.rb index 9d66cd4..f13ac00 100644 --- a/example.rb +++ b/example.rb @@ -42,7 +42,8 @@ class Example "crossvalidation_report_id" => "2", "css_file" => @@css_file, "prediction_dataset_uri" => @@prediction_data, - "predicted_feature" => @@predicted_feature } + "predicted_feature" => @@predicted_feature, + "qmrf_id" => "1"} sub.each do |k,v| res.gsub!(/<#{k}>/,v) @@ -61,6 +62,9 @@ class Example ActiveRecord::Migrator.migrate('db/migrate', 1 ) ActiveRecord::Migrator.migrate('db/migrate', 2 ) + #delete all qmrf reports + ReachReports::QmrfReport.auto_migrate! + #delete_all(@@config[:services]["opentox-dataset"]) log OpenTox::RestClientWrapper.delete @@config[:services]["opentox-dataset"] @@ -94,6 +98,10 @@ class Example rep.delete_all_reports("crossvalidation") rep.create_report("crossvalidation",cv.crossvalidation_uri) + log "build qmrf" + qmrf = OpenTox::RestClientWrapper.post(File.join(@@config[:services]["opentox-validation"],"reach_report/QMRF"),{:model_uri=>@@model}) + log qmrf + log "done" @@summary end diff --git a/reach_reports/reach_application.rb b/reach_reports/reach_application.rb index bbe4092..d82bc11 100644 --- a/reach_reports/reach_application.rb +++ b/reach_reports/reach_application.rb @@ -3,6 +3,8 @@ require lib end +QMRF_EDITOR_URI = "http://ortona.informatik.uni-freiburg.de/qmrfedit2/OT_QMRFEditor.jnlp" + require 'reach_reports/reach_persistance.rb' require 'reach_reports/reach_service.rb' @@ -14,15 +16,46 @@ def extract_type(params) end get '/reach_report' do - content_type "text/uri-list" - url_for('/reach_report/QMRF', :full)+"\n"+url_for('/reach_report/QPRF', :full)+"\n" + uri_list = url_for('/reach_report/QMRF', :full)+"\n"+url_for('/reach_report/QPRF', :full)+"\n" + if request.env['HTTP_ACCEPT'] =~ /text\/html/ + content_type "text/html" + related_links = + "All validations: "+$sinatra.url_for("/",:full)+"\n"+ + "Validation reporting: "+$sinatra.url_for("/report",:full) + description = + "A list of all suported REACH reporting types." + OpenTox.text_to_html uri_list,related_links,description + else + content_type "text/uri-list" + uri_list + end end get '/reach_report/:type' do - content_type "text/uri-list" type = extract_type(params) LOGGER.info "list all "+type+" reports" - ReachReports.list_reports(type) + if request.env['HTTP_ACCEPT'] =~ /text\/html/ + content_type "text/html" + related_links = + "All REACH reporting types: "+$sinatra.url_for("/reach_report",:full) + description = + "A list of "+type+" reports." + post_params = "" + case type + when /(?i)QMRF/ + related_links += "\n"+ + "OpenTox version of QMRF editor: "+QMRF_EDITOR_URI + description += "\n"+ + "To create a QMRF report use the POST method." + post_params = [[[:model_uri]],[["Existing QMRF report, content-type application/qmrf-xml"]]] + when /(?i)QPRF/ + #TODO + end + OpenTox.text_to_html ReachReports.list_reports(type),related_links,description,post_params + else + content_type "text/uri-list" + ReachReports.list_reports(type) + end end post '/reach_report/:type' do @@ -52,20 +85,26 @@ get '/reach_report/:type/:id' do halt 400, "application/rdf+xml not yet supported" owl = OpenTox::Owl.create(type+"Report",rep.report_uri) owl.set_data( rep.get_content.keys_to_rdf_format ) - result = owl.rdf + owl.rdf when "application/qmrf-xml" content_type "application/qmrf-xml" - result = rep.to_xml + rep.to_xml #f = File.new("/home/martin/info_home/.public_html/qmrf.out.xml","w") #f.puts result + when /text\/html/ + content_type "text/html" + related_links = + "Open report in QMRF editor: "+rep.report_uri+"/editor"+"\n"+ + "All "+type+" reports: "+$sinatra.url_for("/reach_report/"+type,:full) + description = + "A QMRF report." + OpenTox.text_to_html rep.to_yaml,related_links,description when /application\/x-yaml|\*\/\*|^$/ # matches 'application/x-yaml', '*/*', '' content_type "application/x-yaml" - result = rep.to_yaml + rep.to_yaml else halt 400, "MIME type '"+request.env['HTTP_ACCEPT'].to_s+"' not supported, valid Accept-Headers are \"application/rdf+xml\", \"application/x-yaml\", \"application/qmrf-xml\"." end - - result end post '/reach_report/:type/:id' do diff --git a/validation/validation_application.rb b/validation/validation_application.rb index 6785943..2a2bcb0 100644 --- a/validation/validation_application.rb +++ b/validation/validation_application.rb @@ -194,7 +194,8 @@ get '/?' do "* "+$sinatra.url_for("/bootstrapping",:full)+"\n"+ "* "+$sinatra.url_for("/training_test_split",:full)+"\n"+ "* "+$sinatra.url_for("/crossvalidation",:full)+"\n"+ - "Validation reports: "+$sinatra.url_for("/report/validation",:full)+"\n"+ + "Validation reporting: "+$sinatra.url_for("/report",:full)+"\n"+ + "REACH relevant reporting: "+$sinatra.url_for("/reach_report",:full)+"\n"+ "Examples for using this service: "+$sinatra.url_for("/examples",:full)+"\n" description = "A validation web service for the OpenTox project ( http://opentox.org ).\n"+ -- cgit v1.2.3 From ecc082c0fa7de93a685c6e6ad0f9b5d2825d1f61 Mon Sep 17 00:00:00 2001 From: mguetlein Date: Mon, 29 Nov 2010 13:08:12 +0100 Subject: fixed prepare examples --- example.rb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/example.rb b/example.rb index f13ac00..c5c5772 100644 --- a/example.rb +++ b/example.rb @@ -99,8 +99,9 @@ class Example rep.create_report("crossvalidation",cv.crossvalidation_uri) log "build qmrf" - qmrf = OpenTox::RestClientWrapper.post(File.join(@@config[:services]["opentox-validation"],"reach_report/QMRF"),{:model_uri=>@@model}) - log qmrf + task = ReachReports.create_report("QMRF",{:model_uri=>@@model}) + log Lib::TestUtil.wait_for_task(task) + #qmrf = OpenTox::RestClientWrapper.post(File.join(@@config[:services]["opentox-validation"],"reach_report/QMRF"),{:model_uri=>@@model}) log "done" @@summary -- cgit v1.2.3 From 88c5d6a52f33c10c317c33c2c1070a58a8db9e1b Mon Sep 17 00:00:00 2001 From: mguetlein Date: Mon, 29 Nov 2010 13:21:36 +0100 Subject: fixed prepare examples --- example.rb | 112 +++++++++++++++++++++++++++++++++---------------------------- 1 file changed, 60 insertions(+), 52 deletions(-) diff --git a/example.rb b/example.rb index c5c5772..17fb73c 100644 --- a/example.rb +++ b/example.rb @@ -53,58 +53,66 @@ class Example # creates the resources that are requested by the examples def self.prepare_example_resources - - @@summary = "" - #delete validations - log "delete validations" - ActiveRecord::Base.logger = Logger.new("/dev/null") - ActiveRecord::Migrator.migrate('db/migrate', 0 ) - ActiveRecord::Migrator.migrate('db/migrate', 1 ) - ActiveRecord::Migrator.migrate('db/migrate', 2 ) - - #delete all qmrf reports - ReachReports::QmrfReport.auto_migrate! - - #delete_all(@@config[:services]["opentox-dataset"]) - log OpenTox::RestClientWrapper.delete @@config[:services]["opentox-dataset"] - - log "upload dataset" - halt 400,"File not found: "+@@file.path.to_s unless File.exist?(@@file.path) - data = File.read(@@file.path) - data_uri = OpenTox::RestClientWrapper.post(@@config[:services]["opentox-dataset"],{:content_type => @@file_type},data).chomp("\n") - - log "train-test-validation" - #delete_all(@@config[:services]["opentox-model"]) - OpenTox::RestClientWrapper.delete @@config[:services]["opentox-model"] - - split_params = Validation::Util.train_test_dataset_split(data_uri, URI.decode(@@feature), 0.9, 1) - v = Validation::Validation.new :training_dataset_uri => split_params[:training_dataset_uri], - :test_dataset_uri => split_params[:test_dataset_uri], - :test_target_dataset_uri => data_uri, - :prediction_feature => URI.decode(@@feature), - :algorithm_uri => @@alg - v.validate_algorithm( @@alg_params ) - - log "crossvalidation" - cv = Validation::Crossvalidation.new({ :dataset_uri => data_uri, :algorithm_uri => @@alg, :num_folds => 5, :stratified => false }) - cv.perform_cv( URI.decode(@@feature), @@alg_params ) - - log "create validation report" - rep = Reports::ReportService.instance(File.join(@@config[:services]["opentox-validation"],"report")) - rep.delete_all_reports("validation") - rep.create_report("validation",v.validation_uri) - - log "create crossvalidation report" - rep.delete_all_reports("crossvalidation") - rep.create_report("crossvalidation",cv.crossvalidation_uri) - - log "build qmrf" - task = ReachReports.create_report("QMRF",{:model_uri=>@@model}) - log Lib::TestUtil.wait_for_task(task) - #qmrf = OpenTox::RestClientWrapper.post(File.join(@@config[:services]["opentox-validation"],"reach_report/QMRF"),{:model_uri=>@@model}) - - log "done" - @@summary + OpenTox::Task.as_task("prepare examples", "n/a") do task + @@summary = "" + #delete validations + log "delete validations" + ActiveRecord::Base.logger = Logger.new("/dev/null") + ActiveRecord::Migrator.migrate('db/migrate', 0 ) + ActiveRecord::Migrator.migrate('db/migrate', 1 ) + ActiveRecord::Migrator.migrate('db/migrate', 2 ) + + #delete all qmrf reports + ReachReports::QmrfReport.auto_migrate! + + #delete_all(@@config[:services]["opentox-dataset"]) + log OpenTox::RestClientWrapper.delete @@config[:services]["opentox-dataset"] + task.progress(10) + + log "upload dataset" + halt 400,"File not found: "+@@file.path.to_s unless File.exist?(@@file.path) + data = File.read(@@file.path) + data_uri = OpenTox::RestClientWrapper.post(@@config[:services]["opentox-dataset"],{:content_type => @@file_type},data).chomp("\n") + task.progress(20) + + log "train-test-validation" + #delete_all(@@config[:services]["opentox-model"]) + OpenTox::RestClientWrapper.delete @@config[:services]["opentox-model"] + + split_params = Validation::Util.train_test_dataset_split(data_uri, URI.decode(@@feature), 0.9, 1) + v = Validation::Validation.new :training_dataset_uri => split_params[:training_dataset_uri], + :test_dataset_uri => split_params[:test_dataset_uri], + :test_target_dataset_uri => data_uri, + :prediction_feature => URI.decode(@@feature), + :algorithm_uri => @@alg + v.validate_algorithm( @@alg_params ) + task.progress(30) + + log "crossvalidation" + cv = Validation::Crossvalidation.new({ :dataset_uri => data_uri, :algorithm_uri => @@alg, :num_folds => 5, :stratified => false }) + cv.perform_cv( URI.decode(@@feature), @@alg_params ) + task.progress(40) + + log "create validation report" + rep = Reports::ReportService.instance(File.join(@@config[:services]["opentox-validation"],"report")) + rep.delete_all_reports("validation") + rep.create_report("validation",v.validation_uri) + task.progress(50) + + log "create crossvalidation report" + rep.delete_all_reports("crossvalidation") + rep.create_report("crossvalidation",cv.crossvalidation_uri) + task.progress(60) + + log "build qmrf" + task = ReachReports.create_report("QMRF",{:model_uri=>@@model}) + log Lib::TestUtil.wait_for_task(task) + #qmrf = OpenTox::RestClientWrapper.post(File.join(@@config[:services]["opentox-validation"],"reach_report/QMRF"),{:model_uri=>@@model}) + task.progress(100) + + log "done" + @@summary + end end # performs all curl calls listed in examples after ">>>", next line is added if line ends with "\" -- cgit v1.2.3 From b7d24c0262aa9709f36a7f77f5724cf04e193bdb Mon Sep 17 00:00:00 2001 From: mguetlein Date: Mon, 29 Nov 2010 13:22:53 +0100 Subject: fixed prepare examples --- example.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example.rb b/example.rb index 17fb73c..140a34d 100644 --- a/example.rb +++ b/example.rb @@ -53,7 +53,7 @@ class Example # creates the resources that are requested by the examples def self.prepare_example_resources - OpenTox::Task.as_task("prepare examples", "n/a") do task + OpenTox::Task.as_task("prepare examples", "n/a") do |task| @@summary = "" #delete validations log "delete validations" -- cgit v1.2.3 From 65ec4bc561e10a895558876b551a3a5a5e05050d Mon Sep 17 00:00:00 2001 From: mguetlein Date: Mon, 29 Nov 2010 13:32:07 +0100 Subject: fixed prepare examples --- example.rb | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/example.rb b/example.rb index 140a34d..296ace9 100644 --- a/example.rb +++ b/example.rb @@ -85,28 +85,26 @@ class Example :test_target_dataset_uri => data_uri, :prediction_feature => URI.decode(@@feature), :algorithm_uri => @@alg - v.validate_algorithm( @@alg_params ) - task.progress(30) + v.validate_algorithm( @@alg_params, OpenTox::SubTask.new(task, 20, 40) ) log "crossvalidation" cv = Validation::Crossvalidation.new({ :dataset_uri => data_uri, :algorithm_uri => @@alg, :num_folds => 5, :stratified => false }) - cv.perform_cv( URI.decode(@@feature), @@alg_params ) - task.progress(40) + cv.perform_cv( URI.decode(@@feature), @@alg_params, OpenTox::SubTask.new(task, 40, 70) ) log "create validation report" rep = Reports::ReportService.instance(File.join(@@config[:services]["opentox-validation"],"report")) rep.delete_all_reports("validation") rep.create_report("validation",v.validation_uri) - task.progress(50) + task.progress(80) log "create crossvalidation report" rep.delete_all_reports("crossvalidation") rep.create_report("crossvalidation",cv.crossvalidation_uri) - task.progress(60) + task.progress(90) log "build qmrf" - task = ReachReports.create_report("QMRF",{:model_uri=>@@model}) - log Lib::TestUtil.wait_for_task(task) + t = ReachReports.create_report("QMRF",{:model_uri=>@@model}) + log Lib::TestUtil.wait_for_task(t) #qmrf = OpenTox::RestClientWrapper.post(File.join(@@config[:services]["opentox-validation"],"reach_report/QMRF"),{:model_uri=>@@model}) task.progress(100) -- cgit v1.2.3 From 3f150eb2aae74d8b9ba43c32a5ae655a3a7f71bf Mon Sep 17 00:00:00 2001 From: mguetlein Date: Tue, 30 Nov 2010 10:02:15 +0100 Subject: fix validation_type for example --- example.rb | 4 ++-- validation/validation_service.rb | 7 +++++++ validation/validation_test.rb | 4 ++-- 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/example.rb b/example.rb index 296ace9..3562dd0 100644 --- a/example.rb +++ b/example.rb @@ -81,6 +81,7 @@ class Example split_params = Validation::Util.train_test_dataset_split(data_uri, URI.decode(@@feature), 0.9, 1) v = Validation::Validation.new :training_dataset_uri => split_params[:training_dataset_uri], + :validation_type => "test_set_validation", :test_dataset_uri => split_params[:test_dataset_uri], :test_target_dataset_uri => data_uri, :prediction_feature => URI.decode(@@feature), @@ -104,8 +105,7 @@ class Example log "build qmrf" t = ReachReports.create_report("QMRF",{:model_uri=>@@model}) - log Lib::TestUtil.wait_for_task(t) - #qmrf = OpenTox::RestClientWrapper.post(File.join(@@config[:services]["opentox-validation"],"reach_report/QMRF"),{:model_uri=>@@model}) + Lib::TestUtil.wait_for_task(t) task.progress(100) log "done" diff --git a/validation/validation_service.rb b/validation/validation_service.rb index 0907edb..d549896 100644 --- a/validation/validation_service.rb +++ b/validation/validation_service.rb @@ -43,6 +43,13 @@ module Validation raise "internal error, validation-id not set "+to_yaml if self.id==nil end + def save! + # make sure that non-temporary validation objects have a valiation_type + # (a temporary validation object is created for crossvaldiation/statistics) + $sinatra.halt 500,"validation_type missing" unless self.validation_type + super + end + # deletes a validation # PENDING: model and referenced datasets are deleted as well, keep it that way? def delete diff --git a/validation/validation_test.rb b/validation/validation_test.rb index 1bdbf90..b1fbf25 100644 --- a/validation/validation_test.rb +++ b/validation/validation_test.rb @@ -80,7 +80,7 @@ class ValidationTest < Test::Unit::TestCase # #:classification=>"true"} # puts last_response.body - run_test("1b","http://localhost/validation/28")#,"http://localhost/validation/394"); + #run_test("1b","http://localhost/validation/28")#,"http://localhost/validation/394"); #run_test("7b","http://localhost/validation/21") @@ -96,7 +96,7 @@ class ValidationTest < Test::Unit::TestCase #puts Nightly.build_nightly("1") - # prepare_examples + prepare_examples #do_test_examples # USES CURL, DO NOT FORGET TO RESTART VALIDATION SERVICE #do_test_examples_ortona end -- cgit v1.2.3 From fc0b77cd271aae16acd0dbabedf30af140f58442 Mon Sep 17 00:00:00 2001 From: mguetlein Date: Tue, 30 Nov 2010 10:22:19 +0100 Subject: fix validation_type for example --- lib/validation_db.rb | 4 ++++ validation/validation_service.rb | 7 +------ 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/lib/validation_db.rb b/lib/validation_db.rb index cb3ece7..9a9c927 100644 --- a/lib/validation_db.rb +++ b/lib/validation_db.rb @@ -56,6 +56,8 @@ module Lib alias_attribute :date, :created_at def validation_uri + self.save! if self.id==nil + raise "internal error, validation-id not set "+to_yaml if self.id==nil $sinatra.url_for("/"+self.id.to_s, :full) end @@ -81,6 +83,8 @@ module Lib alias_attribute :date, :created_at def crossvalidation_uri + self.save! if self.id==nil + raise "internal error, crossvalidation-id not set" if self.id==nil $sinatra.url_for("/crossvalidation/"+self.id.to_s, :full) if self.id end diff --git a/validation/validation_service.rb b/validation/validation_service.rb index d549896..5150932 100644 --- a/validation/validation_service.rb +++ b/validation/validation_service.rb @@ -39,13 +39,10 @@ module Validation $sinatra.halt 500,"do not set id manually" if params[:id] params[:finished] = false super params - self.save! - raise "internal error, validation-id not set "+to_yaml if self.id==nil end def save! - # make sure that non-temporary validation objects have a valiation_type - # (a temporary validation object is created for crossvaldiation/statistics) + # make sure that validation objects have a valiation_type $sinatra.halt 500,"validation_type missing" unless self.validation_type super end @@ -182,8 +179,6 @@ module Validation params[:stratified] = false if params[:stratified]==nil params[:finished] = false super params - self.save! - raise "internal error, crossvalidation-id not set" if self.id==nil end def perform_cv ( prediction_feature, algorithm_params=nil, task=nil ) -- cgit v1.2.3 From 7459525cbf5cc8ed4afcbaa3a0749828098a8f48 Mon Sep 17 00:00:00 2001 From: mguetlein Date: Tue, 30 Nov 2010 10:28:36 +0100 Subject: fix validation_type for example --- lib/validation_db.rb | 4 ---- validation/validation_service.rb | 12 ++++++------ 2 files changed, 6 insertions(+), 10 deletions(-) diff --git a/lib/validation_db.rb b/lib/validation_db.rb index 9a9c927..cb3ece7 100644 --- a/lib/validation_db.rb +++ b/lib/validation_db.rb @@ -56,8 +56,6 @@ module Lib alias_attribute :date, :created_at def validation_uri - self.save! if self.id==nil - raise "internal error, validation-id not set "+to_yaml if self.id==nil $sinatra.url_for("/"+self.id.to_s, :full) end @@ -83,8 +81,6 @@ module Lib alias_attribute :date, :created_at def crossvalidation_uri - self.save! if self.id==nil - raise "internal error, crossvalidation-id not set" if self.id==nil $sinatra.url_for("/crossvalidation/"+self.id.to_s, :full) if self.id end diff --git a/validation/validation_service.rb b/validation/validation_service.rb index 5150932..7204699 100644 --- a/validation/validation_service.rb +++ b/validation/validation_service.rb @@ -39,12 +39,8 @@ module Validation $sinatra.halt 500,"do not set id manually" if params[:id] params[:finished] = false super params - end - - def save! - # make sure that validation objects have a valiation_type - $sinatra.halt 500,"validation_type missing" unless self.validation_type - super + self.save! + raise "internal error, validation-id not set "+to_yaml if self.id==nil end # deletes a validation @@ -66,6 +62,7 @@ module Validation # validates an algorithm by building a model and validating this model def validate_algorithm( algorithm_params=nil, task=nil ) + $sinatra.halt 500,"validation_type missing" unless self.validation_type $sinatra.halt 404, "no algorithm uri: '"+self.algorithm_uri.to_s+"'" if self.algorithm_uri==nil or self.algorithm_uri.to_s.size<1 params = { :dataset_uri => self.training_dataset_uri, :prediction_feature => self.prediction_feature } @@ -95,6 +92,7 @@ module Validation # PENDING: a new dataset is created to store the predictions, this should be optional: delete predictions afterwards yes/no def validate_model( task=nil ) + $sinatra.halt 500,"validation_type missing" unless self.validation_type LOGGER.debug "validating model '"+self.model_uri+"'" model = OpenTox::Model::PredictionModel.find(self.model_uri) @@ -179,6 +177,8 @@ module Validation params[:stratified] = false if params[:stratified]==nil params[:finished] = false super params + self.save! + raise "internal error, crossvalidation-id not set" if self.id==nil end def perform_cv ( prediction_feature, algorithm_params=nil, task=nil ) -- cgit v1.2.3 From 3fd24182bee64ea2252aa494e5930c9c9924d1d2 Mon Sep 17 00:00:00 2001 From: mguetlein Date: Thu, 9 Dec 2010 16:39:22 +0100 Subject: add significance tests to reports, some more report modifications --- .../.CatalogManager.properties.example | 61 - docbook-xsl-1.75.2/.cshrc.incl | 36 - docbook-xsl-1.75.2/.directory | 3 - docbook-xsl-1.75.2/.emacs.el | 6 - docbook-xsl-1.75.2/.profile.incl | 43 - docbook-xsl-1.75.2/.urilist | 1 - docbook-xsl-1.75.2/AUTHORS | 4 - docbook-xsl-1.75.2/BUGS | 21 - docbook-xsl-1.75.2/COPYING | 47 - docbook-xsl-1.75.2/DOCBOOK-BUILD.LOG | 47855 ------------------- docbook-xsl-1.75.2/INSTALL | 88 - docbook-xsl-1.75.2/Makefile | 89 - docbook-xsl-1.75.2/NEWS | 159 - docbook-xsl-1.75.2/NEWS.html | 30 - docbook-xsl-1.75.2/NEWS.xml | 174 - docbook-xsl-1.75.2/README | 157 - docbook-xsl-1.75.2/RELEASE-NOTES.html | 7540 --- docbook-xsl-1.75.2/RELEASE-NOTES.txt | 7920 --- docbook-xsl-1.75.2/RELEASE-NOTES.xml | 9379 ---- docbook-xsl-1.75.2/TODO | 23 - docbook-xsl-1.75.2/VERSION | 115 - docbook-xsl-1.75.2/catalog.xml | 8 - docbook-xsl-1.75.2/common/af.xml | 1230 - docbook-xsl-1.75.2/common/am.xml | 1230 - docbook-xsl-1.75.2/common/ar.xml | 1230 - docbook-xsl-1.75.2/common/autoidx-kimber.xsl | 43 - docbook-xsl-1.75.2/common/autoidx-kosek.xsl | 150 - docbook-xsl-1.75.2/common/az.xml | 673 - docbook-xsl-1.75.2/common/bg.xml | 725 - docbook-xsl-1.75.2/common/bn.xml | 1230 - docbook-xsl-1.75.2/common/bs.xml | 663 - docbook-xsl-1.75.2/common/ca.xml | 1230 - docbook-xsl-1.75.2/common/charmap.xml | 185 - docbook-xsl-1.75.2/common/charmap.xsl | 221 - docbook-xsl-1.75.2/common/common.xml | 622 - docbook-xsl-1.75.2/common/common.xsl | 2039 - docbook-xsl-1.75.2/common/cs.xml | 701 - docbook-xsl-1.75.2/common/cy.xml | 1246 - docbook-xsl-1.75.2/common/da.xml | 665 - docbook-xsl-1.75.2/common/de.xml | 667 - docbook-xsl-1.75.2/common/el.xml | 1230 - docbook-xsl-1.75.2/common/en.xml | 1230 - docbook-xsl-1.75.2/common/entities.ent | 60 - docbook-xsl-1.75.2/common/eo.xml | 1230 - docbook-xsl-1.75.2/common/es.xml | 677 - docbook-xsl-1.75.2/common/et.xml | 1230 - docbook-xsl-1.75.2/common/eu.xml | 1230 - docbook-xsl-1.75.2/common/fa.xml | 1230 - docbook-xsl-1.75.2/common/fi.xml | 671 - docbook-xsl-1.75.2/common/fr.xml | 691 - docbook-xsl-1.75.2/common/ga.xml | 1230 - docbook-xsl-1.75.2/common/gentext.xsl | 836 - docbook-xsl-1.75.2/common/gl.xml | 1230 - docbook-xsl-1.75.2/common/gu.xml | 1230 - docbook-xsl-1.75.2/common/he.xml | 1230 - docbook-xsl-1.75.2/common/hi.xml | 1230 - docbook-xsl-1.75.2/common/hr.xml | 1230 - docbook-xsl-1.75.2/common/hu.xml | 1230 - docbook-xsl-1.75.2/common/id.xml | 1230 - docbook-xsl-1.75.2/common/insertfile.xsl | 111 - docbook-xsl-1.75.2/common/is.xml | 673 - docbook-xsl-1.75.2/common/it.xml | 1230 - docbook-xsl-1.75.2/common/ja.xml | 1230 - docbook-xsl-1.75.2/common/kn.xml | 1230 - docbook-xsl-1.75.2/common/ko.xml | 1230 - docbook-xsl-1.75.2/common/ky.xml | 733 - docbook-xsl-1.75.2/common/l10n.dtd | 63 - docbook-xsl-1.75.2/common/l10n.xml | 131 - docbook-xsl-1.75.2/common/l10n.xsl | 497 - docbook-xsl-1.75.2/common/la.xml | 1230 - docbook-xsl-1.75.2/common/labels.xsl | 890 - docbook-xsl-1.75.2/common/lt.xml | 679 - docbook-xsl-1.75.2/common/lv.xml | 1230 - docbook-xsl-1.75.2/common/mn.xml | 731 - docbook-xsl-1.75.2/common/nb.xml | 1230 - docbook-xsl-1.75.2/common/nl.xml | 1230 - docbook-xsl-1.75.2/common/nn.xml | 1230 - docbook-xsl-1.75.2/common/olink.xsl | 1215 - docbook-xsl-1.75.2/common/or.xml | 1230 - docbook-xsl-1.75.2/common/pa.xml | 1230 - docbook-xsl-1.75.2/common/pi.xml | 165 - docbook-xsl-1.75.2/common/pi.xsl | 344 - docbook-xsl-1.75.2/common/pl.xml | 1230 - docbook-xsl-1.75.2/common/pt.xml | 1230 - docbook-xsl-1.75.2/common/pt_br.xml | 1230 - docbook-xsl-1.75.2/common/refentry.xml | 781 - docbook-xsl-1.75.2/common/refentry.xsl | 1352 - docbook-xsl-1.75.2/common/ro.xml | 1230 - docbook-xsl-1.75.2/common/ru.xml | 727 - docbook-xsl-1.75.2/common/sk.xml | 1230 - docbook-xsl-1.75.2/common/sl.xml | 1230 - docbook-xsl-1.75.2/common/sq.xml | 1230 - docbook-xsl-1.75.2/common/sr.xml | 721 - docbook-xsl-1.75.2/common/sr_Latn.xml | 680 - docbook-xsl-1.75.2/common/stripns.xsl | 330 - docbook-xsl-1.75.2/common/subtitles.xsl | 155 - docbook-xsl-1.75.2/common/sv.xml | 665 - docbook-xsl-1.75.2/common/ta.xml | 1230 - docbook-xsl-1.75.2/common/table.xsl | 514 - docbook-xsl-1.75.2/common/targetdatabase.dtd | 49 - docbook-xsl-1.75.2/common/targets.xsl | 333 - docbook-xsl-1.75.2/common/th.xml | 1230 - docbook-xsl-1.75.2/common/titles.xsl | 803 - docbook-xsl-1.75.2/common/tl.xml | 1230 - docbook-xsl-1.75.2/common/tr.xml | 667 - docbook-xsl-1.75.2/common/uk.xml | 727 - docbook-xsl-1.75.2/common/utility.xml | 259 - docbook-xsl-1.75.2/common/utility.xsl | 290 - docbook-xsl-1.75.2/common/vi.xml | 1230 - docbook-xsl-1.75.2/common/xh.xml | 1230 - docbook-xsl-1.75.2/common/zh.xml | 661 - docbook-xsl-1.75.2/common/zh_cn.xml | 661 - docbook-xsl-1.75.2/common/zh_tw.xml | 1230 - docbook-xsl-1.75.2/docsrc/authors.xml | 10 - docbook-xsl-1.75.2/docsrc/copyright.xml | 18 - docbook-xsl-1.75.2/docsrc/license.xml | 23 - docbook-xsl-1.75.2/docsrc/page.png | Bin 17578 -> 0 bytes docbook-xsl-1.75.2/docsrc/reference.css | 79 - docbook-xsl-1.75.2/docsrc/reference.xml | 229 - docbook-xsl-1.75.2/docsrc/reference.xml.included | 33555 ------------- docbook-xsl-1.75.2/docsrc/warranty.xml | 11 - docbook-xsl-1.75.2/eclipse/eclipse.xsl | 306 - docbook-xsl-1.75.2/eclipse/profile-eclipse.xsl | 269 - docbook-xsl-1.75.2/epub/README | 88 - docbook-xsl-1.75.2/epub/bin/dbtoepub | 74 - docbook-xsl-1.75.2/epub/bin/lib/docbook.rb | 226 - docbook-xsl-1.75.2/epub/docbook.xsl | 1684 - docbook-xsl-1.75.2/extensions/README.LIBXSLT | 52 - docbook-xsl-1.75.2/extensions/docbook.py | 239 - docbook-xsl-1.75.2/extensions/saxon65.jar | Bin 80939 -> 0 bytes docbook-xsl-1.75.2/extensions/xalan27.jar | Bin 57506 -> 0 bytes docbook-xsl-1.75.2/extensions/xslt.py | 84 - docbook-xsl-1.75.2/fo/admon.xsl | 130 - docbook-xsl-1.75.2/fo/annotations.xsl | 18 - docbook-xsl-1.75.2/fo/autoidx-kimber.xsl | 178 - docbook-xsl-1.75.2/fo/autoidx-kosek.xsl | 149 - docbook-xsl-1.75.2/fo/autoidx-ng.xsl | 20 - docbook-xsl-1.75.2/fo/autoidx.xsl | 1330 - docbook-xsl-1.75.2/fo/autotoc.xsl | 915 - docbook-xsl-1.75.2/fo/axf.xsl | 110 - docbook-xsl-1.75.2/fo/biblio-iso690.xsl | 1300 - docbook-xsl-1.75.2/fo/biblio.xsl | 1169 - docbook-xsl-1.75.2/fo/block.xsl | 643 - docbook-xsl-1.75.2/fo/callout.xsl | 231 - docbook-xsl-1.75.2/fo/component.xsl | 887 - docbook-xsl-1.75.2/fo/division.xsl | 612 - docbook-xsl-1.75.2/fo/docbook.xsl | 333 - docbook-xsl-1.75.2/fo/ebnf.xsl | 325 - docbook-xsl-1.75.2/fo/fo-rtf.xsl | 154 - docbook-xsl-1.75.2/fo/fo.xsl | 117 - docbook-xsl-1.75.2/fo/footnote.xsl | 220 - docbook-xsl-1.75.2/fo/fop.xsl | 93 - docbook-xsl-1.75.2/fo/fop1.xsl | 188 - docbook-xsl-1.75.2/fo/formal.xsl | 618 - docbook-xsl-1.75.2/fo/glossary.xsl | 1144 - docbook-xsl-1.75.2/fo/graphics.xsl | 642 - docbook-xsl-1.75.2/fo/highlight.xsl | 77 - docbook-xsl-1.75.2/fo/htmltbl.xsl | 425 - docbook-xsl-1.75.2/fo/index.xsl | 485 - docbook-xsl-1.75.2/fo/info.xsl | 34 - docbook-xsl-1.75.2/fo/inline.xsl | 1286 - docbook-xsl-1.75.2/fo/keywords.xsl | 21 - docbook-xsl-1.75.2/fo/lists.xsl | 1393 - docbook-xsl-1.75.2/fo/math.xsl | 140 - docbook-xsl-1.75.2/fo/pagesetup.xsl | 2567 - docbook-xsl-1.75.2/fo/param.xml | 12413 ----- docbook-xsl-1.75.2/fo/param.xsl | 942 - docbook-xsl-1.75.2/fo/passivetex.xsl | 36 - docbook-xsl-1.75.2/fo/pdf2index | 140 - docbook-xsl-1.75.2/fo/pi.xml | 1002 - docbook-xsl-1.75.2/fo/pi.xsl | 1092 - docbook-xsl-1.75.2/fo/profile-docbook.xsl | 288 - docbook-xsl-1.75.2/fo/ptc.xsl | 77 - docbook-xsl-1.75.2/fo/qandaset.xsl | 395 - docbook-xsl-1.75.2/fo/refentry.xsl | 637 - docbook-xsl-1.75.2/fo/sections.xsl | 764 - docbook-xsl-1.75.2/fo/spaces.xsl | 274 - docbook-xsl-1.75.2/fo/synop.xsl | 1007 - docbook-xsl-1.75.2/fo/table.xml | 135 - docbook-xsl-1.75.2/fo/table.xsl | 1621 - docbook-xsl-1.75.2/fo/task.xsl | 91 - docbook-xsl-1.75.2/fo/titlepage.templates.xml | 1354 - docbook-xsl-1.75.2/fo/titlepage.templates.xsl | 5182 -- docbook-xsl-1.75.2/fo/titlepage.xsl | 760 - docbook-xsl-1.75.2/fo/toc.xsl | 332 - docbook-xsl-1.75.2/fo/verbatim.xsl | 465 - docbook-xsl-1.75.2/fo/xep.xsl | 180 - docbook-xsl-1.75.2/fo/xref.xsl | 1519 - docbook-xsl-1.75.2/highlighting/README | 16 - docbook-xsl-1.75.2/highlighting/c-hl.xml | 101 - docbook-xsl-1.75.2/highlighting/common.xsl | 120 - docbook-xsl-1.75.2/highlighting/cpp-hl.xml | 150 - docbook-xsl-1.75.2/highlighting/csharp-hl.xml | 187 - docbook-xsl-1.75.2/highlighting/delphi-hl.xml | 200 - docbook-xsl-1.75.2/highlighting/ini-hl.xml | 45 - docbook-xsl-1.75.2/highlighting/java-hl.xml | 117 - docbook-xsl-1.75.2/highlighting/javascript-hl.xml | 147 - docbook-xsl-1.75.2/highlighting/m2-hl.xml | 90 - docbook-xsl-1.75.2/highlighting/myxml-hl.xml | 116 - docbook-xsl-1.75.2/highlighting/perl-hl.xml | 120 - docbook-xsl-1.75.2/highlighting/php-hl.xml | 149 - docbook-xsl-1.75.2/highlighting/python-hl.xml | 100 - docbook-xsl-1.75.2/highlighting/ruby-hl.xml | 109 - docbook-xsl-1.75.2/highlighting/tcl-hl.xml | 180 - docbook-xsl-1.75.2/highlighting/xslthl-config.xml | 46 - docbook-xsl-1.75.2/html/admon.xsl | 134 - docbook-xsl-1.75.2/html/annotations.xsl | 169 - docbook-xsl-1.75.2/html/autoidx-kimber.xsl | 168 - docbook-xsl-1.75.2/html/autoidx-kosek.xsl | 124 - docbook-xsl-1.75.2/html/autoidx-ng.xsl | 20 - docbook-xsl-1.75.2/html/autoidx.xsl | 712 - docbook-xsl-1.75.2/html/autotoc.xsl | 676 - docbook-xsl-1.75.2/html/biblio-iso690.xsl | 1300 - docbook-xsl-1.75.2/html/biblio.xsl | 1253 - docbook-xsl-1.75.2/html/block.xsl | 437 - docbook-xsl-1.75.2/html/callout.xsl | 201 - docbook-xsl-1.75.2/html/changebars.xsl | 121 - docbook-xsl-1.75.2/html/chunk-changebars.xsl | 99 - docbook-xsl-1.75.2/html/chunk-code.xsl | 667 - docbook-xsl-1.75.2/html/chunk-common.xsl | 1920 - docbook-xsl-1.75.2/html/chunk.xsl | 52 - docbook-xsl-1.75.2/html/chunker.xsl | 439 - docbook-xsl-1.75.2/html/chunkfast.xsl | 72 - docbook-xsl-1.75.2/html/chunktoc.xsl | 544 - docbook-xsl-1.75.2/html/component.xsl | 425 - docbook-xsl-1.75.2/html/division.xsl | 217 - docbook-xsl-1.75.2/html/docbook.xsl | 481 - docbook-xsl-1.75.2/html/ebnf.xsl | 329 - docbook-xsl-1.75.2/html/footnote.xsl | 310 - docbook-xsl-1.75.2/html/formal.xsl | 404 - docbook-xsl-1.75.2/html/glossary.xsl | 492 - docbook-xsl-1.75.2/html/graphics.xsl | 1515 - docbook-xsl-1.75.2/html/highlight.xsl | 73 - docbook-xsl-1.75.2/html/html-rtf.xsl | 336 - docbook-xsl-1.75.2/html/html.xsl | 370 - docbook-xsl-1.75.2/html/htmltbl.xsl | 135 - docbook-xsl-1.75.2/html/index.xsl | 288 - docbook-xsl-1.75.2/html/info.xsl | 43 - docbook-xsl-1.75.2/html/inline.xsl | 1485 - docbook-xsl-1.75.2/html/keywords.xsl | 35 - docbook-xsl-1.75.2/html/lists.xsl | 1183 - docbook-xsl-1.75.2/html/maketoc.xsl | 86 - docbook-xsl-1.75.2/html/manifest.xsl | 22 - docbook-xsl-1.75.2/html/math.xsl | 270 - docbook-xsl-1.75.2/html/oldchunker.xsl | 202 - docbook-xsl-1.75.2/html/onechunk.xsl | 37 - docbook-xsl-1.75.2/html/param.xml | 10584 ---- docbook-xsl-1.75.2/html/param.xsl | 429 - docbook-xsl-1.75.2/html/pi.xml | 1113 - docbook-xsl-1.75.2/html/pi.xsl | 1263 - docbook-xsl-1.75.2/html/profile-chunk-code.xsl | 608 - docbook-xsl-1.75.2/html/profile-chunk.xsl | 52 - docbook-xsl-1.75.2/html/profile-docbook.xsl | 414 - docbook-xsl-1.75.2/html/profile-onechunk.xsl | 37 - docbook-xsl-1.75.2/html/qandaset.xsl | 437 - docbook-xsl-1.75.2/html/refentry.xsl | 299 - docbook-xsl-1.75.2/html/sections.xsl | 615 - docbook-xsl-1.75.2/html/synop.xsl | 1554 - docbook-xsl-1.75.2/html/table.xsl | 1147 - docbook-xsl-1.75.2/html/task.xsl | 76 - docbook-xsl-1.75.2/html/titlepage.templates.xml | 686 - docbook-xsl-1.75.2/html/titlepage.templates.xsl | 3710 -- docbook-xsl-1.75.2/html/titlepage.xsl | 1044 - docbook-xsl-1.75.2/html/toc.xsl | 350 - docbook-xsl-1.75.2/html/verbatim.xsl | 403 - docbook-xsl-1.75.2/html/xref.xsl | 1377 - docbook-xsl-1.75.2/htmlhelp/htmlhelp-common.xsl | 1120 - docbook-xsl-1.75.2/htmlhelp/htmlhelp.xsl | 22 - .../htmlhelp/profile-htmlhelp-common.xsl | 1083 - docbook-xsl-1.75.2/htmlhelp/profile-htmlhelp.xsl | 22 - docbook-xsl-1.75.2/images/annot-close.png | Bin 207 -> 0 bytes docbook-xsl-1.75.2/images/annot-open.png | Bin 837 -> 0 bytes docbook-xsl-1.75.2/images/blank.png | Bin 374 -> 0 bytes docbook-xsl-1.75.2/images/callouts/1.gif | Bin 889 -> 0 bytes docbook-xsl-1.75.2/images/callouts/1.png | Bin 329 -> 0 bytes docbook-xsl-1.75.2/images/callouts/1.svg | 15 - docbook-xsl-1.75.2/images/callouts/10.gif | Bin 929 -> 0 bytes docbook-xsl-1.75.2/images/callouts/10.png | Bin 361 -> 0 bytes docbook-xsl-1.75.2/images/callouts/10.svg | 18 - docbook-xsl-1.75.2/images/callouts/11.gif | Bin 202 -> 0 bytes docbook-xsl-1.75.2/images/callouts/11.png | Bin 565 -> 0 bytes docbook-xsl-1.75.2/images/callouts/11.svg | 16 - docbook-xsl-1.75.2/images/callouts/12.gif | Bin 210 -> 0 bytes docbook-xsl-1.75.2/images/callouts/12.png | Bin 617 -> 0 bytes docbook-xsl-1.75.2/images/callouts/12.svg | 18 - docbook-xsl-1.75.2/images/callouts/13.gif | Bin 209 -> 0 bytes docbook-xsl-1.75.2/images/callouts/13.png | Bin 623 -> 0 bytes docbook-xsl-1.75.2/images/callouts/13.svg | 20 - docbook-xsl-1.75.2/images/callouts/14.gif | Bin 205 -> 0 bytes docbook-xsl-1.75.2/images/callouts/14.png | Bin 411 -> 0 bytes docbook-xsl-1.75.2/images/callouts/14.svg | 17 - docbook-xsl-1.75.2/images/callouts/15.gif | Bin 210 -> 0 bytes docbook-xsl-1.75.2/images/callouts/15.png | Bin 640 -> 0 bytes docbook-xsl-1.75.2/images/callouts/15.svg | 19 - docbook-xsl-1.75.2/images/callouts/16.svg | 20 - docbook-xsl-1.75.2/images/callouts/17.svg | 17 - docbook-xsl-1.75.2/images/callouts/18.svg | 21 - docbook-xsl-1.75.2/images/callouts/19.svg | 20 - docbook-xsl-1.75.2/images/callouts/2.gif | Bin 907 -> 0 bytes docbook-xsl-1.75.2/images/callouts/2.png | Bin 353 -> 0 bytes docbook-xsl-1.75.2/images/callouts/2.svg | 17 - docbook-xsl-1.75.2/images/callouts/20.svg | 20 - docbook-xsl-1.75.2/images/callouts/21.svg | 18 - docbook-xsl-1.75.2/images/callouts/22.svg | 20 - docbook-xsl-1.75.2/images/callouts/23.svg | 22 - docbook-xsl-1.75.2/images/callouts/24.svg | 19 - docbook-xsl-1.75.2/images/callouts/25.svg | 21 - docbook-xsl-1.75.2/images/callouts/26.svg | 22 - docbook-xsl-1.75.2/images/callouts/27.svg | 19 - docbook-xsl-1.75.2/images/callouts/28.svg | 23 - docbook-xsl-1.75.2/images/callouts/29.svg | 22 - docbook-xsl-1.75.2/images/callouts/3.gif | Bin 914 -> 0 bytes docbook-xsl-1.75.2/images/callouts/3.png | Bin 350 -> 0 bytes docbook-xsl-1.75.2/images/callouts/3.svg | 19 - docbook-xsl-1.75.2/images/callouts/30.svg | 22 - docbook-xsl-1.75.2/images/callouts/4.gif | Bin 907 -> 0 bytes docbook-xsl-1.75.2/images/callouts/4.png | Bin 345 -> 0 bytes docbook-xsl-1.75.2/images/callouts/4.svg | 16 - docbook-xsl-1.75.2/images/callouts/5.gif | Bin 916 -> 0 bytes docbook-xsl-1.75.2/images/callouts/5.png | Bin 348 -> 0 bytes docbook-xsl-1.75.2/images/callouts/5.svg | 18 - docbook-xsl-1.75.2/images/callouts/6.gif | Bin 218 -> 0 bytes docbook-xsl-1.75.2/images/callouts/6.png | Bin 355 -> 0 bytes docbook-xsl-1.75.2/images/callouts/6.svg | 19 - docbook-xsl-1.75.2/images/callouts/7.gif | Bin 907 -> 0 bytes docbook-xsl-1.75.2/images/callouts/7.png | Bin 344 -> 0 bytes docbook-xsl-1.75.2/images/callouts/7.svg | 16 - docbook-xsl-1.75.2/images/callouts/8.gif | Bin 918 -> 0 bytes docbook-xsl-1.75.2/images/callouts/8.png | Bin 357 -> 0 bytes docbook-xsl-1.75.2/images/callouts/8.svg | 20 - docbook-xsl-1.75.2/images/callouts/9.gif | Bin 923 -> 0 bytes docbook-xsl-1.75.2/images/callouts/9.png | Bin 357 -> 0 bytes docbook-xsl-1.75.2/images/callouts/9.svg | 19 - docbook-xsl-1.75.2/images/caution.gif | Bin 743 -> 0 bytes docbook-xsl-1.75.2/images/caution.png | Bin 1250 -> 0 bytes docbook-xsl-1.75.2/images/caution.svg | 25 - docbook-xsl-1.75.2/images/caution.tif | Bin 1978 -> 0 bytes docbook-xsl-1.75.2/images/colorsvg/caution.svg | 141 - docbook-xsl-1.75.2/images/colorsvg/home.svg | 498 - docbook-xsl-1.75.2/images/colorsvg/important.svg | 239 - docbook-xsl-1.75.2/images/colorsvg/next.svg | 338 - docbook-xsl-1.75.2/images/colorsvg/note.svg | 200 - docbook-xsl-1.75.2/images/colorsvg/prev.svg | 338 - docbook-xsl-1.75.2/images/colorsvg/tip.svg | 367 - docbook-xsl-1.75.2/images/colorsvg/up.svg | 338 - docbook-xsl-1.75.2/images/colorsvg/warning.svg | 232 - docbook-xsl-1.75.2/images/draft.png | Bin 16150 -> 0 bytes docbook-xsl-1.75.2/images/home.gif | Bin 321 -> 0 bytes docbook-xsl-1.75.2/images/home.png | Bin 1156 -> 0 bytes docbook-xsl-1.75.2/images/home.svg | 26 - docbook-xsl-1.75.2/images/important.gif | Bin 1003 -> 0 bytes docbook-xsl-1.75.2/images/important.png | Bin 722 -> 0 bytes docbook-xsl-1.75.2/images/important.svg | 25 - docbook-xsl-1.75.2/images/important.tif | Bin 2020 -> 0 bytes docbook-xsl-1.75.2/images/next.gif | Bin 1083 -> 0 bytes docbook-xsl-1.75.2/images/next.png | Bin 1150 -> 0 bytes docbook-xsl-1.75.2/images/next.svg | 19 - docbook-xsl-1.75.2/images/note.gif | Bin 580 -> 0 bytes docbook-xsl-1.75.2/images/note.png | Bin 490 -> 0 bytes docbook-xsl-1.75.2/images/note.svg | 33 - docbook-xsl-1.75.2/images/note.tif | Bin 460 -> 0 bytes docbook-xsl-1.75.2/images/prev.gif | Bin 1118 -> 0 bytes docbook-xsl-1.75.2/images/prev.png | Bin 1132 -> 0 bytes docbook-xsl-1.75.2/images/prev.svg | 19 - docbook-xsl-1.75.2/images/tip.gif | Bin 598 -> 0 bytes docbook-xsl-1.75.2/images/tip.png | Bin 449 -> 0 bytes docbook-xsl-1.75.2/images/tip.svg | 31 - docbook-xsl-1.75.2/images/tip.tif | Bin 420 -> 0 bytes docbook-xsl-1.75.2/images/toc-blank.png | Bin 318 -> 0 bytes docbook-xsl-1.75.2/images/toc-minus.png | Bin 259 -> 0 bytes docbook-xsl-1.75.2/images/toc-plus.png | Bin 264 -> 0 bytes docbook-xsl-1.75.2/images/up.gif | Bin 1089 -> 0 bytes docbook-xsl-1.75.2/images/up.png | Bin 1111 -> 0 bytes docbook-xsl-1.75.2/images/up.svg | 19 - docbook-xsl-1.75.2/images/warning.gif | Bin 743 -> 0 bytes docbook-xsl-1.75.2/images/warning.png | Bin 1241 -> 0 bytes docbook-xsl-1.75.2/images/warning.svg | 23 - docbook-xsl-1.75.2/images/warning.tif | Bin 1990 -> 0 bytes docbook-xsl-1.75.2/install.sh | 977 - docbook-xsl-1.75.2/javahelp/javahelp.xsl | 625 - docbook-xsl-1.75.2/javahelp/profile-javahelp.xsl | 549 - docbook-xsl-1.75.2/lib/lib.xsl | 480 - docbook-xsl-1.75.2/manpages/ChangeLog.20020917 | 195 - docbook-xsl-1.75.2/manpages/block.xsl | 399 - docbook-xsl-1.75.2/manpages/charmap.groff.xsl | 6013 --- docbook-xsl-1.75.2/manpages/docbook.xsl | 310 - docbook-xsl-1.75.2/manpages/endnotes.xsl | 584 - docbook-xsl-1.75.2/manpages/html-synop.xsl | 1567 - docbook-xsl-1.75.2/manpages/info.xsl | 800 - docbook-xsl-1.75.2/manpages/inline.xsl | 219 - docbook-xsl-1.75.2/manpages/lists.xsl | 608 - docbook-xsl-1.75.2/manpages/other.xsl | 869 - docbook-xsl-1.75.2/manpages/param.xml | 3220 -- docbook-xsl-1.75.2/manpages/param.xsl | 193 - docbook-xsl-1.75.2/manpages/pi.xml | 70 - docbook-xsl-1.75.2/manpages/pi.xsl | 79 - docbook-xsl-1.75.2/manpages/profile-docbook.xsl | 280 - docbook-xsl-1.75.2/manpages/refentry.xsl | 319 - docbook-xsl-1.75.2/manpages/synop.xsl | 432 - docbook-xsl-1.75.2/manpages/table.xsl | 633 - docbook-xsl-1.75.2/manpages/utility.xsl | 555 - .../params/abstract.notitle.enabled.xml | 22 - docbook-xsl-1.75.2/params/abstract.properties.xml | 32 - .../params/abstract.title.properties.xml | 39 - docbook-xsl-1.75.2/params/active.toc.xml | 29 - docbook-xsl-1.75.2/params/ade.extensions.xml | 32 - .../params/admon.graphics.extension.xml | 27 - docbook-xsl-1.75.2/params/admon.graphics.path.xml | 27 - docbook-xsl-1.75.2/params/admon.graphics.xml | 29 - docbook-xsl-1.75.2/params/admon.style.xml | 31 - docbook-xsl-1.75.2/params/admon.textlabel.xml | 32 - .../params/admonition.properties.xml | 25 - .../params/admonition.title.properties.xml | 32 - docbook-xsl-1.75.2/params/alignment.xml | 41 - docbook-xsl-1.75.2/params/annotate.toc.xml | 28 - docbook-xsl-1.75.2/params/annotation.css.xml | 71 - .../params/annotation.graphic.close.xml | 31 - .../params/annotation.graphic.open.xml | 28 - docbook-xsl-1.75.2/params/annotation.js.xml | 33 - docbook-xsl-1.75.2/params/annotation.support.xml | 29 - docbook-xsl-1.75.2/params/appendix.autolabel.xml | 73 - docbook-xsl-1.75.2/params/arbortext.extensions.xml | 30 - .../params/article.appendix.title.properties.xml | 33 - .../params/author.othername.in.middle.xml | 31 - docbook-xsl-1.75.2/params/autolayout-file.xml | 29 - .../params/autotoc.label.in.hyperlink.xml | 29 - .../params/autotoc.label.separator.xml | 27 - docbook-xsl-1.75.2/params/axf.extensions.xml | 33 - .../params/banner.before.navigation.xml | 25 - docbook-xsl-1.75.2/params/base.dir.xml | 29 - .../params/biblioentry.item.separator.xml | 26 - .../params/biblioentry.properties.xml | 28 - .../params/bibliography.collection.xml | 104 - .../params/bibliography.numbered.xml | 27 - docbook-xsl-1.75.2/params/bibliography.style.xml | 35 - .../params/blockquote.properties.xml | 34 - .../params/blurb.on.titlepage.enabled.xml | 31 - docbook-xsl-1.75.2/params/body.attributes.xml | 31 - docbook-xsl-1.75.2/params/body.bg.color.xml | 28 - docbook-xsl-1.75.2/params/body.end.indent.xml | 37 - docbook-xsl-1.75.2/params/body.font.family.xml | 32 - docbook-xsl-1.75.2/params/body.font.master.xml | 30 - docbook-xsl-1.75.2/params/body.font.size.xml | 31 - docbook-xsl-1.75.2/params/body.margin.bottom.xml | 29 - docbook-xsl-1.75.2/params/body.margin.top.xml | 28 - docbook-xsl-1.75.2/params/body.start.indent.xml | 64 - docbook-xsl-1.75.2/params/bookmarks.collapse.xml | 31 - docbook-xsl-1.75.2/params/bridgehead.in.toc.xml | 28 - docbook-xsl-1.75.2/params/bullet.image.xml | 28 - .../params/callout.defaultcolumn.xml | 30 - .../params/callout.graphics.extension.xml | 33 - .../params/callout.graphics.number.limit.xml | 34 - .../params/callout.graphics.path.xml | 31 - docbook-xsl-1.75.2/params/callout.graphics.xml | 30 - docbook-xsl-1.75.2/params/callout.icon.size.xml | 28 - docbook-xsl-1.75.2/params/callout.list.table.xml | 32 - docbook-xsl-1.75.2/params/callout.unicode.font.xml | 29 - .../params/callout.unicode.number.limit.xml | 35 - .../params/callout.unicode.start.character.xml | 33 - docbook-xsl-1.75.2/params/callout.unicode.xml | 26 - docbook-xsl-1.75.2/params/callouts.extension.xml | 30 - docbook-xsl-1.75.2/params/chapter.autolabel.xml | 71 - docbook-xsl-1.75.2/params/chunk.append.xml | 30 - docbook-xsl-1.75.2/params/chunk.first.sections.xml | 31 - docbook-xsl-1.75.2/params/chunk.quietly.xml | 30 - docbook-xsl-1.75.2/params/chunk.section.depth.xml | 27 - docbook-xsl-1.75.2/params/chunk.sections.xml | 30 - docbook-xsl-1.75.2/params/chunk.separate.lots.xml | 36 - docbook-xsl-1.75.2/params/chunk.toc.xml | 30 - .../params/chunk.tocs.and.lots.has.title.xml | 28 - docbook-xsl-1.75.2/params/chunk.tocs.and.lots.xml | 32 - .../chunker.output.cdata-section-elements.xml | 30 - .../params/chunker.output.doctype-public.xml | 31 - .../params/chunker.output.doctype-system.xml | 31 - .../params/chunker.output.encoding.xml | 31 - .../params/chunker.output.indent.xml | 30 - .../params/chunker.output.media-type.xml | 35 - .../params/chunker.output.method.xml | 32 - .../params/chunker.output.omit-xml-declaration.xml | 30 - .../params/chunker.output.standalone.xml | 31 - docbook-xsl-1.75.2/params/citerefentry.link.xml | 29 - docbook-xsl-1.75.2/params/collect.xref.targets.xml | 33 - docbook-xsl-1.75.2/params/column.count.back.xml | 27 - docbook-xsl-1.75.2/params/column.count.body.xml | 27 - docbook-xsl-1.75.2/params/column.count.front.xml | 27 - docbook-xsl-1.75.2/params/column.count.index.xml | 27 - docbook-xsl-1.75.2/params/column.count.lot.xml | 28 - .../params/column.count.titlepage.xml | 27 - docbook-xsl-1.75.2/params/column.gap.back.xml | 28 - docbook-xsl-1.75.2/params/column.gap.body.xml | 28 - docbook-xsl-1.75.2/params/column.gap.front.xml | 28 - docbook-xsl-1.75.2/params/column.gap.index.xml | 28 - docbook-xsl-1.75.2/params/column.gap.lot.xml | 28 - docbook-xsl-1.75.2/params/column.gap.titlepage.xml | 29 - .../params/compact.list.item.spacing.xml | 28 - .../params/component.label.includes.part.label.xml | 39 - .../params/component.title.properties.xml | 40 - .../params/component.titlepage.properties.xml | 33 - .../params/contrib.inline.enabled.xml | 26 - docbook-xsl-1.75.2/params/crop.mark.bleed.xml | 28 - docbook-xsl-1.75.2/params/crop.mark.offset.xml | 28 - docbook-xsl-1.75.2/params/crop.mark.width.xml | 28 - docbook-xsl-1.75.2/params/crop.marks.xml | 28 - docbook-xsl-1.75.2/params/css.decoration.xml | 33 - docbook-xsl-1.75.2/params/css.stylesheet.dir.xml | 33 - docbook-xsl-1.75.2/params/css.stylesheet.xml | 29 - docbook-xsl-1.75.2/params/current.docid.xml | 27 - docbook-xsl-1.75.2/params/currentpage.marker.xml | 25 - docbook-xsl-1.75.2/params/default.float.class.xml | 34 - docbook-xsl-1.75.2/params/default.image.width.xml | 31 - docbook-xsl-1.75.2/params/default.table.frame.xml | 28 - docbook-xsl-1.75.2/params/default.table.rules.xml | 76 - docbook-xsl-1.75.2/params/default.table.width.xml | 26 - docbook-xsl-1.75.2/params/default.units.xml | 37 - docbook-xsl-1.75.2/params/dingbat.font.family.xml | 33 - docbook-xsl-1.75.2/params/double.sided.xml | 31 - docbook-xsl-1.75.2/params/draft.mode.xml | 36 - .../params/draft.watermark.image.xml | 27 - docbook-xsl-1.75.2/params/dry-run.xml | 27 - docbook-xsl-1.75.2/params/dynamic.toc.xml | 29 - docbook-xsl-1.75.2/params/ebnf.assignment.xml | 39 - .../params/ebnf.statement.terminator.xml | 32 - docbook-xsl-1.75.2/params/ebnf.table.bgcolor.xml | 30 - docbook-xsl-1.75.2/params/ebnf.table.border.xml | 26 - docbook-xsl-1.75.2/params/eclipse.autolabel.xml | 28 - docbook-xsl-1.75.2/params/eclipse.plugin.id.xml | 28 - docbook-xsl-1.75.2/params/eclipse.plugin.name.xml | 27 - .../params/eclipse.plugin.provider.xml | 27 - docbook-xsl-1.75.2/params/editedby.enabled.xml | 27 - .../params/email.delimiters.enabled.xml | 34 - docbook-xsl-1.75.2/params/email.mailto.enabled.xml | 29 - .../params/emphasis.propagates.style.xml | 26 - .../params/entry.propagates.style.xml | 30 - docbook-xsl-1.75.2/params/epub.autolabel.xml | 28 - docbook-xsl-1.75.2/params/equation.properties.xml | 27 - docbook-xsl-1.75.2/params/example.properties.xml | 27 - .../params/exsl.node.set.available.xml | 44 - docbook-xsl-1.75.2/params/feedback.href.xml | 28 - docbook-xsl-1.75.2/params/feedback.link.text.xml | 28 - docbook-xsl-1.75.2/params/feedback.with.ids.xml | 27 - docbook-xsl-1.75.2/params/figure.properties.xml | 27 - docbook-xsl-1.75.2/params/filename-prefix.xml | 28 - docbook-xsl-1.75.2/params/firstterm.only.link.xml | 29 - docbook-xsl-1.75.2/params/foil.properties.xml | 37 - .../params/foil.subtitle.properties.xml | 36 - docbook-xsl-1.75.2/params/foil.title.master.xml | 29 - docbook-xsl-1.75.2/params/foil.title.size.xml | 32 - docbook-xsl-1.75.2/params/foilgroup.properties.xml | 31 - docbook-xsl-1.75.2/params/foilgroup.toc.xml | 29 - docbook-xsl-1.75.2/params/footer.column.widths.xml | 80 - .../params/footer.content.properties.xml | 34 - docbook-xsl-1.75.2/params/footer.hr.xml | 26 - docbook-xsl-1.75.2/params/footer.rule.xml | 27 - docbook-xsl-1.75.2/params/footer.table.height.xml | 32 - .../params/footer.table.properties.xml | 30 - .../params/footers.on.blank.pages.xml | 27 - docbook-xsl-1.75.2/params/footnote.font.size.xml | 28 - .../params/footnote.mark.properties.xml | 41 - .../params/footnote.number.format.xml | 33 - .../params/footnote.number.symbols.xml | 39 - docbook-xsl-1.75.2/params/footnote.properties.xml | 43 - .../params/footnote.sep.leader.properties.xml | 39 - docbook-xsl-1.75.2/params/fop.extensions.xml | 36 - docbook-xsl-1.75.2/params/fop1.extensions.xml | 34 - .../params/formal.object.properties.xml | 36 - docbook-xsl-1.75.2/params/formal.procedures.xml | 28 - .../params/formal.title.placement.xml | 41 - .../params/formal.title.properties.xml | 34 - .../params/funcsynopsis.decoration.xml | 30 - docbook-xsl-1.75.2/params/funcsynopsis.style.xml | 31 - docbook-xsl-1.75.2/params/function.parens.xml | 29 - .../params/generate.id.attributes.xml | 59 - docbook-xsl-1.75.2/params/generate.index.xml | 25 - .../params/generate.legalnotice.link.xml | 72 - docbook-xsl-1.75.2/params/generate.manifest.xml | 27 - .../params/generate.meta.abstract.xml | 29 - .../params/generate.revhistory.link.xml | 50 - .../params/generate.section.toc.level.xml | 35 - docbook-xsl-1.75.2/params/generate.toc.xml | 108 - docbook-xsl-1.75.2/params/glossary.as.blocks.xml | 38 - docbook-xsl-1.75.2/params/glossary.collection.xml | 252 - docbook-xsl-1.75.2/params/glossary.sort.xml | 32 - .../params/glossdef.block.properties.xml | 32 - .../params/glossdef.list.properties.xml | 30 - .../params/glossentry.list.item.properties.xml | 32 - .../params/glossentry.show.acronym.xml | 37 - docbook-xsl-1.75.2/params/glosslist.as.blocks.xml | 27 - docbook-xsl-1.75.2/params/glossterm.auto.link.xml | 33 - .../params/glossterm.block.properties.xml | 35 - .../params/glossterm.list.properties.xml | 30 - docbook-xsl-1.75.2/params/glossterm.separation.xml | 31 - docbook-xsl-1.75.2/params/glossterm.width.xml | 28 - .../params/graphic.default.extension.xml | 29 - .../params/graphical.admonition.properties.xml | 42 - docbook-xsl-1.75.2/params/graphics.dir.xml | 33 - .../params/graphicsize.extension.xml | 30 - .../params/graphicsize.use.img.src.path.xml | 30 - docbook-xsl-1.75.2/params/header.column.widths.xml | 80 - .../params/header.content.properties.xml | 34 - docbook-xsl-1.75.2/params/header.hr.xml | 26 - docbook-xsl-1.75.2/params/header.rule.xml | 27 - docbook-xsl-1.75.2/params/header.table.height.xml | 32 - .../params/header.table.properties.xml | 30 - .../params/headers.on.blank.pages.xml | 27 - docbook-xsl-1.75.2/params/hidetoc.image.xml | 29 - .../params/highlight.default.language.xml | 27 - docbook-xsl-1.75.2/params/highlight.source.xml | 82 - .../params/highlight.xslthl.config.xml | 27 - docbook-xsl-1.75.2/params/home.image.xml | 27 - docbook-xsl-1.75.2/params/html.append.xml | 30 - docbook-xsl-1.75.2/params/html.base.xml | 30 - docbook-xsl-1.75.2/params/html.cellpadding.xml | 29 - docbook-xsl-1.75.2/params/html.cellspacing.xml | 29 - docbook-xsl-1.75.2/params/html.cleanup.xml | 34 - docbook-xsl-1.75.2/params/html.ext.xml | 29 - .../params/html.extra.head.links.xml | 31 - .../params/html.head.legalnotice.link.multiple.xml | 44 - .../params/html.head.legalnotice.link.types.xml | 75 - docbook-xsl-1.75.2/params/html.longdesc.link.xml | 39 - docbook-xsl-1.75.2/params/html.longdesc.xml | 28 - docbook-xsl-1.75.2/params/html.stylesheet.type.xml | 26 - docbook-xsl-1.75.2/params/html.stylesheet.xml | 36 - docbook-xsl-1.75.2/params/htmlhelp.alias.file.xml | 27 - docbook-xsl-1.75.2/params/htmlhelp.autolabel.xml | 28 - docbook-xsl-1.75.2/params/htmlhelp.button.back.xml | 27 - .../params/htmlhelp.button.forward.xml | 27 - .../params/htmlhelp.button.hideshow.xml | 27 - .../params/htmlhelp.button.home.url.xml | 27 - docbook-xsl-1.75.2/params/htmlhelp.button.home.xml | 27 - .../params/htmlhelp.button.jump1.title.xml | 27 - .../params/htmlhelp.button.jump1.url.xml | 27 - .../params/htmlhelp.button.jump1.xml | 23 - .../params/htmlhelp.button.jump2.title.xml | 27 - .../params/htmlhelp.button.jump2.url.xml | 27 - .../params/htmlhelp.button.jump2.xml | 27 - .../params/htmlhelp.button.locate.xml | 28 - docbook-xsl-1.75.2/params/htmlhelp.button.next.xml | 27 - .../params/htmlhelp.button.options.xml | 28 - docbook-xsl-1.75.2/params/htmlhelp.button.prev.xml | 28 - .../params/htmlhelp.button.print.xml | 28 - .../params/htmlhelp.button.refresh.xml | 27 - docbook-xsl-1.75.2/params/htmlhelp.button.stop.xml | 28 - docbook-xsl-1.75.2/params/htmlhelp.button.zoom.xml | 28 - docbook-xsl-1.75.2/params/htmlhelp.chm.xml | 27 - .../params/htmlhelp.default.topic.xml | 37 - .../params/htmlhelp.display.progress.xml | 28 - docbook-xsl-1.75.2/params/htmlhelp.encoding.xml | 28 - .../params/htmlhelp.enhanced.decompilation.xml | 27 - .../params/htmlhelp.enumerate.images.xml | 28 - .../params/htmlhelp.force.map.and.alias.xml | 26 - docbook-xsl-1.75.2/params/htmlhelp.hhc.binary.xml | 29 - .../params/htmlhelp.hhc.folders.instead.books.xml | 33 - .../params/htmlhelp.hhc.section.depth.xml | 27 - .../params/htmlhelp.hhc.show.root.xml | 29 - docbook-xsl-1.75.2/params/htmlhelp.hhc.width.xml | 28 - docbook-xsl-1.75.2/params/htmlhelp.hhc.xml | 27 - docbook-xsl-1.75.2/params/htmlhelp.hhk.xml | 27 - docbook-xsl-1.75.2/params/htmlhelp.hhp.tail.xml | 28 - docbook-xsl-1.75.2/params/htmlhelp.hhp.window.xml | 28 - docbook-xsl-1.75.2/params/htmlhelp.hhp.windows.xml | 29 - docbook-xsl-1.75.2/params/htmlhelp.hhp.xml | 28 - docbook-xsl-1.75.2/params/htmlhelp.map.file.xml | 25 - docbook-xsl-1.75.2/params/htmlhelp.only.xml | 32 - .../params/htmlhelp.remember.window.position.xml | 27 - .../params/htmlhelp.show.advanced.search.xml | 28 - .../params/htmlhelp.show.favorities.xml | 28 - docbook-xsl-1.75.2/params/htmlhelp.show.menu.xml | 28 - .../params/htmlhelp.show.toolbar.text.xml | 28 - docbook-xsl-1.75.2/params/htmlhelp.title.xml | 28 - docbook-xsl-1.75.2/params/htmlhelp.use.hhk.xml | 28 - .../params/htmlhelp.window.geometry.xml | 30 - .../params/hyphenate.verbatim.characters.xml | 30 - docbook-xsl-1.75.2/params/hyphenate.verbatim.xml | 45 - docbook-xsl-1.75.2/params/hyphenate.xml | 29 - docbook-xsl-1.75.2/params/id.warnings.xml | 25 - docbook-xsl-1.75.2/params/ignore.image.scaling.xml | 28 - docbook-xsl-1.75.2/params/img.src.path.xml | 40 - .../params/index.div.title.properties.xml | 39 - .../params/index.entry.properties.xml | 33 - .../params/index.links.to.section.xml | 76 - docbook-xsl-1.75.2/params/index.method.xml | 162 - .../params/index.number.separator.xml | 54 - docbook-xsl-1.75.2/params/index.on.role.xml | 48 - docbook-xsl-1.75.2/params/index.on.type.xml | 52 - .../params/index.page.number.properties.xml | 31 - .../params/index.prefer.titleabbrev.xml | 29 - .../params/index.preferred.page.properties.xml | 32 - .../params/index.range.separator.xml | 57 - docbook-xsl-1.75.2/params/index.term.separator.xml | 54 - .../params/informal.object.properties.xml | 29 - .../params/informalequation.properties.xml | 27 - .../params/informalexample.properties.xml | 27 - .../params/informalfigure.properties.xml | 27 - .../params/informaltable.properties.xml | 32 - docbook-xsl-1.75.2/params/inherit.keywords.xml | 31 - .../params/insert.link.page.number.xml | 69 - .../params/insert.olink.page.number.xml | 83 - .../params/insert.olink.pdf.frag.xml | 68 - .../params/insert.xref.page.number.xml | 60 - .../params/itemizedlist.label.properties.xml | 26 - .../params/itemizedlist.label.width.xml | 28 - .../params/itemizedlist.properties.xml | 23 - docbook-xsl-1.75.2/params/javahelp.encoding.xml | 31 - .../params/keep.relative.image.uris.xml | 34 - docbook-xsl-1.75.2/params/keyboard.nav.xml | 29 - .../params/l10n.gentext.default.language.xml | 30 - .../params/l10n.gentext.language.xml | 33 - .../params/l10n.gentext.use.xref.language.xml | 53 - .../params/l10n.lang.value.rfc.compliant.xml | 57 - docbook-xsl-1.75.2/params/label.from.part.xml | 38 - docbook-xsl-1.75.2/params/line-height.xml | 27 - .../params/linenumbering.everyNth.xml | 29 - .../params/linenumbering.extension.xml | 30 - .../params/linenumbering.separator.xml | 30 - docbook-xsl-1.75.2/params/linenumbering.width.xml | 29 - docbook-xsl-1.75.2/params/link.mailto.url.xml | 29 - .../params/list.block.properties.xml | 25 - docbook-xsl-1.75.2/params/list.block.spacing.xml | 29 - docbook-xsl-1.75.2/params/list.item.spacing.xml | 26 - .../params/make.graphic.viewport.xml | 35 - docbook-xsl-1.75.2/params/make.index.markup.xml | 73 - .../params/make.single.year.ranges.xml | 28 - docbook-xsl-1.75.2/params/make.valid.html.xml | 35 - docbook-xsl-1.75.2/params/make.year.ranges.xml | 32 - .../params/man.authors.section.enabled.xml | 46 - .../params/man.base.url.for.relative.links.xml | 76 - .../params/man.break.after.slash.xml | 46 - docbook-xsl-1.75.2/params/man.charmap.enabled.xml | 55 - .../params/man.charmap.subset.profile.english.xml | 80 - .../params/man.charmap.subset.profile.xml | 297 - docbook-xsl-1.75.2/params/man.charmap.uri.xml | 42 - .../params/man.charmap.use.subset.xml | 80 - .../params/man.copyright.section.enabled.xml | 46 - .../params/man.endnotes.are.numbered.xml | 106 - .../params/man.endnotes.list.enabled.xml | 105 - .../params/man.endnotes.list.heading.xml | 36 - .../params/man.font.funcprototype.xml | 30 - .../params/man.font.funcsynopsisinfo.xml | 30 - docbook-xsl-1.75.2/params/man.font.links.xml | 64 - .../params/man.font.table.headings.xml | 30 - docbook-xsl-1.75.2/params/man.font.table.title.xml | 30 - .../params/man.funcsynopsis.style.xml | 26 - .../params/man.hyphenate.computer.inlines.xml | 53 - .../params/man.hyphenate.filenames.xml | 47 - docbook-xsl-1.75.2/params/man.hyphenate.urls.xml | 46 - docbook-xsl-1.75.2/params/man.hyphenate.xml | 59 - docbook-xsl-1.75.2/params/man.indent.blurbs.xml | 33 - docbook-xsl-1.75.2/params/man.indent.lists.xml | 35 - docbook-xsl-1.75.2/params/man.indent.refsect.xml | 70 - docbook-xsl-1.75.2/params/man.indent.verbatims.xml | 33 - docbook-xsl-1.75.2/params/man.indent.width.xml | 39 - docbook-xsl-1.75.2/params/man.justify.xml | 52 - docbook-xsl-1.75.2/params/man.output.base.dir.xml | 39 - .../params/man.output.better.ps.enabled.xml | 61 - docbook-xsl-1.75.2/params/man.output.encoding.xml | 53 - .../params/man.output.in.separate.dir.xml | 32 - .../params/man.output.lang.in.name.enabled.xml | 50 - .../params/man.output.manifest.enabled.xml | 27 - .../params/man.output.manifest.filename.xml | 29 - docbook-xsl-1.75.2/params/man.output.quietly.xml | 37 - .../params/man.output.subdirs.enabled.xml | 40 - .../params/man.segtitle.suppress.xml | 28 - .../params/man.string.subst.map.local.post.xml | 34 - .../params/man.string.subst.map.local.pre.xml | 34 - docbook-xsl-1.75.2/params/man.string.subst.map.xml | 162 - .../params/man.subheading.divider.enabled.xml | 37 - .../params/man.subheading.divider.xml | 37 - .../params/man.table.footnotes.divider.xml | 29 - .../params/man.th.extra1.suppress.xml | 32 - .../params/man.th.extra2.max.length.xml | 43 - .../params/man.th.extra2.suppress.xml | 44 - .../params/man.th.extra3.max.length.xml | 42 - .../params/man.th.extra3.suppress.xml | 34 - .../params/man.th.title.max.length.xml | 63 - docbook-xsl-1.75.2/params/manifest.in.base.dir.xml | 29 - docbook-xsl-1.75.2/params/manifest.xml | 29 - docbook-xsl-1.75.2/params/manual.toc.xml | 29 - .../params/margin.note.float.type.xml | 77 - .../params/margin.note.properties.xml | 54 - .../params/margin.note.title.properties.xml | 32 - docbook-xsl-1.75.2/params/margin.note.width.xml | 35 - docbook-xsl-1.75.2/params/marker.section.level.xml | 50 - .../params/menuchoice.menu.separator.xml | 42 - docbook-xsl-1.75.2/params/menuchoice.separator.xml | 32 - docbook-xsl-1.75.2/params/minus.image.xml | 29 - .../params/monospace.font.family.xml | 29 - docbook-xsl-1.75.2/params/monospace.properties.xml | 38 - .../params/monospace.verbatim.font.width.xml | 40 - .../params/monospace.verbatim.properties.xml | 27 - .../params/multiframe.bottom.bgcolor.xml | 28 - .../params/multiframe.navigation.height.xml | 28 - .../params/multiframe.top.bgcolor.xml | 28 - docbook-xsl-1.75.2/params/multiframe.xml | 31 - docbook-xsl-1.75.2/params/nav.separator.xml | 28 - docbook-xsl-1.75.2/params/nav.table.summary.xml | 27 - docbook-xsl-1.75.2/params/navbgcolor.xml | 26 - docbook-xsl-1.75.2/params/navbodywidth.xml | 26 - .../params/navig.graphics.extension.xml | 28 - docbook-xsl-1.75.2/params/navig.graphics.path.xml | 30 - docbook-xsl-1.75.2/params/navig.graphics.xml | 31 - docbook-xsl-1.75.2/params/navig.showtitles.xml | 32 - docbook-xsl-1.75.2/params/navtocwidth.xml | 26 - docbook-xsl-1.75.2/params/next.image.xml | 27 - docbook-xsl-1.75.2/params/no.home.image.xml | 27 - docbook-xsl-1.75.2/params/no.next.image.xml | 27 - docbook-xsl-1.75.2/params/no.prev.image.xml | 27 - docbook-xsl-1.75.2/params/no.toc.image.xml | 27 - docbook-xsl-1.75.2/params/no.up.image.xml | 27 - docbook-xsl-1.75.2/params/nominal.image.depth.xml | 27 - docbook-xsl-1.75.2/params/nominal.image.width.xml | 43 - docbook-xsl-1.75.2/params/nominal.table.width.xml | 30 - .../params/nongraphical.admonition.properties.xml | 41 - docbook-xsl-1.75.2/params/normal.para.spacing.xml | 26 - docbook-xsl-1.75.2/params/olink.base.uri.xml | 35 - docbook-xsl-1.75.2/params/olink.debug.xml | 36 - docbook-xsl-1.75.2/params/olink.doctitle.xml | 146 - docbook-xsl-1.75.2/params/olink.fragid.xml | 23 - .../params/olink.lang.fallback.sequence.xml | 83 - docbook-xsl-1.75.2/params/olink.outline.ext.xml | 28 - docbook-xsl-1.75.2/params/olink.properties.xml | 33 - docbook-xsl-1.75.2/params/olink.pubid.xml | 27 - docbook-xsl-1.75.2/params/olink.resolver.xml | 23 - docbook-xsl-1.75.2/params/olink.sysid.xml | 27 - .../params/orderedlist.label.properties.xml | 26 - .../params/orderedlist.label.width.xml | 28 - .../params/orderedlist.properties.xml | 24 - .../params/othercredit.like.author.enabled.xml | 31 - docbook-xsl-1.75.2/params/output-root.xml | 28 - docbook-xsl-1.75.2/params/output.indent.xml | 32 - docbook-xsl-1.75.2/params/overlay.js.xml | 28 - docbook-xsl-1.75.2/params/overlay.logo.xml | 28 - docbook-xsl-1.75.2/params/overlay.xml | 32 - docbook-xsl-1.75.2/params/page.height.portrait.xml | 69 - docbook-xsl-1.75.2/params/page.height.xml | 37 - docbook-xsl-1.75.2/params/page.margin.bottom.xml | 29 - docbook-xsl-1.75.2/params/page.margin.inner.xml | 56 - docbook-xsl-1.75.2/params/page.margin.outer.xml | 53 - docbook-xsl-1.75.2/params/page.margin.top.xml | 28 - docbook-xsl-1.75.2/params/page.orientation.xml | 32 - docbook-xsl-1.75.2/params/page.width.portrait.xml | 67 - docbook-xsl-1.75.2/params/page.width.xml | 36 - docbook-xsl-1.75.2/params/pages.template.xml | 29 - docbook-xsl-1.75.2/params/paper.type.xml | 71 - .../params/para.propagates.style.xml | 29 - docbook-xsl-1.75.2/params/part.autolabel.xml | 73 - .../params/passivetex.extensions.xml | 37 - docbook-xsl-1.75.2/params/pgwide.properties.xml | 52 - .../params/phrase.propagates.style.xml | 29 - docbook-xsl-1.75.2/params/pixels.per.inch.xml | 31 - docbook-xsl-1.75.2/params/plus.image.xml | 29 - docbook-xsl-1.75.2/params/points.per.em.xml | 29 - docbook-xsl-1.75.2/params/preface.autolabel.xml | 71 - .../params/prefer.internal.olink.xml | 78 - .../params/preferred.mediaobject.role.xml | 40 - docbook-xsl-1.75.2/params/prev.image.xml | 27 - docbook-xsl-1.75.2/params/procedure.properties.xml | 29 - .../params/process.empty.source.toc.xml | 39 - docbook-xsl-1.75.2/params/process.source.toc.xml | 39 - docbook-xsl-1.75.2/params/profile.arch.xml | 39 - docbook-xsl-1.75.2/params/profile.attribute.xml | 34 - docbook-xsl-1.75.2/params/profile.audience.xml | 38 - docbook-xsl-1.75.2/params/profile.condition.xml | 38 - docbook-xsl-1.75.2/params/profile.conformance.xml | 38 - docbook-xsl-1.75.2/params/profile.lang.xml | 38 - docbook-xsl-1.75.2/params/profile.os.xml | 38 - docbook-xsl-1.75.2/params/profile.revision.xml | 38 - docbook-xsl-1.75.2/params/profile.revisionflag.xml | 38 - docbook-xsl-1.75.2/params/profile.role.xml | 54 - docbook-xsl-1.75.2/params/profile.security.xml | 38 - docbook-xsl-1.75.2/params/profile.separator.xml | 27 - docbook-xsl-1.75.2/params/profile.status.xml | 38 - docbook-xsl-1.75.2/params/profile.userlevel.xml | 38 - docbook-xsl-1.75.2/params/profile.value.xml | 41 - docbook-xsl-1.75.2/params/profile.vendor.xml | 38 - docbook-xsl-1.75.2/params/profile.wordsize.xml | 38 - docbook-xsl-1.75.2/params/punct.honorific.xml | 28 - docbook-xsl-1.75.2/params/qanda.defaultlabel.xml | 86 - docbook-xsl-1.75.2/params/qanda.in.toc.xml | 34 - .../params/qanda.inherit.numeration.xml | 30 - docbook-xsl-1.75.2/params/qanda.nested.in.toc.xml | 29 - .../params/qanda.title.level1.properties.xml | 32 - .../params/qanda.title.level2.properties.xml | 32 - .../params/qanda.title.level3.properties.xml | 32 - .../params/qanda.title.level4.properties.xml | 32 - .../params/qanda.title.level5.properties.xml | 32 - .../params/qanda.title.level6.properties.xml | 34 - .../params/qanda.title.properties.xml | 37 - docbook-xsl-1.75.2/params/qandadiv.autolabel.xml | 26 - docbook-xsl-1.75.2/params/rebuild-all.xml | 33 - docbook-xsl-1.75.2/params/refclass.suppress.xml | 28 - .../params/refentry.date.profile.enabled.xml | 46 - .../params/refentry.date.profile.xml | 38 - .../params/refentry.generate.name.xml | 33 - .../params/refentry.generate.title.xml | 33 - .../params/refentry.manual.fallback.profile.xml | 48 - .../params/refentry.manual.profile.enabled.xml | 47 - .../params/refentry.manual.profile.xml | 72 - .../params/refentry.meta.get.quietly.xml | 37 - docbook-xsl-1.75.2/params/refentry.pagebreak.xml | 33 - docbook-xsl-1.75.2/params/refentry.separator.xml | 29 - .../params/refentry.source.fallback.profile.xml | 49 - .../refentry.source.name.profile.enabled.xml | 48 - .../params/refentry.source.name.profile.xml | 89 - .../params/refentry.source.name.suppress.xml | 42 - .../params/refentry.title.properties.xml | 59 - .../params/refentry.version.profile.enabled.xml | 47 - .../params/refentry.version.profile.xml | 41 - .../params/refentry.version.suppress.xml | 43 - .../params/refentry.xref.manvolnum.xml | 31 - docbook-xsl-1.75.2/params/reference.autolabel.xml | 67 - docbook-xsl-1.75.2/params/region.after.extent.xml | 29 - docbook-xsl-1.75.2/params/region.before.extent.xml | 29 - .../params/revhistory.table.cell.properties.xml | 28 - .../params/revhistory.table.properties.xml | 28 - .../params/revhistory.title.properties.xml | 28 - docbook-xsl-1.75.2/params/root.filename.xml | 29 - docbook-xsl-1.75.2/params/root.properties.xml | 46 - docbook-xsl-1.75.2/params/rootid.xml | 33 - .../params/runinhead.default.title.end.punct.xml | 27 - .../params/runinhead.title.end.punct.xml | 32 - .../params/running.foot.properties.xml | 34 - docbook-xsl-1.75.2/params/sans.font.family.xml | 29 - docbook-xsl-1.75.2/params/saxon.callouts.xml | 30 - .../params/saxon.character.representation.xml | 38 - docbook-xsl-1.75.2/params/saxon.linenumbering.xml | 32 - docbook-xsl-1.75.2/params/saxon.tablecolumns.xml | 30 - docbook-xsl-1.75.2/params/script.dir.xml | 33 - .../params/section.autolabel.max.depth.xml | 32 - docbook-xsl-1.75.2/params/section.autolabel.xml | 26 - .../params/section.container.element.xml | 62 - .../section.label.includes.component.label.xml | 27 - .../params/section.level1.properties.xml | 43 - .../params/section.level2.properties.xml | 43 - .../params/section.level3.properties.xml | 43 - .../params/section.level4.properties.xml | 43 - .../params/section.level5.properties.xml | 43 - .../params/section.level6.properties.xml | 43 - docbook-xsl-1.75.2/params/section.properties.xml | 35 - .../params/section.title.level1.properties.xml | 32 - .../params/section.title.level2.properties.xml | 33 - .../params/section.title.level3.properties.xml | 32 - .../params/section.title.level4.properties.xml | 32 - .../params/section.title.level5.properties.xml | 32 - .../params/section.title.level6.properties.xml | 33 - .../params/section.title.properties.xml | 39 - .../params/segmentedlist.as.table.xml | 28 - docbook-xsl-1.75.2/params/sequential.links.xml | 25 - docbook-xsl-1.75.2/params/shade.verbatim.style.xml | 36 - docbook-xsl-1.75.2/params/shade.verbatim.xml | 30 - docbook-xsl-1.75.2/params/show.comments.xml | 32 - docbook-xsl-1.75.2/params/show.foil.number.xml | 28 - docbook-xsl-1.75.2/params/show.revisionflag.xml | 42 - docbook-xsl-1.75.2/params/showtoc.image.xml | 29 - .../params/side.float.properties.xml | 50 - docbook-xsl-1.75.2/params/sidebar.float.type.xml | 90 - docbook-xsl-1.75.2/params/sidebar.float.width.xml | 35 - docbook-xsl-1.75.2/params/sidebar.properties.xml | 42 - .../params/sidebar.title.properties.xml | 32 - docbook-xsl-1.75.2/params/simplesect.in.toc.xml | 26 - docbook-xsl-1.75.2/params/slide.font.family.xml | 31 - .../params/slide.title.font.family.xml | 31 - docbook-xsl-1.75.2/params/slides.js.xml | 28 - docbook-xsl-1.75.2/params/slides.properties.xml | 31 - docbook-xsl-1.75.2/params/spacing.paras.xml | 30 - .../params/speakernote.properties.xml | 32 - docbook-xsl-1.75.2/params/subscript.properties.xml | 29 - .../params/superscript.properties.xml | 29 - .../params/suppress.footer.navigation.xml | 26 - .../params/suppress.header.navigation.xml | 27 - .../params/suppress.homepage.title.xml | 25 - docbook-xsl-1.75.2/params/suppress.navigation.xml | 28 - docbook-xsl-1.75.2/params/symbol.font.family.xml | 45 - .../params/table.borders.with.css.xml | 28 - .../params/table.cell.border.color.xml | 39 - .../params/table.cell.border.style.xml | 42 - .../params/table.cell.border.thickness.xml | 35 - docbook-xsl-1.75.2/params/table.cell.padding.xml | 32 - docbook-xsl-1.75.2/params/table.entry.padding.xml | 27 - .../params/table.footnote.number.format.xml | 33 - .../params/table.footnote.number.symbols.xml | 39 - .../params/table.footnote.properties.xml | 39 - .../params/table.frame.border.color.xml | 28 - .../params/table.frame.border.style.xml | 37 - .../params/table.frame.border.thickness.xml | 27 - docbook-xsl-1.75.2/params/table.properties.xml | 34 - docbook-xsl-1.75.2/params/table.spacer.image.xml | 26 - .../params/table.table.properties.xml | 36 - .../params/tablecolumns.extension.xml | 30 - .../params/target.database.document.xml | 37 - docbook-xsl-1.75.2/params/targets.filename.xml | 32 - docbook-xsl-1.75.2/params/template.xml | 27 - docbook-xsl-1.75.2/params/tex.math.delims.xml | 47 - docbook-xsl-1.75.2/params/tex.math.file.xml | 42 - docbook-xsl-1.75.2/params/tex.math.in.alt.xml | 83 - docbook-xsl-1.75.2/params/text.home.xml | 27 - docbook-xsl-1.75.2/params/text.next.xml | 27 - docbook-xsl-1.75.2/params/text.prev.xml | 27 - docbook-xsl-1.75.2/params/text.toc.xml | 27 - docbook-xsl-1.75.2/params/text.up.xml | 27 - docbook-xsl-1.75.2/params/textbgcolor.xml | 26 - .../params/textdata.default.encoding.xml | 32 - docbook-xsl-1.75.2/params/textinsert.extension.xml | 62 - docbook-xsl-1.75.2/params/title.font.family.xml | 33 - docbook-xsl-1.75.2/params/title.margin.left.xml | 65 - docbook-xsl-1.75.2/params/titlefoil.html.xml | 27 - docbook-xsl-1.75.2/params/toc.bg.color.xml | 27 - docbook-xsl-1.75.2/params/toc.blank.graphic.xml | 28 - docbook-xsl-1.75.2/params/toc.blank.image.xml | 27 - docbook-xsl-1.75.2/params/toc.blank.text.xml | 27 - docbook-xsl-1.75.2/params/toc.hide.show.xml | 33 - docbook-xsl-1.75.2/params/toc.html.xml | 27 - docbook-xsl-1.75.2/params/toc.image.xml | 27 - docbook-xsl-1.75.2/params/toc.indent.width.xml | 34 - docbook-xsl-1.75.2/params/toc.line.properties.xml | 42 - docbook-xsl-1.75.2/params/toc.list.type.xml | 30 - .../params/toc.margin.properties.xml | 33 - docbook-xsl-1.75.2/params/toc.max.depth.xml | 25 - docbook-xsl-1.75.2/params/toc.pointer.graphic.xml | 28 - docbook-xsl-1.75.2/params/toc.pointer.image.xml | 27 - docbook-xsl-1.75.2/params/toc.pointer.text.xml | 27 - docbook-xsl-1.75.2/params/toc.row.height.xml | 33 - docbook-xsl-1.75.2/params/toc.section.depth.xml | 28 - docbook-xsl-1.75.2/params/toc.spacer.graphic.xml | 28 - docbook-xsl-1.75.2/params/toc.spacer.image.xml | 27 - docbook-xsl-1.75.2/params/toc.spacer.text.xml | 27 - docbook-xsl-1.75.2/params/toc.width.xml | 28 - docbook-xsl-1.75.2/params/ua.js.xml | 28 - docbook-xsl-1.75.2/params/ulink.footnotes.xml | 34 - .../params/ulink.hyphenate.chars.xml | 37 - docbook-xsl-1.75.2/params/ulink.hyphenate.xml | 35 - docbook-xsl-1.75.2/params/ulink.show.xml | 37 - docbook-xsl-1.75.2/params/ulink.target.xml | 29 - docbook-xsl-1.75.2/params/up.image.xml | 27 - docbook-xsl-1.75.2/params/use.embed.for.svg.xml | 33 - docbook-xsl-1.75.2/params/use.extensions.xml | 31 - docbook-xsl-1.75.2/params/use.id.as.filename.xml | 30 - docbook-xsl-1.75.2/params/use.id.function.xml | 32 - .../params/use.local.olink.style.xml | 28 - .../params/use.role.as.xrefstyle.xml | 93 - .../params/use.role.for.mediaobject.xml | 56 - docbook-xsl-1.75.2/params/use.svg.xml | 30 - .../params/variablelist.as.blocks.xml | 62 - .../params/variablelist.as.table.xml | 54 - .../params/variablelist.max.termlength.xml | 46 - .../params/variablelist.term.break.after.xml | 39 - .../params/variablelist.term.properties.xml | 29 - .../params/variablelist.term.separator.xml | 40 - docbook-xsl-1.75.2/params/verbatim.properties.xml | 38 - docbook-xsl-1.75.2/params/wordml.template.xml | 29 - docbook-xsl-1.75.2/params/writing.mode.xml | 83 - .../params/xbCollapsibleLists.js.xml | 28 - docbook-xsl-1.75.2/params/xbDOM.js.xml | 28 - docbook-xsl-1.75.2/params/xbLibrary.js.xml | 28 - docbook-xsl-1.75.2/params/xbStyle.js.xml | 28 - docbook-xsl-1.75.2/params/xep.extensions.xml | 31 - .../params/xep.index.item.properties.xml | 36 - .../params/xref.label-page.separator.xml | 38 - .../params/xref.label-title.separator.xml | 36 - docbook-xsl-1.75.2/params/xref.properties.xml | 29 - .../params/xref.title-page.separator.xml | 36 - .../params/xref.with.number.and.title.xml | 30 - docbook-xsl-1.75.2/profiling/profile-mode.xsl | 239 - docbook-xsl-1.75.2/profiling/profile.xsl | 56 - docbook-xsl-1.75.2/profiling/strip-attributes.xsl | 27 - docbook-xsl-1.75.2/profiling/xsl2profile.xsl | 159 - docbook-xsl-1.75.2/roundtrip/blocks-spec.xml | 11 - docbook-xsl-1.75.2/roundtrip/blocks2dbk.dtd | 76 - docbook-xsl-1.75.2/roundtrip/blocks2dbk.xsl | 1732 - docbook-xsl-1.75.2/roundtrip/dbk2ooo.xsl | 178 - docbook-xsl-1.75.2/roundtrip/dbk2pages.xsl | 441 - docbook-xsl-1.75.2/roundtrip/dbk2wordml.xsl | 401 - docbook-xsl-1.75.2/roundtrip/dbk2wp.xsl | 1375 - docbook-xsl-1.75.2/roundtrip/normalise-common.xsl | 39 - .../roundtrip/normalise2sections.xsl | 1270 - docbook-xsl-1.75.2/roundtrip/pages2normalise.xsl | 351 - docbook-xsl-1.75.2/roundtrip/param.xml | 105 - docbook-xsl-1.75.2/roundtrip/param.xsl | 18 - docbook-xsl-1.75.2/roundtrip/sections-spec.xml | 38 - docbook-xsl-1.75.2/roundtrip/sections2blocks.xsl | 263 - docbook-xsl-1.75.2/roundtrip/specifications.xml | 1420 - docbook-xsl-1.75.2/roundtrip/template-pages.xml | 2 - docbook-xsl-1.75.2/roundtrip/template.dot | Bin 38912 -> 0 bytes docbook-xsl-1.75.2/roundtrip/template.xml | 3 - docbook-xsl-1.75.2/roundtrip/wordml2normalise.xsl | 445 - docbook-xsl-1.75.2/slides/browser/CTOCWidget.js | 169 - docbook-xsl-1.75.2/slides/browser/overlay.js | 142 - .../slides/browser/slides-default.css | 9 - .../slides/browser/slides-frames.css | 73 - docbook-xsl-1.75.2/slides/browser/slides-plain.css | 1 - docbook-xsl-1.75.2/slides/browser/slides-table.css | 41 - docbook-xsl-1.75.2/slides/browser/slides-w3c.css | 1 - docbook-xsl-1.75.2/slides/browser/slides.css | 119 - docbook-xsl-1.75.2/slides/browser/slides.js | 120 - docbook-xsl-1.75.2/slides/browser/ua.js | 135 - .../slides/browser/xbCollapsibleLists.js | 537 - docbook-xsl-1.75.2/slides/browser/xbDOM.js | 374 - docbook-xsl-1.75.2/slides/browser/xbDebug.js | 311 - docbook-xsl-1.75.2/slides/browser/xbLibrary.js | 80 - docbook-xsl-1.75.2/slides/browser/xbStyle-css.js | 791 - docbook-xsl-1.75.2/slides/browser/xbStyle-nn4.js | 485 - .../slides/browser/xbStyle-not-supported.js | 77 - docbook-xsl-1.75.2/slides/browser/xbStyle.js | 295 - docbook-xsl-1.75.2/slides/fo/param.xml | 356 - docbook-xsl-1.75.2/slides/fo/param.xsl | 74 - docbook-xsl-1.75.2/slides/fo/plain-titlepage.xml | 79 - docbook-xsl-1.75.2/slides/fo/plain-titlepage.xsl | 187 - docbook-xsl-1.75.2/slides/fo/plain.xsl | 528 - .../slides/graphics/active/arr-next.png | Bin 122 -> 0 bytes .../slides/graphics/active/arr-prev.png | Bin 118 -> 0 bytes .../slides/graphics/active/but-fforward.png | Bin 575 -> 0 bytes .../slides/graphics/active/but-info.png | Bin 587 -> 0 bytes .../slides/graphics/active/but-next.png | Bin 557 -> 0 bytes .../slides/graphics/active/but-prev.png | Bin 563 -> 0 bytes .../slides/graphics/active/but-rewind.png | Bin 595 -> 0 bytes .../slides/graphics/active/nav-home.png | Bin 372 -> 0 bytes .../slides/graphics/active/nav-next.png | Bin 406 -> 0 bytes .../slides/graphics/active/nav-prev.png | Bin 405 -> 0 bytes .../slides/graphics/active/nav-toc.png | Bin 220 -> 0 bytes .../slides/graphics/active/nav-up.png | Bin 422 -> 0 bytes .../slides/graphics/active/w3c-next.png | Bin 163 -> 0 bytes .../slides/graphics/active/w3c-prev.png | Bin 159 -> 0 bytes .../slides/graphics/active/w3c-toc.png | Bin 232 -> 0 bytes docbook-xsl-1.75.2/slides/graphics/arrow.gif | Bin 144 -> 0 bytes docbook-xsl-1.75.2/slides/graphics/blank.gif | Bin 123 -> 0 bytes docbook-xsl-1.75.2/slides/graphics/blank.png | Bin 100 -> 0 bytes docbook-xsl-1.75.2/slides/graphics/hidetoc.gif | Bin 922 -> 0 bytes .../slides/graphics/inactive/but-fforward.png | Bin 573 -> 0 bytes .../slides/graphics/inactive/but-info.png | Bin 301 -> 0 bytes .../slides/graphics/inactive/but-next.png | Bin 560 -> 0 bytes .../slides/graphics/inactive/but-prev.png | Bin 569 -> 0 bytes .../slides/graphics/inactive/but-rewind.png | Bin 594 -> 0 bytes .../slides/graphics/inactive/nav-home.png | Bin 365 -> 0 bytes .../slides/graphics/inactive/nav-next.png | Bin 384 -> 0 bytes .../slides/graphics/inactive/nav-prev.png | Bin 420 -> 0 bytes .../slides/graphics/inactive/nav-toc.png | Bin 226 -> 0 bytes .../slides/graphics/inactive/nav-up.png | Bin 232 -> 0 bytes .../slides/graphics/inactive/w3c-next.png | Bin 251 -> 0 bytes .../slides/graphics/inactive/w3c-prev.png | Bin 257 -> 0 bytes .../slides/graphics/inactive/w3c-toc.png | Bin 246 -> 0 bytes docbook-xsl-1.75.2/slides/graphics/plus.gif | Bin 137 -> 0 bytes docbook-xsl-1.75.2/slides/graphics/pointer.png | Bin 172 -> 0 bytes docbook-xsl-1.75.2/slides/graphics/showtoc.gif | Bin 922 -> 0 bytes docbook-xsl-1.75.2/slides/graphics/toc/bullet.png | Bin 167 -> 0 bytes docbook-xsl-1.75.2/slides/graphics/toc/closed.png | Bin 157 -> 0 bytes docbook-xsl-1.75.2/slides/graphics/toc/open.png | Bin 146 -> 0 bytes docbook-xsl-1.75.2/slides/html/css.xsl | 46 - docbook-xsl-1.75.2/slides/html/default.xsl | 261 - docbook-xsl-1.75.2/slides/html/flat.xsl | 70 - docbook-xsl-1.75.2/slides/html/frames.xsl | 2016 - docbook-xsl-1.75.2/slides/html/graphics.xsl | 151 - docbook-xsl-1.75.2/slides/html/jscript.xsl | 127 - docbook-xsl-1.75.2/slides/html/param.xml | 1376 - docbook-xsl-1.75.2/slides/html/param.xsl | 68 - docbook-xsl-1.75.2/slides/html/plain.xsl | 472 - docbook-xsl-1.75.2/slides/html/slides-common.xsl | 1541 - docbook-xsl-1.75.2/slides/html/tables.xsl | 336 - docbook-xsl-1.75.2/slides/html/vslides.xsl | 667 - docbook-xsl-1.75.2/slides/html/w3c.xsl | 376 - docbook-xsl-1.75.2/slides/htmlhelp/htmlhelp.xsl | 89 - docbook-xsl-1.75.2/slides/keynote/default.xsl | 600 - docbook-xsl-1.75.2/slides/keynote/xsltsl/cmp.xsl | 348 - .../slides/keynote/xsltsl/date-time.xsl | 1524 - .../slides/keynote/xsltsl/example.xsl | 90 - .../slides/keynote/xsltsl/markup.xsl | 789 - docbook-xsl-1.75.2/slides/keynote/xsltsl/math.xsl | 704 - docbook-xsl-1.75.2/slides/keynote/xsltsl/node.xsl | 229 - .../slides/keynote/xsltsl/stdlib.xsl | 340 - .../slides/keynote/xsltsl/string.xsl | 1233 - docbook-xsl-1.75.2/slides/keynote/xsltsl/svg.xsl | 177 - docbook-xsl-1.75.2/slides/keynote/xsltsl/uri.xsl | 580 - docbook-xsl-1.75.2/slides/svg/default.xsl | 686 - docbook-xsl-1.75.2/slides/xhtml/css.xsl | 47 - docbook-xsl-1.75.2/slides/xhtml/default.xsl | 246 - docbook-xsl-1.75.2/slides/xhtml/flat.xsl | 71 - docbook-xsl-1.75.2/slides/xhtml/frames.xsl | 1982 - docbook-xsl-1.75.2/slides/xhtml/graphics.xsl | 152 - docbook-xsl-1.75.2/slides/xhtml/jscript.xsl | 128 - docbook-xsl-1.75.2/slides/xhtml/param.xsl | 70 - docbook-xsl-1.75.2/slides/xhtml/plain.xsl | 470 - docbook-xsl-1.75.2/slides/xhtml/slides-common.xsl | 1534 - docbook-xsl-1.75.2/slides/xhtml/tables.xsl | 334 - docbook-xsl-1.75.2/slides/xhtml/vslides.xsl | 652 - docbook-xsl-1.75.2/slides/xhtml/w3c.xsl | 358 - docbook-xsl-1.75.2/template/titlepage.xml | 478 - docbook-xsl-1.75.2/template/titlepage.xsl | 1280 - docbook-xsl-1.75.2/test.sh | 3 - docbook-xsl-1.75.2/tests/refentry.007.ns.xml | 325 - docbook-xsl-1.75.2/tests/refentry.007.xml | 340 - docbook-xsl-1.75.2/tools/bin/docbook-xsl-update | 53 - docbook-xsl-1.75.2/tools/make/Makefile.DocBook | 698 - docbook-xsl-1.75.2/tools/make/Makefile.combine | 182 - docbook-xsl-1.75.2/tools/make/Makefile.docParam | 59 - docbook-xsl-1.75.2/uninstall.sh | 7 - docbook-xsl-1.75.2/website/autolayout.xsl | 258 - docbook-xsl-1.75.2/website/chunk-common.xsl | 227 - docbook-xsl-1.75.2/website/chunk-tabular.xsl | 12 - docbook-xsl-1.75.2/website/chunk-website.xsl | 12 - docbook-xsl-1.75.2/website/head.xsl | 316 - docbook-xsl-1.75.2/website/makefile-dep.xsl | 143 - docbook-xsl-1.75.2/website/olink.xsl | 297 - docbook-xsl-1.75.2/website/param.xml | 788 - docbook-xsl-1.75.2/website/param.xsl | 53 - docbook-xsl-1.75.2/website/rss.xsl | 143 - docbook-xsl-1.75.2/website/tabular.xsl | 213 - docbook-xsl-1.75.2/website/toc-tabular.xsl | 480 - docbook-xsl-1.75.2/website/toc.xsl | 286 - docbook-xsl-1.75.2/website/website-common.xsl | 821 - docbook-xsl-1.75.2/website/website-targets.xsl | 27 - docbook-xsl-1.75.2/website/website.xsl | 132 - docbook-xsl-1.75.2/website/xbel.xsl | 114 - docbook-xsl-1.75.2/xhtml-1_1/admon.xsl | 133 - docbook-xsl-1.75.2/xhtml-1_1/annotations.xsl | 158 - docbook-xsl-1.75.2/xhtml-1_1/autoidx-kimber.xsl | 139 - docbook-xsl-1.75.2/xhtml-1_1/autoidx-kosek.xsl | 109 - docbook-xsl-1.75.2/xhtml-1_1/autoidx-ng.xsl | 21 - docbook-xsl-1.75.2/xhtml-1_1/autoidx.xsl | 656 - docbook-xsl-1.75.2/xhtml-1_1/autotoc.xsl | 632 - docbook-xsl-1.75.2/xhtml-1_1/biblio-iso690.xsl | 1300 - docbook-xsl-1.75.2/xhtml-1_1/biblio.xsl | 1240 - docbook-xsl-1.75.2/xhtml-1_1/block.xsl | 435 - docbook-xsl-1.75.2/xhtml-1_1/callout.xsl | 188 - docbook-xsl-1.75.2/xhtml-1_1/changebars.xsl | 78 - docbook-xsl-1.75.2/xhtml-1_1/chunk-changebars.xsl | 96 - docbook-xsl-1.75.2/xhtml-1_1/chunk-code.xsl | 638 - docbook-xsl-1.75.2/xhtml-1_1/chunk-common.xsl | 1561 - docbook-xsl-1.75.2/xhtml-1_1/chunk.xsl | 52 - docbook-xsl-1.75.2/xhtml-1_1/chunker.xsl | 302 - docbook-xsl-1.75.2/xhtml-1_1/chunkfast.xsl | 69 - docbook-xsl-1.75.2/xhtml-1_1/chunktoc.xsl | 532 - docbook-xsl-1.75.2/xhtml-1_1/component.xsl | 395 - docbook-xsl-1.75.2/xhtml-1_1/division.xsl | 217 - docbook-xsl-1.75.2/xhtml-1_1/docbook.xsl | 447 - docbook-xsl-1.75.2/xhtml-1_1/ebnf.xsl | 328 - docbook-xsl-1.75.2/xhtml-1_1/footnote.xsl | 302 - docbook-xsl-1.75.2/xhtml-1_1/formal.xsl | 390 - docbook-xsl-1.75.2/xhtml-1_1/glossary.xsl | 564 - docbook-xsl-1.75.2/xhtml-1_1/graphics.xsl | 1436 - docbook-xsl-1.75.2/xhtml-1_1/highlight.xsl | 72 - docbook-xsl-1.75.2/xhtml-1_1/html-rtf.xsl | 321 - docbook-xsl-1.75.2/xhtml-1_1/html.xsl | 364 - docbook-xsl-1.75.2/xhtml-1_1/htmltbl.xsl | 102 - docbook-xsl-1.75.2/xhtml-1_1/index.xsl | 264 - docbook-xsl-1.75.2/xhtml-1_1/info.xsl | 44 - docbook-xsl-1.75.2/xhtml-1_1/inline.xsl | 1445 - docbook-xsl-1.75.2/xhtml-1_1/keywords.xsl | 36 - docbook-xsl-1.75.2/xhtml-1_1/lists.xsl | 1088 - docbook-xsl-1.75.2/xhtml-1_1/maketoc.xsl | 91 - docbook-xsl-1.75.2/xhtml-1_1/manifest.xsl | 22 - docbook-xsl-1.75.2/xhtml-1_1/math.xsl | 284 - docbook-xsl-1.75.2/xhtml-1_1/oldchunker.xsl | 176 - docbook-xsl-1.75.2/xhtml-1_1/onechunk.xsl | 36 - docbook-xsl-1.75.2/xhtml-1_1/param.xsl | 431 - docbook-xsl-1.75.2/xhtml-1_1/pi.xsl | 1203 - .../xhtml-1_1/profile-chunk-code.xsl | 610 - docbook-xsl-1.75.2/xhtml-1_1/profile-chunk.xsl | 52 - docbook-xsl-1.75.2/xhtml-1_1/profile-docbook.xsl | 409 - docbook-xsl-1.75.2/xhtml-1_1/profile-onechunk.xsl | 36 - docbook-xsl-1.75.2/xhtml-1_1/qandaset.xsl | 420 - docbook-xsl-1.75.2/xhtml-1_1/refentry.xsl | 299 - docbook-xsl-1.75.2/xhtml-1_1/sections.xsl | 541 - docbook-xsl-1.75.2/xhtml-1_1/synop.xsl | 1513 - docbook-xsl-1.75.2/xhtml-1_1/table.xsl | 1118 - docbook-xsl-1.75.2/xhtml-1_1/task.xsl | 73 - .../xhtml-1_1/titlepage.templates.xsl | 3710 -- docbook-xsl-1.75.2/xhtml-1_1/titlepage.xsl | 1027 - docbook-xsl-1.75.2/xhtml-1_1/toc.xsl | 330 - docbook-xsl-1.75.2/xhtml-1_1/verbatim.xsl | 381 - docbook-xsl-1.75.2/xhtml-1_1/xref.xsl | 1316 - docbook-xsl-1.75.2/xhtml/admon.xsl | 135 - docbook-xsl-1.75.2/xhtml/annotations.xsl | 158 - docbook-xsl-1.75.2/xhtml/autoidx-kimber.xsl | 139 - docbook-xsl-1.75.2/xhtml/autoidx-kosek.xsl | 109 - docbook-xsl-1.75.2/xhtml/autoidx-ng.xsl | 21 - docbook-xsl-1.75.2/xhtml/autoidx.xsl | 656 - docbook-xsl-1.75.2/xhtml/autotoc.xsl | 632 - docbook-xsl-1.75.2/xhtml/biblio-iso690.xsl | 1300 - docbook-xsl-1.75.2/xhtml/biblio.xsl | 1240 - docbook-xsl-1.75.2/xhtml/block.xsl | 435 - docbook-xsl-1.75.2/xhtml/callout.xsl | 188 - docbook-xsl-1.75.2/xhtml/changebars.xsl | 78 - docbook-xsl-1.75.2/xhtml/chunk-changebars.xsl | 96 - docbook-xsl-1.75.2/xhtml/chunk-code.xsl | 638 - docbook-xsl-1.75.2/xhtml/chunk-common.xsl | 1561 - docbook-xsl-1.75.2/xhtml/chunk.xsl | 52 - docbook-xsl-1.75.2/xhtml/chunker.xsl | 302 - docbook-xsl-1.75.2/xhtml/chunkfast.xsl | 69 - docbook-xsl-1.75.2/xhtml/chunktoc.xsl | 532 - docbook-xsl-1.75.2/xhtml/component.xsl | 395 - docbook-xsl-1.75.2/xhtml/division.xsl | 217 - docbook-xsl-1.75.2/xhtml/docbook.xsl | 447 - docbook-xsl-1.75.2/xhtml/ebnf.xsl | 328 - docbook-xsl-1.75.2/xhtml/footnote.xsl | 302 - docbook-xsl-1.75.2/xhtml/formal.xsl | 390 - docbook-xsl-1.75.2/xhtml/glossary.xsl | 564 - docbook-xsl-1.75.2/xhtml/graphics.xsl | 1436 - docbook-xsl-1.75.2/xhtml/highlight.xsl | 72 - docbook-xsl-1.75.2/xhtml/html-rtf.xsl | 321 - docbook-xsl-1.75.2/xhtml/html.xsl | 364 - docbook-xsl-1.75.2/xhtml/htmltbl.xsl | 102 - docbook-xsl-1.75.2/xhtml/index.xsl | 264 - docbook-xsl-1.75.2/xhtml/info.xsl | 44 - docbook-xsl-1.75.2/xhtml/inline.xsl | 1445 - docbook-xsl-1.75.2/xhtml/keywords.xsl | 36 - docbook-xsl-1.75.2/xhtml/lists.xsl | 1121 - docbook-xsl-1.75.2/xhtml/maketoc.xsl | 91 - docbook-xsl-1.75.2/xhtml/manifest.xsl | 22 - docbook-xsl-1.75.2/xhtml/math.xsl | 284 - docbook-xsl-1.75.2/xhtml/oldchunker.xsl | 176 - docbook-xsl-1.75.2/xhtml/onechunk.xsl | 36 - docbook-xsl-1.75.2/xhtml/param.xsl | 431 - docbook-xsl-1.75.2/xhtml/pi.xsl | 1203 - docbook-xsl-1.75.2/xhtml/profile-chunk-code.xsl | 610 - docbook-xsl-1.75.2/xhtml/profile-chunk.xsl | 52 - docbook-xsl-1.75.2/xhtml/profile-docbook.xsl | 409 - docbook-xsl-1.75.2/xhtml/profile-onechunk.xsl | 36 - docbook-xsl-1.75.2/xhtml/qandaset.xsl | 420 - docbook-xsl-1.75.2/xhtml/refentry.xsl | 299 - docbook-xsl-1.75.2/xhtml/sections.xsl | 541 - docbook-xsl-1.75.2/xhtml/synop.xsl | 1513 - docbook-xsl-1.75.2/xhtml/table.xsl | 1118 - docbook-xsl-1.75.2/xhtml/task.xsl | 73 - docbook-xsl-1.75.2/xhtml/titlepage.templates.xsl | 3710 -- docbook-xsl-1.75.2/xhtml/titlepage.xsl | 1027 - docbook-xsl-1.75.2/xhtml/toc.xsl | 330 - docbook-xsl-1.75.2/xhtml/verbatim.xsl | 381 - docbook-xsl-1.75.2/xhtml/xref.xsl | 1316 - .../.CatalogManager.properties.example | 61 + docbook-xsl-1.76.1/.urilist | 1 + docbook-xsl-1.76.1/AUTHORS | 4 + docbook-xsl-1.76.1/BUGS | 21 + docbook-xsl-1.76.1/COPYING | 47 + docbook-xsl-1.76.1/INSTALL | 88 + docbook-xsl-1.76.1/Makefile | 89 + docbook-xsl-1.76.1/NEWS | 139 + docbook-xsl-1.76.1/NEWS.html | 25 + docbook-xsl-1.76.1/NEWS.xml | 145 + docbook-xsl-1.76.1/README | 157 + docbook-xsl-1.76.1/RELEASE-NOTES.html | 8353 ++++ docbook-xsl-1.76.1/RELEASE-NOTES.pdf | 24334 ++++++++++ docbook-xsl-1.76.1/RELEASE-NOTES.txt | 8575 ++++ docbook-xsl-1.76.1/RELEASE-NOTES.xml | 10327 ++++ docbook-xsl-1.76.1/TODO | 23 + docbook-xsl-1.76.1/VERSION | 115 + docbook-xsl-1.76.1/catalog.xml | 8 + docbook-xsl-1.76.1/common/af.xml | 1229 + docbook-xsl-1.76.1/common/am.xml | 1229 + docbook-xsl-1.76.1/common/ar.xml | 1229 + docbook-xsl-1.76.1/common/as.xml | 660 + docbook-xsl-1.76.1/common/ast.xml | 660 + docbook-xsl-1.76.1/common/autoidx-kimber.xsl | 44 + docbook-xsl-1.76.1/common/autoidx-kosek.xsl | 154 + docbook-xsl-1.76.1/common/az.xml | 672 + docbook-xsl-1.76.1/common/bg.xml | 724 + docbook-xsl-1.76.1/common/bn.xml | 1229 + docbook-xsl-1.76.1/common/bn_in.xml | 660 + docbook-xsl-1.76.1/common/bs.xml | 662 + docbook-xsl-1.76.1/common/ca.xml | 660 + docbook-xsl-1.76.1/common/charmap.xml | 185 + docbook-xsl-1.76.1/common/charmap.xsl | 221 + docbook-xsl-1.76.1/common/common.xml | 622 + docbook-xsl-1.76.1/common/common.xsl | 2039 + docbook-xsl-1.76.1/common/cs.xml | 700 + docbook-xsl-1.76.1/common/cy.xml | 1245 + docbook-xsl-1.76.1/common/da.xml | 664 + docbook-xsl-1.76.1/common/de.xml | 666 + docbook-xsl-1.76.1/common/el.xml | 729 + docbook-xsl-1.76.1/common/en.xml | 1229 + docbook-xsl-1.76.1/common/entities.ent | 67 + docbook-xsl-1.76.1/common/eo.xml | 1229 + docbook-xsl-1.76.1/common/es.xml | 676 + docbook-xsl-1.76.1/common/et.xml | 1229 + docbook-xsl-1.76.1/common/eu.xml | 1229 + docbook-xsl-1.76.1/common/fa.xml | 660 + docbook-xsl-1.76.1/common/fi.xml | 670 + docbook-xsl-1.76.1/common/fr.xml | 690 + docbook-xsl-1.76.1/common/ga.xml | 1229 + docbook-xsl-1.76.1/common/gentext.xsl | 839 + docbook-xsl-1.76.1/common/gl.xml | 1229 + docbook-xsl-1.76.1/common/gu.xml | 660 + docbook-xsl-1.76.1/common/he.xml | 1229 + docbook-xsl-1.76.1/common/hi.xml | 660 + docbook-xsl-1.76.1/common/hr.xml | 662 + docbook-xsl-1.76.1/common/hu.xml | 678 + docbook-xsl-1.76.1/common/id.xml | 1229 + docbook-xsl-1.76.1/common/insertfile.xsl | 111 + docbook-xsl-1.76.1/common/is.xml | 672 + docbook-xsl-1.76.1/common/it.xml | 1229 + docbook-xsl-1.76.1/common/ja.xml | 660 + docbook-xsl-1.76.1/common/ka.xml | 700 + docbook-xsl-1.76.1/common/kn.xml | 1229 + docbook-xsl-1.76.1/common/ko.xml | 1229 + docbook-xsl-1.76.1/common/ky.xml | 732 + docbook-xsl-1.76.1/common/l10n.dtd | 64 + docbook-xsl-1.76.1/common/l10n.xml | 77 + docbook-xsl-1.76.1/common/l10n.xsl | 593 + docbook-xsl-1.76.1/common/la.xml | 1229 + docbook-xsl-1.76.1/common/labels.xsl | 890 + docbook-xsl-1.76.1/common/lt.xml | 678 + docbook-xsl-1.76.1/common/lv.xml | 1229 + docbook-xsl-1.76.1/common/ml.xml | 660 + docbook-xsl-1.76.1/common/mn.xml | 730 + docbook-xsl-1.76.1/common/mr.xml | 660 + docbook-xsl-1.76.1/common/nb.xml | 1229 + docbook-xsl-1.76.1/common/nds.xml | 666 + docbook-xsl-1.76.1/common/nl.xml | 660 + docbook-xsl-1.76.1/common/nn.xml | 1229 + docbook-xsl-1.76.1/common/olink.xsl | 1225 + docbook-xsl-1.76.1/common/or.xml | 1229 + docbook-xsl-1.76.1/common/pa.xml | 660 + docbook-xsl-1.76.1/common/pi.xml | 168 + docbook-xsl-1.76.1/common/pi.xsl | 346 + docbook-xsl-1.76.1/common/pl.xml | 678 + docbook-xsl-1.76.1/common/pt.xml | 1229 + docbook-xsl-1.76.1/common/pt_br.xml | 1229 + docbook-xsl-1.76.1/common/refentry.xml | 781 + docbook-xsl-1.76.1/common/refentry.xsl | 1352 + docbook-xsl-1.76.1/common/ro.xml | 1229 + docbook-xsl-1.76.1/common/ru.xml | 726 + docbook-xsl-1.76.1/common/sk.xml | 1229 + docbook-xsl-1.76.1/common/sl.xml | 1229 + docbook-xsl-1.76.1/common/sq.xml | 1229 + docbook-xsl-1.76.1/common/sr.xml | 720 + docbook-xsl-1.76.1/common/sr_Latn.xml | 679 + docbook-xsl-1.76.1/common/stripns.xsl | 352 + docbook-xsl-1.76.1/common/subtitles.xsl | 155 + docbook-xsl-1.76.1/common/sv.xml | 664 + docbook-xsl-1.76.1/common/ta.xml | 660 + docbook-xsl-1.76.1/common/table.xsl | 514 + docbook-xsl-1.76.1/common/targetdatabase.dtd | 49 + docbook-xsl-1.76.1/common/targets.xsl | 333 + docbook-xsl-1.76.1/common/te.xml | 660 + docbook-xsl-1.76.1/common/th.xml | 1229 + docbook-xsl-1.76.1/common/titles.xsl | 805 + docbook-xsl-1.76.1/common/tl.xml | 1229 + docbook-xsl-1.76.1/common/tr.xml | 666 + docbook-xsl-1.76.1/common/uk.xml | 726 + docbook-xsl-1.76.1/common/utility.xml | 259 + docbook-xsl-1.76.1/common/utility.xsl | 290 + docbook-xsl-1.76.1/common/vi.xml | 1229 + docbook-xsl-1.76.1/common/xh.xml | 1229 + docbook-xsl-1.76.1/common/zh.xml | 660 + docbook-xsl-1.76.1/common/zh_cn.xml | 660 + docbook-xsl-1.76.1/common/zh_tw.xml | 660 + docbook-xsl-1.76.1/docsrc/authors.xml | 10 + docbook-xsl-1.76.1/docsrc/copyright.xml | 18 + docbook-xsl-1.76.1/docsrc/license.xml | 23 + docbook-xsl-1.76.1/docsrc/page.png | Bin 0 -> 17578 bytes docbook-xsl-1.76.1/docsrc/reference.css | 79 + docbook-xsl-1.76.1/docsrc/reference.xml | 229 + docbook-xsl-1.76.1/docsrc/reference.xml.included | 33905 +++++++++++++ docbook-xsl-1.76.1/docsrc/warranty.xml | 11 + docbook-xsl-1.76.1/eclipse/eclipse.xsl | 306 + docbook-xsl-1.76.1/eclipse/eclipse3.xsl | 111 + docbook-xsl-1.76.1/eclipse/profile-eclipse.xsl | 269 + docbook-xsl-1.76.1/epub/README | 88 + docbook-xsl-1.76.1/epub/bin/dbtoepub | 76 + docbook-xsl-1.76.1/epub/bin/lib/docbook.rb | 227 + docbook-xsl-1.76.1/epub/bin/xslt/obfuscate.xsl | 12 + docbook-xsl-1.76.1/epub/docbook.xsl | 1690 + docbook-xsl-1.76.1/extensions/LICENSE.txt | 264 + docbook-xsl-1.76.1/extensions/NOTICE.txt | 12 + docbook-xsl-1.76.1/extensions/README.LIBXSLT | 52 + docbook-xsl-1.76.1/extensions/README.txt | 4 + docbook-xsl-1.76.1/extensions/docbook.py | 239 + .../extensions/lucene-analyzers-3.0.0.jar | Bin 0 -> 200540 bytes .../extensions/lucene-core-3.0.0.jar | Bin 0 -> 1021623 bytes docbook-xsl-1.76.1/extensions/saxon65.jar | Bin 0 -> 80946 bytes docbook-xsl-1.76.1/extensions/webhelpindexer.jar | Bin 0 -> 229165 bytes docbook-xsl-1.76.1/extensions/xalan27.jar | Bin 0 -> 57513 bytes docbook-xsl-1.76.1/extensions/xslt.py | 84 + docbook-xsl-1.76.1/fo/admon.xsl | 130 + docbook-xsl-1.76.1/fo/annotations.xsl | 18 + docbook-xsl-1.76.1/fo/autoidx-kimber.xsl | 172 + docbook-xsl-1.76.1/fo/autoidx-kosek.xsl | 139 + docbook-xsl-1.76.1/fo/autoidx-ng.xsl | 20 + docbook-xsl-1.76.1/fo/autoidx.xsl | 1330 + docbook-xsl-1.76.1/fo/autotoc.xsl | 915 + docbook-xsl-1.76.1/fo/axf.xsl | 110 + docbook-xsl-1.76.1/fo/biblio-iso690.xsl | 1300 + docbook-xsl-1.76.1/fo/biblio.xsl | 1169 + docbook-xsl-1.76.1/fo/block.xsl | 654 + docbook-xsl-1.76.1/fo/callout.xsl | 231 + docbook-xsl-1.76.1/fo/component.xsl | 887 + docbook-xsl-1.76.1/fo/division.xsl | 612 + docbook-xsl-1.76.1/fo/docbook.xsl | 335 + docbook-xsl-1.76.1/fo/ebnf.xsl | 325 + docbook-xsl-1.76.1/fo/fo-rtf.xsl | 154 + docbook-xsl-1.76.1/fo/fo.xsl | 117 + docbook-xsl-1.76.1/fo/footnote.xsl | 220 + docbook-xsl-1.76.1/fo/fop.xsl | 93 + docbook-xsl-1.76.1/fo/fop1.xsl | 223 + docbook-xsl-1.76.1/fo/formal.xsl | 642 + docbook-xsl-1.76.1/fo/glossary.xsl | 1169 + docbook-xsl-1.76.1/fo/graphics.xsl | 648 + docbook-xsl-1.76.1/fo/highlight.xsl | 77 + docbook-xsl-1.76.1/fo/htmltbl.xsl | 425 + docbook-xsl-1.76.1/fo/index.xsl | 484 + docbook-xsl-1.76.1/fo/info.xsl | 34 + docbook-xsl-1.76.1/fo/inline.xsl | 1288 + docbook-xsl-1.76.1/fo/keywords.xsl | 21 + docbook-xsl-1.76.1/fo/lists.xsl | 1393 + docbook-xsl-1.76.1/fo/math.xsl | 140 + docbook-xsl-1.76.1/fo/pagesetup.xsl | 2569 + docbook-xsl-1.76.1/fo/param.xml | 12445 +++++ docbook-xsl-1.76.1/fo/param.xsl | 946 + docbook-xsl-1.76.1/fo/passivetex.xsl | 36 + docbook-xsl-1.76.1/fo/pdf2index | 140 + docbook-xsl-1.76.1/fo/pi.xml | 1002 + docbook-xsl-1.76.1/fo/pi.xsl | 1092 + docbook-xsl-1.76.1/fo/profile-docbook.xsl | 289 + docbook-xsl-1.76.1/fo/ptc.xsl | 77 + docbook-xsl-1.76.1/fo/qandaset.xsl | 395 + docbook-xsl-1.76.1/fo/refentry.xsl | 638 + docbook-xsl-1.76.1/fo/sections.xsl | 764 + docbook-xsl-1.76.1/fo/spaces.xsl | 274 + docbook-xsl-1.76.1/fo/synop.xsl | 1007 + docbook-xsl-1.76.1/fo/table.xml | 135 + docbook-xsl-1.76.1/fo/table.xsl | 1681 + docbook-xsl-1.76.1/fo/task.xsl | 91 + docbook-xsl-1.76.1/fo/titlepage.templates.xml | 1354 + docbook-xsl-1.76.1/fo/titlepage.templates.xsl | 5182 ++ docbook-xsl-1.76.1/fo/titlepage.xsl | 767 + docbook-xsl-1.76.1/fo/toc.xsl | 332 + docbook-xsl-1.76.1/fo/verbatim.xsl | 465 + docbook-xsl-1.76.1/fo/xep.xsl | 180 + docbook-xsl-1.76.1/fo/xref.xsl | 1538 + docbook-xsl-1.76.1/highlighting/README | 16 + docbook-xsl-1.76.1/highlighting/c-hl.xml | 101 + docbook-xsl-1.76.1/highlighting/common.xsl | 120 + docbook-xsl-1.76.1/highlighting/cpp-hl.xml | 150 + docbook-xsl-1.76.1/highlighting/csharp-hl.xml | 187 + docbook-xsl-1.76.1/highlighting/delphi-hl.xml | 200 + docbook-xsl-1.76.1/highlighting/ini-hl.xml | 45 + docbook-xsl-1.76.1/highlighting/java-hl.xml | 117 + docbook-xsl-1.76.1/highlighting/javascript-hl.xml | 147 + docbook-xsl-1.76.1/highlighting/m2-hl.xml | 90 + docbook-xsl-1.76.1/highlighting/myxml-hl.xml | 116 + docbook-xsl-1.76.1/highlighting/perl-hl.xml | 120 + docbook-xsl-1.76.1/highlighting/php-hl.xml | 149 + docbook-xsl-1.76.1/highlighting/python-hl.xml | 100 + docbook-xsl-1.76.1/highlighting/ruby-hl.xml | 109 + docbook-xsl-1.76.1/highlighting/tcl-hl.xml | 180 + docbook-xsl-1.76.1/highlighting/xslthl-config.xml | 46 + docbook-xsl-1.76.1/html/admon.xsl | 134 + docbook-xsl-1.76.1/html/annotations.xsl | 169 + docbook-xsl-1.76.1/html/autoidx-kimber.xsl | 165 + docbook-xsl-1.76.1/html/autoidx-kosek.xsl | 120 + docbook-xsl-1.76.1/html/autoidx-ng.xsl | 20 + docbook-xsl-1.76.1/html/autoidx.xsl | 739 + docbook-xsl-1.76.1/html/autotoc.xsl | 707 + docbook-xsl-1.76.1/html/biblio-iso690.xsl | 1300 + docbook-xsl-1.76.1/html/biblio.xsl | 1253 + docbook-xsl-1.76.1/html/block.xsl | 538 + docbook-xsl-1.76.1/html/callout.xsl | 201 + docbook-xsl-1.76.1/html/changebars.xsl | 121 + docbook-xsl-1.76.1/html/chunk-changebars.xsl | 99 + docbook-xsl-1.76.1/html/chunk-code.xsl | 674 + docbook-xsl-1.76.1/html/chunk-common.xsl | 1920 + docbook-xsl-1.76.1/html/chunk.xsl | 52 + docbook-xsl-1.76.1/html/chunker.xsl | 439 + docbook-xsl-1.76.1/html/chunkfast.xsl | 72 + docbook-xsl-1.76.1/html/chunktoc.xsl | 543 + docbook-xsl-1.76.1/html/component.xsl | 425 + docbook-xsl-1.76.1/html/division.xsl | 217 + docbook-xsl-1.76.1/html/docbook.css.xml | 109 + docbook-xsl-1.76.1/html/docbook.xsl | 480 + docbook-xsl-1.76.1/html/ebnf.xsl | 329 + docbook-xsl-1.76.1/html/footnote.xsl | 313 + docbook-xsl-1.76.1/html/formal.xsl | 425 + docbook-xsl-1.76.1/html/glossary.xsl | 492 + docbook-xsl-1.76.1/html/graphics.xsl | 1515 + docbook-xsl-1.76.1/html/highlight.xsl | 86 + docbook-xsl-1.76.1/html/html-rtf.xsl | 336 + docbook-xsl-1.76.1/html/html.xsl | 612 + docbook-xsl-1.76.1/html/htmltbl.xsl | 135 + docbook-xsl-1.76.1/html/index.xsl | 288 + docbook-xsl-1.76.1/html/info.xsl | 43 + docbook-xsl-1.76.1/html/inline.xsl | 1490 + docbook-xsl-1.76.1/html/keywords.xsl | 35 + docbook-xsl-1.76.1/html/lists.xsl | 1183 + docbook-xsl-1.76.1/html/maketoc.xsl | 86 + docbook-xsl-1.76.1/html/manifest.xsl | 22 + docbook-xsl-1.76.1/html/math.xsl | 270 + docbook-xsl-1.76.1/html/oldchunker.xsl | 202 + docbook-xsl-1.76.1/html/onechunk.xsl | 37 + docbook-xsl-1.76.1/html/param.xml | 10905 +++++ docbook-xsl-1.76.1/html/param.xsl | 434 + docbook-xsl-1.76.1/html/pi.xml | 1113 + docbook-xsl-1.76.1/html/pi.xsl | 1263 + docbook-xsl-1.76.1/html/profile-chunk-code.xsl | 615 + docbook-xsl-1.76.1/html/profile-chunk.xsl | 52 + docbook-xsl-1.76.1/html/profile-docbook.xsl | 413 + docbook-xsl-1.76.1/html/profile-onechunk.xsl | 37 + docbook-xsl-1.76.1/html/qandaset.xsl | 437 + docbook-xsl-1.76.1/html/refentry.xsl | 299 + docbook-xsl-1.76.1/html/sections.xsl | 615 + docbook-xsl-1.76.1/html/synop.xsl | 1554 + docbook-xsl-1.76.1/html/table.xsl | 1200 + docbook-xsl-1.76.1/html/task.xsl | 76 + docbook-xsl-1.76.1/html/titlepage.templates.xml | 708 + docbook-xsl-1.76.1/html/titlepage.templates.xsl | 3817 ++ docbook-xsl-1.76.1/html/titlepage.xsl | 1047 + docbook-xsl-1.76.1/html/toc.xsl | 350 + docbook-xsl-1.76.1/html/verbatim.xsl | 410 + docbook-xsl-1.76.1/html/xref.xsl | 1377 + docbook-xsl-1.76.1/htmlhelp/htmlhelp-common.xsl | 1120 + docbook-xsl-1.76.1/htmlhelp/htmlhelp.xsl | 22 + .../htmlhelp/profile-htmlhelp-common.xsl | 1083 + docbook-xsl-1.76.1/htmlhelp/profile-htmlhelp.xsl | 22 + docbook-xsl-1.76.1/images/annot-close.png | Bin 0 -> 207 bytes docbook-xsl-1.76.1/images/annot-open.png | Bin 0 -> 837 bytes docbook-xsl-1.76.1/images/blank.png | Bin 0 -> 374 bytes docbook-xsl-1.76.1/images/callouts/1.gif | Bin 0 -> 889 bytes docbook-xsl-1.76.1/images/callouts/1.png | Bin 0 -> 329 bytes docbook-xsl-1.76.1/images/callouts/1.svg | 15 + docbook-xsl-1.76.1/images/callouts/10.gif | Bin 0 -> 929 bytes docbook-xsl-1.76.1/images/callouts/10.png | Bin 0 -> 361 bytes docbook-xsl-1.76.1/images/callouts/10.svg | 18 + docbook-xsl-1.76.1/images/callouts/11.gif | Bin 0 -> 202 bytes docbook-xsl-1.76.1/images/callouts/11.png | Bin 0 -> 565 bytes docbook-xsl-1.76.1/images/callouts/11.svg | 16 + docbook-xsl-1.76.1/images/callouts/12.gif | Bin 0 -> 210 bytes docbook-xsl-1.76.1/images/callouts/12.png | Bin 0 -> 617 bytes docbook-xsl-1.76.1/images/callouts/12.svg | 18 + docbook-xsl-1.76.1/images/callouts/13.gif | Bin 0 -> 209 bytes docbook-xsl-1.76.1/images/callouts/13.png | Bin 0 -> 623 bytes docbook-xsl-1.76.1/images/callouts/13.svg | 20 + docbook-xsl-1.76.1/images/callouts/14.gif | Bin 0 -> 205 bytes docbook-xsl-1.76.1/images/callouts/14.png | Bin 0 -> 411 bytes docbook-xsl-1.76.1/images/callouts/14.svg | 17 + docbook-xsl-1.76.1/images/callouts/15.gif | Bin 0 -> 210 bytes docbook-xsl-1.76.1/images/callouts/15.png | Bin 0 -> 640 bytes docbook-xsl-1.76.1/images/callouts/15.svg | 19 + docbook-xsl-1.76.1/images/callouts/16.svg | 20 + docbook-xsl-1.76.1/images/callouts/17.svg | 17 + docbook-xsl-1.76.1/images/callouts/18.svg | 21 + docbook-xsl-1.76.1/images/callouts/19.svg | 20 + docbook-xsl-1.76.1/images/callouts/2.gif | Bin 0 -> 907 bytes docbook-xsl-1.76.1/images/callouts/2.png | Bin 0 -> 353 bytes docbook-xsl-1.76.1/images/callouts/2.svg | 17 + docbook-xsl-1.76.1/images/callouts/20.svg | 20 + docbook-xsl-1.76.1/images/callouts/21.svg | 18 + docbook-xsl-1.76.1/images/callouts/22.svg | 20 + docbook-xsl-1.76.1/images/callouts/23.svg | 22 + docbook-xsl-1.76.1/images/callouts/24.svg | 19 + docbook-xsl-1.76.1/images/callouts/25.svg | 21 + docbook-xsl-1.76.1/images/callouts/26.svg | 22 + docbook-xsl-1.76.1/images/callouts/27.svg | 19 + docbook-xsl-1.76.1/images/callouts/28.svg | 23 + docbook-xsl-1.76.1/images/callouts/29.svg | 22 + docbook-xsl-1.76.1/images/callouts/3.gif | Bin 0 -> 914 bytes docbook-xsl-1.76.1/images/callouts/3.png | Bin 0 -> 350 bytes docbook-xsl-1.76.1/images/callouts/3.svg | 19 + docbook-xsl-1.76.1/images/callouts/30.svg | 22 + docbook-xsl-1.76.1/images/callouts/4.gif | Bin 0 -> 907 bytes docbook-xsl-1.76.1/images/callouts/4.png | Bin 0 -> 345 bytes docbook-xsl-1.76.1/images/callouts/4.svg | 16 + docbook-xsl-1.76.1/images/callouts/5.gif | Bin 0 -> 916 bytes docbook-xsl-1.76.1/images/callouts/5.png | Bin 0 -> 348 bytes docbook-xsl-1.76.1/images/callouts/5.svg | 18 + docbook-xsl-1.76.1/images/callouts/6.gif | Bin 0 -> 218 bytes docbook-xsl-1.76.1/images/callouts/6.png | Bin 0 -> 355 bytes docbook-xsl-1.76.1/images/callouts/6.svg | 19 + docbook-xsl-1.76.1/images/callouts/7.gif | Bin 0 -> 907 bytes docbook-xsl-1.76.1/images/callouts/7.png | Bin 0 -> 344 bytes docbook-xsl-1.76.1/images/callouts/7.svg | 16 + docbook-xsl-1.76.1/images/callouts/8.gif | Bin 0 -> 918 bytes docbook-xsl-1.76.1/images/callouts/8.png | Bin 0 -> 357 bytes docbook-xsl-1.76.1/images/callouts/8.svg | 20 + docbook-xsl-1.76.1/images/callouts/9.gif | Bin 0 -> 923 bytes docbook-xsl-1.76.1/images/callouts/9.png | Bin 0 -> 357 bytes docbook-xsl-1.76.1/images/callouts/9.svg | 19 + docbook-xsl-1.76.1/images/caution.gif | Bin 0 -> 743 bytes docbook-xsl-1.76.1/images/caution.png | Bin 0 -> 1250 bytes docbook-xsl-1.76.1/images/caution.svg | 25 + docbook-xsl-1.76.1/images/caution.tif | Bin 0 -> 1978 bytes docbook-xsl-1.76.1/images/colorsvg/caution.svg | 141 + docbook-xsl-1.76.1/images/colorsvg/home.svg | 498 + docbook-xsl-1.76.1/images/colorsvg/important.svg | 239 + docbook-xsl-1.76.1/images/colorsvg/next.svg | 338 + docbook-xsl-1.76.1/images/colorsvg/note.svg | 200 + docbook-xsl-1.76.1/images/colorsvg/prev.svg | 338 + docbook-xsl-1.76.1/images/colorsvg/tip.svg | 367 + docbook-xsl-1.76.1/images/colorsvg/up.svg | 338 + docbook-xsl-1.76.1/images/colorsvg/warning.svg | 232 + docbook-xsl-1.76.1/images/draft.png | Bin 0 -> 16150 bytes docbook-xsl-1.76.1/images/home.gif | Bin 0 -> 321 bytes docbook-xsl-1.76.1/images/home.png | Bin 0 -> 1156 bytes docbook-xsl-1.76.1/images/home.svg | 26 + docbook-xsl-1.76.1/images/important.gif | Bin 0 -> 1003 bytes docbook-xsl-1.76.1/images/important.png | Bin 0 -> 722 bytes docbook-xsl-1.76.1/images/important.svg | 25 + docbook-xsl-1.76.1/images/important.tif | Bin 0 -> 2020 bytes docbook-xsl-1.76.1/images/next.gif | Bin 0 -> 1083 bytes docbook-xsl-1.76.1/images/next.png | Bin 0 -> 1150 bytes docbook-xsl-1.76.1/images/next.svg | 19 + docbook-xsl-1.76.1/images/note.gif | Bin 0 -> 580 bytes docbook-xsl-1.76.1/images/note.png | Bin 0 -> 490 bytes docbook-xsl-1.76.1/images/note.svg | 33 + docbook-xsl-1.76.1/images/note.tif | Bin 0 -> 460 bytes docbook-xsl-1.76.1/images/prev.gif | Bin 0 -> 1118 bytes docbook-xsl-1.76.1/images/prev.png | Bin 0 -> 1132 bytes docbook-xsl-1.76.1/images/prev.svg | 19 + docbook-xsl-1.76.1/images/tip.gif | Bin 0 -> 598 bytes docbook-xsl-1.76.1/images/tip.png | Bin 0 -> 449 bytes docbook-xsl-1.76.1/images/tip.svg | 31 + docbook-xsl-1.76.1/images/tip.tif | Bin 0 -> 420 bytes docbook-xsl-1.76.1/images/toc-blank.png | Bin 0 -> 318 bytes docbook-xsl-1.76.1/images/toc-minus.png | Bin 0 -> 259 bytes docbook-xsl-1.76.1/images/toc-plus.png | Bin 0 -> 264 bytes docbook-xsl-1.76.1/images/up.gif | Bin 0 -> 1089 bytes docbook-xsl-1.76.1/images/up.png | Bin 0 -> 1111 bytes docbook-xsl-1.76.1/images/up.svg | 19 + docbook-xsl-1.76.1/images/warning.gif | Bin 0 -> 743 bytes docbook-xsl-1.76.1/images/warning.png | Bin 0 -> 1241 bytes docbook-xsl-1.76.1/images/warning.svg | 23 + docbook-xsl-1.76.1/images/warning.tif | Bin 0 -> 1990 bytes docbook-xsl-1.76.1/install.sh | 977 + docbook-xsl-1.76.1/javahelp/javahelp.xsl | 625 + docbook-xsl-1.76.1/javahelp/profile-javahelp.xsl | 549 + docbook-xsl-1.76.1/lib/lib.xsl | 480 + docbook-xsl-1.76.1/manpages/ChangeLog.20020917 | 195 + docbook-xsl-1.76.1/manpages/block.xsl | 411 + docbook-xsl-1.76.1/manpages/charmap.groff.xsl | 6013 +++ docbook-xsl-1.76.1/manpages/docbook.xsl | 311 + docbook-xsl-1.76.1/manpages/endnotes.xsl | 586 + docbook-xsl-1.76.1/manpages/html-synop.xsl | 1567 + docbook-xsl-1.76.1/manpages/info.xsl | 800 + docbook-xsl-1.76.1/manpages/inline.xsl | 219 + docbook-xsl-1.76.1/manpages/lists.xsl | 604 + docbook-xsl-1.76.1/manpages/other.xsl | 888 + docbook-xsl-1.76.1/manpages/param.xml | 3220 ++ docbook-xsl-1.76.1/manpages/param.xsl | 193 + docbook-xsl-1.76.1/manpages/pi.xml | 70 + docbook-xsl-1.76.1/manpages/pi.xsl | 79 + docbook-xsl-1.76.1/manpages/profile-docbook.xsl | 281 + docbook-xsl-1.76.1/manpages/refentry.xsl | 319 + docbook-xsl-1.76.1/manpages/synop.xsl | 432 + docbook-xsl-1.76.1/manpages/table.xsl | 633 + docbook-xsl-1.76.1/manpages/utility.xsl | 555 + .../params/abstract.notitle.enabled.xml | 22 + docbook-xsl-1.76.1/params/abstract.properties.xml | 32 + .../params/abstract.title.properties.xml | 39 + docbook-xsl-1.76.1/params/active.toc.xml | 29 + docbook-xsl-1.76.1/params/ade.extensions.xml | 32 + .../params/admon.graphics.extension.xml | 27 + docbook-xsl-1.76.1/params/admon.graphics.path.xml | 27 + docbook-xsl-1.76.1/params/admon.graphics.xml | 29 + docbook-xsl-1.76.1/params/admon.style.xml | 31 + docbook-xsl-1.76.1/params/admon.textlabel.xml | 32 + .../params/admonition.properties.xml | 25 + .../params/admonition.title.properties.xml | 32 + docbook-xsl-1.76.1/params/alignment.xml | 41 + docbook-xsl-1.76.1/params/annotate.toc.xml | 28 + docbook-xsl-1.76.1/params/annotation.css.xml | 71 + .../params/annotation.graphic.close.xml | 31 + .../params/annotation.graphic.open.xml | 28 + docbook-xsl-1.76.1/params/annotation.js.xml | 33 + docbook-xsl-1.76.1/params/annotation.support.xml | 29 + docbook-xsl-1.76.1/params/appendix.autolabel.xml | 73 + docbook-xsl-1.76.1/params/arbortext.extensions.xml | 30 + .../params/article.appendix.title.properties.xml | 33 + .../params/author.othername.in.middle.xml | 31 + docbook-xsl-1.76.1/params/autolayout-file.xml | 29 + .../params/autotoc.label.in.hyperlink.xml | 29 + .../params/autotoc.label.separator.xml | 27 + docbook-xsl-1.76.1/params/axf.extensions.xml | 33 + .../params/banner.before.navigation.xml | 25 + docbook-xsl-1.76.1/params/base.dir.xml | 29 + .../params/biblioentry.item.separator.xml | 26 + .../params/biblioentry.properties.xml | 28 + .../params/bibliography.collection.xml | 104 + .../params/bibliography.numbered.xml | 27 + docbook-xsl-1.76.1/params/bibliography.style.xml | 35 + .../params/blockquote.properties.xml | 34 + .../params/blurb.on.titlepage.enabled.xml | 31 + docbook-xsl-1.76.1/params/body.attributes.xml | 31 + docbook-xsl-1.76.1/params/body.bg.color.xml | 28 + docbook-xsl-1.76.1/params/body.end.indent.xml | 37 + docbook-xsl-1.76.1/params/body.font.family.xml | 32 + docbook-xsl-1.76.1/params/body.font.master.xml | 30 + docbook-xsl-1.76.1/params/body.font.size.xml | 31 + docbook-xsl-1.76.1/params/body.margin.bottom.xml | 29 + docbook-xsl-1.76.1/params/body.margin.top.xml | 28 + docbook-xsl-1.76.1/params/body.start.indent.xml | 64 + docbook-xsl-1.76.1/params/bookmarks.collapse.xml | 31 + docbook-xsl-1.76.1/params/bridgehead.in.toc.xml | 28 + docbook-xsl-1.76.1/params/bullet.image.xml | 28 + .../params/callout.defaultcolumn.xml | 30 + .../params/callout.graphics.extension.xml | 33 + .../params/callout.graphics.number.limit.xml | 34 + .../params/callout.graphics.path.xml | 31 + docbook-xsl-1.76.1/params/callout.graphics.xml | 30 + docbook-xsl-1.76.1/params/callout.icon.size.xml | 28 + docbook-xsl-1.76.1/params/callout.list.table.xml | 32 + docbook-xsl-1.76.1/params/callout.unicode.font.xml | 29 + .../params/callout.unicode.number.limit.xml | 35 + .../params/callout.unicode.start.character.xml | 33 + docbook-xsl-1.76.1/params/callout.unicode.xml | 26 + docbook-xsl-1.76.1/params/callouts.extension.xml | 30 + docbook-xsl-1.76.1/params/chapter.autolabel.xml | 71 + docbook-xsl-1.76.1/params/chunk.append.xml | 30 + docbook-xsl-1.76.1/params/chunk.first.sections.xml | 31 + docbook-xsl-1.76.1/params/chunk.quietly.xml | 30 + docbook-xsl-1.76.1/params/chunk.section.depth.xml | 27 + docbook-xsl-1.76.1/params/chunk.sections.xml | 30 + docbook-xsl-1.76.1/params/chunk.separate.lots.xml | 36 + docbook-xsl-1.76.1/params/chunk.toc.xml | 30 + .../params/chunk.tocs.and.lots.has.title.xml | 28 + docbook-xsl-1.76.1/params/chunk.tocs.and.lots.xml | 32 + .../chunker.output.cdata-section-elements.xml | 30 + .../params/chunker.output.doctype-public.xml | 31 + .../params/chunker.output.doctype-system.xml | 31 + .../params/chunker.output.encoding.xml | 31 + .../params/chunker.output.indent.xml | 30 + .../params/chunker.output.media-type.xml | 35 + .../params/chunker.output.method.xml | 32 + .../params/chunker.output.omit-xml-declaration.xml | 30 + .../params/chunker.output.standalone.xml | 31 + docbook-xsl-1.76.1/params/citerefentry.link.xml | 29 + docbook-xsl-1.76.1/params/collect.xref.targets.xml | 33 + docbook-xsl-1.76.1/params/column.count.back.xml | 27 + docbook-xsl-1.76.1/params/column.count.body.xml | 27 + docbook-xsl-1.76.1/params/column.count.front.xml | 27 + docbook-xsl-1.76.1/params/column.count.index.xml | 27 + docbook-xsl-1.76.1/params/column.count.lot.xml | 28 + .../params/column.count.titlepage.xml | 27 + docbook-xsl-1.76.1/params/column.gap.back.xml | 28 + docbook-xsl-1.76.1/params/column.gap.body.xml | 28 + docbook-xsl-1.76.1/params/column.gap.front.xml | 28 + docbook-xsl-1.76.1/params/column.gap.index.xml | 28 + docbook-xsl-1.76.1/params/column.gap.lot.xml | 28 + docbook-xsl-1.76.1/params/column.gap.titlepage.xml | 29 + .../params/compact.list.item.spacing.xml | 28 + .../params/component.label.includes.part.label.xml | 39 + .../params/component.title.properties.xml | 40 + .../params/component.titlepage.properties.xml | 33 + .../params/contrib.inline.enabled.xml | 26 + docbook-xsl-1.76.1/params/crop.mark.bleed.xml | 28 + docbook-xsl-1.76.1/params/crop.mark.offset.xml | 28 + docbook-xsl-1.76.1/params/crop.mark.width.xml | 28 + docbook-xsl-1.76.1/params/crop.marks.xml | 28 + docbook-xsl-1.76.1/params/css.decoration.xml | 33 + docbook-xsl-1.76.1/params/css.stylesheet.dir.xml | 33 + docbook-xsl-1.76.1/params/css.stylesheet.xml | 29 + docbook-xsl-1.76.1/params/current.docid.xml | 27 + docbook-xsl-1.76.1/params/currentpage.marker.xml | 25 + docbook-xsl-1.76.1/params/custom.css.source.xml | 119 + docbook-xsl-1.76.1/params/default.float.class.xml | 34 + docbook-xsl-1.76.1/params/default.image.width.xml | 30 + docbook-xsl-1.76.1/params/default.table.frame.xml | 28 + docbook-xsl-1.76.1/params/default.table.rules.xml | 76 + docbook-xsl-1.76.1/params/default.table.width.xml | 26 + docbook-xsl-1.76.1/params/default.units.xml | 37 + docbook-xsl-1.76.1/params/dingbat.font.family.xml | 33 + docbook-xsl-1.76.1/params/docbook.css.link.xml | 42 + docbook-xsl-1.76.1/params/docbook.css.source.xml | 83 + docbook-xsl-1.76.1/params/double.sided.xml | 31 + docbook-xsl-1.76.1/params/draft.mode.xml | 36 + .../params/draft.watermark.image.xml | 27 + docbook-xsl-1.76.1/params/dry-run.xml | 27 + docbook-xsl-1.76.1/params/dynamic.toc.xml | 29 + docbook-xsl-1.76.1/params/ebnf.assignment.xml | 39 + .../params/ebnf.statement.terminator.xml | 32 + docbook-xsl-1.76.1/params/ebnf.table.bgcolor.xml | 30 + docbook-xsl-1.76.1/params/ebnf.table.border.xml | 26 + docbook-xsl-1.76.1/params/eclipse.autolabel.xml | 28 + docbook-xsl-1.76.1/params/eclipse.plugin.id.xml | 28 + docbook-xsl-1.76.1/params/eclipse.plugin.name.xml | 27 + .../params/eclipse.plugin.provider.xml | 27 + docbook-xsl-1.76.1/params/editedby.enabled.xml | 27 + .../params/email.delimiters.enabled.xml | 34 + docbook-xsl-1.76.1/params/email.mailto.enabled.xml | 29 + .../params/emphasis.propagates.style.xml | 26 + .../params/entry.propagates.style.xml | 30 + docbook-xsl-1.76.1/params/epub.autolabel.xml | 28 + .../params/equation.number.properties.xml | 28 + docbook-xsl-1.76.1/params/equation.properties.xml | 27 + docbook-xsl-1.76.1/params/example.properties.xml | 27 + .../params/exsl.node.set.available.xml | 44 + docbook-xsl-1.76.1/params/feedback.href.xml | 28 + docbook-xsl-1.76.1/params/feedback.link.text.xml | 28 + docbook-xsl-1.76.1/params/feedback.with.ids.xml | 27 + docbook-xsl-1.76.1/params/figure.properties.xml | 27 + docbook-xsl-1.76.1/params/filename-prefix.xml | 28 + docbook-xsl-1.76.1/params/firstterm.only.link.xml | 29 + docbook-xsl-1.76.1/params/foil.properties.xml | 37 + .../params/foil.subtitle.properties.xml | 36 + docbook-xsl-1.76.1/params/foil.title.master.xml | 29 + docbook-xsl-1.76.1/params/foil.title.size.xml | 32 + docbook-xsl-1.76.1/params/foilgroup.properties.xml | 31 + docbook-xsl-1.76.1/params/foilgroup.toc.xml | 29 + docbook-xsl-1.76.1/params/footer.column.widths.xml | 80 + .../params/footer.content.properties.xml | 34 + docbook-xsl-1.76.1/params/footer.hr.xml | 26 + docbook-xsl-1.76.1/params/footer.rule.xml | 27 + docbook-xsl-1.76.1/params/footer.table.height.xml | 32 + .../params/footer.table.properties.xml | 30 + .../params/footers.on.blank.pages.xml | 27 + docbook-xsl-1.76.1/params/footnote.font.size.xml | 28 + .../params/footnote.mark.properties.xml | 41 + .../params/footnote.number.format.xml | 33 + .../params/footnote.number.symbols.xml | 39 + docbook-xsl-1.76.1/params/footnote.properties.xml | 43 + .../params/footnote.sep.leader.properties.xml | 39 + docbook-xsl-1.76.1/params/fop.extensions.xml | 36 + docbook-xsl-1.76.1/params/fop1.extensions.xml | 34 + .../params/formal.object.properties.xml | 36 + docbook-xsl-1.76.1/params/formal.procedures.xml | 28 + .../params/formal.title.placement.xml | 41 + .../params/formal.title.properties.xml | 34 + .../params/funcsynopsis.decoration.xml | 30 + docbook-xsl-1.76.1/params/funcsynopsis.style.xml | 31 + docbook-xsl-1.76.1/params/function.parens.xml | 29 + docbook-xsl-1.76.1/params/generate.css.header.xml | 40 + .../params/generate.id.attributes.xml | 59 + docbook-xsl-1.76.1/params/generate.index.xml | 25 + .../params/generate.legalnotice.link.xml | 72 + docbook-xsl-1.76.1/params/generate.manifest.xml | 27 + .../params/generate.meta.abstract.xml | 29 + .../params/generate.revhistory.link.xml | 50 + .../params/generate.section.toc.level.xml | 35 + docbook-xsl-1.76.1/params/generate.toc.xml | 108 + docbook-xsl-1.76.1/params/glossary.as.blocks.xml | 38 + docbook-xsl-1.76.1/params/glossary.collection.xml | 252 + docbook-xsl-1.76.1/params/glossary.sort.xml | 32 + .../params/glossdef.block.properties.xml | 32 + .../params/glossdef.list.properties.xml | 30 + .../params/glossentry.list.item.properties.xml | 32 + .../params/glossentry.show.acronym.xml | 37 + docbook-xsl-1.76.1/params/glosslist.as.blocks.xml | 27 + docbook-xsl-1.76.1/params/glossterm.auto.link.xml | 33 + .../params/glossterm.block.properties.xml | 35 + .../params/glossterm.list.properties.xml | 30 + docbook-xsl-1.76.1/params/glossterm.separation.xml | 31 + docbook-xsl-1.76.1/params/glossterm.width.xml | 28 + .../params/graphic.default.extension.xml | 29 + .../params/graphical.admonition.properties.xml | 42 + docbook-xsl-1.76.1/params/graphics.dir.xml | 33 + .../params/graphicsize.extension.xml | 30 + .../params/graphicsize.use.img.src.path.xml | 30 + docbook-xsl-1.76.1/params/header.column.widths.xml | 80 + .../params/header.content.properties.xml | 34 + docbook-xsl-1.76.1/params/header.hr.xml | 26 + docbook-xsl-1.76.1/params/header.rule.xml | 27 + docbook-xsl-1.76.1/params/header.table.height.xml | 32 + .../params/header.table.properties.xml | 30 + .../params/headers.on.blank.pages.xml | 27 + docbook-xsl-1.76.1/params/hidetoc.image.xml | 29 + .../params/highlight.default.language.xml | 27 + docbook-xsl-1.76.1/params/highlight.source.xml | 82 + .../params/highlight.xslthl.config.xml | 33 + docbook-xsl-1.76.1/params/home.image.xml | 27 + docbook-xsl-1.76.1/params/html.append.xml | 30 + docbook-xsl-1.76.1/params/html.base.xml | 30 + docbook-xsl-1.76.1/params/html.cellpadding.xml | 29 + docbook-xsl-1.76.1/params/html.cellspacing.xml | 29 + docbook-xsl-1.76.1/params/html.cleanup.xml | 34 + docbook-xsl-1.76.1/params/html.ext.xml | 29 + .../params/html.extra.head.links.xml | 31 + .../params/html.head.legalnotice.link.multiple.xml | 44 + .../params/html.head.legalnotice.link.types.xml | 75 + docbook-xsl-1.76.1/params/html.longdesc.link.xml | 39 + docbook-xsl-1.76.1/params/html.longdesc.xml | 28 + docbook-xsl-1.76.1/params/html.stylesheet.type.xml | 26 + docbook-xsl-1.76.1/params/html.stylesheet.xml | 36 + docbook-xsl-1.76.1/params/htmlhelp.alias.file.xml | 27 + docbook-xsl-1.76.1/params/htmlhelp.autolabel.xml | 28 + docbook-xsl-1.76.1/params/htmlhelp.button.back.xml | 27 + .../params/htmlhelp.button.forward.xml | 27 + .../params/htmlhelp.button.hideshow.xml | 27 + .../params/htmlhelp.button.home.url.xml | 27 + docbook-xsl-1.76.1/params/htmlhelp.button.home.xml | 27 + .../params/htmlhelp.button.jump1.title.xml | 27 + .../params/htmlhelp.button.jump1.url.xml | 27 + .../params/htmlhelp.button.jump1.xml | 23 + .../params/htmlhelp.button.jump2.title.xml | 27 + .../params/htmlhelp.button.jump2.url.xml | 27 + .../params/htmlhelp.button.jump2.xml | 27 + .../params/htmlhelp.button.locate.xml | 28 + docbook-xsl-1.76.1/params/htmlhelp.button.next.xml | 27 + .../params/htmlhelp.button.options.xml | 28 + docbook-xsl-1.76.1/params/htmlhelp.button.prev.xml | 28 + .../params/htmlhelp.button.print.xml | 28 + .../params/htmlhelp.button.refresh.xml | 27 + docbook-xsl-1.76.1/params/htmlhelp.button.stop.xml | 28 + docbook-xsl-1.76.1/params/htmlhelp.button.zoom.xml | 28 + docbook-xsl-1.76.1/params/htmlhelp.chm.xml | 27 + .../params/htmlhelp.default.topic.xml | 37 + .../params/htmlhelp.display.progress.xml | 28 + docbook-xsl-1.76.1/params/htmlhelp.encoding.xml | 28 + .../params/htmlhelp.enhanced.decompilation.xml | 27 + .../params/htmlhelp.enumerate.images.xml | 28 + .../params/htmlhelp.force.map.and.alias.xml | 26 + docbook-xsl-1.76.1/params/htmlhelp.hhc.binary.xml | 29 + .../params/htmlhelp.hhc.folders.instead.books.xml | 31 + .../params/htmlhelp.hhc.section.depth.xml | 27 + .../params/htmlhelp.hhc.show.root.xml | 29 + docbook-xsl-1.76.1/params/htmlhelp.hhc.width.xml | 28 + docbook-xsl-1.76.1/params/htmlhelp.hhc.xml | 27 + docbook-xsl-1.76.1/params/htmlhelp.hhk.xml | 27 + docbook-xsl-1.76.1/params/htmlhelp.hhp.tail.xml | 28 + docbook-xsl-1.76.1/params/htmlhelp.hhp.window.xml | 28 + docbook-xsl-1.76.1/params/htmlhelp.hhp.windows.xml | 29 + docbook-xsl-1.76.1/params/htmlhelp.hhp.xml | 28 + docbook-xsl-1.76.1/params/htmlhelp.map.file.xml | 25 + docbook-xsl-1.76.1/params/htmlhelp.only.xml | 32 + .../params/htmlhelp.remember.window.position.xml | 27 + .../params/htmlhelp.show.advanced.search.xml | 28 + .../params/htmlhelp.show.favorities.xml | 28 + docbook-xsl-1.76.1/params/htmlhelp.show.menu.xml | 28 + .../params/htmlhelp.show.toolbar.text.xml | 28 + docbook-xsl-1.76.1/params/htmlhelp.title.xml | 28 + docbook-xsl-1.76.1/params/htmlhelp.use.hhk.xml | 28 + .../params/htmlhelp.window.geometry.xml | 30 + .../params/hyphenate.verbatim.characters.xml | 30 + docbook-xsl-1.76.1/params/hyphenate.verbatim.xml | 45 + docbook-xsl-1.76.1/params/hyphenate.xml | 29 + docbook-xsl-1.76.1/params/id.warnings.xml | 25 + docbook-xsl-1.76.1/params/ignore.image.scaling.xml | 28 + docbook-xsl-1.76.1/params/img.src.path.xml | 40 + .../params/index.div.title.properties.xml | 39 + .../params/index.entry.properties.xml | 33 + .../params/index.links.to.section.xml | 76 + docbook-xsl-1.76.1/params/index.method.xml | 162 + .../params/index.number.separator.xml | 54 + docbook-xsl-1.76.1/params/index.on.role.xml | 48 + docbook-xsl-1.76.1/params/index.on.type.xml | 52 + .../params/index.page.number.properties.xml | 31 + .../params/index.prefer.titleabbrev.xml | 29 + .../params/index.preferred.page.properties.xml | 32 + .../params/index.range.separator.xml | 57 + docbook-xsl-1.76.1/params/index.term.separator.xml | 54 + .../params/informal.object.properties.xml | 29 + .../params/informalequation.properties.xml | 27 + .../params/informalexample.properties.xml | 27 + .../params/informalfigure.properties.xml | 27 + .../params/informaltable.properties.xml | 32 + docbook-xsl-1.76.1/params/inherit.keywords.xml | 31 + .../params/insert.link.page.number.xml | 69 + .../params/insert.olink.page.number.xml | 83 + .../params/insert.olink.pdf.frag.xml | 68 + .../params/insert.xref.page.number.xml | 60 + .../params/itemizedlist.label.properties.xml | 26 + .../params/itemizedlist.label.width.xml | 28 + .../params/itemizedlist.properties.xml | 23 + docbook-xsl-1.76.1/params/javahelp.encoding.xml | 31 + .../params/keep.relative.image.uris.xml | 34 + docbook-xsl-1.76.1/params/keyboard.nav.xml | 29 + .../params/l10n.gentext.default.language.xml | 30 + .../params/l10n.gentext.language.xml | 33 + .../params/l10n.gentext.use.xref.language.xml | 53 + .../params/l10n.lang.value.rfc.compliant.xml | 57 + docbook-xsl-1.76.1/params/label.from.part.xml | 38 + docbook-xsl-1.76.1/params/line-height.xml | 27 + .../params/linenumbering.everyNth.xml | 29 + .../params/linenumbering.extension.xml | 30 + .../params/linenumbering.separator.xml | 30 + docbook-xsl-1.76.1/params/linenumbering.width.xml | 29 + docbook-xsl-1.76.1/params/link.mailto.url.xml | 29 + .../params/list.block.properties.xml | 25 + docbook-xsl-1.76.1/params/list.block.spacing.xml | 29 + docbook-xsl-1.76.1/params/list.item.spacing.xml | 26 + docbook-xsl-1.76.1/params/make.clean.html.xml | 51 + .../params/make.graphic.viewport.xml | 35 + docbook-xsl-1.76.1/params/make.index.markup.xml | 73 + .../params/make.single.year.ranges.xml | 28 + docbook-xsl-1.76.1/params/make.valid.html.xml | 35 + docbook-xsl-1.76.1/params/make.year.ranges.xml | 32 + .../params/man.authors.section.enabled.xml | 46 + .../params/man.base.url.for.relative.links.xml | 76 + .../params/man.break.after.slash.xml | 46 + docbook-xsl-1.76.1/params/man.charmap.enabled.xml | 55 + .../params/man.charmap.subset.profile.english.xml | 80 + .../params/man.charmap.subset.profile.xml | 297 + docbook-xsl-1.76.1/params/man.charmap.uri.xml | 42 + .../params/man.charmap.use.subset.xml | 80 + .../params/man.copyright.section.enabled.xml | 46 + .../params/man.endnotes.are.numbered.xml | 106 + .../params/man.endnotes.list.enabled.xml | 105 + .../params/man.endnotes.list.heading.xml | 36 + .../params/man.font.funcprototype.xml | 30 + .../params/man.font.funcsynopsisinfo.xml | 30 + docbook-xsl-1.76.1/params/man.font.links.xml | 64 + .../params/man.font.table.headings.xml | 30 + docbook-xsl-1.76.1/params/man.font.table.title.xml | 30 + .../params/man.funcsynopsis.style.xml | 26 + .../params/man.hyphenate.computer.inlines.xml | 53 + .../params/man.hyphenate.filenames.xml | 47 + docbook-xsl-1.76.1/params/man.hyphenate.urls.xml | 46 + docbook-xsl-1.76.1/params/man.hyphenate.xml | 59 + docbook-xsl-1.76.1/params/man.indent.blurbs.xml | 33 + docbook-xsl-1.76.1/params/man.indent.lists.xml | 35 + docbook-xsl-1.76.1/params/man.indent.refsect.xml | 70 + docbook-xsl-1.76.1/params/man.indent.verbatims.xml | 33 + docbook-xsl-1.76.1/params/man.indent.width.xml | 39 + docbook-xsl-1.76.1/params/man.justify.xml | 52 + docbook-xsl-1.76.1/params/man.output.base.dir.xml | 39 + .../params/man.output.better.ps.enabled.xml | 61 + docbook-xsl-1.76.1/params/man.output.encoding.xml | 53 + .../params/man.output.in.separate.dir.xml | 32 + .../params/man.output.lang.in.name.enabled.xml | 50 + .../params/man.output.manifest.enabled.xml | 27 + .../params/man.output.manifest.filename.xml | 29 + docbook-xsl-1.76.1/params/man.output.quietly.xml | 37 + .../params/man.output.subdirs.enabled.xml | 40 + .../params/man.segtitle.suppress.xml | 28 + .../params/man.string.subst.map.local.post.xml | 34 + .../params/man.string.subst.map.local.pre.xml | 34 + docbook-xsl-1.76.1/params/man.string.subst.map.xml | 162 + .../params/man.subheading.divider.enabled.xml | 37 + .../params/man.subheading.divider.xml | 37 + .../params/man.table.footnotes.divider.xml | 29 + .../params/man.th.extra1.suppress.xml | 32 + .../params/man.th.extra2.max.length.xml | 43 + .../params/man.th.extra2.suppress.xml | 44 + .../params/man.th.extra3.max.length.xml | 42 + .../params/man.th.extra3.suppress.xml | 34 + .../params/man.th.title.max.length.xml | 63 + docbook-xsl-1.76.1/params/manifest.in.base.dir.xml | 29 + docbook-xsl-1.76.1/params/manifest.xml | 29 + docbook-xsl-1.76.1/params/manual.toc.xml | 29 + .../params/margin.note.float.type.xml | 77 + .../params/margin.note.properties.xml | 54 + .../params/margin.note.title.properties.xml | 32 + docbook-xsl-1.76.1/params/margin.note.width.xml | 35 + docbook-xsl-1.76.1/params/marker.section.level.xml | 50 + .../params/menuchoice.menu.separator.xml | 42 + docbook-xsl-1.76.1/params/menuchoice.separator.xml | 32 + docbook-xsl-1.76.1/params/minus.image.xml | 29 + .../params/monospace.font.family.xml | 29 + docbook-xsl-1.76.1/params/monospace.properties.xml | 38 + .../params/monospace.verbatim.font.width.xml | 40 + .../params/monospace.verbatim.properties.xml | 27 + .../params/multiframe.bottom.bgcolor.xml | 28 + .../params/multiframe.navigation.height.xml | 28 + .../params/multiframe.top.bgcolor.xml | 28 + docbook-xsl-1.76.1/params/multiframe.xml | 31 + docbook-xsl-1.76.1/params/nav.separator.xml | 28 + docbook-xsl-1.76.1/params/nav.table.summary.xml | 27 + docbook-xsl-1.76.1/params/navbgcolor.xml | 26 + docbook-xsl-1.76.1/params/navbodywidth.xml | 26 + .../params/navig.graphics.extension.xml | 28 + docbook-xsl-1.76.1/params/navig.graphics.path.xml | 30 + docbook-xsl-1.76.1/params/navig.graphics.xml | 31 + docbook-xsl-1.76.1/params/navig.showtitles.xml | 32 + docbook-xsl-1.76.1/params/navtocwidth.xml | 26 + docbook-xsl-1.76.1/params/next.image.xml | 27 + docbook-xsl-1.76.1/params/no.home.image.xml | 27 + docbook-xsl-1.76.1/params/no.next.image.xml | 27 + docbook-xsl-1.76.1/params/no.prev.image.xml | 27 + docbook-xsl-1.76.1/params/no.toc.image.xml | 27 + docbook-xsl-1.76.1/params/no.up.image.xml | 27 + docbook-xsl-1.76.1/params/nominal.image.depth.xml | 27 + docbook-xsl-1.76.1/params/nominal.image.width.xml | 43 + docbook-xsl-1.76.1/params/nominal.table.width.xml | 30 + .../params/nongraphical.admonition.properties.xml | 41 + docbook-xsl-1.76.1/params/normal.para.spacing.xml | 26 + docbook-xsl-1.76.1/params/olink.base.uri.xml | 35 + docbook-xsl-1.76.1/params/olink.debug.xml | 36 + docbook-xsl-1.76.1/params/olink.doctitle.xml | 146 + docbook-xsl-1.76.1/params/olink.fragid.xml | 23 + .../params/olink.lang.fallback.sequence.xml | 83 + docbook-xsl-1.76.1/params/olink.outline.ext.xml | 28 + docbook-xsl-1.76.1/params/olink.properties.xml | 33 + docbook-xsl-1.76.1/params/olink.pubid.xml | 27 + docbook-xsl-1.76.1/params/olink.resolver.xml | 23 + docbook-xsl-1.76.1/params/olink.sysid.xml | 27 + .../params/orderedlist.label.properties.xml | 26 + .../params/orderedlist.label.width.xml | 28 + .../params/orderedlist.properties.xml | 24 + .../params/othercredit.like.author.enabled.xml | 31 + docbook-xsl-1.76.1/params/output-root.xml | 28 + docbook-xsl-1.76.1/params/output.indent.xml | 32 + docbook-xsl-1.76.1/params/overlay.js.xml | 28 + docbook-xsl-1.76.1/params/overlay.logo.xml | 28 + docbook-xsl-1.76.1/params/overlay.xml | 32 + docbook-xsl-1.76.1/params/page.height.portrait.xml | 69 + docbook-xsl-1.76.1/params/page.height.xml | 37 + docbook-xsl-1.76.1/params/page.margin.bottom.xml | 29 + docbook-xsl-1.76.1/params/page.margin.inner.xml | 56 + docbook-xsl-1.76.1/params/page.margin.outer.xml | 53 + docbook-xsl-1.76.1/params/page.margin.top.xml | 28 + docbook-xsl-1.76.1/params/page.orientation.xml | 32 + docbook-xsl-1.76.1/params/page.width.portrait.xml | 67 + docbook-xsl-1.76.1/params/page.width.xml | 36 + docbook-xsl-1.76.1/params/pages.template.xml | 29 + docbook-xsl-1.76.1/params/paper.type.xml | 73 + .../params/para.propagates.style.xml | 29 + docbook-xsl-1.76.1/params/part.autolabel.xml | 73 + .../params/passivetex.extensions.xml | 37 + docbook-xsl-1.76.1/params/pgwide.properties.xml | 52 + .../params/phrase.propagates.style.xml | 29 + docbook-xsl-1.76.1/params/pixels.per.inch.xml | 31 + docbook-xsl-1.76.1/params/plus.image.xml | 29 + docbook-xsl-1.76.1/params/points.per.em.xml | 29 + docbook-xsl-1.76.1/params/preface.autolabel.xml | 71 + .../params/prefer.internal.olink.xml | 78 + .../params/preferred.mediaobject.role.xml | 40 + docbook-xsl-1.76.1/params/prev.image.xml | 27 + docbook-xsl-1.76.1/params/procedure.properties.xml | 29 + .../params/process.empty.source.toc.xml | 39 + docbook-xsl-1.76.1/params/process.source.toc.xml | 39 + docbook-xsl-1.76.1/params/profile.arch.xml | 39 + docbook-xsl-1.76.1/params/profile.attribute.xml | 34 + docbook-xsl-1.76.1/params/profile.audience.xml | 38 + docbook-xsl-1.76.1/params/profile.condition.xml | 38 + docbook-xsl-1.76.1/params/profile.conformance.xml | 38 + docbook-xsl-1.76.1/params/profile.lang.xml | 38 + docbook-xsl-1.76.1/params/profile.os.xml | 38 + docbook-xsl-1.76.1/params/profile.revision.xml | 38 + docbook-xsl-1.76.1/params/profile.revisionflag.xml | 38 + docbook-xsl-1.76.1/params/profile.role.xml | 54 + docbook-xsl-1.76.1/params/profile.security.xml | 38 + docbook-xsl-1.76.1/params/profile.separator.xml | 27 + docbook-xsl-1.76.1/params/profile.status.xml | 38 + docbook-xsl-1.76.1/params/profile.userlevel.xml | 38 + docbook-xsl-1.76.1/params/profile.value.xml | 41 + docbook-xsl-1.76.1/params/profile.vendor.xml | 38 + docbook-xsl-1.76.1/params/profile.wordsize.xml | 38 + docbook-xsl-1.76.1/params/punct.honorific.xml | 28 + docbook-xsl-1.76.1/params/qanda.defaultlabel.xml | 86 + docbook-xsl-1.76.1/params/qanda.in.toc.xml | 34 + .../params/qanda.inherit.numeration.xml | 30 + docbook-xsl-1.76.1/params/qanda.nested.in.toc.xml | 29 + .../params/qanda.title.level1.properties.xml | 32 + .../params/qanda.title.level2.properties.xml | 32 + .../params/qanda.title.level3.properties.xml | 32 + .../params/qanda.title.level4.properties.xml | 32 + .../params/qanda.title.level5.properties.xml | 32 + .../params/qanda.title.level6.properties.xml | 34 + .../params/qanda.title.properties.xml | 37 + docbook-xsl-1.76.1/params/qandadiv.autolabel.xml | 26 + docbook-xsl-1.76.1/params/rebuild-all.xml | 33 + docbook-xsl-1.76.1/params/refclass.suppress.xml | 28 + .../params/refentry.date.profile.enabled.xml | 46 + .../params/refentry.date.profile.xml | 38 + .../params/refentry.generate.name.xml | 33 + .../params/refentry.generate.title.xml | 33 + .../params/refentry.manual.fallback.profile.xml | 48 + .../params/refentry.manual.profile.enabled.xml | 47 + .../params/refentry.manual.profile.xml | 72 + .../params/refentry.meta.get.quietly.xml | 37 + docbook-xsl-1.76.1/params/refentry.pagebreak.xml | 33 + docbook-xsl-1.76.1/params/refentry.separator.xml | 29 + .../params/refentry.source.fallback.profile.xml | 49 + .../refentry.source.name.profile.enabled.xml | 48 + .../params/refentry.source.name.profile.xml | 89 + .../params/refentry.source.name.suppress.xml | 42 + .../params/refentry.title.properties.xml | 59 + .../params/refentry.version.profile.enabled.xml | 47 + .../params/refentry.version.profile.xml | 41 + .../params/refentry.version.suppress.xml | 43 + .../params/refentry.xref.manvolnum.xml | 31 + docbook-xsl-1.76.1/params/reference.autolabel.xml | 67 + docbook-xsl-1.76.1/params/region.after.extent.xml | 29 + docbook-xsl-1.76.1/params/region.before.extent.xml | 29 + .../params/revhistory.table.cell.properties.xml | 28 + .../params/revhistory.table.properties.xml | 28 + .../params/revhistory.title.properties.xml | 28 + docbook-xsl-1.76.1/params/root.filename.xml | 29 + docbook-xsl-1.76.1/params/root.properties.xml | 46 + docbook-xsl-1.76.1/params/rootid.xml | 33 + .../params/runinhead.default.title.end.punct.xml | 27 + .../params/runinhead.title.end.punct.xml | 32 + .../params/running.foot.properties.xml | 34 + docbook-xsl-1.76.1/params/sans.font.family.xml | 29 + docbook-xsl-1.76.1/params/saxon.callouts.xml | 30 + .../params/saxon.character.representation.xml | 38 + docbook-xsl-1.76.1/params/saxon.linenumbering.xml | 32 + docbook-xsl-1.76.1/params/saxon.tablecolumns.xml | 30 + docbook-xsl-1.76.1/params/script.dir.xml | 33 + .../params/section.autolabel.max.depth.xml | 32 + docbook-xsl-1.76.1/params/section.autolabel.xml | 26 + .../params/section.container.element.xml | 62 + .../section.label.includes.component.label.xml | 27 + .../params/section.level1.properties.xml | 43 + .../params/section.level2.properties.xml | 43 + .../params/section.level3.properties.xml | 43 + .../params/section.level4.properties.xml | 43 + .../params/section.level5.properties.xml | 43 + .../params/section.level6.properties.xml | 43 + docbook-xsl-1.76.1/params/section.properties.xml | 35 + .../params/section.title.level1.properties.xml | 32 + .../params/section.title.level2.properties.xml | 33 + .../params/section.title.level3.properties.xml | 32 + .../params/section.title.level4.properties.xml | 32 + .../params/section.title.level5.properties.xml | 32 + .../params/section.title.level6.properties.xml | 33 + .../params/section.title.properties.xml | 39 + .../params/segmentedlist.as.table.xml | 28 + docbook-xsl-1.76.1/params/sequential.links.xml | 25 + docbook-xsl-1.76.1/params/shade.verbatim.style.xml | 36 + docbook-xsl-1.76.1/params/shade.verbatim.xml | 30 + docbook-xsl-1.76.1/params/show.comments.xml | 32 + docbook-xsl-1.76.1/params/show.foil.number.xml | 28 + docbook-xsl-1.76.1/params/show.revisionflag.xml | 42 + docbook-xsl-1.76.1/params/showtoc.image.xml | 29 + .../params/side.float.properties.xml | 50 + docbook-xsl-1.76.1/params/sidebar.float.type.xml | 90 + docbook-xsl-1.76.1/params/sidebar.float.width.xml | 35 + docbook-xsl-1.76.1/params/sidebar.properties.xml | 42 + .../params/sidebar.title.properties.xml | 32 + docbook-xsl-1.76.1/params/simplesect.in.toc.xml | 26 + docbook-xsl-1.76.1/params/slide.font.family.xml | 31 + .../params/slide.title.font.family.xml | 31 + docbook-xsl-1.76.1/params/slides.js.xml | 28 + docbook-xsl-1.76.1/params/slides.properties.xml | 31 + docbook-xsl-1.76.1/params/spacing.paras.xml | 30 + .../params/speakernote.properties.xml | 32 + docbook-xsl-1.76.1/params/subscript.properties.xml | 29 + .../params/superscript.properties.xml | 29 + .../params/suppress.footer.navigation.xml | 26 + .../params/suppress.header.navigation.xml | 27 + .../params/suppress.homepage.title.xml | 25 + docbook-xsl-1.76.1/params/suppress.navigation.xml | 28 + docbook-xsl-1.76.1/params/symbol.font.family.xml | 45 + .../params/table.borders.with.css.xml | 28 + .../params/table.cell.border.color.xml | 39 + .../params/table.cell.border.style.xml | 42 + .../params/table.cell.border.thickness.xml | 35 + docbook-xsl-1.76.1/params/table.cell.padding.xml | 32 + docbook-xsl-1.76.1/params/table.entry.padding.xml | 27 + .../params/table.footnote.number.format.xml | 33 + .../params/table.footnote.number.symbols.xml | 39 + .../params/table.footnote.properties.xml | 39 + .../params/table.frame.border.color.xml | 28 + .../params/table.frame.border.style.xml | 37 + .../params/table.frame.border.thickness.xml | 27 + docbook-xsl-1.76.1/params/table.properties.xml | 34 + docbook-xsl-1.76.1/params/table.spacer.image.xml | 26 + .../params/table.table.properties.xml | 36 + .../params/tablecolumns.extension.xml | 30 + .../params/target.database.document.xml | 37 + docbook-xsl-1.76.1/params/targets.filename.xml | 32 + docbook-xsl-1.76.1/params/template.xml | 27 + docbook-xsl-1.76.1/params/tex.math.delims.xml | 47 + docbook-xsl-1.76.1/params/tex.math.file.xml | 42 + docbook-xsl-1.76.1/params/tex.math.in.alt.xml | 76 + docbook-xsl-1.76.1/params/text.home.xml | 27 + docbook-xsl-1.76.1/params/text.next.xml | 27 + docbook-xsl-1.76.1/params/text.prev.xml | 27 + docbook-xsl-1.76.1/params/text.toc.xml | 27 + docbook-xsl-1.76.1/params/text.up.xml | 27 + docbook-xsl-1.76.1/params/textbgcolor.xml | 26 + .../params/textdata.default.encoding.xml | 32 + docbook-xsl-1.76.1/params/textinsert.extension.xml | 62 + docbook-xsl-1.76.1/params/title.font.family.xml | 33 + docbook-xsl-1.76.1/params/title.margin.left.xml | 65 + docbook-xsl-1.76.1/params/titlefoil.html.xml | 27 + docbook-xsl-1.76.1/params/toc.bg.color.xml | 27 + docbook-xsl-1.76.1/params/toc.blank.graphic.xml | 28 + docbook-xsl-1.76.1/params/toc.blank.image.xml | 27 + docbook-xsl-1.76.1/params/toc.blank.text.xml | 27 + docbook-xsl-1.76.1/params/toc.hide.show.xml | 33 + docbook-xsl-1.76.1/params/toc.html.xml | 27 + docbook-xsl-1.76.1/params/toc.image.xml | 27 + docbook-xsl-1.76.1/params/toc.indent.width.xml | 34 + docbook-xsl-1.76.1/params/toc.line.properties.xml | 44 + docbook-xsl-1.76.1/params/toc.list.type.xml | 30 + .../params/toc.margin.properties.xml | 33 + docbook-xsl-1.76.1/params/toc.max.depth.xml | 25 + docbook-xsl-1.76.1/params/toc.pointer.graphic.xml | 28 + docbook-xsl-1.76.1/params/toc.pointer.image.xml | 27 + docbook-xsl-1.76.1/params/toc.pointer.text.xml | 27 + docbook-xsl-1.76.1/params/toc.row.height.xml | 33 + docbook-xsl-1.76.1/params/toc.section.depth.xml | 28 + docbook-xsl-1.76.1/params/toc.spacer.graphic.xml | 28 + docbook-xsl-1.76.1/params/toc.spacer.image.xml | 27 + docbook-xsl-1.76.1/params/toc.spacer.text.xml | 27 + docbook-xsl-1.76.1/params/toc.width.xml | 28 + docbook-xsl-1.76.1/params/ua.js.xml | 28 + docbook-xsl-1.76.1/params/ulink.footnotes.xml | 34 + .../params/ulink.hyphenate.chars.xml | 37 + docbook-xsl-1.76.1/params/ulink.hyphenate.xml | 35 + docbook-xsl-1.76.1/params/ulink.show.xml | 37 + docbook-xsl-1.76.1/params/ulink.target.xml | 29 + docbook-xsl-1.76.1/params/up.image.xml | 27 + docbook-xsl-1.76.1/params/use.embed.for.svg.xml | 33 + docbook-xsl-1.76.1/params/use.extensions.xml | 31 + docbook-xsl-1.76.1/params/use.id.as.filename.xml | 30 + docbook-xsl-1.76.1/params/use.id.function.xml | 32 + .../params/use.local.olink.style.xml | 28 + .../params/use.role.as.xrefstyle.xml | 93 + .../params/use.role.for.mediaobject.xml | 56 + docbook-xsl-1.76.1/params/use.svg.xml | 30 + .../params/variablelist.as.blocks.xml | 62 + .../params/variablelist.as.table.xml | 54 + .../params/variablelist.max.termlength.xml | 46 + .../params/variablelist.term.break.after.xml | 39 + .../params/variablelist.term.properties.xml | 29 + .../params/variablelist.term.separator.xml | 40 + docbook-xsl-1.76.1/params/verbatim.properties.xml | 38 + docbook-xsl-1.76.1/params/wordml.template.xml | 29 + docbook-xsl-1.76.1/params/writing.mode.xml | 83 + .../params/xbCollapsibleLists.js.xml | 28 + docbook-xsl-1.76.1/params/xbDOM.js.xml | 28 + docbook-xsl-1.76.1/params/xbLibrary.js.xml | 28 + docbook-xsl-1.76.1/params/xbStyle.js.xml | 28 + docbook-xsl-1.76.1/params/xep.extensions.xml | 31 + .../params/xep.index.item.properties.xml | 36 + .../params/xref.label-page.separator.xml | 38 + .../params/xref.label-title.separator.xml | 36 + docbook-xsl-1.76.1/params/xref.properties.xml | 29 + .../params/xref.title-page.separator.xml | 36 + .../params/xref.with.number.and.title.xml | 30 + docbook-xsl-1.76.1/profiling/profile-mode.xsl | 239 + docbook-xsl-1.76.1/profiling/profile.xsl | 56 + docbook-xsl-1.76.1/profiling/strip-attributes.xsl | 27 + docbook-xsl-1.76.1/profiling/xsl2profile.xsl | 159 + docbook-xsl-1.76.1/roundtrip/blocks-spec.xml | 11 + docbook-xsl-1.76.1/roundtrip/blocks2dbk.dtd | 76 + docbook-xsl-1.76.1/roundtrip/blocks2dbk.xsl | 1732 + docbook-xsl-1.76.1/roundtrip/dbk2ooo.xsl | 178 + docbook-xsl-1.76.1/roundtrip/dbk2pages.xsl | 441 + docbook-xsl-1.76.1/roundtrip/dbk2wordml.xsl | 401 + docbook-xsl-1.76.1/roundtrip/dbk2wp.xsl | 1375 + docbook-xsl-1.76.1/roundtrip/normalise-common.xsl | 39 + .../roundtrip/normalise2sections.xsl | 1270 + docbook-xsl-1.76.1/roundtrip/pages2normalise.xsl | 351 + docbook-xsl-1.76.1/roundtrip/param.xml | 105 + docbook-xsl-1.76.1/roundtrip/param.xsl | 18 + docbook-xsl-1.76.1/roundtrip/sections-spec.xml | 38 + docbook-xsl-1.76.1/roundtrip/sections2blocks.xsl | 263 + docbook-xsl-1.76.1/roundtrip/specifications.xml | 1420 + docbook-xsl-1.76.1/roundtrip/template-pages.xml | 2 + docbook-xsl-1.76.1/roundtrip/template.dot | Bin 0 -> 38912 bytes docbook-xsl-1.76.1/roundtrip/template.xml | 3 + docbook-xsl-1.76.1/roundtrip/wordml2normalise.xsl | 445 + docbook-xsl-1.76.1/slides/browser/CTOCWidget.js | 169 + docbook-xsl-1.76.1/slides/browser/overlay.js | 142 + .../slides/browser/slides-default.css | 9 + .../slides/browser/slides-frames.css | 73 + docbook-xsl-1.76.1/slides/browser/slides-plain.css | 1 + docbook-xsl-1.76.1/slides/browser/slides-table.css | 41 + docbook-xsl-1.76.1/slides/browser/slides-w3c.css | 1 + docbook-xsl-1.76.1/slides/browser/slides.css | 119 + docbook-xsl-1.76.1/slides/browser/slides.js | 120 + docbook-xsl-1.76.1/slides/browser/ua.js | 135 + .../slides/browser/xbCollapsibleLists.js | 537 + docbook-xsl-1.76.1/slides/browser/xbDOM.js | 374 + docbook-xsl-1.76.1/slides/browser/xbDebug.js | 311 + docbook-xsl-1.76.1/slides/browser/xbLibrary.js | 80 + docbook-xsl-1.76.1/slides/browser/xbStyle-css.js | 791 + docbook-xsl-1.76.1/slides/browser/xbStyle-nn4.js | 485 + .../slides/browser/xbStyle-not-supported.js | 77 + docbook-xsl-1.76.1/slides/browser/xbStyle.js | 295 + docbook-xsl-1.76.1/slides/fo/param.xml | 356 + docbook-xsl-1.76.1/slides/fo/param.xsl | 74 + docbook-xsl-1.76.1/slides/fo/plain-titlepage.xml | 79 + docbook-xsl-1.76.1/slides/fo/plain-titlepage.xsl | 187 + docbook-xsl-1.76.1/slides/fo/plain.xsl | 528 + .../slides/graphics/active/arr-next.png | Bin 0 -> 122 bytes .../slides/graphics/active/arr-prev.png | Bin 0 -> 118 bytes .../slides/graphics/active/but-fforward.png | Bin 0 -> 575 bytes .../slides/graphics/active/but-info.png | Bin 0 -> 587 bytes .../slides/graphics/active/but-next.png | Bin 0 -> 557 bytes .../slides/graphics/active/but-prev.png | Bin 0 -> 563 bytes .../slides/graphics/active/but-rewind.png | Bin 0 -> 595 bytes .../slides/graphics/active/nav-home.png | Bin 0 -> 372 bytes .../slides/graphics/active/nav-next.png | Bin 0 -> 406 bytes .../slides/graphics/active/nav-prev.png | Bin 0 -> 405 bytes .../slides/graphics/active/nav-toc.png | Bin 0 -> 220 bytes .../slides/graphics/active/nav-up.png | Bin 0 -> 422 bytes .../slides/graphics/active/w3c-next.png | Bin 0 -> 163 bytes .../slides/graphics/active/w3c-prev.png | Bin 0 -> 159 bytes .../slides/graphics/active/w3c-toc.png | Bin 0 -> 232 bytes docbook-xsl-1.76.1/slides/graphics/arrow.gif | Bin 0 -> 144 bytes docbook-xsl-1.76.1/slides/graphics/blank.gif | Bin 0 -> 123 bytes docbook-xsl-1.76.1/slides/graphics/blank.png | Bin 0 -> 100 bytes docbook-xsl-1.76.1/slides/graphics/hidetoc.gif | Bin 0 -> 922 bytes .../slides/graphics/inactive/but-fforward.png | Bin 0 -> 573 bytes .../slides/graphics/inactive/but-info.png | Bin 0 -> 301 bytes .../slides/graphics/inactive/but-next.png | Bin 0 -> 560 bytes .../slides/graphics/inactive/but-prev.png | Bin 0 -> 569 bytes .../slides/graphics/inactive/but-rewind.png | Bin 0 -> 594 bytes .../slides/graphics/inactive/nav-home.png | Bin 0 -> 365 bytes .../slides/graphics/inactive/nav-next.png | Bin 0 -> 384 bytes .../slides/graphics/inactive/nav-prev.png | Bin 0 -> 420 bytes .../slides/graphics/inactive/nav-toc.png | Bin 0 -> 226 bytes .../slides/graphics/inactive/nav-up.png | Bin 0 -> 232 bytes .../slides/graphics/inactive/w3c-next.png | Bin 0 -> 251 bytes .../slides/graphics/inactive/w3c-prev.png | Bin 0 -> 257 bytes .../slides/graphics/inactive/w3c-toc.png | Bin 0 -> 246 bytes docbook-xsl-1.76.1/slides/graphics/plus.gif | Bin 0 -> 137 bytes docbook-xsl-1.76.1/slides/graphics/pointer.png | Bin 0 -> 172 bytes docbook-xsl-1.76.1/slides/graphics/showtoc.gif | Bin 0 -> 922 bytes docbook-xsl-1.76.1/slides/graphics/toc/bullet.png | Bin 0 -> 167 bytes docbook-xsl-1.76.1/slides/graphics/toc/closed.png | Bin 0 -> 157 bytes docbook-xsl-1.76.1/slides/graphics/toc/open.png | Bin 0 -> 146 bytes docbook-xsl-1.76.1/slides/html/css.xsl | 46 + docbook-xsl-1.76.1/slides/html/default.xsl | 261 + docbook-xsl-1.76.1/slides/html/flat.xsl | 70 + docbook-xsl-1.76.1/slides/html/frames.xsl | 2016 + docbook-xsl-1.76.1/slides/html/graphics.xsl | 151 + docbook-xsl-1.76.1/slides/html/jscript.xsl | 127 + docbook-xsl-1.76.1/slides/html/param.xml | 1376 + docbook-xsl-1.76.1/slides/html/param.xsl | 68 + docbook-xsl-1.76.1/slides/html/plain.xsl | 472 + docbook-xsl-1.76.1/slides/html/slides-common.xsl | 1541 + docbook-xsl-1.76.1/slides/html/tables.xsl | 336 + docbook-xsl-1.76.1/slides/html/vslides.xsl | 667 + docbook-xsl-1.76.1/slides/html/w3c.xsl | 376 + docbook-xsl-1.76.1/slides/htmlhelp/htmlhelp.xsl | 89 + docbook-xsl-1.76.1/slides/keynote/default.xsl | 600 + docbook-xsl-1.76.1/slides/keynote/xsltsl/cmp.xsl | 348 + .../slides/keynote/xsltsl/date-time.xsl | 1524 + .../slides/keynote/xsltsl/example.xsl | 90 + .../slides/keynote/xsltsl/markup.xsl | 789 + docbook-xsl-1.76.1/slides/keynote/xsltsl/math.xsl | 704 + docbook-xsl-1.76.1/slides/keynote/xsltsl/node.xsl | 229 + .../slides/keynote/xsltsl/stdlib.xsl | 340 + .../slides/keynote/xsltsl/string.xsl | 1233 + docbook-xsl-1.76.1/slides/keynote/xsltsl/svg.xsl | 177 + docbook-xsl-1.76.1/slides/keynote/xsltsl/uri.xsl | 580 + docbook-xsl-1.76.1/slides/svg/default.xsl | 686 + docbook-xsl-1.76.1/slides/xhtml/css.xsl | 47 + docbook-xsl-1.76.1/slides/xhtml/default.xsl | 246 + docbook-xsl-1.76.1/slides/xhtml/flat.xsl | 71 + docbook-xsl-1.76.1/slides/xhtml/frames.xsl | 1982 + docbook-xsl-1.76.1/slides/xhtml/graphics.xsl | 152 + docbook-xsl-1.76.1/slides/xhtml/jscript.xsl | 128 + docbook-xsl-1.76.1/slides/xhtml/param.xsl | 70 + docbook-xsl-1.76.1/slides/xhtml/plain.xsl | 470 + docbook-xsl-1.76.1/slides/xhtml/slides-common.xsl | 1534 + docbook-xsl-1.76.1/slides/xhtml/tables.xsl | 334 + docbook-xsl-1.76.1/slides/xhtml/vslides.xsl | 652 + docbook-xsl-1.76.1/slides/xhtml/w3c.xsl | 358 + docbook-xsl-1.76.1/template/titlepage.xml | 478 + docbook-xsl-1.76.1/template/titlepage.xsl | 1280 + docbook-xsl-1.76.1/tests/refentry.007.ns.xml | 325 + docbook-xsl-1.76.1/tests/refentry.007.xml | 340 + docbook-xsl-1.76.1/tools/bin/docbook-xsl-update | 53 + docbook-xsl-1.76.1/tools/make/Makefile.DocBook | 698 + docbook-xsl-1.76.1/tools/make/Makefile.combine | 182 + docbook-xsl-1.76.1/tools/make/Makefile.docParam | 59 + docbook-xsl-1.76.1/webhelp/LICENSE | 1 + docbook-xsl-1.76.1/webhelp/build.properties | 43 + docbook-xsl-1.76.1/webhelp/build.xml | 112 + .../webhelp/docs/common/css/positioning.css | 109 + .../webhelp/docs/common/images/header-bg.gif | Bin 0 -> 619 bytes .../webhelp/docs/common/images/highlight-blue.gif | Bin 0 -> 471 bytes .../docs/common/images/highlight-yellow.gif | Bin 0 -> 331 bytes .../webhelp/docs/common/images/loading.gif | Bin 0 -> 729 bytes .../webhelp/docs/common/images/logo.png | Bin 0 -> 35061 bytes .../docs/common/images/showHideTreeIcons.png | Bin 0 -> 726 bytes .../webhelp/docs/common/jquery/jquery-1.4.2.min.js | 154 + .../common/jquery/jquery-ui-1.8.2.custom.min.js | 321 + .../webhelp/docs/common/jquery/jquery.cookie.js | 93 + .../theme-redmond/images/ui-anim_basic_16x16.gif | Bin 0 -> 1553 bytes .../images/ui-bg_flat_0_aaaaaa_40x100.png | Bin 0 -> 180 bytes .../images/ui-bg_flat_55_fbec88_40x100.png | Bin 0 -> 182 bytes .../images/ui-bg_glass_75_d0e5f5_1x400.png | Bin 0 -> 162 bytes .../images/ui-bg_glass_85_dfeffc_1x400.png | Bin 0 -> 123 bytes .../images/ui-bg_glass_95_fef1ec_1x400.png | Bin 0 -> 119 bytes .../images/ui-bg_gloss-wave_55_5c9ccc_500x100.png | Bin 0 -> 3457 bytes .../images/ui-bg_inset-hard_100_f5f8f9_1x100.png | Bin 0 -> 104 bytes .../images/ui-bg_inset-hard_100_fcfdfd_1x100.png | Bin 0 -> 88 bytes .../images/ui-icons_217bc0_256x240.png | Bin 0 -> 4369 bytes .../images/ui-icons_2e83ff_256x240.png | Bin 0 -> 4369 bytes .../images/ui-icons_469bdd_256x240.png | Bin 0 -> 4369 bytes .../images/ui-icons_6da8d5_256x240.png | Bin 0 -> 5355 bytes .../images/ui-icons_cd0a0a_256x240.png | Bin 0 -> 4369 bytes .../images/ui-icons_d8e7f3_256x240.png | Bin 0 -> 4369 bytes .../images/ui-icons_f9bd01_256x240.png | Bin 0 -> 5355 bytes .../theme-redmond/jquery-ui-1.8.2.custom.css | 398 + .../docs/common/jquery/treeview/images/file.gif | Bin 0 -> 1008 bytes .../jquery/treeview/images/folder-closed.gif | Bin 0 -> 631 bytes .../jquery/treeview/images/folder-closed2.gif | Bin 0 -> 105 bytes .../docs/common/jquery/treeview/images/folder.gif | Bin 0 -> 631 bytes .../docs/common/jquery/treeview/images/folder2.gif | Bin 0 -> 106 bytes .../docs/common/jquery/treeview/images/minus.gif | Bin 0 -> 837 bytes .../docs/common/jquery/treeview/images/plus.gif | Bin 0 -> 841 bytes .../jquery/treeview/images/treeview-black-line.gif | Bin 0 -> 1877 bytes .../jquery/treeview/images/treeview-black.gif | Bin 0 -> 1216 bytes .../treeview/images/treeview-default-line.gif | Bin 0 -> 1993 bytes .../jquery/treeview/images/treeview-default.gif | Bin 0 -> 1222 bytes .../treeview/images/treeview-famfamfam-line.gif | Bin 0 -> 807 bytes .../jquery/treeview/images/treeview-famfamfam.gif | Bin 0 -> 1280 bytes .../jquery/treeview/images/treeview-gray-line.gif | Bin 0 -> 1877 bytes .../jquery/treeview/images/treeview-gray.gif | Bin 0 -> 1230 bytes .../jquery/treeview/images/treeview-red-line.gif | Bin 0 -> 1877 bytes .../common/jquery/treeview/images/treeview-red.gif | Bin 0 -> 1230 bytes .../jquery/treeview/jquery.treeview.async.js | 72 + .../common/jquery/treeview/jquery.treeview.css | 85 + .../docs/common/jquery/treeview/jquery.treeview.js | 255 + .../common/jquery/treeview/jquery.treeview.min.js | 16 + .../common/jquery/treeview/jquery.treeview.pack.js | 16 + docbook-xsl-1.76.1/webhelp/docs/common/main.js | 161 + docbook-xsl-1.76.1/webhelp/docs/content/ch01.html | 61 + docbook-xsl-1.76.1/webhelp/docs/content/ch02.html | 32 + .../webhelp/docs/content/ch02s01.html | 117 + .../webhelp/docs/content/ch02s02.html | 102 + .../webhelp/docs/content/ch02s03.html | 36 + .../webhelp/docs/content/ch02s04.html | 42 + docbook-xsl-1.76.1/webhelp/docs/content/ch03.html | 37 + .../webhelp/docs/content/ch03s01.html | 62 + .../webhelp/docs/content/ch03s02.html | 124 + docbook-xsl-1.76.1/webhelp/docs/content/index.html | 71 + .../docs/content/search/htmlFileInfoList.js | 10 + .../webhelp/docs/content/search/htmlFileList.js | 11 + .../webhelp/docs/content/search/index-1.js | 224 + .../webhelp/docs/content/search/index-2.js | 223 + .../webhelp/docs/content/search/index-3.js | 221 + .../webhelp/docs/content/search/nwSearchFnt.js | 513 + .../docs/content/search/stemmers/en_stemmer.js | 187 + docbook-xsl-1.76.1/webhelp/docs/favicon.ico | Bin 0 -> 5686 bytes docbook-xsl-1.76.1/webhelp/docs/index.html | 13 + docbook-xsl-1.76.1/webhelp/docsrc/readme.xml | 928 + .../webhelp/template/common/css/positioning.css | 109 + .../webhelp/template/common/images/header-bg.gif | Bin 0 -> 619 bytes .../template/common/images/highlight-blue.gif | Bin 0 -> 471 bytes .../template/common/images/highlight-yellow.gif | Bin 0 -> 331 bytes .../webhelp/template/common/images/loading.gif | Bin 0 -> 729 bytes .../webhelp/template/common/images/logo.png | Bin 0 -> 35061 bytes .../template/common/images/showHideTreeIcons.png | Bin 0 -> 726 bytes .../template/common/jquery/jquery-1.4.2.min.js | 154 + .../common/jquery/jquery-ui-1.8.2.custom.min.js | 321 + .../template/common/jquery/jquery.cookie.js | 93 + .../theme-redmond/images/ui-anim_basic_16x16.gif | Bin 0 -> 1553 bytes .../images/ui-bg_flat_0_aaaaaa_40x100.png | Bin 0 -> 180 bytes .../images/ui-bg_flat_55_fbec88_40x100.png | Bin 0 -> 182 bytes .../images/ui-bg_glass_75_d0e5f5_1x400.png | Bin 0 -> 162 bytes .../images/ui-bg_glass_85_dfeffc_1x400.png | Bin 0 -> 123 bytes .../images/ui-bg_glass_95_fef1ec_1x400.png | Bin 0 -> 119 bytes .../images/ui-bg_gloss-wave_55_5c9ccc_500x100.png | Bin 0 -> 3457 bytes .../images/ui-bg_inset-hard_100_f5f8f9_1x100.png | Bin 0 -> 104 bytes .../images/ui-bg_inset-hard_100_fcfdfd_1x100.png | Bin 0 -> 88 bytes .../images/ui-icons_217bc0_256x240.png | Bin 0 -> 4369 bytes .../images/ui-icons_2e83ff_256x240.png | Bin 0 -> 4369 bytes .../images/ui-icons_469bdd_256x240.png | Bin 0 -> 4369 bytes .../images/ui-icons_6da8d5_256x240.png | Bin 0 -> 5355 bytes .../images/ui-icons_cd0a0a_256x240.png | Bin 0 -> 4369 bytes .../images/ui-icons_d8e7f3_256x240.png | Bin 0 -> 4369 bytes .../images/ui-icons_f9bd01_256x240.png | Bin 0 -> 5355 bytes .../theme-redmond/jquery-ui-1.8.2.custom.css | 398 + .../common/jquery/treeview/images/file.gif | Bin 0 -> 1008 bytes .../jquery/treeview/images/folder-closed.gif | Bin 0 -> 631 bytes .../jquery/treeview/images/folder-closed2.gif | Bin 0 -> 105 bytes .../common/jquery/treeview/images/folder.gif | Bin 0 -> 631 bytes .../common/jquery/treeview/images/folder2.gif | Bin 0 -> 106 bytes .../common/jquery/treeview/images/minus.gif | Bin 0 -> 837 bytes .../common/jquery/treeview/images/plus.gif | Bin 0 -> 841 bytes .../jquery/treeview/images/treeview-black-line.gif | Bin 0 -> 1877 bytes .../jquery/treeview/images/treeview-black.gif | Bin 0 -> 1216 bytes .../treeview/images/treeview-default-line.gif | Bin 0 -> 1993 bytes .../jquery/treeview/images/treeview-default.gif | Bin 0 -> 1222 bytes .../treeview/images/treeview-famfamfam-line.gif | Bin 0 -> 807 bytes .../jquery/treeview/images/treeview-famfamfam.gif | Bin 0 -> 1280 bytes .../jquery/treeview/images/treeview-gray-line.gif | Bin 0 -> 1877 bytes .../jquery/treeview/images/treeview-gray.gif | Bin 0 -> 1230 bytes .../jquery/treeview/images/treeview-red-line.gif | Bin 0 -> 1877 bytes .../common/jquery/treeview/images/treeview-red.gif | Bin 0 -> 1230 bytes .../jquery/treeview/jquery.treeview.async.js | 72 + .../common/jquery/treeview/jquery.treeview.css | 85 + .../common/jquery/treeview/jquery.treeview.js | 255 + .../common/jquery/treeview/jquery.treeview.min.js | 16 + .../common/jquery/treeview/jquery.treeview.pack.js | 16 + docbook-xsl-1.76.1/webhelp/template/common/main.js | 161 + .../webhelp/template/content/search/default.props | 1 + .../webhelp/template/content/search/en-us.props | 45 + .../webhelp/template/content/search/es-es.props | 179 + .../webhelp/template/content/search/ja-jp.props | 1 + .../webhelp/template/content/search/nwSearchFnt.js | 513 + .../template/content/search/punctuation.props | 31 + .../template/content/search/stemmers/de_stemmer.js | 247 + .../template/content/search/stemmers/en_stemmer.js | 187 + .../template/content/search/stemmers/fr_stemmer.js | 299 + docbook-xsl-1.76.1/webhelp/template/favicon.ico | Bin 0 -> 5686 bytes docbook-xsl-1.76.1/webhelp/xsl/webhelp.xsl | 782 + docbook-xsl-1.76.1/website/autolayout.xsl | 258 + docbook-xsl-1.76.1/website/chunk-common.xsl | 227 + docbook-xsl-1.76.1/website/chunk-tabular.xsl | 12 + docbook-xsl-1.76.1/website/chunk-website.xsl | 12 + docbook-xsl-1.76.1/website/head.xsl | 316 + docbook-xsl-1.76.1/website/makefile-dep.xsl | 143 + docbook-xsl-1.76.1/website/olink.xsl | 297 + docbook-xsl-1.76.1/website/param.xml | 788 + docbook-xsl-1.76.1/website/param.xsl | 53 + docbook-xsl-1.76.1/website/rss.xsl | 143 + docbook-xsl-1.76.1/website/tabular.xsl | 213 + docbook-xsl-1.76.1/website/toc-tabular.xsl | 480 + docbook-xsl-1.76.1/website/toc.xsl | 286 + docbook-xsl-1.76.1/website/website-common.xsl | 821 + docbook-xsl-1.76.1/website/website-targets.xsl | 27 + docbook-xsl-1.76.1/website/website.xsl | 132 + docbook-xsl-1.76.1/website/xbel.xsl | 114 + docbook-xsl-1.76.1/xhtml-1_1/admon.xsl | 133 + docbook-xsl-1.76.1/xhtml-1_1/annotations.xsl | 158 + docbook-xsl-1.76.1/xhtml-1_1/autoidx-kimber.xsl | 139 + docbook-xsl-1.76.1/xhtml-1_1/autoidx-kosek.xsl | 109 + docbook-xsl-1.76.1/xhtml-1_1/autoidx-ng.xsl | 21 + docbook-xsl-1.76.1/xhtml-1_1/autoidx.xsl | 681 + docbook-xsl-1.76.1/xhtml-1_1/autotoc.xsl | 663 + docbook-xsl-1.76.1/xhtml-1_1/biblio-iso690.xsl | 1300 + docbook-xsl-1.76.1/xhtml-1_1/biblio.xsl | 1240 + docbook-xsl-1.76.1/xhtml-1_1/block.xsl | 535 + docbook-xsl-1.76.1/xhtml-1_1/callout.xsl | 188 + docbook-xsl-1.76.1/xhtml-1_1/changebars.xsl | 78 + docbook-xsl-1.76.1/xhtml-1_1/chunk-changebars.xsl | 96 + docbook-xsl-1.76.1/xhtml-1_1/chunk-code.xsl | 645 + docbook-xsl-1.76.1/xhtml-1_1/chunk-common.xsl | 1561 + docbook-xsl-1.76.1/xhtml-1_1/chunk.xsl | 52 + docbook-xsl-1.76.1/xhtml-1_1/chunker.xsl | 302 + docbook-xsl-1.76.1/xhtml-1_1/chunkfast.xsl | 69 + docbook-xsl-1.76.1/xhtml-1_1/chunktoc.xsl | 528 + docbook-xsl-1.76.1/xhtml-1_1/component.xsl | 395 + docbook-xsl-1.76.1/xhtml-1_1/division.xsl | 217 + docbook-xsl-1.76.1/xhtml-1_1/docbook.css.xml | 109 + docbook-xsl-1.76.1/xhtml-1_1/docbook.xsl | 446 + docbook-xsl-1.76.1/xhtml-1_1/ebnf.xsl | 328 + docbook-xsl-1.76.1/xhtml-1_1/footnote.xsl | 305 + docbook-xsl-1.76.1/xhtml-1_1/formal.xsl | 411 + docbook-xsl-1.76.1/xhtml-1_1/glossary.xsl | 564 + docbook-xsl-1.76.1/xhtml-1_1/graphics.xsl | 1436 + docbook-xsl-1.76.1/xhtml-1_1/highlight.xsl | 88 + docbook-xsl-1.76.1/xhtml-1_1/html-rtf.xsl | 321 + docbook-xsl-1.76.1/xhtml-1_1/html.xsl | 598 + docbook-xsl-1.76.1/xhtml-1_1/htmltbl.xsl | 102 + docbook-xsl-1.76.1/xhtml-1_1/index.xsl | 264 + docbook-xsl-1.76.1/xhtml-1_1/info.xsl | 44 + docbook-xsl-1.76.1/xhtml-1_1/inline.xsl | 1451 + docbook-xsl-1.76.1/xhtml-1_1/keywords.xsl | 36 + docbook-xsl-1.76.1/xhtml-1_1/lists.xsl | 1088 + docbook-xsl-1.76.1/xhtml-1_1/maketoc.xsl | 91 + docbook-xsl-1.76.1/xhtml-1_1/manifest.xsl | 22 + docbook-xsl-1.76.1/xhtml-1_1/math.xsl | 284 + docbook-xsl-1.76.1/xhtml-1_1/oldchunker.xsl | 176 + docbook-xsl-1.76.1/xhtml-1_1/onechunk.xsl | 36 + docbook-xsl-1.76.1/xhtml-1_1/param.xsl | 436 + docbook-xsl-1.76.1/xhtml-1_1/pi.xsl | 1203 + .../xhtml-1_1/profile-chunk-code.xsl | 617 + docbook-xsl-1.76.1/xhtml-1_1/profile-chunk.xsl | 52 + docbook-xsl-1.76.1/xhtml-1_1/profile-docbook.xsl | 408 + docbook-xsl-1.76.1/xhtml-1_1/profile-onechunk.xsl | 36 + docbook-xsl-1.76.1/xhtml-1_1/qandaset.xsl | 420 + docbook-xsl-1.76.1/xhtml-1_1/refentry.xsl | 299 + docbook-xsl-1.76.1/xhtml-1_1/sections.xsl | 541 + docbook-xsl-1.76.1/xhtml-1_1/synop.xsl | 1513 + docbook-xsl-1.76.1/xhtml-1_1/table.xsl | 1168 + docbook-xsl-1.76.1/xhtml-1_1/task.xsl | 73 + .../xhtml-1_1/titlepage.templates.xsl | 3817 ++ docbook-xsl-1.76.1/xhtml-1_1/titlepage.xsl | 1030 + docbook-xsl-1.76.1/xhtml-1_1/toc.xsl | 330 + docbook-xsl-1.76.1/xhtml-1_1/verbatim.xsl | 388 + docbook-xsl-1.76.1/xhtml-1_1/xref.xsl | 1316 + docbook-xsl-1.76.1/xhtml/admon.xsl | 135 + docbook-xsl-1.76.1/xhtml/annotations.xsl | 158 + docbook-xsl-1.76.1/xhtml/autoidx-kimber.xsl | 139 + docbook-xsl-1.76.1/xhtml/autoidx-kosek.xsl | 109 + docbook-xsl-1.76.1/xhtml/autoidx-ng.xsl | 21 + docbook-xsl-1.76.1/xhtml/autoidx.xsl | 681 + docbook-xsl-1.76.1/xhtml/autotoc.xsl | 663 + docbook-xsl-1.76.1/xhtml/biblio-iso690.xsl | 1300 + docbook-xsl-1.76.1/xhtml/biblio.xsl | 1240 + docbook-xsl-1.76.1/xhtml/block.xsl | 535 + docbook-xsl-1.76.1/xhtml/callout.xsl | 188 + docbook-xsl-1.76.1/xhtml/changebars.xsl | 78 + docbook-xsl-1.76.1/xhtml/chunk-changebars.xsl | 96 + docbook-xsl-1.76.1/xhtml/chunk-code.xsl | 645 + docbook-xsl-1.76.1/xhtml/chunk-common.xsl | 1561 + docbook-xsl-1.76.1/xhtml/chunk.xsl | 52 + docbook-xsl-1.76.1/xhtml/chunker.xsl | 302 + docbook-xsl-1.76.1/xhtml/chunkfast.xsl | 69 + docbook-xsl-1.76.1/xhtml/chunktoc.xsl | 528 + docbook-xsl-1.76.1/xhtml/component.xsl | 395 + docbook-xsl-1.76.1/xhtml/division.xsl | 217 + docbook-xsl-1.76.1/xhtml/docbook.css.xml | 109 + docbook-xsl-1.76.1/xhtml/docbook.xsl | 446 + docbook-xsl-1.76.1/xhtml/ebnf.xsl | 328 + docbook-xsl-1.76.1/xhtml/footnote.xsl | 305 + docbook-xsl-1.76.1/xhtml/formal.xsl | 411 + docbook-xsl-1.76.1/xhtml/glossary.xsl | 564 + docbook-xsl-1.76.1/xhtml/graphics.xsl | 1436 + docbook-xsl-1.76.1/xhtml/highlight.xsl | 88 + docbook-xsl-1.76.1/xhtml/html-rtf.xsl | 321 + docbook-xsl-1.76.1/xhtml/html.xsl | 598 + docbook-xsl-1.76.1/xhtml/htmltbl.xsl | 102 + docbook-xsl-1.76.1/xhtml/index.xsl | 264 + docbook-xsl-1.76.1/xhtml/info.xsl | 44 + docbook-xsl-1.76.1/xhtml/inline.xsl | 1451 + docbook-xsl-1.76.1/xhtml/keywords.xsl | 36 + docbook-xsl-1.76.1/xhtml/lists.xsl | 1121 + docbook-xsl-1.76.1/xhtml/maketoc.xsl | 91 + docbook-xsl-1.76.1/xhtml/manifest.xsl | 22 + docbook-xsl-1.76.1/xhtml/math.xsl | 284 + docbook-xsl-1.76.1/xhtml/oldchunker.xsl | 176 + docbook-xsl-1.76.1/xhtml/onechunk.xsl | 36 + docbook-xsl-1.76.1/xhtml/param.xsl | 436 + docbook-xsl-1.76.1/xhtml/pi.xsl | 1203 + docbook-xsl-1.76.1/xhtml/profile-chunk-code.xsl | 617 + docbook-xsl-1.76.1/xhtml/profile-chunk.xsl | 52 + docbook-xsl-1.76.1/xhtml/profile-docbook.xsl | 408 + docbook-xsl-1.76.1/xhtml/profile-onechunk.xsl | 36 + docbook-xsl-1.76.1/xhtml/qandaset.xsl | 420 + docbook-xsl-1.76.1/xhtml/refentry.xsl | 299 + docbook-xsl-1.76.1/xhtml/sections.xsl | 541 + docbook-xsl-1.76.1/xhtml/synop.xsl | 1513 + docbook-xsl-1.76.1/xhtml/table.xsl | 1168 + docbook-xsl-1.76.1/xhtml/task.xsl | 73 + docbook-xsl-1.76.1/xhtml/titlepage.templates.xsl | 3817 ++ docbook-xsl-1.76.1/xhtml/titlepage.xsl | 1030 + docbook-xsl-1.76.1/xhtml/toc.xsl | 330 + docbook-xsl-1.76.1/xhtml/verbatim.xsl | 388 + docbook-xsl-1.76.1/xhtml/xref.xsl | 1316 + report/environment.rb | 1 + report/report_content.rb | 75 +- report/report_factory.rb | 51 +- report/report_format.rb | 2 +- report/statistical_test.rb | 76 + report/validation_data.rb | 10 +- report/xml_report.rb | 10 +- 2812 files changed, 428971 insertions(+), 439324 deletions(-) delete mode 100644 docbook-xsl-1.75.2/.CatalogManager.properties.example delete mode 100644 docbook-xsl-1.75.2/.cshrc.incl delete mode 100644 docbook-xsl-1.75.2/.directory delete mode 100644 docbook-xsl-1.75.2/.emacs.el delete mode 100644 docbook-xsl-1.75.2/.profile.incl delete mode 100644 docbook-xsl-1.75.2/.urilist delete mode 100644 docbook-xsl-1.75.2/AUTHORS delete mode 100644 docbook-xsl-1.75.2/BUGS delete mode 100644 docbook-xsl-1.75.2/COPYING delete mode 100644 docbook-xsl-1.75.2/DOCBOOK-BUILD.LOG delete mode 100644 docbook-xsl-1.75.2/INSTALL delete mode 100644 docbook-xsl-1.75.2/Makefile delete mode 100644 docbook-xsl-1.75.2/NEWS delete mode 100644 docbook-xsl-1.75.2/NEWS.html delete mode 100644 docbook-xsl-1.75.2/NEWS.xml delete mode 100644 docbook-xsl-1.75.2/README delete mode 100644 docbook-xsl-1.75.2/RELEASE-NOTES.html delete mode 100644 docbook-xsl-1.75.2/RELEASE-NOTES.txt delete mode 100644 docbook-xsl-1.75.2/RELEASE-NOTES.xml delete mode 100644 docbook-xsl-1.75.2/TODO delete mode 100644 docbook-xsl-1.75.2/VERSION delete mode 100644 docbook-xsl-1.75.2/catalog.xml delete mode 100644 docbook-xsl-1.75.2/common/af.xml delete mode 100644 docbook-xsl-1.75.2/common/am.xml delete mode 100644 docbook-xsl-1.75.2/common/ar.xml delete mode 100644 docbook-xsl-1.75.2/common/autoidx-kimber.xsl delete mode 100644 docbook-xsl-1.75.2/common/autoidx-kosek.xsl delete mode 100644 docbook-xsl-1.75.2/common/az.xml delete mode 100644 docbook-xsl-1.75.2/common/bg.xml delete mode 100644 docbook-xsl-1.75.2/common/bn.xml delete mode 100644 docbook-xsl-1.75.2/common/bs.xml delete mode 100644 docbook-xsl-1.75.2/common/ca.xml delete mode 100644 docbook-xsl-1.75.2/common/charmap.xml delete mode 100644 docbook-xsl-1.75.2/common/charmap.xsl delete mode 100644 docbook-xsl-1.75.2/common/common.xml delete mode 100644 docbook-xsl-1.75.2/common/common.xsl delete mode 100644 docbook-xsl-1.75.2/common/cs.xml delete mode 100644 docbook-xsl-1.75.2/common/cy.xml delete mode 100644 docbook-xsl-1.75.2/common/da.xml delete mode 100644 docbook-xsl-1.75.2/common/de.xml delete mode 100644 docbook-xsl-1.75.2/common/el.xml delete mode 100644 docbook-xsl-1.75.2/common/en.xml delete mode 100644 docbook-xsl-1.75.2/common/entities.ent delete mode 100644 docbook-xsl-1.75.2/common/eo.xml delete mode 100644 docbook-xsl-1.75.2/common/es.xml delete mode 100644 docbook-xsl-1.75.2/common/et.xml delete mode 100644 docbook-xsl-1.75.2/common/eu.xml delete mode 100644 docbook-xsl-1.75.2/common/fa.xml delete mode 100644 docbook-xsl-1.75.2/common/fi.xml delete mode 100644 docbook-xsl-1.75.2/common/fr.xml delete mode 100644 docbook-xsl-1.75.2/common/ga.xml delete mode 100644 docbook-xsl-1.75.2/common/gentext.xsl delete mode 100644 docbook-xsl-1.75.2/common/gl.xml delete mode 100644 docbook-xsl-1.75.2/common/gu.xml delete mode 100644 docbook-xsl-1.75.2/common/he.xml delete mode 100644 docbook-xsl-1.75.2/common/hi.xml delete mode 100644 docbook-xsl-1.75.2/common/hr.xml delete mode 100644 docbook-xsl-1.75.2/common/hu.xml delete mode 100644 docbook-xsl-1.75.2/common/id.xml delete mode 100644 docbook-xsl-1.75.2/common/insertfile.xsl delete mode 100644 docbook-xsl-1.75.2/common/is.xml delete mode 100644 docbook-xsl-1.75.2/common/it.xml delete mode 100644 docbook-xsl-1.75.2/common/ja.xml delete mode 100644 docbook-xsl-1.75.2/common/kn.xml delete mode 100644 docbook-xsl-1.75.2/common/ko.xml delete mode 100644 docbook-xsl-1.75.2/common/ky.xml delete mode 100644 docbook-xsl-1.75.2/common/l10n.dtd delete mode 100644 docbook-xsl-1.75.2/common/l10n.xml delete mode 100644 docbook-xsl-1.75.2/common/l10n.xsl delete mode 100644 docbook-xsl-1.75.2/common/la.xml delete mode 100644 docbook-xsl-1.75.2/common/labels.xsl delete mode 100644 docbook-xsl-1.75.2/common/lt.xml delete mode 100644 docbook-xsl-1.75.2/common/lv.xml delete mode 100644 docbook-xsl-1.75.2/common/mn.xml delete mode 100644 docbook-xsl-1.75.2/common/nb.xml delete mode 100644 docbook-xsl-1.75.2/common/nl.xml delete mode 100644 docbook-xsl-1.75.2/common/nn.xml delete mode 100644 docbook-xsl-1.75.2/common/olink.xsl delete mode 100644 docbook-xsl-1.75.2/common/or.xml delete mode 100644 docbook-xsl-1.75.2/common/pa.xml delete mode 100644 docbook-xsl-1.75.2/common/pi.xml delete mode 100644 docbook-xsl-1.75.2/common/pi.xsl delete mode 100644 docbook-xsl-1.75.2/common/pl.xml delete mode 100644 docbook-xsl-1.75.2/common/pt.xml delete mode 100644 docbook-xsl-1.75.2/common/pt_br.xml delete mode 100644 docbook-xsl-1.75.2/common/refentry.xml delete mode 100644 docbook-xsl-1.75.2/common/refentry.xsl delete mode 100644 docbook-xsl-1.75.2/common/ro.xml delete mode 100644 docbook-xsl-1.75.2/common/ru.xml delete mode 100644 docbook-xsl-1.75.2/common/sk.xml delete mode 100644 docbook-xsl-1.75.2/common/sl.xml delete mode 100644 docbook-xsl-1.75.2/common/sq.xml delete mode 100644 docbook-xsl-1.75.2/common/sr.xml delete mode 100644 docbook-xsl-1.75.2/common/sr_Latn.xml delete mode 100644 docbook-xsl-1.75.2/common/stripns.xsl delete mode 100644 docbook-xsl-1.75.2/common/subtitles.xsl delete mode 100644 docbook-xsl-1.75.2/common/sv.xml delete mode 100644 docbook-xsl-1.75.2/common/ta.xml delete mode 100644 docbook-xsl-1.75.2/common/table.xsl delete mode 100644 docbook-xsl-1.75.2/common/targetdatabase.dtd delete mode 100644 docbook-xsl-1.75.2/common/targets.xsl delete mode 100644 docbook-xsl-1.75.2/common/th.xml delete mode 100644 docbook-xsl-1.75.2/common/titles.xsl delete mode 100644 docbook-xsl-1.75.2/common/tl.xml delete mode 100644 docbook-xsl-1.75.2/common/tr.xml delete mode 100644 docbook-xsl-1.75.2/common/uk.xml delete mode 100644 docbook-xsl-1.75.2/common/utility.xml delete mode 100644 docbook-xsl-1.75.2/common/utility.xsl delete mode 100644 docbook-xsl-1.75.2/common/vi.xml delete mode 100644 docbook-xsl-1.75.2/common/xh.xml delete mode 100644 docbook-xsl-1.75.2/common/zh.xml delete mode 100644 docbook-xsl-1.75.2/common/zh_cn.xml delete mode 100644 docbook-xsl-1.75.2/common/zh_tw.xml delete mode 100644 docbook-xsl-1.75.2/docsrc/authors.xml delete mode 100644 docbook-xsl-1.75.2/docsrc/copyright.xml delete mode 100644 docbook-xsl-1.75.2/docsrc/license.xml delete mode 100644 docbook-xsl-1.75.2/docsrc/page.png delete mode 100644 docbook-xsl-1.75.2/docsrc/reference.css delete mode 100644 docbook-xsl-1.75.2/docsrc/reference.xml delete mode 100644 docbook-xsl-1.75.2/docsrc/reference.xml.included delete mode 100644 docbook-xsl-1.75.2/docsrc/warranty.xml delete mode 100644 docbook-xsl-1.75.2/eclipse/eclipse.xsl delete mode 100644 docbook-xsl-1.75.2/eclipse/profile-eclipse.xsl delete mode 100644 docbook-xsl-1.75.2/epub/README delete mode 100644 docbook-xsl-1.75.2/epub/bin/dbtoepub delete mode 100644 docbook-xsl-1.75.2/epub/bin/lib/docbook.rb delete mode 100644 docbook-xsl-1.75.2/epub/docbook.xsl delete mode 100644 docbook-xsl-1.75.2/extensions/README.LIBXSLT delete mode 100644 docbook-xsl-1.75.2/extensions/docbook.py delete mode 100644 docbook-xsl-1.75.2/extensions/saxon65.jar delete mode 100644 docbook-xsl-1.75.2/extensions/xalan27.jar delete mode 100644 docbook-xsl-1.75.2/extensions/xslt.py delete mode 100644 docbook-xsl-1.75.2/fo/admon.xsl delete mode 100644 docbook-xsl-1.75.2/fo/annotations.xsl delete mode 100644 docbook-xsl-1.75.2/fo/autoidx-kimber.xsl delete mode 100644 docbook-xsl-1.75.2/fo/autoidx-kosek.xsl delete mode 100644 docbook-xsl-1.75.2/fo/autoidx-ng.xsl delete mode 100644 docbook-xsl-1.75.2/fo/autoidx.xsl delete mode 100644 docbook-xsl-1.75.2/fo/autotoc.xsl delete mode 100644 docbook-xsl-1.75.2/fo/axf.xsl delete mode 100644 docbook-xsl-1.75.2/fo/biblio-iso690.xsl delete mode 100644 docbook-xsl-1.75.2/fo/biblio.xsl delete mode 100644 docbook-xsl-1.75.2/fo/block.xsl delete mode 100644 docbook-xsl-1.75.2/fo/callout.xsl delete mode 100644 docbook-xsl-1.75.2/fo/component.xsl delete mode 100644 docbook-xsl-1.75.2/fo/division.xsl delete mode 100644 docbook-xsl-1.75.2/fo/docbook.xsl delete mode 100644 docbook-xsl-1.75.2/fo/ebnf.xsl delete mode 100644 docbook-xsl-1.75.2/fo/fo-rtf.xsl delete mode 100644 docbook-xsl-1.75.2/fo/fo.xsl delete mode 100644 docbook-xsl-1.75.2/fo/footnote.xsl delete mode 100644 docbook-xsl-1.75.2/fo/fop.xsl delete mode 100644 docbook-xsl-1.75.2/fo/fop1.xsl delete mode 100644 docbook-xsl-1.75.2/fo/formal.xsl delete mode 100644 docbook-xsl-1.75.2/fo/glossary.xsl delete mode 100644 docbook-xsl-1.75.2/fo/graphics.xsl delete mode 100644 docbook-xsl-1.75.2/fo/highlight.xsl delete mode 100644 docbook-xsl-1.75.2/fo/htmltbl.xsl delete mode 100644 docbook-xsl-1.75.2/fo/index.xsl delete mode 100644 docbook-xsl-1.75.2/fo/info.xsl delete mode 100644 docbook-xsl-1.75.2/fo/inline.xsl delete mode 100644 docbook-xsl-1.75.2/fo/keywords.xsl delete mode 100644 docbook-xsl-1.75.2/fo/lists.xsl delete mode 100644 docbook-xsl-1.75.2/fo/math.xsl delete mode 100644 docbook-xsl-1.75.2/fo/pagesetup.xsl delete mode 100644 docbook-xsl-1.75.2/fo/param.xml delete mode 100644 docbook-xsl-1.75.2/fo/param.xsl delete mode 100644 docbook-xsl-1.75.2/fo/passivetex.xsl delete mode 100644 docbook-xsl-1.75.2/fo/pdf2index delete mode 100644 docbook-xsl-1.75.2/fo/pi.xml delete mode 100644 docbook-xsl-1.75.2/fo/pi.xsl delete mode 100644 docbook-xsl-1.75.2/fo/profile-docbook.xsl delete mode 100644 docbook-xsl-1.75.2/fo/ptc.xsl delete mode 100644 docbook-xsl-1.75.2/fo/qandaset.xsl delete mode 100644 docbook-xsl-1.75.2/fo/refentry.xsl delete mode 100644 docbook-xsl-1.75.2/fo/sections.xsl delete mode 100644 docbook-xsl-1.75.2/fo/spaces.xsl delete mode 100644 docbook-xsl-1.75.2/fo/synop.xsl delete mode 100644 docbook-xsl-1.75.2/fo/table.xml delete mode 100644 docbook-xsl-1.75.2/fo/table.xsl delete mode 100644 docbook-xsl-1.75.2/fo/task.xsl delete mode 100644 docbook-xsl-1.75.2/fo/titlepage.templates.xml delete mode 100644 docbook-xsl-1.75.2/fo/titlepage.templates.xsl delete mode 100644 docbook-xsl-1.75.2/fo/titlepage.xsl delete mode 100644 docbook-xsl-1.75.2/fo/toc.xsl delete mode 100644 docbook-xsl-1.75.2/fo/verbatim.xsl delete mode 100644 docbook-xsl-1.75.2/fo/xep.xsl delete mode 100644 docbook-xsl-1.75.2/fo/xref.xsl delete mode 100644 docbook-xsl-1.75.2/highlighting/README delete mode 100644 docbook-xsl-1.75.2/highlighting/c-hl.xml delete mode 100644 docbook-xsl-1.75.2/highlighting/common.xsl delete mode 100644 docbook-xsl-1.75.2/highlighting/cpp-hl.xml delete mode 100644 docbook-xsl-1.75.2/highlighting/csharp-hl.xml delete mode 100644 docbook-xsl-1.75.2/highlighting/delphi-hl.xml delete mode 100644 docbook-xsl-1.75.2/highlighting/ini-hl.xml delete mode 100644 docbook-xsl-1.75.2/highlighting/java-hl.xml delete mode 100644 docbook-xsl-1.75.2/highlighting/javascript-hl.xml delete mode 100644 docbook-xsl-1.75.2/highlighting/m2-hl.xml delete mode 100644 docbook-xsl-1.75.2/highlighting/myxml-hl.xml delete mode 100644 docbook-xsl-1.75.2/highlighting/perl-hl.xml delete mode 100644 docbook-xsl-1.75.2/highlighting/php-hl.xml delete mode 100644 docbook-xsl-1.75.2/highlighting/python-hl.xml delete mode 100644 docbook-xsl-1.75.2/highlighting/ruby-hl.xml delete mode 100644 docbook-xsl-1.75.2/highlighting/tcl-hl.xml delete mode 100644 docbook-xsl-1.75.2/highlighting/xslthl-config.xml delete mode 100644 docbook-xsl-1.75.2/html/admon.xsl delete mode 100644 docbook-xsl-1.75.2/html/annotations.xsl delete mode 100644 docbook-xsl-1.75.2/html/autoidx-kimber.xsl delete mode 100644 docbook-xsl-1.75.2/html/autoidx-kosek.xsl delete mode 100644 docbook-xsl-1.75.2/html/autoidx-ng.xsl delete mode 100644 docbook-xsl-1.75.2/html/autoidx.xsl delete mode 100644 docbook-xsl-1.75.2/html/autotoc.xsl delete mode 100644 docbook-xsl-1.75.2/html/biblio-iso690.xsl delete mode 100644 docbook-xsl-1.75.2/html/biblio.xsl delete mode 100644 docbook-xsl-1.75.2/html/block.xsl delete mode 100644 docbook-xsl-1.75.2/html/callout.xsl delete mode 100644 docbook-xsl-1.75.2/html/changebars.xsl delete mode 100644 docbook-xsl-1.75.2/html/chunk-changebars.xsl delete mode 100644 docbook-xsl-1.75.2/html/chunk-code.xsl delete mode 100644 docbook-xsl-1.75.2/html/chunk-common.xsl delete mode 100644 docbook-xsl-1.75.2/html/chunk.xsl delete mode 100644 docbook-xsl-1.75.2/html/chunker.xsl delete mode 100644 docbook-xsl-1.75.2/html/chunkfast.xsl delete mode 100644 docbook-xsl-1.75.2/html/chunktoc.xsl delete mode 100644 docbook-xsl-1.75.2/html/component.xsl delete mode 100644 docbook-xsl-1.75.2/html/division.xsl delete mode 100644 docbook-xsl-1.75.2/html/docbook.xsl delete mode 100644 docbook-xsl-1.75.2/html/ebnf.xsl delete mode 100644 docbook-xsl-1.75.2/html/footnote.xsl delete mode 100644 docbook-xsl-1.75.2/html/formal.xsl delete mode 100644 docbook-xsl-1.75.2/html/glossary.xsl delete mode 100644 docbook-xsl-1.75.2/html/graphics.xsl delete mode 100644 docbook-xsl-1.75.2/html/highlight.xsl delete mode 100644 docbook-xsl-1.75.2/html/html-rtf.xsl delete mode 100644 docbook-xsl-1.75.2/html/html.xsl delete mode 100644 docbook-xsl-1.75.2/html/htmltbl.xsl delete mode 100644 docbook-xsl-1.75.2/html/index.xsl delete mode 100644 docbook-xsl-1.75.2/html/info.xsl delete mode 100644 docbook-xsl-1.75.2/html/inline.xsl delete mode 100644 docbook-xsl-1.75.2/html/keywords.xsl delete mode 100644 docbook-xsl-1.75.2/html/lists.xsl delete mode 100644 docbook-xsl-1.75.2/html/maketoc.xsl delete mode 100644 docbook-xsl-1.75.2/html/manifest.xsl delete mode 100644 docbook-xsl-1.75.2/html/math.xsl delete mode 100644 docbook-xsl-1.75.2/html/oldchunker.xsl delete mode 100644 docbook-xsl-1.75.2/html/onechunk.xsl delete mode 100644 docbook-xsl-1.75.2/html/param.xml delete mode 100644 docbook-xsl-1.75.2/html/param.xsl delete mode 100644 docbook-xsl-1.75.2/html/pi.xml delete mode 100644 docbook-xsl-1.75.2/html/pi.xsl delete mode 100644 docbook-xsl-1.75.2/html/profile-chunk-code.xsl delete mode 100644 docbook-xsl-1.75.2/html/profile-chunk.xsl delete mode 100644 docbook-xsl-1.75.2/html/profile-docbook.xsl delete mode 100644 docbook-xsl-1.75.2/html/profile-onechunk.xsl delete mode 100644 docbook-xsl-1.75.2/html/qandaset.xsl delete mode 100644 docbook-xsl-1.75.2/html/refentry.xsl delete mode 100644 docbook-xsl-1.75.2/html/sections.xsl delete mode 100644 docbook-xsl-1.75.2/html/synop.xsl delete mode 100644 docbook-xsl-1.75.2/html/table.xsl delete mode 100644 docbook-xsl-1.75.2/html/task.xsl delete mode 100644 docbook-xsl-1.75.2/html/titlepage.templates.xml delete mode 100644 docbook-xsl-1.75.2/html/titlepage.templates.xsl delete mode 100644 docbook-xsl-1.75.2/html/titlepage.xsl delete mode 100644 docbook-xsl-1.75.2/html/toc.xsl delete mode 100644 docbook-xsl-1.75.2/html/verbatim.xsl delete mode 100644 docbook-xsl-1.75.2/html/xref.xsl delete mode 100644 docbook-xsl-1.75.2/htmlhelp/htmlhelp-common.xsl delete mode 100644 docbook-xsl-1.75.2/htmlhelp/htmlhelp.xsl delete mode 100644 docbook-xsl-1.75.2/htmlhelp/profile-htmlhelp-common.xsl delete mode 100644 docbook-xsl-1.75.2/htmlhelp/profile-htmlhelp.xsl delete mode 100644 docbook-xsl-1.75.2/images/annot-close.png delete mode 100644 docbook-xsl-1.75.2/images/annot-open.png delete mode 100644 docbook-xsl-1.75.2/images/blank.png delete mode 100644 docbook-xsl-1.75.2/images/callouts/1.gif delete mode 100644 docbook-xsl-1.75.2/images/callouts/1.png delete mode 100644 docbook-xsl-1.75.2/images/callouts/1.svg delete mode 100644 docbook-xsl-1.75.2/images/callouts/10.gif delete mode 100644 docbook-xsl-1.75.2/images/callouts/10.png delete mode 100644 docbook-xsl-1.75.2/images/callouts/10.svg delete mode 100644 docbook-xsl-1.75.2/images/callouts/11.gif delete mode 100644 docbook-xsl-1.75.2/images/callouts/11.png delete mode 100644 docbook-xsl-1.75.2/images/callouts/11.svg delete mode 100644 docbook-xsl-1.75.2/images/callouts/12.gif delete mode 100644 docbook-xsl-1.75.2/images/callouts/12.png delete mode 100644 docbook-xsl-1.75.2/images/callouts/12.svg delete mode 100644 docbook-xsl-1.75.2/images/callouts/13.gif delete mode 100644 docbook-xsl-1.75.2/images/callouts/13.png delete mode 100644 docbook-xsl-1.75.2/images/callouts/13.svg delete mode 100644 docbook-xsl-1.75.2/images/callouts/14.gif delete mode 100644 docbook-xsl-1.75.2/images/callouts/14.png delete mode 100644 docbook-xsl-1.75.2/images/callouts/14.svg delete mode 100644 docbook-xsl-1.75.2/images/callouts/15.gif delete mode 100644 docbook-xsl-1.75.2/images/callouts/15.png delete mode 100644 docbook-xsl-1.75.2/images/callouts/15.svg delete mode 100644 docbook-xsl-1.75.2/images/callouts/16.svg delete mode 100644 docbook-xsl-1.75.2/images/callouts/17.svg delete mode 100644 docbook-xsl-1.75.2/images/callouts/18.svg delete mode 100644 docbook-xsl-1.75.2/images/callouts/19.svg delete mode 100644 docbook-xsl-1.75.2/images/callouts/2.gif delete mode 100644 docbook-xsl-1.75.2/images/callouts/2.png delete mode 100644 docbook-xsl-1.75.2/images/callouts/2.svg delete mode 100644 docbook-xsl-1.75.2/images/callouts/20.svg delete mode 100644 docbook-xsl-1.75.2/images/callouts/21.svg delete mode 100644 docbook-xsl-1.75.2/images/callouts/22.svg delete mode 100644 docbook-xsl-1.75.2/images/callouts/23.svg delete mode 100644 docbook-xsl-1.75.2/images/callouts/24.svg delete mode 100644 docbook-xsl-1.75.2/images/callouts/25.svg delete mode 100644 docbook-xsl-1.75.2/images/callouts/26.svg delete mode 100644 docbook-xsl-1.75.2/images/callouts/27.svg delete mode 100644 docbook-xsl-1.75.2/images/callouts/28.svg delete mode 100644 docbook-xsl-1.75.2/images/callouts/29.svg delete mode 100644 docbook-xsl-1.75.2/images/callouts/3.gif delete mode 100644 docbook-xsl-1.75.2/images/callouts/3.png delete mode 100644 docbook-xsl-1.75.2/images/callouts/3.svg delete mode 100644 docbook-xsl-1.75.2/images/callouts/30.svg delete mode 100644 docbook-xsl-1.75.2/images/callouts/4.gif delete mode 100644 docbook-xsl-1.75.2/images/callouts/4.png delete mode 100644 docbook-xsl-1.75.2/images/callouts/4.svg delete mode 100644 docbook-xsl-1.75.2/images/callouts/5.gif delete mode 100644 docbook-xsl-1.75.2/images/callouts/5.png delete mode 100644 docbook-xsl-1.75.2/images/callouts/5.svg delete mode 100644 docbook-xsl-1.75.2/images/callouts/6.gif delete mode 100644 docbook-xsl-1.75.2/images/callouts/6.png delete mode 100644 docbook-xsl-1.75.2/images/callouts/6.svg delete mode 100644 docbook-xsl-1.75.2/images/callouts/7.gif delete mode 100644 docbook-xsl-1.75.2/images/callouts/7.png delete mode 100644 docbook-xsl-1.75.2/images/callouts/7.svg delete mode 100644 docbook-xsl-1.75.2/images/callouts/8.gif delete mode 100644 docbook-xsl-1.75.2/images/callouts/8.png delete mode 100644 docbook-xsl-1.75.2/images/callouts/8.svg delete mode 100644 docbook-xsl-1.75.2/images/callouts/9.gif delete mode 100644 docbook-xsl-1.75.2/images/callouts/9.png delete mode 100644 docbook-xsl-1.75.2/images/callouts/9.svg delete mode 100644 docbook-xsl-1.75.2/images/caution.gif delete mode 100644 docbook-xsl-1.75.2/images/caution.png delete mode 100644 docbook-xsl-1.75.2/images/caution.svg delete mode 100644 docbook-xsl-1.75.2/images/caution.tif delete mode 100644 docbook-xsl-1.75.2/images/colorsvg/caution.svg delete mode 100644 docbook-xsl-1.75.2/images/colorsvg/home.svg delete mode 100644 docbook-xsl-1.75.2/images/colorsvg/important.svg delete mode 100644 docbook-xsl-1.75.2/images/colorsvg/next.svg delete mode 100644 docbook-xsl-1.75.2/images/colorsvg/note.svg delete mode 100644 docbook-xsl-1.75.2/images/colorsvg/prev.svg delete mode 100644 docbook-xsl-1.75.2/images/colorsvg/tip.svg delete mode 100644 docbook-xsl-1.75.2/images/colorsvg/up.svg delete mode 100644 docbook-xsl-1.75.2/images/colorsvg/warning.svg delete mode 100644 docbook-xsl-1.75.2/images/draft.png delete mode 100644 docbook-xsl-1.75.2/images/home.gif delete mode 100644 docbook-xsl-1.75.2/images/home.png delete mode 100644 docbook-xsl-1.75.2/images/home.svg delete mode 100644 docbook-xsl-1.75.2/images/important.gif delete mode 100644 docbook-xsl-1.75.2/images/important.png delete mode 100644 docbook-xsl-1.75.2/images/important.svg delete mode 100644 docbook-xsl-1.75.2/images/important.tif delete mode 100644 docbook-xsl-1.75.2/images/next.gif delete mode 100644 docbook-xsl-1.75.2/images/next.png delete mode 100644 docbook-xsl-1.75.2/images/next.svg delete mode 100644 docbook-xsl-1.75.2/images/note.gif delete mode 100644 docbook-xsl-1.75.2/images/note.png delete mode 100644 docbook-xsl-1.75.2/images/note.svg delete mode 100644 docbook-xsl-1.75.2/images/note.tif delete mode 100644 docbook-xsl-1.75.2/images/prev.gif delete mode 100644 docbook-xsl-1.75.2/images/prev.png delete mode 100644 docbook-xsl-1.75.2/images/prev.svg delete mode 100644 docbook-xsl-1.75.2/images/tip.gif delete mode 100644 docbook-xsl-1.75.2/images/tip.png delete mode 100644 docbook-xsl-1.75.2/images/tip.svg delete mode 100644 docbook-xsl-1.75.2/images/tip.tif delete mode 100644 docbook-xsl-1.75.2/images/toc-blank.png delete mode 100644 docbook-xsl-1.75.2/images/toc-minus.png delete mode 100644 docbook-xsl-1.75.2/images/toc-plus.png delete mode 100644 docbook-xsl-1.75.2/images/up.gif delete mode 100644 docbook-xsl-1.75.2/images/up.png delete mode 100644 docbook-xsl-1.75.2/images/up.svg delete mode 100644 docbook-xsl-1.75.2/images/warning.gif delete mode 100644 docbook-xsl-1.75.2/images/warning.png delete mode 100644 docbook-xsl-1.75.2/images/warning.svg delete mode 100644 docbook-xsl-1.75.2/images/warning.tif delete mode 100644 docbook-xsl-1.75.2/install.sh delete mode 100644 docbook-xsl-1.75.2/javahelp/javahelp.xsl delete mode 100644 docbook-xsl-1.75.2/javahelp/profile-javahelp.xsl delete mode 100644 docbook-xsl-1.75.2/lib/lib.xsl delete mode 100644 docbook-xsl-1.75.2/manpages/ChangeLog.20020917 delete mode 100644 docbook-xsl-1.75.2/manpages/block.xsl delete mode 100644 docbook-xsl-1.75.2/manpages/charmap.groff.xsl delete mode 100644 docbook-xsl-1.75.2/manpages/docbook.xsl delete mode 100644 docbook-xsl-1.75.2/manpages/endnotes.xsl delete mode 100644 docbook-xsl-1.75.2/manpages/html-synop.xsl delete mode 100644 docbook-xsl-1.75.2/manpages/info.xsl delete mode 100644 docbook-xsl-1.75.2/manpages/inline.xsl delete mode 100644 docbook-xsl-1.75.2/manpages/lists.xsl delete mode 100644 docbook-xsl-1.75.2/manpages/other.xsl delete mode 100644 docbook-xsl-1.75.2/manpages/param.xml delete mode 100644 docbook-xsl-1.75.2/manpages/param.xsl delete mode 100644 docbook-xsl-1.75.2/manpages/pi.xml delete mode 100644 docbook-xsl-1.75.2/manpages/pi.xsl delete mode 100644 docbook-xsl-1.75.2/manpages/profile-docbook.xsl delete mode 100644 docbook-xsl-1.75.2/manpages/refentry.xsl delete mode 100644 docbook-xsl-1.75.2/manpages/synop.xsl delete mode 100644 docbook-xsl-1.75.2/manpages/table.xsl delete mode 100644 docbook-xsl-1.75.2/manpages/utility.xsl delete mode 100644 docbook-xsl-1.75.2/params/abstract.notitle.enabled.xml delete mode 100644 docbook-xsl-1.75.2/params/abstract.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/abstract.title.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/active.toc.xml delete mode 100644 docbook-xsl-1.75.2/params/ade.extensions.xml delete mode 100644 docbook-xsl-1.75.2/params/admon.graphics.extension.xml delete mode 100644 docbook-xsl-1.75.2/params/admon.graphics.path.xml delete mode 100644 docbook-xsl-1.75.2/params/admon.graphics.xml delete mode 100644 docbook-xsl-1.75.2/params/admon.style.xml delete mode 100644 docbook-xsl-1.75.2/params/admon.textlabel.xml delete mode 100644 docbook-xsl-1.75.2/params/admonition.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/admonition.title.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/alignment.xml delete mode 100644 docbook-xsl-1.75.2/params/annotate.toc.xml delete mode 100644 docbook-xsl-1.75.2/params/annotation.css.xml delete mode 100644 docbook-xsl-1.75.2/params/annotation.graphic.close.xml delete mode 100644 docbook-xsl-1.75.2/params/annotation.graphic.open.xml delete mode 100644 docbook-xsl-1.75.2/params/annotation.js.xml delete mode 100644 docbook-xsl-1.75.2/params/annotation.support.xml delete mode 100644 docbook-xsl-1.75.2/params/appendix.autolabel.xml delete mode 100644 docbook-xsl-1.75.2/params/arbortext.extensions.xml delete mode 100644 docbook-xsl-1.75.2/params/article.appendix.title.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/author.othername.in.middle.xml delete mode 100644 docbook-xsl-1.75.2/params/autolayout-file.xml delete mode 100644 docbook-xsl-1.75.2/params/autotoc.label.in.hyperlink.xml delete mode 100644 docbook-xsl-1.75.2/params/autotoc.label.separator.xml delete mode 100644 docbook-xsl-1.75.2/params/axf.extensions.xml delete mode 100644 docbook-xsl-1.75.2/params/banner.before.navigation.xml delete mode 100644 docbook-xsl-1.75.2/params/base.dir.xml delete mode 100644 docbook-xsl-1.75.2/params/biblioentry.item.separator.xml delete mode 100644 docbook-xsl-1.75.2/params/biblioentry.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/bibliography.collection.xml delete mode 100644 docbook-xsl-1.75.2/params/bibliography.numbered.xml delete mode 100644 docbook-xsl-1.75.2/params/bibliography.style.xml delete mode 100644 docbook-xsl-1.75.2/params/blockquote.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/blurb.on.titlepage.enabled.xml delete mode 100644 docbook-xsl-1.75.2/params/body.attributes.xml delete mode 100644 docbook-xsl-1.75.2/params/body.bg.color.xml delete mode 100644 docbook-xsl-1.75.2/params/body.end.indent.xml delete mode 100644 docbook-xsl-1.75.2/params/body.font.family.xml delete mode 100644 docbook-xsl-1.75.2/params/body.font.master.xml delete mode 100644 docbook-xsl-1.75.2/params/body.font.size.xml delete mode 100644 docbook-xsl-1.75.2/params/body.margin.bottom.xml delete mode 100644 docbook-xsl-1.75.2/params/body.margin.top.xml delete mode 100644 docbook-xsl-1.75.2/params/body.start.indent.xml delete mode 100644 docbook-xsl-1.75.2/params/bookmarks.collapse.xml delete mode 100644 docbook-xsl-1.75.2/params/bridgehead.in.toc.xml delete mode 100644 docbook-xsl-1.75.2/params/bullet.image.xml delete mode 100644 docbook-xsl-1.75.2/params/callout.defaultcolumn.xml delete mode 100644 docbook-xsl-1.75.2/params/callout.graphics.extension.xml delete mode 100644 docbook-xsl-1.75.2/params/callout.graphics.number.limit.xml delete mode 100644 docbook-xsl-1.75.2/params/callout.graphics.path.xml delete mode 100644 docbook-xsl-1.75.2/params/callout.graphics.xml delete mode 100644 docbook-xsl-1.75.2/params/callout.icon.size.xml delete mode 100644 docbook-xsl-1.75.2/params/callout.list.table.xml delete mode 100644 docbook-xsl-1.75.2/params/callout.unicode.font.xml delete mode 100644 docbook-xsl-1.75.2/params/callout.unicode.number.limit.xml delete mode 100644 docbook-xsl-1.75.2/params/callout.unicode.start.character.xml delete mode 100644 docbook-xsl-1.75.2/params/callout.unicode.xml delete mode 100644 docbook-xsl-1.75.2/params/callouts.extension.xml delete mode 100644 docbook-xsl-1.75.2/params/chapter.autolabel.xml delete mode 100644 docbook-xsl-1.75.2/params/chunk.append.xml delete mode 100644 docbook-xsl-1.75.2/params/chunk.first.sections.xml delete mode 100644 docbook-xsl-1.75.2/params/chunk.quietly.xml delete mode 100644 docbook-xsl-1.75.2/params/chunk.section.depth.xml delete mode 100644 docbook-xsl-1.75.2/params/chunk.sections.xml delete mode 100644 docbook-xsl-1.75.2/params/chunk.separate.lots.xml delete mode 100644 docbook-xsl-1.75.2/params/chunk.toc.xml delete mode 100644 docbook-xsl-1.75.2/params/chunk.tocs.and.lots.has.title.xml delete mode 100644 docbook-xsl-1.75.2/params/chunk.tocs.and.lots.xml delete mode 100644 docbook-xsl-1.75.2/params/chunker.output.cdata-section-elements.xml delete mode 100644 docbook-xsl-1.75.2/params/chunker.output.doctype-public.xml delete mode 100644 docbook-xsl-1.75.2/params/chunker.output.doctype-system.xml delete mode 100644 docbook-xsl-1.75.2/params/chunker.output.encoding.xml delete mode 100644 docbook-xsl-1.75.2/params/chunker.output.indent.xml delete mode 100644 docbook-xsl-1.75.2/params/chunker.output.media-type.xml delete mode 100644 docbook-xsl-1.75.2/params/chunker.output.method.xml delete mode 100644 docbook-xsl-1.75.2/params/chunker.output.omit-xml-declaration.xml delete mode 100644 docbook-xsl-1.75.2/params/chunker.output.standalone.xml delete mode 100644 docbook-xsl-1.75.2/params/citerefentry.link.xml delete mode 100644 docbook-xsl-1.75.2/params/collect.xref.targets.xml delete mode 100644 docbook-xsl-1.75.2/params/column.count.back.xml delete mode 100644 docbook-xsl-1.75.2/params/column.count.body.xml delete mode 100644 docbook-xsl-1.75.2/params/column.count.front.xml delete mode 100644 docbook-xsl-1.75.2/params/column.count.index.xml delete mode 100644 docbook-xsl-1.75.2/params/column.count.lot.xml delete mode 100644 docbook-xsl-1.75.2/params/column.count.titlepage.xml delete mode 100644 docbook-xsl-1.75.2/params/column.gap.back.xml delete mode 100644 docbook-xsl-1.75.2/params/column.gap.body.xml delete mode 100644 docbook-xsl-1.75.2/params/column.gap.front.xml delete mode 100644 docbook-xsl-1.75.2/params/column.gap.index.xml delete mode 100644 docbook-xsl-1.75.2/params/column.gap.lot.xml delete mode 100644 docbook-xsl-1.75.2/params/column.gap.titlepage.xml delete mode 100644 docbook-xsl-1.75.2/params/compact.list.item.spacing.xml delete mode 100644 docbook-xsl-1.75.2/params/component.label.includes.part.label.xml delete mode 100644 docbook-xsl-1.75.2/params/component.title.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/component.titlepage.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/contrib.inline.enabled.xml delete mode 100644 docbook-xsl-1.75.2/params/crop.mark.bleed.xml delete mode 100644 docbook-xsl-1.75.2/params/crop.mark.offset.xml delete mode 100644 docbook-xsl-1.75.2/params/crop.mark.width.xml delete mode 100644 docbook-xsl-1.75.2/params/crop.marks.xml delete mode 100644 docbook-xsl-1.75.2/params/css.decoration.xml delete mode 100644 docbook-xsl-1.75.2/params/css.stylesheet.dir.xml delete mode 100644 docbook-xsl-1.75.2/params/css.stylesheet.xml delete mode 100644 docbook-xsl-1.75.2/params/current.docid.xml delete mode 100644 docbook-xsl-1.75.2/params/currentpage.marker.xml delete mode 100644 docbook-xsl-1.75.2/params/default.float.class.xml delete mode 100644 docbook-xsl-1.75.2/params/default.image.width.xml delete mode 100644 docbook-xsl-1.75.2/params/default.table.frame.xml delete mode 100644 docbook-xsl-1.75.2/params/default.table.rules.xml delete mode 100644 docbook-xsl-1.75.2/params/default.table.width.xml delete mode 100644 docbook-xsl-1.75.2/params/default.units.xml delete mode 100644 docbook-xsl-1.75.2/params/dingbat.font.family.xml delete mode 100644 docbook-xsl-1.75.2/params/double.sided.xml delete mode 100644 docbook-xsl-1.75.2/params/draft.mode.xml delete mode 100644 docbook-xsl-1.75.2/params/draft.watermark.image.xml delete mode 100644 docbook-xsl-1.75.2/params/dry-run.xml delete mode 100644 docbook-xsl-1.75.2/params/dynamic.toc.xml delete mode 100644 docbook-xsl-1.75.2/params/ebnf.assignment.xml delete mode 100644 docbook-xsl-1.75.2/params/ebnf.statement.terminator.xml delete mode 100644 docbook-xsl-1.75.2/params/ebnf.table.bgcolor.xml delete mode 100644 docbook-xsl-1.75.2/params/ebnf.table.border.xml delete mode 100644 docbook-xsl-1.75.2/params/eclipse.autolabel.xml delete mode 100644 docbook-xsl-1.75.2/params/eclipse.plugin.id.xml delete mode 100644 docbook-xsl-1.75.2/params/eclipse.plugin.name.xml delete mode 100644 docbook-xsl-1.75.2/params/eclipse.plugin.provider.xml delete mode 100644 docbook-xsl-1.75.2/params/editedby.enabled.xml delete mode 100644 docbook-xsl-1.75.2/params/email.delimiters.enabled.xml delete mode 100644 docbook-xsl-1.75.2/params/email.mailto.enabled.xml delete mode 100644 docbook-xsl-1.75.2/params/emphasis.propagates.style.xml delete mode 100644 docbook-xsl-1.75.2/params/entry.propagates.style.xml delete mode 100644 docbook-xsl-1.75.2/params/epub.autolabel.xml delete mode 100644 docbook-xsl-1.75.2/params/equation.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/example.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/exsl.node.set.available.xml delete mode 100644 docbook-xsl-1.75.2/params/feedback.href.xml delete mode 100644 docbook-xsl-1.75.2/params/feedback.link.text.xml delete mode 100644 docbook-xsl-1.75.2/params/feedback.with.ids.xml delete mode 100644 docbook-xsl-1.75.2/params/figure.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/filename-prefix.xml delete mode 100644 docbook-xsl-1.75.2/params/firstterm.only.link.xml delete mode 100644 docbook-xsl-1.75.2/params/foil.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/foil.subtitle.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/foil.title.master.xml delete mode 100644 docbook-xsl-1.75.2/params/foil.title.size.xml delete mode 100644 docbook-xsl-1.75.2/params/foilgroup.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/foilgroup.toc.xml delete mode 100644 docbook-xsl-1.75.2/params/footer.column.widths.xml delete mode 100644 docbook-xsl-1.75.2/params/footer.content.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/footer.hr.xml delete mode 100644 docbook-xsl-1.75.2/params/footer.rule.xml delete mode 100644 docbook-xsl-1.75.2/params/footer.table.height.xml delete mode 100644 docbook-xsl-1.75.2/params/footer.table.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/footers.on.blank.pages.xml delete mode 100644 docbook-xsl-1.75.2/params/footnote.font.size.xml delete mode 100644 docbook-xsl-1.75.2/params/footnote.mark.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/footnote.number.format.xml delete mode 100644 docbook-xsl-1.75.2/params/footnote.number.symbols.xml delete mode 100644 docbook-xsl-1.75.2/params/footnote.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/footnote.sep.leader.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/fop.extensions.xml delete mode 100644 docbook-xsl-1.75.2/params/fop1.extensions.xml delete mode 100644 docbook-xsl-1.75.2/params/formal.object.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/formal.procedures.xml delete mode 100644 docbook-xsl-1.75.2/params/formal.title.placement.xml delete mode 100644 docbook-xsl-1.75.2/params/formal.title.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/funcsynopsis.decoration.xml delete mode 100644 docbook-xsl-1.75.2/params/funcsynopsis.style.xml delete mode 100644 docbook-xsl-1.75.2/params/function.parens.xml delete mode 100644 docbook-xsl-1.75.2/params/generate.id.attributes.xml delete mode 100644 docbook-xsl-1.75.2/params/generate.index.xml delete mode 100644 docbook-xsl-1.75.2/params/generate.legalnotice.link.xml delete mode 100644 docbook-xsl-1.75.2/params/generate.manifest.xml delete mode 100644 docbook-xsl-1.75.2/params/generate.meta.abstract.xml delete mode 100644 docbook-xsl-1.75.2/params/generate.revhistory.link.xml delete mode 100644 docbook-xsl-1.75.2/params/generate.section.toc.level.xml delete mode 100644 docbook-xsl-1.75.2/params/generate.toc.xml delete mode 100644 docbook-xsl-1.75.2/params/glossary.as.blocks.xml delete mode 100644 docbook-xsl-1.75.2/params/glossary.collection.xml delete mode 100644 docbook-xsl-1.75.2/params/glossary.sort.xml delete mode 100644 docbook-xsl-1.75.2/params/glossdef.block.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/glossdef.list.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/glossentry.list.item.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/glossentry.show.acronym.xml delete mode 100644 docbook-xsl-1.75.2/params/glosslist.as.blocks.xml delete mode 100644 docbook-xsl-1.75.2/params/glossterm.auto.link.xml delete mode 100644 docbook-xsl-1.75.2/params/glossterm.block.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/glossterm.list.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/glossterm.separation.xml delete mode 100644 docbook-xsl-1.75.2/params/glossterm.width.xml delete mode 100644 docbook-xsl-1.75.2/params/graphic.default.extension.xml delete mode 100644 docbook-xsl-1.75.2/params/graphical.admonition.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/graphics.dir.xml delete mode 100644 docbook-xsl-1.75.2/params/graphicsize.extension.xml delete mode 100644 docbook-xsl-1.75.2/params/graphicsize.use.img.src.path.xml delete mode 100644 docbook-xsl-1.75.2/params/header.column.widths.xml delete mode 100644 docbook-xsl-1.75.2/params/header.content.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/header.hr.xml delete mode 100644 docbook-xsl-1.75.2/params/header.rule.xml delete mode 100644 docbook-xsl-1.75.2/params/header.table.height.xml delete mode 100644 docbook-xsl-1.75.2/params/header.table.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/headers.on.blank.pages.xml delete mode 100644 docbook-xsl-1.75.2/params/hidetoc.image.xml delete mode 100644 docbook-xsl-1.75.2/params/highlight.default.language.xml delete mode 100644 docbook-xsl-1.75.2/params/highlight.source.xml delete mode 100644 docbook-xsl-1.75.2/params/highlight.xslthl.config.xml delete mode 100644 docbook-xsl-1.75.2/params/home.image.xml delete mode 100644 docbook-xsl-1.75.2/params/html.append.xml delete mode 100644 docbook-xsl-1.75.2/params/html.base.xml delete mode 100644 docbook-xsl-1.75.2/params/html.cellpadding.xml delete mode 100644 docbook-xsl-1.75.2/params/html.cellspacing.xml delete mode 100644 docbook-xsl-1.75.2/params/html.cleanup.xml delete mode 100644 docbook-xsl-1.75.2/params/html.ext.xml delete mode 100644 docbook-xsl-1.75.2/params/html.extra.head.links.xml delete mode 100644 docbook-xsl-1.75.2/params/html.head.legalnotice.link.multiple.xml delete mode 100644 docbook-xsl-1.75.2/params/html.head.legalnotice.link.types.xml delete mode 100644 docbook-xsl-1.75.2/params/html.longdesc.link.xml delete mode 100644 docbook-xsl-1.75.2/params/html.longdesc.xml delete mode 100644 docbook-xsl-1.75.2/params/html.stylesheet.type.xml delete mode 100644 docbook-xsl-1.75.2/params/html.stylesheet.xml delete mode 100644 docbook-xsl-1.75.2/params/htmlhelp.alias.file.xml delete mode 100644 docbook-xsl-1.75.2/params/htmlhelp.autolabel.xml delete mode 100644 docbook-xsl-1.75.2/params/htmlhelp.button.back.xml delete mode 100644 docbook-xsl-1.75.2/params/htmlhelp.button.forward.xml delete mode 100644 docbook-xsl-1.75.2/params/htmlhelp.button.hideshow.xml delete mode 100644 docbook-xsl-1.75.2/params/htmlhelp.button.home.url.xml delete mode 100644 docbook-xsl-1.75.2/params/htmlhelp.button.home.xml delete mode 100644 docbook-xsl-1.75.2/params/htmlhelp.button.jump1.title.xml delete mode 100644 docbook-xsl-1.75.2/params/htmlhelp.button.jump1.url.xml delete mode 100644 docbook-xsl-1.75.2/params/htmlhelp.button.jump1.xml delete mode 100644 docbook-xsl-1.75.2/params/htmlhelp.button.jump2.title.xml delete mode 100644 docbook-xsl-1.75.2/params/htmlhelp.button.jump2.url.xml delete mode 100644 docbook-xsl-1.75.2/params/htmlhelp.button.jump2.xml delete mode 100644 docbook-xsl-1.75.2/params/htmlhelp.button.locate.xml delete mode 100644 docbook-xsl-1.75.2/params/htmlhelp.button.next.xml delete mode 100644 docbook-xsl-1.75.2/params/htmlhelp.button.options.xml delete mode 100644 docbook-xsl-1.75.2/params/htmlhelp.button.prev.xml delete mode 100644 docbook-xsl-1.75.2/params/htmlhelp.button.print.xml delete mode 100644 docbook-xsl-1.75.2/params/htmlhelp.button.refresh.xml delete mode 100644 docbook-xsl-1.75.2/params/htmlhelp.button.stop.xml delete mode 100644 docbook-xsl-1.75.2/params/htmlhelp.button.zoom.xml delete mode 100644 docbook-xsl-1.75.2/params/htmlhelp.chm.xml delete mode 100644 docbook-xsl-1.75.2/params/htmlhelp.default.topic.xml delete mode 100644 docbook-xsl-1.75.2/params/htmlhelp.display.progress.xml delete mode 100644 docbook-xsl-1.75.2/params/htmlhelp.encoding.xml delete mode 100644 docbook-xsl-1.75.2/params/htmlhelp.enhanced.decompilation.xml delete mode 100644 docbook-xsl-1.75.2/params/htmlhelp.enumerate.images.xml delete mode 100644 docbook-xsl-1.75.2/params/htmlhelp.force.map.and.alias.xml delete mode 100644 docbook-xsl-1.75.2/params/htmlhelp.hhc.binary.xml delete mode 100644 docbook-xsl-1.75.2/params/htmlhelp.hhc.folders.instead.books.xml delete mode 100644 docbook-xsl-1.75.2/params/htmlhelp.hhc.section.depth.xml delete mode 100644 docbook-xsl-1.75.2/params/htmlhelp.hhc.show.root.xml delete mode 100644 docbook-xsl-1.75.2/params/htmlhelp.hhc.width.xml delete mode 100644 docbook-xsl-1.75.2/params/htmlhelp.hhc.xml delete mode 100644 docbook-xsl-1.75.2/params/htmlhelp.hhk.xml delete mode 100644 docbook-xsl-1.75.2/params/htmlhelp.hhp.tail.xml delete mode 100644 docbook-xsl-1.75.2/params/htmlhelp.hhp.window.xml delete mode 100644 docbook-xsl-1.75.2/params/htmlhelp.hhp.windows.xml delete mode 100644 docbook-xsl-1.75.2/params/htmlhelp.hhp.xml delete mode 100644 docbook-xsl-1.75.2/params/htmlhelp.map.file.xml delete mode 100644 docbook-xsl-1.75.2/params/htmlhelp.only.xml delete mode 100644 docbook-xsl-1.75.2/params/htmlhelp.remember.window.position.xml delete mode 100644 docbook-xsl-1.75.2/params/htmlhelp.show.advanced.search.xml delete mode 100644 docbook-xsl-1.75.2/params/htmlhelp.show.favorities.xml delete mode 100644 docbook-xsl-1.75.2/params/htmlhelp.show.menu.xml delete mode 100644 docbook-xsl-1.75.2/params/htmlhelp.show.toolbar.text.xml delete mode 100644 docbook-xsl-1.75.2/params/htmlhelp.title.xml delete mode 100644 docbook-xsl-1.75.2/params/htmlhelp.use.hhk.xml delete mode 100644 docbook-xsl-1.75.2/params/htmlhelp.window.geometry.xml delete mode 100644 docbook-xsl-1.75.2/params/hyphenate.verbatim.characters.xml delete mode 100644 docbook-xsl-1.75.2/params/hyphenate.verbatim.xml delete mode 100644 docbook-xsl-1.75.2/params/hyphenate.xml delete mode 100644 docbook-xsl-1.75.2/params/id.warnings.xml delete mode 100644 docbook-xsl-1.75.2/params/ignore.image.scaling.xml delete mode 100644 docbook-xsl-1.75.2/params/img.src.path.xml delete mode 100644 docbook-xsl-1.75.2/params/index.div.title.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/index.entry.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/index.links.to.section.xml delete mode 100644 docbook-xsl-1.75.2/params/index.method.xml delete mode 100644 docbook-xsl-1.75.2/params/index.number.separator.xml delete mode 100644 docbook-xsl-1.75.2/params/index.on.role.xml delete mode 100644 docbook-xsl-1.75.2/params/index.on.type.xml delete mode 100644 docbook-xsl-1.75.2/params/index.page.number.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/index.prefer.titleabbrev.xml delete mode 100644 docbook-xsl-1.75.2/params/index.preferred.page.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/index.range.separator.xml delete mode 100644 docbook-xsl-1.75.2/params/index.term.separator.xml delete mode 100644 docbook-xsl-1.75.2/params/informal.object.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/informalequation.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/informalexample.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/informalfigure.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/informaltable.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/inherit.keywords.xml delete mode 100644 docbook-xsl-1.75.2/params/insert.link.page.number.xml delete mode 100644 docbook-xsl-1.75.2/params/insert.olink.page.number.xml delete mode 100644 docbook-xsl-1.75.2/params/insert.olink.pdf.frag.xml delete mode 100644 docbook-xsl-1.75.2/params/insert.xref.page.number.xml delete mode 100644 docbook-xsl-1.75.2/params/itemizedlist.label.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/itemizedlist.label.width.xml delete mode 100644 docbook-xsl-1.75.2/params/itemizedlist.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/javahelp.encoding.xml delete mode 100644 docbook-xsl-1.75.2/params/keep.relative.image.uris.xml delete mode 100644 docbook-xsl-1.75.2/params/keyboard.nav.xml delete mode 100644 docbook-xsl-1.75.2/params/l10n.gentext.default.language.xml delete mode 100644 docbook-xsl-1.75.2/params/l10n.gentext.language.xml delete mode 100644 docbook-xsl-1.75.2/params/l10n.gentext.use.xref.language.xml delete mode 100644 docbook-xsl-1.75.2/params/l10n.lang.value.rfc.compliant.xml delete mode 100644 docbook-xsl-1.75.2/params/label.from.part.xml delete mode 100644 docbook-xsl-1.75.2/params/line-height.xml delete mode 100644 docbook-xsl-1.75.2/params/linenumbering.everyNth.xml delete mode 100644 docbook-xsl-1.75.2/params/linenumbering.extension.xml delete mode 100644 docbook-xsl-1.75.2/params/linenumbering.separator.xml delete mode 100644 docbook-xsl-1.75.2/params/linenumbering.width.xml delete mode 100644 docbook-xsl-1.75.2/params/link.mailto.url.xml delete mode 100644 docbook-xsl-1.75.2/params/list.block.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/list.block.spacing.xml delete mode 100644 docbook-xsl-1.75.2/params/list.item.spacing.xml delete mode 100644 docbook-xsl-1.75.2/params/make.graphic.viewport.xml delete mode 100644 docbook-xsl-1.75.2/params/make.index.markup.xml delete mode 100644 docbook-xsl-1.75.2/params/make.single.year.ranges.xml delete mode 100644 docbook-xsl-1.75.2/params/make.valid.html.xml delete mode 100644 docbook-xsl-1.75.2/params/make.year.ranges.xml delete mode 100644 docbook-xsl-1.75.2/params/man.authors.section.enabled.xml delete mode 100644 docbook-xsl-1.75.2/params/man.base.url.for.relative.links.xml delete mode 100644 docbook-xsl-1.75.2/params/man.break.after.slash.xml delete mode 100644 docbook-xsl-1.75.2/params/man.charmap.enabled.xml delete mode 100644 docbook-xsl-1.75.2/params/man.charmap.subset.profile.english.xml delete mode 100644 docbook-xsl-1.75.2/params/man.charmap.subset.profile.xml delete mode 100644 docbook-xsl-1.75.2/params/man.charmap.uri.xml delete mode 100644 docbook-xsl-1.75.2/params/man.charmap.use.subset.xml delete mode 100644 docbook-xsl-1.75.2/params/man.copyright.section.enabled.xml delete mode 100644 docbook-xsl-1.75.2/params/man.endnotes.are.numbered.xml delete mode 100644 docbook-xsl-1.75.2/params/man.endnotes.list.enabled.xml delete mode 100644 docbook-xsl-1.75.2/params/man.endnotes.list.heading.xml delete mode 100644 docbook-xsl-1.75.2/params/man.font.funcprototype.xml delete mode 100644 docbook-xsl-1.75.2/params/man.font.funcsynopsisinfo.xml delete mode 100644 docbook-xsl-1.75.2/params/man.font.links.xml delete mode 100644 docbook-xsl-1.75.2/params/man.font.table.headings.xml delete mode 100644 docbook-xsl-1.75.2/params/man.font.table.title.xml delete mode 100644 docbook-xsl-1.75.2/params/man.funcsynopsis.style.xml delete mode 100644 docbook-xsl-1.75.2/params/man.hyphenate.computer.inlines.xml delete mode 100644 docbook-xsl-1.75.2/params/man.hyphenate.filenames.xml delete mode 100644 docbook-xsl-1.75.2/params/man.hyphenate.urls.xml delete mode 100644 docbook-xsl-1.75.2/params/man.hyphenate.xml delete mode 100644 docbook-xsl-1.75.2/params/man.indent.blurbs.xml delete mode 100644 docbook-xsl-1.75.2/params/man.indent.lists.xml delete mode 100644 docbook-xsl-1.75.2/params/man.indent.refsect.xml delete mode 100644 docbook-xsl-1.75.2/params/man.indent.verbatims.xml delete mode 100644 docbook-xsl-1.75.2/params/man.indent.width.xml delete mode 100644 docbook-xsl-1.75.2/params/man.justify.xml delete mode 100644 docbook-xsl-1.75.2/params/man.output.base.dir.xml delete mode 100644 docbook-xsl-1.75.2/params/man.output.better.ps.enabled.xml delete mode 100644 docbook-xsl-1.75.2/params/man.output.encoding.xml delete mode 100644 docbook-xsl-1.75.2/params/man.output.in.separate.dir.xml delete mode 100644 docbook-xsl-1.75.2/params/man.output.lang.in.name.enabled.xml delete mode 100644 docbook-xsl-1.75.2/params/man.output.manifest.enabled.xml delete mode 100644 docbook-xsl-1.75.2/params/man.output.manifest.filename.xml delete mode 100644 docbook-xsl-1.75.2/params/man.output.quietly.xml delete mode 100644 docbook-xsl-1.75.2/params/man.output.subdirs.enabled.xml delete mode 100644 docbook-xsl-1.75.2/params/man.segtitle.suppress.xml delete mode 100644 docbook-xsl-1.75.2/params/man.string.subst.map.local.post.xml delete mode 100644 docbook-xsl-1.75.2/params/man.string.subst.map.local.pre.xml delete mode 100644 docbook-xsl-1.75.2/params/man.string.subst.map.xml delete mode 100644 docbook-xsl-1.75.2/params/man.subheading.divider.enabled.xml delete mode 100644 docbook-xsl-1.75.2/params/man.subheading.divider.xml delete mode 100644 docbook-xsl-1.75.2/params/man.table.footnotes.divider.xml delete mode 100644 docbook-xsl-1.75.2/params/man.th.extra1.suppress.xml delete mode 100644 docbook-xsl-1.75.2/params/man.th.extra2.max.length.xml delete mode 100644 docbook-xsl-1.75.2/params/man.th.extra2.suppress.xml delete mode 100644 docbook-xsl-1.75.2/params/man.th.extra3.max.length.xml delete mode 100644 docbook-xsl-1.75.2/params/man.th.extra3.suppress.xml delete mode 100644 docbook-xsl-1.75.2/params/man.th.title.max.length.xml delete mode 100644 docbook-xsl-1.75.2/params/manifest.in.base.dir.xml delete mode 100644 docbook-xsl-1.75.2/params/manifest.xml delete mode 100644 docbook-xsl-1.75.2/params/manual.toc.xml delete mode 100644 docbook-xsl-1.75.2/params/margin.note.float.type.xml delete mode 100644 docbook-xsl-1.75.2/params/margin.note.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/margin.note.title.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/margin.note.width.xml delete mode 100644 docbook-xsl-1.75.2/params/marker.section.level.xml delete mode 100644 docbook-xsl-1.75.2/params/menuchoice.menu.separator.xml delete mode 100644 docbook-xsl-1.75.2/params/menuchoice.separator.xml delete mode 100644 docbook-xsl-1.75.2/params/minus.image.xml delete mode 100644 docbook-xsl-1.75.2/params/monospace.font.family.xml delete mode 100644 docbook-xsl-1.75.2/params/monospace.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/monospace.verbatim.font.width.xml delete mode 100644 docbook-xsl-1.75.2/params/monospace.verbatim.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/multiframe.bottom.bgcolor.xml delete mode 100644 docbook-xsl-1.75.2/params/multiframe.navigation.height.xml delete mode 100644 docbook-xsl-1.75.2/params/multiframe.top.bgcolor.xml delete mode 100644 docbook-xsl-1.75.2/params/multiframe.xml delete mode 100644 docbook-xsl-1.75.2/params/nav.separator.xml delete mode 100644 docbook-xsl-1.75.2/params/nav.table.summary.xml delete mode 100644 docbook-xsl-1.75.2/params/navbgcolor.xml delete mode 100644 docbook-xsl-1.75.2/params/navbodywidth.xml delete mode 100644 docbook-xsl-1.75.2/params/navig.graphics.extension.xml delete mode 100644 docbook-xsl-1.75.2/params/navig.graphics.path.xml delete mode 100644 docbook-xsl-1.75.2/params/navig.graphics.xml delete mode 100644 docbook-xsl-1.75.2/params/navig.showtitles.xml delete mode 100644 docbook-xsl-1.75.2/params/navtocwidth.xml delete mode 100644 docbook-xsl-1.75.2/params/next.image.xml delete mode 100644 docbook-xsl-1.75.2/params/no.home.image.xml delete mode 100644 docbook-xsl-1.75.2/params/no.next.image.xml delete mode 100644 docbook-xsl-1.75.2/params/no.prev.image.xml delete mode 100644 docbook-xsl-1.75.2/params/no.toc.image.xml delete mode 100644 docbook-xsl-1.75.2/params/no.up.image.xml delete mode 100644 docbook-xsl-1.75.2/params/nominal.image.depth.xml delete mode 100644 docbook-xsl-1.75.2/params/nominal.image.width.xml delete mode 100644 docbook-xsl-1.75.2/params/nominal.table.width.xml delete mode 100644 docbook-xsl-1.75.2/params/nongraphical.admonition.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/normal.para.spacing.xml delete mode 100644 docbook-xsl-1.75.2/params/olink.base.uri.xml delete mode 100644 docbook-xsl-1.75.2/params/olink.debug.xml delete mode 100644 docbook-xsl-1.75.2/params/olink.doctitle.xml delete mode 100644 docbook-xsl-1.75.2/params/olink.fragid.xml delete mode 100644 docbook-xsl-1.75.2/params/olink.lang.fallback.sequence.xml delete mode 100644 docbook-xsl-1.75.2/params/olink.outline.ext.xml delete mode 100644 docbook-xsl-1.75.2/params/olink.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/olink.pubid.xml delete mode 100644 docbook-xsl-1.75.2/params/olink.resolver.xml delete mode 100644 docbook-xsl-1.75.2/params/olink.sysid.xml delete mode 100644 docbook-xsl-1.75.2/params/orderedlist.label.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/orderedlist.label.width.xml delete mode 100644 docbook-xsl-1.75.2/params/orderedlist.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/othercredit.like.author.enabled.xml delete mode 100644 docbook-xsl-1.75.2/params/output-root.xml delete mode 100644 docbook-xsl-1.75.2/params/output.indent.xml delete mode 100644 docbook-xsl-1.75.2/params/overlay.js.xml delete mode 100644 docbook-xsl-1.75.2/params/overlay.logo.xml delete mode 100644 docbook-xsl-1.75.2/params/overlay.xml delete mode 100644 docbook-xsl-1.75.2/params/page.height.portrait.xml delete mode 100644 docbook-xsl-1.75.2/params/page.height.xml delete mode 100644 docbook-xsl-1.75.2/params/page.margin.bottom.xml delete mode 100644 docbook-xsl-1.75.2/params/page.margin.inner.xml delete mode 100644 docbook-xsl-1.75.2/params/page.margin.outer.xml delete mode 100644 docbook-xsl-1.75.2/params/page.margin.top.xml delete mode 100644 docbook-xsl-1.75.2/params/page.orientation.xml delete mode 100644 docbook-xsl-1.75.2/params/page.width.portrait.xml delete mode 100644 docbook-xsl-1.75.2/params/page.width.xml delete mode 100644 docbook-xsl-1.75.2/params/pages.template.xml delete mode 100644 docbook-xsl-1.75.2/params/paper.type.xml delete mode 100644 docbook-xsl-1.75.2/params/para.propagates.style.xml delete mode 100644 docbook-xsl-1.75.2/params/part.autolabel.xml delete mode 100644 docbook-xsl-1.75.2/params/passivetex.extensions.xml delete mode 100644 docbook-xsl-1.75.2/params/pgwide.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/phrase.propagates.style.xml delete mode 100644 docbook-xsl-1.75.2/params/pixels.per.inch.xml delete mode 100644 docbook-xsl-1.75.2/params/plus.image.xml delete mode 100644 docbook-xsl-1.75.2/params/points.per.em.xml delete mode 100644 docbook-xsl-1.75.2/params/preface.autolabel.xml delete mode 100644 docbook-xsl-1.75.2/params/prefer.internal.olink.xml delete mode 100644 docbook-xsl-1.75.2/params/preferred.mediaobject.role.xml delete mode 100644 docbook-xsl-1.75.2/params/prev.image.xml delete mode 100644 docbook-xsl-1.75.2/params/procedure.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/process.empty.source.toc.xml delete mode 100644 docbook-xsl-1.75.2/params/process.source.toc.xml delete mode 100644 docbook-xsl-1.75.2/params/profile.arch.xml delete mode 100644 docbook-xsl-1.75.2/params/profile.attribute.xml delete mode 100644 docbook-xsl-1.75.2/params/profile.audience.xml delete mode 100644 docbook-xsl-1.75.2/params/profile.condition.xml delete mode 100644 docbook-xsl-1.75.2/params/profile.conformance.xml delete mode 100644 docbook-xsl-1.75.2/params/profile.lang.xml delete mode 100644 docbook-xsl-1.75.2/params/profile.os.xml delete mode 100644 docbook-xsl-1.75.2/params/profile.revision.xml delete mode 100644 docbook-xsl-1.75.2/params/profile.revisionflag.xml delete mode 100644 docbook-xsl-1.75.2/params/profile.role.xml delete mode 100644 docbook-xsl-1.75.2/params/profile.security.xml delete mode 100644 docbook-xsl-1.75.2/params/profile.separator.xml delete mode 100644 docbook-xsl-1.75.2/params/profile.status.xml delete mode 100644 docbook-xsl-1.75.2/params/profile.userlevel.xml delete mode 100644 docbook-xsl-1.75.2/params/profile.value.xml delete mode 100644 docbook-xsl-1.75.2/params/profile.vendor.xml delete mode 100644 docbook-xsl-1.75.2/params/profile.wordsize.xml delete mode 100644 docbook-xsl-1.75.2/params/punct.honorific.xml delete mode 100644 docbook-xsl-1.75.2/params/qanda.defaultlabel.xml delete mode 100644 docbook-xsl-1.75.2/params/qanda.in.toc.xml delete mode 100644 docbook-xsl-1.75.2/params/qanda.inherit.numeration.xml delete mode 100644 docbook-xsl-1.75.2/params/qanda.nested.in.toc.xml delete mode 100644 docbook-xsl-1.75.2/params/qanda.title.level1.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/qanda.title.level2.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/qanda.title.level3.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/qanda.title.level4.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/qanda.title.level5.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/qanda.title.level6.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/qanda.title.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/qandadiv.autolabel.xml delete mode 100644 docbook-xsl-1.75.2/params/rebuild-all.xml delete mode 100644 docbook-xsl-1.75.2/params/refclass.suppress.xml delete mode 100644 docbook-xsl-1.75.2/params/refentry.date.profile.enabled.xml delete mode 100644 docbook-xsl-1.75.2/params/refentry.date.profile.xml delete mode 100644 docbook-xsl-1.75.2/params/refentry.generate.name.xml delete mode 100644 docbook-xsl-1.75.2/params/refentry.generate.title.xml delete mode 100644 docbook-xsl-1.75.2/params/refentry.manual.fallback.profile.xml delete mode 100644 docbook-xsl-1.75.2/params/refentry.manual.profile.enabled.xml delete mode 100644 docbook-xsl-1.75.2/params/refentry.manual.profile.xml delete mode 100644 docbook-xsl-1.75.2/params/refentry.meta.get.quietly.xml delete mode 100644 docbook-xsl-1.75.2/params/refentry.pagebreak.xml delete mode 100644 docbook-xsl-1.75.2/params/refentry.separator.xml delete mode 100644 docbook-xsl-1.75.2/params/refentry.source.fallback.profile.xml delete mode 100644 docbook-xsl-1.75.2/params/refentry.source.name.profile.enabled.xml delete mode 100644 docbook-xsl-1.75.2/params/refentry.source.name.profile.xml delete mode 100644 docbook-xsl-1.75.2/params/refentry.source.name.suppress.xml delete mode 100644 docbook-xsl-1.75.2/params/refentry.title.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/refentry.version.profile.enabled.xml delete mode 100644 docbook-xsl-1.75.2/params/refentry.version.profile.xml delete mode 100644 docbook-xsl-1.75.2/params/refentry.version.suppress.xml delete mode 100644 docbook-xsl-1.75.2/params/refentry.xref.manvolnum.xml delete mode 100644 docbook-xsl-1.75.2/params/reference.autolabel.xml delete mode 100644 docbook-xsl-1.75.2/params/region.after.extent.xml delete mode 100644 docbook-xsl-1.75.2/params/region.before.extent.xml delete mode 100644 docbook-xsl-1.75.2/params/revhistory.table.cell.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/revhistory.table.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/revhistory.title.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/root.filename.xml delete mode 100644 docbook-xsl-1.75.2/params/root.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/rootid.xml delete mode 100644 docbook-xsl-1.75.2/params/runinhead.default.title.end.punct.xml delete mode 100644 docbook-xsl-1.75.2/params/runinhead.title.end.punct.xml delete mode 100644 docbook-xsl-1.75.2/params/running.foot.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/sans.font.family.xml delete mode 100644 docbook-xsl-1.75.2/params/saxon.callouts.xml delete mode 100644 docbook-xsl-1.75.2/params/saxon.character.representation.xml delete mode 100644 docbook-xsl-1.75.2/params/saxon.linenumbering.xml delete mode 100644 docbook-xsl-1.75.2/params/saxon.tablecolumns.xml delete mode 100644 docbook-xsl-1.75.2/params/script.dir.xml delete mode 100644 docbook-xsl-1.75.2/params/section.autolabel.max.depth.xml delete mode 100644 docbook-xsl-1.75.2/params/section.autolabel.xml delete mode 100644 docbook-xsl-1.75.2/params/section.container.element.xml delete mode 100644 docbook-xsl-1.75.2/params/section.label.includes.component.label.xml delete mode 100644 docbook-xsl-1.75.2/params/section.level1.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/section.level2.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/section.level3.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/section.level4.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/section.level5.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/section.level6.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/section.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/section.title.level1.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/section.title.level2.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/section.title.level3.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/section.title.level4.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/section.title.level5.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/section.title.level6.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/section.title.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/segmentedlist.as.table.xml delete mode 100644 docbook-xsl-1.75.2/params/sequential.links.xml delete mode 100644 docbook-xsl-1.75.2/params/shade.verbatim.style.xml delete mode 100644 docbook-xsl-1.75.2/params/shade.verbatim.xml delete mode 100644 docbook-xsl-1.75.2/params/show.comments.xml delete mode 100644 docbook-xsl-1.75.2/params/show.foil.number.xml delete mode 100644 docbook-xsl-1.75.2/params/show.revisionflag.xml delete mode 100644 docbook-xsl-1.75.2/params/showtoc.image.xml delete mode 100644 docbook-xsl-1.75.2/params/side.float.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/sidebar.float.type.xml delete mode 100644 docbook-xsl-1.75.2/params/sidebar.float.width.xml delete mode 100644 docbook-xsl-1.75.2/params/sidebar.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/sidebar.title.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/simplesect.in.toc.xml delete mode 100644 docbook-xsl-1.75.2/params/slide.font.family.xml delete mode 100644 docbook-xsl-1.75.2/params/slide.title.font.family.xml delete mode 100644 docbook-xsl-1.75.2/params/slides.js.xml delete mode 100644 docbook-xsl-1.75.2/params/slides.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/spacing.paras.xml delete mode 100644 docbook-xsl-1.75.2/params/speakernote.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/subscript.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/superscript.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/suppress.footer.navigation.xml delete mode 100644 docbook-xsl-1.75.2/params/suppress.header.navigation.xml delete mode 100644 docbook-xsl-1.75.2/params/suppress.homepage.title.xml delete mode 100644 docbook-xsl-1.75.2/params/suppress.navigation.xml delete mode 100644 docbook-xsl-1.75.2/params/symbol.font.family.xml delete mode 100644 docbook-xsl-1.75.2/params/table.borders.with.css.xml delete mode 100644 docbook-xsl-1.75.2/params/table.cell.border.color.xml delete mode 100644 docbook-xsl-1.75.2/params/table.cell.border.style.xml delete mode 100644 docbook-xsl-1.75.2/params/table.cell.border.thickness.xml delete mode 100644 docbook-xsl-1.75.2/params/table.cell.padding.xml delete mode 100644 docbook-xsl-1.75.2/params/table.entry.padding.xml delete mode 100644 docbook-xsl-1.75.2/params/table.footnote.number.format.xml delete mode 100644 docbook-xsl-1.75.2/params/table.footnote.number.symbols.xml delete mode 100644 docbook-xsl-1.75.2/params/table.footnote.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/table.frame.border.color.xml delete mode 100644 docbook-xsl-1.75.2/params/table.frame.border.style.xml delete mode 100644 docbook-xsl-1.75.2/params/table.frame.border.thickness.xml delete mode 100644 docbook-xsl-1.75.2/params/table.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/table.spacer.image.xml delete mode 100644 docbook-xsl-1.75.2/params/table.table.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/tablecolumns.extension.xml delete mode 100644 docbook-xsl-1.75.2/params/target.database.document.xml delete mode 100644 docbook-xsl-1.75.2/params/targets.filename.xml delete mode 100644 docbook-xsl-1.75.2/params/template.xml delete mode 100644 docbook-xsl-1.75.2/params/tex.math.delims.xml delete mode 100644 docbook-xsl-1.75.2/params/tex.math.file.xml delete mode 100644 docbook-xsl-1.75.2/params/tex.math.in.alt.xml delete mode 100644 docbook-xsl-1.75.2/params/text.home.xml delete mode 100644 docbook-xsl-1.75.2/params/text.next.xml delete mode 100644 docbook-xsl-1.75.2/params/text.prev.xml delete mode 100644 docbook-xsl-1.75.2/params/text.toc.xml delete mode 100644 docbook-xsl-1.75.2/params/text.up.xml delete mode 100644 docbook-xsl-1.75.2/params/textbgcolor.xml delete mode 100644 docbook-xsl-1.75.2/params/textdata.default.encoding.xml delete mode 100644 docbook-xsl-1.75.2/params/textinsert.extension.xml delete mode 100644 docbook-xsl-1.75.2/params/title.font.family.xml delete mode 100644 docbook-xsl-1.75.2/params/title.margin.left.xml delete mode 100644 docbook-xsl-1.75.2/params/titlefoil.html.xml delete mode 100644 docbook-xsl-1.75.2/params/toc.bg.color.xml delete mode 100644 docbook-xsl-1.75.2/params/toc.blank.graphic.xml delete mode 100644 docbook-xsl-1.75.2/params/toc.blank.image.xml delete mode 100644 docbook-xsl-1.75.2/params/toc.blank.text.xml delete mode 100644 docbook-xsl-1.75.2/params/toc.hide.show.xml delete mode 100644 docbook-xsl-1.75.2/params/toc.html.xml delete mode 100644 docbook-xsl-1.75.2/params/toc.image.xml delete mode 100644 docbook-xsl-1.75.2/params/toc.indent.width.xml delete mode 100644 docbook-xsl-1.75.2/params/toc.line.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/toc.list.type.xml delete mode 100644 docbook-xsl-1.75.2/params/toc.margin.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/toc.max.depth.xml delete mode 100644 docbook-xsl-1.75.2/params/toc.pointer.graphic.xml delete mode 100644 docbook-xsl-1.75.2/params/toc.pointer.image.xml delete mode 100644 docbook-xsl-1.75.2/params/toc.pointer.text.xml delete mode 100644 docbook-xsl-1.75.2/params/toc.row.height.xml delete mode 100644 docbook-xsl-1.75.2/params/toc.section.depth.xml delete mode 100644 docbook-xsl-1.75.2/params/toc.spacer.graphic.xml delete mode 100644 docbook-xsl-1.75.2/params/toc.spacer.image.xml delete mode 100644 docbook-xsl-1.75.2/params/toc.spacer.text.xml delete mode 100644 docbook-xsl-1.75.2/params/toc.width.xml delete mode 100644 docbook-xsl-1.75.2/params/ua.js.xml delete mode 100644 docbook-xsl-1.75.2/params/ulink.footnotes.xml delete mode 100644 docbook-xsl-1.75.2/params/ulink.hyphenate.chars.xml delete mode 100644 docbook-xsl-1.75.2/params/ulink.hyphenate.xml delete mode 100644 docbook-xsl-1.75.2/params/ulink.show.xml delete mode 100644 docbook-xsl-1.75.2/params/ulink.target.xml delete mode 100644 docbook-xsl-1.75.2/params/up.image.xml delete mode 100644 docbook-xsl-1.75.2/params/use.embed.for.svg.xml delete mode 100644 docbook-xsl-1.75.2/params/use.extensions.xml delete mode 100644 docbook-xsl-1.75.2/params/use.id.as.filename.xml delete mode 100644 docbook-xsl-1.75.2/params/use.id.function.xml delete mode 100644 docbook-xsl-1.75.2/params/use.local.olink.style.xml delete mode 100644 docbook-xsl-1.75.2/params/use.role.as.xrefstyle.xml delete mode 100644 docbook-xsl-1.75.2/params/use.role.for.mediaobject.xml delete mode 100644 docbook-xsl-1.75.2/params/use.svg.xml delete mode 100644 docbook-xsl-1.75.2/params/variablelist.as.blocks.xml delete mode 100644 docbook-xsl-1.75.2/params/variablelist.as.table.xml delete mode 100644 docbook-xsl-1.75.2/params/variablelist.max.termlength.xml delete mode 100644 docbook-xsl-1.75.2/params/variablelist.term.break.after.xml delete mode 100644 docbook-xsl-1.75.2/params/variablelist.term.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/variablelist.term.separator.xml delete mode 100644 docbook-xsl-1.75.2/params/verbatim.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/wordml.template.xml delete mode 100644 docbook-xsl-1.75.2/params/writing.mode.xml delete mode 100644 docbook-xsl-1.75.2/params/xbCollapsibleLists.js.xml delete mode 100644 docbook-xsl-1.75.2/params/xbDOM.js.xml delete mode 100644 docbook-xsl-1.75.2/params/xbLibrary.js.xml delete mode 100644 docbook-xsl-1.75.2/params/xbStyle.js.xml delete mode 100644 docbook-xsl-1.75.2/params/xep.extensions.xml delete mode 100644 docbook-xsl-1.75.2/params/xep.index.item.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/xref.label-page.separator.xml delete mode 100644 docbook-xsl-1.75.2/params/xref.label-title.separator.xml delete mode 100644 docbook-xsl-1.75.2/params/xref.properties.xml delete mode 100644 docbook-xsl-1.75.2/params/xref.title-page.separator.xml delete mode 100644 docbook-xsl-1.75.2/params/xref.with.number.and.title.xml delete mode 100644 docbook-xsl-1.75.2/profiling/profile-mode.xsl delete mode 100644 docbook-xsl-1.75.2/profiling/profile.xsl delete mode 100644 docbook-xsl-1.75.2/profiling/strip-attributes.xsl delete mode 100644 docbook-xsl-1.75.2/profiling/xsl2profile.xsl delete mode 100644 docbook-xsl-1.75.2/roundtrip/blocks-spec.xml delete mode 100644 docbook-xsl-1.75.2/roundtrip/blocks2dbk.dtd delete mode 100644 docbook-xsl-1.75.2/roundtrip/blocks2dbk.xsl delete mode 100644 docbook-xsl-1.75.2/roundtrip/dbk2ooo.xsl delete mode 100644 docbook-xsl-1.75.2/roundtrip/dbk2pages.xsl delete mode 100644 docbook-xsl-1.75.2/roundtrip/dbk2wordml.xsl delete mode 100644 docbook-xsl-1.75.2/roundtrip/dbk2wp.xsl delete mode 100644 docbook-xsl-1.75.2/roundtrip/normalise-common.xsl delete mode 100644 docbook-xsl-1.75.2/roundtrip/normalise2sections.xsl delete mode 100644 docbook-xsl-1.75.2/roundtrip/pages2normalise.xsl delete mode 100644 docbook-xsl-1.75.2/roundtrip/param.xml delete mode 100644 docbook-xsl-1.75.2/roundtrip/param.xsl delete mode 100644 docbook-xsl-1.75.2/roundtrip/sections-spec.xml delete mode 100644 docbook-xsl-1.75.2/roundtrip/sections2blocks.xsl delete mode 100644 docbook-xsl-1.75.2/roundtrip/specifications.xml delete mode 100644 docbook-xsl-1.75.2/roundtrip/template-pages.xml delete mode 100644 docbook-xsl-1.75.2/roundtrip/template.dot delete mode 100644 docbook-xsl-1.75.2/roundtrip/template.xml delete mode 100644 docbook-xsl-1.75.2/roundtrip/wordml2normalise.xsl delete mode 100644 docbook-xsl-1.75.2/slides/browser/CTOCWidget.js delete mode 100644 docbook-xsl-1.75.2/slides/browser/overlay.js delete mode 100644 docbook-xsl-1.75.2/slides/browser/slides-default.css delete mode 100644 docbook-xsl-1.75.2/slides/browser/slides-frames.css delete mode 100644 docbook-xsl-1.75.2/slides/browser/slides-plain.css delete mode 100644 docbook-xsl-1.75.2/slides/browser/slides-table.css delete mode 100644 docbook-xsl-1.75.2/slides/browser/slides-w3c.css delete mode 100644 docbook-xsl-1.75.2/slides/browser/slides.css delete mode 100644 docbook-xsl-1.75.2/slides/browser/slides.js delete mode 100644 docbook-xsl-1.75.2/slides/browser/ua.js delete mode 100644 docbook-xsl-1.75.2/slides/browser/xbCollapsibleLists.js delete mode 100644 docbook-xsl-1.75.2/slides/browser/xbDOM.js delete mode 100644 docbook-xsl-1.75.2/slides/browser/xbDebug.js delete mode 100644 docbook-xsl-1.75.2/slides/browser/xbLibrary.js delete mode 100644 docbook-xsl-1.75.2/slides/browser/xbStyle-css.js delete mode 100644 docbook-xsl-1.75.2/slides/browser/xbStyle-nn4.js delete mode 100644 docbook-xsl-1.75.2/slides/browser/xbStyle-not-supported.js delete mode 100644 docbook-xsl-1.75.2/slides/browser/xbStyle.js delete mode 100644 docbook-xsl-1.75.2/slides/fo/param.xml delete mode 100644 docbook-xsl-1.75.2/slides/fo/param.xsl delete mode 100644 docbook-xsl-1.75.2/slides/fo/plain-titlepage.xml delete mode 100644 docbook-xsl-1.75.2/slides/fo/plain-titlepage.xsl delete mode 100644 docbook-xsl-1.75.2/slides/fo/plain.xsl delete mode 100644 docbook-xsl-1.75.2/slides/graphics/active/arr-next.png delete mode 100644 docbook-xsl-1.75.2/slides/graphics/active/arr-prev.png delete mode 100644 docbook-xsl-1.75.2/slides/graphics/active/but-fforward.png delete mode 100644 docbook-xsl-1.75.2/slides/graphics/active/but-info.png delete mode 100644 docbook-xsl-1.75.2/slides/graphics/active/but-next.png delete mode 100644 docbook-xsl-1.75.2/slides/graphics/active/but-prev.png delete mode 100644 docbook-xsl-1.75.2/slides/graphics/active/but-rewind.png delete mode 100644 docbook-xsl-1.75.2/slides/graphics/active/nav-home.png delete mode 100644 docbook-xsl-1.75.2/slides/graphics/active/nav-next.png delete mode 100644 docbook-xsl-1.75.2/slides/graphics/active/nav-prev.png delete mode 100644 docbook-xsl-1.75.2/slides/graphics/active/nav-toc.png delete mode 100644 docbook-xsl-1.75.2/slides/graphics/active/nav-up.png delete mode 100644 docbook-xsl-1.75.2/slides/graphics/active/w3c-next.png delete mode 100644 docbook-xsl-1.75.2/slides/graphics/active/w3c-prev.png delete mode 100644 docbook-xsl-1.75.2/slides/graphics/active/w3c-toc.png delete mode 100644 docbook-xsl-1.75.2/slides/graphics/arrow.gif delete mode 100644 docbook-xsl-1.75.2/slides/graphics/blank.gif delete mode 100644 docbook-xsl-1.75.2/slides/graphics/blank.png delete mode 100644 docbook-xsl-1.75.2/slides/graphics/hidetoc.gif delete mode 100644 docbook-xsl-1.75.2/slides/graphics/inactive/but-fforward.png delete mode 100644 docbook-xsl-1.75.2/slides/graphics/inactive/but-info.png delete mode 100644 docbook-xsl-1.75.2/slides/graphics/inactive/but-next.png delete mode 100644 docbook-xsl-1.75.2/slides/graphics/inactive/but-prev.png delete mode 100644 docbook-xsl-1.75.2/slides/graphics/inactive/but-rewind.png delete mode 100644 docbook-xsl-1.75.2/slides/graphics/inactive/nav-home.png delete mode 100644 docbook-xsl-1.75.2/slides/graphics/inactive/nav-next.png delete mode 100644 docbook-xsl-1.75.2/slides/graphics/inactive/nav-prev.png delete mode 100644 docbook-xsl-1.75.2/slides/graphics/inactive/nav-toc.png delete mode 100644 docbook-xsl-1.75.2/slides/graphics/inactive/nav-up.png delete mode 100644 docbook-xsl-1.75.2/slides/graphics/inactive/w3c-next.png delete mode 100644 docbook-xsl-1.75.2/slides/graphics/inactive/w3c-prev.png delete mode 100644 docbook-xsl-1.75.2/slides/graphics/inactive/w3c-toc.png delete mode 100644 docbook-xsl-1.75.2/slides/graphics/plus.gif delete mode 100644 docbook-xsl-1.75.2/slides/graphics/pointer.png delete mode 100644 docbook-xsl-1.75.2/slides/graphics/showtoc.gif delete mode 100644 docbook-xsl-1.75.2/slides/graphics/toc/bullet.png delete mode 100644 docbook-xsl-1.75.2/slides/graphics/toc/closed.png delete mode 100644 docbook-xsl-1.75.2/slides/graphics/toc/open.png delete mode 100644 docbook-xsl-1.75.2/slides/html/css.xsl delete mode 100644 docbook-xsl-1.75.2/slides/html/default.xsl delete mode 100644 docbook-xsl-1.75.2/slides/html/flat.xsl delete mode 100644 docbook-xsl-1.75.2/slides/html/frames.xsl delete mode 100644 docbook-xsl-1.75.2/slides/html/graphics.xsl delete mode 100644 docbook-xsl-1.75.2/slides/html/jscript.xsl delete mode 100644 docbook-xsl-1.75.2/slides/html/param.xml delete mode 100644 docbook-xsl-1.75.2/slides/html/param.xsl delete mode 100644 docbook-xsl-1.75.2/slides/html/plain.xsl delete mode 100644 docbook-xsl-1.75.2/slides/html/slides-common.xsl delete mode 100644 docbook-xsl-1.75.2/slides/html/tables.xsl delete mode 100644 docbook-xsl-1.75.2/slides/html/vslides.xsl delete mode 100644 docbook-xsl-1.75.2/slides/html/w3c.xsl delete mode 100644 docbook-xsl-1.75.2/slides/htmlhelp/htmlhelp.xsl delete mode 100644 docbook-xsl-1.75.2/slides/keynote/default.xsl delete mode 100644 docbook-xsl-1.75.2/slides/keynote/xsltsl/cmp.xsl delete mode 100644 docbook-xsl-1.75.2/slides/keynote/xsltsl/date-time.xsl delete mode 100644 docbook-xsl-1.75.2/slides/keynote/xsltsl/example.xsl delete mode 100644 docbook-xsl-1.75.2/slides/keynote/xsltsl/markup.xsl delete mode 100644 docbook-xsl-1.75.2/slides/keynote/xsltsl/math.xsl delete mode 100644 docbook-xsl-1.75.2/slides/keynote/xsltsl/node.xsl delete mode 100644 docbook-xsl-1.75.2/slides/keynote/xsltsl/stdlib.xsl delete mode 100644 docbook-xsl-1.75.2/slides/keynote/xsltsl/string.xsl delete mode 100644 docbook-xsl-1.75.2/slides/keynote/xsltsl/svg.xsl delete mode 100644 docbook-xsl-1.75.2/slides/keynote/xsltsl/uri.xsl delete mode 100644 docbook-xsl-1.75.2/slides/svg/default.xsl delete mode 100644 docbook-xsl-1.75.2/slides/xhtml/css.xsl delete mode 100644 docbook-xsl-1.75.2/slides/xhtml/default.xsl delete mode 100644 docbook-xsl-1.75.2/slides/xhtml/flat.xsl delete mode 100644 docbook-xsl-1.75.2/slides/xhtml/frames.xsl delete mode 100644 docbook-xsl-1.75.2/slides/xhtml/graphics.xsl delete mode 100644 docbook-xsl-1.75.2/slides/xhtml/jscript.xsl delete mode 100644 docbook-xsl-1.75.2/slides/xhtml/param.xsl delete mode 100644 docbook-xsl-1.75.2/slides/xhtml/plain.xsl delete mode 100644 docbook-xsl-1.75.2/slides/xhtml/slides-common.xsl delete mode 100644 docbook-xsl-1.75.2/slides/xhtml/tables.xsl delete mode 100644 docbook-xsl-1.75.2/slides/xhtml/vslides.xsl delete mode 100644 docbook-xsl-1.75.2/slides/xhtml/w3c.xsl delete mode 100644 docbook-xsl-1.75.2/template/titlepage.xml delete mode 100644 docbook-xsl-1.75.2/template/titlepage.xsl delete mode 100644 docbook-xsl-1.75.2/test.sh delete mode 100644 docbook-xsl-1.75.2/tests/refentry.007.ns.xml delete mode 100644 docbook-xsl-1.75.2/tests/refentry.007.xml delete mode 100644 docbook-xsl-1.75.2/tools/bin/docbook-xsl-update delete mode 100644 docbook-xsl-1.75.2/tools/make/Makefile.DocBook delete mode 100644 docbook-xsl-1.75.2/tools/make/Makefile.combine delete mode 100644 docbook-xsl-1.75.2/tools/make/Makefile.docParam delete mode 100644 docbook-xsl-1.75.2/uninstall.sh delete mode 100644 docbook-xsl-1.75.2/website/autolayout.xsl delete mode 100644 docbook-xsl-1.75.2/website/chunk-common.xsl delete mode 100644 docbook-xsl-1.75.2/website/chunk-tabular.xsl delete mode 100644 docbook-xsl-1.75.2/website/chunk-website.xsl delete mode 100644 docbook-xsl-1.75.2/website/head.xsl delete mode 100644 docbook-xsl-1.75.2/website/makefile-dep.xsl delete mode 100644 docbook-xsl-1.75.2/website/olink.xsl delete mode 100644 docbook-xsl-1.75.2/website/param.xml delete mode 100644 docbook-xsl-1.75.2/website/param.xsl delete mode 100644 docbook-xsl-1.75.2/website/rss.xsl delete mode 100644 docbook-xsl-1.75.2/website/tabular.xsl delete mode 100644 docbook-xsl-1.75.2/website/toc-tabular.xsl delete mode 100644 docbook-xsl-1.75.2/website/toc.xsl delete mode 100644 docbook-xsl-1.75.2/website/website-common.xsl delete mode 100644 docbook-xsl-1.75.2/website/website-targets.xsl delete mode 100644 docbook-xsl-1.75.2/website/website.xsl delete mode 100644 docbook-xsl-1.75.2/website/xbel.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml-1_1/admon.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml-1_1/annotations.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml-1_1/autoidx-kimber.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml-1_1/autoidx-kosek.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml-1_1/autoidx-ng.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml-1_1/autoidx.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml-1_1/autotoc.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml-1_1/biblio-iso690.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml-1_1/biblio.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml-1_1/block.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml-1_1/callout.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml-1_1/changebars.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml-1_1/chunk-changebars.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml-1_1/chunk-code.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml-1_1/chunk-common.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml-1_1/chunk.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml-1_1/chunker.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml-1_1/chunkfast.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml-1_1/chunktoc.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml-1_1/component.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml-1_1/division.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml-1_1/docbook.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml-1_1/ebnf.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml-1_1/footnote.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml-1_1/formal.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml-1_1/glossary.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml-1_1/graphics.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml-1_1/highlight.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml-1_1/html-rtf.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml-1_1/html.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml-1_1/htmltbl.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml-1_1/index.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml-1_1/info.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml-1_1/inline.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml-1_1/keywords.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml-1_1/lists.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml-1_1/maketoc.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml-1_1/manifest.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml-1_1/math.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml-1_1/oldchunker.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml-1_1/onechunk.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml-1_1/param.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml-1_1/pi.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml-1_1/profile-chunk-code.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml-1_1/profile-chunk.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml-1_1/profile-docbook.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml-1_1/profile-onechunk.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml-1_1/qandaset.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml-1_1/refentry.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml-1_1/sections.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml-1_1/synop.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml-1_1/table.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml-1_1/task.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml-1_1/titlepage.templates.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml-1_1/titlepage.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml-1_1/toc.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml-1_1/verbatim.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml-1_1/xref.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml/admon.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml/annotations.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml/autoidx-kimber.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml/autoidx-kosek.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml/autoidx-ng.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml/autoidx.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml/autotoc.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml/biblio-iso690.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml/biblio.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml/block.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml/callout.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml/changebars.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml/chunk-changebars.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml/chunk-code.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml/chunk-common.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml/chunk.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml/chunker.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml/chunkfast.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml/chunktoc.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml/component.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml/division.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml/docbook.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml/ebnf.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml/footnote.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml/formal.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml/glossary.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml/graphics.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml/highlight.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml/html-rtf.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml/html.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml/htmltbl.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml/index.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml/info.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml/inline.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml/keywords.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml/lists.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml/maketoc.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml/manifest.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml/math.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml/oldchunker.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml/onechunk.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml/param.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml/pi.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml/profile-chunk-code.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml/profile-chunk.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml/profile-docbook.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml/profile-onechunk.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml/qandaset.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml/refentry.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml/sections.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml/synop.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml/table.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml/task.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml/titlepage.templates.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml/titlepage.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml/toc.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml/verbatim.xsl delete mode 100644 docbook-xsl-1.75.2/xhtml/xref.xsl create mode 100644 docbook-xsl-1.76.1/.CatalogManager.properties.example create mode 100644 docbook-xsl-1.76.1/.urilist create mode 100644 docbook-xsl-1.76.1/AUTHORS create mode 100644 docbook-xsl-1.76.1/BUGS create mode 100644 docbook-xsl-1.76.1/COPYING create mode 100644 docbook-xsl-1.76.1/INSTALL create mode 100644 docbook-xsl-1.76.1/Makefile create mode 100644 docbook-xsl-1.76.1/NEWS create mode 100644 docbook-xsl-1.76.1/NEWS.html create mode 100644 docbook-xsl-1.76.1/NEWS.xml create mode 100644 docbook-xsl-1.76.1/README create mode 100644 docbook-xsl-1.76.1/RELEASE-NOTES.html create mode 100644 docbook-xsl-1.76.1/RELEASE-NOTES.pdf create mode 100644 docbook-xsl-1.76.1/RELEASE-NOTES.txt create mode 100644 docbook-xsl-1.76.1/RELEASE-NOTES.xml create mode 100644 docbook-xsl-1.76.1/TODO create mode 100644 docbook-xsl-1.76.1/VERSION create mode 100644 docbook-xsl-1.76.1/catalog.xml create mode 100644 docbook-xsl-1.76.1/common/af.xml create mode 100644 docbook-xsl-1.76.1/common/am.xml create mode 100644 docbook-xsl-1.76.1/common/ar.xml create mode 100644 docbook-xsl-1.76.1/common/as.xml create mode 100644 docbook-xsl-1.76.1/common/ast.xml create mode 100644 docbook-xsl-1.76.1/common/autoidx-kimber.xsl create mode 100644 docbook-xsl-1.76.1/common/autoidx-kosek.xsl create mode 100644 docbook-xsl-1.76.1/common/az.xml create mode 100644 docbook-xsl-1.76.1/common/bg.xml create mode 100644 docbook-xsl-1.76.1/common/bn.xml create mode 100644 docbook-xsl-1.76.1/common/bn_in.xml create mode 100644 docbook-xsl-1.76.1/common/bs.xml create mode 100644 docbook-xsl-1.76.1/common/ca.xml create mode 100644 docbook-xsl-1.76.1/common/charmap.xml create mode 100644 docbook-xsl-1.76.1/common/charmap.xsl create mode 100644 docbook-xsl-1.76.1/common/common.xml create mode 100644 docbook-xsl-1.76.1/common/common.xsl create mode 100644 docbook-xsl-1.76.1/common/cs.xml create mode 100644 docbook-xsl-1.76.1/common/cy.xml create mode 100644 docbook-xsl-1.76.1/common/da.xml create mode 100644 docbook-xsl-1.76.1/common/de.xml create mode 100644 docbook-xsl-1.76.1/common/el.xml create mode 100644 docbook-xsl-1.76.1/common/en.xml create mode 100644 docbook-xsl-1.76.1/common/entities.ent create mode 100644 docbook-xsl-1.76.1/common/eo.xml create mode 100644 docbook-xsl-1.76.1/common/es.xml create mode 100644 docbook-xsl-1.76.1/common/et.xml create mode 100644 docbook-xsl-1.76.1/common/eu.xml create mode 100644 docbook-xsl-1.76.1/common/fa.xml create mode 100644 docbook-xsl-1.76.1/common/fi.xml create mode 100644 docbook-xsl-1.76.1/common/fr.xml create mode 100644 docbook-xsl-1.76.1/common/ga.xml create mode 100644 docbook-xsl-1.76.1/common/gentext.xsl create mode 100644 docbook-xsl-1.76.1/common/gl.xml create mode 100644 docbook-xsl-1.76.1/common/gu.xml create mode 100644 docbook-xsl-1.76.1/common/he.xml create mode 100644 docbook-xsl-1.76.1/common/hi.xml create mode 100644 docbook-xsl-1.76.1/common/hr.xml create mode 100644 docbook-xsl-1.76.1/common/hu.xml create mode 100644 docbook-xsl-1.76.1/common/id.xml create mode 100644 docbook-xsl-1.76.1/common/insertfile.xsl create mode 100644 docbook-xsl-1.76.1/common/is.xml create mode 100644 docbook-xsl-1.76.1/common/it.xml create mode 100644 docbook-xsl-1.76.1/common/ja.xml create mode 100644 docbook-xsl-1.76.1/common/ka.xml create mode 100644 docbook-xsl-1.76.1/common/kn.xml create mode 100644 docbook-xsl-1.76.1/common/ko.xml create mode 100644 docbook-xsl-1.76.1/common/ky.xml create mode 100644 docbook-xsl-1.76.1/common/l10n.dtd create mode 100644 docbook-xsl-1.76.1/common/l10n.xml create mode 100644 docbook-xsl-1.76.1/common/l10n.xsl create mode 100644 docbook-xsl-1.76.1/common/la.xml create mode 100644 docbook-xsl-1.76.1/common/labels.xsl create mode 100644 docbook-xsl-1.76.1/common/lt.xml create mode 100644 docbook-xsl-1.76.1/common/lv.xml create mode 100644 docbook-xsl-1.76.1/common/ml.xml create mode 100644 docbook-xsl-1.76.1/common/mn.xml create mode 100644 docbook-xsl-1.76.1/common/mr.xml create mode 100644 docbook-xsl-1.76.1/common/nb.xml create mode 100644 docbook-xsl-1.76.1/common/nds.xml create mode 100644 docbook-xsl-1.76.1/common/nl.xml create mode 100644 docbook-xsl-1.76.1/common/nn.xml create mode 100644 docbook-xsl-1.76.1/common/olink.xsl create mode 100644 docbook-xsl-1.76.1/common/or.xml create mode 100644 docbook-xsl-1.76.1/common/pa.xml create mode 100644 docbook-xsl-1.76.1/common/pi.xml create mode 100644 docbook-xsl-1.76.1/common/pi.xsl create mode 100644 docbook-xsl-1.76.1/common/pl.xml create mode 100644 docbook-xsl-1.76.1/common/pt.xml create mode 100644 docbook-xsl-1.76.1/common/pt_br.xml create mode 100644 docbook-xsl-1.76.1/common/refentry.xml create mode 100644 docbook-xsl-1.76.1/common/refentry.xsl create mode 100644 docbook-xsl-1.76.1/common/ro.xml create mode 100644 docbook-xsl-1.76.1/common/ru.xml create mode 100644 docbook-xsl-1.76.1/common/sk.xml create mode 100644 docbook-xsl-1.76.1/common/sl.xml create mode 100644 docbook-xsl-1.76.1/common/sq.xml create mode 100644 docbook-xsl-1.76.1/common/sr.xml create mode 100644 docbook-xsl-1.76.1/common/sr_Latn.xml create mode 100644 docbook-xsl-1.76.1/common/stripns.xsl create mode 100644 docbook-xsl-1.76.1/common/subtitles.xsl create mode 100644 docbook-xsl-1.76.1/common/sv.xml create mode 100644 docbook-xsl-1.76.1/common/ta.xml create mode 100644 docbook-xsl-1.76.1/common/table.xsl create mode 100644 docbook-xsl-1.76.1/common/targetdatabase.dtd create mode 100644 docbook-xsl-1.76.1/common/targets.xsl create mode 100644 docbook-xsl-1.76.1/common/te.xml create mode 100644 docbook-xsl-1.76.1/common/th.xml create mode 100644 docbook-xsl-1.76.1/common/titles.xsl create mode 100644 docbook-xsl-1.76.1/common/tl.xml create mode 100644 docbook-xsl-1.76.1/common/tr.xml create mode 100644 docbook-xsl-1.76.1/common/uk.xml create mode 100644 docbook-xsl-1.76.1/common/utility.xml create mode 100644 docbook-xsl-1.76.1/common/utility.xsl create mode 100644 docbook-xsl-1.76.1/common/vi.xml create mode 100644 docbook-xsl-1.76.1/common/xh.xml create mode 100644 docbook-xsl-1.76.1/common/zh.xml create mode 100644 docbook-xsl-1.76.1/common/zh_cn.xml create mode 100644 docbook-xsl-1.76.1/common/zh_tw.xml create mode 100644 docbook-xsl-1.76.1/docsrc/authors.xml create mode 100644 docbook-xsl-1.76.1/docsrc/copyright.xml create mode 100644 docbook-xsl-1.76.1/docsrc/license.xml create mode 100644 docbook-xsl-1.76.1/docsrc/page.png create mode 100644 docbook-xsl-1.76.1/docsrc/reference.css create mode 100644 docbook-xsl-1.76.1/docsrc/reference.xml create mode 100644 docbook-xsl-1.76.1/docsrc/reference.xml.included create mode 100644 docbook-xsl-1.76.1/docsrc/warranty.xml create mode 100644 docbook-xsl-1.76.1/eclipse/eclipse.xsl create mode 100644 docbook-xsl-1.76.1/eclipse/eclipse3.xsl create mode 100644 docbook-xsl-1.76.1/eclipse/profile-eclipse.xsl create mode 100644 docbook-xsl-1.76.1/epub/README create mode 100755 docbook-xsl-1.76.1/epub/bin/dbtoepub create mode 100755 docbook-xsl-1.76.1/epub/bin/lib/docbook.rb create mode 100644 docbook-xsl-1.76.1/epub/bin/xslt/obfuscate.xsl create mode 100644 docbook-xsl-1.76.1/epub/docbook.xsl create mode 100755 docbook-xsl-1.76.1/extensions/LICENSE.txt create mode 100755 docbook-xsl-1.76.1/extensions/NOTICE.txt create mode 100644 docbook-xsl-1.76.1/extensions/README.LIBXSLT create mode 100644 docbook-xsl-1.76.1/extensions/README.txt create mode 100644 docbook-xsl-1.76.1/extensions/docbook.py create mode 100644 docbook-xsl-1.76.1/extensions/lucene-analyzers-3.0.0.jar create mode 100644 docbook-xsl-1.76.1/extensions/lucene-core-3.0.0.jar create mode 100644 docbook-xsl-1.76.1/extensions/saxon65.jar create mode 100644 docbook-xsl-1.76.1/extensions/webhelpindexer.jar create mode 100644 docbook-xsl-1.76.1/extensions/xalan27.jar create mode 100644 docbook-xsl-1.76.1/extensions/xslt.py create mode 100644 docbook-xsl-1.76.1/fo/admon.xsl create mode 100644 docbook-xsl-1.76.1/fo/annotations.xsl create mode 100644 docbook-xsl-1.76.1/fo/autoidx-kimber.xsl create mode 100644 docbook-xsl-1.76.1/fo/autoidx-kosek.xsl create mode 100644 docbook-xsl-1.76.1/fo/autoidx-ng.xsl create mode 100644 docbook-xsl-1.76.1/fo/autoidx.xsl create mode 100644 docbook-xsl-1.76.1/fo/autotoc.xsl create mode 100644 docbook-xsl-1.76.1/fo/axf.xsl create mode 100644 docbook-xsl-1.76.1/fo/biblio-iso690.xsl create mode 100644 docbook-xsl-1.76.1/fo/biblio.xsl create mode 100644 docbook-xsl-1.76.1/fo/block.xsl create mode 100644 docbook-xsl-1.76.1/fo/callout.xsl create mode 100644 docbook-xsl-1.76.1/fo/component.xsl create mode 100644 docbook-xsl-1.76.1/fo/division.xsl create mode 100644 docbook-xsl-1.76.1/fo/docbook.xsl create mode 100644 docbook-xsl-1.76.1/fo/ebnf.xsl create mode 100644 docbook-xsl-1.76.1/fo/fo-rtf.xsl create mode 100644 docbook-xsl-1.76.1/fo/fo.xsl create mode 100644 docbook-xsl-1.76.1/fo/footnote.xsl create mode 100644 docbook-xsl-1.76.1/fo/fop.xsl create mode 100644 docbook-xsl-1.76.1/fo/fop1.xsl create mode 100644 docbook-xsl-1.76.1/fo/formal.xsl create mode 100644 docbook-xsl-1.76.1/fo/glossary.xsl create mode 100644 docbook-xsl-1.76.1/fo/graphics.xsl create mode 100644 docbook-xsl-1.76.1/fo/highlight.xsl create mode 100644 docbook-xsl-1.76.1/fo/htmltbl.xsl create mode 100644 docbook-xsl-1.76.1/fo/index.xsl create mode 100644 docbook-xsl-1.76.1/fo/info.xsl create mode 100644 docbook-xsl-1.76.1/fo/inline.xsl create mode 100644 docbook-xsl-1.76.1/fo/keywords.xsl create mode 100644 docbook-xsl-1.76.1/fo/lists.xsl create mode 100644 docbook-xsl-1.76.1/fo/math.xsl create mode 100644 docbook-xsl-1.76.1/fo/pagesetup.xsl create mode 100644 docbook-xsl-1.76.1/fo/param.xml create mode 100644 docbook-xsl-1.76.1/fo/param.xsl create mode 100644 docbook-xsl-1.76.1/fo/passivetex.xsl create mode 100755 docbook-xsl-1.76.1/fo/pdf2index create mode 100644 docbook-xsl-1.76.1/fo/pi.xml create mode 100644 docbook-xsl-1.76.1/fo/pi.xsl create mode 100644 docbook-xsl-1.76.1/fo/profile-docbook.xsl create mode 100644 docbook-xsl-1.76.1/fo/ptc.xsl create mode 100644 docbook-xsl-1.76.1/fo/qandaset.xsl create mode 100644 docbook-xsl-1.76.1/fo/refentry.xsl create mode 100644 docbook-xsl-1.76.1/fo/sections.xsl create mode 100644 docbook-xsl-1.76.1/fo/spaces.xsl create mode 100644 docbook-xsl-1.76.1/fo/synop.xsl create mode 100644 docbook-xsl-1.76.1/fo/table.xml create mode 100644 docbook-xsl-1.76.1/fo/table.xsl create mode 100644 docbook-xsl-1.76.1/fo/task.xsl create mode 100644 docbook-xsl-1.76.1/fo/titlepage.templates.xml create mode 100644 docbook-xsl-1.76.1/fo/titlepage.templates.xsl create mode 100644 docbook-xsl-1.76.1/fo/titlepage.xsl create mode 100644 docbook-xsl-1.76.1/fo/toc.xsl create mode 100644 docbook-xsl-1.76.1/fo/verbatim.xsl create mode 100644 docbook-xsl-1.76.1/fo/xep.xsl create mode 100644 docbook-xsl-1.76.1/fo/xref.xsl create mode 100644 docbook-xsl-1.76.1/highlighting/README create mode 100644 docbook-xsl-1.76.1/highlighting/c-hl.xml create mode 100644 docbook-xsl-1.76.1/highlighting/common.xsl create mode 100644 docbook-xsl-1.76.1/highlighting/cpp-hl.xml create mode 100644 docbook-xsl-1.76.1/highlighting/csharp-hl.xml create mode 100644 docbook-xsl-1.76.1/highlighting/delphi-hl.xml create mode 100644 docbook-xsl-1.76.1/highlighting/ini-hl.xml create mode 100644 docbook-xsl-1.76.1/highlighting/java-hl.xml create mode 100644 docbook-xsl-1.76.1/highlighting/javascript-hl.xml create mode 100644 docbook-xsl-1.76.1/highlighting/m2-hl.xml create mode 100644 docbook-xsl-1.76.1/highlighting/myxml-hl.xml create mode 100644 docbook-xsl-1.76.1/highlighting/perl-hl.xml create mode 100644 docbook-xsl-1.76.1/highlighting/php-hl.xml create mode 100644 docbook-xsl-1.76.1/highlighting/python-hl.xml create mode 100644 docbook-xsl-1.76.1/highlighting/ruby-hl.xml create mode 100644 docbook-xsl-1.76.1/highlighting/tcl-hl.xml create mode 100644 docbook-xsl-1.76.1/highlighting/xslthl-config.xml create mode 100644 docbook-xsl-1.76.1/html/admon.xsl create mode 100644 docbook-xsl-1.76.1/html/annotations.xsl create mode 100644 docbook-xsl-1.76.1/html/autoidx-kimber.xsl create mode 100644 docbook-xsl-1.76.1/html/autoidx-kosek.xsl create mode 100644 docbook-xsl-1.76.1/html/autoidx-ng.xsl create mode 100644 docbook-xsl-1.76.1/html/autoidx.xsl create mode 100644 docbook-xsl-1.76.1/html/autotoc.xsl create mode 100644 docbook-xsl-1.76.1/html/biblio-iso690.xsl create mode 100644 docbook-xsl-1.76.1/html/biblio.xsl create mode 100644 docbook-xsl-1.76.1/html/block.xsl create mode 100644 docbook-xsl-1.76.1/html/callout.xsl create mode 100644 docbook-xsl-1.76.1/html/changebars.xsl create mode 100644 docbook-xsl-1.76.1/html/chunk-changebars.xsl create mode 100644 docbook-xsl-1.76.1/html/chunk-code.xsl create mode 100644 docbook-xsl-1.76.1/html/chunk-common.xsl create mode 100644 docbook-xsl-1.76.1/html/chunk.xsl create mode 100644 docbook-xsl-1.76.1/html/chunker.xsl create mode 100644 docbook-xsl-1.76.1/html/chunkfast.xsl create mode 100644 docbook-xsl-1.76.1/html/chunktoc.xsl create mode 100644 docbook-xsl-1.76.1/html/component.xsl create mode 100644 docbook-xsl-1.76.1/html/division.xsl create mode 100644 docbook-xsl-1.76.1/html/docbook.css.xml create mode 100644 docbook-xsl-1.76.1/html/docbook.xsl create mode 100644 docbook-xsl-1.76.1/html/ebnf.xsl create mode 100644 docbook-xsl-1.76.1/html/footnote.xsl create mode 100644 docbook-xsl-1.76.1/html/formal.xsl create mode 100644 docbook-xsl-1.76.1/html/glossary.xsl create mode 100644 docbook-xsl-1.76.1/html/graphics.xsl create mode 100644 docbook-xsl-1.76.1/html/highlight.xsl create mode 100644 docbook-xsl-1.76.1/html/html-rtf.xsl create mode 100644 docbook-xsl-1.76.1/html/html.xsl create mode 100644 docbook-xsl-1.76.1/html/htmltbl.xsl create mode 100644 docbook-xsl-1.76.1/html/index.xsl create mode 100644 docbook-xsl-1.76.1/html/info.xsl create mode 100644 docbook-xsl-1.76.1/html/inline.xsl create mode 100644 docbook-xsl-1.76.1/html/keywords.xsl create mode 100644 docbook-xsl-1.76.1/html/lists.xsl create mode 100644 docbook-xsl-1.76.1/html/maketoc.xsl create mode 100644 docbook-xsl-1.76.1/html/manifest.xsl create mode 100644 docbook-xsl-1.76.1/html/math.xsl create mode 100644 docbook-xsl-1.76.1/html/oldchunker.xsl create mode 100644 docbook-xsl-1.76.1/html/onechunk.xsl create mode 100644 docbook-xsl-1.76.1/html/param.xml create mode 100644 docbook-xsl-1.76.1/html/param.xsl create mode 100644 docbook-xsl-1.76.1/html/pi.xml create mode 100644 docbook-xsl-1.76.1/html/pi.xsl create mode 100644 docbook-xsl-1.76.1/html/profile-chunk-code.xsl create mode 100644 docbook-xsl-1.76.1/html/profile-chunk.xsl create mode 100644 docbook-xsl-1.76.1/html/profile-docbook.xsl create mode 100644 docbook-xsl-1.76.1/html/profile-onechunk.xsl create mode 100644 docbook-xsl-1.76.1/html/qandaset.xsl create mode 100644 docbook-xsl-1.76.1/html/refentry.xsl create mode 100644 docbook-xsl-1.76.1/html/sections.xsl create mode 100644 docbook-xsl-1.76.1/html/synop.xsl create mode 100644 docbook-xsl-1.76.1/html/table.xsl create mode 100644 docbook-xsl-1.76.1/html/task.xsl create mode 100644 docbook-xsl-1.76.1/html/titlepage.templates.xml create mode 100644 docbook-xsl-1.76.1/html/titlepage.templates.xsl create mode 100644 docbook-xsl-1.76.1/html/titlepage.xsl create mode 100644 docbook-xsl-1.76.1/html/toc.xsl create mode 100644 docbook-xsl-1.76.1/html/verbatim.xsl create mode 100644 docbook-xsl-1.76.1/html/xref.xsl create mode 100644 docbook-xsl-1.76.1/htmlhelp/htmlhelp-common.xsl create mode 100644 docbook-xsl-1.76.1/htmlhelp/htmlhelp.xsl create mode 100644 docbook-xsl-1.76.1/htmlhelp/profile-htmlhelp-common.xsl create mode 100644 docbook-xsl-1.76.1/htmlhelp/profile-htmlhelp.xsl create mode 100644 docbook-xsl-1.76.1/images/annot-close.png create mode 100644 docbook-xsl-1.76.1/images/annot-open.png create mode 100644 docbook-xsl-1.76.1/images/blank.png create mode 100644 docbook-xsl-1.76.1/images/callouts/1.gif create mode 100644 docbook-xsl-1.76.1/images/callouts/1.png create mode 100644 docbook-xsl-1.76.1/images/callouts/1.svg create mode 100644 docbook-xsl-1.76.1/images/callouts/10.gif create mode 100644 docbook-xsl-1.76.1/images/callouts/10.png create mode 100644 docbook-xsl-1.76.1/images/callouts/10.svg create mode 100644 docbook-xsl-1.76.1/images/callouts/11.gif create mode 100644 docbook-xsl-1.76.1/images/callouts/11.png create mode 100644 docbook-xsl-1.76.1/images/callouts/11.svg create mode 100644 docbook-xsl-1.76.1/images/callouts/12.gif create mode 100644 docbook-xsl-1.76.1/images/callouts/12.png create mode 100644 docbook-xsl-1.76.1/images/callouts/12.svg create mode 100644 docbook-xsl-1.76.1/images/callouts/13.gif create mode 100644 docbook-xsl-1.76.1/images/callouts/13.png create mode 100644 docbook-xsl-1.76.1/images/callouts/13.svg create mode 100644 docbook-xsl-1.76.1/images/callouts/14.gif create mode 100644 docbook-xsl-1.76.1/images/callouts/14.png create mode 100644 docbook-xsl-1.76.1/images/callouts/14.svg create mode 100644 docbook-xsl-1.76.1/images/callouts/15.gif create mode 100644 docbook-xsl-1.76.1/images/callouts/15.png create mode 100644 docbook-xsl-1.76.1/images/callouts/15.svg create mode 100644 docbook-xsl-1.76.1/images/callouts/16.svg create mode 100644 docbook-xsl-1.76.1/images/callouts/17.svg create mode 100644 docbook-xsl-1.76.1/images/callouts/18.svg create mode 100644 docbook-xsl-1.76.1/images/callouts/19.svg create mode 100644 docbook-xsl-1.76.1/images/callouts/2.gif create mode 100644 docbook-xsl-1.76.1/images/callouts/2.png create mode 100644 docbook-xsl-1.76.1/images/callouts/2.svg create mode 100644 docbook-xsl-1.76.1/images/callouts/20.svg create mode 100644 docbook-xsl-1.76.1/images/callouts/21.svg create mode 100644 docbook-xsl-1.76.1/images/callouts/22.svg create mode 100644 docbook-xsl-1.76.1/images/callouts/23.svg create mode 100644 docbook-xsl-1.76.1/images/callouts/24.svg create mode 100644 docbook-xsl-1.76.1/images/callouts/25.svg create mode 100644 docbook-xsl-1.76.1/images/callouts/26.svg create mode 100644 docbook-xsl-1.76.1/images/callouts/27.svg create mode 100644 docbook-xsl-1.76.1/images/callouts/28.svg create mode 100644 docbook-xsl-1.76.1/images/callouts/29.svg create mode 100644 docbook-xsl-1.76.1/images/callouts/3.gif create mode 100644 docbook-xsl-1.76.1/images/callouts/3.png create mode 100644 docbook-xsl-1.76.1/images/callouts/3.svg create mode 100644 docbook-xsl-1.76.1/images/callouts/30.svg create mode 100644 docbook-xsl-1.76.1/images/callouts/4.gif create mode 100644 docbook-xsl-1.76.1/images/callouts/4.png create mode 100644 docbook-xsl-1.76.1/images/callouts/4.svg create mode 100644 docbook-xsl-1.76.1/images/callouts/5.gif create mode 100644 docbook-xsl-1.76.1/images/callouts/5.png create mode 100644 docbook-xsl-1.76.1/images/callouts/5.svg create mode 100644 docbook-xsl-1.76.1/images/callouts/6.gif create mode 100644 docbook-xsl-1.76.1/images/callouts/6.png create mode 100644 docbook-xsl-1.76.1/images/callouts/6.svg create mode 100644 docbook-xsl-1.76.1/images/callouts/7.gif create mode 100644 docbook-xsl-1.76.1/images/callouts/7.png create mode 100644 docbook-xsl-1.76.1/images/callouts/7.svg create mode 100644 docbook-xsl-1.76.1/images/callouts/8.gif create mode 100644 docbook-xsl-1.76.1/images/callouts/8.png create mode 100644 docbook-xsl-1.76.1/images/callouts/8.svg create mode 100644 docbook-xsl-1.76.1/images/callouts/9.gif create mode 100644 docbook-xsl-1.76.1/images/callouts/9.png create mode 100644 docbook-xsl-1.76.1/images/callouts/9.svg create mode 100644 docbook-xsl-1.76.1/images/caution.gif create mode 100644 docbook-xsl-1.76.1/images/caution.png create mode 100644 docbook-xsl-1.76.1/images/caution.svg create mode 100644 docbook-xsl-1.76.1/images/caution.tif create mode 100644 docbook-xsl-1.76.1/images/colorsvg/caution.svg create mode 100644 docbook-xsl-1.76.1/images/colorsvg/home.svg create mode 100644 docbook-xsl-1.76.1/images/colorsvg/important.svg create mode 100644 docbook-xsl-1.76.1/images/colorsvg/next.svg create mode 100644 docbook-xsl-1.76.1/images/colorsvg/note.svg create mode 100644 docbook-xsl-1.76.1/images/colorsvg/prev.svg create mode 100644 docbook-xsl-1.76.1/images/colorsvg/tip.svg create mode 100644 docbook-xsl-1.76.1/images/colorsvg/up.svg create mode 100644 docbook-xsl-1.76.1/images/colorsvg/warning.svg create mode 100644 docbook-xsl-1.76.1/images/draft.png create mode 100644 docbook-xsl-1.76.1/images/home.gif create mode 100644 docbook-xsl-1.76.1/images/home.png create mode 100644 docbook-xsl-1.76.1/images/home.svg create mode 100644 docbook-xsl-1.76.1/images/important.gif create mode 100644 docbook-xsl-1.76.1/images/important.png create mode 100644 docbook-xsl-1.76.1/images/important.svg create mode 100644 docbook-xsl-1.76.1/images/important.tif create mode 100644 docbook-xsl-1.76.1/images/next.gif create mode 100644 docbook-xsl-1.76.1/images/next.png create mode 100644 docbook-xsl-1.76.1/images/next.svg create mode 100644 docbook-xsl-1.76.1/images/note.gif create mode 100644 docbook-xsl-1.76.1/images/note.png create mode 100644 docbook-xsl-1.76.1/images/note.svg create mode 100644 docbook-xsl-1.76.1/images/note.tif create mode 100644 docbook-xsl-1.76.1/images/prev.gif create mode 100644 docbook-xsl-1.76.1/images/prev.png create mode 100644 docbook-xsl-1.76.1/images/prev.svg create mode 100644 docbook-xsl-1.76.1/images/tip.gif create mode 100644 docbook-xsl-1.76.1/images/tip.png create mode 100644 docbook-xsl-1.76.1/images/tip.svg create mode 100644 docbook-xsl-1.76.1/images/tip.tif create mode 100644 docbook-xsl-1.76.1/images/toc-blank.png create mode 100644 docbook-xsl-1.76.1/images/toc-minus.png create mode 100644 docbook-xsl-1.76.1/images/toc-plus.png create mode 100644 docbook-xsl-1.76.1/images/up.gif create mode 100644 docbook-xsl-1.76.1/images/up.png create mode 100644 docbook-xsl-1.76.1/images/up.svg create mode 100644 docbook-xsl-1.76.1/images/warning.gif create mode 100644 docbook-xsl-1.76.1/images/warning.png create mode 100644 docbook-xsl-1.76.1/images/warning.svg create mode 100644 docbook-xsl-1.76.1/images/warning.tif create mode 100755 docbook-xsl-1.76.1/install.sh create mode 100644 docbook-xsl-1.76.1/javahelp/javahelp.xsl create mode 100644 docbook-xsl-1.76.1/javahelp/profile-javahelp.xsl create mode 100644 docbook-xsl-1.76.1/lib/lib.xsl create mode 100644 docbook-xsl-1.76.1/manpages/ChangeLog.20020917 create mode 100644 docbook-xsl-1.76.1/manpages/block.xsl create mode 100644 docbook-xsl-1.76.1/manpages/charmap.groff.xsl create mode 100644 docbook-xsl-1.76.1/manpages/docbook.xsl create mode 100644 docbook-xsl-1.76.1/manpages/endnotes.xsl create mode 100644 docbook-xsl-1.76.1/manpages/html-synop.xsl create mode 100644 docbook-xsl-1.76.1/manpages/info.xsl create mode 100644 docbook-xsl-1.76.1/manpages/inline.xsl create mode 100644 docbook-xsl-1.76.1/manpages/lists.xsl create mode 100644 docbook-xsl-1.76.1/manpages/other.xsl create mode 100644 docbook-xsl-1.76.1/manpages/param.xml create mode 100644 docbook-xsl-1.76.1/manpages/param.xsl create mode 100644 docbook-xsl-1.76.1/manpages/pi.xml create mode 100644 docbook-xsl-1.76.1/manpages/pi.xsl create mode 100644 docbook-xsl-1.76.1/manpages/profile-docbook.xsl create mode 100644 docbook-xsl-1.76.1/manpages/refentry.xsl create mode 100644 docbook-xsl-1.76.1/manpages/synop.xsl create mode 100644 docbook-xsl-1.76.1/manpages/table.xsl create mode 100644 docbook-xsl-1.76.1/manpages/utility.xsl create mode 100644 docbook-xsl-1.76.1/params/abstract.notitle.enabled.xml create mode 100644 docbook-xsl-1.76.1/params/abstract.properties.xml create mode 100644 docbook-xsl-1.76.1/params/abstract.title.properties.xml create mode 100644 docbook-xsl-1.76.1/params/active.toc.xml create mode 100644 docbook-xsl-1.76.1/params/ade.extensions.xml create mode 100644 docbook-xsl-1.76.1/params/admon.graphics.extension.xml create mode 100644 docbook-xsl-1.76.1/params/admon.graphics.path.xml create mode 100644 docbook-xsl-1.76.1/params/admon.graphics.xml create mode 100644 docbook-xsl-1.76.1/params/admon.style.xml create mode 100644 docbook-xsl-1.76.1/params/admon.textlabel.xml create mode 100644 docbook-xsl-1.76.1/params/admonition.properties.xml create mode 100644 docbook-xsl-1.76.1/params/admonition.title.properties.xml create mode 100644 docbook-xsl-1.76.1/params/alignment.xml create mode 100644 docbook-xsl-1.76.1/params/annotate.toc.xml create mode 100644 docbook-xsl-1.76.1/params/annotation.css.xml create mode 100644 docbook-xsl-1.76.1/params/annotation.graphic.close.xml create mode 100644 docbook-xsl-1.76.1/params/annotation.graphic.open.xml create mode 100644 docbook-xsl-1.76.1/params/annotation.js.xml create mode 100644 docbook-xsl-1.76.1/params/annotation.support.xml create mode 100644 docbook-xsl-1.76.1/params/appendix.autolabel.xml create mode 100644 docbook-xsl-1.76.1/params/arbortext.extensions.xml create mode 100644 docbook-xsl-1.76.1/params/article.appendix.title.properties.xml create mode 100644 docbook-xsl-1.76.1/params/author.othername.in.middle.xml create mode 100644 docbook-xsl-1.76.1/params/autolayout-file.xml create mode 100644 docbook-xsl-1.76.1/params/autotoc.label.in.hyperlink.xml create mode 100644 docbook-xsl-1.76.1/params/autotoc.label.separator.xml create mode 100644 docbook-xsl-1.76.1/params/axf.extensions.xml create mode 100644 docbook-xsl-1.76.1/params/banner.before.navigation.xml create mode 100644 docbook-xsl-1.76.1/params/base.dir.xml create mode 100644 docbook-xsl-1.76.1/params/biblioentry.item.separator.xml create mode 100644 docbook-xsl-1.76.1/params/biblioentry.properties.xml create mode 100644 docbook-xsl-1.76.1/params/bibliography.collection.xml create mode 100644 docbook-xsl-1.76.1/params/bibliography.numbered.xml create mode 100644 docbook-xsl-1.76.1/params/bibliography.style.xml create mode 100644 docbook-xsl-1.76.1/params/blockquote.properties.xml create mode 100644 docbook-xsl-1.76.1/params/blurb.on.titlepage.enabled.xml create mode 100644 docbook-xsl-1.76.1/params/body.attributes.xml create mode 100644 docbook-xsl-1.76.1/params/body.bg.color.xml create mode 100644 docbook-xsl-1.76.1/params/body.end.indent.xml create mode 100644 docbook-xsl-1.76.1/params/body.font.family.xml create mode 100644 docbook-xsl-1.76.1/params/body.font.master.xml create mode 100644 docbook-xsl-1.76.1/params/body.font.size.xml create mode 100644 docbook-xsl-1.76.1/params/body.margin.bottom.xml create mode 100644 docbook-xsl-1.76.1/params/body.margin.top.xml create mode 100644 docbook-xsl-1.76.1/params/body.start.indent.xml create mode 100644 docbook-xsl-1.76.1/params/bookmarks.collapse.xml create mode 100644 docbook-xsl-1.76.1/params/bridgehead.in.toc.xml create mode 100644 docbook-xsl-1.76.1/params/bullet.image.xml create mode 100644 docbook-xsl-1.76.1/params/callout.defaultcolumn.xml create mode 100644 docbook-xsl-1.76.1/params/callout.graphics.extension.xml create mode 100644 docbook-xsl-1.76.1/params/callout.graphics.number.limit.xml create mode 100644 docbook-xsl-1.76.1/params/callout.graphics.path.xml create mode 100644 docbook-xsl-1.76.1/params/callout.graphics.xml create mode 100644 docbook-xsl-1.76.1/params/callout.icon.size.xml create mode 100644 docbook-xsl-1.76.1/params/callout.list.table.xml create mode 100644 docbook-xsl-1.76.1/params/callout.unicode.font.xml create mode 100644 docbook-xsl-1.76.1/params/callout.unicode.number.limit.xml create mode 100644 docbook-xsl-1.76.1/params/callout.unicode.start.character.xml create mode 100644 docbook-xsl-1.76.1/params/callout.unicode.xml create mode 100644 docbook-xsl-1.76.1/params/callouts.extension.xml create mode 100644 docbook-xsl-1.76.1/params/chapter.autolabel.xml create mode 100644 docbook-xsl-1.76.1/params/chunk.append.xml create mode 100644 docbook-xsl-1.76.1/params/chunk.first.sections.xml create mode 100644 docbook-xsl-1.76.1/params/chunk.quietly.xml create mode 100644 docbook-xsl-1.76.1/params/chunk.section.depth.xml create mode 100644 docbook-xsl-1.76.1/params/chunk.sections.xml create mode 100644 docbook-xsl-1.76.1/params/chunk.separate.lots.xml create mode 100644 docbook-xsl-1.76.1/params/chunk.toc.xml create mode 100644 docbook-xsl-1.76.1/params/chunk.tocs.and.lots.has.title.xml create mode 100644 docbook-xsl-1.76.1/params/chunk.tocs.and.lots.xml create mode 100644 docbook-xsl-1.76.1/params/chunker.output.cdata-section-elements.xml create mode 100644 docbook-xsl-1.76.1/params/chunker.output.doctype-public.xml create mode 100644 docbook-xsl-1.76.1/params/chunker.output.doctype-system.xml create mode 100644 docbook-xsl-1.76.1/params/chunker.output.encoding.xml create mode 100644 docbook-xsl-1.76.1/params/chunker.output.indent.xml create mode 100644 docbook-xsl-1.76.1/params/chunker.output.media-type.xml create mode 100644 docbook-xsl-1.76.1/params/chunker.output.method.xml create mode 100644 docbook-xsl-1.76.1/params/chunker.output.omit-xml-declaration.xml create mode 100644 docbook-xsl-1.76.1/params/chunker.output.standalone.xml create mode 100644 docbook-xsl-1.76.1/params/citerefentry.link.xml create mode 100644 docbook-xsl-1.76.1/params/collect.xref.targets.xml create mode 100644 docbook-xsl-1.76.1/params/column.count.back.xml create mode 100644 docbook-xsl-1.76.1/params/column.count.body.xml create mode 100644 docbook-xsl-1.76.1/params/column.count.front.xml create mode 100644 docbook-xsl-1.76.1/params/column.count.index.xml create mode 100644 docbook-xsl-1.76.1/params/column.count.lot.xml create mode 100644 docbook-xsl-1.76.1/params/column.count.titlepage.xml create mode 100644 docbook-xsl-1.76.1/params/column.gap.back.xml create mode 100644 docbook-xsl-1.76.1/params/column.gap.body.xml create mode 100644 docbook-xsl-1.76.1/params/column.gap.front.xml create mode 100644 docbook-xsl-1.76.1/params/column.gap.index.xml create mode 100644 docbook-xsl-1.76.1/params/column.gap.lot.xml create mode 100644 docbook-xsl-1.76.1/params/column.gap.titlepage.xml create mode 100644 docbook-xsl-1.76.1/params/compact.list.item.spacing.xml create mode 100644 docbook-xsl-1.76.1/params/component.label.includes.part.label.xml create mode 100644 docbook-xsl-1.76.1/params/component.title.properties.xml create mode 100644 docbook-xsl-1.76.1/params/component.titlepage.properties.xml create mode 100644 docbook-xsl-1.76.1/params/contrib.inline.enabled.xml create mode 100644 docbook-xsl-1.76.1/params/crop.mark.bleed.xml create mode 100644 docbook-xsl-1.76.1/params/crop.mark.offset.xml create mode 100644 docbook-xsl-1.76.1/params/crop.mark.width.xml create mode 100644 docbook-xsl-1.76.1/params/crop.marks.xml create mode 100644 docbook-xsl-1.76.1/params/css.decoration.xml create mode 100644 docbook-xsl-1.76.1/params/css.stylesheet.dir.xml create mode 100644 docbook-xsl-1.76.1/params/css.stylesheet.xml create mode 100644 docbook-xsl-1.76.1/params/current.docid.xml create mode 100644 docbook-xsl-1.76.1/params/currentpage.marker.xml create mode 100644 docbook-xsl-1.76.1/params/custom.css.source.xml create mode 100644 docbook-xsl-1.76.1/params/default.float.class.xml create mode 100644 docbook-xsl-1.76.1/params/default.image.width.xml create mode 100644 docbook-xsl-1.76.1/params/default.table.frame.xml create mode 100644 docbook-xsl-1.76.1/params/default.table.rules.xml create mode 100644 docbook-xsl-1.76.1/params/default.table.width.xml create mode 100644 docbook-xsl-1.76.1/params/default.units.xml create mode 100644 docbook-xsl-1.76.1/params/dingbat.font.family.xml create mode 100644 docbook-xsl-1.76.1/params/docbook.css.link.xml create mode 100644 docbook-xsl-1.76.1/params/docbook.css.source.xml create mode 100644 docbook-xsl-1.76.1/params/double.sided.xml create mode 100644 docbook-xsl-1.76.1/params/draft.mode.xml create mode 100644 docbook-xsl-1.76.1/params/draft.watermark.image.xml create mode 100644 docbook-xsl-1.76.1/params/dry-run.xml create mode 100644 docbook-xsl-1.76.1/params/dynamic.toc.xml create mode 100644 docbook-xsl-1.76.1/params/ebnf.assignment.xml create mode 100644 docbook-xsl-1.76.1/params/ebnf.statement.terminator.xml create mode 100644 docbook-xsl-1.76.1/params/ebnf.table.bgcolor.xml create mode 100644 docbook-xsl-1.76.1/params/ebnf.table.border.xml create mode 100644 docbook-xsl-1.76.1/params/eclipse.autolabel.xml create mode 100644 docbook-xsl-1.76.1/params/eclipse.plugin.id.xml create mode 100644 docbook-xsl-1.76.1/params/eclipse.plugin.name.xml create mode 100644 docbook-xsl-1.76.1/params/eclipse.plugin.provider.xml create mode 100644 docbook-xsl-1.76.1/params/editedby.enabled.xml create mode 100644 docbook-xsl-1.76.1/params/email.delimiters.enabled.xml create mode 100644 docbook-xsl-1.76.1/params/email.mailto.enabled.xml create mode 100644 docbook-xsl-1.76.1/params/emphasis.propagates.style.xml create mode 100644 docbook-xsl-1.76.1/params/entry.propagates.style.xml create mode 100644 docbook-xsl-1.76.1/params/epub.autolabel.xml create mode 100644 docbook-xsl-1.76.1/params/equation.number.properties.xml create mode 100644 docbook-xsl-1.76.1/params/equation.properties.xml create mode 100644 docbook-xsl-1.76.1/params/example.properties.xml create mode 100644 docbook-xsl-1.76.1/params/exsl.node.set.available.xml create mode 100644 docbook-xsl-1.76.1/params/feedback.href.xml create mode 100644 docbook-xsl-1.76.1/params/feedback.link.text.xml create mode 100644 docbook-xsl-1.76.1/params/feedback.with.ids.xml create mode 100644 docbook-xsl-1.76.1/params/figure.properties.xml create mode 100644 docbook-xsl-1.76.1/params/filename-prefix.xml create mode 100644 docbook-xsl-1.76.1/params/firstterm.only.link.xml create mode 100644 docbook-xsl-1.76.1/params/foil.properties.xml create mode 100644 docbook-xsl-1.76.1/params/foil.subtitle.properties.xml create mode 100644 docbook-xsl-1.76.1/params/foil.title.master.xml create mode 100644 docbook-xsl-1.76.1/params/foil.title.size.xml create mode 100644 docbook-xsl-1.76.1/params/foilgroup.properties.xml create mode 100644 docbook-xsl-1.76.1/params/foilgroup.toc.xml create mode 100644 docbook-xsl-1.76.1/params/footer.column.widths.xml create mode 100644 docbook-xsl-1.76.1/params/footer.content.properties.xml create mode 100644 docbook-xsl-1.76.1/params/footer.hr.xml create mode 100644 docbook-xsl-1.76.1/params/footer.rule.xml create mode 100644 docbook-xsl-1.76.1/params/footer.table.height.xml create mode 100644 docbook-xsl-1.76.1/params/footer.table.properties.xml create mode 100644 docbook-xsl-1.76.1/params/footers.on.blank.pages.xml create mode 100644 docbook-xsl-1.76.1/params/footnote.font.size.xml create mode 100644 docbook-xsl-1.76.1/params/footnote.mark.properties.xml create mode 100644 docbook-xsl-1.76.1/params/footnote.number.format.xml create mode 100644 docbook-xsl-1.76.1/params/footnote.number.symbols.xml create mode 100644 docbook-xsl-1.76.1/params/footnote.properties.xml create mode 100644 docbook-xsl-1.76.1/params/footnote.sep.leader.properties.xml create mode 100644 docbook-xsl-1.76.1/params/fop.extensions.xml create mode 100644 docbook-xsl-1.76.1/params/fop1.extensions.xml create mode 100644 docbook-xsl-1.76.1/params/formal.object.properties.xml create mode 100644 docbook-xsl-1.76.1/params/formal.procedures.xml create mode 100644 docbook-xsl-1.76.1/params/formal.title.placement.xml create mode 100644 docbook-xsl-1.76.1/params/formal.title.properties.xml create mode 100644 docbook-xsl-1.76.1/params/funcsynopsis.decoration.xml create mode 100644 docbook-xsl-1.76.1/params/funcsynopsis.style.xml create mode 100644 docbook-xsl-1.76.1/params/function.parens.xml create mode 100644 docbook-xsl-1.76.1/params/generate.css.header.xml create mode 100644 docbook-xsl-1.76.1/params/generate.id.attributes.xml create mode 100644 docbook-xsl-1.76.1/params/generate.index.xml create mode 100644 docbook-xsl-1.76.1/params/generate.legalnotice.link.xml create mode 100644 docbook-xsl-1.76.1/params/generate.manifest.xml create mode 100644 docbook-xsl-1.76.1/params/generate.meta.abstract.xml create mode 100644 docbook-xsl-1.76.1/params/generate.revhistory.link.xml create mode 100644 docbook-xsl-1.76.1/params/generate.section.toc.level.xml create mode 100644 docbook-xsl-1.76.1/params/generate.toc.xml create mode 100644 docbook-xsl-1.76.1/params/glossary.as.blocks.xml create mode 100644 docbook-xsl-1.76.1/params/glossary.collection.xml create mode 100644 docbook-xsl-1.76.1/params/glossary.sort.xml create mode 100644 docbook-xsl-1.76.1/params/glossdef.block.properties.xml create mode 100644 docbook-xsl-1.76.1/params/glossdef.list.properties.xml create mode 100644 docbook-xsl-1.76.1/params/glossentry.list.item.properties.xml create mode 100644 docbook-xsl-1.76.1/params/glossentry.show.acronym.xml create mode 100644 docbook-xsl-1.76.1/params/glosslist.as.blocks.xml create mode 100644 docbook-xsl-1.76.1/params/glossterm.auto.link.xml create mode 100644 docbook-xsl-1.76.1/params/glossterm.block.properties.xml create mode 100644 docbook-xsl-1.76.1/params/glossterm.list.properties.xml create mode 100644 docbook-xsl-1.76.1/params/glossterm.separation.xml create mode 100644 docbook-xsl-1.76.1/params/glossterm.width.xml create mode 100644 docbook-xsl-1.76.1/params/graphic.default.extension.xml create mode 100644 docbook-xsl-1.76.1/params/graphical.admonition.properties.xml create mode 100644 docbook-xsl-1.76.1/params/graphics.dir.xml create mode 100644 docbook-xsl-1.76.1/params/graphicsize.extension.xml create mode 100644 docbook-xsl-1.76.1/params/graphicsize.use.img.src.path.xml create mode 100644 docbook-xsl-1.76.1/params/header.column.widths.xml create mode 100644 docbook-xsl-1.76.1/params/header.content.properties.xml create mode 100644 docbook-xsl-1.76.1/params/header.hr.xml create mode 100644 docbook-xsl-1.76.1/params/header.rule.xml create mode 100644 docbook-xsl-1.76.1/params/header.table.height.xml create mode 100644 docbook-xsl-1.76.1/params/header.table.properties.xml create mode 100644 docbook-xsl-1.76.1/params/headers.on.blank.pages.xml create mode 100644 docbook-xsl-1.76.1/params/hidetoc.image.xml create mode 100644 docbook-xsl-1.76.1/params/highlight.default.language.xml create mode 100644 docbook-xsl-1.76.1/params/highlight.source.xml create mode 100644 docbook-xsl-1.76.1/params/highlight.xslthl.config.xml create mode 100644 docbook-xsl-1.76.1/params/home.image.xml create mode 100644 docbook-xsl-1.76.1/params/html.append.xml create mode 100644 docbook-xsl-1.76.1/params/html.base.xml create mode 100644 docbook-xsl-1.76.1/params/html.cellpadding.xml create mode 100644 docbook-xsl-1.76.1/params/html.cellspacing.xml create mode 100644 docbook-xsl-1.76.1/params/html.cleanup.xml create mode 100644 docbook-xsl-1.76.1/params/html.ext.xml create mode 100644 docbook-xsl-1.76.1/params/html.extra.head.links.xml create mode 100644 docbook-xsl-1.76.1/params/html.head.legalnotice.link.multiple.xml create mode 100644 docbook-xsl-1.76.1/params/html.head.legalnotice.link.types.xml create mode 100644 docbook-xsl-1.76.1/params/html.longdesc.link.xml create mode 100644 docbook-xsl-1.76.1/params/html.longdesc.xml create mode 100644 docbook-xsl-1.76.1/params/html.stylesheet.type.xml create mode 100644 docbook-xsl-1.76.1/params/html.stylesheet.xml create mode 100644 docbook-xsl-1.76.1/params/htmlhelp.alias.file.xml create mode 100644 docbook-xsl-1.76.1/params/htmlhelp.autolabel.xml create mode 100644 docbook-xsl-1.76.1/params/htmlhelp.button.back.xml create mode 100644 docbook-xsl-1.76.1/params/htmlhelp.button.forward.xml create mode 100644 docbook-xsl-1.76.1/params/htmlhelp.button.hideshow.xml create mode 100644 docbook-xsl-1.76.1/params/htmlhelp.button.home.url.xml create mode 100644 docbook-xsl-1.76.1/params/htmlhelp.button.home.xml create mode 100644 docbook-xsl-1.76.1/params/htmlhelp.button.jump1.title.xml create mode 100644 docbook-xsl-1.76.1/params/htmlhelp.button.jump1.url.xml create mode 100644 docbook-xsl-1.76.1/params/htmlhelp.button.jump1.xml create mode 100644 docbook-xsl-1.76.1/params/htmlhelp.button.jump2.title.xml create mode 100644 docbook-xsl-1.76.1/params/htmlhelp.button.jump2.url.xml create mode 100644 docbook-xsl-1.76.1/params/htmlhelp.button.jump2.xml create mode 100644 docbook-xsl-1.76.1/params/htmlhelp.button.locate.xml create mode 100644 docbook-xsl-1.76.1/params/htmlhelp.button.next.xml create mode 100644 docbook-xsl-1.76.1/params/htmlhelp.button.options.xml create mode 100644 docbook-xsl-1.76.1/params/htmlhelp.button.prev.xml create mode 100644 docbook-xsl-1.76.1/params/htmlhelp.button.print.xml create mode 100644 docbook-xsl-1.76.1/params/htmlhelp.button.refresh.xml create mode 100644 docbook-xsl-1.76.1/params/htmlhelp.button.stop.xml create mode 100644 docbook-xsl-1.76.1/params/htmlhelp.button.zoom.xml create mode 100644 docbook-xsl-1.76.1/params/htmlhelp.chm.xml create mode 100644 docbook-xsl-1.76.1/params/htmlhelp.default.topic.xml create mode 100644 docbook-xsl-1.76.1/params/htmlhelp.display.progress.xml create mode 100644 docbook-xsl-1.76.1/params/htmlhelp.encoding.xml create mode 100644 docbook-xsl-1.76.1/params/htmlhelp.enhanced.decompilation.xml create mode 100644 docbook-xsl-1.76.1/params/htmlhelp.enumerate.images.xml create mode 100644 docbook-xsl-1.76.1/params/htmlhelp.force.map.and.alias.xml create mode 100644 docbook-xsl-1.76.1/params/htmlhelp.hhc.binary.xml create mode 100644 docbook-xsl-1.76.1/params/htmlhelp.hhc.folders.instead.books.xml create mode 100644 docbook-xsl-1.76.1/params/htmlhelp.hhc.section.depth.xml create mode 100644 docbook-xsl-1.76.1/params/htmlhelp.hhc.show.root.xml create mode 100644 docbook-xsl-1.76.1/params/htmlhelp.hhc.width.xml create mode 100644 docbook-xsl-1.76.1/params/htmlhelp.hhc.xml create mode 100644 docbook-xsl-1.76.1/params/htmlhelp.hhk.xml create mode 100644 docbook-xsl-1.76.1/params/htmlhelp.hhp.tail.xml create mode 100644 docbook-xsl-1.76.1/params/htmlhelp.hhp.window.xml create mode 100644 docbook-xsl-1.76.1/params/htmlhelp.hhp.windows.xml create mode 100644 docbook-xsl-1.76.1/params/htmlhelp.hhp.xml create mode 100644 docbook-xsl-1.76.1/params/htmlhelp.map.file.xml create mode 100644 docbook-xsl-1.76.1/params/htmlhelp.only.xml create mode 100644 docbook-xsl-1.76.1/params/htmlhelp.remember.window.position.xml create mode 100644 docbook-xsl-1.76.1/params/htmlhelp.show.advanced.search.xml create mode 100644 docbook-xsl-1.76.1/params/htmlhelp.show.favorities.xml create mode 100644 docbook-xsl-1.76.1/params/htmlhelp.show.menu.xml create mode 100644 docbook-xsl-1.76.1/params/htmlhelp.show.toolbar.text.xml create mode 100644 docbook-xsl-1.76.1/params/htmlhelp.title.xml create mode 100644 docbook-xsl-1.76.1/params/htmlhelp.use.hhk.xml create mode 100644 docbook-xsl-1.76.1/params/htmlhelp.window.geometry.xml create mode 100644 docbook-xsl-1.76.1/params/hyphenate.verbatim.characters.xml create mode 100644 docbook-xsl-1.76.1/params/hyphenate.verbatim.xml create mode 100644 docbook-xsl-1.76.1/params/hyphenate.xml create mode 100644 docbook-xsl-1.76.1/params/id.warnings.xml create mode 100644 docbook-xsl-1.76.1/params/ignore.image.scaling.xml create mode 100644 docbook-xsl-1.76.1/params/img.src.path.xml create mode 100644 docbook-xsl-1.76.1/params/index.div.title.properties.xml create mode 100644 docbook-xsl-1.76.1/params/index.entry.properties.xml create mode 100644 docbook-xsl-1.76.1/params/index.links.to.section.xml create mode 100644 docbook-xsl-1.76.1/params/index.method.xml create mode 100644 docbook-xsl-1.76.1/params/index.number.separator.xml create mode 100644 docbook-xsl-1.76.1/params/index.on.role.xml create mode 100644 docbook-xsl-1.76.1/params/index.on.type.xml create mode 100644 docbook-xsl-1.76.1/params/index.page.number.properties.xml create mode 100644 docbook-xsl-1.76.1/params/index.prefer.titleabbrev.xml create mode 100644 docbook-xsl-1.76.1/params/index.preferred.page.properties.xml create mode 100644 docbook-xsl-1.76.1/params/index.range.separator.xml create mode 100644 docbook-xsl-1.76.1/params/index.term.separator.xml create mode 100644 docbook-xsl-1.76.1/params/informal.object.properties.xml create mode 100644 docbook-xsl-1.76.1/params/informalequation.properties.xml create mode 100644 docbook-xsl-1.76.1/params/informalexample.properties.xml create mode 100644 docbook-xsl-1.76.1/params/informalfigure.properties.xml create mode 100644 docbook-xsl-1.76.1/params/informaltable.properties.xml create mode 100644 docbook-xsl-1.76.1/params/inherit.keywords.xml create mode 100644 docbook-xsl-1.76.1/params/insert.link.page.number.xml create mode 100644 docbook-xsl-1.76.1/params/insert.olink.page.number.xml create mode 100644 docbook-xsl-1.76.1/params/insert.olink.pdf.frag.xml create mode 100644 docbook-xsl-1.76.1/params/insert.xref.page.number.xml create mode 100644 docbook-xsl-1.76.1/params/itemizedlist.label.properties.xml create mode 100644 docbook-xsl-1.76.1/params/itemizedlist.label.width.xml create mode 100644 docbook-xsl-1.76.1/params/itemizedlist.properties.xml create mode 100644 docbook-xsl-1.76.1/params/javahelp.encoding.xml create mode 100644 docbook-xsl-1.76.1/params/keep.relative.image.uris.xml create mode 100644 docbook-xsl-1.76.1/params/keyboard.nav.xml create mode 100644 docbook-xsl-1.76.1/params/l10n.gentext.default.language.xml create mode 100644 docbook-xsl-1.76.1/params/l10n.gentext.language.xml create mode 100644 docbook-xsl-1.76.1/params/l10n.gentext.use.xref.language.xml create mode 100644 docbook-xsl-1.76.1/params/l10n.lang.value.rfc.compliant.xml create mode 100644 docbook-xsl-1.76.1/params/label.from.part.xml create mode 100644 docbook-xsl-1.76.1/params/line-height.xml create mode 100644 docbook-xsl-1.76.1/params/linenumbering.everyNth.xml create mode 100644 docbook-xsl-1.76.1/params/linenumbering.extension.xml create mode 100644 docbook-xsl-1.76.1/params/linenumbering.separator.xml create mode 100644 docbook-xsl-1.76.1/params/linenumbering.width.xml create mode 100644 docbook-xsl-1.76.1/params/link.mailto.url.xml create mode 100644 docbook-xsl-1.76.1/params/list.block.properties.xml create mode 100644 docbook-xsl-1.76.1/params/list.block.spacing.xml create mode 100644 docbook-xsl-1.76.1/params/list.item.spacing.xml create mode 100644 docbook-xsl-1.76.1/params/make.clean.html.xml create mode 100644 docbook-xsl-1.76.1/params/make.graphic.viewport.xml create mode 100644 docbook-xsl-1.76.1/params/make.index.markup.xml create mode 100644 docbook-xsl-1.76.1/params/make.single.year.ranges.xml create mode 100644 docbook-xsl-1.76.1/params/make.valid.html.xml create mode 100644 docbook-xsl-1.76.1/params/make.year.ranges.xml create mode 100644 docbook-xsl-1.76.1/params/man.authors.section.enabled.xml create mode 100644 docbook-xsl-1.76.1/params/man.base.url.for.relative.links.xml create mode 100644 docbook-xsl-1.76.1/params/man.break.after.slash.xml create mode 100644 docbook-xsl-1.76.1/params/man.charmap.enabled.xml create mode 100644 docbook-xsl-1.76.1/params/man.charmap.subset.profile.english.xml create mode 100644 docbook-xsl-1.76.1/params/man.charmap.subset.profile.xml create mode 100644 docbook-xsl-1.76.1/params/man.charmap.uri.xml create mode 100644 docbook-xsl-1.76.1/params/man.charmap.use.subset.xml create mode 100644 docbook-xsl-1.76.1/params/man.copyright.section.enabled.xml create mode 100644 docbook-xsl-1.76.1/params/man.endnotes.are.numbered.xml create mode 100644 docbook-xsl-1.76.1/params/man.endnotes.list.enabled.xml create mode 100644 docbook-xsl-1.76.1/params/man.endnotes.list.heading.xml create mode 100644 docbook-xsl-1.76.1/params/man.font.funcprototype.xml create mode 100644 docbook-xsl-1.76.1/params/man.font.funcsynopsisinfo.xml create mode 100644 docbook-xsl-1.76.1/params/man.font.links.xml create mode 100644 docbook-xsl-1.76.1/params/man.font.table.headings.xml create mode 100644 docbook-xsl-1.76.1/params/man.font.table.title.xml create mode 100644 docbook-xsl-1.76.1/params/man.funcsynopsis.style.xml create mode 100644 docbook-xsl-1.76.1/params/man.hyphenate.computer.inlines.xml create mode 100644 docbook-xsl-1.76.1/params/man.hyphenate.filenames.xml create mode 100644 docbook-xsl-1.76.1/params/man.hyphenate.urls.xml create mode 100644 docbook-xsl-1.76.1/params/man.hyphenate.xml create mode 100644 docbook-xsl-1.76.1/params/man.indent.blurbs.xml create mode 100644 docbook-xsl-1.76.1/params/man.indent.lists.xml create mode 100644 docbook-xsl-1.76.1/params/man.indent.refsect.xml create mode 100644 docbook-xsl-1.76.1/params/man.indent.verbatims.xml create mode 100644 docbook-xsl-1.76.1/params/man.indent.width.xml create mode 100644 docbook-xsl-1.76.1/params/man.justify.xml create mode 100644 docbook-xsl-1.76.1/params/man.output.base.dir.xml create mode 100644 docbook-xsl-1.76.1/params/man.output.better.ps.enabled.xml create mode 100644 docbook-xsl-1.76.1/params/man.output.encoding.xml create mode 100644 docbook-xsl-1.76.1/params/man.output.in.separate.dir.xml create mode 100644 docbook-xsl-1.76.1/params/man.output.lang.in.name.enabled.xml create mode 100644 docbook-xsl-1.76.1/params/man.output.manifest.enabled.xml create mode 100644 docbook-xsl-1.76.1/params/man.output.manifest.filename.xml create mode 100644 docbook-xsl-1.76.1/params/man.output.quietly.xml create mode 100644 docbook-xsl-1.76.1/params/man.output.subdirs.enabled.xml create mode 100644 docbook-xsl-1.76.1/params/man.segtitle.suppress.xml create mode 100644 docbook-xsl-1.76.1/params/man.string.subst.map.local.post.xml create mode 100644 docbook-xsl-1.76.1/params/man.string.subst.map.local.pre.xml create mode 100644 docbook-xsl-1.76.1/params/man.string.subst.map.xml create mode 100644 docbook-xsl-1.76.1/params/man.subheading.divider.enabled.xml create mode 100644 docbook-xsl-1.76.1/params/man.subheading.divider.xml create mode 100644 docbook-xsl-1.76.1/params/man.table.footnotes.divider.xml create mode 100644 docbook-xsl-1.76.1/params/man.th.extra1.suppress.xml create mode 100644 docbook-xsl-1.76.1/params/man.th.extra2.max.length.xml create mode 100644 docbook-xsl-1.76.1/params/man.th.extra2.suppress.xml create mode 100644 docbook-xsl-1.76.1/params/man.th.extra3.max.length.xml create mode 100644 docbook-xsl-1.76.1/params/man.th.extra3.suppress.xml create mode 100644 docbook-xsl-1.76.1/params/man.th.title.max.length.xml create mode 100644 docbook-xsl-1.76.1/params/manifest.in.base.dir.xml create mode 100644 docbook-xsl-1.76.1/params/manifest.xml create mode 100644 docbook-xsl-1.76.1/params/manual.toc.xml create mode 100644 docbook-xsl-1.76.1/params/margin.note.float.type.xml create mode 100644 docbook-xsl-1.76.1/params/margin.note.properties.xml create mode 100644 docbook-xsl-1.76.1/params/margin.note.title.properties.xml create mode 100644 docbook-xsl-1.76.1/params/margin.note.width.xml create mode 100644 docbook-xsl-1.76.1/params/marker.section.level.xml create mode 100644 docbook-xsl-1.76.1/params/menuchoice.menu.separator.xml create mode 100644 docbook-xsl-1.76.1/params/menuchoice.separator.xml create mode 100644 docbook-xsl-1.76.1/params/minus.image.xml create mode 100644 docbook-xsl-1.76.1/params/monospace.font.family.xml create mode 100644 docbook-xsl-1.76.1/params/monospace.properties.xml create mode 100644 docbook-xsl-1.76.1/params/monospace.verbatim.font.width.xml create mode 100644 docbook-xsl-1.76.1/params/monospace.verbatim.properties.xml create mode 100644 docbook-xsl-1.76.1/params/multiframe.bottom.bgcolor.xml create mode 100644 docbook-xsl-1.76.1/params/multiframe.navigation.height.xml create mode 100644 docbook-xsl-1.76.1/params/multiframe.top.bgcolor.xml create mode 100644 docbook-xsl-1.76.1/params/multiframe.xml create mode 100644 docbook-xsl-1.76.1/params/nav.separator.xml create mode 100644 docbook-xsl-1.76.1/params/nav.table.summary.xml create mode 100644 docbook-xsl-1.76.1/params/navbgcolor.xml create mode 100644 docbook-xsl-1.76.1/params/navbodywidth.xml create mode 100644 docbook-xsl-1.76.1/params/navig.graphics.extension.xml create mode 100644 docbook-xsl-1.76.1/params/navig.graphics.path.xml create mode 100644 docbook-xsl-1.76.1/params/navig.graphics.xml create mode 100644 docbook-xsl-1.76.1/params/navig.showtitles.xml create mode 100644 docbook-xsl-1.76.1/params/navtocwidth.xml create mode 100644 docbook-xsl-1.76.1/params/next.image.xml create mode 100644 docbook-xsl-1.76.1/params/no.home.image.xml create mode 100644 docbook-xsl-1.76.1/params/no.next.image.xml create mode 100644 docbook-xsl-1.76.1/params/no.prev.image.xml create mode 100644 docbook-xsl-1.76.1/params/no.toc.image.xml create mode 100644 docbook-xsl-1.76.1/params/no.up.image.xml create mode 100644 docbook-xsl-1.76.1/params/nominal.image.depth.xml create mode 100644 docbook-xsl-1.76.1/params/nominal.image.width.xml create mode 100644 docbook-xsl-1.76.1/params/nominal.table.width.xml create mode 100644 docbook-xsl-1.76.1/params/nongraphical.admonition.properties.xml create mode 100644 docbook-xsl-1.76.1/params/normal.para.spacing.xml create mode 100644 docbook-xsl-1.76.1/params/olink.base.uri.xml create mode 100644 docbook-xsl-1.76.1/params/olink.debug.xml create mode 100644 docbook-xsl-1.76.1/params/olink.doctitle.xml create mode 100644 docbook-xsl-1.76.1/params/olink.fragid.xml create mode 100644 docbook-xsl-1.76.1/params/olink.lang.fallback.sequence.xml create mode 100644 docbook-xsl-1.76.1/params/olink.outline.ext.xml create mode 100644 docbook-xsl-1.76.1/params/olink.properties.xml create mode 100644 docbook-xsl-1.76.1/params/olink.pubid.xml create mode 100644 docbook-xsl-1.76.1/params/olink.resolver.xml create mode 100644 docbook-xsl-1.76.1/params/olink.sysid.xml create mode 100644 docbook-xsl-1.76.1/params/orderedlist.label.properties.xml create mode 100644 docbook-xsl-1.76.1/params/orderedlist.label.width.xml create mode 100644 docbook-xsl-1.76.1/params/orderedlist.properties.xml create mode 100644 docbook-xsl-1.76.1/params/othercredit.like.author.enabled.xml create mode 100644 docbook-xsl-1.76.1/params/output-root.xml create mode 100644 docbook-xsl-1.76.1/params/output.indent.xml create mode 100644 docbook-xsl-1.76.1/params/overlay.js.xml create mode 100644 docbook-xsl-1.76.1/params/overlay.logo.xml create mode 100644 docbook-xsl-1.76.1/params/overlay.xml create mode 100644 docbook-xsl-1.76.1/params/page.height.portrait.xml create mode 100644 docbook-xsl-1.76.1/params/page.height.xml create mode 100644 docbook-xsl-1.76.1/params/page.margin.bottom.xml create mode 100644 docbook-xsl-1.76.1/params/page.margin.inner.xml create mode 100644 docbook-xsl-1.76.1/params/page.margin.outer.xml create mode 100644 docbook-xsl-1.76.1/params/page.margin.top.xml create mode 100644 docbook-xsl-1.76.1/params/page.orientation.xml create mode 100644 docbook-xsl-1.76.1/params/page.width.portrait.xml create mode 100644 docbook-xsl-1.76.1/params/page.width.xml create mode 100644 docbook-xsl-1.76.1/params/pages.template.xml create mode 100644 docbook-xsl-1.76.1/params/paper.type.xml create mode 100644 docbook-xsl-1.76.1/params/para.propagates.style.xml create mode 100644 docbook-xsl-1.76.1/params/part.autolabel.xml create mode 100644 docbook-xsl-1.76.1/params/passivetex.extensions.xml create mode 100644 docbook-xsl-1.76.1/params/pgwide.properties.xml create mode 100644 docbook-xsl-1.76.1/params/phrase.propagates.style.xml create mode 100644 docbook-xsl-1.76.1/params/pixels.per.inch.xml create mode 100644 docbook-xsl-1.76.1/params/plus.image.xml create mode 100644 docbook-xsl-1.76.1/params/points.per.em.xml create mode 100644 docbook-xsl-1.76.1/params/preface.autolabel.xml create mode 100644 docbook-xsl-1.76.1/params/prefer.internal.olink.xml create mode 100644 docbook-xsl-1.76.1/params/preferred.mediaobject.role.xml create mode 100644 docbook-xsl-1.76.1/params/prev.image.xml create mode 100644 docbook-xsl-1.76.1/params/procedure.properties.xml create mode 100644 docbook-xsl-1.76.1/params/process.empty.source.toc.xml create mode 100644 docbook-xsl-1.76.1/params/process.source.toc.xml create mode 100644 docbook-xsl-1.76.1/params/profile.arch.xml create mode 100644 docbook-xsl-1.76.1/params/profile.attribute.xml create mode 100644 docbook-xsl-1.76.1/params/profile.audience.xml create mode 100644 docbook-xsl-1.76.1/params/profile.condition.xml create mode 100644 docbook-xsl-1.76.1/params/profile.conformance.xml create mode 100644 docbook-xsl-1.76.1/params/profile.lang.xml create mode 100644 docbook-xsl-1.76.1/params/profile.os.xml create mode 100644 docbook-xsl-1.76.1/params/profile.revision.xml create mode 100644 docbook-xsl-1.76.1/params/profile.revisionflag.xml create mode 100644 docbook-xsl-1.76.1/params/profile.role.xml create mode 100644 docbook-xsl-1.76.1/params/profile.security.xml create mode 100644 docbook-xsl-1.76.1/params/profile.separator.xml create mode 100644 docbook-xsl-1.76.1/params/profile.status.xml create mode 100644 docbook-xsl-1.76.1/params/profile.userlevel.xml create mode 100644 docbook-xsl-1.76.1/params/profile.value.xml create mode 100644 docbook-xsl-1.76.1/params/profile.vendor.xml create mode 100644 docbook-xsl-1.76.1/params/profile.wordsize.xml create mode 100644 docbook-xsl-1.76.1/params/punct.honorific.xml create mode 100644 docbook-xsl-1.76.1/params/qanda.defaultlabel.xml create mode 100644 docbook-xsl-1.76.1/params/qanda.in.toc.xml create mode 100644 docbook-xsl-1.76.1/params/qanda.inherit.numeration.xml create mode 100644 docbook-xsl-1.76.1/params/qanda.nested.in.toc.xml create mode 100644 docbook-xsl-1.76.1/params/qanda.title.level1.properties.xml create mode 100644 docbook-xsl-1.76.1/params/qanda.title.level2.properties.xml create mode 100644 docbook-xsl-1.76.1/params/qanda.title.level3.properties.xml create mode 100644 docbook-xsl-1.76.1/params/qanda.title.level4.properties.xml create mode 100644 docbook-xsl-1.76.1/params/qanda.title.level5.properties.xml create mode 100644 docbook-xsl-1.76.1/params/qanda.title.level6.properties.xml create mode 100644 docbook-xsl-1.76.1/params/qanda.title.properties.xml create mode 100644 docbook-xsl-1.76.1/params/qandadiv.autolabel.xml create mode 100644 docbook-xsl-1.76.1/params/rebuild-all.xml create mode 100644 docbook-xsl-1.76.1/params/refclass.suppress.xml create mode 100644 docbook-xsl-1.76.1/params/refentry.date.profile.enabled.xml create mode 100644 docbook-xsl-1.76.1/params/refentry.date.profile.xml create mode 100644 docbook-xsl-1.76.1/params/refentry.generate.name.xml create mode 100644 docbook-xsl-1.76.1/params/refentry.generate.title.xml create mode 100644 docbook-xsl-1.76.1/params/refentry.manual.fallback.profile.xml create mode 100644 docbook-xsl-1.76.1/params/refentry.manual.profile.enabled.xml create mode 100644 docbook-xsl-1.76.1/params/refentry.manual.profile.xml create mode 100644 docbook-xsl-1.76.1/params/refentry.meta.get.quietly.xml create mode 100644 docbook-xsl-1.76.1/params/refentry.pagebreak.xml create mode 100644 docbook-xsl-1.76.1/params/refentry.separator.xml create mode 100644 docbook-xsl-1.76.1/params/refentry.source.fallback.profile.xml create mode 100644 docbook-xsl-1.76.1/params/refentry.source.name.profile.enabled.xml create mode 100644 docbook-xsl-1.76.1/params/refentry.source.name.profile.xml create mode 100644 docbook-xsl-1.76.1/params/refentry.source.name.suppress.xml create mode 100644 docbook-xsl-1.76.1/params/refentry.title.properties.xml create mode 100644 docbook-xsl-1.76.1/params/refentry.version.profile.enabled.xml create mode 100644 docbook-xsl-1.76.1/params/refentry.version.profile.xml create mode 100644 docbook-xsl-1.76.1/params/refentry.version.suppress.xml create mode 100644 docbook-xsl-1.76.1/params/refentry.xref.manvolnum.xml create mode 100644 docbook-xsl-1.76.1/params/reference.autolabel.xml create mode 100644 docbook-xsl-1.76.1/params/region.after.extent.xml create mode 100644 docbook-xsl-1.76.1/params/region.before.extent.xml create mode 100644 docbook-xsl-1.76.1/params/revhistory.table.cell.properties.xml create mode 100644 docbook-xsl-1.76.1/params/revhistory.table.properties.xml create mode 100644 docbook-xsl-1.76.1/params/revhistory.title.properties.xml create mode 100644 docbook-xsl-1.76.1/params/root.filename.xml create mode 100644 docbook-xsl-1.76.1/params/root.properties.xml create mode 100644 docbook-xsl-1.76.1/params/rootid.xml create mode 100644 docbook-xsl-1.76.1/params/runinhead.default.title.end.punct.xml create mode 100644 docbook-xsl-1.76.1/params/runinhead.title.end.punct.xml create mode 100644 docbook-xsl-1.76.1/params/running.foot.properties.xml create mode 100644 docbook-xsl-1.76.1/params/sans.font.family.xml create mode 100644 docbook-xsl-1.76.1/params/saxon.callouts.xml create mode 100644 docbook-xsl-1.76.1/params/saxon.character.representation.xml create mode 100644 docbook-xsl-1.76.1/params/saxon.linenumbering.xml create mode 100644 docbook-xsl-1.76.1/params/saxon.tablecolumns.xml create mode 100644 docbook-xsl-1.76.1/params/script.dir.xml create mode 100644 docbook-xsl-1.76.1/params/section.autolabel.max.depth.xml create mode 100644 docbook-xsl-1.76.1/params/section.autolabel.xml create mode 100644 docbook-xsl-1.76.1/params/section.container.element.xml create mode 100644 docbook-xsl-1.76.1/params/section.label.includes.component.label.xml create mode 100644 docbook-xsl-1.76.1/params/section.level1.properties.xml create mode 100644 docbook-xsl-1.76.1/params/section.level2.properties.xml create mode 100644 docbook-xsl-1.76.1/params/section.level3.properties.xml create mode 100644 docbook-xsl-1.76.1/params/section.level4.properties.xml create mode 100644 docbook-xsl-1.76.1/params/section.level5.properties.xml create mode 100644 docbook-xsl-1.76.1/params/section.level6.properties.xml create mode 100644 docbook-xsl-1.76.1/params/section.properties.xml create mode 100644 docbook-xsl-1.76.1/params/section.title.level1.properties.xml create mode 100644 docbook-xsl-1.76.1/params/section.title.level2.properties.xml create mode 100644 docbook-xsl-1.76.1/params/section.title.level3.properties.xml create mode 100644 docbook-xsl-1.76.1/params/section.title.level4.properties.xml create mode 100644 docbook-xsl-1.76.1/params/section.title.level5.properties.xml create mode 100644 docbook-xsl-1.76.1/params/section.title.level6.properties.xml create mode 100644 docbook-xsl-1.76.1/params/section.title.properties.xml create mode 100644 docbook-xsl-1.76.1/params/segmentedlist.as.table.xml create mode 100644 docbook-xsl-1.76.1/params/sequential.links.xml create mode 100644 docbook-xsl-1.76.1/params/shade.verbatim.style.xml create mode 100644 docbook-xsl-1.76.1/params/shade.verbatim.xml create mode 100644 docbook-xsl-1.76.1/params/show.comments.xml create mode 100644 docbook-xsl-1.76.1/params/show.foil.number.xml create mode 100644 docbook-xsl-1.76.1/params/show.revisionflag.xml create mode 100644 docbook-xsl-1.76.1/params/showtoc.image.xml create mode 100644 docbook-xsl-1.76.1/params/side.float.properties.xml create mode 100644 docbook-xsl-1.76.1/params/sidebar.float.type.xml create mode 100644 docbook-xsl-1.76.1/params/sidebar.float.width.xml create mode 100644 docbook-xsl-1.76.1/params/sidebar.properties.xml create mode 100644 docbook-xsl-1.76.1/params/sidebar.title.properties.xml create mode 100644 docbook-xsl-1.76.1/params/simplesect.in.toc.xml create mode 100644 docbook-xsl-1.76.1/params/slide.font.family.xml create mode 100644 docbook-xsl-1.76.1/params/slide.title.font.family.xml create mode 100644 docbook-xsl-1.76.1/params/slides.js.xml create mode 100644 docbook-xsl-1.76.1/params/slides.properties.xml create mode 100644 docbook-xsl-1.76.1/params/spacing.paras.xml create mode 100644 docbook-xsl-1.76.1/params/speakernote.properties.xml create mode 100644 docbook-xsl-1.76.1/params/subscript.properties.xml create mode 100644 docbook-xsl-1.76.1/params/superscript.properties.xml create mode 100644 docbook-xsl-1.76.1/params/suppress.footer.navigation.xml create mode 100644 docbook-xsl-1.76.1/params/suppress.header.navigation.xml create mode 100644 docbook-xsl-1.76.1/params/suppress.homepage.title.xml create mode 100644 docbook-xsl-1.76.1/params/suppress.navigation.xml create mode 100644 docbook-xsl-1.76.1/params/symbol.font.family.xml create mode 100644 docbook-xsl-1.76.1/params/table.borders.with.css.xml create mode 100644 docbook-xsl-1.76.1/params/table.cell.border.color.xml create mode 100644 docbook-xsl-1.76.1/params/table.cell.border.style.xml create mode 100644 docbook-xsl-1.76.1/params/table.cell.border.thickness.xml create mode 100644 docbook-xsl-1.76.1/params/table.cell.padding.xml create mode 100644 docbook-xsl-1.76.1/params/table.entry.padding.xml create mode 100644 docbook-xsl-1.76.1/params/table.footnote.number.format.xml create mode 100644 docbook-xsl-1.76.1/params/table.footnote.number.symbols.xml create mode 100644 docbook-xsl-1.76.1/params/table.footnote.properties.xml create mode 100644 docbook-xsl-1.76.1/params/table.frame.border.color.xml create mode 100644 docbook-xsl-1.76.1/params/table.frame.border.style.xml create mode 100644 docbook-xsl-1.76.1/params/table.frame.border.thickness.xml create mode 100644 docbook-xsl-1.76.1/params/table.properties.xml create mode 100644 docbook-xsl-1.76.1/params/table.spacer.image.xml create mode 100644 docbook-xsl-1.76.1/params/table.table.properties.xml create mode 100644 docbook-xsl-1.76.1/params/tablecolumns.extension.xml create mode 100644 docbook-xsl-1.76.1/params/target.database.document.xml create mode 100644 docbook-xsl-1.76.1/params/targets.filename.xml create mode 100644 docbook-xsl-1.76.1/params/template.xml create mode 100644 docbook-xsl-1.76.1/params/tex.math.delims.xml create mode 100644 docbook-xsl-1.76.1/params/tex.math.file.xml create mode 100644 docbook-xsl-1.76.1/params/tex.math.in.alt.xml create mode 100644 docbook-xsl-1.76.1/params/text.home.xml create mode 100644 docbook-xsl-1.76.1/params/text.next.xml create mode 100644 docbook-xsl-1.76.1/params/text.prev.xml create mode 100644 docbook-xsl-1.76.1/params/text.toc.xml create mode 100644 docbook-xsl-1.76.1/params/text.up.xml create mode 100644 docbook-xsl-1.76.1/params/textbgcolor.xml create mode 100644 docbook-xsl-1.76.1/params/textdata.default.encoding.xml create mode 100644 docbook-xsl-1.76.1/params/textinsert.extension.xml create mode 100644 docbook-xsl-1.76.1/params/title.font.family.xml create mode 100644 docbook-xsl-1.76.1/params/title.margin.left.xml create mode 100644 docbook-xsl-1.76.1/params/titlefoil.html.xml create mode 100644 docbook-xsl-1.76.1/params/toc.bg.color.xml create mode 100644 docbook-xsl-1.76.1/params/toc.blank.graphic.xml create mode 100644 docbook-xsl-1.76.1/params/toc.blank.image.xml create mode 100644 docbook-xsl-1.76.1/params/toc.blank.text.xml create mode 100644 docbook-xsl-1.76.1/params/toc.hide.show.xml create mode 100644 docbook-xsl-1.76.1/params/toc.html.xml create mode 100644 docbook-xsl-1.76.1/params/toc.image.xml create mode 100644 docbook-xsl-1.76.1/params/toc.indent.width.xml create mode 100644 docbook-xsl-1.76.1/params/toc.line.properties.xml create mode 100644 docbook-xsl-1.76.1/params/toc.list.type.xml create mode 100644 docbook-xsl-1.76.1/params/toc.margin.properties.xml create mode 100644 docbook-xsl-1.76.1/params/toc.max.depth.xml create mode 100644 docbook-xsl-1.76.1/params/toc.pointer.graphic.xml create mode 100644 docbook-xsl-1.76.1/params/toc.pointer.image.xml create mode 100644 docbook-xsl-1.76.1/params/toc.pointer.text.xml create mode 100644 docbook-xsl-1.76.1/params/toc.row.height.xml create mode 100644 docbook-xsl-1.76.1/params/toc.section.depth.xml create mode 100644 docbook-xsl-1.76.1/params/toc.spacer.graphic.xml create mode 100644 docbook-xsl-1.76.1/params/toc.spacer.image.xml create mode 100644 docbook-xsl-1.76.1/params/toc.spacer.text.xml create mode 100644 docbook-xsl-1.76.1/params/toc.width.xml create mode 100644 docbook-xsl-1.76.1/params/ua.js.xml create mode 100644 docbook-xsl-1.76.1/params/ulink.footnotes.xml create mode 100644 docbook-xsl-1.76.1/params/ulink.hyphenate.chars.xml create mode 100644 docbook-xsl-1.76.1/params/ulink.hyphenate.xml create mode 100644 docbook-xsl-1.76.1/params/ulink.show.xml create mode 100644 docbook-xsl-1.76.1/params/ulink.target.xml create mode 100644 docbook-xsl-1.76.1/params/up.image.xml create mode 100644 docbook-xsl-1.76.1/params/use.embed.for.svg.xml create mode 100644 docbook-xsl-1.76.1/params/use.extensions.xml create mode 100644 docbook-xsl-1.76.1/params/use.id.as.filename.xml create mode 100644 docbook-xsl-1.76.1/params/use.id.function.xml create mode 100644 docbook-xsl-1.76.1/params/use.local.olink.style.xml create mode 100644 docbook-xsl-1.76.1/params/use.role.as.xrefstyle.xml create mode 100644 docbook-xsl-1.76.1/params/use.role.for.mediaobject.xml create mode 100644 docbook-xsl-1.76.1/params/use.svg.xml create mode 100644 docbook-xsl-1.76.1/params/variablelist.as.blocks.xml create mode 100644 docbook-xsl-1.76.1/params/variablelist.as.table.xml create mode 100644 docbook-xsl-1.76.1/params/variablelist.max.termlength.xml create mode 100644 docbook-xsl-1.76.1/params/variablelist.term.break.after.xml create mode 100644 docbook-xsl-1.76.1/params/variablelist.term.properties.xml create mode 100644 docbook-xsl-1.76.1/params/variablelist.term.separator.xml create mode 100644 docbook-xsl-1.76.1/params/verbatim.properties.xml create mode 100644 docbook-xsl-1.76.1/params/wordml.template.xml create mode 100644 docbook-xsl-1.76.1/params/writing.mode.xml create mode 100644 docbook-xsl-1.76.1/params/xbCollapsibleLists.js.xml create mode 100644 docbook-xsl-1.76.1/params/xbDOM.js.xml create mode 100644 docbook-xsl-1.76.1/params/xbLibrary.js.xml create mode 100644 docbook-xsl-1.76.1/params/xbStyle.js.xml create mode 100644 docbook-xsl-1.76.1/params/xep.extensions.xml create mode 100644 docbook-xsl-1.76.1/params/xep.index.item.properties.xml create mode 100644 docbook-xsl-1.76.1/params/xref.label-page.separator.xml create mode 100644 docbook-xsl-1.76.1/params/xref.label-title.separator.xml create mode 100644 docbook-xsl-1.76.1/params/xref.properties.xml create mode 100644 docbook-xsl-1.76.1/params/xref.title-page.separator.xml create mode 100644 docbook-xsl-1.76.1/params/xref.with.number.and.title.xml create mode 100644 docbook-xsl-1.76.1/profiling/profile-mode.xsl create mode 100644 docbook-xsl-1.76.1/profiling/profile.xsl create mode 100644 docbook-xsl-1.76.1/profiling/strip-attributes.xsl create mode 100644 docbook-xsl-1.76.1/profiling/xsl2profile.xsl create mode 100644 docbook-xsl-1.76.1/roundtrip/blocks-spec.xml create mode 100644 docbook-xsl-1.76.1/roundtrip/blocks2dbk.dtd create mode 100644 docbook-xsl-1.76.1/roundtrip/blocks2dbk.xsl create mode 100644 docbook-xsl-1.76.1/roundtrip/dbk2ooo.xsl create mode 100644 docbook-xsl-1.76.1/roundtrip/dbk2pages.xsl create mode 100644 docbook-xsl-1.76.1/roundtrip/dbk2wordml.xsl create mode 100644 docbook-xsl-1.76.1/roundtrip/dbk2wp.xsl create mode 100644 docbook-xsl-1.76.1/roundtrip/normalise-common.xsl create mode 100644 docbook-xsl-1.76.1/roundtrip/normalise2sections.xsl create mode 100644 docbook-xsl-1.76.1/roundtrip/pages2normalise.xsl create mode 100644 docbook-xsl-1.76.1/roundtrip/param.xml create mode 100644 docbook-xsl-1.76.1/roundtrip/param.xsl create mode 100644 docbook-xsl-1.76.1/roundtrip/sections-spec.xml create mode 100644 docbook-xsl-1.76.1/roundtrip/sections2blocks.xsl create mode 100644 docbook-xsl-1.76.1/roundtrip/specifications.xml create mode 100644 docbook-xsl-1.76.1/roundtrip/template-pages.xml create mode 100644 docbook-xsl-1.76.1/roundtrip/template.dot create mode 100644 docbook-xsl-1.76.1/roundtrip/template.xml create mode 100644 docbook-xsl-1.76.1/roundtrip/wordml2normalise.xsl create mode 100644 docbook-xsl-1.76.1/slides/browser/CTOCWidget.js create mode 100644 docbook-xsl-1.76.1/slides/browser/overlay.js create mode 100644 docbook-xsl-1.76.1/slides/browser/slides-default.css create mode 100644 docbook-xsl-1.76.1/slides/browser/slides-frames.css create mode 100644 docbook-xsl-1.76.1/slides/browser/slides-plain.css create mode 100644 docbook-xsl-1.76.1/slides/browser/slides-table.css create mode 100644 docbook-xsl-1.76.1/slides/browser/slides-w3c.css create mode 100644 docbook-xsl-1.76.1/slides/browser/slides.css create mode 100644 docbook-xsl-1.76.1/slides/browser/slides.js create mode 100644 docbook-xsl-1.76.1/slides/browser/ua.js create mode 100644 docbook-xsl-1.76.1/slides/browser/xbCollapsibleLists.js create mode 100644 docbook-xsl-1.76.1/slides/browser/xbDOM.js create mode 100644 docbook-xsl-1.76.1/slides/browser/xbDebug.js create mode 100644 docbook-xsl-1.76.1/slides/browser/xbLibrary.js create mode 100644 docbook-xsl-1.76.1/slides/browser/xbStyle-css.js create mode 100644 docbook-xsl-1.76.1/slides/browser/xbStyle-nn4.js create mode 100644 docbook-xsl-1.76.1/slides/browser/xbStyle-not-supported.js create mode 100644 docbook-xsl-1.76.1/slides/browser/xbStyle.js create mode 100644 docbook-xsl-1.76.1/slides/fo/param.xml create mode 100644 docbook-xsl-1.76.1/slides/fo/param.xsl create mode 100644 docbook-xsl-1.76.1/slides/fo/plain-titlepage.xml create mode 100644 docbook-xsl-1.76.1/slides/fo/plain-titlepage.xsl create mode 100644 docbook-xsl-1.76.1/slides/fo/plain.xsl create mode 100644 docbook-xsl-1.76.1/slides/graphics/active/arr-next.png create mode 100644 docbook-xsl-1.76.1/slides/graphics/active/arr-prev.png create mode 100644 docbook-xsl-1.76.1/slides/graphics/active/but-fforward.png create mode 100644 docbook-xsl-1.76.1/slides/graphics/active/but-info.png create mode 100644 docbook-xsl-1.76.1/slides/graphics/active/but-next.png create mode 100644 docbook-xsl-1.76.1/slides/graphics/active/but-prev.png create mode 100644 docbook-xsl-1.76.1/slides/graphics/active/but-rewind.png create mode 100644 docbook-xsl-1.76.1/slides/graphics/active/nav-home.png create mode 100644 docbook-xsl-1.76.1/slides/graphics/active/nav-next.png create mode 100644 docbook-xsl-1.76.1/slides/graphics/active/nav-prev.png create mode 100644 docbook-xsl-1.76.1/slides/graphics/active/nav-toc.png create mode 100644 docbook-xsl-1.76.1/slides/graphics/active/nav-up.png create mode 100644 docbook-xsl-1.76.1/slides/graphics/active/w3c-next.png create mode 100644 docbook-xsl-1.76.1/slides/graphics/active/w3c-prev.png create mode 100644 docbook-xsl-1.76.1/slides/graphics/active/w3c-toc.png create mode 100644 docbook-xsl-1.76.1/slides/graphics/arrow.gif create mode 100644 docbook-xsl-1.76.1/slides/graphics/blank.gif create mode 100644 docbook-xsl-1.76.1/slides/graphics/blank.png create mode 100644 docbook-xsl-1.76.1/slides/graphics/hidetoc.gif create mode 100644 docbook-xsl-1.76.1/slides/graphics/inactive/but-fforward.png create mode 100644 docbook-xsl-1.76.1/slides/graphics/inactive/but-info.png create mode 100644 docbook-xsl-1.76.1/slides/graphics/inactive/but-next.png create mode 100644 docbook-xsl-1.76.1/slides/graphics/inactive/but-prev.png create mode 100644 docbook-xsl-1.76.1/slides/graphics/inactive/but-rewind.png create mode 100644 docbook-xsl-1.76.1/slides/graphics/inactive/nav-home.png create mode 100644 docbook-xsl-1.76.1/slides/graphics/inactive/nav-next.png create mode 100644 docbook-xsl-1.76.1/slides/graphics/inactive/nav-prev.png create mode 100644 docbook-xsl-1.76.1/slides/graphics/inactive/nav-toc.png create mode 100644 docbook-xsl-1.76.1/slides/graphics/inactive/nav-up.png create mode 100644 docbook-xsl-1.76.1/slides/graphics/inactive/w3c-next.png create mode 100644 docbook-xsl-1.76.1/slides/graphics/inactive/w3c-prev.png create mode 100644 docbook-xsl-1.76.1/slides/graphics/inactive/w3c-toc.png create mode 100644 docbook-xsl-1.76.1/slides/graphics/plus.gif create mode 100644 docbook-xsl-1.76.1/slides/graphics/pointer.png create mode 100644 docbook-xsl-1.76.1/slides/graphics/showtoc.gif create mode 100644 docbook-xsl-1.76.1/slides/graphics/toc/bullet.png create mode 100644 docbook-xsl-1.76.1/slides/graphics/toc/closed.png create mode 100644 docbook-xsl-1.76.1/slides/graphics/toc/open.png create mode 100644 docbook-xsl-1.76.1/slides/html/css.xsl create mode 100644 docbook-xsl-1.76.1/slides/html/default.xsl create mode 100644 docbook-xsl-1.76.1/slides/html/flat.xsl create mode 100644 docbook-xsl-1.76.1/slides/html/frames.xsl create mode 100644 docbook-xsl-1.76.1/slides/html/graphics.xsl create mode 100644 docbook-xsl-1.76.1/slides/html/jscript.xsl create mode 100644 docbook-xsl-1.76.1/slides/html/param.xml create mode 100644 docbook-xsl-1.76.1/slides/html/param.xsl create mode 100644 docbook-xsl-1.76.1/slides/html/plain.xsl create mode 100644 docbook-xsl-1.76.1/slides/html/slides-common.xsl create mode 100644 docbook-xsl-1.76.1/slides/html/tables.xsl create mode 100644 docbook-xsl-1.76.1/slides/html/vslides.xsl create mode 100644 docbook-xsl-1.76.1/slides/html/w3c.xsl create mode 100644 docbook-xsl-1.76.1/slides/htmlhelp/htmlhelp.xsl create mode 100644 docbook-xsl-1.76.1/slides/keynote/default.xsl create mode 100644 docbook-xsl-1.76.1/slides/keynote/xsltsl/cmp.xsl create mode 100644 docbook-xsl-1.76.1/slides/keynote/xsltsl/date-time.xsl create mode 100644 docbook-xsl-1.76.1/slides/keynote/xsltsl/example.xsl create mode 100644 docbook-xsl-1.76.1/slides/keynote/xsltsl/markup.xsl create mode 100644 docbook-xsl-1.76.1/slides/keynote/xsltsl/math.xsl create mode 100644 docbook-xsl-1.76.1/slides/keynote/xsltsl/node.xsl create mode 100644 docbook-xsl-1.76.1/slides/keynote/xsltsl/stdlib.xsl create mode 100644 docbook-xsl-1.76.1/slides/keynote/xsltsl/string.xsl create mode 100644 docbook-xsl-1.76.1/slides/keynote/xsltsl/svg.xsl create mode 100644 docbook-xsl-1.76.1/slides/keynote/xsltsl/uri.xsl create mode 100644 docbook-xsl-1.76.1/slides/svg/default.xsl create mode 100644 docbook-xsl-1.76.1/slides/xhtml/css.xsl create mode 100644 docbook-xsl-1.76.1/slides/xhtml/default.xsl create mode 100644 docbook-xsl-1.76.1/slides/xhtml/flat.xsl create mode 100644 docbook-xsl-1.76.1/slides/xhtml/frames.xsl create mode 100644 docbook-xsl-1.76.1/slides/xhtml/graphics.xsl create mode 100644 docbook-xsl-1.76.1/slides/xhtml/jscript.xsl create mode 100644 docbook-xsl-1.76.1/slides/xhtml/param.xsl create mode 100644 docbook-xsl-1.76.1/slides/xhtml/plain.xsl create mode 100644 docbook-xsl-1.76.1/slides/xhtml/slides-common.xsl create mode 100644 docbook-xsl-1.76.1/slides/xhtml/tables.xsl create mode 100644 docbook-xsl-1.76.1/slides/xhtml/vslides.xsl create mode 100644 docbook-xsl-1.76.1/slides/xhtml/w3c.xsl create mode 100644 docbook-xsl-1.76.1/template/titlepage.xml create mode 100644 docbook-xsl-1.76.1/template/titlepage.xsl create mode 100644 docbook-xsl-1.76.1/tests/refentry.007.ns.xml create mode 100644 docbook-xsl-1.76.1/tests/refentry.007.xml create mode 100755 docbook-xsl-1.76.1/tools/bin/docbook-xsl-update create mode 100644 docbook-xsl-1.76.1/tools/make/Makefile.DocBook create mode 100644 docbook-xsl-1.76.1/tools/make/Makefile.combine create mode 100644 docbook-xsl-1.76.1/tools/make/Makefile.docParam create mode 100755 docbook-xsl-1.76.1/webhelp/LICENSE create mode 100755 docbook-xsl-1.76.1/webhelp/build.properties create mode 100755 docbook-xsl-1.76.1/webhelp/build.xml create mode 100644 docbook-xsl-1.76.1/webhelp/docs/common/css/positioning.css create mode 100644 docbook-xsl-1.76.1/webhelp/docs/common/images/header-bg.gif create mode 100644 docbook-xsl-1.76.1/webhelp/docs/common/images/highlight-blue.gif create mode 100644 docbook-xsl-1.76.1/webhelp/docs/common/images/highlight-yellow.gif create mode 100644 docbook-xsl-1.76.1/webhelp/docs/common/images/loading.gif create mode 100644 docbook-xsl-1.76.1/webhelp/docs/common/images/logo.png create mode 100644 docbook-xsl-1.76.1/webhelp/docs/common/images/showHideTreeIcons.png create mode 100644 docbook-xsl-1.76.1/webhelp/docs/common/jquery/jquery-1.4.2.min.js create mode 100644 docbook-xsl-1.76.1/webhelp/docs/common/jquery/jquery-ui-1.8.2.custom.min.js create mode 100644 docbook-xsl-1.76.1/webhelp/docs/common/jquery/jquery.cookie.js create mode 100644 docbook-xsl-1.76.1/webhelp/docs/common/jquery/theme-redmond/images/ui-anim_basic_16x16.gif create mode 100644 docbook-xsl-1.76.1/webhelp/docs/common/jquery/theme-redmond/images/ui-bg_flat_0_aaaaaa_40x100.png create mode 100644 docbook-xsl-1.76.1/webhelp/docs/common/jquery/theme-redmond/images/ui-bg_flat_55_fbec88_40x100.png create mode 100644 docbook-xsl-1.76.1/webhelp/docs/common/jquery/theme-redmond/images/ui-bg_glass_75_d0e5f5_1x400.png create mode 100644 docbook-xsl-1.76.1/webhelp/docs/common/jquery/theme-redmond/images/ui-bg_glass_85_dfeffc_1x400.png create mode 100644 docbook-xsl-1.76.1/webhelp/docs/common/jquery/theme-redmond/images/ui-bg_glass_95_fef1ec_1x400.png create mode 100644 docbook-xsl-1.76.1/webhelp/docs/common/jquery/theme-redmond/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png create mode 100644 docbook-xsl-1.76.1/webhelp/docs/common/jquery/theme-redmond/images/ui-bg_inset-hard_100_f5f8f9_1x100.png create mode 100644 docbook-xsl-1.76.1/webhelp/docs/common/jquery/theme-redmond/images/ui-bg_inset-hard_100_fcfdfd_1x100.png create mode 100644 docbook-xsl-1.76.1/webhelp/docs/common/jquery/theme-redmond/images/ui-icons_217bc0_256x240.png create mode 100644 docbook-xsl-1.76.1/webhelp/docs/common/jquery/theme-redmond/images/ui-icons_2e83ff_256x240.png create mode 100644 docbook-xsl-1.76.1/webhelp/docs/common/jquery/theme-redmond/images/ui-icons_469bdd_256x240.png create mode 100644 docbook-xsl-1.76.1/webhelp/docs/common/jquery/theme-redmond/images/ui-icons_6da8d5_256x240.png create mode 100644 docbook-xsl-1.76.1/webhelp/docs/common/jquery/theme-redmond/images/ui-icons_cd0a0a_256x240.png create mode 100644 docbook-xsl-1.76.1/webhelp/docs/common/jquery/theme-redmond/images/ui-icons_d8e7f3_256x240.png create mode 100644 docbook-xsl-1.76.1/webhelp/docs/common/jquery/theme-redmond/images/ui-icons_f9bd01_256x240.png create mode 100644 docbook-xsl-1.76.1/webhelp/docs/common/jquery/theme-redmond/jquery-ui-1.8.2.custom.css create mode 100644 docbook-xsl-1.76.1/webhelp/docs/common/jquery/treeview/images/file.gif create mode 100644 docbook-xsl-1.76.1/webhelp/docs/common/jquery/treeview/images/folder-closed.gif create mode 100644 docbook-xsl-1.76.1/webhelp/docs/common/jquery/treeview/images/folder-closed2.gif create mode 100644 docbook-xsl-1.76.1/webhelp/docs/common/jquery/treeview/images/folder.gif create mode 100644 docbook-xsl-1.76.1/webhelp/docs/common/jquery/treeview/images/folder2.gif create mode 100644 docbook-xsl-1.76.1/webhelp/docs/common/jquery/treeview/images/minus.gif create mode 100644 docbook-xsl-1.76.1/webhelp/docs/common/jquery/treeview/images/plus.gif create mode 100644 docbook-xsl-1.76.1/webhelp/docs/common/jquery/treeview/images/treeview-black-line.gif create mode 100644 docbook-xsl-1.76.1/webhelp/docs/common/jquery/treeview/images/treeview-black.gif create mode 100644 docbook-xsl-1.76.1/webhelp/docs/common/jquery/treeview/images/treeview-default-line.gif create mode 100644 docbook-xsl-1.76.1/webhelp/docs/common/jquery/treeview/images/treeview-default.gif create mode 100644 docbook-xsl-1.76.1/webhelp/docs/common/jquery/treeview/images/treeview-famfamfam-line.gif create mode 100644 docbook-xsl-1.76.1/webhelp/docs/common/jquery/treeview/images/treeview-famfamfam.gif create mode 100644 docbook-xsl-1.76.1/webhelp/docs/common/jquery/treeview/images/treeview-gray-line.gif create mode 100644 docbook-xsl-1.76.1/webhelp/docs/common/jquery/treeview/images/treeview-gray.gif create mode 100644 docbook-xsl-1.76.1/webhelp/docs/common/jquery/treeview/images/treeview-red-line.gif create mode 100644 docbook-xsl-1.76.1/webhelp/docs/common/jquery/treeview/images/treeview-red.gif create mode 100644 docbook-xsl-1.76.1/webhelp/docs/common/jquery/treeview/jquery.treeview.async.js create mode 100644 docbook-xsl-1.76.1/webhelp/docs/common/jquery/treeview/jquery.treeview.css create mode 100644 docbook-xsl-1.76.1/webhelp/docs/common/jquery/treeview/jquery.treeview.js create mode 100644 docbook-xsl-1.76.1/webhelp/docs/common/jquery/treeview/jquery.treeview.min.js create mode 100644 docbook-xsl-1.76.1/webhelp/docs/common/jquery/treeview/jquery.treeview.pack.js create mode 100644 docbook-xsl-1.76.1/webhelp/docs/common/main.js create mode 100644 docbook-xsl-1.76.1/webhelp/docs/content/ch01.html create mode 100644 docbook-xsl-1.76.1/webhelp/docs/content/ch02.html create mode 100644 docbook-xsl-1.76.1/webhelp/docs/content/ch02s01.html create mode 100644 docbook-xsl-1.76.1/webhelp/docs/content/ch02s02.html create mode 100644 docbook-xsl-1.76.1/webhelp/docs/content/ch02s03.html create mode 100644 docbook-xsl-1.76.1/webhelp/docs/content/ch02s04.html create mode 100644 docbook-xsl-1.76.1/webhelp/docs/content/ch03.html create mode 100644 docbook-xsl-1.76.1/webhelp/docs/content/ch03s01.html create mode 100644 docbook-xsl-1.76.1/webhelp/docs/content/ch03s02.html create mode 100644 docbook-xsl-1.76.1/webhelp/docs/content/index.html create mode 100644 docbook-xsl-1.76.1/webhelp/docs/content/search/htmlFileInfoList.js create mode 100644 docbook-xsl-1.76.1/webhelp/docs/content/search/htmlFileList.js create mode 100644 docbook-xsl-1.76.1/webhelp/docs/content/search/index-1.js create mode 100644 docbook-xsl-1.76.1/webhelp/docs/content/search/index-2.js create mode 100644 docbook-xsl-1.76.1/webhelp/docs/content/search/index-3.js create mode 100644 docbook-xsl-1.76.1/webhelp/docs/content/search/nwSearchFnt.js create mode 100644 docbook-xsl-1.76.1/webhelp/docs/content/search/stemmers/en_stemmer.js create mode 100644 docbook-xsl-1.76.1/webhelp/docs/favicon.ico create mode 100644 docbook-xsl-1.76.1/webhelp/docs/index.html create mode 100755 docbook-xsl-1.76.1/webhelp/docsrc/readme.xml create mode 100755 docbook-xsl-1.76.1/webhelp/template/common/css/positioning.css create mode 100755 docbook-xsl-1.76.1/webhelp/template/common/images/header-bg.gif create mode 100644 docbook-xsl-1.76.1/webhelp/template/common/images/highlight-blue.gif create mode 100644 docbook-xsl-1.76.1/webhelp/template/common/images/highlight-yellow.gif create mode 100755 docbook-xsl-1.76.1/webhelp/template/common/images/loading.gif create mode 100755 docbook-xsl-1.76.1/webhelp/template/common/images/logo.png create mode 100755 docbook-xsl-1.76.1/webhelp/template/common/images/showHideTreeIcons.png create mode 100755 docbook-xsl-1.76.1/webhelp/template/common/jquery/jquery-1.4.2.min.js create mode 100755 docbook-xsl-1.76.1/webhelp/template/common/jquery/jquery-ui-1.8.2.custom.min.js create mode 100755 docbook-xsl-1.76.1/webhelp/template/common/jquery/jquery.cookie.js create mode 100755 docbook-xsl-1.76.1/webhelp/template/common/jquery/theme-redmond/images/ui-anim_basic_16x16.gif create mode 100755 docbook-xsl-1.76.1/webhelp/template/common/jquery/theme-redmond/images/ui-bg_flat_0_aaaaaa_40x100.png create mode 100755 docbook-xsl-1.76.1/webhelp/template/common/jquery/theme-redmond/images/ui-bg_flat_55_fbec88_40x100.png create mode 100755 docbook-xsl-1.76.1/webhelp/template/common/jquery/theme-redmond/images/ui-bg_glass_75_d0e5f5_1x400.png create mode 100755 docbook-xsl-1.76.1/webhelp/template/common/jquery/theme-redmond/images/ui-bg_glass_85_dfeffc_1x400.png create mode 100755 docbook-xsl-1.76.1/webhelp/template/common/jquery/theme-redmond/images/ui-bg_glass_95_fef1ec_1x400.png create mode 100755 docbook-xsl-1.76.1/webhelp/template/common/jquery/theme-redmond/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png create mode 100755 docbook-xsl-1.76.1/webhelp/template/common/jquery/theme-redmond/images/ui-bg_inset-hard_100_f5f8f9_1x100.png create mode 100755 docbook-xsl-1.76.1/webhelp/template/common/jquery/theme-redmond/images/ui-bg_inset-hard_100_fcfdfd_1x100.png create mode 100755 docbook-xsl-1.76.1/webhelp/template/common/jquery/theme-redmond/images/ui-icons_217bc0_256x240.png create mode 100755 docbook-xsl-1.76.1/webhelp/template/common/jquery/theme-redmond/images/ui-icons_2e83ff_256x240.png create mode 100755 docbook-xsl-1.76.1/webhelp/template/common/jquery/theme-redmond/images/ui-icons_469bdd_256x240.png create mode 100755 docbook-xsl-1.76.1/webhelp/template/common/jquery/theme-redmond/images/ui-icons_6da8d5_256x240.png create mode 100755 docbook-xsl-1.76.1/webhelp/template/common/jquery/theme-redmond/images/ui-icons_cd0a0a_256x240.png create mode 100755 docbook-xsl-1.76.1/webhelp/template/common/jquery/theme-redmond/images/ui-icons_d8e7f3_256x240.png create mode 100755 docbook-xsl-1.76.1/webhelp/template/common/jquery/theme-redmond/images/ui-icons_f9bd01_256x240.png create mode 100755 docbook-xsl-1.76.1/webhelp/template/common/jquery/theme-redmond/jquery-ui-1.8.2.custom.css create mode 100755 docbook-xsl-1.76.1/webhelp/template/common/jquery/treeview/images/file.gif create mode 100755 docbook-xsl-1.76.1/webhelp/template/common/jquery/treeview/images/folder-closed.gif create mode 100755 docbook-xsl-1.76.1/webhelp/template/common/jquery/treeview/images/folder-closed2.gif create mode 100755 docbook-xsl-1.76.1/webhelp/template/common/jquery/treeview/images/folder.gif create mode 100755 docbook-xsl-1.76.1/webhelp/template/common/jquery/treeview/images/folder2.gif create mode 100755 docbook-xsl-1.76.1/webhelp/template/common/jquery/treeview/images/minus.gif create mode 100755 docbook-xsl-1.76.1/webhelp/template/common/jquery/treeview/images/plus.gif create mode 100755 docbook-xsl-1.76.1/webhelp/template/common/jquery/treeview/images/treeview-black-line.gif create mode 100755 docbook-xsl-1.76.1/webhelp/template/common/jquery/treeview/images/treeview-black.gif create mode 100755 docbook-xsl-1.76.1/webhelp/template/common/jquery/treeview/images/treeview-default-line.gif create mode 100755 docbook-xsl-1.76.1/webhelp/template/common/jquery/treeview/images/treeview-default.gif create mode 100755 docbook-xsl-1.76.1/webhelp/template/common/jquery/treeview/images/treeview-famfamfam-line.gif create mode 100755 docbook-xsl-1.76.1/webhelp/template/common/jquery/treeview/images/treeview-famfamfam.gif create mode 100755 docbook-xsl-1.76.1/webhelp/template/common/jquery/treeview/images/treeview-gray-line.gif create mode 100755 docbook-xsl-1.76.1/webhelp/template/common/jquery/treeview/images/treeview-gray.gif create mode 100755 docbook-xsl-1.76.1/webhelp/template/common/jquery/treeview/images/treeview-red-line.gif create mode 100755 docbook-xsl-1.76.1/webhelp/template/common/jquery/treeview/images/treeview-red.gif create mode 100755 docbook-xsl-1.76.1/webhelp/template/common/jquery/treeview/jquery.treeview.async.js create mode 100755 docbook-xsl-1.76.1/webhelp/template/common/jquery/treeview/jquery.treeview.css create mode 100755 docbook-xsl-1.76.1/webhelp/template/common/jquery/treeview/jquery.treeview.js create mode 100755 docbook-xsl-1.76.1/webhelp/template/common/jquery/treeview/jquery.treeview.min.js create mode 100755 docbook-xsl-1.76.1/webhelp/template/common/jquery/treeview/jquery.treeview.pack.js create mode 100755 docbook-xsl-1.76.1/webhelp/template/common/main.js create mode 100755 docbook-xsl-1.76.1/webhelp/template/content/search/default.props create mode 100755 docbook-xsl-1.76.1/webhelp/template/content/search/en-us.props create mode 100755 docbook-xsl-1.76.1/webhelp/template/content/search/es-es.props create mode 100755 docbook-xsl-1.76.1/webhelp/template/content/search/ja-jp.props create mode 100755 docbook-xsl-1.76.1/webhelp/template/content/search/nwSearchFnt.js create mode 100755 docbook-xsl-1.76.1/webhelp/template/content/search/punctuation.props create mode 100755 docbook-xsl-1.76.1/webhelp/template/content/search/stemmers/de_stemmer.js create mode 100755 docbook-xsl-1.76.1/webhelp/template/content/search/stemmers/en_stemmer.js create mode 100644 docbook-xsl-1.76.1/webhelp/template/content/search/stemmers/fr_stemmer.js create mode 100755 docbook-xsl-1.76.1/webhelp/template/favicon.ico create mode 100755 docbook-xsl-1.76.1/webhelp/xsl/webhelp.xsl create mode 100644 docbook-xsl-1.76.1/website/autolayout.xsl create mode 100644 docbook-xsl-1.76.1/website/chunk-common.xsl create mode 100644 docbook-xsl-1.76.1/website/chunk-tabular.xsl create mode 100644 docbook-xsl-1.76.1/website/chunk-website.xsl create mode 100644 docbook-xsl-1.76.1/website/head.xsl create mode 100644 docbook-xsl-1.76.1/website/makefile-dep.xsl create mode 100644 docbook-xsl-1.76.1/website/olink.xsl create mode 100644 docbook-xsl-1.76.1/website/param.xml create mode 100644 docbook-xsl-1.76.1/website/param.xsl create mode 100644 docbook-xsl-1.76.1/website/rss.xsl create mode 100644 docbook-xsl-1.76.1/website/tabular.xsl create mode 100644 docbook-xsl-1.76.1/website/toc-tabular.xsl create mode 100644 docbook-xsl-1.76.1/website/toc.xsl create mode 100644 docbook-xsl-1.76.1/website/website-common.xsl create mode 100644 docbook-xsl-1.76.1/website/website-targets.xsl create mode 100644 docbook-xsl-1.76.1/website/website.xsl create mode 100644 docbook-xsl-1.76.1/website/xbel.xsl create mode 100644 docbook-xsl-1.76.1/xhtml-1_1/admon.xsl create mode 100644 docbook-xsl-1.76.1/xhtml-1_1/annotations.xsl create mode 100644 docbook-xsl-1.76.1/xhtml-1_1/autoidx-kimber.xsl create mode 100644 docbook-xsl-1.76.1/xhtml-1_1/autoidx-kosek.xsl create mode 100644 docbook-xsl-1.76.1/xhtml-1_1/autoidx-ng.xsl create mode 100644 docbook-xsl-1.76.1/xhtml-1_1/autoidx.xsl create mode 100644 docbook-xsl-1.76.1/xhtml-1_1/autotoc.xsl create mode 100644 docbook-xsl-1.76.1/xhtml-1_1/biblio-iso690.xsl create mode 100644 docbook-xsl-1.76.1/xhtml-1_1/biblio.xsl create mode 100644 docbook-xsl-1.76.1/xhtml-1_1/block.xsl create mode 100644 docbook-xsl-1.76.1/xhtml-1_1/callout.xsl create mode 100644 docbook-xsl-1.76.1/xhtml-1_1/changebars.xsl create mode 100644 docbook-xsl-1.76.1/xhtml-1_1/chunk-changebars.xsl create mode 100644 docbook-xsl-1.76.1/xhtml-1_1/chunk-code.xsl create mode 100644 docbook-xsl-1.76.1/xhtml-1_1/chunk-common.xsl create mode 100644 docbook-xsl-1.76.1/xhtml-1_1/chunk.xsl create mode 100644 docbook-xsl-1.76.1/xhtml-1_1/chunker.xsl create mode 100644 docbook-xsl-1.76.1/xhtml-1_1/chunkfast.xsl create mode 100644 docbook-xsl-1.76.1/xhtml-1_1/chunktoc.xsl create mode 100644 docbook-xsl-1.76.1/xhtml-1_1/component.xsl create mode 100644 docbook-xsl-1.76.1/xhtml-1_1/division.xsl create mode 100644 docbook-xsl-1.76.1/xhtml-1_1/docbook.css.xml create mode 100644 docbook-xsl-1.76.1/xhtml-1_1/docbook.xsl create mode 100644 docbook-xsl-1.76.1/xhtml-1_1/ebnf.xsl create mode 100644 docbook-xsl-1.76.1/xhtml-1_1/footnote.xsl create mode 100644 docbook-xsl-1.76.1/xhtml-1_1/formal.xsl create mode 100644 docbook-xsl-1.76.1/xhtml-1_1/glossary.xsl create mode 100644 docbook-xsl-1.76.1/xhtml-1_1/graphics.xsl create mode 100644 docbook-xsl-1.76.1/xhtml-1_1/highlight.xsl create mode 100644 docbook-xsl-1.76.1/xhtml-1_1/html-rtf.xsl create mode 100644 docbook-xsl-1.76.1/xhtml-1_1/html.xsl create mode 100644 docbook-xsl-1.76.1/xhtml-1_1/htmltbl.xsl create mode 100644 docbook-xsl-1.76.1/xhtml-1_1/index.xsl create mode 100644 docbook-xsl-1.76.1/xhtml-1_1/info.xsl create mode 100644 docbook-xsl-1.76.1/xhtml-1_1/inline.xsl create mode 100644 docbook-xsl-1.76.1/xhtml-1_1/keywords.xsl create mode 100644 docbook-xsl-1.76.1/xhtml-1_1/lists.xsl create mode 100644 docbook-xsl-1.76.1/xhtml-1_1/maketoc.xsl create mode 100644 docbook-xsl-1.76.1/xhtml-1_1/manifest.xsl create mode 100644 docbook-xsl-1.76.1/xhtml-1_1/math.xsl create mode 100644 docbook-xsl-1.76.1/xhtml-1_1/oldchunker.xsl create mode 100644 docbook-xsl-1.76.1/xhtml-1_1/onechunk.xsl create mode 100644 docbook-xsl-1.76.1/xhtml-1_1/param.xsl create mode 100644 docbook-xsl-1.76.1/xhtml-1_1/pi.xsl create mode 100644 docbook-xsl-1.76.1/xhtml-1_1/profile-chunk-code.xsl create mode 100644 docbook-xsl-1.76.1/xhtml-1_1/profile-chunk.xsl create mode 100644 docbook-xsl-1.76.1/xhtml-1_1/profile-docbook.xsl create mode 100644 docbook-xsl-1.76.1/xhtml-1_1/profile-onechunk.xsl create mode 100644 docbook-xsl-1.76.1/xhtml-1_1/qandaset.xsl create mode 100644 docbook-xsl-1.76.1/xhtml-1_1/refentry.xsl create mode 100644 docbook-xsl-1.76.1/xhtml-1_1/sections.xsl create mode 100644 docbook-xsl-1.76.1/xhtml-1_1/synop.xsl create mode 100644 docbook-xsl-1.76.1/xhtml-1_1/table.xsl create mode 100644 docbook-xsl-1.76.1/xhtml-1_1/task.xsl create mode 100644 docbook-xsl-1.76.1/xhtml-1_1/titlepage.templates.xsl create mode 100644 docbook-xsl-1.76.1/xhtml-1_1/titlepage.xsl create mode 100644 docbook-xsl-1.76.1/xhtml-1_1/toc.xsl create mode 100644 docbook-xsl-1.76.1/xhtml-1_1/verbatim.xsl create mode 100644 docbook-xsl-1.76.1/xhtml-1_1/xref.xsl create mode 100644 docbook-xsl-1.76.1/xhtml/admon.xsl create mode 100644 docbook-xsl-1.76.1/xhtml/annotations.xsl create mode 100644 docbook-xsl-1.76.1/xhtml/autoidx-kimber.xsl create mode 100644 docbook-xsl-1.76.1/xhtml/autoidx-kosek.xsl create mode 100644 docbook-xsl-1.76.1/xhtml/autoidx-ng.xsl create mode 100644 docbook-xsl-1.76.1/xhtml/autoidx.xsl create mode 100644 docbook-xsl-1.76.1/xhtml/autotoc.xsl create mode 100644 docbook-xsl-1.76.1/xhtml/biblio-iso690.xsl create mode 100644 docbook-xsl-1.76.1/xhtml/biblio.xsl create mode 100644 docbook-xsl-1.76.1/xhtml/block.xsl create mode 100644 docbook-xsl-1.76.1/xhtml/callout.xsl create mode 100644 docbook-xsl-1.76.1/xhtml/changebars.xsl create mode 100644 docbook-xsl-1.76.1/xhtml/chunk-changebars.xsl create mode 100644 docbook-xsl-1.76.1/xhtml/chunk-code.xsl create mode 100644 docbook-xsl-1.76.1/xhtml/chunk-common.xsl create mode 100644 docbook-xsl-1.76.1/xhtml/chunk.xsl create mode 100644 docbook-xsl-1.76.1/xhtml/chunker.xsl create mode 100644 docbook-xsl-1.76.1/xhtml/chunkfast.xsl create mode 100644 docbook-xsl-1.76.1/xhtml/chunktoc.xsl create mode 100644 docbook-xsl-1.76.1/xhtml/component.xsl create mode 100644 docbook-xsl-1.76.1/xhtml/division.xsl create mode 100644 docbook-xsl-1.76.1/xhtml/docbook.css.xml create mode 100644 docbook-xsl-1.76.1/xhtml/docbook.xsl create mode 100644 docbook-xsl-1.76.1/xhtml/ebnf.xsl create mode 100644 docbook-xsl-1.76.1/xhtml/footnote.xsl create mode 100644 docbook-xsl-1.76.1/xhtml/formal.xsl create mode 100644 docbook-xsl-1.76.1/xhtml/glossary.xsl create mode 100644 docbook-xsl-1.76.1/xhtml/graphics.xsl create mode 100644 docbook-xsl-1.76.1/xhtml/highlight.xsl create mode 100644 docbook-xsl-1.76.1/xhtml/html-rtf.xsl create mode 100644 docbook-xsl-1.76.1/xhtml/html.xsl create mode 100644 docbook-xsl-1.76.1/xhtml/htmltbl.xsl create mode 100644 docbook-xsl-1.76.1/xhtml/index.xsl create mode 100644 docbook-xsl-1.76.1/xhtml/info.xsl create mode 100644 docbook-xsl-1.76.1/xhtml/inline.xsl create mode 100644 docbook-xsl-1.76.1/xhtml/keywords.xsl create mode 100644 docbook-xsl-1.76.1/xhtml/lists.xsl create mode 100644 docbook-xsl-1.76.1/xhtml/maketoc.xsl create mode 100644 docbook-xsl-1.76.1/xhtml/manifest.xsl create mode 100644 docbook-xsl-1.76.1/xhtml/math.xsl create mode 100644 docbook-xsl-1.76.1/xhtml/oldchunker.xsl create mode 100644 docbook-xsl-1.76.1/xhtml/onechunk.xsl create mode 100644 docbook-xsl-1.76.1/xhtml/param.xsl create mode 100644 docbook-xsl-1.76.1/xhtml/pi.xsl create mode 100644 docbook-xsl-1.76.1/xhtml/profile-chunk-code.xsl create mode 100644 docbook-xsl-1.76.1/xhtml/profile-chunk.xsl create mode 100644 docbook-xsl-1.76.1/xhtml/profile-docbook.xsl create mode 100644 docbook-xsl-1.76.1/xhtml/profile-onechunk.xsl create mode 100644 docbook-xsl-1.76.1/xhtml/qandaset.xsl create mode 100644 docbook-xsl-1.76.1/xhtml/refentry.xsl create mode 100644 docbook-xsl-1.76.1/xhtml/sections.xsl create mode 100644 docbook-xsl-1.76.1/xhtml/synop.xsl create mode 100644 docbook-xsl-1.76.1/xhtml/table.xsl create mode 100644 docbook-xsl-1.76.1/xhtml/task.xsl create mode 100644 docbook-xsl-1.76.1/xhtml/titlepage.templates.xsl create mode 100644 docbook-xsl-1.76.1/xhtml/titlepage.xsl create mode 100644 docbook-xsl-1.76.1/xhtml/toc.xsl create mode 100644 docbook-xsl-1.76.1/xhtml/verbatim.xsl create mode 100644 docbook-xsl-1.76.1/xhtml/xref.xsl create mode 100644 report/statistical_test.rb diff --git a/docbook-xsl-1.75.2/.CatalogManager.properties.example b/docbook-xsl-1.75.2/.CatalogManager.properties.example deleted file mode 100644 index 23434e1..0000000 --- a/docbook-xsl-1.75.2/.CatalogManager.properties.example +++ /dev/null @@ -1,61 +0,0 @@ -######################################################################## -# CatalogManager provides an interface to the catalog properties. -# Properties can come from two places: from system properties or -# from a CatalogManager.properties file. This class provides a -# transparent interface to both, with system properties preferred -# over property file values. - -####################################################################### -# Catalog Files: -# The semicolon-delimited list of catalog files. -# Example: catalogs=/etc/xml/catalog;~/catalog.xml - -catalogs= - -####################################################################### -# Relative Catalogs: -# If false, relative catalog URIs are made absolute with respect to the -# base URI of the CatalogManager.properties file. This setting only -# applies to catalog URIs obtained from the catalogs property in the -# CatalogManager.properties file -# Example: relative-catalogs = [yes|no] - -relative-catalogs=yes - -####################################################################### -# Verbosity: -# If non-zero, the Catalog classes will print informative and debugging -# messages. The higher the number, the more messages. -# Example: verbosity = [0..99] - -verbosity=0 - -####################################################################### -# Prefer: -# Which identifier is preferred, "public" or "system"? -# Example: xml.catalog.prefer = [public|system] - -prefer=system - -####################################################################### -# Static-catalog: -# Should a single catalog be constructed for all parsing, or should a -# different catalog be created for each parser? -# Example: static-catalog = [yes|no] - -static-catalog=yes - -####################################################################### -# Allow-oasis-xml-catalog-pi -# If the source document contains "oasis-xml-catalog" processing -# instructions, should they be used? -# Example: allow-oasis-xml-catalog-pi = [yes|no] - -allow-oasis-xml-catalog-pi=yes - -####################################################################### -# catalog-class-name -# If you're using the convenience classes -# org.apache.xml.resolver.tools.*, this setting allows you to specify -# an alternate class name to use for the underlying catalog. -# Example: catalog-class-name=org.apache.xml.resolver.Resolver diff --git a/docbook-xsl-1.75.2/.cshrc.incl b/docbook-xsl-1.75.2/.cshrc.incl deleted file mode 100644 index 98bf662..0000000 --- a/docbook-xsl-1.75.2/.cshrc.incl +++ /dev/null @@ -1,36 +0,0 @@ -# /Users/keith/work/docbook-dev/xsl/tools/bin is not in PATH, so add it -if ( "`echo $PATH | grep -v /Users/keith/work/docbook-dev/xsl/tools/bin`" != "" ) then - setenv PATH "/Users/keith/work/docbook-dev/xsl/tools/bin:$PATH" -endif -if ( ! $?XML_CATALOG_FILES ) then - setenv XML_CATALOG_FILES "/Users/keith/work/docbook-dev/xsl/catalog.xml" -# /Users/keith/work/docbook-dev/xsl/catalog.xml is not in XML_CATALOG_FILES, so add it -else if ( "`echo $XML_CATALOG_FILES | grep -v /Users/keith/work/docbook-dev/xsl/catalog.xml`" != "" ) then - setenv XML_CATALOG_FILES "/Users/keith/work/docbook-dev/xsl/catalog.xml $XML_CATALOG_FILES" -endif -endif -# /etc/xml/catalog exists but is not in XML_CATALOG_FILES, so add it -if ( -f /etc/xml/catalog && "`echo $XML_CATALOG_FILES | grep -v /etc/xml/catalog`" != "" ) then - setenv XML_CATALOG_FILES "$XML_CATALOG_FILES /etc/xml/catalog" -endif - -endif -if ( ! $?SGML_CATALOG_FILES ) then - setenv SGML_CATALOG_FILES "/Users/keith/work/docbook-dev/xsl/catalog" -else if ( "`echo $SGML_CATALOG_FILES | grep -v /Users/keith/work/docbook-dev/xsl/catalog`" != "" ) then - setenv SGML_CATALOG_FILES "/Users/keith/work/docbook-dev/xsl/catalog:$SGML_CATALOG_FILES" -endif -endif -# /etc/SGML/catalog exists but is not in SGML_CATALOG_FILES, so add it -if ( -f /etc/sgml/catalog && "`echo $SGML_CATALOG_FILES | grep -v /etc/sgml/catalog`" != "" ) then - setenv SGML_CATALOG_FILES {$SGML_CATALOG_FILES}:/etc/sgml/catalog -endif - - -if ( ! $?CLASSPATH ) then - setenv CLASSPATH "/etc/xml/resolver" -# /etc/xml/resolver is not in CLASSPATH, so add it -else if ( "`echo $CLASSPATH | grep -v /etc/xml/resolver`" != "" ) then - setenv CLASSPATH "/etc/xml/resolver:$CLASSPATH" -endif -endif diff --git a/docbook-xsl-1.75.2/.directory b/docbook-xsl-1.75.2/.directory deleted file mode 100644 index 9caba54..0000000 --- a/docbook-xsl-1.75.2/.directory +++ /dev/null @@ -1,3 +0,0 @@ -[Dolphin] -Timestamp=2009,11,3,14,35,20 -ViewMode=1 diff --git a/docbook-xsl-1.75.2/.emacs.el b/docbook-xsl-1.75.2/.emacs.el deleted file mode 100644 index 4b7802e..0000000 --- a/docbook-xsl-1.75.2/.emacs.el +++ /dev/null @@ -1,6 +0,0 @@ -(add-hook - 'nxml-mode-hook - (lambda () - (setq rng-schema-locating-files-default - (append '("/Users/keith/work/docbook-dev/xsl/locatingrules.xml") - rng-schema-locating-files-default )))) diff --git a/docbook-xsl-1.75.2/.profile.incl b/docbook-xsl-1.75.2/.profile.incl deleted file mode 100644 index b1bc107..0000000 --- a/docbook-xsl-1.75.2/.profile.incl +++ /dev/null @@ -1,43 +0,0 @@ -# /Users/keith/work/docbook-dev/xsl/tools/bin is not in PATH, so add it -if [ "${PATH#*/Users/keith/work/docbook-dev/xsl/tools/bin*}" = "$PATH" ]; then - PATH="/Users/keith/work/docbook-dev/xsl/tools/bin:$PATH" - export PATH -fi -if [ -z "$XML_CATALOG_FILES" ]; then - XML_CATALOG_FILES="/Users/keith/work/docbook-dev/xsl/catalog.xml" -else - # /Users/keith/work/docbook-dev/xsl/catalog.xml is not in XML_CATALOG_FILES, so add it - if [ "${XML_CATALOG_FILES#*/Users/keith/work/docbook-dev/xsl/catalog.xml*}" = "$XML_CATALOG_FILES" ]; then - XML_CATALOG_FILES="/Users/keith/work/docbook-dev/xsl/catalog.xml $XML_CATALOG_FILES" - fi -fi -# /etc/xml/catalog exists but is not in XML_CATALOG_FILES, so add it -if [ -f /etc/xml/catalog ] && [ "${XML_CATALOG_FILES#*/etc/xml/catalog*}" = "$XML_CATALOG_FILES" ]; then - XML_CATALOG_FILES="$XML_CATALOG_FILES /etc/xml/catalog" -fi -export XML_CATALOG_FILES - -if [ -z "$SGML_CATALOG_FILES" ]; then - SGML_CATALOG_FILES="/Users/keith/work/docbook-dev/xsl/catalog" -else - # /Users/keith/work/docbook-dev/xsl/catalog is not in SGML_CATALOG_FILES, so add it - if [ "${SGML_CATALOG_FILES#*/Users/keith/work/docbook-dev/xsl/catalog}" = "$SGML_CATALOG_FILES" ]; then - SGML_CATALOG_FILES="/Users/keith/work/docbook-dev/xsl/catalog:$SGML_CATALOG_FILES" - fi -fi -# /etc/sgml/catalog exists but is not in SGML_CATALOG_FILES, so add it -if [ -f /etc/sgml/catalog ] && [ "${SGML_CATALOG_FILES#*/etc/sgml/catalog*}" = "$SGML_CATALOG_FILES" ]; then - SGML_CATALOG_FILES="$SGML_CATALOG_FILES:/etc/sgml/catalog" -fi -export SGML_CATALOG_FILES - - -if [ -z "$CLASSPATH" ]; then - CLASSPATH="/etc/xml/resolver" -else - # /etc/xml/resolver is not in CLASSPATH, so add it - if [ "${CLASSPATH#*/etc/xml/resolver*}" = "$CLASSPATH" ]; then - CLASSPATH="/etc/xml/resolver:$CLASSPATH" - fi -fi -export CLASSPATH diff --git a/docbook-xsl-1.75.2/.urilist b/docbook-xsl-1.75.2/.urilist deleted file mode 100644 index 2751d8d..0000000 --- a/docbook-xsl-1.75.2/.urilist +++ /dev/null @@ -1 +0,0 @@ -. http://docbook.sourceforge.net/release/xsl/current/ diff --git a/docbook-xsl-1.75.2/AUTHORS b/docbook-xsl-1.75.2/AUTHORS deleted file mode 100644 index 9c3dcdc..0000000 --- a/docbook-xsl-1.75.2/AUTHORS +++ /dev/null @@ -1,4 +0,0 @@ -The DocBook XSL stylesheets are maintained by Norman Walsh, -, and members of the DocBook Project, - - diff --git a/docbook-xsl-1.75.2/BUGS b/docbook-xsl-1.75.2/BUGS deleted file mode 100644 index b3c7867..0000000 --- a/docbook-xsl-1.75.2/BUGS +++ /dev/null @@ -1,21 +0,0 @@ -To view a list of all open DocBook Project XSL stylesheet bugs: - - http://docbook.sf.net/tracker/xsl/bugs - -To submit a bug report against the stylesheets: - - http://docbook.sf.net/tracker/submit/bug - -To do a full-text search of all DocBook Project issues: - - http://docbook.sf.net/tracker/search - -Discussion about the DocBook Project XSL stylesheets takes place -on the docbook-apps mailing list: - - http://wiki.docbook.org/topic/DocBookAppsMailingList - -Real-time discussion takes place on IRC: - - http://wiki.docbook.org/topic/DocBookIrcChannel - irc://irc.freenode.net/docbook diff --git a/docbook-xsl-1.75.2/COPYING b/docbook-xsl-1.75.2/COPYING deleted file mode 100644 index 46bc120..0000000 --- a/docbook-xsl-1.75.2/COPYING +++ /dev/null @@ -1,47 +0,0 @@ -Copyright ---------- -Copyright (C) 1999-2007 Norman Walsh -Copyright (C) 2003 Jiří Kosek -Copyright (C) 2004-2007 Steve Ball -Copyright (C) 2005-2008 The DocBook Project - -Permission is hereby granted, free of charge, to any person -obtaining a copy of this software and associated documentation -files (the ``Software''), to deal in the Software without -restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, sublicense, and/or -sell copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following -conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -Except as contained in this notice, the names of individuals -credited with contribution to this software shall not be used in -advertising or otherwise to promote the sale, use or other -dealings in this Software without prior written authorization -from the individuals in question. - -Any stylesheet derived from this Software that is publically -distributed will be identified with a different name and the -version strings in any derived Software will be changed so that -no possibility of confusion between the derived package and this -Software will exist. - -Warranty --------- -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES -OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL NORMAN WALSH OR ANY OTHER -CONTRIBUTOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR -OTHER DEALINGS IN THE SOFTWARE. - -Contacting the Author ---------------------- -The DocBook XSL stylesheets are maintained by Norman Walsh, -, and members of the DocBook Project, - diff --git a/docbook-xsl-1.75.2/DOCBOOK-BUILD.LOG b/docbook-xsl-1.75.2/DOCBOOK-BUILD.LOG deleted file mode 100644 index 3bb9100..0000000 --- a/docbook-xsl-1.75.2/DOCBOOK-BUILD.LOG +++ /dev/null @@ -1,47855 +0,0 @@ -for i in common lib html fo manpages htmlhelp javahelp eclipse roundtrip slides website extensions __bogus__; do \ - if [ $i != __bogus__ ] ; then \ - echo "make -C $i"; make -C $i; \ - fi \ - done -make -C common -make[1]: Nothing to be done for `all'. -make -C lib -make[1]: Nothing to be done for `all'. -make -C html -make[1]: Nothing to be done for `all'. -make -C fo -make[1]: Nothing to be done for `all'. -make -C manpages -make[1]: Nothing to be done for `all'. -make -C htmlhelp -make[1]: Nothing to be done for `all'. -make -C javahelp -make[1]: Nothing to be done for `all'. -make -C eclipse -make[1]: Nothing to be done for `all'. -make -C roundtrip -make[1]: Nothing to be done for `all'. -make -C slides -for i in fo html xhtml __bogus__; do \ - if [ $i != __bogus__ ] ; then \ - echo "make -C $i"; make -C $i; \ - fi \ - done -make -C fo -make[2]: Nothing to be done for `all'. -make -C html -make[2]: Nothing to be done for `all'. -make -C xhtml -for f in ../html/*.xsl; do if [ -f `basename $f` ]; then rm -f `basename $f`; fi; done -for f in ../html/*.xsl; do if [ ! -f `basename $f` ]; then \ - echo $f; \ - cp $f .; \ - touch -t 197001010000 `basename $f`; fi; done -../html/css.xsl -../html/default.xsl -../html/flat.xsl -../html/frames.xsl -../html/graphics.xsl -../html/jscript.xsl -../html/param.xsl -../html/plain.xsl -../html/slides-common.xsl -../html/tables.xsl -../html/vslides.xsl -../html/w3c.xsl -for f in *.xsl; do if [ ../html/$f -nt $f ]; then xsltproc ../../xhtml/html2xhtml.xsl ../html/$f > $f; fi; done -make -C website -make[1]: Nothing to be done for `all'. -make -C extensions -make[1]: Nothing to be done for `all'. -make -C xhtml -for f in *.xsl; do if [ ! -f ../html/$f -a "$f" != "html2xhtml.xsl" ]; then rm $f; fi; done -for f in ../html/*.xsl; do if [ ! -f `basename $f` ]; then \ - echo "copying $f"; \ - cp $f .; \ - touch -t 197001010000 `basename $f`; fi; done -for f in *.xsl; do \ - if [ ../html/$f -nt $f ]; then \ - echo "transforming $f"; \ - /Users/keith/work/docbook-dev/buildtools/xslt -xsltproc ../html/$f html2xhtml.xsl $f; \ - fi; \ - done -make -C xhtml-1_1 -for f in *.xsl; do if [ ! -f ../html/$f -a "$f" != "html2xhtml.xsl" ]; then rm $f; fi; done -for f in ../html/*.xsl; do if [ ! -f `basename $f` ]; then \ - echo $f; \ - cp $f .; \ - touch -t 197001010000 `basename $f`; fi; done -for f in *.xsl; do if [ ../html/$f -nt $f ]; then /Users/keith/work/docbook-dev/buildtools/xslt -xsltproc ../html/$f html2xhtml.xsl $f; fi; done -make -C docsrc -make -C ../html/ param.xml -/Users/keith/work/docbook-dev/buildtools/xslt -xsltproc .param.stripped /Users/keith/work/docbook-dev/releasetools/w2docbook.xsl .param.xmlid -/Users/keith/work/docbook-dev/buildtools/xslt -xsltproc .param.xmlid ../tools/xsl/build/id-to-xmlid.xsl > param.xml -make -C ../fo/ param.xml -/Users/keith/work/docbook-dev/buildtools/xslt -xsltproc .param.stripped /Users/keith/work/docbook-dev/releasetools/w2docbook.xsl .param.xmlid -/Users/keith/work/docbook-dev/buildtools/xslt -xsltproc .param.xmlid ../tools/xsl/build/id-to-xmlid.xsl > param.xml -make -C ../manpages/ param.xml -/Users/keith/work/docbook-dev/buildtools/xslt -xsltproc .param.stripped /Users/keith/work/docbook-dev/releasetools/w2docbook.xsl .param.xmlid -/Users/keith/work/docbook-dev/buildtools/xslt -xsltproc .param.xmlid ../tools/xsl/build/id-to-xmlid.xsl > param.xml -make -C ../roundtrip/ param.xml -/Users/keith/work/docbook-dev/buildtools/xslt -xsltproc .param.stripped /Users/keith/work/docbook-dev/releasetools/w2docbook.xsl .param.xmlid -/Users/keith/work/docbook-dev/buildtools/xslt -xsltproc .param.xmlid ../tools/xsl/build/id-to-xmlid.xsl > param.xml -make -C ../slides/fo/ param.xml -/Users/keith/work/docbook-dev/buildtools/xslt -xsltproc .param.stripped /Users/keith/work/docbook-dev/releasetools/w2docbook.xsl .param.xmlid -/Users/keith/work/docbook-dev/buildtools/xslt -xsltproc .param.xmlid ../../tools/xsl/build/id-to-xmlid.xsl > param.xml -make -C ../slides/html/ param.xml -/Users/keith/work/docbook-dev/buildtools/xslt -xsltproc .param.stripped /Users/keith/work/docbook-dev/releasetools/w2docbook.xsl .param.xmlid -/Users/keith/work/docbook-dev/buildtools/xslt -xsltproc .param.xmlid ../../tools/xsl/build/id-to-xmlid.xsl > param.xml -make -C ../website/ param.xml -/Users/keith/work/docbook-dev/buildtools/xslt -xsltproc .param.stripped /Users/keith/work/docbook-dev/releasetools/w2docbook.xsl .param.xmlid -/Users/keith/work/docbook-dev/buildtools/xslt -xsltproc .param.xmlid ../tools/xsl/build/id-to-xmlid.xsl > param.xml -make -C ../lib lib.xml -/Users/keith/work/docbook-dev/buildtools/xslt -xsltproc .lib.stripped /Users/keith/work/docbook-dev/releasetools/w2docbook.xsl .lib.xmlid -/Users/keith/work/docbook-dev/buildtools/xslt -xsltproc .lib.xmlid ../tools/xsl/build/id-to-xmlid.xsl > lib.xml -/Users/keith/work/docbook-dev/buildtools/xslt -xsltproc ../html/pi.xsl /Users/keith/work/docbook-dev/xsl/tools/xsl/build/xsl2jref.xsl /dev/null output-file=../html/pi.xml.tmp -Writing ../html/pi.xml.tmp -/Users/keith/work/docbook-dev/buildtools/xjparse -E 0 -w ../html/pi.xml.tmp -/Users/keith/work/docbook-dev/buildtools/xslt -xsltproc ../html/pi.xml.tmp /Users/keith/work/docbook-dev/xsl/tools/xsl/build/jref2refsect1.xsl ../html/pi.xml -rm -f ../html/pi.xml.tmp -/Users/keith/work/docbook-dev/buildtools/xslt -xsltproc ../fo/pi.xsl /Users/keith/work/docbook-dev/xsl/tools/xsl/build/xsl2jref.xsl /dev/null output-file=../fo/pi.xml.tmp -Writing ../fo/pi.xml.tmp -/Users/keith/work/docbook-dev/buildtools/xjparse -E 0 -w ../fo/pi.xml.tmp -/Users/keith/work/docbook-dev/buildtools/xslt -xsltproc ../fo/pi.xml.tmp /Users/keith/work/docbook-dev/xsl/tools/xsl/build/jref2refsect1.xsl ../fo/pi.xml -rm -f ../fo/pi.xml.tmp -/Users/keith/work/docbook-dev/buildtools/xslt -xsltproc ../manpages/pi.xsl /Users/keith/work/docbook-dev/xsl/tools/xsl/build/xsl2jref.xsl /dev/null output-file=../manpages/pi.xml.tmp -Writing ../manpages/pi.xml.tmp -/Users/keith/work/docbook-dev/buildtools/xjparse -E 0 -w ../manpages/pi.xml.tmp -/Users/keith/work/docbook-dev/buildtools/xslt -xsltproc ../manpages/pi.xml.tmp /Users/keith/work/docbook-dev/xsl/tools/xsl/build/jref2refsect1.xsl ../manpages/pi.xml -rm -f ../manpages/pi.xml.tmp -/Users/keith/work/docbook-dev/buildtools/xslt -xsltproc ../common/pi.xsl /Users/keith/work/docbook-dev/xsl/tools/xsl/build/xsl2jref.xsl /dev/null output-file=../common/pi.xml.tmp -Writing ../common/pi.xml.tmp -/Users/keith/work/docbook-dev/buildtools/xjparse -E 0 -w ../common/pi.xml.tmp -/Users/keith/work/docbook-dev/buildtools/xslt -xsltproc ../common/pi.xml.tmp /Users/keith/work/docbook-dev/xsl/tools/xsl/build/jref2refsect1.xsl ../common/pi.xml -rm -f ../common/pi.xml.tmp -/Users/keith/work/docbook-dev/buildtools/xslt -xsltproc ../common/common.xsl /Users/keith/work/docbook-dev/xsl/tools/xsl/build/xsl2jref.xsl /dev/null output-file=../common/common.xml.tmp -Writing ../common/common.xml.tmp -/Users/keith/work/docbook-dev/buildtools/xjparse -E 0 -w ../common/common.xml.tmp -/Users/keith/work/docbook-dev/buildtools/xslt -xsltproc ../common/common.xml.tmp /Users/keith/work/docbook-dev/xsl/tools/xsl/build/jref2refsect1.xsl ../common/common.xml -rm -f ../common/common.xml.tmp -/Users/keith/work/docbook-dev/buildtools/xslt -xsltproc ../common/utility.xsl /Users/keith/work/docbook-dev/xsl/tools/xsl/build/xsl2jref.xsl /dev/null output-file=../common/utility.xml.tmp -Writing ../common/utility.xml.tmp -/Users/keith/work/docbook-dev/buildtools/xjparse -E 0 -w ../common/utility.xml.tmp -/Users/keith/work/docbook-dev/buildtools/xslt -xsltproc ../common/utility.xml.tmp /Users/keith/work/docbook-dev/xsl/tools/xsl/build/jref2refsect1.xsl ../common/utility.xml -rm -f ../common/utility.xml.tmp -/Users/keith/work/docbook-dev/buildtools/xslt -xsltproc ../common/refentry.xsl /Users/keith/work/docbook-dev/xsl/tools/xsl/build/xsl2jref.xsl /dev/null output-file=../common/refentry.xml.tmp -Writing ../common/refentry.xml.tmp -/Users/keith/work/docbook-dev/buildtools/xjparse -E 0 -w ../common/refentry.xml.tmp -/Users/keith/work/docbook-dev/buildtools/xslt -xsltproc ../common/refentry.xml.tmp /Users/keith/work/docbook-dev/xsl/tools/xsl/build/jref2refsect1.xsl ../common/refentry.xml -rm -f ../common/refentry.xml.tmp -/Users/keith/work/docbook-dev/buildtools/xslt -xsltproc ../common/charmap.xsl /Users/keith/work/docbook-dev/xsl/tools/xsl/build/xsl2jref.xsl /dev/null output-file=../common/charmap.xml.tmp -Writing ../common/charmap.xml.tmp -/Users/keith/work/docbook-dev/buildtools/xjparse -E 0 -w ../common/charmap.xml.tmp -/Users/keith/work/docbook-dev/buildtools/xslt -xsltproc ../common/charmap.xml.tmp /Users/keith/work/docbook-dev/xsl/tools/xsl/build/jref2refsect1.xsl ../common/charmap.xml -rm -f ../common/charmap.xml.tmp -/Users/keith/work/docbook-dev/buildtools/xslt -xsltproc ../template/titlepage.xsl /Users/keith/work/docbook-dev/xsl/tools/xsl/build/xsl2jref.xsl /dev/null output-file=../template/titlepage.xml.tmp -Writing ../template/titlepage.xml.tmp -/Users/keith/work/docbook-dev/buildtools/xjparse -E 0 -w ../template/titlepage.xml.tmp -/Users/keith/work/docbook-dev/buildtools/xslt -xsltproc ../template/titlepage.xml.tmp /Users/keith/work/docbook-dev/xsl/tools/xsl/build/jref2refsect1.xsl ../template/titlepage.xml -rm -f ../template/titlepage.xml.tmp -/Users/keith/work/docbook-dev/buildtools/xslt -xsltproc ../fo/table.xsl /Users/keith/work/docbook-dev/xsl/tools/xsl/build/xsl2jref.xsl /dev/null output-file=../fo/table.xml.tmp -Writing ../fo/table.xml.tmp -/Users/keith/work/docbook-dev/buildtools/xjparse -E 0 -w ../fo/table.xml.tmp -/Users/keith/work/docbook-dev/buildtools/xslt -xsltproc ../fo/table.xml.tmp /Users/keith/work/docbook-dev/xsl/tools/xsl/build/jref2refsect1.xsl ../fo/table.xml -rm -f ../fo/table.xml.tmp -/Users/keith/work/docbook-dev/buildtools/xslt -xsltproc /Users/keith/work/docbook-dev/releasetools/docbook.rng /Users/keith/work/docbook-dev/xsl/tools/xsl/build/make-elements.xsl /Users/keith/work/docbook-dev/xsl/tools/xsl/build/docbook-elements.xsl -/Users/keith/work/docbook-dev/buildtools/xslt -xsltproc /Users/keith/work/docbook-dev/xsl/tools/xsl/build/make-xsl-params.xsl /Users/keith/work/docbook-dev/xsl/tools/xsl/build/make-xsl-params.xsl /Users/keith/work/docbook-dev/xsl/tools/xsl/build/xsl-params.xsl -/Users/keith/work/docbook-dev/buildtools/xslt -xsltproc /Users/keith/work/docbook-dev/xsl/tools/xsl/build/make-xsl-pi.xsl /Users/keith/work/docbook-dev/xsl/tools/xsl/build/make-xsl-pi.xsl /Users/keith/work/docbook-dev/xsl/tools/xsl/build/xsl-pi.xsl -make -C doc RELVER=1.75.2 -cp -p ../docsrc/page.png fo/page.png -xmllint --noent --xinclude ../docsrc/reference.xml > ../docsrc/reference.xml.included.tmp -/Users/keith/work/docbook-dev/buildtools/saxon ../docsrc/reference.xml.included.tmp ../tools/xsl/build/xmlid-to-id.xsl > ../docsrc/reference.xml.included -rm -f ../docsrc/reference.xml.included.tmp -/Users/keith/work/docbook-dev/buildtools/xslt -xsltproc ../docsrc/reference.xml.included /Users/keith/work/docbook-dev/xsl/tools/xsl/build/reference.xsl -Note: namesp. cut : stripped namespace before processing DocBook XSL Stylesheets: Reference Documentation -Note: namesp. cut : processing stripped document DocBook XSL Stylesheets: Reference Documentation -Writing copyright.html for legalnotice(copyright) -Writing warranty.html for legalnotice(warranty) -Writing html/admon.graphics.extension.html for refentry(admon.graphics.extension) -Writing html/admon.graphics.path.html for refentry(admon.graphics.path) -Writing html/admon.graphics.html for refentry(admon.graphics) -Writing html/admon.textlabel.html for refentry(admon.textlabel) -Writing html/admon.style.html for refentry(admon.style) -Writing html/admons.html for reference(admons) -Writing html/callout.defaultcolumn.html for refentry(callout.defaultcolumn) -Writing html/callout.graphics.extension.html for refentry(callout.graphics.extension) -Writing html/callout.graphics.number.limit.html for refentry(callout.graphics.number.limit) -Writing html/callout.graphics.path.html for refentry(callout.graphics.path) -Writing html/callout.graphics.html for refentry(callout.graphics) -Writing html/callout.list.table.html for refentry(callout.list.table) -Writing html/callout.unicode.number.limit.html for refentry(callout.unicode.number.limit) -Writing html/callout.unicode.start.character.html for refentry(callout.unicode.start.character) -Writing html/callout.unicode.html for refentry(callout.unicode) -Writing html/callouts.extension.html for refentry(callouts.extension) -Writing html/callouts.html for reference(callouts) -Writing html/ebnf.table.bgcolor.html for refentry(ebnf.table.bgcolor) -Writing html/ebnf.table.border.html for refentry(ebnf.table.border) -Writing html/ebnf.assignment.html for refentry(ebnf.assignment) -Writing html/ebnf.statement.terminator.html for refentry(ebnf.statement.terminator) -Writing html/ebnf.html for reference(ebnf) -Writing html/annotate.toc.html for refentry(annotate.toc) -Writing html/autotoc.label.separator.html for refentry(autotoc.label.separator) -Writing html/autotoc.label.in.hyperlink.html for refentry(autotoc.label.in.hyperlink) -Writing html/process.source.toc.html for refentry(process.source.toc) -Writing html/process.empty.source.toc.html for refentry(process.empty.source.toc) -Writing html/bridgehead.in.toc.html for refentry(bridgehead.in.toc) -Writing html/simplesect.in.toc.html for refentry(simplesect.in.toc) -Writing html/manual.toc.html for refentry(manual.toc) -Writing html/toc.list.type.html for refentry(toc.list.type) -Writing html/toc.section.depth.html for refentry(toc.section.depth) -Writing html/toc.max.depth.html for refentry(toc.max.depth) -Writing html/generate.toc.html for refentry(generate.toc) -Writing html/generate.section.toc.level.html for refentry(generate.section.toc.level) -Writing html/generate.index.html for refentry(generate.index) -Writing html/index.method.html for refentry(index.method) -Writing html/index.on.type.html for refentry(index.on.type) -Writing html/index.on.role.html for refentry(index.on.role) -Writing html/index.links.to.section.html for refentry(index.links.to.section) -Writing html/index.prefer.titleabbrev.html for refentry(index.prefer.titleabbrev) -Writing html/index.term.separator.html for refentry(index.term.separator) -Writing html/index.number.separator.html for refentry(index.number.separator) -Writing html/index.range.separator.html for refentry(index.range.separator) -Writing html/toc_index.html for reference(toc_index) -Writing html/linenumbering.everyNth.html for refentry(linenumbering.everyNth) -Writing html/linenumbering.extension.html for refentry(linenumbering.extension) -Writing html/linenumbering.separator.html for refentry(linenumbering.separator) -Writing html/linenumbering.width.html for refentry(linenumbering.width) -Writing html/tablecolumns.extension.html for refentry(tablecolumns.extension) -Writing html/textinsert.extension.html for refentry(textinsert.extension) -Writing html/textdata.default.encoding.html for refentry(textdata.default.encoding) -Writing html/graphicsize.extension.html for refentry(graphicsize.extension) -Writing html/graphicsize.use.img.src.path.html for refentry(graphicsize.use.img.src.path) -Writing html/use.extensions.html for refentry(use.extensions) -Writing html/dbk_ext.html for reference(dbk_ext) -Writing html/chapter.autolabel.html for refentry(chapter.autolabel) -Writing html/appendix.autolabel.html for refentry(appendix.autolabel) -Writing html/part.autolabel.html for refentry(part.autolabel) -Writing html/reference.autolabel.html for refentry(reference.autolabel) -Writing html/preface.autolabel.html for refentry(preface.autolabel) -Writing html/qandadiv.autolabel.html for refentry(qandadiv.autolabel) -Writing html/section.autolabel.html for refentry(section.autolabel) -Writing html/section.autolabel.max.depth.html for refentry(section.autolabel.max.depth) -Writing html/section.label.includes.component.label.html for refentry(section.label.includes.component.label) -Writing html/label.from.part.html for refentry(label.from.part) -Writing html/component.label.includes.part.label.html for refentry(component.label.includes.part.label) -Writing html/labels.html for reference(labels) -Writing html/html.base.html for refentry(html.base) -Writing html/html.stylesheet.type.html for refentry(html.stylesheet.type) -Writing html/html.stylesheet.html for refentry(html.stylesheet) -Writing html/css.decoration.html for refentry(css.decoration) -Writing html/spacing.paras.html for refentry(spacing.paras) -Writing html/emphasis.propagates.style.html for refentry(emphasis.propagates.style) -Writing html/para.propagates.style.html for refentry(para.propagates.style) -Writing html/phrase.propagates.style.html for refentry(phrase.propagates.style) -Writing html/entry.propagates.style.html for refentry(entry.propagates.style) -Writing html/html.longdesc.html for refentry(html.longdesc) -Writing html/html.longdesc.link.html for refentry(html.longdesc.link) -Writing html/make.valid.html.html for refentry(make.valid.html) -Writing html/html.cleanup.html for refentry(html.cleanup) -Writing html/html.append.html for refentry(html.append) -Writing html/draft.mode.html for refentry(draft.mode) -Writing html/draft.watermark.image.html for refentry(draft.watermark.image) -Writing html/generate.id.attributes.html for refentry(generate.id.attributes) -Writing html/generate.meta.abstract.html for refentry(generate.meta.abstract) -Writing html/html.html for reference(html) -Writing html/rootid.html for refentry(rootid) -Writing html/suppress.navigation.html for refentry(suppress.navigation) -Writing html/suppress.header.navigation.html for refentry(suppress.header.navigation) -Writing html/suppress.footer.navigation.html for refentry(suppress.footer.navigation) -Writing html/header.rule.html for refentry(header.rule) -Writing html/footer.rule.html for refentry(footer.rule) -Writing html/id.warnings.html for refentry(id.warnings) -Writing html/xslt.html for reference(xslt) -Writing html/inherit.keywords.html for refentry(inherit.keywords) -Writing html/make.single.year.ranges.html for refentry(make.single.year.ranges) -Writing html/make.year.ranges.html for refentry(make.year.ranges) -Writing html/author.othername.in.middle.html for refentry(author.othername.in.middle) -Writing html/blurb.on.titlepage.enabled.html for refentry(blurb.on.titlepage.enabled) -Writing html/contrib.inline.enabled.html for refentry(contrib.inline.enabled) -Writing html/editedby.enabled.html for refentry(editedby.enabled) -Writing html/abstract.notitle.enabled.html for refentry(abstract.notitle.enabled) -Writing html/othercredit.like.author.enabled.html for refentry(othercredit.like.author.enabled) -Writing html/generate.legalnotice.link.html for refentry(generate.legalnotice.link) -Writing html/generate.revhistory.link.html for refentry(generate.revhistory.link) -Writing html/html.head.legalnotice.link.types.html for refentry(html.head.legalnotice.link.types) -Writing html/html.head.legalnotice.link.multiple.html for refentry(html.head.legalnotice.link.multiple) -Writing html/meta.html for reference(meta) -Writing html/funcsynopsis.decoration.html for refentry(funcsynopsis.decoration) -Writing html/funcsynopsis.style.html for refentry(funcsynopsis.style) -Writing html/function.parens.html for refentry(function.parens) -Writing html/refentry.generate.name.html for refentry(refentry.generate.name) -Writing html/refentry.generate.title.html for refentry(refentry.generate.title) -Writing html/refentry.xref.manvolnum.html for refentry(refentry.xref.manvolnum) -Writing html/citerefentry.link.html for refentry(citerefentry.link) -Writing html/refentry.separator.html for refentry(refentry.separator) -Writing html/refclass.suppress.html for refentry(refclass.suppress) -Writing html/refentry.html for reference(refentry) -Writing html/default.table.width.html for refentry(default.table.width) -Writing html/nominal.table.width.html for refentry(nominal.table.width) -Writing html/table.borders.with.css.html for refentry(table.borders.with.css) -Writing html/table.cell.border.style.html for refentry(table.cell.border.style) -Writing html/table.cell.border.thickness.html for refentry(table.cell.border.thickness) -Writing html/table.cell.border.color.html for refentry(table.cell.border.color) -Writing html/table.frame.border.style.html for refentry(table.frame.border.style) -Writing html/table.frame.border.thickness.html for refentry(table.frame.border.thickness) -Writing html/table.frame.border.color.html for refentry(table.frame.border.color) -Writing html/default.table.frame.html for refentry(default.table.frame) -Writing html/html.cellspacing.html for refentry(html.cellspacing) -Writing html/html.cellpadding.html for refentry(html.cellpadding) -Writing html/tables.html for reference(tables) -Writing html/qanda.defaultlabel.html for refentry(qanda.defaultlabel) -Writing html/qanda.inherit.numeration.html for refentry(qanda.inherit.numeration) -Writing html/qanda.in.toc.html for refentry(qanda.in.toc) -Writing html/qanda.nested.in.toc.html for refentry(qanda.nested.in.toc) -Writing html/qa.html for reference(qa) -Writing html/target.database.document.html for refentry(target.database.document) -Writing html/targets.filename.html for refentry(targets.filename) -Writing html/olink.base.uri.html for refentry(olink.base.uri) -Writing html/use.local.olink.style.html for refentry(use.local.olink.style) -Writing html/current.docid.html for refentry(current.docid) -Writing html/olink.doctitle.html for refentry(olink.doctitle) -Writing html/olink.debug.html for refentry(olink.debug) -Writing html/olink.properties.html for refentry(olink.properties) -Writing html/olink.lang.fallback.sequence.html for refentry(olink.lang.fallback.sequence) -Writing html/insert.olink.page.number.html for refentry(insert.olink.page.number) -Writing html/insert.olink.pdf.frag.html for refentry(insert.olink.pdf.frag) -Writing html/prefer.internal.olink.html for refentry(prefer.internal.olink) -Writing html/link.mailto.url.html for refentry(link.mailto.url) -Writing html/ulink.target.html for refentry(ulink.target) -Writing html/olink.fragid.html for refentry(olink.fragid) -Writing html/olink.outline.ext.html for refentry(olink.outline.ext) -Writing html/olink.pubid.html for refentry(olink.pubid) -Writing html/olink.sysid.html for refentry(olink.sysid) -Writing html/olink.resolver.html for refentry(olink.resolver) -Writing html/links.html for reference(links) -Writing html/collect.xref.targets.html for refentry(collect.xref.targets) -Writing html/insert.xref.page.number.html for refentry(insert.xref.page.number) -Writing html/use.role.as.xrefstyle.html for refentry(use.role.as.xrefstyle) -Writing html/xref.with.number.and.title.html for refentry(xref.with.number.and.title) -Writing html/xref.label-page.separator.html for refentry(xref.label-page.separator) -Writing html/xref.label-title.separator.html for refentry(xref.label-title.separator) -Writing html/xref.title-page.separator.html for refentry(xref.title-page.separator) -Writing html/xrefs.html for reference(xrefs) -Writing html/segmentedlist.as.table.html for refentry(segmentedlist.as.table) -Writing html/variablelist.as.table.html for refentry(variablelist.as.table) -Writing html/variablelist.term.separator.html for refentry(variablelist.term.separator) -Writing html/variablelist.term.break.after.html for refentry(variablelist.term.break.after) -Writing html/lists.html for reference(lists) -Writing html/bibliography.style.html for refentry(bibliography.style) -Writing html/biblioentry.item.separator.html for refentry(biblioentry.item.separator) -Writing html/bibliography.collection.html for refentry(bibliography.collection) -Writing html/bibliography.numbered.html for refentry(bibliography.numbered) -Writing html/biblio.html for reference(biblio) -Writing html/glossterm.auto.link.html for refentry(glossterm.auto.link) -Writing html/firstterm.only.link.html for refentry(firstterm.only.link) -Writing html/glossary.collection.html for refentry(glossary.collection) -Writing html/glossary.sort.html for refentry(glossary.sort) -Writing html/glossentry.show.acronym.html for refentry(glossentry.show.acronym) -Writing html/glossary.html for reference(glossary) -Writing html/formal.procedures.html for refentry(formal.procedures) -Writing html/formal.title.placement.html for refentry(formal.title.placement) -Writing html/runinhead.default.title.end.punct.html for refentry(runinhead.default.title.end.punct) -Writing html/runinhead.title.end.punct.html for refentry(runinhead.title.end.punct) -Writing html/show.comments.html for refentry(show.comments) -Writing html/show.revisionflag.html for refentry(show.revisionflag) -Writing html/shade.verbatim.html for refentry(shade.verbatim) -Writing html/shade.verbatim.style.html for refentry(shade.verbatim.style) -Writing html/punct.honorific.html for refentry(punct.honorific) -Writing html/tex.math.in.alt.html for refentry(tex.math.in.alt) -Writing html/tex.math.file.html for refentry(tex.math.file) -Writing html/tex.math.delims.html for refentry(tex.math.delims) -Writing html/pixels.per.inch.html for refentry(pixels.per.inch) -Writing html/points.per.em.html for refentry(points.per.em) -Writing html/use.svg.html for refentry(use.svg) -Writing html/menuchoice.separator.html for refentry(menuchoice.separator) -Writing html/menuchoice.menu.separator.html for refentry(menuchoice.menu.separator) -Writing html/default.float.class.html for refentry(default.float.class) -Writing html/footnote.number.format.html for refentry(footnote.number.format) -Writing html/table.footnote.number.format.html for refentry(table.footnote.number.format) -Writing html/footnote.number.symbols.html for refentry(footnote.number.symbols) -Writing html/table.footnote.number.symbols.html for refentry(table.footnote.number.symbols) -Writing html/highlight.source.html for refentry(highlight.source) -Writing html/highlight.xslthl.config.html for refentry(highlight.xslthl.config) -Writing html/highlight.default.language.html for refentry(highlight.default.language) -Writing html/email.delimiters.enabled.html for refentry(email.delimiters.enabled) -Writing html/exsl.node.set.available.html for refentry(exsl.node.set.available) -Writing html/misc.html for reference(misc) -Writing html/annotation.support.html for refentry(annotation.support) -Writing html/annotation.js.html for refentry(annotation.js) -Writing html/annotation.css.html for refentry(annotation.css) -Writing html/annotation.graphic.open.html for refentry(annotation.graphic.open) -Writing html/annotation.graphic.close.html for refentry(annotation.graphic.close) -Writing html/annos.html for reference(annos) -Writing html/img.src.path.html for refentry(img.src.path) -Writing html/keep.relative.image.uris.html for refentry(keep.relative.image.uris) -Writing html/graphic.default.extension.html for refentry(graphic.default.extension) -Writing html/default.image.width.html for refentry(default.image.width) -Writing html/nominal.image.width.html for refentry(nominal.image.width) -Writing html/nominal.image.depth.html for refentry(nominal.image.depth) -Writing html/use.embed.for.svg.html for refentry(use.embed.for.svg) -Writing html/make.graphic.viewport.html for refentry(make.graphic.viewport) -Writing html/preferred.mediaobject.role.html for refentry(preferred.mediaobject.role) -Writing html/use.role.for.mediaobject.html for refentry(use.role.for.mediaobject) -Writing html/ignore.image.scaling.html for refentry(ignore.image.scaling) -Writing html/graphics.html for reference(graphics) -Writing html/chunker.output.cdata-section-elements.html for refentry(chunker.output.cdata-section-elements) -Writing html/chunker.output.doctype-public.html for refentry(chunker.output.doctype-public) -Writing html/chunker.output.doctype-system.html for refentry(chunker.output.doctype-system) -Writing html/chunker.output.encoding.html for refentry(chunker.output.encoding) -Writing html/chunker.output.indent.html for refentry(chunker.output.indent) -Writing html/chunker.output.media-type.html for refentry(chunker.output.media-type) -Writing html/chunker.output.method.html for refentry(chunker.output.method) -Writing html/chunker.output.omit-xml-declaration.html for refentry(chunker.output.omit-xml-declaration) -Writing html/chunker.output.standalone.html for refentry(chunker.output.standalone) -Writing html/saxon.character.representation.html for refentry(saxon.character.representation) -Writing html/html.ext.html for refentry(html.ext) -Writing html/use.id.as.filename.html for refentry(use.id.as.filename) -Writing html/html.extra.head.links.html for refentry(html.extra.head.links) -Writing html/root.filename.html for refentry(root.filename) -Writing html/base.dir.html for refentry(base.dir) -Writing html/generate.manifest.html for refentry(generate.manifest) -Writing html/manifest.html for refentry(manifest) -Writing html/manifest.in.base.dir.html for refentry(manifest.in.base.dir) -Writing html/chunk.toc.html for refentry(chunk.toc) -Writing html/chunk.tocs.and.lots.html for refentry(chunk.tocs.and.lots) -Writing html/chunk.separate.lots.html for refentry(chunk.separate.lots) -Writing html/chunk.tocs.and.lots.has.title.html for refentry(chunk.tocs.and.lots.has.title) -Writing html/chunk.section.depth.html for refentry(chunk.section.depth) -Writing html/chunk.first.sections.html for refentry(chunk.first.sections) -Writing html/chunk.quietly.html for refentry(chunk.quietly) -Writing html/chunk.append.html for refentry(chunk.append) -Writing html/navig.graphics.html for refentry(navig.graphics) -Writing html/navig.graphics.extension.html for refentry(navig.graphics.extension) -Writing html/navig.graphics.path.html for refentry(navig.graphics.path) -Writing html/navig.showtitles.html for refentry(navig.showtitles) -Writing html/chunking.html for reference(chunking) -Writing html/profile.arch.html for refentry(profile.arch) -Writing html/profile.audience.html for refentry(profile.audience) -Writing html/profile.condition.html for refentry(profile.condition) -Writing html/profile.conformance.html for refentry(profile.conformance) -Writing html/profile.lang.html for refentry(profile.lang) -Writing html/profile.os.html for refentry(profile.os) -Writing html/profile.revision.html for refentry(profile.revision) -Writing html/profile.revisionflag.html for refentry(profile.revisionflag) -Writing html/profile.role.html for refentry(profile.role) -Writing html/profile.security.html for refentry(profile.security) -Writing html/profile.status.html for refentry(profile.status) -Writing html/profile.userlevel.html for refentry(profile.userlevel) -Writing html/profile.vendor.html for refentry(profile.vendor) -Writing html/profile.wordsize.html for refentry(profile.wordsize) -Writing html/profile.attribute.html for refentry(profile.attribute) -Writing html/profile.value.html for refentry(profile.value) -Writing html/profile.separator.html for refentry(profile.separator) -Writing html/profiling.html for reference(profiling) -Writing html/htmlhelp.encoding.html for refentry(htmlhelp.encoding) -Writing html/htmlhelp.autolabel.html for refentry(htmlhelp.autolabel) -Writing html/htmlhelp.chm.html for refentry(htmlhelp.chm) -Writing html/htmlhelp.default.topic.html for refentry(htmlhelp.default.topic) -Writing html/htmlhelp.display.progress.html for refentry(htmlhelp.display.progress) -Writing html/htmlhelp.hhp.html for refentry(htmlhelp.hhp) -Writing html/htmlhelp.hhc.html for refentry(htmlhelp.hhc) -Writing html/htmlhelp.hhk.html for refentry(htmlhelp.hhk) -Writing html/htmlhelp.hhp.tail.html for refentry(htmlhelp.hhp.tail) -Writing html/htmlhelp.hhp.window.html for refentry(htmlhelp.hhp.window) -Writing html/htmlhelp.hhp.windows.html for refentry(htmlhelp.hhp.windows) -Writing html/htmlhelp.enhanced.decompilation.html for refentry(htmlhelp.enhanced.decompilation) -Writing html/htmlhelp.enumerate.images.html for refentry(htmlhelp.enumerate.images) -Writing html/htmlhelp.force.map.and.alias.html for refentry(htmlhelp.force.map.and.alias) -Writing html/htmlhelp.map.file.html for refentry(htmlhelp.map.file) -Writing html/htmlhelp.alias.file.html for refentry(htmlhelp.alias.file) -Writing html/htmlhelp.hhc.section.depth.html for refentry(htmlhelp.hhc.section.depth) -Writing html/htmlhelp.hhc.show.root.html for refentry(htmlhelp.hhc.show.root) -Writing html/htmlhelp.hhc.folders.instead.books.html for refentry(htmlhelp.hhc.folders.instead.books) -Writing html/htmlhelp.hhc.binary.html for refentry(htmlhelp.hhc.binary) -Writing html/htmlhelp.hhc.width.html for refentry(htmlhelp.hhc.width) -Writing html/htmlhelp.title.html for refentry(htmlhelp.title) -Writing html/htmlhelp.show.menu.html for refentry(htmlhelp.show.menu) -Writing html/htmlhelp.show.toolbar.text.html for refentry(htmlhelp.show.toolbar.text) -Writing html/htmlhelp.show.advanced.search.html for refentry(htmlhelp.show.advanced.search) -Writing html/htmlhelp.show.favorities.html for refentry(htmlhelp.show.favorities) -Writing html/htmlhelp.button.hideshow.html for refentry(htmlhelp.button.hideshow) -Writing html/htmlhelp.button.back.html for refentry(htmlhelp.button.back) -Writing html/htmlhelp.button.forward.html for refentry(htmlhelp.button.forward) -Writing html/htmlhelp.button.stop.html for refentry(htmlhelp.button.stop) -Writing html/htmlhelp.button.refresh.html for refentry(htmlhelp.button.refresh) -Writing html/htmlhelp.button.home.html for refentry(htmlhelp.button.home) -Writing html/htmlhelp.button.home.url.html for refentry(htmlhelp.button.home.url) -Writing html/htmlhelp.button.options.html for refentry(htmlhelp.button.options) -Writing html/htmlhelp.button.print.html for refentry(htmlhelp.button.print) -Writing html/htmlhelp.button.locate.html for refentry(htmlhelp.button.locate) -Writing html/htmlhelp.button.jump1.html for refentry(htmlhelp.button.jump1) -Writing html/htmlhelp.button.jump1.url.html for refentry(htmlhelp.button.jump1.url) -Writing html/htmlhelp.button.jump1.title.html for refentry(htmlhelp.button.jump1.title) -Writing html/htmlhelp.button.jump2.html for refentry(htmlhelp.button.jump2) -Writing html/htmlhelp.button.jump2.url.html for refentry(htmlhelp.button.jump2.url) -Writing html/htmlhelp.button.jump2.title.html for refentry(htmlhelp.button.jump2.title) -Writing html/htmlhelp.button.next.html for refentry(htmlhelp.button.next) -Writing html/htmlhelp.button.prev.html for refentry(htmlhelp.button.prev) -Writing html/htmlhelp.button.zoom.html for refentry(htmlhelp.button.zoom) -Writing html/htmlhelp.remember.window.position.html for refentry(htmlhelp.remember.window.position) -Writing html/htmlhelp.window.geometry.html for refentry(htmlhelp.window.geometry) -Writing html/htmlhelp.use.hhk.html for refentry(htmlhelp.use.hhk) -Writing html/htmlhelp.only.html for refentry(htmlhelp.only) -Writing html/htmlhelp.html for reference(htmlhelp) -Writing html/eclipse.autolabel.html for refentry(eclipse.autolabel) -Writing html/eclipse.plugin.name.html for refentry(eclipse.plugin.name) -Writing html/eclipse.plugin.id.html for refentry(eclipse.plugin.id) -Writing html/eclipse.plugin.provider.html for refentry(eclipse.plugin.provider) -Writing html/eclipse_help.html for reference(eclipse_help) -Writing html/javahelp.encoding.html for refentry(javahelp.encoding) -Writing html/javahelp.html for reference(javahelp) -Writing html/l10n.gentext.language.html for refentry(l10n.gentext.language) -Writing html/l10n.gentext.default.language.html for refentry(l10n.gentext.default.language) -Writing html/l10n.gentext.use.xref.language.html for refentry(l10n.gentext.use.xref.language) -Writing html/l10n.lang.value.rfc.compliant.html for refentry(l10n.lang.value.rfc.compliant) -Writing html/writing.mode.html for refentry(writing.mode) -Writing html/l10n.html for reference(l10n) -Writing html/index.html for part(html) -Writing fo/admon.graphics.html for refentry(admon.graphics) -Writing fo/admon.graphics.extension.html for refentry(admon.graphics.extension) -Writing fo/admon.graphics.path.html for refentry(admon.graphics.path) -Writing fo/admon.textlabel.html for refentry(admon.textlabel) -Writing fo/admonition.title.properties.html for refentry(admonition.title.properties) -Writing fo/admonition.properties.html for refentry(admonition.properties) -Writing fo/graphical.admonition.properties.html for refentry(graphical.admonition.properties) -Writing fo/nongraphical.admonition.properties.html for refentry(nongraphical.admonition.properties) -Writing fo/admons.html for reference(admons) -Writing fo/callout.defaultcolumn.html for refentry(callout.defaultcolumn) -Writing fo/callout.graphics.html for refentry(callout.graphics) -Writing fo/callout.graphics.extension.html for refentry(callout.graphics.extension) -Writing fo/callout.graphics.number.limit.html for refentry(callout.graphics.number.limit) -Writing fo/callout.graphics.path.html for refentry(callout.graphics.path) -Writing fo/callout.icon.size.html for refentry(callout.icon.size) -Writing fo/callout.unicode.html for refentry(callout.unicode) -Writing fo/callout.unicode.font.html for refentry(callout.unicode.font) -Writing fo/callout.unicode.number.limit.html for refentry(callout.unicode.number.limit) -Writing fo/callout.unicode.start.character.html for refentry(callout.unicode.start.character) -Writing fo/callouts.extension.html for refentry(callouts.extension) -Writing fo/callouts.html for reference(callouts) -Writing fo/autotoc.label.separator.html for refentry(autotoc.label.separator) -Writing fo/process.empty.source.toc.html for refentry(process.empty.source.toc) -Writing fo/process.source.toc.html for refentry(process.source.toc) -Writing fo/generate.toc.html for refentry(generate.toc) -Writing fo/generate.index.html for refentry(generate.index) -Writing fo/make.index.markup.html for refentry(make.index.markup) -Writing fo/index.method.html for refentry(index.method) -Writing fo/index.on.type.html for refentry(index.on.type) -Writing fo/index.on.role.html for refentry(index.on.role) -Writing fo/index.preferred.page.properties.html for refentry(index.preferred.page.properties) -Writing fo/index.entry.properties.html for refentry(index.entry.properties) -Writing fo/index.div.title.properties.html for refentry(index.div.title.properties) -Writing fo/index.number.separator.html for refentry(index.number.separator) -Writing fo/index.range.separator.html for refentry(index.range.separator) -Writing fo/index.term.separator.html for refentry(index.term.separator) -Writing fo/xep.index.item.properties.html for refentry(xep.index.item.properties) -Writing fo/toc.section.depth.html for refentry(toc.section.depth) -Writing fo/toc.max.depth.html for refentry(toc.max.depth) -Writing fo/toc.indent.width.html for refentry(toc.indent.width) -Writing fo/toc.line.properties.html for refentry(toc.line.properties) -Writing fo/toc.margin.properties.html for refentry(toc.margin.properties) -Writing fo/bridgehead.in.toc.html for refentry(bridgehead.in.toc) -Writing fo/simplesect.in.toc.html for refentry(simplesect.in.toc) -Writing fo/generate.section.toc.level.html for refentry(generate.section.toc.level) -Writing fo/toc_index.html for reference(toc_index) -Writing fo/arbortext.extensions.html for refentry(arbortext.extensions) -Writing fo/axf.extensions.html for refentry(axf.extensions) -Writing fo/fop.extensions.html for refentry(fop.extensions) -Writing fo/fop1.extensions.html for refentry(fop1.extensions) -Writing fo/passivetex.extensions.html for refentry(passivetex.extensions) -Writing fo/tex.math.in.alt.html for refentry(tex.math.in.alt) -Writing fo/tex.math.delims.html for refentry(tex.math.delims) -Writing fo/xep.extensions.html for refentry(xep.extensions) -Writing fo/fo_ext.html for reference(fo_ext) -Writing fo/linenumbering.everyNth.html for refentry(linenumbering.everyNth) -Writing fo/linenumbering.extension.html for refentry(linenumbering.extension) -Writing fo/linenumbering.separator.html for refentry(linenumbering.separator) -Writing fo/linenumbering.width.html for refentry(linenumbering.width) -Writing fo/tablecolumns.extension.html for refentry(tablecolumns.extension) -Writing fo/textinsert.extension.html for refentry(textinsert.extension) -Writing fo/textdata.default.encoding.html for refentry(textdata.default.encoding) -Writing fo/use.extensions.html for refentry(use.extensions) -Writing fo/dbk_ext.html for reference(dbk_ext) -Writing fo/appendix.autolabel.html for refentry(appendix.autolabel) -Writing fo/chapter.autolabel.html for refentry(chapter.autolabel) -Writing fo/part.autolabel.html for refentry(part.autolabel) -Writing fo/reference.autolabel.html for refentry(reference.autolabel) -Writing fo/preface.autolabel.html for refentry(preface.autolabel) -Writing fo/section.autolabel.html for refentry(section.autolabel) -Writing fo/section.autolabel.max.depth.html for refentry(section.autolabel.max.depth) -Writing fo/section.label.includes.component.label.html for refentry(section.label.includes.component.label) -Writing fo/label.from.part.html for refentry(label.from.part) -Writing fo/component.label.includes.part.label.html for refentry(component.label.includes.part.label) -Writing fo/labels.html for reference(labels) -Writing fo/rootid.html for refentry(rootid) -Writing fo/xslt.html for reference(xslt) -Writing fo/make.single.year.ranges.html for refentry(make.single.year.ranges) -Writing fo/make.year.ranges.html for refentry(make.year.ranges) -Writing fo/author.othername.in.middle.html for refentry(author.othername.in.middle) -Writing fo/meta.html for reference(meta) -Writing fo/funcsynopsis.decoration.html for refentry(funcsynopsis.decoration) -Writing fo/funcsynopsis.style.html for refentry(funcsynopsis.style) -Writing fo/function.parens.html for refentry(function.parens) -Writing fo/refentry.generate.name.html for refentry(refentry.generate.name) -Writing fo/refentry.generate.title.html for refentry(refentry.generate.title) -Writing fo/refentry.pagebreak.html for refentry(refentry.pagebreak) -Writing fo/refentry.title.properties.html for refentry(refentry.title.properties) -Writing fo/refentry.xref.manvolnum.html for refentry(refentry.xref.manvolnum) -Writing fo/refclass.suppress.html for refentry(refclass.suppress) -Writing fo/refentry.html for reference(refentry) -Writing fo/default.table.width.html for refentry(default.table.width) -Writing fo/nominal.table.width.html for refentry(nominal.table.width) -Writing fo/default.table.frame.html for refentry(default.table.frame) -Writing fo/default.table.rules.html for refentry(default.table.rules) -Writing fo/table.cell.padding.html for refentry(table.cell.padding) -Writing fo/table.frame.border.thickness.html for refentry(table.frame.border.thickness) -Writing fo/table.frame.border.style.html for refentry(table.frame.border.style) -Writing fo/table.frame.border.color.html for refentry(table.frame.border.color) -Writing fo/table.cell.border.thickness.html for refentry(table.cell.border.thickness) -Writing fo/table.cell.border.style.html for refentry(table.cell.border.style) -Writing fo/table.cell.border.color.html for refentry(table.cell.border.color) -Writing fo/table.table.properties.html for refentry(table.table.properties) -Writing fo/tables.html for reference(tables) -Writing fo/current.docid.html for refentry(current.docid) -Writing fo/collect.xref.targets.html for refentry(collect.xref.targets) -Writing fo/insert.olink.page.number.html for refentry(insert.olink.page.number) -Writing fo/insert.olink.pdf.frag.html for refentry(insert.olink.pdf.frag) -Writing fo/olink.base.uri.html for refentry(olink.base.uri) -Writing fo/olink.debug.html for refentry(olink.debug) -Writing fo/olink.doctitle.html for refentry(olink.doctitle) -Writing fo/olink.lang.fallback.sequence.html for refentry(olink.lang.fallback.sequence) -Writing fo/olink.properties.html for refentry(olink.properties) -Writing fo/prefer.internal.olink.html for refentry(prefer.internal.olink) -Writing fo/target.database.document.html for refentry(target.database.document) -Writing fo/targets.filename.html for refentry(targets.filename) -Writing fo/use.local.olink.style.html for refentry(use.local.olink.style) -Writing fo/links.html for reference(links) -Writing fo/insert.xref.page.number.html for refentry(insert.xref.page.number) -Writing fo/xref.properties.html for refentry(xref.properties) -Writing fo/xref.label-title.separator.html for refentry(xref.label-title.separator) -Writing fo/xref.label-page.separator.html for refentry(xref.label-page.separator) -Writing fo/xref.title-page.separator.html for refentry(xref.title-page.separator) -Writing fo/insert.link.page.number.html for refentry(insert.link.page.number) -Writing fo/xrefs.html for reference(xrefs) -Writing fo/compact.list.item.spacing.html for refentry(compact.list.item.spacing) -Writing fo/itemizedlist.properties.html for refentry(itemizedlist.properties) -Writing fo/itemizedlist.label.properties.html for refentry(itemizedlist.label.properties) -Writing fo/itemizedlist.label.width.html for refentry(itemizedlist.label.width) -Writing fo/list.block.properties.html for refentry(list.block.properties) -Writing fo/list.block.spacing.html for refentry(list.block.spacing) -Writing fo/list.item.spacing.html for refentry(list.item.spacing) -Writing fo/orderedlist.properties.html for refentry(orderedlist.properties) -Writing fo/orderedlist.label.properties.html for refentry(orderedlist.label.properties) -Writing fo/orderedlist.label.width.html for refentry(orderedlist.label.width) -Writing fo/variablelist.max.termlength.html for refentry(variablelist.max.termlength) -Writing fo/variablelist.term.separator.html for refentry(variablelist.term.separator) -Writing fo/variablelist.term.properties.html for refentry(variablelist.term.properties) -Writing fo/variablelist.term.break.after.html for refentry(variablelist.term.break.after) -Writing fo/lists.html for reference(lists) -Writing fo/qandadiv.autolabel.html for refentry(qandadiv.autolabel) -Writing fo/qanda.inherit.numeration.html for refentry(qanda.inherit.numeration) -Writing fo/qanda.defaultlabel.html for refentry(qanda.defaultlabel) -Writing fo/qanda.in.toc.html for refentry(qanda.in.toc) -Writing fo/qanda.nested.in.toc.html for refentry(qanda.nested.in.toc) -Writing fo/qa.html for reference(qa) -Writing fo/bibliography.style.html for refentry(bibliography.style) -Writing fo/biblioentry.item.separator.html for refentry(biblioentry.item.separator) -Writing fo/bibliography.collection.html for refentry(bibliography.collection) -Writing fo/bibliography.numbered.html for refentry(bibliography.numbered) -Writing fo/biblioentry.properties.html for refentry(biblioentry.properties) -Writing fo/biblio.html for reference(biblio) -Writing fo/glossterm.auto.link.html for refentry(glossterm.auto.link) -Writing fo/firstterm.only.link.html for refentry(firstterm.only.link) -Writing fo/glossary.collection.html for refentry(glossary.collection) -Writing fo/glossary.as.blocks.html for refentry(glossary.as.blocks) -Writing fo/glosslist.as.blocks.html for refentry(glosslist.as.blocks) -Writing fo/glossentry.list.item.properties.html for refentry(glossentry.list.item.properties) -Writing fo/glossterm.block.properties.html for refentry(glossterm.block.properties) -Writing fo/glossdef.block.properties.html for refentry(glossdef.block.properties) -Writing fo/glossterm.list.properties.html for refentry(glossterm.list.properties) -Writing fo/glossdef.list.properties.html for refentry(glossdef.list.properties) -Writing fo/glossterm.width.html for refentry(glossterm.width) -Writing fo/glossterm.separation.html for refentry(glossterm.separation) -Writing fo/glossentry.show.acronym.html for refentry(glossentry.show.acronym) -Writing fo/glossary.sort.html for refentry(glossary.sort) -Writing fo/glossary.html for reference(glossary) -Writing fo/formal.procedures.html for refentry(formal.procedures) -Writing fo/formal.title.placement.html for refentry(formal.title.placement) -Writing fo/runinhead.default.title.end.punct.html for refentry(runinhead.default.title.end.punct) -Writing fo/runinhead.title.end.punct.html for refentry(runinhead.title.end.punct) -Writing fo/show.comments.html for refentry(show.comments) -Writing fo/punct.honorific.html for refentry(punct.honorific) -Writing fo/segmentedlist.as.table.html for refentry(segmentedlist.as.table) -Writing fo/variablelist.as.blocks.html for refentry(variablelist.as.blocks) -Writing fo/blockquote.properties.html for refentry(blockquote.properties) -Writing fo/ulink.show.html for refentry(ulink.show) -Writing fo/ulink.footnotes.html for refentry(ulink.footnotes) -Writing fo/ulink.hyphenate.html for refentry(ulink.hyphenate) -Writing fo/ulink.hyphenate.chars.html for refentry(ulink.hyphenate.chars) -Writing fo/shade.verbatim.html for refentry(shade.verbatim) -Writing fo/shade.verbatim.style.html for refentry(shade.verbatim.style) -Writing fo/hyphenate.verbatim.html for refentry(hyphenate.verbatim) -Writing fo/hyphenate.verbatim.characters.html for refentry(hyphenate.verbatim.characters) -Writing fo/use.svg.html for refentry(use.svg) -Writing fo/use.role.as.xrefstyle.html for refentry(use.role.as.xrefstyle) -Writing fo/menuchoice.separator.html for refentry(menuchoice.separator) -Writing fo/menuchoice.menu.separator.html for refentry(menuchoice.menu.separator) -Writing fo/default.float.class.html for refentry(default.float.class) -Writing fo/footnote.number.format.html for refentry(footnote.number.format) -Writing fo/table.footnote.number.format.html for refentry(table.footnote.number.format) -Writing fo/footnote.number.symbols.html for refentry(footnote.number.symbols) -Writing fo/table.footnote.number.symbols.html for refentry(table.footnote.number.symbols) -Writing fo/footnote.properties.html for refentry(footnote.properties) -Writing fo/table.footnote.properties.html for refentry(table.footnote.properties) -Writing fo/footnote.mark.properties.html for refentry(footnote.mark.properties) -Writing fo/footnote.sep.leader.properties.html for refentry(footnote.sep.leader.properties) -Writing fo/xref.with.number.and.title.html for refentry(xref.with.number.and.title) -Writing fo/superscript.properties.html for refentry(superscript.properties) -Writing fo/subscript.properties.html for refentry(subscript.properties) -Writing fo/pgwide.properties.html for refentry(pgwide.properties) -Writing fo/highlight.source.html for refentry(highlight.source) -Writing fo/highlight.xslthl.config.html for refentry(highlight.xslthl.config) -Writing fo/highlight.default.language.html for refentry(highlight.default.language) -Writing fo/email.delimiters.enabled.html for refentry(email.delimiters.enabled) -Writing fo/email.mailto.enabled.html for refentry(email.mailto.enabled) -Writing fo/section.container.element.html for refentry(section.container.element) -Writing fo/monospace.verbatim.font.width.html for refentry(monospace.verbatim.font.width) -Writing fo/exsl.node.set.available.html for refentry(exsl.node.set.available) -Writing fo/bookmarks.collapse.html for refentry(bookmarks.collapse) -Writing fo/misc.html for reference(misc) -Writing fo/graphic.default.extension.html for refentry(graphic.default.extension) -Writing fo/default.image.width.html for refentry(default.image.width) -Writing fo/preferred.mediaobject.role.html for refentry(preferred.mediaobject.role) -Writing fo/use.role.for.mediaobject.html for refentry(use.role.for.mediaobject) -Writing fo/ignore.image.scaling.html for refentry(ignore.image.scaling) -Writing fo/img.src.path.html for refentry(img.src.path) -Writing fo/keep.relative.image.uris.html for refentry(keep.relative.image.uris) -Writing fo/graphics.html for reference(graphics) -Writing fo/fo-pageregions-image.html for imagedata -Writing fo/page.height.html for refentry(page.height) -Writing fo/page.height.portrait.html for refentry(page.height.portrait) -Writing fo/page.margin.bottom.html for refentry(page.margin.bottom) -Writing fo/page.margin.inner.html for refentry(page.margin.inner) -Writing fo/page.margin.outer.html for refentry(page.margin.outer) -Writing fo/page.margin.top.html for refentry(page.margin.top) -Writing fo/page.orientation.html for refentry(page.orientation) -Writing fo/page.width.html for refentry(page.width) -Writing fo/page.width.portrait.html for refentry(page.width.portrait) -Writing fo/paper.type.html for refentry(paper.type) -Writing fo/double.sided.html for refentry(double.sided) -Writing fo/body.margin.bottom.html for refentry(body.margin.bottom) -Writing fo/body.margin.top.html for refentry(body.margin.top) -Writing fo/body.start.indent.html for refentry(body.start.indent) -Writing fo/body.end.indent.html for refentry(body.end.indent) -Writing fo/alignment.html for refentry(alignment) -Writing fo/hyphenate.html for refentry(hyphenate) -Writing fo/line-height.html for refentry(line-height) -Writing fo/column.count.back.html for refentry(column.count.back) -Writing fo/column.count.body.html for refentry(column.count.body) -Writing fo/column.count.front.html for refentry(column.count.front) -Writing fo/column.count.index.html for refentry(column.count.index) -Writing fo/column.count.lot.html for refentry(column.count.lot) -Writing fo/column.count.titlepage.html for refentry(column.count.titlepage) -Writing fo/column.gap.back.html for refentry(column.gap.back) -Writing fo/column.gap.body.html for refentry(column.gap.body) -Writing fo/column.gap.front.html for refentry(column.gap.front) -Writing fo/column.gap.index.html for refentry(column.gap.index) -Writing fo/column.gap.lot.html for refentry(column.gap.lot) -Writing fo/column.gap.titlepage.html for refentry(column.gap.titlepage) -Writing fo/region.after.extent.html for refentry(region.after.extent) -Writing fo/region.before.extent.html for refentry(region.before.extent) -Writing fo/default.units.html for refentry(default.units) -Writing fo/normal.para.spacing.html for refentry(normal.para.spacing) -Writing fo/body.font.master.html for refentry(body.font.master) -Writing fo/body.font.size.html for refentry(body.font.size) -Writing fo/footnote.font.size.html for refentry(footnote.font.size) -Writing fo/title.margin.left.html for refentry(title.margin.left) -Writing fo/draft.mode.html for refentry(draft.mode) -Writing fo/draft.watermark.image.html for refentry(draft.watermark.image) -Writing fo/headers.on.blank.pages.html for refentry(headers.on.blank.pages) -Writing fo/footers.on.blank.pages.html for refentry(footers.on.blank.pages) -Writing fo/header.rule.html for refentry(header.rule) -Writing fo/footer.rule.html for refentry(footer.rule) -Writing fo/header.column.widths.html for refentry(header.column.widths) -Writing fo/footer.column.widths.html for refentry(footer.column.widths) -Writing fo/header.table.properties.html for refentry(header.table.properties) -Writing fo/header.table.height.html for refentry(header.table.height) -Writing fo/footer.table.properties.html for refentry(footer.table.properties) -Writing fo/footer.table.height.html for refentry(footer.table.height) -Writing fo/header.content.properties.html for refentry(header.content.properties) -Writing fo/footer.content.properties.html for refentry(footer.content.properties) -Writing fo/marker.section.level.html for refentry(marker.section.level) -Writing fo/general.html for reference(general) -Writing fo/body.font.family.html for refentry(body.font.family) -Writing fo/dingbat.font.family.html for refentry(dingbat.font.family) -Writing fo/monospace.font.family.html for refentry(monospace.font.family) -Writing fo/sans.font.family.html for refentry(sans.font.family) -Writing fo/title.font.family.html for refentry(title.font.family) -Writing fo/symbol.font.family.html for refentry(symbol.font.family) -Writing fo/fonts.html for reference(fonts) -Writing fo/formal.object.properties.html for refentry(formal.object.properties) -Writing fo/formal.title.properties.html for refentry(formal.title.properties) -Writing fo/informal.object.properties.html for refentry(informal.object.properties) -Writing fo/monospace.properties.html for refentry(monospace.properties) -Writing fo/verbatim.properties.html for refentry(verbatim.properties) -Writing fo/monospace.verbatim.properties.html for refentry(monospace.verbatim.properties) -Writing fo/sidebar.properties.html for refentry(sidebar.properties) -Writing fo/sidebar.title.properties.html for refentry(sidebar.title.properties) -Writing fo/sidebar.float.type.html for refentry(sidebar.float.type) -Writing fo/sidebar.float.width.html for refentry(sidebar.float.width) -Writing fo/margin.note.properties.html for refentry(margin.note.properties) -Writing fo/margin.note.title.properties.html for refentry(margin.note.title.properties) -Writing fo/margin.note.float.type.html for refentry(margin.note.float.type) -Writing fo/margin.note.width.html for refentry(margin.note.width) -Writing fo/component.title.properties.html for refentry(component.title.properties) -Writing fo/component.titlepage.properties.html for refentry(component.titlepage.properties) -Writing fo/section.title.properties.html for refentry(section.title.properties) -Writing fo/section.title.level1.properties.html for refentry(section.title.level1.properties) -Writing fo/section.title.level2.properties.html for refentry(section.title.level2.properties) -Writing fo/section.title.level3.properties.html for refentry(section.title.level3.properties) -Writing fo/section.title.level4.properties.html for refentry(section.title.level4.properties) -Writing fo/section.title.level5.properties.html for refentry(section.title.level5.properties) -Writing fo/section.title.level6.properties.html for refentry(section.title.level6.properties) -Writing fo/section.properties.html for refentry(section.properties) -Writing fo/section.level1.properties.html for refentry(section.level1.properties) -Writing fo/section.level2.properties.html for refentry(section.level2.properties) -Writing fo/section.level3.properties.html for refentry(section.level3.properties) -Writing fo/section.level4.properties.html for refentry(section.level4.properties) -Writing fo/section.level5.properties.html for refentry(section.level5.properties) -Writing fo/section.level6.properties.html for refentry(section.level6.properties) -Writing fo/figure.properties.html for refentry(figure.properties) -Writing fo/example.properties.html for refentry(example.properties) -Writing fo/equation.properties.html for refentry(equation.properties) -Writing fo/table.properties.html for refentry(table.properties) -Writing fo/informalfigure.properties.html for refentry(informalfigure.properties) -Writing fo/informalexample.properties.html for refentry(informalexample.properties) -Writing fo/informalequation.properties.html for refentry(informalequation.properties) -Writing fo/informaltable.properties.html for refentry(informaltable.properties) -Writing fo/procedure.properties.html for refentry(procedure.properties) -Writing fo/root.properties.html for refentry(root.properties) -Writing fo/qanda.title.properties.html for refentry(qanda.title.properties) -Writing fo/qanda.title.level1.properties.html for refentry(qanda.title.level1.properties) -Writing fo/qanda.title.level2.properties.html for refentry(qanda.title.level2.properties) -Writing fo/qanda.title.level3.properties.html for refentry(qanda.title.level3.properties) -Writing fo/qanda.title.level4.properties.html for refentry(qanda.title.level4.properties) -Writing fo/qanda.title.level5.properties.html for refentry(qanda.title.level5.properties) -Writing fo/qanda.title.level6.properties.html for refentry(qanda.title.level6.properties) -Writing fo/article.appendix.title.properties.html for refentry(article.appendix.title.properties) -Writing fo/abstract.properties.html for refentry(abstract.properties) -Writing fo/abstract.title.properties.html for refentry(abstract.title.properties) -Writing fo/index.page.number.properties.html for refentry(index.page.number.properties) -Writing fo/revhistory.table.properties.html for refentry(revhistory.table.properties) -Writing fo/revhistory.table.cell.properties.html for refentry(revhistory.table.cell.properties) -Writing fo/revhistory.title.properties.html for refentry(revhistory.title.properties) -Writing fo/propsets.html for reference(propsets) -Writing fo/profile.arch.html for refentry(profile.arch) -Writing fo/profile.audience.html for refentry(profile.audience) -Writing fo/profile.condition.html for refentry(profile.condition) -Writing fo/profile.conformance.html for refentry(profile.conformance) -Writing fo/profile.lang.html for refentry(profile.lang) -Writing fo/profile.os.html for refentry(profile.os) -Writing fo/profile.revision.html for refentry(profile.revision) -Writing fo/profile.revisionflag.html for refentry(profile.revisionflag) -Writing fo/profile.role.html for refentry(profile.role) -Writing fo/profile.security.html for refentry(profile.security) -Writing fo/profile.status.html for refentry(profile.status) -Writing fo/profile.userlevel.html for refentry(profile.userlevel) -Writing fo/profile.vendor.html for refentry(profile.vendor) -Writing fo/profile.wordsize.html for refentry(profile.wordsize) -Writing fo/profile.attribute.html for refentry(profile.attribute) -Writing fo/profile.value.html for refentry(profile.value) -Writing fo/profile.separator.html for refentry(profile.separator) -Writing fo/profiling.html for reference(profiling) -Writing fo/l10n.gentext.language.html for refentry(l10n.gentext.language) -Writing fo/l10n.gentext.default.language.html for refentry(l10n.gentext.default.language) -Writing fo/l10n.gentext.use.xref.language.html for refentry(l10n.gentext.use.xref.language) -Writing fo/l10n.lang.value.rfc.compliant.html for refentry(l10n.lang.value.rfc.compliant) -Writing fo/writing.mode.html for refentry(writing.mode) -Writing fo/l10n.html for reference(l10n) -Writing fo/ebnf.assignment.html for refentry(ebnf.assignment) -Writing fo/ebnf.statement.terminator.html for refentry(ebnf.statement.terminator) -Writing fo/ebnf.html for reference(ebnf) -Writing fo/crop.marks.html for refentry(crop.marks) -Writing fo/crop.mark.width.html for refentry(crop.mark.width) -Writing fo/crop.mark.offset.html for refentry(crop.mark.offset) -Writing fo/crop.mark.bleed.html for refentry(crop.mark.bleed) -Writing fo/prepress.html for reference(prepress) -Writing fo/index.html for part(fo) -Writing manpages/man.hyphenate.html for refentry(man.hyphenate) -Writing manpages/man.hyphenate.urls.html for refentry(man.hyphenate.urls) -Writing manpages/man.hyphenate.filenames.html for refentry(man.hyphenate.filenames) -Writing manpages/man.hyphenate.computer.inlines.html for refentry(man.hyphenate.computer.inlines) -Writing manpages/man.justify.html for refentry(man.justify) -Writing manpages/man.break.after.slash.html for refentry(man.break.after.slash) -Writing manpages/general.html for reference(general) -Writing manpages/man.indent.width.html for refentry(man.indent.width) -Writing manpages/man.indent.refsect.html for refentry(man.indent.refsect) -Writing manpages/man.indent.blurbs.html for refentry(man.indent.blurbs) -Writing manpages/man.indent.lists.html for refentry(man.indent.lists) -Writing manpages/man.indent.verbatims.html for refentry(man.indent.verbatims) -Writing manpages/indent.html for reference(indent) -Writing manpages/man.font.funcprototype.html for refentry(man.font.funcprototype) -Writing manpages/man.font.funcsynopsisinfo.html for refentry(man.font.funcsynopsisinfo) -Writing manpages/man.font.links.html for refentry(man.font.links) -Writing manpages/man.font.table.headings.html for refentry(man.font.table.headings) -Writing manpages/man.font.table.title.html for refentry(man.font.table.title) -Writing manpages/fonts.html for reference(fonts) -Writing manpages/man.funcsynopsis.style.html for refentry(man.funcsynopsis.style) -Writing manpages/synopsis.html for reference(synopsis) -Writing manpages/man.authors.section.enabled.html for refentry(man.authors.section.enabled) -Writing manpages/man.copyright.section.enabled.html for refentry(man.copyright.section.enabled) -Writing manpages/authors.html for reference(authors) -Writing manpages/man.endnotes.list.enabled.html for refentry(man.endnotes.list.enabled) -Writing manpages/man.endnotes.list.heading.html for refentry(man.endnotes.list.heading) -Writing manpages/man.endnotes.are.numbered.html for refentry(man.endnotes.are.numbered) -Writing manpages/man.base.url.for.relative.links.html for refentry(man.base.url.for.relative.links) -Writing manpages/endnotes.html for reference(endnotes) -Writing manpages/man.segtitle.suppress.html for refentry(man.segtitle.suppress) -Writing manpages/lists.html for reference(lists) -Writing manpages/man.charmap.enabled.html for refentry(man.charmap.enabled) -Writing manpages/man.charmap.uri.html for refentry(man.charmap.uri) -Writing manpages/man.charmap.use.subset.html for refentry(man.charmap.use.subset) -Writing manpages/man.charmap.subset.profile.html for refentry(man.charmap.subset.profile) -Writing manpages/man.charmap.subset.profile.english.html for refentry(man.charmap.subset.profile.english) -Writing manpages/man.string.subst.map.local.pre.html for refentry(man.string.subst.map.local.pre) -Writing manpages/man.string.subst.map.html for refentry(man.string.subst.map) -Writing manpages/man.string.subst.map.local.post.html for refentry(man.string.subst.map.local.post) -Writing manpages/charmap.html for reference(charmap) -Writing manpages/refentry.meta.get.quietly.html for refentry(refentry.meta.get.quietly) -Writing manpages/refentry.date.profile.html for refentry(refentry.date.profile) -Writing manpages/refentry.date.profile.enabled.html for refentry(refentry.date.profile.enabled) -Writing manpages/refentry.manual.profile.html for refentry(refentry.manual.profile) -Writing manpages/refentry.manual.profile.enabled.html for refentry(refentry.manual.profile.enabled) -Writing manpages/refentry.source.name.suppress.html for refentry(refentry.source.name.suppress) -Writing manpages/refentry.source.name.profile.html for refentry(refentry.source.name.profile) -Writing manpages/refentry.source.name.profile.enabled.html for refentry(refentry.source.name.profile.enabled) -Writing manpages/refentry.version.suppress.html for refentry(refentry.version.suppress) -Writing manpages/refentry.version.profile.html for refentry(refentry.version.profile) -Writing manpages/refentry.version.profile.enabled.html for refentry(refentry.version.profile.enabled) -Writing manpages/refentry.manual.fallback.profile.html for refentry(refentry.manual.fallback.profile) -Writing manpages/refentry.source.fallback.profile.html for refentry(refentry.source.fallback.profile) -Writing manpages/refmeta.html for reference(refmeta) -Writing manpages/man.th.extra1.suppress.html for refentry(man.th.extra1.suppress) -Writing manpages/man.th.extra2.suppress.html for refentry(man.th.extra2.suppress) -Writing manpages/man.th.extra3.suppress.html for refentry(man.th.extra3.suppress) -Writing manpages/man.th.title.max.length.html for refentry(man.th.title.max.length) -Writing manpages/man.th.extra2.max.length.html for refentry(man.th.extra2.max.length) -Writing manpages/man.th.extra3.max.length.html for refentry(man.th.extra3.max.length) -Writing manpages/th.html for reference(th) -Writing manpages/man.output.manifest.enabled.html for refentry(man.output.manifest.enabled) -Writing manpages/man.output.manifest.filename.html for refentry(man.output.manifest.filename) -Writing manpages/man.output.in.separate.dir.html for refentry(man.output.in.separate.dir) -Writing manpages/man.output.lang.in.name.enabled.html for refentry(man.output.lang.in.name.enabled) -Writing manpages/man.output.base.dir.html for refentry(man.output.base.dir) -Writing manpages/man.output.subdirs.enabled.html for refentry(man.output.subdirs.enabled) -Writing manpages/man.output.quietly.html for refentry(man.output.quietly) -Writing manpages/man.output.encoding.html for refentry(man.output.encoding) -Writing manpages/man.output.better.ps.enabled.html for refentry(man.output.better.ps.enabled) -Writing manpages/output.html for reference(output) -Writing manpages/man.table.footnotes.divider.html for refentry(man.table.footnotes.divider) -Writing manpages/man.subheading.divider.enabled.html for refentry(man.subheading.divider.enabled) -Writing manpages/man.subheading.divider.html for refentry(man.subheading.divider) -Writing manpages/other.html for reference(other) -Writing manpages/index.html for part(manpages) -Writing roundtrip/wordml.template.html for refentry(wordml.template) -Writing roundtrip/pages.template.html for refentry(pages.template) -Writing roundtrip/index.html for part(roundtrip) -Writing slides/keyboard.nav.html for refentry(keyboard.nav) -Writing slides/css.stylesheet.html for refentry(css.stylesheet) -Writing slides/css.stylesheet.dir.html for refentry(css.stylesheet.dir) -Writing slides/titlefoil.html.html for refentry(titlefoil.html) -Writing slides/toc.html.html for refentry(toc.html) -Writing slides/foilgroup.toc.html for refentry(foilgroup.toc) -Writing slides/output.indent.html for refentry(output.indent) -Writing slides/overlay.html for refentry(overlay) -Writing slides/show.foil.number.html for refentry(show.foil.number) -Writing slides/html.html for reference(html) -Writing slides/nav.separator.html for refentry(nav.separator) -Writing slides/toc.row.height.html for refentry(toc.row.height) -Writing slides/toc.bg.color.html for refentry(toc.bg.color) -Writing slides/body.bg.color.html for refentry(body.bg.color) -Writing slides/toc.width.html for refentry(toc.width) -Writing slides/toc.hide.show.html for refentry(toc.hide.show) -Writing slides/dynamic.toc.html for refentry(dynamic.toc) -Writing slides/active.toc.html for refentry(active.toc) -Writing slides/overlay.logo.html for refentry(overlay.logo) -Writing slides/multiframe.html for refentry(multiframe) -Writing slides/multiframe.top.bgcolor.html for refentry(multiframe.top.bgcolor) -Writing slides/multiframe.bottom.bgcolor.html for refentry(multiframe.bottom.bgcolor) -Writing slides/multiframe.navigation.height.html for refentry(multiframe.navigation.height) -Writing slides/frames.html for reference(frames) -Writing slides/graphics.dir.html for refentry(graphics.dir) -Writing slides/bullet.image.html for refentry(bullet.image) -Writing slides/next.image.html for refentry(next.image) -Writing slides/prev.image.html for refentry(prev.image) -Writing slides/up.image.html for refentry(up.image) -Writing slides/home.image.html for refentry(home.image) -Writing slides/toc.image.html for refentry(toc.image) -Writing slides/no.next.image.html for refentry(no.next.image) -Writing slides/no.prev.image.html for refentry(no.prev.image) -Writing slides/no.up.image.html for refentry(no.up.image) -Writing slides/no.home.image.html for refentry(no.home.image) -Writing slides/no.toc.image.html for refentry(no.toc.image) -Writing slides/plus.image.html for refentry(plus.image) -Writing slides/minus.image.html for refentry(minus.image) -Writing slides/hidetoc.image.html for refentry(hidetoc.image) -Writing slides/showtoc.image.html for refentry(showtoc.image) -Writing slides/graphics.html for reference(graphics) -Writing slides/script.dir.html for refentry(script.dir) -Writing slides/ua.js.html for refentry(ua.js) -Writing slides/xbDOM.js.html for refentry(xbDOM.js) -Writing slides/xbStyle.js.html for refentry(xbStyle.js) -Writing slides/xbLibrary.js.html for refentry(xbLibrary.js) -Writing slides/xbCollapsibleLists.js.html for refentry(xbCollapsibleLists.js) -Writing slides/overlay.js.html for refentry(overlay.js) -Writing slides/slides.js.html for refentry(slides.js) -Writing slides/javascript.html for reference(javascript) -Writing slides/text.home.html for refentry(text.home) -Writing slides/text.toc.html for refentry(text.toc) -Writing slides/text.prev.html for refentry(text.prev) -Writing slides/text.up.html for refentry(text.up) -Writing slides/text.next.html for refentry(text.next) -Writing slides/l10n.html for reference(l10n) -Writing slides/slide.title.font.family.html for refentry(slide.title.font.family) -Writing slides/slide.font.family.html for refentry(slide.font.family) -Writing slides/foil.title.master.html for refentry(foil.title.master) -Writing slides/foil.title.size.html for refentry(foil.title.size) -Writing slides/fo.html for reference(fo) -Writing slides/slides.properties.html for refentry(slides.properties) -Writing slides/foilgroup.properties.html for refentry(foilgroup.properties) -Writing slides/foil.subtitle.properties.html for refentry(foil.subtitle.properties) -Writing slides/foil.properties.html for refentry(foil.properties) -Writing slides/speakernote.properties.html for refentry(speakernote.properties) -Writing slides/running.foot.properties.html for refentry(running.foot.properties) -Writing slides/propsets.html for reference(propsets) -Writing slides/index.html for part(slides) -Writing website/autolayout-file.html for refentry(autolayout-file) -Writing website/body.attributes.html for refentry(body.attributes) -Writing website/currentpage.marker.html for refentry(currentpage.marker) -Writing website/dry-run.html for refentry(dry-run) -Writing website/feedback.href.html for refentry(feedback.href) -Writing website/feedback.link.text.html for refentry(feedback.link.text) -Writing website/feedback.with.ids.html for refentry(feedback.with.ids) -Writing website/filename-prefix.html for refentry(filename-prefix) -Writing website/footer.hr.html for refentry(footer.hr) -Writing website/header.hr.html for refentry(header.hr) -Writing website/output-root.html for refentry(output-root) -Writing website/rebuild-all.html for refentry(rebuild-all) -Writing website/sequential.links.html for refentry(sequential.links) -Writing website/suppress.homepage.title.html for refentry(suppress.homepage.title) -Writing website/table.spacer.image.html for refentry(table.spacer.image) -Writing website/general.html for reference(general) -Writing website/banner.before.navigation.html for refentry(banner.before.navigation) -Writing website/navbgcolor.html for refentry(navbgcolor) -Writing website/navbodywidth.html for refentry(navbodywidth) -Writing website/nav.table.summary.html for refentry(nav.table.summary) -Writing website/navtocwidth.html for refentry(navtocwidth) -Writing website/textbgcolor.html for refentry(textbgcolor) -Writing website/nav.html for reference(nav) -Writing website/toc.blank.graphic.html for refentry(toc.blank.graphic) -Writing website/toc.blank.image.html for refentry(toc.blank.image) -Writing website/toc.blank.text.html for refentry(toc.blank.text) -Writing website/toc.pointer.graphic.html for refentry(toc.pointer.graphic) -Writing website/toc.pointer.image.html for refentry(toc.pointer.image) -Writing website/toc.pointer.text.html for refentry(toc.pointer.text) -Writing website/toc.spacer.graphic.html for refentry(toc.spacer.graphic) -Writing website/toc.spacer.image.html for refentry(toc.spacer.image) -Writing website/toc.spacer.text.html for refentry(toc.spacer.text) -Writing website/toc.html for reference(toc) -Writing website/index.html for part(website) -Writing param.html for book(param) -Writing pi/dbhtml_background-color.html for refentry(dbhtml_background-color) -Writing pi/dbhtml_bgcolor.html for refentry(dbhtml_bgcolor) -Writing pi/dbhtml_cellpadding.html for refentry(dbhtml_cellpadding) -Writing pi/dbhtml_cellspacing.html for refentry(dbhtml_cellspacing) -Writing pi/dbhtml_class.html for refentry(dbhtml_class) -Writing pi/dbhtml_dir.html for refentry(dbhtml_dir) -Writing pi/dbhtml_filename.html for refentry(dbhtml_filename) -Writing pi/dbhtml_funcsynopsis-style.html for refentry(dbhtml_funcsynopsis-style) -Writing pi/dbhtml_img.src.path.html for refentry(dbhtml_img.src.path) -Writing pi/dbhtml_label-width.html for refentry(dbhtml_label-width) -Writing pi/dbhtml_linenumbering.everyNth.html for refentry(dbhtml_linenumbering.everyNth) -Writing pi/dbhtml_linenumbering.separator.html for refentry(dbhtml_linenumbering.separator) -Writing pi/dbhtml_linenumbering.width.html for refentry(dbhtml_linenumbering.width) -Writing pi/dbhtml_list-presentation.html for refentry(dbhtml_list-presentation) -Writing pi/dbhtml_list-width.html for refentry(dbhtml_list-width) -Writing pi/dbhtml_row-height.html for refentry(dbhtml_row-height) -Writing pi/dbhtml_start.html for refentry(dbhtml_start) -Writing pi/dbhtml_stop-chunking.html for refentry(dbhtml_stop-chunking) -Writing pi/dbhtml_table-summary.html for refentry(dbhtml_table-summary) -Writing pi/dbhtml_table-width.html for refentry(dbhtml_table-width) -Writing pi/dbhtml_term-presentation.html for refentry(dbhtml_term-presentation) -Writing pi/dbhtml_term-separator.html for refentry(dbhtml_term-separator) -Writing pi/dbhtml_term-width.html for refentry(dbhtml_term-width) -Writing pi/dbhtml_toc.html for refentry(dbhtml_toc) -Writing pi/dbcmdlist.html for refentry(dbcmdlist) -Writing pi/dbfunclist.html for refentry(dbfunclist) -Writing pi/dbhtml-include_href.html for refentry(dbhtml-include_href) -Writing pi/dbhh.html for refentry(dbhh) -Writing pi/pi-html.html for part(pi-html) -Writing pi/dbfo_background-color.html for refentry(dbfo_background-color) -Writing pi/dbfo_bgcolor.html for refentry(dbfo_bgcolor) -Writing pi/dbfo_float-type.html for refentry(dbfo_float-type) -Writing pi/dbfo_funcsynopsis-style.html for refentry(dbfo_funcsynopsis-style) -Writing pi/dbfo_glossary-presentation.html for refentry(dbfo_glossary-presentation) -Writing pi/dbfo_glosslist-presentation.html for refentry(dbfo_glosslist-presentation) -Writing pi/dbfo_glossterm-width.html for refentry(dbfo_glossterm-width) -Writing pi/dbfo_keep-together.html for refentry(dbfo_keep-together) -Writing pi/dbfo_label-width.html for refentry(dbfo_label-width) -Writing pi/dbfo_linenumbering.everyNth.html for refentry(dbfo_linenumbering.everyNth) -Writing pi/dbfo_linenumbering.separator.html for refentry(dbfo_linenumbering.separator) -Writing pi/dbfo_linenumbering.width.html for refentry(dbfo_linenumbering.width) -Writing pi/dbfo_list-presentation.html for refentry(dbfo_list-presentation) -Writing pi/dbfo_list-width.html for refentry(dbfo_list-width) -Writing pi/dbfo_orientation.html for refentry(dbfo_orientation) -Writing pi/dbfo_pgwide.html for refentry(dbfo_pgwide) -Writing pi/dbfo_rotated-width.html for refentry(dbfo_rotated-width) -Writing pi/dbfo_sidebar-width.html for refentry(dbfo_sidebar-width) -Writing pi/dbfo_start.html for refentry(dbfo_start) -Writing pi/dbfo_table-width.html for refentry(dbfo_table-width) -Writing pi/dbfo_term-width.html for refentry(dbfo_term-width) -Writing pi/dbfo_toc.html for refentry(dbfo_toc) -Writing pi/dbfo-need.html for refentry(dbfo-need) -Writing pi/dbfo_row-height.html for refentry(dbfo_row-height) -Writing pi/pi-fo.html for part(pi-fo) -Writing pi/dbman_funcsynopsis-style.html for refentry(dbman_funcsynopsis-style) -Writing pi/pi-man.html for part(pi-man) -Writing pi/dbchoice_choice.html for refentry(dbchoice_choice) -Writing pi/dbtimestamp.html for refentry(dbtimestamp) -Writing pi/dbtex_delims.html for refentry(dbtex_delims) -Writing pi/pi-common.html for part(pi-common) -Writing pi/index.html for book(pi) -Writing lib/dot.count.html for refentry(dot.count) -Writing lib/copy-string.html for refentry(copy-string) -Writing lib/string.subst.html for refentry(string.subst) -Writing lib/xpointer.idref.html for refentry(xpointer.idref) -Writing lib/length-magnitude.html for refentry(length-magnitude) -Writing lib/length-units.html for refentry(length-units) -Writing lib/length-spec.html for refentry(length-spec) -Writing lib/length-in-points.html for refentry(length-in-points) -Writing lib/pi-attribute.html for refentry(pi-attribute) -Writing lib/lookup.key.html for refentry(lookup.key) -Writing lib/xpath.location.html for refentry(xpath.location) -Writing lib/comment-escape-string.html for refentry(comment-escape-string) -Writing lib/comment-escape-string.recursive.html for refentry(comment-escape-string.recursive) -Writing lib/trim.text.html for refentry(trim.text) -Writing lib/str.tokenize.keep.delimiters.html for refentry(str.tokenize.keep.delimiters) -Writing lib/apply-string-subst-map.html for refentry(apply-string-subst-map) -Writing lib/generallibrary.html for reference(generallibrary) -Writing lib/count.uri.path.depth.html for refentry(count.uri.path.depth) -Writing lib/trim.common.uri.paths.html for refentry(trim.common.uri.paths) -Writing lib/relativeuri.html for reference(relativeuri) -Writing lib/index.html for part(lib) -Writing common/template.is.component.html for refentry(template.is.component) -Writing common/template.is.section.html for refentry(template.is.section) -Writing common/template.section.level.html for refentry(template.section.level) -Writing common/template.qanda.section.level.html for refentry(template.qanda.section.level) -Writing common/template.select.mediaobject.html for refentry(template.select.mediaobject) -Writing common/template.select.mediaobject.index.html for refentry(template.select.mediaobject.index) -Writing common/template.is.acceptable.mediaobject.html for refentry(template.is.acceptable.mediaobject) -Writing common/template.check.id.unique.html for refentry(template.check.id.unique) -Writing common/template.check.idref.targets.html for refentry(template.check.idref.targets) -Writing common/template.copyright.years.html for refentry(template.copyright.years) -Writing common/template.find.path.params.html for refentry(template.find.path.params) -Writing common/template.string.upper.html for refentry(template.string.upper) -Writing common/template.string.lower.html for refentry(template.string.lower) -Writing common/template.select.choice.separator.html for refentry(template.select.choice.separator) -Writing common/template.evaluate.info.profile.html for refentry(template.evaluate.info.profile) -Writing common/base.html for reference(base) -Writing common/template.get.refentry.metadata.html for refentry(template.get.refentry.metadata) -Writing common/template.get.refentry.title.html for refentry(template.get.refentry.title) -Writing common/template.get.refentry.section.html for refentry(template.get.refentry.section) -Writing common/template.get.refentry.date.html for refentry(template.get.refentry.date) -Writing common/template.get.refentry.source.html for refentry(template.get.refentry.source) -Writing common/template.get.refentry.source.name.html for refentry(template.get.refentry.source.name) -Writing common/template.get.refentry.version.html for refentry(template.get.refentry.version) -Writing common/template.get.refentry.manual.html for refentry(template.get.refentry.manual) -Writing common/template.get.refentry.metadata.prefs.html for refentry(template.get.refentry.metadata.prefs) -Writing common/template.set.refentry.metadata.html for refentry(template.set.refentry.metadata) -Writing common/refentry.html for reference(refentry) -Writing common/template.log.message.html for refentry(template.log.message) -Writing common/template.get.doc.title.html for refentry(template.get.doc.title) -Writing common/template.pad-string.html for refentry(template.pad-string) -Writing common/utility.html for reference(utility) -Writing common/template.apply-character-map.html for refentry(template.apply-character-map) -Writing common/template.read-character-map.html for refentry(template.read-character-map) -Writing common/charmap.html for reference(charmap) -Writing common/index.html for part(common-part) -Writing fo/template.calc.column.width.html for refentry(template.calc.column.width) -Writing fo/table-templates.html for part(table-templates) -Writing template/templates.html for refentry(templates) -Writing template/star.html for refentry(star) -Writing template/titlepage.html for refentry(titlepage) -Writing template/attr_star_in_copy.literal.atts.html for refentry(attr_star_in_copy.literal.atts) -Writing template/titlepage-content.html for refentry(titlepage-content) -Writing template/titlepage-separator.html for refentry(titlepage-separator) -Writing template/titlepage-before.html for refentry(titlepage-before) -Writing template/star_in_copy.html for refentry(star_in_copy) -Writing template/attr_star_in_copy.html for refentry(attr_star_in_copy) -Writing template/attr_star_in_document.order.html for refentry(attr_star_in_document.order) -Writing template/star_in_document.order.html for refentry(star_in_document.order) -Writing template/star_in_titlepage.specialrules.html for refentry(star_in_titlepage.specialrules) -Writing template/star_in_titlepage.subrules.html for refentry(star_in_titlepage.subrules) -Writing template/or.html for refentry(or) -Writing template/or_in_titlepage.subrules.html for refentry(or_in_titlepage.subrules) -Writing template/template.element-or-list.html for refentry(template.element-or-list) -Writing template/index.html for part(template) -Writing developer.html for book(developer) -Writing index.html for set -Writing HTML.manifest -cp -p index.html reference.html -cp -p ../docsrc/reference.css . -for dir in common fo html lib manpages pi refentry roundtrip slides template utility website; do cp -p ../docsrc/reference.css $dir; done -/Users/keith/work/docbook-dev/buildtools/xslt -xsltproc ../docsrc/reference.xml.included /Users/keith/work/docbook-dev/xsl/tools/xsl/build/reference-txt.xsl > reference.txt.html -Note: namesp. cut : stripped namespace before processing DocBook XSL Stylesheets: Reference Documentation -Note: namesp. cut : processing stripped document DocBook XSL Stylesheets: Reference Documentation -GC_NPROCS=1 w3m -dump reference.txt.html > reference.txt -cat reference.txt | gzip > reference.txt.gz -/Users/keith/work/docbook-dev/buildtools/xslt -saxon ../docsrc/reference.xml.included /Users/keith/work/docbook-dev/xsl/tools/xsl/build/reference-fo.xsl > reference.fo -Note: namesp. cut : stripped namespace before processing DocBook XSL Stylesheets: ReferenceÊDocumentation -Note: namesp. cut : processing stripped document DocBook XSL Stylesheets: ReferenceÊDocumentation -Making portrait pages on A4 paper (210mmx297mm) -dblatex \ - -p /Users/keith/work/docbook-dev/xsl/tools/xsl/build/dblatex-release-notes.xsl \ - -o reference.pdf \ - reference.fo -Build the listings... -XSLT stylesheets DocBook - LaTeX 2e (0.2.7) -=================================================== -*** Warning: the root element is not an article nor a book -*** Warning: element wrapped with article -No template matches fo:root in article. -No template matches rx:meta-info in fo:root. -No template matches rx:meta-field in rx:meta-info. -No template matches rx:meta-field in rx:meta-info. -No template matches rx:meta-field in rx:meta-info. -No template matches fo:layout-master-set in fo:root. -No template matches fo:simple-page-master in fo:layout-master-set. -No template matches fo:region-body in fo:simple-page-master. -No template matches fo:region-before in fo:simple-page-master. -No template matches fo:region-after in fo:simple-page-master. -No template matches fo:simple-page-master in fo:layout-master-set. -No template matches fo:region-body in fo:simple-page-master. -No template matches fo:region-before in fo:simple-page-master. -No template matches fo:region-after in fo:simple-page-master. -No template matches fo:simple-page-master in fo:layout-master-set. -No template matches fo:region-body in fo:simple-page-master. -No template matches fo:region-before in fo:simple-page-master. -No template matches fo:region-after in fo:simple-page-master. -No template matches fo:simple-page-master in fo:layout-master-set. -No template matches fo:region-body in fo:simple-page-master. -No template matches fo:region-before in fo:simple-page-master. -No template matches fo:region-after in fo:simple-page-master. -No template matches fo:simple-page-master in fo:layout-master-set. -No template matches fo:region-body in fo:simple-page-master. -No template matches fo:region-before in fo:simple-page-master. -No template matches fo:region-after in fo:simple-page-master. -No template matches fo:simple-page-master in fo:layout-master-set. -No template matches fo:region-body in fo:simple-page-master. -No template matches fo:region-before in fo:simple-page-master. -No template matches fo:region-after in fo:simple-page-master. -No template matches fo:simple-page-master in fo:layout-master-set. -No template matches fo:region-body in fo:simple-page-master. -No template matches fo:region-before in fo:simple-page-master. -No template matches fo:region-after in fo:simple-page-master. -No template matches fo:simple-page-master in fo:layout-master-set. -No template matches fo:region-body in fo:simple-page-master. -No template matches fo:region-before in fo:simple-page-master. -No template matches fo:region-after in fo:simple-page-master. -No template matches fo:simple-page-master in fo:layout-master-set. -No template matches fo:region-body in fo:simple-page-master. -No template matches fo:region-before in fo:simple-page-master. -No template matches fo:region-after in fo:simple-page-master. -No template matches fo:simple-page-master in fo:layout-master-set. -No template matches fo:region-body in fo:simple-page-master. -No template matches fo:region-before in fo:simple-page-master. -No template matches fo:region-after in fo:simple-page-master. -No template matches fo:simple-page-master in fo:layout-master-set. -No template matches fo:region-body in fo:simple-page-master. -No template matches fo:region-before in fo:simple-page-master. -No template matches fo:region-after in fo:simple-page-master. -No template matches fo:simple-page-master in fo:layout-master-set. -No template matches fo:region-body in fo:simple-page-master. -No template matches fo:region-before in fo:simple-page-master. -No template matches fo:region-after in fo:simple-page-master. -No template matches fo:simple-page-master in fo:layout-master-set. -No template matches fo:region-body in fo:simple-page-master. -No template matches fo:region-before in fo:simple-page-master. -No template matches fo:region-after in fo:simple-page-master. -No template matches fo:simple-page-master in fo:layout-master-set. -No template matches fo:region-body in fo:simple-page-master. -No template matches fo:region-before in fo:simple-page-master. -No template matches fo:region-after in fo:simple-page-master. -No template matches fo:simple-page-master in fo:layout-master-set. -No template matches fo:region-body in fo:simple-page-master. -No template matches fo:region-before in fo:simple-page-master. -No template matches fo:region-after in fo:simple-page-master. -No template matches fo:simple-page-master in fo:layout-master-set. -No template matches fo:region-body in fo:simple-page-master. -No template matches fo:region-before in fo:simple-page-master. -No template matches fo:region-after in fo:simple-page-master. -No template matches fo:simple-page-master in fo:layout-master-set. -No template matches fo:region-body in fo:simple-page-master. -No template matches fo:region-before in fo:simple-page-master. -No template matches fo:region-after in fo:simple-page-master. -No template matches fo:simple-page-master in fo:layout-master-set. -No template matches fo:region-body in fo:simple-page-master. -No template matches fo:region-before in fo:simple-page-master. -No template matches fo:region-after in fo:simple-page-master. -No template matches fo:simple-page-master in fo:layout-master-set. -No template matches fo:region-body in fo:simple-page-master. -No template matches fo:region-before in fo:simple-page-master. -No template matches fo:region-after in fo:simple-page-master. -No template matches fo:simple-page-master in fo:layout-master-set. -No template matches fo:region-body in fo:simple-page-master. -No template matches fo:region-before in fo:simple-page-master. -No template matches fo:region-after in fo:simple-page-master. -No template matches fo:simple-page-master in fo:layout-master-set. -No template matches fo:region-body in fo:simple-page-master. -No template matches fo:region-before in fo:simple-page-master. -No template matches fo:region-after in fo:simple-page-master. -No template matches fo:simple-page-master in fo:layout-master-set. -No template matches fo:region-body in fo:simple-page-master. -No template matches fo:region-before in fo:simple-page-master. -No template matches fo:region-after in fo:simple-page-master. -No template matches fo:simple-page-master in fo:layout-master-set. -No template matches fo:region-body in fo:simple-page-master. -No template matches fo:region-before in fo:simple-page-master. -No template matches fo:region-after in fo:simple-page-master. -No template matches fo:simple-page-master in fo:layout-master-set. -No template matches fo:region-body in fo:simple-page-master. -No template matches fo:region-before in fo:simple-page-master. -No template matches fo:region-after in fo:simple-page-master. -No template matches fo:simple-page-master in fo:layout-master-set. -No template matches fo:region-body in fo:simple-page-master. -No template matches fo:region-before in fo:simple-page-master. -No template matches fo:region-after in fo:simple-page-master. -No template matches fo:simple-page-master in fo:layout-master-set. -No template matches fo:region-body in fo:simple-page-master. -No template matches fo:region-before in fo:simple-page-master. -No template matches fo:region-after in fo:simple-page-master. -No template matches fo:simple-page-master in fo:layout-master-set. -No template matches fo:region-body in fo:simple-page-master. -No template matches fo:region-before in fo:simple-page-master. -No template matches fo:region-after in fo:simple-page-master. -No template matches fo:simple-page-master in fo:layout-master-set. -No template matches fo:region-body in fo:simple-page-master. -No template matches fo:region-before in fo:simple-page-master. -No template matches fo:region-after in fo:simple-page-master. -No template matches fo:simple-page-master in fo:layout-master-set. -No template matches fo:region-body in fo:simple-page-master. -No template matches fo:region-before in fo:simple-page-master. -No template matches fo:region-after in fo:simple-page-master. -No template matches fo:simple-page-master in fo:layout-master-set. -No template matches fo:region-body in fo:simple-page-master. -No template matches fo:region-before in fo:simple-page-master. -No template matches fo:region-after in fo:simple-page-master. -No template matches fo:simple-page-master in fo:layout-master-set. -No template matches fo:region-body in fo:simple-page-master. -No template matches fo:region-before in fo:simple-page-master. -No template matches fo:region-after in fo:simple-page-master. -No template matches fo:simple-page-master in fo:layout-master-set. -No template matches fo:region-body in fo:simple-page-master. -No template matches fo:region-before in fo:simple-page-master. -No template matches fo:region-after in fo:simple-page-master. -No template matches fo:simple-page-master in fo:layout-master-set. -No template matches fo:region-body in fo:simple-page-master. -No template matches fo:region-before in fo:simple-page-master. -No template matches fo:region-after in fo:simple-page-master. -No template matches fo:simple-page-master in fo:layout-master-set. -No template matches fo:region-body in fo:simple-page-master. -No template matches fo:region-before in fo:simple-page-master. -No template matches fo:region-after in fo:simple-page-master. -No template matches fo:simple-page-master in fo:layout-master-set. -No template matches fo:region-body in fo:simple-page-master. -No template matches fo:region-before in fo:simple-page-master. -No template matches fo:region-after in fo:simple-page-master. -No template matches fo:simple-page-master in fo:layout-master-set. -No template matches fo:region-body in fo:simple-page-master. -No template matches fo:region-before in fo:simple-page-master. -No template matches fo:region-after in fo:simple-page-master. -No template matches fo:simple-page-master in fo:layout-master-set. -No template matches fo:region-body in fo:simple-page-master. -No template matches fo:region-before in fo:simple-page-master. -No template matches fo:region-after in fo:simple-page-master. -No template matches fo:simple-page-master in fo:layout-master-set. -No template matches fo:region-body in fo:simple-page-master. -No template matches fo:region-before in fo:simple-page-master. -No template matches fo:region-after in fo:simple-page-master. -No template matches fo:page-sequence-master in fo:layout-master-set. -No template matches fo:repeatable-page-master-alternatives in fo:page-sequence-master. -No template matches fo:conditional-page-master-reference in fo:repeatable-page-master-alternatives. -No template matches fo:conditional-page-master-reference in fo:repeatable-page-master-alternatives. -No template matches fo:conditional-page-master-reference in fo:repeatable-page-master-alternatives. -No template matches fo:conditional-page-master-reference in fo:repeatable-page-master-alternatives. -No template matches fo:page-sequence-master in fo:layout-master-set. -No template matches fo:repeatable-page-master-alternatives in fo:page-sequence-master. -No template matches fo:conditional-page-master-reference in fo:repeatable-page-master-alternatives. -No template matches fo:conditional-page-master-reference in fo:repeatable-page-master-alternatives. -No template matches fo:conditional-page-master-reference in fo:repeatable-page-master-alternatives. -No template matches fo:conditional-page-master-reference in fo:repeatable-page-master-alternatives. -No template matches fo:page-sequence-master in fo:layout-master-set. -No template matches fo:repeatable-page-master-alternatives in fo:page-sequence-master. -No template matches fo:conditional-page-master-reference in fo:repeatable-page-master-alternatives. -No template matches fo:conditional-page-master-reference in fo:repeatable-page-master-alternatives. -No template matches fo:conditional-page-master-reference in fo:repeatable-page-master-alternatives. -No template matches fo:conditional-page-master-reference in fo:repeatable-page-master-alternatives. -No template matches fo:page-sequence-master in fo:layout-master-set. -No template matches fo:repeatable-page-master-alternatives in fo:page-sequence-master. -No template matches fo:conditional-page-master-reference in fo:repeatable-page-master-alternatives. -No template matches fo:conditional-page-master-reference in fo:repeatable-page-master-alternatives. -No template matches fo:conditional-page-master-reference in fo:repeatable-page-master-alternatives. -No template matches fo:conditional-page-master-reference in fo:repeatable-page-master-alternatives. -No template matches fo:page-sequence-master in fo:layout-master-set. -No template matches fo:repeatable-page-master-alternatives in fo:page-sequence-master. -No template matches fo:conditional-page-master-reference in fo:repeatable-page-master-alternatives. -No template matches fo:conditional-page-master-reference in fo:repeatable-page-master-alternatives. -No template matches fo:conditional-page-master-reference in fo:repeatable-page-master-alternatives. -No template matches fo:conditional-page-master-reference in fo:repeatable-page-master-alternatives. -No template matches fo:page-sequence-master in fo:layout-master-set. -No template matches fo:repeatable-page-master-alternatives in fo:page-sequence-master. -No template matches fo:conditional-page-master-reference in fo:repeatable-page-master-alternatives. -No template matches fo:conditional-page-master-reference in fo:repeatable-page-master-alternatives. -No template matches fo:conditional-page-master-reference in fo:repeatable-page-master-alternatives. -No template matches fo:conditional-page-master-reference in fo:repeatable-page-master-alternatives. -No template matches fo:page-sequence-master in fo:layout-master-set. -No template matches fo:repeatable-page-master-alternatives in fo:page-sequence-master. -No template matches fo:conditional-page-master-reference in fo:repeatable-page-master-alternatives. -No template matches fo:conditional-page-master-reference in fo:repeatable-page-master-alternatives. -No template matches fo:conditional-page-master-reference in fo:repeatable-page-master-alternatives. -No template matches fo:conditional-page-master-reference in fo:repeatable-page-master-alternatives. -No template matches fo:page-sequence-master in fo:layout-master-set. -No template matches fo:repeatable-page-master-alternatives in fo:page-sequence-master. -No template matches fo:conditional-page-master-reference in fo:repeatable-page-master-alternatives. -No template matches fo:conditional-page-master-reference in fo:repeatable-page-master-alternatives. -No template matches fo:conditional-page-master-reference in fo:repeatable-page-master-alternatives. -No template matches fo:conditional-page-master-reference in fo:repeatable-page-master-alternatives. -No template matches fo:page-sequence-master in fo:layout-master-set. -No template matches fo:repeatable-page-master-alternatives in fo:page-sequence-master. -No template matches fo:conditional-page-master-reference in fo:repeatable-page-master-alternatives. -No template matches fo:conditional-page-master-reference in fo:repeatable-page-master-alternatives. -No template matches fo:conditional-page-master-reference in fo:repeatable-page-master-alternatives. -No template matches fo:conditional-page-master-reference in fo:repeatable-page-master-alternatives. -No template matches fo:page-sequence-master in fo:layout-master-set. -No template matches fo:repeatable-page-master-alternatives in fo:page-sequence-master. -No template matches fo:conditional-page-master-reference in fo:repeatable-page-master-alternatives. -No template matches fo:conditional-page-master-reference in fo:repeatable-page-master-alternatives. -No template matches fo:conditional-page-master-reference in fo:repeatable-page-master-alternatives. -No template matches fo:conditional-page-master-reference in fo:repeatable-page-master-alternatives. -No template matches fo:page-sequence-master in fo:layout-master-set. -No template matches fo:repeatable-page-master-alternatives in fo:page-sequence-master. -No template matches fo:conditional-page-master-reference in fo:repeatable-page-master-alternatives. -No template matches fo:conditional-page-master-reference in fo:repeatable-page-master-alternatives. -No template matches fo:conditional-page-master-reference in fo:repeatable-page-master-alternatives. -No template matches fo:conditional-page-master-reference in fo:repeatable-page-master-alternatives. -No template matches fo:page-sequence-master in fo:layout-master-set. -No template matches fo:repeatable-page-master-alternatives in fo:page-sequence-master. -No template matches fo:conditional-page-master-reference in fo:repeatable-page-master-alternatives. -No template matches fo:conditional-page-master-reference in fo:repeatable-page-master-alternatives. -No template matches fo:conditional-page-master-reference in fo:repeatable-page-master-alternatives. -No template matches fo:conditional-page-master-reference in fo:repeatable-page-master-alternatives. -No template matches rx:outline in fo:root. -No template matches rx:bookmark in rx:outline. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:outline. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:outline. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:outline. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:outline. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches rx:bookmark in rx:bookmark. -No template matches rx:bookmark-label in rx:bookmark. -No template matches fo:page-sequence in fo:root. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:leader in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:flow in fo:page-sequence. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:wrapper in fo:block. -No template matches fo:block in fo:wrapper. -No template matches fo:block in fo:wrapper. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:list-block in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:footnote in fo:block. -No template matches fo:inline in fo:footnote. -No template matches fo:footnote-body in fo:footnote. -No template matches fo:block in fo:footnote-body. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:footnote in fo:block. -No template matches fo:inline in fo:footnote. -No template matches fo:footnote-body in fo:footnote. -No template matches fo:block in fo:footnote-body. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:footnote in fo:block. -No template matches fo:inline in fo:footnote. -No template matches fo:footnote-body in fo:footnote. -No template matches fo:block in fo:footnote-body. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:footnote in fo:block. -No template matches fo:inline in fo:footnote. -No template matches fo:footnote-body in fo:footnote. -No template matches fo:block in fo:footnote-body. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:page-sequence in fo:root. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:leader in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:flow in fo:page-sequence. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:page-sequence in fo:root. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:leader in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:flow in fo:page-sequence. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:footnote in fo:block. -No template matches fo:inline in fo:footnote. -No template matches fo:footnote-body in fo:footnote. -No template matches fo:block in fo:footnote-body. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:block in fo:block. -No template matches fo:page-sequence in fo:root. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:leader in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:flow in fo:page-sequence. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:page-sequence in fo:root. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:leader in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:flow in fo:page-sequence. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:leader in fo:inline. -No template matches fo:basic-link in fo:inline. -No template matches fo:page-number-citation in fo:basic-link. -No template matches fo:page-sequence in fo:root. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:leader in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:flow in fo:page-sequence. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:page-sequence in fo:root. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:leader in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:flow in fo:page-sequence. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:page-sequence in fo:root. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:leader in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:flow in fo:page-sequence. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:list-block in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:page-sequence in fo:root. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:leader in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:flow in fo:page-sequence. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:inline. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:page-sequence in fo:root. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:leader in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:flow in fo:page-sequence. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:inline. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:inline. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:list-block in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:inline. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:list-block in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:block in fo:block. -No template matches fo:list-block in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:list-block in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:page-sequence in fo:root. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:leader in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:flow in fo:page-sequence. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:footnote in fo:block. -No template matches fo:inline in fo:footnote. -No template matches fo:footnote-body in fo:footnote. -No template matches fo:block in fo:footnote-body. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:footnote in fo:block. -No template matches fo:inline in fo:footnote. -No template matches fo:footnote-body in fo:footnote. -No template matches fo:block in fo:footnote-body. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:footnote in fo:block. -No template matches fo:inline in fo:footnote. -No template matches fo:footnote-body in fo:footnote. -No template matches fo:block in fo:footnote-body. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:footnote in fo:block. -No template matches fo:inline in fo:footnote. -No template matches fo:footnote-body in fo:footnote. -No template matches fo:block in fo:footnote-body. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:block in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:footnote in fo:block. -No template matches fo:inline in fo:footnote. -No template matches fo:footnote-body in fo:footnote. -No template matches fo:block in fo:footnote-body. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:page-sequence in fo:root. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:leader in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:flow in fo:page-sequence. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:page-sequence in fo:root. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:leader in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:flow in fo:page-sequence. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:footnote in fo:block. -No template matches fo:inline in fo:footnote. -No template matches fo:footnote-body in fo:footnote. -No template matches fo:block in fo:footnote-body. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:page-sequence in fo:root. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:leader in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:flow in fo:page-sequence. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:page-sequence in fo:root. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:leader in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:flow in fo:page-sequence. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:list-block in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:list-block in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:list-block in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:footnote in fo:block. -No template matches fo:inline in fo:footnote. -No template matches fo:footnote-body in fo:footnote. -No template matches fo:block in fo:footnote-body. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:list-block in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:footnote in fo:block. -No template matches fo:inline in fo:footnote. -No template matches fo:footnote-body in fo:footnote. -No template matches fo:block in fo:footnote-body. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:page-sequence in fo:root. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:leader in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:flow in fo:page-sequence. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:page-sequence in fo:root. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:leader in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:flow in fo:page-sequence. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:footnote in fo:block. -No template matches fo:inline in fo:footnote. -No template matches fo:footnote-body in fo:footnote. -No template matches fo:block in fo:footnote-body. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:footnote in fo:block. -No template matches fo:inline in fo:footnote. -No template matches fo:footnote-body in fo:footnote. -No template matches fo:block in fo:footnote-body. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:page-sequence in fo:root. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:leader in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:flow in fo:page-sequence. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:inline. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:inline. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:inline. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:inline. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:inline. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:page-sequence in fo:root. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:leader in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:flow in fo:page-sequence. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:list-block in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:inline. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:inline. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:inline. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:inline. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:inline. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:inline. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:list-block in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:page-sequence in fo:root. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:leader in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:flow in fo:page-sequence. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:page-sequence in fo:root. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:leader in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:flow in fo:page-sequence. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:page-sequence in fo:root. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:leader in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:flow in fo:page-sequence. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:footnote in fo:block. -No template matches fo:inline in fo:footnote. -No template matches fo:footnote-body in fo:footnote. -No template matches fo:block in fo:footnote-body. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:page-sequence in fo:root. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:leader in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:flow in fo:page-sequence. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:list-block in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:page-sequence in fo:root. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:leader in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:flow in fo:page-sequence. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:inline. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:footnote in fo:block. -No template matches fo:inline in fo:footnote. -No template matches fo:footnote-body in fo:footnote. -No template matches fo:block in fo:footnote-body. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:footnote in fo:block. -No template matches fo:inline in fo:footnote. -No template matches fo:footnote-body in fo:footnote. -No template matches fo:block in fo:footnote-body. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:footnote in fo:block. -No template matches fo:inline in fo:footnote. -No template matches fo:footnote-body in fo:footnote. -No template matches fo:block in fo:footnote-body. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:footnote in fo:block. -No template matches fo:inline in fo:footnote. -No template matches fo:footnote-body in fo:footnote. -No template matches fo:block in fo:footnote-body. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:footnote in fo:block. -No template matches fo:inline in fo:footnote. -No template matches fo:footnote-body in fo:footnote. -No template matches fo:block in fo:footnote-body. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:list-block in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:footnote in fo:block. -No template matches fo:inline in fo:footnote. -No template matches fo:footnote-body in fo:footnote. -No template matches fo:block in fo:footnote-body. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:list-block in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:footnote in fo:block. -No template matches fo:inline in fo:footnote. -No template matches fo:inline in fo:inline. -No template matches fo:footnote-body in fo:footnote. -No template matches fo:block in fo:footnote-body. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:page-sequence in fo:root. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:leader in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:flow in fo:page-sequence. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:page-sequence in fo:root. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:leader in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:flow in fo:page-sequence. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:footnote in fo:block. -No template matches fo:inline in fo:footnote. -No template matches fo:footnote-body in fo:footnote. -No template matches fo:block in fo:footnote-body. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:list-block in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:page-sequence in fo:root. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:leader in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:flow in fo:page-sequence. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:footnote in fo:block. -No template matches fo:inline in fo:footnote. -No template matches fo:footnote-body in fo:footnote. -No template matches fo:block in fo:footnote-body. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:footnote in fo:block. -No template matches fo:inline in fo:footnote. -No template matches fo:footnote-body in fo:footnote. -No template matches fo:block in fo:footnote-body. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:footnote in fo:block. -No template matches fo:inline in fo:footnote. -No template matches fo:footnote-body in fo:footnote. -No template matches fo:block in fo:footnote-body. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:page-sequence in fo:root. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:leader in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:flow in fo:page-sequence. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:basic-link in fo:block. -No template matches fo:footnote in fo:block. -No template matches fo:inline in fo:footnote. -No template matches fo:footnote-body in fo:footnote. -No template matches fo:block in fo:footnote-body. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:page-sequence in fo:root. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:leader in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:flow in fo:page-sequence. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:footnote in fo:block. -No template matches fo:inline in fo:footnote. -No template matches fo:footnote-body in fo:footnote. -No template matches fo:block in fo:footnote-body. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:footnote in fo:block. -No template matches fo:inline in fo:footnote. -No template matches fo:footnote-body in fo:footnote. -No template matches fo:block in fo:footnote-body. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:page-sequence in fo:root. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:leader in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:flow in fo:page-sequence. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:page-sequence in fo:root. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:leader in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:flow in fo:page-sequence. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:page-sequence in fo:root. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:leader in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:flow in fo:page-sequence. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:footnote in fo:block. -No template matches fo:inline in fo:footnote. -No template matches fo:inline in fo:inline. -No template matches fo:footnote-body in fo:footnote. -No template matches fo:block in fo:footnote-body. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:page-sequence in fo:root. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:leader in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:flow in fo:page-sequence. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:page-sequence in fo:root. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:leader in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:flow in fo:page-sequence. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:page-sequence in fo:root. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:leader in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:flow in fo:page-sequence. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:list-block in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:page-sequence in fo:root. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:leader in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:flow in fo:page-sequence. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:inline. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:inline. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:list-block in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:inline. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:list-block in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:block in fo:block. -No template matches fo:list-block in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:page-sequence in fo:root. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:leader in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:flow in fo:page-sequence. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:footnote in fo:block. -No template matches fo:inline in fo:footnote. -No template matches fo:footnote-body in fo:footnote. -No template matches fo:block in fo:footnote-body. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:footnote in fo:block. -No template matches fo:inline in fo:footnote. -No template matches fo:footnote-body in fo:footnote. -No template matches fo:block in fo:footnote-body. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:footnote in fo:block. -No template matches fo:inline in fo:footnote. -No template matches fo:footnote-body in fo:footnote. -No template matches fo:block in fo:footnote-body. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:footnote in fo:block. -No template matches fo:inline in fo:footnote. -No template matches fo:footnote-body in fo:footnote. -No template matches fo:block in fo:footnote-body. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:footnote in fo:block. -No template matches fo:inline in fo:footnote. -No template matches fo:footnote-body in fo:footnote. -No template matches fo:block in fo:footnote-body. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:footnote in fo:block. -No template matches fo:inline in fo:footnote. -No template matches fo:footnote-body in fo:footnote. -No template matches fo:block in fo:footnote-body. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:footnote in fo:block. -No template matches fo:inline in fo:footnote. -No template matches fo:footnote-body in fo:footnote. -No template matches fo:block in fo:footnote-body. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:footnote in fo:block. -No template matches fo:inline in fo:footnote. -No template matches fo:footnote-body in fo:footnote. -No template matches fo:block in fo:footnote-body. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:block in fo:block. -No template matches fo:page-sequence in fo:root. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:leader in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:flow in fo:page-sequence. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:footnote in fo:block. -No template matches fo:inline in fo:footnote. -No template matches fo:footnote-body in fo:footnote. -No template matches fo:block in fo:footnote-body. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:footnote in fo:block. -No template matches fo:inline in fo:footnote. -No template matches fo:footnote-body in fo:footnote. -No template matches fo:block in fo:footnote-body. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:footnote in fo:block. -No template matches fo:inline in fo:footnote. -No template matches fo:footnote-body in fo:footnote. -No template matches fo:block in fo:footnote-body. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:footnote in fo:block. -No template matches fo:inline in fo:footnote. -No template matches fo:footnote-body in fo:footnote. -No template matches fo:block in fo:footnote-body. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:block in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:footnote in fo:block. -No template matches fo:inline in fo:footnote. -No template matches fo:footnote-body in fo:footnote. -No template matches fo:block in fo:footnote-body. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:page-sequence in fo:root. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:leader in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:flow in fo:page-sequence. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:page-sequence in fo:root. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:leader in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:flow in fo:page-sequence. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:page-sequence in fo:root. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:leader in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:flow in fo:page-sequence. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:page-sequence in fo:root. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:leader in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:flow in fo:page-sequence. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:page-sequence in fo:root. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:leader in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:flow in fo:page-sequence. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:footnote in fo:block. -No template matches fo:inline in fo:footnote. -No template matches fo:footnote-body in fo:footnote. -No template matches fo:block in fo:footnote-body. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:footnote in fo:block. -No template matches fo:inline in fo:footnote. -No template matches fo:footnote-body in fo:footnote. -No template matches fo:block in fo:footnote-body. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:page-sequence in fo:root. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:leader in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:flow in fo:page-sequence. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:list-block in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:inline. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:inline. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:inline. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:inline. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:inline. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:inline. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:list-block in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:page-sequence in fo:root. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:leader in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:flow in fo:page-sequence. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:page-sequence in fo:root. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:leader in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:flow in fo:page-sequence. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:inline. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:page-sequence in fo:root. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:leader in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:flow in fo:page-sequence. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:inline. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:inline. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:inline. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:inline. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:inline. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:page-sequence in fo:root. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:leader in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:flow in fo:page-sequence. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:footnote in fo:block. -No template matches fo:inline in fo:footnote. -No template matches fo:footnote-body in fo:footnote. -No template matches fo:block in fo:footnote-body. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:page-sequence in fo:root. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:leader in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:flow in fo:page-sequence. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:list-block in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:page-sequence in fo:root. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:leader in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:flow in fo:page-sequence. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:inline. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:footnote in fo:block. -No template matches fo:inline in fo:footnote. -No template matches fo:footnote-body in fo:footnote. -No template matches fo:block in fo:footnote-body. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:inline. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:list-block in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:footnote in fo:block. -No template matches fo:inline in fo:footnote. -No template matches fo:footnote-body in fo:footnote. -No template matches fo:block in fo:footnote-body. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:list-block in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:footnote in fo:block. -No template matches fo:inline in fo:footnote. -No template matches fo:inline in fo:inline. -No template matches fo:footnote-body in fo:footnote. -No template matches fo:block in fo:footnote-body. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:page-sequence in fo:root. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:leader in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:flow in fo:page-sequence. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:footnote in fo:block. -No template matches fo:inline in fo:footnote. -No template matches fo:footnote-body in fo:footnote. -No template matches fo:block in fo:footnote-body. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:list-block in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:page-sequence in fo:root. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:leader in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:flow in fo:page-sequence. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:inline in fo:basic-link. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:external-graphic in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:list-block in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:page-sequence in fo:root. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:leader in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:flow in fo:page-sequence. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:page-sequence in fo:root. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:leader in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:flow in fo:page-sequence. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:list-block in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:inline. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:inline. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:inline. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:inline. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:inline. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:inline. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:inline. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:inline. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:list-block in fo:block. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:inline. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:inline. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:inline. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:inline. -No template matches fo:list-item in fo:list-block. -No template matches fo:list-item-label in fo:list-item. -No template matches fo:block in fo:list-item-label. -No template matches fo:list-item-body in fo:list-item. -No template matches fo:block in fo:list-item-body. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:inline. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:inline. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:inline. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:inline in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:page-sequence in fo:root. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:leader in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:static-content in fo:page-sequence. -No template matches fo:block in fo:static-content. -No template matches fo:table in fo:block. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-column in fo:table. -No template matches fo:table-body in fo:table. -No template matches fo:table-row in fo:table-body. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:page-number in fo:block. -No template matches fo:table-cell in fo:table-row. -No template matches fo:block in fo:table-cell. -No template matches fo:block in fo:block. -No template matches fo:flow in fo:page-sequence. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:basic-link in fo:block. -No template matches fo:footnote in fo:block. -No template matches fo:inline in fo:footnote. -No template matches fo:footnote-body in fo:footnote. -No template matches fo:block in fo:footnote-body. -No template matches fo:inline in fo:block. -No template matches fo:basic-link in fo:block. -No template matches fo:block in fo:flow. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:block in fo:block. -No template matches fo:marker in fo:block. -No template matches fo:block in fo:block \ No newline at end of file diff --git a/docbook-xsl-1.75.2/INSTALL b/docbook-xsl-1.75.2/INSTALL deleted file mode 100644 index 72cb82b..0000000 --- a/docbook-xsl-1.75.2/INSTALL +++ /dev/null @@ -1,88 +0,0 @@ -$Id: INSTALL 6145 2006-08-06 13:13:03Z xmldoc $ - -INSTALL file for the DocBook XSL stylesheets distribution - ----------------------------------------------------------------------- -Case #1: Installation using a package management system ----------------------------------------------------------------------- -If you have installed the DocBook XSL distribution using "apt-get", -"yum", "urpmi", or some similar package-management front-end, -then, as part of the package installation, the stylesheets have -already been automatically installed in the appropriate location -for your system, and your XML catalog environment has probably -been updated to use that location. - ----------------------------------------------------------------------- -Case #2: Installing manually ----------------------------------------------------------------------- -If you have downloaded a docbook-xsl zip, tar.gz, or tar.bz2 -file, use the following steps to install it. - - 1. Move the zip, tar.gz, or tar.bz2 file to the directory where - you'd like to install it (not to a temporary directory). - - 2. unzip or untar/uncompress the file - - That will create a docbook-xsl-$VERSION directory (where - $VERSION is the version number for the release). - -The remaining steps are all OPTIONAL. They are intended to -automatically update your user environment with XML Catalog -information about the DocBook XSL distribution. You are NOT -REQUIRED to complete these remaining steps. However, if you do -not, and you want to use XML catalogs with the DocBook XSL -stylesheets, you will need to manually update your XML catalog -environment - - 3. Change to the docbook-xsl-$VERSION directory and execute the - install.sh script: - - ./install.sh - - That will launch an interactive installer, which will emit a - series of prompts for you to respond to. - - To instead run it non-interactively without being prompted - for confirmation of the changes it makes, invoke it with the - "--batch" switch, like this: - - ./install.sh --batch - - After the process is complete, the installer will emit a - message with a command you need to run in order to source - your environment for use with the stylesheets. - - 4. To test that he installation has updated your environment - correctly, execute the test.sh script: - - ./test.sh - - That will test your XML catalog environment, using both the - xmlcatalog application and the Apache XML Commons Resolver. - - NOTE: The test.sh file is not created until the install.sh - file is run for the first time. - - 5. (UNINSTALLING) If/when you want to uninstall the release, - execute the uninstall.sh script. - - ./uninstall.sh - - To instead run it non-interactively without being prompted - for confirmation of the changes it makes, invoke it with the - "--batch" switch, like this: - - ./uninstall.sh --batch - - NOTE: The uninstall.sh file is not created until the install.sh - file is run for the first time. - - ----------------------------------------------------------------------- -Note to packagers ----------------------------------------------------------------------- -The install.sh, .CatalogManager.properties.example, and .urilist -files should not be packaged. They are useful only to users who -are installing the stylesheets manually. - -The catalog.xml file should be packaged. diff --git a/docbook-xsl-1.75.2/Makefile b/docbook-xsl-1.75.2/Makefile deleted file mode 100644 index a87d60b..0000000 --- a/docbook-xsl-1.75.2/Makefile +++ /dev/null @@ -1,89 +0,0 @@ -# $Id: Makefile.tests 8481 2009-07-13 20:18:41Z abdelazer $ -# -# This makefile does a "smoketest" of stylesheets for various -# output formats in the DocBook XSL Stylesheets release package. -# It doesn't actually check the output -- it's just useful for -# confirming whether each XSLT transformation actually executes -# successfully without any errors. -# -# To use it, run "make check" or just "make" - -XSLTPROC=xsltproc -XSLTPROC_FLAGS= - -TESTFILE=tests/refentry.007.xml -TESTFILE_NS=tests/refentry.007.ns.xml - -NORMAL_STYLES=fo/docbook.xsl html/docbook.xsl xhtml/docbook.xsl -NORMAL_PROFILE_STYLES=fo/profile-docbook.xsl html/profile-docbook.xsl xhtml/profile-docbook.xsl -CHUNK_STYLES=html/chunk.xsl html/onechunk.xsl xhtml/chunk.xsl xhtml/onechunk.xsl -HELP_STYLES=htmlhelp/htmlhelp.xsl javahelp/javahelp.xsl eclipse/eclipse.xsl -MULTIFILE_STYLES=$(CHUNK_STYLES) $(HELP_STYLES) -CHUNK_PROFILE_STYLES=html/profile-chunk.xsl html/profile-onechunk.xsl xhtml/profile-chunk.xsl xhtml/profile-onechunk.xsl -HELP_PROFILE_STYLES=htmlhelp/profile-htmlhelp.xsl eclipse/profile-eclipse.xsl javahelp/profile-javahelp.xsl -MULTIFILE_PROFILE_STYLES=$(CHUNK_PROFILE_STYLES) $(HELP_PROFILE_STYLES) - -MAN_STYLE=manpages/docbook.xsl -MAN_PROFILE_STYLE=manpages/profile-docbook.xsl - -TWO_PROFILE_STYLE=profiling/profile.xsl - -ROUNDTRIP_STYLES=roundtrip/dbk2ooo.xsl roundtrip/dbk2pages.xsl roundtrip/dbk2wordml.xsl -SLIDES_STYLES=slides/html/default.xsl slides/xhtml/default.xsl slides/fo/plain.xsl -WEBSITE_STYLES=website/website.xsl -WEBSITE_CHUNK_STYLES=website/chunk-website.xsl - -# chunked output gets written to TMP_OUTPUT_DIR -TMP_OUTPUT_DIR=/tmp/smoketest-output/ -# if you don't want TMP_OUTPUT_DIR and its contents deleted, unset -# SMOKETEST_CLEAN_TARGET; e.g. "make check SMOKETEST_CLEAN_TARGET=''" -SMOKETEST_CLEAN_TARGET=smoketest-clean - -check: smoketest-make-tmp-dir smoketest-normal smoketest-normal-profile smoketest-chunk smoketest-chunk-profile smoketest-man smoketest-man-profile smoketest-two-profile $(SMOKETEST_CLEAN_TARGET) - -smoketest-make-tmp-dir: - $(RM) -r $(TMP_OUTPUT_DIR) - mkdir '$(TMP_OUTPUT_DIR)' - -smoketest-normal: - for stylesheet in $(NORMAL_STYLES); do \ - echo "$(XSLT) $(TESTFILE) $$stylesheet > /dev/null"; \ - $(XSLT) $(TESTFILE) $$stylesheet > /dev/null; \ - echo "$(XSLT) $(TESTFILE_NS) $$stylesheet > /dev/null"; \ - $(XSLT) $(TESTFILE_NS) $$stylesheet > /dev/null; \ - done - -smoketest-normal-profile: - for stylesheet in $(NORMAL_PROFILE_STYLES); do \ - echo "$(XSLT) $(TESTFILE) $$stylesheet > /dev/null"; \ - $(XSLT) $(TESTFILE) $$stylesheet > /dev/null; \ - echo "$(XSLT) $(TESTFILE_NS) $$stylesheet > /dev/null"; \ - $(XSLT) $(TESTFILE_NS) $$stylesheet > /dev/null; \ - done - -smoketest-chunk: - for stylesheet in $(MULTIFILE_STYLES) ; do \ - $(XSLT) $(TESTFILE) $$stylesheet manifest.in.base.dir=1 base.dir=$(TMP_OUTPUT_DIR) ; \ - $(XSLT) $(TESTFILE_NS) $$stylesheet manifest.in.base.dir=1 base.dir=$(TMP_OUTPUT_DIR) ; \ - done; - -smoketest-chunk-profile: - for stylesheet in $(MULTIFILE_PROFILE_STYLES) ; do \ - $(XSLT) $(TESTFILE) $$stylesheet manifest.in.base.dir=1 base.dir=$(TMP_OUTPUT_DIR) ; \ - $(XSLT) $(TESTFILE_NS) $$stylesheet manifest.in.base.dir=1 base.dir=$(TMP_OUTPUT_DIR) ; \ - done; - -smoketest-man: - $(XSLT) $(TESTFILE) $(MAN_STYLE) man.output.in.separate.dir=1 man.output.base.dir=$(TMP_OUTPUT_DIR) ; \ - $(XSLT) $(TESTFILE_NS) $(MAN_STYLE) man.output.in.separate.dir=1 man.output.base.dir=$(TMP_OUTPUT_DIR) ; - -smoketest-man-profile: - $(XSLT) $(TESTFILE) $(MAN_PROFILE_STYLE) man.output.in.separate.dir=1 man.output.base.dir=$(TMP_OUTPUT_DIR) ; \ - $(XSLT) $(TESTFILE_NS) $(MAN_PROFILE_STYLE) man.output.in.separate.dir=1 man.output.base.dir=$(TMP_OUTPUT_DIR) ; - -smoketest-two-profile: - $(XSLT) $(TESTFILE_NS) $(TWO_PROFILE_STYLE) > /dev/null ; - -smoketest-clean: - $(RM) -r $(TMP_OUTPUT_DIR) - diff --git a/docbook-xsl-1.75.2/NEWS b/docbook-xsl-1.75.2/NEWS deleted file mode 100644 index 9e99b17..0000000 --- a/docbook-xsl-1.75.2/NEWS +++ /dev/null @@ -1,159 +0,0 @@ -Changes since the 1.75.1 release - -Note: This document lists changes only since the 1.75.1 release. If you instead -want a record of the complete list of changes for the codebase over its entire -history, you can obtain one by running the following commands: - - svn checkout https://docbook.svn.sourceforge.net/svnroot/docbook/trunk/xsl - svn log --xml --verbose xsl > ChangeHistory.xml - -â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â” - -Table of Contents - -Release Notes: 1.75.2 - - Gentext - Common - FO - HTML - Manpages - Epub - Params - Profiling - XSL-Saxon - XSL-Xalan - -Release Notes: 1.75.2 - -The following is a list of changes that have been made since the 1.75.1 -release. - -Gentext - -The following changes have been made to the gentext code since the 1.75.1 -release. - - â— Keith Fahlgren: Makefile - - Add Icelandic - - â— dleidert: locale/ja.xml - - Improved Japanese translation for Note(s). Closes bug #2823965. - - â— dleidert: locale/pl.xml - - Polish alphabet contains O with acute accent, not with grave accent. Closes bug #2823964. - - â— Robert Stayton: locale/ja.xml - - Fix translation of "index", per bug report 2796064. - - â— Robert Stayton: locale/is.xml - - New Icelandic locale file. - -Common - -The following changes have been made to the common code since the 1.75.1 -release. - - â— Keith Fahlgren: Makefile - - Add Icelandic - - â— Norman Walsh: stripns.xsl - - Support more downconvert cases - - â— Robert Stayton: titles.xsl - - Make sure title inside info is used if no other title. - -FO - -The following changes have been made to the fo code since the 1.75.1 release. - - â— Robert Stayton: pi.xsl - - Turn off dbfo-need for fop1.extensions also, per bug #2816141. - -HTML - -The following changes have been made to the html code since the 1.75.1 release. - - â— Mauritz Jeanson: titlepage.xsl - - Output "Copyright" heading in XHTML too. - - â— Mauritz Jeanson: titlepage.xsl - - Added stylesheet.result.type test for copyright. Closes bug #2813289. - - â— Norman Walsh: htmltbl.xsl - - Remove ambiguity wrt @span, @rowspan, and @colspan - -Manpages - -The following changes have been made to the manpages code since the 1.75.1 -release. - - â— Mauritz Jeanson: endnotes.xsl - - Added normalize-space() for ulink content. Closes bug #2793877. - - â— Mauritz Jeanson: docbook.xsl - - Added stylesheet.result.type test for copyright. Closes bug #2813289. - -Epub - -The following changes have been made to the epub code since the 1.75.1 release. - - â— Keith Fahlgren: bin/dbtoepub; bin/lib/docbook.rb - - Corrected bugs caused by path and file assumptions were not met - - â— Keith Fahlgren: bin/lib/docbook.rb; docbook.xsl - - Cleaning up hardcoded values into parameters and fixing Ruby library to pass them properly; all thanks to patch from Liza Daly - -Params - -The following changes have been made to the params code since the 1.75.1 -release. - - â— Mauritz Jeanson: highlight.source.xml - - Fixed typo. - -Profiling - -The following changes have been made to the profiling code since the 1.75.1 -release. - - â— Robert Stayton: profile.xsl - - Fix bug 2815493 missing exsl.node.set.available parameter. - -XSL-Saxon - -The following changes have been made to the xsl-saxon code since the 1.75.1 -release. - - â— Mauritz Jeanson: src/com/nwalsh/saxon/ColumnUpdateEmitter.java; src/com/ - nwalsh/saxon/Colum⋯ - - Added fixes so that colgroups in the XHTML namespace are processed properly. - -XSL-Xalan - -The following changes have been made to the xsl-xalan code since the 1.75.1 -release. - - â— Mauritz Jeanson: nbproject/project.xml - - Added missing NetBeans configuration. - diff --git a/docbook-xsl-1.75.2/NEWS.html b/docbook-xsl-1.75.2/NEWS.html deleted file mode 100644 index c88ad6c..0000000 --- a/docbook-xsl-1.75.2/NEWS.html +++ /dev/null @@ -1,30 +0,0 @@ -Changes since the 1.75.1 release

Changes since the 1.75.1 release

Note: This - document lists changes only since the 1.75.1 release. - If you instead want a record of the complete list of - changes for the codebase over its entire history, you - can obtain one by running the following commands: - -

  svn checkout https://docbook.svn.sourceforge.net/svnroot/docbook/trunk/xsl
-  svn log --xml --verbose xsl > ChangeHistory.xml

Release Notes: 1.75.2

The following is a list of changes that have been made - since the 1.75.1 release.

Gentext

The following changes have been made to the - gentext code - since the 1.75.1 release.

  • Keith Fahlgren: Makefile

    Add Icelandic
  • dleidert: locale/ja.xml

    Improved Japanese translation for Note(s). Closes bug #2823965.
  • dleidert: locale/pl.xml

    Polish alphabet contains O with acute accent, not with grave accent. Closes bug #2823964.
  • Robert Stayton: locale/ja.xml

    Fix translation of "index", per bug report 2796064.
  • Robert Stayton: locale/is.xml

    New Icelandic locale file.

Common

The following changes have been made to the - common code - since the 1.75.1 release.

  • Keith Fahlgren: Makefile

    Add Icelandic
  • Norman Walsh: stripns.xsl

    Support more downconvert cases
  • Robert Stayton: titles.xsl

    Make sure title inside info is used if no other title.

FO

The following changes have been made to the - fo code - since the 1.75.1 release.

  • Robert Stayton: pi.xsl

    Turn off dbfo-need for fop1.extensions also, per bug #2816141.

HTML

The following changes have been made to the - html code - since the 1.75.1 release.

  • Mauritz Jeanson: titlepage.xsl

    Output "Copyright" heading in XHTML too.
  • Mauritz Jeanson: titlepage.xsl

    Added stylesheet.result.type test for copyright. Closes bug #2813289.
  • Norman Walsh: htmltbl.xsl

    Remove ambiguity wrt @span, @rowspan, and @colspan

Manpages

The following changes have been made to the - manpages code - since the 1.75.1 release.

  • Mauritz Jeanson: endnotes.xsl

    Added normalize-space() for ulink content. Closes bug #2793877.
  • Mauritz Jeanson: docbook.xsl

    Added stylesheet.result.type test for copyright. Closes bug #2813289.

Epub

The following changes have been made to the - epub code - since the 1.75.1 release.

  • Keith Fahlgren: bin/dbtoepub; bin/lib/docbook.rb

    Corrected bugs caused by path and file assumptions were not met
  • Keith Fahlgren: bin/lib/docbook.rb; docbook.xsl

    Cleaning up hardcoded values into parameters and fixing Ruby library to pass them properly; all thanks to patch from Liza Daly

Params

The following changes have been made to the - params code - since the 1.75.1 release.

  • Mauritz Jeanson: highlight.source.xml

    Fixed typo.

Profiling

The following changes have been made to the - profiling code - since the 1.75.1 release.

XSL-Saxon

The following changes have been made to the - xsl-saxon code - since the 1.75.1 release.

  • Mauritz Jeanson: src/com/nwalsh/saxon/ColumnUpdateEmitter.java; src/com/nwalsh/saxon/Colum⋯

    Added fixes so that colgroups in the XHTML namespace are processed properly.

XSL-Xalan

The following changes have been made to the - xsl-xalan code - since the 1.75.1 release.

  • Mauritz Jeanson: nbproject/project.xml

    Added missing NetBeans configuration.
- diff --git a/docbook-xsl-1.75.2/NEWS.xml b/docbook-xsl-1.75.2/NEWS.xml deleted file mode 100644 index 4afdceb..0000000 --- a/docbook-xsl-1.75.2/NEWS.xml +++ /dev/null @@ -1,174 +0,0 @@ - - -
- - -Note: This - document lists changes only since the 1.75.1 release. - If you instead want a record of the complete list of - changes for the codebase over its entire history, you - can obtain one by running the following commands: - - svn checkout https://docbook.svn.sourceforge.net/svnroot/docbook/trunk/xsl - svn log --xml --verbose xsl > ChangeHistory.xml - -Changes since the 1.75.1 release - - -Release Notes: 1.75.2 -The following is a list of changes that have been made - since the 1.75.1 release. - - -Gentext -The following changes have been made to the - gentext code - since the 1.75.1 release. - - -Keith Fahlgren: MakefileAdd Icelandic - - -dleidert: locale/ja.xmlImproved Japanese translation for Note(s). Closes bug #2823965. - - -dleidert: locale/pl.xmlPolish alphabet contains O with acute accent, not with grave accent. Closes bug #2823964. - - -Robert Stayton: locale/ja.xmlFix translation of "index", per bug report 2796064. - - -Robert Stayton: locale/is.xmlNew Icelandic locale file. - - - - - -Common -The following changes have been made to the - common code - since the 1.75.1 release. - - -Keith Fahlgren: MakefileAdd Icelandic - - -Norman Walsh: stripns.xslSupport more downconvert cases - - -Robert Stayton: titles.xslMake sure title inside info is used if no other title. - - - - - -FO -The following changes have been made to the - fo code - since the 1.75.1 release. - - -Robert Stayton: pi.xslTurn off dbfo-need for fop1.extensions also, per bug #2816141. - - - - - -HTML -The following changes have been made to the - html code - since the 1.75.1 release. - - -Mauritz Jeanson: titlepage.xslOutput "Copyright" heading in XHTML too. - - -Mauritz Jeanson: titlepage.xslAdded stylesheet.result.type test for copyright. Closes bug #2813289. - - -Norman Walsh: htmltbl.xslRemove ambiguity wrt @span, @rowspan, and @colspan - - - - - -Manpages -The following changes have been made to the - manpages code - since the 1.75.1 release. - - -Mauritz Jeanson: endnotes.xslAdded normalize-space() for ulink content. Closes bug #2793877. - - -Mauritz Jeanson: docbook.xslAdded stylesheet.result.type test for copyright. Closes bug #2813289. - - - - - -Epub -The following changes have been made to the - epub code - since the 1.75.1 release. - - -Keith Fahlgren: bin/dbtoepub; bin/lib/docbook.rbCorrected bugs caused by path and file assumptions were not met - - -Keith Fahlgren: bin/lib/docbook.rb; docbook.xslCleaning up hardcoded values into parameters and fixing Ruby library to pass them properly; all thanks to patch from Liza Daly - - - - - -Params -The following changes have been made to the - params code - since the 1.75.1 release. - - -Mauritz Jeanson: highlight.source.xmlFixed typo. - - - - - -Profiling -The following changes have been made to the - profiling code - since the 1.75.1 release. - - -Robert Stayton: profile.xslFix bug 2815493 missing exsl.node.set.available parameter. - - - - - -XSL-Saxon -The following changes have been made to the - xsl-saxon code - since the 1.75.1 release. - - -Mauritz Jeanson: src/com/nwalsh/saxon/ColumnUpdateEmitter.java; src/com/nwalsh/saxon/Colum⋯Added fixes so that colgroups in the XHTML namespace are processed properly. - - - - - -XSL-Xalan -The following changes have been made to the - xsl-xalan code - since the 1.75.1 release. - - -Mauritz Jeanson: nbproject/project.xmlAdded missing NetBeans configuration. - - - - - -
- diff --git a/docbook-xsl-1.75.2/README b/docbook-xsl-1.75.2/README deleted file mode 100644 index 3a5558a..0000000 --- a/docbook-xsl-1.75.2/README +++ /dev/null @@ -1,157 +0,0 @@ ----------------------------------------------------------------------- - README file for the DocBook XSL Stylesheets ----------------------------------------------------------------------- -$Id: README 8484 2009-07-13 20:35:34Z mzjn $ - -These are XSL stylesheets for transforming DocBook XML document -instances into various output formats. - -This README file provides only very minimal documentation on using -the stylesheets. For more complete information, see Bob Stayton's -book "DocBook XSL: The Complete Guide", available online at: - - http://www.sagehill.net/docbookxsl/ - ----------------------------------------------------------------------- -Installation ----------------------------------------------------------------------- -See the INSTALL file for information about installing this release. - ----------------------------------------------------------------------- -How to use the stylesheets ----------------------------------------------------------------------- -The base canonical URI for these stylesheets is: - - http://docbook.sourceforge.net/release/xsl/current/ - -You call any of the stylesheets in this distribution by doing one -of the following: - - - Use the base canonical URI in combination with one of the - pathnames below. For example, for "chunked" HTML, output: - - http://docbook.sourceforge.net/release/xsl/current/html/chunk.xsl - - If your system has a working XML Catalog or SGML Catalog setup - (most Linux systems do), then that URI will automatically be - resolved and replaced with a local pathname on your system. - - - Use a "real" local system base path in combination with one of - the pathnames below. For example, for "chunked" HTML, output: - - /usr/share/xml/docbook/stylesheet/nwalsh/html/chunk.xsl - -To transform documents created with the standard DocBook -schema/DTD, use one of the following stylesheets: - - fo/docbook.xsl - for XSL-FO - - html/docbook.xsl - for HTML (as a single file) - html/chunk.xsl - for HTML (chunked into multiple files) - html/onechunk.xsl - for HTML (chunked output in single file) - - xhtml/*.xsl - for XHTML versions of the above - - xhtml-1_1/*.xsl - for XHTML 1.1 versions of the above - - epub/docbook.xsl - for .epub - - htmlhelp/htmlhelp.xsl - for HTML Help - javahelp/javahelp.xsl - for JavaHelp - eclipse/eclipse.xsl - for Eclipse Help - - manpages/docbook.xsl - for groff/nroff man pages - - */profile-* - single-pass-profiling versions of all above - - roundtrip/*.xsl - for DocBook to WordML, etc., to DocBook - -To transform documents created with the DocBook Slides schema/DTD, -use one of the following stylesheets: - - slides/html/*.xsl - for HTML slides of various kinds - slides/xhtml/*.xsl - for XHTML slides of various kinds - slides/fo/plain.xsl - for XSL-FO slides - slides/htmlhelp/... - for HTML Help slides - -To transform documents created with the DocBook Website -schema/DTD, use one of the following stylesheets: - - website/website.xsl - for non-tabular, non-chunked output - website/tabular.xsl - for tabular, non-chunked output - website/chunk-* - for chunked output - -To generate a titlepage customization layer from a titlepage spec: - - template/titlepage.xsl - -For details about creating titlepage spec files and generating and -using titlepage customization layers, see "DocBook XSL: The -Complete Guide" - ----------------------------------------------------------------------- -Manifest ----------------------------------------------------------------------- -AUTHORS contact information -BUGS about known problems -COPYING copyright information -INSTALL installation instructions -README this file -RELEASE.* per-release cumulative summaries of user-visible changes -TODO about planned features not yet implemented -VERSION release metadata, including the current version - number (note that the VERSION file is an XSL stylesheet) -NEWS changes since the last public release (for a cumulative list of - changes, see the ChangeHistory.xml file) - -common/ code used among several output formats (HTML, FO, manpages,...) -docsrc/ documentation sources -eclipse/ for producing Eclipse Help -epub/ for producing .epub -extensions/ DocBook XSL Java extensions -fo/ for producing XSL-FO -highlighting files used for adding source-code syntax highlighting in output -html/ for producing HTML -htmlhelp/ for producing HTML Help -images/ images used in callouts and graphical admonitions -javahelp/ for producing Java Help -lib/ utility stylesheets with schema-independent functions -manpages/ for producing groff/troff man pages -profiling/ for profiling (omitting/including conditional text) -roundtrip/ for "round trip" conversion among DocBook and - various word-processor formats (WordML, etc.) -slides/ for producing slides output (from Slides source) -template/ templates for building stylesheet customization layers -tools/ assorted supplementary tools -website/ for producing website output (from Website source) -xhtml/ for producing XHTML -xhtml-1_1/ for producing (stricter) XHTML 1.1 - ----------------------------------------------------------------------- -Changes ----------------------------------------------------------------------- -See the NEWS file for changes made since the previous release. - -See the RELEASE-NOTES.html or RELEASE-NOTES.txt or RELEASE-NOTES.pdf -files for per-release cumulative summaries of significant -user-visible changes. - -For online access to a hyperlinked view of all changes made over -the entire history of the codebase, see the following: - - http://docbook.svn.sourceforge.net/viewvc/docbook/trunk/xsl/?view=log - -WARNING: That above change history is a very long list and may -take a long time to load/download. - -You can also create an XML-formatted "ChangeHistory.xml" copy of -the complete change history for the codebase by running the -following commands: - - svn checkout https://docbook.svn.sf.net/svnroot/docbook/trunk/xsl - svn log --xml --verbose xsl > ChangeHistory.xml - ----------------------------------------------------------------------- -Copyright information ----------------------------------------------------------------------- -See the accompanying file named COPYING. diff --git a/docbook-xsl-1.75.2/RELEASE-NOTES.html b/docbook-xsl-1.75.2/RELEASE-NOTES.html deleted file mode 100644 index 59d3469..0000000 --- a/docbook-xsl-1.75.2/RELEASE-NOTES.html +++ /dev/null @@ -1,7540 +0,0 @@ -Release Notes for the DocBook XSL Stylesheets

Release Notes for the DocBook XSL Stylesheets

$Revision: 8504 $ $Date: 2009-07-21 07:22:11 -0700 (Tue, 21 Jul 2009) $

2009-07-21

-

This release-notes - document is available in the following formats: - HTML, - PDF, - plain text; it provides a per-release list -of enhancements and changes to the stylesheets’ public APIs -(user-configurable parameters) and excludes descriptions of most -bug fixes. For a complete list of all changes (including all bug -fixes) that have been made since the previous release, see the -separate NEWS (plain text) or NEWS.html files. Also available: -An online hyperlinked change history (warning: big file) of all -changes made over the entire history of the codebase.

- -

As with all DocBook Project “dot - one plus” releases, this release aspires to be stable (in - contrast to dot-zero releases, which - are experimental).

- - -

- - - - -

Release Notes: 1.75.2

- -

The following is a list of changes that have been made - since the 1.75.1 release.

- -

Gentext

- -

The following changes have been made to the - gentext code - since the 1.75.1 release.

-
  • -

    dleidert: locale/ja.xml

    Improved Japanese translation for Note(s). Closes bug #2823965.
    -
  • -

    dleidert: locale/pl.xml

    Polish alphabet contains O with acute accent, not with grave accent. Closes bug #2823964.
    -
  • -

    Robert Stayton: locale/ja.xml

    Fix translation of "index", per bug report 2796064.
    -
  • -

    Robert Stayton: locale/is.xml

    New Icelandic locale file.
    -
-
- -

Common

- -

The following changes have been made to the - common code - since the 1.75.1 release.

-
  • -

    Norman Walsh: stripns.xsl

    Support more downconvert cases
    -
  • -

    Robert Stayton: titles.xsl

    Make sure title inside info is used if no other title.
    -
-
- -

FO

- -

The following changes have been made to the - fo code - since the 1.75.1 release.

-
  • -

    Robert Stayton: pi.xsl

    Turn off dbfo-need for fop1.extensions also, per bug #2816141.
    -
-
- -

HTML

- -

The following changes have been made to the - html code - since the 1.75.1 release.

-
  • -

    Mauritz Jeanson: titlepage.xsl

    Output "Copyright" heading in XHTML too.
    -
  • -

    Mauritz Jeanson: titlepage.xsl

    Added stylesheet.result.type test for copyright. Closes bug #2813289.
    -
  • -

    Norman Walsh: htmltbl.xsl

    Remove ambiguity wrt @span, @rowspan, and @colspan
    -
-
- -

Manpages

- -

The following changes have been made to the - manpages code - since the 1.75.1 release.

-
  • -

    Mauritz Jeanson: endnotes.xsl

    Added normalize-space() for ulink content. Closes bug #2793877.
    -
  • -

    Mauritz Jeanson: docbook.xsl

    Added stylesheet.result.type test for copyright. Closes bug #2813289.
    -
-
- -

Epub

- -

The following changes have been made to the - epub code - since the 1.75.1 release.

-
  • -

    Keith Fahlgren: bin/dbtoepub; bin/lib/docbook.rb

    Corrected bugs caused by path and file assumptions were not met
    -
  • -

    Keith Fahlgren: bin/lib/docbook.rb; docbook.xsl

    Cleaning up hardcoded values into parameters and fixing Ruby library to pass them properly; all thanks to patch from Liza Daly
    -
-
- -

Profiling

- -

The following changes have been made to the - profiling code - since the 1.75.1 release.

-
-
- -

XSL-Saxon

- -

The following changes have been made to the - xsl-saxon code - since the 1.75.1 release.

-
  • -

    Mauritz Jeanson: src/com/nwalsh/saxon/ColumnUpdateEmitter.java; src/com/nwalsh/saxon/Colum⋯

    Added fixes so that colgroups in the XHTML namespace are processed properly.
    -
-
- -

XSL-Xalan

- -

The following changes have been made to the - xsl-xalan code - since the 1.75.1 release.

-
  • -

    Mauritz Jeanson: nbproject/project.xml

    Added missing NetBeans configuration.
    -
-
- -
- - -

Release Notes: 1.75.1

- -

This release includes bug fixes.

- -

The following is a list of changes that have been made since the 1.75.0 release.

- - -

FO

- -

The following changes have been made to the fo code since the 1.75.0 release.

-
  • -

    Keith Fahlgren: block.xsl

    Switching to em dash for character before attribution in epigraph; resolves Bug #2793878
    -
  • -

    Robert Stayton: lists.xsl

    Fixed bug 2789947, id attribute missing on simplelist fo output.
    -
-
- -

HTML

- -

The following changes have been made to the - html code - since the 1.75.0 release.

-
  • -

    Keith Fahlgren: block.xsl

    Switching to em dash for character before attribution in epigraph; resolves Bug #2793878
    -
  • -

    Robert Stayton: lists.xsl

    Fixed bug 2789678: apply-templates line accidentally deleted.
    -
-
- -

Epub

- -

The following changes have been made to the - epub code - since the 1.75.0 release.

-
  • -

    Keith Fahlgren: bin/spec/epub_regressions_spec.rb; docbook.xsl

    Added regression and fix to correct "bug" with namespace-prefixed container elements in META-INF/container.xml ; resolves Issue #2790017
    -
  • -

    Keith Fahlgren: bin/spec/epub_regressions_spec.rb; bin/spec/files/onegraphic.xinclude.xml;⋯

    Another attempt at flexible named entity and XInclude processing
    -
  • -

    Keith Fahlgren: bin/lib/docbook.rb

    Tweaking solution to Bug #2750442 following regression reported by Michael Wiedmann.
    -
-
- -

Params

- -

The following changes have been made to the - params code - since the 1.75.0 release.

-
  • -

    Mauritz Jeanson: highlight.source.xml

    Updated documentation to reflect changes made in r8419.
    -
-
- -
- - -

Release Notes: 1.75.0

- -

This release includes important bug fixes and adds the following -significant feature changes: -

Gentext

Modifications to translations have been made.

Common
-

Added support for some format properties on tables using -HTML table markup.

-

Added two new qanda.defaultlabel values so that numbered sections -and numbered questions can be distinguished. Satisfies -Feature Request #1539045.

-

Added code to handle acknowledgements in book and part. The element is processed -similarly to dedication. All acknowledgements will appear as front matter, after -any dedications.

-
FO
-

The inclusion of highlighting code has been simplified.

-

Add support for pgwide on informal objects.

-

Added a new parameter, bookmarks.collapse, that controls the initial state of the bookmark tree. Closes FR #1792326.

-

Add support for more dbfo processing instructions.

-

Add new variablelist.term.properties to format terms, per request # 1968513.

-

Add support for @width on screen and programlisting, fixes bug #2012736.

-

Add support for writing-mode="rl-tb" (right-to-left) in FO outputs.

-

Add writing.mode param for FO output.

-
HTML
-

Convert all calls to class.attribute to calls to common.html.attributes to support dir, lang, and title attributes in html output for all elements. Fulfills feature request #1993833.

-

Inclusion of highlighting code was simplified. Only one import is now necessary.

-

Add new param index.links.to.section.

-

Add support for the new index.links.to.section param which permits precise links to indexterms in HTML output rather than to the section title.

-
ePub
-

Slightly more nuanced handling of imageobject alternatives and better support in dbtoepub for XIncludes and ENTITYs to resolve Issue #2750442 reported by Raphael Hertzog.

-

Added a colon after an abstract/title when mapping into the dc:description for OPF metadata in ePub output to help the flat text have more pseudo-semantics (sugestions from Michael Wiedmann)

-

Added DocBook subjectset -> OPF dc:subject mapping and tests

-

Added DocBook date -> OPF dc:date mapping and tests

-

Added DocBook abstract -> OPF dc:description mapping and tests

-

Added --output option to dbtoepub based on user request

-
HTMLHelp
-

Add support for generating olink target database for htmlhelp files.

Params
-

Add default setting for @rules attribute on HTML markup tables.

-

Added a new parameter, bookmarks.collapse, that controls the initial state of the bookmark tree. When the parameter has a non-zero value (the default), only the top-level bookmarks are displayed initially. Otherwise, the whole tree of bookmarks is displayed. This is implemented for FOP 0.9X. Closes FR #1792326.

-

Add new variablelist.term.properties to format terms, per request # 1968513.

-

Add two new qanda.defaultlabel values so that numbered sections and numbered questions can be distinguished. Satisfies Feature Request #1539045.

-

Add param to control whether an index entry links to a section title or to the precise location of the indexterm.

-

New attribute list for glossentry in glossary.

-

New parameter to support @width on programlisting and screen.

-

Add attribute-sets for formatting glossary terms and defs.

-
Highlighting
-

Inclusion of highlighting code was simplified. Only one import is now necessary.

-

- - -

-

The following is a list of changes that have been made - since the 1.74.3 release.

- -

Gentext

- -

The following changes have been made to the - gentext code - since the 1.74.3 release.

-
  • -

    Robert Stayton: locale/sv.xml; locale/ja.xml; locale/pl.xml

    Check in translations of Legalnotice submitted on mailing list.
    -
  • -

    Robert Stayton: locale/es.xml

    Fix spelling errors in Acknowledgements entries.
    -
  • -

    Robert Stayton: locale/es.xml

    Check in translations for 4 elements submitted through docbook-apps
    -message of 14 April 2009.
    -
  • -

    David Cramer: locale/zh.xml; locale/ca.xml; locale/ru.xml; locale/ga.xml; locale/gl.xml; l⋯

    Internationalized punctuation in glosssee and glossseealso
    -
  • -

    Robert Stayton: Makefile

    Check in fixes for DSSSL gentext targets from submitted patch #1689633.
    -
  • -

    Robert Stayton: locale/uk.xml

    Check in major update submitted with bug report #2008524.
    -
  • -

    Robert Stayton: locale/zh_tw.xml

    Check in fix to Note string submitted in bug #2441051.
    -
  • -

    Robert Stayton: locale/ru.xml

    Checkin typo fix submitted in bug #2453406.
    -
-
- -

Common

- -

The following changes have been made to the - common code - since the 1.74.3 release.

-
  • -

    Robert Stayton: gentext.xsl

    Fix extra generated space when xrefstyle includes 'nopage'.
    -
  • -

    Robert Stayton: table.xsl

    Add support for some format properties on tables using
    -HTML table markup.  These include:
    -  - frame attribute on table (or uses $default.table.frame parameter).
    -  - rules attribute on table (or uses $default.table.rules parameter).
    -  - align attribute on td and th
    -  - valign attribute on td and th
    -  - colspan on td and th
    -  - rowspan on td and th
    -  - bgcolor on td and th
    -
  • -

    Robert Stayton: olink.xsl

    Add placeholder template to massage olink hot text to make
    -customization easier, per Feature Request 1828608.
    -
  • -

    Robert Stayton: targets.xsl

    Add support for collecting olink targets from a glossary
    -generated from a glossary.collection.
    -
  • -

    Robert Stayton: titles.xsl

    Handle firstterm like glossterm in mode="title.markup".
    -
  • -

    Robert Stayton: titles.xsl

    Add match on info/title in title.markup templates where missing.
    -
  • -

    Mauritz Jeanson: titles.xsl

    Changed "ancestor::title" to "(ancestor::title and (@id or @xml:id))".
    -This enables proper formatting of inline elements in titles in TOCs, 
    -as long as these inlines don't have id or xml:id attributes.
    -
  • -

    Robert Stayton: labels.xsl

    Add two new qanda.defaultlabel values so that numbered sections
    -and numbered questions can be distinguished.  Satisfies
    -Feature Request #1539045.
    -
  • -

    Robert Stayton: stripns.xsl; pi.xsl

    Convert function-available(exsl:node-set) to use the new param
    -so Xalan bug is isolated.
    -
  • -

    Mauritz Jeanson: titles.xsl

    Added fixes for bugs #2112656 and #1759205:
    -1. Reverted mistaken commits r7485 and r7523. 
    -2. Updated the template with match="link" and mode="no.anchor.mode" so that 
    -@endterm is used if it exists and if the link has no content.
    -
  • -

    Mauritz Jeanson: titles.xsl

    Added code to handle acknowledgements in book and part. The element is processed
    -similarly to dedication. All acknowledgements will appear as front matter, after
    -any dedications.
    -
  • -

    Robert Stayton: olink.xsl

    Fix bug #2018717 use.local.olink.style uses wrong gentext context.
    -
  • -

    Robert Stayton: olink.xsl

    Fix bug #1787167 incorrect hot text for some olinks.
    -
  • -

    Robert Stayton: common.xsl

    Fix bug #1669654 Broken output if copyright <year> contains a range.
    -
  • -

    Robert Stayton: labels.xsl

    Fix bug in labelling figure inside appendix inside article inside book.
    -
-
- -

FO

- -

The following changes have been made to the - fo code - since the 1.74.3 release.

-
  • -

    Jirka Kosek: highlight.xsl

    Inclusion of highlighting code was simplified. Only one import is now necessary.
    -
  • -

    Robert Stayton: fop1.xsl

    Add the new fop extensions namespace declaration, in case FOP
    -extension functions are used.
    -
  • -

    Robert Stayton: formal.xsl

    Add support for pgwide on informal objects.
    -
  • -

    Robert Stayton: docbook.xsl

    Fixed spurious closing quote on line 134.
    -
  • -

    Robert Stayton: docbook.xsl; autoidx-kosek.xsl; autoidx.xsl

    Convert function-available for node-set() to use
    -new $exsl.node.set.available param in test.
    -
  • -

    David Cramer: xref.xsl

    Suppress extra space after xref when xrefstyle='select: label nopage' (#2740472)
    -
  • -

    Mauritz Jeanson: pi.xsl

    Fixed doc bug for row-height.
    -
  • -

    David Cramer: glossary.xsl

    Internationalized punctuation in glosssee and glossseealso
    -
  • -

    Robert Stayton: param.xweb; param.ent; htmltbl.xsl; table.xsl

    Add support for some format properties on tables using
    -HTML table markup.  These include:
    -  - frame attribute on table (or uses $default.table.frame parameter).
    -  - rules attribute on table (or uses $default.table.rules parameter).
    -  - align attribute on td and th
    -  - valign attribute on td and th
    -  - colspan on td and th
    -  - rowspan on td and th
    -  - bgcolor on td and th
    -
  • -

    Robert Stayton: table.xsl

    Add support bgcolor in td and th
    -elements in HTML table markup.
    -
  • -

    Robert Stayton: htmltbl.xsl

    Add support for colspan and rowspan and bgcolor in td and th
    -elements in HTML table markup.
    -
  • -

    Robert Stayton: param.xweb

    Fix working of page-master left and right margins.
    -
  • -

    Mauritz Jeanson: param.xweb; param.ent; fop1.xsl

    Added a new parameter, bookmarks.collapse, that controls the initial state of the bookmark tree. When the parameter has a non-zero value (the default), only the top-level bookmarks are displayed initially. Otherwise, the whole tree of bookmarks is displayed.  This is implemented for FOP 0.9X. Closes FR #1792326.
    -
  • -

    Robert Stayton: table.xsl; pi.xsl

    Add support for dbfo row-height processing instruction, like that in dbhtml.
    -
  • -

    Robert Stayton: lists.xsl

    Add support for dbfo keep-together processing instruction for
    -entire list instances.
    -
  • -

    Robert Stayton: lists.xsl; block.xsl

    Add support fo dbfo keep-together processing instruction to
    -more blocks like list items and paras.
    -
  • -

    Robert Stayton: lists.xsl; param.xweb; param.ent

    Add new variablelist.term.properties to format terms, per request # 1968513.
    -
  • -

    Robert Stayton: inline.xsl

    In simple.xlink, rearrange order of processing.
    -
  • -

    Robert Stayton: xref.xsl

    Handle firstterm like glossterm in mode="xref-to".
    -
  • -

    Robert Stayton: glossary.xsl; xref.xsl; pi.xsl; footnote.xsl

    Implement simple.xlink for glosssee and glossseealso so they can use
    -other types of linking besides otherterm.
    -
  • -

    Robert Stayton: qandaset.xsl

    Add two new qanda.defaultlabel values so that numbered sections and numbered questions can be distinguished.  Satisfies Feature Request #1539045.
    -
  • -

    Robert Stayton: titlepage.xsl

    For the book title templates, I changed info/title to book/info/title
    -so other element's titles will not be affected.
    -
  • -

    Robert Stayton: xref.xsl; verbatim.xsl

    Use param exsl.node.set.available to test for function.
    -
  • -

    Robert Stayton: param.xweb; param.ent; footnote.xsl

    Start using new param exsl.node.set.available to work around Xalan bug.
    -
  • -

    Robert Stayton: titlepage.templates.xml

    Add comment on use of t:predicate for editor to prevent
    -extra processing of multiple editors. Fixes bug 2687842.
    -
  • -

    Robert Stayton: xref.xsl; autoidx.xsl

    An indexterm primary, secondary, or tertiary element with an id or xml:id
    -now outputs that ID, so that index entries can be cross referenced to.
    -
  • -

    Mauritz Jeanson: synop.xsl

    Added modeless template for ooclass|oointerface|ooexception.
    -Closes bug #1623468.
    -
  • -

    Robert Stayton: xref.xsl

    Add template with match on indexterm in mode="xref-to" to fix bug 2102592.
    -
  • -

    Robert Stayton: xref.xsl

    Now xref to qandaentry will use the label element in a question for
    -the link text if it has one.
    -
  • -

    Robert Stayton: inline.xsl

    Add id if specified from @id to output for quote and phrase so
    -they can be xref'ed to.
    -
  • -

    Robert Stayton: xref.xsl

    Add support for xref to phrase, simpara, anchor, and quote.
    -This assumes the author specifies something using xrefstyle since
    -the elements don't have ordinary link text.
    -
  • -

    Robert Stayton: toc.xsl

    Fix bug in new toc templates.
    -
  • -

    Mauritz Jeanson: titlepage.xsl; component.xsl; division.xsl; xref.xsl; titlepage.templates⋯

    Added code to handle acknowledgements in book and part. The element is processed
    -similarly to dedication. All acknowledgements will appear as front matter, after
    -any dedications.
    -
  • -

    Robert Stayton: toc.xsl

    Rewrite toc templates to support an empty toc or populated toc
    -in all permitted contexts.  Same for lot elements.
    -This fixes bug #1595969 for FO outputs.
    -
  • -

    Robert Stayton: index.xsl

    Fix indents for seealsoie so they are consistent.
    -
  • -

    Mauritz Jeanson: param.xweb

    Removed duplicate (monospace.font.family).
    -
  • -

    Robert Stayton: param.xweb; param.ent

    Add glossentry.list.item.properties.
    -
  • -

    Robert Stayton: param.xweb; param.ent

    Add monospace.verbatim.font.width param to support @width on programlisting.
    -
  • -

    Robert Stayton: verbatim.xsl

    Put programlisting in fo:block-container with writing-mode="lr-tb"
    -when text direction is right to left because all program languages
    -are left-to-right.
    -
  • -

    Robert Stayton: verbatim.xsl

    Add support for @width on screen and programlisting, fixes bug #2012736.
    -
  • -

    Robert Stayton: xref.xsl

    Fix bug #1973585 xref to para with xrefstyle not handled correctly.
    -
  • -

    Mauritz Jeanson: block.xsl

    Added support for acknowledgements in article.
    -Support in book/part remains to be added.
    -
  • -

    Robert Stayton: xref.xsl

    Fix bug #1787167 incorrect hot text for some olinks.
    -
  • -

    Robert Stayton: fo.xsl

    Add writing-mode="tb-rl" as well since some XSL-FO processors support it.
    -
  • -

    Robert Stayton: autotoc.xsl; lists.xsl; glossary.xsl; fo.xsl; table.xsl; pagesetup.xsl

    Add support for writing-mode="rl-tb" (right-to-left) in FO outputs.
    -Changed instances of margin-left to margin-{$direction.align.start}
    -and margin-right to margin-{$direction.align.end}. Those direction.align
    -params are computed from the writing mode value in each locale's
    -gentext key named 'writing-mode', introduced in 1.74.3 to add
    -right-to-left support to HTML outputs.
    -
  • -

    Robert Stayton: param.xweb; param.ent

    Add attribute-sets for formatting glossary terms and defs.
    -
  • -

    Robert Stayton: param.xweb; param.ent

    Add writing.mode param for FO output.
    -
  • -

    Robert Stayton: autotoc.xsl

    Fix bug 1546008: in qandaentry in a TOC, use its blockinfo/titleabbrev or blockinfo/title
    -instead of question, if available. For DocBook 5, use the info versions.
    -
  • -

    Keith Fahlgren: verbatim.xsl

    Add better pointer to README for XSLTHL
    -
  • -

    Keith Fahlgren: verbatim.xsl

    More tweaking the way that XSLTHL does or does not get called
    -
  • -

    Keith Fahlgren: verbatim.xsl

    Alternate attempt at sanely including/excluding XSLTHT code
    -
-
- -

HTML

- -

The following changes have been made to the - html code - since the 1.74.3 release.

-
  • -

    Robert Stayton: lists.xsl

    Removed redundant lang and title attributes on list element inside
    -div element for lists.
    -
  • -

    Robert Stayton: inline.xsl; titlepage.xsl; division.xsl; toc.xsl; sections.xsl; table.xsl;⋯

    Convert all calls to class.attribute to calls to common.html.attributes
    -to support dir, lang, and title attributes in html output for all elements.
    -Fulfills feature request #1993833.
    -
  • -

    Robert Stayton: chunk-common.xsl

    Fix bug #2750253 wrong links in list of figures in chunk.html
    -when target html is in a subdirectory and dbhtml filename used.
    -
  • -

    Jirka Kosek: highlight.xsl

    Inclusion of highlighting code was simplified. Only one import is now necessary.
    -
  • -

    Robert Stayton: chunk-common.xsl; chunktoc.xsl; docbook.xsl; chunk-changebars.xsl; autoidx⋯

    Convert function-available for node-set() to use
    -new $exsl.node.set.available param in test.
    -
  • -

    Mauritz Jeanson: pi.xsl

    Fixed doc bug for row-height.
    -
  • -

    David Cramer: glossary.xsl

    Internationalized punctuation in glosssee and glossseealso
    -
  • -

    Robert Stayton: lists.xsl; html.xsl; block.xsl

    More elements get common.html.attributes.
    -Added locale.html.attributes template which does the lang,
    -dir, and title attributes, but not the class attribute
    -(used on para, for example).
    -
  • -

    Robert Stayton: lists.xsl

    Replace more literal class atts with mode="class.attribute" to support
    -easier customization.
    -
  • -

    Robert Stayton: glossary.xsl

    Support olinking in glosssee and glossseealso.
    -
  • -

    Robert Stayton: inline.xsl

    In simple.xlink, rearrange order of processing.
    -
  • -

    Robert Stayton: xref.xsl

    Handle firstterm like glossterm in mode="xref-to".
    -
  • -

    Robert Stayton: lists.xsl; html.xsl; block.xsl

    Added template named common.html.attributes to output
    -class, title, lang, and dir for most elements.
    -Started adding it to some list and block elements.
    -
  • -

    Robert Stayton: qandaset.xsl

    Add two new qanda.defaultlabel values so that numbered sections
    -and numbered questions can be distinguished.  Satisfies
    -Feature Request #1539045.
    -
  • -

    Robert Stayton: param.xweb; chunk-code.xsl; param.ent; xref.xsl; chunkfast.xsl; verbatim.x⋯

    Use new param exsl.node.set.available to test, handles Xalan bug.
    -
  • -

    Robert Stayton: autoidx.xsl

    Use named anchors for primary, secondary, and tertiary ids so
    -duplicate entries with different ids can still have an id output.
    -
  • -

    Robert Stayton: param.xweb; param.ent

    Add new param index.links.to.section.
    -
  • -

    Robert Stayton: xref.xsl; autoidx.xsl

    Pass through an id on primary, secondary, or tertiary to 
    -the index entry, so that one could link to an index entry.
    -You can't link to the id on an indexterm because that is
    -used to place the main anchor in the text flow.
    -
  • -

    Robert Stayton: autoidx.xsl

    Add support for the new index.links.to.section param which permits
    -precise links to indexterms in HTML output rather than to
    -the section title.
    -
  • -

    Mauritz Jeanson: synop.xsl

    Added modeless template for ooclass|oointerface|ooexception.
    -Closes bug #1623468.
    -
  • -

    Robert Stayton: qandaset.xsl

    Make sure a qandaset has an anchor, even when it has no title, 
    -because it may be referenced in a TOC or xref.
    -Before, the anchor was output by the title, but there was no
    -anchor if there was no title.
    -
  • -

    Robert Stayton: xref.xsl

    Add a template for indexterm with mode="xref-to" to fix bug 2102592.
    -
  • -

    Robert Stayton: xref.xsl

    Now xref to qandaentry will use the label element in a question for
    -the link text if it has one.
    -
  • -

    Robert Stayton: qandaset.xsl; html.xsl

    Create separate templates for computing label of question and answer
    -in a qandaentry, so such can be used for the alt text of an xref
    -to a qandaentry.
    -
  • -

    Robert Stayton: inline.xsl; xref.xsl

    Now support xref to phrase, simpara, anchor, and quote,
    -most useful when an xrefstyle is used.
    -
  • -

    Robert Stayton: toc.xsl

    Rewrite toc templates to support an empty toc or populated toc
    -in all permitted contexts.  Same for lot elements.
    -This fixes bug #1595969 for HTML outputs.
    -
  • -

    Mauritz Jeanson: titlepage.xsl; component.xsl; division.xsl; xref.xsl; titlepage.templates⋯

    Added code to handle acknowledgements in book and part. The element is processed
    -similarly to dedication. All acknowledgements will appear as front matter, after
    -any dedications.
    -
  • -

    Robert Stayton: index.xsl

    Rewrote primaryie, secondaryie and tertiaryie templates to handle
    -nesting of elements and seeie and seealsoie, as reported in
    -bug # 1168912.
    -
  • -

    Robert Stayton: autotoc.xsl

    Fix simplesect in toc problem.
    -
  • -

    Robert Stayton: verbatim.xsl

    Add support for @width per bug report #2012736.
    -
  • -

    Robert Stayton: formal.xsl; htmltbl.xsl

    Fix bug #1787140 HTML tables not handling attributes correctly.
    -
  • -

    Robert Stayton: param.xweb

    Move writing-mode param.
    -
  • -

    Keith Fahlgren: refentry.xsl

    Remove a nesting of <p> inside <p> for refclass (made XHTML* invalid, made HTML silly)
    -
  • -

    Robert Stayton: table.xsl

    Fix bug #1945872 to allow passthrough of colwidth values to
    -HTML table when no tablecolumns.extension is available and
    -when no instance of * appears in the table's colspecs.
    -
  • -

    Mauritz Jeanson: block.xsl

    Added support for acknowledgements in article.
    -Support in book/part remains to be added.
    -
  • -

    Robert Stayton: chunk-common.xsl

    Fix bug #1787167 incorrect hot text for some olinks.
    -
  • -

    Robert Stayton: qandaset.xsl

    Fix bug 1546008: in qandaentry in a TOC, use its blockinfo/titleabbrev or blockinfo/title
    -instead of question, if available. For DocBook 5, use the info versions.
    -
  • -

    Robert Stayton: chunktoc.xsl

    Add support for generating olink database when using chunktoc.xsl.
    -
  • -

    Keith Fahlgren: verbatim.xsl

    Add better pointer to README for XSLTHL
    -
  • -

    Keith Fahlgren: verbatim.xsl

    Another stab at fixing the stupid XSLTHT includes across processors (Saxon regression reported by Sorin Ristache)
    -
  • -

    Keith Fahlgren: verbatim.xsl

    More tweaking the way that XSLTHL does or does not get called
    -
  • -

    Keith Fahlgren: verbatim.xsl

    Alternate attempt at sanely including/excluding XSLTHT code
    -
-
- -

Manpages

- -

The following changes have been made to the - manpages code - since the 1.74.3 release.

-
  • -

    Robert Stayton: table.xsl

    Convert function-available test for node-set() function to
    -test of $exsl.node.set.available param.
    -
  • -

    Mauritz Jeanson: lists.xsl

    Added a template for bibliolist. Closes bug #1815916.
    -
-
- -

ePub

- -

The following changes have been made to the - epub code - since the 1.74.3 release.

-
  • -

    Keith Fahlgren: bin/spec/epub_regressions_spec.rb; bin/spec/files/onegraphic.xinclude.xml;⋯

    Slightly more nuanced handling of imageobject alternatives and better support in dbtoepub for XIncludes and ENTITYs to resolve Issue #2750442 reported by Raphael Hertzog.
    -
  • -

    Keith Fahlgren: docbook.xsl

    Add a colon after an abstract/title when mapping into the dc:description for OPF metadata in ePub output to help the flat text have more pseudo-semantics (sugestions from Michael Wiedmann)
    -
  • -

    Keith Fahlgren: bin/spec/epub_regressions_spec.rb; docbook.xsl; bin/spec/files/de.xml

    Correctly set dc:language in OPF metadata when i18nizing. Closes Bug #2755150
    -
  • -

    Keith Fahlgren: bin/spec/epub_regressions_spec.rb; docbook.xsl

    Corrected namespace declarations for literal XHTML elements to make them serialize "normally"
    -
  • -

    Keith Fahlgren: docbook.xsl

    Be a little bit more nuanced about dates
    -
  • -

    Keith Fahlgren: docbook.xsl; bin/spec/epub_realbook_spec.rb; bin/spec/files/orm.book.001.x⋯

    Add DocBook subjectset -> OPF dc:subject mapping and tests
    -
  • -

    Keith Fahlgren: docbook.xsl; bin/spec/epub_realbook_spec.rb; bin/spec/files/orm.book.001.x⋯

    Add DocBook date -> OPF dc:date mapping and tests
    -
  • -

    Keith Fahlgren: docbook.xsl; bin/spec/epub_realbook_spec.rb; bin/spec/files/orm.book.001.x⋯

    Add DocBook abstract -> OPF dc:description mapping and tests
    -
  • -

    Robert Stayton: docbook.xsl

    Check in patch submitted by user to add opf:file-as attribute
    -to dc:creator element.
    -
  • -

    Keith Fahlgren: bin/dbtoepub

    Adding --output option to dbtoepub based on user request
    -
  • -

    Keith Fahlgren: docbook.xsl; bin/spec/epub_spec.rb

    Cleaning and regularizing the generation of namespaced nodes for OPF, NCX, XHTML and other outputted filetypes (hat tip to bobstayton for pointing out the silly, incorrect code)
    -
  • -

    Keith Fahlgren: bin/spec/epub_regressions_spec.rb; bin/spec/files/refclass.xml

    Remove a nesting of <p> inside <p> for refclass (made XHTML* invalid, made HTML silly)
    -
  • -

    Keith Fahlgren: bin/spec/epub_regressions_spec.rb; bin/spec/files/blockquotepre.xml

    Added regression test and fix for XHTML validation problem with <a>s added inside <blockquote>; This potentially causes another problem (where something is referenced by has no anchor, but someone reporting that should cause the whole <a id='thing'/> thing to be reconsidered with modern browsers in mind.
    -
-
- -

HTMLHelp

- -

The following changes have been made to the - htmlhelp code - since the 1.74.3 release.

-
  • -

    Robert Stayton: htmlhelp-common.xsl

    Add support for generating olink target database for htmlhelp files.
    -
-
- - -

Params

- -

The following changes have been made to the - params code - since the 1.74.3 release.

-
  • -

    Robert Stayton: default.table.rules.xml

    Add default setting for @rules attribute on HTML markup tables.
    -
  • -

    Mauritz Jeanson: bookmarks.collapse.xml

    Added a new parameter, bookmarks.collapse, that controls the initial state 
    -of the bookmark tree. When the parameter has a non-zero value (the default), 
    -only the top-level bookmarks are displayed initially. Otherwise, the whole 
    -tree of bookmarks is displayed. 
    -
    -This is implemented for FOP 0.9X. Closes FR #1792326.
    -
  • -

    Robert Stayton: variablelist.term.properties.xml

    Add new variablelist.term.properties to format terms, per 
    -request # 1968513.
    -
  • -

    Robert Stayton: qanda.defaultlabel.xml

    Add two new qanda.defaultlabel values so that numbered sections
    -and numbered questions can be distinguished.  Satisfies
    -Feature Request #1539045.
    -
  • -

    Robert Stayton: index.links.to.section.xml

    Change default to 1 to match past behavior.
    -
  • -

    Robert Stayton: exsl.node.set.available.xml

    Isolate this text for Xalan bug regarding exsl:node-set available.
    -If it is ever fixed in Xalan, just fix it here.
    -
  • -

    Robert Stayton: index.links.to.section.xml

    Add param to control whether an index entry links to
    -a section title or to the precise location of the
    -indexterm.
    -
  • -

    Robert Stayton: glossentry.list.item.properties.xml

    New attribute list for glossentry in glossary.
    -
  • -

    Robert Stayton: monospace.verbatim.font.width.xml

    New parameter to support @width on programlisting and screen.
    -
  • -

    Mauritz Jeanson: highlight.source.xml

    Updated and reorganized the description.
    -
  • -

    Robert Stayton: page.margin.outer.xml; page.margin.inner.xml

    Add caveat about XEP bug when writing-mode is right-to-left.
    -
  • -

    Robert Stayton: article.appendix.title.properties.xml; writing.mode.xml; body.start.indent⋯

    Change 'left' to 'start' and 'right' to 'end' to support right-to-left
    -writing mode.
    -
  • -

    Robert Stayton: glossdef.block.properties.xml; glossdef.list.properties.xml; glossterm.blo⋯

    Add attribute-sets for formatting glossary terms and defs.
    -
  • -

    Robert Stayton: glossterm.separation.xml

    Clarify the description.
    -
  • -

    Robert Stayton: make.year.ranges.xml

    Now handles year element containing a comma or dash without error.
    -
-
- -

Highlighting

- -

The following changes have been made to the - highlighting code - since the 1.74.3 release.

-
  • -

    Jirka Kosek: README

    Inclusion of highlighting code was simplified. Only one import is now necessary.
    -
  • -

    Keith Fahlgren: README

    Adding XSLTHL readme
    -
  • -

    Keith Fahlgren: common.xsl

    Alternate attempt at sanely including/excluding XSLTHT code
    -
-
- -

XSL-Saxon

- -

The following changes have been made to the - xsl-saxon code - since the 1.74.3 release.

-
  • -

    Mauritz Jeanson: src/com/nwalsh/saxon/Text.java

    Added a fix that prevents output of extra blank line.
    -Hopefully this closes bug #894805.
    -
-
- -

XSL-Xalan

- -

The following changes have been made to the - xsl-xalan code - since the 1.74.3 release.

-
  • -

    Mauritz Jeanson: src/com/nwalsh/xalan/Text.java

    Added a fix that prevents output of extra blank line.
    -Hopefully this closes bug #894805.
    -
-
- - -
- -

Release Notes: 1.74.3

- -

This release fixes some bugs in the 1.74.2 release.

-

See highlighting/README for XSLTHL usage instructions.

-
-

Release Notes: 1.74.2

- -

This release fixes some bugs in the 1.74.1 release.

-
- -

Release Notes: 1.74.1

- -

This release includes important bug fixes and adds the following -significant feature changes: -

Gentext

Kirghiz locale added and Chinese translations have been simplified.

Somme support for gentext and right-to-left languages has been added.

FO

Various bugs have been resolved.

Support for a new processing instruction: dbfo funcsynopsis-style has been added.

Added new param email.mailto.enabled for FO output. Patch from Paolo Borelli.

-

Support for documented metadata in fop1 mode has been added.

-
Highlighting

Support for the latest version of XSLTHL 2.0 and some new language syntaxes have been added to a variety of outputs.

Manpages

Added man.output.better.ps.enabled param (zero default). It non-zero, no such -markup is embedded in generated man pages, and no enhancements are -included in the PostScript output generated from those man pages -by the man -Tps command.

HTML

Support for writing.mode to set text direction and alignment based on document locale has been added.

-

Added a new top-level stylesheet module, chunk-changebars.xsl, to be -used for generating chunked output with highlighting based on change -(@revisionflag) markup. The module imports/includes the standard chunking -and changebars templates and contains additional logic for chunked output. -See FRs #1015180 and #1819915.

-
ePub
-

Covers now look better in Adobe Digital Editions thanks to a patch from Paul Norton of Adobe

-

Cover handling now more generic (including limited DocBook 5.0 cover support thanks to patch contributed by Liza Daly.

Cover markup now carries more reliably into files destined for .mobi and the Kindle.

dc:identifiers are now generated from more types of numbering schemes.

Both SEO and semantic structure of chunked ePub output by ensuring that we always send out one and only one h1 in each XHTML chunk.

-

Primitive support for embedding a single font added.

- -

Support for embedding a CSS customizations added.

-
Roundtrip
-

Support for imagedata-metadata and table as images added.

- -

Support for imagedata-metadata and legalnotice as images added.

-
Params

man.output.better.ps.enabled added for Manpages output

-

writing.mode.xml added to set text direction.

- -

Added new param email.mailto.enabled for FO output. -Patch from Paolo Borelli. Closes #2086321.

- -

highlight.source upgraded to support the latest version of XSLTHL 2.0.

-

-

-

The following is a list of changes that have been made since the 1.74.0 release.

- - -

Gentext

- -

The following changes have been made to the gentext code since the 1.74.0 release.

-
  • -

    Michael(tm) Smith: locale/ky.xml; Makefile

    new Kirghiz locale from Ilyas Bakirov
    -
  • -

    Mauritz Jeanson: locale/en.xml

    Added "Acknowledgements".
    -
  • -

    Dongsheng Song: locale/zh_cn.xml

    Simplified Chinese translation.
    -
  • -

    Robert Stayton: locale/lv.xml; locale/ca.xml; locale/pt.xml; locale/tr.xml; locale/af.xml;⋯

    Add writing-mode gentext string to support right-to-left languages.
    -
-
- -

FO

- -

The following changes have been made to the fo code since the 1.74.0 release.

-
  • -

    David Cramer: footnote.xsl

    Added a check to confirm that a footnoteref's linkend points to a footnote. Stylesheets stop processing if not and provide a useful error message.
    -
  • -

    Mauritz Jeanson: spaces.xsl

    Convert spaces to fo:leader also in elements in the DB 5 namespace.
    -
  • -

    Mauritz Jeanson: pi.xsl; synop.xsl

    Added support for a new processing instruction: dbfo funcsynopsis-style. 
    -Closes bug #1838213.
    -
  • -

    Michael(tm) Smith: inline.xsl; param.xweb; param.ent

    Added new param email.mailto.enabled for FO output.
    -Patch from Paolo Borelli. Closes #2086321.
    -
  • -

    Mauritz Jeanson: docbook.xsl

    Added support for document metadata for fop1 (patch #2067318).
    -
  • -

    Jirka Kosek: param.ent; param.xweb; highlight.xsl

    Upgraded to support the latest version of XSLTHL 2.0
    - -- nested markup in highlited code is now processed
    - -- it is no longer needed to specify path XSLTHL configuration file using Java property
    - -- support for new languages, including Perl, Python and Ruby was added
    -
-
- -

HTML

- -

The following changes have been made to the html code since the 1.74.0 release.

-
  • -

    Robert Stayton: param.xweb; docbook.xsl; param.ent; html.xsl

    Add support for writing.mode to set text direction and alignment based on document locale.
    -
  • -

    Mauritz Jeanson: chunk-changebars.xsl

    Added a new top-level stylesheet module, chunk-changebars.xsl, to be 
    -used for generating chunked output with highlighting based on change 
    -(@revisionflag) markup. The module imports/includes the standard chunking 
    -and changebars templates and contains additional logic for chunked output.
    -See FRs #1015180 and #1819915.
    -
-
- -

Manpages

- -

The following changes have been made to the manpages code since the 1.74.0 release.

-
  • -

    Michael(tm) Smith: docbook.xsl

    Put the following at the top of generated roff for each page:
    -  \" t
    -purpose is to explicitly tell AT&T troff that the page needs to be
    -pre-processed through tbl(1); groff can figure it out
    -automatically, but apparently AT&T troff needs to be explicitly told
    -
-
- -

ePub

- -

The following changes have been made to the epub code since the 1.74.0 release.

-
  • -

    Keith Fahlgren: docbook.xsl

    Patch from Paul Norton of Adobe to get covers to look better in Adobe Digital Editions
    -
  • -

    Keith Fahlgren: bin/spec/epub_regressions_spec.rb; bin/spec/files/v5cover.xml; bin/spec/sp⋯

    Patch contributed by Liza Daly to make ePub cover handling more generic. Additionally
    -DocBook 5.0's <cover> now has some limited support:
    -
    -- should reference a cover in the OPF guide for a DocBook 5.0 test document
    -
  • -

    Keith Fahlgren: bin/spec/files/isbn.xml; bin/spec/files/issn.xml; bin/spec/files/biblioid.⋯

    Liza Daly reported that the dc:identifer-generation code was garbage (she was right).
    -
    -Added new tests:
    -- should include at least one dc:identifier
    -- should include an ISBN as URN for dc:identifier if an ISBN was in the metadata
    -- should include an ISSN as URN for dc:identifier if an ISSN was in the metadata
    -- should include an biblioid as a dc:identifier if an biblioid was in the metadata
    -- should include a URN for a biblioid with @class attribute as a dc:identifier if an biblioid was in the metadata
    -
  • -

    Keith Fahlgren: docbook.xsl; bin/spec/epub_spec.rb

    Improve both SEO and  semantic structure of chunked ePub output by ensuring that
    -we always send out one and only one h1 in each XHTML chunk.
    -
    -DocBook::Epub
    -- should include one and only one <h1> in each HTML file in rendered ePub files
    -for <book>s
    -- should include one and only one <h1> in each HTML file in rendered ePub files
    -for <book>s even if they do not have section markup
    -
  • -

    Keith Fahlgren: docbook.xsl; bin/spec/epub_realbook_spec.rb; bin/spec/files/orm.book.001.x⋯

    Adding better support for covers in epub files destined for .mobi and the Kindle
    -
  • -

    Keith Fahlgren: bin/dbtoepub; bin/lib/docbook.rb; bin/spec/files/DejaVuSerif.otf; docbook.⋯

    Adding primitive support for embedding a single font
    -
  • -

    Keith Fahlgren: bin/dbtoepub; bin/lib/docbook.rb; bin/spec/files/test_cust.xsl; bin/spec/e⋯

    Adding support for user-specified customization layers in dbtoepub
    -
  • -

    Keith Fahlgren: bin/dbtoepub; bin/spec/epub_regressions_spec.rb; bin/lib/docbook.rb; bin/s⋯

    Adding CSS support to .epub target & dbtoepub:
    -    -c, --css [FILE]                 Use FILE for CSS on generated XHTML.
    -
    -
    -DocBook::Epub
    -...
    -- should include a CSS link in HTML files when a CSS file has been provided
    -- should include CSS file in .epub when a CSS file has been provided
    -- should include a CSS link in OPF file when a CSS file has been provided
    -
-
- -

Roundtrip

- -

The following changes have been made to the - roundtrip code - since the 1.74.0 release.

-
  • -

    Steve Ball: blocks2dbk.xsl; template.xml; template.dot

    added support for imagedata-metadata
    -added support for table as images
    -
  • -

    Steve Ball: blocks2dbk.xsl; normalise2sections.xsl; sections2blocks.xsl

    Improved support for personname inlines.
    -
  • -

    Steve Ball: blocks2dbk.xsl; blocks2dbk.dtd; template.xml

    Added support for legalnotice.
    -
  • -

    Steve Ball: blocks2dbk.xsl; wordml2normalise.xsl

    added support for orgname in author
    -
  • -

    Steve Ball: specifications.xml; supported.xml; blocks2dbk.xsl; wordml2normalise.xsl; dbk2w⋯

    Updated specification.
    -to-DocBook: add cols attribute to tgroup
    -from-DocBook: fix for blockquote title
    -
-
- -

Params

- -

The following changes have been made to the params since the 1.74.0 release.

-
  • -

    The change was to add man.output.better.ps.enabled parameter, with -its default value set to zero. - -If the value of the man.output.better.ps.enabled parameter is -non-zero, certain markup is embedded in each generated man page -such that PostScript output from the man -Tps command for that -page will include a number of enhancements designed to improve the -quality of that output. - -If man.output.better.ps.enabled is zero (the default), no such -markup is embedded in generated man pages, and no enhancements are -included in the PostScript output generated from those man pages -by the man -Tps command. - -WARNING: The enhancements provided by this parameter rely on -features that are specific to groff (GNU troff) and that are not -part of "classic" AT&T troff or any of its derivatives. Therefore, -any man pages you generate with this parameter enabled will be -readable only on systems on which the groff (GNU troff) program is -installed, such as GNU/Linux systems. The pages will not not be -readable on systems on with the classic troff (AT&T troff) command -is installed. - -NOTE: The value of this parameter only affects PostScript output -generated from the man command. It has no effect on output -generated using the FO backend. - -TIP: You can generate PostScript output for any man page by -running the following command: - -man FOO -Tps > FOO.ps - -You can then generate PDF output by running the following command: - -ps2pdf FOO.ps

    -
  • -

    Robert Stayton: writing.mode.xml

    writing mode param used to set text direction.
    -
  • -

    Michael(tm) Smith: email.mailto.enabled.xml

    Added new param email.mailto.enabled for FO output.
    -Patch from Paolo Borelli. Closes #2086321.
    -
  • -

    Jirka Kosek: highlight.source.xml; highlight.xslthl.config.xml

    Upgraded to support the latest version of XSLTHL 2.0
    - -- nested markup in highlited code is now processed
    - -- it is no longer needed to specify path XSLTHL configuration file using Java property
    - -- support for new languages, including Perl, Python and Ruby was added
    -
-
- -

Highlighting

- -

The following changes have been made to the - highlighting code - since the 1.74.0 release.

-
  • -

    Jirka Kosek: cpp-hl.xml; c-hl.xml; tcl-hl.xml; php-hl.xml; common.xsl; perl-hl.xml; delphi⋯

    Upgraded to support the latest version of XSLTHL 2.0
    - -- nested markup in highlited code is now processed
    - -- it is no longer needed to specify path XSLTHL configuration file using Java property
    - -- support for new languages, including Perl, Python and Ruby was added
    -
-
- -
- - -

Release Notes: 1.74.0

- -

This release includes important bug fixes and adds the following -significant feature changes: -

.epub target

Paul Norton (Adobe) and Keith Fahlgren(O'Reilly Media) have donated code that generates .epub documents from -DocBook input. An alpha-reference implementation in Ruby has also been provided.

-

.epub is an open standard of the The International Digital Publishing Forum (IDPF), -a the trade and standards association for the digital publishing industry.

-

Read more about this target in epub/README -

XHTML 1.1 target

To support .epub output, a strict XHTML 1.1 target has been added. The stylesheets for this output are -generated and are quite similar to the XHTML target.

Gentext updates

A number of locales have been updated.

Roundtrip improvements

Table, figure, template syncronization, and character style improvements have been made for WordML & Pages. Support added for OpenOffice.org.

First implementation of a libxslt extension
-

A stylesheet extension for libxslt, written in Python, has been added. - The extension is a function for adjusting column widths in CALS tables. See - extensions/README.LIBXSLT for more information.

-

-

-

The following is a list of changes that have been made - since the 1.73.2 release.

- -

Gentext

- -

The following changes have been made to the - gentext code - since the 1.73.2 release.

-
  • -

    Michael(tm) Smith: locale/id.xml

    Checked in changes to Indonesion locale submitted by Euis Luhuanam a long time ago.
    -
  • -

    Michael(tm) Smith: locale/lt.xml

    Added changes to Lithuanian locate submitted a long time back by Nikolajus Krauklis.
    -
  • -

    Michael(tm) Smith: locale/hu.xml

    fixed error in lowercase.alpha definition in Hungarian locale
    -
  • -

    Michael(tm) Smith: locale/nb.xml

    Corrected language code for nb locale, and restored missing "startquote" key.
    -
  • -

    Michael(tm) Smith: locale/ja.xml

    Committed changes to ja locale file, from Akagi Kobayashi. Adds bracket quotes around many xref instances that did not have them
    -before.
    -
  • -

    Michael(tm) Smith: Makefile

    "no" locale is now "nb"
    -
  • -

    Michael(tm) Smith: locale/nb.xml

    Update Norwegian Bokmål translation. Thanks to Hans F. Nordhaug.
    -
  • -

    Michael(tm) Smith: locale/no.xml; locale/nb.xml

    per message from Hans F. Nordhaug, correct identifier for
    -Norwegian Bokmål is "nb" (not "no") and has been for quite some
    -time now...
    -
  • -

    Michael(tm) Smith: locale/ja.xml

    Converted ja.xml source file to use real unicode characters so
    -that the actual glyphs so up when you edit it in a text editor
    -(instead of the character references).
    -
  • -

    Michael(tm) Smith: locale/ja.xml

    Checked in changes to ja.xml locale file. Thanks to Akagi Kobayashi.
    -
  • -

    Michael(tm) Smith: locale/it.xml

    Changes from Federico Zenith
    -
  • -

    Dongsheng Song: locale/zh_cn.xml

    Added missing translations.
    -
-
- -

Common

- -

The following changes have been made to the - common code - since the 1.73.2 release.

-
  • -

    Michael(tm) Smith: l10n.xsl

    Added new template "l10.language.name" for retrieving the
    -English-language name of the lang setting of the current document.
    -Closes #1916837. Thanks to Simon Kennedy.
    -
  • -

    Michael(tm) Smith: refentry.xsl

    fixed syntax error
    -
  • -

    Michael(tm) Smith: refentry.xsl

    fixed a couple of typos
    -
  • -

    Michael(tm) Smith: refentry.xsl

    refined handling of cases where refentry "source" or "manual"
    -metadata is missing or when we use fallback content instead. We
    -now report a Warning if we use fallback content.
    -
  • -

    Michael(tm) Smith: refentry.xsl

    don't use refmiscinfo@class=date value as fallback for refentry
    -"source" or "manual" metadata fields
    -
  • -

    Michael(tm) Smith: refentry.xsl

    Made reporting of missing refentry metadata more quiet:
    -
    -  - we no longer report anything if usable-but-not-preferred
    -    metadata is found; we just quietly use whatever we manage to
    -    find
    -
    -  - we now only report missing "source" metadata if the refentry
    -    is missing BOTH "source name" and "version" metadata; if it
    -    has one but not the other, we use whichever one it has and
    -    don't report anything as missing
    -
    -The above changes were made because testing with some "real world"
    -source reveals that some authors are intentionally choosing to use
    -"non preferred" markup for some metadata, and also choosing to
    -omit "source name" or "version" metadata in there DocBook XML. So
    -it does no good to give them pedantic reminders about what they
    -already know...
    -
    -Also, changed code to cause "fixme" text to be inserted in output
    -in particular cases:
    -
    -  - if we can't manage to find any "source" metadata at all, we
    -    now put fixme text into the output
    -
    -  - if we can't manage to find any "manual" metadata a all, we 
    -    now put fixme text into the output
    -
    -The "source" and "manual" metadata is necessary information, so
    -buy putting the fixme stuff in the output, we alert users to the
    -need problem of it being missing.
    -
  • -

    Michael(tm) Smith: refentry.xsl

    When generating manpages output, we no longer report anything if
    -the refentry source is missing date or pubdate content. In
    -practice, many users intentionally omit the date from the source
    -because they explicitly want it to be generated.
    -
  • -

    Michael(tm) Smith: l10n.xml

    further change needed for switch from no locale to nb.
    -
  • -

    Michael(tm) Smith: common.xsl

    Added support for orgname in authorgroup. Thanks to Camille
    -Bégnis.
    -
  • -

    Michael(tm) Smith: Makefile

    "no" locale is now "nb"
    -
  • -

    Mauritz Jeanson: stripns.xsl

    Removed the template matching "ng:link|db:link" (in order to make @xlink:show 
    -work with <link> elements). As far as I can tell, this template is no longer needed.
    -
  • -

    Mauritz Jeanson: entities.ent

    Moved declaration of comment.block.parents entity to common/entities.ent.
    -
  • -

    Mauritz Jeanson: titles.xsl

    Added an update the fix made in revision 7528 (handling of xref/link in no.anchor.mode mode).
    -Having xref in title is not a problem as long as the target is not an ancestor element. 
    -Closes bug #1838136.
    -
    -Note that an xref that is in a title and whose target is an ancestor element is still not 
    -rendered in the TOC. This could be considered a bug, but on the other hand I cannot really
    -see the point in having such an xref in a document.
    -
  • -

    Mauritz Jeanson: titles.xsl

    Added a "not(ancestor::title)" test to work around "too many nested 
    -apply-templates" problems when processing xrefs or links in no.anchor.mode mode.
    -Hopefully, this closes bug #1811721.
    -
  • -

    Mauritz Jeanson: titles.xsl

    Removed old template matching "link" in no.anchor.mode mode.
    -
  • -

    Mauritz Jeanson: titles.xsl

    Process <link> in no.anchor.mode mode with the same template as <xref>. 
    -Closes bug #1759205 (Empty link in no.anchor.mode mode).
    -
  • -

    Mauritz Jeanson: titles.xsl

    In no.anchor.mode mode, do not output anchors for elements that are descendants 
    -of <title>. Previously, having inline elements with @id/@xml:id in <title>s 
    -resulted in anchors both in the TOC and in the main flow. Closes bug #1797492.
    -
-
- -

FO

- -

The following changes have been made to the - fo code - since the 1.73.2 release.

-
  • Mauritz Jeanson: pi.xsl

    Updated documentation for keep-together.
  • Mauritz Jeanson: task.xsl

    Enabled use of the keep-together PI on task elements.
  • -

    Robert Stayton: index.xsl

    FOP1 requires fo:wrapper for inline index entries, not fo:inline.
    -
  • -

    Robert Stayton: index.xsl

    Fixed non-working inline.or.block template for indexterm wrappers.
    -Add fop1 to list of processors using inline.or.block.
    -
  • -

    Mauritz Jeanson: table.xsl

    Fixed bug #1891965 (colsep in entytbl not working).
    -
  • -

    Mauritz Jeanson: titlepage.xsl

    Added support for title in revhistory. Closes bug #1842847.
    -
  • -

    Mauritz Jeanson: pi.xsl

    Small doc cleanup (dbfo float-type).
    -
  • -

    Mauritz Jeanson: titlepage.xsl

    Insert commas between multiple copyright holders.
    -
  • -

    Mauritz Jeanson: autotoc.xsl; division.xsl

    Added modifications to support nested set elements. See bug #1853172.
    -
  • -

    David Cramer: glossary.xsl

    Added normalize-space to xsl:sorts to avoid missorting of glossterms due to stray leading spaces.
    -
  • -

    David Cramer: glossary.xsl

    Fixed bug #1854199: glossary.xsl should use the sortas attribute on glossentry
    -
  • -

    Mauritz Jeanson: inline.xsl

    Added a template for citebiblioid. The hyperlink target is the parent of the referenced biblioid,
    -and the "hot text" is the biblioid itself enclosed in brackets.
    -
  • -

    Mauritz Jeanson: inline.xsl

    Moved declaration of comment.block.parents entity to common/entities.ent.
    -
  • -

    Mauritz Jeanson: docbook.xsl

    Updated message about unmatched element.
    -
  • -

    Mauritz Jeanson: param.xweb

    Added link to profiling chapter of TCG.
    -
  • -

    Mauritz Jeanson: refentry.xsl

    Fixed typo (refsynopsysdiv -> refsynopsisdiv).
    -
  • -

    David Cramer: fop.xsl; fop1.xsl; ptc.xsl; xep.xsl

    Added test to check generate.index param when generating pdf bookmarks
    -
  • -

    Mauritz Jeanson: graphics.xsl

    Added support for MathML in imagedata.
    -
  • -

    Michael(tm) Smith: math.xsl

    Removed unnecessary extra test condition in test express that
    -checks for passivetex.
    -
  • -

    Michael(tm) Smith: math.xsl

    Don't use fo:instream-foreign-object if we are processing with
    -passivetex. Closes #1806899. Thanks to Justus Piater.
    -
  • -

    Mauritz Jeanson: component.xsl

    Added code to output a TOC for an appendix in an article when 
    -generate.toc='article/appendix toc'. Closes bug #1669658.
    -
  • -

    Dongsheng Song: biblio-iso690.xsl

    Change encoding from "windows-1250" to "UTF-8".
    -
  • -

    Mauritz Jeanson: pi.xsl

    Updated documentation for dbfo_label-width.
    -
  • -

    Mauritz Jeanson: lists.xsl

    Added support for the dbfo_label-width PI in calloutlists.
    -
  • -

    Robert Stayton: biblio.xsl

    Support finding glossary database entries inside bibliodivs.
    -
  • -

    Robert Stayton: formal.xsl

    Complete support for <?dbfo pgwide="1"?> for informal
    -elements too.
    -
  • -

    Mauritz Jeanson: table.xsl

    In the table.block template, added a check for the dbfo_keep-together PI, so that 
    -a table may break (depending on the PI value) at a page break. This was needed 
    -since the outer fo:block that surrounds fo:table has keep-together.within-column="always" 
    -by default, which prevents the table from breaking. Closes bug #1740964 (Titled 
    -table does not respect dbfo PI).
    -
  • -

    Mauritz Jeanson: pi.xsl

    Added a few missing @role="tcg".
    -
  • -

    Mauritz Jeanson: inline.xsl

    Use normalize-space() in glossterm comparisons (as in html/inline.xsl).
    -
  • -

    Mauritz Jeanson: autoidx.xsl

    Removed the [&scope;] predicate from the target variable in the template with name="reference".
    -This filter was the cause of missing index backlinks when @zone and @type were used on indexterms,
    -with index.on.type=1. Closes bug #1680836.
    -
  • -

    Michael(tm) Smith: inline.xsl; xref.xsl; footnote.xsl

    Added capability in FO output for displaying URLs for all
    -hyperlinks (elements marked up with xlink:href attributes) in the
    -same way as URLs for ulinks are already handled (which is to say,
    -either inline or as numbered footnotes).
    -
    -Background on this change:
    -DocBook 5 allows "ubiquitous" linking, which means you can make
    -any element a hyperlink just by adding an xlink:href attribute to
    -it, with the value set to an external URL. That's in contrast to
    -DocBook 4, which only allows you to use specific elements (e.g.,
    -the link and ulink elements) to mark up hyperlinks.
    -
    -The existing FO stylesheets have a mechanism for handling display
    -of URLs for hyperlinks that are marked up with ulink, but they did
    -not handle display of URLs for elements that were marked up with
    -xlink:href attributes. This change adds handling for those other
    -elements, enabling the URLs they link to be displayed either
    -inline or as numbered footnotes (depending on what values the user
    -has the ulink.show and ulink.footnotes params set to).
    -
    -Note that this change only adds URL display support for elements
    -that call the simple.xlink template -- which currently is most
    -(but not all) inline elements.
    -
    -This change also moves the URL display handling out of the ulink
    -template and into a new "hyperlink.url.display" named template;
    -the ulink template and the simple.xlink named template now both
    -call the hyperlink.url.display template.
    -
    -Warning: In the stylesheet code that determines what footnote
    -number to assign to each footnote or external hyperlink, there is
    -an XPath expression for determining whether a particular
    -xlink:href instance is an external hyperlink; that expression is
    -necessarily a bit complicated and further testing may reveal that
    -it doesn't handle all cases as expected -- so some refinements to
    -it may need to be done later.
    -
    -Closes #1785519. Thanks to Ken Morse for reporting and
    -troubleshooting the problem.
    -
-
- -

HTML

- -

The following changes have been made to the - html code - since the 1.73.2 release.

-
  • Keith Fahlgren: inline.xsl; synop.xsl

    Work to make HTML and XHTML targets more valid
  • Keith Fahlgren: table.xsl

    Add better handling for tables that have footnotes in the titles
  • Keith Fahlgren: biblio.xsl

    Add anchors to bibliodivs
  • -

    Keith Fahlgren: formal.xsl; Makefile; htmltbl.xsl

    Initial checkin/merge of epub target from work provided by Paul Norton of Adobe
    -and Keith Fahlgren of O'Reilly.
    -

    This change includes new code for generating the XHTML 1.1 target sanely.

    -
  • -

    Mauritz Jeanson: biblio.xsl

    Added code for creating URLs from biblioids with @class="doi" (representing Digital 
    -Object Identifiers). See FR #1934434 and http://doi.org.
    -
    -To do: 1) Add support for FO output. 2) Figure out how @class="doi" should be handled 
    -for bibliorelation, bibliosource and citebiblioid.
    -
  • -

    Norman Walsh: formal.xsl

    Don't use xsl:copy because it forces the resulting element to be in the same namespace as the source element; in the XHTML stylesheets, that's wrong. But the HTML-to-XHTML converter does the right thing with literal result elements, so use one of them.
    -
  • -

    Michael(tm) Smith: Makefile

    Added checks and hacks to various makefiles to enable building
    -under Cygwin. This stuff is ugly and maybe not worth the mess and
    -trouble, but does seem to work as expected and not break anything
    -else.
    -
  • -

    Michael(tm) Smith: docbook.xsl

    added "exslt" namespace binding to html/docbook.xsl file (in
    -addition to existing "exsl" binding. reason is because lack of it
    -seems to cause processing problems when using the profiled
    -version of the stylsheet
    -
  • -

    Norman Walsh: chunk-common.xsl

    Rename link
    -
  • -

    Mauritz Jeanson: table.xsl

    Added a fix to make rowsep apply to the last row of thead in entrytbl.
    -
  • -

    Michael(tm) Smith: synop.xsl

    Simplified and streamlined handling of output for ANSI-style
    -funcprototype output, to correct a problem that was causing type
    -data to be lost in the output parameter definitions. For example,
    -for an instance like this:
    -  <paramdef>void *<parameter>dataptr</parameter>[]</paramdef>
    -... the brackets (indicating an array type) were being dropped.
    -
  • -

    Michael(tm) Smith: synop.xsl

    Changed HTML handling of K&R-style paramdef output. The parameter
    -definitions are no longer output in a table (though the prototype
    -still is). The reason for the change is that the
    -kr-tabular-funcsynopsis-mode template was causing type data to be
    -lost in the output parameter definitions. For example, for an
    -instance like this:
    -  <paramdef>void *<parameter>dataptr</parameter>[]</paramdef>
    -... the brackets (indicating an array type) were being dropped.
    -The easiest way to deal with the problem is to not try to chop up
    -the parameter definitions and display them in table format, but to
    -instead just output them as-is. May not look quite as pretty, but
    -at least we can be sure no information is being lost...
    -
  • -

    Michael(tm) Smith: pi.xsl

    updated wording of doc for funcsynopsis-style PI
    -
  • -

    Michael(tm) Smith: param.xweb; param.ent; synop.xsl

    Removed the funcsynopsis.tabular.threshold param. It's no longer
    -being used in the code and hasn't been since mid 2006.
    -
  • -

    Mauritz Jeanson: graphics.xsl

    Added support for the img.src.path parameter for SVG graphics. Closes bug #1888169.
    -
  • -

    Mauritz Jeanson: chunk-common.xsl

    Added missing space.
    -
  • -

    Norman Walsh: component.xsl

    Fix bug where component titles inside info elements were not handled properly
    -
  • -

    Michael(tm) Smith: pi.xsl

    Moved dbhtml_stop-chunking embedded doc into alphabetical order,
    -fixed text of TCG section it see-also'ed.
    -
  • -

    David Cramer: pi.xsl

    Added support for <?dbhtml stop-chunking?> processing instruction
    -
  • -

    David Cramer: chunk-common.xsl; pi.xsl

    Added support for <?dbhtml stop-chunking?> processing instruction
    -
  • -

    David Cramer: glossary.xsl

    Fixed bug #1854199: glossary.xsl should use the sortas attribute on glossentry. Also added normalize-space to avoid missorting due to stray leading spaces.
    -
  • -

    Mauritz Jeanson: inline.xsl

    Added a template for citebiblioid. The hyperlink target is the parent of the referenced biblioid,
    -and the "hot text" is the biblioid itself enclosed in brackets.
    -
  • -

    Mauritz Jeanson: inline.xsl

    Added support for @xlink:show in the simple.xlink template. The "new" and "replace" 
    -values are supported (corresponding to values of "_blank" and "_top" for the 
    -ulink.target parameter). I have assumed that @xlink:show should override ulink.target
    -for external URI links. This closes bugs #1762023 and #1727498.
    -
  • -

    Mauritz Jeanson: inline.xsl

    Moved declaration of comment.block.parents entity to common/entities.ent.
    -
  • -

    Mauritz Jeanson: param.xweb

    Added link to profiling chapter of TCG.
    -
  • -

    Dongsheng Song: biblio-iso690.xsl

    Change encoding from "windows-1250" to "UTF-8".
    -
  • -

    Robert Stayton: biblio.xsl

    Add support in biblio collection to entries in bibliodivs.
    -
  • -

    Mauritz Jeanson: pi.xsl

    Added missing @role="tcg".
    -
  • -

    Mauritz Jeanson: chunk-common.xsl; titlepage.xsl

    Refactored legalnotice/revhistory chunking, so that the use.id.as.filename 
    -parameter as well as the dbhtml_filename PI are taken into account. A new named
    -template in titlepage.xsl is used to compute the filename.
    -
  • -

    Mauritz Jeanson: chunk-common.xsl; titlepage.xsl

    An update to the fix for bug #1790495 (r7433):
    -The "ln-" prefix is output only when the legalnotice doesn't have an
    -@id/@xml:id, in which case the stylesheets generate an ID value, 
    -resulting in a filename like "ln-7e0fwgj.html". This is useful because 
    -without the prefix, you wouldn't know that the file contained a legalnotice. 
    -The same logic is also applied to revhistory, using an "rh-" prefix.
    -
  • -

    Mauritz Jeanson: autoidx.xsl

    Removed the [&scope;] predicate from the target variable in the template with name="reference".
    -This filter was the cause of missing index backlinks when @zone and @type were used on indexterms,
    -with index.on.type=1. Closes bug #1680836.
    -
  • -

    Mauritz Jeanson: titlepage.xsl

    Added 'ln-' prefix to the name of the legalnotice chunk, in order to match the 
    -<link href"..."> that is output by make.legalnotice.head.links (chunk-common.xsl).
    -Modified the href attribute on the legalnotice link.
    -Closes bug #1790495.
    -
-
- -

Manpages

- -

The following changes have been made to the - manpages code - since the 1.73.2 release.

-
  • -

    Michael(tm) Smith: other.xsl

    slightly adjusted spacing around admonition markers
    -
  • -

    Michael(tm) Smith: refentry.xsl; utility.xsl

    make sure refsect3 titles are preceded by a line of space, and
    -make the indenting of their child content less severe
    -
  • -

    Michael(tm) Smith: block.xsl

    only indent verbatim environments in TTY output, not in non-TTY/PS
    -
  • -

    Michael(tm) Smith: block.xsl

    made another adjustment to correct vertical alignment of admonition marker
    -
  • -

    Michael(tm) Smith: block.xsl; other.xsl

    Adjusted/corrected alignment of adominition marker in PS/non-TTY output.
    -
  • -

    Michael(tm) Smith: endnotes.xsl

    For PS/non-TTY output, display footnote/endnote numbers in
    -superscript.
    -
  • -

    Michael(tm) Smith: table.xsl; synop.xsl; utility.xsl

    Changed handling of hanging indents for cmdsynopsis, funcsynopsis,
    -and synopfragment such that they now look correct in non-TTY/PS
    -output. We now use the groff \w escape to hang by the actual width
    --- in the current font -- of the command, funcdef, or
    -synopfragment references number (as opposed to hanging by the
    -number of characters). This rendering in TTY output remains the
    -same, since the width in monospaced TTY output is the same as the
    -number of characters.
    -
    -Also, created new synopsis-block-start and synopsis-block-end
    -templates to use for cmdsynopsis and funcsynopsis instead of the
    -corresponding verbatim-* templates.
    -
    -Along with those changes, also corrected a problem that caused the
    -content of synopfragment to be dropped, and made a
    -vertical-spacing change to adjust spacing around table titles and
    -among sibling synopfragment instances.
    -
  • -

    Michael(tm) Smith: other.xsl

    use common l10.language.name template to retrieve English-language name
    -
  • -

    Michael(tm) Smith: synop.xsl; inline.xsl

    added comment in code explaining why we don't put filename output
    -in italic (despite the fact that man guidelines say we should)
    -
  • -

    Michael(tm) Smith: inline.xsl

    put filename output in monospace instead of italic
    -
  • -

    Michael(tm) Smith: synop.xsl

    put cmdsynopsis in monospace
    -
  • -

    Michael(tm) Smith: inline.xsl

    removed template match for literal. template matches for monospace
    -inlines are all imported from the HTML stylesheet
    -
  • -

    Michael(tm) Smith: block.xsl

    don't indent verbatim environments that are descendants of
    -refsynopsisdiv, not put backgrounds behind them
    -
  • -

    Michael(tm) Smith: inline.xsl

    set output of the literal element in monospace. this causes all
    -inline monospace instances in the git man pages to be set in
    -monospace (since DocBook XML source for git docs is generated with
    -asciidoc and asciidoc consistently outputs only <literal> for
    -inline monospace (not <command> or <code> or anything else).
    -Of course this only affects non-TTY output...
    -
  • -

    Michael(tm) Smith: utility.xsl

    Added inline.monoseq named template.
    -
  • -

    Michael(tm) Smith: utility.xsl

    don't bother using a custom register to store the previous
    -font-family value when setting blocks of text in code font; just
    -use \F[] .fam with no arg to switch back
    -
  • -

    Michael(tm) Smith: endnotes.xsl

    put links in blue in PS output (note that this matches how groff
    -renders content marked up with the .URL macro)
    -
  • -

    Michael(tm) Smith: endnotes.xsl; param.xweb; param.ent

    removed man.links.are.underlined and added man.font.links. Also,
    -changed the default font formatting for links to bold.
    -
  • -

    Michael(tm) Smith: endnotes.xsl; param.xweb; param.ent

    Added new param man.base.url.for.relative.links .. specifies a
    -base URL for relative links (for ulink, @xlink:href, imagedata,
    -audiodata, videodata) shown in the generated NOTES section of
    -man-page output. The value of man.base.url.for.relative.links is
    -prepended to any relative URI that is a value of ulink url,
    -xlink:href, or fileref attribute.
    -
    -If you use relative URIs in link sources in your DocBook refentry
    -source, and you leave man.base.url.for.relative.links unset, the
    -relative links will appear "as is" in the NOTES section of any
    -man-page output generated from your source. That's probably not
    -what you want, because such relative links are only usable in the
    -context of HTML output. So, to make the links meaningful and
    -usable in the context of man-page output, set a value for
    -man.base.url.for.relative.links that points
    -to the online version of HTML output generated from your DocBook
    -refentry source. For example:
    -
    -  <xsl:param name="man.base.url.for.relative.links"
    -  >http://www.kernel.org/pub/software/scm/git/docs/</xsl:param>
    -
  • -

    Michael(tm) Smith: info.xsl

    If a source refentry contains a Documentation or DOCUMENTATION
    -section, don't report it as having missing AUTHOR information.
    -Also, if missing a contrib/personblurb for a person or org, report
    -pointers to http://docbook.sf.net/el/personblurb and to
    -http://docbook.sf.net/el/contrib
    -
  • -

    Michael(tm) Smith: info.xsl

    If we encounter an author|editor|othercredit instance that lacks a
    -personblurb or contrib, report it to the user (because that means
    -we have no information about that author|editor|othercredit to
    -display in the generated AUTHOR|AUTHORS section...)
    -
  • -

    Michael(tm) Smith: info.xsl; docbook.xsl; other.xsl

    if we can't find any usable author data, emit a warning and insert
    -a fixme in the output
    -
  • -

    Michael(tm) Smith: info.xsl

    fixed bug in indenting of output for contrib instances in AUTHORS
    -section. Thanks to Daniel Leidert and the fglrx docs for exposing
    -the bug.
    -
  • -

    Michael(tm) Smith: block.xsl

    for a para or simpara that is the first child of a callout,
    -suppress the .sp or .PP that would normally be output (because in
    -those cases, the output goes into a table cell, and the .sp or .PP
    -markup causes a spurious linebreak before it when displayed
    -
  • -

    Michael(tm) Smith: lists.xsl

    Added support for rendering co callouts and calloutlist instances.
    -So you can now use simple callouts -- marking up programlisting
    -and such with co instances -- and have the callouts displayed in
    -man-page output. ("simple callouts" means using co@id and
    -callout@arearefs pointing to co@id instances; in man/roff output,
    -we can't/don't support markup that uses areaset and area)
    -
  • -

    Michael(tm) Smith: block.xsl

    only put a line of space after a verbatim if it's followed by a
    -text node or a paragraph
    -
  • -

    Michael(tm) Smith: utility.xsl

    put verbatim environments in slightly smaller font in non-TTY
    -output
    -
  • -

    Michael(tm) Smith: lists.xsl

    minor whitespace-only reformatting of lists.xsl source
    -
  • -

    Michael(tm) Smith: lists.xsl

    Made refinements/fixes to output of orderedlist and itemizedlist
    --- in part, to get mysql man pages to display correctly. This
    -change causes a "\c" continuation marker to be added between
    -listitem markers and contents (to ensure that the content remains
    -on the same line as the marker when displayed)
    -
  • -

    Michael(tm) Smith: block.xsl

    put a line of vertical space after all verbatim output that has
    -sibling content following it (not just if that sibling content is
    -a text node)
    -
  • -

    Michael(tm) Smith: block.xsl

    refined spacing around titles for admonitions
    -
  • -

    Michael(tm) Smith: block.xsl; other.xsl

    Deal with case of verbatim environments that have a linebreak
    -after the opening tag. Assumption is that users generally don't
    -want that linebreak to appear in output, so we do some groff
    -hackery to mess with vertical spacing and close the space.
    -
  • -

    Michael(tm) Smith: inline.xsl

    indexterm instances now produce groff comments like this:
    -
    -  .\" primary: secondary: tertiary
    -
    -remark instances, if non-empty, now produce groff comments
    -
  • -

    Michael(tm) Smith: charmap.groff.xsl; other.xsl

    convert no-break space character to groff "\ \&" (instead of just
    -"\ "). the reason is that if a space occurs at the end of a line,
    -our processing causes it to be eaten. a real-world case of this is
    -the mysql(1) man page. appending the "\&" prevents that
    -
  • -

    Michael(tm) Smith: block.xsl

    output "sp" before simpara output, not after it (outputting it
    -after results in undesirable whitespace in particular cases; for
    -example, in the hg/mercurial docs
    -
  • -

    Michael(tm) Smith: table.xsl; synop.xsl; utility.xsl

    renamed from title-preamble to pinch.together and replaced "sp -1"
    -between synopsis fragments with call to pinch.together instead
    -
  • -

    Michael(tm) Smith: table.xsl

    use title-preamble template for table titles (instead of "sp -1"
    -hack), and "sp 1" after all tables (instead of just "sp"
    -
  • -

    Michael(tm) Smith: utility.xsl

    created title-preamble template for suppressing line spacing after
    -headings
    -
  • -

    Michael(tm) Smith: info.xsl

    further refinement of indenting in AUTHORS section
    -
  • -

    Michael(tm) Smith: block.xsl; other.xsl

    refined handling of admonitions
    -
  • -

    Michael(tm) Smith: lists.xsl

    Use RS/RE in another place where we had IP ""
    -
  • -

    Michael(tm) Smith: info.xsl

    Replace (ab)use of IP with "sp -1" in AUTHORS section with RS/RE
    -instead.
    -
  • -

    Michael(tm) Smith: table.xsl; synop.xsl; info.xsl

    changed all instances of ".sp -1n" to ".sp -1"
    -
  • -

    Michael(tm) Smith: other.xsl

    add extra line before SH heads only in non-TTY output
    -
  • -

    Michael(tm) Smith: block.xsl

    Reworked output for admonitions (caution, important, note, tip,
    -warning). In TTY output, admonitions now get indented. In non-TTY
    -output, a colored marker (yellow) is displayed next to them.
    -
  • -

    Michael(tm) Smith: other.xsl

    Added BM/EM macros for putting a colored marker in margin next to
    -a block of text.
    -
  • -

    Michael(tm) Smith: utility.xsl

    created make.bold.title template by moving title-bolding part out
    -from nested-section-title template. This allows the bolding to
    -also be used by the template for formatting admonitions
    -
  • -

    Michael(tm) Smith: info.xsl

    put .br before copyright contents to prevent them from getting run in
    -
  • -

    Michael(tm) Smith: refentry.xsl; other.xsl; utility.xsl

    made point size of output for Refsect2 and Refsect3 heads bigger
    -
  • -

    Michael(tm) Smith: other.xsl

    put slightly more space between SH head and underline in non-TTY
    -output
    -
  • -

    Michael(tm) Smith: param.xweb; param.ent; other.xsl

    Added the man.charmap.subset.profile.english parameter and refined
    -the handling of charmap subsets to differentiate between English
    -and non-English source.
    -
    -This way charmap subsets are now handled is this:
    -
    -If the value of the man.charmap.use.subset parameter is non-zero,
    -and your DocBook source is not written in English (that is, if its
    -lang or xml:lang attribute has a value other than en), then the
    -character-map subset specified by the man.charmap.subset.profile
    -parameter is used instead of the full roff character map.
    -
    -Otherwise, if the lang or xml:lang attribute on the root element
    -in your DocBook source or on the first refentry element in your
    -source has the value en or if it has no lang or xml:lang
    -attribute, then the character-map subset specified by the
    -man.charmap.subset.profile.english parameter is used instead of
    -man.charmap.subset.profile.
    -
    -The difference between the two subsets is that
    -man.charmap.subset.profile provides mappings for characters in
    -Western European languages that are not part of the Roman
    -(English) alphabet (ASCII character set).
    -
  • -

    Michael(tm) Smith: other.xsl

    Various updates, mainly related to uppercasing SH titles:
    -
    -  - added a "Language: " metadata line to the top comment area of
    -    output man pages, to indicate the language the page is in
    -
    -  - added a "toupper" macro of doing locale-aware uppercasing of
    -    SH titles and cross-references to SH titles; the mechanism
    -    relies on the uppercase.alpha and lowercase.alpha DocBook
    -    gentext keys to do locale-aware uppercasing based on the
    -    language the page is written in
    -
    -  - added a "string.shuffle" template, which provides a library
    -    function for "shuffling" two strings together into a single
    -    string; it takes the first character for the first string, the
    -    first character from second string, etc. The only current use
    -    for it is to generate the argument for the groff tr request
    -    that does string uppercasing.
    -
    -  - added make.tr.uppercase.arg and make.tr.normalcase.arg named
    -    templates for use in generating groff code for uppercasing and
    -    "normal"-casing SH titles
    -
    -  - made the BB/BE "background drawing" macros have effect only in
    -    non-TTY output
    -
    -  - output a few comments in the top part of source
    -
  • -

    Michael(tm) Smith: utility.xsl

    removed some leftover kruft
    -
  • -

    Michael(tm) Smith: refentry.xsl

    To create the name(s) for each man page, we now replace any spaces
    -in the refname(s) with underscores. This ensures that tools like
    -lexgrog(1) will be able to parse the name (lexgrog won't parse
    -names that contain spaces).
    -
  • -

    Michael(tm) Smith: docbook.xsl

    Put a comment into source of man page to indicate where the main
    -content starts. (We now have a few of macro definitions at the
    -start of the source, so putting this comment in helps those that
    -might be viewing the source.)
    -
  • -

    Michael(tm) Smith: refentry.xsl

    refined mechanism for generating SH titles
    -
  • -

    Michael(tm) Smith: charmap.groff.xsl

    Added zcaron, Zcaron, scaron, and Scaron to the groff character map.
    -This means that generated Finnish man pages will no longer contain
    -any raw accented characters -- they'll instead by marked up with
    -groff escapes.
    -
  • -

    Michael(tm) Smith: other.xsl; utility.xsl

    corrected a regression I introduced about a year ago that caused
    -dots to be output just as "\." -- instead needs to be "\&." (which
    -is what it will be now, after this change)
    -
  • -

    Michael(tm) Smith: refentry.xsl

    Changed backend handling for generating titles for SH sections and
    -for cross-references to those sections. This should have no effect
    -on TTY output (behavior should remain the same hopefully) but
    -results in titles in normal case (instead of uppercase) in PS
    -output.
    -
  • -

    Michael(tm) Smith: info.xsl

    use make.subheading template to make subheadings for AUTHORS and
    -COPYRIGHT sections (instead of harcoding roff markup)
    -
  • -

    Michael(tm) Smith: block.xsl

    put code font around programlisting etc.
    -
  • -

    Michael(tm) Smith: synop.xsl; docbook.xsl

    embed custom macro definitions in man pages, plus wrap synopsis in
    -code font
    -
  • -

    Michael(tm) Smith: endnotes.xsl

    use the make.subheading template to generated SH subheading for
    -endnotes section.
    -
  • -

    Michael(tm) Smith: lists.xsl

    Added some templates for generating if-then-else conditional
    -markup in groff, so let's use those instead of hard-coding it in
    -multiple places...
    -
  • -

    Michael(tm) Smith: other.xsl; utility.xsl

    Initial checkin of some changes related to making PS/PDF output
    -from "man -l -Tps" look better. The current changes:
    -
    -  - render synopsis and verbatim sections in a monospace/code font
    -
    -  - put a light-grey background behind all programlisting, screen,
    -    and literallayout instances
    -
    -  - prevent SH heads in PS output from being rendered in uppercase
    -    (as they are in console output)
    -
    -  - also display xrefs to SH heads in PS output in normal case
    -    (instead of uppercase)
    -
    -  - draw a line under SH heads in PS output
    -
    -The changes made to the code to support the above features were:
    -
    -  - added some embedded/custom macros: one for conditionally
    -    upper-casing SH x-refs, one for redefining the SH macro
    -    itself, with some conditional handling for PS output, and
    -    finally a macro for putting a background/screen (filled box)
    -    around a block of text (e.g., a program listing) in PS output
    -
    -  - added utility templates for wrapping blocks of text in code
    -    font; also templates for inline code font
    -
  • -

    Robert Stayton: refentry.xsl

    refpurpose nodes now get apply-templates instead of just normalize-space().
    -
  • -

    Michael(tm) Smith: lists.xsl

    Fixed alignment of first lined of text for each listitem in
    -orderedlist output for TTY. Existing code seemed to have been
    -causing an extra undesirable space to appear.
    -
  • -

    Michael(tm) Smith: lists.xsl

    Wrapped some roff conditionals around roff markup for orderedlist
    -and itemizedlist output, so that the lists look acceptable in PS
    -output as well as TTY.
    -
  • -

    Michael(tm) Smith: pi.xsl; synop.xsl; param.xweb; param.ent

    Added the man.funcsynopsis.style parameter. Has the same effect in
    -manpages output as the funcsynopsis.style parameter has in HTML
    -output -- except that its default value is 'ansi' instead of 'kr'.
    -
  • -

    Michael(tm) Smith: synop.xsl

    Reworked handling of K&R funcprototype output. It no longer relies
    -on the HTML kr-tabular templates, but instead just does direct
    -transformation to roff. For K&R output, it displays the paramdef
    -output in an indented list following the prototype.
    -
  • -

    Michael(tm) Smith: synop.xsl

    Properly integrated handling for K&R output into manpages
    -stylesheet. The choice between K&R output and ANSI output is
    -currently controlled through use of the (HTML) funcsynopsis.style
    -parameter. Note that because the mechanism does currently rely on
    -funcsynopsis.style, the default in manpages output is now K&R
    -(because that's the default of that param). But I suppose I ought
    -to create a man.funcsynopsis.style and make the default for that
    -ANSI (to preserve the existing default behavior).
    -
  • -

    Michael(tm) Smith: docbook.xsl

    added manpages/pi.xsl file
    -
  • -

    Michael(tm) Smith: .cvsignore; pi.xsl

    Added "dbman funcsynopsis-style" PI and incorporated it into the
    -doc build.
    -
  • -

    Michael(tm) Smith: refentry.xsl

    Fixed regression that caused an unescaped dash to be output
    -between refname and refpurpose content. Closes bug #1894244.
    -Thanks to Daniel Leidert.
    -
  • -

    Michael(tm) Smith: other.xsl

    Fixed problem with dots being escaped in filenames of generated
    -man files. Closes #1827195. Thanks to Daniel Leidert.
    -
  • -

    Michael(tm) Smith: inline.xsl

    Added support for processing structfield (was appearing in roff
    -output surrounded by HTML <em> tags; fixed so that it gets roff
    -ital markup). Closes bug #1858329.  Thanks to Sam Varshavchik.
    -
-
- -

Epub

- -

The following changes have been made to the - epub code - since the 1.73.2 release.

-
  • Keith Fahlgren: bin/spec/README; bin/spec/epub_realbook_spec.rb

    'Realbook' spec now passes
  • Keith Fahlgren: bin/dbtoepub; README; bin/spec/README; bin/lib/docbook.rb; bin/spec/epub_r⋯

    Very primitive Windows support for dbtoepub reference implementation; README for running tests and for the .epub target in general; shorter realbook test document (still fails for now)
  • Keith Fahlgren: bin/dbtoepub; bin/spec/epub_regressions_spec.rb; bin/lib/docbook.rb; bin/s⋯

    Changes to OPF spine to not duplicate idrefs for documents with parts not at the root; regression specs for same
  • Keith Fahlgren: docbook.xsl

    Fixing linking to cover @id, distinct from other needs of cover-image-id (again, thanks to Martin Goerner)
  • Keith Fahlgren: docbook.xsl

    Updating the title of the toc element in the guide to be more explicit (thanks to Martin Goerner)
  • -

    Keith Fahlgren: bin/spec/examples/amasque_exploded/content.opf; bin/spec/examples/amasque_⋯

    Initial checkin/merge of epub target from work provided by Paul Norton of Adobe
    -and Keith Fahlgren of O'Reilly.
    -
  • -

    Keith Fahlgren: docbook.xsl

    == General epub test support
    -
    -$ spec -O ~/.spec.opts spec/epub_spec.rb 
    -
    -DocBook::Epub
    -- should be able to be created
    -- should fail on a nonexistent file
    -- should be able to render to a file
    -- should create a file after rendering
    -- should have the correct mimetype after rendering
    -- should be valid .epub after rendering an article
    -- should be valid .epub after rendering an article without sections
    -- should be valid .epub after rendering a book
    -- should be valid .epub after rendering a book even if it has one graphic
    -- should be valid .epub after rendering a book even if it has many graphics
    -- should be valid .epub after rendering a book even if it has many duplicated graphics
    -- should report an empty file as invalid
    -- should confirm that a valid .epub file is valid
    -- should not include PDFs in rendered epub files as valid image inclusions
    -- should include a TOC link in rendered epub files for <book>s
    -
    -Finished in 20.608395 seconds
    -
    -15 examples, 0 failures
    -
    -
    -== Verbose epub test coverage against _all_ of the testdocs 
    -
    -Fails on only (errors truncated):
    -1)
    -'DocBook::Epub should be able to render a valid .epub for the test document /Users/keith/work/docbook-dev/trunk/xsl/epub/bin/spec/testdocs/calloutlist.003.xml [30]' FAILED
    -'DocBook::Epub should be able to render a valid .epub for the test document /Users/keith/work/docbook-dev/trunk/xsl/epub/bin/spec/testdocs/cmdsynopsis.001.xml [35]' FAILED
    -....
    -
    -Finished in 629.89194 seconds
    -
    -224 examples, 15 failures
    -
    -224 examples, 15 failures yields 6% failure rate
    -
-
- -

HTMLHelp

- -

The following changes have been made to the - htmlhelp code - since the 1.73.2 release.

-
  • -

    Mauritz Jeanson: htmlhelp-common.xsl

    Added <xsl:with-param name="quiet" select="$chunk.quietly"/> to calls to
    -the write.chunk, write.chunk.with.doctype, and write.text.chunk templates.
    -This makes chunk.quietly=1 suppress chunk filename messages also for help 
    -support files (which seems to be what one would expect). See bug #1648360.
    -
-
- -

Eclipse

- -

The following changes have been made to the - eclipse code - since the 1.73.2 release.

-
  • -

    David Cramer: eclipse.xsl

    Use sortas attributes (if they exist) when sorting indexterms
    -
  • -

    David Cramer: eclipse.xsl

    Added support for indexterm/see in eclipse index.xml
    -
  • -

    Mauritz Jeanson: eclipse.xsl

    Added <xsl:with-param name="quiet" select="$chunk.quietly"/>
    -to helpidx template.
    -
  • -

    David Cramer: eclipse.xsl

    Generate index.xml file and add related goo to plugin.xml file. Does not yet support see and seealso.
    -
  • -

    Mauritz Jeanson: eclipse.xsl

    Added <xsl:with-param name="quiet" select="$chunk.quietly"/> to calls to
    -the write.chunk, write.chunk.with.doctype, and write.text.chunk templates.
    -This makes chunk.quietly=1 suppress chunk filename messages also for help 
    -support files (which seems to be what one would expect). See bug #1648360.
    -
-
- -

JavaHelp

- -

The following changes have been made to the - javahelp code - since the 1.73.2 release.

-
  • -

    Mauritz Jeanson: javahelp.xsl

    Added <xsl:with-param name="quiet" select="$chunk.quietly"/> to calls to
    -the write.chunk, write.chunk.with.doctype, and write.text.chunk templates.
    -This makes chunk.quietly=1 suppress chunk filename messages also for help 
    -support files (which seems to be what one would expect). See bug #1648360.
    -
-
- -

Roundtrip

- -

The following changes have been made to the - roundtrip code - since the 1.73.2 release.

-
  • -

    Steve Ball: blocks2dbk.xsl; wordml2normalise.xsl

    fix table/cell borders for wordml, fix formal figure, add emphasis-strong
    -
  • -

    Mauritz Jeanson: supported.xml

    Changed @cols to 5.
    -
  • -

    Steve Ball: blocks2dbk.xsl; blocks2dbk.dtd; template.xml

    added pubdate, fixed metadata handling in biblioentry
    -
  • -

    Steve Ball: supported.xml

    Added support for edition.
    -
  • -

    Steve Ball: docbook-pages.xsl; wordml-blocks.xsl; docbook.xsl; wordml.xsl; pages-normalise⋯

    Removed stylesheets for old, deprecated conversion method.
    -
  • -

    Steve Ball: specifications.xml; dbk2ooo.xsl; blocks2dbk.xsl; dbk2pages.xsl; blocks2dbk.dtd⋯

    Added support for Open Office, added edition element, improved list and table support in Word and Pages
    -
  • -

    Steve Ball: normalise-common.xsl; blocks2dbk.xsl; dbk2pages.xsl; template-pages.xml; templ⋯

    Fixed bug in WordML table handling, improved table handling for Pages 08, synchronised WordML and Pages templates.
    -
  • -

    Steve Ball: normalise-common.xsl; blocks2dbk.xsl; wordml2normalise.xsl; dbk2wp.xsl

    fix caption, attributes
    -
  • -

    Steve Ball: specifications.xml; blocks2dbk.xsl; wordml2normalise.xsl; blocks2dbk.dtd; temp⋯

    Fixes to table and list handling
    -
  • -

    Steve Ball: blocks2dbk.xsl

    added support for explicit emphasis character styles
    -
  • -

    Steve Ball: wordml2normalise.xsl

    added support for customisation in image handling
    -
  • -

    Steve Ball: blocks2dbk.xsl

    Added inlinemediaobject support for metadata.
    -
  • -

    Steve Ball: normalise-common.xsl; blocks2dbk.xsl; template.xml; dbk2wordml.xsl; dbk2wp.xsl

    Added support file. Added style locking. Conversion bug fixes.
    -
-
- -

Slides

- -

The following changes have been made to the - slides code - since the 1.73.2 release.

-
  • -

    Michael(tm) Smith: fo/Makefile; html/Makefile

    Added checks and hacks to various makefiles to enable building
    -under Cygwin. This stuff is ugly and maybe not worth the mess and
    -trouble, but does seem to work as expected and not break anything
    -else.
    -
  • -

    Jirka Kosek: html/plain.xsl

    Added support for showing foil number
    -
-
- -

Website

- -

The following changes have been made to the - website code - since the 1.73.2 release.

-
  • -

    Michael(tm) Smith: extensions/saxon64/.classes/.gitignore; extensions/xalan2/.classes/com/⋯

    renamed a bunch more .cvsignore files to .gitignore (to facilitate use of git-svn)
    -
-
- -

Params

- -

The following changes have been made to the - params code - since the 1.73.2 release.

-
  • Keith Fahlgren: epub.autolabel.xml

    New parameter for epub, epub.autolabel
  • -

    Mauritz Jeanson: table.frame.border.color.xml; table.cell.padding.xml; table.cell.border.t⋯

    Added missing refpurposes and descriptions.
    -
  • -

    Keith Fahlgren: ade.extensions.xml

    Extensions to support Adobe Digital Editions extensions in .epub output.
    -
  • -

    Mauritz Jeanson: fop.extensions.xml; fop1.extensions.xml

    Clarified that fop1.extensions is for FOP 0.90 and later. Version 1 is not here yet...
    -
  • -

    Michael(tm) Smith: man.links.are.underlined.xml; man.endnotes.list.enabled.xml; man.font.l⋯

    removed man.links.are.underlined and added man.font.links. Also,
    -changed the default font formatting for links to bold.
    -
  • -

    Michael(tm) Smith: man.base.url.for.relative.links.xml

    Added new param man.base.url.for.relative.links .. specifies a
    -base URL for relative links (for ulink, @xlink:href, imagedata,
    -audiodata, videodata) shown in the generated NOTES section of
    -man-page output. The value of man.base.url.for.relative.links is
    -prepended to any relative URI that is a value of ulink url,
    -xlink:href, or fileref attribute.
    -
    -If you use relative URIs in link sources in your DocBook refentry
    -source, and you leave man.base.url.for.relative.links unset, the
    -relative links will appear "as is" in the NOTES section of any
    -man-page output generated from your source. That's probably not
    -what you want, because such relative links are only usable in the
    -context of HTML output. So, to make the links meaningful and
    -usable in the context of man-page output, set a value for
    -man.base.url.for.relative.links that points
    -to the online version of HTML output generated from your DocBook
    -refentry source. For example:
    -
    -  <xsl:param name="man.base.url.for.relative.links"
    -  >http://www.kernel.org/pub/software/scm/git/docs/</xsl:param>
    -
  • -

    Michael(tm) Smith: man.string.subst.map.xml

    squeeze .sp\n.sp into a single .sp (to prevent a extra, spurious
    -line of whitespace from being inserted after programlisting etc.
    -in certain cases)
    -
  • -

    Michael(tm) Smith: refentry.manual.fallback.profile.xml; refentry.source.fallback.profile.⋯

    don't use refmiscinfo@class=date value as fallback for refentry
    -"source" or "manual" metadata fields
    -
  • -

    Michael(tm) Smith: man.charmap.subset.profile.xml; man.charmap.enabled.xml; man.charmap.su⋯

    made some further doc tweaks related to the
    -man.charmap.subset.profile.english param
    -
  • -

    Michael(tm) Smith: man.charmap.subset.profile.xml; man.charmap.enabled.xml; man.charmap.su⋯

    Added the man.charmap.subset.profile.english parameter and refined
    -the handling of charmap subsets to differentiate between English
    -and non-English source.
    -
    -This way charmap subsets are now handled is this:
    -
    -If the value of the man.charmap.use.subset parameter is non-zero,
    -and your DocBook source is not written in English (that is, if its
    -lang or xml:lang attribute has a value other than en), then the
    -character-map subset specified by the man.charmap.subset.profile
    -parameter is used instead of the full roff character map.
    -
    -Otherwise, if the lang or xml:lang attribute on the root element
    -in your DocBook source or on the first refentry element in your
    -source has the value en or if it has no lang or xml:lang
    -attribute, then the character-map subset specified by the
    -man.charmap.subset.profile.english parameter is used instead of
    -man.charmap.subset.profile.
    -
    -The difference between the two subsets is that
    -man.charmap.subset.profile provides mappings for characters in
    -Western European languages that are not part of the Roman
    -(English) alphabet (ASCII character set).
    -
  • -

    Michael(tm) Smith: man.charmap.subset.profile.xml

    Added to default charmap used by manpages:
    -
    -  - the "letters" part of the 'C1 Controls And Latin-1 Supplement
    -    (Latin-1 Supplement)' Unicode block
    -  - Latin Extended-A block (but not all of the characters from
    -    that block have mappings in groff, so some of them are still
    -    passed through as-is)
    -
    -The effects of this change are that in man pages generated for
    -most Western European languages and for Finnish, all characters
    -not part of the Roman alphabet are (e.g., "accented" characters)
    -are converted to groff escapes.
    -
    -Previously, by default we passed through those characters as is
    -(and users needed to use the full charmap if they wanted to have
    -those characters converted).
    -
    -As a result of this change, man pages generated for Western
    -European languages will be viewable in some environments in which
    -they are not viewable if the "raw" non-Roman characters are in them.
    -
  • -

    Mauritz Jeanson: generate.legalnotice.link.xml; generate.revhistory.link.xml

    Added information on how the filename is computed.
    -
  • -

    Mauritz Jeanson: default.table.width.xml

    Clarified PI usage.
    -
  • -

    Michael(tm) Smith: man.funcsynopsis.style.xml

    Added the man.funcsynopsis.style parameter. Has the same effect in
    -manpages output as the funcsynopsis.style parameter has in HTML
    -output -- except that its default value is 'ansi' instead of 'kr'.
    -
  • -

    Michael(tm) Smith: funcsynopsis.tabular.threshold.xml

    Removed the funcsynopsis.tabular.threshold param. It's no longer
    -being used in the code and hasn't been since mid 2006.
    -
  • -

    Mauritz Jeanson: table.properties.xml

    Set keep-together.within-column to "auto". This seems to be the most sensible
    -default value for tables.
    -
  • -

    Mauritz Jeanson: informal.object.properties.xml; admon.graphics.extension.xml; informalequ⋯

    Several small documentation fixes.
    -
  • -

    Mauritz Jeanson: manifest.in.base.dir.xml

    Wording fixes.
    -
  • -

    Mauritz Jeanson: header.content.properties.xml; footer.content.properties.xml

    Added refpurpose.
    -
  • -

    Mauritz Jeanson: ulink.footnotes.xml; ulink.show.xml

    Updated for DocBook 5.
    -
  • -

    Mauritz Jeanson: index.method.xml; glossterm.auto.link.xml

    Spelling and wording fixes.
    -
  • -

    Mauritz Jeanson: callout.graphics.extension.xml

    Clarifed available graphics formats and extensions.
    -
  • -

    Mauritz Jeanson: footnote.sep.leader.properties.xml

    Corrected refpurpose.
    -
  • -

    Jirka Kosek: footnote.properties.xml

    Added more properties which make it possible to render correctly footnotes placed inside verbatim elements.
    -
  • -

    Mauritz Jeanson: img.src.path.xml

    img.src.path works with inlinegraphic too.
    -
  • -

    Mauritz Jeanson: saxon.character.representation.xml

    Added TCG link.
    -
  • -

    Mauritz Jeanson: img.src.path.xml

    Updated description of img.src.path. Bug #1785224 revealed that 
    -there was a risk of misunderstanding how it works.
    -
-
- -

Profiling

- -

The following changes have been made to the - profiling code - since the 1.73.2 release.

-
  • -

    Jirka Kosek: xsl2profile.xsl

    Added new rules to profile all content generated by HTML Help (including alias files)
    -
  • -

    Robert Stayton: profile-mode.xsl

    use mode="profile" instead of xsl:copy-of for attributes so
    -they can be more easily customized.
    -
-
- - -

Tools

- -

The following changes have been made to the - tools code - since the 1.73.2 release.

-
  • -

    Michael(tm) Smith: make/Makefile.DocBook

    various changes and additions to support making with asciidoc as
    -an input format
    -
  • -

    Michael(tm) Smith: make/Makefile.DocBook

    make dblatex the default PDF maker for the example makefile
    -
  • -

    Michael(tm) Smith: xsl/build/html2roff.xsl

    Reworked handling of K&R funcprototype output. It no longer relies
    -on the HTML kr-tabular templates, but instead just does direct
    -transformation to roff. For K&R output, it displays the paramdef
    -output in an indented list following the prototype.
    -
  • -

    Mauritz Jeanson: xsl/build/make-xsl-params.xsl

    Made attribute-sets members of the param list. This enables links to attribute-sets in the
    -reference documentation.
    -
  • -

    Michael(tm) Smith: xsl/build/html2roff.xsl

    use .BI handling in K&R funsynopsis output for manpages, just as
    -we do already of ANSI output
    -
  • -

    Michael(tm) Smith: xsl/build/html2roff.xsl

    Implemented initial support for handling tabular K&R output of
    -funcprototype in manpages output. Accomplished by adding more
    -templates to the intermediate HTML-to-roff stylesheet that the
    -build uses to create the manpages/html-synop.xsl stylesheet.
    -
  • -

    Michael(tm) Smith: xsl/build/doc-link-docbook.xsl

    Made the xsl/tools/xsl/build/doc-link-docbook.xsl stylesheet
    -import profile-docbook.xsl, so that we can do profiling of release
    -notes. Corrected some problems in the target for the release-notes
    -HTML build.
    -
-
- -

Extensions

- -

The following changes have been made to the - extensions code - since the 1.73.2 release.

-
  • Keith Fahlgren: Makefile

    Use DOCBOOK_SVN variable everywhere, please; build with PDF_MAKER
  • -

    Michael(tm) Smith: Makefile

    moved extensions build targets from master xsl/Makefile to
    -xsl/extensions/Makefile
    -
  • -

    Michael(tm) Smith: .cvsignore

    re-adding empty extensions subdir
    -
-
- -

XSL-Saxon

- -

The following changes have been made to the - xsl-saxon code - since the 1.73.2 release.

-
  • -

    Michael(tm) Smith: VERSION

    bring xsl2, xsl-saxon, and xsl-xalan VERSION files up-to-date with
    -recent change to snapshot build infrastructure
    -
  • -

    Michael(tm) Smith: nbproject/build-impl.xml; nbproject/project.properties

    Changed hard-coded file references in "clean" target to variable
    -references. Closes #1792043. Thanks to Daniel Leidert.
    -
  • -

    Michael(tm) Smith: VERSION; Makefile

    Did post-release wrap-up of xsl-saxon and xsl-xalan dirs
    -
  • -

    Michael(tm) Smith: nbproject/build-impl.xml; VERSION; Makefile; test

    More tweaks to get release-ready
    -
-
- -

XSL-Xalan

- -

The following changes have been made to the - xsl-xalan code - since the 1.73.2 release.

-
  • -

    Michael(tm) Smith: VERSION

    bring xsl2, xsl-saxon, and xsl-xalan VERSION files up-to-date with
    -recent change to snapshot build infrastructure
    -
  • -

    Michael(tm) Smith: nbproject/build-impl.xml

    Changed hard-coded file references in "clean" target to variable
    -references. Closes #1792043. Thanks to Daniel Leidert.
    -
  • -

    Michael(tm) Smith: Makefile; VERSION

    Did post-release wrap-up of xsl-saxon and xsl-xalan dirs
    -
  • -

    Michael(tm) Smith: Makefile; nbproject/build-impl.xml; VERSION

    More tweaks to get release-ready
    -
-
- -

XSL-libxslt

- -

The following changes have been made to the - xsl-libxslt code - since the 1.73.2 release.

-
  • -

    Mauritz Jeanson: python/xslt.py

    Print the result to stdout if no outfile has been given.
    -Some unnecessary semicolons removed.
    -
  • -

    Mauritz Jeanson: python/xslt.py

    Added a function that quotes parameter values (to ensure that they are interpreted as strings).
    -Replaced deprecated functions from the string module with string methods.
    -
  • -

    Michael(tm) Smith: python/README; python/README.LIBXSLT

    renamed xsl-libxslt/python/README to xsl-libxslt/python/README.LIBXSLT
    -
  • -

    Mauritz Jeanson: python/README

    Tweaked the text a little.
    -
-
- -
- -

Release Notes: 1.73.2

- -

This is solely a minor bug-fix update to the 1.73.1 release. - It fixes a packaging error in the 1.73.1 package, as well as a - bug in footnote handling in FO output.

-
- -

Release: 1.73.1

- -

This is mostly a bug-fix update to the 1.73.0 release.

- -

Gentext

- -

The following changes have been made to the - gentext code - since the 1.73.0 release.

-
  • -

    Mauritz Jeanson: locale/de.xml

    Applied patch #1766009.
    -
  • -

    Michael(tm) Smith: locale/lv.xml

    Added localization for ProductionSet.
    -
-
- -

FO

- -

The following changes have been made to the - fo code - since the 1.73.0 release.

-
  • -

    Mauritz Jeanson: table.xsl

    Modified the tgroup template so that, for tables with multiple tgroups, 
    -a width attribute is output on all corresponding fo:tables. Previously, 
    -there was a test prohibiting this (and a comment saying that outputting more
    -than one width attribute will cause an error). But this seems to be no longer 
    -relevant; it is not a problem with FOP 0.93 or XEP 4.10. Closes bug #1760559.
    -
  • -

    Mauritz Jeanson: graphics.xsl

    Replaced useless <a> elements with warning messages (textinsert extension).
    -
  • -

    Mauritz Jeanson: admon.xsl

    Enabled generation of ids (on fo:wrapper) for indexterms in admonition titles, so that page
    -references in the index can be created. Closes bug #1775086.
    -
-
- -

HTML

- -

The following changes have been made to the - html code - since the 1.73.0 release.

-
  • -

    Mauritz Jeanson: titlepage.xsl

    Added <xsl:call-template name="process.footnotes"/> to abstract template
    -so that footnotes in info/abstract are processed. Closes bug #1760907.
    -
  • -

    Michael(tm) Smith: pi.xsl; synop.xsl

    Changed handling of HTML output for the cmdsynopsis and
    -funcsynopsis elements, such that a@id instances are generated for
    -them if they are descendants of any element containing a dbcmdlist
    -or dbfunclist PI. Also, update the embedded reference docs for the
    -dbcmdlist and dbfunclist PIs to make it clear that they can be
    -used within any element for which cmdsynopsis or funcsynopsis are
    -valid children.
    -
  • -

    Michael(tm) Smith: formal.xsl

    Reverted the part of revision 6952 that caused a@id anchors to be
    -generated for output of informal objects. Thanks to Sam Steingold
    -for reporting.
    -
  • -

    Robert Stayton: glossary.xsl

    Account for a glossary with no glossdiv or glossentry children.
    -
  • -

    Mauritz Jeanson: titlepage.xsl

    Modified legalnotice template so that the base.name parameter is calculated 
    -in the same way as for revhistory chunks. Using <xsl:apply-templates 
    -mode="chunk-filename" select="."/> did not work for single-page output since
    -the template with that mode is in chunk-code.xsl.
    -
  • -

    Mauritz Jeanson: graphics.xsl

    Updated support for SVG (must be a child of imagedata in DB 5).
    -Added support for MathML in imagedata.
    -
  • -

    Mauritz Jeanson: pi.xsl

    Added documentation for the dbhh PI (used for context-sensitive HTML Help).
    -(The two templates matching 'dbhh' are still in htmlhelp-common.xsl).
    -
-
- -

Manpages

- -

The following changes have been made to the - manpages code - since the 1.73.0 release.

-
  • -

    Michael(tm) Smith: endnotes.xsl

    In manpages output, generate warnings about notesources with
    -non-para children only if the notesource is a footnote or
    -annotation. Thanks to Sam Steingold for reporting problems with
    -the existing handling.
    -
-
- -

HTMLHelp

- -

The following changes have been made to the - htmlhelp code - since the 1.73.0 release.

-
  • -

    Michael(tm) Smith: htmlhelp-common.xsl

    Added single-pass namespace-stripping support to the htmlhelp,
    -eclipse, and javahelp stylesheets.
    -
-
- -

Eclipse

- -

The following changes have been made to the - eclipse code - since the 1.73.0 release.

-
  • -

    Michael(tm) Smith: eclipse.xsl

    Added single-pass namespace-stripping support to the htmlhelp,
    -eclipse, and javahelp stylesheets.
    -
-
- -

JavaHelp

- -

The following changes have been made to the - javahelp code - since the 1.73.0 release.

-
  • -

    Michael(tm) Smith: javahelp.xsl

    Added single-pass namespace-stripping support to the htmlhelp,
    -eclipse, and javahelp stylesheets.
    -
-
- -

Roundtrip

- -

The following changes have been made to the - roundtrip code - since the 1.73.0 release.

-
  • -

    Steve Ball: blocks2dbk.xsl; blocks2dbk.dtd; pages2normalise.xsl

    Modularised blocks2dbk to allow customisation,
    -Added support for tables to pages2normalise
    -
-
- -

Params

- -

The following changes have been made to the - params code - since the 1.73.0 release.

-
  • -

    Robert Stayton: procedure.properties.xml

    procedure was inheriting keep-together from formal.object.properties, but
    -a procedure does not need to be kept together by default.
    -
  • -

    Dave Pawson: title.font.family.xml; component.label.includes.part.label.xml; table.frame.b⋯

    Regular formatting re-org.
    -
-
-
- -

Release: 1.73.0

- -

This release includes important bug fixes and adds the following -significant feature changes: -

New localizations and localization updates
-

We added two new localizations: Latvian and - Esperanto, and made updates to the Czech, Chinese - Simplified, Mongolian, Serbian, Italian, and Ukrainian - localizations.

-
ISO690 citation style for bibliography output.
-

Set the - bibliography.style parameter to - iso690 to use ISO690 style.

-
New documentation for processing instructions (PI)
-

The reference documentation that ships with the - release now includes documentation on all PIs that you can use to - control output from the stylesheets.

-
New profiling parameters for audience and wordsize
-

You can now do profiling based on the values of the - audience and - wordsize attributes.

-
Changes to man-page output
-

The manpages stylesheet now supports single-pass - profiling and single-pass DocBook 5 namespace stripping - (just as the HTML and FO stylesheets also do). Also, added - handling for mediaobject & - inlinemediaobject. (Each imagedata, - audiodata, or videodata element - within a mediaobject or inline - mediaobject is now treated as a "notesource" - and so handled in much the same way as links and - annotation/alt/footnote - are in manpages output.) And added the - man.authors.section.enabled and - man.copyright.section.enabled - parameters to enable control over whether output includes - auto-generated AUTHORS and - COPYRIGHT sections.

-
Highlighting support for C
-

The highlighting mechanism for generating - syntax-highlighted code snippets in output now supports C - code listings (along with Java, PHP, XSLT, and others).

-
Experimental docbook-xsl-update script
-

We added an experimental docbook-xsl-update - script, the purpose of which is to facilitate - easy sync-up to the latest docbook-xsl snapshot (by means - of rsync).

-

-

- -

Gentext

- -

The following changes have been made to the -gentext code -since the 1.72.0 release.

-
  • -

    Michael(tm) Smith: locale/lv.xml; Makefile

    Added Latvian localization file, from Girts Ziemelis.
    -
  • -

    Dongsheng Song: locale/zh_cn.xml

    Brought up to date with en.xml in terms of items. A few strings marked for translation.
    -
  • -

    Jirka Kosek: locale/cs.xml

    Added missing translations
    -
  • -

    Robert Stayton: locale/eo.xml

    New locale for Esperanto.
    -
  • -

    Robert Stayton: locale/mn.xml

    Update from Ganbold Tsagaankhuu.
    -
  • -

    Jirka Kosek: locale/en.xml; locale/cs.xml

    Rules for normalizing glossary entries before they are sorted can be now different for each language.
    -
  • -

    Michael(tm) Smith: locale/sr_Latn.xml; locale/sr.xml

    Committed changes from Miloš Komarčević to Serbian files.
    -
  • -

    Robert Stayton: locale/ja.xml

    Fix chapter in context xref-number-and-title
    -
  • -

    Robert Stayton: locale/it.xml

    Improved version from contributor.
    -
  • -

    Mauritz Jeanson: locale/uk.xml

    Applied patch 1592083.
    -
-
-

Common

- -

The following changes have been made to the -common code -since the 1.72.0 release.

-
  • -

    Michael(tm) Smith: labels.xsl

    Changed handling of reference auto-labeling such that reference
    -(when it appears at the component level) is now affected by the
    -label.from.part param, just as preface, chapter, and appendix.
    -
  • -

    Michael(tm) Smith: common.xsl

    Added support to the HTML stylesheets for proper processing of
    -orgname as a child of author.
    -
  • -

    Michael(tm) Smith: refentry.xsl

    Refined logging output of refentry metadata-gathering template;
    -for some cases of "missing" elements (refmiscinfo stuff, etc.),
    -the log messages now include URL to corresponding page in the
    -Definitive Guide (TDG).
    -
  • -

    Robert Stayton: titles.xsl

    Add refsection/info/title support.
    -
  • -

    Michael(tm) Smith: titles.xsl

    Added support for correct handling of xref to elements that
    -contain info/title descendants but no title children.
    -
    -This should be further refined so that it handles any *info
    -elements. And there are probably some other places where similar
    -handling for *info/title should be added.
    -
  • -

    Mauritz Jeanson: pi.xsl

    Modified <xsl:when> in datetime.format template to work
    -around Xalan bug.
    -
-
-

FO

- -

The following changes have been made to the -fo code -since the 1.72.0 release.

-
  • -

    Robert Stayton: component.xsl

    Add parameters to the page.sequence utility template.
    -
  • -

    Mauritz Jeanson: xref.xsl

    Added template for xref to area/areaset.
    -Part of fix for bug #1675513 (xref to area broken).
    -
  • -

    Michael(tm) Smith: inline.xsl

    Added template match for person element to fo stylesheet.
    -
  • -

    Robert Stayton: lists.xsl

    Added support for spacing="compact" in variablelist, per bug report #1722540.
    -
  • -

    Robert Stayton: table.xsl

    table pgwide="1" should also use pgwide.properties attribute-set.
    -
  • -

    Mauritz Jeanson: inline.xsl

    Make citations numbered if bibliography.numbered != 0.
    -
  • -

    Robert Stayton: param.xweb; param.ent

    Add new profiling parameters for audience and wordsize.
    -
  • -

    Robert Stayton: param.xweb; param.ent

    Added callout.icon.size parameter.
    -
  • -

    Robert Stayton: inline.xsl; xref.xsl

    Add support for xlink as olink.
    -
  • -

    Robert Stayton: autotoc.xsl; param.xweb; param.ent

    Add support for qanda.in.toc to fo TOC.
    -
  • -

    Robert Stayton: component.xsl

    Improved the page.sequence utility template for use with book.
    -
  • -

    Robert Stayton: division.xsl

    Refactored the big book template into smaller pieces.
    -Used the "page.sequence" utility template in
    -component.xsl to shorten the toc piece.
    -Added placeholder templates for front.cover and back.cover.
    -
  • -

    Robert Stayton: param.xweb; param.ent; sections.xsl

    Add section.container.element parameter to enable
    -pgwide spans inside sections.
    -
  • -

    Robert Stayton: param.xweb; param.ent; component.xsl

    Add component.titlepage.properties attribute-set to
    -support span="all" and other properties.
    -
  • -

    Robert Stayton: htmltbl.xsl; table.xsl

    Apply table.row.properties template to html tr rows too.
    -Add keep-with-next to table.row.properties when row is in thead.
    -
  • -

    Robert Stayton: table.xsl

    Add support for default.table.frame parameter.
    -Fix bug 1575446 rowsep last check for @morerows.
    -
  • -

    Robert Stayton: refentry.xsl

    Add support for info/title in refsections.
    -
  • -

    David Cramer: qandaset.xsl

    Make fo questions and answers behave the same way as html
    -
  • -

    Jirka Kosek: lists.xsl

    Added missing attribute set for procedure
    -
  • -

    Jirka Kosek: param.xweb; biblio.xsl; docbook.xsl; param.ent; biblio-iso690.xsl

    Added support for formatting biblioentries according to ISO690 citation style.
    -New bibliography style can be turned on by setting parameter bibliography.style to "iso690"
    -The code was provided by Jana Dvorakova
    -
  • -

    Robert Stayton: param.xweb; param.ent; pagesetup.xsl

    Add header.table.properties and footer.table.properties attribute-sets.
    -
  • -

    Robert Stayton: inline.xsl

    Add fop1.extensions for menuchoice arrow handling exception.
    -
-
-

HTML

- -

The following changes have been made to the - html code - since the 1.72.0 release.

-
  • -

    Mauritz Jeanson: param.xweb; param.ent

    Moved declaration and documentation of javahelp.encoding from javahelp.xsl to the
    -regular "parameter machinery".
    -
  • -

    Michael(tm) Smith: admon.xsl

    Changed handling of titles for note, warning, caution, important,
    -tip admonitions: We now output and HTML h3 head only if
    -admon.textlabel is non-zero or if the admonition actually contains
    -a title; otherwise, we don't output an h3 head at all.
    -(Previously, we were outputting an empty h3 if the admon.textlabel
    -was zero and if the admonition had no title.)
    -
  • -

    Mauritz Jeanson: xref.xsl

    Added template for xref to area/areaset.
    -Part of fix for bug #1675513 (xref to area broken).
    -
  • -

    Mauritz Jeanson: titlepage.xsl; component.xsl; division.xsl; sections.xsl

    Added fixes to avoid duplicate ids when generate.id.attributes = 1.
    -This (hopefully) closes bug #1671052.
    -
  • -

    Michael(tm) Smith: formal.xsl; pi.xsl

    Made the dbfunclist PI work as intended. Also added doc for
    -dbfunclist and dbcmdlist PIs.
    -
  • -

    Michael(tm) Smith: pi.xsl; synop.xsl

    Made the dbcmdlist work the way it appears to have been intended
    -to work. Restored dbhtml-dir template back to pi.xsl.
    -
  • -

    Michael(tm) Smith: titlepage.xsl; param.xweb; param.ent

    Added new param abstract.notitle.enabled.
    -If non-zero, in output of the abstract element on titlepages,
    -display of the abstract title is suppressed.
    -Because sometimes you really don't want or need that title
    -there...
    -
  • -

    Michael(tm) Smith: chunk-code.xsl; graphics.xsl

    When we are chunking long descriptions for mediaobject instances
    -into separate HTML output files, and use.id.as.filename is
    -non-zero, if a mediaobject has an ID, use that ID as the basename
    -for the long-description file (otherwise, we generate an ID for it
    -and use that ID as the basename for the file).
    -The parallels the recent change made to cause IDs for legalnotice
    -instances to be used as basenames for legalnotice chunks.
    -Also, made some minor refinements to the recent changes for
    -legalnotice chunk handling.
    -
  • -

    Michael(tm) Smith: titlepage.xsl

    Added support to the HTML stylesheets for proper processing of
    -orgname as a child of author.
    -
  • -

    Michael(tm) Smith: chunk-code.xsl

    When $generate.legalnotice.link is non-zero and
    -$use.id.as.filename is also non-zero, if a legalnotice has an ID,
    -then instead of assigning the "ln-<generatedID>" basename to the
    -output file for that legalnotice, just use its real ID as the
    -basename for the file -- as we do when chunking other elements
    -that have IDs.
    -
  • -

    David Cramer: xref.xsl

    Handle alt text on xrefs to steps when the step doesn't have a title.
    -
  • -

    David Cramer: lists.xsl

    Added <p> element around term in variablelist when formatted as table to avoid misalignment of term and listitem in xhtml (non-quirks mode) output
    -
  • -

    David Cramer: qandaset.xsl

    Added <p> element around question and answer labels to avoid misalignment of label and listitem in xhtml (non-quirks mode) output
    -
  • -

    David Cramer: lists.xsl

    Added <p> element around callouts to avoid misalignment of callout and listitem in xhtml (non-quirks mode) output
    -
  • -

    Mauritz Jeanson: inline.xsl

    Make citations numbered if bibliography.numbered != 0.
    -
  • -

    Robert Stayton: param.xweb; param.ent

    Add support for new profiling attributes audience and wordsize.
    -
  • -

    Robert Stayton: inline.xsl; xref.xsl

    Add support for xlink olinks.
    -
  • -

    Jirka Kosek: glossary.xsl

    Rules for normalizing glossary entries before they are sorted can be now different for each language.
    -
  • -

    Robert Stayton: chunk-common.xsl; chunk-code.xsl; manifest.xsl; chunk.xsl

    Refactored the chunking modules to move all named templates to
    -chunk-common.xsl and all match templates to chunk-code.xsl, in
    -order to enable better chunk customization.
    -See the comments in chunk.xsl for more details.
    -
  • -

    Robert Stayton: lists.xsl

    Add anchor for xml:id for listitem in varlistentry.
    -
  • -

    Robert Stayton: refentry.xsl

    Add support for info/title in refsections for db5.
    -
  • -

    Jirka Kosek: param.xweb; biblio.xsl; docbook.xsl; param.ent; biblio-iso690.xsl

    Added support for formatting biblioentries according to ISO690 citation style.
    -New bibliography style can be turned on by setting parameter bibliography.style to "iso690"
    -The code was provided by Jana Dvorakova
    -
  • -

    Robert Stayton: inline.xsl; xref.xsl

    Add call to class.attribute to <a> output elements so they can
    -have a class value too.
    -
  • -

    Mauritz Jeanson: glossary.xsl

    Fixed bug #1644881:
    -* Added curly braces around all $language attribute values. 
    -* Moved declaration of language variable to top level of stylesheet.
    -Tested with Xalan, Saxon, and xsltproc.
    -
-
-

Manpages

- -

The following changes have been made to the - manpages code - since the 1.72.0 release.

-
  • -

    Michael(tm) Smith: param.xweb; docbook.xsl; param.ent

    Added the man.authors.section.enabled and
    -man.copyright.section.enabled parameters. Set those to zero when
    -you want to suppress display of the auto-generated AUTHORS and
    -COPYRIGHT sections. Closes request #1467806. Thanks to Daniel
    -Leidert.
    -
  • -

    Michael(tm) Smith: docbook.xsl

    Took the test that the manpages stylesheet does to see if there
    -are any Refentry chilren in current doc, and made it
    -namespace-agnostic. Reason for that is because the test otherwise
    -won't work when it is copied over into the generated
    -profile-docbook.xsl stylesheet.
    -
  • -

    Michael(tm) Smith: Makefile

    Added a manpages/profile-docbook.xsl file to enable single-pass
    -profiling for manpages output.
    -
  • -

    Michael(tm) Smith: info.xsl

    Output copyright and legalnotice in man-page output in whatever
    -place they are in in document order. Closes #1690539. Thanks to
    -Daniel Leidert for reporting.
    -
  • -

    Michael(tm) Smith: docbook.xsl

    Restored support for single-pass namespace stripping to manpages
    -stylesheet.
    -
  • -

    Michael(tm) Smith: synop.xsl; block.xsl; info.xsl; inline.xsl; lists.xsl; endnotes.xsl; ut⋯

    Changed handling of bold and italic/underline output in manpages
    -output. Should be transparent to users, but...
    -
    -This touches handling of all bold and italic/underline output. The
    -exact change is that the mode="bold" and mode="italic" utility
    -templates were changed to named templates. (I think maybe I've
    -changed it back and forth from mode to named before, so this is
    -maybe re-reverting it yet again).
    -
    -Anyway, the reason for the change is that the templates are
    -sometimes call on dynamically node-sets, and using modes to format
    -those doesn't allow passing info about the current/real context
    -node from the source (not the node-set created by the stylesheet)
    -to that formatting stage.
    -
    -The named templates allow the context to be passed in as a
    -parameter, so that the bold/ital formatting template can use
    -context-aware condition checking.
    -
    -This was basically necessary in order to suppress bold formatting
    -in titles, which otherwise gets screwed up because of the numbnut
    -way that roff handles nested bold/ital.
    -
    -Closes #1674534). Much thanks to Daniel Leidert, whose in his
    -docbook-xsl bug-finding kung-fu has achieved Grand Master status.
    -
  • -

    Michael(tm) Smith: block.xsl

    Fixed handling of example instances by adding the example element
    -to the same template we use for processing figure. Closes
    -#1674538. Thanks to Daniel Leidert.
    -
  • -

    Michael(tm) Smith: utility.xsl

    Don't include lang in manpages filename/pathname if lang=en (that
    -is, only generate lang-qualified file-/pathnames for non-English).
    -
  • -

    Michael(tm) Smith: endnotes.xsl

    In manpages output, emit warnings for notesources (footnote, etc.)
    -that have something other than para as a child.
    -
    -The numbered-with-hanging-indent formatting that's used for
    -rendering endnotes in the NOTES section of man pages places some
    -limits/assumptions on how the DocBook source is marked up; namely,
    -for notesources (footnote, annotation, etc.) that can contain
    -block-level children, if the they have a block-level child such as
    -a table or itemizedlist or orderedlist that is the first child of
    -a footnote, we have no way of rendering/indenting its content
    -properly in the endnotes list.
    -
    -Thus, the manpages stylesheet not emits a warning message for that
    -case, and suggests the "fix" (which is to wrap the table or
    -itemizedlist or whatever in a para that has some preferatory text.
    -
  • -

    Michael(tm) Smith: utility.xsl

    Added support to mixed-block template for handling tables in
    -mixed-blocks (e.g., as child of para) correctly.
    -
  • -

    Michael(tm) Smith: table.xsl; synop.xsl; block.xsl; info.xsl; lists.xsl; refentry.xsl; end⋯

    Reverted necessary escaping of backslash, dot, and dash
    -out of the well-intentioned (but it now appears,
    -misguided) "marker" mechanism (introduced in the 1.72.0
    -release) -- which made use of alternative "marker"
    -characters as internal representations of those
    -characters, and then replaced them just prior to
    -serialization -- and back into what's basically the
    -system that was used prior to the 1.69.0 release; that
    -is, into a part of stylesheet code that gets executed
    -at the beginning of processing -- before any other roff
    -markup up is. This change obviates the need for the
    -marker system. It also requires a lot less RAM during
    -processing (for large files, the marker mechanism
    -ending up requiring gigabytes of memory).
    -
    -Closes bug #1661177. Thanks to Scott Smedley for
    -providing a test case (the fvwm man page) that exposed
    -the problem with the marker mechanism.
    -
    -Also moved the mechanism for converting non-breaking
    -spaces back into the same area of the stylesheet code.
    -
  • -

    Michael(tm) Smith: lists.xsl

    Fixed problem with incorrect formatting of nested variablelist.
    -Closes bug #1650931. Thanks to Daniel "Eagle Eye" Leidert.
    -
  • -

    Michael(tm) Smith: lists.xsl

    Make sure that all listitems in itemizedlist and orderedlist are
    -preceded by a blank line. This fixes a regression that occurred
    -when instances of the TP macro that were use in a previous
    -versions of the list-handling code were switched to RS/RE (because
    -TP doesn't support nesting). TP automatically generates a blank
    -line, but RS doesn't. So I added a .sp before each .RS
    -
  • -

    Michael(tm) Smith: block.xsl; inline.xsl; param.xweb; docbook.xsl; links.xsl; param.ent

    Made a number of changes related to elements with
    -out-of-line content:
    -
    -- Added handling for mediaobject & inlinemediaobject.
    -  Each imagedata, audiodata, or videodata element
    -  within a mediaobject or inline mediaobject is now
    -  treated as a "notesource" and so handled in much the
    -  same way as links and annotation/alt/footnotes.
    -
    -  That means a numbered marker is generated inline to
    -  mark the place in the main flow where the imagedata,
    -  audiodata, or videodata element occurs, and a
    -  corresponding numbered endnote for it is generated in
    -  the endnotes list at the end of the man page; the
    -  endnote contains the URL from the fileref attribute
    -  of the imagedata, audiodata, or videodata element.
    -
    -  For mediobject and inlinemediaobject instances that
    -  have a textobject child, the textobject is displayed
    -  within the main text flow.
    -
    -- Renamed several man.link.* params to man.endnotes.*,
    -  to reflect that fact that the endnotes list now
    -  contains more than just links. Also did similar
    -  renaming for a number of stylesheet-internal vars.
    -
    -- Added support for xlink:href (along with existing
    -  support for the legacy ulink element).
    -
    -- Cleaned up and streamlined the endnotes-handling
    -  code. It's still messy and klunky and the basic
    -  mechanism it uses is very inefficent for documents
    -  that contain a lot of notesources, but at least it's
    -  a bit better than it was.
    -
-
-

Eclipse

- -

The following changes have been made to the - eclipse code - since the 1.72.0 release.

-
  • -

    Mauritz Jeanson: Makefile

    Fixed bug #1715093: Makefile for creating profiled version of eclipse.xsl added.
    -
  • -

    David Cramer: eclipse.xsl

    Added normalize-space around  to avoid leading whitespace from appearing in the output if there's extra leading whitespace (e.g. <title> Foo</title>) in the source
    -
-
-

JavaHelp

- -

The following changes have been made to the - javahelp code - since the 1.72.0 release.

-
  • -

    Mauritz Jeanson: javahelp.xsl

    Implemented FR #1230233 (sorted index in javahelp).
    -
  • -

    Mauritz Jeanson: javahelp.xsl

    Added normalize-space() around titles and index entries to work around whitespace problems.
    -Added support for glossary and bibliography in toc and map files.
    -
-
-

Roundtrip

- -

The following changes have been made to the - roundtrip code - since the 1.72.0 release.

-
  • -

    Steve Ball: blocks2dbk.xsl; wordml2normalise.xsl; normalise2sections.xsl; sections2blocks.⋯

    new stylesheets for better word processor support and easier maintenance
    -
  • -

    Steve Ball: template-pages.xml; dbk2wp.xsl; sections-spec.xml

    fixed bugs
    -
-
-

Params

- -

The following changes have been made to the - params code - since the 1.72.0 release.

-
  • -

    Mauritz Jeanson: htmlhelp.button.back.xml; htmlhelp.button.forward.xml; htmlhelp.button.zo⋯

    Modified refpurpose text.
    -
  • -

    Mauritz Jeanson: htmlhelp.map.file.xml; htmlhelp.force.map.and.alias.xml; htmlhelp.alias.f⋯

    Fixed typos, made some small changes.
    -
  • -

    Mauritz Jeanson: javahelp.encoding.xml

    Moved declaration and documentation of javahelp.encoding from javahelp.xsl to the
    -regular "parameter machinery".
    -
  • -

    Mauritz Jeanson: generate.id.attributes.xml

    Added refpurpose text.
    -
  • -

    Mauritz Jeanson: annotation.js.xml; annotation.graphic.open.xml; annotation.graphic.close.⋯

    Added better refpurpose texts.
    -
  • -

    Michael(tm) Smith: chunker.output.cdata-section-elements.xml; chunker.output.standalone.xm⋯

    Fixed some broken formatting in source files for chunker.* params,
    -as pointed out by Dave Pawson.
    -
  • -

    Michael(tm) Smith: label.from.part.xml

    Changed handling of reference auto-labeling such that reference
    -(when it appears at the component level) is now affected by the
    -label.from.part param, just as preface, chapter, and appendix.
    -
  • -

    Mauritz Jeanson: callout.graphics.extension.xml

    Clarified that 'extension' refers to file names.
    -
  • -

    Michael(tm) Smith: abstract.notitle.enabled.xml

    Added new param abstract.notitle.enabled.
    -If non-zero, in output of the abstract element on titlepages,
    -display of the abstract title is suppressed.
    -Because sometimes you really don't want or need that title
    -there...
    -
  • -

    Michael(tm) Smith: man.string.subst.map.xml

    Updated manpages string-substitute map to reflect fact that
    -because of another recent change to suppress bold markup in .SH
    -output, we no longer need to add a workaround for the accidental
    -uppercasing of roff escapes that occurred previously.
    -
  • -

    Jirka Kosek: margin.note.float.type.xml; title.font.family.xml; table.frame.border.color.x⋯

    Improved parameter metadata
    -
  • -

    Robert Stayton: profile.wordsize.xml; profile.audience.xml

    Add support for profiling on new attributes audience and wordsize.
    -
  • -

    Robert Stayton: callout.graphics.number.limit.xml; callout.graphics.extension.xml

    Added SVG graphics for fo output.
    -
  • -

    Robert Stayton: callout.icon.size.xml

    Set size of callout graphics.
    -
  • -

    Jirka Kosek: default.units.xml; chunker.output.method.xml; toc.list.type.xml; output.inden⋯

    Updated parameter metadata to the new format.
    -
  • -

    Jirka Kosek: man.output.quietly.xml; title.font.family.xml; footnote.sep.leader.properties⋯

    Added type annotations into parameter definition files.
    -
  • -

    Robert Stayton: section.container.element.xml

    Support spans in sections for certain processors.
    -
  • -

    Robert Stayton: component.titlepage.properties.xml

    Empty attribute set for top level component titlepage block.
    -Allows setting a span on title info.
    -
  • -

    Jirka Kosek: bibliography.style.xml

    Added link to WiKi page with description of special markup needed for ISO690 biblioentries
    -
  • -

    Robert Stayton: make.year.ranges.xml

    Clarify that multiple year elements are required.
    -
  • -

    Robert Stayton: id.warnings.xml

    Turn off id.warnings by default.
    -
  • -

    Jirka Kosek: bibliography.style.xml

    Added support for formatting biblioentries according to ISO690 citation style.
    -New bibliography style can be turned on by setting parameter bibliography.style to "iso690"
    -The code was provided by Jana Dvorakova
    -
  • -

    Robert Stayton: header.table.properties.xml; footer.table.properties.xml

    Support adding table properties to header and footer tables.
    -
-
-

Highlighting

- -

The following changes have been made to the - highlighting code - since the 1.72.0 release.

-
  • -

    Jirka Kosek: c-hl.xml; xslthl-config.xml

    Added support for C language. Provided by Bruno Guegan.
    -
-
-

Profiling

- -

The following changes have been made to the - profiling code - since the 1.72.0 release.

-
  • -

    Robert Stayton: profile-mode.xsl

    Add support for new profiling attributes audience and wordsize.
    -
-
-

Lib

- -

The following changes have been made to the - lib code - since the 1.72.0 release.

-
  • -

    Michael(tm) Smith: lib.xweb

    Changed name of prepend-pad template to pad-string and twheeked so
    -it can do both right/left padding.
    -
-
-

Tools

- -

The following changes have been made to the - tools code - since the 1.72.0 release.

-
  • -

    Michael(tm) Smith: bin; bin/docbook-xsl-update

    Did some cleanup to the install.sh source and added a
    -docbook-xsl-update script to the docbook-xsl distro, the purpose
    -of which is to facilitate easy sync-up to the latest docbook-xsl
    -snapshot (by means of rsync).
    -
-
-

XSL-Saxon

- -

The following changes have been made to the - xsl-saxon code - since the 1.72.0 release.

-
  • -

    Mauritz Jeanson: xalan27/src/com/nwalsh/xalan/Verbatim.java; xalan27/src/com/nwalsh/xalan/⋯

    Added modifications so that the new callout.icon.size parameter is taken into account. This 
    -parameter is used for FO output (where SVG now is the default graphics format for callouts).
    -
  • -

    Mauritz Jeanson: saxon65/src/com/nwalsh/saxon/FormatCallout.java; xalan27/src/com/nwalsh/x⋯

    Added code for generating id attributes on callouts in HTML and FO output.
    -These patches enable cross-references to callouts placed by area coordinates.
    -It works for graphic, unicode and text callouts. 
    -Part of fix for bug #1675513 (xref to area broken).
    -
  • -

    Michael(tm) Smith: saxon65/src/com/nwalsh/saxon/Website.java; xalan27/src/com/nwalsh/xalan⋯

    Copied over Website XSL Java extensions.
    -
-
-

XSL-Xalan

- -

The following changes have been made to the - xsl-xalan code - since the 1.72.0 release.

-
  • -

    Michael(tm) Smith: Makefile; xalan2

    Turned off xalan2.jar build. This removes DocBook XSL
    -Java extensions support for versions of Xalan prior to
    -Xalan 2.7. If you are currently using the extensions
    -with an earlier version of Xalan, you need to upgrade
    -to Xalan 2.7.
    -
  • -

    Mauritz Jeanson: xalan27/src/com/nwalsh/xalan/Verbatim.java; xalan27/src/com/nwalsh/xalan/⋯

    Added modifications so that the new callout.icon.size parameter is taken into account. This 
    -parameter is used for FO output (where SVG now is the default graphics format for callouts).
    -
  • -

    Mauritz Jeanson: saxon65/src/com/nwalsh/saxon/FormatCallout.java; xalan27/src/com/nwalsh/x⋯

    Added code for generating id attributes on callouts in HTML and FO output.
    -These patches enable cross-references to callouts placed by area coordinates.
    -It works for graphic, unicode and text callouts. 
    -Part of fix for bug #1675513 (xref to area broken).
    -
  • -

    Michael(tm) Smith: saxon65/src/com/nwalsh/saxon/Website.java; xalan27/src/com/nwalsh/xalan⋯

    Copied over Website XSL Java extensions.
    -
-
-
- -

Release: 1.72.0

- -

This release includes important bug fixes and adds the following -significant feature changes: -

Automatic sorting of glossary entries
-

The HTML and FO stylesheets now support automatic sorting - of glossary entries. To enable glossary sorting, set - the value of the glossary.sort parameter - to 1 (by default, it’s value is - 0). When you enable glossary sorting, - glossentry elements within a glossary, - glossdiv, or glosslist are sorted on the - glossterm, using the current language setting. If you - don’t enable glossary sorting, then the order of - glossentry elements is left “as is” — that is, they - are not sorted but are instead just displayed in document - order.

-
WordML renamed to Roundtrip, OpenOffice support added
-

Stylesheets for “roundtrip” conversion between documents in - OpenOffice format (ODF) and DocBook XML have been added to the set - of stylesheets that formerly had the collective title - WordML, and that set of stylesheets has - been renamed to Roundtrip to better - reflect the actual scope and purpose of its contents.

-

So the DocBook XSL Stylesheets now support roundtrip - conversion (with certain limitations) of WordML, OpenOffice, and - Apple Pages documents to and from DocBook XML.

-
Including QandASet questions in TOCs
-

The HTML stylesheet now provides support for including - QandASet questions in the document TOC. To - enable display of questions in the document TOC, set - the value of the qanda.in.toc to - 1 (by default, it’s 0). When you - enable qanda.in.toc, then the generated - table of contents for a document will include - qandaset titles, qandadiv titles, and - question elements. The default value of zero - excludes them from the TOC. -

Note

-

The qanda.in.toc parameter does - not affect any tables of contents that may be generated - within a qandaset or - qandadiv (only in the document TOC).

-

-

-
Language identifier in man-page filenames and pathnames
-

Added new parameter man.output.lang.in.name.enabled, which controls whether - a language identifier is included in man-page filenames and - pathnames. It works like this:

- -

If the value of man.output.lang.in.name.enabled is non-zero, - man-page files are output with a language identifier included in - their filenames or pathnames as follows:

- -
- -
index.page.number.properties property set
-

For FO output, use the - index.page.number.properties to control - formatting of page numbers in index output — to (for - example) to display page numbers in index output in a - different color (to indicate that they are links).

-
Crop marks in output from Antenna House XSL Formatter
-

Support has been added for generating crop marks in - print/PDF output generated using Antenna House XSL Formatter

-
More string-substitution hooks in manpages output
-

The man.string.subst.map.local.pre - and man.string.subst.map.local.post - parameters have been added to enable easier control over - custom string substitutions.

-
Moved verbatim properties to attribute-set
-

The hardcoded properties used in verbatim elements (literallayout, - programlisting, screen) were moved to the verbatim.properties - attribute-set so they can be more easily customized.

-
enhanced simple.xlink template
-

Now the simple.xlink template in inline.xsl works with - cross reference elements xref and link as well. Also, more elements - call simple.xlink, which enables DB5 xlink functionality. -

-
DocBook 5 compatibility
-

Stylesheets now consistently support DocBook 5 attributes - (such as xml:id). Also, DocBook 5 info elements are now checked - along with other *info elements, and the use of name() function - was replaced by local-name() so it also matches on DocBook 5 elements. - These changes enable reusing the stylesheets with DocBook 5 - documents with minimal fixup. -

-
HTML class attributes now handled in class.attribute mode
-

The HTML class attributes were formerly hardcoded to the - element name. Now the class attribute is generated by applying - templates in class.attribute mode so class attribute names - can be customized. The default is still the element name.

-
arabic-indic numbering enabled in autolabels
-

Numbering of chapter, sections, and pages can now use - arabic-indic numbering when number format is set to 'arabicindic' or - to ١.

-

-The following is a detailed list of changes (not -including bug fixes) that have been made since the 1.71.1 -release.

- -

Common

- -

The following changes have been made to the - common code - since the 1.71.1 release.

-
  • -

    Add support for arabicindic numbering to autolabel.format template.

    -
  • -

    Finish support for @xml:id everywhere @id is used.

    -
  • -

    replace name() with local-name() in most cases.

    -
  • -

    Add support for info.

    -
  • -

    Add utility template tabstyle to return the tabstyle from
    -any table element.

    -
-
- -

FO

- -

The following changes have been made to the - fo code - since the 1.71.1 release.

-
  • -

    Add support for sorting glossary entries

    -
  • -

    Add table.row.properties template to customize table rows.

    -
  • -

    Moved all properties to attribute-sets so can be customized more easily.

    -
  • -

    Add index.page.number.properties attribute-set to format page numbers.

    -
  • -

    xref now supports xlink:href, using simple.xlink template.

    -
  • -

    Rewrote simple.xlink, and call it with all charseq templates.

    -
  • -

    Add simple.xlink processing to term and member elements.

    -
  • -

    Add support for crop marks in Antenna House.

    -
-
- -

HTML

- -

The following changes have been made to the - html code - since the 1.71.1 release.

-
  • -

    Add support for sorting glossary entries

    -
  • -

    Add support for qanda.in.toc to add qandaentry questions to document TOC.

    -
  • -

    add simple.xlink support to variablelist term and simplelist member.

    -
  • -

    *.propagates.style now handled in class.attribute mode.

    -
  • -

    add class parameter to class.attribute mode to set default class.

    -
  • -

    Convert all class attributes to use the class.attribute mode
    -so class names can be customized more easily.

    -
  • -

    Add class.attribute mode to generate class attributes.

    -
  • -

    Added simple.xlink to most remaining inlines.
    -Changed class attributes to applying class.attributes mode.

    -
  • -

    Changed xref template to use simple.xlink tempalte.

    -
  • -

    Improve generate.html.title to work with link targets too.

    -
  • -

    Improved simple.xlink to support link and xref.

    -
  • -

    Use new link.title.attribute now.

    -
  • -

    Rewrote simple.xlink to handle linkend also.
    -Better computation of title attribute on link too.

    -
  • -

    Handle Xalan quirk as special case.

    -
  • -

    Add support for info.

    -
  • -

    Fixed imagemaps so they work properly going from calspair coords
    -to HTML area coords.

    -
-
- -

Manpages

- -

The following changes have been made to the - manpages code - since the 1.71.1 release.

-
  • -

    Added doc for man.output.lang.in.name.enabled parameter. This
    -checkin completes support for writing file/pathnames for man-pages
    -with $lang include in the names. Closes #1585967. knightly
    -accolades to Daniel Leidert for providing the feature request.

    -
  • -

    Added new param man.output.lang.in.name.enabled, which
    -controls whether $LANG value is included in manpages
    -filenames and pathnames. It works like this:
    -
    -If the value of man.output.lang.in.name.enabled is non-zero,
    -man-page files are output with the $lang value included in
    -their filenames or pathnames as follows;
    -
    -- if man.output.subdirs.enabled is non-zero, each file is
    -  output to, e.g., a /$lang/man8/foo.8 pathname
    -
    -- if man.output.subdirs.enabled is zero, each file is output
    -  with a foo.$lang.8 filename

    -
  • -

    Use "\e" instead of "\\" for backslash output, because the
    -groff docs say that's the correct thing to do; also because
    -testing (thanks, Paul Dubois) shows that "\\" doesn't always
    -work as expected; for example, "\\" within a table seems to
    -mess things up.

    -
  • -

    Added the man.string.subst.map.local.pre and
    -man.string.subst.map.local.post parameters. Those parameters
    -enable local additions and changes to string-substitution mappings
    -without the need to change the value of man.string.subst.map
    -parameter (which is for standard system mappings). Closes
    -#1456738. Thanks to Sam Steingold for constructing a true
    -stylesheet torture test (the clisp docs) that exposed the need for
    -these params.

    -
  • -

    Added the Markup element to the list of elements that get output
    -in bold. Thanks to Eric S. Raymond.

    -
  • -

    Replaced all dots in roff requests with U+2302 ("house"
    -character), and added escaping in output for all instances of dot
    -that are not in roff requests. This fixes the problem case where a
    -string beginning with a dot (for example, the string ".bashrc")
    -might occur at the beginning of a line in output, in which case 
    -would mistakenly get interpreted as a roff request. Thanks to Eric
    -S. Raymond for pushing to fix this.

    -
  • -

    Made change to ensure that list content nested in
    -itemizedlist and orderedlist instances is properly indented. This
    -is a switch from using .TP to format those lists to using .RS/.RE
    -to format them instead (because .TP does not allow nesting). Closes bug #1602616.
    -Thanks to Daniel Leidert.

    -
-
- -

Params

- -

The following changes have been made to the - params code - since the 1.71.1 release.

-
  • -

    Added doc for man.output.lang.in.name.enabled parameter. This
    -checkin completes support for writing file/pathnames for man-pages
    -with $lang include in the names. Closes #1585967. knightly
    -accolades to Daniel Leidert for providing the feature request.

    -
  • -

    Added new param man.output.lang.in.name.enabled, which
    -controls whether $LANG value is included in manpages
    -filenames and pathnames. It works like this:
    -
    -If the value of man.output.lang.in.name.enabled is non-zero,
    -man-page files are output with the $lang value included in
    -their filenames or pathnames as follows;
    -
    -- if man.output.subdirs.enabled is non-zero, each file is
    -  output to, e.g., a /$lang/man8/foo.8 pathname
    -
    -- if man.output.subdirs.enabled is zero, each file is output
    -  with a foo.$lang.8 filename

    -
  • -

    Added the man.string.subst.map.local.pre and
    -man.string.subst.map.local.post parameters. Those parameters
    -enable local additions and changes to string-substitution mappings
    -without the need to change the value of man.string.subst.map
    -parameter (which is for standard system mappings). Closes
    -#1456738. Thanks to Sam Steingold for constructing a true
    -stylesheet torture test (the clisp docs) that exposed the need for
    -these params.

    -
  • -

    Add index.page.number.properties by default.

    -
  • -

    Added index.page.number.properties to allow customizations of page numbers in indexes.

    -
  • -

    Move show-destination="replace" property from template to attribute-set
    -so it can be customized.

    -
  • -

    Add support for sorting glossary entries

    -
  • -

    Add option to include qanda in tables of contents.

    -
  • -

    Moved all properties to attribute-sets so can be customized more easily.

    -
-
- -

Template

- -

The following changes have been made to the - template code - since the 1.71.1 release.

-
  • -

    Added workaround for Xalan bug: use for-each and copy instead of copy-of (#1604770).

    -
-
- -

Roundtrip

- -

The following changes have been made to the - roundtrip code - since the 1.71.1 release.

-
  • -

    rename to roundtrip, add OpenOffice support

    -
-
-
- -

Release: 1.71.1

- -

This is a minor update to the 1.71.0 release. Along with a -number of bug fixes, it includes two feature changes: - -

  • -

    Added support for profiling based on xml:lang and status attributes.

    -
  • -

    Added initial support in manpages output for - footnote, annotation, and alt - instances. Basically, they all now get handled the same way - ulink instances are. They are treated as a class as - "note sources": A numbered marker is generated at the place in the - main text flow where they occur, then their contents are displayed - in an endnotes section at the end of the man page.

    -

-

- -

Common

- -

The following changes have been made to the - common code - since the 1.71.1 release.

-
  • -

    For backward compatability autoidx-ng.xsl is invoking "kosek" indexing method again.

    -
  • -

    Add support for Xalan generating a root xml:base like saxon.

    -
-
- -

FO

- -

The following changes have been made to the - fo code - since the 1.71.1 release.

-
  • -

    For backward compatability autoidx-ng.xsl is invoking "kosek" indexing method again.

    -
  • -

    Add support for Xalan to add root node xml:base for db5 docs.

    -
  • -

    Added support for profiling based on xml:lang and status attributes.

    -
-
- -

HTML

- -

The following changes have been made to the - html code - since the 1.71.1 release.

-
  • -

    For backward compatability autoidx-ng.xsl is invoking "kosek" indexing method again.

    -
  • -

    Add support for Xalan to add root node xml:base for db5 docs.

    -
  • -

    Added support for profiling based on xml:lang and status attributes.

    -
  • -

    Made changes in namespace declarations to prevent xmllint's
    -canonicalizer from treating them as relative namespace URIs.
    -
    -  - Changed xmlns:k="java:com.isogen.saxoni18n.Saxoni18nService"
    -    to xmlns:k="http://www.isogen.com/functions/com.isogen.saxoni18n.Saxoni18nService";
    -    Saxon accepts either form
    -    (see http://www.saxonica.com/documentation/extensibility/functions.html);
    -    to Saxon, "the part of the URI before the final '/' is immaterial".
    -
    -  - Changed, e.g. xmlns:xverb="com.nwalsh.xalan.Verbatim" to
    -    xmlns:xverb="xalan://com.nwalsh.xalan.Verbatim"; Xalan accepts
    -    either form
    -    (see http://xml.apache.org/xalan-j/extensions.html#java-namespace-declare);
    -    just as Saxon does, it will "simply use the string to the
    -    right of the rightmost forward slash as the Java class name".
    -
    -  - Changed xmlns:xalanredirect="org.apache.xalan.xslt.extensions.Redirect"
    -    to xmlns:redirect="http://xml.apache.org/xalan/redirect", and
    -    adjusted associated code to make the current Xalan redirect spec.
    -    (see http://xml.apache.org/xalan-j/apidocs/org/apache/xalan/lib/Redirect.html)

    -
  • -

    Added the html.append and chunk.append parameters. By default, the
    -value of both is empty; but the internal DocBook XSL stylesheets
    -build sets their value to "<xsl:text>&#x0a;</xsl:text>", in order
    -to ensure that all files in the docbook-xsl-doc package end in a
    -newline character. (Because diff and some other tools may emit
    -error messages and/or not behave as expected when processing
    -files that are not newline-terminated.)

    -
-
- -

Highlighting

- -

The following changes have been made to the - highlighting code - since the 1.71.1 release.

-
  • -

    Added license information

    -
-
- -

Manpages

- -

The following changes have been made to the - manpages code - since the 1.71.1 release.

-
  • -

    Added initial support in manpages output for footnoteannotation,
    -and alt instances. Basically, they all now get handled the same
    -way ulink instances are. They are treated as a class as "note
    -sources": A numbered marker is generated at the place in the main
    -text flow where they occur, then their contents are displayed in
    -an endnotes section at the end of the man page (currently titled
    -REFERENCES, for English output, but will be changed to NOTES).
    -
    -This support is not yet complete. It works for most "normal"
    -cases, but probably mishandles a good number of cases. More
    -testing will be needed to expose the problems. It may well also
    -introduce some bugs and regressions in other areas, including
    -basic paragraph handling, handling of "mixed block" content,
    -handling of other indented content, and handling of authorblurb
    -and personblurb in the AUTHORS section.

    -
-
- -

Params

- -

The following changes have been made to the - params code - since the 1.71.1 release.

-
  • -

    Added support for profiling based on xml:lang and status attributes.

    -
  • -

    Added the html.append and chunk.append parameters. By default, the
    -value of both is empty; but the internal DocBook XSL stylesheets
    -build sets their value to "<xsl:text>&#x0a;</xsl:text>", in order
    -to ensure that all files in the docbook-xsl-doc package end in a
    -newline character. (Because diff and some other tools may emit
    -error messages and/or not behave as expected when processing
    -files that are not newline-terminated.)

    -
-
- -

Profiling

- -

The following changes have been made to the - profiling code - since the 1.71.1 release.

-
  • -

    Added support for profiling based on xml:lang and status attributes.

    -
-
- -
- -

Release: 1.71.0

- -

This is mainly a bug fix release, but it also includes two -significant feature changes: -

Highlighting support added
-

The stylesheets now include support for source-code - highlighting in output of programlisting instances (controlled - through the highlight.source - parameter). The Java-based implementation requires Saxon and - makes use of Michal Molhanec’s XSLTHL. More details are available at Jirka Kosek’s - website:

The support is currently limited to highlighting - of XML, Java, PHP, Delphi, Modula-2 sources, and INI - files.

-
Changes to autoindexing
-

The templates that handle alternative indexing methods - were reworked to avoid errors produced by certain processors not - being able to tolerate the presence of unused functions. With - this release, none of the code for the 'kimber' or 'kosek' - methods is included in the default stylesheets. In order to use - one of those methods, your customization layer must import one - of the optional stylesheet modules:

-

-

  • - html/autoidx-kosek.xsl -
  • - html/autoidx-kimber.xsl -
  • - fo/autoidx-kosek.xsl -
  • - fo/autoidx-kimber.xsl -

- See the index.method parameter - reference page for more information. -

-

Two other changes to note: -

  • - The default indexing method now can handle accented - characters in latin-based alphabets, not just English. This - means accented latin letters will group and sort with their - unaccented counterpart. -
  • - The default value for the - index.method parameter was changed - from 'english' to 'basic' because now the default method can - handle latin-based alphabets, not just English. -

-

-

-The following is a list of changes that have -been made since the 1.70.1 release.

- -

Common

- -

The following changes have been made to the - common code - since the 1.70.1 release.

-
  • -

    Added reference.autolabel parameter for controlling labels on
    -reference output.

    -
  • -

    Support rows that are *completely* overlapped by the preceding row

    -
  • -

    New modules for supporting indexing extensions.

    -
  • -

    Support startinglinenumber on orderedlist

    -
-
- -

Extensions

- -

The following changes have been made to the - extensions code - since the 1.70.1 release.

-
  • -

    Completely reworked extensions build system; now uses NetBeans and ant

    -
-
- -

FO

- -

The following changes have been made to the - fo code - since the 1.70.1 release.

-
  • -

    xsl:sort lang attribute now uses two-char substring of lang attribute.

    -
  • -

    Support titlecase "Java", "Perl", and "IDL" as values for the
    -language attribute on classsynopsis, etc. (instead of just
    -lowercase "java", "perl", and "idl"). Also support "c++" and "C++"
    -(instead of just "cpp").
    -
    -Affects HTML, FO, and manpages output. Closes bug 1552332. Thanks
    -to "Brian A. Vanderburg II".

    -
  • -

    Added support for the reference.autolabel param in (X)HTML and FO
    -output.

    -
  • -

    Support rows that are *completely* overlapped by the preceding row

    -
  • -

    Rearranged templates for the 3 indexing methods
    -and changed method named 'english' to 'basic'.

    -
  • -

    New modules for supporting indexing extensions.

    -
  • -

    Turn off blank-body for fop1.extensions too since fop 0.92
    -does not support it either.

    -
  • -

    Add Xalan variant to test for exslt:node-set function.
    -Xalan can use function named node-set(), but doesn't
    -recognize it using function-available().

    -
  • -

    Added support to FO stylesheets for handling instances of Org
    -where it occurs outside of *info content. In HTML stylesheets,
    -moved handling of Org out of info.xsl and into inline.xsl. In both
    -FO and HTML stylesheets, added support for correctly processing
    -Affiliation and Jobtitle.

    -
  • -

    Don't output punctuation between Refname and Refpurpose if
    -Refpurpose is empty. Also corrected handling of Refsect2/title
    -instances, and removed some debugging stuff that was generated in
    -manpages output to mark the ends of sections.

    -
  • -

    Added new email.delimiters.enabled param. If non-zero (the
    -default), delimiters are generated around e-mail addresses (output
    -of the email element). If zero, the delimiters are suppressed.

    -
  • -

    Initial support of syntax highlighting of programlistings.

    -
  • -

    Chapter after preface should restart numbering of pages.

    -
-
- -

HTML

- -

The following changes have been made to the - html code - since the 1.70.1 release.

-
  • -

    xsl:sort lang attribute now uses two-char substring of lang attribute.

    -
  • -

    Support titlecase "Java", "Perl", and "IDL" as values for the
    -language attribute on classsynopsis, etc. (instead of just
    -lowercase "java", "perl", and "idl"). Also support "c++" and "C++"
    -(instead of just "cpp").
    -
    -Affects HTML, FO, and manpages output. Closes bug 1552332. Thanks
    -to "Brian A. Vanderburg II".

    -
  • -

    Added support for the reference.autolabel param in (X)HTML and FO
    -output.

    -
  • -

    Support rows that are *completely* overlapped by the preceding row

    -
  • -

    Rearranged templates for the 3 indexing methods
    -and changed method named 'english' to 'basic'.

    -
  • -

    New modules for supporting indexing extensions.

    -
  • -

    Added several new HTML parameters for controlling appearance of
    -content on HTML title pages:
    -
    -contrib.inline.enabled:
    -  If non-zero (the default), output of the contrib element is
    -  displayed as inline content rather than as block content.
    -
    -othercredit.like.author.enabled:
    -  If non-zero, output of the othercredit element on titlepages is
    -  displayed in the same style as author and editor output. If zero
    -  (the default), othercredit output is displayed using a style
    -  different than that of author and editor.
    -
    -blurb.on.titlepage.enabled:
    -  If non-zero, output from authorblurb and personblurb elements is
    -  displayed on title pages. If zero (the default), output from
    -  those elements is suppressed on title pages (unless you are
    -  using a titlepage customization that causes them to be included).
    -
    -editedby.enabled
    -  If non-zero (the default), a localized Edited by heading is
    -  displayed above editor names in output of the editor element.

    -
  • -

    Add Xalan variant to test for exslt:node-set function.
    -Xalan can use function named node-set(), but doesn't
    -recognize it using function-available().

    -
  • -

    Added support to FO stylesheets for handling instances of Org
    -where it occurs outside of *info content. In HTML stylesheets,
    -moved handling of Org out of info.xsl and into inline.xsl. In both
    -FO and HTML stylesheets, added support for correctly processing
    -Affiliation and Jobtitle.

    -
  • -

    Don't output punctuation between Refname and Refpurpose if
    -Refpurpose is empty. Also corrected handling of Refsect2/title
    -instances, and removed some debugging stuff that was generated in
    -manpages output to mark the ends of sections.

    -
  • -

    Added new email.delimiters.enabled param. If non-zero (the
    -default), delimiters are generated around e-mail addresses (output
    -of the email element). If zero, the delimiters are suppressed.

    -
  • -

    Added qanda.nested.in.toc param. Default value is zero. If
    -non-zero, instances of "nested" Qandaentry (ones that are children
    -of Answer elements) are displayed in the TOC. Closes patch 1509018
    -(from Daniel Leidert). Currently on affects HTML output (no patch
    -for FO output provided).

    -
  • -

    Improved handling of relative locations generated files

    -
  • -

    Initial support of syntax highlighting of programlistings.

    -
  • -

    Support org

    -
  • -

    Support person

    -
  • -

    Support $keep.relative.image.uris also when chunking

    -
-
- -

Highlighting

- -

The following changes have been made to the - highlighting code - since the 1.70.1 release.

-
  • -

    Initial support of syntax highlighting of programlistings.

    -
-
- -

Manpages

- -

The following changes have been made to the - manpages code - since the 1.70.1 release.

-
  • -

    Suppress footnote markers and output warning that footnotes are
    -not yet supported.

    -
  • -

    Handle instances of address/otheraddr/ulink in author et al in the
    -same way as email instances; that is, display them on the same
    -linke as the authoreditor, etc., name.

    -
  • -

    Don't number or link-list any Ulink instance whose string value is
    -identical to the value of its url attribute. Just display it inline.

    -
  • -

    Don't output punctuation between Refname and Refpurpose if
    -Refpurpose is empty. Also corrected handling of Refsect2/title
    -instances, and removed some debugging stuff that was generated in
    -manpages output to mark the ends of sections.

    -
  • -

    Added new email.delimiters.enabled param. If non-zero (the
    -default), delimiters are generated around e-mail addresses (output
    -of the email element). If zero, the delimiters are suppressed.

    -
  • -

    In manpages output, if the last/nearest *info element for
    -particular Refentry has multiple Copyright and/or Legalnotice
    -children, process them all (not just the first ones). Closes bug
    -1524576. Thanks to Sam Steingold for the report and to Daniel
    -Leidert for providing a patch.

    -
-
- -

Params

- -

The following changes have been made to the - params code - since the 1.70.1 release.

-
  • -

    Added reference.autolabel parameter for controlling labels on
    -reference output.

    -
  • -

    Added namespace declarations to document elements for all param files.

    -
  • -

    Updated index.method doc to describe revised setup for importing index extensions.

    -
  • -

    Added several new HTML parameters for controlling appearance of
    -content on HTML title pages:
    -
    -contrib.inline.enabled:
    -  If non-zero (the default), output of the contrib element is
    -  displayed as inline content rather than as block content.
    -
    -othercredit.like.author.enabled:
    -  If non-zero, output of the othercredit element on titlepages is
    -  displayed in the same style as author and editor output. If zero
    -  (the default), othercredit output is displayed using a style
    -  different than that of author and editor.
    -
    -blurb.on.titlepage.enabled:
    -  If non-zero, output from authorblurb and personblurb elements is
    -  displayed on title pages. If zero (the default), output from
    -  those elements is suppressed on title pages (unless you are
    -  using a titlepage customization that causes them to be included).
    -
    -editedby.enabled
    -  If non-zero (the default), a localized Edited by heading is
    -  displayed above editor names in output of the editor element.

    -
  • -

    Added new email.delimiters.enabled param. If non-zero (the
    -default), delimiters are generated around e-mail addresses (output
    -of the email element). If zero, the delimiters are suppressed.

    -
  • -

    Added qanda.nested.in.toc param. Default value is zero. If
    -non-zero, instances of "nested" Qandaentry (ones that are children
    -of Answer elements) are displayed in the TOC. Closes patch 1509018
    -(from Daniel Leidert). Currently on affects HTML output (no patch
    -for FO output provided).

    -
  • -

    Initial support of syntax highlighting of programlistings.

    -
-
- -

Tools

- -

The following changes have been made to the - tools code - since the 1.70.1 release.

-
  • -

    Racheted down font sizes of headings in example makefile FO output.

    -
  • -

    Added param and attribute set to example makefile, for getting
    -wrapping in verbatims in FO output.

    -
  • -

    Renamed Makefile.paramDoc to Makefile.docParam.

    -
  • -

    Added Makefile.paramDoc file, for creating versions of param.xsl
    -files with doc embedded.

    -
  • -

    Added variable to example makefile for controlling whether HTML or
    -XHTML is generated.

    -
-
-
- -

Release: 1.70.1

- - -

This is a stable release of the 1.70 stylesheets. It includes only a -few small changes from 1.70.0.

- -

The following is a list of changes that have been made - since the 1.70.0 release.

- -

FO

- -

The following changes have been made to the - fo code - since the 1.70.0 release.

-
  • -

    Added three new attribute sets (revhistory.title.properties, revhistory.table.properties and revhistory.table.cell.properties) for controlling appearance of revhistory in FO output.

    -

    Modified: fo/block.xsl,1.34; fo/param.ent,1.101; fo/param.xweb,1.114; fo/titlepage.xsl,1.41; params/revhistory.table.cell.properties.xml,1.1; params/revhistory.table.properties.xml,1.1; params/revhistory.title.properties.xml,1.1 - Jirka Kosek

    -
  • -

    Support DBv5 revisions with full author name (not only authorinitials)

    -

    Modified: fo/block.xsl,1.33; fo/titlepage.xsl,1.40 - Jirka Kosek

    -
-
- -

HTML

- -

The following changes have been made to the - html code - since the 1.70.0 release.

-
  • -

    Support DBv5 revisions with full author name (not only authorinitials)

    -

    Modified: html/block.xsl,1.23; html/titlepage.xsl,1.34 - Jirka Kosek

    -
-
- -

HTMLHelp

- -

The following changes have been made to the - htmlhelp code - since the 1.70.0 release.

-
  • -

    htmlhelp.generate.index is now param, not variable. This means that you can override its setting from outside. This is useful when you generate indexterms on the fly (see http://www.xml.com/pub/a/2004/07/14/dbndx.html?page=3).

    -

    Modified: htmlhelp/htmlhelp-common.xsl,1.38 - Jirka Kosek

    -
  • -

    Support chunk.tocs.and.lots in HTML Help

    -

    Modified: htmlhelp/htmlhelp-common.xsl,1.37 - Jirka Kosek

    -
-
- -

Params

- -

The following changes have been made to the - params code - since the 1.70.0 release.

-
  • -

    Added three new attribute sets (revhistory.title.properties, revhistory.table.properties and revhistory.table.cell.properties) for controlling appearance of revhistory in FO output.

    -

    Modified: fo/block.xsl,1.34; fo/param.ent,1.101; fo/param.xweb,1.114; fo/titlepage.xsl,1.41; params/revhistory.table.cell.properties.xml,1.1; params/revhistory.table.properties.xml,1.1; params/revhistory.title.properties.xml,1.1 - Jirka Kosek

    -
-
- -
- -

Release: 1.70.0

- -

As with all DocBook Project dot-zero -releases, this is an experimental release. It will be followed shortly -by a stable release.

- -

This release adds a number of new features, -including:

- -
  • -

    support for selecting alternative index-collation methods - (in particular, support for using a collation library developed by - Eliot Kimber)

    -
  • -

    improved handling of DocBook 5 document instances (through a - namespace-stripping mechanism)

    -
  • -

    full support for CALS and HTML tables in manpages - output

    -
  • -

    a mechanism for preserving relative URIs in documents that - make use of XInclude

    -
  • -

    support for the "new" .90 version of - FOP

    -
  • -

    enhanced capabilities for controlling formatting of lists in HTML - and FO output

    -
  • -

    autogeneration of AUTHOR and COPYRIGHT sections in manpages - output

    -
  • -

    support for generating crop marks in FO/PDF output

    -
  • -

    support for qandaset as a root element in FO output

    -
  • -

    support for floatstyle and orient on all table types

    -
  • -

    support for floatstyle in figure, and example

    -
  • -

    pgwide.properties attribute-set supports extending figure, - example and table into the left indent area instead of spanning - multiple columns.

    -
-

The following is a detailed list of enhancements and API - changes that have been made since the 1.69.1 release.

- -

Common

- -

The following changes have been made to the - common code - since the 1.69.1 release.

-
  • -

    Add the xsl:key for the kimber -indexing method.

    -

    Modified: common/autoidx-ng.xsl,1.2 - Robert -Stayton

    -
  • -

    Add support for -qandaset.

    -

    Modified: common/labels.xsl,1.37; -common/subtitles.xsl,1.7; common/titles.xsl,1.35 - Robert -Stayton

    -
  • -

    Support dbhtml/dbfo start PI for -orderedlist numbering in both HTML and -FO

    -

    Modified: common/common.xsl,1.61; html/lists.xsl,1.50 - Norman -Walsh

    -
  • -

    Added CVS -header.

    -

    Modified: common/stripns.xsl,1.12 - Robert -Stayton

    -
  • -

    Changed content model of text -element to ANY rather than #PCDATA because they could contain -markup.

    -

    Modified: common/targetdatabase.dtd,1.7 - Robert -Stayton

    -
  • -

    Added -refentry.meta.get.quietly param.

    -

    If zero (the -default), notes and warnings about "missing" markup are generated -during gathering of refentry metadata. If -non-zero, the metadata is gathered "quietly" -- that is, the -notes and warnings are suppressed.

    -

    NOTE: If you are -processing a large amount of refentry content, you -may be able to speed up processing significantly by setting a -non-zero value for -refentry.meta.get.quietly.

    -

    Modified: common/refentry.xsl,1.17; -manpages/param.ent,1.15; manpages/param.xweb,1.17; -params/refentry.meta.get.quietly.xml,1.1 - Michael(tm) -Smith

    -
  • -

    After namespace stripping, the -source document is the temporary tree created by the stripping -process and it has the wrong base URI for relative -references. Earlier versions of this code used to try to fix that -by patching the elements with relative @fileref attributes. That -was inadequate because it calculated an absolute base URI -without considering that there might be xml:base attributes -already in effect. It seems obvious now that the right thing to -do is simply to put the xml:base on the root of the document. And -that seems to work.

    -

    Modified: common/stripns.xsl,1.7 - Norman -Walsh

    -
  • -

    Added support for "software" and -"sectdesc" class values on refmiscinfo; "software" is -treated identically to "source", and "setdesc" is treated -identically to "manual".

    -

    Modified: common/refentry.xsl,1.10; -params/man.th.extra2.max.length.xml,1.3; -params/refentry.source.name.profile.xml,1.4 - Michael(tm) -Smith

    -
  • -

    Added support for DocBook 5 -namespace-stripping in manpages stylesheet. Closes request -#1210692.

    -

    Modified: common/common.xsl,1.56; manpages/docbook.xsl,1.57 - -Michael(tm) Smith

    -
  • -

    Added <xsl:template -match="/"> to make stripns.xsl usable as a standalone -stylesheet for stripping out DocBook 5/NG to DocBook 4. Note that -DocBook XSLT drivers that include this stylesheet all override -the match="/" template.

    -

    Modified: common/stripns.xsl,1.4 - Michael(tm) -Smith

    -
  • -

    Number figures, examples, and -tables from book if there is no prefix (i.e. if -chapter.autolabel is set to 0). This avoids -having the list of figures where the figures mysteriously restart -their numeration periodically when -chapter.autolabel is set to -0.

    -

    Modified: common/labels.xsl,1.36 - David Cramer

    -
  • -

    Add task template in -title.markup mode.

    -

    Modified: common/titles.xsl,1.34 - Robert -Stayton

    -
  • -

    Add children (with ids) of formal -objects to target data.

    -

    Modified: common/targets.xsl,1.10 - Robert -Stayton

    -
  • -

    Added support for case when -personname doesn't contain specific name markup (as allowed -in DocBook 5.0)

    -

    Modified: common/common.xsl,1.54 - Jirka -Kosek

    -
-
- -

Extensions

- -

The following changes have been made to the - extensions code - since the 1.69.1 release.

-
  • -

    Support Xalan -2.7

    -

    Modified: extensions/xalan27/.cvsignore,1.1; -extensions/xalan27/build.xml,1.1; -extensions/xalan27/nbproject/.cvsignore,1.1; -extensions/xalan27/nbproject/build-impl.xml,1.1; -extensions/xalan27/nbproject/genfiles.properties,1.1; -extensions/xalan27/nbproject/project.properties,1.1; -extensions/xalan27/nbproject/project.xml,1.1; -extensions/xalan27/src/com/nwalsh/xalan/CVS.java,1.1; -extensions/xalan27/src/com/nwalsh/xalan/Callout.java,1.1; -extensions/xalan27/src/com/nwalsh/xalan/FormatCallout.java,1.1; -extensions/xalan27/src/com/nwalsh/xalan/FormatDingbatCallout.java,1.1; -extensions/xalan27/src/com/nwalsh/xalan/FormatGraphicCallout.java,1.1; -extensions/xalan27/src/com/nwalsh/xalan/FormatTextCallout.java,1.1; -extensions/xalan27/src/com/nwalsh/xalan/FormatUnicodeCallout.java,1.1; -extensions/xalan27/src/com/nwalsh/xalan/Func.java,1.1; -extensions/xalan27/src/com/nwalsh/xalan/ImageIntrinsics.java,1.1; -extensions/xalan27/src/com/nwalsh/xalan/Params.java,1.1; -extensions/xalan27/src/com/nwalsh/xalan/Table.java,1.1; -extensions/xalan27/src/com/nwalsh/xalan/Text.java,1.1; -extensions/xalan27/src/com/nwalsh/xalan/Verbatim.java,1.1 - Norman -Walsh

    -
  • -

    Handle the case where the imageFn -is actually a URI. This still needs -work.

    -

    Modified: extensions/saxon643/com/nwalsh/saxon/ImageIntrinsics.java,1.4 -- Norman Walsh

    -
-
- -

FO

- -

The following changes have been made to the - fo code - since the 1.69.1 release.

-
  • -

    Adapted to the new indexing -code. Now works just like a wrapper that calls kosek indexing method, -originally implemented here.

    -

    Modified: fo/autoidx-ng.xsl,1.5 - Jirka -Kosek

    -
  • -

    Added parameters for header/footer -table minimum height.

    -

    Modified: fo/pagesetup.xsl,1.60; -fo/param.ent,1.100; fo/param.xweb,1.113 - Robert -Stayton

    -
  • -

    Add the index.method -parameter.

    -

    Modified: fo/param.ent,1.99; fo/param.xweb,1.112 - Robert -Stayton

    -
  • -

    Integrate support for three -indexing methods: - the original English-only method. - -Jirka Kosek's method using EXSLT extensions. - Eliot Kimber's -method using Saxon extensions. Use the 'index.method' -parameter to select.

    -

    Modified: fo/autoidx.xsl,1.38 - Robert -Stayton

    -
  • -

    Add support for TOC for -qandaset in fo output.

    -

    Modified: fo/autotoc.xsl,1.30; -fo/qandaset.xsl,1.20 - Robert Stayton

    -
  • -

    Added parameter -ulink.hyphenate.chars. Added parameter -insert.link.page.number.

    -

    Modified: fo/param.ent,1.98; -fo/param.xweb,1.111 - Robert Stayton

    -
  • -

    Implemented feature request -#942524 to add insert.link.page.number to allow link -element cross references to have a page number.

    -

    Modified: fo/xref.xsl,1.67 - -Robert Stayton

    -
  • -

    Add support for -ulink.hyphenate.chars so more characters -can be break points in urls.

    -

    Modified: fo/xref.xsl,1.66 - Robert -Stayton

    -
  • -

    Implemented patch #1075144 to make -the url text in a ulink in FO output an active link as -well.

    -

    Modified: fo/xref.xsl,1.65 - Robert Stayton

    -
  • -

    table footnotes now -have their own table.footnote.properties -attribute set.

    -

    Modified: fo/footnote.xsl,1.23 - Robert -Stayton

    -
  • -

    Add qandaset to -root.elements.

    -

    Modified: fo/docbook.xsl,1.41 - Robert -Stayton

    -
  • -

    Added mode="page.sequence" to make -it easier to put content into a page sequence. First used for -qandaset.

    -

    Modified: fo/component.xsl,1.37 - Robert -Stayton

    -
  • -

    Implemented feature request -#1434408 to support formatting -of biblioentry.

    -

    Modified: fo/biblio.xsl,1.35 - Robert -Stayton

    -
  • -

    Added -biblioentry.properties.

    -

    Modified: fo/param.ent,1.97; -fo/param.xweb,1.110 - Robert Stayton

    -
  • -

    Support PTC/Arbortext -bookmarks

    -

    Modified: fo/docbook.xsl,1.40; fo/ptc.xsl,1.1 - Norman -Walsh

    -
  • -

    Added -table.footnote.properties to permit -table footnotes to format differently from regular -footnotes.

    -

    Modified: fo/param.ent,1.96; fo/param.xweb,1.109 - Robert -Stayton

    -
  • -

    Refactored table -templates to unify their processing and support all options in -all types. Now table and informaltable, in -both Cals and Html markup, use the same templates where possible, -and all support pgwide, rotation, and floats. There is also a -placeholder table.container template to -support wrapping a table in a layout table, -so the XEP table title "continued" -extension can be more easily implemented.

    -

    Modified: fo/formal.xsl,1.52; -fo/htmltbl.xsl,1.9; fo/table.xsl,1.48 - Robert -Stayton

    -
  • -

    Added new attribute set -toc.line.properties for controlling appearance of lines in -ToC/LoT

    -

    Modified: fo/autotoc.xsl,1.29; fo/param.ent,1.95; -fo/param.xweb,1.108 - Jirka Kosek

    -
  • -

    Added support for float to example -and equation. Added support for pgwide to -figure, example, and equation (the latter -two via a dbfo pgwide="1" processing -instruction).

    -

    Modified: fo/formal.xsl,1.51 - Robert -Stayton

    -
  • -

    Add pgwide.properties -attribute-set.

    -

    Modified: fo/param.ent,1.94; fo/param.xweb,1.107 - Robert -Stayton

    -
  • -

    Added refclass.suppress -param.

    -

    If the value of refclass.suppress is -non-zero, then display refclass contents is suppressed -in output. Affects HTML and FO output -only.

    -

    Modified: fo/param.ent,1.93; fo/param.xweb,1.106; html/param.ent,1.90; -html/param.xweb,1.99; params/refclass.suppress.xml,1.1 - Michael(tm) -Smith

    -
  • -

    Improved support for -task subelements

    -

    Modified: fo/task.xsl,1.3; html/task.xsl,1.3 - -Jirka Kosek

    -
  • -

    Adjusted spacing around -K&R-formatted Funcdef and Paramdef -output such that it can more easily be discerned where one ends -and the other begins. Closes #1213264.

    -

    Modified: fo/synop.xsl,1.18 - -Michael(tm) Smith

    -
  • -

    Made handling of -paramdef/parameter in FO output consistent with that in HTML and -manpages output. Closes #1213259.

    -

    Modified: fo/synop.xsl,1.17 - Michael(tm) -Smith

    -
  • -

    Made handling of -Refnamediv consistent with formatting in HTML -and manpages output; specifically, changed so that -Refname (comma-separated list of multiple instances -found) is used (instead of Refentrytitle as -previously), then em-dash, then the Refpurpose. Closes -#1212562.

    -

    Modified: fo/refentry.xsl,1.30 - Michael(tm) -Smith

    -
  • -

    Added output of -Releaseinfo to recto titlepage ("copyright" -page) for Book in FO output. This makes it consistent -with HTML output. Closes #1327034. Thanks to Paul DuBois for -reporting.

    -

    Modified: fo/titlepage.templates.xml,1.28 - Michael(tm) -Smith

    -
  • -

    Added condition for setting -block-progression-dimension.minimum on table-row, instead of -height, when fop1.extensions is -non-zero. For an explanation of the reason for the change, -see: http://wiki.apache.org/xmlgraphics-fop/Troubleshooting/CommonLogMessages

    -

    Modified: fo/pagesetup.xsl,1.59 -- Michael(tm) Smith

    -
  • -

    Added new -refclass.suppress param for suppressing display -of Refclass in HTML and FO output. Did not add it to -manpages because manpages stylesheet is currently just silently -ignoring Refclass anyway. Closes request -#1461065. Thanks to Davor Ocelic (docelic) for -reporting.

    -

    Modified: fo/refentry.xsl,1.29; html/refentry.xsl,1.23 - -Michael(tm) Smith

    -
  • -

    Add support for keep-together PI -to informal objects.

    -

    Modified: fo/formal.xsl,1.50 - Robert -Stayton

    -
  • -

    Add support for -fop1.extensions.

    -

    Modified: fo/formal.xsl,1.49; -fo/graphics.xsl,1.44; fo/table.xsl,1.47 - Robert -Stayton

    -
  • -

    Add support for fop1 -bookmarks.

    -

    Modified: fo/docbook.xsl,1.39 - Robert -Stayton

    -
  • -

    Add fop1.extentions parameter to -add support for fop development version.

    -

    Modified: fo/param.ent,1.92; -fo/param.xweb,1.105 - Robert Stayton

    -
  • -

    Start supporting fop development -version, which will become fop version 1.

    -

    Modified: fo/fop1.xsl,1.1 - -Robert Stayton

    -
  • -

    Add template for task -in mode="xref-to".

    -

    Modified: fo/xref.xsl,1.63; html/xref.xsl,1.57 - Robert -Stayton

    -
  • -

    table footnotes now -also get footnote.properties -attribute-set.

    -

    Modified: fo/footnote.xsl,1.22 - Robert -Stayton

    -
  • -

    Added index.separator -named template to compute the separator punctuation based on -locale.

    -

    Modified: fo/autoidx.xsl,1.36 - Robert Stayton

    -
  • -

    Added support for link, -olink, and xref within OO -Classsynopsis and children. (Because DocBook NG/5 -allows it).

    -

    Modified: fo/synop.xsl,1.15; html/synop.xsl,1.19 - Michael(tm) -Smith

    -
  • -

    Support date as an -inline

    -

    Modified: fo/inline.xsl,1.43; html/inline.xsl,1.46 - Norman -Walsh

    -
  • -

    Added new parameter -keep.relative.image.uris

    -

    Modified: fo/param.ent,1.91; -fo/param.xweb,1.104; html/param.ent,1.87; html/param.xweb,1.96; -params/keep.relative.image.uris.xml,1.1 - Norman -Walsh

    -
  • -

    Map Unicode space characters -U+2000-U+200A to fo:leaders.

    -

    Modified: fo/docbook.xsl,1.38; -fo/passivetex.xsl,1.4; fo/spaces.xsl,1.1 - Jirka -Kosek

    -
  • -

    Output a real em dash for em-dash -dingbat (instead of two hypens).

    -

    Modified: fo/fo.xsl,1.7 - Michael(tm) -Smith

    -
  • -

    Support default label -width parameters for itemized and ordered lists

    -

    Modified: fo/lists.xsl,1.64; -fo/param.ent,1.90; fo/param.xweb,1.103; -params/itemizedlist.label.width.xml,1.1; -params/orderedlist.label.width.xml,1.1 - Norman -Walsh

    -
  • -

    Generate localized -title for Refsynopsisdiv if no -appropriate Title descendant found in source. Closes -#1212398. This change makes behavior for the Synopsis -title consistent with the behavior of HTML and -manpages output.

    -

    Also, added -xsl:use-attribute-sets="normal.para.spacing" to -block generated for Cmdsynopsis output. Previously, -that block had no spacing at all specified, which resulted it -being crammed up to closely to the Synopsis -head.

    -

    Modified: fo/refentry.xsl,1.28; fo/synop.xsl,1.13 - Michael(tm) -Smith

    -
  • -

    Added parameters to support -localization of index -item punctuation.

    -

    Modified: fo/autoidx.xsl,1.35 - Robert -Stayton

    -
  • -

    Added -index.number.separator, -index.range.separator, -and index.term.separator parameters to -support localization of punctuation in index -entries.

    -

    Modified: fo/param.ent,1.89; fo/param.xweb,1.102 - Robert -Stayton

    -
  • -

    Added "Cross References" -section in HTML doc (for consistency with the FO -doc). Also, moved the existing FO "Cross -References" section to follow the "Linking" -section.

    -

    Modified: fo/param.xweb,1.101; html/param.xweb,1.95 - -Michael(tm) Smith

    -
  • -

    Added ID attribues to all -Reference elements (e.g., id="tables" for the doc for -section on Table params). So pages for -all subsections of ref docs now have stable filenames instead -of arbitrary generated filenames.

    -

    Modified: fo/param.xweb,1.100; -html/param.xweb,1.94 - Michael(tm) Smith

    -
  • -

    Added two new parameters for -handling of multi-term -varlistentry elements:

    -

    variablelist.term.break.after: -When the variablelist.term.break.after is -non-zero, it will generate a line break after each -term multi-term -varlistentry.

    -

    variablelist.term.separator: -When a varlistentry contains multiple term -elements, the string specified in the value of the -variablelist.term.separator parameter is -placed after each term except the last. The default -is ", " (a comma followed by a space). To suppress rendering of -the separator, set the value of -variablelist.term.separator to the empty -string ("").

    -

    These parameters are primarily intended to be -useful if you have multi-term varlistentries that have long -terms.

    -

    Closes #1306676. Thanks to Sam Steingold for -providing an example "lots of long terms" doc that demonstrated -the value of having these options.

    -

    Also, added -normalize-space() call to processing of each -term.

    -

    This change affects all output formats -(HTML, PDF, manpages). The default behavior should pretty much -remain the same as before, but it is possible (as always) that -the change may introduce some -new bugginess.

    -

    Modified: fo/lists.xsl,1.62; fo/param.ent,1.88; -fo/param.xweb,1.99; html/lists.xsl,1.48; html/param.ent,1.86; -html/param.xweb,1.93; manpages/lists.xsl,1.22; -manpages/param.ent,1.14; manpages/param.xweb,1.16; -params/variablelist.term.break.after.xml,1.1; -params/variablelist.term.separator.xml,1.1 - Michael(tm) -Smith

    -
  • -

    Add sidebar titlepage -placeholder attset for styles.

    -

    Modified: fo/titlepage.xsl,1.37 - Robert -Stayton

    -
  • -

    Add titlepage for -sidebar.

    -

    Modified: fo/titlepage.templates.xml,1.27 - Robert -Stayton

    -
  • -

    Implemented RFE -#1292615.

    -

    Added bunch of new parameters (attribute sets) -that affect list presentation: list.block.properties, -itemizedlist.properties, orderedlist.properties, -itemizedlist.label.properties and -orderedlist.label.properties. Default behaviour -of stylesheets has not been changed but further customizations will be -much more easier.

    -

    Modified: fo/lists.xsl,1.61; fo/param.ent,1.87; -fo/param.xweb,1.98; params/itemizedlist.label.properties.xml,1.1; -params/itemizedlist.properties.xml,1.1; -params/list.block.properties.xml,1.1; -params/orderedlist.label.properties.xml,1.1; -params/orderedlist.properties.xml,1.1 - Jirka -Kosek

    -
  • -

    Implemented RFE -#1242092.

    -

    You can enable crop marks in your document by -setting crop.marks=1 and xep.extensions=1. Appearance of crop -marks can be controlled by parameters -crop.mark.bleed (6pt), -crop.mark.offset (24pt) and -crop.mark.width (0.5pt).

    -

    Also there -is new named template called user-xep-pis. You can overwrite it in -order to produce some PIs that can control XEP as described in -http://www.renderx.com/reference.html#Output_Formats

    -

    Modified: fo/docbook.xsl,1.36; -fo/param.ent,1.86; fo/param.xweb,1.97; fo/xep.xsl,1.23; -params/crop.mark.bleed.xml,1.1; params/crop.mark.offset.xml,1.1; -params/crop.mark.width.xml,1.1; params/crop.marks.xml,1.1 - Jirka -Kosek

    -
-
- -

HTML

- -

The following changes have been made to the - html code - since the 1.69.1 release.

-
  • -

    implemented -index.method parameter and three -methods.

    -

    Modified: html/autoidx.xsl,1.28 - Robert -Stayton

    -
  • -

    added index.method -parameter to support 3 indexing methods.

    -

    Modified: html/param.ent,1.94; -html/param.xweb,1.103 - Robert Stayton

    -
  • -

    Implemented feature request -#1072510 as a processing instruction to permit including external -HTML content into HTML output.

    -

    Modified: html/pi.xsl,1.9 - Robert -Stayton

    -
  • -

    Added new parameter -chunk.tocs.and.lots.has.title which -controls presence of title in a separate chunk with -ToC/LoT. Disabling title can be very useful if you are -generating frameset output (well, yes those frames, but some customers -really want them ;-).

    -

    Modified: html/chunk-code.xsl,1.15; -html/param.ent,1.93; html/param.xweb,1.102; -params/chunk.tocs.and.lots.has.title.xml,1.1 - Jirka -Kosek

    -
  • -

    Support dbhtml/dbfo start PI for -orderedlist numbering in both HTML and -FO

    -

    Modified: common/common.xsl,1.61; html/lists.xsl,1.50 - Norman -Walsh

    -
  • -

    Allow ToC without -title also for set and -book.

    -

    Modified: html/autotoc.xsl,1.37; html/division.xsl,1.12 - -Jirka Kosek

    -
  • -

    Implemented floats uniformly for -figure, example, equation -and informalfigure, informalexample, and -informalequation.

    -

    Modified: html/formal.xsl,1.22 - Robert -Stayton

    -
  • -

    Added the -autotoc.label.in.hyperlink param.

    -

    If the value -of autotoc.label.in.hyperlink is non-zero, labels -are included in hyperlinked titles in the TOC. If it -is instead zero, labels are still displayed prior to the -hyperlinked titles, but are not hyperlinked along with the -titles.

    -

    Closes patch #1065868. Thanks to anatoly techtonik -for the patch.

    -

    Modified: html/autotoc.xsl,1.36; html/param.ent,1.92; -html/param.xweb,1.101; params/autotoc.label.in.hyperlink.xml,1.1 - -Michael(tm) Smith

    -
  • -

    Added two new params: -html.head.legalnotice.link.types -and html.head.legalnotice.link.multiple.

    -

    If -the value of the generate.legalnotice.link is -non-zero, then the stylesheet generates (in the head -section of the HTML source) either a single HTML -link element or, if the value of -the html.head.legalnotice.link.multiple is -non-zero, one link element for each link -type specified. Each link has the -following attributes:

    -

    - a rel attribute whose value -is derived from the value of -html.head.legalnotice.link.types

    -

    - -an href attribute whose value is set to the URL of the file -containing the legalnotice

    -

    - a title -attribute whose value is set to the title of the -corresponding legalnotice (or a title -programatically determined by the stylesheet)

    -

    For -example:

    -

    <link rel="copyright" -href="ln-id2524073.html" title="Legal Notice">

    -

    Closes -#1476450. Thanks to Sam Steingold.

    -

    Modified: html/chunk-common.xsl,1.45; -html/param.ent,1.91; html/param.xweb,1.100; -params/generate.legalnotice.link.xml,1.4; -params/html.head.legalnotice.link.multiple.xml,1.1; -params/html.head.legalnotice.link.types.xml,1.1 - Michael(tm) -Smith

    -
  • -

    Added refclass.suppress -param.

    -

    If the value of refclass.suppress is -non-zero, then display refclass contents is suppressed -in output. Affects HTML and FO output -only.

    -

    Modified: fo/param.ent,1.93; fo/param.xweb,1.106; html/param.ent,1.90; -html/param.xweb,1.99; params/refclass.suppress.xml,1.1 - Michael(tm) -Smith

    -
  • -

    Improved support for -task subelements

    -

    Modified: fo/task.xsl,1.3; html/task.xsl,1.3 - -Jirka Kosek

    -
  • -

    Added new -refclass.suppress param for suppressing display -of Refclass in HTML and FO output. Did not add it to -manpages because manpages stylesheet is currently just silently -ignoring Refclass anyway. Closes request -#1461065. Thanks to Davor Ocelic (docelic) for -reporting.

    -

    Modified: fo/refentry.xsl,1.29; html/refentry.xsl,1.23 - -Michael(tm) Smith

    -
  • -

    Process alt text with -normalize-space(). Replace tab indents with -spaces.

    -

    Modified: html/graphics.xsl,1.57 - Robert -Stayton

    -
  • -

    Content of citation -element is automatically linked to the bibliographic entry -with the corresponding abbrev.

    -

    Modified: html/biblio.xsl,1.26; -html/inline.xsl,1.47; html/xref.xsl,1.58 - Jirka -Kosek

    -
  • -

    Add template for task -in mode="xref-to".

    -

    Modified: fo/xref.xsl,1.63; html/xref.xsl,1.57 - Robert -Stayton

    -
  • -

    Suppress ID warnings if the -.warnings parameter is 0

    -

    Modified: html/html.xsl,1.17 - Norman -Walsh

    -
  • -

    Add support for floatstyle to -figure.

    -

    Modified: html/formal.xsl,1.21 - Robert -Stayton

    -
  • -

    Handling of xref to -area/areaset need support in extensions code also. I currently have no -time to touch extensions code, so code is here to be enabled when -extension is fixed also.

    -

    Modified: html/xref.xsl,1.56 - Jirka -Kosek

    -
  • -

    Added 3 parameters for overriding -gentext for index -punctuation.

    -

    Modified: html/param.ent,1.89; html/param.xweb,1.98 - Robert -Stayton

    -
  • -

    Added parameters to support -localization of index item punctuation. Added -index.separator named template to compute -the separator punctuation based on -locale.

    -

    Modified: html/autoidx.xsl,1.27 - Robert -Stayton

    -
  • -

    Added a <div -class="{$class}-contents"> wrapper around output of contents -of all formal objects. Also, added an optional <br -class="{class}-break"/> linebreak after all formal -objects.

    -

    WARNING: Because this change places an additional -DIV between the DIV wrapper for the equation and the -equation contents, it may break some existing CSS -stylesheets that have been created with the assumption that there -would never be an intervening DIV there.

    -

    The following is -an example of what Equation output looks like as a -result of the changes described above.

    -

    <div -class="equation"> <a name="three" -id="three"></a>

    -

    <p -class="title"><b>(1.3)</b></p>

    -

    -<div class="equation-contents"> <span -class="mathphrase">1+1=3</span> -</div> </div><br -class="equation-break">

    -

    Rationale: These changes allow -CSS control of the placement of the formal-object -title relative to the formal-object -contents. For example, using the CSS "float" property -enables the title and contents to be rendered on the -same line. Example stylesheet:

    -

    .equation -{ margin-top: 20px; margin-bottom: 20px; } -.equation-contents { float: left; }

    -

    -.equation .title { margin-top: 0; -float: right; margin-right: 200px; }

    -

    -.equation .title b { font-weight: -normal; }

    -

    .equation-break { clear: both; -}

    -

    Note that the purpose of the ".equation-break" class is -to provide a way to clear off the floats.

    -

    If you want -to instead have the equation title rendered to -the left of the equation contents, you can do -something like this:

    -

    .equation { -margin-top: 20px; width: 300px; margin-bottom: 20px; -} .equation-contents { float: right; }

    -

    -.equation .title { margin-top: 0; -float: left; margin-right: 200px; }

    -

    -.equation .title b { font-weight: -normal; }

    -

    .equation-break { clear: both; -}

    -

    Modified: html/formal.xsl,1.20 - Michael(tm) Smith

    -
  • -

    Added a chunker.output.quiet -top-level parameter so that the chunker can be made quiet by -default

    -

    Modified: html/chunker.xsl,1.26 - Norman Walsh

    -
  • -

    Added support for link, -olink, and xref within OO -Classsynopsis and children. (Because DocBook NG/5 -allows it).

    -

    Modified: fo/synop.xsl,1.15; html/synop.xsl,1.19 - Michael(tm) -Smith

    -
  • -

    New parameter: -id.warnings. If non-zero, warnings are -generated for titled objects that don't have titles. True by default; -I wonder if this will be too aggressive?

    -

    Modified: html/biblio.xsl,1.25; -html/component.xsl,1.27; html/division.xsl,1.11; html/formal.xsl,1.19; -html/glossary.xsl,1.20; html/html.xsl,1.13; html/index.xsl,1.16; -html/param.ent,1.88; html/param.xweb,1.97; html/refentry.xsl,1.22; -html/sections.xsl,1.30; params/id.warnings.xml,1.1 - Norman -Walsh

    -
  • -

    If the -keep.relative.image.uris parameter is true, -don't use the absolute URI (as calculated from xml:base) in -the img src attribute, us the value the author -specified. Note that we still have to calculate the absolute -filename for use in the image intrinsics -extension.

    -

    Modified: html/graphics.xsl,1.56 - Norman -Walsh

    -
  • -

    Support date as an -inline

    -

    Modified: fo/inline.xsl,1.43; html/inline.xsl,1.46 - Norman -Walsh

    -
  • -

    Added new parameter -keep.relative.image.uris

    -

    Modified: fo/param.ent,1.91; -fo/param.xweb,1.104; html/param.ent,1.87; html/param.xweb,1.96; -params/keep.relative.image.uris.xml,1.1 - Norman -Walsh

    -
  • -

    Added two new parameters for -handling of multi-term -varlistentry elements:

    -

    variablelist.term.break.after: -When the variablelist.term.break.after is -non-zero, it will generate a line break after each -term multi-term -varlistentry.

    -

    variablelist.term.separator: -When a varlistentry contains multiple term -elements, the string specified in the value of the -variablelist.term.separator parameter is -placed after each term except the last. The default -is ", " (a comma followed by a space). To suppress rendering of -the separator, set the value of -variablelist.term.separator to the empty -string ("").

    -

    These parameters are primarily intended to be -useful if you have multi-term varlistentries that have long -terms.

    -

    Closes #1306676. Thanks to Sam Steingold for -providing an example "lots of long terms" doc that demonstrated -the value of having these options.

    -

    Also, added -normalize-space() call to processing of each -term.

    -

    This change affects all output formats -(HTML, PDF, manpages). The default behavior should pretty much -remain the same as before, but it is possible (as always) that -the change may introduce some -new bugginess.

    -

    Modified: fo/lists.xsl,1.62; fo/param.ent,1.88; -fo/param.xweb,1.99; html/lists.xsl,1.48; html/param.ent,1.86; -html/param.xweb,1.93; manpages/lists.xsl,1.22; -manpages/param.ent,1.14; manpages/param.xweb,1.16; -params/variablelist.term.break.after.xml,1.1; -params/variablelist.term.separator.xml,1.1 - Michael(tm) -Smith

    -
  • -

    Added "wrapper-name" param to -inline.charseq named template, enabling it to output inlines -other than just "span". Acronym and Abbrev -templates now use inline.charseq to output HTML -"acronym" and "abbr" elements (instead of -"span"). Closes #1305468. Thanks to Sam Steingold for suggesting -the change.

    -

    Modified: html/inline.xsl,1.45 - Michael(tm) -Smith

    -
-
- -

Manpages

- -

The following changes have been made to the - manpages code - since the 1.69.1 release.

-
  • -

    Added the following -params:

    -

    - man.indent.width (string-valued) - -man.indent.refsect (boolean) - man.indent.blurbs (boolean) -- man.indent.lists (boolean) - man.indent.verbatims -(boolean)

    -

    Note that in earlier snapshots, man.indent.width -was named man.indentation.default.value and the boolean params -had names like man.indentation.*.adjust. Also the -man.indent.blurbs param was called man.indentation.authors.adjust -(or something).

    -

    The behavior now is: If the value of a -particular man.indent.* boolean param is non-zero, the -corresponding contents (refsect*, list items, -authorblurb/personblurb, vervatims) are displayed with a left -margin indented by a width equal to the value -of man.indent.width.

    -

    Modified: params/man.indent.blurbs.xml,1.1; -manpages/docbook.xsl,1.74; manpages/info.xsl,1.20; -manpages/lists.xsl,1.30; manpages/other.xsl,1.20; -manpages/param.ent,1.22; manpages/param.xweb,1.24; -manpages/refentry.xsl,1.14; params/man.indent.lists.xml,1.1; -params/man.indent.refsect.xml,1.1; -params/man.indent.verbatims.xml,1.1; params/man.indent.width.xml,1.1 - -Michael(tm) Smith

    -
  • -

    Added -man.table.footnotes.divider param.

    -

    In each -table that contains footenotes, the string specified -by the man.table.footnotes.divider parameter is output -before the list of footnotes for the -table.

    -

    Modified: manpages/docbook.xsl,1.73; -manpages/links.xsl,1.6; manpages/param.ent,1.21; -manpages/param.xweb,1.23; params/man.table.footnotes.divider.xml,1.1 - -Michael(tm) Smith

    -
  • -

    Added the -man.output.in.separate.dir, -man.output.base.dir, -and man.output.subdirs.enabled parameters.

    -

    The -man.output.base.dir parameter specifies the -base directory into which man-page files are -output. The man.output.subdirs.enabled parameter controls whether -the files are output in subdirectories within the base -directory.

    -

    The values of the -man.output.base.dir -and man.output.subdirs.enabled parameters are used only if the -value of man.output.in.separate.dir parameter is non-zero. If the -value of man.output.in.separate.dir is zero, man-page files are -not output in a separate -directory.

    -

    Modified: manpages/docbook.xsl,1.72; manpages/param.ent,1.20; -manpages/param.xweb,1.22; params/man.output.base.dir.xml,1.1; -params/man.output.in.separate.dir.xml,1.1; -params/man.output.subdirs.enabled.xml,1.1 - Michael(tm) -Smith

    -
  • -

    Added -man.font.table.headings and -man.font.table.title params, for -controlling font in table headings and -titles.

    -

    Modified: manpages/docbook.xsl,1.71; manpages/param.ent,1.19; -manpages/param.xweb,1.21; params/man.font.table.headings.xml,1.1; -params/man.font.table.title.xml,1.1 - Michael(tm) -Smith

    -
  • -

    Added -man.font.funcsynopsisinfo and -man.font.funcprototype params, for specifying the roff -font (for example, BI, B, I) for funcsynopsisinfo and -funcprototype output.

    -

    Modified: manpages/block.xsl,1.19; -manpages/docbook.xsl,1.69; manpages/param.ent,1.18; -manpages/param.xweb,1.20; manpages/synop.xsl,1.29; -manpages/table.xsl,1.21; params/man.font.funcprototype.xml,1.1; -params/man.font.funcsynopsisinfo.xml,1.1 - Michael(tm) -Smith

    -
  • -

    Added -man.segtitle.suppress param.

    -

    If the value of -man.segtitle.suppress is non-zero, then display -of segtitle contents is suppressed in -output.

    -

    Modified: manpages/docbook.xsl,1.68; manpages/param.ent,1.17; -manpages/param.xweb,1.19; params/man.segtitle.suppress.xml,1.1 - -Michael(tm) Smith

    -
  • -

    Added -man.output.manifest.enabled and -man.output.manifest.filename params.

    -

    If -man.output.manifest.enabled is non-zero, a list -of filenames for man pages generated by the stylesheet -transformation is written to the file named by -man.output.manifest.filename

    -

    Modified: manpages/docbook.xsl,1.67; -manpages/other.xsl,1.19; manpages/param.ent,1.16; -manpages/param.xweb,1.18; params/man.output.manifest.enabled.xml,1.1; -params/man.output.manifest.filename.xml,1.1; -tools/make/Makefile.DocBook,1.4 - Michael(tm) -Smith

    -
  • -

    Added -refentry.meta.get.quietly param.

    -

    If zero (the -default), notes and warnings about "missing" markup are generated -during gathering of refentry metadata. If -non-zero, the metadata is gathered "quietly" -- that is, the -notes and warnings are suppressed.

    -

    NOTE: If you are -processing a large amount of refentry content, you -may be able to speed up processing significantly by setting a -non-zero value for -refentry.meta.get.quietly.

    -

    Modified: common/refentry.xsl,1.17; -manpages/param.ent,1.15; manpages/param.xweb,1.17; -params/refentry.meta.get.quietly.xml,1.1 - Michael(tm) -Smith

    -
  • -

    Changed names of all boolean -indentation params to man.indent.* Also discarded individual -man.indent.*.value params and switched to just using a common -man.indent.width param (3n by default).

    -

    Modified: manpages/docbook.xsl,1.66; -manpages/info.xsl,1.19; manpages/lists.xsl,1.29; -manpages/other.xsl,1.18; manpages/refentry.xsl,1.13 - Michael(tm) -Smith

    -
  • -

    Added boolean -man.output.in.separate.dir param, to control whether or not man -files are output in separate directory.

    -

    Modified: manpages/docbook.xsl,1.65; -manpages/utility.xsl,1.14 - Michael(tm) Smith

    -
  • -

    Added options for controlling -indentation of verbatim output. Controlled through the -man.indentation.verbatims.adjust -and man.indentation.verbatims.value params. Closes -#1242997

    -

    Modified: manpages/block.xsl,1.15; manpages/docbook.xsl,1.64 - -Michael(tm) Smith

    -
  • -

    Added options for controlling -indentation in lists and in *blurb output in the AUTHORS -section. Controlled through -the man.indentation.lists.adjust, -man.indentation.lists.value, man.indentation.authors.adjust, and -man.indentation.authors.value parameters. Default is 3 characters -(instead of the roff default of 8 characters). Closes -#1449369.

    -

    Also, removed the indent that was being set on -informalexample outuput. I will instead add an option -for indenting verbatims, which I think is what the -informalexample indent was intended -for originally.

    -

    Modified: manpages/block.xsl,1.14; -manpages/docbook.xsl,1.63; manpages/info.xsl,1.18; -manpages/lists.xsl,1.28 - Michael(tm) Smith

    -
  • -

    Changed line-spacing call before -synopfragment to use ".sp -1n" ("n" units specified) -instead of plain ".sp -1"

    -

    Modified: manpages/synop.xsl,1.28 - Michael(tm) -Smith

    -
  • -

    Added support for writing man -files into a specific output directory and into appropriate -subdirectories within that output directory. Controlled through -the man.base.dir parameter (similar to the -base.dir support in the HTML stylesheet) and -the man.subdirs.enabled parameter, which automatically determines -the name of an appropriate subdir (for example, man/man7, -man/man1, etc.) based on the section number/manvolnum -of the source Refentry.

    -

    Closes #1255036 and -#1170317. Thanks to Denis Bradford for the original feature -request, and to Costin Stroie for submitting a patch that was -very helpful in implementing the -support.

    -

    Modified: manpages/docbook.xsl,1.62; manpages/utility.xsl,1.13 - -Michael(tm) Smith

    -
  • -

    Refined XPath statements and -notification messages for refentry metadata -handling.

    -

    Modified: common/common.xsl,1.59; common/refentry.xsl,1.14; -manpages/docbook.xsl,1.61; manpages/other.xsl,1.17 - Michael(tm) -Smith

    -
  • -

    Added support for -copyright and legalnotice. The manpages -stylesheets now output a COPYRIGHT section, -after the AUTHORS section, if a copyright -or legalnotice is found in the source. The -section contains the copyright contents followed -by the legalnotice contents. Closes -#1450209.

    -

    Modified: manpages/docbook.xsl,1.59; manpages/info.xsl,1.17 - -Michael(tm) Smith

    -
  • -

    Drastically reworked all of the -XPath expressions used in refentry metadata gathering --- completely removed $parentinfo and turned $info into a set of -nodes that includes the *info contents of the Refentry -plus the *info contents all all of its ancestor elements. The -basic XPath expression now used throughout is (using the example -of checking for a date):

    -

    -(($info[//date])[last()]/date)[1].

    -

    That selects the "last" -*info/date date in document order -- that is, the one -eitther on the Refentry itself or on the -closest ancestor to the Refentry.

    -

    It's -likely this change may break some things; may need to pick up -some pieces later.

    -

    Also, changed the default value for the -man.th.extra2.max.length from 40 to -30.

    -

    Modified: common/common.xsl,1.58; common/refentry.xsl,1.7; -params/man.th.extra2.max.length.xml,1.2; -params/refentry.date.profile.xml,1.2; -params/refentry.manual.profile.xml,1.2; -params/refentry.source.name.profile.xml,1.2; -params/refentry.version.profile.xml,1.2; manpages/docbook.xsl,1.58; -manpages/other.xsl,1.15 - Michael(tm) Smith

    -
  • -

    Added support for DocBook 5 -namespace-stripping in manpages stylesheet. Closes request -#1210692.

    -

    Modified: common/common.xsl,1.56; manpages/docbook.xsl,1.57 - -Michael(tm) Smith

    -
  • -

    Fixed handling of table -footnotes. With this checkin, the table support in the -manpages stylesheet is now basically feature complete. So this -change closes request #619532, "No support for tables" -- the -oldest currently open manpages feature request, submitted by Ben -Secrest (blsecres) on 2002-10-07. Congratulations to me [patting -myself on the back].

    -

    Modified: manpages/block.xsl,1.11; -manpages/docbook.xsl,1.55; manpages/table.xsl,1.15 - Michael(tm) -Smith

    -
  • -

    Added handling for -table titles. Also fixed handling of nested tables; -nest tables are now "extracted" and displayed just after their -parent tables.

    -

    Modified: manpages/docbook.xsl,1.54; manpages/table.xsl,1.14 -- Michael(tm) Smith

    -
  • -

    Added option for turning off bold -formatting in Funcsynopsis. Boldface formatting in -function synopsis is mandated in the -man(7) man page and is used almost universally in existing man -pages. Despite that, it really does look like crap to have an -entire Funcsynopsis output in bold, so I added params -for turning off the bold formatting and/or replacing it with a -different roff special font (e.g., "RI" for alternating -roman/italic instead of the default "BI" for alternating -bold/italic). The new params -are "man.funcprototype.font" and -"man.funcsynopsisinfo.font". To be documented -later.

    -

    Closes #1452247. Thanks to Joe Orton for the feature -request.

    -

    Modified: params/man.string.subst.map.xml,1.16; -manpages/block.xsl,1.10; manpages/docbook.xsl,1.51; -manpages/inline.xsl,1.16; manpages/synop.xsl,1.27 - Michael(tm) -Smith

    -
  • -

    Use AUTHORS instead of -AUTHOR if we have multiple people to attribute. Also, -fixed checking such that we generate -author section even if we don't have an -author (as long as there is at least one other -person/entity we can put in the -section). Also adjusted assembly of content for -Author metainfo field such that we now not only use -author, but try to find a "best match" if we can't -find an author name to put there.

    -

    Closes -#1233592. Thanks to Sam Steingold for the -request.

    -

    Modified: manpages/info.xsl,1.12 - Michael(tm) -Smith

    -
  • -

    Changes for request #1243027, -"Impove handling of AUTHOR section." This -adds support for Collab, Corpauthor, Corpcredt, -Orgname, Publishername, and -Publisher. Also adds support for output -of Affiliation and its children, and support for using -gentext strings for auto-attributing roles (Author, -Editor, Publisher, Translator, etc.). Also -did a lot of code cleanup and modularization of all the -AUTHOR handling code. And fixed a bug that was causing -Author info to not be picked up correctly -for metainfo comment we embed in man-page -source.

    -

    Modified: manpages/info.xsl,1.11 - Michael(tm) -Smith

    -
  • -

    Support bold output for -"emphasis remap='B'". (because Eric Raymond's -doclifter(1) tool converts groff source marked up with ".B" -request or "\fB" escapes to DocBook "emphasis -remap='B'".)

    -

    Modified: manpages/inline.xsl,1.14 - Michael(tm) -Smith

    -
  • -

    Added support for -Segmentedlist. Details: Output is tabular, with no -option for "list" type output. Output for Segtitle -elements can be supressed by -setting man.segtitle.suppress. If Segtitle -content is output, it is rendered in italic type (not bold -because not all terminals support bold and so italic ensures the -stand out on those terminals). Extra space (.sp line) at end of -table code ensures that it gets handled correctly in -the case where its source is the child of a Para. -Closes feature-request #1400097. Thanks to Daniel Leidert for the -patch and push, and to Alastair Rankine for filing the original -feature request.

    -

    Modified: manpages/lists.xsl,1.23; -manpages/utility.xsl,1.10 - Michael(tm) Smith

    -
  • -

    Improved handling or -Author/Editor/Othercredit.

    -

    Reworked content of -(non-visible) comment added at top of each page (metadata -stuff).

    -

    Added support for generating a -manifest file (useful for cleaning up -after builds, etc.)

    -

    Modified: manpages/docbook.xsl,1.46; -manpages/info.xsl,1.9; manpages/other.xsl,1.12; -manpages/utility.xsl,1.6 - Michael(tm) Smith

    -
  • -

    Added two new parameters for -handling of multi-term -varlistentry elements:

    -

    variablelist.term.break.after: -When the variablelist.term.break.after is -non-zero, it will generate a line break after each -term multi-term -varlistentry.

    -

    variablelist.term.separator: -When a varlistentry contains multiple term -elements, the string specified in the value of the -variablelist.term.separator parameter is -placed after each term except the last. The default -is ", " (a comma followed by a space). To suppress rendering of -the separator, set the value of -variablelist.term.separator to the empty -string ("").

    -

    These parameters are primarily intended to be -useful if you have multi-term varlistentries that have long -terms.

    -

    Closes #1306676. Thanks to Sam Steingold for -providing an example "lots of long terms" doc that demonstrated -the value of having these options.

    -

    Also, added -normalize-space() call to processing of each -term.

    -

    This change affects all output formats -(HTML, PDF, manpages). The default behavior should pretty much -remain the same as before, but it is possible (as always) that -the change may introduce some -new bugginess.

    -

    Modified: fo/lists.xsl,1.62; fo/param.ent,1.88; -fo/param.xweb,1.99; html/lists.xsl,1.48; html/param.ent,1.86; -html/param.xweb,1.93; manpages/lists.xsl,1.22; -manpages/param.ent,1.14; manpages/param.xweb,1.16; -params/variablelist.term.break.after.xml,1.1; -params/variablelist.term.separator.xml,1.1 - Michael(tm) -Smith

    -
-
- -

Params

- -

The following changes have been made to the - params code - since the 1.69.1 release.

-
  • -

    New parameters to set -header/footer table minimum -height.

    -

    Modified: params/footer.table.height.xml,1.1; -params/header.table.height.xml,1.1 - Robert -Stayton

    -
  • -

    Support multiple indexing methods -for different languages.

    -

    Modified: params/index.method.xml,1.1 - Robert -Stayton

    -
  • -

    Remove qandaset and -qandadiv from generate.toc for fo -output because formerly it wasn't working, but now it is and -the default behavior should stay the -same.

    -

    Modified: params/generate.toc.xml,1.8 - Robert -Stayton

    -
  • -

    add support for page number -references to link element -too.

    -

    Modified: params/insert.link.page.number.xml,1.1 - Robert -Stayton

    -
  • -

    Add support for more characters to -hyphen on when ulink.hyphenate is turned -on.

    -

    Modified: params/ulink.hyphenate.chars.xml,1.1; -params/ulink.hyphenate.xml,1.3 - Robert Stayton

    -
  • -

    New attribute-set to format -biblioentry and -bibliomixed.

    -

    Modified: params/biblioentry.properties.xml,1.1 - -Robert Stayton

    -
  • -

    Added new parameter -chunk.tocs.and.lots.has.title which -controls presence of title in a separate chunk with -ToC/LoT. Disabling title can be very useful if you are -generating frameset output (well, yes those frames, but some customers -really want them ;-).

    -

    Modified: html/chunk-code.xsl,1.15; -html/param.ent,1.93; html/param.xweb,1.102; -params/chunk.tocs.and.lots.has.title.xml,1.1 - Jirka -Kosek

    -
  • -

    Added new attribute set -toc.line.properties for controlling appearance of lines in -ToC/LoT

    -

    Modified: params/toc.line.properties.xml,1.1 - Jirka -Kosek

    -
  • -

    Allow table footnotes -to have different properties from regular -footnotes.

    -

    Modified: params/table.footnote.properties.xml,1.1 - Robert -Stayton

    -
  • -

    Set properties for pgwide="1" -objects.

    -

    Modified: params/pgwide.properties.xml,1.1 - Robert -Stayton

    -
  • -

    Added the -autotoc.label.in.hyperlink param.

    -

    If the value -of autotoc.label.in.hyperlink is non-zero, labels -are included in hyperlinked titles in the TOC. If it -is instead zero, labels are still displayed prior to the -hyperlinked titles, but are not hyperlinked along with the -titles.

    -

    Closes patch #1065868. Thanks to anatoly techtonik -for the patch.

    -

    Modified: html/autotoc.xsl,1.36; html/param.ent,1.92; -html/param.xweb,1.101; params/autotoc.label.in.hyperlink.xml,1.1 - -Michael(tm) Smith

    -
  • -

    Added two new params: -html.head.legalnotice.link.types -and html.head.legalnotice.link.multiple.

    -

    If -the value of the generate.legalnotice.link is -non-zero, then the stylesheet generates (in the head -section of the HTML source) either a single HTML -link element or, if the value of -the html.head.legalnotice.link.multiple is -non-zero, one link element for each link -type specified. Each link has the -following attributes:

    -

    - a rel attribute whose value -is derived from the value of -html.head.legalnotice.link.types

    -

    - -an href attribute whose value is set to the URL of the file -containing the legalnotice

    -

    - a title -attribute whose value is set to the title of the -corresponding legalnotice (or a title -programatically determined by the stylesheet)

    -

    For -example:

    -

    <link rel="copyright" -href="ln-id2524073.html" title="Legal Notice">

    -

    Closes -#1476450. Thanks to Sam Steingold.

    -

    Modified: html/chunk-common.xsl,1.45; -html/param.ent,1.91; html/param.xweb,1.100; -params/generate.legalnotice.link.xml,1.4; -params/html.head.legalnotice.link.multiple.xml,1.1; -params/html.head.legalnotice.link.types.xml,1.1 - Michael(tm) -Smith

    -
  • -

    Added the following -params:

    -

    - man.indent.width (string-valued) - -man.indent.refsect (boolean) - man.indent.blurbs (boolean) -- man.indent.lists (boolean) - man.indent.verbatims -(boolean)

    -

    Note that in earlier snapshots, man.indent.width -was named man.indentation.default.value and the boolean params -had names like man.indentation.*.adjust. Also the -man.indent.blurbs param was called man.indentation.authors.adjust -(or something).

    -

    The behavior now is: If the value of a -particular man.indent.* boolean param is non-zero, the -corresponding contents (refsect*, list items, -authorblurb/personblurb, vervatims) are displayed with a left -margin indented by a width equal to the value -of man.indent.width.

    -

    Modified: params/man.indent.blurbs.xml,1.1; -manpages/docbook.xsl,1.74; manpages/info.xsl,1.20; -manpages/lists.xsl,1.30; manpages/other.xsl,1.20; -manpages/param.ent,1.22; manpages/param.xweb,1.24; -manpages/refentry.xsl,1.14; params/man.indent.lists.xml,1.1; -params/man.indent.refsect.xml,1.1; -params/man.indent.verbatims.xml,1.1; params/man.indent.width.xml,1.1 - -Michael(tm) Smith

    -
  • -

    Added -man.table.footnotes.divider param.

    -

    In each -table that contains footenotes, the string specified -by the man.table.footnotes.divider parameter is output -before the list of footnotes for the -table.

    -

    Modified: manpages/docbook.xsl,1.73; -manpages/links.xsl,1.6; manpages/param.ent,1.21; -manpages/param.xweb,1.23; params/man.table.footnotes.divider.xml,1.1 - -Michael(tm) Smith

    -
  • -

    Added the -man.output.in.separate.dir, -man.output.base.dir, -and man.output.subdirs.enabled parameters.

    -

    The -man.output.base.dir parameter specifies the -base directory into which man-page files are -output. The man.output.subdirs.enabled parameter controls whether -the files are output in subdirectories within the base -directory.

    -

    The values of the -man.output.base.dir -and man.output.subdirs.enabled parameters are used only if the -value of man.output.in.separate.dir parameter is non-zero. If the -value of man.output.in.separate.dir is zero, man-page files are -not output in a separate -directory.

    -

    Modified: manpages/docbook.xsl,1.72; manpages/param.ent,1.20; -manpages/param.xweb,1.22; params/man.output.base.dir.xml,1.1; -params/man.output.in.separate.dir.xml,1.1; -params/man.output.subdirs.enabled.xml,1.1 - Michael(tm) -Smith

    -
  • -

    Added -man.font.table.headings and -man.font.table.title params, for -controlling font in table headings and -titles.

    -

    Modified: manpages/docbook.xsl,1.71; manpages/param.ent,1.19; -manpages/param.xweb,1.21; params/man.font.table.headings.xml,1.1; -params/man.font.table.title.xml,1.1 - Michael(tm) -Smith

    -
  • -

    Added -man.font.funcsynopsisinfo and -man.font.funcprototype params, for specifying the roff -font (for example, BI, B, I) for funcsynopsisinfo and -funcprototype output.

    -

    Modified: manpages/block.xsl,1.19; -manpages/docbook.xsl,1.69; manpages/param.ent,1.18; -manpages/param.xweb,1.20; manpages/synop.xsl,1.29; -manpages/table.xsl,1.21; params/man.font.funcprototype.xml,1.1; -params/man.font.funcsynopsisinfo.xml,1.1 - Michael(tm) -Smith

    -
  • -

    Changed to select="0" in -refclass.suppress (instead of -..>0</..)

    -

    Modified: params/refclass.suppress.xml,1.3 - Michael(tm) -Smith

    -
  • -

    Added -man.segtitle.suppress param.

    -

    If the value of -man.segtitle.suppress is non-zero, then display -of segtitle contents is suppressed in -output.

    -

    Modified: manpages/docbook.xsl,1.68; manpages/param.ent,1.17; -manpages/param.xweb,1.19; params/man.segtitle.suppress.xml,1.1 - -Michael(tm) Smith

    -
  • -

    Added -man.output.manifest.enabled and -man.output.manifest.filename params.

    -

    If -man.output.manifest.enabled is non-zero, a list -of filenames for man pages generated by the stylesheet -transformation is written to the file named by -man.output.manifest.filename

    -

    Modified: manpages/docbook.xsl,1.67; -manpages/other.xsl,1.19; manpages/param.ent,1.16; -manpages/param.xweb,1.18; params/man.output.manifest.enabled.xml,1.1; -params/man.output.manifest.filename.xml,1.1; -tools/make/Makefile.DocBook,1.4 - Michael(tm) -Smith

    -
  • -

    Added refclass.suppress -param.

    -

    If the value of refclass.suppress is -non-zero, then display refclass contents is suppressed -in output. Affects HTML and FO output -only.

    -

    Modified: fo/param.ent,1.93; fo/param.xweb,1.106; html/param.ent,1.90; -html/param.xweb,1.99; params/refclass.suppress.xml,1.1 - Michael(tm) -Smith

    -
  • -

    Added -refentry.meta.get.quietly param.

    -

    If zero (the -default), notes and warnings about "missing" markup are generated -during gathering of refentry metadata. If -non-zero, the metadata is gathered "quietly" -- that is, the -notes and warnings are suppressed.

    -

    NOTE: If you are -processing a large amount of refentry content, you -may be able to speed up processing significantly by setting a -non-zero value for -refentry.meta.get.quietly.

    -

    Modified: common/refentry.xsl,1.17; -manpages/param.ent,1.15; manpages/param.xweb,1.17; -params/refentry.meta.get.quietly.xml,1.1 - Michael(tm) -Smith

    -
  • -

    Added support for "software" and -"sectdesc" class values on refmiscinfo; "software" is -treated identically to "source", and "setdesc" is treated -identically to "manual".

    -

    Modified: common/refentry.xsl,1.10; -params/man.th.extra2.max.length.xml,1.3; -params/refentry.source.name.profile.xml,1.4 - Michael(tm) -Smith

    -
  • -

    Drastically reworked all of the -XPath expressions used in refentry metadata gathering --- completely removed $parentinfo and turned $info into a set of -nodes that includes the *info contents of the Refentry -plus the *info contents all all of its ancestor elements. The -basic XPath expression now used throughout is (using the example -of checking for a date):

    -

    -(($info[//date])[last()]/date)[1].

    -

    That selects the "last" -*info/date date in document order -- that is, the one -eitther on the Refentry itself or on the -closest ancestor to the Refentry.

    -

    It's -likely this change may break some things; may need to pick up -some pieces later.

    -

    Also, changed the default value for the -man.th.extra2.max.length from 40 to -30.

    -

    Modified: common/common.xsl,1.58; common/refentry.xsl,1.7; -params/man.th.extra2.max.length.xml,1.2; -params/refentry.date.profile.xml,1.2; -params/refentry.manual.profile.xml,1.2; -params/refentry.source.name.profile.xml,1.2; -params/refentry.version.profile.xml,1.2; manpages/docbook.xsl,1.58; -manpages/other.xsl,1.15 - Michael(tm) Smith

    -
  • -

    Added option for turning off bold -formatting in Funcsynopsis. Boldface formatting in -function synopsis is mandated in the -man(7) man page and is used almost universally in existing man -pages. Despite that, it really does look like crap to have an -entire Funcsynopsis output in bold, so I added params -for turning off the bold formatting and/or replacing it with a -different roff special font (e.g., "RI" for alternating -roman/italic instead of the default "BI" for alternating -bold/italic). The new params -are "man.funcprototype.font" and -"man.funcsynopsisinfo.font". To be documented -later.

    -

    Closes #1452247. Thanks to Joe Orton for the feature -request.

    -

    Modified: params/man.string.subst.map.xml,1.16; -manpages/block.xsl,1.10; manpages/docbook.xsl,1.51; -manpages/inline.xsl,1.16; manpages/synop.xsl,1.27 - Michael(tm) -Smith

    -
  • -

    fop.extensions now only -for FOP version 0.20.5 and earlier.

    -

    Modified: params/fop.extensions.xml,1.4 -- Robert Stayton

    -
  • -

    Support for fop1 different from -fop 0.20.5 and earlier.

    -

    Modified: params/fop1.extensions.xml,1.1 - Robert -Stayton

    -
  • -

    Reset default value to empty -string so template uses gentext first, then the parameter value -if not empty.

    -

    Modified: params/index.number.separator.xml,1.2; -params/index.range.separator.xml,1.2; -params/index.term.separator.xml,1.2 - Robert -Stayton

    -
  • -

    New parameter: -id.warnings. If non-zero, warnings are -generated for titled objects that don't have titles. True by default; -I wonder if this will be too aggressive?

    -

    Modified: html/biblio.xsl,1.25; -html/component.xsl,1.27; html/division.xsl,1.11; html/formal.xsl,1.19; -html/glossary.xsl,1.20; html/html.xsl,1.13; html/index.xsl,1.16; -html/param.ent,1.88; html/param.xweb,1.97; html/refentry.xsl,1.22; -html/sections.xsl,1.30; params/id.warnings.xml,1.1 - Norman -Walsh

    -
  • -

    Added new parameter -keep.relative.image.uris

    -

    Modified: fo/param.ent,1.91; -fo/param.xweb,1.104; html/param.ent,1.87; html/param.xweb,1.96; -params/keep.relative.image.uris.xml,1.1 - Norman -Walsh

    -
  • -

    Support default label -width parameters for itemized and ordered lists

    -

    Modified: fo/lists.xsl,1.64; -fo/param.ent,1.90; fo/param.xweb,1.103; -params/itemizedlist.label.width.xml,1.1; -params/orderedlist.label.width.xml,1.1 - Norman -Walsh

    -
  • -

    Added parameters to localize -punctuation in indexes.

    -

    Modified: params/index.number.separator.xml,1.1; -params/index.range.separator.xml,1.1; -params/index.term.separator.xml,1.1 - Robert -Stayton

    -
  • -

    Added two new parameters for -handling of multi-term -varlistentry elements:

    -

    variablelist.term.break.after: -When the variablelist.term.break.after is -non-zero, it will generate a line break after each -term multi-term -varlistentry.

    -

    variablelist.term.separator: -When a varlistentry contains multiple term -elements, the string specified in the value of the -variablelist.term.separator parameter is -placed after each term except the last. The default -is ", " (a comma followed by a space). To suppress rendering of -the separator, set the value of -variablelist.term.separator to the empty -string ("").

    -

    These parameters are primarily intended to be -useful if you have multi-term varlistentries that have long -terms.

    -

    Closes #1306676. Thanks to Sam Steingold for -providing an example "lots of long terms" doc that demonstrated -the value of having these options.

    -

    Also, added -normalize-space() call to processing of each -term.

    -

    This change affects all output formats -(HTML, PDF, manpages). The default behavior should pretty much -remain the same as before, but it is possible (as always) that -the change may introduce some -new bugginess.

    -

    Modified: fo/lists.xsl,1.62; fo/param.ent,1.88; -fo/param.xweb,1.99; html/lists.xsl,1.48; html/param.ent,1.86; -html/param.xweb,1.93; manpages/lists.xsl,1.22; -manpages/param.ent,1.14; manpages/param.xweb,1.16; -params/variablelist.term.break.after.xml,1.1; -params/variablelist.term.separator.xml,1.1 - Michael(tm) -Smith

    -
  • -

    Convert 'no' to string in default -value.

    -

    Modified: params/olink.doctitle.xml,1.4 - Robert -Stayton

    -
  • -

    Implemented RFE -#1292615.

    -

    Added bunch of new parameters (attribute sets) -that affect list presentation: list.block.properties, -itemizedlist.properties, orderedlist.properties, -itemizedlist.label.properties and -orderedlist.label.properties. Default behaviour -of stylesheets has not been changed but further customizations will be -much more easier.

    -

    Modified: fo/lists.xsl,1.61; fo/param.ent,1.87; -fo/param.xweb,1.98; params/itemizedlist.label.properties.xml,1.1; -params/itemizedlist.properties.xml,1.1; -params/list.block.properties.xml,1.1; -params/orderedlist.label.properties.xml,1.1; -params/orderedlist.properties.xml,1.1 - Jirka -Kosek

    -
  • -

    Implemented RFE -#1242092.

    -

    You can enable crop marks in your document by -setting crop.marks=1 and xep.extensions=1. Appearance of crop -marks can be controlled by parameters -crop.mark.bleed (6pt), -crop.mark.offset (24pt) and -crop.mark.width (0.5pt).

    -

    Also there -is new named template called user-xep-pis. You can overwrite it in -order to produce some PIs that can control XEP as described in -http://www.renderx.com/reference.html#Output_Formats

    -

    Modified: fo/docbook.xsl,1.36; -fo/param.ent,1.86; fo/param.xweb,1.97; fo/xep.xsl,1.23; -params/crop.mark.bleed.xml,1.1; params/crop.mark.offset.xml,1.1; -params/crop.mark.width.xml,1.1; params/crop.marks.xml,1.1 - Jirka -Kosek

    -
  • -

    Changed short descriptions in doc -for *autolabel* params to match new autolabel -behavior.

    -

    Modified: params/appendix.autolabel.xml,1.5; -params/chapter.autolabel.xml,1.4; params/part.autolabel.xml,1.5; -params/preface.autolabel.xml,1.4 - Michael(tm) -Smith

    -
-
- -

Profiling

- -

The following changes have been made to the - profiling code - since the 1.69.1 release.

-
  • -

    Profiling now works together with -namespace stripping (V5 documents). Namespace striping should work -with all stylesheets named profile-, even if they are not supporting -namespace stripping in a non-profiling -variant.

    -

    Modified: profiling/profile-mode.xsl,1.4; -profiling/xsl2profile.xsl,1.7 - Jirka Kosek

    -
  • -

    Moved profiling stage out of -templates. This make possible to reuse profiled content by several -templates and still maintaing node indentity (needed for example for -HTML Help where content is processed multiple times).

    -

    I -don't know why this was not on the top level before. Maybe some XSLT -processors choked on it. I hope this will be OK -now.

    -

    Modified: profiling/xsl2profile.xsl,1.5 - Jirka -Kosek

    -
-
- -

Tools

- -

The following changes have been made to the - tools code - since the 1.69.1 release.

-
  • -

    Moved Makefile.DocBook from -contrib module to xsl -module.

    -

    Modified: tools/make/Makefile.DocBook,1.1 - Michael(tm) -Smith

    -
-
- -

WordML

- -

The following changes have been made to the - wordml code - since the 1.69.1 release.

-
  • -

    added contrib element, -better handling of default paragraph -style

    -

    Modified: wordml/pages-normalise.xsl,1.6; wordml/supported.xml,1.2; -wordml/wordml-final.xsl,1.14 - Steve Ball

    -
  • -

    added -bridgehead

    -

    Modified: wordml/docbook-pages.xsl,1.6; -wordml/docbook.xsl,1.17; wordml/pages-normalise.xsl,1.5; -wordml/template-pages.xml,1.7; wordml/template.dot,1.4; -wordml/template.xml,1.14; wordml/wordml-final.xsl,1.13 - Steve -Ball

    -
  • -

    added blocks stylesheet to support -bibliographies, glossaries and qandasets

    -

    Modified: wordml/Makefile,1.4; -wordml/README,1.3; wordml/blocks-spec.xml,1.1; -wordml/docbook-pages.xsl,1.5; wordml/docbook.xsl,1.16; -wordml/pages-normalise.xsl,1.4; wordml/sections-spec.xml,1.3; -wordml/specifications.xml,1.13; wordml/template-pages.xml,1.6; -wordml/template.dot,1.3; wordml/template.xml,1.13; -wordml/wordml-blocks.xsl,1.1; wordml/wordml-final.xsl,1.12; -wordml/wordml-sections.xsl,1.3 - Steve Ball

    -
  • -

    added mediaobject -caption

    -

    Modified: wordml/docbook-pages.xsl,1.4; -wordml/docbook.xsl,1.15; wordml/specifications.xml,1.12; -wordml/template-pages.xml,1.5; wordml/template.dot,1.2; -wordml/template.xml,1.12; wordml/wordml-final.xsl,1.11 - Steve -Ball

    -
  • -

    added -callouts

    -

    Modified: wordml/docbook-pages.xsl,1.3; wordml/docbook.xsl,1.14; -wordml/pages-normalise.xsl,1.3; wordml/specifications.xml,1.11; -wordml/template-pages.xml,1.4; wordml/wordml-final.xsl,1.10 - Steve -Ball

    -
  • -

    added Word template -file

    -

    Modified: wordml/template.dot,1.1 - Steve Ball

    -
  • -

    added abstract, fixed -itemizedlist, ulink

    -

    Modified: wordml/specifications.xml,1.10; -wordml/wordml-final.xsl,1.9 - Steve Ball

    -
  • -

    fixed Makefile added many -features to Pages support added revhistory, inlines, -highlights, abstract

    -

    Modified: wordml/Makefile,1.2; -wordml/docbook-pages.xsl,1.2; wordml/pages-normalise.xsl,1.2; -wordml/sections-spec.xml,1.2; wordml/specifications.xml,1.9; -wordml/template-pages.xml,1.3; wordml/template.xml,1.11; -wordml/wordml-final.xsl,1.8; wordml/wordml-sections.xsl,1.2 - Steve -Ball

    -
  • -

    fixed handling linebreaks when -generating WordML added Apple Pages -support

    -

    Modified: wordml/docbook.xsl,1.13; wordml/template-pages.xml,1.2 - -Steve Ball

    -
-
-
- -

Release 1.69.1

- -

This release is a minor bug-fix update to the 1.69.0 - release. Along with bug fixes, it includes one - configuration-parameter change: The default value of the - annotation.support parameter is now - 0 (off). The reason for that change is that - there have been reports that annotation handling is - causing a significant performance degradation in processing of - large documents with xsltproc.

-
- - -

Release 1.69.0

- -

The release includes major feature changes, - particularly in the manpages - stylesheets, as well as a large number of bug fixes.

- -

As with all DocBook Project dot zero releases, this is an - experimental release .

- -

Common

- -
  • -

    This release adds localizations for the following - languages: - Albanian, Amharic, Azerbaijani, Hindi, Irish (Gaelic), Gujarati, Kannada, Mongolian, Oriya, Punjabi, Tagalog, Tamil, and Welsh.

    -
  • -

    Added support for specifying number format for auto - labels for chapter, appendix, - part, and preface. Contolled with the - appendix.autolabel, - chapter.autolabel, - part.autolabel, and - preface.autolabel parameters.

    -
  • -

    Added basic support for biblioref cross - referencing.

    -
  • -

    Added support for align - on caption in mediaobject.

    -
  • -

    Added support for processing documents that use the - DocBook V5 namespace.

    -
  • -

    Added support for termdef and - mathphrase.

    -
  • -

    EXPERIMENTAL: Incorporated the Slides and Website - stylesheets into the DocBook XSL stylesheets package. So, - for example, Website documents can now be processed using - the following URI for the driver Website - tabular.xsl file:

    http://docbook.sourceforge.net/release/xsl/current/website/tabular.xsl
    -
  • -

    A procedure without a title is - now treated as an informal procedure (meaning - that it is not added to any generated list of - procedures and has no affect on numbering of - generated labels for other procedures).

    -
  • -

    docname is no longer added to - olink when pointing to a root element.

    -
  • -

    Added support for generation of choice separator in - inline simplelist. This enables auto-generation of an - appropriate localized choice separator (for - example, and or or) before the - final item in an inline simplelist.

    -

    To indicate that you want a choice separator - generated for a particular list, you need to put a processing - instruction (PI) of the form - <?dbchoice choice="foo"?> as a - child of the list. For example: -

      <para>Choose from
    -  ONE and ONLY ONE of the following: 
    -  <simplelist type="inline">
    -  <?dbchoice choice="or" ?>
    -  <member>A</member>
    -  <member>B</member>
    -  <member>C</member>.</simplelist></para>

    - - Output (for English): -

    -

    Choose from ONE and only ONE of the - following choices: A, B, or C.

    -

    - As a temporary workaround for the fact that most of the - DocBook non-English locale files don't have a localization for - the word or, you can put in a literal string to - be used; example for French: <?dbchoice choice="ou">. That is, use - ou instead of or.

    -
-
-

FO

- -
  • -

    Added content-type property to - external-graphic element, based on - imagedata format - attribute.

    -
  • -

    Added support for generating - <rx:meta-field creator="$VERSION"/> - field for XEP output. This makes the DocBook XSL - stylesheet version information available through the - Document Properties menu in Acrobat - Reader and other PDF viewers.

    -
  • -

    Trademark symbol handling made consistent with - handling of same in HTML stylesheets. Prior to this change, - if you processed a document that contained no value for the - class attribute on the - trademark element, the HTML stylesheets would - default to rendering a superscript TM - symbol after the trademark contents, - but the FO stylesheets would render nothing.

    -
  • -

    Added support for generating XEP bookmarks for - refentry.

    -
  • -

    Added support for HTML markup table border attribute, applied to each - table cell.

    -
  • -

    The table.width template can now - sum column specs if none use % or - *.

    -
  • -

    Added fox:destination extension - inside fox:outline to support linking to - internal destinations.

    -
  • -

    Added support for customizing - abstract with property sets. Controlled - with the abstract.properties and - abstract.title.properties - parameters.

    -
  • -

    Add footnotes in table title to - table footnote set, and add support for table footnotes to - HTML table markup.

    -
  • -

    Added support for title in - glosslist.

    -
  • -

    Added support for itemizedlist symbol - none.

    -
  • -

    Implemented the new - graphical.admonition.properties and - nongraphical.admonition.properties - attribute sets.

    -
  • -

    Added id to - formalpara and some other blocks that were - missing it.

    -
  • -

    Changed the anchor template to output - fo:inline instead of - fo:wrapper.

    -
  • -

    Added support for toc.max.depth - parameter.

    -
-
- -

Help

- -
  • -

    Eclipse Help: Added support for generating olink - database.

    -
-
- -

HTML

- -
-
-

man

- -

This release closes out 44 manpages stylesheet bug reports - and feature requests. It adds more than 35 new configuration - parameters for controlling aspects of man-page output -- - including hyphenation and justification, handling of links, - conversion of Unicode characters, and contents of man-page - headers and footers.

-
  • -

    New options for globally disabling/enabling - hyphenation and justification: - man.justify and - man.hyphenate.

    -

    Note that the default - for the both of those is zero (off), because justified text - looks good only when it is also hyphenated; to quote the - Hyphenation node from the groff info page: -

    -

    Since the odds are not great for finding a - set of words, for every output line, which fit nicely on a - line without inserting excessive amounts of space between - words, `gtroff' hyphenates words so that it can justify - lines without inserting too much space between - words.

    -

    - The problem is that groff can end up hyphenating a lot of - things that you don't want hyphenated (variable names and - command names, for example). Keeping both justification and - hyphenation disabled ensures that hyphens won't get inserted - where you don't want to them, and you don't end up with - lines containing excessive amounts of space between - words. These default settings run counter to how most - existing man pages are formatted. But there are some notable - exceptions, such as the perl man pages.

    -
  • -

    Added parameters for controlling hyphenation of - computer inlines, filenames, and URLs. By default, even when - hyphenation is enabled (globally), hyphenation is now - suppressed for "computer inlines" (currently, just - classname, constant, envar, - errorcode, option, - replaceable, userinput, - type, and varname, and for - filenames, and for URLs from link. It - can be (re)enabled using the - man.hyphenate.computer.inlines, - man.hyphenate.filenames, and - man.hyphenate.urls parameters.

    -
  • -

    Implemented a new system for replacing Unicode - characters. There are two parts to the new system: a - string substitution map for doing - essential replacements, and a - character map that can optionally be disabled - and enabled.

    -

    The new system fixes all open bugs that had to do with - literal Unicode numbered entities such as &#8220; and - &#8221; showing up in output, and greatly expands the - ability of the stylesheets to generate good roff - equivalents for Unicode symbols and special - characters.

    -

    Here are some details...

    -

    The previous manpages mechanism for replacing Unicode - symbols and special characters with roff equivalents (the - replace-entities template) was not - scalable and not complete. The mechanism handled a somewhat - arbitrary selection of less than 20 or so Unicode - characters. But there are potentially more than - 800 Unicode special characters that - have some groff equivalent they can be mapped to. And there - are about 34 symbols in the Latin-1 (ISO-8859-1) block - alone. Users might reasonably expect that if they include - any of those Latin-1 characters in their DocBook source - documents, they will get correctly converted to known roff - equivalents in output.

    -

    In addition to those common symbols, certain users may - have a need to use symbols from other Unicode blocks. Say, - somebody who is documenting an application related to math - might need to use a bunch of symbols from the - Mathematical Operators Unicode block (there - are about 65 characters in that block that have reasonable - roff equivalents). Or somebody else might really like - Dingbats -- such as the checkmark character -- and so might - use a bunch of things from the Dingbat block - (141 characters in that that have roff equivalents or that - can at least be degraded somewhat gracefully - into roff).

    -

    So, the old replace-entities - mechanism was replaced with a completely different mechanism - that is based on use of two maps: a - substitution map and a character - map (the latter in a format compliant with the XSLT - 2.0 spec and therefore completely forward - compatible with XSLT 2.0).

    -

    The substitution map is controlled through the - man.string.subst.map parameter, and - is used to replace things like the backslash character - (which needs special handling to prevent it from being - interpreted as a roff escape). The substitution map cannot - be disabled, because disabling it will cause the output to - be broken. However, you can add to it and change it if - needed.

    - -

    The character map mechanism, on the - other hand, can be completely disabled. It is enabled by - default, and, by default, does replacement of all Latin-1 - symbols, along with most special spaces, dashes, and quotes - (about 75 characters by default). Also, you can optionally - enable a full character map that provides - support for converting all 800 or so of the characters that - have some reasonable groff equivalent.

    - -

    The character-map mechanism is controlled through the - following parameters: -

    man.charmap.enabled

    turns character-map support - on/off

    man.charmap.use.subset

    specifies that a subset of the character - map is used instead of the full map

    man.charmap.subset.profile

    specifies profile of character-map - subset

    man.charmap.uri

    specifies an alternate character map to - use instead of the standard character map - provided in the distribution

    -

    -
  • -

    Implemented out-of-line handling of display of URLs - for links (currently, only for ulink). This gives - you three choices for handling of links: -

    1. -

      Number and list links. Each link is numbered - inline, with a number in square brackets preceding the - link contents, and a numbered list of all links is added - to the end of the document.

      -
    2. -

      Only list links. Links are not numbered, but an - (unnumbered) list of links is added to the end of the - document.

      -
    3. -

      Suppress links. Don't number links and don't add - any list of links to the end of the document.

      -

    - You can also choose whether links should be underlined. The - default is the works -- list, number, and - underline links. You can use the - man.links.list.enabled, - man.links.are.numbered, and - man.links.are.underlined parameters - to change the defaults. The default heading for the link - list is REFERENCES. You can be change that using the - man.links.list.heading - parameter.

    -
  • -

    Changed default output encoding to UTF-8. This does not mean that man pages are output in - raw UTF-8, because the character map is applied - before final output, causing all UTF-8 characters covered in - the map to be converted to roff equivalents.

    -
  • -

    Added support for processing refsect3 and - formalpara and nested refsection - elements, down to any arbitrary level of nesting.

    -
  • -

    Output of the NAME and - SYNOPSIS and AUTHOR - headings and the headings for admonitions (note, - caution, etc.) are no longer hard-coded for - English. Instead, headings are generated for those in the - correct locale (just as the FO and HTML stylesheets - do).

    -
  • -

    Re-worked mechanism for assembling page - headers/footers (the contents of the .TH - macro title line).

    - -

    Here are some details...

    - -

    All man pages contain a .TH roff - macro whose contents are used for rendering the title - line displayed in the header and footer of each - page. Here are a couple of examples of real-world man pages - that have useful page headers/footers:

    -  gtk-options(7)    GTK+ User's Manual   gtk-options(7) <-- header
    -  GTK+ 1.2              2003-10-20       gtk-options(7) <-- footer
    -
    -  svgalib(7)       Svgalib User Manual       svgalib(7) <-- header
    -  Svgalib 1.4.1      16 December 1999        svgalib(7) <-- footer
    - -

    And here are the terms with which the - groff_man(7) man page refers to the - various parts of the header/footer:

    -  title(section)  extra3  title(section)  <- header
    -  extra2          extra1  title(section)  <- footer
    -

    Or, using the names with which the man(7) - man page refers to those same fields:

    -  title(section)  manual  title(section)  <- page header
    -  source          date    title(section)  <- page footer
    - -

    The easiest way to control the contents of those - fields is to mark up your refentry content like - the following (note that this is a minimal - example).

    -  <refentry>
    -    <info>
    -      <date>2003-10-20</date> 1
    -    </info>
    -    <refmeta>
    -      <refentrytitle>gtk-options</refentrytitle> 2
    -      <manvolnum>7</manvolnum> 3
    -      <refmiscinfo class="source-name">GTK+</refmiscinfo> 4
    -      <refmiscinfo class="version">1.2</refmiscinfo> 5
    -      <refmiscinfo class="manual">GTK+ User's Manual</refmiscinfo> 6
    -    </refmeta>
    -    <refnamediv>
    -      <refname>gtk-options</refname>
    -      <refpurpose>Standard Command Line Options for GTK+ Programs</refpurpose>
    -    </refnamediv>
    -    <refsect1>
    -      <title>Description</title>
    -      <para>This manual page describes the command line options, which
    -      are common to all GTK+ based applications.</para>
    -    </refsect1>
    -  </refentry>

    -

    1

    -

    Sets the date part of the header/footer.

    -

    2

    -

    Sets the title part.

    -

    3

    -

    Sets the section part.

    -

    4

    -

    Sets the source name part.

    -

    5

    -

    Sets the version part.

    -

    6

    -

    Sets the manual part.

    -

    -

    -

    Below are explanations of the steps the stylesheets - take to attempt to assemble and display - good headers and footer. [In the - descriptions, note that *info - is the refentry info child - (whatever its name), and - parentinfo is the - info child of its parent (again, whatever - its name).] -

    extra1 field (date)
    -

    Content of the extra1 field is - what shows up in the center - footer position of each page. The - man(7) man page describes it as - the date of the last revision.

    -

    To provide this content, if the - refentry.date.profile.enabled - is non-zero, the stylesheets check the value of - refentry.date.profile.

    -

    Otherwise, by default, they check for a - date or pubdate not only in the - *info contents, but also in - the parentinfo - contents.

    -

    If a date cannot be found, the stylesheets now - automatically generate a localized long - format date, ensuring that this field always - has content in output.

    -

    However, if for some reason you want to suppress - this field, you can do so by setting a non-zero value - for man.th.extra1.suppress.

    -
    extra2 field (source)
    -

    On Linux systems and on systems with a modern - groff, the content of the extra2 field - are what shows up in the left - footer position of each page.

    - -

    The man(7) man page describes - this as the source of the command, and - provides the following examples: -

    • -

      For binaries, use somwething like: GNU, - NET-2, SLS Distribution, MCC Distribution.

      -
    • -

      For system calls, use the version of the - kernel that you are currently looking at: Linux - 0.99.11.

      -
    • -

      For library calls, use the source of the - function: GNU, BSD 4.3, Linux DLL 4.4.1.

      -

    -

    - -

    In practice, there are many pages that simply - have a version number in the source - field. So, it looks like what we have is a two-part - field, - Name Version, - where: -

    Name
    -

    product name (e.g., BSD) or org. name - (e.g., GNU)

    -
    Version
    -

    version name

    -

    - Each part is optional. If the - Name is a product name, - then the Version is - probably the version of the product. Or there may be - no Name, in which case, if - there is a Version, it is - probably the version of the item itself, not the - product it is part of. Or, if the - Name is an organization - name, then there probably will be no - Version. -

    -

    To provide this content, if the - refentry.source.name.profile.enabled - and - refentry.version.profile.enabled - parameter are non-zero, the stylesheets check the - value of refentry.source.name.profile - refentry.version.profile.

    - -

    Otherwise, by default, they check the following - places, in the following order: -

    1. -
      *info/productnumber
      -
    2. -
      *info/productnumber
      -
    3. -
      refmeta/refmiscinfo[@class = 'version']
      -
    4. -
      parentinfo/productnumber
      -
    5. -
      *info/productname
      -
    6. -
      parentinfo/productname
      -
    7. -
      refmeta/refmiscinfo
      -
    8. -

      [nothing found, so leave it empty]

      -

    -

    -
    extra3 field
    -

    On Linux systems and on systems with a modern - groff, the content of the extra3 field - are what shows up in the center - header position of each page. Some man - pages have extra2 content, some - don't. If a particular man page has it, it is most - often context data about some larger - system the documented item belongs to (for example, - the name or description of a group of related - applications). The stylesheets now check the following - places, in the following order, to look for content to - add to the extra3 field.

    -
    1. -
      parentinfo/title
      -
    2. -
      parent's title
      -
    3. -
      refmeta/refmiscinfo
      -
    4. -

      [nothing found, so leave it empty]

      -
    -

    -

    -
  • -

    Reworked *info gathering. For - each refentry found, the stylesheets now cache its - *info content, then check for any - valid parent of it that might have metainfo content and cache - that, if found; they then then do all further matches against - those node-sets (rather than re-selecting the original - *info nodes each time they are - needed).

    -
  • -

    New option for breaking strings after forward - slashes. This enables long URLs and pathnames to be broken - across lines. Controlled through - man.break.after.slash parameter.

    -
  • -

    Output for servicemark and trademark are now - (SM) and (TM). There is - a groff "\(tm" escape, but output from that - is not acceptable.

    -
  • -

    New option for controlling the length of the title - part of the .TH title line. Controlled - through the man.th.title.max.length - parameter.

    -
  • -

    New option for specifying output encoding of each man - page; controlled with - man.output.encoding (similar to the - HTML chunker.output.encoding - parameter).

    -
  • -

    New option for suppressing filename messages when - generating output; controlled with - man.output.quietly (similar to the HTML - chunk.quietly parameter).

    -
  • -

    The text of cross-references to first-level - refentry (refsect1, top-level - refsection, refnamediv, and - refsynopsisdiv) are now capitalized.

    -
  • -

    Cross-references to refnamediv now use the - localized NAME title instead of using the - first refname child. This makes the output - inconsistent with HTML and FO output, but for man-page output, - it seems to make better sense to have the - NAME. (It may actually make better sense to - do it that way in HTML and FO output as well...)

    -
  • -

    Added support for processing funcparams.

    -
  • -

    Removed the space that was being output between - funcdef and paramdef; example: was: - float rand (void); now: - float rand(void)

    -
  • -

    Turned off bold formatting for the type - element when it occurs within a funcdef or - paramdef

    -
  • -

    Corrected rendering of simplelist. Any - <simplelist type="inline" instance - is now rendered as a comma-separated list (also with an - optional localized and or or before the last item -- see - description elsewhere in these release notes). Any simplelist - instance whose type is not - inline is rendered as a one-column vertical - list (ignoring the values of the type and columns attributes if present)

    -
  • -

    Comment added at top of roff source for each page now - includes DocBook XSL stylesheets version number (as in the - HTML stylesheets)

    -
  • -

    Made change to prevent sticky fonts - changes. Now, when the manpages stylesheets encounter node - sets that need to be boldfaced or italicized, they put the - \fBfoo\fR and \fIbar\fR - groff bold/italic instructions separately around each node in - the set.

    -
  • -

    synop.xsl: Boldface everything in - funcsynopsis output except parameters (which are in - ital). The man(7) man page says: -

    -

    For functions, the arguments are always specified - using italics, even in the SYNOPSIS section, where the rest - of the function is specified in bold.

    -

    - A look through the contents of the - man/man2 directory shows that most - (all) existing pages do follow this everything in - funcsynopsis bold rule. That means the - type content and any punctuation (parens, - semicolons, varargs) also must be bolded.

    -
  • -

    Removed code for adding backslashes before periods/dots - in roff source, because backslashes in front of periods/dots - in roff source are needed only in the very rare case where a - period is the very first character in a line, without any - space in front of it. A better way to deal with that rare case - is for you to add a zero-width space in front of the offending - dot(s) in your source

    -
  • -

    Removed special handling of the quote - element. That was hard-coded to cause anything marked up with - the quote element to be output preceded by two - backticks and followed by two apostrophes -- that is, that - old-school kludge for generating curly quotes in Emacs and - in X-Windows fonts. While Emacs still seems to support that, I - don't think X-Windows has for a long time now. And, anyway, it - looks (and has always looked) like crap when viewed on a - normal tty/console. In addition, it breaks localiztion of - quote. By default, quote content is - output with localized quotation marks, which, depending on the - locale, may or may not be left and right double quotation - marks.

    -
  • -

    Changed mappings for left and right single quotation - marks. Those had previously been incorrectly mapped to the - backtick (&#96;) and apostrophe (&39;) characters (for - kludgy reasons -- see above). They are now correctly mapped to - the \(oq and \(cq roff - escapes. If you want the old (broken) behavior, you need to - manually change the mappings for those in the value of the - man.string.subst.map parameter.

    -
  • -

    Removed xref.xsl file. Now, of the - various cross-reference elements, only the ulink - element is handled differently; the rest are handled exactly - as the HTML stylesheets handle them, except that no hypertext - links are generated. (Because there is no equivalent hypertext - mechanism is man pages.)

    -
  • -

    New option for making subheading dividers in generated - roff source. The dividers are not visible in the rendered man - page; they are just there to make the source - readable. Controlled using - man.subheading.divider.

    -
  • -

    Fixed many places where too much space was being added - between lines.

    -
- -
-
- - -

Release 1.68.1

- -

The release adds localization support for Farsi (thanks to - Sina Heshmati) and improved support for the XLink-based DocBook NG - db:link element. Other than that, it is a minor - bug-fix update to the 1.68.0 release. The main thing it fixes is a - build error that caused the XSLT Java extensions to be jarred up - with the wrong package structure. Thanks to Jens Stavnstrup for - quickly reporting the problem, and to Mauritz Jeanson for - investigating and finding the cause.

-
- - -

Release 1.68.0

- -

This release includes some features changes, particularly - for FO/PDF output, and a number of bug fixes. -

FO

  • -

    Moved footnote properties to attribute-sets.

    -
  • -

    Added support for side floats, margin notes, and - custom floats.

    -
  • -

    Added new parameters - body.start.indent and - body.end.indent to the - set.flow.properties template.

    -
  • -

    Added support for xml:id

    -
  • -

    Added support for - refdescriptor.

    -
  • -

    Added support for multiple refnamedivs.

    -
  • -

    Added index.entry.properties - attribute-set to support customization of index - entries.

    -
  • -

    Added set.flow.properties - template call to each fo:flow - to support customizations entry point.

    -
  • -

    Add support for @floatstyle in - figure

    -
  • -

    Moved hardcoded properties for index division titles - to the index.div.title.properties - attribute-set.

    -
  • -

    Added support for - table-layout="auto" for XEP.

    -
  • -

    Added index.div.title.properties - attribute-set.

    -
  • -

    $verbose parameter is now - passed to most elements.

    -
  • -

    Added refentry to - toc in part, as it is - permitted by the DocBook schema/DTD.

    -
  • -

    Added backmatter elements and - article to toc in - part, since they are permitted by the - DocBook schema/DTD.

    -
  • -

    Added mode="toc" for - simplesect, since it is now permitted in - the toc if - simplesect.in.toc is set.

    -
  • -

    Moved hard-coded properties to - nongraphical.admonintion.properties - and graphical.admonition.properties - attribute sets.

    -
  • -

    Added support for sidebar-width and - float-type processing instructions in - sidebar.

    -
  • -

    For tables with HTML markup elements, added support - for dbfo bgcolor PI, the attribute-sets - named table.properties, - informaltable.properties, - table.table.properties, and - table.cell.padding. Also added - support for the templates named - table.cell.properties and - table.cell.block.properties so that - tabstyles can be implemented. Also added support for tables - containing only tr instead of - tbody with tr.

    -
  • -

    Added new paramater - hyphenate.verbatim.characters which - can specify characters after which a line break can occur in - verbatim environments. This parameter can be used to extend - the initial set of characters which contain only space and - non-breakable space.

    -
  • -

    Added itemizedlist.label.markup to enable - selection of different bullet symbol. Also added several - potential bullet characters, commented out by default.

    -
  • -

    Enabled all id's in XEP output for external olinking.

    -

- -

HTML

-

Images

  • -

    Added new SVG admonition graphics and navigation images.

    -

-

-
- - -

Release 1.67.2

- -

This release fixes a table bug introduced in the 1.67.1 - release.

-
-

Release 1.67.1

- -

This release includes a number of bug fixes.

-

The following lists provide details about API and feature changes. -

FO

  • -

    Tables: Inherited cell properties are now passed to the - table.cell.properties template so they can - be overridden by a customization.

    -
  • -

    Tables: Added support for bgcolor PI on table row - element.

    -
  • -

    TOCs: Added new parameter - simplesect.in.toc; default value of - 0 causes simplesect to be omitted from TOCs; to - cause simplesect to be included in TOCs, you - must set the value of simplesect.in.toc to - 1.Comment from Norm: - -

    -

    Simplesect elements aren't supposed to - appear in the ToC at all... The use case for simplesect - is when, for example, every chapter in a book ends with - "Exercises" or "For More Information" sections and you - don't want those to appear in the ToC.

    -

    -

    -
  • -

    Sections: Reverted change that caused a variable reference - to be used in a template match and rewrote code to preserve - intended semantics.

    -
  • -

    Lists: Added workaround to prevent "* 0.60 + 1em" garbage in - list output from PassiveTeX

    -
  • -

    Moved the literal attributes from - component.title to the - component.title.properties attribute-set so - they can be customized.

    -
  • -

    Lists: Added glossdef's first - para to special handling in - fo:list-item-body.

    -

- -

HTML

-

HTML Help

  • -

    Added support for generating windows-1252-encoded - output using Saxon; for more details, see the list of XSL Java extensions changes for this release.

    -

-

man pages

  • -

    Replaced named/numeric character-entity references for - non-breaking space with groff equivalent (backslash-tilde).

    -

-

XSL Java extensions

  • -

    Saxon extensions: Added the - Windows1252 class. It extends Saxon - 6.5.x with the windows-1252 character set, which is - particularly useful when generating HTML Help for Western - European Languages (code from - Pontus Haglund and contributed to the - DocBook community by Sectra AB, Sweden).

    -

    To use: -

    1. -

      Make sure that the Saxon 6.5.x jar file and the jar file for - the DocBook XSL Java extensions are in your CLASSPATH

      -
    2. -

      Create a DocBook XSL customization layer -- a file named - mystylesheet.xsl or whatever -- that, at a - minimum, contains the following: -

        <xsl:stylesheet
      -    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
      -    version='1.0'>
      -    <xsl:import href="http://docbook.sourceforge.net/release/xsl/current/htmlhelp/htmlhelp.xsl"/>
      -    <xsl:output method="html" encoding="WINDOWS-1252" indent="no"/>
      -    <xsl:param name="htmlhelp.encoding" select="'WINDOWS-1252'"></xsl:param>
      -    <xsl:param name="chunker.output.encoding" select="'WINDOWS-1252'"></xsl:param>
      -    <xsl:param name="saxon.character.representation" select="'native'"></xsl:param>
      -  </xsl:stylesheet>

      -

      -

      Invoke Saxon with the - encoding.windows-1252 Java system property set - to com.nwalsh.saxon.Windows1252; for example -

        java \
      -    -Dencoding.windows-1252=com.nwalsh.saxon.Windows1252 \
      -  com.icl.saxon.StyleSheet \
      -  mydoc.xml mystylesheet.xsl

      - - Or, for a more complete "real world" case showing other - options you'll typically want to use: -

        java \
      -    -Dencoding.windows-1252=com.nwalsh.saxon.Windows1252 \
      -    -Djavax.xml.parsers.DocumentBuilderFactory=org.apache.xerces.jaxp.DocumentBuilderFactoryImpl \
      -    -Djavax.xml.parsers.SAXParserFactory=org.apache.xerces.jaxp.SAXParserFactoryImpl \
      -    -Djavax.xml.transform.TransformerFactory=com.icl.saxon.TransformerFactoryImpl \
      -  com.icl.saxon.StyleSheet \
      -    -x org.apache.xml.resolver.tools.ResolvingXMLReader \
      -    -y org.apache.xml.resolver.tools.ResolvingXMLReader \
      -    -r org.apache.xml.resolver.tools.CatalogResolver \
      -  mydoc.xml mystylesheet.xsl

      - - In both cases, the "mystylesheet.xsl" file should be a - DocBook customization layer containing the parameters - show in step 2.

      -

    -

    -
  • -

    Saxon extensions: Removed Saxon 8 extensions from release package

    -

-

-
-

Release 1.67.0

- -
  • -

    A number of important bug fixes.

    -
  • -

    Added Saxon8 extensions

    -
  • -

    Enabled dbfo table-width on - entrytbl in FO output

    -
  • -

    Added support for role=strong on - emphasis in FO output

    -
  • -

    Added new FO parameter - hyphenate.verbatim that can be used to turn - on "intelligent" wrapping of verbatim environments.

    -
  • -

    Replaced all <tt></tt> output with - <code></code>

    -
  • -

    Changed admon.graphic.width template to a - mode so that different admonitions can have different graphical - widths.

    -
  • -

    Deprecated the HTML shade.verbatim - parameter (use CSS instead)

    -
  • -

    Wrapped ToC - refentrytitle/refname and - refpurpose in span with class values. This - makes it possible to style them using a CSS stylesheet.

    -
  • -

    Use strong/em instead of - b/i in HTML output

    -
  • -

    Added support for converting Emphasis to - groff italic and Emphasis role='bold' to - bold. Controlled by - emphasis.propagates.style param, but not - documented yet using litprog system. Will do that next (planning - to add some other parameter-controllable options for hyphenation - and handling of line spacing).

    -
  • -

    callout.graphics.number.limit.xml - param: Changed the default from 10 to - 15.

    -
  • -

    verbatim.properties: Added - hyphenate=false

    -
  • -

    Saxon and Xalan Text.java extensions: Added support for - URIResolver() on insertfile href's

    -
  • -

    Added generated RELEASE-NOTES.txt - file.

    -
  • -

    Added INSTALL file (executable file for - generating catalog.xml)

    -
  • -

    Removed obsolete tools directory from - package

    -
-
-

Release 1.66.1

- -
  • -

    A number of important bug fixes. -

    -
  • -

    -Now xml:base attributes that are generated by an -XInclude processor are resolved for image files. -

    -
  • -

    -Rewrote olink templates to support several new features. -

    -
    -
  • -

    -Added index.on.type parameter for new type -attribute introduced in DocBook 4.3 for indexterms and index. -This allows you to create multiple indices containing -different categories of entries. -For users of 4.2 and earlier, you can use the new parameter index.on.role -instead. -

    -
  • -

    -Added new -section.autolabel.max.depth parameter to turn off section numbering -below a certain depth. -This permits you to number major section levels and leave minor -section levels unnumbered.

    -
  • -

    -Added footnote.sep.leader.properties attribute set to format -the line separating footnotes in printed output. -

    -
  • -

    -Added parameter img.src.path as a prefix to HTML img src -attributes. -The prefix is added to whatever path is already generated by the -stylesheet for each image file.

    -
  • -

    -Added new attribute-sets -informalequation.properties, -informalexample.properties, -informalfigure.properties, and informaltable.properties, -so each such element type can be formatted -individually if needed. -

    -
  • -

    -Add component.label.includes.part.label -parameter to add any part number to chapter, appendix -and other component labels when -the label.from.part parameter is nonzero. -This permits you to distinguish multiple chapters with the same -chapter number in cross references and the TOC.

    -
  • -

    -Added chunk.separate.lots parameter for HTML output. -This parameter lets you generate separate chunk files for each LOT -(list of tables, list of figures, etc.).

    -
  • -

    Added several table features:

    -
    • -

      -Added table.table.properties attribute set to add -properties to the fo:table element. -

      -
    • -

      -Added placeholder templates named table.cell.properties -and table.cell.block.properties to enable adding properties -to any fo:table-cell or the cell's fo:block, respectively. - These templates are a start for implementing table styles.

      -
    -
  • -

    -Added new attribute -set component.title.properties for easy modifications of -component's title formatting in FO output. -

    -
  • -

    -Added Saxon support for an encoding attribute on the textdata element. Added new parameter -textdata.default.encoding which specifies encoding when -encoding attribute on -textdata is missing. -

    -
  • -

    -Template label.this.section now controls whole -section label, not only sub-label which corresponds to -particular label. Former behaviour was IMHO bug as it was -not usable. -

    -
  • -

    -Formatting in titleabbrev for TOC and headers -is preserved when there are no hotlink elements in the title. Formerly the title showed only the text of the title, no font changes or other markup. -

    -
  • -

    -Added intial.page.number template to set the initial-page-number -property for page sequences in print output. -Customizing this template lets you change when page numbering restarts. This is similar to the format.page.number template that lets you change how the page number formatting changes in the output. -

    -
  • -

    -Added force.page.count template to set the force-page-count -property for page sequences in print output. -This is similar to the format.page.number template. -

    -
  • -

    -Sort language for localized index sorting in autoidx-ng.xsl is now taken from document -lang, not from system environment. -

    -
  • -

    -Numbering and formatting of normal -and ulink footnotes (if turned on) has been unified. -Now ulink footnotes are mixed in with any other footnotes.

    -
  • -

    -Added support for renderas attribute in section and -sect1 et al. -This permits you to render a given section title as if it were a different level.

    -
  • -

    -Added support for label attribute in footnote to manually -supply the footnote mark. -

    -
  • -

    -Added support for DocBook 4.3 corpcredit element. -

    -
  • -

    -Added support for a dbfo keep-together PI for -formal objects (table, figure, example, equation, programlisting). That permits a formal object to be kept together if it is not already, or to be broken if it -is very long and the -default keep-together is not appropriate. -

    -
  • -

    -For graphics files, made file extension matching case -insensitive, and updated the list of graphics extensions. -

    -
  • -

    -Allow calloutlist to have block content before -the first callout -

    -
  • -

    -Added dbfo-need processing instruction to provide -soft page breaks. -

    -
  • -

    -Added implementation of existing but unused -default.image.width parameter for graphics. -

    -
  • -

    -Support DocBook NG tag inline element. -

    -
  • -

    -It appears that XEP now supports Unicode characters in -bookmarks. There is no further need to strip accents from -characters. -

    -
  • -

    -Make segmentedlist HTML markup -more semantic and available to CSS styles. -

    -
  • -

    -Added user.preroot placeholder template to -permit xsl-stylesheet and other PIs and comments to be -output before the HTML root element. -

    -
  • -

    -Non-chunked legalnotice now gets an <a -name="id"> element in HTML output -so it can be referenced with xref or link. -

    -
  • -

    -In chunked HTML output, changed link rel="home" to rel="start", -and link rel="previous" to rel="prev", per W3C HTML 4.01 -spec. -

    -
  • -

    -Added several patches to htmlhelp from W. Borgert -

    -
  • -

    -Added Bosnian locale file as common/bs.xml. -

    -
-
-

Release 1.65.0

- -
  • -

    A number of important bug fixes. -

    -
  • -

    Added a workaround to allow these stylesheets to process DocBook NG -documents. (It’s a hack that pre-processes the document to strip off the -namespace and then uses exsl:node-set to process -the result.) -

    -
  • -

    Added alternative indexing mechanism which has better -internationalization support. New indexing method allows grouping of -accented letters like e, é, ë into the same group under letter "e". It -can also treat special letters (e.g. "ch") as one character and place -them in the correct position (e.g. between "h" and "i" in Czech -language).

    -

    In order to use this mechanism you must create customization -layer which imports some base stylesheet (like -fo/docbook.xsl, -html/chunk.xsl) and then includes appropriate -stylesheet with new indexing code -(fo/autoidx-ng.xsl or -html/autoidx-ng.xsl). For example:

    -
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    -                version="1.0">
    -
    -<xsl:import href="http://docbook.sourceforge.net/release/xsl/current/fo/docbook.xsl"/>
    -<xsl:include href="http://docbook.sourceforge.net/release/xsl/current/fo/autoidx-ng.xsl"/>
    -
    -</xsl:stylesheet>
    -

    New method is known to work with Saxon and it should also work -with xsltproc 1.1.1 and later. Currently supported languages are -English, Czech, German, French, Spanish and Danish.

    -
-
-

Release 1.64.1

- -

General bug fixes and improvements. Sorry about the failure to produce -an updated release notes file for 1.62.0—1.63.2

  • -

    In the course of fixing bug #849787, wrapping Unicode callouts -with an appropriate font change in the Xalan extensions, I discovered -that the Xalan APIs have changed a bit. So xalan2.jar -will work with older Xalan 2 implementations, xalan25.jar -works with Xalan 2.5.

    -
-
-

Release 1.61.0

- -

Lots of bug fixes and improvements.

  • -

    Initial support for timestamp PI. From now you - can use <?dbtimestamp format="Y-m-d H:M:S"?> to get current - datetime in your document. Added localization support for datetime PI -

    -
  • -

    Added level 6 to test for section depth in -section.level template so that -section.title.level6.properties will be used for sections -that are 6 deep or deeper. This should also cause a h6 to be -created in html output. -

    -
  • -

    Don't use SVG graphics if use.svg=0 -

    -
  • -

    Now uses number-and-title-template for sections - only if section.autolabel is not zero. -

    -
  • -

    Added missing 'english-language-name' attribute to -the l10n element, and the missing 'style' attribute to the -template element so the current gentext documents will -validate. -

    -
  • -

    Corrected several references to parameter - qanda.defaultlabel that were missing the "$". -

    -
  • -

    Now accepts admon.textlabel parameter to turn off - Note, Warning, etc. label. -

    -
  • -

    FeatReq #684561: support more XEP metadata -

    -
  • -

    Added hyphenation support. Added support for coref. -Added beginpage support. (does nothing; see TDG). -

    -
  • -

    Added support for -hyphenation-character, hyphenation-push-character-count, and -hyphenation-remain-character-count -

    -
  • -

    Added root.properties, -ebnf.assignment, -and ebnf.statement.terminator -

    -
  • -

    Support bgcolor PI in table cells; make sure -rowsep and colsep don't have any effect on the last row or -column -

    -
  • -

    Handle othercredit on titlepage a little -better -

    -
  • -

    Applied fix from Jeff Beal that fixed the bug -that put secondary page numbers on primary entries. Same -with tertiary page numbers on secondary entries. -

    -
  • -

    Added definition of missing variable -collection. -

    -
  • -

    Make footnote formatting 'normal' even when it -occurs in a context that has special formatting -

    -
  • -

    Added warning when glossary.collection is not -blank, but it cannot open the specified file. -

    -
  • -

    Pick up the frame attribute on table and -informaltable. -

    -
  • -

    indexdiv/title -in non-autogenerated indexes are -now picked up. -

    -
  • -

    Removed (unused) -component.title.properties -

    -
  • -

    Move IDs from -page-sequences down to titlepage blocks -

    -
  • -

    Use -proportional-column-width(1) on more tables. -

    -

    Use proportional-column-width() for -header/footer tables; suppress relative-align when when -using FOP -

    -
  • -

    Check for glossterm.auto.link when linking -firstterms; don't output gl. prefix on glossterm links -

    -
  • -

    Generate Part ToCs -

    -
  • -

    Support glossary, bibliography, -and index in component ToCs. -

    -
  • -

    Refactored chunking code so that -customization of chunk algorithm and chunk elements is more -practical -

    -
  • -

    Support textobject/phrase -on inlinemediaobject. -

    -
  • -

    Support 'start' PI on ordered lists -

    -
  • -

    Fixed test of $toc PI to turn on qandaset TOC. -

    -
  • -

    Added process.chunk.footnotes to sect2 through -5 to fix bug of missing footnotes when chunk level greater -than 1. -

    -
  • -

    Added -paramater toc.max.depth which controls maximal depth of ToC -as requested by PHP-DOC group. -

    -
  • -

    Exempted titleabbrev from preamble processing in -lists, and fixed variablelist preamble code to use the same -syntax as the other lists. -

    -
  • -

    Added support for elements between variablelist -and first varlistentry since DocBook 4.2 supports that now. -

    -
-
-

Release 1.60.1

- -

Lots of bug fixes.

  • -

    The format of the titlepage.templates.xml files and -the stylesheet that transforms them have been significantly changed. All of the -attributes used to control the templates are now namespace qualified. So what -used to be:

    -
    <t:titlepage element="article" wrapper="fo:block">
    -

    is now:

    -
    <t:titlepage t:element="article" t:wrapper="fo:block">
    -

    Attributes from other namespaces (including those that are unqualified) are -now copied directly through. In practice, this means that the names that used -to be fo: qualified:

    -
    <title named-template="component.title"
    -       param:node="ancestor-or-self::article[1]"
    -       fo:text-align="center"
    -       fo:keep-with-next="always"
    -       fo:font-size="&hsize5;"
    -       fo:font-weight="bold"
    -       fo:font-family="{$title.font.family}"/>
    -

    are now unqualified:

    -
    <title t:named-template="component.title"
    -       param:node="ancestor-or-self::article[1]"
    -       text-align="center"
    -       keep-with-next="always"
    -       font-size="&hsize5;"
    -       font-weight="bold"
    -       font-family="{$title.font.family}"/>
    -

    The t:titlepage and t:titlepage-content -elements both generate wrappers now. And unqualified attributes on those elements -are passed through. This means that you can now make the title font apply to -ane entire titlepage and make the entire recto -titlepage centered by specifying the font and alignment on the those elements:

    -
    <t:titlepage t:element="article" t:wrapper="fo:block"
    -             font-family="{$title.font.family}">
    -
    -  <t:titlepage-content t:side="recto"
    -             text-align="center">
    - - - - - -
  • -

    Support use of titleabbrev in running -headers and footers. -

    -
  • -

    Added (experimental) xref.with.number.and.title -parameter to enable number/title cross references even when the -default would -be just the number. -

    -
  • -

    Generate part ToCs if they're requested. -

    -
  • -

    Use proportional-column-width() in header/footer tables. -

    -
  • -

    Handle alignment correctly when screenshot -wraps a graphic in a figure. -

    -
  • -

    Format chapter and appendix -cross references consistently. -

    -
  • -

    Attempt to support tables with multiple tgroups -in FO. -

    -
  • -

    Output fo:table-columns in -simplelist tables. -

    -
  • -

    Use titlepage.templates.xml for -indexdiv and glossdiv formatting. -

    -
  • -

    Improve support for new bibliography elements. -

    -
  • -

    Added -footnote.number.format, -table.footnote.number.format, -footnote.number.symbols, and -table.footnote.number.symbols for better control of -footnote markers. -

    -
  • -

    Added glossentry.show.acronyms. -

    -
  • -

    Suppress the draft-mode page masters when -draft-mode is no. -

    -
  • -

    Make blank pages verso not recto. D'Oh! -

    -
  • -

    Improved formatting of ulink footnotes. -

    -
  • -

    Fixed bugs in graphic width/height calculations. -

    -
  • -

    Added class attributes to inline elements. -

    -
  • -

    Don't add .html to the filenames identified -with the dbhtml PI. -

    -
  • -

    Don't force a ToC when sections contain refentrys. -

    -
  • -

    Make section title sizes a function of the -body.master.size. -

    -
-
-

Release 1.59.2

- -

The 1.59.2 fixes an FO bug in the page masters that causes FOP to fail. -

  • -

    Removed the region-name from the region-body of blank pages. There's -no reason to give the body of blank pages a unique name and doing so causes -a mismatch that FOP detects. -

    -
  • -

    Output IDs for the first paragraphs in listitems. -

    -
  • -

    Fixed some small bugs in the handling of page numbers in double-sided mode. -

    -
  • -

    Attempt to prevent duplicated IDs from being produced when -endterm on xref points -to something with nested structure. -

    -
  • -

    Fix aligment problems in equations. -

    -
  • -

    Output the type attribute on unordered lists (UL) in HTML only if -the css.decoration parameter is true. -

    -
  • -

    Calculate the font size in formal.title.properties so that it's 1.2 times -the base font size, not a fixed "12pt". -

    -
-
-

Release 1.59.1

- -

The 1.59.1 fixes a few bugs. -

  • -

    Added Bulgarian localization. -

    -
  • -

    Indexing improvements; localize book indexes to books but allow setindex -to index an entire set. -

    -
  • -

    The default value for rowsep and colsep is now "1" as per CALS. -

    -
  • -

    Added support for titleabbrev (use them for cross -references). -

    -
  • -

    Improvements to mediaobject for selecting print vs. online -images. -

    -
  • -

    Added seperate property sets for figures, -examples, equations, tabless, -and procedures. -

    -
  • -

    Make lineannotations italic. -

    -
  • -

    Support xrefstyle attribute. -

    -
  • -

    Make endterm on -xref higher priority than -xreflabel target. -

    -
  • -

    Glossary formatting improvements. -

    -
-
-

Release 1.58.0

- -

The 1.58.0 adds some initial support for extensions in xsltproc, adds -a few features, and fixes bugs. -

  • -

    This release contains the first attempt at extension support for xsltproc. -The only extension available to date is the one that adjusts table column widths. -Run extensions/xsltproc/python/xslt.py. -

    -
  • -

    Fixed bugs in calculation of adjusted column widths to correct for rounding -errors. -

    -
  • -

    Support nested refsection elements correctly. -

    -
  • -

    Reworked gentext.template to take context into consideration. -The name of elements in localization files is now an xpath-like context list, not -just a simple name. -

    -
  • -

    Made some improvements to bibliography formatting. -

    -
  • -

    Improved graphical formatting of admonitions. -

    -
  • -

    Added support for entrytbl. -

    -
  • -

    Support spanning index terms. -

    -
  • -

    Support bibliosource. -

    -
-
-

Release 1.57.0

- -
  • -

    The 1.57.0 release wasn't documented here. Oops. -

    -
-
-

Release 1.56.0

- -

The 1.56.0 release fixes bugs. -

  • -

    Reworked chunking. This will break all existing customizations -layers that change the chunking algorithm. If you're customizing chunking, -look at the new content parameter that's passed to -process-chunk-element and friends. -

    -
  • -

    Support continued and inherited numeration in orderedlist -formatting for FOs. -

    -
  • -

    Added Thai localization. -

    -
  • -

    Tweaked stylesheet documentation stylesheets to link to TDG and -the parameter references. -

    -
  • -

    Allow title on tables of contents ("Table of Contents") to be optional. -Added new keyword to generate.toc. -Support tables of contents on sections. -

    -
  • -

    Made separate parameters for table borders and table cell borders: -table.frame.border.color, -table.frame.border.style, -table.frame.border.thickness, -table.cell.border.color, -table.cell.border.style, and -table.cell.border.thickness. -

    -
  • -

    Suppress formatting of endofrange indexterms. -This is only half-right. They should generate a range, but I haven't figured out how -to do that yet. -

    -
  • -

    Support revdescription. (Bug #582192) -

    -
  • -

    Added default.float.class and fixed figure -floats. (Bug #497603) -

    -
  • -

    Fixed formatting of sbr in FOs. -

    -
  • -

    Added context to the missing template error message. -

    -
  • -

    Process arg correctly in a group. -(Bug #605150) -

    -
  • -

    Removed 'keep-with-next' from formal.title.properties -attribute set now that the stylesheets support the option of putting -such titles below the object. Now the $placement value determines if -'keep-with-next' or 'keep-with-previous' is used in the title block. -

    -
  • -

    Wrap url() around external-destinations when appropriate. -

    -
  • -

    Fixed typo in compact list spacing. (Bug #615464) -

    -
  • -

    Removed spurious hash in anchor name. (Bug #617717) -

    -
  • -

    Address is now displayed verbatim on title pages. (Bug #618600) -

    -
  • -

    The bridgehead.in.toc parameter is now properly -supported. -

    -
  • -

    Improved effectiveness of HTML cleanup by increasing the number -of places where it is used. Improve use of HTML cleanup in XHTML stylesheets. -

    -
  • -

    Support table of contents for appendix in -article. (Bug #596599) -

    -
  • -

    Don't duplicate footnotes in bibliographys and -glossarys. (Bug #583282) -

    -
  • -

    Added default.image.width. (Bug #516859) -

    -
  • -

    Totally reworked funcsynopsis code; it now -supports a 'tabular' presentation style for 'wide' prototypes; see -funcsynopsis.tabular.threshold. (HTML only -right now, I think, FO support, uh, real soon now.) -

    -
  • -

    Reworked support for difference marking; toned down the colors a bit -and added a system.head.content template so that the diff CSS -wasn't overriding user.head.content. (Bug #610660) -

    -
  • -

    Added call to the *.head.content elements when writing -out long description chunks. -

    -
  • -

    Make sure legalnotice link is correct even when -chunking to a different base.dir. -

    -
  • -

    Use CSS to set viewport characteristics if -css.decoration is non-zero, use div instead of p for making -graphic a block element; make figure titles the -default alt -text for images in a figure.

    -
  • -

    Added space-after to list.block.spacing. -

    -
  • -

    Reworked section.level template to give correct answer -instead of being off by one. -

    -
  • -

    When processing tables, use the tabstyle -attribute as the division class. -

    -
  • -

    Fixed bug in html2xhtml.xsl that was causing the -XHTML chunker to output HTML instead of XHTML. -

    -
-
-

Older releases

- -

To view the release notes for older releases, see http://cvs.sourceforge.net/viewcvs.py/docbook/xsl/RELEASE-NOTES.xml. Be - aware that there were no release notes for releases prior to the - 1.50.0 release.

-
-

About dot-zero releases

- -

DocBook Project “dot zero” releases should be - considered experimental and are always - followed by stable “dot one plus” releases, usually within - two or three weeks. Please help to ensure the stability of - “dot one plus” releases by carefully testing each - “dot zero” release and reporting back about any - problems you find.

-

It is not recommended that you use a “dot zero” - release in a production system. Instead, you should wait for - the “dot one” or greater versions.

-
-
- diff --git a/docbook-xsl-1.75.2/RELEASE-NOTES.txt b/docbook-xsl-1.75.2/RELEASE-NOTES.txt deleted file mode 100644 index 3ad0a7a..0000000 --- a/docbook-xsl-1.75.2/RELEASE-NOTES.txt +++ /dev/null @@ -1,7920 +0,0 @@ -Release Notes for the DocBook XSL Stylesheets - -$Revision: 8504 $ $Date: 2009-07-21 07:22:11 -0700 (Tue, 21 Jul 2009) $ - -2009-07-21 - -This release-notes document is available in the following formats: HTML, PDF, -plain text; it provides a per-release list of enhancements and changes to the -stylesheets’ public APIs (user-configurable parameters) and excludes -descriptions of most bug fixes. For a complete list of all changes (including -all bug fixes) that have been made since the previous release, see the separate -NEWS (plain text) or NEWS.html files. Also available: An online hyperlinked -change history (warning: big file) of all changes made over the entire history -of the codebase. - -As with all DocBook Project “dot one plus†releases, this release aspires to be -stable (in contrast to dot-zero releases, which are experimental). - -â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â” - -Table of Contents - -Release Notes: 1.75.2 - - Gentext - Common - FO - HTML - Manpages - Epub - Profiling - XSL-Saxon - XSL-Xalan - -Release Notes: 1.75.1 - - FO - HTML - Epub - Params - -Release Notes: 1.75.0 - - Gentext - Common - FO - HTML - Manpages - ePub - HTMLHelp - Params - Highlighting - XSL-Saxon - XSL-Xalan - -Release Notes: 1.74.3 -Release Notes: 1.74.2 -Release Notes: 1.74.1 - - Gentext - FO - HTML - Manpages - ePub - Roundtrip - Params - Highlighting - -Release Notes: 1.74.0 - - Gentext - Common - FO - HTML - Manpages - Epub - HTMLHelp - Eclipse - JavaHelp - Roundtrip - Slides - Website - Params - Profiling - Tools - Extensions - XSL-Saxon - XSL-Xalan - XSL-libxslt - -Release Notes: 1.73.2 -Release: 1.73.1 - - Gentext - FO - HTML - Manpages - HTMLHelp - Eclipse - JavaHelp - Roundtrip - Params - -Release: 1.73.0 - - Gentext - Common - FO - HTML - Manpages - Eclipse - JavaHelp - Roundtrip - Params - Highlighting - Profiling - Lib - Tools - XSL-Saxon - XSL-Xalan - -Release: 1.72.0 - - Common - FO - HTML - Manpages - Params - Template - Roundtrip - -Release: 1.71.1 - - Common - FO - HTML - Highlighting - Manpages - Params - Profiling - -Release: 1.71.0 - - Common - Extensions - FO - HTML - Highlighting - Manpages - Params - Tools - -Release: 1.70.1 - - FO - HTML - HTMLHelp - Params - -Release: 1.70.0 - - Common - Extensions - FO - HTML - Manpages - Params - Profiling - Tools - WordML - -Release 1.69.1 -Release 1.69.0 - - Common - FO - Help - HTML - man - -Release 1.68.1 -Release 1.68.0 -Release 1.67.2 -Release 1.67.1 -Release 1.67.0 -Release 1.66.1 -Release 1.65.0 -Release 1.64.1 -Release 1.61.0 -Release 1.60.1 -Release 1.59.2 -Release 1.59.1 -Release 1.58.0 -Release 1.57.0 -Release 1.56.0 -Older releases -About dot-zero releases - -Release Notes: 1.75.2 - -The following is a list of changes that have been made since the 1.75.1 -release. - -Gentext - -The following changes have been made to the gentext code since the 1.75.1 -release. - - â— dleidert: locale/ja.xml - - Improved Japanese translation for Note(s). Closes bug #2823965. - - â— dleidert: locale/pl.xml - - Polish alphabet contains O with acute accent, not with grave accent. Closes bug #2823964. - - â— Robert Stayton: locale/ja.xml - - Fix translation of "index", per bug report 2796064. - - â— Robert Stayton: locale/is.xml - - New Icelandic locale file. - -Common - -The following changes have been made to the common code since the 1.75.1 -release. - - â— Norman Walsh: stripns.xsl - - Support more downconvert cases - - â— Robert Stayton: titles.xsl - - Make sure title inside info is used if no other title. - -FO - -The following changes have been made to the fo code since the 1.75.1 release. - - â— Robert Stayton: pi.xsl - - Turn off dbfo-need for fop1.extensions also, per bug #2816141. - -HTML - -The following changes have been made to the html code since the 1.75.1 release. - - â— Mauritz Jeanson: titlepage.xsl - - Output "Copyright" heading in XHTML too. - - â— Mauritz Jeanson: titlepage.xsl - - Added stylesheet.result.type test for copyright. Closes bug #2813289. - - â— Norman Walsh: htmltbl.xsl - - Remove ambiguity wrt @span, @rowspan, and @colspan - -Manpages - -The following changes have been made to the manpages code since the 1.75.1 -release. - - â— Mauritz Jeanson: endnotes.xsl - - Added normalize-space() for ulink content. Closes bug #2793877. - - â— Mauritz Jeanson: docbook.xsl - - Added stylesheet.result.type test for copyright. Closes bug #2813289. - -Epub - -The following changes have been made to the epub code since the 1.75.1 release. - - â— Keith Fahlgren: bin/dbtoepub; bin/lib/docbook.rb - - Corrected bugs caused by path and file assumptions were not met - - â— Keith Fahlgren: bin/lib/docbook.rb; docbook.xsl - - Cleaning up hardcoded values into parameters and fixing Ruby library to pass them properly; all thanks to patch from Liza Daly - -Profiling - -The following changes have been made to the profiling code since the 1.75.1 -release. - - â— Robert Stayton: profile.xsl - - Fix bug 2815493 missing exsl.node.set.available parameter. - -XSL-Saxon - -The following changes have been made to the xsl-saxon code since the 1.75.1 -release. - - â— Mauritz Jeanson: src/com/nwalsh/saxon/ColumnUpdateEmitter.java; src/com/ - nwalsh/saxon/Colum⋯ - - Added fixes so that colgroups in the XHTML namespace are processed properly. - -XSL-Xalan - -The following changes have been made to the xsl-xalan code since the 1.75.1 -release. - - â— Mauritz Jeanson: nbproject/project.xml - - Added missing NetBeans configuration. - -Release Notes: 1.75.1 - -This release includes bug fixes. - -The following is a list of changes that have been made since the 1.75.0 -release. - -FO - -The following changes have been made to the fo code since the 1.75.0 release. - - â— Keith Fahlgren: block.xsl - - Switching to em dash for character before attribution in epigraph; resolves Bug #2793878 - - â— Robert Stayton: lists.xsl - - Fixed bug 2789947, id attribute missing on simplelist fo output. - -HTML - -The following changes have been made to the html code since the 1.75.0 release. - - â— Keith Fahlgren: block.xsl - - Switching to em dash for character before attribution in epigraph; resolves Bug #2793878 - - â— Robert Stayton: lists.xsl - - Fixed bug 2789678: apply-templates line accidentally deleted. - -Epub - -The following changes have been made to the epub code since the 1.75.0 release. - - â— Keith Fahlgren: bin/spec/epub_regressions_spec.rb; docbook.xsl - - Added regression and fix to correct "bug" with namespace-prefixed container elements in META-INF/container.xml ; resolves Issue #2790017 - - â— Keith Fahlgren: bin/spec/epub_regressions_spec.rb; bin/spec/files/ - onegraphic.xinclude.xml;⋯ - - Another attempt at flexible named entity and XInclude processing - - â— Keith Fahlgren: bin/lib/docbook.rb - - Tweaking solution to Bug #2750442 following regression reported by Michael Wiedmann. - -Params - -The following changes have been made to the params code since the 1.75.0 -release. - - â— Mauritz Jeanson: highlight.source.xml - - Updated documentation to reflect changes made in r8419. - -Release Notes: 1.75.0 - -This release includes important bug fixes and adds the following significant -feature changes: - -Gentext - - Modifications to translations have been made. - -Common - - Added support for some format properties on tables using HTML table markup. - - Added two new qanda.defaultlabel values so that numbered sections and - numbered questions can be distinguished. Satisfies Feature Request # - 1539045. - - Added code to handle acknowledgements in book and part. The element is - processed similarly to dedication. All acknowledgements will appear as - front matter, after any dedications. - -FO - - The inclusion of highlighting code has been simplified. - - Add support for pgwide on informal objects. - - Added a new parameter, bookmarks.collapse, that controls the initial state - of the bookmark tree. Closes FR #1792326. - - Add support for more dbfo processing instructions. - - Add new variablelist.term.properties to format terms, per request # - 1968513. - - Add support for @width on screen and programlisting, fixes bug #2012736. - - Add support for writing-mode="rl-tb" (right-to-left) in FO outputs. - - Add writing.mode param for FO output. - -HTML - - Convert all calls to class.attribute to calls to common.html.attributes to - support dir, lang, and title attributes in html output for all elements. - Fulfills feature request #1993833. - - Inclusion of highlighting code was simplified. Only one import is now - necessary. - - Add new param index.links.to.section. - - Add support for the new index.links.to.section param which permits precise - links to indexterms in HTML output rather than to the section title. - -ePub - - Slightly more nuanced handling of imageobject alternatives and better - support in dbtoepub for XIncludes and ENTITYs to resolve Issue #2750442 - reported by Raphael Hertzog. - - Added a colon after an abstract/title when mapping into the dc:description - for OPF metadata in ePub output to help the flat text have more - pseudo-semantics (sugestions from Michael Wiedmann) - - Added DocBook subjectset -> OPF dc:subject mapping and tests - - Added DocBook date -> OPF dc:date mapping and tests - - Added DocBook abstract -> OPF dc:description mapping and tests - - Added --output option to dbtoepub based on user request - -HTMLHelp - - Add support for generating olink target database for htmlhelp files. - -Params - - Add default setting for @rules attribute on HTML markup tables. - - Added a new parameter, bookmarks.collapse, that controls the initial state - of the bookmark tree. When the parameter has a non-zero value (the - default), only the top-level bookmarks are displayed initially. Otherwise, - the whole tree of bookmarks is displayed. This is implemented for FOP 0.9X. - Closes FR #1792326. - - Add new variablelist.term.properties to format terms, per request # - 1968513. - - Add two new qanda.defaultlabel values so that numbered sections and - numbered questions can be distinguished. Satisfies Feature Request # - 1539045. - - Add param to control whether an index entry links to a section title or to - the precise location of the indexterm. - - New attribute list for glossentry in glossary. - - New parameter to support @width on programlisting and screen. - - Add attribute-sets for formatting glossary terms and defs. - -Highlighting - - Inclusion of highlighting code was simplified. Only one import is now - necessary. - -The following is a list of changes that have been made since the 1.74.3 -release. - -Gentext - -The following changes have been made to the gentext code since the 1.74.3 -release. - - â— Robert Stayton: locale/sv.xml; locale/ja.xml; locale/pl.xml - - Check in translations of Legalnotice submitted on mailing list. - - â— Robert Stayton: locale/es.xml - - Fix spelling errors in Acknowledgements entries. - - â— Robert Stayton: locale/es.xml - - Check in translations for 4 elements submitted through docbook-apps - message of 14 April 2009. - - â— David Cramer: locale/zh.xml; locale/ca.xml; locale/ru.xml; locale/ga.xml; - locale/gl.xml; l⋯ - - Internationalized punctuation in glosssee and glossseealso - - â— Robert Stayton: Makefile - - Check in fixes for DSSSL gentext targets from submitted patch #1689633. - - â— Robert Stayton: locale/uk.xml - - Check in major update submitted with bug report #2008524. - - â— Robert Stayton: locale/zh_tw.xml - - Check in fix to Note string submitted in bug #2441051. - - â— Robert Stayton: locale/ru.xml - - Checkin typo fix submitted in bug #2453406. - -Common - -The following changes have been made to the common code since the 1.74.3 -release. - - â— Robert Stayton: gentext.xsl - - Fix extra generated space when xrefstyle includes 'nopage'. - - â— Robert Stayton: table.xsl - - Add support for some format properties on tables using - HTML table markup. These include: - - frame attribute on table (or uses $default.table.frame parameter). - - rules attribute on table (or uses $default.table.rules parameter). - - align attribute on td and th - - valign attribute on td and th - - colspan on td and th - - rowspan on td and th - - bgcolor on td and th - - â— Robert Stayton: olink.xsl - - Add placeholder template to massage olink hot text to make - customization easier, per Feature Request 1828608. - - â— Robert Stayton: targets.xsl - - Add support for collecting olink targets from a glossary - generated from a glossary.collection. - - â— Robert Stayton: titles.xsl - - Handle firstterm like glossterm in mode="title.markup". - - â— Robert Stayton: titles.xsl - - Add match on info/title in title.markup templates where missing. - - â— Mauritz Jeanson: titles.xsl - - Changed "ancestor::title" to "(ancestor::title and (@id or @xml:id))". - This enables proper formatting of inline elements in titles in TOCs, - as long as these inlines don't have id or xml:id attributes. - - â— Robert Stayton: labels.xsl - - Add two new qanda.defaultlabel values so that numbered sections - and numbered questions can be distinguished. Satisfies - Feature Request #1539045. - - â— Robert Stayton: stripns.xsl; pi.xsl - - Convert function-available(exsl:node-set) to use the new param - so Xalan bug is isolated. - - â— Mauritz Jeanson: titles.xsl - - Added fixes for bugs #2112656 and #1759205: - 1. Reverted mistaken commits r7485 and r7523. - 2. Updated the template with match="link" and mode="no.anchor.mode" so that - @endterm is used if it exists and if the link has no content. - - â— Mauritz Jeanson: titles.xsl - - Added code to handle acknowledgements in book and part. The element is processed - similarly to dedication. All acknowledgements will appear as front matter, after - any dedications. - - â— Robert Stayton: olink.xsl - - Fix bug #2018717 use.local.olink.style uses wrong gentext context. - - â— Robert Stayton: olink.xsl - - Fix bug #1787167 incorrect hot text for some olinks. - - â— Robert Stayton: common.xsl - - Fix bug #1669654 Broken output if copyright contains a range. - - â— Robert Stayton: labels.xsl - - Fix bug in labelling figure inside appendix inside article inside book. - -FO - -The following changes have been made to the fo code since the 1.74.3 release. - - â— Jirka Kosek: highlight.xsl - - Inclusion of highlighting code was simplified. Only one import is now necessary. - - â— Robert Stayton: fop1.xsl - - Add the new fop extensions namespace declaration, in case FOP - extension functions are used. - - â— Robert Stayton: formal.xsl - - Add support for pgwide on informal objects. - - â— Robert Stayton: docbook.xsl - - Fixed spurious closing quote on line 134. - - â— Robert Stayton: docbook.xsl; autoidx-kosek.xsl; autoidx.xsl - - Convert function-available for node-set() to use - new $exsl.node.set.available param in test. - - â— David Cramer: xref.xsl - - Suppress extra space after xref when xrefstyle='select: label nopage' (#2740472) - - â— Mauritz Jeanson: pi.xsl - - Fixed doc bug for row-height. - - â— David Cramer: glossary.xsl - - Internationalized punctuation in glosssee and glossseealso - - â— Robert Stayton: param.xweb; param.ent; htmltbl.xsl; table.xsl - - Add support for some format properties on tables using - HTML table markup. These include: - - frame attribute on table (or uses $default.table.frame parameter). - - rules attribute on table (or uses $default.table.rules parameter). - - align attribute on td and th - - valign attribute on td and th - - colspan on td and th - - rowspan on td and th - - bgcolor on td and th - - â— Robert Stayton: table.xsl - - Add support bgcolor in td and th - elements in HTML table markup. - - â— Robert Stayton: htmltbl.xsl - - Add support for colspan and rowspan and bgcolor in td and th - elements in HTML table markup. - - â— Robert Stayton: param.xweb - - Fix working of page-master left and right margins. - - â— Mauritz Jeanson: param.xweb; param.ent; fop1.xsl - - Added a new parameter, bookmarks.collapse, that controls the initial state of the bookmark tree. When the parameter has a non-zero value (the default), only the top-level bookmarks are displayed initially. Otherwise, the whole tree of bookmarks is displayed. This is implemented for FOP 0.9X. Closes FR #1792326. - - â— Robert Stayton: table.xsl; pi.xsl - - Add support for dbfo row-height processing instruction, like that in dbhtml. - - â— Robert Stayton: lists.xsl - - Add support for dbfo keep-together processing instruction for - entire list instances. - - â— Robert Stayton: lists.xsl; block.xsl - - Add support fo dbfo keep-together processing instruction to - more blocks like list items and paras. - - â— Robert Stayton: lists.xsl; param.xweb; param.ent - - Add new variablelist.term.properties to format terms, per request # 1968513. - - â— Robert Stayton: inline.xsl - - In simple.xlink, rearrange order of processing. - - â— Robert Stayton: xref.xsl - - Handle firstterm like glossterm in mode="xref-to". - - â— Robert Stayton: glossary.xsl; xref.xsl; pi.xsl; footnote.xsl - - Implement simple.xlink for glosssee and glossseealso so they can use - other types of linking besides otherterm. - - â— Robert Stayton: qandaset.xsl - - Add two new qanda.defaultlabel values so that numbered sections and numbered questions can be distinguished. Satisfies Feature Request #1539045. - - â— Robert Stayton: titlepage.xsl - - For the book title templates, I changed info/title to book/info/title - so other element's titles will not be affected. - - â— Robert Stayton: xref.xsl; verbatim.xsl - - Use param exsl.node.set.available to test for function. - - â— Robert Stayton: param.xweb; param.ent; footnote.xsl - - Start using new param exsl.node.set.available to work around Xalan bug. - - â— Robert Stayton: titlepage.templates.xml - - Add comment on use of t:predicate for editor to prevent - extra processing of multiple editors. Fixes bug 2687842. - - â— Robert Stayton: xref.xsl; autoidx.xsl - - An indexterm primary, secondary, or tertiary element with an id or xml:id - now outputs that ID, so that index entries can be cross referenced to. - - â— Mauritz Jeanson: synop.xsl - - Added modeless template for ooclass|oointerface|ooexception. - Closes bug #1623468. - - â— Robert Stayton: xref.xsl - - Add template with match on indexterm in mode="xref-to" to fix bug 2102592. - - â— Robert Stayton: xref.xsl - - Now xref to qandaentry will use the label element in a question for - the link text if it has one. - - â— Robert Stayton: inline.xsl - - Add id if specified from @id to output for quote and phrase so - they can be xref'ed to. - - â— Robert Stayton: xref.xsl - - Add support for xref to phrase, simpara, anchor, and quote. - This assumes the author specifies something using xrefstyle since - the elements don't have ordinary link text. - - â— Robert Stayton: toc.xsl - - Fix bug in new toc templates. - - â— Mauritz Jeanson: titlepage.xsl; component.xsl; division.xsl; xref.xsl; - titlepage.templates⋯ - - Added code to handle acknowledgements in book and part. The element is processed - similarly to dedication. All acknowledgements will appear as front matter, after - any dedications. - - â— Robert Stayton: toc.xsl - - Rewrite toc templates to support an empty toc or populated toc - in all permitted contexts. Same for lot elements. - This fixes bug #1595969 for FO outputs. - - â— Robert Stayton: index.xsl - - Fix indents for seealsoie so they are consistent. - - â— Mauritz Jeanson: param.xweb - - Removed duplicate (monospace.font.family). - - â— Robert Stayton: param.xweb; param.ent - - Add glossentry.list.item.properties. - - â— Robert Stayton: param.xweb; param.ent - - Add monospace.verbatim.font.width param to support @width on programlisting. - - â— Robert Stayton: verbatim.xsl - - Put programlisting in fo:block-container with writing-mode="lr-tb" - when text direction is right to left because all program languages - are left-to-right. - - â— Robert Stayton: verbatim.xsl - - Add support for @width on screen and programlisting, fixes bug #2012736. - - â— Robert Stayton: xref.xsl - - Fix bug #1973585 xref to para with xrefstyle not handled correctly. - - â— Mauritz Jeanson: block.xsl - - Added support for acknowledgements in article. - Support in book/part remains to be added. - - â— Robert Stayton: xref.xsl - - Fix bug #1787167 incorrect hot text for some olinks. - - â— Robert Stayton: fo.xsl - - Add writing-mode="tb-rl" as well since some XSL-FO processors support it. - - â— Robert Stayton: autotoc.xsl; lists.xsl; glossary.xsl; fo.xsl; table.xsl; - pagesetup.xsl - - Add support for writing-mode="rl-tb" (right-to-left) in FO outputs. - Changed instances of margin-left to margin-{$direction.align.start} - and margin-right to margin-{$direction.align.end}. Those direction.align - params are computed from the writing mode value in each locale's - gentext key named 'writing-mode', introduced in 1.74.3 to add - right-to-left support to HTML outputs. - - â— Robert Stayton: param.xweb; param.ent - - Add attribute-sets for formatting glossary terms and defs. - - â— Robert Stayton: param.xweb; param.ent - - Add writing.mode param for FO output. - - â— Robert Stayton: autotoc.xsl - - Fix bug 1546008: in qandaentry in a TOC, use its blockinfo/titleabbrev or blockinfo/title - instead of question, if available. For DocBook 5, use the info versions. - - â— Keith Fahlgren: verbatim.xsl - - Add better pointer to README for XSLTHL - - â— Keith Fahlgren: verbatim.xsl - - More tweaking the way that XSLTHL does or does not get called - - â— Keith Fahlgren: verbatim.xsl - - Alternate attempt at sanely including/excluding XSLTHT code - -HTML - -The following changes have been made to the html code since the 1.74.3 release. - - â— Robert Stayton: lists.xsl - - Removed redundant lang and title attributes on list element inside - div element for lists. - - â— Robert Stayton: inline.xsl; titlepage.xsl; division.xsl; toc.xsl; - sections.xsl; table.xsl;⋯ - - Convert all calls to class.attribute to calls to common.html.attributes - to support dir, lang, and title attributes in html output for all elements. - Fulfills feature request #1993833. - - â— Robert Stayton: chunk-common.xsl - - Fix bug #2750253 wrong links in list of figures in chunk.html - when target html is in a subdirectory and dbhtml filename used. - - â— Jirka Kosek: highlight.xsl - - Inclusion of highlighting code was simplified. Only one import is now necessary. - - â— Robert Stayton: chunk-common.xsl; chunktoc.xsl; docbook.xsl; - chunk-changebars.xsl; autoidx⋯ - - Convert function-available for node-set() to use - new $exsl.node.set.available param in test. - - â— Mauritz Jeanson: pi.xsl - - Fixed doc bug for row-height. - - â— David Cramer: glossary.xsl - - Internationalized punctuation in glosssee and glossseealso - - â— Robert Stayton: lists.xsl; html.xsl; block.xsl - - More elements get common.html.attributes. - Added locale.html.attributes template which does the lang, - dir, and title attributes, but not the class attribute - (used on para, for example). - - â— Robert Stayton: lists.xsl - - Replace more literal class atts with mode="class.attribute" to support - easier customization. - - â— Robert Stayton: glossary.xsl - - Support olinking in glosssee and glossseealso. - - â— Robert Stayton: inline.xsl - - In simple.xlink, rearrange order of processing. - - â— Robert Stayton: xref.xsl - - Handle firstterm like glossterm in mode="xref-to". - - â— Robert Stayton: lists.xsl; html.xsl; block.xsl - - Added template named common.html.attributes to output - class, title, lang, and dir for most elements. - Started adding it to some list and block elements. - - â— Robert Stayton: qandaset.xsl - - Add two new qanda.defaultlabel values so that numbered sections - and numbered questions can be distinguished. Satisfies - Feature Request #1539045. - - â— Robert Stayton: param.xweb; chunk-code.xsl; param.ent; xref.xsl; - chunkfast.xsl; verbatim.x⋯ - - Use new param exsl.node.set.available to test, handles Xalan bug. - - â— Robert Stayton: autoidx.xsl - - Use named anchors for primary, secondary, and tertiary ids so - duplicate entries with different ids can still have an id output. - - â— Robert Stayton: param.xweb; param.ent - - Add new param index.links.to.section. - - â— Robert Stayton: xref.xsl; autoidx.xsl - - Pass through an id on primary, secondary, or tertiary to - the index entry, so that one could link to an index entry. - You can't link to the id on an indexterm because that is - used to place the main anchor in the text flow. - - â— Robert Stayton: autoidx.xsl - - Add support for the new index.links.to.section param which permits - precise links to indexterms in HTML output rather than to - the section title. - - â— Mauritz Jeanson: synop.xsl - - Added modeless template for ooclass|oointerface|ooexception. - Closes bug #1623468. - - â— Robert Stayton: qandaset.xsl - - Make sure a qandaset has an anchor, even when it has no title, - because it may be referenced in a TOC or xref. - Before, the anchor was output by the title, but there was no - anchor if there was no title. - - â— Robert Stayton: xref.xsl - - Add a template for indexterm with mode="xref-to" to fix bug 2102592. - - â— Robert Stayton: xref.xsl - - Now xref to qandaentry will use the label element in a question for - the link text if it has one. - - â— Robert Stayton: qandaset.xsl; html.xsl - - Create separate templates for computing label of question and answer - in a qandaentry, so such can be used for the alt text of an xref - to a qandaentry. - - â— Robert Stayton: inline.xsl; xref.xsl - - Now support xref to phrase, simpara, anchor, and quote, - most useful when an xrefstyle is used. - - â— Robert Stayton: toc.xsl - - Rewrite toc templates to support an empty toc or populated toc - in all permitted contexts. Same for lot elements. - This fixes bug #1595969 for HTML outputs. - - â— Mauritz Jeanson: titlepage.xsl; component.xsl; division.xsl; xref.xsl; - titlepage.templates⋯ - - Added code to handle acknowledgements in book and part. The element is processed - similarly to dedication. All acknowledgements will appear as front matter, after - any dedications. - - â— Robert Stayton: index.xsl - - Rewrote primaryie, secondaryie and tertiaryie templates to handle - nesting of elements and seeie and seealsoie, as reported in - bug # 1168912. - - â— Robert Stayton: autotoc.xsl - - Fix simplesect in toc problem. - - â— Robert Stayton: verbatim.xsl - - Add support for @width per bug report #2012736. - - â— Robert Stayton: formal.xsl; htmltbl.xsl - - Fix bug #1787140 HTML tables not handling attributes correctly. - - â— Robert Stayton: param.xweb - - Move writing-mode param. - - â— Keith Fahlgren: refentry.xsl - - Remove a nesting of

inside

for refclass (made XHTML* invalid, made HTML silly) - - ◠Robert Stayton: table.xsl - - Fix bug #1945872 to allow passthrough of colwidth values to - HTML table when no tablecolumns.extension is available and - when no instance of * appears in the table's colspecs. - - ◠Mauritz Jeanson: block.xsl - - Added support for acknowledgements in article. - Support in book/part remains to be added. - - ◠Robert Stayton: chunk-common.xsl - - Fix bug #1787167 incorrect hot text for some olinks. - - ◠Robert Stayton: qandaset.xsl - - Fix bug 1546008: in qandaentry in a TOC, use its blockinfo/titleabbrev or blockinfo/title - instead of question, if available. For DocBook 5, use the info versions. - - ◠Robert Stayton: chunktoc.xsl - - Add support for generating olink database when using chunktoc.xsl. - - ◠Keith Fahlgren: verbatim.xsl - - Add better pointer to README for XSLTHL - - ◠Keith Fahlgren: verbatim.xsl - - Another stab at fixing the stupid XSLTHT includes across processors (Saxon regression reported by Sorin Ristache) - - ◠Keith Fahlgren: verbatim.xsl - - More tweaking the way that XSLTHL does or does not get called - - ◠Keith Fahlgren: verbatim.xsl - - Alternate attempt at sanely including/excluding XSLTHT code - -Manpages - -The following changes have been made to the manpages code since the 1.74.3 -release. - - ◠Robert Stayton: table.xsl - - Convert function-available test for node-set() function to - test of $exsl.node.set.available param. - - ◠Mauritz Jeanson: lists.xsl - - Added a template for bibliolist. Closes bug #1815916. - -ePub - -The following changes have been made to the epub code since the 1.74.3 release. - - ◠Keith Fahlgren: bin/spec/epub_regressions_spec.rb; bin/spec/files/ - onegraphic.xinclude.xml;⋯ - - Slightly more nuanced handling of imageobject alternatives and better support in dbtoepub for XIncludes and ENTITYs to resolve Issue #2750442 reported by Raphael Hertzog. - - ◠Keith Fahlgren: docbook.xsl - - Add a colon after an abstract/title when mapping into the dc:description for OPF metadata in ePub output to help the flat text have more pseudo-semantics (sugestions from Michael Wiedmann) - - ◠Keith Fahlgren: bin/spec/epub_regressions_spec.rb; docbook.xsl; bin/spec/ - files/de.xml - - Correctly set dc:language in OPF metadata when i18nizing. Closes Bug #2755150 - - ◠Keith Fahlgren: bin/spec/epub_regressions_spec.rb; docbook.xsl - - Corrected namespace declarations for literal XHTML elements to make them serialize "normally" - - ◠Keith Fahlgren: docbook.xsl - - Be a little bit more nuanced about dates - - ◠Keith Fahlgren: docbook.xsl; bin/spec/epub_realbook_spec.rb; bin/spec/files - /orm.book.001.x⋯ - - Add DocBook subjectset -> OPF dc:subject mapping and tests - - ◠Keith Fahlgren: docbook.xsl; bin/spec/epub_realbook_spec.rb; bin/spec/files - /orm.book.001.x⋯ - - Add DocBook date -> OPF dc:date mapping and tests - - ◠Keith Fahlgren: docbook.xsl; bin/spec/epub_realbook_spec.rb; bin/spec/files - /orm.book.001.x⋯ - - Add DocBook abstract -> OPF dc:description mapping and tests - - ◠Robert Stayton: docbook.xsl - - Check in patch submitted by user to add opf:file-as attribute - to dc:creator element. - - ◠Keith Fahlgren: bin/dbtoepub - - Adding --output option to dbtoepub based on user request - - ◠Keith Fahlgren: docbook.xsl; bin/spec/epub_spec.rb - - Cleaning and regularizing the generation of namespaced nodes for OPF, NCX, XHTML and other outputted filetypes (hat tip to bobstayton for pointing out the silly, incorrect code) - - ◠Keith Fahlgren: bin/spec/epub_regressions_spec.rb; bin/spec/files/ - refclass.xml - - Remove a nesting of

inside

for refclass (made XHTML* invalid, made HTML silly) - - â— Keith Fahlgren: bin/spec/epub_regressions_spec.rb; bin/spec/files/ - blockquotepre.xml - - Added regression test and fix for XHTML validation problem with s added inside

; This potentially causes another problem (where something is referenced by has no anchor, but someone reporting that should cause the whole thing to be reconsidered with modern browsers in mind. - -HTMLHelp - -The following changes have been made to the htmlhelp code since the 1.74.3 -release. - - ◠Robert Stayton: htmlhelp-common.xsl - - Add support for generating olink target database for htmlhelp files. - -Params - -The following changes have been made to the params code since the 1.74.3 -release. - - ◠Robert Stayton: default.table.rules.xml - - Add default setting for @rules attribute on HTML markup tables. - - ◠Mauritz Jeanson: bookmarks.collapse.xml - - Added a new parameter, bookmarks.collapse, that controls the initial state - of the bookmark tree. When the parameter has a non-zero value (the default), - only the top-level bookmarks are displayed initially. Otherwise, the whole - tree of bookmarks is displayed. - - This is implemented for FOP 0.9X. Closes FR #1792326. - - ◠Robert Stayton: variablelist.term.properties.xml - - Add new variablelist.term.properties to format terms, per - request # 1968513. - - ◠Robert Stayton: qanda.defaultlabel.xml - - Add two new qanda.defaultlabel values so that numbered sections - and numbered questions can be distinguished. Satisfies - Feature Request #1539045. - - ◠Robert Stayton: index.links.to.section.xml - - Change default to 1 to match past behavior. - - ◠Robert Stayton: exsl.node.set.available.xml - - Isolate this text for Xalan bug regarding exsl:node-set available. - If it is ever fixed in Xalan, just fix it here. - - ◠Robert Stayton: index.links.to.section.xml - - Add param to control whether an index entry links to - a section title or to the precise location of the - indexterm. - - ◠Robert Stayton: glossentry.list.item.properties.xml - - New attribute list for glossentry in glossary. - - ◠Robert Stayton: monospace.verbatim.font.width.xml - - New parameter to support @width on programlisting and screen. - - ◠Mauritz Jeanson: highlight.source.xml - - Updated and reorganized the description. - - ◠Robert Stayton: page.margin.outer.xml; page.margin.inner.xml - - Add caveat about XEP bug when writing-mode is right-to-left. - - ◠Robert Stayton: article.appendix.title.properties.xml; writing.mode.xml; - body.start.indent⋯ - - Change 'left' to 'start' and 'right' to 'end' to support right-to-left - writing mode. - - ◠Robert Stayton: glossdef.block.properties.xml; - glossdef.list.properties.xml; glossterm.blo⋯ - - Add attribute-sets for formatting glossary terms and defs. - - ◠Robert Stayton: glossterm.separation.xml - - Clarify the description. - - ◠Robert Stayton: make.year.ranges.xml - - Now handles year element containing a comma or dash without error. - -Highlighting - -The following changes have been made to the highlighting code since the 1.74.3 -release. - - ◠Jirka Kosek: README - - Inclusion of highlighting code was simplified. Only one import is now necessary. - - ◠Keith Fahlgren: README - - Adding XSLTHL readme - - ◠Keith Fahlgren: common.xsl - - Alternate attempt at sanely including/excluding XSLTHT code - -XSL-Saxon - -The following changes have been made to the xsl-saxon code since the 1.74.3 -release. - - ◠Mauritz Jeanson: src/com/nwalsh/saxon/Text.java - - Added a fix that prevents output of extra blank line. - Hopefully this closes bug #894805. - -XSL-Xalan - -The following changes have been made to the xsl-xalan code since the 1.74.3 -release. - - ◠Mauritz Jeanson: src/com/nwalsh/xalan/Text.java - - Added a fix that prevents output of extra blank line. - Hopefully this closes bug #894805. - -Release Notes: 1.74.3 - -This release fixes some bugs in the 1.74.2 release. - -See highlighting/README for XSLTHL usage instructions. - -Release Notes: 1.74.2 - -This release fixes some bugs in the 1.74.1 release. - -Release Notes: 1.74.1 - -This release includes important bug fixes and adds the following significant -feature changes: - -Gentext - - Kirghiz locale added and Chinese translations have been simplified. - - Somme support for gentext and right-to-left languages has been added. - -FO - - Various bugs have been resolved. - - Support for a new processing instruction: dbfo funcsynopsis-style has been - added. - - Added new param email.mailto.enabled for FO output. Patch from Paolo - Borelli. - - Support for documented metadata in fop1 mode has been added. - -Highlighting - - Support for the latest version of XSLTHL 2.0 and some new language syntaxes - have been added to a variety of outputs. - -Manpages - - Added man.output.better.ps.enabled param (zero default). It non-zero, no - such markup is embedded in generated man pages, and no enhancements are - included in the PostScript output generated from those man pages by the man - -Tps command. - -HTML - - Support for writing.mode to set text direction and alignment based on - document locale has been added. - - Added a new top-level stylesheet module, chunk-changebars.xsl, to be used - for generating chunked output with highlighting based on change - (@revisionflag) markup. The module imports/includes the standard chunking - and changebars templates and contains additional logic for chunked output. - See FRs #1015180 and #1819915. - -ePub - - Covers now look better in Adobe Digital Editions thanks to a patch from - Paul Norton of Adobe - - Cover handling now more generic (including limited DocBook 5.0 cover - support thanks to patch contributed by Liza Daly. - - Cover markup now carries more reliably into files destined for .mobi and - the Kindle. - - dc:identifiers are now generated from more types of numbering schemes. - - Both SEO and semantic structure of chunked ePub output by ensuring that we - always send out one and only one h1 in each XHTML chunk. - - Primitive support for embedding a single font added. - - Support for embedding a CSS customizations added. - -Roundtrip - - Support for imagedata-metadata and table as images added. - - Support for imagedata-metadata and legalnotice as images added. - -Params - - man.output.better.ps.enabled added for Manpages output - - writing.mode.xml added to set text direction. - - Added new param email.mailto.enabled for FO output. Patch from Paolo - Borelli. Closes #2086321. - - highlight.source upgraded to support the latest version of XSLTHL 2.0. - -The following is a list of changes that have been made since the 1.74.0 -release. - -Gentext - -The following changes have been made to the gentext code since the 1.74.0 -release. - - ◠Michael(tm) Smith: locale/ky.xml; Makefile - - new Kirghiz locale from Ilyas Bakirov - - ◠Mauritz Jeanson: locale/en.xml - - Added "Acknowledgements". - - ◠Dongsheng Song: locale/zh_cn.xml - - Simplified Chinese translation. - - ◠Robert Stayton: locale/lv.xml; locale/ca.xml; locale/pt.xml; locale/tr.xml; - locale/af.xml;⋯ - - Add writing-mode gentext string to support right-to-left languages. - -FO - -The following changes have been made to the fo code since the 1.74.0 release. - - ◠David Cramer: footnote.xsl - - Added a check to confirm that a footnoteref's linkend points to a footnote. Stylesheets stop processing if not and provide a useful error message. - - ◠Mauritz Jeanson: spaces.xsl - - Convert spaces to fo:leader also in elements in the DB 5 namespace. - - ◠Mauritz Jeanson: pi.xsl; synop.xsl - - Added support for a new processing instruction: dbfo funcsynopsis-style. - Closes bug #1838213. - - ◠Michael(tm) Smith: inline.xsl; param.xweb; param.ent - - Added new param email.mailto.enabled for FO output. - Patch from Paolo Borelli. Closes #2086321. - - ◠Mauritz Jeanson: docbook.xsl - - Added support for document metadata for fop1 (patch #2067318). - - ◠Jirka Kosek: param.ent; param.xweb; highlight.xsl - - Upgraded to support the latest version of XSLTHL 2.0 - -- nested markup in highlited code is now processed - -- it is no longer needed to specify path XSLTHL configuration file using Java property - -- support for new languages, including Perl, Python and Ruby was added - -HTML - -The following changes have been made to the html code since the 1.74.0 release. - - ◠Robert Stayton: param.xweb; docbook.xsl; param.ent; html.xsl - - Add support for writing.mode to set text direction and alignment based on document locale. - - ◠Mauritz Jeanson: chunk-changebars.xsl - - Added a new top-level stylesheet module, chunk-changebars.xsl, to be - used for generating chunked output with highlighting based on change - (@revisionflag) markup. The module imports/includes the standard chunking - and changebars templates and contains additional logic for chunked output. - See FRs #1015180 and #1819915. - -Manpages - -The following changes have been made to the manpages code since the 1.74.0 -release. - - ◠Michael(tm) Smith: docbook.xsl - - Put the following at the top of generated roff for each page: - \" t - purpose is to explicitly tell AT&T troff that the page needs to be - pre-processed through tbl(1); groff can figure it out - automatically, but apparently AT&T troff needs to be explicitly told - -ePub - -The following changes have been made to the epub code since the 1.74.0 release. - - ◠Keith Fahlgren: docbook.xsl - - Patch from Paul Norton of Adobe to get covers to look better in Adobe Digital Editions - - ◠Keith Fahlgren: bin/spec/epub_regressions_spec.rb; bin/spec/files/ - v5cover.xml; bin/spec/sp⋯ - - Patch contributed by Liza Daly to make ePub cover handling more generic. Additionally - DocBook 5.0's now has some limited support: - - - should reference a cover in the OPF guide for a DocBook 5.0 test document - - ◠Keith Fahlgren: bin/spec/files/isbn.xml; bin/spec/files/issn.xml; bin/spec/ - files/biblioid.⋯ - - Liza Daly reported that the dc:identifer-generation code was garbage (she was right). - - Added new tests: - - should include at least one dc:identifier - - should include an ISBN as URN for dc:identifier if an ISBN was in the metadata - - should include an ISSN as URN for dc:identifier if an ISSN was in the metadata - - should include an biblioid as a dc:identifier if an biblioid was in the metadata - - should include a URN for a biblioid with @class attribute as a dc:identifier if an biblioid was in the metadata - - ◠Keith Fahlgren: docbook.xsl; bin/spec/epub_spec.rb - - Improve both SEO and semantic structure of chunked ePub output by ensuring that - we always send out one and only one h1 in each XHTML chunk. - - DocBook::Epub - - should include one and only one

in each HTML file in rendered ePub files - for s - - should include one and only one

in each HTML file in rendered ePub files - for s even if they do not have section markup - - â— Keith Fahlgren: docbook.xsl; bin/spec/epub_realbook_spec.rb; bin/spec/files - /orm.book.001.x⋯ - - Adding better support for covers in epub files destined for .mobi and the Kindle - - â— Keith Fahlgren: bin/dbtoepub; bin/lib/docbook.rb; bin/spec/files/ - DejaVuSerif.otf; docbook.⋯ - - Adding primitive support for embedding a single font - - â— Keith Fahlgren: bin/dbtoepub; bin/lib/docbook.rb; bin/spec/files/ - test_cust.xsl; bin/spec/e⋯ - - Adding support for user-specified customization layers in dbtoepub - - â— Keith Fahlgren: bin/dbtoepub; bin/spec/epub_regressions_spec.rb; bin/lib/ - docbook.rb; bin/s⋯ - - Adding CSS support to .epub target & dbtoepub: - -c, --css [FILE] Use FILE for CSS on generated XHTML. - - - DocBook::Epub - ... - - should include a CSS link in HTML files when a CSS file has been provided - - should include CSS file in .epub when a CSS file has been provided - - should include a CSS link in OPF file when a CSS file has been provided - -Roundtrip - -The following changes have been made to the roundtrip code since the 1.74.0 -release. - - â— Steve Ball: blocks2dbk.xsl; template.xml; template.dot - - added support for imagedata-metadata - added support for table as images - - â— Steve Ball: blocks2dbk.xsl; normalise2sections.xsl; sections2blocks.xsl - - Improved support for personname inlines. - - â— Steve Ball: blocks2dbk.xsl; blocks2dbk.dtd; template.xml - - Added support for legalnotice. - - â— Steve Ball: blocks2dbk.xsl; wordml2normalise.xsl - - added support for orgname in author - - â— Steve Ball: specifications.xml; supported.xml; blocks2dbk.xsl; - wordml2normalise.xsl; dbk2w⋯ - - Updated specification. - to-DocBook: add cols attribute to tgroup - from-DocBook: fix for blockquote title - -Params - -The following changes have been made to the params since the 1.74.0 release. - - â— The change was to add man.output.better.ps.enabled parameter, with its - default value set to zero. If the value of the man.output.better.ps.enabled - parameter is non-zero, certain markup is embedded in each generated man - page such that PostScript output from the man -Tps command for that page - will include a number of enhancements designed to improve the quality of - that output. If man.output.better.ps.enabled is zero (the default), no such - markup is embedded in generated man pages, and no enhancements are included - in the PostScript output generated from those man pages by the man -Tps - command. WARNING: The enhancements provided by this parameter rely on - features that are specific to groff (GNU troff) and that are not part of - "classic" AT&T troff or any of its derivatives. Therefore, any man pages - you generate with this parameter enabled will be readable only on systems - on which the groff (GNU troff) program is installed, such as GNU/Linux - systems. The pages will not not be readable on systems on with the classic - troff (AT&T troff) command is installed. NOTE: The value of this parameter - only affects PostScript output generated from the man command. It has no - effect on output generated using the FO backend. TIP: You can generate - PostScript output for any man page by running the following command: man - FOO -Tps > FOO.ps You can then generate PDF output by running the following - command: ps2pdf FOO.ps - - â— Robert Stayton: writing.mode.xml - - writing mode param used to set text direction. - - â— Michael(tm) Smith: email.mailto.enabled.xml - - Added new param email.mailto.enabled for FO output. - Patch from Paolo Borelli. Closes #2086321. - - â— Jirka Kosek: highlight.source.xml; highlight.xslthl.config.xml - - Upgraded to support the latest version of XSLTHL 2.0 - -- nested markup in highlited code is now processed - -- it is no longer needed to specify path XSLTHL configuration file using Java property - -- support for new languages, including Perl, Python and Ruby was added - -Highlighting - -The following changes have been made to the highlighting code since the 1.74.0 -release. - - â— Jirka Kosek: cpp-hl.xml; c-hl.xml; tcl-hl.xml; php-hl.xml; common.xsl; - perl-hl.xml; delphi⋯ - - Upgraded to support the latest version of XSLTHL 2.0 - -- nested markup in highlited code is now processed - -- it is no longer needed to specify path XSLTHL configuration file using Java property - -- support for new languages, including Perl, Python and Ruby was added - -Release Notes: 1.74.0 - -This release includes important bug fixes and adds the following significant -feature changes: - -.epub target - - Paul Norton (Adobe) and Keith Fahlgren(O'Reilly Media) have donated code - that generates .epub documents from DocBook input. An alpha-reference - implementation in Ruby has also been provided. - - .epub is an open standard of the The International Digital Publishing Forum - (IDPF), a the trade and standards association for the digital publishing - industry. - - Read more about this target in epub/README - -XHTML 1.1 target - - To support .epub output, a strict XHTML 1.1 target has been added. The - stylesheets for this output are generated and are quite similar to the - XHTML target. - -Gentext updates - - A number of locales have been updated. - -Roundtrip improvements - - Table, figure, template syncronization, and character style improvements - have been made for WordML & Pages. Support added for OpenOffice.org. - -First implementation of a libxslt extension - - A stylesheet extension for libxslt, written in Python, has been added. The - extension is a function for adjusting column widths in CALS tables. See - extensions/README.LIBXSLT for more information. - -The following is a list of changes that have been made since the 1.73.2 -release. - -Gentext - -The following changes have been made to the gentext code since the 1.73.2 -release. - - â— Michael(tm) Smith: locale/id.xml - - Checked in changes to Indonesion locale submitted by Euis Luhuanam a long time ago. - - â— Michael(tm) Smith: locale/lt.xml - - Added changes to Lithuanian locate submitted a long time back by Nikolajus Krauklis. - - â— Michael(tm) Smith: locale/hu.xml - - fixed error in lowercase.alpha definition in Hungarian locale - - â— Michael(tm) Smith: locale/nb.xml - - Corrected language code for nb locale, and restored missing "startquote" key. - - â— Michael(tm) Smith: locale/ja.xml - - Committed changes to ja locale file, from Akagi Kobayashi. Adds bracket quotes around many xref instances that did not have them - before. - - â— Michael(tm) Smith: Makefile - - "no" locale is now "nb" - - â— Michael(tm) Smith: locale/nb.xml - - Update Norwegian BokmÃ¥l translation. Thanks to Hans F. Nordhaug. - - â— Michael(tm) Smith: locale/no.xml; locale/nb.xml - - per message from Hans F. Nordhaug, correct identifier for - Norwegian BokmÃ¥l is "nb" (not "no") and has been for quite some - time now... - - â— Michael(tm) Smith: locale/ja.xml - - Converted ja.xml source file to use real unicode characters so - that the actual glyphs so up when you edit it in a text editor - (instead of the character references). - - â— Michael(tm) Smith: locale/ja.xml - - Checked in changes to ja.xml locale file. Thanks to Akagi Kobayashi. - - â— Michael(tm) Smith: locale/it.xml - - Changes from Federico Zenith - - â— Dongsheng Song: locale/zh_cn.xml - - Added missing translations. - -Common - -The following changes have been made to the common code since the 1.73.2 -release. - - â— Michael(tm) Smith: l10n.xsl - - Added new template "l10.language.name" for retrieving the - English-language name of the lang setting of the current document. - Closes #1916837. Thanks to Simon Kennedy. - - â— Michael(tm) Smith: refentry.xsl - - fixed syntax error - - â— Michael(tm) Smith: refentry.xsl - - fixed a couple of typos - - â— Michael(tm) Smith: refentry.xsl - - refined handling of cases where refentry "source" or "manual" - metadata is missing or when we use fallback content instead. We - now report a Warning if we use fallback content. - - â— Michael(tm) Smith: refentry.xsl - - don't use refmiscinfo@class=date value as fallback for refentry - "source" or "manual" metadata fields - - â— Michael(tm) Smith: refentry.xsl - - Made reporting of missing refentry metadata more quiet: - - - we no longer report anything if usable-but-not-preferred - metadata is found; we just quietly use whatever we manage to - find - - - we now only report missing "source" metadata if the refentry - is missing BOTH "source name" and "version" metadata; if it - has one but not the other, we use whichever one it has and - don't report anything as missing - - The above changes were made because testing with some "real world" - source reveals that some authors are intentionally choosing to use - "non preferred" markup for some metadata, and also choosing to - omit "source name" or "version" metadata in there DocBook XML. So - it does no good to give them pedantic reminders about what they - already know... - - Also, changed code to cause "fixme" text to be inserted in output - in particular cases: - - - if we can't manage to find any "source" metadata at all, we - now put fixme text into the output - - - if we can't manage to find any "manual" metadata a all, we - now put fixme text into the output - - The "source" and "manual" metadata is necessary information, so - buy putting the fixme stuff in the output, we alert users to the - need problem of it being missing. - - â— Michael(tm) Smith: refentry.xsl - - When generating manpages output, we no longer report anything if - the refentry source is missing date or pubdate content. In - practice, many users intentionally omit the date from the source - because they explicitly want it to be generated. - - â— Michael(tm) Smith: l10n.xml - - further change needed for switch from no locale to nb. - - â— Michael(tm) Smith: common.xsl - - Added support for orgname in authorgroup. Thanks to Camille - Bégnis. - - â— Michael(tm) Smith: Makefile - - "no" locale is now "nb" - - â— Mauritz Jeanson: stripns.xsl - - Removed the template matching "ng:link|db:link" (in order to make @xlink:show - work with elements). As far as I can tell, this template is no longer needed. - - â— Mauritz Jeanson: entities.ent - - Moved declaration of comment.block.parents entity to common/entities.ent. - - â— Mauritz Jeanson: titles.xsl - - Added an update the fix made in revision 7528 (handling of xref/link in no.anchor.mode mode). - Having xref in title is not a problem as long as the target is not an ancestor element. - Closes bug #1838136. - - Note that an xref that is in a title and whose target is an ancestor element is still not - rendered in the TOC. This could be considered a bug, but on the other hand I cannot really - see the point in having such an xref in a document. - - â— Mauritz Jeanson: titles.xsl - - Added a "not(ancestor::title)" test to work around "too many nested - apply-templates" problems when processing xrefs or links in no.anchor.mode mode. - Hopefully, this closes bug #1811721. - - â— Mauritz Jeanson: titles.xsl - - Removed old template matching "link" in no.anchor.mode mode. - - â— Mauritz Jeanson: titles.xsl - - Process in no.anchor.mode mode with the same template as . - Closes bug #1759205 (Empty link in no.anchor.mode mode). - - â— Mauritz Jeanson: titles.xsl - - In no.anchor.mode mode, do not output anchors for elements that are descendants - of . Previously, having inline elements with @id/@xml:id in <title>s - resulted in anchors both in the TOC and in the main flow. Closes bug #1797492. - -FO - -The following changes have been made to the fo code since the 1.73.2 release. - - â— Mauritz Jeanson: pi.xsl - - Updated documentation for keep-together. - - â— Mauritz Jeanson: task.xsl - - Enabled use of the keep-together PI on task elements. - - â— Robert Stayton: index.xsl - - FOP1 requires fo:wrapper for inline index entries, not fo:inline. - - â— Robert Stayton: index.xsl - - Fixed non-working inline.or.block template for indexterm wrappers. - Add fop1 to list of processors using inline.or.block. - - â— Mauritz Jeanson: table.xsl - - Fixed bug #1891965 (colsep in entytbl not working). - - â— Mauritz Jeanson: titlepage.xsl - - Added support for title in revhistory. Closes bug #1842847. - - â— Mauritz Jeanson: pi.xsl - - Small doc cleanup (dbfo float-type). - - â— Mauritz Jeanson: titlepage.xsl - - Insert commas between multiple copyright holders. - - â— Mauritz Jeanson: autotoc.xsl; division.xsl - - Added modifications to support nested set elements. See bug #1853172. - - â— David Cramer: glossary.xsl - - Added normalize-space to xsl:sorts to avoid missorting of glossterms due to stray leading spaces. - - â— David Cramer: glossary.xsl - - Fixed bug #1854199: glossary.xsl should use the sortas attribute on glossentry - - â— Mauritz Jeanson: inline.xsl - - Added a template for citebiblioid. The hyperlink target is the parent of the referenced biblioid, - and the "hot text" is the biblioid itself enclosed in brackets. - - â— Mauritz Jeanson: inline.xsl - - Moved declaration of comment.block.parents entity to common/entities.ent. - - â— Mauritz Jeanson: docbook.xsl - - Updated message about unmatched element. - - â— Mauritz Jeanson: param.xweb - - Added link to profiling chapter of TCG. - - â— Mauritz Jeanson: refentry.xsl - - Fixed typo (refsynopsysdiv -> refsynopsisdiv). - - â— David Cramer: fop.xsl; fop1.xsl; ptc.xsl; xep.xsl - - Added test to check generate.index param when generating pdf bookmarks - - â— Mauritz Jeanson: graphics.xsl - - Added support for MathML in imagedata. - - â— Michael(tm) Smith: math.xsl - - Removed unnecessary extra test condition in test express that - checks for passivetex. - - â— Michael(tm) Smith: math.xsl - - Don't use fo:instream-foreign-object if we are processing with - passivetex. Closes #1806899. Thanks to Justus Piater. - - â— Mauritz Jeanson: component.xsl - - Added code to output a TOC for an appendix in an article when - generate.toc='article/appendix toc'. Closes bug #1669658. - - â— Dongsheng Song: biblio-iso690.xsl - - Change encoding from "windows-1250" to "UTF-8". - - â— Mauritz Jeanson: pi.xsl - - Updated documentation for dbfo_label-width. - - â— Mauritz Jeanson: lists.xsl - - Added support for the dbfo_label-width PI in calloutlists. - - â— Robert Stayton: biblio.xsl - - Support finding glossary database entries inside bibliodivs. - - â— Robert Stayton: formal.xsl - - Complete support for <?dbfo pgwide="1"?> for informal - elements too. - - â— Mauritz Jeanson: table.xsl - - In the table.block template, added a check for the dbfo_keep-together PI, so that - a table may break (depending on the PI value) at a page break. This was needed - since the outer fo:block that surrounds fo:table has keep-together.within-column="always" - by default, which prevents the table from breaking. Closes bug #1740964 (Titled - table does not respect dbfo PI). - - â— Mauritz Jeanson: pi.xsl - - Added a few missing @role="tcg". - - â— Mauritz Jeanson: inline.xsl - - Use normalize-space() in glossterm comparisons (as in html/inline.xsl). - - â— Mauritz Jeanson: autoidx.xsl - - Removed the [&scope;] predicate from the target variable in the template with name="reference". - This filter was the cause of missing index backlinks when @zone and @type were used on indexterms, - with index.on.type=1. Closes bug #1680836. - - â— Michael(tm) Smith: inline.xsl; xref.xsl; footnote.xsl - - Added capability in FO output for displaying URLs for all - hyperlinks (elements marked up with xlink:href attributes) in the - same way as URLs for ulinks are already handled (which is to say, - either inline or as numbered footnotes). - - Background on this change: - DocBook 5 allows "ubiquitous" linking, which means you can make - any element a hyperlink just by adding an xlink:href attribute to - it, with the value set to an external URL. That's in contrast to - DocBook 4, which only allows you to use specific elements (e.g., - the link and ulink elements) to mark up hyperlinks. - - The existing FO stylesheets have a mechanism for handling display - of URLs for hyperlinks that are marked up with ulink, but they did - not handle display of URLs for elements that were marked up with - xlink:href attributes. This change adds handling for those other - elements, enabling the URLs they link to be displayed either - inline or as numbered footnotes (depending on what values the user - has the ulink.show and ulink.footnotes params set to). - - Note that this change only adds URL display support for elements - that call the simple.xlink template -- which currently is most - (but not all) inline elements. - - This change also moves the URL display handling out of the ulink - template and into a new "hyperlink.url.display" named template; - the ulink template and the simple.xlink named template now both - call the hyperlink.url.display template. - - Warning: In the stylesheet code that determines what footnote - number to assign to each footnote or external hyperlink, there is - an XPath expression for determining whether a particular - xlink:href instance is an external hyperlink; that expression is - necessarily a bit complicated and further testing may reveal that - it doesn't handle all cases as expected -- so some refinements to - it may need to be done later. - - Closes #1785519. Thanks to Ken Morse for reporting and - troubleshooting the problem. - -HTML - -The following changes have been made to the html code since the 1.73.2 release. - - â— Keith Fahlgren: inline.xsl; synop.xsl - - Work to make HTML and XHTML targets more valid - - â— Keith Fahlgren: table.xsl - - Add better handling for tables that have footnotes in the titles - - â— Keith Fahlgren: biblio.xsl - - Add anchors to bibliodivs - - â— Keith Fahlgren: formal.xsl; Makefile; htmltbl.xsl - - Initial checkin/merge of epub target from work provided by Paul Norton of Adobe - and Keith Fahlgren of O'Reilly. - - This change includes new code for generating the XHTML 1.1 target sanely. - - â— Mauritz Jeanson: biblio.xsl - - Added code for creating URLs from biblioids with @class="doi" (representing Digital - Object Identifiers). See FR #1934434 and http://doi.org. - - To do: 1) Add support for FO output. 2) Figure out how @class="doi" should be handled - for bibliorelation, bibliosource and citebiblioid. - - â— Norman Walsh: formal.xsl - - Don't use xsl:copy because it forces the resulting element to be in the same namespace as the source element; in the XHTML stylesheets, that's wrong. But the HTML-to-XHTML converter does the right thing with literal result elements, so use one of them. - - â— Michael(tm) Smith: Makefile - - Added checks and hacks to various makefiles to enable building - under Cygwin. This stuff is ugly and maybe not worth the mess and - trouble, but does seem to work as expected and not break anything - else. - - â— Michael(tm) Smith: docbook.xsl - - added "exslt" namespace binding to html/docbook.xsl file (in - addition to existing "exsl" binding. reason is because lack of it - seems to cause processing problems when using the profiled - version of the stylsheet - - â— Norman Walsh: chunk-common.xsl - - Rename link - - â— Mauritz Jeanson: table.xsl - - Added a fix to make rowsep apply to the last row of thead in entrytbl. - - â— Michael(tm) Smith: synop.xsl - - Simplified and streamlined handling of output for ANSI-style - funcprototype output, to correct a problem that was causing type - data to be lost in the output parameter definitions. For example, - for an instance like this: - <paramdef>void *<parameter>dataptr</parameter>[]</paramdef> - ... the brackets (indicating an array type) were being dropped. - - â— Michael(tm) Smith: synop.xsl - - Changed HTML handling of K&R-style paramdef output. The parameter - definitions are no longer output in a table (though the prototype - still is). The reason for the change is that the - kr-tabular-funcsynopsis-mode template was causing type data to be - lost in the output parameter definitions. For example, for an - instance like this: - <paramdef>void *<parameter>dataptr</parameter>[]</paramdef> - ... the brackets (indicating an array type) were being dropped. - The easiest way to deal with the problem is to not try to chop up - the parameter definitions and display them in table format, but to - instead just output them as-is. May not look quite as pretty, but - at least we can be sure no information is being lost... - - â— Michael(tm) Smith: pi.xsl - - updated wording of doc for funcsynopsis-style PI - - â— Michael(tm) Smith: param.xweb; param.ent; synop.xsl - - Removed the funcsynopsis.tabular.threshold param. It's no longer - being used in the code and hasn't been since mid 2006. - - â— Mauritz Jeanson: graphics.xsl - - Added support for the img.src.path parameter for SVG graphics. Closes bug #1888169. - - â— Mauritz Jeanson: chunk-common.xsl - - Added missing space. - - â— Norman Walsh: component.xsl - - Fix bug where component titles inside info elements were not handled properly - - â— Michael(tm) Smith: pi.xsl - - Moved dbhtml_stop-chunking embedded doc into alphabetical order, - fixed text of TCG section it see-also'ed. - - â— David Cramer: pi.xsl - - Added support for <?dbhtml stop-chunking?> processing instruction - - â— David Cramer: chunk-common.xsl; pi.xsl - - Added support for <?dbhtml stop-chunking?> processing instruction - - â— David Cramer: glossary.xsl - - Fixed bug #1854199: glossary.xsl should use the sortas attribute on glossentry. Also added normalize-space to avoid missorting due to stray leading spaces. - - â— Mauritz Jeanson: inline.xsl - - Added a template for citebiblioid. The hyperlink target is the parent of the referenced biblioid, - and the "hot text" is the biblioid itself enclosed in brackets. - - â— Mauritz Jeanson: inline.xsl - - Added support for @xlink:show in the simple.xlink template. The "new" and "replace" - values are supported (corresponding to values of "_blank" and "_top" for the - ulink.target parameter). I have assumed that @xlink:show should override ulink.target - for external URI links. This closes bugs #1762023 and #1727498. - - â— Mauritz Jeanson: inline.xsl - - Moved declaration of comment.block.parents entity to common/entities.ent. - - â— Mauritz Jeanson: param.xweb - - Added link to profiling chapter of TCG. - - â— Dongsheng Song: biblio-iso690.xsl - - Change encoding from "windows-1250" to "UTF-8". - - â— Robert Stayton: biblio.xsl - - Add support in biblio collection to entries in bibliodivs. - - â— Mauritz Jeanson: pi.xsl - - Added missing @role="tcg". - - â— Mauritz Jeanson: chunk-common.xsl; titlepage.xsl - - Refactored legalnotice/revhistory chunking, so that the use.id.as.filename - parameter as well as the dbhtml_filename PI are taken into account. A new named - template in titlepage.xsl is used to compute the filename. - - â— Mauritz Jeanson: chunk-common.xsl; titlepage.xsl - - An update to the fix for bug #1790495 (r7433): - The "ln-" prefix is output only when the legalnotice doesn't have an - @id/@xml:id, in which case the stylesheets generate an ID value, - resulting in a filename like "ln-7e0fwgj.html". This is useful because - without the prefix, you wouldn't know that the file contained a legalnotice. - The same logic is also applied to revhistory, using an "rh-" prefix. - - â— Mauritz Jeanson: autoidx.xsl - - Removed the [&scope;] predicate from the target variable in the template with name="reference". - This filter was the cause of missing index backlinks when @zone and @type were used on indexterms, - with index.on.type=1. Closes bug #1680836. - - â— Mauritz Jeanson: titlepage.xsl - - Added 'ln-' prefix to the name of the legalnotice chunk, in order to match the - <link href"..."> that is output by make.legalnotice.head.links (chunk-common.xsl). - Modified the href attribute on the legalnotice link. - Closes bug #1790495. - -Manpages - -The following changes have been made to the manpages code since the 1.73.2 -release. - - â— Michael(tm) Smith: other.xsl - - slightly adjusted spacing around admonition markers - - â— Michael(tm) Smith: refentry.xsl; utility.xsl - - make sure refsect3 titles are preceded by a line of space, and - make the indenting of their child content less severe - - â— Michael(tm) Smith: block.xsl - - only indent verbatim environments in TTY output, not in non-TTY/PS - - â— Michael(tm) Smith: block.xsl - - made another adjustment to correct vertical alignment of admonition marker - - â— Michael(tm) Smith: block.xsl; other.xsl - - Adjusted/corrected alignment of adominition marker in PS/non-TTY output. - - â— Michael(tm) Smith: endnotes.xsl - - For PS/non-TTY output, display footnote/endnote numbers in - superscript. - - â— Michael(tm) Smith: table.xsl; synop.xsl; utility.xsl - - Changed handling of hanging indents for cmdsynopsis, funcsynopsis, - and synopfragment such that they now look correct in non-TTY/PS - output. We now use the groff \w escape to hang by the actual width - -- in the current font -- of the command, funcdef, or - synopfragment references number (as opposed to hanging by the - number of characters). This rendering in TTY output remains the - same, since the width in monospaced TTY output is the same as the - number of characters. - - Also, created new synopsis-block-start and synopsis-block-end - templates to use for cmdsynopsis and funcsynopsis instead of the - corresponding verbatim-* templates. - - Along with those changes, also corrected a problem that caused the - content of synopfragment to be dropped, and made a - vertical-spacing change to adjust spacing around table titles and - among sibling synopfragment instances. - - â— Michael(tm) Smith: other.xsl - - use common l10.language.name template to retrieve English-language name - - â— Michael(tm) Smith: synop.xsl; inline.xsl - - added comment in code explaining why we don't put filename output - in italic (despite the fact that man guidelines say we should) - - â— Michael(tm) Smith: inline.xsl - - put filename output in monospace instead of italic - - â— Michael(tm) Smith: synop.xsl - - put cmdsynopsis in monospace - - â— Michael(tm) Smith: inline.xsl - - removed template match for literal. template matches for monospace - inlines are all imported from the HTML stylesheet - - â— Michael(tm) Smith: block.xsl - - don't indent verbatim environments that are descendants of - refsynopsisdiv, not put backgrounds behind them - - â— Michael(tm) Smith: inline.xsl - - set output of the literal element in monospace. this causes all - inline monospace instances in the git man pages to be set in - monospace (since DocBook XML source for git docs is generated with - asciidoc and asciidoc consistently outputs only <literal> for - inline monospace (not <command> or <code> or anything else). - Of course this only affects non-TTY output... - - â— Michael(tm) Smith: utility.xsl - - Added inline.monoseq named template. - - â— Michael(tm) Smith: utility.xsl - - don't bother using a custom register to store the previous - font-family value when setting blocks of text in code font; just - use \F[] .fam with no arg to switch back - - â— Michael(tm) Smith: endnotes.xsl - - put links in blue in PS output (note that this matches how groff - renders content marked up with the .URL macro) - - â— Michael(tm) Smith: endnotes.xsl; param.xweb; param.ent - - removed man.links.are.underlined and added man.font.links. Also, - changed the default font formatting for links to bold. - - â— Michael(tm) Smith: endnotes.xsl; param.xweb; param.ent - - Added new param man.base.url.for.relative.links .. specifies a - base URL for relative links (for ulink, @xlink:href, imagedata, - audiodata, videodata) shown in the generated NOTES section of - man-page output. The value of man.base.url.for.relative.links is - prepended to any relative URI that is a value of ulink url, - xlink:href, or fileref attribute. - - If you use relative URIs in link sources in your DocBook refentry - source, and you leave man.base.url.for.relative.links unset, the - relative links will appear "as is" in the NOTES section of any - man-page output generated from your source. That's probably not - what you want, because such relative links are only usable in the - context of HTML output. So, to make the links meaningful and - usable in the context of man-page output, set a value for - man.base.url.for.relative.links that points - to the online version of HTML output generated from your DocBook - refentry source. For example: - - <xsl:param name="man.base.url.for.relative.links" - >http://www.kernel.org/pub/software/scm/git/docs/</xsl:param> - - â— Michael(tm) Smith: info.xsl - - If a source refentry contains a Documentation or DOCUMENTATION - section, don't report it as having missing AUTHOR information. - Also, if missing a contrib/personblurb for a person or org, report - pointers to http://docbook.sf.net/el/personblurb and to - http://docbook.sf.net/el/contrib - - â— Michael(tm) Smith: info.xsl - - If we encounter an author|editor|othercredit instance that lacks a - personblurb or contrib, report it to the user (because that means - we have no information about that author|editor|othercredit to - display in the generated AUTHOR|AUTHORS section...) - - â— Michael(tm) Smith: info.xsl; docbook.xsl; other.xsl - - if we can't find any usable author data, emit a warning and insert - a fixme in the output - - â— Michael(tm) Smith: info.xsl - - fixed bug in indenting of output for contrib instances in AUTHORS - section. Thanks to Daniel Leidert and the fglrx docs for exposing - the bug. - - â— Michael(tm) Smith: block.xsl - - for a para or simpara that is the first child of a callout, - suppress the .sp or .PP that would normally be output (because in - those cases, the output goes into a table cell, and the .sp or .PP - markup causes a spurious linebreak before it when displayed - - â— Michael(tm) Smith: lists.xsl - - Added support for rendering co callouts and calloutlist instances. - So you can now use simple callouts -- marking up programlisting - and such with co instances -- and have the callouts displayed in - man-page output. ("simple callouts" means using co@id and - callout@arearefs pointing to co@id instances; in man/roff output, - we can't/don't support markup that uses areaset and area) - - â— Michael(tm) Smith: block.xsl - - only put a line of space after a verbatim if it's followed by a - text node or a paragraph - - â— Michael(tm) Smith: utility.xsl - - put verbatim environments in slightly smaller font in non-TTY - output - - â— Michael(tm) Smith: lists.xsl - - minor whitespace-only reformatting of lists.xsl source - - â— Michael(tm) Smith: lists.xsl - - Made refinements/fixes to output of orderedlist and itemizedlist - -- in part, to get mysql man pages to display correctly. This - change causes a "\c" continuation marker to be added between - listitem markers and contents (to ensure that the content remains - on the same line as the marker when displayed) - - â— Michael(tm) Smith: block.xsl - - put a line of vertical space after all verbatim output that has - sibling content following it (not just if that sibling content is - a text node) - - â— Michael(tm) Smith: block.xsl - - refined spacing around titles for admonitions - - â— Michael(tm) Smith: block.xsl; other.xsl - - Deal with case of verbatim environments that have a linebreak - after the opening tag. Assumption is that users generally don't - want that linebreak to appear in output, so we do some groff - hackery to mess with vertical spacing and close the space. - - â— Michael(tm) Smith: inline.xsl - - indexterm instances now produce groff comments like this: - - .\" primary: secondary: tertiary - - remark instances, if non-empty, now produce groff comments - - â— Michael(tm) Smith: charmap.groff.xsl; other.xsl - - convert no-break space character to groff "\ \&" (instead of just - "\ "). the reason is that if a space occurs at the end of a line, - our processing causes it to be eaten. a real-world case of this is - the mysql(1) man page. appending the "\&" prevents that - - â— Michael(tm) Smith: block.xsl - - output "sp" before simpara output, not after it (outputting it - after results in undesirable whitespace in particular cases; for - example, in the hg/mercurial docs - - â— Michael(tm) Smith: table.xsl; synop.xsl; utility.xsl - - renamed from title-preamble to pinch.together and replaced "sp -1" - between synopsis fragments with call to pinch.together instead - - â— Michael(tm) Smith: table.xsl - - use title-preamble template for table titles (instead of "sp -1" - hack), and "sp 1" after all tables (instead of just "sp" - - â— Michael(tm) Smith: utility.xsl - - created title-preamble template for suppressing line spacing after - headings - - â— Michael(tm) Smith: info.xsl - - further refinement of indenting in AUTHORS section - - â— Michael(tm) Smith: block.xsl; other.xsl - - refined handling of admonitions - - â— Michael(tm) Smith: lists.xsl - - Use RS/RE in another place where we had IP "" - - â— Michael(tm) Smith: info.xsl - - Replace (ab)use of IP with "sp -1" in AUTHORS section with RS/RE - instead. - - â— Michael(tm) Smith: table.xsl; synop.xsl; info.xsl - - changed all instances of ".sp -1n" to ".sp -1" - - â— Michael(tm) Smith: other.xsl - - add extra line before SH heads only in non-TTY output - - â— Michael(tm) Smith: block.xsl - - Reworked output for admonitions (caution, important, note, tip, - warning). In TTY output, admonitions now get indented. In non-TTY - output, a colored marker (yellow) is displayed next to them. - - â— Michael(tm) Smith: other.xsl - - Added BM/EM macros for putting a colored marker in margin next to - a block of text. - - â— Michael(tm) Smith: utility.xsl - - created make.bold.title template by moving title-bolding part out - from nested-section-title template. This allows the bolding to - also be used by the template for formatting admonitions - - â— Michael(tm) Smith: info.xsl - - put .br before copyright contents to prevent them from getting run in - - â— Michael(tm) Smith: refentry.xsl; other.xsl; utility.xsl - - made point size of output for Refsect2 and Refsect3 heads bigger - - â— Michael(tm) Smith: other.xsl - - put slightly more space between SH head and underline in non-TTY - output - - â— Michael(tm) Smith: param.xweb; param.ent; other.xsl - - Added the man.charmap.subset.profile.english parameter and refined - the handling of charmap subsets to differentiate between English - and non-English source. - - This way charmap subsets are now handled is this: - - If the value of the man.charmap.use.subset parameter is non-zero, - and your DocBook source is not written in English (that is, if its - lang or xml:lang attribute has a value other than en), then the - character-map subset specified by the man.charmap.subset.profile - parameter is used instead of the full roff character map. - - Otherwise, if the lang or xml:lang attribute on the root element - in your DocBook source or on the first refentry element in your - source has the value en or if it has no lang or xml:lang - attribute, then the character-map subset specified by the - man.charmap.subset.profile.english parameter is used instead of - man.charmap.subset.profile. - - The difference between the two subsets is that - man.charmap.subset.profile provides mappings for characters in - Western European languages that are not part of the Roman - (English) alphabet (ASCII character set). - - â— Michael(tm) Smith: other.xsl - - Various updates, mainly related to uppercasing SH titles: - - - added a "Language: " metadata line to the top comment area of - output man pages, to indicate the language the page is in - - - added a "toupper" macro of doing locale-aware uppercasing of - SH titles and cross-references to SH titles; the mechanism - relies on the uppercase.alpha and lowercase.alpha DocBook - gentext keys to do locale-aware uppercasing based on the - language the page is written in - - - added a "string.shuffle" template, which provides a library - function for "shuffling" two strings together into a single - string; it takes the first character for the first string, the - first character from second string, etc. The only current use - for it is to generate the argument for the groff tr request - that does string uppercasing. - - - added make.tr.uppercase.arg and make.tr.normalcase.arg named - templates for use in generating groff code for uppercasing and - "normal"-casing SH titles - - - made the BB/BE "background drawing" macros have effect only in - non-TTY output - - - output a few comments in the top part of source - - â— Michael(tm) Smith: utility.xsl - - removed some leftover kruft - - â— Michael(tm) Smith: refentry.xsl - - To create the name(s) for each man page, we now replace any spaces - in the refname(s) with underscores. This ensures that tools like - lexgrog(1) will be able to parse the name (lexgrog won't parse - names that contain spaces). - - â— Michael(tm) Smith: docbook.xsl - - Put a comment into source of man page to indicate where the main - content starts. (We now have a few of macro definitions at the - start of the source, so putting this comment in helps those that - might be viewing the source.) - - â— Michael(tm) Smith: refentry.xsl - - refined mechanism for generating SH titles - - â— Michael(tm) Smith: charmap.groff.xsl - - Added zcaron, Zcaron, scaron, and Scaron to the groff character map. - This means that generated Finnish man pages will no longer contain - any raw accented characters -- they'll instead by marked up with - groff escapes. - - â— Michael(tm) Smith: other.xsl; utility.xsl - - corrected a regression I introduced about a year ago that caused - dots to be output just as "\." -- instead needs to be "\&." (which - is what it will be now, after this change) - - â— Michael(tm) Smith: refentry.xsl - - Changed backend handling for generating titles for SH sections and - for cross-references to those sections. This should have no effect - on TTY output (behavior should remain the same hopefully) but - results in titles in normal case (instead of uppercase) in PS - output. - - â— Michael(tm) Smith: info.xsl - - use make.subheading template to make subheadings for AUTHORS and - COPYRIGHT sections (instead of harcoding roff markup) - - â— Michael(tm) Smith: block.xsl - - put code font around programlisting etc. - - â— Michael(tm) Smith: synop.xsl; docbook.xsl - - embed custom macro definitions in man pages, plus wrap synopsis in - code font - - â— Michael(tm) Smith: endnotes.xsl - - use the make.subheading template to generated SH subheading for - endnotes section. - - â— Michael(tm) Smith: lists.xsl - - Added some templates for generating if-then-else conditional - markup in groff, so let's use those instead of hard-coding it in - multiple places... - - â— Michael(tm) Smith: other.xsl; utility.xsl - - Initial checkin of some changes related to making PS/PDF output - from "man -l -Tps" look better. The current changes: - - - render synopsis and verbatim sections in a monospace/code font - - - put a light-grey background behind all programlisting, screen, - and literallayout instances - - - prevent SH heads in PS output from being rendered in uppercase - (as they are in console output) - - - also display xrefs to SH heads in PS output in normal case - (instead of uppercase) - - - draw a line under SH heads in PS output - - The changes made to the code to support the above features were: - - - added some embedded/custom macros: one for conditionally - upper-casing SH x-refs, one for redefining the SH macro - itself, with some conditional handling for PS output, and - finally a macro for putting a background/screen (filled box) - around a block of text (e.g., a program listing) in PS output - - - added utility templates for wrapping blocks of text in code - font; also templates for inline code font - - â— Robert Stayton: refentry.xsl - - refpurpose nodes now get apply-templates instead of just normalize-space(). - - â— Michael(tm) Smith: lists.xsl - - Fixed alignment of first lined of text for each listitem in - orderedlist output for TTY. Existing code seemed to have been - causing an extra undesirable space to appear. - - â— Michael(tm) Smith: lists.xsl - - Wrapped some roff conditionals around roff markup for orderedlist - and itemizedlist output, so that the lists look acceptable in PS - output as well as TTY. - - â— Michael(tm) Smith: pi.xsl; synop.xsl; param.xweb; param.ent - - Added the man.funcsynopsis.style parameter. Has the same effect in - manpages output as the funcsynopsis.style parameter has in HTML - output -- except that its default value is 'ansi' instead of 'kr'. - - â— Michael(tm) Smith: synop.xsl - - Reworked handling of K&R funcprototype output. It no longer relies - on the HTML kr-tabular templates, but instead just does direct - transformation to roff. For K&R output, it displays the paramdef - output in an indented list following the prototype. - - â— Michael(tm) Smith: synop.xsl - - Properly integrated handling for K&R output into manpages - stylesheet. The choice between K&R output and ANSI output is - currently controlled through use of the (HTML) funcsynopsis.style - parameter. Note that because the mechanism does currently rely on - funcsynopsis.style, the default in manpages output is now K&R - (because that's the default of that param). But I suppose I ought - to create a man.funcsynopsis.style and make the default for that - ANSI (to preserve the existing default behavior). - - â— Michael(tm) Smith: docbook.xsl - - added manpages/pi.xsl file - - â— Michael(tm) Smith: .cvsignore; pi.xsl - - Added "dbman funcsynopsis-style" PI and incorporated it into the - doc build. - - â— Michael(tm) Smith: refentry.xsl - - Fixed regression that caused an unescaped dash to be output - between refname and refpurpose content. Closes bug #1894244. - Thanks to Daniel Leidert. - - â— Michael(tm) Smith: other.xsl - - Fixed problem with dots being escaped in filenames of generated - man files. Closes #1827195. Thanks to Daniel Leidert. - - â— Michael(tm) Smith: inline.xsl - - Added support for processing structfield (was appearing in roff - output surrounded by HTML <em> tags; fixed so that it gets roff - ital markup). Closes bug #1858329. Thanks to Sam Varshavchik. - -Epub - -The following changes have been made to the epub code since the 1.73.2 release. - - â— Keith Fahlgren: bin/spec/README; bin/spec/epub_realbook_spec.rb - - 'Realbook' spec now passes - - â— Keith Fahlgren: bin/dbtoepub; README; bin/spec/README; bin/lib/docbook.rb; - bin/spec/epub_r⋯ - - Very primitive Windows support for dbtoepub reference implementation; README for running tests and for the .epub target in general; shorter realbook test document (still fails for now) - - â— Keith Fahlgren: bin/dbtoepub; bin/spec/epub_regressions_spec.rb; bin/lib/ - docbook.rb; bin/s⋯ - - Changes to OPF spine to not duplicate idrefs for documents with parts not at the root; regression specs for same - - â— Keith Fahlgren: docbook.xsl - - Fixing linking to cover @id, distinct from other needs of cover-image-id (again, thanks to Martin Goerner) - - â— Keith Fahlgren: docbook.xsl - - Updating the title of the toc element in the guide to be more explicit (thanks to Martin Goerner) - - â— Keith Fahlgren: bin/spec/examples/amasque_exploded/content.opf; bin/spec/ - examples/amasque_⋯ - - Initial checkin/merge of epub target from work provided by Paul Norton of Adobe - and Keith Fahlgren of O'Reilly. - - â— Keith Fahlgren: docbook.xsl - - == General epub test support - - $ spec -O ~/.spec.opts spec/epub_spec.rb - - DocBook::Epub - - should be able to be created - - should fail on a nonexistent file - - should be able to render to a file - - should create a file after rendering - - should have the correct mimetype after rendering - - should be valid .epub after rendering an article - - should be valid .epub after rendering an article without sections - - should be valid .epub after rendering a book - - should be valid .epub after rendering a book even if it has one graphic - - should be valid .epub after rendering a book even if it has many graphics - - should be valid .epub after rendering a book even if it has many duplicated graphics - - should report an empty file as invalid - - should confirm that a valid .epub file is valid - - should not include PDFs in rendered epub files as valid image inclusions - - should include a TOC link in rendered epub files for <book>s - - Finished in 20.608395 seconds - - 15 examples, 0 failures - - - == Verbose epub test coverage against _all_ of the testdocs - - Fails on only (errors truncated): - 1) - 'DocBook::Epub should be able to render a valid .epub for the test document /Users/keith/work/docbook-dev/trunk/xsl/epub/bin/spec/testdocs/calloutlist.003.xml [30]' FAILED - 'DocBook::Epub should be able to render a valid .epub for the test document /Users/keith/work/docbook-dev/trunk/xsl/epub/bin/spec/testdocs/cmdsynopsis.001.xml [35]' FAILED - .... - - Finished in 629.89194 seconds - - 224 examples, 15 failures - - 224 examples, 15 failures yields 6% failure rate - -HTMLHelp - -The following changes have been made to the htmlhelp code since the 1.73.2 -release. - - â— Mauritz Jeanson: htmlhelp-common.xsl - - Added <xsl:with-param name="quiet" select="$chunk.quietly"/> to calls to - the write.chunk, write.chunk.with.doctype, and write.text.chunk templates. - This makes chunk.quietly=1 suppress chunk filename messages also for help - support files (which seems to be what one would expect). See bug #1648360. - -Eclipse - -The following changes have been made to the eclipse code since the 1.73.2 -release. - - â— David Cramer: eclipse.xsl - - Use sortas attributes (if they exist) when sorting indexterms - - â— David Cramer: eclipse.xsl - - Added support for indexterm/see in eclipse index.xml - - â— Mauritz Jeanson: eclipse.xsl - - Added <xsl:with-param name="quiet" select="$chunk.quietly"/> - to helpidx template. - - â— David Cramer: eclipse.xsl - - Generate index.xml file and add related goo to plugin.xml file. Does not yet support see and seealso. - - â— Mauritz Jeanson: eclipse.xsl - - Added <xsl:with-param name="quiet" select="$chunk.quietly"/> to calls to - the write.chunk, write.chunk.with.doctype, and write.text.chunk templates. - This makes chunk.quietly=1 suppress chunk filename messages also for help - support files (which seems to be what one would expect). See bug #1648360. - -JavaHelp - -The following changes have been made to the javahelp code since the 1.73.2 -release. - - â— Mauritz Jeanson: javahelp.xsl - - Added <xsl:with-param name="quiet" select="$chunk.quietly"/> to calls to - the write.chunk, write.chunk.with.doctype, and write.text.chunk templates. - This makes chunk.quietly=1 suppress chunk filename messages also for help - support files (which seems to be what one would expect). See bug #1648360. - -Roundtrip - -The following changes have been made to the roundtrip code since the 1.73.2 -release. - - â— Steve Ball: blocks2dbk.xsl; wordml2normalise.xsl - - fix table/cell borders for wordml, fix formal figure, add emphasis-strong - - â— Mauritz Jeanson: supported.xml - - Changed @cols to 5. - - â— Steve Ball: blocks2dbk.xsl; blocks2dbk.dtd; template.xml - - added pubdate, fixed metadata handling in biblioentry - - â— Steve Ball: supported.xml - - Added support for edition. - - â— Steve Ball: docbook-pages.xsl; wordml-blocks.xsl; docbook.xsl; wordml.xsl; - pages-normalise⋯ - - Removed stylesheets for old, deprecated conversion method. - - â— Steve Ball: specifications.xml; dbk2ooo.xsl; blocks2dbk.xsl; dbk2pages.xsl; - blocks2dbk.dtd⋯ - - Added support for Open Office, added edition element, improved list and table support in Word and Pages - - â— Steve Ball: normalise-common.xsl; blocks2dbk.xsl; dbk2pages.xsl; - template-pages.xml; templ⋯ - - Fixed bug in WordML table handling, improved table handling for Pages 08, synchronised WordML and Pages templates. - - â— Steve Ball: normalise-common.xsl; blocks2dbk.xsl; wordml2normalise.xsl; - dbk2wp.xsl - - fix caption, attributes - - â— Steve Ball: specifications.xml; blocks2dbk.xsl; wordml2normalise.xsl; - blocks2dbk.dtd; temp⋯ - - Fixes to table and list handling - - â— Steve Ball: blocks2dbk.xsl - - added support for explicit emphasis character styles - - â— Steve Ball: wordml2normalise.xsl - - added support for customisation in image handling - - â— Steve Ball: blocks2dbk.xsl - - Added inlinemediaobject support for metadata. - - â— Steve Ball: normalise-common.xsl; blocks2dbk.xsl; template.xml; - dbk2wordml.xsl; dbk2wp.xsl - - Added support file. Added style locking. Conversion bug fixes. - -Slides - -The following changes have been made to the slides code since the 1.73.2 -release. - - â— Michael(tm) Smith: fo/Makefile; html/Makefile - - Added checks and hacks to various makefiles to enable building - under Cygwin. This stuff is ugly and maybe not worth the mess and - trouble, but does seem to work as expected and not break anything - else. - - â— Jirka Kosek: html/plain.xsl - - Added support for showing foil number - -Website - -The following changes have been made to the website code since the 1.73.2 -release. - - â— Michael(tm) Smith: extensions/saxon64/.classes/.gitignore; extensions/ - xalan2/.classes/com/⋯ - - renamed a bunch more .cvsignore files to .gitignore (to facilitate use of git-svn) - -Params - -The following changes have been made to the params code since the 1.73.2 -release. - - â— Keith Fahlgren: epub.autolabel.xml - - New parameter for epub, epub.autolabel - - â— Mauritz Jeanson: table.frame.border.color.xml; table.cell.padding.xml; - table.cell.border.t⋯ - - Added missing refpurposes and descriptions. - - â— Keith Fahlgren: ade.extensions.xml - - Extensions to support Adobe Digital Editions extensions in .epub output. - - â— Mauritz Jeanson: fop.extensions.xml; fop1.extensions.xml - - Clarified that fop1.extensions is for FOP 0.90 and later. Version 1 is not here yet... - - â— Michael(tm) Smith: man.links.are.underlined.xml; - man.endnotes.list.enabled.xml; man.font.l⋯ - - removed man.links.are.underlined and added man.font.links. Also, - changed the default font formatting for links to bold. - - â— Michael(tm) Smith: man.base.url.for.relative.links.xml - - Added new param man.base.url.for.relative.links .. specifies a - base URL for relative links (for ulink, @xlink:href, imagedata, - audiodata, videodata) shown in the generated NOTES section of - man-page output. The value of man.base.url.for.relative.links is - prepended to any relative URI that is a value of ulink url, - xlink:href, or fileref attribute. - - If you use relative URIs in link sources in your DocBook refentry - source, and you leave man.base.url.for.relative.links unset, the - relative links will appear "as is" in the NOTES section of any - man-page output generated from your source. That's probably not - what you want, because such relative links are only usable in the - context of HTML output. So, to make the links meaningful and - usable in the context of man-page output, set a value for - man.base.url.for.relative.links that points - to the online version of HTML output generated from your DocBook - refentry source. For example: - - <xsl:param name="man.base.url.for.relative.links" - >http://www.kernel.org/pub/software/scm/git/docs/</xsl:param> - - â— Michael(tm) Smith: man.string.subst.map.xml - - squeeze .sp\n.sp into a single .sp (to prevent a extra, spurious - line of whitespace from being inserted after programlisting etc. - in certain cases) - - â— Michael(tm) Smith: refentry.manual.fallback.profile.xml; - refentry.source.fallback.profile.⋯ - - don't use refmiscinfo@class=date value as fallback for refentry - "source" or "manual" metadata fields - - â— Michael(tm) Smith: man.charmap.subset.profile.xml; man.charmap.enabled.xml; - man.charmap.su⋯ - - made some further doc tweaks related to the - man.charmap.subset.profile.english param - - â— Michael(tm) Smith: man.charmap.subset.profile.xml; man.charmap.enabled.xml; - man.charmap.su⋯ - - Added the man.charmap.subset.profile.english parameter and refined - the handling of charmap subsets to differentiate between English - and non-English source. - - This way charmap subsets are now handled is this: - - If the value of the man.charmap.use.subset parameter is non-zero, - and your DocBook source is not written in English (that is, if its - lang or xml:lang attribute has a value other than en), then the - character-map subset specified by the man.charmap.subset.profile - parameter is used instead of the full roff character map. - - Otherwise, if the lang or xml:lang attribute on the root element - in your DocBook source or on the first refentry element in your - source has the value en or if it has no lang or xml:lang - attribute, then the character-map subset specified by the - man.charmap.subset.profile.english parameter is used instead of - man.charmap.subset.profile. - - The difference between the two subsets is that - man.charmap.subset.profile provides mappings for characters in - Western European languages that are not part of the Roman - (English) alphabet (ASCII character set). - - â— Michael(tm) Smith: man.charmap.subset.profile.xml - - Added to default charmap used by manpages: - - - the "letters" part of the 'C1 Controls And Latin-1 Supplement - (Latin-1 Supplement)' Unicode block - - Latin Extended-A block (but not all of the characters from - that block have mappings in groff, so some of them are still - passed through as-is) - - The effects of this change are that in man pages generated for - most Western European languages and for Finnish, all characters - not part of the Roman alphabet are (e.g., "accented" characters) - are converted to groff escapes. - - Previously, by default we passed through those characters as is - (and users needed to use the full charmap if they wanted to have - those characters converted). - - As a result of this change, man pages generated for Western - European languages will be viewable in some environments in which - they are not viewable if the "raw" non-Roman characters are in them. - - â— Mauritz Jeanson: generate.legalnotice.link.xml; - generate.revhistory.link.xml - - Added information on how the filename is computed. - - â— Mauritz Jeanson: default.table.width.xml - - Clarified PI usage. - - â— Michael(tm) Smith: man.funcsynopsis.style.xml - - Added the man.funcsynopsis.style parameter. Has the same effect in - manpages output as the funcsynopsis.style parameter has in HTML - output -- except that its default value is 'ansi' instead of 'kr'. - - â— Michael(tm) Smith: funcsynopsis.tabular.threshold.xml - - Removed the funcsynopsis.tabular.threshold param. It's no longer - being used in the code and hasn't been since mid 2006. - - â— Mauritz Jeanson: table.properties.xml - - Set keep-together.within-column to "auto". This seems to be the most sensible - default value for tables. - - â— Mauritz Jeanson: informal.object.properties.xml; - admon.graphics.extension.xml; informalequ⋯ - - Several small documentation fixes. - - â— Mauritz Jeanson: manifest.in.base.dir.xml - - Wording fixes. - - â— Mauritz Jeanson: header.content.properties.xml; - footer.content.properties.xml - - Added refpurpose. - - â— Mauritz Jeanson: ulink.footnotes.xml; ulink.show.xml - - Updated for DocBook 5. - - â— Mauritz Jeanson: index.method.xml; glossterm.auto.link.xml - - Spelling and wording fixes. - - â— Mauritz Jeanson: callout.graphics.extension.xml - - Clarifed available graphics formats and extensions. - - â— Mauritz Jeanson: footnote.sep.leader.properties.xml - - Corrected refpurpose. - - â— Jirka Kosek: footnote.properties.xml - - Added more properties which make it possible to render correctly footnotes placed inside verbatim elements. - - â— Mauritz Jeanson: img.src.path.xml - - img.src.path works with inlinegraphic too. - - â— Mauritz Jeanson: saxon.character.representation.xml - - Added TCG link. - - â— Mauritz Jeanson: img.src.path.xml - - Updated description of img.src.path. Bug #1785224 revealed that - there was a risk of misunderstanding how it works. - -Profiling - -The following changes have been made to the profiling code since the 1.73.2 -release. - - â— Jirka Kosek: xsl2profile.xsl - - Added new rules to profile all content generated by HTML Help (including alias files) - - â— Robert Stayton: profile-mode.xsl - - use mode="profile" instead of xsl:copy-of for attributes so - they can be more easily customized. - -Tools - -The following changes have been made to the tools code since the 1.73.2 -release. - - â— Michael(tm) Smith: make/Makefile.DocBook - - various changes and additions to support making with asciidoc as - an input format - - â— Michael(tm) Smith: make/Makefile.DocBook - - make dblatex the default PDF maker for the example makefile - - â— Michael(tm) Smith: xsl/build/html2roff.xsl - - Reworked handling of K&R funcprototype output. It no longer relies - on the HTML kr-tabular templates, but instead just does direct - transformation to roff. For K&R output, it displays the paramdef - output in an indented list following the prototype. - - â— Mauritz Jeanson: xsl/build/make-xsl-params.xsl - - Made attribute-sets members of the param list. This enables links to attribute-sets in the - reference documentation. - - â— Michael(tm) Smith: xsl/build/html2roff.xsl - - use .BI handling in K&R funsynopsis output for manpages, just as - we do already of ANSI output - - â— Michael(tm) Smith: xsl/build/html2roff.xsl - - Implemented initial support for handling tabular K&R output of - funcprototype in manpages output. Accomplished by adding more - templates to the intermediate HTML-to-roff stylesheet that the - build uses to create the manpages/html-synop.xsl stylesheet. - - â— Michael(tm) Smith: xsl/build/doc-link-docbook.xsl - - Made the xsl/tools/xsl/build/doc-link-docbook.xsl stylesheet - import profile-docbook.xsl, so that we can do profiling of release - notes. Corrected some problems in the target for the release-notes - HTML build. - -Extensions - -The following changes have been made to the extensions code since the 1.73.2 -release. - - â— Keith Fahlgren: Makefile - - Use DOCBOOK_SVN variable everywhere, please; build with PDF_MAKER - - â— Michael(tm) Smith: Makefile - - moved extensions build targets from master xsl/Makefile to - xsl/extensions/Makefile - - â— Michael(tm) Smith: .cvsignore - - re-adding empty extensions subdir - -XSL-Saxon - -The following changes have been made to the xsl-saxon code since the 1.73.2 -release. - - â— Michael(tm) Smith: VERSION - - bring xsl2, xsl-saxon, and xsl-xalan VERSION files up-to-date with - recent change to snapshot build infrastructure - - â— Michael(tm) Smith: nbproject/build-impl.xml; nbproject/project.properties - - Changed hard-coded file references in "clean" target to variable - references. Closes #1792043. Thanks to Daniel Leidert. - - â— Michael(tm) Smith: VERSION; Makefile - - Did post-release wrap-up of xsl-saxon and xsl-xalan dirs - - â— Michael(tm) Smith: nbproject/build-impl.xml; VERSION; Makefile; test - - More tweaks to get release-ready - -XSL-Xalan - -The following changes have been made to the xsl-xalan code since the 1.73.2 -release. - - â— Michael(tm) Smith: VERSION - - bring xsl2, xsl-saxon, and xsl-xalan VERSION files up-to-date with - recent change to snapshot build infrastructure - - â— Michael(tm) Smith: nbproject/build-impl.xml - - Changed hard-coded file references in "clean" target to variable - references. Closes #1792043. Thanks to Daniel Leidert. - - â— Michael(tm) Smith: Makefile; VERSION - - Did post-release wrap-up of xsl-saxon and xsl-xalan dirs - - â— Michael(tm) Smith: Makefile; nbproject/build-impl.xml; VERSION - - More tweaks to get release-ready - -XSL-libxslt - -The following changes have been made to the xsl-libxslt code since the 1.73.2 -release. - - â— Mauritz Jeanson: python/xslt.py - - Print the result to stdout if no outfile has been given. - Some unnecessary semicolons removed. - - â— Mauritz Jeanson: python/xslt.py - - Added a function that quotes parameter values (to ensure that they are interpreted as strings). - Replaced deprecated functions from the string module with string methods. - - â— Michael(tm) Smith: python/README; python/README.LIBXSLT - - renamed xsl-libxslt/python/README to xsl-libxslt/python/README.LIBXSLT - - â— Mauritz Jeanson: python/README - - Tweaked the text a little. - -Release Notes: 1.73.2 - -This is solely a minor bug-fix update to the 1.73.1 release. It fixes a -packaging error in the 1.73.1 package, as well as a bug in footnote handling in -FO output. - -Release: 1.73.1 - -This is mostly a bug-fix update to the 1.73.0 release. - -Gentext - -The following changes have been made to the gentext code since the 1.73.0 -release. - - â— Mauritz Jeanson: locale/de.xml - - Applied patch #1766009. - - â— Michael(tm) Smith: locale/lv.xml - - Added localization for ProductionSet. - -FO - -The following changes have been made to the fo code since the 1.73.0 release. - - â— Mauritz Jeanson: table.xsl - - Modified the tgroup template so that, for tables with multiple tgroups, - a width attribute is output on all corresponding fo:tables. Previously, - there was a test prohibiting this (and a comment saying that outputting more - than one width attribute will cause an error). But this seems to be no longer - relevant; it is not a problem with FOP 0.93 or XEP 4.10. Closes bug #1760559. - - â— Mauritz Jeanson: graphics.xsl - - Replaced useless <a> elements with warning messages (textinsert extension). - - â— Mauritz Jeanson: admon.xsl - - Enabled generation of ids (on fo:wrapper) for indexterms in admonition titles, so that page - references in the index can be created. Closes bug #1775086. - -HTML - -The following changes have been made to the html code since the 1.73.0 release. - - â— Mauritz Jeanson: titlepage.xsl - - Added <xsl:call-template name="process.footnotes"/> to abstract template - so that footnotes in info/abstract are processed. Closes bug #1760907. - - â— Michael(tm) Smith: pi.xsl; synop.xsl - - Changed handling of HTML output for the cmdsynopsis and - funcsynopsis elements, such that a@id instances are generated for - them if they are descendants of any element containing a dbcmdlist - or dbfunclist PI. Also, update the embedded reference docs for the - dbcmdlist and dbfunclist PIs to make it clear that they can be - used within any element for which cmdsynopsis or funcsynopsis are - valid children. - - â— Michael(tm) Smith: formal.xsl - - Reverted the part of revision 6952 that caused a@id anchors to be - generated for output of informal objects. Thanks to Sam Steingold - for reporting. - - â— Robert Stayton: glossary.xsl - - Account for a glossary with no glossdiv or glossentry children. - - â— Mauritz Jeanson: titlepage.xsl - - Modified legalnotice template so that the base.name parameter is calculated - in the same way as for revhistory chunks. Using <xsl:apply-templates - mode="chunk-filename" select="."/> did not work for single-page output since - the template with that mode is in chunk-code.xsl. - - â— Mauritz Jeanson: graphics.xsl - - Updated support for SVG (must be a child of imagedata in DB 5). - Added support for MathML in imagedata. - - â— Mauritz Jeanson: pi.xsl - - Added documentation for the dbhh PI (used for context-sensitive HTML Help). - (The two templates matching 'dbhh' are still in htmlhelp-common.xsl). - -Manpages - -The following changes have been made to the manpages code since the 1.73.0 -release. - - â— Michael(tm) Smith: endnotes.xsl - - In manpages output, generate warnings about notesources with - non-para children only if the notesource is a footnote or - annotation. Thanks to Sam Steingold for reporting problems with - the existing handling. - -HTMLHelp - -The following changes have been made to the htmlhelp code since the 1.73.0 -release. - - â— Michael(tm) Smith: htmlhelp-common.xsl - - Added single-pass namespace-stripping support to the htmlhelp, - eclipse, and javahelp stylesheets. - -Eclipse - -The following changes have been made to the eclipse code since the 1.73.0 -release. - - â— Michael(tm) Smith: eclipse.xsl - - Added single-pass namespace-stripping support to the htmlhelp, - eclipse, and javahelp stylesheets. - -JavaHelp - -The following changes have been made to the javahelp code since the 1.73.0 -release. - - â— Michael(tm) Smith: javahelp.xsl - - Added single-pass namespace-stripping support to the htmlhelp, - eclipse, and javahelp stylesheets. - -Roundtrip - -The following changes have been made to the roundtrip code since the 1.73.0 -release. - - â— Steve Ball: blocks2dbk.xsl; blocks2dbk.dtd; pages2normalise.xsl - - Modularised blocks2dbk to allow customisation, - Added support for tables to pages2normalise - -Params - -The following changes have been made to the params code since the 1.73.0 -release. - - â— Robert Stayton: procedure.properties.xml - - procedure was inheriting keep-together from formal.object.properties, but - a procedure does not need to be kept together by default. - - â— Dave Pawson: title.font.family.xml; - component.label.includes.part.label.xml; table.frame.b⋯ - - Regular formatting re-org. - -Release: 1.73.0 - -This release includes important bug fixes and adds the following significant -feature changes: - -New localizations and localization updates - - We added two new localizations: Latvian and Esperanto, and made updates to - the Czech, Chinese Simplified, Mongolian, Serbian, Italian, and Ukrainian - localizations. - -ISO690 citation style for bibliography output. - - Set the bibliography.style parameter to iso690 to use ISO690 style. - -New documentation for processing instructions (PI) - - The reference documentation that ships with the release now includes - documentation on all PIs that you can use to control output from the - stylesheets. - -New profiling parameters for audience and wordsize - - You can now do profiling based on the values of the audience and wordsize - attributes. - -Changes to man-page output - - The manpages stylesheet now supports single-pass profiling and single-pass - DocBook 5 namespace stripping (just as the HTML and FO stylesheets also - do). Also, added handling for mediaobject & inlinemediaobject. (Each - imagedata, audiodata, or videodata element within a mediaobject or inline - mediaobject is now treated as a "notesource" and so handled in much the - same way as links and annotation/alt/footnote are in manpages output.) And - added the man.authors.section.enabled and man.copyright.section.enabled - parameters to enable control over whether output includes auto-generated - AUTHORS and COPYRIGHT sections. - -Highlighting support for C - - The highlighting mechanism for generating syntax-highlighted code snippets - in output now supports C code listings (along with Java, PHP, XSLT, and - others). - -Experimental docbook-xsl-update script - - We added an experimental docbook-xsl-update script, the purpose of which is - to facilitate easy sync-up to the latest docbook-xsl snapshot (by means of - rsync). - -Gentext - -The following changes have been made to the gentext code since the 1.72.0 -release. - - â— Michael(tm) Smith: locale/lv.xml; Makefile - - Added Latvian localization file, from Girts Ziemelis. - - â— Dongsheng Song: locale/zh_cn.xml - - Brought up to date with en.xml in terms of items. A few strings marked for translation. - - â— Jirka Kosek: locale/cs.xml - - Added missing translations - - â— Robert Stayton: locale/eo.xml - - New locale for Esperanto. - - â— Robert Stayton: locale/mn.xml - - Update from Ganbold Tsagaankhuu. - - â— Jirka Kosek: locale/en.xml; locale/cs.xml - - Rules for normalizing glossary entries before they are sorted can be now different for each language. - - â— Michael(tm) Smith: locale/sr_Latn.xml; locale/sr.xml - - Committed changes from MiloÅ¡ KomarÄević to Serbian files. - - â— Robert Stayton: locale/ja.xml - - Fix chapter in context xref-number-and-title - - â— Robert Stayton: locale/it.xml - - Improved version from contributor. - - â— Mauritz Jeanson: locale/uk.xml - - Applied patch 1592083. - -Common - -The following changes have been made to the common code since the 1.72.0 -release. - - â— Michael(tm) Smith: labels.xsl - - Changed handling of reference auto-labeling such that reference - (when it appears at the component level) is now affected by the - label.from.part param, just as preface, chapter, and appendix. - - â— Michael(tm) Smith: common.xsl - - Added support to the HTML stylesheets for proper processing of - orgname as a child of author. - - â— Michael(tm) Smith: refentry.xsl - - Refined logging output of refentry metadata-gathering template; - for some cases of "missing" elements (refmiscinfo stuff, etc.), - the log messages now include URL to corresponding page in the - Definitive Guide (TDG). - - â— Robert Stayton: titles.xsl - - Add refsection/info/title support. - - â— Michael(tm) Smith: titles.xsl - - Added support for correct handling of xref to elements that - contain info/title descendants but no title children. - - This should be further refined so that it handles any *info - elements. And there are probably some other places where similar - handling for *info/title should be added. - - â— Mauritz Jeanson: pi.xsl - - Modified <xsl:when> in datetime.format template to work - around Xalan bug. - -FO - -The following changes have been made to the fo code since the 1.72.0 release. - - â— Robert Stayton: component.xsl - - Add parameters to the page.sequence utility template. - - â— Mauritz Jeanson: xref.xsl - - Added template for xref to area/areaset. - Part of fix for bug #1675513 (xref to area broken). - - â— Michael(tm) Smith: inline.xsl - - Added template match for person element to fo stylesheet. - - â— Robert Stayton: lists.xsl - - Added support for spacing="compact" in variablelist, per bug report #1722540. - - â— Robert Stayton: table.xsl - - table pgwide="1" should also use pgwide.properties attribute-set. - - â— Mauritz Jeanson: inline.xsl - - Make citations numbered if bibliography.numbered != 0. - - â— Robert Stayton: param.xweb; param.ent - - Add new profiling parameters for audience and wordsize. - - â— Robert Stayton: param.xweb; param.ent - - Added callout.icon.size parameter. - - â— Robert Stayton: inline.xsl; xref.xsl - - Add support for xlink as olink. - - â— Robert Stayton: autotoc.xsl; param.xweb; param.ent - - Add support for qanda.in.toc to fo TOC. - - â— Robert Stayton: component.xsl - - Improved the page.sequence utility template for use with book. - - â— Robert Stayton: division.xsl - - Refactored the big book template into smaller pieces. - Used the "page.sequence" utility template in - component.xsl to shorten the toc piece. - Added placeholder templates for front.cover and back.cover. - - â— Robert Stayton: param.xweb; param.ent; sections.xsl - - Add section.container.element parameter to enable - pgwide spans inside sections. - - â— Robert Stayton: param.xweb; param.ent; component.xsl - - Add component.titlepage.properties attribute-set to - support span="all" and other properties. - - â— Robert Stayton: htmltbl.xsl; table.xsl - - Apply table.row.properties template to html tr rows too. - Add keep-with-next to table.row.properties when row is in thead. - - â— Robert Stayton: table.xsl - - Add support for default.table.frame parameter. - Fix bug 1575446 rowsep last check for @morerows. - - â— Robert Stayton: refentry.xsl - - Add support for info/title in refsections. - - â— David Cramer: qandaset.xsl - - Make fo questions and answers behave the same way as html - - â— Jirka Kosek: lists.xsl - - Added missing attribute set for procedure - - â— Jirka Kosek: param.xweb; biblio.xsl; docbook.xsl; param.ent; - biblio-iso690.xsl - - Added support for formatting biblioentries according to ISO690 citation style. - New bibliography style can be turned on by setting parameter bibliography.style to "iso690" - The code was provided by Jana Dvorakova - - â— Robert Stayton: param.xweb; param.ent; pagesetup.xsl - - Add header.table.properties and footer.table.properties attribute-sets. - - â— Robert Stayton: inline.xsl - - Add fop1.extensions for menuchoice arrow handling exception. - -HTML - -The following changes have been made to the html code since the 1.72.0 release. - - â— Mauritz Jeanson: param.xweb; param.ent - - Moved declaration and documentation of javahelp.encoding from javahelp.xsl to the - regular "parameter machinery". - - â— Michael(tm) Smith: admon.xsl - - Changed handling of titles for note, warning, caution, important, - tip admonitions: We now output and HTML h3 head only if - admon.textlabel is non-zero or if the admonition actually contains - a title; otherwise, we don't output an h3 head at all. - (Previously, we were outputting an empty h3 if the admon.textlabel - was zero and if the admonition had no title.) - - â— Mauritz Jeanson: xref.xsl - - Added template for xref to area/areaset. - Part of fix for bug #1675513 (xref to area broken). - - â— Mauritz Jeanson: titlepage.xsl; component.xsl; division.xsl; sections.xsl - - Added fixes to avoid duplicate ids when generate.id.attributes = 1. - This (hopefully) closes bug #1671052. - - â— Michael(tm) Smith: formal.xsl; pi.xsl - - Made the dbfunclist PI work as intended. Also added doc for - dbfunclist and dbcmdlist PIs. - - â— Michael(tm) Smith: pi.xsl; synop.xsl - - Made the dbcmdlist work the way it appears to have been intended - to work. Restored dbhtml-dir template back to pi.xsl. - - â— Michael(tm) Smith: titlepage.xsl; param.xweb; param.ent - - Added new param abstract.notitle.enabled. - If non-zero, in output of the abstract element on titlepages, - display of the abstract title is suppressed. - Because sometimes you really don't want or need that title - there... - - â— Michael(tm) Smith: chunk-code.xsl; graphics.xsl - - When we are chunking long descriptions for mediaobject instances - into separate HTML output files, and use.id.as.filename is - non-zero, if a mediaobject has an ID, use that ID as the basename - for the long-description file (otherwise, we generate an ID for it - and use that ID as the basename for the file). - The parallels the recent change made to cause IDs for legalnotice - instances to be used as basenames for legalnotice chunks. - Also, made some minor refinements to the recent changes for - legalnotice chunk handling. - - â— Michael(tm) Smith: titlepage.xsl - - Added support to the HTML stylesheets for proper processing of - orgname as a child of author. - - â— Michael(tm) Smith: chunk-code.xsl - - When $generate.legalnotice.link is non-zero and - $use.id.as.filename is also non-zero, if a legalnotice has an ID, - then instead of assigning the "ln-<generatedID>" basename to the - output file for that legalnotice, just use its real ID as the - basename for the file -- as we do when chunking other elements - that have IDs. - - â— David Cramer: xref.xsl - - Handle alt text on xrefs to steps when the step doesn't have a title. - - â— David Cramer: lists.xsl - - Added <p> element around term in variablelist when formatted as table to avoid misalignment of term and listitem in xhtml (non-quirks mode) output - - â— David Cramer: qandaset.xsl - - Added <p> element around question and answer labels to avoid misalignment of label and listitem in xhtml (non-quirks mode) output - - â— David Cramer: lists.xsl - - Added <p> element around callouts to avoid misalignment of callout and listitem in xhtml (non-quirks mode) output - - â— Mauritz Jeanson: inline.xsl - - Make citations numbered if bibliography.numbered != 0. - - â— Robert Stayton: param.xweb; param.ent - - Add support for new profiling attributes audience and wordsize. - - â— Robert Stayton: inline.xsl; xref.xsl - - Add support for xlink olinks. - - â— Jirka Kosek: glossary.xsl - - Rules for normalizing glossary entries before they are sorted can be now different for each language. - - â— Robert Stayton: chunk-common.xsl; chunk-code.xsl; manifest.xsl; chunk.xsl - - Refactored the chunking modules to move all named templates to - chunk-common.xsl and all match templates to chunk-code.xsl, in - order to enable better chunk customization. - See the comments in chunk.xsl for more details. - - â— Robert Stayton: lists.xsl - - Add anchor for xml:id for listitem in varlistentry. - - â— Robert Stayton: refentry.xsl - - Add support for info/title in refsections for db5. - - â— Jirka Kosek: param.xweb; biblio.xsl; docbook.xsl; param.ent; - biblio-iso690.xsl - - Added support for formatting biblioentries according to ISO690 citation style. - New bibliography style can be turned on by setting parameter bibliography.style to "iso690" - The code was provided by Jana Dvorakova - - â— Robert Stayton: inline.xsl; xref.xsl - - Add call to class.attribute to <a> output elements so they can - have a class value too. - - â— Mauritz Jeanson: glossary.xsl - - Fixed bug #1644881: - * Added curly braces around all $language attribute values. - * Moved declaration of language variable to top level of stylesheet. - Tested with Xalan, Saxon, and xsltproc. - -Manpages - -The following changes have been made to the manpages code since the 1.72.0 -release. - - â— Michael(tm) Smith: param.xweb; docbook.xsl; param.ent - - Added the man.authors.section.enabled and - man.copyright.section.enabled parameters. Set those to zero when - you want to suppress display of the auto-generated AUTHORS and - COPYRIGHT sections. Closes request #1467806. Thanks to Daniel - Leidert. - - â— Michael(tm) Smith: docbook.xsl - - Took the test that the manpages stylesheet does to see if there - are any Refentry chilren in current doc, and made it - namespace-agnostic. Reason for that is because the test otherwise - won't work when it is copied over into the generated - profile-docbook.xsl stylesheet. - - â— Michael(tm) Smith: Makefile - - Added a manpages/profile-docbook.xsl file to enable single-pass - profiling for manpages output. - - â— Michael(tm) Smith: info.xsl - - Output copyright and legalnotice in man-page output in whatever - place they are in in document order. Closes #1690539. Thanks to - Daniel Leidert for reporting. - - â— Michael(tm) Smith: docbook.xsl - - Restored support for single-pass namespace stripping to manpages - stylesheet. - - â— Michael(tm) Smith: synop.xsl; block.xsl; info.xsl; inline.xsl; lists.xsl; - endnotes.xsl; ut⋯ - - Changed handling of bold and italic/underline output in manpages - output. Should be transparent to users, but... - - This touches handling of all bold and italic/underline output. The - exact change is that the mode="bold" and mode="italic" utility - templates were changed to named templates. (I think maybe I've - changed it back and forth from mode to named before, so this is - maybe re-reverting it yet again). - - Anyway, the reason for the change is that the templates are - sometimes call on dynamically node-sets, and using modes to format - those doesn't allow passing info about the current/real context - node from the source (not the node-set created by the stylesheet) - to that formatting stage. - - The named templates allow the context to be passed in as a - parameter, so that the bold/ital formatting template can use - context-aware condition checking. - - This was basically necessary in order to suppress bold formatting - in titles, which otherwise gets screwed up because of the numbnut - way that roff handles nested bold/ital. - - Closes #1674534). Much thanks to Daniel Leidert, whose in his - docbook-xsl bug-finding kung-fu has achieved Grand Master status. - - â— Michael(tm) Smith: block.xsl - - Fixed handling of example instances by adding the example element - to the same template we use for processing figure. Closes - #1674538. Thanks to Daniel Leidert. - - â— Michael(tm) Smith: utility.xsl - - Don't include lang in manpages filename/pathname if lang=en (that - is, only generate lang-qualified file-/pathnames for non-English). - - â— Michael(tm) Smith: endnotes.xsl - - In manpages output, emit warnings for notesources (footnote, etc.) - that have something other than para as a child. - - The numbered-with-hanging-indent formatting that's used for - rendering endnotes in the NOTES section of man pages places some - limits/assumptions on how the DocBook source is marked up; namely, - for notesources (footnote, annotation, etc.) that can contain - block-level children, if the they have a block-level child such as - a table or itemizedlist or orderedlist that is the first child of - a footnote, we have no way of rendering/indenting its content - properly in the endnotes list. - - Thus, the manpages stylesheet not emits a warning message for that - case, and suggests the "fix" (which is to wrap the table or - itemizedlist or whatever in a para that has some preferatory text. - - â— Michael(tm) Smith: utility.xsl - - Added support to mixed-block template for handling tables in - mixed-blocks (e.g., as child of para) correctly. - - â— Michael(tm) Smith: table.xsl; synop.xsl; block.xsl; info.xsl; lists.xsl; - refentry.xsl; end⋯ - - Reverted necessary escaping of backslash, dot, and dash - out of the well-intentioned (but it now appears, - misguided) "marker" mechanism (introduced in the 1.72.0 - release) -- which made use of alternative "marker" - characters as internal representations of those - characters, and then replaced them just prior to - serialization -- and back into what's basically the - system that was used prior to the 1.69.0 release; that - is, into a part of stylesheet code that gets executed - at the beginning of processing -- before any other roff - markup up is. This change obviates the need for the - marker system. It also requires a lot less RAM during - processing (for large files, the marker mechanism - ending up requiring gigabytes of memory). - - Closes bug #1661177. Thanks to Scott Smedley for - providing a test case (the fvwm man page) that exposed - the problem with the marker mechanism. - - Also moved the mechanism for converting non-breaking - spaces back into the same area of the stylesheet code. - - â— Michael(tm) Smith: lists.xsl - - Fixed problem with incorrect formatting of nested variablelist. - Closes bug #1650931. Thanks to Daniel "Eagle Eye" Leidert. - - â— Michael(tm) Smith: lists.xsl - - Make sure that all listitems in itemizedlist and orderedlist are - preceded by a blank line. This fixes a regression that occurred - when instances of the TP macro that were use in a previous - versions of the list-handling code were switched to RS/RE (because - TP doesn't support nesting). TP automatically generates a blank - line, but RS doesn't. So I added a .sp before each .RS - - â— Michael(tm) Smith: block.xsl; inline.xsl; param.xweb; docbook.xsl; - links.xsl; param.ent - - Made a number of changes related to elements with - out-of-line content: - - - Added handling for mediaobject & inlinemediaobject. - Each imagedata, audiodata, or videodata element - within a mediaobject or inline mediaobject is now - treated as a "notesource" and so handled in much the - same way as links and annotation/alt/footnotes. - - That means a numbered marker is generated inline to - mark the place in the main flow where the imagedata, - audiodata, or videodata element occurs, and a - corresponding numbered endnote for it is generated in - the endnotes list at the end of the man page; the - endnote contains the URL from the fileref attribute - of the imagedata, audiodata, or videodata element. - - For mediobject and inlinemediaobject instances that - have a textobject child, the textobject is displayed - within the main text flow. - - - Renamed several man.link.* params to man.endnotes.*, - to reflect that fact that the endnotes list now - contains more than just links. Also did similar - renaming for a number of stylesheet-internal vars. - - - Added support for xlink:href (along with existing - support for the legacy ulink element). - - - Cleaned up and streamlined the endnotes-handling - code. It's still messy and klunky and the basic - mechanism it uses is very inefficent for documents - that contain a lot of notesources, but at least it's - a bit better than it was. - -Eclipse - -The following changes have been made to the eclipse code since the 1.72.0 -release. - - â— Mauritz Jeanson: Makefile - - Fixed bug #1715093: Makefile for creating profiled version of eclipse.xsl added. - - â— David Cramer: eclipse.xsl - - Added normalize-space around to avoid leading whitespace from appearing in the output if there's extra leading whitespace (e.g. <title> Foo) in the source - -JavaHelp - -The following changes have been made to the javahelp code since the 1.72.0 -release. - - â— Mauritz Jeanson: javahelp.xsl - - Implemented FR #1230233 (sorted index in javahelp). - - â— Mauritz Jeanson: javahelp.xsl - - Added normalize-space() around titles and index entries to work around whitespace problems. - Added support for glossary and bibliography in toc and map files. - -Roundtrip - -The following changes have been made to the roundtrip code since the 1.72.0 -release. - - â— Steve Ball: blocks2dbk.xsl; wordml2normalise.xsl; normalise2sections.xsl; - sections2blocks.⋯ - - new stylesheets for better word processor support and easier maintenance - - â— Steve Ball: template-pages.xml; dbk2wp.xsl; sections-spec.xml - - fixed bugs - -Params - -The following changes have been made to the params code since the 1.72.0 -release. - - â— Mauritz Jeanson: htmlhelp.button.back.xml; htmlhelp.button.forward.xml; - htmlhelp.button.zo⋯ - - Modified refpurpose text. - - â— Mauritz Jeanson: htmlhelp.map.file.xml; htmlhelp.force.map.and.alias.xml; - htmlhelp.alias.f⋯ - - Fixed typos, made some small changes. - - â— Mauritz Jeanson: javahelp.encoding.xml - - Moved declaration and documentation of javahelp.encoding from javahelp.xsl to the - regular "parameter machinery". - - â— Mauritz Jeanson: generate.id.attributes.xml - - Added refpurpose text. - - â— Mauritz Jeanson: annotation.js.xml; annotation.graphic.open.xml; - annotation.graphic.close.⋯ - - Added better refpurpose texts. - - â— Michael(tm) Smith: chunker.output.cdata-section-elements.xml; - chunker.output.standalone.xm⋯ - - Fixed some broken formatting in source files for chunker.* params, - as pointed out by Dave Pawson. - - â— Michael(tm) Smith: label.from.part.xml - - Changed handling of reference auto-labeling such that reference - (when it appears at the component level) is now affected by the - label.from.part param, just as preface, chapter, and appendix. - - â— Mauritz Jeanson: callout.graphics.extension.xml - - Clarified that 'extension' refers to file names. - - â— Michael(tm) Smith: abstract.notitle.enabled.xml - - Added new param abstract.notitle.enabled. - If non-zero, in output of the abstract element on titlepages, - display of the abstract title is suppressed. - Because sometimes you really don't want or need that title - there... - - â— Michael(tm) Smith: man.string.subst.map.xml - - Updated manpages string-substitute map to reflect fact that - because of another recent change to suppress bold markup in .SH - output, we no longer need to add a workaround for the accidental - uppercasing of roff escapes that occurred previously. - - â— Jirka Kosek: margin.note.float.type.xml; title.font.family.xml; - table.frame.border.color.x⋯ - - Improved parameter metadata - - â— Robert Stayton: profile.wordsize.xml; profile.audience.xml - - Add support for profiling on new attributes audience and wordsize. - - â— Robert Stayton: callout.graphics.number.limit.xml; - callout.graphics.extension.xml - - Added SVG graphics for fo output. - - â— Robert Stayton: callout.icon.size.xml - - Set size of callout graphics. - - â— Jirka Kosek: default.units.xml; chunker.output.method.xml; - toc.list.type.xml; output.inden⋯ - - Updated parameter metadata to the new format. - - â— Jirka Kosek: man.output.quietly.xml; title.font.family.xml; - footnote.sep.leader.properties⋯ - - Added type annotations into parameter definition files. - - â— Robert Stayton: section.container.element.xml - - Support spans in sections for certain processors. - - â— Robert Stayton: component.titlepage.properties.xml - - Empty attribute set for top level component titlepage block. - Allows setting a span on title info. - - â— Jirka Kosek: bibliography.style.xml - - Added link to WiKi page with description of special markup needed for ISO690 biblioentries - - â— Robert Stayton: make.year.ranges.xml - - Clarify that multiple year elements are required. - - â— Robert Stayton: id.warnings.xml - - Turn off id.warnings by default. - - â— Jirka Kosek: bibliography.style.xml - - Added support for formatting biblioentries according to ISO690 citation style. - New bibliography style can be turned on by setting parameter bibliography.style to "iso690" - The code was provided by Jana Dvorakova - - â— Robert Stayton: header.table.properties.xml; footer.table.properties.xml - - Support adding table properties to header and footer tables. - -Highlighting - -The following changes have been made to the highlighting code since the 1.72.0 -release. - - â— Jirka Kosek: c-hl.xml; xslthl-config.xml - - Added support for C language. Provided by Bruno Guegan. - -Profiling - -The following changes have been made to the profiling code since the 1.72.0 -release. - - â— Robert Stayton: profile-mode.xsl - - Add support for new profiling attributes audience and wordsize. - -Lib - -The following changes have been made to the lib code since the 1.72.0 release. - - â— Michael(tm) Smith: lib.xweb - - Changed name of prepend-pad template to pad-string and twheeked so - it can do both right/left padding. - -Tools - -The following changes have been made to the tools code since the 1.72.0 -release. - - â— Michael(tm) Smith: bin; bin/docbook-xsl-update - - Did some cleanup to the install.sh source and added a - docbook-xsl-update script to the docbook-xsl distro, the purpose - of which is to facilitate easy sync-up to the latest docbook-xsl - snapshot (by means of rsync). - -XSL-Saxon - -The following changes have been made to the xsl-saxon code since the 1.72.0 -release. - - â— Mauritz Jeanson: xalan27/src/com/nwalsh/xalan/Verbatim.java; xalan27/src/ - com/nwalsh/xalan/⋯ - - Added modifications so that the new callout.icon.size parameter is taken into account. This - parameter is used for FO output (where SVG now is the default graphics format for callouts). - - â— Mauritz Jeanson: saxon65/src/com/nwalsh/saxon/FormatCallout.java; xalan27/ - src/com/nwalsh/x⋯ - - Added code for generating id attributes on callouts in HTML and FO output. - These patches enable cross-references to callouts placed by area coordinates. - It works for graphic, unicode and text callouts. - Part of fix for bug #1675513 (xref to area broken). - - â— Michael(tm) Smith: saxon65/src/com/nwalsh/saxon/Website.java; xalan27/src/ - com/nwalsh/xalan⋯ - - Copied over Website XSL Java extensions. - -XSL-Xalan - -The following changes have been made to the xsl-xalan code since the 1.72.0 -release. - - â— Michael(tm) Smith: Makefile; xalan2 - - Turned off xalan2.jar build. This removes DocBook XSL - Java extensions support for versions of Xalan prior to - Xalan 2.7. If you are currently using the extensions - with an earlier version of Xalan, you need to upgrade - to Xalan 2.7. - - â— Mauritz Jeanson: xalan27/src/com/nwalsh/xalan/Verbatim.java; xalan27/src/ - com/nwalsh/xalan/⋯ - - Added modifications so that the new callout.icon.size parameter is taken into account. This - parameter is used for FO output (where SVG now is the default graphics format for callouts). - - â— Mauritz Jeanson: saxon65/src/com/nwalsh/saxon/FormatCallout.java; xalan27/ - src/com/nwalsh/x⋯ - - Added code for generating id attributes on callouts in HTML and FO output. - These patches enable cross-references to callouts placed by area coordinates. - It works for graphic, unicode and text callouts. - Part of fix for bug #1675513 (xref to area broken). - - â— Michael(tm) Smith: saxon65/src/com/nwalsh/saxon/Website.java; xalan27/src/ - com/nwalsh/xalan⋯ - - Copied over Website XSL Java extensions. - -Release: 1.72.0 - -This release includes important bug fixes and adds the following significant -feature changes: - -Automatic sorting of glossary entries - - The HTML and FO stylesheets now support automatic sorting of glossary - entries. To enable glossary sorting, set the value of the glossary.sort - parameter to 1 (by default, it’s value is 0). When you enable glossary - sorting, glossentry elements within a glossary, glossdiv, or glosslist are - sorted on the glossterm, using the current language setting. If you don’t - enable glossary sorting, then the order of glossentry elements is left “as - is†— that is, they are not sorted but are instead just displayed in - document order. - -WordML renamed to Roundtrip, OpenOffice support added - - Stylesheets for “roundtrip†conversion between documents in OpenOffice - format (ODF) and DocBook XML have been added to the set of stylesheets that - formerly had the collective title WordML, and that set of stylesheets has - been renamed to Roundtrip to better reflect the actual scope and purpose of - its contents. - - So the DocBook XSL Stylesheets now support roundtrip conversion (with - certain limitations) of WordML, OpenOffice, and Apple Pages documents to - and from DocBook XML. - -Including QandASet questions in TOCs - - The HTML stylesheet now provides support for including QandASet questions - in the document TOC. To enable display of questions in the document TOC, - set the value of the qanda.in.toc to 1 (by default, it’s 0). When you - enable qanda.in.toc, then the generated table of contents for a document - will include qandaset titles, qandadiv titles, and question elements. The - default value of zero excludes them from the TOC. - - Note - - The qanda.in.toc parameter does not affect any tables of contents that may - be generated within a qandaset or qandadiv (only in the document TOC). - -Language identifier in man-page filenames and pathnames - - Added new parameter man.output.lang.in.name.enabled, which controls whether - a language identifier is included in man-page filenames and pathnames. It - works like this: - - If the value of man.output.lang.in.name.enabled is non-zero, man-page files - are output with a language identifier included in their filenames or - pathnames as follows: - - â— if man.output.subdirs.enabled is non-zero, each file is output to, - e.g., a /$lang/man8/foo.8 pathname - - â— if man.output.subdirs.enabled is zero, each file is output with a - foo.$lang.8 filename - -index.page.number.properties property set - - For FO output, use the index.page.number.properties to control formatting - of page numbers in index output — to (for example) to display page numbers - in index output in a different color (to indicate that they are links). - -Crop marks in output from Antenna House XSL Formatter - - Support has been added for generating crop marks in print/PDF output - generated using Antenna House XSL Formatter - -More string-substitution hooks in manpages output - - The man.string.subst.map.local.pre and man.string.subst.map.local.post - parameters have been added to enable easier control over custom string - substitutions. - -Moved verbatim properties to attribute-set - - The hardcoded properties used in verbatim elements (literallayout, - programlisting, screen) were moved to the verbatim.properties attribute-set - so they can be more easily customized. - -enhanced simple.xlink template - - Now the simple.xlink template in inline.xsl works with cross reference - elements xref and link as well. Also, more elements call simple.xlink, - which enables DB5 xlink functionality. - -DocBook 5 compatibility - - Stylesheets now consistently support DocBook 5 attributes (such as xml:id). - Also, DocBook 5 info elements are now checked along with other *info - elements, and the use of name() function was replaced by local-name() so it - also matches on DocBook 5 elements. These changes enable reusing the - stylesheets with DocBook 5 documents with minimal fixup. - -HTML class attributes now handled in class.attribute mode - - The HTML class attributes were formerly hardcoded to the element name. Now - the class attribute is generated by applying templates in class.attribute - mode so class attribute names can be customized. The default is still the - element name. - -arabic-indic numbering enabled in autolabels - - Numbering of chapter, sections, and pages can now use arabic-indic - numbering when number format is set to 'arabicindic' or to Ù¡. - -The following is a detailed list of changes (not including bug fixes) that have -been made since the 1.71.1 release. - -Common - -The following changes have been made to the common code since the 1.71.1 -release. - - â— Add support for arabicindic numbering to autolabel.format template. - - â— Finish support for @xml:id everywhere @id is used. - - â— replace name() with local-name() in most cases. - - â— Add support for info. - - â— Add utility template tabstyle to return the tabstyle from - any table element. - -FO - -The following changes have been made to the fo code since the 1.71.1 release. - - â— Add support for sorting glossary entries - - â— Add table.row.properties template to customize table rows. - - â— Moved all properties to attribute-sets so can be customized more easily. - - â— Add index.page.number.properties attribute-set to format page numbers. - - â— xref now supports xlink:href, using simple.xlink template. - - â— Rewrote simple.xlink, and call it with all charseq templates. - - â— Add simple.xlink processing to term and member elements. - - â— Add support for crop marks in Antenna House. - -HTML - -The following changes have been made to the html code since the 1.71.1 release. - - â— Add support for sorting glossary entries - - â— Add support for qanda.in.toc to add qandaentry questions to document TOC. - - â— add simple.xlink support to variablelist term and simplelist member. - - â— *.propagates.style now handled in class.attribute mode. - - â— add class parameter to class.attribute mode to set default class. - - â— Convert all class attributes to use the class.attribute mode - so class names can be customized more easily. - - â— Add class.attribute mode to generate class attributes. - - â— Added simple.xlink to most remaining inlines. - Changed class attributes to applying class.attributes mode. - - â— Changed xref template to use simple.xlink tempalte. - - â— Improve generate.html.title to work with link targets too. - - â— Improved simple.xlink to support link and xref. - - â— Use new link.title.attribute now. - - â— Rewrote simple.xlink to handle linkend also. - Better computation of title attribute on link too. - - â— Handle Xalan quirk as special case. - - â— Add support for info. - - â— Fixed imagemaps so they work properly going from calspair coords - to HTML area coords. - -Manpages - -The following changes have been made to the manpages code since the 1.71.1 -release. - - â— Added doc for man.output.lang.in.name.enabled parameter. This - checkin completes support for writing file/pathnames for man-pages - with $lang include in the names. Closes #1585967. knightly - accolades to Daniel Leidert for providing the feature request. - - â— Added new param man.output.lang.in.name.enabled, which - controls whether $LANG value is included in manpages - filenames and pathnames. It works like this: - - If the value of man.output.lang.in.name.enabled is non-zero, - man-page files are output with the $lang value included in - their filenames or pathnames as follows; - - - if man.output.subdirs.enabled is non-zero, each file is -   output to, e.g., a /$lang/man8/foo.8 pathname - - - if man.output.subdirs.enabled is zero, each file is output -   with a foo.$lang.8 filename - - â— Use "\e" instead of "\\" for backslash output, because the - groff docs say that's the correct thing to do; also because - testing (thanks, Paul Dubois) shows that "\\" doesn't always - work as expected; for example, "\\" within a table seems to - mess things up. - - â— Added the man.string.subst.map.local.pre and - man.string.subst.map.local.post parameters. Those parameters - enable local additions and changes to string-substitution mappings - without the need to change the value of man.string.subst.map - parameter (which is for standard system mappings). Closes - #1456738. Thanks to Sam Steingold for constructing a true - stylesheet torture test (the clisp docs) that exposed the need for - these params. - - â— Added the Markup element to the list of elements that get output - in bold. Thanks to Eric S. Raymond. - - â— Replaced all dots in roff requests with U+2302 ("house" - character), and added escaping in output for all instances of dot - that are not in roff requests. This fixes the problem case where a - string beginning with a dot (for example, the string ".bashrc") - might occur at the beginning of a line in output, in which case  - would mistakenly get interpreted as a roff request. Thanks to Eric - S. Raymond for pushing to fix this. - - â— Made change to ensure that list content nested in - itemizedlist and orderedlist instances is properly indented. This - is a switch from using .TP to format those lists to using .RS/.RE - to format them instead (because .TP does not allow nesting). Closes bug # - 1602616. - Thanks to Daniel Leidert. - -Params - -The following changes have been made to the params code since the 1.71.1 -release. - - â— Added doc for man.output.lang.in.name.enabled parameter. This - checkin completes support for writing file/pathnames for man-pages - with $lang include in the names. Closes #1585967. knightly - accolades to Daniel Leidert for providing the feature request. - - â— Added new param man.output.lang.in.name.enabled, which - controls whether $LANG value is included in manpages - filenames and pathnames. It works like this: - - If the value of man.output.lang.in.name.enabled is non-zero, - man-page files are output with the $lang value included in - their filenames or pathnames as follows; - - - if man.output.subdirs.enabled is non-zero, each file is -   output to, e.g., a /$lang/man8/foo.8 pathname - - - if man.output.subdirs.enabled is zero, each file is output -   with a foo.$lang.8 filename - - â— Added the man.string.subst.map.local.pre and - man.string.subst.map.local.post parameters. Those parameters - enable local additions and changes to string-substitution mappings - without the need to change the value of man.string.subst.map - parameter (which is for standard system mappings). Closes - #1456738. Thanks to Sam Steingold for constructing a true - stylesheet torture test (the clisp docs) that exposed the need for - these params. - - â— Add index.page.number.properties by default. - - â— Added index.page.number.properties -  to allow customizations of page numbers in indexes. - - â— Move show-destination="replace" property from template to attribute-set - so it can be customized. - - â— Add support for sorting glossary entries - - â— Add option to include qanda in tables of contents. - - â— Moved all properties to attribute-sets so can be customized more easily. - -Template - -The following changes have been made to the template code since the 1.71.1 -release. - - â— Added workaround for Xalan bug: use for-each and copy instead of copy-of (# - 1604770). - -Roundtrip - -The following changes have been made to the roundtrip code since the 1.71.1 -release. - - â— rename to roundtrip, add OpenOffice support - -Release: 1.71.1 - -This is a minor update to the 1.71.0 release. Along with a number of bug fixes, -it includes two feature changes: - - â— Added support for profiling based on xml:lang and status attributes. - - â— Added initial support in manpages output for footnote, annotation, and alt - instances. Basically, they all now get handled the same way ulink instances - are. They are treated as a class as "note sources": A numbered marker is - generated at the place in the main text flow where they occur, then their - contents are displayed in an endnotes section at the end of the man page. - -Common - -The following changes have been made to the common code since the 1.71.1 -release. - - â— For backward compatability autoidx-ng.xsl is invoking "kosek" indexing method again. - - â— Add support for Xalan generating a root xml:base like saxon. - -FO - -The following changes have been made to the fo code since the 1.71.1 release. - - â— For backward compatability autoidx-ng.xsl is invoking "kosek" indexing method again. - - â— Add support for Xalan to add root node xml:base for db5 docs. - - â— Added support for profiling based on xml:lang and status attributes. - -HTML - -The following changes have been made to the html code since the 1.71.1 release. - - â— For backward compatability autoidx-ng.xsl is invoking "kosek" indexing method again. - - â— Add support for Xalan to add root node xml:base for db5 docs. - - â— Added support for profiling based on xml:lang and status attributes. - - â— Made changes in namespace declarations to prevent xmllint's - canonicalizer from treating them as relative namespace URIs. - -   - Changed xmlns:k="java:com.isogen.saxoni18n.Saxoni18nService" -     to xmlns:k="http://www.isogen.com/functions/ - com.isogen.saxoni18n.Saxoni18nService"; -     Saxon accepts either form -     (see http://www.saxonica.com/documentation/extensibility/ - functions.html); -     to Saxon, "the part of the URI before the final '/' is immaterial". - -   - Changed, e.g. xmlns:xverb="com.nwalsh.xalan.Verbatim" to -     xmlns:xverb="xalan://com.nwalsh.xalan.Verbatim"; Xalan accepts -     either form -     (see http://xml.apache.org/xalan-j/extensions.html# - java-namespace-declare); -     just as Saxon does, it will "simply use the string to the -     right of the rightmost forward slash as the Java class name". - -   - Changed xmlns:xalanredirect="org.apache.xalan.xslt.extensions.Redirect" -     to xmlns:redirect="http://xml.apache.org/xalan/redirect", and -     adjusted associated code to make the current Xalan redirect spec. -     (see http://xml.apache.org/xalan-j/apidocs/org/apache/xalan/lib/ - Redirect.html) - - â— Added the html.append and chunk.append parameters. By default, the - value of both is empty; but the internal DocBook XSL stylesheets - build sets their value to " ", in order - to ensure that all files in the docbook-xsl-doc package end in a - newline character. (Because diff and some other tools may emit - error messages and/or not behave as expected when processing - files that are not newline-terminated.) - -Highlighting - -The following changes have been made to the highlighting code since the 1.71.1 -release. - - â— Added license information - -Manpages - -The following changes have been made to the manpages code since the 1.71.1 -release. - - â— Added initial support in manpages output for footnote, annotation, - and alt instances. Basically, they all now get handled the same - way ulink instances are. They are treated as a class as "note - sources": A numbered marker is generated at the place in the main - text flow where they occur, then their contents are displayed in - an endnotes section at the end of the man page (currently titled - REFERENCES, for English output, but will be changed to NOTES). - - This support is not yet complete. It works for most "normal" - cases, but probably mishandles a good number of cases. More - testing will be needed to expose the problems. It may well also - introduce some bugs and regressions in other areas, including - basic paragraph handling, handling of "mixed block" content, - handling of other indented content, and handling of authorblurb - and personblurb in the AUTHORS section. - -Params - -The following changes have been made to the params code since the 1.71.1 -release. - - â— Added support for profiling based on xml:lang and status attributes. - - â— Added the html.append and chunk.append parameters. By default, the - value of both is empty; but the internal DocBook XSL stylesheets - build sets their value to " ", in order - to ensure that all files in the docbook-xsl-doc package end in a - newline character. (Because diff and some other tools may emit - error messages and/or not behave as expected when processing - files that are not newline-terminated.) - -Profiling - -The following changes have been made to the profiling code since the 1.71.1 -release. - - â— Added support for profiling based on xml:lang and status attributes. - -Release: 1.71.0 - -This is mainly a bug fix release, but it also includes two significant feature -changes: - -Highlighting support added - - The stylesheets now include support for source-code highlighting in output - of programlisting instances (controlled through the highlight.source - parameter). The Java-based implementation requires Saxon and makes use of - Michal Molhanec’s XSLTHL. More details are available at Jirka Kosek’s - website: - - http://xmlguru.cz/2006/07/docbook-syntax-highlighting - - The support is currently limited to highlighting of XML, Java, PHP, Delphi, - Modula-2 sources, and INI files. - -Changes to autoindexing - - The templates that handle alternative indexing methods were reworked to - avoid errors produced by certain processors not being able to tolerate the - presence of unused functions. With this release, none of the code for the - 'kimber' or 'kosek' methods is included in the default stylesheets. In - order to use one of those methods, your customization layer must import one - of the optional stylesheet modules: - - â— html/autoidx-kosek.xsl - â— html/autoidx-kimber.xsl - â— fo/autoidx-kosek.xsl - â— fo/autoidx-kimber.xsl - - See the index.method parameter reference page for more information. - - Two other changes to note: - - â— The default indexing method now can handle accented characters in - latin-based alphabets, not just English. This means accented latin - letters will group and sort with their unaccented counterpart. - â— The default value for the index.method parameter was changed from - 'english' to 'basic' because now the default method can handle - latin-based alphabets, not just English. - -The following is a list of changes that have been made since the 1.70.1 -release. - -Common - -The following changes have been made to the common code since the 1.70.1 -release. - - â— Added reference.autolabel parameter for controlling labels on - reference output. - - â— Support rows that are *completely* overlapped by the preceding row - - â— New modules for supporting indexing extensions. - - â— Support startinglinenumber on orderedlist - -Extensions - -The following changes have been made to the extensions code since the 1.70.1 -release. - - â— Completely reworked extensions build system; now uses NetBeans and ant - -FO - -The following changes have been made to the fo code since the 1.70.1 release. - - â— xsl:sort lang attribute now uses two-char substring of lang attribute. - - â— Support titlecase "Java", "Perl", and "IDL" as values for the - language attribute on classsynopsis, etc. (instead of just - lowercase "java", "perl", and "idl"). Also support "c++" and "C++" - (instead of just "cpp"). - - Affects HTML, FO, and manpages output. Closes bug 1552332. Thanks - to "Brian A. Vanderburg II". - - â— Added support for the reference.autolabel param in (X)HTML and FO - output. - - â— Support rows that are *completely* overlapped by the preceding row - - â— Rearranged templates for the 3 indexing methods - and changed method named 'english' to 'basic'. - - â— New modules for supporting indexing extensions. - - â— Turn off blank-body for fop1.extensions too since fop 0.92 - does not support it either. - - â— Add Xalan variant to test for exslt:node-set function. - Xalan can use function named node-set(), but doesn't - recognize it using function-available(). - - â— Added support to FO stylesheets for handling instances of Org - where it occurs outside of *info content. In HTML stylesheets, - moved handling of Org out of info.xsl and into inline.xsl. In both - FO and HTML stylesheets, added support for correctly processing - Affiliation and Jobtitle. - - â— Don't output punctuation between Refname and Refpurpose if - Refpurpose is empty. Also corrected handling of Refsect2/title - instances, and removed some debugging stuff that was generated in - manpages output to mark the ends of sections. - - â— Added new email.delimiters.enabled param. If non-zero (the - default), delimiters are generated around e-mail addresses (output - of the email element). If zero, the delimiters are suppressed. - - â— Initial support of syntax highlighting of programlistings. - - â— Chapter after preface should restart numbering of pages. - -HTML - -The following changes have been made to the html code since the 1.70.1 release. - - â— xsl:sort lang attribute now uses two-char substring of lang attribute. - - â— Support titlecase "Java", "Perl", and "IDL" as values for the - language attribute on classsynopsis, etc. (instead of just - lowercase "java", "perl", and "idl"). Also support "c++" and "C++" - (instead of just "cpp"). - - Affects HTML, FO, and manpages output. Closes bug 1552332. Thanks - to "Brian A. Vanderburg II". - - â— Added support for the reference.autolabel param in (X)HTML and FO - output. - - â— Support rows that are *completely* overlapped by the preceding row - - â— Rearranged templates for the 3 indexing methods - and changed method named 'english' to 'basic'. - - â— New modules for supporting indexing extensions. - - â— Added several new HTML parameters for controlling appearance of - content on HTML title pages: - - contrib.inline.enabled: -   If non-zero (the default), output of the contrib element is -   displayed as inline content rather than as block content. - - othercredit.like.author.enabled: -   If non-zero, output of the othercredit element on titlepages is -   displayed in the same style as author and editor output. If zero -   (the default), othercredit output is displayed using a style -   different than that of author and editor. - - blurb.on.titlepage.enabled: -   If non-zero, output from authorblurb and personblurb elements is -   displayed on title pages. If zero (the default), output from -   those elements is suppressed on title pages (unless you are -   using a titlepage customization that causes them to be included). - - editedby.enabled -   If non-zero (the default), a localized Edited by heading is -   displayed above editor names in output of the editor element. - - â— Add Xalan variant to test for exslt:node-set function. - Xalan can use function named node-set(), but doesn't - recognize it using function-available(). - - â— Added support to FO stylesheets for handling instances of Org - where it occurs outside of *info content. In HTML stylesheets, - moved handling of Org out of info.xsl and into inline.xsl. In both - FO and HTML stylesheets, added support for correctly processing - Affiliation and Jobtitle. - - â— Don't output punctuation between Refname and Refpurpose if - Refpurpose is empty. Also corrected handling of Refsect2/title - instances, and removed some debugging stuff that was generated in - manpages output to mark the ends of sections. - - â— Added new email.delimiters.enabled param. If non-zero (the - default), delimiters are generated around e-mail addresses (output - of the email element). If zero, the delimiters are suppressed. - - â— Added qanda.nested.in.toc param. Default value is zero. If - non-zero, instances of "nested" Qandaentry (ones that are children - of Answer elements) are displayed in the TOC. Closes patch 1509018 - (from Daniel Leidert). Currently on affects HTML output (no patch - for FO output provided). - - â— Improved handling of relative locations generated files - - â— Initial support of syntax highlighting of programlistings. - - â— Support org - - â— Support person - - â— Support $keep.relative.image.uris also when chunking - -Highlighting - -The following changes have been made to the highlighting code since the 1.70.1 -release. - - â— Initial support of syntax highlighting of programlistings. - -Manpages - -The following changes have been made to the manpages code since the 1.70.1 -release. - - â— Suppress footnote markers and output warning that footnotes are - not yet supported. - - â— Handle instances of address/otheraddr/ulink in author et al in the - same way as email instances; that is, display them on the same - linke as the author, editor, etc., name. - - â— Don't number or link-list any Ulink instance whose string value is - identical to the value of its url attribute. Just display it inline. - - â— Don't output punctuation between Refname and Refpurpose if - Refpurpose is empty. Also corrected handling of Refsect2/title - instances, and removed some debugging stuff that was generated in - manpages output to mark the ends of sections. - - â— Added new email.delimiters.enabled param. If non-zero (the - default), delimiters are generated around e-mail addresses (output - of the email element). If zero, the delimiters are suppressed. - - â— In manpages output, if the last/nearest *info element for - particular Refentry has multiple Copyright and/or Legalnotice - children, process them all (not just the first ones). Closes bug - 1524576. Thanks to Sam Steingold for the report and to Daniel - Leidert for providing a patch. - -Params - -The following changes have been made to the params code since the 1.70.1 -release. - - â— Added reference.autolabel parameter for controlling labels on - reference output. - - â— Added namespace declarations to document elements for all param files. - - â— Updated index.method doc to describe revised setup for importing index -  extensions. - - â— Added several new HTML parameters for controlling appearance of - content on HTML title pages: - - contrib.inline.enabled: -   If non-zero (the default), output of the contrib element is -   displayed as inline content rather than as block content. - - othercredit.like.author.enabled: -   If non-zero, output of the othercredit element on titlepages is -   displayed in the same style as author and editor output. If zero -   (the default), othercredit output is displayed using a style -   different than that of author and editor. - - blurb.on.titlepage.enabled: -   If non-zero, output from authorblurb and personblurb elements is -   displayed on title pages. If zero (the default), output from -   those elements is suppressed on title pages (unless you are -   using a titlepage customization that causes them to be included). - - editedby.enabled -   If non-zero (the default), a localized Edited by heading is -   displayed above editor names in output of the editor element. - - â— Added new email.delimiters.enabled param. If non-zero (the - default), delimiters are generated around e-mail addresses (output - of the email element). If zero, the delimiters are suppressed. - - â— Added qanda.nested.in.toc param. Default value is zero. If - non-zero, instances of "nested" Qandaentry (ones that are children - of Answer elements) are displayed in the TOC. Closes patch 1509018 - (from Daniel Leidert). Currently on affects HTML output (no patch - for FO output provided). - - â— Initial support of syntax highlighting of programlistings. - -Tools - -The following changes have been made to the tools code since the 1.70.1 -release. - - â— Racheted down font sizes of headings in example makefile FO output. - - â— Added param and attribute set to example makefile, for getting - wrapping in verbatims in FO output. - - â— Renamed Makefile.paramDoc to Makefile.docParam. - - â— Added Makefile.paramDoc file, for creating versions of param.xsl - files with doc embedded. - - â— Added variable to example makefile for controlling whether HTML or - XHTML is generated. - -Release: 1.70.1 - -This is a stable release of the 1.70 stylesheets. It includes only a few small -changes from 1.70.0. - -The following is a list of changes that have been made since the 1.70.0 -release. - -FO - -The following changes have been made to the fo code since the 1.70.0 release. - - â— Added three new attribute sets (revhistory.title.properties, - revhistory.table.properties and revhistory.table.cell.properties) for - controlling appearance of revhistory in FO output. - - Modified: fo/block.xsl,1.34; fo/param.ent,1.101; fo/param.xweb,1.114; fo/ - titlepage.xsl,1.41; params/revhistory.table.cell.properties.xml,1.1; params - /revhistory.table.properties.xml,1.1; params/ - revhistory.title.properties.xml,1.1 - Jirka Kosek - - â— Support DBv5 revisions with full author name (not only authorinitials) - - Modified: fo/block.xsl,1.33; fo/titlepage.xsl,1.40 - Jirka Kosek - -HTML - -The following changes have been made to the html code since the 1.70.0 release. - - â— Support DBv5 revisions with full author name (not only authorinitials) - - Modified: html/block.xsl,1.23; html/titlepage.xsl,1.34 - Jirka Kosek - -HTMLHelp - -The following changes have been made to the htmlhelp code since the 1.70.0 -release. - - â— htmlhelp.generate.index is now param, not variable. This means that you can - override its setting from outside. This is useful when you generate - indexterms on the fly (see http://www.xml.com/pub/a/2004/07/14/dbndx.html? - page=3). - - Modified: htmlhelp/htmlhelp-common.xsl,1.38 - Jirka Kosek - - â— Support chunk.tocs.and.lots in HTML Help - - Modified: htmlhelp/htmlhelp-common.xsl,1.37 - Jirka Kosek - -Params - -The following changes have been made to the params code since the 1.70.0 -release. - - â— Added three new attribute sets (revhistory.title.properties, - revhistory.table.properties and revhistory.table.cell.properties) for - controlling appearance of revhistory in FO output. - - Modified: fo/block.xsl,1.34; fo/param.ent,1.101; fo/param.xweb,1.114; fo/ - titlepage.xsl,1.41; params/revhistory.table.cell.properties.xml,1.1; params - /revhistory.table.properties.xml,1.1; params/ - revhistory.title.properties.xml,1.1 - Jirka Kosek - -Release: 1.70.0 - -As with all DocBook Project dot-zero releases, this is an experimental release. -It will be followed shortly by a stable release. - -This release adds a number of new features, including: - - â— support for selecting alternative index-collation methods (in particular, - support for using a collation library developed by Eliot Kimber) - - â— improved handling of DocBook 5 document instances (through a - namespace-stripping mechanism) - - â— full support for CALS and HTML tables in manpages output - - â— a mechanism for preserving relative URIs in documents that make use of - XInclude - - â— support for the "new" .90 version of FOP - - â— enhanced capabilities for controlling formatting of lists in HTML and FO - output - - â— autogeneration of AUTHOR and COPYRIGHT sections in manpages output - - â— support for generating crop marks in FO/PDF output - - â— support for qandaset as a root element in FO output - - â— support for floatstyle and orient on all table types - - â— support for floatstyle in figure, and example - - â— pgwide.properties attribute-set supports extending figure, example and - table into the left indent area instead of spanning multiple columns. - -The following is a detailed list of enhancements and API changes that have been -made since the 1.69.1 release. - -Common - -The following changes have been made to the common code since the 1.69.1 -release. - - â— Add the xsl:key for the kimber indexing method. - - Modified: common/autoidx-ng.xsl,1.2 - Robert Stayton - - â— Add support for qandaset. - - Modified: common/labels.xsl,1.37; common/subtitles.xsl,1.7; common/ - titles.xsl,1.35 - Robert Stayton - - â— Support dbhtml/dbfo start PI for orderedlist numbering in both HTML and FO - - Modified: common/common.xsl,1.61; html/lists.xsl,1.50 - Norman Walsh - - â— Added CVS header. - - Modified: common/stripns.xsl,1.12 - Robert Stayton - - â— Changed content model of text element to ANY rather than #PCDATA because - they could contain markup. - - Modified: common/targetdatabase.dtd,1.7 - Robert Stayton - - â— Added refentry.meta.get.quietly param. - - If zero (the default), notes and warnings about "missing" markup are - generated during gathering of refentry metadata. If non-zero, the metadata - is gathered "quietly" -- that is, the notes and warnings are suppressed. - - NOTE: If you are processing a large amount of refentry content, you may be - able to speed up processing significantly by setting a non-zero value for - refentry.meta.get.quietly. - - Modified: common/refentry.xsl,1.17; manpages/param.ent,1.15; manpages/ - param.xweb,1.17; params/refentry.meta.get.quietly.xml,1.1 - Michael(tm) - Smith - - â— After namespace stripping, the source document is the temporary tree - created by the stripping process and it has the wrong base URI for relative - references. Earlier versions of this code used to try to fix that by - patching the elements with relative @fileref attributes. That was - inadequate because it calculated an absolute base URI without considering - that there might be xml:base attributes already in effect. It seems obvious - now that the right thing to do is simply to put the xml:base on the root of - the document. And that seems to work. - - Modified: common/stripns.xsl,1.7 - Norman Walsh - - â— Added support for "software" and "sectdesc" class values on refmiscinfo; - "software" is treated identically to "source", and "setdesc" is treated - identically to "manual". - - Modified: common/refentry.xsl,1.10; params/ - man.th.extra2.max.length.xml,1.3; params/ - refentry.source.name.profile.xml,1.4 - Michael(tm) Smith - - â— Added support for DocBook 5 namespace-stripping in manpages stylesheet. - Closes request #1210692. - - Modified: common/common.xsl,1.56; manpages/docbook.xsl,1.57 - Michael(tm) - Smith - - â— Added to make stripns.xsl usable as a standalone - stylesheet for stripping out DocBook 5/NG to DocBook 4. Note that DocBook - XSLT drivers that include this stylesheet all override the match="/" - template. - - Modified: common/stripns.xsl,1.4 - Michael(tm) Smith - - â— Number figures, examples, and tables from book if there is no prefix (i.e. - if chapter.autolabel is set to 0). This avoids having the list of figures - where the figures mysteriously restart their numeration periodically when - chapter.autolabel is set to 0. - - Modified: common/labels.xsl,1.36 - David Cramer - - â— Add task template in title.markup mode. - - Modified: common/titles.xsl,1.34 - Robert Stayton - - â— Add children (with ids) of formal objects to target data. - - Modified: common/targets.xsl,1.10 - Robert Stayton - - â— Added support for case when personname doesn't contain specific name markup - (as allowed in DocBook 5.0) - - Modified: common/common.xsl,1.54 - Jirka Kosek - -Extensions - -The following changes have been made to the extensions code since the 1.69.1 -release. - - â— Support Xalan 2.7 - - Modified: extensions/xalan27/.cvsignore,1.1; extensions/xalan27/ - build.xml,1.1; extensions/xalan27/nbproject/.cvsignore,1.1; extensions/ - xalan27/nbproject/build-impl.xml,1.1; extensions/xalan27/nbproject/ - genfiles.properties,1.1; extensions/xalan27/nbproject/ - project.properties,1.1; extensions/xalan27/nbproject/project.xml,1.1; - extensions/xalan27/src/com/nwalsh/xalan/CVS.java,1.1; extensions/xalan27/ - src/com/nwalsh/xalan/Callout.java,1.1; extensions/xalan27/src/com/nwalsh/ - xalan/FormatCallout.java,1.1; extensions/xalan27/src/com/nwalsh/xalan/ - FormatDingbatCallout.java,1.1; extensions/xalan27/src/com/nwalsh/xalan/ - FormatGraphicCallout.java,1.1; extensions/xalan27/src/com/nwalsh/xalan/ - FormatTextCallout.java,1.1; extensions/xalan27/src/com/nwalsh/xalan/ - FormatUnicodeCallout.java,1.1; extensions/xalan27/src/com/nwalsh/xalan/ - Func.java,1.1; extensions/xalan27/src/com/nwalsh/xalan/ - ImageIntrinsics.java,1.1; extensions/xalan27/src/com/nwalsh/xalan/ - Params.java,1.1; extensions/xalan27/src/com/nwalsh/xalan/Table.java,1.1; - extensions/xalan27/src/com/nwalsh/xalan/Text.java,1.1; extensions/xalan27/ - src/com/nwalsh/xalan/Verbatim.java,1.1 - Norman Walsh - - â— Handle the case where the imageFn is actually a URI. This still needs work. - - Modified: extensions/saxon643/com/nwalsh/saxon/ImageIntrinsics.java,1.4 - - Norman Walsh - -FO - -The following changes have been made to the fo code since the 1.69.1 release. - - â— Adapted to the new indexing code. Now works just like a wrapper that calls - kosek indexing method, originally implemented here. - - Modified: fo/autoidx-ng.xsl,1.5 - Jirka Kosek - - â— Added parameters for header/footer table minimum height. - - Modified: fo/pagesetup.xsl,1.60; fo/param.ent,1.100; fo/param.xweb,1.113 - - Robert Stayton - - â— Add the index.method parameter. - - Modified: fo/param.ent,1.99; fo/param.xweb,1.112 - Robert Stayton - - â— Integrate support for three indexing methods: - the original English-only - method. - Jirka Kosek's method using EXSLT extensions. - Eliot Kimber's - method using Saxon extensions. Use the 'index.method' parameter to select. - - Modified: fo/autoidx.xsl,1.38 - Robert Stayton - - â— Add support for TOC for qandaset in fo output. - - Modified: fo/autotoc.xsl,1.30; fo/qandaset.xsl,1.20 - Robert Stayton - - â— Added parameter ulink.hyphenate.chars. Added parameter insert.link - .page.number. - - Modified: fo/param.ent,1.98; fo/param.xweb,1.111 - Robert Stayton - - â— Implemented feature request #942524 to add insert.link.page.number to allow - link element cross references to have a page number. - - Modified: fo/xref.xsl,1.67 - Robert Stayton - - â— Add support for ulink.hyphenate.chars so more characters can be break - points in urls. - - Modified: fo/xref.xsl,1.66 - Robert Stayton - - â— Implemented patch #1075144 to make the url text in a ulink in FO output an - active link as well. - - Modified: fo/xref.xsl,1.65 - Robert Stayton - - â— table footnotes now have their own table.footnote.properties attribute set. - - Modified: fo/footnote.xsl,1.23 - Robert Stayton - - â— Add qandaset to root.elements. - - Modified: fo/docbook.xsl,1.41 - Robert Stayton - - â— Added mode="page.sequence" to make it easier to put content into a page - sequence. First used for qandaset. - - Modified: fo/component.xsl,1.37 - Robert Stayton - - â— Implemented feature request #1434408 to support formatting of biblioentry. - - Modified: fo/biblio.xsl,1.35 - Robert Stayton - - â— Added biblioentry.properties. - - Modified: fo/param.ent,1.97; fo/param.xweb,1.110 - Robert Stayton - - â— Support PTC/Arbortext bookmarks - - Modified: fo/docbook.xsl,1.40; fo/ptc.xsl,1.1 - Norman Walsh - - â— Added table.footnote.properties to permit table footnotes to format - differently from regular footnotes. - - Modified: fo/param.ent,1.96; fo/param.xweb,1.109 - Robert Stayton - - â— Refactored table templates to unify their processing and support all - options in all types. Now table and informaltable, in both Cals and Html - markup, use the same templates where possible, and all support pgwide, - rotation, and floats. There is also a placeholder table.container template - to support wrapping a table in a layout table, so the XEP table title - "continued" extension can be more easily implemented. - - Modified: fo/formal.xsl,1.52; fo/htmltbl.xsl,1.9; fo/table.xsl,1.48 - - Robert Stayton - - â— Added new attribute set toc.line.properties for controlling appearance of - lines in ToC/LoT - - Modified: fo/autotoc.xsl,1.29; fo/param.ent,1.95; fo/param.xweb,1.108 - - Jirka Kosek - - â— Added support for float to example and equation. Added support for pgwide - to figure, example, and equation (the latter two via a dbfo pgwide="1" - processing instruction). - - Modified: fo/formal.xsl,1.51 - Robert Stayton - - â— Add pgwide.properties attribute-set. - - Modified: fo/param.ent,1.94; fo/param.xweb,1.107 - Robert Stayton - - â— Added refclass.suppress param. - - If the value of refclass.suppress is non-zero, then display refclass - contents is suppressed in output. Affects HTML and FO output only. - - Modified: fo/param.ent,1.93; fo/param.xweb,1.106; html/param.ent,1.90; html - /param.xweb,1.99; params/refclass.suppress.xml,1.1 - Michael(tm) Smith - - â— Improved support for task subelements - - Modified: fo/task.xsl,1.3; html/task.xsl,1.3 - Jirka Kosek - - â— Adjusted spacing around K&R-formatted Funcdef and Paramdef output such that - it can more easily be discerned where one ends and the other begins. Closes - #1213264. - - Modified: fo/synop.xsl,1.18 - Michael(tm) Smith - - â— Made handling of paramdef/parameter in FO output consistent with that in - HTML and manpages output. Closes #1213259. - - Modified: fo/synop.xsl,1.17 - Michael(tm) Smith - - â— Made handling of Refnamediv consistent with formatting in HTML and manpages - output; specifically, changed so that Refname (comma-separated list of - multiple instances found) is used (instead of Refentrytitle as previously), - then em-dash, then the Refpurpose. Closes #1212562. - - Modified: fo/refentry.xsl,1.30 - Michael(tm) Smith - - â— Added output of Releaseinfo to recto titlepage ("copyright" page) for Book - in FO output. This makes it consistent with HTML output. Closes #1327034. - Thanks to Paul DuBois for reporting. - - Modified: fo/titlepage.templates.xml,1.28 - Michael(tm) Smith - - â— Added condition for setting block-progression-dimension.minimum on - table-row, instead of height, when fop1.extensions is non-zero. For an - explanation of the reason for the change, see: http://wiki.apache.org/ - xmlgraphics-fop/Troubleshooting/CommonLogMessages - - Modified: fo/pagesetup.xsl,1.59 - Michael(tm) Smith - - â— Added new refclass.suppress param for suppressing display of Refclass in - HTML and FO output. Did not add it to manpages because manpages stylesheet - is currently just silently ignoring Refclass anyway. Closes request # - 1461065. Thanks to Davor Ocelic (docelic) for reporting. - - Modified: fo/refentry.xsl,1.29; html/refentry.xsl,1.23 - Michael(tm) Smith - - â— Add support for keep-together PI to informal objects. - - Modified: fo/formal.xsl,1.50 - Robert Stayton - - â— Add support for fop1.extensions. - - Modified: fo/formal.xsl,1.49; fo/graphics.xsl,1.44; fo/table.xsl,1.47 - - Robert Stayton - - â— Add support for fop1 bookmarks. - - Modified: fo/docbook.xsl,1.39 - Robert Stayton - - â— Add fop1.extentions parameter to add support for fop development version. - - Modified: fo/param.ent,1.92; fo/param.xweb,1.105 - Robert Stayton - - â— Start supporting fop development version, which will become fop version 1. - - Modified: fo/fop1.xsl,1.1 - Robert Stayton - - â— Add template for task in mode="xref-to". - - Modified: fo/xref.xsl,1.63; html/xref.xsl,1.57 - Robert Stayton - - â— table footnotes now also get footnote.properties attribute-set. - - Modified: fo/footnote.xsl,1.22 - Robert Stayton - - â— Added index.separator named template to compute the separator punctuation - based on locale. - - Modified: fo/autoidx.xsl,1.36 - Robert Stayton - - â— Added support for link, olink, and xref within OO Classsynopsis and - children. (Because DocBook NG/5 allows it). - - Modified: fo/synop.xsl,1.15; html/synop.xsl,1.19 - Michael(tm) Smith - - â— Support date as an inline - - Modified: fo/inline.xsl,1.43; html/inline.xsl,1.46 - Norman Walsh - - â— Added new parameter keep.relative.image.uris - - Modified: fo/param.ent,1.91; fo/param.xweb,1.104; html/param.ent,1.87; html - /param.xweb,1.96; params/keep.relative.image.uris.xml,1.1 - Norman Walsh - - â— Map Unicode space characters U+2000-U+200A to fo:leaders. - - Modified: fo/docbook.xsl,1.38; fo/passivetex.xsl,1.4; fo/spaces.xsl,1.1 - - Jirka Kosek - - â— Output a real em dash for em-dash dingbat (instead of two hypens). - - Modified: fo/fo.xsl,1.7 - Michael(tm) Smith - - â— Support default label width parameters for itemized and ordered lists - - Modified: fo/lists.xsl,1.64; fo/param.ent,1.90; fo/param.xweb,1.103; params - /itemizedlist.label.width.xml,1.1; params/orderedlist.label.width.xml,1.1 - - Norman Walsh - - â— Generate localized title for Refsynopsisdiv if no appropriate Title - descendant found in source. Closes #1212398. This change makes behavior for - the Synopsis title consistent with the behavior of HTML and manpages - output. - - Also, added xsl:use-attribute-sets="normal.para.spacing" to block generated - for Cmdsynopsis output. Previously, that block had no spacing at all - specified, which resulted it being crammed up to closely to the Synopsis - head. - - Modified: fo/refentry.xsl,1.28; fo/synop.xsl,1.13 - Michael(tm) Smith - - â— Added parameters to support localization of index item punctuation. - - Modified: fo/autoidx.xsl,1.35 - Robert Stayton - - â— Added index.number.separator, index.range.separator, and - index.term.separator parameters to support localization of punctuation in - index entries. - - Modified: fo/param.ent,1.89; fo/param.xweb,1.102 - Robert Stayton - - â— Added "Cross References" section in HTML doc (for consistency with the FO - doc). Also, moved the existing FO "Cross References" section to follow the - "Linking" section. - - Modified: fo/param.xweb,1.101; html/param.xweb,1.95 - Michael(tm) Smith - - â— Added ID attribues to all Reference elements (e.g., id="tables" for the doc - for section on Table params). So pages for all subsections of ref docs now - have stable filenames instead of arbitrary generated filenames. - - Modified: fo/param.xweb,1.100; html/param.xweb,1.94 - Michael(tm) Smith - - â— Added two new parameters for handling of multi-term varlistentry elements: - - variablelist.term.break.after: When the variablelist.term.break.after is - non-zero, it will generate a line break after each term multi-term - varlistentry. - - variablelist.term.separator: When a varlistentry contains multiple term - elements, the string specified in the value of the - variablelist.term.separator parameter is placed after each term except the - last. The default is ", " (a comma followed by a space). To suppress - rendering of the separator, set the value of variablelist.term.separator to - the empty string (""). - - These parameters are primarily intended to be useful if you have multi-term - varlistentries that have long terms. - - Closes #1306676. Thanks to Sam Steingold for providing an example "lots of - long terms" doc that demonstrated the value of having these options. - - Also, added normalize-space() call to processing of each term. - - This change affects all output formats (HTML, PDF, manpages). The default - behavior should pretty much remain the same as before, but it is possible - (as always) that the change may introduce some new bugginess. - - Modified: fo/lists.xsl,1.62; fo/param.ent,1.88; fo/param.xweb,1.99; html/ - lists.xsl,1.48; html/param.ent,1.86; html/param.xweb,1.93; manpages/ - lists.xsl,1.22; manpages/param.ent,1.14; manpages/param.xweb,1.16; params/ - variablelist.term.break.after.xml,1.1; params/ - variablelist.term.separator.xml,1.1 - Michael(tm) Smith - - â— Add sidebar titlepage placeholder attset for styles. - - Modified: fo/titlepage.xsl,1.37 - Robert Stayton - - â— Add titlepage for sidebar. - - Modified: fo/titlepage.templates.xml,1.27 - Robert Stayton - - â— Implemented RFE #1292615. - - Added bunch of new parameters (attribute sets) that affect list - presentation: list.block.properties, itemizedlist.properties, orderedlist - .properties, itemizedlist.label.properties and orderedlist.label - .properties. Default behaviour of stylesheets has not been changed but - further customizations will be much more easier. - - Modified: fo/lists.xsl,1.61; fo/param.ent,1.87; fo/param.xweb,1.98; params/ - itemizedlist.label.properties.xml,1.1; params/ - itemizedlist.properties.xml,1.1; params/list.block.properties.xml,1.1; - params/orderedlist.label.properties.xml,1.1; params/ - orderedlist.properties.xml,1.1 - Jirka Kosek - - â— Implemented RFE #1242092. - - You can enable crop marks in your document by setting crop.marks=1 and - xep.extensions=1. Appearance of crop marks can be controlled by parameters - crop.mark.bleed (6pt), crop.mark.offset (24pt) and crop.mark.width (0.5pt). - - Also there is new named template called user-xep-pis. You can overwrite it - in order to produce some PIs that can control XEP as described in http:// - www.renderx.com/reference.html#Output_Formats - - Modified: fo/docbook.xsl,1.36; fo/param.ent,1.86; fo/param.xweb,1.97; fo/ - xep.xsl,1.23; params/crop.mark.bleed.xml,1.1; params/ - crop.mark.offset.xml,1.1; params/crop.mark.width.xml,1.1; params/ - crop.marks.xml,1.1 - Jirka Kosek - -HTML - -The following changes have been made to the html code since the 1.69.1 release. - - â— implemented index.method parameter and three methods. - - Modified: html/autoidx.xsl,1.28 - Robert Stayton - - â— added index.method parameter to support 3 indexing methods. - - Modified: html/param.ent,1.94; html/param.xweb,1.103 - Robert Stayton - - â— Implemented feature request #1072510 as a processing instruction to permit - including external HTML content into HTML output. - - Modified: html/pi.xsl,1.9 - Robert Stayton - - â— Added new parameter chunk.tocs.and.lots.has.title which controls presence - of title in a separate chunk with ToC/LoT. Disabling title can be very - useful if you are generating frameset output (well, yes those frames, but - some customers really want them ;-). - - Modified: html/chunk-code.xsl,1.15; html/param.ent,1.93; html/ - param.xweb,1.102; params/chunk.tocs.and.lots.has.title.xml,1.1 - Jirka - Kosek - - â— Support dbhtml/dbfo start PI for orderedlist numbering in both HTML and FO - - Modified: common/common.xsl,1.61; html/lists.xsl,1.50 - Norman Walsh - - â— Allow ToC without title also for set and book. - - Modified: html/autotoc.xsl,1.37; html/division.xsl,1.12 - Jirka Kosek - - â— Implemented floats uniformly for figure, example, equation and - informalfigure, informalexample, and informalequation. - - Modified: html/formal.xsl,1.22 - Robert Stayton - - â— Added the autotoc.label.in.hyperlink param. - - If the value of autotoc.label.in.hyperlink is non-zero, labels are included - in hyperlinked titles in the TOC. If it is instead zero, labels are still - displayed prior to the hyperlinked titles, but are not hyperlinked along - with the titles. - - Closes patch #1065868. Thanks to anatoly techtonik for the patch. - - Modified: html/autotoc.xsl,1.36; html/param.ent,1.92; html/ - param.xweb,1.101; params/autotoc.label.in.hyperlink.xml,1.1 - Michael(tm) - Smith - - â— Added two new params: html.head.legalnotice.link.types and html.head. - legalnotice.link.multiple. - - If the value of the generate.legalnotice.link is non-zero, then the - stylesheet generates (in the head section of the HTML source) either a - single HTML link element or, if the value of the html.head.legalnotice.link - .multiple is non-zero, one link element for each link type specified. Each - link has the following attributes: - - - a rel attribute whose value is derived from the value of html.head. - legalnotice.link.types - - - an href attribute whose value is set to the URL of the file containing - the legalnotice - - - a title attribute whose value is set to the title of the corresponding - legalnotice (or a title programatically determined by the stylesheet) - - For example: - - - - Closes #1476450. Thanks to Sam Steingold. - - Modified: html/chunk-common.xsl,1.45; html/param.ent,1.91; html/ - param.xweb,1.100; params/generate.legalnotice.link.xml,1.4; params/ - html.head.legalnotice.link.multiple.xml,1.1; params/ - html.head.legalnotice.link.types.xml,1.1 - Michael(tm) Smith - - â— Added refclass.suppress param. - - If the value of refclass.suppress is non-zero, then display refclass - contents is suppressed in output. Affects HTML and FO output only. - - Modified: fo/param.ent,1.93; fo/param.xweb,1.106; html/param.ent,1.90; html - /param.xweb,1.99; params/refclass.suppress.xml,1.1 - Michael(tm) Smith - - â— Improved support for task subelements - - Modified: fo/task.xsl,1.3; html/task.xsl,1.3 - Jirka Kosek - - â— Added new refclass.suppress param for suppressing display of Refclass in - HTML and FO output. Did not add it to manpages because manpages stylesheet - is currently just silently ignoring Refclass anyway. Closes request # - 1461065. Thanks to Davor Ocelic (docelic) for reporting. - - Modified: fo/refentry.xsl,1.29; html/refentry.xsl,1.23 - Michael(tm) Smith - - â— Process alt text with normalize-space(). Replace tab indents with spaces. - - Modified: html/graphics.xsl,1.57 - Robert Stayton - - â— Content of citation element is automatically linked to the bibliographic - entry with the corresponding abbrev. - - Modified: html/biblio.xsl,1.26; html/inline.xsl,1.47; html/xref.xsl,1.58 - - Jirka Kosek - - â— Add template for task in mode="xref-to". - - Modified: fo/xref.xsl,1.63; html/xref.xsl,1.57 - Robert Stayton - - â— Suppress ID warnings if the .warnings parameter is 0 - - Modified: html/html.xsl,1.17 - Norman Walsh - - â— Add support for floatstyle to figure. - - Modified: html/formal.xsl,1.21 - Robert Stayton - - â— Handling of xref to area/areaset need support in extensions code also. I - currently have no time to touch extensions code, so code is here to be - enabled when extension is fixed also. - - Modified: html/xref.xsl,1.56 - Jirka Kosek - - â— Added 3 parameters for overriding gentext for index punctuation. - - Modified: html/param.ent,1.89; html/param.xweb,1.98 - Robert Stayton - - â— Added parameters to support localization of index item punctuation. Added - index.separator named template to compute the separator punctuation based - on locale. - - Modified: html/autoidx.xsl,1.27 - Robert Stayton - - â— Added a
wrapper around output of contents - of all formal objects. Also, added an optional
- linebreak after all formal objects. - - WARNING: Because this change places an additional DIV between the DIV - wrapper for the equation and the equation contents, it may break some - existing CSS stylesheets that have been created with the assumption that - there would never be an intervening DIV there. - - The following is an example of what Equation output looks like as a result - of the changes described above. - -
- -

(1.3)

- -
1+1=3

- - Rationale: These changes allow CSS control of the placement of the - formal-object title relative to the formal-object contents. For example, - using the CSS "float" property enables the title and contents to be - rendered on the same line. Example stylesheet: - - .equation { margin-top: 20px; margin-bottom: 20px; } .equation-contents { - float: left; } - - .equation .title { margin-top: 0; float: right; margin-right: 200px; } - - .equation .title b { font-weight: normal; } - - .equation-break { clear: both; } - - Note that the purpose of the ".equation-break" class is to provide a way to - clear off the floats. - - If you want to instead have the equation title rendered to the left of the - equation contents, you can do something like this: - - .equation { margin-top: 20px; width: 300px; margin-bottom: 20px; } - .equation-contents { float: right; } - - .equation .title { margin-top: 0; float: left; margin-right: 200px; } - - .equation .title b { font-weight: normal; } - - .equation-break { clear: both; } - - Modified: html/formal.xsl,1.20 - Michael(tm) Smith - - â— Added a chunker.output.quiet top-level parameter so that the chunker can be - made quiet by default - - Modified: html/chunker.xsl,1.26 - Norman Walsh - - â— Added support for link, olink, and xref within OO Classsynopsis and - children. (Because DocBook NG/5 allows it). - - Modified: fo/synop.xsl,1.15; html/synop.xsl,1.19 - Michael(tm) Smith - - â— New parameter: id.warnings. If non-zero, warnings are generated for titled - objects that don't have titles. True by default; I wonder if this will be - too aggressive? - - Modified: html/biblio.xsl,1.25; html/component.xsl,1.27; html/ - division.xsl,1.11; html/formal.xsl,1.19; html/glossary.xsl,1.20; html/ - html.xsl,1.13; html/index.xsl,1.16; html/param.ent,1.88; html/ - param.xweb,1.97; html/refentry.xsl,1.22; html/sections.xsl,1.30; params/ - id.warnings.xml,1.1 - Norman Walsh - - â— If the keep.relative.image.uris parameter is true, don't use the absolute - URI (as calculated from xml:base) in the img src attribute, us the value - the author specified. Note that we still have to calculate the absolute - filename for use in the image intrinsics extension. - - Modified: html/graphics.xsl,1.56 - Norman Walsh - - â— Support date as an inline - - Modified: fo/inline.xsl,1.43; html/inline.xsl,1.46 - Norman Walsh - - â— Added new parameter keep.relative.image.uris - - Modified: fo/param.ent,1.91; fo/param.xweb,1.104; html/param.ent,1.87; html - /param.xweb,1.96; params/keep.relative.image.uris.xml,1.1 - Norman Walsh - - â— Added two new parameters for handling of multi-term varlistentry elements: - - variablelist.term.break.after: When the variablelist.term.break.after is - non-zero, it will generate a line break after each term multi-term - varlistentry. - - variablelist.term.separator: When a varlistentry contains multiple term - elements, the string specified in the value of the - variablelist.term.separator parameter is placed after each term except the - last. The default is ", " (a comma followed by a space). To suppress - rendering of the separator, set the value of variablelist.term.separator to - the empty string (""). - - These parameters are primarily intended to be useful if you have multi-term - varlistentries that have long terms. - - Closes #1306676. Thanks to Sam Steingold for providing an example "lots of - long terms" doc that demonstrated the value of having these options. - - Also, added normalize-space() call to processing of each term. - - This change affects all output formats (HTML, PDF, manpages). The default - behavior should pretty much remain the same as before, but it is possible - (as always) that the change may introduce some new bugginess. - - Modified: fo/lists.xsl,1.62; fo/param.ent,1.88; fo/param.xweb,1.99; html/ - lists.xsl,1.48; html/param.ent,1.86; html/param.xweb,1.93; manpages/ - lists.xsl,1.22; manpages/param.ent,1.14; manpages/param.xweb,1.16; params/ - variablelist.term.break.after.xml,1.1; params/ - variablelist.term.separator.xml,1.1 - Michael(tm) Smith - - â— Added "wrapper-name" param to inline.charseq named template, enabling it to - output inlines other than just "span". Acronym and Abbrev templates now use - inline.charseq to output HTML "acronym" and "abbr" elements (instead of - "span"). Closes #1305468. Thanks to Sam Steingold for suggesting the - change. - - Modified: html/inline.xsl,1.45 - Michael(tm) Smith - -Manpages - -The following changes have been made to the manpages code since the 1.69.1 -release. - - â— Added the following params: - - - man.indent.width (string-valued) - man.indent.refsect (boolean) - - man.indent.blurbs (boolean) - man.indent.lists (boolean) - - man.indent.verbatims (boolean) - - Note that in earlier snapshots, man.indent.width was named - man.indentation.default.value and the boolean params had names like - man.indentation.*.adjust. Also the man.indent.blurbs param was called - man.indentation.authors.adjust (or something). - - The behavior now is: If the value of a particular man.indent.* boolean - param is non-zero, the corresponding contents (refsect*, list items, - authorblurb/personblurb, vervatims) are displayed with a left margin - indented by a width equal to the value of man.indent.width. - - Modified: params/man.indent.blurbs.xml,1.1; manpages/docbook.xsl,1.74; - manpages/info.xsl,1.20; manpages/lists.xsl,1.30; manpages/other.xsl,1.20; - manpages/param.ent,1.22; manpages/param.xweb,1.24; manpages/ - refentry.xsl,1.14; params/man.indent.lists.xml,1.1; params/ - man.indent.refsect.xml,1.1; params/man.indent.verbatims.xml,1.1; params/ - man.indent.width.xml,1.1 - Michael(tm) Smith - - â— Added man.table.footnotes.divider param. - - In each table that contains footenotes, the string specified by the man. - table.footnotes.divider parameter is output before the list of footnotes - for the table. - - Modified: manpages/docbook.xsl,1.73; manpages/links.xsl,1.6; manpages/ - param.ent,1.21; manpages/param.xweb,1.23; params/ - man.table.footnotes.divider.xml,1.1 - Michael(tm) Smith - - â— Added the man.output.in.separate.dir, man.output.base.dir, and - man.output.subdirs.enabled parameters. - - The man.output.base.dir parameter specifies the base directory into which - man-page files are output. The man.output.subdirs.enabled parameter - controls whether the files are output in subdirectories within the base - directory. - - The values of the man.output.base.dir and man.output.subdirs.enabled - parameters are used only if the value of man.output.in.separate.dir - parameter is non-zero. If the value of man.output.in.separate.dir is zero, - man-page files are not output in a separate directory. - - Modified: manpages/docbook.xsl,1.72; manpages/param.ent,1.20; manpages/ - param.xweb,1.22; params/man.output.base.dir.xml,1.1; params/ - man.output.in.separate.dir.xml,1.1; params/ - man.output.subdirs.enabled.xml,1.1 - Michael(tm) Smith - - â— Added man.font.table.headings and man.font.table.title params, for - controlling font in table headings and titles. - - Modified: manpages/docbook.xsl,1.71; manpages/param.ent,1.19; manpages/ - param.xweb,1.21; params/man.font.table.headings.xml,1.1; params/ - man.font.table.title.xml,1.1 - Michael(tm) Smith - - â— Added man.font.funcsynopsisinfo and man.font.funcprototype params, for - specifying the roff font (for example, BI, B, I) for funcsynopsisinfo and - funcprototype output. - - Modified: manpages/block.xsl,1.19; manpages/docbook.xsl,1.69; manpages/ - param.ent,1.18; manpages/param.xweb,1.20; manpages/synop.xsl,1.29; manpages - /table.xsl,1.21; params/man.font.funcprototype.xml,1.1; params/ - man.font.funcsynopsisinfo.xml,1.1 - Michael(tm) Smith - - â— Added man.segtitle.suppress param. - - If the value of man.segtitle.suppress is non-zero, then display of segtitle - contents is suppressed in output. - - Modified: manpages/docbook.xsl,1.68; manpages/param.ent,1.17; manpages/ - param.xweb,1.19; params/man.segtitle.suppress.xml,1.1 - Michael(tm) Smith - - â— Added man.output.manifest.enabled and man.output.manifest.filename params. - - If man.output.manifest.enabled is non-zero, a list of filenames for man - pages generated by the stylesheet transformation is written to the file - named by man.output.manifest.filename - - Modified: manpages/docbook.xsl,1.67; manpages/other.xsl,1.19; manpages/ - param.ent,1.16; manpages/param.xweb,1.18; params/ - man.output.manifest.enabled.xml,1.1; params/ - man.output.manifest.filename.xml,1.1; tools/make/Makefile.DocBook,1.4 - - Michael(tm) Smith - - â— Added refentry.meta.get.quietly param. - - If zero (the default), notes and warnings about "missing" markup are - generated during gathering of refentry metadata. If non-zero, the metadata - is gathered "quietly" -- that is, the notes and warnings are suppressed. - - NOTE: If you are processing a large amount of refentry content, you may be - able to speed up processing significantly by setting a non-zero value for - refentry.meta.get.quietly. - - Modified: common/refentry.xsl,1.17; manpages/param.ent,1.15; manpages/ - param.xweb,1.17; params/refentry.meta.get.quietly.xml,1.1 - Michael(tm) - Smith - - â— Changed names of all boolean indentation params to man.indent.* Also - discarded individual man.indent.*.value params and switched to just using a - common man.indent.width param (3n by default). - - Modified: manpages/docbook.xsl,1.66; manpages/info.xsl,1.19; manpages/ - lists.xsl,1.29; manpages/other.xsl,1.18; manpages/refentry.xsl,1.13 - - Michael(tm) Smith - - â— Added boolean man.output.in.separate.dir param, to control whether or not - man files are output in separate directory. - - Modified: manpages/docbook.xsl,1.65; manpages/utility.xsl,1.14 - Michael - (tm) Smith - - â— Added options for controlling indentation of verbatim output. Controlled - through the man.indentation.verbatims.adjust and - man.indentation.verbatims.value params. Closes #1242997 - - Modified: manpages/block.xsl,1.15; manpages/docbook.xsl,1.64 - Michael(tm) - Smith - - â— Added options for controlling indentation in lists and in *blurb output in - the AUTHORS section. Controlled through the man.indentation.lists.adjust, - man.indentation.lists.value, man.indentation.authors.adjust, and - man.indentation.authors.value parameters. Default is 3 characters (instead - of the roff default of 8 characters). Closes #1449369. - - Also, removed the indent that was being set on informalexample outuput. I - will instead add an option for indenting verbatims, which I think is what - the informalexample indent was intended for originally. - - Modified: manpages/block.xsl,1.14; manpages/docbook.xsl,1.63; manpages/ - info.xsl,1.18; manpages/lists.xsl,1.28 - Michael(tm) Smith - - â— Changed line-spacing call before synopfragment to use ".sp -1n" ("n" units - specified) instead of plain ".sp -1" - - Modified: manpages/synop.xsl,1.28 - Michael(tm) Smith - - â— Added support for writing man files into a specific output directory and - into appropriate subdirectories within that output directory. Controlled - through the man.base.dir parameter (similar to the base.dir support in the - HTML stylesheet) and the man.subdirs.enabled parameter, which automatically - determines the name of an appropriate subdir (for example, man/man7, man/ - man1, etc.) based on the section number/manvolnum of the source Refentry. - - Closes #1255036 and #1170317. Thanks to Denis Bradford for the original - feature request, and to Costin Stroie for submitting a patch that was very - helpful in implementing the support. - - Modified: manpages/docbook.xsl,1.62; manpages/utility.xsl,1.13 - Michael - (tm) Smith - - â— Refined XPath statements and notification messages for refentry metadata - handling. - - Modified: common/common.xsl,1.59; common/refentry.xsl,1.14; manpages/ - docbook.xsl,1.61; manpages/other.xsl,1.17 - Michael(tm) Smith - - â— Added support for copyright and legalnotice. The manpages stylesheets now - output a COPYRIGHT section, after the AUTHORS section, if a copyright or - legalnotice is found in the source. The section contains the copyright - contents followed by the legalnotice contents. Closes #1450209. - - Modified: manpages/docbook.xsl,1.59; manpages/info.xsl,1.17 - Michael(tm) - Smith - - â— Drastically reworked all of the XPath expressions used in refentry metadata - gathering -- completely removed $parentinfo and turned $info into a set of - nodes that includes the *info contents of the Refentry plus the *info - contents all all of its ancestor elements. The basic XPath expression now - used throughout is (using the example of checking for a date): - - (($info[//date])[last()]/date)[1]. - - That selects the "last" *info/date date in document order -- that is, the - one eitther on the Refentry itself or on the closest ancestor to the - Refentry. - - It's likely this change may break some things; may need to pick up some - pieces later. - - Also, changed the default value for the man.th.extra2.max.length from 40 to - 30. - - Modified: common/common.xsl,1.58; common/refentry.xsl,1.7; params/ - man.th.extra2.max.length.xml,1.2; params/refentry.date.profile.xml,1.2; - params/refentry.manual.profile.xml,1.2; params/ - refentry.source.name.profile.xml,1.2; params/ - refentry.version.profile.xml,1.2; manpages/docbook.xsl,1.58; manpages/ - other.xsl,1.15 - Michael(tm) Smith - - â— Added support for DocBook 5 namespace-stripping in manpages stylesheet. - Closes request #1210692. - - Modified: common/common.xsl,1.56; manpages/docbook.xsl,1.57 - Michael(tm) - Smith - - â— Fixed handling of table footnotes. With this checkin, the table support in - the manpages stylesheet is now basically feature complete. So this change - closes request #619532, "No support for tables" -- the oldest currently - open manpages feature request, submitted by Ben Secrest (blsecres) on - 2002-10-07. Congratulations to me [patting myself on the back]. - - Modified: manpages/block.xsl,1.11; manpages/docbook.xsl,1.55; manpages/ - table.xsl,1.15 - Michael(tm) Smith - - â— Added handling for table titles. Also fixed handling of nested tables; nest - tables are now "extracted" and displayed just after their parent tables. - - Modified: manpages/docbook.xsl,1.54; manpages/table.xsl,1.14 - Michael(tm) - Smith - - â— Added option for turning off bold formatting in Funcsynopsis. Boldface - formatting in function synopsis is mandated in the man(7) man page and is - used almost universally in existing man pages. Despite that, it really does - look like crap to have an entire Funcsynopsis output in bold, so I added - params for turning off the bold formatting and/or replacing it with a - different roff special font (e.g., "RI" for alternating roman/italic - instead of the default "BI" for alternating bold/italic). The new params - are "man.funcprototype.font" and "man.funcsynopsisinfo.font". To be - documented later. - - Closes #1452247. Thanks to Joe Orton for the feature request. - - Modified: params/man.string.subst.map.xml,1.16; manpages/block.xsl,1.10; - manpages/docbook.xsl,1.51; manpages/inline.xsl,1.16; manpages/ - synop.xsl,1.27 - Michael(tm) Smith - - â— Use AUTHORS instead of AUTHOR if we have multiple people to attribute. - Also, fixed checking such that we generate author section even if we don't - have an author (as long as there is at least one other person/entity we can - put in the section). Also adjusted assembly of content for Author metainfo - field such that we now not only use author, but try to find a "best match" - if we can't find an author name to put there. - - Closes #1233592. Thanks to Sam Steingold for the request. - - Modified: manpages/info.xsl,1.12 - Michael(tm) Smith - - â— Changes for request #1243027, "Impove handling of AUTHOR section." This - adds support for Collab, Corpauthor, Corpcredt, Orgname, Publishername, and - Publisher. Also adds support for output of Affiliation and its children, - and support for using gentext strings for auto-attributing roles (Author, - Editor, Publisher, Translator, etc.). Also did a lot of code cleanup and - modularization of all the AUTHOR handling code. And fixed a bug that was - causing Author info to not be picked up correctly for metainfo comment we - embed in man-page source. - - Modified: manpages/info.xsl,1.11 - Michael(tm) Smith - - â— Support bold output for "emphasis remap='B'". (because Eric Raymond's - doclifter(1) tool converts groff source marked up with ".B" request or "\ - fB" escapes to DocBook "emphasis remap='B'".) - - Modified: manpages/inline.xsl,1.14 - Michael(tm) Smith - - â— Added support for Segmentedlist. Details: Output is tabular, with no option - for "list" type output. Output for Segtitle elements can be supressed by - setting man.segtitle.suppress. If Segtitle content is output, it is - rendered in italic type (not bold because not all terminals support bold - and so italic ensures the stand out on those terminals). Extra space (.sp - line) at end of table code ensures that it gets handled correctly in the - case where its source is the child of a Para. Closes feature-request # - 1400097. Thanks to Daniel Leidert for the patch and push, and to Alastair - Rankine for filing the original feature request. - - Modified: manpages/lists.xsl,1.23; manpages/utility.xsl,1.10 - Michael(tm) - Smith - - â— Improved handling or Author/Editor/Othercredit. - - Reworked content of (non-visible) comment added at top of each page - (metadata stuff). - - Added support for generating a manifest file (useful for cleaning up after - builds, etc.) - - Modified: manpages/docbook.xsl,1.46; manpages/info.xsl,1.9; manpages/ - other.xsl,1.12; manpages/utility.xsl,1.6 - Michael(tm) Smith - - â— Added two new parameters for handling of multi-term varlistentry elements: - - variablelist.term.break.after: When the variablelist.term.break.after is - non-zero, it will generate a line break after each term multi-term - varlistentry. - - variablelist.term.separator: When a varlistentry contains multiple term - elements, the string specified in the value of the - variablelist.term.separator parameter is placed after each term except the - last. The default is ", " (a comma followed by a space). To suppress - rendering of the separator, set the value of variablelist.term.separator to - the empty string (""). - - These parameters are primarily intended to be useful if you have multi-term - varlistentries that have long terms. - - Closes #1306676. Thanks to Sam Steingold for providing an example "lots of - long terms" doc that demonstrated the value of having these options. - - Also, added normalize-space() call to processing of each term. - - This change affects all output formats (HTML, PDF, manpages). The default - behavior should pretty much remain the same as before, but it is possible - (as always) that the change may introduce some new bugginess. - - Modified: fo/lists.xsl,1.62; fo/param.ent,1.88; fo/param.xweb,1.99; html/ - lists.xsl,1.48; html/param.ent,1.86; html/param.xweb,1.93; manpages/ - lists.xsl,1.22; manpages/param.ent,1.14; manpages/param.xweb,1.16; params/ - variablelist.term.break.after.xml,1.1; params/ - variablelist.term.separator.xml,1.1 - Michael(tm) Smith - -Params - -The following changes have been made to the params code since the 1.69.1 -release. - - â— New parameters to set header/footer table minimum height. - - Modified: params/footer.table.height.xml,1.1; params/ - header.table.height.xml,1.1 - Robert Stayton - - â— Support multiple indexing methods for different languages. - - Modified: params/index.method.xml,1.1 - Robert Stayton - - â— Remove qandaset and qandadiv from generate.toc for fo output because - formerly it wasn't working, but now it is and the default behavior should - stay the same. - - Modified: params/generate.toc.xml,1.8 - Robert Stayton - - â— add support for page number references to link element too. - - Modified: params/insert.link.page.number.xml,1.1 - Robert Stayton - - â— Add support for more characters to hyphen on when ulink.hyphenate is turned - on. - - Modified: params/ulink.hyphenate.chars.xml,1.1; params/ - ulink.hyphenate.xml,1.3 - Robert Stayton - - â— New attribute-set to format biblioentry and bibliomixed. - - Modified: params/biblioentry.properties.xml,1.1 - Robert Stayton - - â— Added new parameter chunk.tocs.and.lots.has.title which controls presence - of title in a separate chunk with ToC/LoT. Disabling title can be very - useful if you are generating frameset output (well, yes those frames, but - some customers really want them ;-). - - Modified: html/chunk-code.xsl,1.15; html/param.ent,1.93; html/ - param.xweb,1.102; params/chunk.tocs.and.lots.has.title.xml,1.1 - Jirka - Kosek - - â— Added new attribute set toc.line.properties for controlling appearance of - lines in ToC/LoT - - Modified: params/toc.line.properties.xml,1.1 - Jirka Kosek - - â— Allow table footnotes to have different properties from regular footnotes. - - Modified: params/table.footnote.properties.xml,1.1 - Robert Stayton - - â— Set properties for pgwide="1" objects. - - Modified: params/pgwide.properties.xml,1.1 - Robert Stayton - - â— Added the autotoc.label.in.hyperlink param. - - If the value of autotoc.label.in.hyperlink is non-zero, labels are included - in hyperlinked titles in the TOC. If it is instead zero, labels are still - displayed prior to the hyperlinked titles, but are not hyperlinked along - with the titles. - - Closes patch #1065868. Thanks to anatoly techtonik for the patch. - - Modified: html/autotoc.xsl,1.36; html/param.ent,1.92; html/ - param.xweb,1.101; params/autotoc.label.in.hyperlink.xml,1.1 - Michael(tm) - Smith - - â— Added two new params: html.head.legalnotice.link.types and html.head. - legalnotice.link.multiple. - - If the value of the generate.legalnotice.link is non-zero, then the - stylesheet generates (in the head section of the HTML source) either a - single HTML link element or, if the value of the html.head.legalnotice.link - .multiple is non-zero, one link element for each link type specified. Each - link has the following attributes: - - - a rel attribute whose value is derived from the value of html.head. - legalnotice.link.types - - - an href attribute whose value is set to the URL of the file containing - the legalnotice - - - a title attribute whose value is set to the title of the corresponding - legalnotice (or a title programatically determined by the stylesheet) - - For example: - - - - Closes #1476450. Thanks to Sam Steingold. - - Modified: html/chunk-common.xsl,1.45; html/param.ent,1.91; html/ - param.xweb,1.100; params/generate.legalnotice.link.xml,1.4; params/ - html.head.legalnotice.link.multiple.xml,1.1; params/ - html.head.legalnotice.link.types.xml,1.1 - Michael(tm) Smith - - â— Added the following params: - - - man.indent.width (string-valued) - man.indent.refsect (boolean) - - man.indent.blurbs (boolean) - man.indent.lists (boolean) - - man.indent.verbatims (boolean) - - Note that in earlier snapshots, man.indent.width was named - man.indentation.default.value and the boolean params had names like - man.indentation.*.adjust. Also the man.indent.blurbs param was called - man.indentation.authors.adjust (or something). - - The behavior now is: If the value of a particular man.indent.* boolean - param is non-zero, the corresponding contents (refsect*, list items, - authorblurb/personblurb, vervatims) are displayed with a left margin - indented by a width equal to the value of man.indent.width. - - Modified: params/man.indent.blurbs.xml,1.1; manpages/docbook.xsl,1.74; - manpages/info.xsl,1.20; manpages/lists.xsl,1.30; manpages/other.xsl,1.20; - manpages/param.ent,1.22; manpages/param.xweb,1.24; manpages/ - refentry.xsl,1.14; params/man.indent.lists.xml,1.1; params/ - man.indent.refsect.xml,1.1; params/man.indent.verbatims.xml,1.1; params/ - man.indent.width.xml,1.1 - Michael(tm) Smith - - â— Added man.table.footnotes.divider param. - - In each table that contains footenotes, the string specified by the man. - table.footnotes.divider parameter is output before the list of footnotes - for the table. - - Modified: manpages/docbook.xsl,1.73; manpages/links.xsl,1.6; manpages/ - param.ent,1.21; manpages/param.xweb,1.23; params/ - man.table.footnotes.divider.xml,1.1 - Michael(tm) Smith - - â— Added the man.output.in.separate.dir, man.output.base.dir, and - man.output.subdirs.enabled parameters. - - The man.output.base.dir parameter specifies the base directory into which - man-page files are output. The man.output.subdirs.enabled parameter - controls whether the files are output in subdirectories within the base - directory. - - The values of the man.output.base.dir and man.output.subdirs.enabled - parameters are used only if the value of man.output.in.separate.dir - parameter is non-zero. If the value of man.output.in.separate.dir is zero, - man-page files are not output in a separate directory. - - Modified: manpages/docbook.xsl,1.72; manpages/param.ent,1.20; manpages/ - param.xweb,1.22; params/man.output.base.dir.xml,1.1; params/ - man.output.in.separate.dir.xml,1.1; params/ - man.output.subdirs.enabled.xml,1.1 - Michael(tm) Smith - - â— Added man.font.table.headings and man.font.table.title params, for - controlling font in table headings and titles. - - Modified: manpages/docbook.xsl,1.71; manpages/param.ent,1.19; manpages/ - param.xweb,1.21; params/man.font.table.headings.xml,1.1; params/ - man.font.table.title.xml,1.1 - Michael(tm) Smith - - â— Added man.font.funcsynopsisinfo and man.font.funcprototype params, for - specifying the roff font (for example, BI, B, I) for funcsynopsisinfo and - funcprototype output. - - Modified: manpages/block.xsl,1.19; manpages/docbook.xsl,1.69; manpages/ - param.ent,1.18; manpages/param.xweb,1.20; manpages/synop.xsl,1.29; manpages - /table.xsl,1.21; params/man.font.funcprototype.xml,1.1; params/ - man.font.funcsynopsisinfo.xml,1.1 - Michael(tm) Smith - - â— Changed to select="0" in refclass.suppress (instead of ..>0 as a child of the list. For example: - - Choose from - ONE and ONLY ONE of the following: - - - A - B - C. - - Output (for English): - - Choose from ONE and only ONE of the following choices: A, B, or C. - - As a temporary workaround for the fact that most of the DocBook non-English - locale files don't have a localization for the word “orâ€, you can put in a - literal string to be used; example for French: . - That is, use “ou†instead of “orâ€. - -FO - - â— Added content-type property to external-graphic element, based on imagedata - format attribute. - - â— Added support for generating field for - XEP output. This makes the DocBook XSL stylesheet version information - available through the Document Properties menu in Acrobat Reader and other - PDF viewers. - - â— Trademark symbol handling made consistent with handling of same in HTML - stylesheets. Prior to this change, if you processed a document that - contained no value for the class attribute on the trademark element, the - HTML stylesheets would default to rendering a superscript TM symbol after - the trademark contents, but the FO stylesheets would render nothing. - - â— Added support for generating XEP bookmarks for refentry. - - â— Added support for HTML markup table border attribute, applied to each table - cell. - - â— The table.width template can now sum column specs if none use % or *. - - â— Added fox:destination extension inside fox:outline to support linking to - internal destinations. - - â— Added support for customizing abstract with property sets. Controlled with - the abstract.properties and abstract.title.properties parameters. - - â— Add footnotes in table title to table footnote set, and add support for - table footnotes to HTML table markup. - - â— Added support for title in glosslist. - - â— Added support for itemizedlist symbol none. - - â— Implemented the new graphical.admonition.properties and - nongraphical.admonition.properties attribute sets. - - â— Added id to formalpara and some other blocks that were missing it. - - â— Changed the anchor template to output fo:inline instead of fo:wrapper. - - â— Added support for toc.max.depth parameter. - -Help - - â— Eclipse Help: Added support for generating olink database. - -HTML - - â— Added a first cut at support in HTML output for DocBook 5 style annotation - s. Controlled using the annotation.support parameter, and implemented using - JavaScript and CSS styling. For more details, see the documentation for the - annotation.js, annotation.css, annotation.graphic.open, and - annotation.graphic.close parameters. - - â— Generate client-side image map for imageobjectco with areas using calspair - units - - â— Added support for PI. - - â— Added support for passing img.src.path to DocBook Java XSLT image - extensions when appropriate. Controlled using the - graphicsize.use.img.src.path parameter. - - â— Added support for (not valid for DocBook 4) xlink:href on area and (not - valid for DocBook 4) alt in area. - - â— Added new parameter default.table.frame to control table framing if there - is no frame attribute on a table. - - â— Added initial, experimental support for generating content for the HTML - title attribute from content of the alt element. This change adds support - for the following inline elements only (none of them are block elements): - abbrev, accel, acronym, action, application, authorinitials, beginpage, - citation, citerefentry, citetitle, city, classname, code, command, - computeroutput, constant, country, database, email, envar, errorcode, - errorname, errortext, errortype, exceptionname, fax, filename, firstname, - firstterm, foreignphrase, function, glossterm, guibutton, guiicon, guilabel - , guimenu, guimenuitem, guisubmenu, hardware, honorific, interface, - interfacename, keycap, keycode, keysym, lineage, lineannotation, literal, - markup, medialabel, methodname, mousebutton, option, optional, otheraddr, - othername, package, parameter, personname, phone, pob, postcode, - productname, productnumber, prompt, property, quote, refentrytitle, remark, - replaceable, returnvalue, tag, shortcut, state, street, structfield, - structname, subscript, superscript, surname, symbol, systemitem, tag, - termdef, token, trademark, type, uri, userinput, varname, and wordasword - - â— Added support for chunking revhistory into separate file (similar to the - support for doing same with legalnotice). Patch from Thomas Schraitle. - Controlled through new generate.revhistory.link parameter. - - â— l10n.xsl: Made language codes RFC compliant. Added a new boolean config - parameter, l10n.lang.value.rfc.compliant. If it is non-zero (the default), - any underscore in a language code will be converted to a hyphen in HTML - output. If it is zero, the language code will be left as-is. - -man - -This release closes out 44 manpages stylesheet bug reports and feature -requests. It adds more than 35 new configuration parameters for controlling -aspects of man-page output -- including hyphenation and justification, handling -of links, conversion of Unicode characters, and contents of man-page headers -and footers. - - â— New options for globally disabling/enabling hyphenation and justification: - man.justify and man.hyphenate. - - Note that the default for the both of those is zero (off), because - justified text looks good only when it is also hyphenated; to quote the - “Hyphenation†node from the groff info page: - - Since the odds are not great for finding a set of words, for every - output line, which fit nicely on a line without inserting excessive - amounts of space between words, `gtroff' hyphenates words so that it - can justify lines without inserting too much space between words. - - The problem is that groff can end up hyphenating a lot of things that you - don't want hyphenated (variable names and command names, for example). - Keeping both justification and hyphenation disabled ensures that hyphens - won't get inserted where you don't want to them, and you don't end up with - lines containing excessive amounts of space between words. These default - settings run counter to how most existing man pages are formatted. But - there are some notable exceptions, such as the perl man pages. - - â— Added parameters for controlling hyphenation of computer inlines, - filenames, and URLs. By default, even when hyphenation is enabled - (globally), hyphenation is now suppressed for "computer inlines" - (currently, just classname, constant, envar, errorcode, option, replaceable - , userinput, type, and varname, and for filenames, and for URLs from link. - It can be (re)enabled using the man.hyphenate.computer.inlines, - man.hyphenate.filenames, and man.hyphenate.urls parameters. - - â— Implemented a new system for replacing Unicode characters. There are two - parts to the new system: a “string substitution map†for doing “essential†- replacements, and a “character map†that can optionally be disabled and - enabled. - - The new system fixes all open bugs that had to do with literal Unicode - numbered entities such as “ and ” showing up in output, and - greatly expands the ability of the stylesheets to generate “good†roff - equivalents for Unicode symbols and special characters. - - Here are some details... - - The previous manpages mechanism for replacing Unicode symbols and special - characters with roff equivalents (the replace-entities template) was not - scalable and not complete. The mechanism handled a somewhat arbitrary - selection of less than 20 or so Unicode characters. But there are - potentially more than 800 Unicode special characters that have some groff - equivalent they can be mapped to. And there are about 34 symbols in the - Latin-1 (ISO-8859-1) block alone. Users might reasonably expect that if - they include any of those Latin-1 characters in their DocBook source - documents, they will get correctly converted to known roff equivalents in - output. - - In addition to those common symbols, certain users may have a need to use - symbols from other Unicode blocks. Say, somebody who is documenting an - application related to math might need to use a bunch of symbols from the - “Mathematical Operators†Unicode block (there are about 65 characters in - that block that have reasonable roff equivalents). Or somebody else might - really like Dingbats -- such as the checkmark character -- and so might use - a bunch of things from the “Dingbat†block (141 characters in that that - have roff equivalents or that can at least be “degraded†somewhat - gracefully into roff). - - So, the old replace-entities mechanism was replaced with a completely - different mechanism that is based on use of two “mapsâ€: a “substitution - map†and a “character map†(the latter in a format compliant with the XSLT - 2.0 spec and therefore completely “forward compatible†with XSLT 2.0). - - The substitution map is controlled through the man.string.subst.map - parameter, and is used to replace things like the backslash character - (which needs special handling to prevent it from being interpreted as a - roff escape). The substitution map cannot be disabled, because disabling it - will cause the output to be broken. However, you can add to it and change - it if needed. - - The “character map†mechanism, on the other hand, can be completely - disabled. It is enabled by default, and, by default, does replacement of - all Latin-1 symbols, along with most special spaces, dashes, and quotes - (about 75 characters by default). Also, you can optionally enable a “full†- character map that provides support for converting all 800 or so of the - characters that have some reasonable groff equivalent. - - The character-map mechanism is controlled through the following parameters: - - man.charmap.enabled - - turns character-map support on/off - - man.charmap.use.subset - - specifies that a subset of the character map is used instead of the - full map - - man.charmap.subset.profile - - specifies profile of character-map subset - - man.charmap.uri - - specifies an alternate character map to use instead of the “standard†- character map provided in the distribution - - â— Implemented out-of-line handling of display of URLs for links (currently, - only for ulink). This gives you three choices for handling of links: - - 1. Number and list links. Each link is numbered inline, with a number in - square brackets preceding the link contents, and a numbered list of all - links is added to the end of the document. - - 2. Only list links. Links are not numbered, but an (unnumbered) list of - links is added to the end of the document. - - 3. Suppress links. Don't number links and don't add any list of links to - the end of the document. - - You can also choose whether links should be underlined. The default is “the - works†-- list, number, and underline links. You can use the - man.links.list.enabled, man.links.are.numbered, and - man.links.are.underlined parameters to change the defaults. The default - heading for the link list is REFERENCES. You can be change that using the - man.links.list.heading parameter. - - â— Changed default output encoding to UTF-8. This does not mean that man pages - are output in raw UTF-8, because the character map is applied before final - output, causing all UTF-8 characters covered in the map to be converted to - roff equivalents. - - â— Added support for processing refsect3 and formalpara and nested refsection - elements, down to any arbitrary level of nesting. - - â— Output of the NAME and SYNOPSIS and AUTHOR headings and the headings for - admonitions (note, caution, etc.) are no longer hard-coded for English. - Instead, headings are generated for those in the correct locale (just as - the FO and HTML stylesheets do). - - â— Re-worked mechanism for assembling page headers/footers (the contents of - the .TH macro “title lineâ€). - - Here are some details... - - All man pages contain a .TH roff macro whose contents are used for - rendering the “title line†displayed in the header and footer of each page. - Here are a couple of examples of real-world man pages that have useful page - headers/footers: - - gtk-options(7) GTK+ User's Manual gtk-options(7) <-- header - GTK+ 1.2 2003-10-20 gtk-options(7) <-- footer - - svgalib(7) Svgalib User Manual svgalib(7) <-- header - Svgalib 1.4.1 16 December 1999 svgalib(7) <-- footer - - And here are the terms with which the groff_man(7) man page refers to the - various parts of the header/footer: - - title(section) extra3 title(section) <- header - extra2 extra1 title(section) <- footer - - Or, using the names with which the man(7) man page refers to those same - fields: - - title(section) manual title(section) <- page header - source date title(section) <- page footer - - The easiest way to control the contents of those fields is to mark up your - refentry content like the following (note that this is a “minimal†- example). - - - - 2003-10-20 1 - - - gtk-options 2 - 7 3 - GTK+ 4 - 1.2 5 - GTK+ User's Manual 6 - - - gtk-options - Standard Command Line Options for GTK+ Programs - - - Description - This manual page describes the command line options, which - are common to all GTK+ based applications. - - - - 1 Sets the “date†part of the header/footer. - - 2 Sets the “title†part. - - 3 Sets the “section†part. - - 4 Sets the “source name†part. - - 5 Sets the “version†part. - - 6 Sets the “manual†part. - - Below are explanations of the steps the stylesheets take to attempt to - assemble and display “good†headers and footer. [In the descriptions, note - that *info is the refentry “info†child (whatever its name), and parentinfo - is the “info†child of its parent (again, whatever its name).] - - extra1 field (date) - - Content of the “extra1†field is what shows up in the center footer - position of each page. The man(7) man page describes it as “the date of - the last revisionâ€. - - To provide this content, if the refentry.date.profile.enabled is - non-zero, the stylesheets check the value of refentry.date.profile. - - Otherwise, by default, they check for a date or pubdate not only in the - *info contents, but also in the parentinfo contents. - - If a date cannot be found, the stylesheets now automatically generate a - localized “long format†date, ensuring that this field always has - content in output. - - However, if for some reason you want to suppress this field, you can do - so by setting a non-zero value for man.th.extra1.suppress. - - extra2 field (source) - - On Linux systems and on systems with a modern groff, the content of the - “extra2†field are what shows up in the left footer position of each - page. - - The man(7) man page describes this as “the source of the commandâ€, and - provides the following examples: - - â—‹ For binaries, use somwething like: GNU, NET-2, SLS Distribution, - MCC Distribution. - - â—‹ For system calls, use the version of the kernel that you are - currently looking at: Linux 0.99.11. - - â—‹ For library calls, use the source of the function: GNU, BSD 4.3, - Linux DLL 4.4.1. - - In practice, there are many pages that simply have a version number in - the “source†field. So, it looks like what we have is a two-part field, - Name Version, where: - - Name - - product name (e.g., BSD) or org. name (e.g., GNU) - - Version - - version name - - Each part is optional. If the Name is a product name, then the Version - is probably the version of the product. Or there may be no Name, in - which case, if there is a Version, it is probably the version of the - item itself, not the product it is part of. Or, if the Name is an - organization name, then there probably will be no Version. - - To provide this content, if the refentry.source.name.profile.enabled - and refentry.version.profile.enabled parameter are non-zero, the - stylesheets check the value of refentry.source.name.profile - refentry.version.profile. - - Otherwise, by default, they check the following places, in the - following order: - - 1. *info/productnumber - - 2. *info/productnumber - - 3. refmeta/refmiscinfo[@class = 'version'] - - 4. parentinfo/productnumber - - 5. *info/productname - - 6. parentinfo/productname - - 7. refmeta/refmiscinfo - - 8. [nothing found, so leave it empty] - - extra3 field - - On Linux systems and on systems with a modern groff, the content of the - “extra3†field are what shows up in the center header position of each - page. Some man pages have “extra2†content, some don't. If a particular - man page has it, it is most often “context†data about some larger - system the documented item belongs to (for example, the name or - description of a group of related applications). The stylesheets now - check the following places, in the following order, to look for content - to add to the “extra3†field. - - 1. parentinfo/title - - 2. parent's title - - 3. refmeta/refmiscinfo - - 4. [nothing found, so leave it empty] - - â— Reworked *info gathering. For each refentry found, the stylesheets now - cache its *info content, then check for any valid parent of it that might - have metainfo content and cache that, if found; they then then do all - further matches against those node-sets (rather than re-selecting the - original *info nodes each time they are needed). - - â— New option for breaking strings after forward slashes. This enables long - URLs and pathnames to be broken across lines. Controlled through - man.break.after.slash parameter. - - â— Output for servicemark and trademark are now (SM) and (TM). There is a - groff "\(tm" escape, but output from that is not acceptable. - - â— New option for controlling the length of the title part of the .TH title - line. Controlled through the man.th.title.max.length parameter. - - â— New option for specifying output encoding of each man page; controlled with - man.output.encoding (similar to the HTML chunker.output.encoding - parameter). - - â— New option for suppressing filename messages when generating output; - controlled with man.output.quietly (similar to the HTML chunk.quietly - parameter). - - â— The text of cross-references to first-level refentry (refsect1, top-level - refsection, refnamediv, and refsynopsisdiv) are now capitalized. - - â— Cross-references to refnamediv now use the localized NAME title instead of - using the first refname child. This makes the output inconsistent with HTML - and FO output, but for man-page output, it seems to make better sense to - have the NAME. (It may actually make better sense to do it that way in HTML - and FO output as well...) - - â— Added support for processing funcparams. - - â— Removed the space that was being output between funcdef and paramdef; - example: was: float rand (void); now: float rand(void) - - â— Turned off bold formatting for the type element when it occurs within a - funcdef or paramdef - - â— Corrected rendering of simplelist. Any - - - - - - - - Invoke Saxon with the encoding.windows-1252 Java system property set to - com.nwalsh.saxon.Windows1252; for example - - java \ - -Dencoding.windows-1252=com.nwalsh.saxon.Windows1252 \ - com.icl.saxon.StyleSheet \ - mydoc.xml mystylesheet.xsl - - Or, for a more complete "real world" case showing other options you'll - typically want to use: - - java \ - -Dencoding.windows-1252=com.nwalsh.saxon.Windows1252 \ - -Djavax.xml.parsers.DocumentBuilderFactory=org.apache.xerces.jaxp.DocumentBuilderFactoryImpl \ - -Djavax.xml.parsers.SAXParserFactory=org.apache.xerces.jaxp.SAXParserFactoryImpl \ - -Djavax.xml.transform.TransformerFactory=com.icl.saxon.TransformerFactoryImpl \ - com.icl.saxon.StyleSheet \ - -x org.apache.xml.resolver.tools.ResolvingXMLReader \ - -y org.apache.xml.resolver.tools.ResolvingXMLReader \ - -r org.apache.xml.resolver.tools.CatalogResolver \ - mydoc.xml mystylesheet.xsl - - In both cases, the "mystylesheet.xsl" file should be a DocBook - customization layer containing the parameters show in step 2. - - â— Saxon extensions: Removed Saxon 8 extensions from release package - -Release 1.67.0 - - â— A number of important bug fixes. - - â— Added Saxon8 extensions - - â— Enabled dbfo table-width on entrytbl in FO output - - â— Added support for role=strong on emphasis in FO output - - â— Added new FO parameter hyphenate.verbatim that can be used to turn on - "intelligent" wrapping of verbatim environments. - - â— Replaced all output with - - â— Changed admon.graphic.width template to a mode so that different - admonitions can have different graphical widths. - - â— Deprecated the HTML shade.verbatim parameter (use CSS instead) - - â— Wrapped ToC refentrytitle/refname and refpurpose in span with class values. - This makes it possible to style them using a CSS stylesheet. - - â— Use strong/em instead of b/i in HTML output - - â— Added support for converting Emphasis to groff italic and Emphasis role= - 'bold' to bold. Controlled by emphasis.propagates.style param, but not - documented yet using litprog system. Will do that next (planning to add - some other parameter-controllable options for hyphenation and handling of - line spacing). - - â— callout.graphics.number.limit.xml param: Changed the default from 10 to 15. - - â— verbatim.properties: Added hyphenate=false - - â— Saxon and Xalan Text.java extensions: Added support for URIResolver() on - insertfile href's - - â— Added generated RELEASE-NOTES.txt file. - - â— Added INSTALL file (executable file for generating catalog.xml) - - â— Removed obsolete tools directory from package - -Release 1.66.1 - - â— A number of important bug fixes. - - â— Now xml:base attributes that are generated by an XInclude processor are - resolved for image files. - - â— Rewrote olink templates to support several new features. - - â—‹ Extended full olink support to FO output. - - â—‹ Add support for xrefstyle attribute in olinks. - - â—‹ New parameters to support new olink features: insert.olink.page.number, - insert.olink.pdf.frag, olink.debug, olink.lang.fallback.sequence, - olink.properties, prefer.internal.olink. See the reference page for - each parameter for more information. - - â— Added index.on.type parameter for new type attribute introduced in DocBook - 4.3 for indexterms and index. This allows you to create multiple indices - containing different categories of entries. For users of 4.2 and earlier, - you can use the new parameter index.on.role instead. - - â— Added new section.autolabel.max.depth parameter to turn off section - numbering below a certain depth. This permits you to number major section - levels and leave minor section levels unnumbered. - - â— Added footnote.sep.leader.properties attribute set to format the line - separating footnotes in printed output. - - â— Added parameter img.src.path as a prefix to HTML img src attributes. The - prefix is added to whatever path is already generated by the stylesheet for - each image file. - - â— Added new attribute-sets informalequation.properties, - informalexample.properties, informalfigure.properties, and - informaltable.properties, so each such element type can be formatted - individually if needed. - - â— Add component.label.includes.part.label parameter to add any part number to - chapter, appendix and other component labels when the label.from.part - parameter is nonzero. This permits you to distinguish multiple chapters - with the same chapter number in cross references and the TOC. - - â— Added chunk.separate.lots parameter for HTML output. This parameter lets - you generate separate chunk files for each LOT (list of tables, list of - figures, etc.). - - â— Added several table features: - - â—‹ Added table.table.properties attribute set to add properties to the - fo:table element. - - â—‹ Added placeholder templates named table.cell.properties and - table.cell.block.properties to enable adding properties to any - fo:table-cell or the cell's fo:block, respectively. These templates are - a start for implementing table styles. - - â— Added new attribute set component.title.properties for easy modifications - of component's title formatting in FO output. - - â— Added Saxon support for an encoding attribute on the textdata element. - Added new parameter textdata.default.encoding which specifies encoding when - encoding attribute on textdata is missing. - - â— Template label.this.section now controls whole section label, not only - sub-label which corresponds to particular label. Former behaviour was IMHO - bug as it was not usable. - - â— Formatting in titleabbrev for TOC and headers is preserved when there are - no hotlink elements in the title. Formerly the title showed only the text - of the title, no font changes or other markup. - - â— Added intial.page.number template to set the initial-page-number property - for page sequences in print output. Customizing this template lets you - change when page numbering restarts. This is similar to the - format.page.number template that lets you change how the page number - formatting changes in the output. - - â— Added force.page.count template to set the force-page-count property for - page sequences in print output. This is similar to the format.page.number - template. - - â— Sort language for localized index sorting in autoidx-ng.xsl is now taken - from document lang, not from system environment. - - â— Numbering and formatting of normal and ulink footnotes (if turned on) has - been unified. Now ulink footnotes are mixed in with any other footnotes. - - â— Added support for renderas attribute in section and sect1 et al. This - permits you to render a given section title as if it were a different - level. - - â— Added support for label attribute in footnote to manually supply the - footnote mark. - - â— Added support for DocBook 4.3 corpcredit element. - - â— Added support for a dbfo keep-together PI for formal objects (table, - figure, example, equation, programlisting). That permits a formal object to - be kept together if it is not already, or to be broken if it is very long - and the default keep-together is not appropriate. - - â— For graphics files, made file extension matching case insensitive, and - updated the list of graphics extensions. - - â— Allow calloutlist to have block content before the first callout - - â— Added dbfo-need processing instruction to provide soft page breaks. - - â— Added implementation of existing but unused default.image.width parameter - for graphics. - - â— Support DocBook NG tag inline element. - - â— It appears that XEP now supports Unicode characters in bookmarks. There is - no further need to strip accents from characters. - - â— Make segmentedlist HTML markup more semantic and available to CSS styles. - - â— Added user.preroot placeholder template to permit xsl-stylesheet and other - PIs and comments to be output before the HTML root element. - - â— Non-chunked legalnotice now gets an element in HTML output so - it can be referenced with xref or link. - - â— In chunked HTML output, changed link rel="home" to rel="start", and link - rel="previous" to rel="prev", per W3C HTML 4.01 spec. - - â— Added several patches to htmlhelp from W. Borgert - - â— Added Bosnian locale file as common/bs.xml. - -Release 1.65.0 - - â— A number of important bug fixes. - - â— Added a workaround to allow these stylesheets to process DocBook NG - documents. (It’s a hack that pre-processes the document to strip off the - namespace and then uses exsl:node-set to process the result.) - - â— Added alternative indexing mechanism which has better internationalization - support. New indexing method allows grouping of accented letters like e, é, - ë into the same group under letter "e". It can also treat special letters - (e.g. "ch") as one character and place them in the correct position (e.g. - between "h" and "i" in Czech language). - - In order to use this mechanism you must create customization layer which - imports some base stylesheet (like fo/docbook.xsl, html/chunk.xsl) and then - includes appropriate stylesheet with new indexing code (fo/autoidx-ng.xsl - or html/autoidx-ng.xsl). For example: - - - - - - - - - New method is known to work with Saxon and it should also work with - xsltproc 1.1.1 and later. Currently supported languages are English, Czech, - German, French, Spanish and Danish. - -Release 1.64.1 - -General bug fixes and improvements. Sorry about the failure to produce an -updated release notes file for 1.62.0—1.63.2 - - â— In the course of fixing bug #849787, wrapping Unicode callouts with an - appropriate font change in the Xalan extensions, I discovered that the - Xalan APIs have changed a bit. So xalan2.jar will work with older Xalan 2 - implementations, xalan25.jar works with Xalan 2.5. - -Release 1.61.0 - -Lots of bug fixes and improvements. - - â— Initial support for timestamp PI. From now you can use to get current datetime in your document. Added - localization support for datetime PI - - â— Added level 6 to test for section depth in section.level template so that - section.title.level6.properties will be used for sections that are 6 deep - or deeper. This should also cause a h6 to be created in html output. - - â— Don't use SVG graphics if use.svg=0 - - â— Now uses number-and-title-template for sections only if section.autolabel - is not zero. - - â— Added missing 'english-language-name' attribute to the l10n element, and - the missing 'style' attribute to the template element so the current - gentext documents will validate. - - â— Corrected several references to parameter qanda.defaultlabel that were - missing the "$". - - â— Now accepts admon.textlabel parameter to turn off Note, Warning, etc. - label. - - â— FeatReq #684561: support more XEP metadata - - â— Added hyphenation support. Added support for coref. Added beginpage - support. (does nothing; see TDG). - - â— Added support for hyphenation-character, hyphenation-push-character-count, - and hyphenation-remain-character-count - - â— Added root.properties, ebnf.assignment, and ebnf.statement.terminator - - â— Support bgcolor PI in table cells; make sure rowsep and colsep don't have - any effect on the last row or column - - â— Handle othercredit on titlepage a little better - - â— Applied fix from Jeff Beal that fixed the bug that put secondary page - numbers on primary entries. Same with tertiary page numbers on secondary - entries. - - â— Added definition of missing variable collection. - - â— Make footnote formatting 'normal' even when it occurs in a context that has - special formatting - - â— Added warning when glossary.collection is not blank, but it cannot open the - specified file. - - â— Pick up the frame attribute on table and informaltable. - - â— indexdiv/title in non-autogenerated indexes are now picked up. - - â— Removed (unused) component.title.properties - - â— Move IDs from page-sequences down to titlepage blocks - - â— Use proportional-column-width(1) on more tables. - - Use proportional-column-width() for header/footer tables; suppress - relative-align when when using FOP - - â— Check for glossterm.auto.link when linking firstterms; don't output gl. - prefix on glossterm links - - â— Generate Part ToCs - - â— Support glossary, bibliography, and index in component ToCs. - - â— Refactored chunking code so that customization of chunk algorithm and chunk - elements is more practical - - â— Support textobject/phrase on inlinemediaobject. - - â— Support 'start' PI on ordered lists - - â— Fixed test of $toc PI to turn on qandaset TOC. - - â— Added process.chunk.footnotes to sect2 through 5 to fix bug of missing - footnotes when chunk level greater than 1. - - â— Added paramater toc.max.depth which controls maximal depth of ToC as - requested by PHP-DOC group. - - â— Exempted titleabbrev from preamble processing in lists, and fixed - variablelist preamble code to use the same syntax as the other lists. - - â— Added support for elements between variablelist and first varlistentry - since DocBook 4.2 supports that now. - -Release 1.60.1 - -Lots of bug fixes. - - â— The format of the titlepage.templates.xml files and the stylesheet that - transforms them have been significantly changed. All of the attributes used - to control the templates are now namespace qualified. So what used to be: - - - - is now: - - - - Attributes from other namespaces (including those that are unqualified) are - now copied directly through. In practice, this means that the names that - used to be “fo:†qualified: - - - - are now unqualified: - - <title t:named-template="component.title" - param:node="ancestor-or-self::article[1]" - text-align="center" - keep-with-next="always" - font-size="&hsize5;" - font-weight="bold" - font-family="{$title.font.family}"/> - - The t:titlepage and t:titlepage-content elements both generate wrappers - now. And unqualified attributes on those elements are passed through. This - means that you can now make the title font apply to ane entire titlepage - and make the entire “recto†titlepage centered by specifying the font and - alignment on the those elements: - - <t:titlepage t:element="article" t:wrapper="fo:block" - font-family="{$title.font.family}"> - - <t:titlepage-content t:side="recto" - text-align="center"> - - â— Support use of titleabbrev in running headers and footers. - - â— Added (experimental) xref.with.number.and.title parameter to enable number/ - title cross references even when the default would be just the number. - - â— Generate part ToCs if they're requested. - - â— Use proportional-column-width() in header/footer tables. - - â— Handle alignment correctly when screenshot wraps a graphic in a figure. - - â— Format chapter and appendix cross references consistently. - - â— Attempt to support tables with multiple tgroups in FO. - - â— Output fo:table-columns in simplelist tables. - - â— Use titlepage.templates.xml for indexdiv and glossdiv formatting. - - â— Improve support for new bibliography elements. - - â— Added footnote.number.format, table.footnote.number.format, - footnote.number.symbols, and table.footnote.number.symbols for better - control of footnote markers. - - â— Added glossentry.show.acronyms. - - â— Suppress the draft-mode page masters when draft-mode is “noâ€. - - â— Make blank pages verso not recto. D'Oh! - - â— Improved formatting of ulink footnotes. - - â— Fixed bugs in graphic width/height calculations. - - â— Added class attributes to inline elements. - - â— Don't add “.html†to the filenames identified with the “dbhtml†PI. - - â— Don't force a ToC when sections contain refentrys. - - â— Make section title sizes a function of the body.master.size. - -Release 1.59.2 - -The 1.59.2 fixes an FO bug in the page masters that causes FOP to fail. - - â— Removed the region-name from the region-body of blank pages. There's no - reason to give the body of blank pages a unique name and doing so causes a - mismatch that FOP detects. - - â— Output IDs for the first paragraphs in listitems. - - â— Fixed some small bugs in the handling of page numbers in double-sided mode. - - â— Attempt to prevent duplicated IDs from being produced when endterm on xref - points to something with nested structure. - - â— Fix aligment problems in equations. - - â— Output the type attribute on unordered lists (UL) in HTML only if the - css.decoration parameter is true. - - â— Calculate the font size in formal.title.properties so that it's 1.2 times - the base font size, not a fixed "12pt". - -Release 1.59.1 - -The 1.59.1 fixes a few bugs. - - â— Added Bulgarian localization. - - â— Indexing improvements; localize book indexes to books but allow setindex to - index an entire set. - - â— The default value for rowsep and colsep is now "1" as per CALS. - - â— Added support for titleabbrev (use them for cross references). - - â— Improvements to mediaobject for selecting print vs. online images. - - â— Added seperate property sets for figures, examples, equations, tabless, and - procedures. - - â— Make lineannotations italic. - - â— Support xrefstyle attribute. - - â— Make endterm on xref higher priority than xreflabel target. - - â— Glossary formatting improvements. - -Release 1.58.0 - -The 1.58.0 adds some initial support for extensions in xsltproc, adds a few -features, and fixes bugs. - - â— This release contains the first attempt at extension support for xsltproc. - The only extension available to date is the one that adjusts table column - widths. Run extensions/xsltproc/python/xslt.py. - - â— Fixed bugs in calculation of adjusted column widths to correct for rounding - errors. - - â— Support nested refsection elements correctly. - - â— Reworked gentext.template to take context into consideration. The name of - elements in localization files is now an xpath-like context list, not just - a simple name. - - â— Made some improvements to bibliography formatting. - - â— Improved graphical formatting of admonitions. - - â— Added support for entrytbl. - - â— Support spanning index terms. - - â— Support bibliosource. - -Release 1.57.0 - - â— The 1.57.0 release wasn't documented here. Oops. - -Release 1.56.0 - -The 1.56.0 release fixes bugs. - - â— Reworked chunking. This will break all existing customizations layers that - change the chunking algorithm. If you're customizing chunking, look at the - new “content†parameter that's passed to process-chunk-element and friends. - - â— Support continued and inherited numeration in orderedlist formatting for - FOs. - - â— Added Thai localization. - - â— Tweaked stylesheet documentation stylesheets to link to TDG and the - parameter references. - - â— Allow title on tables of contents ("Table of Contents") to be optional. - Added new keyword to generate.toc. Support tables of contents on sections. - - â— Made separate parameters for table borders and table cell borders: - table.frame.border.color, table.frame.border.style, - table.frame.border.thickness, table.cell.border.color, - table.cell.border.style, and table.cell.border.thickness. - - â— Suppress formatting of “endofrange†indexterms. This is only half-right. - They should generate a range, but I haven't figured out how to do that yet. - - â— Support revdescription. (Bug #582192) - - â— Added default.float.class and fixed figure floats. (Bug #497603) - - â— Fixed formatting of sbr in FOs. - - â— Added context to the “missing template†error message. - - â— Process arg correctly in a group. (Bug #605150) - - â— Removed 'keep-with-next' from formal.title.properties attribute set now - that the stylesheets support the option of putting such titles below the - object. Now the $placement value determines if 'keep-with-next' or - 'keep-with-previous' is used in the title block. - - â— Wrap “url()†around external-destinations when appropriate. - - â— Fixed typo in compact list spacing. (Bug #615464) - - â— Removed spurious hash in anchor name. (Bug #617717) - - â— Address is now displayed verbatim on title pages. (Bug #618600) - - â— The bridgehead.in.toc parameter is now properly supported. - - â— Improved effectiveness of HTML cleanup by increasing the number of places - where it is used. Improve use of HTML cleanup in XHTML stylesheets. - - â— Support table of contents for appendix in article. (Bug #596599) - - â— Don't duplicate footnotes in bibliographys and glossarys. (Bug #583282) - - â— Added default.image.width. (Bug #516859) - - â— Totally reworked funcsynopsis code; it now supports a 'tabular' - presentation style for 'wide' prototypes; see - funcsynopsis.tabular.threshold. (HTML only right now, I think, FO support, - uh, real soon now.) - - â— Reworked support for difference marking; toned down the colors a bit and - added a “system.head.content†template so that the diff CSS wasn't - overriding “user.head.contentâ€. (Bug #610660) - - â— Added call to the “*.head.content†elements when writing out long - description chunks. - - â— Make sure legalnotice link is correct even when chunking to a different - base.dir. - - â— Use CSS to set viewport characteristics if css.decoration is non-zero, use - div instead of p for making graphic a block element; make figure titles the - default alt text for images in a figure. - - â— Added space-after to list.block.spacing. - - â— Reworked section.level template to give “correct†answer instead of being - off by one. - - â— When processing tables, use the tabstyle attribute as the division class. - - â— Fixed bug in html2xhtml.xsl that was causing the XHTML chunker to output - HTML instead of XHTML. - -Older releases - -To view the release notes for older releases, see http://cvs.sourceforge.net/ -viewcvs.py/docbook/xsl/RELEASE-NOTES.xml. Be aware that there were no release -notes for releases prior to the 1.50.0 release. - -About dot-zero releases - -DocBook Project “dot zero†releases should be considered experimental and are -always followed by stable “dot one plus†releases, usually within two or three -weeks. Please help to ensure the stability of “dot one plus†releases by -carefully testing each “dot zero†release and reporting back about any problems -you find. - -It is not recommended that you use a “dot zero†release in a production system. -Instead, you should wait for the “dot one†or greater versions. - diff --git a/docbook-xsl-1.75.2/RELEASE-NOTES.xml b/docbook-xsl-1.75.2/RELEASE-NOTES.xml deleted file mode 100644 index 55dfb12..0000000 --- a/docbook-xsl-1.75.2/RELEASE-NOTES.xml +++ /dev/null @@ -1,9379 +0,0 @@ -<article xmlns="http://docbook.org/ns/docbook" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:xi="http://www.w3.org/2001/XInclude" - xml:lang="en" xml:id="releasenotes" - version="5.0"> - -<info> - <title>Release Notes for the DocBook XSL Stylesheets - - $Revision: 8504 $ $Date: 2009-07-21 07:22:11 -0700 (Tue, 21 Jul 2009) $ - - -This release-notes - document is available in the following formats: - HTML, - PDF, - plain text; it provides a per-release list -of enhancements and changes to the stylesheets’ public APIs -(user-configurable parameters) and excludes descriptions of most -bug fixes. For a complete list of all changes (including all bug -fixes) that have been made since the previous release, see the -separate NEWS (plain text) or NEWS.html files. Also available: -An online hyperlinked change history (warning: big file) of all -changes made over the entire history of the codebase. -As with all DocBook Project dot-zero releases, this is an - experimental release. It will be followed shortly by a stable - release. -As with all DocBook Project “dot - one plus†releases, this release aspires to be stable (in - contrast to dot-zero releases, which - are experimental). -This is a pre-release “snapshot†of the -DocBook XSL Stylesheets. The change information in the first -section of this file -(for “â€) is -auto-generated from change descriptions stored in the project -source-code repository. -That means the first section contains -descriptions both of bug fixes and of feature changes. The -remaining sections are manually edited changelog subsets that -exclude bug-fix descriptions – that is, trimmed down to just those -those descriptions that document enhancements and changes to the -public APIs (user-configurable parameters). - - - - - - - -Release Notes: 1.75.2 -The following is a list of changes that have been made - since the 1.75.1 release. - - -Gentext -The following changes have been made to the - gentext code - since the 1.75.1 release. - - -dleidert: locale/ja.xmlImproved Japanese translation for Note(s). Closes bug #2823965. - - -dleidert: locale/pl.xmlPolish alphabet contains O with acute accent, not with grave accent. Closes bug #2823964. - - -Robert Stayton: locale/ja.xmlFix translation of "index", per bug report 2796064. - - -Robert Stayton: locale/is.xmlNew Icelandic locale file. - - - - - -Common -The following changes have been made to the - common code - since the 1.75.1 release. - - -Norman Walsh: stripns.xslSupport more downconvert cases - - -Robert Stayton: titles.xslMake sure title inside info is used if no other title. - - - - - -FO -The following changes have been made to the - fo code - since the 1.75.1 release. - - -Robert Stayton: pi.xslTurn off dbfo-need for fop1.extensions also, per bug #2816141. - - - - - -HTML -The following changes have been made to the - html code - since the 1.75.1 release. - - -Mauritz Jeanson: titlepage.xslOutput "Copyright" heading in XHTML too. - - -Mauritz Jeanson: titlepage.xslAdded stylesheet.result.type test for copyright. Closes bug #2813289. - - -Norman Walsh: htmltbl.xslRemove ambiguity wrt @span, @rowspan, and @colspan - - - - - -Manpages -The following changes have been made to the - manpages code - since the 1.75.1 release. - - -Mauritz Jeanson: endnotes.xslAdded normalize-space() for ulink content. Closes bug #2793877. - - -Mauritz Jeanson: docbook.xslAdded stylesheet.result.type test for copyright. Closes bug #2813289. - - - - - -Epub -The following changes have been made to the - epub code - since the 1.75.1 release. - - -Keith Fahlgren: bin/dbtoepub; bin/lib/docbook.rbCorrected bugs caused by path and file assumptions were not met - - -Keith Fahlgren: bin/lib/docbook.rb; docbook.xslCleaning up hardcoded values into parameters and fixing Ruby library to pass them properly; all thanks to patch from Liza Daly - - - - - -Profiling -The following changes have been made to the - profiling code - since the 1.75.1 release. - - -Robert Stayton: profile.xslFix bug 2815493 missing exsl.node.set.available parameter. - - - - - -XSL-Saxon -The following changes have been made to the - xsl-saxon code - since the 1.75.1 release. - - -Mauritz Jeanson: src/com/nwalsh/saxon/ColumnUpdateEmitter.java; src/com/nwalsh/saxon/Colum⋯Added fixes so that colgroups in the XHTML namespace are processed properly. - - - - - -XSL-Xalan -The following changes have been made to the - xsl-xalan code - since the 1.75.1 release. - - -Mauritz Jeanson: nbproject/project.xmlAdded missing NetBeans configuration. - - - - - - - - -Release Notes: 1.75.1 -This release includes bug fixes. - -The following is a list of changes that have been made since the 1.75.0 release. - - - -FO -The following changes have been made to the fo code since the 1.75.0 release. - - -Keith Fahlgren: block.xslSwitching to em dash for character before attribution in epigraph; resolves Bug #2793878 - - -Robert Stayton: lists.xslFixed bug 2789947, id attribute missing on simplelist fo output. - - - - - -HTML -The following changes have been made to the - html code - since the 1.75.0 release. - - -Keith Fahlgren: block.xslSwitching to em dash for character before attribution in epigraph; resolves Bug #2793878 - - -Robert Stayton: lists.xslFixed bug 2789678: apply-templates line accidentally deleted. - - - - - -Epub -The following changes have been made to the - epub code - since the 1.75.0 release. - - -Keith Fahlgren: bin/spec/epub_regressions_spec.rb; docbook.xslAdded regression and fix to correct "bug" with namespace-prefixed container elements in META-INF/container.xml ; resolves Issue #2790017 - - -Keith Fahlgren: bin/spec/epub_regressions_spec.rb; bin/spec/files/onegraphic.xinclude.xml;⋯Another attempt at flexible named entity and XInclude processing - - -Keith Fahlgren: bin/lib/docbook.rbTweaking solution to Bug #2750442 following regression reported by Michael Wiedmann. - - - - - -Params -The following changes have been made to the - params code - since the 1.75.0 release. - - -Mauritz Jeanson: highlight.source.xmlUpdated documentation to reflect changes made in r8419. - - - - - - - - -Release Notes: 1.75.0 -This release includes important bug fixes and adds the following -significant feature changes: - - -Gentext -Modifications to translations have been made. - - - -Common - -Added support for some format properties on tables using -HTML table markup. -Added two new qanda.defaultlabel values so that numbered sections -and numbered questions can be distinguished. Satisfies -Feature Request #1539045. -Added code to handle acknowledgements in book and part. The element is processed -similarly to dedication. All acknowledgements will appear as front matter, after -any dedications. - - - - -FO - -The inclusion of highlighting code has been simplified. -Add support for pgwide on informal objects. -Added a new parameter, bookmarks.collapse, that controls the initial state of the bookmark tree. Closes FR #1792326. -Add support for more dbfo processing instructions. -Add new variablelist.term.properties to format terms, per request # 1968513. -Add support for @width on screen and programlisting, fixes bug #2012736. -Add support for writing-mode="rl-tb" (right-to-left) in FO outputs. -Add writing.mode param for FO output. - - - -HTML - -Convert all calls to class.attribute to calls to common.html.attributes to support dir, lang, and title attributes in html output for all elements. Fulfills feature request #1993833. -Inclusion of highlighting code was simplified. Only one import is now necessary. -Add new param index.links.to.section. -Add support for the new index.links.to.section param which permits precise links to indexterms in HTML output rather than to the section title. - - - -ePub - -Slightly more nuanced handling of imageobject alternatives and better support in dbtoepub for XIncludes and ENTITYs to resolve Issue #2750442 reported by Raphael Hertzog. -Added a colon after an abstract/title when mapping into the dc:description for OPF metadata in ePub output to help the flat text have more pseudo-semantics (sugestions from Michael Wiedmann) -Added DocBook subjectset -> OPF dc:subject mapping and tests -Added DocBook date -> OPF dc:date mapping and tests -Added DocBook abstract -> OPF dc:description mapping and tests -Added --output option to dbtoepub based on user request - - - - -HTMLHelp - -Add support for generating olink target database for htmlhelp files. - - - - -Params - -Add default setting for @rules attribute on HTML markup tables. -Added a new parameter, bookmarks.collapse, that controls the initial state of the bookmark tree. When the parameter has a non-zero value (the default), only the top-level bookmarks are displayed initially. Otherwise, the whole tree of bookmarks is displayed. This is implemented for FOP 0.9X. Closes FR #1792326. -Add new variablelist.term.properties to format terms, per request # 1968513. -Add two new qanda.defaultlabel values so that numbered sections and numbered questions can be distinguished. Satisfies Feature Request #1539045. -Add param to control whether an index entry links to a section title or to the precise location of the indexterm. -New attribute list for glossentry in glossary. -New parameter to support @width on programlisting and screen. -Add attribute-sets for formatting glossary terms and defs. - - - -Highlighting - -Inclusion of highlighting code was simplified. Only one import is now necessary. - - - - - - - -The following is a list of changes that have been made - since the 1.74.3 release. - - -Gentext -The following changes have been made to the - gentext code - since the 1.74.3 release. - - -Robert Stayton: locale/sv.xml; locale/ja.xml; locale/pl.xmlCheck in translations of Legalnotice submitted on mailing list. - - -Robert Stayton: locale/es.xmlFix spelling errors in Acknowledgements entries. - - -Robert Stayton: locale/es.xmlCheck in translations for 4 elements submitted through docbook-apps -message of 14 April 2009. - - -David Cramer: locale/zh.xml; locale/ca.xml; locale/ru.xml; locale/ga.xml; locale/gl.xml; l⋯Internationalized punctuation in glosssee and glossseealso - - -Robert Stayton: MakefileCheck in fixes for DSSSL gentext targets from submitted patch #1689633. - - -Robert Stayton: locale/uk.xmlCheck in major update submitted with bug report #2008524. - - -Robert Stayton: locale/zh_tw.xmlCheck in fix to Note string submitted in bug #2441051. - - -Robert Stayton: locale/ru.xmlCheckin typo fix submitted in bug #2453406. - - - - - -Common -The following changes have been made to the - common code - since the 1.74.3 release. - - -Robert Stayton: gentext.xslFix extra generated space when xrefstyle includes 'nopage'. - - -Robert Stayton: table.xslAdd support for some format properties on tables using -HTML table markup. These include: - - frame attribute on table (or uses $default.table.frame parameter). - - rules attribute on table (or uses $default.table.rules parameter). - - align attribute on td and th - - valign attribute on td and th - - colspan on td and th - - rowspan on td and th - - bgcolor on td and th - - -Robert Stayton: olink.xslAdd placeholder template to massage olink hot text to make -customization easier, per Feature Request 1828608. - - -Robert Stayton: targets.xslAdd support for collecting olink targets from a glossary -generated from a glossary.collection. - - -Robert Stayton: titles.xslHandle firstterm like glossterm in mode="title.markup". - - -Robert Stayton: titles.xslAdd match on info/title in title.markup templates where missing. - - -Mauritz Jeanson: titles.xslChanged "ancestor::title" to "(ancestor::title and (@id or @xml:id))". -This enables proper formatting of inline elements in titles in TOCs, -as long as these inlines don't have id or xml:id attributes. - - -Robert Stayton: labels.xslAdd two new qanda.defaultlabel values so that numbered sections -and numbered questions can be distinguished. Satisfies -Feature Request #1539045. - - -Robert Stayton: stripns.xsl; pi.xslConvert function-available(exsl:node-set) to use the new param -so Xalan bug is isolated. - - -Mauritz Jeanson: titles.xslAdded fixes for bugs #2112656 and #1759205: -1. Reverted mistaken commits r7485 and r7523. -2. Updated the template with match="link" and mode="no.anchor.mode" so that -@endterm is used if it exists and if the link has no content. - - -Mauritz Jeanson: titles.xslAdded code to handle acknowledgements in book and part. The element is processed -similarly to dedication. All acknowledgements will appear as front matter, after -any dedications. - - -Robert Stayton: olink.xslFix bug #2018717 use.local.olink.style uses wrong gentext context. - - -Robert Stayton: olink.xslFix bug #1787167 incorrect hot text for some olinks. - - -Robert Stayton: common.xslFix bug #1669654 Broken output if copyright <year> contains a range. - - -Robert Stayton: labels.xslFix bug in labelling figure inside appendix inside article inside book. - - - - - -FO -The following changes have been made to the - fo code - since the 1.74.3 release. - - -Jirka Kosek: highlight.xslInclusion of highlighting code was simplified. Only one import is now necessary. - - -Robert Stayton: fop1.xslAdd the new fop extensions namespace declaration, in case FOP -extension functions are used. - - -Robert Stayton: formal.xslAdd support for pgwide on informal objects. - - -Robert Stayton: docbook.xslFixed spurious closing quote on line 134. - - -Robert Stayton: docbook.xsl; autoidx-kosek.xsl; autoidx.xslConvert function-available for node-set() to use -new $exsl.node.set.available param in test. - - -David Cramer: xref.xslSuppress extra space after xref when xrefstyle='select: label nopage' (#2740472) - - -Mauritz Jeanson: pi.xslFixed doc bug for row-height. - - -David Cramer: glossary.xslInternationalized punctuation in glosssee and glossseealso - - -Robert Stayton: param.xweb; param.ent; htmltbl.xsl; table.xslAdd support for some format properties on tables using -HTML table markup. These include: - - frame attribute on table (or uses $default.table.frame parameter). - - rules attribute on table (or uses $default.table.rules parameter). - - align attribute on td and th - - valign attribute on td and th - - colspan on td and th - - rowspan on td and th - - bgcolor on td and th - - -Robert Stayton: table.xslAdd support bgcolor in td and th -elements in HTML table markup. - - -Robert Stayton: htmltbl.xslAdd support for colspan and rowspan and bgcolor in td and th -elements in HTML table markup. - - -Robert Stayton: param.xwebFix working of page-master left and right margins. - - -Mauritz Jeanson: param.xweb; param.ent; fop1.xslAdded a new parameter, bookmarks.collapse, that controls the initial state of the bookmark tree. When the parameter has a non-zero value (the default), only the top-level bookmarks are displayed initially. Otherwise, the whole tree of bookmarks is displayed. This is implemented for FOP 0.9X. Closes FR #1792326. - - -Robert Stayton: table.xsl; pi.xslAdd support for dbfo row-height processing instruction, like that in dbhtml. - - -Robert Stayton: lists.xslAdd support for dbfo keep-together processing instruction for -entire list instances. - - -Robert Stayton: lists.xsl; block.xslAdd support fo dbfo keep-together processing instruction to -more blocks like list items and paras. - - -Robert Stayton: lists.xsl; param.xweb; param.entAdd new variablelist.term.properties to format terms, per request # 1968513. - - -Robert Stayton: inline.xslIn simple.xlink, rearrange order of processing. - - -Robert Stayton: xref.xslHandle firstterm like glossterm in mode="xref-to". - - -Robert Stayton: glossary.xsl; xref.xsl; pi.xsl; footnote.xslImplement simple.xlink for glosssee and glossseealso so they can use -other types of linking besides otherterm. - - -Robert Stayton: qandaset.xslAdd two new qanda.defaultlabel values so that numbered sections and numbered questions can be distinguished. Satisfies Feature Request #1539045. - - -Robert Stayton: titlepage.xslFor the book title templates, I changed info/title to book/info/title -so other element's titles will not be affected. - - -Robert Stayton: xref.xsl; verbatim.xslUse param exsl.node.set.available to test for function. - - -Robert Stayton: param.xweb; param.ent; footnote.xslStart using new param exsl.node.set.available to work around Xalan bug. - - -Robert Stayton: titlepage.templates.xmlAdd comment on use of t:predicate for editor to prevent -extra processing of multiple editors. Fixes bug 2687842. - - -Robert Stayton: xref.xsl; autoidx.xslAn indexterm primary, secondary, or tertiary element with an id or xml:id -now outputs that ID, so that index entries can be cross referenced to. - - -Mauritz Jeanson: synop.xslAdded modeless template for ooclass|oointerface|ooexception. -Closes bug #1623468. - - -Robert Stayton: xref.xslAdd template with match on indexterm in mode="xref-to" to fix bug 2102592. - - -Robert Stayton: xref.xslNow xref to qandaentry will use the label element in a question for -the link text if it has one. - - -Robert Stayton: inline.xslAdd id if specified from @id to output for quote and phrase so -they can be xref'ed to. - - -Robert Stayton: xref.xslAdd support for xref to phrase, simpara, anchor, and quote. -This assumes the author specifies something using xrefstyle since -the elements don't have ordinary link text. - - -Robert Stayton: toc.xslFix bug in new toc templates. - - -Mauritz Jeanson: titlepage.xsl; component.xsl; division.xsl; xref.xsl; titlepage.templates⋯Added code to handle acknowledgements in book and part. The element is processed -similarly to dedication. All acknowledgements will appear as front matter, after -any dedications. - - -Robert Stayton: toc.xslRewrite toc templates to support an empty toc or populated toc -in all permitted contexts. Same for lot elements. -This fixes bug #1595969 for FO outputs. - - -Robert Stayton: index.xslFix indents for seealsoie so they are consistent. - - -Mauritz Jeanson: param.xwebRemoved duplicate (monospace.font.family). - - -Robert Stayton: param.xweb; param.entAdd glossentry.list.item.properties. - - -Robert Stayton: param.xweb; param.entAdd monospace.verbatim.font.width param to support @width on programlisting. - - -Robert Stayton: verbatim.xslPut programlisting in fo:block-container with writing-mode="lr-tb" -when text direction is right to left because all program languages -are left-to-right. - - -Robert Stayton: verbatim.xslAdd support for @width on screen and programlisting, fixes bug #2012736. - - -Robert Stayton: xref.xslFix bug #1973585 xref to para with xrefstyle not handled correctly. - - -Mauritz Jeanson: block.xslAdded support for acknowledgements in article. -Support in book/part remains to be added. - - -Robert Stayton: xref.xslFix bug #1787167 incorrect hot text for some olinks. - - -Robert Stayton: fo.xslAdd writing-mode="tb-rl" as well since some XSL-FO processors support it. - - -Robert Stayton: autotoc.xsl; lists.xsl; glossary.xsl; fo.xsl; table.xsl; pagesetup.xslAdd support for writing-mode="rl-tb" (right-to-left) in FO outputs. -Changed instances of margin-left to margin-{$direction.align.start} -and margin-right to margin-{$direction.align.end}. Those direction.align -params are computed from the writing mode value in each locale's -gentext key named 'writing-mode', introduced in 1.74.3 to add -right-to-left support to HTML outputs. - - -Robert Stayton: param.xweb; param.entAdd attribute-sets for formatting glossary terms and defs. - - -Robert Stayton: param.xweb; param.entAdd writing.mode param for FO output. - - -Robert Stayton: autotoc.xslFix bug 1546008: in qandaentry in a TOC, use its blockinfo/titleabbrev or blockinfo/title -instead of question, if available. For DocBook 5, use the info versions. - - -Keith Fahlgren: verbatim.xslAdd better pointer to README for XSLTHL - - -Keith Fahlgren: verbatim.xslMore tweaking the way that XSLTHL does or does not get called - - -Keith Fahlgren: verbatim.xslAlternate attempt at sanely including/excluding XSLTHT code - - - - - -HTML -The following changes have been made to the - html code - since the 1.74.3 release. - - -Robert Stayton: lists.xslRemoved redundant lang and title attributes on list element inside -div element for lists. - - -Robert Stayton: inline.xsl; titlepage.xsl; division.xsl; toc.xsl; sections.xsl; table.xsl;⋯Convert all calls to class.attribute to calls to common.html.attributes -to support dir, lang, and title attributes in html output for all elements. -Fulfills feature request #1993833. - - -Robert Stayton: chunk-common.xslFix bug #2750253 wrong links in list of figures in chunk.html -when target html is in a subdirectory and dbhtml filename used. - - -Jirka Kosek: highlight.xslInclusion of highlighting code was simplified. Only one import is now necessary. - - -Robert Stayton: chunk-common.xsl; chunktoc.xsl; docbook.xsl; chunk-changebars.xsl; autoidx⋯Convert function-available for node-set() to use -new $exsl.node.set.available param in test. - - -Mauritz Jeanson: pi.xslFixed doc bug for row-height. - - -David Cramer: glossary.xslInternationalized punctuation in glosssee and glossseealso - - -Robert Stayton: lists.xsl; html.xsl; block.xslMore elements get common.html.attributes. -Added locale.html.attributes template which does the lang, -dir, and title attributes, but not the class attribute -(used on para, for example). - - -Robert Stayton: lists.xslReplace more literal class atts with mode="class.attribute" to support -easier customization. - - -Robert Stayton: glossary.xslSupport olinking in glosssee and glossseealso. - - -Robert Stayton: inline.xslIn simple.xlink, rearrange order of processing. - - -Robert Stayton: xref.xslHandle firstterm like glossterm in mode="xref-to". - - -Robert Stayton: lists.xsl; html.xsl; block.xslAdded template named common.html.attributes to output -class, title, lang, and dir for most elements. -Started adding it to some list and block elements. - - -Robert Stayton: qandaset.xslAdd two new qanda.defaultlabel values so that numbered sections -and numbered questions can be distinguished. Satisfies -Feature Request #1539045. - - -Robert Stayton: param.xweb; chunk-code.xsl; param.ent; xref.xsl; chunkfast.xsl; verbatim.x⋯Use new param exsl.node.set.available to test, handles Xalan bug. - - -Robert Stayton: autoidx.xslUse named anchors for primary, secondary, and tertiary ids so -duplicate entries with different ids can still have an id output. - - -Robert Stayton: param.xweb; param.entAdd new param index.links.to.section. - - -Robert Stayton: xref.xsl; autoidx.xslPass through an id on primary, secondary, or tertiary to -the index entry, so that one could link to an index entry. -You can't link to the id on an indexterm because that is -used to place the main anchor in the text flow. - - -Robert Stayton: autoidx.xslAdd support for the new index.links.to.section param which permits -precise links to indexterms in HTML output rather than to -the section title. - - -Mauritz Jeanson: synop.xslAdded modeless template for ooclass|oointerface|ooexception. -Closes bug #1623468. - - -Robert Stayton: qandaset.xslMake sure a qandaset has an anchor, even when it has no title, -because it may be referenced in a TOC or xref. -Before, the anchor was output by the title, but there was no -anchor if there was no title. - - -Robert Stayton: xref.xslAdd a template for indexterm with mode="xref-to" to fix bug 2102592. - - -Robert Stayton: xref.xslNow xref to qandaentry will use the label element in a question for -the link text if it has one. - - -Robert Stayton: qandaset.xsl; html.xslCreate separate templates for computing label of question and answer -in a qandaentry, so such can be used for the alt text of an xref -to a qandaentry. - - -Robert Stayton: inline.xsl; xref.xslNow support xref to phrase, simpara, anchor, and quote, -most useful when an xrefstyle is used. - - -Robert Stayton: toc.xslRewrite toc templates to support an empty toc or populated toc -in all permitted contexts. Same for lot elements. -This fixes bug #1595969 for HTML outputs. - - -Mauritz Jeanson: titlepage.xsl; component.xsl; division.xsl; xref.xsl; titlepage.templates⋯Added code to handle acknowledgements in book and part. The element is processed -similarly to dedication. All acknowledgements will appear as front matter, after -any dedications. - - -Robert Stayton: index.xslRewrote primaryie, secondaryie and tertiaryie templates to handle -nesting of elements and seeie and seealsoie, as reported in -bug # 1168912. - - -Robert Stayton: autotoc.xslFix simplesect in toc problem. - - -Robert Stayton: verbatim.xslAdd support for @width per bug report #2012736. - - -Robert Stayton: formal.xsl; htmltbl.xslFix bug #1787140 HTML tables not handling attributes correctly. - - -Robert Stayton: param.xwebMove writing-mode param. - - -Keith Fahlgren: refentry.xslRemove a nesting of <p> inside <p> for refclass (made XHTML* invalid, made HTML silly) - - -Robert Stayton: table.xslFix bug #1945872 to allow passthrough of colwidth values to -HTML table when no tablecolumns.extension is available and -when no instance of * appears in the table's colspecs. - - -Mauritz Jeanson: block.xslAdded support for acknowledgements in article. -Support in book/part remains to be added. - - -Robert Stayton: chunk-common.xslFix bug #1787167 incorrect hot text for some olinks. - - -Robert Stayton: qandaset.xslFix bug 1546008: in qandaentry in a TOC, use its blockinfo/titleabbrev or blockinfo/title -instead of question, if available. For DocBook 5, use the info versions. - - -Robert Stayton: chunktoc.xslAdd support for generating olink database when using chunktoc.xsl. - - -Keith Fahlgren: verbatim.xslAdd better pointer to README for XSLTHL - - -Keith Fahlgren: verbatim.xslAnother stab at fixing the stupid XSLTHT includes across processors (Saxon regression reported by Sorin Ristache) - - -Keith Fahlgren: verbatim.xslMore tweaking the way that XSLTHL does or does not get called - - -Keith Fahlgren: verbatim.xslAlternate attempt at sanely including/excluding XSLTHT code - - - - - -Manpages -The following changes have been made to the - manpages code - since the 1.74.3 release. - - -Robert Stayton: table.xslConvert function-available test for node-set() function to -test of $exsl.node.set.available param. - - -Mauritz Jeanson: lists.xslAdded a template for bibliolist. Closes bug #1815916. - - - - - -ePub -The following changes have been made to the - epub code - since the 1.74.3 release. - - -Keith Fahlgren: bin/spec/epub_regressions_spec.rb; bin/spec/files/onegraphic.xinclude.xml;⋯Slightly more nuanced handling of imageobject alternatives and better support in dbtoepub for XIncludes and ENTITYs to resolve Issue #2750442 reported by Raphael Hertzog. - - -Keith Fahlgren: docbook.xslAdd a colon after an abstract/title when mapping into the dc:description for OPF metadata in ePub output to help the flat text have more pseudo-semantics (sugestions from Michael Wiedmann) - - -Keith Fahlgren: bin/spec/epub_regressions_spec.rb; docbook.xsl; bin/spec/files/de.xmlCorrectly set dc:language in OPF metadata when i18nizing. Closes Bug #2755150 - - -Keith Fahlgren: bin/spec/epub_regressions_spec.rb; docbook.xslCorrected namespace declarations for literal XHTML elements to make them serialize "normally" - - -Keith Fahlgren: docbook.xslBe a little bit more nuanced about dates - - -Keith Fahlgren: docbook.xsl; bin/spec/epub_realbook_spec.rb; bin/spec/files/orm.book.001.x⋯Add DocBook subjectset -> OPF dc:subject mapping and tests - - -Keith Fahlgren: docbook.xsl; bin/spec/epub_realbook_spec.rb; bin/spec/files/orm.book.001.x⋯Add DocBook date -> OPF dc:date mapping and tests - - -Keith Fahlgren: docbook.xsl; bin/spec/epub_realbook_spec.rb; bin/spec/files/orm.book.001.x⋯Add DocBook abstract -> OPF dc:description mapping and tests - - -Robert Stayton: docbook.xslCheck in patch submitted by user to add opf:file-as attribute -to dc:creator element. - - -Keith Fahlgren: bin/dbtoepubAdding --output option to dbtoepub based on user request - - -Keith Fahlgren: docbook.xsl; bin/spec/epub_spec.rbCleaning and regularizing the generation of namespaced nodes for OPF, NCX, XHTML and other outputted filetypes (hat tip to bobstayton for pointing out the silly, incorrect code) - - -Keith Fahlgren: bin/spec/epub_regressions_spec.rb; bin/spec/files/refclass.xmlRemove a nesting of <p> inside <p> for refclass (made XHTML* invalid, made HTML silly) - - -Keith Fahlgren: bin/spec/epub_regressions_spec.rb; bin/spec/files/blockquotepre.xmlAdded regression test and fix for XHTML validation problem with <a>s added inside <blockquote>; This potentially causes another problem (where something is referenced by has no anchor, but someone reporting that should cause the whole <a id='thing'/> thing to be reconsidered with modern browsers in mind. - - - - - -HTMLHelp -The following changes have been made to the - htmlhelp code - since the 1.74.3 release. - - -Robert Stayton: htmlhelp-common.xslAdd support for generating olink target database for htmlhelp files. - - - - - - -Params -The following changes have been made to the - params code - since the 1.74.3 release. - - -Robert Stayton: default.table.rules.xmlAdd default setting for @rules attribute on HTML markup tables. - - -Mauritz Jeanson: bookmarks.collapse.xmlAdded a new parameter, bookmarks.collapse, that controls the initial state -of the bookmark tree. When the parameter has a non-zero value (the default), -only the top-level bookmarks are displayed initially. Otherwise, the whole -tree of bookmarks is displayed. - -This is implemented for FOP 0.9X. Closes FR #1792326. - - -Robert Stayton: variablelist.term.properties.xmlAdd new variablelist.term.properties to format terms, per -request # 1968513. - - -Robert Stayton: qanda.defaultlabel.xmlAdd two new qanda.defaultlabel values so that numbered sections -and numbered questions can be distinguished. Satisfies -Feature Request #1539045. - - -Robert Stayton: index.links.to.section.xmlChange default to 1 to match past behavior. - - -Robert Stayton: exsl.node.set.available.xmlIsolate this text for Xalan bug regarding exsl:node-set available. -If it is ever fixed in Xalan, just fix it here. - - -Robert Stayton: index.links.to.section.xmlAdd param to control whether an index entry links to -a section title or to the precise location of the -indexterm. - - -Robert Stayton: glossentry.list.item.properties.xmlNew attribute list for glossentry in glossary. - - -Robert Stayton: monospace.verbatim.font.width.xmlNew parameter to support @width on programlisting and screen. - - -Mauritz Jeanson: highlight.source.xmlUpdated and reorganized the description. - - -Robert Stayton: page.margin.outer.xml; page.margin.inner.xmlAdd caveat about XEP bug when writing-mode is right-to-left. - - -Robert Stayton: article.appendix.title.properties.xml; writing.mode.xml; body.start.indent⋯Change 'left' to 'start' and 'right' to 'end' to support right-to-left -writing mode. - - -Robert Stayton: glossdef.block.properties.xml; glossdef.list.properties.xml; glossterm.blo⋯Add attribute-sets for formatting glossary terms and defs. - - -Robert Stayton: glossterm.separation.xmlClarify the description. - - -Robert Stayton: make.year.ranges.xmlNow handles year element containing a comma or dash without error. - - - - - -Highlighting -The following changes have been made to the - highlighting code - since the 1.74.3 release. - - -Jirka Kosek: READMEInclusion of highlighting code was simplified. Only one import is now necessary. - - -Keith Fahlgren: READMEAdding XSLTHL readme - - -Keith Fahlgren: common.xslAlternate attempt at sanely including/excluding XSLTHT code - - - - - -XSL-Saxon -The following changes have been made to the - xsl-saxon code - since the 1.74.3 release. - - -Mauritz Jeanson: src/com/nwalsh/saxon/Text.javaAdded a fix that prevents output of extra blank line. -Hopefully this closes bug #894805. - - - - - -XSL-Xalan -The following changes have been made to the - xsl-xalan code - since the 1.74.3 release. - - -Mauritz Jeanson: src/com/nwalsh/xalan/Text.javaAdded a fix that prevents output of extra blank line. -Hopefully this closes bug #894805. - - - - - - - - -Release Notes: 1.74.3 -This release fixes some bugs in the 1.74.2 release. -See highlighting/README for XSLTHL usage instructions. - - -Release Notes: 1.74.2 -This release fixes some bugs in the 1.74.1 release. - - - -Release Notes: 1.74.1 -This release includes important bug fixes and adds the following -significant feature changes: - - -Gentext -Kirghiz locale added and Chinese translations have been simplified. -Somme support for gentext and right-to-left languages has been added. - - -FO -Various bugs have been resolved. -Support for a new processing instruction: dbfo funcsynopsis-style has been added. -Added new param email.mailto.enabled for FO output. Patch from Paolo Borelli. - -Support for documented metadata in fop1 mode has been added. - - - - -Highlighting -Support for the latest version of XSLTHL 2.0 and some new language syntaxes have been added to a variety of outputs. - - - - -Manpages -Added man.output.better.ps.enabled param (zero default). It non-zero, no such -markup is embedded in generated man pages, and no enhancements are -included in the PostScript output generated from those man pages -by the man -Tps command. - - - - - -HTML -Support for writing.mode to set text direction and alignment based on document locale has been added. - -Added a new top-level stylesheet module, chunk-changebars.xsl, to be -used for generating chunked output with highlighting based on change -(@revisionflag) markup. The module imports/includes the standard chunking -and changebars templates and contains additional logic for chunked output. -See FRs #1015180 and #1819915. - - - - -ePub - -Covers now look better in Adobe Digital Editions thanks to a patch from Paul Norton of Adobe - -Cover handling now more generic (including limited DocBook 5.0 cover support thanks to patch contributed by Liza Daly. -Cover markup now carries more reliably into files destined for .mobi and the Kindle. -dc:identifiers are now generated from more types of numbering schemes. -Both SEO and semantic structure of chunked ePub output by ensuring that we always send out one and only one h1 in each XHTML chunk. - -Primitive support for embedding a single font added. - - -Support for embedding a CSS customizations added. - - - - - -Roundtrip - - -Support for imagedata-metadata and table as images added. - - -Support for imagedata-metadata and legalnotice as images added. - - - - -Params -man.output.better.ps.enabled added for Manpages output - -writing.mode.xml added to set text direction. - - -Added new param email.mailto.enabled for FO output. -Patch from Paolo Borelli. Closes #2086321. - - -highlight.source upgraded to support the latest version of XSLTHL 2.0. - - - - - - - - -The following is a list of changes that have been made since the 1.74.0 release. - - - -Gentext -The following changes have been made to the gentext code since the 1.74.0 release. - - -Michael(tm) Smith: locale/ky.xml; Makefilenew Kirghiz locale from Ilyas Bakirov - - -Mauritz Jeanson: locale/en.xmlAdded "Acknowledgements". - - -Dongsheng Song: locale/zh_cn.xmlSimplified Chinese translation. - - -Robert Stayton: locale/lv.xml; locale/ca.xml; locale/pt.xml; locale/tr.xml; locale/af.xml;⋯Add writing-mode gentext string to support right-to-left languages. - - - - - -FO -The following changes have been made to the fo code since the 1.74.0 release. - - -David Cramer: footnote.xslAdded a check to confirm that a footnoteref's linkend points to a footnote. Stylesheets stop processing if not and provide a useful error message. - - -Mauritz Jeanson: spaces.xslConvert spaces to fo:leader also in elements in the DB 5 namespace. - - -Mauritz Jeanson: pi.xsl; synop.xslAdded support for a new processing instruction: dbfo funcsynopsis-style. -Closes bug #1838213. - - -Michael(tm) Smith: inline.xsl; param.xweb; param.entAdded new param email.mailto.enabled for FO output. -Patch from Paolo Borelli. Closes #2086321. - - -Mauritz Jeanson: docbook.xslAdded support for document metadata for fop1 (patch #2067318). - - -Jirka Kosek: param.ent; param.xweb; highlight.xslUpgraded to support the latest version of XSLTHL 2.0 - -- nested markup in highlited code is now processed - -- it is no longer needed to specify path XSLTHL configuration file using Java property - -- support for new languages, including Perl, Python and Ruby was added - - - - - -HTML -The following changes have been made to the html code since the 1.74.0 release. - - -Robert Stayton: param.xweb; docbook.xsl; param.ent; html.xslAdd support for writing.mode to set text direction and alignment based on document locale. - - -Mauritz Jeanson: chunk-changebars.xslAdded a new top-level stylesheet module, chunk-changebars.xsl, to be -used for generating chunked output with highlighting based on change -(@revisionflag) markup. The module imports/includes the standard chunking -and changebars templates and contains additional logic for chunked output. -See FRs #1015180 and #1819915. - - - - - -Manpages -The following changes have been made to the manpages code since the 1.74.0 release. - - -Michael(tm) Smith: docbook.xslPut the following at the top of generated roff for each page: - \" t -purpose is to explicitly tell AT&T troff that the page needs to be -pre-processed through tbl(1); groff can figure it out -automatically, but apparently AT&T troff needs to be explicitly told - - - - - -ePub -The following changes have been made to the epub code since the 1.74.0 release. - - -Keith Fahlgren: docbook.xslPatch from Paul Norton of Adobe to get covers to look better in Adobe Digital Editions - - -Keith Fahlgren: bin/spec/epub_regressions_spec.rb; bin/spec/files/v5cover.xml; bin/spec/sp⋯Patch contributed by Liza Daly to make ePub cover handling more generic. Additionally -DocBook 5.0's <cover> now has some limited support: - -- should reference a cover in the OPF guide for a DocBook 5.0 test document - - -Keith Fahlgren: bin/spec/files/isbn.xml; bin/spec/files/issn.xml; bin/spec/files/biblioid.⋯Liza Daly reported that the dc:identifer-generation code was garbage (she was right). - -Added new tests: -- should include at least one dc:identifier -- should include an ISBN as URN for dc:identifier if an ISBN was in the metadata -- should include an ISSN as URN for dc:identifier if an ISSN was in the metadata -- should include an biblioid as a dc:identifier if an biblioid was in the metadata -- should include a URN for a biblioid with @class attribute as a dc:identifier if an biblioid was in the metadata - - -Keith Fahlgren: docbook.xsl; bin/spec/epub_spec.rbImprove both SEO and semantic structure of chunked ePub output by ensuring that -we always send out one and only one h1 in each XHTML chunk. - -DocBook::Epub -- should include one and only one <h1> in each HTML file in rendered ePub files -for <book>s -- should include one and only one <h1> in each HTML file in rendered ePub files -for <book>s even if they do not have section markup - - -Keith Fahlgren: docbook.xsl; bin/spec/epub_realbook_spec.rb; bin/spec/files/orm.book.001.x⋯Adding better support for covers in epub files destined for .mobi and the Kindle - - -Keith Fahlgren: bin/dbtoepub; bin/lib/docbook.rb; bin/spec/files/DejaVuSerif.otf; docbook.⋯Adding primitive support for embedding a single font - - -Keith Fahlgren: bin/dbtoepub; bin/lib/docbook.rb; bin/spec/files/test_cust.xsl; bin/spec/e⋯Adding support for user-specified customization layers in dbtoepub - - -Keith Fahlgren: bin/dbtoepub; bin/spec/epub_regressions_spec.rb; bin/lib/docbook.rb; bin/s⋯Adding CSS support to .epub target & dbtoepub: - -c, --css [FILE] Use FILE for CSS on generated XHTML. - - -DocBook::Epub -... -- should include a CSS link in HTML files when a CSS file has been provided -- should include CSS file in .epub when a CSS file has been provided -- should include a CSS link in OPF file when a CSS file has been provided - - - - - -Roundtrip -The following changes have been made to the - roundtrip code - since the 1.74.0 release. - - -Steve Ball: blocks2dbk.xsl; template.xml; template.dotadded support for imagedata-metadata -added support for table as images - - -Steve Ball: blocks2dbk.xsl; normalise2sections.xsl; sections2blocks.xslImproved support for personname inlines. - - -Steve Ball: blocks2dbk.xsl; blocks2dbk.dtd; template.xmlAdded support for legalnotice. - - -Steve Ball: blocks2dbk.xsl; wordml2normalise.xsladded support for orgname in author - - -Steve Ball: specifications.xml; supported.xml; blocks2dbk.xsl; wordml2normalise.xsl; dbk2w⋯Updated specification. -to-DocBook: add cols attribute to tgroup -from-DocBook: fix for blockquote title - - - - - -Params -The following changes have been made to the params since the 1.74.0 release. - - -The change was to add man.output.better.ps.enabled parameter, with -its default value set to zero. - -If the value of the man.output.better.ps.enabled parameter is -non-zero, certain markup is embedded in each generated man page -such that PostScript output from the man -Tps command for that -page will include a number of enhancements designed to improve the -quality of that output. - -If man.output.better.ps.enabled is zero (the default), no such -markup is embedded in generated man pages, and no enhancements are -included in the PostScript output generated from those man pages -by the man -Tps command. - -WARNING: The enhancements provided by this parameter rely on -features that are specific to groff (GNU troff) and that are not -part of "classic" AT&T troff or any of its derivatives. Therefore, -any man pages you generate with this parameter enabled will be -readable only on systems on which the groff (GNU troff) program is -installed, such as GNU/Linux systems. The pages will not not be -readable on systems on with the classic troff (AT&T troff) command -is installed. - -NOTE: The value of this parameter only affects PostScript output -generated from the man command. It has no effect on output -generated using the FO backend. - -TIP: You can generate PostScript output for any man page by -running the following command: - -man FOO -Tps > FOO.ps - -You can then generate PDF output by running the following command: - -ps2pdf FOO.ps - - -Robert Stayton: writing.mode.xmlwriting mode param used to set text direction. - - -Michael(tm) Smith: email.mailto.enabled.xmlAdded new param email.mailto.enabled for FO output. -Patch from Paolo Borelli. Closes #2086321. - - -Jirka Kosek: highlight.source.xml; highlight.xslthl.config.xmlUpgraded to support the latest version of XSLTHL 2.0 - -- nested markup in highlited code is now processed - -- it is no longer needed to specify path XSLTHL configuration file using Java property - -- support for new languages, including Perl, Python and Ruby was added - - - - - -Highlighting -The following changes have been made to the - highlighting code - since the 1.74.0 release. - - -Jirka Kosek: cpp-hl.xml; c-hl.xml; tcl-hl.xml; php-hl.xml; common.xsl; perl-hl.xml; delphi⋯Upgraded to support the latest version of XSLTHL 2.0 - -- nested markup in highlited code is now processed - -- it is no longer needed to specify path XSLTHL configuration file using Java property - -- support for new languages, including Perl, Python and Ruby was added - - - - - - - - -Release Notes: 1.74.0 -This release includes important bug fixes and adds the following -significant feature changes: - - -.epub target -Paul Norton (Adobe) and Keith Fahlgren(O'Reilly Media) have donated code that generates .epub documents from -DocBook input. An alpha-reference implementation in Ruby has also been provided. -.epub is an open standard of the The International Digital Publishing Forum (IDPF), -a the trade and standards association for the digital publishing industry. -Read more about this target in epub/README - - - - -XHTML 1.1 target -To support .epub output, a strict XHTML 1.1 target has been added. The stylesheets for this output are -generated and are quite similar to the XHTML target. - - -Gentext updates -A number of locales have been updated. - - -Roundtrip improvements -Table, figure, template syncronization, and character style improvements have been made for WordML & Pages. Support added for OpenOffice.org. - - - - - First implementation of a libxslt extension - - A stylesheet extension for libxslt, written in Python, has been added. - The extension is a function for adjusting column widths in CALS tables. See - extensions/README.LIBXSLT for more information. - - - - - -The following is a list of changes that have been made - since the 1.73.2 release. - - -Gentext -The following changes have been made to the - gentext code - since the 1.73.2 release. - - -Michael(tm) Smith: locale/id.xmlChecked in changes to Indonesion locale submitted by Euis Luhuanam a long time ago. - - -Michael(tm) Smith: locale/lt.xmlAdded changes to Lithuanian locate submitted a long time back by Nikolajus Krauklis. - - -Michael(tm) Smith: locale/hu.xmlfixed error in lowercase.alpha definition in Hungarian locale - - -Michael(tm) Smith: locale/nb.xmlCorrected language code for nb locale, and restored missing "startquote" key. - - -Michael(tm) Smith: locale/ja.xmlCommitted changes to ja locale file, from Akagi Kobayashi. Adds bracket quotes around many xref instances that did not have them -before. - - -Michael(tm) Smith: Makefile"no" locale is now "nb" - - -Michael(tm) Smith: locale/nb.xmlUpdate Norwegian BokmÃ¥l translation. Thanks to Hans F. Nordhaug. - - -Michael(tm) Smith: locale/no.xml; locale/nb.xmlper message from Hans F. Nordhaug, correct identifier for -Norwegian BokmÃ¥l is "nb" (not "no") and has been for quite some -time now... - - -Michael(tm) Smith: locale/ja.xmlConverted ja.xml source file to use real unicode characters so -that the actual glyphs so up when you edit it in a text editor -(instead of the character references). - - -Michael(tm) Smith: locale/ja.xmlChecked in changes to ja.xml locale file. Thanks to Akagi Kobayashi. - - -Michael(tm) Smith: locale/it.xmlChanges from Federico Zenith - - -Dongsheng Song: locale/zh_cn.xmlAdded missing translations. - - - - - -Common -The following changes have been made to the - common code - since the 1.73.2 release. - - -Michael(tm) Smith: l10n.xslAdded new template "l10.language.name" for retrieving the -English-language name of the lang setting of the current document. -Closes #1916837. Thanks to Simon Kennedy. - - -Michael(tm) Smith: refentry.xslfixed syntax error - - -Michael(tm) Smith: refentry.xslfixed a couple of typos - - -Michael(tm) Smith: refentry.xslrefined handling of cases where refentry "source" or "manual" -metadata is missing or when we use fallback content instead. We -now report a Warning if we use fallback content. - - -Michael(tm) Smith: refentry.xsldon't use refmiscinfo@class=date value as fallback for refentry -"source" or "manual" metadata fields - - -Michael(tm) Smith: refentry.xslMade reporting of missing refentry metadata more quiet: - - - we no longer report anything if usable-but-not-preferred - metadata is found; we just quietly use whatever we manage to - find - - - we now only report missing "source" metadata if the refentry - is missing BOTH "source name" and "version" metadata; if it - has one but not the other, we use whichever one it has and - don't report anything as missing - -The above changes were made because testing with some "real world" -source reveals that some authors are intentionally choosing to use -"non preferred" markup for some metadata, and also choosing to -omit "source name" or "version" metadata in there DocBook XML. So -it does no good to give them pedantic reminders about what they -already know... - -Also, changed code to cause "fixme" text to be inserted in output -in particular cases: - - - if we can't manage to find any "source" metadata at all, we - now put fixme text into the output - - - if we can't manage to find any "manual" metadata a all, we - now put fixme text into the output - -The "source" and "manual" metadata is necessary information, so -buy putting the fixme stuff in the output, we alert users to the -need problem of it being missing. - - -Michael(tm) Smith: refentry.xslWhen generating manpages output, we no longer report anything if -the refentry source is missing date or pubdate content. In -practice, many users intentionally omit the date from the source -because they explicitly want it to be generated. - - -Michael(tm) Smith: l10n.xmlfurther change needed for switch from no locale to nb. - - -Michael(tm) Smith: common.xslAdded support for orgname in authorgroup. Thanks to Camille -Bégnis. - - -Michael(tm) Smith: Makefile"no" locale is now "nb" - - -Mauritz Jeanson: stripns.xslRemoved the template matching "ng:link|db:link" (in order to make @xlink:show -work with <link> elements). As far as I can tell, this template is no longer needed. - - -Mauritz Jeanson: entities.entMoved declaration of comment.block.parents entity to common/entities.ent. - - -Mauritz Jeanson: titles.xslAdded an update the fix made in revision 7528 (handling of xref/link in no.anchor.mode mode). -Having xref in title is not a problem as long as the target is not an ancestor element. -Closes bug #1838136. - -Note that an xref that is in a title and whose target is an ancestor element is still not -rendered in the TOC. This could be considered a bug, but on the other hand I cannot really -see the point in having such an xref in a document. - - -Mauritz Jeanson: titles.xslAdded a "not(ancestor::title)" test to work around "too many nested -apply-templates" problems when processing xrefs or links in no.anchor.mode mode. -Hopefully, this closes bug #1811721. - - -Mauritz Jeanson: titles.xslRemoved old template matching "link" in no.anchor.mode mode. - - -Mauritz Jeanson: titles.xslProcess <link> in no.anchor.mode mode with the same template as <xref>. -Closes bug #1759205 (Empty link in no.anchor.mode mode). - - -Mauritz Jeanson: titles.xslIn no.anchor.mode mode, do not output anchors for elements that are descendants -of <title>. Previously, having inline elements with @id/@xml:id in <title>s -resulted in anchors both in the TOC and in the main flow. Closes bug #1797492. - - - - - -FO -The following changes have been made to the - fo code - since the 1.73.2 release. - - Mauritz Jeanson: pi.xslUpdated documentation for keep-together. - Mauritz Jeanson: task.xslEnabled use of the keep-together PI on task elements. - -Robert Stayton: index.xslFOP1 requires fo:wrapper for inline index entries, not fo:inline. - - -Robert Stayton: index.xslFixed non-working inline.or.block template for indexterm wrappers. -Add fop1 to list of processors using inline.or.block. - - -Mauritz Jeanson: table.xslFixed bug #1891965 (colsep in entytbl not working). - - -Mauritz Jeanson: titlepage.xslAdded support for title in revhistory. Closes bug #1842847. - - -Mauritz Jeanson: pi.xslSmall doc cleanup (dbfo float-type). - - -Mauritz Jeanson: titlepage.xslInsert commas between multiple copyright holders. - - -Mauritz Jeanson: autotoc.xsl; division.xslAdded modifications to support nested set elements. See bug #1853172. - - -David Cramer: glossary.xslAdded normalize-space to xsl:sorts to avoid missorting of glossterms due to stray leading spaces. - - -David Cramer: glossary.xslFixed bug #1854199: glossary.xsl should use the sortas attribute on glossentry - - -Mauritz Jeanson: inline.xslAdded a template for citebiblioid. The hyperlink target is the parent of the referenced biblioid, -and the "hot text" is the biblioid itself enclosed in brackets. - - -Mauritz Jeanson: inline.xslMoved declaration of comment.block.parents entity to common/entities.ent. - - -Mauritz Jeanson: docbook.xslUpdated message about unmatched element. - - -Mauritz Jeanson: param.xwebAdded link to profiling chapter of TCG. - - -Mauritz Jeanson: refentry.xslFixed typo (refsynopsysdiv -> refsynopsisdiv). - - -David Cramer: fop.xsl; fop1.xsl; ptc.xsl; xep.xslAdded test to check generate.index param when generating pdf bookmarks - - -Mauritz Jeanson: graphics.xslAdded support for MathML in imagedata. - - -Michael(tm) Smith: math.xslRemoved unnecessary extra test condition in test express that -checks for passivetex. - - -Michael(tm) Smith: math.xslDon't use fo:instream-foreign-object if we are processing with -passivetex. Closes #1806899. Thanks to Justus Piater. - - -Mauritz Jeanson: component.xslAdded code to output a TOC for an appendix in an article when -generate.toc='article/appendix toc'. Closes bug #1669658. - - -Dongsheng Song: biblio-iso690.xslChange encoding from "windows-1250" to "UTF-8". - - -Mauritz Jeanson: pi.xslUpdated documentation for dbfo_label-width. - - -Mauritz Jeanson: lists.xslAdded support for the dbfo_label-width PI in calloutlists. - - -Robert Stayton: biblio.xslSupport finding glossary database entries inside bibliodivs. - - -Robert Stayton: formal.xslComplete support for <?dbfo pgwide="1"?> for informal -elements too. - - -Mauritz Jeanson: table.xslIn the table.block template, added a check for the dbfo_keep-together PI, so that -a table may break (depending on the PI value) at a page break. This was needed -since the outer fo:block that surrounds fo:table has keep-together.within-column="always" -by default, which prevents the table from breaking. Closes bug #1740964 (Titled -table does not respect dbfo PI). - - -Mauritz Jeanson: pi.xslAdded a few missing @role="tcg". - - -Mauritz Jeanson: inline.xslUse normalize-space() in glossterm comparisons (as in html/inline.xsl). - - -Mauritz Jeanson: autoidx.xslRemoved the [&scope;] predicate from the target variable in the template with name="reference". -This filter was the cause of missing index backlinks when @zone and @type were used on indexterms, -with index.on.type=1. Closes bug #1680836. - - -Michael(tm) Smith: inline.xsl; xref.xsl; footnote.xslAdded capability in FO output for displaying URLs for all -hyperlinks (elements marked up with xlink:href attributes) in the -same way as URLs for ulinks are already handled (which is to say, -either inline or as numbered footnotes). - -Background on this change: -DocBook 5 allows "ubiquitous" linking, which means you can make -any element a hyperlink just by adding an xlink:href attribute to -it, with the value set to an external URL. That's in contrast to -DocBook 4, which only allows you to use specific elements (e.g., -the link and ulink elements) to mark up hyperlinks. - -The existing FO stylesheets have a mechanism for handling display -of URLs for hyperlinks that are marked up with ulink, but they did -not handle display of URLs for elements that were marked up with -xlink:href attributes. This change adds handling for those other -elements, enabling the URLs they link to be displayed either -inline or as numbered footnotes (depending on what values the user -has the ulink.show and ulink.footnotes params set to). - -Note that this change only adds URL display support for elements -that call the simple.xlink template -- which currently is most -(but not all) inline elements. - -This change also moves the URL display handling out of the ulink -template and into a new "hyperlink.url.display" named template; -the ulink template and the simple.xlink named template now both -call the hyperlink.url.display template. - -Warning: In the stylesheet code that determines what footnote -number to assign to each footnote or external hyperlink, there is -an XPath expression for determining whether a particular -xlink:href instance is an external hyperlink; that expression is -necessarily a bit complicated and further testing may reveal that -it doesn't handle all cases as expected -- so some refinements to -it may need to be done later. - -Closes #1785519. Thanks to Ken Morse for reporting and -troubleshooting the problem. - - - - - -HTML -The following changes have been made to the - html code - since the 1.73.2 release. - - Keith Fahlgren: inline.xsl; synop.xslWork to make HTML and XHTML targets more valid - Keith Fahlgren: table.xslAdd better handling for tables that have footnotes in the titles - Keith Fahlgren: biblio.xslAdd anchors to bibliodivs - -Keith Fahlgren: formal.xsl; Makefile; htmltbl.xslInitial checkin/merge of epub target from work provided by Paul Norton of Adobe -and Keith Fahlgren of O'Reilly. -This change includes new code for generating the XHTML 1.1 target sanely. - - -Mauritz Jeanson: biblio.xslAdded code for creating URLs from biblioids with @class="doi" (representing Digital -Object Identifiers). See FR #1934434 and http://doi.org. - -To do: 1) Add support for FO output. 2) Figure out how @class="doi" should be handled -for bibliorelation, bibliosource and citebiblioid. - - -Norman Walsh: formal.xslDon't use xsl:copy because it forces the resulting element to be in the same namespace as the source element; in the XHTML stylesheets, that's wrong. But the HTML-to-XHTML converter does the right thing with literal result elements, so use one of them. - - -Michael(tm) Smith: MakefileAdded checks and hacks to various makefiles to enable building -under Cygwin. This stuff is ugly and maybe not worth the mess and -trouble, but does seem to work as expected and not break anything -else. - - -Michael(tm) Smith: docbook.xsladded "exslt" namespace binding to html/docbook.xsl file (in -addition to existing "exsl" binding. reason is because lack of it -seems to cause processing problems when using the profiled -version of the stylsheet - - -Norman Walsh: chunk-common.xslRename link - - -Mauritz Jeanson: table.xslAdded a fix to make rowsep apply to the last row of thead in entrytbl. - - -Michael(tm) Smith: synop.xslSimplified and streamlined handling of output for ANSI-style -funcprototype output, to correct a problem that was causing type -data to be lost in the output parameter definitions. For example, -for an instance like this: - <paramdef>void *<parameter>dataptr</parameter>[]</paramdef> -... the brackets (indicating an array type) were being dropped. - - -Michael(tm) Smith: synop.xslChanged HTML handling of K&R-style paramdef output. The parameter -definitions are no longer output in a table (though the prototype -still is). The reason for the change is that the -kr-tabular-funcsynopsis-mode template was causing type data to be -lost in the output parameter definitions. For example, for an -instance like this: - <paramdef>void *<parameter>dataptr</parameter>[]</paramdef> -... the brackets (indicating an array type) were being dropped. -The easiest way to deal with the problem is to not try to chop up -the parameter definitions and display them in table format, but to -instead just output them as-is. May not look quite as pretty, but -at least we can be sure no information is being lost... - - -Michael(tm) Smith: pi.xslupdated wording of doc for funcsynopsis-style PI - - -Michael(tm) Smith: param.xweb; param.ent; synop.xslRemoved the funcsynopsis.tabular.threshold param. It's no longer -being used in the code and hasn't been since mid 2006. - - -Mauritz Jeanson: graphics.xslAdded support for the img.src.path parameter for SVG graphics. Closes bug #1888169. - - -Mauritz Jeanson: chunk-common.xslAdded missing space. - - -Norman Walsh: component.xslFix bug where component titles inside info elements were not handled properly - - -Michael(tm) Smith: pi.xslMoved dbhtml_stop-chunking embedded doc into alphabetical order, -fixed text of TCG section it see-also'ed. - - -David Cramer: pi.xslAdded support for <?dbhtml stop-chunking?> processing instruction - - -David Cramer: chunk-common.xsl; pi.xslAdded support for <?dbhtml stop-chunking?> processing instruction - - -David Cramer: glossary.xslFixed bug #1854199: glossary.xsl should use the sortas attribute on glossentry. Also added normalize-space to avoid missorting due to stray leading spaces. - - -Mauritz Jeanson: inline.xslAdded a template for citebiblioid. The hyperlink target is the parent of the referenced biblioid, -and the "hot text" is the biblioid itself enclosed in brackets. - - -Mauritz Jeanson: inline.xslAdded support for @xlink:show in the simple.xlink template. The "new" and "replace" -values are supported (corresponding to values of "_blank" and "_top" for the -ulink.target parameter). I have assumed that @xlink:show should override ulink.target -for external URI links. This closes bugs #1762023 and #1727498. - - -Mauritz Jeanson: inline.xslMoved declaration of comment.block.parents entity to common/entities.ent. - - -Mauritz Jeanson: param.xwebAdded link to profiling chapter of TCG. - - -Dongsheng Song: biblio-iso690.xslChange encoding from "windows-1250" to "UTF-8". - - -Robert Stayton: biblio.xslAdd support in biblio collection to entries in bibliodivs. - - -Mauritz Jeanson: pi.xslAdded missing @role="tcg". - - -Mauritz Jeanson: chunk-common.xsl; titlepage.xslRefactored legalnotice/revhistory chunking, so that the use.id.as.filename -parameter as well as the dbhtml_filename PI are taken into account. A new named -template in titlepage.xsl is used to compute the filename. - - -Mauritz Jeanson: chunk-common.xsl; titlepage.xslAn update to the fix for bug #1790495 (r7433): -The "ln-" prefix is output only when the legalnotice doesn't have an -@id/@xml:id, in which case the stylesheets generate an ID value, -resulting in a filename like "ln-7e0fwgj.html". This is useful because -without the prefix, you wouldn't know that the file contained a legalnotice. -The same logic is also applied to revhistory, using an "rh-" prefix. - - -Mauritz Jeanson: autoidx.xslRemoved the [&scope;] predicate from the target variable in the template with name="reference". -This filter was the cause of missing index backlinks when @zone and @type were used on indexterms, -with index.on.type=1. Closes bug #1680836. - - -Mauritz Jeanson: titlepage.xslAdded 'ln-' prefix to the name of the legalnotice chunk, in order to match the -<link href"..."> that is output by make.legalnotice.head.links (chunk-common.xsl). -Modified the href attribute on the legalnotice link. -Closes bug #1790495. - - - - - -Manpages -The following changes have been made to the - manpages code - since the 1.73.2 release. - - -Michael(tm) Smith: other.xslslightly adjusted spacing around admonition markers - - -Michael(tm) Smith: refentry.xsl; utility.xslmake sure refsect3 titles are preceded by a line of space, and -make the indenting of their child content less severe - - -Michael(tm) Smith: block.xslonly indent verbatim environments in TTY output, not in non-TTY/PS - - -Michael(tm) Smith: block.xslmade another adjustment to correct vertical alignment of admonition marker - - -Michael(tm) Smith: block.xsl; other.xslAdjusted/corrected alignment of adominition marker in PS/non-TTY output. - - -Michael(tm) Smith: endnotes.xslFor PS/non-TTY output, display footnote/endnote numbers in -superscript. - - -Michael(tm) Smith: table.xsl; synop.xsl; utility.xslChanged handling of hanging indents for cmdsynopsis, funcsynopsis, -and synopfragment such that they now look correct in non-TTY/PS -output. We now use the groff \w escape to hang by the actual width --- in the current font -- of the command, funcdef, or -synopfragment references number (as opposed to hanging by the -number of characters). This rendering in TTY output remains the -same, since the width in monospaced TTY output is the same as the -number of characters. - -Also, created new synopsis-block-start and synopsis-block-end -templates to use for cmdsynopsis and funcsynopsis instead of the -corresponding verbatim-* templates. - -Along with those changes, also corrected a problem that caused the -content of synopfragment to be dropped, and made a -vertical-spacing change to adjust spacing around table titles and -among sibling synopfragment instances. - - -Michael(tm) Smith: other.xsluse common l10.language.name template to retrieve English-language name - - -Michael(tm) Smith: synop.xsl; inline.xsladded comment in code explaining why we don't put filename output -in italic (despite the fact that man guidelines say we should) - - -Michael(tm) Smith: inline.xslput filename output in monospace instead of italic - - -Michael(tm) Smith: synop.xslput cmdsynopsis in monospace - - -Michael(tm) Smith: inline.xslremoved template match for literal. template matches for monospace -inlines are all imported from the HTML stylesheet - - -Michael(tm) Smith: block.xsldon't indent verbatim environments that are descendants of -refsynopsisdiv, not put backgrounds behind them - - -Michael(tm) Smith: inline.xslset output of the literal element in monospace. this causes all -inline monospace instances in the git man pages to be set in -monospace (since DocBook XML source for git docs is generated with -asciidoc and asciidoc consistently outputs only <literal> for -inline monospace (not <command> or <code> or anything else). -Of course this only affects non-TTY output... - - -Michael(tm) Smith: utility.xslAdded inline.monoseq named template. - - -Michael(tm) Smith: utility.xsldon't bother using a custom register to store the previous -font-family value when setting blocks of text in code font; just -use \F[] .fam with no arg to switch back - - -Michael(tm) Smith: endnotes.xslput links in blue in PS output (note that this matches how groff -renders content marked up with the .URL macro) - - -Michael(tm) Smith: endnotes.xsl; param.xweb; param.entremoved man.links.are.underlined and added man.font.links. Also, -changed the default font formatting for links to bold. - - -Michael(tm) Smith: endnotes.xsl; param.xweb; param.entAdded new param man.base.url.for.relative.links .. specifies a -base URL for relative links (for ulink, @xlink:href, imagedata, -audiodata, videodata) shown in the generated NOTES section of -man-page output. The value of man.base.url.for.relative.links is -prepended to any relative URI that is a value of ulink url, -xlink:href, or fileref attribute. - -If you use relative URIs in link sources in your DocBook refentry -source, and you leave man.base.url.for.relative.links unset, the -relative links will appear "as is" in the NOTES section of any -man-page output generated from your source. That's probably not -what you want, because such relative links are only usable in the -context of HTML output. So, to make the links meaningful and -usable in the context of man-page output, set a value for -man.base.url.for.relative.links that points -to the online version of HTML output generated from your DocBook -refentry source. For example: - - <xsl:param name="man.base.url.for.relative.links" - >http://www.kernel.org/pub/software/scm/git/docs/</xsl:param> - - -Michael(tm) Smith: info.xslIf a source refentry contains a Documentation or DOCUMENTATION -section, don't report it as having missing AUTHOR information. -Also, if missing a contrib/personblurb for a person or org, report -pointers to http://docbook.sf.net/el/personblurb and to -http://docbook.sf.net/el/contrib - - -Michael(tm) Smith: info.xslIf we encounter an author|editor|othercredit instance that lacks a -personblurb or contrib, report it to the user (because that means -we have no information about that author|editor|othercredit to -display in the generated AUTHOR|AUTHORS section...) - - -Michael(tm) Smith: info.xsl; docbook.xsl; other.xslif we can't find any usable author data, emit a warning and insert -a fixme in the output - - -Michael(tm) Smith: info.xslfixed bug in indenting of output for contrib instances in AUTHORS -section. Thanks to Daniel Leidert and the fglrx docs for exposing -the bug. - - -Michael(tm) Smith: block.xslfor a para or simpara that is the first child of a callout, -suppress the .sp or .PP that would normally be output (because in -those cases, the output goes into a table cell, and the .sp or .PP -markup causes a spurious linebreak before it when displayed - - -Michael(tm) Smith: lists.xslAdded support for rendering co callouts and calloutlist instances. -So you can now use simple callouts -- marking up programlisting -and such with co instances -- and have the callouts displayed in -man-page output. ("simple callouts" means using co@id and -callout@arearefs pointing to co@id instances; in man/roff output, -we can't/don't support markup that uses areaset and area) - - -Michael(tm) Smith: block.xslonly put a line of space after a verbatim if it's followed by a -text node or a paragraph - - -Michael(tm) Smith: utility.xslput verbatim environments in slightly smaller font in non-TTY -output - - -Michael(tm) Smith: lists.xslminor whitespace-only reformatting of lists.xsl source - - -Michael(tm) Smith: lists.xslMade refinements/fixes to output of orderedlist and itemizedlist --- in part, to get mysql man pages to display correctly. This -change causes a "\c" continuation marker to be added between -listitem markers and contents (to ensure that the content remains -on the same line as the marker when displayed) - - -Michael(tm) Smith: block.xslput a line of vertical space after all verbatim output that has -sibling content following it (not just if that sibling content is -a text node) - - -Michael(tm) Smith: block.xslrefined spacing around titles for admonitions - - -Michael(tm) Smith: block.xsl; other.xslDeal with case of verbatim environments that have a linebreak -after the opening tag. Assumption is that users generally don't -want that linebreak to appear in output, so we do some groff -hackery to mess with vertical spacing and close the space. - - -Michael(tm) Smith: inline.xslindexterm instances now produce groff comments like this: - - .\" primary: secondary: tertiary - -remark instances, if non-empty, now produce groff comments - - -Michael(tm) Smith: charmap.groff.xsl; other.xslconvert no-break space character to groff "\ \&" (instead of just -"\ "). the reason is that if a space occurs at the end of a line, -our processing causes it to be eaten. a real-world case of this is -the mysql(1) man page. appending the "\&" prevents that - - -Michael(tm) Smith: block.xsloutput "sp" before simpara output, not after it (outputting it -after results in undesirable whitespace in particular cases; for -example, in the hg/mercurial docs - - -Michael(tm) Smith: table.xsl; synop.xsl; utility.xslrenamed from title-preamble to pinch.together and replaced "sp -1" -between synopsis fragments with call to pinch.together instead - - -Michael(tm) Smith: table.xsluse title-preamble template for table titles (instead of "sp -1" -hack), and "sp 1" after all tables (instead of just "sp" - - -Michael(tm) Smith: utility.xslcreated title-preamble template for suppressing line spacing after -headings - - -Michael(tm) Smith: info.xslfurther refinement of indenting in AUTHORS section - - -Michael(tm) Smith: block.xsl; other.xslrefined handling of admonitions - - -Michael(tm) Smith: lists.xslUse RS/RE in another place where we had IP "" - - -Michael(tm) Smith: info.xslReplace (ab)use of IP with "sp -1" in AUTHORS section with RS/RE -instead. - - -Michael(tm) Smith: table.xsl; synop.xsl; info.xslchanged all instances of ".sp -1n" to ".sp -1" - - -Michael(tm) Smith: other.xsladd extra line before SH heads only in non-TTY output - - -Michael(tm) Smith: block.xslReworked output for admonitions (caution, important, note, tip, -warning). In TTY output, admonitions now get indented. In non-TTY -output, a colored marker (yellow) is displayed next to them. - - -Michael(tm) Smith: other.xslAdded BM/EM macros for putting a colored marker in margin next to -a block of text. - - -Michael(tm) Smith: utility.xslcreated make.bold.title template by moving title-bolding part out -from nested-section-title template. This allows the bolding to -also be used by the template for formatting admonitions - - -Michael(tm) Smith: info.xslput .br before copyright contents to prevent them from getting run in - - -Michael(tm) Smith: refentry.xsl; other.xsl; utility.xslmade point size of output for Refsect2 and Refsect3 heads bigger - - -Michael(tm) Smith: other.xslput slightly more space between SH head and underline in non-TTY -output - - -Michael(tm) Smith: param.xweb; param.ent; other.xslAdded the man.charmap.subset.profile.english parameter and refined -the handling of charmap subsets to differentiate between English -and non-English source. - -This way charmap subsets are now handled is this: - -If the value of the man.charmap.use.subset parameter is non-zero, -and your DocBook source is not written in English (that is, if its -lang or xml:lang attribute has a value other than en), then the -character-map subset specified by the man.charmap.subset.profile -parameter is used instead of the full roff character map. - -Otherwise, if the lang or xml:lang attribute on the root element -in your DocBook source or on the first refentry element in your -source has the value en or if it has no lang or xml:lang -attribute, then the character-map subset specified by the -man.charmap.subset.profile.english parameter is used instead of -man.charmap.subset.profile. - -The difference between the two subsets is that -man.charmap.subset.profile provides mappings for characters in -Western European languages that are not part of the Roman -(English) alphabet (ASCII character set). - - -Michael(tm) Smith: other.xslVarious updates, mainly related to uppercasing SH titles: - - - added a "Language: " metadata line to the top comment area of - output man pages, to indicate the language the page is in - - - added a "toupper" macro of doing locale-aware uppercasing of - SH titles and cross-references to SH titles; the mechanism - relies on the uppercase.alpha and lowercase.alpha DocBook - gentext keys to do locale-aware uppercasing based on the - language the page is written in - - - added a "string.shuffle" template, which provides a library - function for "shuffling" two strings together into a single - string; it takes the first character for the first string, the - first character from second string, etc. The only current use - for it is to generate the argument for the groff tr request - that does string uppercasing. - - - added make.tr.uppercase.arg and make.tr.normalcase.arg named - templates for use in generating groff code for uppercasing and - "normal"-casing SH titles - - - made the BB/BE "background drawing" macros have effect only in - non-TTY output - - - output a few comments in the top part of source - - -Michael(tm) Smith: utility.xslremoved some leftover kruft - - -Michael(tm) Smith: refentry.xslTo create the name(s) for each man page, we now replace any spaces -in the refname(s) with underscores. This ensures that tools like -lexgrog(1) will be able to parse the name (lexgrog won't parse -names that contain spaces). - - -Michael(tm) Smith: docbook.xslPut a comment into source of man page to indicate where the main -content starts. (We now have a few of macro definitions at the -start of the source, so putting this comment in helps those that -might be viewing the source.) - - -Michael(tm) Smith: refentry.xslrefined mechanism for generating SH titles - - -Michael(tm) Smith: charmap.groff.xslAdded zcaron, Zcaron, scaron, and Scaron to the groff character map. -This means that generated Finnish man pages will no longer contain -any raw accented characters -- they'll instead by marked up with -groff escapes. - - -Michael(tm) Smith: other.xsl; utility.xslcorrected a regression I introduced about a year ago that caused -dots to be output just as "\." -- instead needs to be "\&." (which -is what it will be now, after this change) - - -Michael(tm) Smith: refentry.xslChanged backend handling for generating titles for SH sections and -for cross-references to those sections. This should have no effect -on TTY output (behavior should remain the same hopefully) but -results in titles in normal case (instead of uppercase) in PS -output. - - -Michael(tm) Smith: info.xsluse make.subheading template to make subheadings for AUTHORS and -COPYRIGHT sections (instead of harcoding roff markup) - - -Michael(tm) Smith: block.xslput code font around programlisting etc. - - -Michael(tm) Smith: synop.xsl; docbook.xslembed custom macro definitions in man pages, plus wrap synopsis in -code font - - -Michael(tm) Smith: endnotes.xsluse the make.subheading template to generated SH subheading for -endnotes section. - - -Michael(tm) Smith: lists.xslAdded some templates for generating if-then-else conditional -markup in groff, so let's use those instead of hard-coding it in -multiple places... - - -Michael(tm) Smith: other.xsl; utility.xslInitial checkin of some changes related to making PS/PDF output -from "man -l -Tps" look better. The current changes: - - - render synopsis and verbatim sections in a monospace/code font - - - put a light-grey background behind all programlisting, screen, - and literallayout instances - - - prevent SH heads in PS output from being rendered in uppercase - (as they are in console output) - - - also display xrefs to SH heads in PS output in normal case - (instead of uppercase) - - - draw a line under SH heads in PS output - -The changes made to the code to support the above features were: - - - added some embedded/custom macros: one for conditionally - upper-casing SH x-refs, one for redefining the SH macro - itself, with some conditional handling for PS output, and - finally a macro for putting a background/screen (filled box) - around a block of text (e.g., a program listing) in PS output - - - added utility templates for wrapping blocks of text in code - font; also templates for inline code font - - -Robert Stayton: refentry.xslrefpurpose nodes now get apply-templates instead of just normalize-space(). - - -Michael(tm) Smith: lists.xslFixed alignment of first lined of text for each listitem in -orderedlist output for TTY. Existing code seemed to have been -causing an extra undesirable space to appear. - - -Michael(tm) Smith: lists.xslWrapped some roff conditionals around roff markup for orderedlist -and itemizedlist output, so that the lists look acceptable in PS -output as well as TTY. - - -Michael(tm) Smith: pi.xsl; synop.xsl; param.xweb; param.entAdded the man.funcsynopsis.style parameter. Has the same effect in -manpages output as the funcsynopsis.style parameter has in HTML -output -- except that its default value is 'ansi' instead of 'kr'. - - -Michael(tm) Smith: synop.xslReworked handling of K&R funcprototype output. It no longer relies -on the HTML kr-tabular templates, but instead just does direct -transformation to roff. For K&R output, it displays the paramdef -output in an indented list following the prototype. - - -Michael(tm) Smith: synop.xslProperly integrated handling for K&R output into manpages -stylesheet. The choice between K&R output and ANSI output is -currently controlled through use of the (HTML) funcsynopsis.style -parameter. Note that because the mechanism does currently rely on -funcsynopsis.style, the default in manpages output is now K&R -(because that's the default of that param). But I suppose I ought -to create a man.funcsynopsis.style and make the default for that -ANSI (to preserve the existing default behavior). - - -Michael(tm) Smith: docbook.xsladded manpages/pi.xsl file - - -Michael(tm) Smith: .cvsignore; pi.xslAdded "dbman funcsynopsis-style" PI and incorporated it into the -doc build. - - -Michael(tm) Smith: refentry.xslFixed regression that caused an unescaped dash to be output -between refname and refpurpose content. Closes bug #1894244. -Thanks to Daniel Leidert. - - -Michael(tm) Smith: other.xslFixed problem with dots being escaped in filenames of generated -man files. Closes #1827195. Thanks to Daniel Leidert. - - -Michael(tm) Smith: inline.xslAdded support for processing structfield (was appearing in roff -output surrounded by HTML <em> tags; fixed so that it gets roff -ital markup). Closes bug #1858329. Thanks to Sam Varshavchik. - - - - - -Epub -The following changes have been made to the - epub code - since the 1.73.2 release. - - Keith Fahlgren: bin/spec/README; bin/spec/epub_realbook_spec.rb'Realbook' spec now passes - Keith Fahlgren: bin/dbtoepub; README; bin/spec/README; bin/lib/docbook.rb; bin/spec/epub_r⋯Very primitive Windows support for dbtoepub reference implementation; README for running tests and for the .epub target in general; shorter realbook test document (still fails for now) - Keith Fahlgren: bin/dbtoepub; bin/spec/epub_regressions_spec.rb; bin/lib/docbook.rb; bin/s⋯Changes to OPF spine to not duplicate idrefs for documents with parts not at the root; regression specs for same - Keith Fahlgren: docbook.xslFixing linking to cover @id, distinct from other needs of cover-image-id (again, thanks to Martin Goerner) - Keith Fahlgren: docbook.xslUpdating the title of the toc element in the guide to be more explicit (thanks to Martin Goerner) - -Keith Fahlgren: bin/spec/examples/amasque_exploded/content.opf; bin/spec/examples/amasque_⋯Initial checkin/merge of epub target from work provided by Paul Norton of Adobe -and Keith Fahlgren of O'Reilly. - - -Keith Fahlgren: docbook.xsl== General epub test support - -$ spec -O ~/.spec.opts spec/epub_spec.rb - -DocBook::Epub -- should be able to be created -- should fail on a nonexistent file -- should be able to render to a file -- should create a file after rendering -- should have the correct mimetype after rendering -- should be valid .epub after rendering an article -- should be valid .epub after rendering an article without sections -- should be valid .epub after rendering a book -- should be valid .epub after rendering a book even if it has one graphic -- should be valid .epub after rendering a book even if it has many graphics -- should be valid .epub after rendering a book even if it has many duplicated graphics -- should report an empty file as invalid -- should confirm that a valid .epub file is valid -- should not include PDFs in rendered epub files as valid image inclusions -- should include a TOC link in rendered epub files for <book>s - -Finished in 20.608395 seconds - -15 examples, 0 failures - - -== Verbose epub test coverage against _all_ of the testdocs - -Fails on only (errors truncated): -1) -'DocBook::Epub should be able to render a valid .epub for the test document /Users/keith/work/docbook-dev/trunk/xsl/epub/bin/spec/testdocs/calloutlist.003.xml [30]' FAILED -'DocBook::Epub should be able to render a valid .epub for the test document /Users/keith/work/docbook-dev/trunk/xsl/epub/bin/spec/testdocs/cmdsynopsis.001.xml [35]' FAILED -.... - -Finished in 629.89194 seconds - -224 examples, 15 failures - -224 examples, 15 failures yields 6% failure rate - - - - - -HTMLHelp -The following changes have been made to the - htmlhelp code - since the 1.73.2 release. - - -Mauritz Jeanson: htmlhelp-common.xslAdded <xsl:with-param name="quiet" select="$chunk.quietly"/> to calls to -the write.chunk, write.chunk.with.doctype, and write.text.chunk templates. -This makes chunk.quietly=1 suppress chunk filename messages also for help -support files (which seems to be what one would expect). See bug #1648360. - - - - - -Eclipse -The following changes have been made to the - eclipse code - since the 1.73.2 release. - - -David Cramer: eclipse.xslUse sortas attributes (if they exist) when sorting indexterms - - -David Cramer: eclipse.xslAdded support for indexterm/see in eclipse index.xml - - -Mauritz Jeanson: eclipse.xslAdded <xsl:with-param name="quiet" select="$chunk.quietly"/> -to helpidx template. - - -David Cramer: eclipse.xslGenerate index.xml file and add related goo to plugin.xml file. Does not yet support see and seealso. - - -Mauritz Jeanson: eclipse.xslAdded <xsl:with-param name="quiet" select="$chunk.quietly"/> to calls to -the write.chunk, write.chunk.with.doctype, and write.text.chunk templates. -This makes chunk.quietly=1 suppress chunk filename messages also for help -support files (which seems to be what one would expect). See bug #1648360. - - - - - -JavaHelp -The following changes have been made to the - javahelp code - since the 1.73.2 release. - - -Mauritz Jeanson: javahelp.xslAdded <xsl:with-param name="quiet" select="$chunk.quietly"/> to calls to -the write.chunk, write.chunk.with.doctype, and write.text.chunk templates. -This makes chunk.quietly=1 suppress chunk filename messages also for help -support files (which seems to be what one would expect). See bug #1648360. - - - - - -Roundtrip -The following changes have been made to the - roundtrip code - since the 1.73.2 release. - - -Steve Ball: blocks2dbk.xsl; wordml2normalise.xslfix table/cell borders for wordml, fix formal figure, add emphasis-strong - - -Mauritz Jeanson: supported.xmlChanged @cols to 5. - - -Steve Ball: blocks2dbk.xsl; blocks2dbk.dtd; template.xmladded pubdate, fixed metadata handling in biblioentry - - -Steve Ball: supported.xmlAdded support for edition. - - -Steve Ball: docbook-pages.xsl; wordml-blocks.xsl; docbook.xsl; wordml.xsl; pages-normalise⋯Removed stylesheets for old, deprecated conversion method. - - -Steve Ball: specifications.xml; dbk2ooo.xsl; blocks2dbk.xsl; dbk2pages.xsl; blocks2dbk.dtd⋯Added support for Open Office, added edition element, improved list and table support in Word and Pages - - -Steve Ball: normalise-common.xsl; blocks2dbk.xsl; dbk2pages.xsl; template-pages.xml; templ⋯Fixed bug in WordML table handling, improved table handling for Pages 08, synchronised WordML and Pages templates. - - -Steve Ball: normalise-common.xsl; blocks2dbk.xsl; wordml2normalise.xsl; dbk2wp.xslfix caption, attributes - - -Steve Ball: specifications.xml; blocks2dbk.xsl; wordml2normalise.xsl; blocks2dbk.dtd; temp⋯Fixes to table and list handling - - -Steve Ball: blocks2dbk.xsladded support for explicit emphasis character styles - - -Steve Ball: wordml2normalise.xsladded support for customisation in image handling - - -Steve Ball: blocks2dbk.xslAdded inlinemediaobject support for metadata. - - -Steve Ball: normalise-common.xsl; blocks2dbk.xsl; template.xml; dbk2wordml.xsl; dbk2wp.xslAdded support file. Added style locking. Conversion bug fixes. - - - - - -Slides -The following changes have been made to the - slides code - since the 1.73.2 release. - - -Michael(tm) Smith: fo/Makefile; html/MakefileAdded checks and hacks to various makefiles to enable building -under Cygwin. This stuff is ugly and maybe not worth the mess and -trouble, but does seem to work as expected and not break anything -else. - - -Jirka Kosek: html/plain.xslAdded support for showing foil number - - - - - -Website -The following changes have been made to the - website code - since the 1.73.2 release. - - -Michael(tm) Smith: extensions/saxon64/.classes/.gitignore; extensions/xalan2/.classes/com/⋯renamed a bunch more .cvsignore files to .gitignore (to facilitate use of git-svn) - - - - - -Params -The following changes have been made to the - params code - since the 1.73.2 release. - - Keith Fahlgren: epub.autolabel.xmlNew parameter for epub, epub.autolabel - -Mauritz Jeanson: table.frame.border.color.xml; table.cell.padding.xml; table.cell.border.t⋯Added missing refpurposes and descriptions. - - -Keith Fahlgren: ade.extensions.xmlExtensions to support Adobe Digital Editions extensions in .epub output. - - -Mauritz Jeanson: fop.extensions.xml; fop1.extensions.xmlClarified that fop1.extensions is for FOP 0.90 and later. Version 1 is not here yet... - - -Michael(tm) Smith: man.links.are.underlined.xml; man.endnotes.list.enabled.xml; man.font.l⋯removed man.links.are.underlined and added man.font.links. Also, -changed the default font formatting for links to bold. - - -Michael(tm) Smith: man.base.url.for.relative.links.xmlAdded new param man.base.url.for.relative.links .. specifies a -base URL for relative links (for ulink, @xlink:href, imagedata, -audiodata, videodata) shown in the generated NOTES section of -man-page output. The value of man.base.url.for.relative.links is -prepended to any relative URI that is a value of ulink url, -xlink:href, or fileref attribute. - -If you use relative URIs in link sources in your DocBook refentry -source, and you leave man.base.url.for.relative.links unset, the -relative links will appear "as is" in the NOTES section of any -man-page output generated from your source. That's probably not -what you want, because such relative links are only usable in the -context of HTML output. So, to make the links meaningful and -usable in the context of man-page output, set a value for -man.base.url.for.relative.links that points -to the online version of HTML output generated from your DocBook -refentry source. For example: - - <xsl:param name="man.base.url.for.relative.links" - >http://www.kernel.org/pub/software/scm/git/docs/</xsl:param> - - -Michael(tm) Smith: man.string.subst.map.xmlsqueeze .sp\n.sp into a single .sp (to prevent a extra, spurious -line of whitespace from being inserted after programlisting etc. -in certain cases) - - -Michael(tm) Smith: refentry.manual.fallback.profile.xml; refentry.source.fallback.profile.⋯don't use refmiscinfo@class=date value as fallback for refentry -"source" or "manual" metadata fields - - -Michael(tm) Smith: man.charmap.subset.profile.xml; man.charmap.enabled.xml; man.charmap.su⋯made some further doc tweaks related to the -man.charmap.subset.profile.english param - - -Michael(tm) Smith: man.charmap.subset.profile.xml; man.charmap.enabled.xml; man.charmap.su⋯Added the man.charmap.subset.profile.english parameter and refined -the handling of charmap subsets to differentiate between English -and non-English source. - -This way charmap subsets are now handled is this: - -If the value of the man.charmap.use.subset parameter is non-zero, -and your DocBook source is not written in English (that is, if its -lang or xml:lang attribute has a value other than en), then the -character-map subset specified by the man.charmap.subset.profile -parameter is used instead of the full roff character map. - -Otherwise, if the lang or xml:lang attribute on the root element -in your DocBook source or on the first refentry element in your -source has the value en or if it has no lang or xml:lang -attribute, then the character-map subset specified by the -man.charmap.subset.profile.english parameter is used instead of -man.charmap.subset.profile. - -The difference between the two subsets is that -man.charmap.subset.profile provides mappings for characters in -Western European languages that are not part of the Roman -(English) alphabet (ASCII character set). - - -Michael(tm) Smith: man.charmap.subset.profile.xmlAdded to default charmap used by manpages: - - - the "letters" part of the 'C1 Controls And Latin-1 Supplement - (Latin-1 Supplement)' Unicode block - - Latin Extended-A block (but not all of the characters from - that block have mappings in groff, so some of them are still - passed through as-is) - -The effects of this change are that in man pages generated for -most Western European languages and for Finnish, all characters -not part of the Roman alphabet are (e.g., "accented" characters) -are converted to groff escapes. - -Previously, by default we passed through those characters as is -(and users needed to use the full charmap if they wanted to have -those characters converted). - -As a result of this change, man pages generated for Western -European languages will be viewable in some environments in which -they are not viewable if the "raw" non-Roman characters are in them. - - -Mauritz Jeanson: generate.legalnotice.link.xml; generate.revhistory.link.xmlAdded information on how the filename is computed. - - -Mauritz Jeanson: default.table.width.xmlClarified PI usage. - - -Michael(tm) Smith: man.funcsynopsis.style.xmlAdded the man.funcsynopsis.style parameter. Has the same effect in -manpages output as the funcsynopsis.style parameter has in HTML -output -- except that its default value is 'ansi' instead of 'kr'. - - -Michael(tm) Smith: funcsynopsis.tabular.threshold.xmlRemoved the funcsynopsis.tabular.threshold param. It's no longer -being used in the code and hasn't been since mid 2006. - - -Mauritz Jeanson: table.properties.xmlSet keep-together.within-column to "auto". This seems to be the most sensible -default value for tables. - - -Mauritz Jeanson: informal.object.properties.xml; admon.graphics.extension.xml; informalequ⋯Several small documentation fixes. - - -Mauritz Jeanson: manifest.in.base.dir.xmlWording fixes. - - -Mauritz Jeanson: header.content.properties.xml; footer.content.properties.xmlAdded refpurpose. - - -Mauritz Jeanson: ulink.footnotes.xml; ulink.show.xmlUpdated for DocBook 5. - - -Mauritz Jeanson: index.method.xml; glossterm.auto.link.xmlSpelling and wording fixes. - - -Mauritz Jeanson: callout.graphics.extension.xmlClarifed available graphics formats and extensions. - - -Mauritz Jeanson: footnote.sep.leader.properties.xmlCorrected refpurpose. - - -Jirka Kosek: footnote.properties.xmlAdded more properties which make it possible to render correctly footnotes placed inside verbatim elements. - - -Mauritz Jeanson: img.src.path.xmlimg.src.path works with inlinegraphic too. - - -Mauritz Jeanson: saxon.character.representation.xmlAdded TCG link. - - -Mauritz Jeanson: img.src.path.xmlUpdated description of img.src.path. Bug #1785224 revealed that -there was a risk of misunderstanding how it works. - - - - - -Profiling -The following changes have been made to the - profiling code - since the 1.73.2 release. - - -Jirka Kosek: xsl2profile.xslAdded new rules to profile all content generated by HTML Help (including alias files) - - -Robert Stayton: profile-mode.xsluse mode="profile" instead of xsl:copy-of for attributes so -they can be more easily customized. - - - - - - -Tools -The following changes have been made to the - tools code - since the 1.73.2 release. - - -Michael(tm) Smith: make/Makefile.DocBookvarious changes and additions to support making with asciidoc as -an input format - - -Michael(tm) Smith: make/Makefile.DocBookmake dblatex the default PDF maker for the example makefile - - -Michael(tm) Smith: xsl/build/html2roff.xslReworked handling of K&R funcprototype output. It no longer relies -on the HTML kr-tabular templates, but instead just does direct -transformation to roff. For K&R output, it displays the paramdef -output in an indented list following the prototype. - - -Mauritz Jeanson: xsl/build/make-xsl-params.xslMade attribute-sets members of the param list. This enables links to attribute-sets in the -reference documentation. - - -Michael(tm) Smith: xsl/build/html2roff.xsluse .BI handling in K&R funsynopsis output for manpages, just as -we do already of ANSI output - - -Michael(tm) Smith: xsl/build/html2roff.xslImplemented initial support for handling tabular K&R output of -funcprototype in manpages output. Accomplished by adding more -templates to the intermediate HTML-to-roff stylesheet that the -build uses to create the manpages/html-synop.xsl stylesheet. - - -Michael(tm) Smith: xsl/build/doc-link-docbook.xslMade the xsl/tools/xsl/build/doc-link-docbook.xsl stylesheet -import profile-docbook.xsl, so that we can do profiling of release -notes. Corrected some problems in the target for the release-notes -HTML build. - - - - - -Extensions -The following changes have been made to the - extensions code - since the 1.73.2 release. - - Keith Fahlgren: MakefileUse DOCBOOK_SVN variable everywhere, please; build with PDF_MAKER - -Michael(tm) Smith: Makefilemoved extensions build targets from master xsl/Makefile to -xsl/extensions/Makefile - - -Michael(tm) Smith: .cvsignorere-adding empty extensions subdir - - - - - -XSL-Saxon -The following changes have been made to the - xsl-saxon code - since the 1.73.2 release. - - -Michael(tm) Smith: VERSIONbring xsl2, xsl-saxon, and xsl-xalan VERSION files up-to-date with -recent change to snapshot build infrastructure - - -Michael(tm) Smith: nbproject/build-impl.xml; nbproject/project.propertiesChanged hard-coded file references in "clean" target to variable -references. Closes #1792043. Thanks to Daniel Leidert. - - -Michael(tm) Smith: VERSION; MakefileDid post-release wrap-up of xsl-saxon and xsl-xalan dirs - - -Michael(tm) Smith: nbproject/build-impl.xml; VERSION; Makefile; testMore tweaks to get release-ready - - - - - -XSL-Xalan -The following changes have been made to the - xsl-xalan code - since the 1.73.2 release. - - -Michael(tm) Smith: VERSIONbring xsl2, xsl-saxon, and xsl-xalan VERSION files up-to-date with -recent change to snapshot build infrastructure - - -Michael(tm) Smith: nbproject/build-impl.xmlChanged hard-coded file references in "clean" target to variable -references. Closes #1792043. Thanks to Daniel Leidert. - - -Michael(tm) Smith: Makefile; VERSIONDid post-release wrap-up of xsl-saxon and xsl-xalan dirs - - -Michael(tm) Smith: Makefile; nbproject/build-impl.xml; VERSIONMore tweaks to get release-ready - - - - - -XSL-libxslt -The following changes have been made to the - xsl-libxslt code - since the 1.73.2 release. - - -Mauritz Jeanson: python/xslt.pyPrint the result to stdout if no outfile has been given. -Some unnecessary semicolons removed. - - -Mauritz Jeanson: python/xslt.pyAdded a function that quotes parameter values (to ensure that they are interpreted as strings). -Replaced deprecated functions from the string module with string methods. - - -Michael(tm) Smith: python/README; python/README.LIBXSLTrenamed xsl-libxslt/python/README to xsl-libxslt/python/README.LIBXSLT - - -Mauritz Jeanson: python/READMETweaked the text a little. - - - - - - - -Release Notes: 1.73.2 -This is solely a minor bug-fix update to the 1.73.1 release. - It fixes a packaging error in the 1.73.1 package, as well as a - bug in footnote handling in FO output. - - - -Release: 1.73.1 -This is mostly a bug-fix update to the 1.73.0 release. - - -Gentext -The following changes have been made to the - gentext code - since the 1.73.0 release. - - -Mauritz Jeanson: locale/de.xmlApplied patch #1766009. - - -Michael(tm) Smith: locale/lv.xmlAdded localization for ProductionSet. - - - - - -FO -The following changes have been made to the - fo code - since the 1.73.0 release. - - -Mauritz Jeanson: table.xslModified the tgroup template so that, for tables with multiple tgroups, -a width attribute is output on all corresponding fo:tables. Previously, -there was a test prohibiting this (and a comment saying that outputting more -than one width attribute will cause an error). But this seems to be no longer -relevant; it is not a problem with FOP 0.93 or XEP 4.10. Closes bug #1760559. - - -Mauritz Jeanson: graphics.xslReplaced useless <a> elements with warning messages (textinsert extension). - - -Mauritz Jeanson: admon.xslEnabled generation of ids (on fo:wrapper) for indexterms in admonition titles, so that page -references in the index can be created. Closes bug #1775086. - - - - - -HTML -The following changes have been made to the - html code - since the 1.73.0 release. - - -Mauritz Jeanson: titlepage.xslAdded <xsl:call-template name="process.footnotes"/> to abstract template -so that footnotes in info/abstract are processed. Closes bug #1760907. - - -Michael(tm) Smith: pi.xsl; synop.xslChanged handling of HTML output for the cmdsynopsis and -funcsynopsis elements, such that a@id instances are generated for -them if they are descendants of any element containing a dbcmdlist -or dbfunclist PI. Also, update the embedded reference docs for the -dbcmdlist and dbfunclist PIs to make it clear that they can be -used within any element for which cmdsynopsis or funcsynopsis are -valid children. - - -Michael(tm) Smith: formal.xslReverted the part of revision 6952 that caused a@id anchors to be -generated for output of informal objects. Thanks to Sam Steingold -for reporting. - - -Robert Stayton: glossary.xslAccount for a glossary with no glossdiv or glossentry children. - - -Mauritz Jeanson: titlepage.xslModified legalnotice template so that the base.name parameter is calculated -in the same way as for revhistory chunks. Using <xsl:apply-templates -mode="chunk-filename" select="."/> did not work for single-page output since -the template with that mode is in chunk-code.xsl. - - -Mauritz Jeanson: graphics.xslUpdated support for SVG (must be a child of imagedata in DB 5). -Added support for MathML in imagedata. - - -Mauritz Jeanson: pi.xslAdded documentation for the dbhh PI (used for context-sensitive HTML Help). -(The two templates matching 'dbhh' are still in htmlhelp-common.xsl). - - - - - -Manpages -The following changes have been made to the - manpages code - since the 1.73.0 release. - - -Michael(tm) Smith: endnotes.xslIn manpages output, generate warnings about notesources with -non-para children only if the notesource is a footnote or -annotation. Thanks to Sam Steingold for reporting problems with -the existing handling. - - - - - -HTMLHelp -The following changes have been made to the - htmlhelp code - since the 1.73.0 release. - - -Michael(tm) Smith: htmlhelp-common.xslAdded single-pass namespace-stripping support to the htmlhelp, -eclipse, and javahelp stylesheets. - - - - - -Eclipse -The following changes have been made to the - eclipse code - since the 1.73.0 release. - - -Michael(tm) Smith: eclipse.xslAdded single-pass namespace-stripping support to the htmlhelp, -eclipse, and javahelp stylesheets. - - - - - -JavaHelp -The following changes have been made to the - javahelp code - since the 1.73.0 release. - - -Michael(tm) Smith: javahelp.xslAdded single-pass namespace-stripping support to the htmlhelp, -eclipse, and javahelp stylesheets. - - - - - -Roundtrip -The following changes have been made to the - roundtrip code - since the 1.73.0 release. - - -Steve Ball: blocks2dbk.xsl; blocks2dbk.dtd; pages2normalise.xslModularised blocks2dbk to allow customisation, -Added support for tables to pages2normalise - - - - - -Params -The following changes have been made to the - params code - since the 1.73.0 release. - - -Robert Stayton: procedure.properties.xmlprocedure was inheriting keep-together from formal.object.properties, but -a procedure does not need to be kept together by default. - - -Dave Pawson: title.font.family.xml; component.label.includes.part.label.xml; table.frame.b⋯Regular formatting re-org. - - - - - - -Release: 1.73.0 -This release includes important bug fixes and adds the following -significant feature changes: - - - New localizations and localization updates - - We added two new localizations: Latvian and - Esperanto, and made updates to the Czech, Chinese - Simplified, Mongolian, Serbian, Italian, and Ukrainian - localizations. - - - - ISO690 citation style for bibliography output. - - Set the - bibliography.style parameter to - iso690 to use ISO690 style. - - - - New documentation for processing instructions (PI) - - The reference documentation that ships with the - release now includes documentation on all PIs that you can use to - control output from the stylesheets. - - - - New profiling parameters for audience and wordsize - - You can now do profiling based on the values of the - audience and - wordsize attributes. - - - - Changes to man-page output - - The manpages stylesheet now supports single-pass - profiling and single-pass DocBook 5 namespace stripping - (just as the HTML and FO stylesheets also do). Also, added - handling for mediaobject & - inlinemediaobject. (Each imagedata, - audiodata, or videodata element - within a mediaobject or inline - mediaobject is now treated as a "notesource" - and so handled in much the same way as links and - annotation/alt/footnote - are in manpages output.) And added the - man.authors.section.enabled and - man.copyright.section.enabled - parameters to enable control over whether output includes - auto-generated AUTHORS and - COPYRIGHT sections. - - - - Highlighting support for C - - The highlighting mechanism for generating - syntax-highlighted code snippets in output now supports C - code listings (along with Java, PHP, XSLT, and others). - - - - Experimental docbook-xsl-update script - - We added an experimental docbook-xsl-update - script, the purpose of which is to facilitate - easy sync-up to the latest docbook-xsl snapshot (by means - of rsync). - - - - - - -Gentext -The following changes have been made to the -gentext code -since the 1.72.0 release. - - -Michael(tm) Smith: locale/lv.xml; MakefileAdded Latvian localization file, from Girts Ziemelis. - - -Dongsheng Song: locale/zh_cn.xmlBrought up to date with en.xml in terms of items. A few strings marked for translation. - - -Jirka Kosek: locale/cs.xmlAdded missing translations - - -Robert Stayton: locale/eo.xmlNew locale for Esperanto. - - -Robert Stayton: locale/mn.xmlUpdate from Ganbold Tsagaankhuu. - - -Jirka Kosek: locale/en.xml; locale/cs.xmlRules for normalizing glossary entries before they are sorted can be now different for each language. - - -Michael(tm) Smith: locale/sr_Latn.xml; locale/sr.xmlCommitted changes from MiloÅ¡ KomarÄević to Serbian files. - - -Robert Stayton: locale/ja.xmlFix chapter in context xref-number-and-title - - -Robert Stayton: locale/it.xmlImproved version from contributor. - - -Mauritz Jeanson: locale/uk.xmlApplied patch 1592083. - - - - -Common -The following changes have been made to the -common code -since the 1.72.0 release. - - -Michael(tm) Smith: labels.xslChanged handling of reference auto-labeling such that reference -(when it appears at the component level) is now affected by the -label.from.part param, just as preface, chapter, and appendix. - - -Michael(tm) Smith: common.xslAdded support to the HTML stylesheets for proper processing of -orgname as a child of author. - - -Michael(tm) Smith: refentry.xslRefined logging output of refentry metadata-gathering template; -for some cases of "missing" elements (refmiscinfo stuff, etc.), -the log messages now include URL to corresponding page in the -Definitive Guide (TDG). - - -Robert Stayton: titles.xslAdd refsection/info/title support. - - -Michael(tm) Smith: titles.xslAdded support for correct handling of xref to elements that -contain info/title descendants but no title children. - -This should be further refined so that it handles any *info -elements. And there are probably some other places where similar -handling for *info/title should be added. - - -Mauritz Jeanson: pi.xslModified <xsl:when> in datetime.format template to work -around Xalan bug. - - - - -FO -The following changes have been made to the -fo code -since the 1.72.0 release. - - -Robert Stayton: component.xslAdd parameters to the page.sequence utility template. - - -Mauritz Jeanson: xref.xslAdded template for xref to area/areaset. -Part of fix for bug #1675513 (xref to area broken). - - -Michael(tm) Smith: inline.xslAdded template match for person element to fo stylesheet. - - -Robert Stayton: lists.xslAdded support for spacing="compact" in variablelist, per bug report #1722540. - - -Robert Stayton: table.xsltable pgwide="1" should also use pgwide.properties attribute-set. - - -Mauritz Jeanson: inline.xslMake citations numbered if bibliography.numbered != 0. - - -Robert Stayton: param.xweb; param.entAdd new profiling parameters for audience and wordsize. - - -Robert Stayton: param.xweb; param.entAdded callout.icon.size parameter. - - -Robert Stayton: inline.xsl; xref.xslAdd support for xlink as olink. - - -Robert Stayton: autotoc.xsl; param.xweb; param.entAdd support for qanda.in.toc to fo TOC. - - -Robert Stayton: component.xslImproved the page.sequence utility template for use with book. - - -Robert Stayton: division.xslRefactored the big book template into smaller pieces. -Used the "page.sequence" utility template in -component.xsl to shorten the toc piece. -Added placeholder templates for front.cover and back.cover. - - -Robert Stayton: param.xweb; param.ent; sections.xslAdd section.container.element parameter to enable -pgwide spans inside sections. - - -Robert Stayton: param.xweb; param.ent; component.xslAdd component.titlepage.properties attribute-set to -support span="all" and other properties. - - -Robert Stayton: htmltbl.xsl; table.xslApply table.row.properties template to html tr rows too. -Add keep-with-next to table.row.properties when row is in thead. - - -Robert Stayton: table.xslAdd support for default.table.frame parameter. -Fix bug 1575446 rowsep last check for @morerows. - - -Robert Stayton: refentry.xslAdd support for info/title in refsections. - - -David Cramer: qandaset.xslMake fo questions and answers behave the same way as html - - -Jirka Kosek: lists.xslAdded missing attribute set for procedure - - -Jirka Kosek: param.xweb; biblio.xsl; docbook.xsl; param.ent; biblio-iso690.xslAdded support for formatting biblioentries according to ISO690 citation style. -New bibliography style can be turned on by setting parameter bibliography.style to "iso690" -The code was provided by Jana Dvorakova - - -Robert Stayton: param.xweb; param.ent; pagesetup.xslAdd header.table.properties and footer.table.properties attribute-sets. - - -Robert Stayton: inline.xslAdd fop1.extensions for menuchoice arrow handling exception. - - - - -HTML -The following changes have been made to the - html code - since the 1.72.0 release. - - -Mauritz Jeanson: param.xweb; param.entMoved declaration and documentation of javahelp.encoding from javahelp.xsl to the -regular "parameter machinery". - - -Michael(tm) Smith: admon.xslChanged handling of titles for note, warning, caution, important, -tip admonitions: We now output and HTML h3 head only if -admon.textlabel is non-zero or if the admonition actually contains -a title; otherwise, we don't output an h3 head at all. -(Previously, we were outputting an empty h3 if the admon.textlabel -was zero and if the admonition had no title.) - - -Mauritz Jeanson: xref.xslAdded template for xref to area/areaset. -Part of fix for bug #1675513 (xref to area broken). - - -Mauritz Jeanson: titlepage.xsl; component.xsl; division.xsl; sections.xslAdded fixes to avoid duplicate ids when generate.id.attributes = 1. -This (hopefully) closes bug #1671052. - - -Michael(tm) Smith: formal.xsl; pi.xslMade the dbfunclist PI work as intended. Also added doc for -dbfunclist and dbcmdlist PIs. - - -Michael(tm) Smith: pi.xsl; synop.xslMade the dbcmdlist work the way it appears to have been intended -to work. Restored dbhtml-dir template back to pi.xsl. - - -Michael(tm) Smith: titlepage.xsl; param.xweb; param.entAdded new param abstract.notitle.enabled. -If non-zero, in output of the abstract element on titlepages, -display of the abstract title is suppressed. -Because sometimes you really don't want or need that title -there... - - -Michael(tm) Smith: chunk-code.xsl; graphics.xslWhen we are chunking long descriptions for mediaobject instances -into separate HTML output files, and use.id.as.filename is -non-zero, if a mediaobject has an ID, use that ID as the basename -for the long-description file (otherwise, we generate an ID for it -and use that ID as the basename for the file). -The parallels the recent change made to cause IDs for legalnotice -instances to be used as basenames for legalnotice chunks. -Also, made some minor refinements to the recent changes for -legalnotice chunk handling. - - -Michael(tm) Smith: titlepage.xslAdded support to the HTML stylesheets for proper processing of -orgname as a child of author. - - -Michael(tm) Smith: chunk-code.xslWhen $generate.legalnotice.link is non-zero and -$use.id.as.filename is also non-zero, if a legalnotice has an ID, -then instead of assigning the "ln-<generatedID>" basename to the -output file for that legalnotice, just use its real ID as the -basename for the file -- as we do when chunking other elements -that have IDs. - - -David Cramer: xref.xslHandle alt text on xrefs to steps when the step doesn't have a title. - - -David Cramer: lists.xslAdded <p> element around term in variablelist when formatted as table to avoid misalignment of term and listitem in xhtml (non-quirks mode) output - - -David Cramer: qandaset.xslAdded <p> element around question and answer labels to avoid misalignment of label and listitem in xhtml (non-quirks mode) output - - -David Cramer: lists.xslAdded <p> element around callouts to avoid misalignment of callout and listitem in xhtml (non-quirks mode) output - - -Mauritz Jeanson: inline.xslMake citations numbered if bibliography.numbered != 0. - - -Robert Stayton: param.xweb; param.entAdd support for new profiling attributes audience and wordsize. - - -Robert Stayton: inline.xsl; xref.xslAdd support for xlink olinks. - - -Jirka Kosek: glossary.xslRules for normalizing glossary entries before they are sorted can be now different for each language. - - -Robert Stayton: chunk-common.xsl; chunk-code.xsl; manifest.xsl; chunk.xslRefactored the chunking modules to move all named templates to -chunk-common.xsl and all match templates to chunk-code.xsl, in -order to enable better chunk customization. -See the comments in chunk.xsl for more details. - - -Robert Stayton: lists.xslAdd anchor for xml:id for listitem in varlistentry. - - -Robert Stayton: refentry.xslAdd support for info/title in refsections for db5. - - -Jirka Kosek: param.xweb; biblio.xsl; docbook.xsl; param.ent; biblio-iso690.xslAdded support for formatting biblioentries according to ISO690 citation style. -New bibliography style can be turned on by setting parameter bibliography.style to "iso690" -The code was provided by Jana Dvorakova - - -Robert Stayton: inline.xsl; xref.xslAdd call to class.attribute to <a> output elements so they can -have a class value too. - - -Mauritz Jeanson: glossary.xslFixed bug #1644881: -* Added curly braces around all $language attribute values. -* Moved declaration of language variable to top level of stylesheet. -Tested with Xalan, Saxon, and xsltproc. - - - - -Manpages -The following changes have been made to the - manpages code - since the 1.72.0 release. - - -Michael(tm) Smith: param.xweb; docbook.xsl; param.entAdded the man.authors.section.enabled and -man.copyright.section.enabled parameters. Set those to zero when -you want to suppress display of the auto-generated AUTHORS and -COPYRIGHT sections. Closes request #1467806. Thanks to Daniel -Leidert. - - -Michael(tm) Smith: docbook.xslTook the test that the manpages stylesheet does to see if there -are any Refentry chilren in current doc, and made it -namespace-agnostic. Reason for that is because the test otherwise -won't work when it is copied over into the generated -profile-docbook.xsl stylesheet. - - -Michael(tm) Smith: MakefileAdded a manpages/profile-docbook.xsl file to enable single-pass -profiling for manpages output. - - -Michael(tm) Smith: info.xslOutput copyright and legalnotice in man-page output in whatever -place they are in in document order. Closes #1690539. Thanks to -Daniel Leidert for reporting. - - -Michael(tm) Smith: docbook.xslRestored support for single-pass namespace stripping to manpages -stylesheet. - - -Michael(tm) Smith: synop.xsl; block.xsl; info.xsl; inline.xsl; lists.xsl; endnotes.xsl; ut⋯Changed handling of bold and italic/underline output in manpages -output. Should be transparent to users, but... - -This touches handling of all bold and italic/underline output. The -exact change is that the mode="bold" and mode="italic" utility -templates were changed to named templates. (I think maybe I've -changed it back and forth from mode to named before, so this is -maybe re-reverting it yet again). - -Anyway, the reason for the change is that the templates are -sometimes call on dynamically node-sets, and using modes to format -those doesn't allow passing info about the current/real context -node from the source (not the node-set created by the stylesheet) -to that formatting stage. - -The named templates allow the context to be passed in as a -parameter, so that the bold/ital formatting template can use -context-aware condition checking. - -This was basically necessary in order to suppress bold formatting -in titles, which otherwise gets screwed up because of the numbnut -way that roff handles nested bold/ital. - -Closes #1674534). Much thanks to Daniel Leidert, whose in his -docbook-xsl bug-finding kung-fu has achieved Grand Master status. - - -Michael(tm) Smith: block.xslFixed handling of example instances by adding the example element -to the same template we use for processing figure. Closes -#1674538. Thanks to Daniel Leidert. - - -Michael(tm) Smith: utility.xslDon't include lang in manpages filename/pathname if lang=en (that -is, only generate lang-qualified file-/pathnames for non-English). - - -Michael(tm) Smith: endnotes.xslIn manpages output, emit warnings for notesources (footnote, etc.) -that have something other than para as a child. - -The numbered-with-hanging-indent formatting that's used for -rendering endnotes in the NOTES section of man pages places some -limits/assumptions on how the DocBook source is marked up; namely, -for notesources (footnote, annotation, etc.) that can contain -block-level children, if the they have a block-level child such as -a table or itemizedlist or orderedlist that is the first child of -a footnote, we have no way of rendering/indenting its content -properly in the endnotes list. - -Thus, the manpages stylesheet not emits a warning message for that -case, and suggests the "fix" (which is to wrap the table or -itemizedlist or whatever in a para that has some preferatory text. - - -Michael(tm) Smith: utility.xslAdded support to mixed-block template for handling tables in -mixed-blocks (e.g., as child of para) correctly. - - -Michael(tm) Smith: table.xsl; synop.xsl; block.xsl; info.xsl; lists.xsl; refentry.xsl; end⋯Reverted necessary escaping of backslash, dot, and dash -out of the well-intentioned (but it now appears, -misguided) "marker" mechanism (introduced in the 1.72.0 -release) -- which made use of alternative "marker" -characters as internal representations of those -characters, and then replaced them just prior to -serialization -- and back into what's basically the -system that was used prior to the 1.69.0 release; that -is, into a part of stylesheet code that gets executed -at the beginning of processing -- before any other roff -markup up is. This change obviates the need for the -marker system. It also requires a lot less RAM during -processing (for large files, the marker mechanism -ending up requiring gigabytes of memory). - -Closes bug #1661177. Thanks to Scott Smedley for -providing a test case (the fvwm man page) that exposed -the problem with the marker mechanism. - -Also moved the mechanism for converting non-breaking -spaces back into the same area of the stylesheet code. - - -Michael(tm) Smith: lists.xslFixed problem with incorrect formatting of nested variablelist. -Closes bug #1650931. Thanks to Daniel "Eagle Eye" Leidert. - - -Michael(tm) Smith: lists.xslMake sure that all listitems in itemizedlist and orderedlist are -preceded by a blank line. This fixes a regression that occurred -when instances of the TP macro that were use in a previous -versions of the list-handling code were switched to RS/RE (because -TP doesn't support nesting). TP automatically generates a blank -line, but RS doesn't. So I added a .sp before each .RS - - -Michael(tm) Smith: block.xsl; inline.xsl; param.xweb; docbook.xsl; links.xsl; param.entMade a number of changes related to elements with -out-of-line content: - -- Added handling for mediaobject & inlinemediaobject. - Each imagedata, audiodata, or videodata element - within a mediaobject or inline mediaobject is now - treated as a "notesource" and so handled in much the - same way as links and annotation/alt/footnotes. - - That means a numbered marker is generated inline to - mark the place in the main flow where the imagedata, - audiodata, or videodata element occurs, and a - corresponding numbered endnote for it is generated in - the endnotes list at the end of the man page; the - endnote contains the URL from the fileref attribute - of the imagedata, audiodata, or videodata element. - - For mediobject and inlinemediaobject instances that - have a textobject child, the textobject is displayed - within the main text flow. - -- Renamed several man.link.* params to man.endnotes.*, - to reflect that fact that the endnotes list now - contains more than just links. Also did similar - renaming for a number of stylesheet-internal vars. - -- Added support for xlink:href (along with existing - support for the legacy ulink element). - -- Cleaned up and streamlined the endnotes-handling - code. It's still messy and klunky and the basic - mechanism it uses is very inefficent for documents - that contain a lot of notesources, but at least it's - a bit better than it was. - - - - -Eclipse -The following changes have been made to the - eclipse code - since the 1.72.0 release. - - -Mauritz Jeanson: MakefileFixed bug #1715093: Makefile for creating profiled version of eclipse.xsl added. - - -David Cramer: eclipse.xslAdded normalize-space around to avoid leading whitespace from appearing in the output if there's extra leading whitespace (e.g. <title> Foo</title>) in the source - - - - -JavaHelp -The following changes have been made to the - javahelp code - since the 1.72.0 release. - - -Mauritz Jeanson: javahelp.xslImplemented FR #1230233 (sorted index in javahelp). - - -Mauritz Jeanson: javahelp.xslAdded normalize-space() around titles and index entries to work around whitespace problems. -Added support for glossary and bibliography in toc and map files. - - - - -Roundtrip -The following changes have been made to the - roundtrip code - since the 1.72.0 release. - - -Steve Ball: blocks2dbk.xsl; wordml2normalise.xsl; normalise2sections.xsl; sections2blocks.⋯new stylesheets for better word processor support and easier maintenance - - -Steve Ball: template-pages.xml; dbk2wp.xsl; sections-spec.xmlfixed bugs - - - - -Params -The following changes have been made to the - params code - since the 1.72.0 release. - - -Mauritz Jeanson: htmlhelp.button.back.xml; htmlhelp.button.forward.xml; htmlhelp.button.zo⋯Modified refpurpose text. - - -Mauritz Jeanson: htmlhelp.map.file.xml; htmlhelp.force.map.and.alias.xml; htmlhelp.alias.f⋯Fixed typos, made some small changes. - - -Mauritz Jeanson: javahelp.encoding.xmlMoved declaration and documentation of javahelp.encoding from javahelp.xsl to the -regular "parameter machinery". - - -Mauritz Jeanson: generate.id.attributes.xmlAdded refpurpose text. - - -Mauritz Jeanson: annotation.js.xml; annotation.graphic.open.xml; annotation.graphic.close.⋯Added better refpurpose texts. - - -Michael(tm) Smith: chunker.output.cdata-section-elements.xml; chunker.output.standalone.xm⋯Fixed some broken formatting in source files for chunker.* params, -as pointed out by Dave Pawson. - - -Michael(tm) Smith: label.from.part.xmlChanged handling of reference auto-labeling such that reference -(when it appears at the component level) is now affected by the -label.from.part param, just as preface, chapter, and appendix. - - -Mauritz Jeanson: callout.graphics.extension.xmlClarified that 'extension' refers to file names. - - -Michael(tm) Smith: abstract.notitle.enabled.xmlAdded new param abstract.notitle.enabled. -If non-zero, in output of the abstract element on titlepages, -display of the abstract title is suppressed. -Because sometimes you really don't want or need that title -there... - - -Michael(tm) Smith: man.string.subst.map.xmlUpdated manpages string-substitute map to reflect fact that -because of another recent change to suppress bold markup in .SH -output, we no longer need to add a workaround for the accidental -uppercasing of roff escapes that occurred previously. - - -Jirka Kosek: margin.note.float.type.xml; title.font.family.xml; table.frame.border.color.x⋯Improved parameter metadata - - -Robert Stayton: profile.wordsize.xml; profile.audience.xmlAdd support for profiling on new attributes audience and wordsize. - - -Robert Stayton: callout.graphics.number.limit.xml; callout.graphics.extension.xmlAdded SVG graphics for fo output. - - -Robert Stayton: callout.icon.size.xmlSet size of callout graphics. - - -Jirka Kosek: default.units.xml; chunker.output.method.xml; toc.list.type.xml; output.inden⋯Updated parameter metadata to the new format. - - -Jirka Kosek: man.output.quietly.xml; title.font.family.xml; footnote.sep.leader.properties⋯Added type annotations into parameter definition files. - - -Robert Stayton: section.container.element.xmlSupport spans in sections for certain processors. - - -Robert Stayton: component.titlepage.properties.xmlEmpty attribute set for top level component titlepage block. -Allows setting a span on title info. - - -Jirka Kosek: bibliography.style.xmlAdded link to WiKi page with description of special markup needed for ISO690 biblioentries - - -Robert Stayton: make.year.ranges.xmlClarify that multiple year elements are required. - - -Robert Stayton: id.warnings.xmlTurn off id.warnings by default. - - -Jirka Kosek: bibliography.style.xmlAdded support for formatting biblioentries according to ISO690 citation style. -New bibliography style can be turned on by setting parameter bibliography.style to "iso690" -The code was provided by Jana Dvorakova - - -Robert Stayton: header.table.properties.xml; footer.table.properties.xmlSupport adding table properties to header and footer tables. - - - - -Highlighting -The following changes have been made to the - highlighting code - since the 1.72.0 release. - - -Jirka Kosek: c-hl.xml; xslthl-config.xmlAdded support for C language. Provided by Bruno Guegan. - - - - -Profiling -The following changes have been made to the - profiling code - since the 1.72.0 release. - - -Robert Stayton: profile-mode.xslAdd support for new profiling attributes audience and wordsize. - - - - -Lib -The following changes have been made to the - lib code - since the 1.72.0 release. - - -Michael(tm) Smith: lib.xwebChanged name of prepend-pad template to pad-string and twheeked so -it can do both right/left padding. - - - - -Tools -The following changes have been made to the - tools code - since the 1.72.0 release. - - -Michael(tm) Smith: bin; bin/docbook-xsl-updateDid some cleanup to the install.sh source and added a -docbook-xsl-update script to the docbook-xsl distro, the purpose -of which is to facilitate easy sync-up to the latest docbook-xsl -snapshot (by means of rsync). - - - - -XSL-Saxon -The following changes have been made to the - xsl-saxon code - since the 1.72.0 release. - - -Mauritz Jeanson: xalan27/src/com/nwalsh/xalan/Verbatim.java; xalan27/src/com/nwalsh/xalan/⋯Added modifications so that the new callout.icon.size parameter is taken into account. This -parameter is used for FO output (where SVG now is the default graphics format for callouts). - - -Mauritz Jeanson: saxon65/src/com/nwalsh/saxon/FormatCallout.java; xalan27/src/com/nwalsh/x⋯Added code for generating id attributes on callouts in HTML and FO output. -These patches enable cross-references to callouts placed by area coordinates. -It works for graphic, unicode and text callouts. -Part of fix for bug #1675513 (xref to area broken). - - -Michael(tm) Smith: saxon65/src/com/nwalsh/saxon/Website.java; xalan27/src/com/nwalsh/xalan⋯Copied over Website XSL Java extensions. - - - - -XSL-Xalan -The following changes have been made to the - xsl-xalan code - since the 1.72.0 release. - - -Michael(tm) Smith: Makefile; xalan2Turned off xalan2.jar build. This removes DocBook XSL -Java extensions support for versions of Xalan prior to -Xalan 2.7. If you are currently using the extensions -with an earlier version of Xalan, you need to upgrade -to Xalan 2.7. - - -Mauritz Jeanson: xalan27/src/com/nwalsh/xalan/Verbatim.java; xalan27/src/com/nwalsh/xalan/⋯Added modifications so that the new callout.icon.size parameter is taken into account. This -parameter is used for FO output (where SVG now is the default graphics format for callouts). - - -Mauritz Jeanson: saxon65/src/com/nwalsh/saxon/FormatCallout.java; xalan27/src/com/nwalsh/x⋯Added code for generating id attributes on callouts in HTML and FO output. -These patches enable cross-references to callouts placed by area coordinates. -It works for graphic, unicode and text callouts. -Part of fix for bug #1675513 (xref to area broken). - - -Michael(tm) Smith: saxon65/src/com/nwalsh/saxon/Website.java; xalan27/src/com/nwalsh/xalan⋯Copied over Website XSL Java extensions. - - - - - - -Release: 1.72.0 -This release includes important bug fixes and adds the following -significant feature changes: - - - Automatic sorting of glossary entries - - The HTML and FO stylesheets now support automatic sorting - of glossary entries. To enable glossary sorting, set - the value of the glossary.sort parameter - to 1 (by default, it’s value is - 0). When you enable glossary sorting, - glossentry elements within a glossary, - glossdiv, or glosslist are sorted on the - glossterm, using the current language setting. If you - don’t enable glossary sorting, then the order of - glossentry elements is left “as is†— that is, they - are not sorted but are instead just displayed in document - order. - - - - WordML renamed to Roundtrip, OpenOffice support added - - Stylesheets for “roundtrip†conversion between documents in - OpenOffice format (ODF) and DocBook XML have been added to the set - of stylesheets that formerly had the collective title - WordML, and that set of stylesheets has - been renamed to Roundtrip to better - reflect the actual scope and purpose of its contents. - So the DocBook XSL Stylesheets now support roundtrip - conversion (with certain limitations) of WordML, OpenOffice, and - Apple Pages documents to and from DocBook XML. - - - - Including QandASet questions in TOCs - - The HTML stylesheet now provides support for including - QandASet questions in the document TOC. To - enable display of questions in the document TOC, set - the value of the qanda.in.toc to - 1 (by default, it’s 0). When you - enable qanda.in.toc, then the generated - table of contents for a document will include - qandaset titles, qandadiv titles, and - question elements. The default value of zero - excludes them from the TOC. - - The qanda.in.toc parameter does - not affect any tables of contents that may be generated - within a qandaset or - qandadiv (only in the document TOC). - - - - - - Language identifier in man-page filenames and pathnames - - Added new parameter man.output.lang.in.name.enabled, which controls whether - a language identifier is included in man-page filenames and - pathnames. It works like this: - - If the value of man.output.lang.in.name.enabled is non-zero, - man-page files are output with a language identifier included in - their filenames or pathnames as follows: - - - if - man.output.subdirs.enabled is non-zero, - each file is output to, e.g., a - /$lang/man8/foo.8 pathname - - if - man.output.subdirs.enabled is zero, - each file is output with a foo.$lang.8 - filename - - - - - - index.page.number.properties property set - - For FO output, use the - index.page.number.properties to control - formatting of page numbers in index output — to (for - example) to display page numbers in index output in a - different color (to indicate that they are links). - - - - Crop marks in output from Antenna House XSL Formatter - - Support has been added for generating crop marks in - print/PDF output generated using Antenna House XSL Formatter - - - - More string-substitution hooks in manpages output - - The man.string.subst.map.local.pre - and man.string.subst.map.local.post - parameters have been added to enable easier control over - custom string substitutions. - - - - Moved verbatim properties to attribute-set - - The hardcoded properties used in verbatim elements (literallayout, - programlisting, screen) were moved to the verbatim.properties - attribute-set so they can be more easily customized. - - - - enhanced simple.xlink template - - Now the simple.xlink template in inline.xsl works with - cross reference elements xref and link as well. Also, more elements - call simple.xlink, which enables DB5 xlink functionality. - - - - - DocBook 5 compatibility - - Stylesheets now consistently support DocBook 5 attributes - (such as xml:id). Also, DocBook 5 info elements are now checked - along with other *info elements, and the use of name() function - was replaced by local-name() so it also matches on DocBook 5 elements. - These changes enable reusing the stylesheets with DocBook 5 - documents with minimal fixup. - - - - - HTML class attributes now handled in class.attribute mode - - The HTML class attributes were formerly hardcoded to the - element name. Now the class attribute is generated by applying - templates in class.attribute mode so class attribute names - can be customized. The default is still the element name. - - - - arabic-indic numbering enabled in autolabels - - Numbering of chapter, sections, and pages can now use - arabic-indic numbering when number format is set to 'arabicindic' or - to ١. - - - -The following is a detailed list of changes (not -including bug fixes) that have been made since the 1.71.1 -release. - - -Common -The following changes have been made to the - common code - since the 1.71.1 release. - - -Add support for arabicindic numbering to autolabel.format template.M: /trunk/xsl/common/labels.xsl - Robert Stayton - - -Finish support for @xml:id everywhere @id is used.M: /trunk/xsl/common/gentext.xsl; M: /trunk/xsl/common/titles.xsl - Robert Stayton - - -replace name() with local-name() in most cases.M: /trunk/xsl/common/l10n.xsl; M: /trunk/xsl/common/olink.xsl; M: /trunk/xsl/common/subtitles.xsl; M: /trunk/xsl/common/labels.xsl; M: /trunk/xsl/common/titles.xsl; M: /trunk/xsl/common/common.xsl - Robert Stayton - - -Add support for info.M: /trunk/xsl/common/subtitles.xsl; M: /trunk/xsl/common/labels.xsl; M: /trunk/xsl/common/titles.xsl; M: /trunk/xsl/common/common.xsl; M: /trunk/xsl/common/targets.xsl - Robert Stayton - - -Add utility template tabstyle to return the tabstyle from -any table element.M: /trunk/xsl/common/table.xsl - Robert Stayton - - - - - -FO -The following changes have been made to the - fo code - since the 1.71.1 release. - - -Add support for sorting glossary entriesM: /trunk/xsl/fo/param.xweb; M: /trunk/xsl/fo/param.ent; M: /trunk/xsl/fo/glossary.xsl - Robert Stayton - - -Add table.row.properties template to customize table rows.M: /trunk/xsl/fo/table.xsl - Robert Stayton - - -Moved all properties to attribute-sets so can be customized more easily.M: /trunk/xsl/fo/verbatim.xsl - Robert Stayton - - -Add index.page.number.properties attribute-set to format page numbers.M: /trunk/xsl/fo/autoidx.xsl - Robert Stayton - - -xref now supports xlink:href, using simple.xlink template.M: /trunk/xsl/fo/xref.xsl - Robert Stayton - - -Rewrote simple.xlink, and call it with all charseq templates.M: /trunk/xsl/fo/inline.xsl - Robert Stayton - - -Add simple.xlink processing to term and member elements.M: /trunk/xsl/fo/lists.xsl - Robert Stayton - - -Add support for crop marks in Antenna House.M: /trunk/xsl/fo/axf.xsl; M: /trunk/xsl/fo/pagesetup.xsl - Robert Stayton - - - - - -HTML -The following changes have been made to the - html code - since the 1.71.1 release. - - -Add support for sorting glossary entriesM: /trunk/xsl/html/glossary.xsl - Robert Stayton - - -Add support for qanda.in.toc to add qandaentry questions to document TOC.M: /trunk/xsl/html/autotoc.xsl; M: /trunk/xsl/html/param.xweb; M: /trunk/xsl/html/param.ent - Robert Stayton - - -add simple.xlink support to variablelist term and simplelist member.M: /trunk/xsl/html/lists.xsl - Robert Stayton - - -*.propagates.style now handled in class.attribute mode.M: /trunk/xsl/html/inline.xsl; M: /trunk/xsl/html/lists.xsl; M: /trunk/xsl/html/table.xsl; M: /trunk/xsl/html/block.xsl; M: /trunk/xsl/html/footnote.xsl - Robert Stayton - - -add class parameter to class.attribute mode to set default class.M: /trunk/xsl/html/html.xsl - Robert Stayton - - -Convert all class attributes to use the class.attribute mode -so class names can be customized more easily.M: /trunk/xsl/html/titlepage.xsl; M: /trunk/xsl/html/chunk-code.xsl; M: /trunk/xsl/html/division.xsl; M: /trunk/xsl/html/sections.xsl; M: /trunk/xsl/html/math.xsl; M: /trunk/xsl/html/block.xsl; M: /trunk/xsl/html/info.xsl; M: /trunk/xsl/html/footnote.xsl; M: /trunk/xsl/html/lists.xsl; M: /trunk/xsl/html/admon.xsl; M: /trunk/xsl/html/refentry.xsl; M: /trunk/xsl/html/qandaset.xsl; M: /trunk/xsl/html/graphics.xsl; M: /trunk/xsl/html/biblio.xsl; M: /trunk/xsl/html/task.xsl; M: /trunk/xsl/html/component.xsl; M: /trunk/xsl/html/glossary.xsl; M: /trunk/xsl/html/callout.xsl; M: /trunk/xsl/html/index.xsl; M: /trunk/xsl/html/synop.xsl; M: /trunk/xsl/html/verbatim.xsl; M: /trunk/xsl/html/ebnf.xsl - Robert Stayton - - -Add class.attribute mode to generate class attributes.M: /trunk/xsl/html/html.xsl - Robert Stayton - - -Added simple.xlink to most remaining inlines. -Changed class attributes to applying class.attributes mode.M: /trunk/xsl/html/inline.xsl - Robert Stayton - - -Changed xref template to use simple.xlink tempalte.M: /trunk/xsl/html/xref.xsl - Robert Stayton - - -Improve generate.html.title to work with link targets too.M: /trunk/xsl/html/html.xsl - Robert Stayton - - -Improved simple.xlink to support link and xref.M: /trunk/xsl/html/inline.xsl - Robert Stayton - - -Use new link.title.attribute now.M: /trunk/xsl/html/xref.xsl - Robert Stayton - - -Rewrote simple.xlink to handle linkend also. -Better computation of title attribute on link too.M: /trunk/xsl/html/inline.xsl - Robert Stayton - - -Handle Xalan quirk as special case.M: /trunk/xsl/html/db5strip.xsl - Robert Stayton - - -Add support for info.M: /trunk/xsl/html/admon.xsl; M: /trunk/xsl/html/autotoc.xsl; M: /trunk/xsl/html/lists.xsl; M: /trunk/xsl/html/refentry.xsl; M: /trunk/xsl/html/biblio.xsl; M: /trunk/xsl/html/qandaset.xsl; M: /trunk/xsl/html/component.xsl; M: /trunk/xsl/html/glossary.xsl; M: /trunk/xsl/html/division.xsl; M: /trunk/xsl/html/index.xsl; M: /trunk/xsl/html/sections.xsl; M: /trunk/xsl/html/table.xsl; M: /trunk/xsl/html/block.xsl - Robert Stayton - - -Fixed imagemaps so they work properly going from calspair coords -to HTML area coords.M: /trunk/xsl/html/graphics.xsl - Robert Stayton - - - - - -Manpages -The following changes have been made to the - manpages code - since the 1.71.1 release. - - -Added doc for man.output.lang.in.name.enabled parameter. This -checkin completes support for writing file/pathnames for man-pages -with $lang include in the names. Closes #1585967. knightly -accolades to Daniel Leidert for providing the feature request.M: /trunk/xsl/manpages/param.xweb; M: /trunk/xsl/manpages/param.ent - Michael(tm) Smith - - -Added new param man.output.lang.in.name.enabled, which -controls whether $LANG value is included in manpages -filenames and pathnames. It works like this: - -If the value of man.output.lang.in.name.enabled is non-zero, -man-page files are output with the $lang value included in -their filenames or pathnames as follows; - -- if man.output.subdirs.enabled is non-zero, each file is - output to, e.g., a /$lang/man8/foo.8 pathname - -- if man.output.subdirs.enabled is zero, each file is output - with a foo.$lang.8 filenameM: /trunk/xsl/manpages/docbook.xsl; M: /trunk/xsl/manpages/other.xsl; M: /trunk/xsl/manpages/utility.xsl - Michael(tm) Smith - - -Use "\e" instead of "\\" for backslash output, because the -groff docs say that's the correct thing to do; also because -testing (thanks, Paul Dubois) shows that "\\" doesn't always -work as expected; for example, "\\" within a table seems to -mess things up.M: /trunk/xsl/manpages/charmap.groff.xsl - Michael(tm) Smith - - -Added the man.string.subst.map.local.pre and -man.string.subst.map.local.post parameters. Those parameters -enable local additions and changes to string-substitution mappings -without the need to change the value of man.string.subst.map -parameter (which is for standard system mappings). Closes -#1456738. Thanks to Sam Steingold for constructing a true -stylesheet torture test (the clisp docs) that exposed the need for -these params.M: /trunk/xsl/manpages/param.xweb; M: /trunk/xsl/manpages/param.ent; M: /trunk/xsl/manpages/other.xsl - Michael(tm) Smith - - -Added the Markup element to the list of elements that get output -in bold. Thanks to Eric S. Raymond.M: /trunk/xsl/manpages/inline.xsl - Michael(tm) Smith - - -Replaced all dots in roff requests with U+2302 ("house" -character), and added escaping in output for all instances of dot -that are not in roff requests. This fixes the problem case where a -string beginning with a dot (for example, the string ".bashrc") -might occur at the beginning of a line in output, in which case -would mistakenly get interpreted as a roff request. Thanks to Eric -S. Raymond for pushing to fix this.M: /trunk/xsl/manpages/table.xsl; M: /trunk/xsl/manpages/synop.xsl; M: /trunk/xsl/manpages/block.xsl; M: /trunk/xsl/manpages/info.xsl; M: /trunk/xsl/manpages/lists.xsl; M: /trunk/xsl/manpages/refentry.xsl; M: /trunk/xsl/manpages/links.xsl; M: /trunk/xsl/manpages/other.xsl; M: /trunk/xsl/manpages/utility.xsl - Michael(tm) Smith - - -Made change to ensure that list content nested in -itemizedlist and orderedlist instances is properly indented. This -is a switch from using .TP to format those lists to using .RS/.RE -to format them instead (because .TP does not allow nesting). Closes bug #1602616. -Thanks to Daniel Leidert.M: /trunk/xsl/manpages/lists.xsl - Michael(tm) Smith - - - - - -Params -The following changes have been made to the - params code - since the 1.71.1 release. - - -Added doc for man.output.lang.in.name.enabled parameter. This -checkin completes support for writing file/pathnames for man-pages -with $lang include in the names. Closes #1585967. knightly -accolades to Daniel Leidert for providing the feature request.A: /trunk/xsl/params/man.output.lang.in.name.enabled.xml - Michael(tm) Smith - - -Added new param man.output.lang.in.name.enabled, which -controls whether $LANG value is included in manpages -filenames and pathnames. It works like this: - -If the value of man.output.lang.in.name.enabled is non-zero, -man-page files are output with the $lang value included in -their filenames or pathnames as follows; - -- if man.output.subdirs.enabled is non-zero, each file is - output to, e.g., a /$lang/man8/foo.8 pathname - -- if man.output.subdirs.enabled is zero, each file is output - with a foo.$lang.8 filenameM: /trunk/xsl/manpages/docbook.xsl; M: /trunk/xsl/manpages/other.xsl; M: /trunk/xsl/manpages/utility.xsl - Michael(tm) Smith - - -Added the man.string.subst.map.local.pre and -man.string.subst.map.local.post parameters. Those parameters -enable local additions and changes to string-substitution mappings -without the need to change the value of man.string.subst.map -parameter (which is for standard system mappings). Closes -#1456738. Thanks to Sam Steingold for constructing a true -stylesheet torture test (the clisp docs) that exposed the need for -these params.A: /trunk/xsl/params/man.string.subst.map.local.post.xml; A: /trunk/xsl/params/man.string.subst.map.local.pre.xml; M: /trunk/xsl/params/man.string.subst.map.xml - Michael(tm) Smith - - -Add index.page.number.properties by default.M: /trunk/xsl/params/xep.index.item.properties.xml - Robert Stayton - - -Added index.page.number.properties to allow customizations of page numbers in indexes.A: /trunk/xsl/params/index.page.number.properties.xml - Robert Stayton - - -Move show-destination="replace" property from template to attribute-set -so it can be customized.M: /trunk/xsl/params/olink.properties.xml - Robert Stayton - - -Add support for sorting glossary entriesA: /trunk/xsl/params/glossary.sort.xml - Robert Stayton - - -Add option to include qanda in tables of contents.A: /trunk/xsl/params/qanda.in.toc.xml - Robert Stayton - - -Moved all properties to attribute-sets so can be customized more easily.M: /trunk/xsl/params/verbatim.properties.xml - Robert Stayton - - - - - -Template -The following changes have been made to the - template code - since the 1.71.1 release. - - -Added workaround for Xalan bug: use for-each and copy instead of copy-of (#1604770).M: /trunk/xsl/template/titlepage.xsl - Mauritz Jeanson - - - - - -Roundtrip -The following changes have been made to the - roundtrip code - since the 1.71.1 release. - - -rename to roundtrip, add OpenOffice supportM: /trunk/xsl/roundtrip/docbook-pages.xsl; M: /trunk/xsl/roundtrip/specifications.xml; A: /trunk/xsl/roundtrip/dbk2ooo.xsl; M: /trunk/xsl/roundtrip/docbook.xsl; A: /trunk/xsl/roundtrip/dbk2pages.xsl; M: /trunk/xsl/roundtrip/template.xml; A: /trunk/xsl/roundtrip/dbk2wordml.xsl; A: /trunk/xsl/roundtrip/dbk2wp.xsl; M: /trunk/xsl/roundtrip/template.dot; M: /trunk/xsl/roundtrip/wordml-final.xsl - Steve Ball - - - - - - -Release: 1.71.1 -This is a minor update to the 1.71.0 release. Along with a -number of bug fixes, it includes two feature changes: - - - - Added support for profiling based on xml:lang and status attributes. - - - Added initial support in manpages output for - footnote, annotation, and alt - instances. Basically, they all now get handled the same way - ulink instances are. They are treated as a class as - "note sources": A numbered marker is generated at the place in the - main text flow where they occur, then their contents are displayed - in an endnotes section at the end of the man page. - - - - - -Common -The following changes have been made to the - common code - since the 1.71.1 release. - - -For backward compatability autoidx-ng.xsl is invoking "kosek" indexing method again.D: /trunk/xsl/common/autoidx-ng.xsl - Jirka Kosek - - -Add support for Xalan generating a root xml:base like saxon.M: /trunk/xsl/common/stripns.xsl - Robert Stayton - - - - - -FO -The following changes have been made to the - fo code - since the 1.71.1 release. - - -For backward compatability autoidx-ng.xsl is invoking "kosek" indexing method again.M: /trunk/xsl/fo/autoidx-ng.xsl; M: /trunk/xsl/fo/autoidx-kosek.xsl - Jirka Kosek - - -Add support for Xalan to add root node xml:base for db5 docs.M: /trunk/xsl/fo/docbook.xsl - Robert Stayton - - -Added support for profiling based on xml:lang and status attributes.M: /trunk/xsl/fo/param.xweb; M: /trunk/xsl/fo/param.ent - Jirka Kosek - - - - - -HTML -The following changes have been made to the - html code - since the 1.71.1 release. - - -For backward compatability autoidx-ng.xsl is invoking "kosek" indexing method again.M: /trunk/xsl/html/autoidx-ng.xsl; M: /trunk/xsl/html/autoidx-kosek.xsl - Jirka Kosek - - -Add support for Xalan to add root node xml:base for db5 docs.M: /trunk/xsl/html/chunk-code.xsl; M: /trunk/xsl/html/docbook.xsl - Robert Stayton - - -Added support for profiling based on xml:lang and status attributes.M: /trunk/xsl/html/param.xweb; M: /trunk/xsl/html/param.ent - Jirka Kosek - - -Made changes in namespace declarations to prevent xmllint's -canonicalizer from treating them as relative namespace URIs. - - - Changed xmlns:k="java:com.isogen.saxoni18n.Saxoni18nService" - to xmlns:k="http://www.isogen.com/functions/com.isogen.saxoni18n.Saxoni18nService"; - Saxon accepts either form - (see http://www.saxonica.com/documentation/extensibility/functions.html); - to Saxon, "the part of the URI before the final '/' is immaterial". - - - Changed, e.g. xmlns:xverb="com.nwalsh.xalan.Verbatim" to - xmlns:xverb="xalan://com.nwalsh.xalan.Verbatim"; Xalan accepts - either form - (see http://xml.apache.org/xalan-j/extensions.html#java-namespace-declare); - just as Saxon does, it will "simply use the string to the - right of the rightmost forward slash as the Java class name". - - - Changed xmlns:xalanredirect="org.apache.xalan.xslt.extensions.Redirect" - to xmlns:redirect="http://xml.apache.org/xalan/redirect", and - adjusted associated code to make the current Xalan redirect spec. - (see http://xml.apache.org/xalan-j/apidocs/org/apache/xalan/lib/Redirect.html)M: /trunk/xsl/html/oldchunker.xsl; M: /trunk/xsl/html/chunker.xsl; M: /trunk/xsl/html/graphics.xsl; M: /trunk/xsl/html/callout.xsl; M: /trunk/xsl/html/autoidx-kimber.xsl; M: /trunk/xsl/html/autoidx-kosek.xsl; M: /trunk/xsl/html/table.xsl; M: /trunk/xsl/html/verbatim.xsl - Michael(tm) Smith - - -Added the html.append and chunk.append parameters. By default, the -value of both is empty; but the internal DocBook XSL stylesheets -build sets their value to "<xsl:text>&#x0a;</xsl:text>", in order -to ensure that all files in the docbook-xsl-doc package end in a -newline character. (Because diff and some other tools may emit -error messages and/or not behave as expected when processing -files that are not newline-terminated.)M: /trunk/xsl/html/chunk-common.xsl; M: /trunk/xsl/html/titlepage.xsl; M: /trunk/xsl/html/param.xweb; M: /trunk/xsl/html/docbook.xsl; M: /trunk/xsl/html/graphics.xsl; M: /trunk/xsl/html/param.ent - Michael(tm) Smith - - - - - -Highlighting -The following changes have been made to the - highlighting code - since the 1.71.1 release. - - -Added license informationM: /trunk/xsl/highlighting/delphi-hl.xml; M: /trunk/xsl/highlighting/myxml-hl.xml; M: /trunk/xsl/highlighting/php-hl.xml; M: /trunk/xsl/highlighting/m2-hl.xml; M: /trunk/xsl/highlighting/ini-hl.xml; M: /trunk/xsl/highlighting/xslthl-config.xml; M: /trunk/xsl/highlighting/java-hl.xml - Jirka Kosek - - - - - -Manpages -The following changes have been made to the - manpages code - since the 1.71.1 release. - - -Added initial support in manpages output for footnote, annotation, -and alt instances. Basically, they all now get handled the same -way ulink instances are. They are treated as a class as "note -sources": A numbered marker is generated at the place in the main -text flow where they occur, then their contents are displayed in -an endnotes section at the end of the man page (currently titled -REFERENCES, for English output, but will be changed to NOTES). - -This support is not yet complete. It works for most "normal" -cases, but probably mishandles a good number of cases. More -testing will be needed to expose the problems. It may well also -introduce some bugs and regressions in other areas, including -basic paragraph handling, handling of "mixed block" content, -handling of other indented content, and handling of authorblurb -and personblurb in the AUTHORS section.M: /trunk/xsl/manpages/table.xsl; M: /trunk/xsl/manpages/block.xsl; M: /trunk/xsl/manpages/docbook.xsl; M: /trunk/xsl/manpages/links.xsl; M: /trunk/xsl/manpages/other.xsl; M: /trunk/xsl/manpages/utility.xsl - Michael(tm) Smith - - - - - -Params -The following changes have been made to the - params code - since the 1.71.1 release. - - -Added support for profiling based on xml:lang and status attributes.A: /trunk/xsl/params/profile.status.xml - Jirka Kosek - - -Added the html.append and chunk.append parameters. By default, the -value of both is empty; but the internal DocBook XSL stylesheets -build sets their value to "<xsl:text>&#x0a;</xsl:text>", in order -to ensure that all files in the docbook-xsl-doc package end in a -newline character. (Because diff and some other tools may emit -error messages and/or not behave as expected when processing -files that are not newline-terminated.)A: /trunk/xsl/params/html.append.xml; A: /trunk/xsl/params/chunk.append.xml - Michael(tm) Smith - - - - - -Profiling -The following changes have been made to the - profiling code - since the 1.71.1 release. - - -Added support for profiling based on xml:lang and status attributes.M: /trunk/xsl/profiling/profile.xsl; M: /trunk/xsl/profiling/profile-mode.xsl - Jirka Kosek - - - - - - - -Release: 1.71.0 -This is mainly a bug fix release, but it also includes two -significant feature changes: - - - Highlighting support added - - The stylesheets now include support for source-code - highlighting in output of programlisting instances (controlled - through the highlight.source - parameter). The Java-based implementation requires Saxon and - makes use of MichalMolhanec’s XSLTHL. More details are available at Jirka Kosek’s - website:
The support is currently limited to highlighting - of XML, Java, PHP, Delphi, Modula-2 sources, and INI - files.
-
-
- - Changes to autoindexing - - The templates that handle alternative indexing methods - were reworked to avoid errors produced by certain processors not - being able to tolerate the presence of unused functions. With - this release, none of the code for the 'kimber' or 'kosek' - methods is included in the default stylesheets. In order to use - one of those methods, your customization layer must import one - of the optional stylesheet modules: - - - - html/autoidx-kosek.xsl - - - html/autoidx-kimber.xsl - - - fo/autoidx-kosek.xsl - - - fo/autoidx-kimber.xsl - - - See the index.method parameter - reference page for more information. - - Two other changes to note: - - - The default indexing method now can handle accented - characters in latin-based alphabets, not just English. This - means accented latin letters will group and sort with their - unaccented counterpart. - - - The default value for the - index.method parameter was changed - from 'english' to 'basic' because now the default method can - handle latin-based alphabets, not just English. - - - - - -
-The following is a list of changes that have -been made since the 1.70.1 release.
- - -Common -The following changes have been made to the - common code - since the 1.70.1 release. - - - -Added reference.autolabel parameter for controlling labels on -reference output.M: /trunk/xsl/common/labels.xsl - Michael(tm) Smith - - -Support rows that are *completely* overlapped by the preceding rowM: /trunk/xsl/common/table.xsl - Norman Walsh - - -New modules for supporting indexing extensions.A: /trunk/xsl/common/autoidx-kimber.xsl; A: /trunk/xsl/common/autoidx-kosek.xsl - Robert Stayton - - -Support startinglinenumber on orderedlistM: /trunk/xsl/common/common.xsl - Norman Walsh - - - - - -Extensions -The following changes have been made to the - extensions code - since the 1.70.1 release. - - -Completely reworked extensions build system; now uses NetBeans and antD: /trunk/xsl/extensions/xalan27/.cvsignore; A: /trunk/xsl/extensions/saxon65/nbproject; A: /trunk/xsl/extensions/saxon65/nbproject/project.properties; D: /trunk/xsl/extensions/prj.el; A: /trunk/xsl/extensions/saxon65/src; A: /trunk/xsl/extensions/xalan2/src/com; M: /trunk/xsl/extensions/xalan2/src/com/nwalsh/xalan/Text.java; A: /trunk/xsl/extensions/saxon65/nbproject/project.xml; D: /trunk/xsl/extensions/build.xml; A: /trunk/xsl/extensions/saxon65/build.xml; A: /trunk/xsl/extensions/xalan2/nbproject/genfiles.properties; A: /trunk/xsl/extensions/saxon65; D: /trunk/xsl/extensions/xalan2/com; M: /trunk/xsl/extensions/xalan2/src/com/nwalsh/xalan/Func.java; A: /trunk/xsl/extensions/xalan2/test; A: /trunk/xsl/extensions/saxon65/src/com; A: /trunk/xsl/extensions/xalan2/nbproject/build-impl.xml; A: /trunk/xsl/extensions/xalan2/nbproject; A: /trunk/xsl/extensions/xalan2/src; A: /trunk/xsl/extensions/xalan2/nbproject/project.properties; D: /trunk/xsl/extensions/.cvsignore; M: /trunk/xsl/extensions/Makefile; D: /trunk/xsl/extensions/saxon8; A: /trunk/xsl/extensions/saxon65/nbproject/genfiles.properties; A: /trunk/xsl/extensions/xalan2/nbproject/project.xml; A: /trunk/xsl/extensions/saxon65/test; M: /trunk/xsl/extensions/xalan2/src/com/nwalsh/xalan/Verbatim.java; A: /trunk/xsl/extensions/xalan2/build.xml; M: /trunk/xsl/extensions/xalan2; D: /trunk/xsl/extensions/saxon643; A: /trunk/xsl/extensions/saxon65/nbproject/build-impl.xml - Norman Walsh - - - - - -FO -The following changes have been made to the - fo code - since the 1.70.1 release. - - - -xsl:sort lang attribute now uses two-char substring of lang attribute.M: /trunk/xsl/fo/autoidx-kimber.xsl - Robert Stayton - - - -Support titlecase "Java", "Perl", and "IDL" as values for the -language attribute on classsynopsis, etc. (instead of just -lowercase "java", "perl", and "idl"). Also support "c++" and "C++" -(instead of just "cpp"). - -Affects HTML, FO, and manpages output. Closes bug 1552332. Thanks -to "Brian A. Vanderburg II".M: /trunk/xsl/fo/synop.xsl - Michael(tm) Smith - - - -Added support for the reference.autolabel param in (X)HTML and FO -output.M: /trunk/xsl/fo/param.xweb; M: /trunk/xsl/fo/param.ent - Michael(tm) Smith - - - -Support rows that are *completely* overlapped by the preceding rowM: /trunk/xsl/fo/table.xsl - Norman Walsh - - - -Rearranged templates for the 3 indexing methods -and changed method named 'english' to 'basic'.M: /trunk/xsl/fo/autoidx.xsl - Robert Stayton - - -New modules for supporting indexing extensions.A: /trunk/xsl/fo/autoidx-kimber.xsl; A: /trunk/xsl/fo/autoidx-kosek.xsl - Robert Stayton - - - -Turn off blank-body for fop1.extensions too since fop 0.92 -does not support it either.M: /trunk/xsl/fo/pagesetup.xsl - Robert Stayton - - - -Add Xalan variant to test for exslt:node-set function. -Xalan can use function named node-set(), but doesn't -recognize it using function-available().M: /trunk/xsl/fo/autoidx.xsl - Robert Stayton - - - -Added support to FO stylesheets for handling instances of Org -where it occurs outside of *info content. In HTML stylesheets, -moved handling of Org out of info.xsl and into inline.xsl. In both -FO and HTML stylesheets, added support for correctly processing -Affiliation and Jobtitle.M: /trunk/xsl/fo/inline.xsl - Michael(tm) Smith - - -Don't output punctuation between Refname and Refpurpose if -Refpurpose is empty. Also corrected handling of Refsect2/title -instances, and removed some debugging stuff that was generated in -manpages output to mark the ends of sections.M: /trunk/xsl/fo/refentry.xsl - Michael(tm) Smith - - -Added new email.delimiters.enabled param. If non-zero (the -default), delimiters are generated around e-mail addresses (output -of the email element). If zero, the delimiters are suppressed.M: /trunk/xsl/fo/inline.xsl; M: /trunk/xsl/fo/param.xweb; M: /trunk/xsl/fo/param.ent - Michael(tm) Smith - - - -Initial support of syntax highlighting of programlistings.M: /trunk/xsl/fo/param.ent; M: /trunk/xsl/fo/param.xweb; A: /trunk/xsl/fo/highlight.xsl; M: /trunk/xsl/fo/verbatim.xsl - Jirka Kosek - - -Chapter after preface should restart numbering of pages.M: /trunk/xsl/fo/pagesetup.xsl - Jirka Kosek - - - - - -HTML -The following changes have been made to the - html code - since the 1.70.1 release. - - - -xsl:sort lang attribute now uses two-char substring of lang attribute.M: /trunk/xsl/html/autoidx-kimber.xsl - Robert Stayton - - -Support titlecase "Java", "Perl", and "IDL" as values for the -language attribute on classsynopsis, etc. (instead of just -lowercase "java", "perl", and "idl"). Also support "c++" and "C++" -(instead of just "cpp"). - -Affects HTML, FO, and manpages output. Closes bug 1552332. Thanks -to "Brian A. Vanderburg II".M: /trunk/xsl/html/synop.xsl - Michael(tm) Smith - - - -Added support for the reference.autolabel param in (X)HTML and FO -output.M: /trunk/xsl/html/param.xweb; M: /trunk/xsl/html/param.ent - Michael(tm) Smith - - -Support rows that are *completely* overlapped by the preceding rowM: /trunk/xsl/html/table.xsl - Norman Walsh - - - -Rearranged templates for the 3 indexing methods -and changed method named 'english' to 'basic'.M: /trunk/xsl/html/autoidx.xsl - Robert Stayton - - -New modules for supporting indexing extensions.A: /trunk/xsl/html/autoidx-kimber.xsl; A: /trunk/xsl/html/autoidx-kosek.xsl - Robert Stayton - - - -Added several new HTML parameters for controlling appearance of -content on HTML title pages: - -contrib.inline.enabled: - If non-zero (the default), output of the contrib element is - displayed as inline content rather than as block content. - -othercredit.like.author.enabled: - If non-zero, output of the othercredit element on titlepages is - displayed in the same style as author and editor output. If zero - (the default), othercredit output is displayed using a style - different than that of author and editor. - -blurb.on.titlepage.enabled: - If non-zero, output from authorblurb and personblurb elements is - displayed on title pages. If zero (the default), output from - those elements is suppressed on title pages (unless you are - using a titlepage customization that causes them to be included). - -editedby.enabled - If non-zero (the default), a localized Edited by heading is - displayed above editor names in output of the editor element.M: /trunk/xsl/html/titlepage.xsl; M: /trunk/xsl/html/param.xweb; M: /trunk/xsl/html/param.ent - Michael(tm) Smith - - - -Add Xalan variant to test for exslt:node-set function. -Xalan can use function named node-set(), but doesn't -recognize it using function-available().M: /trunk/xsl/html/autoidx.xsl - Robert Stayton - - - -Added support to FO stylesheets for handling instances of Org -where it occurs outside of *info content. In HTML stylesheets, -moved handling of Org out of info.xsl and into inline.xsl. In both -FO and HTML stylesheets, added support for correctly processing -Affiliation and Jobtitle.M: /trunk/xsl/html/inline.xsl; M: /trunk/xsl/html/info.xsl - Michael(tm) Smith - - -Don't output punctuation between Refname and Refpurpose if -Refpurpose is empty. Also corrected handling of Refsect2/title -instances, and removed some debugging stuff that was generated in -manpages output to mark the ends of sections.M: /trunk/xsl/html/refentry.xsl - Michael(tm) Smith - - -Added new email.delimiters.enabled param. If non-zero (the -default), delimiters are generated around e-mail addresses (output -of the email element). If zero, the delimiters are suppressed.M: /trunk/xsl/html/inline.xsl; M: /trunk/xsl/html/param.xweb; M: /trunk/xsl/html/param.ent - Michael(tm) Smith - - - -Added qanda.nested.in.toc param. Default value is zero. If -non-zero, instances of "nested" Qandaentry (ones that are children -of Answer elements) are displayed in the TOC. Closes patch 1509018 -(from Daniel Leidert). Currently on affects HTML output (no patch -for FO output provided).M: /trunk/xsl/html/param.xweb; M: /trunk/xsl/html/param.ent; M: /trunk/xsl/html/qandaset.xsl - Michael(tm) Smith - - - - -Improved handling of relative locations generated filesM: /trunk/xsl/html/html.xsl - Jirka Kosek - - - -Initial support of syntax highlighting of programlistings.M: /trunk/xsl/html/param.ent; M: /trunk/xsl/html/param.xweb; A: /trunk/xsl/html/highlight.xsl; M: /trunk/xsl/html/verbatim.xsl - Jirka Kosek - - -Support orgM: /trunk/xsl/html/info.xsl - Norman Walsh - - -Support personM: /trunk/xsl/html/inline.xsl - Norman Walsh - - -Support $keep.relative.image.uris also when chunkingM: /trunk/xsl/html/chunk-code.xsl - Jirka Kosek - - - - - -Highlighting -The following changes have been made to the - highlighting code - since the 1.70.1 release. - - - -Initial support of syntax highlighting of programlistings.A: /trunk/xsl/highlighting/php-hl.xml; A: /trunk/xsl/highlighting/common.xsl; A: /trunk/xsl/highlighting/delphi-hl.xml; A: /trunk/xsl/highlighting/myxml-hl.xml; A: /trunk/xsl/highlighting/m2-hl.xml; A: /trunk/xsl/highlighting/ini-hl.xml; A: /trunk/xsl/highlighting/xslthl-config.xml; A: /trunk/xsl/highlighting/java-hl.xml - Jirka Kosek - - - - - -Manpages -The following changes have been made to the - manpages code - since the 1.70.1 release. - - - -Suppress footnote markers and output warning that footnotes are -not yet supported.M: /trunk/xsl/manpages/docbook.xsl; M: /trunk/xsl/manpages/links.xsl; M: /trunk/xsl/manpages/other.xsl - Michael(tm) Smith - - - -Handle instances of address/otheraddr/ulink in author et al in the -same way as email instances; that is, display them on the same -linke as the author, editor, etc., name.M: /trunk/xsl/manpages/info.xsl - Michael(tm) Smith - - -Don't number or link-list any Ulink instance whose string value is -identical to the value of its url attribute. Just display it inline.M: /trunk/xsl/manpages/links.xsl - Michael(tm) Smith - - - -Don't output punctuation between Refname and Refpurpose if -Refpurpose is empty. Also corrected handling of Refsect2/title -instances, and removed some debugging stuff that was generated in -manpages output to mark the ends of sections.M: /trunk/xsl/manpages/refentry.xsl - Michael(tm) Smith - - -Added new email.delimiters.enabled param. If non-zero (the -default), delimiters are generated around e-mail addresses (output -of the email element). If zero, the delimiters are suppressed.M: /trunk/xsl/manpages/param.xweb; M: /trunk/xsl/manpages/param.ent - Michael(tm) Smith - - - -In manpages output, if the last/nearest *info element for -particular Refentry has multiple Copyright and/or Legalnotice -children, process them all (not just the first ones). Closes bug -1524576. Thanks to Sam Steingold for the report and to Daniel -Leidert for providing a patch.M: /trunk/xsl/manpages/info.xsl - Michael(tm) Smith - - - - - - -Params -The following changes have been made to the - params code - since the 1.70.1 release. - - -Added reference.autolabel parameter for controlling labels on -reference output.A: /trunk/xsl/params/reference.autolabel.xml - Michael(tm) Smith - - -Added namespace declarations to document elements for all param files.M: /trunk/xsl/params/toc.line.properties.xml; M: /trunk/xsl/params/title.font.family.xml; M: /trunk/xsl/params/component.label.includes.part.label.xml; M: /trunk/xsl/params/refentry.manual.profile.xml; M: /trunk/xsl/params/orderedlist.properties.xml; M: /trunk/xsl/params/olink.pubid.xml; M: /trunk/xsl/params/informalexample.properties.xml; M: /trunk/xsl/params/appendix.autolabel.xml; M: /trunk/xsl/params/htmlhelp.show.toolbar.text.xml; M: /trunk/xsl/params/index.on.role.xml; M: /trunk/xsl/params/htmlhelp.button.jump2.url.xml; M: /trunk/xsl/params/variablelist.term.separator.xml; M: /trunk/xsl/params/para.propagates.style.xml; M: /trunk/xsl/params/html.stylesheet.xml; M: /trunk/xsl/params/qanda.nested.in.toc.xml; M: /trunk/xsl/params/annotation.css.xml; M: /trunk/xsl/params/funcsynopsis.style.xml; M: /trunk/xsl/params/htmlhelp.encoding.xml; M: /trunk/xsl/params/footer.content.properties.xml; M: /trunk/xsl/params/verbatim.properties.xml; M: /trunk/xsl/params/autotoc.label.in.hyperlink.xml; M: /trunk/xsl/params/body.margin.top.xml; M: /trunk/xsl/params/bibliography.numbered.xml; M: /trunk/xsl/params/figure.properties.xml; M: /trunk/xsl/params/variablelist.max.termlength.xml; M: /trunk/xsl/params/table.cell.border.style.xml; M: /trunk/xsl/params/htmlhelp.button.options.xml; M: /trunk/xsl/params/preferred.mediaobject.role.xml; M: /trunk/xsl/params/htmlhelp.chm.xml; M: /trunk/xsl/params/man.charmap.subset.profile.xml; M: /trunk/xsl/params/qanda.title.level3.properties.xml; M: /trunk/xsl/params/page.width.xml; M: /trunk/xsl/params/firstterm.only.link.xml; M: /trunk/xsl/params/section.level6.properties.xml; M: /trunk/xsl/params/htmlhelp.button.locate.xml; M: /trunk/xsl/params/chunk.sections.xml; M: /trunk/xsl/params/use.local.olink.style.xml; M: /trunk/xsl/params/refentry.date.profile.enabled.xml; M: /trunk/xsl/params/refentry.version.suppress.xml; M: /trunk/xsl/params/refentry.generate.title.xml; M: /trunk/xsl/params/punct.honorific.xml; M: /trunk/xsl/params/column.gap.index.xml; M: /trunk/xsl/params/body.start.indent.xml; M: /trunk/xsl/params/crop.mark.width.xml; M: /trunk/xsl/params/refentry.version.profile.enabled.xml; M: /trunk/xsl/params/superscript.properties.xml; M: /trunk/xsl/params/chunker.output.doctype-public.xml; M: /trunk/xsl/params/saxon.character.representation.xml; M: /trunk/xsl/params/saxon.linenumbering.xml; M: /trunk/xsl/params/shade.verbatim.style.xml; M: /trunk/xsl/params/annotate.toc.xml; M: /trunk/xsl/params/profile.attribute.xml; M: /trunk/xsl/params/callout.graphics.number.limit.xml; M: /trunk/xsl/params/profile.arch.xml; M: /trunk/xsl/params/saxon.tablecolumns.xml; M: /trunk/xsl/params/glossterm.auto.link.xml; M: /trunk/xsl/params/default.units.xml; M: /trunk/xsl/params/qanda.title.level1.properties.xml; M: /trunk/xsl/params/list.block.spacing.xml; M: /trunk/xsl/params/section.level4.properties.xml; M: /trunk/xsl/params/spacing.paras.xml; M: /trunk/xsl/params/column.count.index.xml; M: /trunk/xsl/params/dingbat.font.family.xml; M: /trunk/xsl/params/citerefentry.link.xml; M: /trunk/xsl/params/keep.relative.image.uris.xml; M: /trunk/xsl/params/ulink.footnotes.xml; M: /trunk/xsl/params/prefer.internal.olink.xml; M: /trunk/xsl/params/refentry.title.properties.xml; M: /trunk/xsl/params/variablelist.term.break.after.xml; M: /trunk/xsl/params/use.id.function.xml; M: /trunk/xsl/params/callout.unicode.start.character.xml; M: /trunk/xsl/params/column.gap.titlepage.xml; M: /trunk/xsl/params/editedby.enabled.xml; M: /trunk/xsl/params/funcsynopsis.tabular.threshold.xml; M: /trunk/xsl/params/use.extensions.xml; M: /trunk/xsl/params/index.preferred.page.properties.xml; M: /trunk/xsl/params/man.th.extra3.max.length.xml; M: /trunk/xsl/params/column.gap.back.xml; M: /trunk/xsl/params/tex.math.delims.xml; M: /trunk/xsl/params/article.appendix.title.properties.xml; M: /trunk/xsl/params/ulink.target.xml; M: /trunk/xsl/params/suppress.header.navigation.xml; M: /trunk/xsl/params/olink.resolver.xml; M: /trunk/xsl/params/admon.textlabel.xml; M: /trunk/xsl/params/procedure.properties.xml; M: /trunk/xsl/params/blurb.on.titlepage.enabled.xml; M: /trunk/xsl/params/section.level2.properties.xml; M: /trunk/xsl/params/column.gap.front.xml; M: /trunk/xsl/params/margin.note.title.properties.xml; M: /trunk/xsl/params/glossary.collection.xml; M: /trunk/xsl/params/admon.graphics.xml; M: /trunk/xsl/params/current.docid.xml; M: /trunk/xsl/params/qanda.inherit.numeration.xml; M: /trunk/xsl/params/table.cell.padding.xml; M: /trunk/xsl/params/preface.autolabel.xml; M: /trunk/xsl/params/man.th.extra3.suppress.xml; M: /trunk/xsl/params/wordml.template.xml; M: /trunk/xsl/params/htmlhelp.use.hhk.xml; M: /trunk/xsl/params/textinsert.extension.xml; M: /trunk/xsl/params/ebnf.table.bgcolor.xml; M: /trunk/xsl/params/refentry.source.fallback.profile.xml; M: /trunk/xsl/params/body.font.master.xml; M: /trunk/xsl/params/l10n.gentext.default.language.xml; M: /trunk/xsl/params/list.block.properties.xml; M: /trunk/xsl/params/refentry.source.name.suppress.xml; M: /trunk/xsl/params/htmlhelp.hhp.window.xml; M: /trunk/xsl/params/sidebar.properties.xml; M: /trunk/xsl/params/tex.math.file.xml; M: /trunk/xsl/params/man.justify.xml; M: /trunk/xsl/params/subscript.properties.xml; M: /trunk/xsl/params/column.count.front.xml; M: /trunk/xsl/params/index.term.separator.xml; M: /trunk/xsl/params/biblioentry.properties.xml; M: /trunk/xsl/params/biblioentry.item.separator.xml; M: /trunk/xsl/params/htmlhelp.button.home.url.xml; M: /trunk/xsl/params/column.count.body.xml; M: /trunk/xsl/params/suppress.navigation.xml; M: /trunk/xsl/params/htmlhelp.remember.window.position.xml; M: /trunk/xsl/params/htmlhelp.hhc.section.depth.xml; M: /trunk/xsl/params/xref.with.number.and.title.xml; M: /trunk/xsl/params/make.year.ranges.xml; M: /trunk/xsl/params/region.before.extent.xml; M: /trunk/xsl/params/xref.label-page.separator.xml; M: /trunk/xsl/params/html.longdesc.link.xml; M: /trunk/xsl/params/man.subheading.divider.enabled.xml; M: /trunk/xsl/params/index.entry.properties.xml; M: /trunk/xsl/params/generate.legalnotice.link.xml; M: /trunk/xsl/params/section.autolabel.xml; M: /trunk/xsl/params/html.base.xml; M: /trunk/xsl/params/suppress.footer.navigation.xml; M: /trunk/xsl/params/nominal.image.depth.xml; M: /trunk/xsl/params/table.footnote.number.symbols.xml; M: /trunk/xsl/params/table.footnote.number.format.xml; M: /trunk/xsl/params/callout.graphics.xml; M: /trunk/xsl/params/man.break.after.slash.xml; M: /trunk/xsl/params/function.parens.xml; M: /trunk/xsl/params/part.autolabel.xml; M: /trunk/xsl/params/saxon.callouts.xml; M: /trunk/xsl/params/css.decoration.xml; M: /trunk/xsl/params/htmlhelp.button.home.xml; M: /trunk/xsl/params/email.delimiters.enabled.xml; M: /trunk/xsl/params/column.count.lot.xml; M: /trunk/xsl/params/draft.mode.xml; M: /trunk/xsl/params/use.role.for.mediaobject.xml; M: /trunk/xsl/params/refentry.separator.xml; M: /trunk/xsl/params/man.font.funcsynopsisinfo.xml; M: /trunk/xsl/params/man.output.manifest.filename.xml; M: /trunk/xsl/params/process.empty.source.toc.xml; M: /trunk/xsl/params/man.output.in.separate.dir.xml; M: /trunk/xsl/params/graphicsize.use.img.src.path.xml; M: /trunk/xsl/params/man.output.encoding.xml; M: /trunk/xsl/params/column.gap.lot.xml; M: /trunk/xsl/params/profile.role.xml; M: /trunk/xsl/params/column.count.titlepage.xml; M: /trunk/xsl/params/show.comments.xml; M: /trunk/xsl/params/informalfigure.properties.xml; M: /trunk/xsl/params/entry.propagates.style.xml; M: /trunk/xsl/params/bibliography.collection.xml; M: /trunk/xsl/params/contrib.inline.enabled.xml; M: /trunk/xsl/params/section.title.level5.properties.xml; M: /trunk/xsl/params/fop.extensions.xml; M: /trunk/xsl/params/htmlhelp.button.jump1.xml; M: /trunk/xsl/params/man.hyphenate.urls.xml; M: /trunk/xsl/params/profile.condition.xml; M: /trunk/xsl/params/header.column.widths.xml; M: /trunk/xsl/params/annotation.js.xml; M: /trunk/xsl/params/chunker.output.standalone.xml; M: /trunk/xsl/params/targets.filename.xml; M: /trunk/xsl/params/default.float.class.xml; M: /trunk/xsl/params/chapter.autolabel.xml; M: /trunk/xsl/params/sidebar.float.type.xml; M: /trunk/xsl/params/profile.separator.xml; M: /trunk/xsl/params/generate.index.xml; M: /trunk/xsl/params/nongraphical.admonition.properties.xml; M: /trunk/xsl/params/navig.graphics.xml; M: /trunk/xsl/params/htmlhelp.button.next.xml; M: /trunk/xsl/params/insert.olink.pdf.frag.xml; M: /trunk/xsl/params/htmlhelp.button.stop.xml; M: /trunk/xsl/params/footnote.font.size.xml; M: /trunk/xsl/params/profile.value.xml; M: /trunk/xsl/params/ebnf.table.border.xml; M: /trunk/xsl/params/htmlhelp.hhc.folders.instead.books.xml; M: /trunk/xsl/params/glossary.as.blocks.xml; M: /trunk/xsl/params/body.end.indent.xml; M: /trunk/xsl/params/use.role.as.xrefstyle.xml; M: /trunk/xsl/params/man.indent.blurbs.xml; M: /trunk/xsl/params/chunker.output.encoding.xml; M: /trunk/xsl/params/chunker.output.omit-xml-declaration.xml; M: /trunk/xsl/params/sans.font.family.xml; M: /trunk/xsl/params/html.cleanup.xml; M: /trunk/xsl/params/htmlhelp.hhp.xml; M: /trunk/xsl/params/htmlhelp.only.xml; M: /trunk/xsl/params/eclipse.plugin.name.xml; M: /trunk/xsl/params/section.title.level3.properties.xml; M: /trunk/xsl/params/man.th.extra1.suppress.xml; M: /trunk/xsl/params/chunk.section.depth.xml; M: /trunk/xsl/params/htmlhelp.hhp.tail.xml; M: /trunk/xsl/params/sidebar.title.properties.xml; M: /trunk/xsl/params/hyphenate.xml; M: /trunk/xsl/params/paper.type.xml; M: /trunk/xsl/params/chunk.tocs.and.lots.has.title.xml; M: /trunk/xsl/params/symbol.font.family.xml; M: /trunk/xsl/params/page.margin.bottom.xml; M: /trunk/xsl/params/callout.unicode.number.limit.xml; M: /trunk/xsl/params/itemizedlist.properties.xml; M: /trunk/xsl/params/root.filename.xml; M: /trunk/xsl/params/tablecolumns.extension.xml; M: /trunk/xsl/params/htmlhelp.show.favorities.xml; M: /trunk/xsl/params/informaltable.properties.xml; M: /trunk/xsl/params/revhistory.table.cell.properties.xml; M: /trunk/xsl/params/htmlhelp.default.topic.xml; M: /trunk/xsl/params/compact.list.item.spacing.xml; M: /trunk/xsl/params/page.height.portrait.xml; M: /trunk/xsl/params/html.head.legalnotice.link.types.xml; M: /trunk/xsl/params/passivetex.extensions.xml; M: /trunk/xsl/params/orderedlist.label.properties.xml; M: /trunk/xsl/params/othercredit.like.author.enabled.xml; M: /trunk/xsl/params/header.content.properties.xml; M: /trunk/xsl/params/refentry.meta.get.quietly.xml; M: /trunk/xsl/params/section.properties.xml; M: /trunk/xsl/params/htmlhelp.button.hideshow.xml; M: /trunk/xsl/params/simplesect.in.toc.xml; M: /trunk/xsl/params/chunk.quietly.xml; M: /trunk/xsl/params/htmlhelp.enumerate.images.xml; M: /trunk/xsl/params/section.title.level1.properties.xml; M: /trunk/xsl/params/qanda.defaultlabel.xml; M: /trunk/xsl/params/htmlhelp.enhanced.decompilation.xml; M: /trunk/xsl/params/man.th.title.max.length.xml; M: /trunk/xsl/params/footnote.number.format.xml; M: /trunk/xsl/params/body.margin.bottom.xml; M: /trunk/xsl/params/htmlhelp.window.geometry.xml; M: /trunk/xsl/params/htmlhelp.button.jump2.xml; M: /trunk/xsl/params/use.svg.xml; M: /trunk/xsl/params/qanda.title.level6.properties.xml; M: /trunk/xsl/params/collect.xref.targets.xml; M: /trunk/xsl/params/html.extra.head.links.xml; M: /trunk/xsl/params/variablelist.as.table.xml; M: /trunk/xsl/params/man.indent.width.xml; M: /trunk/xsl/params/eclipse.plugin.id.xml; M: /trunk/xsl/params/linenumbering.width.xml; M: /trunk/xsl/params/axf.extensions.xml; M: /trunk/xsl/params/menuchoice.separator.xml; M: /trunk/xsl/params/glossterm.separation.xml; M: /trunk/xsl/params/htmlhelp.autolabel.xml; M: /trunk/xsl/params/chunk.separate.lots.xml; M: /trunk/xsl/params/man.hyphenate.computer.inlines.xml; M: /trunk/xsl/params/linenumbering.separator.xml; M: /trunk/xsl/params/htmlhelp.title.xml; M: /trunk/xsl/params/index.number.separator.xml; M: /trunk/xsl/params/htmlhelp.button.prev.xml; M: /trunk/xsl/params/refentry.manual.fallback.profile.xml; M: /trunk/xsl/params/table.frame.border.color.xml; M: /trunk/xsl/params/footnote.sep.leader.properties.xml; M: /trunk/xsl/params/hyphenate.verbatim.characters.xml; M: /trunk/xsl/params/table.cell.border.thickness.xml; M: /trunk/xsl/params/template.xml; M: /trunk/xsl/params/margin.note.properties.xml; M: /trunk/xsl/params/man.segtitle.suppress.xml; M: /trunk/xsl/params/generate.toc.xml; M: /trunk/xsl/params/formal.object.properties.xml; M: /trunk/xsl/params/footnote.mark.properties.xml; M: /trunk/xsl/params/header.table.height.xml; M: /trunk/xsl/params/htmlhelp.button.back.xml; M: /trunk/xsl/params/qanda.title.level4.properties.xml; M: /trunk/xsl/params/man.links.are.numbered.xml; M: /trunk/xsl/params/manual.toc.xml; M: /trunk/xsl/params/olink.lang.fallback.sequence.xml; M: /trunk/xsl/params/refentry.manual.profile.enabled.xml; M: /trunk/xsl/params/ulink.hyphenate.chars.xml; M: /trunk/xsl/params/manifest.xml; M: /trunk/xsl/params/olink.fragid.xml; M: /trunk/xsl/params/refentry.date.profile.xml; M: /trunk/xsl/params/linenumbering.extension.xml; M: /trunk/xsl/params/component.title.properties.xml; M: /trunk/xsl/params/alignment.xml; M: /trunk/xsl/params/refentry.version.profile.xml; M: /trunk/xsl/params/ebnf.assignment.xml; M: /trunk/xsl/params/htmlhelp.button.print.xml; M: /trunk/xsl/params/annotation.support.xml; M: /trunk/xsl/params/sidebar.float.width.xml; M: /trunk/xsl/params/normal.para.spacing.xml; M: /trunk/xsl/params/xref.title-page.separator.xml; M: /trunk/xsl/params/callout.unicode.font.xml; M: /trunk/xsl/params/default.table.frame.xml; M: /trunk/xsl/params/pages.template.xml; M: /trunk/xsl/params/htmlhelp.button.zoom.xml; M: /trunk/xsl/params/admonition.title.properties.xml; M: /trunk/xsl/params/callout.graphics.extension.xml; M: /trunk/xsl/params/make.valid.html.xml; M: /trunk/xsl/params/qanda.title.level2.properties.xml; M: /trunk/xsl/params/page.margin.top.xml; M: /trunk/xsl/params/xep.index.item.properties.xml; M: /trunk/xsl/params/section.level5.properties.xml; M: /trunk/xsl/params/line-height.xml; M: /trunk/xsl/params/table.cell.border.color.xml; M: /trunk/xsl/params/qandadiv.autolabel.xml; M: /trunk/xsl/params/xref.label-title.separator.xml; M: /trunk/xsl/params/chunk.tocs.and.lots.xml; M: /trunk/xsl/params/man.font.funcprototype.xml; M: /trunk/xsl/params/process.source.toc.xml; M: /trunk/xsl/params/page.orientation.xml; M: /trunk/xsl/params/refentry.generate.name.xml; M: /trunk/xsl/params/navig.showtitles.xml; M: /trunk/xsl/params/table.table.properties.xml; M: /trunk/xsl/params/arbortext.extensions.xml; M: /trunk/xsl/params/informalequation.properties.xml; M: /trunk/xsl/params/headers.on.blank.pages.xml; M: /trunk/xsl/params/table.footnote.properties.xml; M: /trunk/xsl/params/root.properties.xml; M: /trunk/xsl/params/htmlhelp.display.progress.xml; M: /trunk/xsl/params/htmlhelp.hhp.windows.xml; M: /trunk/xsl/params/graphical.admonition.properties.xml; M: /trunk/xsl/params/refclass.suppress.xml; M: /trunk/xsl/params/profile.conformance.xml; M: /trunk/xsl/params/htmlhelp.button.forward.xml; M: /trunk/xsl/params/segmentedlist.as.table.xml; M: /trunk/xsl/params/margin.note.float.type.xml; M: /trunk/xsl/params/man.table.footnotes.divider.xml; M: /trunk/xsl/params/man.output.quietly.xml; M: /trunk/xsl/params/htmlhelp.hhc.show.root.xml; M: /trunk/xsl/params/footers.on.blank.pages.xml; M: /trunk/xsl/params/crop.mark.offset.xml; M: /trunk/xsl/params/olink.doctitle.xml; M: /trunk/xsl/params/section.level3.properties.xml; M: /trunk/xsl/params/callout.unicode.xml; M: /trunk/xsl/params/formal.procedures.xml; M: /trunk/xsl/params/toc.section.depth.xml; M: /trunk/xsl/params/index.prefer.titleabbrev.xml; M: /trunk/xsl/params/nominal.image.width.xml; M: /trunk/xsl/params/htmlhelp.show.menu.xml; M: /trunk/xsl/params/linenumbering.everyNth.xml; M: /trunk/xsl/params/double.sided.xml; M: /trunk/xsl/params/generate.revhistory.link.xml; M: /trunk/xsl/params/olink.properties.xml; M: /trunk/xsl/params/tex.math.in.alt.xml; M: /trunk/xsl/params/man.output.subdirs.enabled.xml; M: /trunk/xsl/params/section.title.properties.xml; M: /trunk/xsl/params/column.count.back.xml; M: /trunk/xsl/params/toc.indent.width.xml; M: /trunk/xsl/params/man.charmap.uri.xml; M: /trunk/xsl/params/index.method.xml; M: /trunk/xsl/params/generate.section.toc.level.xml; M: /trunk/xsl/params/page.width.portrait.xml; M: /trunk/xsl/params/man.th.extra2.max.length.xml; M: /trunk/xsl/params/abstract.properties.xml; M: /trunk/xsl/params/revhistory.table.properties.xml; M: /trunk/xsl/params/nominal.table.width.xml; M: /trunk/xsl/params/ulink.show.xml; M: /trunk/xsl/params/htmlhelp.button.jump1.title.xml; M: /trunk/xsl/params/index.div.title.properties.xml; M: /trunk/xsl/params/profile.userlevel.xml; M: /trunk/xsl/params/html.cellpadding.xml; M: /trunk/xsl/params/orderedlist.label.width.xml; M: /trunk/xsl/params/crop.marks.xml; M: /trunk/xsl/params/menuchoice.menu.separator.xml; M: /trunk/xsl/params/author.othername.in.middle.xml; M: /trunk/xsl/params/section.level1.properties.xml; M: /trunk/xsl/params/textdata.default.encoding.xml; M: /trunk/xsl/params/label.from.part.xml; M: /trunk/xsl/params/use.embed.for.svg.xml; M: /trunk/xsl/params/list.item.spacing.xml; M: /trunk/xsl/params/htmlhelp.hhc.width.xml; M: /trunk/xsl/params/column.gap.body.xml; M: /trunk/xsl/params/rootid.xml; M: /trunk/xsl/params/glosslist.as.blocks.xml; M: /trunk/xsl/params/index.range.separator.xml; M: /trunk/xsl/params/html.ext.xml; M: /trunk/xsl/params/callout.list.table.xml; M: /trunk/xsl/params/highlight.source.xml; M: /trunk/xsl/params/show.revisionflag.xml; M: /trunk/xsl/params/man.output.manifest.enabled.xml; M: /trunk/xsl/params/make.single.year.ranges.xml; M: /trunk/xsl/params/pgwide.properties.xml; M: /trunk/xsl/params/generate.id.attributes.xml; M: /trunk/xsl/params/emphasis.propagates.style.xml; M: /trunk/xsl/params/abstract.title.properties.xml; M: /trunk/xsl/params/htmlhelp.hhc.xml; M: /trunk/xsl/params/monospace.properties.xml; M: /trunk/xsl/params/htmlhelp.hhk.xml; M: /trunk/xsl/params/table.borders.with.css.xml; M: /trunk/xsl/params/man.links.are.underlined.xml; M: /trunk/xsl/params/profile.vendor.xml; M: /trunk/xsl/params/shade.verbatim.xml; M: /trunk/xsl/params/callout.graphics.path.xml; M: /trunk/xsl/params/olink.debug.xml; M: /trunk/xsl/params/make.graphic.viewport.xml; M: /trunk/xsl/params/footnote.number.symbols.xml; M: /trunk/xsl/params/man.charmap.enabled.xml; M: /trunk/xsl/params/page.height.xml; M: /trunk/xsl/params/htmlhelp.button.jump1.url.xml; M: /trunk/xsl/params/man.font.table.title.xml; M: /trunk/xsl/params/revhistory.title.properties.xml; M: /trunk/xsl/params/chunker.output.media-type.xml; M: /trunk/xsl/params/glossterm.width.xml; M: /trunk/xsl/params/points.per.em.xml; M: /trunk/xsl/params/page.margin.inner.xml; M: /trunk/xsl/params/itemizedlist.label.width.xml; M: /trunk/xsl/params/ulink.hyphenate.xml; M: /trunk/xsl/params/crop.mark.bleed.xml; M: /trunk/xsl/params/use.id.as.filename.xml; M: /trunk/xsl/params/section.title.level6.properties.xml; M: /trunk/xsl/params/highlight.default.language.xml; M: /trunk/xsl/params/man.th.extra2.suppress.xml; M: /trunk/xsl/params/id.warnings.xml; M: /trunk/xsl/params/title.margin.left.xml; M: /trunk/xsl/params/chunker.output.doctype-system.xml; M: /trunk/xsl/params/man.indent.verbatims.xml; M: /trunk/xsl/params/table.frame.border.thickness.xml; M: /trunk/xsl/params/monospace.verbatim.properties.xml; M: /trunk/xsl/params/formal.title.properties.xml; M: /trunk/xsl/params/margin.note.width.xml; M: /trunk/xsl/params/man.hyphenate.filenames.xml; M: /trunk/xsl/params/blockquote.properties.xml; M: /trunk/xsl/params/callout.defaultcolumn.xml; M: /trunk/xsl/params/profile.security.xml; M: /trunk/xsl/params/informal.object.properties.xml; M: /trunk/xsl/params/formal.title.placement.xml; M: /trunk/xsl/params/draft.watermark.image.xml; M: /trunk/xsl/params/equation.properties.xml; M: /trunk/xsl/params/body.font.family.xml; M: /trunk/xsl/params/ignore.image.scaling.xml; M: /trunk/xsl/params/chunk.first.sections.xml; M: /trunk/xsl/params/base.dir.xml; M: /trunk/xsl/params/footnote.properties.xml; M: /trunk/xsl/params/olink.outline.ext.xml; M: /trunk/xsl/params/img.src.path.xml; M: /trunk/xsl/params/qanda.title.properties.xml; M: /trunk/xsl/params/ebnf.statement.terminator.xml; M: /trunk/xsl/params/callouts.extension.xml; M: /trunk/xsl/params/manifest.in.base.dir.xml; M: /trunk/xsl/params/fop1.extensions.xml; M: /trunk/xsl/params/olink.sysid.xml; M: /trunk/xsl/params/section.title.level4.properties.xml; M: /trunk/xsl/params/monospace.font.family.xml; M: /trunk/xsl/params/l10n.gentext.language.xml; M: /trunk/xsl/params/graphic.default.extension.xml; M: /trunk/xsl/params/default.image.width.xml; M: /trunk/xsl/params/htmlhelp.button.refresh.xml; M: /trunk/xsl/params/chunker.output.cdata-section-elements.xml; M: /trunk/xsl/params/admon.graphics.path.xml; M: /trunk/xsl/params/admon.style.xml; M: /trunk/xsl/params/profile.revision.xml; M: /trunk/xsl/params/generate.manifest.xml; M: /trunk/xsl/params/html.longdesc.xml; M: /trunk/xsl/params/footer.rule.xml; M: /trunk/xsl/params/eclipse.plugin.provider.xml; M: /trunk/xsl/params/refentry.source.name.profile.xml; M: /trunk/xsl/params/toc.max.depth.xml; M: /trunk/xsl/params/chunker.output.indent.xml; M: /trunk/xsl/params/html.head.legalnotice.link.multiple.xml; M: /trunk/xsl/params/toc.list.type.xml; M: /trunk/xsl/params/link.mailto.url.xml; M: /trunk/xsl/params/table.properties.xml; M: /trunk/xsl/params/side.float.properties.xml; M: /trunk/xsl/params/man.charmap.use.subset.xml; M: /trunk/xsl/params/annotation.graphic.open.xml; M: /trunk/xsl/params/html.cellspacing.xml; M: /trunk/xsl/params/default.table.width.xml; M: /trunk/xsl/params/xep.extensions.xml; M: /trunk/xsl/params/admonition.properties.xml; M: /trunk/xsl/params/toc.margin.properties.xml; M: /trunk/xsl/params/chunk.toc.xml; M: /trunk/xsl/params/table.entry.padding.xml; M: /trunk/xsl/params/header.rule.xml; M: /trunk/xsl/params/glossentry.show.acronym.xml; M: /trunk/xsl/params/variablelist.as.blocks.xml; M: /trunk/xsl/params/man.hyphenate.xml; M: /trunk/xsl/params/refentry.source.name.profile.enabled.xml; M: /trunk/xsl/params/section.label.includes.component.label.xml; M: /trunk/xsl/params/bridgehead.in.toc.xml; M: /trunk/xsl/params/section.title.level2.properties.xml; M: /trunk/xsl/params/admon.graphics.extension.xml; M: /trunk/xsl/params/inherit.keywords.xml; M: /trunk/xsl/params/insert.xref.page.number.xml; M: /trunk/xsl/params/pixels.per.inch.xml; M: /trunk/xsl/params/refentry.pagebreak.xml; M: /trunk/xsl/params/profile.lang.xml; M: /trunk/xsl/params/insert.olink.page.number.xml; M: /trunk/xsl/params/generate.meta.abstract.xml; M: /trunk/xsl/params/graphicsize.extension.xml; M: /trunk/xsl/params/man.indent.lists.xml; M: /trunk/xsl/params/funcsynopsis.decoration.xml; M: /trunk/xsl/params/runinhead.title.end.punct.xml; M: /trunk/xsl/params/man.string.subst.map.xml; M: /trunk/xsl/params/man.links.list.enabled.xml; M: /trunk/xsl/params/section.autolabel.max.depth.xml; M: /trunk/xsl/params/htmlhelp.show.advanced.search.xml; M: /trunk/xsl/params/htmlhelp.map.file.xml; M: /trunk/xsl/params/l10n.gentext.use.xref.language.xml; M: /trunk/xsl/params/body.font.size.xml; M: /trunk/xsl/params/html.stylesheet.type.xml; M: /trunk/xsl/params/refentry.xref.manvolnum.xml; M: /trunk/xsl/params/runinhead.default.title.end.punct.xml; M: /trunk/xsl/params/navig.graphics.extension.xml; M: /trunk/xsl/params/itemizedlist.label.properties.xml; M: /trunk/xsl/params/htmlhelp.force.map.and.alias.xml; M: /trunk/xsl/params/profile.os.xml; M: /trunk/xsl/params/htmlhelp.alias.file.xml; M: /trunk/xsl/params/page.margin.outer.xml; M: /trunk/xsl/params/annotation.graphic.close.xml; M: /trunk/xsl/params/eclipse.autolabel.xml; M: /trunk/xsl/params/table.frame.border.style.xml; M: /trunk/xsl/params/navig.graphics.path.xml; M: /trunk/xsl/params/htmlhelp.hhc.binary.xml; M: /trunk/xsl/params/index.on.type.xml; M: /trunk/xsl/params/target.database.document.xml; M: /trunk/xsl/params/man.subheading.divider.xml; M: /trunk/xsl/params/chunker.output.method.xml; M: /trunk/xsl/params/make.index.markup.xml; M: /trunk/xsl/params/olink.base.uri.xml; M: /trunk/xsl/params/phrase.propagates.style.xml; M: /trunk/xsl/params/man.indent.refsect.xml; M: /trunk/xsl/params/example.properties.xml; M: /trunk/xsl/params/man.font.table.headings.xml; M: /trunk/xsl/params/profile.revisionflag.xml; M: /trunk/xsl/params/region.after.extent.xml; M: /trunk/xsl/params/qanda.title.level5.properties.xml; M: /trunk/xsl/params/marker.section.level.xml; M: /trunk/xsl/params/footer.table.height.xml; M: /trunk/xsl/params/autotoc.label.separator.xml; M: /trunk/xsl/params/footer.column.widths.xml; M: /trunk/xsl/params/hyphenate.verbatim.xml; M: /trunk/xsl/params/xref.properties.xml; M: /trunk/xsl/params/man.output.base.dir.xml; M: /trunk/xsl/params/man.links.list.heading.xml; M: /trunk/xsl/params/insert.link.page.number.xml; M: /trunk/xsl/params/htmlhelp.button.jump2.title.xml; M: /trunk/xsl/params/l10n.lang.value.rfc.compliant.xml - Michael(tm) Smith - - -Updated index.method doc to describe revised setup for importing index extensions.M: /trunk/xsl/params/index.method.xml - Robert Stayton - - -Added several new HTML parameters for controlling appearance of -content on HTML title pages: - -contrib.inline.enabled: - If non-zero (the default), output of the contrib element is - displayed as inline content rather than as block content. - -othercredit.like.author.enabled: - If non-zero, output of the othercredit element on titlepages is - displayed in the same style as author and editor output. If zero - (the default), othercredit output is displayed using a style - different than that of author and editor. - -blurb.on.titlepage.enabled: - If non-zero, output from authorblurb and personblurb elements is - displayed on title pages. If zero (the default), output from - those elements is suppressed on title pages (unless you are - using a titlepage customization that causes them to be included). - -editedby.enabled - If non-zero (the default), a localized Edited by heading is - displayed above editor names in output of the editor element.A: /trunk/xsl/params/contrib.inline.enabled.xml; A: /trunk/xsl/params/blurb.on.titlepage.enabled.xml; A: /trunk/xsl/params/othercredit.like.author.enabled.xml; A: /trunk/xsl/params/editedby.enabled.xml - Michael(tm) Smith - - -Added new email.delimiters.enabled param. If non-zero (the -default), delimiters are generated around e-mail addresses (output -of the email element). If zero, the delimiters are suppressed.A: /trunk/xsl/params/email.delimiters.enabled.xml - Michael(tm) Smith - - - -Added qanda.nested.in.toc param. Default value is zero. If -non-zero, instances of "nested" Qandaentry (ones that are children -of Answer elements) are displayed in the TOC. Closes patch 1509018 -(from Daniel Leidert). Currently on affects HTML output (no patch -for FO output provided).A: /trunk/xsl/params/qanda.nested.in.toc.xml - Michael(tm) Smith - - - -Initial support of syntax highlighting of programlistings.A: /trunk/xsl/params/highlight.source.xml; A: /trunk/xsl/params/highlight.default.language.xml - Jirka Kosek - - - - - -Tools -The following changes have been made to the - tools code - since the 1.70.1 release. - - - -Racheted down font sizes of headings in example makefile FO output.M: /trunk/xsl/tools/make/Makefile.DocBook - Michael(tm) Smith - - -Added param and attribute set to example makefile, for getting -wrapping in verbatims in FO output.M: /trunk/xsl/tools/make/Makefile.DocBook - Michael(tm) Smith - - -Renamed Makefile.paramDoc to Makefile.docParam.A: /trunk/xsl/tools/make/Makefile.docParam; D: /trunk/xsl/tools/make/Makefile.paramDoc - Michael(tm) Smith - - -Added Makefile.paramDoc file, for creating versions of param.xsl -files with doc embedded.A: /trunk/xsl/tools/make/Makefile.paramDoc - Michael(tm) Smith - - -Added variable to example makefile for controlling whether HTML or -XHTML is generated.M: /trunk/xsl/tools/make/Makefile.DocBook - Michael(tm) Smith - - - - -
- - -Release: 1.70.1 - -This is a stable release of the 1.70 stylesheets. It includes only a -few small changes from 1.70.0. - -The following is a list of changes that have been made - since the 1.70.0 release. - - -FO -The following changes have been made to the - fo code - since the 1.70.0 release. - - -Added three new attribute sets (revhistory.title.properties, revhistory.table.properties and revhistory.table.cell.properties) for controlling appearance of revhistory in FO output. -Modified: fo/block.xsl,1.34; fo/param.ent,1.101; fo/param.xweb,1.114; fo/titlepage.xsl,1.41; params/revhistory.table.cell.properties.xml,1.1; params/revhistory.table.properties.xml,1.1; params/revhistory.title.properties.xml,1.1 - Jirka Kosek - - -Support DBv5 revisions with full author name (not only authorinitials) -Modified: fo/block.xsl,1.33; fo/titlepage.xsl,1.40 - Jirka Kosek - - - - - -HTML -The following changes have been made to the - html code - since the 1.70.0 release. - - -Support DBv5 revisions with full author name (not only authorinitials) -Modified: html/block.xsl,1.23; html/titlepage.xsl,1.34 - Jirka Kosek - - - - - -HTMLHelp -The following changes have been made to the - htmlhelp code - since the 1.70.0 release. - - -htmlhelp.generate.index is now param, not variable. This means that you can override its setting from outside. This is useful when you generate indexterms on the fly (see http://www.xml.com/pub/a/2004/07/14/dbndx.html?page=3). -Modified: htmlhelp/htmlhelp-common.xsl,1.38 - Jirka Kosek - - -Support chunk.tocs.and.lots in HTML Help -Modified: htmlhelp/htmlhelp-common.xsl,1.37 - Jirka Kosek - - - - - -Params -The following changes have been made to the - params code - since the 1.70.0 release. - - -Added three new attribute sets (revhistory.title.properties, revhistory.table.properties and revhistory.table.cell.properties) for controlling appearance of revhistory in FO output. -Modified: fo/block.xsl,1.34; fo/param.ent,1.101; fo/param.xweb,1.114; fo/titlepage.xsl,1.41; params/revhistory.table.cell.properties.xml,1.1; params/revhistory.table.properties.xml,1.1; params/revhistory.title.properties.xml,1.1 - Jirka Kosek - - - - - - - -Release: 1.70.0 -As with all DocBook Project dot-zero -releases, this is an experimental release. It will be followed shortly -by a stable release. - -This release adds a number of new features, -including: - - - - support for selecting alternative index-collation methods - (in particular, support for using a collation library developed by - Eliot Kimber) - - - improved handling of DocBook 5 document instances (through a - namespace-stripping mechanism) - - - full support for CALS and HTML tables in manpages - output - - - a mechanism for preserving relative URIs in documents that - make use of XInclude - - - support for the "new" .90 version of - FOP - - - enhanced capabilities for controlling formatting of lists in HTML - and FO output - - - autogeneration of AUTHOR and COPYRIGHT sections in manpages - output - - - support for generating crop marks in FO/PDF output - - - support for qandaset as a root element in FO output - - - support for floatstyle and orient on all table types - - - support for floatstyle in figure, and example - - - pgwide.properties attribute-set supports extending figure, - example and table into the left indent area instead of spanning - multiple columns. - - - The following is a detailed list of enhancements and API - changes that have been made since the 1.69.1 release. - - -Common -The following changes have been made to the - common code - since the 1.69.1 release. - - -Add the xsl:key for the kimber -indexing method. -Modified: common/autoidx-ng.xsl,1.2 - Robert -Stayton - - -Add support for -qandaset. -Modified: common/labels.xsl,1.37; -common/subtitles.xsl,1.7; common/titles.xsl,1.35 - Robert -Stayton - - -Support dbhtml/dbfo start PI for -orderedlist numbering in both HTML and -FO -Modified: common/common.xsl,1.61; html/lists.xsl,1.50 - Norman -Walsh - - -Added CVS -header. -Modified: common/stripns.xsl,1.12 - Robert -Stayton - - -Changed content model of text -element to ANY rather than #PCDATA because they could contain -markup. -Modified: common/targetdatabase.dtd,1.7 - Robert -Stayton - - -Added -refentry.meta.get.quietly param. -If zero (the -default), notes and warnings about "missing" markup are generated -during gathering of refentry metadata. If -non-zero, the metadata is gathered "quietly" -- that is, the -notes and warnings are suppressed. -NOTE: If you are -processing a large amount of refentry content, you -may be able to speed up processing significantly by setting a -non-zero value for -refentry.meta.get.quietly. -Modified: common/refentry.xsl,1.17; -manpages/param.ent,1.15; manpages/param.xweb,1.17; -params/refentry.meta.get.quietly.xml,1.1 - Michael(tm) -Smith - - -After namespace stripping, the -source document is the temporary tree created by the stripping -process and it has the wrong base URI for relative -references. Earlier versions of this code used to try to fix that -by patching the elements with relative @fileref attributes. That -was inadequate because it calculated an absolute base URI -without considering that there might be xml:base attributes -already in effect. It seems obvious now that the right thing to -do is simply to put the xml:base on the root of the document. And -that seems to work. -Modified: common/stripns.xsl,1.7 - Norman -Walsh - - -Added support for "software" and -"sectdesc" class values on refmiscinfo; "software" is -treated identically to "source", and "setdesc" is treated -identically to "manual". -Modified: common/refentry.xsl,1.10; -params/man.th.extra2.max.length.xml,1.3; -params/refentry.source.name.profile.xml,1.4 - Michael(tm) -Smith - - -Added support for DocBook 5 -namespace-stripping in manpages stylesheet. Closes request -#1210692. -Modified: common/common.xsl,1.56; manpages/docbook.xsl,1.57 - -Michael(tm) Smith - - -Added <xsl:template -match="/"> to make stripns.xsl usable as a standalone -stylesheet for stripping out DocBook 5/NG to DocBook 4. Note that -DocBook XSLT drivers that include this stylesheet all override -the match="/" template. -Modified: common/stripns.xsl,1.4 - Michael(tm) -Smith - - -Number figures, examples, and -tables from book if there is no prefix (i.e. if -chapter.autolabel is set to 0). This avoids -having the list of figures where the figures mysteriously restart -their numeration periodically when -chapter.autolabel is set to -0. -Modified: common/labels.xsl,1.36 - David Cramer - - -Add task template in -title.markup mode. -Modified: common/titles.xsl,1.34 - Robert -Stayton - - -Add children (with ids) of formal -objects to target data. -Modified: common/targets.xsl,1.10 - Robert -Stayton - - -Added support for case when -personname doesn't contain specific name markup (as allowed -in DocBook 5.0) -Modified: common/common.xsl,1.54 - Jirka -Kosek - - - - - -Extensions -The following changes have been made to the - extensions code - since the 1.69.1 release. - - -Support Xalan -2.7 -Modified: extensions/xalan27/.cvsignore,1.1; -extensions/xalan27/build.xml,1.1; -extensions/xalan27/nbproject/.cvsignore,1.1; -extensions/xalan27/nbproject/build-impl.xml,1.1; -extensions/xalan27/nbproject/genfiles.properties,1.1; -extensions/xalan27/nbproject/project.properties,1.1; -extensions/xalan27/nbproject/project.xml,1.1; -extensions/xalan27/src/com/nwalsh/xalan/CVS.java,1.1; -extensions/xalan27/src/com/nwalsh/xalan/Callout.java,1.1; -extensions/xalan27/src/com/nwalsh/xalan/FormatCallout.java,1.1; -extensions/xalan27/src/com/nwalsh/xalan/FormatDingbatCallout.java,1.1; -extensions/xalan27/src/com/nwalsh/xalan/FormatGraphicCallout.java,1.1; -extensions/xalan27/src/com/nwalsh/xalan/FormatTextCallout.java,1.1; -extensions/xalan27/src/com/nwalsh/xalan/FormatUnicodeCallout.java,1.1; -extensions/xalan27/src/com/nwalsh/xalan/Func.java,1.1; -extensions/xalan27/src/com/nwalsh/xalan/ImageIntrinsics.java,1.1; -extensions/xalan27/src/com/nwalsh/xalan/Params.java,1.1; -extensions/xalan27/src/com/nwalsh/xalan/Table.java,1.1; -extensions/xalan27/src/com/nwalsh/xalan/Text.java,1.1; -extensions/xalan27/src/com/nwalsh/xalan/Verbatim.java,1.1 - Norman -Walsh - - -Handle the case where the imageFn -is actually a URI. This still needs -work. -Modified: extensions/saxon643/com/nwalsh/saxon/ImageIntrinsics.java,1.4 -- Norman Walsh - - - - - -FO -The following changes have been made to the - fo code - since the 1.69.1 release. - - -Adapted to the new indexing -code. Now works just like a wrapper that calls kosek indexing method, -originally implemented here. -Modified: fo/autoidx-ng.xsl,1.5 - Jirka -Kosek - - -Added parameters for header/footer -table minimum height. -Modified: fo/pagesetup.xsl,1.60; -fo/param.ent,1.100; fo/param.xweb,1.113 - Robert -Stayton - - -Add the index.method -parameter. -Modified: fo/param.ent,1.99; fo/param.xweb,1.112 - Robert -Stayton - - -Integrate support for three -indexing methods: - the original English-only method. - -Jirka Kosek's method using EXSLT extensions. - Eliot Kimber's -method using Saxon extensions. Use the 'index.method' -parameter to select. -Modified: fo/autoidx.xsl,1.38 - Robert -Stayton - - -Add support for TOC for -qandaset in fo output. -Modified: fo/autotoc.xsl,1.30; -fo/qandaset.xsl,1.20 - Robert Stayton - - -Added parameter -ulink.hyphenate.chars. Added parameter -insert.link.page.number. -Modified: fo/param.ent,1.98; -fo/param.xweb,1.111 - Robert Stayton - - -Implemented feature request -#942524 to add insert.link.page.number to allow link -element cross references to have a page number. -Modified: fo/xref.xsl,1.67 - -Robert Stayton - - -Add support for -ulink.hyphenate.chars so more characters -can be break points in urls. -Modified: fo/xref.xsl,1.66 - Robert -Stayton - - -Implemented patch #1075144 to make -the url text in a ulink in FO output an active link as -well. -Modified: fo/xref.xsl,1.65 - Robert Stayton - - -table footnotes now -have their own table.footnote.properties -attribute set. -Modified: fo/footnote.xsl,1.23 - Robert -Stayton - - -Add qandaset to -root.elements. -Modified: fo/docbook.xsl,1.41 - Robert -Stayton - - -Added mode="page.sequence" to make -it easier to put content into a page sequence. First used for -qandaset. -Modified: fo/component.xsl,1.37 - Robert -Stayton - - -Implemented feature request -#1434408 to support formatting -of biblioentry. -Modified: fo/biblio.xsl,1.35 - Robert -Stayton - - -Added -biblioentry.properties. -Modified: fo/param.ent,1.97; -fo/param.xweb,1.110 - Robert Stayton - - -Support PTC/Arbortext -bookmarks -Modified: fo/docbook.xsl,1.40; fo/ptc.xsl,1.1 - Norman -Walsh - - -Added -table.footnote.properties to permit -table footnotes to format differently from regular -footnotes. -Modified: fo/param.ent,1.96; fo/param.xweb,1.109 - Robert -Stayton - - -Refactored table -templates to unify their processing and support all options in -all types. Now table and informaltable, in -both Cals and Html markup, use the same templates where possible, -and all support pgwide, rotation, and floats. There is also a -placeholder table.container template to -support wrapping a table in a layout table, -so the XEP table title "continued" -extension can be more easily implemented. -Modified: fo/formal.xsl,1.52; -fo/htmltbl.xsl,1.9; fo/table.xsl,1.48 - Robert -Stayton - - -Added new attribute set -toc.line.properties for controlling appearance of lines in -ToC/LoT -Modified: fo/autotoc.xsl,1.29; fo/param.ent,1.95; -fo/param.xweb,1.108 - Jirka Kosek - - -Added support for float to example -and equation. Added support for pgwide to -figure, example, and equation (the latter -two via a dbfo pgwide="1" processing -instruction). -Modified: fo/formal.xsl,1.51 - Robert -Stayton - - -Add pgwide.properties -attribute-set. -Modified: fo/param.ent,1.94; fo/param.xweb,1.107 - Robert -Stayton - - -Added refclass.suppress -param. -If the value of refclass.suppress is -non-zero, then display refclass contents is suppressed -in output. Affects HTML and FO output -only. -Modified: fo/param.ent,1.93; fo/param.xweb,1.106; html/param.ent,1.90; -html/param.xweb,1.99; params/refclass.suppress.xml,1.1 - Michael(tm) -Smith - - -Improved support for -task subelements -Modified: fo/task.xsl,1.3; html/task.xsl,1.3 - -Jirka Kosek - - -Adjusted spacing around -K&R-formatted Funcdef and Paramdef -output such that it can more easily be discerned where one ends -and the other begins. Closes #1213264. -Modified: fo/synop.xsl,1.18 - -Michael(tm) Smith - - -Made handling of -paramdef/parameter in FO output consistent with that in HTML and -manpages output. Closes #1213259. -Modified: fo/synop.xsl,1.17 - Michael(tm) -Smith - - -Made handling of -Refnamediv consistent with formatting in HTML -and manpages output; specifically, changed so that -Refname (comma-separated list of multiple instances -found) is used (instead of Refentrytitle as -previously), then em-dash, then the Refpurpose. Closes -#1212562. -Modified: fo/refentry.xsl,1.30 - Michael(tm) -Smith - - -Added output of -Releaseinfo to recto titlepage ("copyright" -page) for Book in FO output. This makes it consistent -with HTML output. Closes #1327034. Thanks to Paul DuBois for -reporting. -Modified: fo/titlepage.templates.xml,1.28 - Michael(tm) -Smith - - -Added condition for setting -block-progression-dimension.minimum on table-row, instead of -height, when fop1.extensions is -non-zero. For an explanation of the reason for the change, -see: http://wiki.apache.org/xmlgraphics-fop/Troubleshooting/CommonLogMessages -Modified: fo/pagesetup.xsl,1.59 -- Michael(tm) Smith - - -Added new -refclass.suppress param for suppressing display -of Refclass in HTML and FO output. Did not add it to -manpages because manpages stylesheet is currently just silently -ignoring Refclass anyway. Closes request -#1461065. Thanks to Davor Ocelic (docelic) for -reporting. -Modified: fo/refentry.xsl,1.29; html/refentry.xsl,1.23 - -Michael(tm) Smith - - -Add support for keep-together PI -to informal objects. -Modified: fo/formal.xsl,1.50 - Robert -Stayton - - -Add support for -fop1.extensions. -Modified: fo/formal.xsl,1.49; -fo/graphics.xsl,1.44; fo/table.xsl,1.47 - Robert -Stayton - - -Add support for fop1 -bookmarks. -Modified: fo/docbook.xsl,1.39 - Robert -Stayton - - -Add fop1.extentions parameter to -add support for fop development version. -Modified: fo/param.ent,1.92; -fo/param.xweb,1.105 - Robert Stayton - - -Start supporting fop development -version, which will become fop version 1. -Modified: fo/fop1.xsl,1.1 - -Robert Stayton - - -Add template for task -in mode="xref-to". -Modified: fo/xref.xsl,1.63; html/xref.xsl,1.57 - Robert -Stayton - - -table footnotes now -also get footnote.properties -attribute-set. -Modified: fo/footnote.xsl,1.22 - Robert -Stayton - - -Added index.separator -named template to compute the separator punctuation based on -locale. -Modified: fo/autoidx.xsl,1.36 - Robert Stayton - - -Added support for link, -olink, and xref within OO -Classsynopsis and children. (Because DocBook NG/5 -allows it). -Modified: fo/synop.xsl,1.15; html/synop.xsl,1.19 - Michael(tm) -Smith - - -Support date as an -inline -Modified: fo/inline.xsl,1.43; html/inline.xsl,1.46 - Norman -Walsh - - -Added new parameter -keep.relative.image.uris -Modified: fo/param.ent,1.91; -fo/param.xweb,1.104; html/param.ent,1.87; html/param.xweb,1.96; -params/keep.relative.image.uris.xml,1.1 - Norman -Walsh - - -Map Unicode space characters -U+2000-U+200A to fo:leaders. -Modified: fo/docbook.xsl,1.38; -fo/passivetex.xsl,1.4; fo/spaces.xsl,1.1 - Jirka -Kosek - - -Output a real em dash for em-dash -dingbat (instead of two hypens). -Modified: fo/fo.xsl,1.7 - Michael(tm) -Smith - - -Support default label -width parameters for itemized and ordered lists -Modified: fo/lists.xsl,1.64; -fo/param.ent,1.90; fo/param.xweb,1.103; -params/itemizedlist.label.width.xml,1.1; -params/orderedlist.label.width.xml,1.1 - Norman -Walsh - - -Generate localized -title for Refsynopsisdiv if no -appropriate Title descendant found in source. Closes -#1212398. This change makes behavior for the Synopsis -title consistent with the behavior of HTML and -manpages output. -Also, added -xsl:use-attribute-sets="normal.para.spacing" to -block generated for Cmdsynopsis output. Previously, -that block had no spacing at all specified, which resulted it -being crammed up to closely to the Synopsis -head. -Modified: fo/refentry.xsl,1.28; fo/synop.xsl,1.13 - Michael(tm) -Smith - - -Added parameters to support -localization of index -item punctuation. -Modified: fo/autoidx.xsl,1.35 - Robert -Stayton - - -Added -index.number.separator, -index.range.separator, -and index.term.separator parameters to -support localization of punctuation in index -entries. -Modified: fo/param.ent,1.89; fo/param.xweb,1.102 - Robert -Stayton - - -Added "Cross References" -section in HTML doc (for consistency with the FO -doc). Also, moved the existing FO "Cross -References" section to follow the "Linking" -section. -Modified: fo/param.xweb,1.101; html/param.xweb,1.95 - -Michael(tm) Smith - - -Added ID attribues to all -Reference elements (e.g., id="tables" for the doc for -section on Table params). So pages for -all subsections of ref docs now have stable filenames instead -of arbitrary generated filenames. -Modified: fo/param.xweb,1.100; -html/param.xweb,1.94 - Michael(tm) Smith - - -Added two new parameters for -handling of multi-term -varlistentry elements: -variablelist.term.break.after: -When the variablelist.term.break.after is -non-zero, it will generate a line break after each -term multi-term -varlistentry. -variablelist.term.separator: -When a varlistentry contains multiple term -elements, the string specified in the value of the -variablelist.term.separator parameter is -placed after each term except the last. The default -is ", " (a comma followed by a space). To suppress rendering of -the separator, set the value of -variablelist.term.separator to the empty -string (""). -These parameters are primarily intended to be -useful if you have multi-term varlistentries that have long -terms. -Closes #1306676. Thanks to Sam Steingold for -providing an example "lots of long terms" doc that demonstrated -the value of having these options. -Also, added -normalize-space() call to processing of each -term. -This change affects all output formats -(HTML, PDF, manpages). The default behavior should pretty much -remain the same as before, but it is possible (as always) that -the change may introduce some -new bugginess. -Modified: fo/lists.xsl,1.62; fo/param.ent,1.88; -fo/param.xweb,1.99; html/lists.xsl,1.48; html/param.ent,1.86; -html/param.xweb,1.93; manpages/lists.xsl,1.22; -manpages/param.ent,1.14; manpages/param.xweb,1.16; -params/variablelist.term.break.after.xml,1.1; -params/variablelist.term.separator.xml,1.1 - Michael(tm) -Smith - - -Add sidebar titlepage -placeholder attset for styles. -Modified: fo/titlepage.xsl,1.37 - Robert -Stayton - - -Add titlepage for -sidebar. -Modified: fo/titlepage.templates.xml,1.27 - Robert -Stayton - - -Implemented RFE -#1292615. -Added bunch of new parameters (attribute sets) -that affect list presentation: list.block.properties, -itemizedlist.properties, orderedlist.properties, -itemizedlist.label.properties and -orderedlist.label.properties. Default behaviour -of stylesheets has not been changed but further customizations will be -much more easier. -Modified: fo/lists.xsl,1.61; fo/param.ent,1.87; -fo/param.xweb,1.98; params/itemizedlist.label.properties.xml,1.1; -params/itemizedlist.properties.xml,1.1; -params/list.block.properties.xml,1.1; -params/orderedlist.label.properties.xml,1.1; -params/orderedlist.properties.xml,1.1 - Jirka -Kosek - - -Implemented RFE -#1242092. -You can enable crop marks in your document by -setting crop.marks=1 and xep.extensions=1. Appearance of crop -marks can be controlled by parameters -crop.mark.bleed (6pt), -crop.mark.offset (24pt) and -crop.mark.width (0.5pt). -Also there -is new named template called user-xep-pis. You can overwrite it in -order to produce some PIs that can control XEP as described in -http://www.renderx.com/reference.html#Output_Formats -Modified: fo/docbook.xsl,1.36; -fo/param.ent,1.86; fo/param.xweb,1.97; fo/xep.xsl,1.23; -params/crop.mark.bleed.xml,1.1; params/crop.mark.offset.xml,1.1; -params/crop.mark.width.xml,1.1; params/crop.marks.xml,1.1 - Jirka -Kosek - - - - - -HTML -The following changes have been made to the - html code - since the 1.69.1 release. - - -implemented -index.method parameter and three -methods. -Modified: html/autoidx.xsl,1.28 - Robert -Stayton - - -added index.method -parameter to support 3 indexing methods. -Modified: html/param.ent,1.94; -html/param.xweb,1.103 - Robert Stayton - - -Implemented feature request -#1072510 as a processing instruction to permit including external -HTML content into HTML output. -Modified: html/pi.xsl,1.9 - Robert -Stayton - - -Added new parameter -chunk.tocs.and.lots.has.title which -controls presence of title in a separate chunk with -ToC/LoT. Disabling title can be very useful if you are -generating frameset output (well, yes those frames, but some customers -really want them ;-). -Modified: html/chunk-code.xsl,1.15; -html/param.ent,1.93; html/param.xweb,1.102; -params/chunk.tocs.and.lots.has.title.xml,1.1 - Jirka -Kosek - - -Support dbhtml/dbfo start PI for -orderedlist numbering in both HTML and -FO -Modified: common/common.xsl,1.61; html/lists.xsl,1.50 - Norman -Walsh - - -Allow ToC without -title also for set and -book. -Modified: html/autotoc.xsl,1.37; html/division.xsl,1.12 - -Jirka Kosek - - -Implemented floats uniformly for -figure, example, equation -and informalfigure, informalexample, and -informalequation. -Modified: html/formal.xsl,1.22 - Robert -Stayton - - -Added the -autotoc.label.in.hyperlink param. -If the value -of autotoc.label.in.hyperlink is non-zero, labels -are included in hyperlinked titles in the TOC. If it -is instead zero, labels are still displayed prior to the -hyperlinked titles, but are not hyperlinked along with the -titles. -Closes patch #1065868. Thanks to anatoly techtonik -for the patch. -Modified: html/autotoc.xsl,1.36; html/param.ent,1.92; -html/param.xweb,1.101; params/autotoc.label.in.hyperlink.xml,1.1 - -Michael(tm) Smith - - -Added two new params: -html.head.legalnotice.link.types -and html.head.legalnotice.link.multiple. -If -the value of the generate.legalnotice.link is -non-zero, then the stylesheet generates (in the head -section of the HTML source) either a single HTML -link element or, if the value of -the html.head.legalnotice.link.multiple is -non-zero, one link element for each link -type specified. Each link has the -following attributes: - - a rel attribute whose value -is derived from the value of -html.head.legalnotice.link.types - - -an href attribute whose value is set to the URL of the file -containing the legalnotice - - a title -attribute whose value is set to the title of the -corresponding legalnotice (or a title -programatically determined by the stylesheet) -For -example: - <link rel="copyright" -href="ln-id2524073.html" title="Legal Notice"> -Closes -#1476450. Thanks to Sam Steingold. -Modified: html/chunk-common.xsl,1.45; -html/param.ent,1.91; html/param.xweb,1.100; -params/generate.legalnotice.link.xml,1.4; -params/html.head.legalnotice.link.multiple.xml,1.1; -params/html.head.legalnotice.link.types.xml,1.1 - Michael(tm) -Smith - - -Added refclass.suppress -param. -If the value of refclass.suppress is -non-zero, then display refclass contents is suppressed -in output. Affects HTML and FO output -only. -Modified: fo/param.ent,1.93; fo/param.xweb,1.106; html/param.ent,1.90; -html/param.xweb,1.99; params/refclass.suppress.xml,1.1 - Michael(tm) -Smith - - -Improved support for -task subelements -Modified: fo/task.xsl,1.3; html/task.xsl,1.3 - -Jirka Kosek - - -Added new -refclass.suppress param for suppressing display -of Refclass in HTML and FO output. Did not add it to -manpages because manpages stylesheet is currently just silently -ignoring Refclass anyway. Closes request -#1461065. Thanks to Davor Ocelic (docelic) for -reporting. -Modified: fo/refentry.xsl,1.29; html/refentry.xsl,1.23 - -Michael(tm) Smith - - -Process alt text with -normalize-space(). Replace tab indents with -spaces. -Modified: html/graphics.xsl,1.57 - Robert -Stayton - - -Content of citation -element is automatically linked to the bibliographic entry -with the corresponding abbrev. -Modified: html/biblio.xsl,1.26; -html/inline.xsl,1.47; html/xref.xsl,1.58 - Jirka -Kosek - - -Add template for task -in mode="xref-to". -Modified: fo/xref.xsl,1.63; html/xref.xsl,1.57 - Robert -Stayton - - -Suppress ID warnings if the -.warnings parameter is 0 -Modified: html/html.xsl,1.17 - Norman -Walsh - - -Add support for floatstyle to -figure. -Modified: html/formal.xsl,1.21 - Robert -Stayton - - -Handling of xref to -area/areaset need support in extensions code also. I currently have no -time to touch extensions code, so code is here to be enabled when -extension is fixed also. -Modified: html/xref.xsl,1.56 - Jirka -Kosek - - -Added 3 parameters for overriding -gentext for index -punctuation. -Modified: html/param.ent,1.89; html/param.xweb,1.98 - Robert -Stayton - - -Added parameters to support -localization of index item punctuation. Added -index.separator named template to compute -the separator punctuation based on -locale. -Modified: html/autoidx.xsl,1.27 - Robert -Stayton - - -Added a <div -class="{$class}-contents"> wrapper around output of contents -of all formal objects. Also, added an optional <br -class="{class}-break"/> linebreak after all formal -objects. -WARNING: Because this change places an additional -DIV between the DIV wrapper for the equation and the -equation contents, it may break some existing CSS -stylesheets that have been created with the assumption that there -would never be an intervening DIV there. -The following is -an example of what Equation output looks like as a -result of the changes described above. - <div -class="equation"> <a name="three" -id="three"></a> - <p -class="title"><b>(1.3)</b></p> - -<div class="equation-contents"> <span -class="mathphrase">1+1=3</span> -</div> </div><br -class="equation-break"> -Rationale: These changes allow -CSS control of the placement of the formal-object -title relative to the formal-object -contents. For example, using the CSS "float" property -enables the title and contents to be rendered on the -same line. Example stylesheet: - .equation -{ margin-top: 20px; margin-bottom: 20px; } -.equation-contents { float: left; } - -.equation .title { margin-top: 0; -float: right; margin-right: 200px; } - -.equation .title b { font-weight: -normal; } - .equation-break { clear: both; -} -Note that the purpose of the ".equation-break" class is -to provide a way to clear off the floats. -If you want -to instead have the equation title rendered to -the left of the equation contents, you can do -something like this: - .equation { -margin-top: 20px; width: 300px; margin-bottom: 20px; -} .equation-contents { float: right; } - -.equation .title { margin-top: 0; -float: left; margin-right: 200px; } - -.equation .title b { font-weight: -normal; } - .equation-break { clear: both; -} -Modified: html/formal.xsl,1.20 - Michael(tm) Smith - - -Added a chunker.output.quiet -top-level parameter so that the chunker can be made quiet by -default -Modified: html/chunker.xsl,1.26 - Norman Walsh - - -Added support for link, -olink, and xref within OO -Classsynopsis and children. (Because DocBook NG/5 -allows it). -Modified: fo/synop.xsl,1.15; html/synop.xsl,1.19 - Michael(tm) -Smith - - -New parameter: -id.warnings. If non-zero, warnings are -generated for titled objects that don't have titles. True by default; -I wonder if this will be too aggressive? -Modified: html/biblio.xsl,1.25; -html/component.xsl,1.27; html/division.xsl,1.11; html/formal.xsl,1.19; -html/glossary.xsl,1.20; html/html.xsl,1.13; html/index.xsl,1.16; -html/param.ent,1.88; html/param.xweb,1.97; html/refentry.xsl,1.22; -html/sections.xsl,1.30; params/id.warnings.xml,1.1 - Norman -Walsh - - -If the -keep.relative.image.uris parameter is true, -don't use the absolute URI (as calculated from xml:base) in -the img src attribute, us the value the author -specified. Note that we still have to calculate the absolute -filename for use in the image intrinsics -extension. -Modified: html/graphics.xsl,1.56 - Norman -Walsh - - -Support date as an -inline -Modified: fo/inline.xsl,1.43; html/inline.xsl,1.46 - Norman -Walsh - - -Added new parameter -keep.relative.image.uris -Modified: fo/param.ent,1.91; -fo/param.xweb,1.104; html/param.ent,1.87; html/param.xweb,1.96; -params/keep.relative.image.uris.xml,1.1 - Norman -Walsh - - -Added two new parameters for -handling of multi-term -varlistentry elements: -variablelist.term.break.after: -When the variablelist.term.break.after is -non-zero, it will generate a line break after each -term multi-term -varlistentry. -variablelist.term.separator: -When a varlistentry contains multiple term -elements, the string specified in the value of the -variablelist.term.separator parameter is -placed after each term except the last. The default -is ", " (a comma followed by a space). To suppress rendering of -the separator, set the value of -variablelist.term.separator to the empty -string (""). -These parameters are primarily intended to be -useful if you have multi-term varlistentries that have long -terms. -Closes #1306676. Thanks to Sam Steingold for -providing an example "lots of long terms" doc that demonstrated -the value of having these options. -Also, added -normalize-space() call to processing of each -term. -This change affects all output formats -(HTML, PDF, manpages). The default behavior should pretty much -remain the same as before, but it is possible (as always) that -the change may introduce some -new bugginess. -Modified: fo/lists.xsl,1.62; fo/param.ent,1.88; -fo/param.xweb,1.99; html/lists.xsl,1.48; html/param.ent,1.86; -html/param.xweb,1.93; manpages/lists.xsl,1.22; -manpages/param.ent,1.14; manpages/param.xweb,1.16; -params/variablelist.term.break.after.xml,1.1; -params/variablelist.term.separator.xml,1.1 - Michael(tm) -Smith - - -Added "wrapper-name" param to -inline.charseq named template, enabling it to output inlines -other than just "span". Acronym and Abbrev -templates now use inline.charseq to output HTML -"acronym" and "abbr" elements (instead of -"span"). Closes #1305468. Thanks to Sam Steingold for suggesting -the change. -Modified: html/inline.xsl,1.45 - Michael(tm) -Smith - - - - - -Manpages -The following changes have been made to the - manpages code - since the 1.69.1 release. - - -Added the following -params: - - man.indent.width (string-valued) - -man.indent.refsect (boolean) - man.indent.blurbs (boolean) -- man.indent.lists (boolean) - man.indent.verbatims -(boolean) -Note that in earlier snapshots, man.indent.width -was named man.indentation.default.value and the boolean params -had names like man.indentation.*.adjust. Also the -man.indent.blurbs param was called man.indentation.authors.adjust -(or something). -The behavior now is: If the value of a -particular man.indent.* boolean param is non-zero, the -corresponding contents (refsect*, list items, -authorblurb/personblurb, vervatims) are displayed with a left -margin indented by a width equal to the value -of man.indent.width. -Modified: params/man.indent.blurbs.xml,1.1; -manpages/docbook.xsl,1.74; manpages/info.xsl,1.20; -manpages/lists.xsl,1.30; manpages/other.xsl,1.20; -manpages/param.ent,1.22; manpages/param.xweb,1.24; -manpages/refentry.xsl,1.14; params/man.indent.lists.xml,1.1; -params/man.indent.refsect.xml,1.1; -params/man.indent.verbatims.xml,1.1; params/man.indent.width.xml,1.1 - -Michael(tm) Smith - - -Added -man.table.footnotes.divider param. -In each -table that contains footenotes, the string specified -by the man.table.footnotes.divider parameter is output -before the list of footnotes for the -table. -Modified: manpages/docbook.xsl,1.73; -manpages/links.xsl,1.6; manpages/param.ent,1.21; -manpages/param.xweb,1.23; params/man.table.footnotes.divider.xml,1.1 - -Michael(tm) Smith - - -Added the -man.output.in.separate.dir, -man.output.base.dir, -and man.output.subdirs.enabled parameters. -The -man.output.base.dir parameter specifies the -base directory into which man-page files are -output. The man.output.subdirs.enabled parameter controls whether -the files are output in subdirectories within the base -directory. -The values of the -man.output.base.dir -and man.output.subdirs.enabled parameters are used only if the -value of man.output.in.separate.dir parameter is non-zero. If the -value of man.output.in.separate.dir is zero, man-page files are -not output in a separate -directory. -Modified: manpages/docbook.xsl,1.72; manpages/param.ent,1.20; -manpages/param.xweb,1.22; params/man.output.base.dir.xml,1.1; -params/man.output.in.separate.dir.xml,1.1; -params/man.output.subdirs.enabled.xml,1.1 - Michael(tm) -Smith - - -Added -man.font.table.headings and -man.font.table.title params, for -controlling font in table headings and -titles. -Modified: manpages/docbook.xsl,1.71; manpages/param.ent,1.19; -manpages/param.xweb,1.21; params/man.font.table.headings.xml,1.1; -params/man.font.table.title.xml,1.1 - Michael(tm) -Smith - - -Added -man.font.funcsynopsisinfo and -man.font.funcprototype params, for specifying the roff -font (for example, BI, B, I) for funcsynopsisinfo and -funcprototype output. -Modified: manpages/block.xsl,1.19; -manpages/docbook.xsl,1.69; manpages/param.ent,1.18; -manpages/param.xweb,1.20; manpages/synop.xsl,1.29; -manpages/table.xsl,1.21; params/man.font.funcprototype.xml,1.1; -params/man.font.funcsynopsisinfo.xml,1.1 - Michael(tm) -Smith - - -Added -man.segtitle.suppress param. -If the value of -man.segtitle.suppress is non-zero, then display -of segtitle contents is suppressed in -output. -Modified: manpages/docbook.xsl,1.68; manpages/param.ent,1.17; -manpages/param.xweb,1.19; params/man.segtitle.suppress.xml,1.1 - -Michael(tm) Smith - - -Added -man.output.manifest.enabled and -man.output.manifest.filename params. -If -man.output.manifest.enabled is non-zero, a list -of filenames for man pages generated by the stylesheet -transformation is written to the file named by -man.output.manifest.filename -Modified: manpages/docbook.xsl,1.67; -manpages/other.xsl,1.19; manpages/param.ent,1.16; -manpages/param.xweb,1.18; params/man.output.manifest.enabled.xml,1.1; -params/man.output.manifest.filename.xml,1.1; -tools/make/Makefile.DocBook,1.4 - Michael(tm) -Smith - - -Added -refentry.meta.get.quietly param. -If zero (the -default), notes and warnings about "missing" markup are generated -during gathering of refentry metadata. If -non-zero, the metadata is gathered "quietly" -- that is, the -notes and warnings are suppressed. -NOTE: If you are -processing a large amount of refentry content, you -may be able to speed up processing significantly by setting a -non-zero value for -refentry.meta.get.quietly. -Modified: common/refentry.xsl,1.17; -manpages/param.ent,1.15; manpages/param.xweb,1.17; -params/refentry.meta.get.quietly.xml,1.1 - Michael(tm) -Smith - - -Changed names of all boolean -indentation params to man.indent.* Also discarded individual -man.indent.*.value params and switched to just using a common -man.indent.width param (3n by default). -Modified: manpages/docbook.xsl,1.66; -manpages/info.xsl,1.19; manpages/lists.xsl,1.29; -manpages/other.xsl,1.18; manpages/refentry.xsl,1.13 - Michael(tm) -Smith - - -Added boolean -man.output.in.separate.dir param, to control whether or not man -files are output in separate directory. -Modified: manpages/docbook.xsl,1.65; -manpages/utility.xsl,1.14 - Michael(tm) Smith - - -Added options for controlling -indentation of verbatim output. Controlled through the -man.indentation.verbatims.adjust -and man.indentation.verbatims.value params. Closes -#1242997 -Modified: manpages/block.xsl,1.15; manpages/docbook.xsl,1.64 - -Michael(tm) Smith - - -Added options for controlling -indentation in lists and in *blurb output in the AUTHORS -section. Controlled through -the man.indentation.lists.adjust, -man.indentation.lists.value, man.indentation.authors.adjust, and -man.indentation.authors.value parameters. Default is 3 characters -(instead of the roff default of 8 characters). Closes -#1449369. -Also, removed the indent that was being set on -informalexample outuput. I will instead add an option -for indenting verbatims, which I think is what the -informalexample indent was intended -for originally. -Modified: manpages/block.xsl,1.14; -manpages/docbook.xsl,1.63; manpages/info.xsl,1.18; -manpages/lists.xsl,1.28 - Michael(tm) Smith - - -Changed line-spacing call before -synopfragment to use ".sp -1n" ("n" units specified) -instead of plain ".sp -1" -Modified: manpages/synop.xsl,1.28 - Michael(tm) -Smith - - -Added support for writing man -files into a specific output directory and into appropriate -subdirectories within that output directory. Controlled through -the man.base.dir parameter (similar to the -base.dir support in the HTML stylesheet) and -the man.subdirs.enabled parameter, which automatically determines -the name of an appropriate subdir (for example, man/man7, -man/man1, etc.) based on the section number/manvolnum -of the source Refentry. -Closes #1255036 and -#1170317. Thanks to Denis Bradford for the original feature -request, and to Costin Stroie for submitting a patch that was -very helpful in implementing the -support. -Modified: manpages/docbook.xsl,1.62; manpages/utility.xsl,1.13 - -Michael(tm) Smith - - -Refined XPath statements and -notification messages for refentry metadata -handling. -Modified: common/common.xsl,1.59; common/refentry.xsl,1.14; -manpages/docbook.xsl,1.61; manpages/other.xsl,1.17 - Michael(tm) -Smith - - -Added support for -copyright and legalnotice. The manpages -stylesheets now output a COPYRIGHT section, -after the AUTHORS section, if a copyright -or legalnotice is found in the source. The -section contains the copyright contents followed -by the legalnotice contents. Closes -#1450209. -Modified: manpages/docbook.xsl,1.59; manpages/info.xsl,1.17 - -Michael(tm) Smith - - -Drastically reworked all of the -XPath expressions used in refentry metadata gathering --- completely removed $parentinfo and turned $info into a set of -nodes that includes the *info contents of the Refentry -plus the *info contents all all of its ancestor elements. The -basic XPath expression now used throughout is (using the example -of checking for a date): - -(($info[//date])[last()]/date)[1]. -That selects the "last" -*info/date date in document order -- that is, the one -eitther on the Refentry itself or on the -closest ancestor to the Refentry. -It's -likely this change may break some things; may need to pick up -some pieces later. -Also, changed the default value for the -man.th.extra2.max.length from 40 to -30. -Modified: common/common.xsl,1.58; common/refentry.xsl,1.7; -params/man.th.extra2.max.length.xml,1.2; -params/refentry.date.profile.xml,1.2; -params/refentry.manual.profile.xml,1.2; -params/refentry.source.name.profile.xml,1.2; -params/refentry.version.profile.xml,1.2; manpages/docbook.xsl,1.58; -manpages/other.xsl,1.15 - Michael(tm) Smith - - -Added support for DocBook 5 -namespace-stripping in manpages stylesheet. Closes request -#1210692. -Modified: common/common.xsl,1.56; manpages/docbook.xsl,1.57 - -Michael(tm) Smith - - -Fixed handling of table -footnotes. With this checkin, the table support in the -manpages stylesheet is now basically feature complete. So this -change closes request #619532, "No support for tables" -- the -oldest currently open manpages feature request, submitted by Ben -Secrest (blsecres) on 2002-10-07. Congratulations to me [patting -myself on the back]. -Modified: manpages/block.xsl,1.11; -manpages/docbook.xsl,1.55; manpages/table.xsl,1.15 - Michael(tm) -Smith - - -Added handling for -table titles. Also fixed handling of nested tables; -nest tables are now "extracted" and displayed just after their -parent tables. -Modified: manpages/docbook.xsl,1.54; manpages/table.xsl,1.14 -- Michael(tm) Smith - - -Added option for turning off bold -formatting in Funcsynopsis. Boldface formatting in -function synopsis is mandated in the -man(7) man page and is used almost universally in existing man -pages. Despite that, it really does look like crap to have an -entire Funcsynopsis output in bold, so I added params -for turning off the bold formatting and/or replacing it with a -different roff special font (e.g., "RI" for alternating -roman/italic instead of the default "BI" for alternating -bold/italic). The new params -are "man.funcprototype.font" and -"man.funcsynopsisinfo.font". To be documented -later. -Closes #1452247. Thanks to Joe Orton for the feature -request. -Modified: params/man.string.subst.map.xml,1.16; -manpages/block.xsl,1.10; manpages/docbook.xsl,1.51; -manpages/inline.xsl,1.16; manpages/synop.xsl,1.27 - Michael(tm) -Smith - - -Use AUTHORS instead of -AUTHOR if we have multiple people to attribute. Also, -fixed checking such that we generate -author section even if we don't have an -author (as long as there is at least one other -person/entity we can put in the -section). Also adjusted assembly of content for -Author metainfo field such that we now not only use -author, but try to find a "best match" if we can't -find an author name to put there. -Closes -#1233592. Thanks to Sam Steingold for the -request. -Modified: manpages/info.xsl,1.12 - Michael(tm) -Smith - - -Changes for request #1243027, -"Impove handling of AUTHOR section." This -adds support for Collab, Corpauthor, Corpcredt, -Orgname, Publishername, and -Publisher. Also adds support for output -of Affiliation and its children, and support for using -gentext strings for auto-attributing roles (Author, -Editor, Publisher, Translator, etc.). Also -did a lot of code cleanup and modularization of all the -AUTHOR handling code. And fixed a bug that was causing -Author info to not be picked up correctly -for metainfo comment we embed in man-page -source. -Modified: manpages/info.xsl,1.11 - Michael(tm) -Smith - - -Support bold output for -"emphasis remap='B'". (because Eric Raymond's -doclifter(1) tool converts groff source marked up with ".B" -request or "\fB" escapes to DocBook "emphasis -remap='B'".) -Modified: manpages/inline.xsl,1.14 - Michael(tm) -Smith - - -Added support for -Segmentedlist. Details: Output is tabular, with no -option for "list" type output. Output for Segtitle -elements can be supressed by -setting man.segtitle.suppress. If Segtitle -content is output, it is rendered in italic type (not bold -because not all terminals support bold and so italic ensures the -stand out on those terminals). Extra space (.sp line) at end of -table code ensures that it gets handled correctly in -the case where its source is the child of a Para. -Closes feature-request #1400097. Thanks to Daniel Leidert for the -patch and push, and to Alastair Rankine for filing the original -feature request. -Modified: manpages/lists.xsl,1.23; -manpages/utility.xsl,1.10 - Michael(tm) Smith - - -Improved handling or -Author/Editor/Othercredit. -Reworked content of -(non-visible) comment added at top of each page (metadata -stuff). -Added support for generating a -manifest file (useful for cleaning up -after builds, etc.) -Modified: manpages/docbook.xsl,1.46; -manpages/info.xsl,1.9; manpages/other.xsl,1.12; -manpages/utility.xsl,1.6 - Michael(tm) Smith - - -Added two new parameters for -handling of multi-term -varlistentry elements: -variablelist.term.break.after: -When the variablelist.term.break.after is -non-zero, it will generate a line break after each -term multi-term -varlistentry. -variablelist.term.separator: -When a varlistentry contains multiple term -elements, the string specified in the value of the -variablelist.term.separator parameter is -placed after each term except the last. The default -is ", " (a comma followed by a space). To suppress rendering of -the separator, set the value of -variablelist.term.separator to the empty -string (""). -These parameters are primarily intended to be -useful if you have multi-term varlistentries that have long -terms. -Closes #1306676. Thanks to Sam Steingold for -providing an example "lots of long terms" doc that demonstrated -the value of having these options. -Also, added -normalize-space() call to processing of each -term. -This change affects all output formats -(HTML, PDF, manpages). The default behavior should pretty much -remain the same as before, but it is possible (as always) that -the change may introduce some -new bugginess. -Modified: fo/lists.xsl,1.62; fo/param.ent,1.88; -fo/param.xweb,1.99; html/lists.xsl,1.48; html/param.ent,1.86; -html/param.xweb,1.93; manpages/lists.xsl,1.22; -manpages/param.ent,1.14; manpages/param.xweb,1.16; -params/variablelist.term.break.after.xml,1.1; -params/variablelist.term.separator.xml,1.1 - Michael(tm) -Smith - - - - - -Params -The following changes have been made to the - params code - since the 1.69.1 release. - - -New parameters to set -header/footer table minimum -height. -Modified: params/footer.table.height.xml,1.1; -params/header.table.height.xml,1.1 - Robert -Stayton - - -Support multiple indexing methods -for different languages. -Modified: params/index.method.xml,1.1 - Robert -Stayton - - -Remove qandaset and -qandadiv from generate.toc for fo -output because formerly it wasn't working, but now it is and -the default behavior should stay the -same. -Modified: params/generate.toc.xml,1.8 - Robert -Stayton - - -add support for page number -references to link element -too. -Modified: params/insert.link.page.number.xml,1.1 - Robert -Stayton - - -Add support for more characters to -hyphen on when ulink.hyphenate is turned -on. -Modified: params/ulink.hyphenate.chars.xml,1.1; -params/ulink.hyphenate.xml,1.3 - Robert Stayton - - -New attribute-set to format -biblioentry and -bibliomixed. -Modified: params/biblioentry.properties.xml,1.1 - -Robert Stayton - - -Added new parameter -chunk.tocs.and.lots.has.title which -controls presence of title in a separate chunk with -ToC/LoT. Disabling title can be very useful if you are -generating frameset output (well, yes those frames, but some customers -really want them ;-). -Modified: html/chunk-code.xsl,1.15; -html/param.ent,1.93; html/param.xweb,1.102; -params/chunk.tocs.and.lots.has.title.xml,1.1 - Jirka -Kosek - - -Added new attribute set -toc.line.properties for controlling appearance of lines in -ToC/LoT -Modified: params/toc.line.properties.xml,1.1 - Jirka -Kosek - - -Allow table footnotes -to have different properties from regular -footnotes. -Modified: params/table.footnote.properties.xml,1.1 - Robert -Stayton - - -Set properties for pgwide="1" -objects. -Modified: params/pgwide.properties.xml,1.1 - Robert -Stayton - - -Added the -autotoc.label.in.hyperlink param. -If the value -of autotoc.label.in.hyperlink is non-zero, labels -are included in hyperlinked titles in the TOC. If it -is instead zero, labels are still displayed prior to the -hyperlinked titles, but are not hyperlinked along with the -titles. -Closes patch #1065868. Thanks to anatoly techtonik -for the patch. -Modified: html/autotoc.xsl,1.36; html/param.ent,1.92; -html/param.xweb,1.101; params/autotoc.label.in.hyperlink.xml,1.1 - -Michael(tm) Smith - - -Added two new params: -html.head.legalnotice.link.types -and html.head.legalnotice.link.multiple. -If -the value of the generate.legalnotice.link is -non-zero, then the stylesheet generates (in the head -section of the HTML source) either a single HTML -link element or, if the value of -the html.head.legalnotice.link.multiple is -non-zero, one link element for each link -type specified. Each link has the -following attributes: - - a rel attribute whose value -is derived from the value of -html.head.legalnotice.link.types - - -an href attribute whose value is set to the URL of the file -containing the legalnotice - - a title -attribute whose value is set to the title of the -corresponding legalnotice (or a title -programatically determined by the stylesheet) -For -example: - <link rel="copyright" -href="ln-id2524073.html" title="Legal Notice"> -Closes -#1476450. Thanks to Sam Steingold. -Modified: html/chunk-common.xsl,1.45; -html/param.ent,1.91; html/param.xweb,1.100; -params/generate.legalnotice.link.xml,1.4; -params/html.head.legalnotice.link.multiple.xml,1.1; -params/html.head.legalnotice.link.types.xml,1.1 - Michael(tm) -Smith - - -Added the following -params: - - man.indent.width (string-valued) - -man.indent.refsect (boolean) - man.indent.blurbs (boolean) -- man.indent.lists (boolean) - man.indent.verbatims -(boolean) -Note that in earlier snapshots, man.indent.width -was named man.indentation.default.value and the boolean params -had names like man.indentation.*.adjust. Also the -man.indent.blurbs param was called man.indentation.authors.adjust -(or something). -The behavior now is: If the value of a -particular man.indent.* boolean param is non-zero, the -corresponding contents (refsect*, list items, -authorblurb/personblurb, vervatims) are displayed with a left -margin indented by a width equal to the value -of man.indent.width. -Modified: params/man.indent.blurbs.xml,1.1; -manpages/docbook.xsl,1.74; manpages/info.xsl,1.20; -manpages/lists.xsl,1.30; manpages/other.xsl,1.20; -manpages/param.ent,1.22; manpages/param.xweb,1.24; -manpages/refentry.xsl,1.14; params/man.indent.lists.xml,1.1; -params/man.indent.refsect.xml,1.1; -params/man.indent.verbatims.xml,1.1; params/man.indent.width.xml,1.1 - -Michael(tm) Smith - - -Added -man.table.footnotes.divider param. -In each -table that contains footenotes, the string specified -by the man.table.footnotes.divider parameter is output -before the list of footnotes for the -table. -Modified: manpages/docbook.xsl,1.73; -manpages/links.xsl,1.6; manpages/param.ent,1.21; -manpages/param.xweb,1.23; params/man.table.footnotes.divider.xml,1.1 - -Michael(tm) Smith - - -Added the -man.output.in.separate.dir, -man.output.base.dir, -and man.output.subdirs.enabled parameters. -The -man.output.base.dir parameter specifies the -base directory into which man-page files are -output. The man.output.subdirs.enabled parameter controls whether -the files are output in subdirectories within the base -directory. -The values of the -man.output.base.dir -and man.output.subdirs.enabled parameters are used only if the -value of man.output.in.separate.dir parameter is non-zero. If the -value of man.output.in.separate.dir is zero, man-page files are -not output in a separate -directory. -Modified: manpages/docbook.xsl,1.72; manpages/param.ent,1.20; -manpages/param.xweb,1.22; params/man.output.base.dir.xml,1.1; -params/man.output.in.separate.dir.xml,1.1; -params/man.output.subdirs.enabled.xml,1.1 - Michael(tm) -Smith - - -Added -man.font.table.headings and -man.font.table.title params, for -controlling font in table headings and -titles. -Modified: manpages/docbook.xsl,1.71; manpages/param.ent,1.19; -manpages/param.xweb,1.21; params/man.font.table.headings.xml,1.1; -params/man.font.table.title.xml,1.1 - Michael(tm) -Smith - - -Added -man.font.funcsynopsisinfo and -man.font.funcprototype params, for specifying the roff -font (for example, BI, B, I) for funcsynopsisinfo and -funcprototype output. -Modified: manpages/block.xsl,1.19; -manpages/docbook.xsl,1.69; manpages/param.ent,1.18; -manpages/param.xweb,1.20; manpages/synop.xsl,1.29; -manpages/table.xsl,1.21; params/man.font.funcprototype.xml,1.1; -params/man.font.funcsynopsisinfo.xml,1.1 - Michael(tm) -Smith - - -Changed to select="0" in -refclass.suppress (instead of -..>0</..) -Modified: params/refclass.suppress.xml,1.3 - Michael(tm) -Smith - - -Added -man.segtitle.suppress param. -If the value of -man.segtitle.suppress is non-zero, then display -of segtitle contents is suppressed in -output. -Modified: manpages/docbook.xsl,1.68; manpages/param.ent,1.17; -manpages/param.xweb,1.19; params/man.segtitle.suppress.xml,1.1 - -Michael(tm) Smith - - -Added -man.output.manifest.enabled and -man.output.manifest.filename params. -If -man.output.manifest.enabled is non-zero, a list -of filenames for man pages generated by the stylesheet -transformation is written to the file named by -man.output.manifest.filename -Modified: manpages/docbook.xsl,1.67; -manpages/other.xsl,1.19; manpages/param.ent,1.16; -manpages/param.xweb,1.18; params/man.output.manifest.enabled.xml,1.1; -params/man.output.manifest.filename.xml,1.1; -tools/make/Makefile.DocBook,1.4 - Michael(tm) -Smith - - -Added refclass.suppress -param. -If the value of refclass.suppress is -non-zero, then display refclass contents is suppressed -in output. Affects HTML and FO output -only. -Modified: fo/param.ent,1.93; fo/param.xweb,1.106; html/param.ent,1.90; -html/param.xweb,1.99; params/refclass.suppress.xml,1.1 - Michael(tm) -Smith - - -Added -refentry.meta.get.quietly param. -If zero (the -default), notes and warnings about "missing" markup are generated -during gathering of refentry metadata. If -non-zero, the metadata is gathered "quietly" -- that is, the -notes and warnings are suppressed. -NOTE: If you are -processing a large amount of refentry content, you -may be able to speed up processing significantly by setting a -non-zero value for -refentry.meta.get.quietly. -Modified: common/refentry.xsl,1.17; -manpages/param.ent,1.15; manpages/param.xweb,1.17; -params/refentry.meta.get.quietly.xml,1.1 - Michael(tm) -Smith - - -Added support for "software" and -"sectdesc" class values on refmiscinfo; "software" is -treated identically to "source", and "setdesc" is treated -identically to "manual". -Modified: common/refentry.xsl,1.10; -params/man.th.extra2.max.length.xml,1.3; -params/refentry.source.name.profile.xml,1.4 - Michael(tm) -Smith - - -Drastically reworked all of the -XPath expressions used in refentry metadata gathering --- completely removed $parentinfo and turned $info into a set of -nodes that includes the *info contents of the Refentry -plus the *info contents all all of its ancestor elements. The -basic XPath expression now used throughout is (using the example -of checking for a date): - -(($info[//date])[last()]/date)[1]. -That selects the "last" -*info/date date in document order -- that is, the one -eitther on the Refentry itself or on the -closest ancestor to the Refentry. -It's -likely this change may break some things; may need to pick up -some pieces later. -Also, changed the default value for the -man.th.extra2.max.length from 40 to -30. -Modified: common/common.xsl,1.58; common/refentry.xsl,1.7; -params/man.th.extra2.max.length.xml,1.2; -params/refentry.date.profile.xml,1.2; -params/refentry.manual.profile.xml,1.2; -params/refentry.source.name.profile.xml,1.2; -params/refentry.version.profile.xml,1.2; manpages/docbook.xsl,1.58; -manpages/other.xsl,1.15 - Michael(tm) Smith - - -Added option for turning off bold -formatting in Funcsynopsis. Boldface formatting in -function synopsis is mandated in the -man(7) man page and is used almost universally in existing man -pages. Despite that, it really does look like crap to have an -entire Funcsynopsis output in bold, so I added params -for turning off the bold formatting and/or replacing it with a -different roff special font (e.g., "RI" for alternating -roman/italic instead of the default "BI" for alternating -bold/italic). The new params -are "man.funcprototype.font" and -"man.funcsynopsisinfo.font". To be documented -later. -Closes #1452247. Thanks to Joe Orton for the feature -request. -Modified: params/man.string.subst.map.xml,1.16; -manpages/block.xsl,1.10; manpages/docbook.xsl,1.51; -manpages/inline.xsl,1.16; manpages/synop.xsl,1.27 - Michael(tm) -Smith - - -fop.extensions now only -for FOP version 0.20.5 and earlier. -Modified: params/fop.extensions.xml,1.4 -- Robert Stayton - - -Support for fop1 different from -fop 0.20.5 and earlier. -Modified: params/fop1.extensions.xml,1.1 - Robert -Stayton - - -Reset default value to empty -string so template uses gentext first, then the parameter value -if not empty. -Modified: params/index.number.separator.xml,1.2; -params/index.range.separator.xml,1.2; -params/index.term.separator.xml,1.2 - Robert -Stayton - - -New parameter: -id.warnings. If non-zero, warnings are -generated for titled objects that don't have titles. True by default; -I wonder if this will be too aggressive? -Modified: html/biblio.xsl,1.25; -html/component.xsl,1.27; html/division.xsl,1.11; html/formal.xsl,1.19; -html/glossary.xsl,1.20; html/html.xsl,1.13; html/index.xsl,1.16; -html/param.ent,1.88; html/param.xweb,1.97; html/refentry.xsl,1.22; -html/sections.xsl,1.30; params/id.warnings.xml,1.1 - Norman -Walsh - - -Added new parameter -keep.relative.image.uris -Modified: fo/param.ent,1.91; -fo/param.xweb,1.104; html/param.ent,1.87; html/param.xweb,1.96; -params/keep.relative.image.uris.xml,1.1 - Norman -Walsh - - -Support default label -width parameters for itemized and ordered lists -Modified: fo/lists.xsl,1.64; -fo/param.ent,1.90; fo/param.xweb,1.103; -params/itemizedlist.label.width.xml,1.1; -params/orderedlist.label.width.xml,1.1 - Norman -Walsh - - -Added parameters to localize -punctuation in indexes. -Modified: params/index.number.separator.xml,1.1; -params/index.range.separator.xml,1.1; -params/index.term.separator.xml,1.1 - Robert -Stayton - - -Added two new parameters for -handling of multi-term -varlistentry elements: -variablelist.term.break.after: -When the variablelist.term.break.after is -non-zero, it will generate a line break after each -term multi-term -varlistentry. -variablelist.term.separator: -When a varlistentry contains multiple term -elements, the string specified in the value of the -variablelist.term.separator parameter is -placed after each term except the last. The default -is ", " (a comma followed by a space). To suppress rendering of -the separator, set the value of -variablelist.term.separator to the empty -string (""). -These parameters are primarily intended to be -useful if you have multi-term varlistentries that have long -terms. -Closes #1306676. Thanks to Sam Steingold for -providing an example "lots of long terms" doc that demonstrated -the value of having these options. -Also, added -normalize-space() call to processing of each -term. -This change affects all output formats -(HTML, PDF, manpages). The default behavior should pretty much -remain the same as before, but it is possible (as always) that -the change may introduce some -new bugginess. -Modified: fo/lists.xsl,1.62; fo/param.ent,1.88; -fo/param.xweb,1.99; html/lists.xsl,1.48; html/param.ent,1.86; -html/param.xweb,1.93; manpages/lists.xsl,1.22; -manpages/param.ent,1.14; manpages/param.xweb,1.16; -params/variablelist.term.break.after.xml,1.1; -params/variablelist.term.separator.xml,1.1 - Michael(tm) -Smith - - -Convert 'no' to string in default -value. -Modified: params/olink.doctitle.xml,1.4 - Robert -Stayton - - -Implemented RFE -#1292615. -Added bunch of new parameters (attribute sets) -that affect list presentation: list.block.properties, -itemizedlist.properties, orderedlist.properties, -itemizedlist.label.properties and -orderedlist.label.properties. Default behaviour -of stylesheets has not been changed but further customizations will be -much more easier. -Modified: fo/lists.xsl,1.61; fo/param.ent,1.87; -fo/param.xweb,1.98; params/itemizedlist.label.properties.xml,1.1; -params/itemizedlist.properties.xml,1.1; -params/list.block.properties.xml,1.1; -params/orderedlist.label.properties.xml,1.1; -params/orderedlist.properties.xml,1.1 - Jirka -Kosek - - -Implemented RFE -#1242092. -You can enable crop marks in your document by -setting crop.marks=1 and xep.extensions=1. Appearance of crop -marks can be controlled by parameters -crop.mark.bleed (6pt), -crop.mark.offset (24pt) and -crop.mark.width (0.5pt). -Also there -is new named template called user-xep-pis. You can overwrite it in -order to produce some PIs that can control XEP as described in -http://www.renderx.com/reference.html#Output_Formats -Modified: fo/docbook.xsl,1.36; -fo/param.ent,1.86; fo/param.xweb,1.97; fo/xep.xsl,1.23; -params/crop.mark.bleed.xml,1.1; params/crop.mark.offset.xml,1.1; -params/crop.mark.width.xml,1.1; params/crop.marks.xml,1.1 - Jirka -Kosek - - -Changed short descriptions in doc -for *autolabel* params to match new autolabel -behavior. -Modified: params/appendix.autolabel.xml,1.5; -params/chapter.autolabel.xml,1.4; params/part.autolabel.xml,1.5; -params/preface.autolabel.xml,1.4 - Michael(tm) -Smith - - - - - -Profiling -The following changes have been made to the - profiling code - since the 1.69.1 release. - - -Profiling now works together with -namespace stripping (V5 documents). Namespace striping should work -with all stylesheets named profile-, even if they are not supporting -namespace stripping in a non-profiling -variant. -Modified: profiling/profile-mode.xsl,1.4; -profiling/xsl2profile.xsl,1.7 - Jirka Kosek - - -Moved profiling stage out of -templates. This make possible to reuse profiled content by several -templates and still maintaing node indentity (needed for example for -HTML Help where content is processed multiple times). -I -don't know why this was not on the top level before. Maybe some XSLT -processors choked on it. I hope this will be OK -now. -Modified: profiling/xsl2profile.xsl,1.5 - Jirka -Kosek - - - - - -Tools -The following changes have been made to the - tools code - since the 1.69.1 release. - - -Moved Makefile.DocBook from -contrib module to xsl -module. -Modified: tools/make/Makefile.DocBook,1.1 - Michael(tm) -Smith - - - - - -WordML -The following changes have been made to the - wordml code - since the 1.69.1 release. - - -added contrib element, -better handling of default paragraph -style -Modified: wordml/pages-normalise.xsl,1.6; wordml/supported.xml,1.2; -wordml/wordml-final.xsl,1.14 - Steve Ball - - -added -bridgehead -Modified: wordml/docbook-pages.xsl,1.6; -wordml/docbook.xsl,1.17; wordml/pages-normalise.xsl,1.5; -wordml/template-pages.xml,1.7; wordml/template.dot,1.4; -wordml/template.xml,1.14; wordml/wordml-final.xsl,1.13 - Steve -Ball - - -added blocks stylesheet to support -bibliographies, glossaries and qandasets -Modified: wordml/Makefile,1.4; -wordml/README,1.3; wordml/blocks-spec.xml,1.1; -wordml/docbook-pages.xsl,1.5; wordml/docbook.xsl,1.16; -wordml/pages-normalise.xsl,1.4; wordml/sections-spec.xml,1.3; -wordml/specifications.xml,1.13; wordml/template-pages.xml,1.6; -wordml/template.dot,1.3; wordml/template.xml,1.13; -wordml/wordml-blocks.xsl,1.1; wordml/wordml-final.xsl,1.12; -wordml/wordml-sections.xsl,1.3 - Steve Ball - - -added mediaobject -caption -Modified: wordml/docbook-pages.xsl,1.4; -wordml/docbook.xsl,1.15; wordml/specifications.xml,1.12; -wordml/template-pages.xml,1.5; wordml/template.dot,1.2; -wordml/template.xml,1.12; wordml/wordml-final.xsl,1.11 - Steve -Ball - - -added -callouts -Modified: wordml/docbook-pages.xsl,1.3; wordml/docbook.xsl,1.14; -wordml/pages-normalise.xsl,1.3; wordml/specifications.xml,1.11; -wordml/template-pages.xml,1.4; wordml/wordml-final.xsl,1.10 - Steve -Ball - - -added Word template -file -Modified: wordml/template.dot,1.1 - Steve Ball - - -added abstract, fixed -itemizedlist, ulink -Modified: wordml/specifications.xml,1.10; -wordml/wordml-final.xsl,1.9 - Steve Ball - - -fixed Makefile added many -features to Pages support added revhistory, inlines, -highlights, abstract -Modified: wordml/Makefile,1.2; -wordml/docbook-pages.xsl,1.2; wordml/pages-normalise.xsl,1.2; -wordml/sections-spec.xml,1.2; wordml/specifications.xml,1.9; -wordml/template-pages.xml,1.3; wordml/template.xml,1.11; -wordml/wordml-final.xsl,1.8; wordml/wordml-sections.xsl,1.2 - Steve -Ball - - -fixed handling linebreaks when -generating WordML added Apple Pages -support -Modified: wordml/docbook.xsl,1.13; wordml/template-pages.xml,1.2 - -Steve Ball - - - - - - - Release 1.69.1 - This release is a minor bug-fix update to the 1.69.0 - release. Along with bug fixes, it includes one - configuration-parameter change: The default value of the - annotation.support parameter is now - 0 (off). The reason for that change is that - there have been reports that annotation handling is - causing a significant performance degradation in processing of - large documents with xsltproc. - - - - - Release 1.69.0 - The release includes major feature changes, - particularly in the manpages - stylesheets, as well as a large number of bug fixes. - - As with all DocBook Project dot zero releases, this is an - experimental release . - - - Common - - - This release adds localizations for the following - languages: - - - Albanian - Amharic - Azerbaijani - Hindi - Irish (Gaelic) - Gujarati - Kannada - Mongolian - Oriya - Punjabi - Tagalog - Tamil - Welsh - . - - - Added support for specifying number format for auto - labels for chapter, appendix, - part, and preface. Contolled with the - appendix.autolabel, - chapter.autolabel, - part.autolabel, and - preface.autolabel parameters. - - - Added basic support for biblioref cross - referencing. - - - Added support for align - on caption in mediaobject. - - - Added support for processing documents that use the - DocBook V5 namespace. - - - Added support for termdef and - mathphrase. - - - EXPERIMENTAL: Incorporated the Slides and Website - stylesheets into the DocBook XSL stylesheets package. So, - for example, Website documents can now be processed using - the following URI for the driver Website - tabular.xsl file: http://docbook.sourceforge.net/release/xsl/current/website/tabular.xsl - - - A procedure without a title is - now treated as an informal procedure (meaning - that it is not added to any generated list of - procedures and has no affect on numbering of - generated labels for other procedures). - - - docname is no longer added to - olink when pointing to a root element. - - - - Added support for generation of choice separator in - inline simplelist. This enables auto-generation of an - appropriate localized choice separator (for - example, and or or) before the - final item in an inline simplelist. - To indicate that you want a choice separator - generated for a particular list, you need to put a processing - instruction (PI) of the form - dbchoice choice="foo" as a - child of the list. For example: - <para>Choose from - ONE and ONLY ONE of the following: - <simplelist type="inline"> - <?dbchoice choice="or" ?> - <member>A</member> - <member>B</member> - <member>C</member>.</simplelist></para> - - Output (for English): -
- Choose from ONE and only ONE of the - following choices: A, B, or C. -
- As a temporary workaround for the fact that most of the - DocBook non-English locale files don't have a localization for - the word or, you can put in a literal string to - be used; example for French: dbchoice choice="ou". That is, use - ou instead of or.
-
-
-
- - FO - - - Added content-type property to - external-graphic element, based on - imagedata format - attribute. - - - Added support for generating - <rx:meta-field creator="$VERSION"/> - field for XEP output. This makes the DocBook XSL - stylesheet version information available through the - Document Properties menu in Acrobat - Reader and other PDF viewers. - - - Trademark symbol handling made consistent with - handling of same in HTML stylesheets. Prior to this change, - if you processed a document that contained no value for the - class attribute on the - trademark element, the HTML stylesheets would - default to rendering a superscript TM - symbol after the trademark contents, - but the FO stylesheets would render nothing. - - - Added support for generating XEP bookmarks for - refentry. - - - Added support for HTML markup table border attribute, applied to each - table cell. - - - The table.width template can now - sum column specs if none use % or - *. - - - Added fox:destination extension - inside fox:outline to support linking to - internal destinations. - - - Added support for customizing - abstract with property sets. Controlled - with the abstract.properties and - abstract.title.properties - parameters. - - - Add footnotes in table title to - table footnote set, and add support for table footnotes to - HTML table markup. - - - Added support for title in - glosslist. - - - Added support for itemizedlist symbol - none. - - - Implemented the new - graphical.admonition.properties and - nongraphical.admonition.properties - attribute sets. - - - Added id to - formalpara and some other blocks that were - missing it. - - - Changed the anchor template to output - fo:inline instead of - fo:wrapper. - - - Added support for toc.max.depth - parameter. - - - - - - Help - - - Eclipse Help: Added support for generating olink - database. - - - - - - HTML - - - Added a first cut at support in HTML output for - DocBook 5 style annotations. Controlled using the - annotation.support parameter, and - implemented using JavaScript and CSS styling. For more - details, see the documentation for the - annotation.js, - annotation.css, - annotation.graphic.open, and - annotation.graphic.close - parameters. - - - Generate client-side image map for - imageobjectco with areas using - calspair units - - - Added support for img.src.path PI. - - - Added support for passing - img.src.path to DocBook Java XSLT - image extensions when appropriate. Controlled using the - graphicsize.use.img.src.path - parameter. - - - Added support for (not - valid for DocBook 4) xlink:href - on area and (not valid for DocBook 4) - alt in area. - - - Added new parameter - default.table.frame to control table - framing if there is no frame - attribute on a table. - - - Added initial, experimental support for generating - content for the HTML title attribute from - content of the alt element. This change adds - support for the following inline elements only (none of them - are block elements): - - - abbrev - accel - acronym - action - application - authorinitials - beginpage - citation - citerefentry - citetitle - city - classname - code - command - computeroutput - constant - country - database - email - envar - errorcode - errorname - errortext - errortype - exceptionname - fax - filename - firstname - firstterm - foreignphrase - function - glossterm - guibutton - guiicon - guilabel - guimenu - guimenuitem - guisubmenu - hardware - honorific - interface - interfacename - keycap - keycode - keysym - lineage - lineannotation - literal - markup - medialabel - methodname - mousebutton - option - optional - otheraddr - othername - package - parameter - personname - phone - pob - postcode - productname - productnumber - prompt - property - quote - refentrytitle - remark - replaceable - returnvalue - tag - shortcut - state - street - structfield - structname - subscript - superscript - surname - symbol - systemitem - tag - termdef - token - trademark - type - uri - userinput - varname - wordasword - - - - - Added support for chunking revhistory into - separate file (similar to the support for doing same with - legalnotice). Patch from Thomas - Schraitle. Controlled through new - generate.revhistory.link parameter. - - - l10n.xsl: Made language codes RFC compliant. Added a - new boolean config parameter, - l10n.lang.value.rfc.compliant. If it - is non-zero (the default), any underscore in a language code - will be converted to a hyphen in HTML output. If it is zero, - the language code will be left as-is. - - - - - man - This release closes out 44 manpages stylesheet bug reports - and feature requests. It adds more than 35 new configuration - parameters for controlling aspects of man-page output -- - including hyphenation and justification, handling of links, - conversion of Unicode characters, and contents of man-page - headers and footers. - - - - New options for globally disabling/enabling - hyphenation and justification: - man.justify and - man.hyphenate. - Note that the default - for the both of those is zero (off), because justified text - looks good only when it is also hyphenated; to quote the - Hyphenation node from the groff info page: -
- Since the odds are not great for finding a - set of words, for every output line, which fit nicely on a - line without inserting excessive amounts of space between - words, `gtroff' hyphenates words so that it can justify - lines without inserting too much space between - words. -
- The problem is that groff can end up hyphenating a lot of - things that you don't want hyphenated (variable names and - command names, for example). Keeping both justification and - hyphenation disabled ensures that hyphens won't get inserted - where you don't want to them, and you don't end up with - lines containing excessive amounts of space between - words. These default settings run counter to how most - existing man pages are formatted. But there are some notable - exceptions, such as the perl man pages.
-
- - Added parameters for controlling hyphenation of - computer inlines, filenames, and URLs. By default, even when - hyphenation is enabled (globally), hyphenation is now - suppressed for "computer inlines" (currently, just - classname, constant, envar, - errorcode, option, - replaceable, userinput, - type, and varname, and for - filenames, and for URLs from link. It - can be (re)enabled using the - man.hyphenate.computer.inlines, - man.hyphenate.filenames, and - man.hyphenate.urls parameters. - - - - Implemented a new system for replacing Unicode - characters. There are two parts to the new system: a - string substitution map for doing - essential replacements, and a - character map that can optionally be disabled - and enabled. - The new system fixes all open bugs that had to do with - literal Unicode numbered entities such as &#8220; and - &#8221; showing up in output, and greatly expands the - ability of the stylesheets to generate good roff - equivalents for Unicode symbols and special - characters. - Here are some details... - The previous manpages mechanism for replacing Unicode - symbols and special characters with roff equivalents (the - replace-entities template) was not - scalable and not complete. The mechanism handled a somewhat - arbitrary selection of less than 20 or so Unicode - characters. But there are potentially more than - 800 Unicode special characters that - have some groff equivalent they can be mapped to. And there - are about 34 symbols in the Latin-1 (ISO-8859-1) block - alone. Users might reasonably expect that if they include - any of those Latin-1 characters in their DocBook source - documents, they will get correctly converted to known roff - equivalents in output. - In addition to those common symbols, certain users may - have a need to use symbols from other Unicode blocks. Say, - somebody who is documenting an application related to math - might need to use a bunch of symbols from the - Mathematical Operators Unicode block (there - are about 65 characters in that block that have reasonable - roff equivalents). Or somebody else might really like - Dingbats -- such as the checkmark character -- and so might - use a bunch of things from the Dingbat block - (141 characters in that that have roff equivalents or that - can at least be degraded somewhat gracefully - into roff). - So, the old replace-entities - mechanism was replaced with a completely different mechanism - that is based on use of two maps: a - substitution map and a character - map (the latter in a format compliant with the XSLT - 2.0 spec and therefore completely forward - compatible with XSLT 2.0). - The substitution map is controlled through the - man.string.subst.map parameter, and - is used to replace things like the backslash character - (which needs special handling to prevent it from being - interpreted as a roff escape). The substitution map cannot - be disabled, because disabling it will cause the output to - be broken. However, you can add to it and change it if - needed. - - The character map mechanism, on the - other hand, can be completely disabled. It is enabled by - default, and, by default, does replacement of all Latin-1 - symbols, along with most special spaces, dashes, and quotes - (about 75 characters by default). Also, you can optionally - enable a full character map that provides - support for converting all 800 or so of the characters that - have some reasonable groff equivalent. - - The character-map mechanism is controlled through the - following parameters: - - - man.charmap.enabled - turns character-map support - on/off - - - man.charmap.use.subset - specifies that a subset of the character - map is used instead of the full map - - - man.charmap.subset.profile - specifies profile of character-map - subset - - - man.charmap.uri - specifies an alternate character map to - use instead of the standard character map - provided in the distribution - - - - - - - Implemented out-of-line handling of display of URLs - for links (currently, only for ulink). This gives - you three choices for handling of links: - - - Number and list links. Each link is numbered - inline, with a number in square brackets preceding the - link contents, and a numbered list of all links is added - to the end of the document. - - - Only list links. Links are not numbered, but an - (unnumbered) list of links is added to the end of the - document. - - - Suppress links. Don't number links and don't add - any list of links to the end of the document. - - - You can also choose whether links should be underlined. The - default is the works -- list, number, and - underline links. You can use the - man.links.list.enabled, - man.links.are.numbered, and - man.links.are.underlined parameters - to change the defaults. The default heading for the link - list is REFERENCES. You can be change that using the - man.links.list.heading - parameter. - - - Changed default output encoding to UTF-8. This does not mean that man pages are output in - raw UTF-8, because the character map is applied - before final output, causing all UTF-8 characters covered in - the map to be converted to roff equivalents. - - - - Added support for processing refsect3 and - formalpara and nested refsection - elements, down to any arbitrary level of nesting. - - - - Output of the NAME and - SYNOPSIS and AUTHOR - headings and the headings for admonitions (note, - caution, etc.) are no longer hard-coded for - English. Instead, headings are generated for those in the - correct locale (just as the FO and HTML stylesheets - do). - - - - Re-worked mechanism for assembling page - headers/footers (the contents of the .TH - macro title line). - - Here are some details... - - All man pages contain a .TH roff - macro whose contents are used for rendering the title - line displayed in the header and footer of each - page. Here are a couple of examples of real-world man pages - that have useful page headers/footers: - gtk-options(7) GTK+ User's Manual gtk-options(7) <-- header - GTK+ 1.2 2003-10-20 gtk-options(7) <-- footer - - svgalib(7) Svgalib User Manual svgalib(7) <-- header - Svgalib 1.4.1 16 December 1999 svgalib(7) <-- footer - - And here are the terms with which the - groff_man(7) man page refers to the - various parts of the header/footer: - title(section) extra3 title(section) <- header - extra2 extra1 title(section) <- footer - Or, using the names with which the man(7) - man page refers to those same fields: - title(section) manual title(section) <- page header - source date title(section) <- page footer - - The easiest way to control the contents of those - fields is to mark up your refentry content like - the following (note that this is a minimal - example). - <refentry> - <info> - <date>2003-10-20</date> - </info> - <refmeta> - <refentrytitle>gtk-options</refentrytitle> - <manvolnum>7</manvolnum> - <refmiscinfo class="source-name">GTK+</refmiscinfo> - <refmiscinfo class="version">1.2</refmiscinfo> - <refmiscinfo class="manual">GTK+ User's Manual</refmiscinfo> - </refmeta> - <refnamediv> - <refname>gtk-options</refname> - <refpurpose>Standard Command Line Options for GTK+ Programs</refpurpose> - </refnamediv> - <refsect1> - <title>Description</title> - <para>This manual page describes the command line options, which - are common to all GTK+ based applications.</para> - </refsect1> - </refentry> - - - Sets the date part of the header/footer. - - - Sets the title part. - - - Sets the section part. - - - Sets the source name part. - - - Sets the version part. - - - Sets the manual part. - - - - Below are explanations of the steps the stylesheets - take to attempt to assemble and display - good headers and footer. [In the - descriptions, note that *info - is the refentry info child - (whatever its name), and - parentinfo is the - info child of its parent (again, whatever - its name).] - - - extra1 field (date) - - Content of the extra1 field is - what shows up in the center - footer position of each page. The - man(7) man page describes it as - the date of the last revision. - To provide this content, if the - refentry.date.profile.enabled - is non-zero, the stylesheets check the value of - refentry.date.profile. - Otherwise, by default, they check for a - date or pubdate not only in the - *info contents, but also in - the parentinfo - contents. - If a date cannot be found, the stylesheets now - automatically generate a localized long - format date, ensuring that this field always - has content in output. - However, if for some reason you want to suppress - this field, you can do so by setting a non-zero value - for man.th.extra1.suppress. - - - - extra2 field (source) - - On Linux systems and on systems with a modern - groff, the content of the extra2 field - are what shows up in the left - footer position of each page. - - The man(7) man page describes - this as the source of the command, and - provides the following examples: - - - For binaries, use somwething like: GNU, - NET-2, SLS Distribution, MCC Distribution. - - - For system calls, use the version of the - kernel that you are currently looking at: Linux - 0.99.11. - - - For library calls, use the source of the - function: GNU, BSD 4.3, Linux DLL 4.4.1. - - - - - In practice, there are many pages that simply - have a version number in the source - field. So, it looks like what we have is a two-part - field, - Name Version, - where: - - - Name - - product name (e.g., BSD) or org. name - (e.g., GNU) - - - - Version - - version name - - - - Each part is optional. If the - Name is a product name, - then the Version is - probably the version of the product. Or there may be - no Name, in which case, if - there is a Version, it is - probably the version of the item itself, not the - product it is part of. Or, if the - Name is an organization - name, then there probably will be no - Version. - - To provide this content, if the - refentry.source.name.profile.enabled - and - refentry.version.profile.enabled - parameter are non-zero, the stylesheets check the - value of refentry.source.name.profile - refentry.version.profile. - - Otherwise, by default, they check the following - places, in the following order: - - - *info/productnumber - - - *info/productnumber - - - refmeta/refmiscinfo[@class = 'version'] - - - parentinfo/productnumber - - - *info/productname - - - parentinfo/productname - - - refmeta/refmiscinfo - - - [nothing found, so leave it empty] - - - - - - - extra3 field - - On Linux systems and on systems with a modern - groff, the content of the extra3 field - are what shows up in the center - header position of each page. Some man - pages have extra2 content, some - don't. If a particular man page has it, it is most - often context data about some larger - system the documented item belongs to (for example, - the name or description of a group of related - applications). The stylesheets now check the following - places, in the following order, to look for content to - add to the extra3 field. - - - parentinfo/title - - - parent's title - - - refmeta/refmiscinfo - - - [nothing found, so leave it empty] - - - - - - - - - - Reworked *info gathering. For - each refentry found, the stylesheets now cache its - *info content, then check for any - valid parent of it that might have metainfo content and cache - that, if found; they then then do all further matches against - those node-sets (rather than re-selecting the original - *info nodes each time they are - needed). - - - - New option for breaking strings after forward - slashes. This enables long URLs and pathnames to be broken - across lines. Controlled through - man.break.after.slash parameter. - - - - Output for servicemark and trademark are now - (SM) and (TM). There is - a groff "\(tm" escape, but output from that - is not acceptable. - - - - New option for controlling the length of the title - part of the .TH title line. Controlled - through the man.th.title.max.length - parameter. - - - - New option for specifying output encoding of each man - page; controlled with - man.output.encoding (similar to the - HTML chunker.output.encoding - parameter). - - - - New option for suppressing filename messages when - generating output; controlled with - man.output.quietly (similar to the HTML - chunk.quietly parameter). - - - - The text of cross-references to first-level - refentry (refsect1, top-level - refsection, refnamediv, and - refsynopsisdiv) are now capitalized. - - - - Cross-references to refnamediv now use the - localized NAME title instead of using the - first refname child. This makes the output - inconsistent with HTML and FO output, but for man-page output, - it seems to make better sense to have the - NAME. (It may actually make better sense to - do it that way in HTML and FO output as well...) - - - - Added support for processing funcparams. - - - - Removed the space that was being output between - funcdef and paramdef; example: was: - float rand (void); now: - float rand(void) - - - - Turned off bold formatting for the type - element when it occurs within a funcdef or - paramdef - - - - Corrected rendering of simplelist. Any - <simplelist type="inline" instance - is now rendered as a comma-separated list (also with an - optional localized and or or before the last item -- see - description elsewhere in these release notes). Any simplelist - instance whose type is not - inline is rendered as a one-column vertical - list (ignoring the values of the type and columns attributes if present) - - - - Comment added at top of roff source for each page now - includes DocBook XSL stylesheets version number (as in the - HTML stylesheets) - - - - Made change to prevent sticky fonts - changes. Now, when the manpages stylesheets encounter node - sets that need to be boldfaced or italicized, they put the - \fBfoo\fR and \fIbar\fR - groff bold/italic instructions separately around each node in - the set. - - - synop.xsl: Boldface everything in - funcsynopsis output except parameters (which are in - ital). The man(7) man page says: -
- For functions, the arguments are always specified - using italics, even in the SYNOPSIS section, where the rest - of the function is specified in bold. -
- A look through the contents of the - man/man2 directory shows that most - (all) existing pages do follow this everything in - funcsynopsis bold rule. That means the - type content and any punctuation (parens, - semicolons, varargs) also must be bolded.
-
- - - Removed code for adding backslashes before periods/dots - in roff source, because backslashes in front of periods/dots - in roff source are needed only in the very rare case where a - period is the very first character in a line, without any - space in front of it. A better way to deal with that rare case - is for you to add a zero-width space in front of the offending - dot(s) in your source - - - - Removed special handling of the quote - element. That was hard-coded to cause anything marked up with - the quote element to be output preceded by two - backticks and followed by two apostrophes -- that is, that - old-school kludge for generating curly quotes in Emacs and - in X-Windows fonts. While Emacs still seems to support that, I - don't think X-Windows has for a long time now. And, anyway, it - looks (and has always looked) like crap when viewed on a - normal tty/console. In addition, it breaks localiztion of - quote. By default, quote content is - output with localized quotation marks, which, depending on the - locale, may or may not be left and right double quotation - marks. - - - - Changed mappings for left and right single quotation - marks. Those had previously been incorrectly mapped to the - backtick (&#96;) and apostrophe (&39;) characters (for - kludgy reasons -- see above). They are now correctly mapped to - the \(oq and \(cq roff - escapes. If you want the old (broken) behavior, you need to - manually change the mappings for those in the value of the - man.string.subst.map parameter. - - - Removed xref.xsl file. Now, of the - various cross-reference elements, only the ulink - element is handled differently; the rest are handled exactly - as the HTML stylesheets handle them, except that no hypertext - links are generated. (Because there is no equivalent hypertext - mechanism is man pages.) - - - - New option for making subheading dividers in generated - roff source. The dividers are not visible in the rendered man - page; they are just there to make the source - readable. Controlled using - man.subheading.divider. - - - - Fixed many places where too much space was being added - between lines. - -
- -
-
- - - - Release 1.68.1 - The release adds localization support for Farsi (thanks to - Sina Heshmati) and improved support for the XLink-based DocBook NG - db:link element. Other than that, it is a minor - bug-fix update to the 1.68.0 release. The main thing it fixes is a - build error that caused the XSLT Java extensions to be jarred up - with the wrong package structure. Thanks to Jens Stavnstrup for - quickly reporting the problem, and to Mauritz Jeanson for - investigating and finding the cause. - - - - - Release 1.68.0 - This release includes some features changes, particularly - for FO/PDF output, and a number of bug fixes. - - FO - - Moved footnote properties to attribute-sets. - - - Added support for side floats, margin notes, and - custom floats. - - - Added new parameters - body.start.indent and - body.end.indent to the - set.flow.properties template. - - - Added support for xml:id - - - Added support for - refdescriptor. - - - Added support for multiple refnamedivs. - - - Added index.entry.properties - attribute-set to support customization of index - entries. - - - Added set.flow.properties - template call to each fo:flow - to support customizations entry point. - - - Add support for @floatstyle in - figure - - - Moved hardcoded properties for index division titles - to the index.div.title.properties - attribute-set. - - - Added support for - table-layout="auto" for XEP. - - - Added index.div.title.properties - attribute-set. - - - $verbose parameter is now - passed to most elements. - - - Added refentry to - toc in part, as it is - permitted by the DocBook schema/DTD. - - - Added backmatter elements and - article to toc in - part, since they are permitted by the - DocBook schema/DTD. - - - Added mode="toc" for - simplesect, since it is now permitted in - the toc if - simplesect.in.toc is set. - - - Moved hard-coded properties to - nongraphical.admonintion.properties - and graphical.admonition.properties - attribute sets. - - - Added support for sidebar-width and - float-type processing instructions in - sidebar. - - - For tables with HTML markup elements, added support - for dbfo bgcolor PI, the attribute-sets - named table.properties, - informaltable.properties, - table.table.properties, and - table.cell.padding. Also added - support for the templates named - table.cell.properties and - table.cell.block.properties so that - tabstyles can be implemented. Also added support for tables - containing only tr instead of - tbody with tr. - - - Added new paramater - hyphenate.verbatim.characters which - can specify characters after which a line break can occur in - verbatim environments. This parameter can be used to extend - the initial set of characters which contain only space and - non-breakable space. - - - Added itemizedlist.label.markup to enable - selection of different bullet symbol. Also added several - potential bullet characters, commented out by default. - - - Enabled all id's in XEP output for external olinking. - - - - - HTML - - Added support for - refdescriptor. - - - Added support for multiple refnamedivs. - - - Added support for xml:id - - - refsynopsisdiv as a section for - counting section levels - - - - Images - - Added new SVG admonition graphics and navigation images. - - - - - - - - Release 1.67.2 - This release fixes a table bug introduced in the 1.67.1 - release. - - - Release 1.67.1 - This release includes a number of bug fixes. - The following lists provide details about API and feature changes. - - FO - - Tables: Inherited cell properties are now passed to the - table.cell.properties template so they can - be overridden by a customization. - - - Tables: Added support for bgcolor PI on table row - element. - - - TOCs: Added new parameter - simplesect.in.toc; default value of - 0 causes simplesect to be omitted from TOCs; to - cause simplesect to be included in TOCs, you - must set the value of simplesect.in.toc to - 1.Comment from Norm: - -
- Simplesect elements aren't supposed to - appear in the ToC at all... The use case for simplesect - is when, for example, every chapter in a book ends with - "Exercises" or "For More Information" sections and you - don't want those to appear in the ToC. -
-
-
- - Sections: Reverted change that caused a variable reference - to be used in a template match and rewrote code to preserve - intended semantics. - - - Lists: Added workaround to prevent "* 0.60 + 1em" garbage in - list output from PassiveTeX - - - Moved the literal attributes from - component.title to the - component.title.properties attribute-set so - they can be customized. - - - Lists: Added glossdef's first - para to special handling in - fo:list-item-body. - -
- - - HTML - - TOCs: Added new parameter - simplesect.in.toc; for details, see - the list of changes for this - release. - - - Indexing: Added new parameter - index.prefer.titleabbrev; when set to - 1, index references will use - titleabbrev instead of - title when available. - - - - HTML Help - - Added support for generating windows-1252-encoded - output using Saxon; for more details, see the list of changes for this release. - - - - man pages - - Replaced named/numeric character-entity references for - non-breaking space with groff equivalent (backslash-tilde). - - - - XSL Java extensions - - Saxon extensions: Added the - Windows1252 class. It extends Saxon - 6.5.x with the windows-1252 character set, which is - particularly useful when generating HTML Help for Western - European Languages (code from - Pontus - Haglund and contributed to the - DocBook community by Sectra AB, Sweden). - To use: - - - Make sure that the Saxon 6.5.x jar file and the jar file for - the DocBook XSL Java extensions are in your CLASSPATH - - - Create a DocBook XSL customization layer -- a file named - mystylesheet.xsl or whatever -- that, at a - minimum, contains the following: - <xsl:stylesheet - xmlns:xsl="http://www.w3.org/1999/XSL/Transform" - version='1.0'> - <xsl:import href="http://docbook.sourceforge.net/release/xsl/current/htmlhelp/htmlhelp.xsl"/> - <xsl:output method="html" encoding="WINDOWS-1252" indent="no"/> - <xsl:param name="htmlhelp.encoding" select="'WINDOWS-1252'"></xsl:param> - <xsl:param name="chunker.output.encoding" select="'WINDOWS-1252'"></xsl:param> - <xsl:param name="saxon.character.representation" select="'native'"></xsl:param> - </xsl:stylesheet> - - Invoke Saxon with the - encoding.windows-1252 Java system property set - to com.nwalsh.saxon.Windows1252; for example - java \ - -Dencoding.windows-1252=com.nwalsh.saxon.Windows1252 \ - com.icl.saxon.StyleSheet \ - mydoc.xml mystylesheet.xsl - - Or, for a more complete "real world" case showing other - options you'll typically want to use: - java \ - -Dencoding.windows-1252=com.nwalsh.saxon.Windows1252 \ - -Djavax.xml.parsers.DocumentBuilderFactory=org.apache.xerces.jaxp.DocumentBuilderFactoryImpl \ - -Djavax.xml.parsers.SAXParserFactory=org.apache.xerces.jaxp.SAXParserFactoryImpl \ - -Djavax.xml.transform.TransformerFactory=com.icl.saxon.TransformerFactoryImpl \ - com.icl.saxon.StyleSheet \ - -x org.apache.xml.resolver.tools.ResolvingXMLReader \ - -y org.apache.xml.resolver.tools.ResolvingXMLReader \ - -r org.apache.xml.resolver.tools.CatalogResolver \ - mydoc.xml mystylesheet.xsl - - In both cases, the "mystylesheet.xsl" file should be a - DocBook customization layer containing the parameters - show in step 2. - - - - - - Saxon extensions: Removed Saxon 8 extensions from release package - - -
-
- - Release 1.67.0 - - - A number of important bug fixes. - - - Added Saxon8 extensions - - - Enabled dbfo table-width on - entrytbl in FO output - - - Added support for role=strong on - emphasis in FO output - - - Added new FO parameter - hyphenate.verbatim that can be used to turn - on "intelligent" wrapping of verbatim environments. - - - Replaced all <tt></tt> output with - <code></code> - - - Changed admon.graphic.width template to a - mode so that different admonitions can have different graphical - widths. - - - Deprecated the HTML shade.verbatim - parameter (use CSS instead) - - - Wrapped ToC - refentrytitle/refname and - refpurpose in span with class values. This - makes it possible to style them using a CSS stylesheet. - - - Use strong/em instead of - b/i in HTML output - - - Added support for converting Emphasis to - groff italic and Emphasis role='bold' to - bold. Controlled by - emphasis.propagates.style param, but not - documented yet using litprog system. Will do that next (planning - to add some other parameter-controllable options for hyphenation - and handling of line spacing). - - - callout.graphics.number.limit.xml - param: Changed the default from 10 to - 15. - - - verbatim.properties: Added - hyphenate=false - - - Saxon and Xalan Text.java extensions: Added support for - URIResolver() on insertfile href's - - - Added generated RELEASE-NOTES.txt - file. - - - Added INSTALL file (executable file for - generating catalog.xml) - - - Removed obsolete tools directory from - package - - - - -Release 1.66.1 - - -A number of important bug fixes. - - - - -Now xml:base attributes that are generated by an -XInclude processor are resolved for image files. - - - - -Rewrote olink templates to support several new features. - - - - -Extended full olink support to FO output. - - - - -Add support for xrefstyle attribute in olinks. - - - - -New parameters to support new olink features: -insert.olink.page.number, insert.olink.pdf.frag, -olink.debug, olink.lang.fallback.sequence, olink.properties, -prefer.internal.olink. -See the reference page for each parameter for more -information. - - - - - -Added index.on.type parameter for new type -attribute introduced in DocBook 4.3 for indexterms and index. -This allows you to create multiple indices containing -different categories of entries. -For users of 4.2 and earlier, you can use the new parameter index.on.role -instead. - - - - -Added new -section.autolabel.max.depth parameter to turn off section numbering -below a certain depth. -This permits you to number major section levels and leave minor -section levels unnumbered. - - - -Added footnote.sep.leader.properties attribute set to format -the line separating footnotes in printed output. - - - - -Added parameter img.src.path as a prefix to HTML img src -attributes. -The prefix is added to whatever path is already generated by the -stylesheet for each image file. - - - -Added new attribute-sets -informalequation.properties, -informalexample.properties, -informalfigure.properties, and informaltable.properties, -so each such element type can be formatted -individually if needed. - - - - -Add component.label.includes.part.label -parameter to add any part number to chapter, appendix -and other component labels when -the label.from.part parameter is nonzero. -This permits you to distinguish multiple chapters with the same -chapter number in cross references and the TOC. - - - -Added chunk.separate.lots parameter for HTML output. -This parameter lets you generate separate chunk files for each LOT -(list of tables, list of figures, etc.). - - -Added several table features: - - - -Added table.table.properties attribute set to add -properties to the fo:table element. - - - - -Added placeholder templates named table.cell.properties -and table.cell.block.properties to enable adding properties -to any fo:table-cell or the cell's fo:block, respectively. - These templates are a start for implementing table styles. - - - - - -Added new attribute -set component.title.properties for easy modifications of -component's title formatting in FO output. - - - - -Added Saxon support for an encoding attribute on the textdata element. Added new parameter -textdata.default.encoding which specifies encoding when -encoding attribute on -textdata is missing. - - - - -Template label.this.section now controls whole -section label, not only sub-label which corresponds to -particular label. Former behaviour was IMHO bug as it was -not usable. - - - - -Formatting in titleabbrev for TOC and headers -is preserved when there are no hotlink elements in the title. Formerly the title showed only the text of the title, no font changes or other markup. - - - - -Added intial.page.number template to set the initial-page-number -property for page sequences in print output. -Customizing this template lets you change when page numbering restarts. This is similar to the format.page.number template that lets you change how the page number formatting changes in the output. - - - - -Added force.page.count template to set the force-page-count -property for page sequences in print output. -This is similar to the format.page.number template. - - - - -Sort language for localized index sorting in autoidx-ng.xsl is now taken from document -lang, not from system environment. - - - - -Numbering and formatting of normal -and ulink footnotes (if turned on) has been unified. -Now ulink footnotes are mixed in with any other footnotes. - - - -Added support for renderas attribute in section and -sect1 et al. -This permits you to render a given section title as if it were a different level. - - - -Added support for label attribute in footnote to manually -supply the footnote mark. - - - - -Added support for DocBook 4.3 corpcredit element. - - - - -Added support for a dbfo keep-together PI for -formal objects (table, figure, example, equation, programlisting). That permits a formal object to be kept together if it is not already, or to be broken if it -is very long and the -default keep-together is not appropriate. - - - - -For graphics files, made file extension matching case -insensitive, and updated the list of graphics extensions. - - - - -Allow calloutlist to have block content before -the first callout - - - - -Added dbfo-need processing instruction to provide -soft page breaks. - - - - -Added implementation of existing but unused -default.image.width parameter for graphics. - - - - -Support DocBook NG tag inline element. - - - - -It appears that XEP now supports Unicode characters in -bookmarks. There is no further need to strip accents from -characters. - - - - -Make segmentedlist HTML markup -more semantic and available to CSS styles. - - - - -Added user.preroot placeholder template to -permit xsl-stylesheet and other PIs and comments to be -output before the HTML root element. - - - - -Non-chunked legalnotice now gets an <a -name="id"> element in HTML output -so it can be referenced with xref or link. - - - - -In chunked HTML output, changed link rel="home" to rel="start", -and link rel="previous" to rel="prev", per W3C HTML 4.01 -spec. - - - - -Added several patches to htmlhelp from W. Borgert - - - - -Added Bosnian locale file as common/bs.xml. - - - - - -Release 1.65.0 - - -A number of important bug fixes. - - - -Added a workaround to allow these stylesheets to process DocBook NG -documents. (It’s a hack that pre-processes the document to strip off the -namespace and then uses exsl:node-set to process -the result.) - - - -Added alternative indexing mechanism which has better -internationalization support. New indexing method allows grouping of -accented letters like e, é, ë into the same group under letter "e". It -can also treat special letters (e.g. "ch") as one character and place -them in the correct position (e.g. between "h" and "i" in Czech -language). -In order to use this mechanism you must create customization -layer which imports some base stylesheet (like -fo/docbook.xsl, -html/chunk.xsl) and then includes appropriate -stylesheet with new indexing code -(fo/autoidx-ng.xsl or -html/autoidx-ng.xsl). For example: -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" - version="1.0"> - -<xsl:import href="http://docbook.sourceforge.net/release/xsl/current/fo/docbook.xsl"/> -<xsl:include href="http://docbook.sourceforge.net/release/xsl/current/fo/autoidx-ng.xsl"/> - -</xsl:stylesheet> -New method is known to work with Saxon and it should also work -with xsltproc 1.1.1 and later. Currently supported languages are -English, Czech, German, French, Spanish and Danish. - - - - -Release 1.64.1 - -General bug fixes and improvements. Sorry about the failure to produce -an updated release notes file for 1.62.0—1.63.2 - -In the course of fixing bug #849787, wrapping Unicode callouts -with an appropriate font change in the Xalan extensions, I discovered -that the Xalan APIs have changed a bit. So xalan2.jar -will work with older Xalan 2 implementations, xalan25.jar -works with Xalan 2.5. - - - - -Release 1.61.0 - -Lots of bug fixes and improvements. - -Initial support for timestamp PI. From now you - can use <?dbtimestamp format="Y-m-d H:M:S"?> to get current - datetime in your document. Added localization support for datetime PI - - - -Added level 6 to test for section depth in -section.level template so that -section.title.level6.properties will be used for sections -that are 6 deep or deeper. This should also cause a h6 to be -created in html output. - - - -Don't use SVG graphics if use.svg=0 - - - -Now uses number-and-title-template for sections - only if section.autolabel is not zero. - - - -Added missing 'english-language-name' attribute to -the l10n element, and the missing 'style' attribute to the -template element so the current gentext documents will -validate. - - - -Corrected several references to parameter - qanda.defaultlabel that were missing the "$". - - - -Now accepts admon.textlabel parameter to turn off - Note, Warning, etc. label. - - - -FeatReq #684561: support more XEP metadata - - - -Added hyphenation support. Added support for coref. -Added beginpage support. (does nothing; see TDG). - - - -Added support for -hyphenation-character, hyphenation-push-character-count, and -hyphenation-remain-character-count - - - -Added root.properties, -ebnf.assignment, -and ebnf.statement.terminator - - - -Support bgcolor PI in table cells; make sure -rowsep and colsep don't have any effect on the last row or -column - - - -Handle othercredit on titlepage a little -better - - - -Applied fix from Jeff Beal that fixed the bug -that put secondary page numbers on primary entries. Same -with tertiary page numbers on secondary entries. - - - -Added definition of missing variable -collection. - - - -Make footnote formatting 'normal' even when it -occurs in a context that has special formatting - - - -Added warning when glossary.collection is not -blank, but it cannot open the specified file. - - - -Pick up the frame attribute on table and -informaltable. - - - -indexdiv/title -in non-autogenerated indexes are -now picked up. - - - -Removed (unused) -component.title.properties - - - -Move IDs from -page-sequences down to titlepage blocks - - - -Use -proportional-column-width(1) on more tables. - -Use proportional-column-width() for -header/footer tables; suppress relative-align when when -using FOP - - - -Check for glossterm.auto.link when linking -firstterms; don't output gl. prefix on glossterm links - - - -Generate Part ToCs - - - -Support glossary, bibliography, -and index in component ToCs. - - - -Refactored chunking code so that -customization of chunk algorithm and chunk elements is more -practical - - - -Support textobject/phrase -on inlinemediaobject. - - - -Support 'start' PI on ordered lists - - - -Fixed test of $toc PI to turn on qandaset TOC. - - - -Added process.chunk.footnotes to sect2 through -5 to fix bug of missing footnotes when chunk level greater -than 1. - - - -Added -paramater toc.max.depth which controls maximal depth of ToC -as requested by PHP-DOC group. - - - -Exempted titleabbrev from preamble processing in -lists, and fixed variablelist preamble code to use the same -syntax as the other lists. - - - -Added support for elements between variablelist -and first varlistentry since DocBook 4.2 supports that now. - - - - - -Release 1.60.1 - -Lots of bug fixes. - -The format of the titlepage.templates.xml files and -the stylesheet that transforms them have been significantly changed. All of the -attributes used to control the templates are now namespace qualified. So what -used to be: -<t:titlepage element="article" wrapper="fo:block"> -is now: -<t:titlepage t:element="article" t:wrapper="fo:block"> -Attributes from other namespaces (including those that are unqualified) are -now copied directly through. In practice, this means that the names that used -to be fo: qualified: -<title named-template="component.title" - param:node="ancestor-or-self::article[1]" - fo:text-align="center" - fo:keep-with-next="always" - fo:font-size="&hsize5;" - fo:font-weight="bold" - fo:font-family="{$title.font.family}"/> -are now unqualified: -<title t:named-template="component.title" - param:node="ancestor-or-self::article[1]" - text-align="center" - keep-with-next="always" - font-size="&hsize5;" - font-weight="bold" - font-family="{$title.font.family}"/> -The t:titlepage and t:titlepage-content -elements both generate wrappers now. And unqualified attributes on those elements -are passed through. This means that you can now make the title font apply to -ane entire titlepage and make the entire recto -titlepage centered by specifying the font and alignment on the those elements: -<t:titlepage t:element="article" t:wrapper="fo:block" - font-family="{$title.font.family}"> - - <t:titlepage-content t:side="recto" - text-align="center"> - - - - - - - -Support use of titleabbrev in running -headers and footers. - - - -Added (experimental) xref.with.number.and.title -parameter to enable number/title cross references even when the -default would -be just the number. - - - -Generate part ToCs if they're requested. - - - -Use proportional-column-width() in header/footer tables. - - - -Handle alignment correctly when screenshot -wraps a graphic in a figure. - - - -Format chapter and appendix -cross references consistently. - - - -Attempt to support tables with multiple tgroups -in FO. - - - -Output fo:table-columns in -simplelist tables. - - - -Use titlepage.templates.xml for -indexdiv and glossdiv formatting. - - - -Improve support for new bibliography elements. - - - -Added -footnote.number.format, -table.footnote.number.format, -footnote.number.symbols, and -table.footnote.number.symbols for better control of -footnote markers. - - - -Added glossentry.show.acronyms. - - - -Suppress the draft-mode page masters when -draft-mode is no. - - - -Make blank pages verso not recto. D'Oh! - - - -Improved formatting of ulink footnotes. - - - -Fixed bugs in graphic width/height calculations. - - - -Added class attributes to inline elements. - - - -Don't add .html to the filenames identified -with the dbhtml PI. - - - -Don't force a ToC when sections contain refentrys. - - - -Make section title sizes a function of the -body.master.size. - - - - - -Release 1.59.2 - -The 1.59.2 fixes an FO bug in the page masters that causes FOP to fail. - - -Removed the region-name from the region-body of blank pages. There's -no reason to give the body of blank pages a unique name and doing so causes -a mismatch that FOP detects. - - - -Output IDs for the first paragraphs in listitems. - - - -Fixed some small bugs in the handling of page numbers in double-sided mode. - - - -Attempt to prevent duplicated IDs from being produced when -endterm on xref points -to something with nested structure. - - - -Fix aligment problems in equations. - - - -Output the type attribute on unordered lists (UL) in HTML only if -the css.decoration parameter is true. - - - -Calculate the font size in formal.title.properties so that it's 1.2 times -the base font size, not a fixed "12pt". - - - - - -Release 1.59.1 - -The 1.59.1 fixes a few bugs. - - -Added Bulgarian localization. - - - -Indexing improvements; localize book indexes to books but allow setindex -to index an entire set. - - - -The default value for rowsep and colsep is now "1" as per CALS. - - - -Added support for titleabbrev (use them for cross -references). - - - -Improvements to mediaobject for selecting print vs. online -images. - - - -Added seperate property sets for figures, -examples, equations, tabless, -and procedures. - - - -Make lineannotations italic. - - - -Support xrefstyle attribute. - - - -Make endterm on -xref higher priority than -xreflabel target. - - - -Glossary formatting improvements. - - - - - -Release 1.58.0 - -The 1.58.0 adds some initial support for extensions in xsltproc, adds -a few features, and fixes bugs. - - -This release contains the first attempt at extension support for xsltproc. -The only extension available to date is the one that adjusts table column widths. -Run extensions/xsltproc/python/xslt.py. - - - -Fixed bugs in calculation of adjusted column widths to correct for rounding -errors. - - - -Support nested refsection elements correctly. - - - -Reworked gentext.template to take context into consideration. -The name of elements in localization files is now an xpath-like context list, not -just a simple name. - - - -Made some improvements to bibliography formatting. - - - -Improved graphical formatting of admonitions. - - - -Added support for entrytbl. - - - -Support spanning index terms. - - - -Support bibliosource. - - - - - -Release 1.57.0 - - -The 1.57.0 release wasn't documented here. Oops. - - - - - -Release 1.56.0 - -The 1.56.0 release fixes bugs. - - -Reworked chunking. This will break all existing customizations -layers that change the chunking algorithm. If you're customizing chunking, -look at the new content parameter that's passed to -process-chunk-element and friends. - - - -Support continued and inherited numeration in orderedlist -formatting for FOs. - - - -Added Thai localization. - - - -Tweaked stylesheet documentation stylesheets to link to TDG and -the parameter references. - - - -Allow title on tables of contents ("Table of Contents") to be optional. -Added new keyword to generate.toc. -Support tables of contents on sections. - - - -Made separate parameters for table borders and table cell borders: -table.frame.border.color, -table.frame.border.style, -table.frame.border.thickness, -table.cell.border.color, -table.cell.border.style, and -table.cell.border.thickness. - - - -Suppress formatting of endofrange indexterms. -This is only half-right. They should generate a range, but I haven't figured out how -to do that yet. - - - -Support revdescription. (Bug #582192) - - - -Added default.float.class and fixed figure -floats. (Bug #497603) - - - -Fixed formatting of sbr in FOs. - - - -Added context to the missing template error message. - - - -Process arg correctly in a group. -(Bug #605150) - - - -Removed 'keep-with-next' from formal.title.properties -attribute set now that the stylesheets support the option of putting -such titles below the object. Now the $placement value determines if -'keep-with-next' or 'keep-with-previous' is used in the title block. - - - -Wrap url() around external-destinations when appropriate. - - - -Fixed typo in compact list spacing. (Bug #615464) - - - -Removed spurious hash in anchor name. (Bug #617717) - - - -Address is now displayed verbatim on title pages. (Bug #618600) - - - -The bridgehead.in.toc parameter is now properly -supported. - - - -Improved effectiveness of HTML cleanup by increasing the number -of places where it is used. Improve use of HTML cleanup in XHTML stylesheets. - - - -Support table of contents for appendix in -article. (Bug #596599) - - - -Don't duplicate footnotes in bibliographys and -glossarys. (Bug #583282) - - - -Added default.image.width. (Bug #516859) - - - -Totally reworked funcsynopsis code; it now -supports a 'tabular' presentation style for 'wide' prototypes; see -funcsynopsis.tabular.threshold. (HTML only -right now, I think, FO support, uh, real soon now.) - - - -Reworked support for difference marking; toned down the colors a bit -and added a system.head.content template so that the diff CSS -wasn't overriding user.head.content. (Bug #610660) - - - -Added call to the *.head.content elements when writing -out long description chunks. - - - -Make sure legalnotice link is correct even when -chunking to a different base.dir. - - - -Use CSS to set viewport characteristics if -css.decoration is non-zero, use div instead of p for making -graphic a block element; make figure titles the -default alt -text for images in a figure. - - -Added space-after to list.block.spacing. - - - -Reworked section.level template to give correct answer -instead of being off by one. - - - -When processing tables, use the tabstyle -attribute as the division class. - - - -Fixed bug in html2xhtml.xsl that was causing the -XHTML chunker to output HTML instead of XHTML. - - - - - - Older releases - To view the release notes for older releases, see http://cvs.sourceforge.net/viewcvs.py/docbook/xsl/RELEASE-NOTES.xml. Be - aware that there were no release notes for releases prior to the - 1.50.0 release. - - - About dot-zero releases - DocBook Project “dot zero†releases should be - considered experimental and are always - followed by stable “dot one plus†releases, usually within - two or three weeks. Please help to ensure the stability of - “dot one plus†releases by carefully testing each - “dot zero†release and reporting back about any - problems you find. - It is not recommended that you use a “dot zero†- release in a production system. Instead, you should wait for - the “dot one†or greater versions. - - diff --git a/docbook-xsl-1.75.2/TODO b/docbook-xsl-1.75.2/TODO deleted file mode 100644 index 1f421cd..0000000 --- a/docbook-xsl-1.75.2/TODO +++ /dev/null @@ -1,23 +0,0 @@ -The "to do" list for the DocBook Project XSL stylesheets is -maintained at Sourceforge. To view a list of all open feature -requests for the stylesheets: - - http://docbook.sf.net/tracker/xsl/requests - -To submit a feature request against the stylesheets: - - http://docbook.sf.net/tracker/submit/request - -To do a full-text search of all DocBook Project issues: - - http://docbook.sf.net/tracker/search - -Discussion about the DocBook Project XSL stylesheets takes place -on the docbook-apps mailing list: - - http://wiki.docbook.org/topic/DocBookAppsMailingList - -Real-time discussion takes place on IRC: - - http://wiki.docbook.org/topic/DocBookIrcChannel - irc://irc.freenode.net/docbook diff --git a/docbook-xsl-1.75.2/VERSION b/docbook-xsl-1.75.2/VERSION deleted file mode 100644 index c51167c..0000000 --- a/docbook-xsl-1.75.2/VERSION +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - - - - -docbook-xsl -1.75.1 -8444 -$Revision: 8499 $ -$URL: https://docbook.svn.sourceforge.net/svnroot/docbook/trunk/xsl/VERSION $ - - - - - DocBook - XSL Stylesheets - - - 1.75.2 - - - - - - - -* Minor bugfixes - - - - - http://sourceforge.net/projects/docbook/ - http://prdownloads.sourceforge.net/docbook/{DISTRONAME-VERSION}.tar.gz?download - http://prdownloads.sourceforge.net/docbook/{DISTRONAME-VERSION}.zip?download - http://prdownloads.sourceforge.net/docbook/{DISTRONAME-VERSION}.bz2?download - http://sourceforge.net/project/shownotes.php?release_id={SFRELID} - http://docbook.svn.sourceforge.net/viewvc/docbook/ - http://lists.oasis-open.org/archives/docbook-apps/ - This is a release with bugfixes. - - - - - - - - - - - - - - - - - - - - - - - You must specify the sf-relid as a parameter. - - - - - - - - - - - - - - - - - - : - - - - - - - - - : - - - - - - - - - : - - - - - diff --git a/docbook-xsl-1.75.2/catalog.xml b/docbook-xsl-1.75.2/catalog.xml deleted file mode 100644 index ef7900f..0000000 --- a/docbook-xsl-1.75.2/catalog.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/docbook-xsl-1.75.2/common/af.xml b/docbook-xsl-1.75.2/common/af.xml deleted file mode 100644 index 65a32d4..0000000 --- a/docbook-xsl-1.75.2/common/af.xml +++ /dev/null @@ -1,1230 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Symbols -A -a -À -à -à -á - -â -à -ã -Ä -ä -Ã… -Ã¥ -Ä€ -Ä -Ä‚ -ă -Ä„ -Ä… -Ç -ÇŽ -Çž -ÇŸ -Ç  -Ç¡ -Ǻ -Ç» -È€ -È -È‚ -ȃ -Ȧ -ȧ -Ḁ -Ḡ-ẚ -Ạ -ạ -Ả -ả -Ấ -ấ -Ầ -ầ -Ẩ -ẩ -Ẫ -ẫ -Ậ -ậ -Ắ -ắ -Ằ -ằ -Ẳ -ẳ -Ẵ -ẵ -Ặ -ặ -B -b -Æ€ -Æ -É“ -Æ‚ -ƃ -Ḃ -ḃ -Ḅ -ḅ -Ḇ -ḇ -C -c -Ç -ç -Ć -ć -Ĉ -ĉ -ÄŠ -Ä‹ -ÄŒ -Ä -Ƈ -ƈ -É• -Ḉ -ḉ -D -d -ÄŽ -Ä -Ä -Ä‘ -ÆŠ -É— -Æ‹ -ÆŒ -Ç… -Dz -È¡ -É– -Ḋ -ḋ -Ḍ -Ḡ-Ḏ -Ḡ-Ḡ-ḑ -Ḓ -ḓ -E -e -È -è -É -é -Ê -ê -Ë -ë -Ä’ -Ä“ -Ä” -Ä• -Ä– -Ä— -Ę -Ä™ -Äš -Ä› -È„ -È… -Ȇ -ȇ -Ȩ -È© -Ḕ -ḕ -Ḗ -ḗ -Ḙ -ḙ -Ḛ -ḛ -Ḝ -Ḡ-Ẹ -ẹ -Ẻ -ẻ -Ẽ -ẽ -Ế -ế -Ề -á» -Ể -ể -Ễ -á»… -Ệ -ệ -F -f -Æ‘ -Æ’ -Ḟ -ḟ -G -g -Äœ -Ä -Äž -ÄŸ -Ä  -Ä¡ -Ä¢ -Ä£ -Æ“ -É  -Ǥ -Ç¥ -Ǧ -ǧ -Ç´ -ǵ -Ḡ -ḡ -H -h -Ĥ -Ä¥ -Ħ -ħ -Èž -ÈŸ -ɦ -Ḣ -ḣ -Ḥ -ḥ -Ḧ -ḧ -Ḩ -ḩ -Ḫ -ḫ -ẖ -I -i -ÃŒ -ì -à -í -ÃŽ -î -à -ï -Ĩ -Ä© -Ī -Ä« -Ĭ -Ä­ -Ä® -į -Ä° -Æ— -ɨ -Ç -Ç -Ȉ -ȉ -ÈŠ -È‹ -Ḭ -ḭ -Ḯ -ḯ -Ỉ -ỉ -Ị -ị -J -j -Ä´ -ĵ -Ç° -Ê -K -k -Ķ -Ä· -Ƙ -Æ™ -Ǩ -Ç© -Ḱ -ḱ -Ḳ -ḳ -Ḵ -ḵ -L -l -Ĺ -ĺ -Ä» -ļ -Ľ -ľ -Ä¿ -Å€ -Å -Å‚ -Æš -Lj -È´ -É« -ɬ -É­ -Ḷ -ḷ -Ḹ -ḹ -Ḻ -ḻ -Ḽ -ḽ -M -m -ɱ -Ḿ -ḿ -á¹€ -á¹ -Ṃ -ṃ -N -n -Ñ -ñ -Ń -Å„ -Å… -ņ -Ň -ň -Æ -ɲ -Æž -È  -Ç‹ -Ǹ -ǹ -ȵ -ɳ -Ṅ -á¹… -Ṇ -ṇ -Ṉ -ṉ -Ṋ -ṋ -O -o -Ã’ -ò -Ó -ó -Ô -ô -Õ -õ -Ö -ö -Ø -ø -ÅŒ -Å -ÅŽ -Å -Å -Å‘ -ÆŸ -Æ  -Æ¡ -Ç‘ -Ç’ -Ǫ -Ç« -Ǭ -Ç­ -Ǿ -Ç¿ -ÈŒ -È -ÈŽ -È -Ȫ -È« -Ȭ -È­ -È® -ȯ -È° -ȱ -Ṍ -á¹ -Ṏ -á¹ -á¹ -ṑ -á¹’ -ṓ -Ọ -á» -Ỏ -á» -á» -ố -á»’ -ồ -á»” -ổ -á»– -á»— -Ộ -á»™ -Ớ -á»› -Ờ -á» -Ở -ở -á»  -ỡ -Ợ -ợ -P -p -Ƥ -Æ¥ -á¹” -ṕ -á¹– -á¹— -Q -q -Ê  -R -r -Å” -Å• -Å– -Å— -Ř -Å™ -È -È‘ -È’ -È“ -ɼ -ɽ -ɾ -Ṙ -á¹™ -Ṛ -á¹› -Ṝ -á¹ -Ṟ -ṟ -S -s -Åš -Å› -Åœ -Å -Åž -ÅŸ -Å  -Å¡ -Ș -È™ -Ê‚ -á¹  -ṡ -á¹¢ -á¹£ -Ṥ -á¹¥ -Ṧ -ṧ -Ṩ -ṩ -T -t -Å¢ -Å£ -Ť -Å¥ -Ŧ -ŧ -Æ« -Ƭ -Æ­ -Æ® -ʈ -Èš -È› -ȶ -Ṫ -ṫ -Ṭ -á¹­ -á¹® -ṯ -á¹° -á¹± -ẗ -U -u -Ù -ù -Ú -ú -Û -û -Ãœ -ü -Ũ -Å© -Ū -Å« -Ŭ -Å­ -Å® -ů -Å° -ű -Ų -ų -Ư -Æ° -Ç“ -Ç” -Ç• -Ç– -Ç— -ǘ -Ç™ -Çš -Ç› -Çœ -È” -È• -È– -È— -á¹² -á¹³ -á¹´ -á¹µ -Ṷ -á¹· -Ṹ -á¹¹ -Ṻ -á¹» -Ụ -ụ -Ủ -ủ -Ứ -ứ -Ừ -ừ -Ử -á»­ -á»® -ữ -á»° -á»± -V -v -Ʋ -Ê‹ -á¹¼ -á¹½ -á¹¾ -ṿ -W -w -Å´ -ŵ -Ẁ -Ạ-Ẃ -ẃ -Ẅ -ẅ -Ẇ -ẇ -Ẉ -ẉ -ẘ -X -x -Ẋ -ẋ -Ẍ -Ạ-Y -y -à -ý -ÿ -Ÿ -Ŷ -Å· -Ƴ -Æ´ -Ȳ -ȳ -Ẏ -Ạ-ẙ -Ỳ -ỳ -á»´ -ỵ -Ỷ -á»· -Ỹ -ỹ -Z -z -Ź -ź -Å» -ż -Ž -ž -Ƶ -ƶ -Ȥ -È¥ -Ê -Ê‘ -Ạ-ẑ -Ẓ -ẓ -Ẕ -ẕ - - diff --git a/docbook-xsl-1.75.2/common/am.xml b/docbook-xsl-1.75.2/common/am.xml deleted file mode 100644 index a5b0fea..0000000 --- a/docbook-xsl-1.75.2/common/am.xml +++ /dev/null @@ -1,1230 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -áˆáˆáŠ­á‰¶á‰½ -A -a -À -à -à -á - -â -à -ã -Ä -ä -Ã… -Ã¥ -Ä€ -Ä -Ä‚ -ă -Ä„ -Ä… -Ç -ÇŽ -Çž -ÇŸ -Ç  -Ç¡ -Ǻ -Ç» -È€ -È -È‚ -ȃ -Ȧ -ȧ -Ḁ -Ḡ-ẚ -Ạ -ạ -Ả -ả -Ấ -ấ -Ầ -ầ -Ẩ -ẩ -Ẫ -ẫ -Ậ -ậ -Ắ -ắ -Ằ -ằ -Ẳ -ẳ -Ẵ -ẵ -Ặ -ặ -B -b -Æ€ -Æ -É“ -Æ‚ -ƃ -Ḃ -ḃ -Ḅ -ḅ -Ḇ -ḇ -C -c -Ç -ç -Ć -ć -Ĉ -ĉ -ÄŠ -Ä‹ -ÄŒ -Ä -Ƈ -ƈ -É• -Ḉ -ḉ -D -d -ÄŽ -Ä -Ä -Ä‘ -ÆŠ -É— -Æ‹ -ÆŒ -Ç… -Dz -È¡ -É– -Ḋ -ḋ -Ḍ -Ḡ-Ḏ -Ḡ-Ḡ-ḑ -Ḓ -ḓ -E -e -È -è -É -é -Ê -ê -Ë -ë -Ä’ -Ä“ -Ä” -Ä• -Ä– -Ä— -Ę -Ä™ -Äš -Ä› -È„ -È… -Ȇ -ȇ -Ȩ -È© -Ḕ -ḕ -Ḗ -ḗ -Ḙ -ḙ -Ḛ -ḛ -Ḝ -Ḡ-Ẹ -ẹ -Ẻ -ẻ -Ẽ -ẽ -Ế -ế -Ề -á» -Ể -ể -Ễ -á»… -Ệ -ệ -F -f -Æ‘ -Æ’ -Ḟ -ḟ -G -g -Äœ -Ä -Äž -ÄŸ -Ä  -Ä¡ -Ä¢ -Ä£ -Æ“ -É  -Ǥ -Ç¥ -Ǧ -ǧ -Ç´ -ǵ -Ḡ -ḡ -H -h -Ĥ -Ä¥ -Ħ -ħ -Èž -ÈŸ -ɦ -Ḣ -ḣ -Ḥ -ḥ -Ḧ -ḧ -Ḩ -ḩ -Ḫ -ḫ -ẖ -I -i -ÃŒ -ì -à -í -ÃŽ -î -à -ï -Ĩ -Ä© -Ī -Ä« -Ĭ -Ä­ -Ä® -į -Ä° -Æ— -ɨ -Ç -Ç -Ȉ -ȉ -ÈŠ -È‹ -Ḭ -ḭ -Ḯ -ḯ -Ỉ -ỉ -Ị -ị -J -j -Ä´ -ĵ -Ç° -Ê -K -k -Ķ -Ä· -Ƙ -Æ™ -Ǩ -Ç© -Ḱ -ḱ -Ḳ -ḳ -Ḵ -ḵ -L -l -Ĺ -ĺ -Ä» -ļ -Ľ -ľ -Ä¿ -Å€ -Å -Å‚ -Æš -Lj -È´ -É« -ɬ -É­ -Ḷ -ḷ -Ḹ -ḹ -Ḻ -ḻ -Ḽ -ḽ -M -m -ɱ -Ḿ -ḿ -á¹€ -á¹ -Ṃ -ṃ -N -n -Ñ -ñ -Ń -Å„ -Å… -ņ -Ň -ň -Æ -ɲ -Æž -È  -Ç‹ -Ǹ -ǹ -ȵ -ɳ -Ṅ -á¹… -Ṇ -ṇ -Ṉ -ṉ -Ṋ -ṋ -O -o -Ã’ -ò -Ó -ó -Ô -ô -Õ -õ -Ö -ö -Ø -ø -ÅŒ -Å -ÅŽ -Å -Å -Å‘ -ÆŸ -Æ  -Æ¡ -Ç‘ -Ç’ -Ǫ -Ç« -Ǭ -Ç­ -Ǿ -Ç¿ -ÈŒ -È -ÈŽ -È -Ȫ -È« -Ȭ -È­ -È® -ȯ -È° -ȱ -Ṍ -á¹ -Ṏ -á¹ -á¹ -ṑ -á¹’ -ṓ -Ọ -á» -Ỏ -á» -á» -ố -á»’ -ồ -á»” -ổ -á»– -á»— -Ộ -á»™ -Ớ -á»› -Ờ -á» -Ở -ở -á»  -ỡ -Ợ -ợ -P -p -Ƥ -Æ¥ -á¹” -ṕ -á¹– -á¹— -Q -q -Ê  -R -r -Å” -Å• -Å– -Å— -Ř -Å™ -È -È‘ -È’ -È“ -ɼ -ɽ -ɾ -Ṙ -á¹™ -Ṛ -á¹› -Ṝ -á¹ -Ṟ -ṟ -S -s -Åš -Å› -Åœ -Å -Åž -ÅŸ -Å  -Å¡ -Ș -È™ -Ê‚ -á¹  -ṡ -á¹¢ -á¹£ -Ṥ -á¹¥ -Ṧ -ṧ -Ṩ -ṩ -T -t -Å¢ -Å£ -Ť -Å¥ -Ŧ -ŧ -Æ« -Ƭ -Æ­ -Æ® -ʈ -Èš -È› -ȶ -Ṫ -ṫ -Ṭ -á¹­ -á¹® -ṯ -á¹° -á¹± -ẗ -U -u -Ù -ù -Ú -ú -Û -û -Ãœ -ü -Ũ -Å© -Ū -Å« -Ŭ -Å­ -Å® -ů -Å° -ű -Ų -ų -Ư -Æ° -Ç“ -Ç” -Ç• -Ç– -Ç— -ǘ -Ç™ -Çš -Ç› -Çœ -È” -È• -È– -È— -á¹² -á¹³ -á¹´ -á¹µ -Ṷ -á¹· -Ṹ -á¹¹ -Ṻ -á¹» -Ụ -ụ -Ủ -ủ -Ứ -ứ -Ừ -ừ -Ử -á»­ -á»® -ữ -á»° -á»± -V -v -Ʋ -Ê‹ -á¹¼ -á¹½ -á¹¾ -ṿ -W -w -Å´ -ŵ -Ẁ -Ạ-Ẃ -ẃ -Ẅ -ẅ -Ẇ -ẇ -Ẉ -ẉ -ẘ -X -x -Ẋ -ẋ -Ẍ -Ạ-Y -y -à -ý -ÿ -Ÿ -Ŷ -Å· -Ƴ -Æ´ -Ȳ -ȳ -Ẏ -Ạ-ẙ -Ỳ -ỳ -á»´ -ỵ -Ỷ -á»· -Ỹ -ỹ -Z -z -Ź -ź -Å» -ż -Ž -ž -Ƶ -ƶ -Ȥ -È¥ -Ê -Ê‘ -Ạ-ẑ -Ẓ -ẓ -Ẕ -ẕ - - diff --git a/docbook-xsl-1.75.2/common/ar.xml b/docbook-xsl-1.75.2/common/ar.xml deleted file mode 100644 index d246f8c..0000000 --- a/docbook-xsl-1.75.2/common/ar.xml +++ /dev/null @@ -1,1230 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Symbols -A -a -À -à -à -á - -â -à -ã -Ä -ä -Ã… -Ã¥ -Ä€ -Ä -Ä‚ -ă -Ä„ -Ä… -Ç -ÇŽ -Çž -ÇŸ -Ç  -Ç¡ -Ǻ -Ç» -È€ -È -È‚ -ȃ -Ȧ -ȧ -Ḁ -Ḡ-ẚ -Ạ -ạ -Ả -ả -Ấ -ấ -Ầ -ầ -Ẩ -ẩ -Ẫ -ẫ -Ậ -ậ -Ắ -ắ -Ằ -ằ -Ẳ -ẳ -Ẵ -ẵ -Ặ -ặ -B -b -Æ€ -Æ -É“ -Æ‚ -ƃ -Ḃ -ḃ -Ḅ -ḅ -Ḇ -ḇ -C -c -Ç -ç -Ć -ć -Ĉ -ĉ -ÄŠ -Ä‹ -ÄŒ -Ä -Ƈ -ƈ -É• -Ḉ -ḉ -D -d -ÄŽ -Ä -Ä -Ä‘ -ÆŠ -É— -Æ‹ -ÆŒ -Ç… -Dz -È¡ -É– -Ḋ -ḋ -Ḍ -Ḡ-Ḏ -Ḡ-Ḡ-ḑ -Ḓ -ḓ -E -e -È -è -É -é -Ê -ê -Ë -ë -Ä’ -Ä“ -Ä” -Ä• -Ä– -Ä— -Ę -Ä™ -Äš -Ä› -È„ -È… -Ȇ -ȇ -Ȩ -È© -Ḕ -ḕ -Ḗ -ḗ -Ḙ -ḙ -Ḛ -ḛ -Ḝ -Ḡ-Ẹ -ẹ -Ẻ -ẻ -Ẽ -ẽ -Ế -ế -Ề -á» -Ể -ể -Ễ -á»… -Ệ -ệ -F -f -Æ‘ -Æ’ -Ḟ -ḟ -G -g -Äœ -Ä -Äž -ÄŸ -Ä  -Ä¡ -Ä¢ -Ä£ -Æ“ -É  -Ǥ -Ç¥ -Ǧ -ǧ -Ç´ -ǵ -Ḡ -ḡ -H -h -Ĥ -Ä¥ -Ħ -ħ -Èž -ÈŸ -ɦ -Ḣ -ḣ -Ḥ -ḥ -Ḧ -ḧ -Ḩ -ḩ -Ḫ -ḫ -ẖ -I -i -ÃŒ -ì -à -í -ÃŽ -î -à -ï -Ĩ -Ä© -Ī -Ä« -Ĭ -Ä­ -Ä® -į -Ä° -Æ— -ɨ -Ç -Ç -Ȉ -ȉ -ÈŠ -È‹ -Ḭ -ḭ -Ḯ -ḯ -Ỉ -ỉ -Ị -ị -J -j -Ä´ -ĵ -Ç° -Ê -K -k -Ķ -Ä· -Ƙ -Æ™ -Ǩ -Ç© -Ḱ -ḱ -Ḳ -ḳ -Ḵ -ḵ -L -l -Ĺ -ĺ -Ä» -ļ -Ľ -ľ -Ä¿ -Å€ -Å -Å‚ -Æš -Lj -È´ -É« -ɬ -É­ -Ḷ -ḷ -Ḹ -ḹ -Ḻ -ḻ -Ḽ -ḽ -M -m -ɱ -Ḿ -ḿ -á¹€ -á¹ -Ṃ -ṃ -N -n -Ñ -ñ -Ń -Å„ -Å… -ņ -Ň -ň -Æ -ɲ -Æž -È  -Ç‹ -Ǹ -ǹ -ȵ -ɳ -Ṅ -á¹… -Ṇ -ṇ -Ṉ -ṉ -Ṋ -ṋ -O -o -Ã’ -ò -Ó -ó -Ô -ô -Õ -õ -Ö -ö -Ø -ø -ÅŒ -Å -ÅŽ -Å -Å -Å‘ -ÆŸ -Æ  -Æ¡ -Ç‘ -Ç’ -Ǫ -Ç« -Ǭ -Ç­ -Ǿ -Ç¿ -ÈŒ -È -ÈŽ -È -Ȫ -È« -Ȭ -È­ -È® -ȯ -È° -ȱ -Ṍ -á¹ -Ṏ -á¹ -á¹ -ṑ -á¹’ -ṓ -Ọ -á» -Ỏ -á» -á» -ố -á»’ -ồ -á»” -ổ -á»– -á»— -Ộ -á»™ -Ớ -á»› -Ờ -á» -Ở -ở -á»  -ỡ -Ợ -ợ -P -p -Ƥ -Æ¥ -á¹” -ṕ -á¹– -á¹— -Q -q -Ê  -R -r -Å” -Å• -Å– -Å— -Ř -Å™ -È -È‘ -È’ -È“ -ɼ -ɽ -ɾ -Ṙ -á¹™ -Ṛ -á¹› -Ṝ -á¹ -Ṟ -ṟ -S -s -Åš -Å› -Åœ -Å -Åž -ÅŸ -Å  -Å¡ -Ș -È™ -Ê‚ -á¹  -ṡ -á¹¢ -á¹£ -Ṥ -á¹¥ -Ṧ -ṧ -Ṩ -ṩ -T -t -Å¢ -Å£ -Ť -Å¥ -Ŧ -ŧ -Æ« -Ƭ -Æ­ -Æ® -ʈ -Èš -È› -ȶ -Ṫ -ṫ -Ṭ -á¹­ -á¹® -ṯ -á¹° -á¹± -ẗ -U -u -Ù -ù -Ú -ú -Û -û -Ãœ -ü -Ũ -Å© -Ū -Å« -Ŭ -Å­ -Å® -ů -Å° -ű -Ų -ų -Ư -Æ° -Ç“ -Ç” -Ç• -Ç– -Ç— -ǘ -Ç™ -Çš -Ç› -Çœ -È” -È• -È– -È— -á¹² -á¹³ -á¹´ -á¹µ -Ṷ -á¹· -Ṹ -á¹¹ -Ṻ -á¹» -Ụ -ụ -Ủ -ủ -Ứ -ứ -Ừ -ừ -Ử -á»­ -á»® -ữ -á»° -á»± -V -v -Ʋ -Ê‹ -á¹¼ -á¹½ -á¹¾ -ṿ -W -w -Å´ -ŵ -Ẁ -Ạ-Ẃ -ẃ -Ẅ -ẅ -Ẇ -ẇ -Ẉ -ẉ -ẘ -X -x -Ẋ -ẋ -Ẍ -Ạ-Y -y -à -ý -ÿ -Ÿ -Ŷ -Å· -Ƴ -Æ´ -Ȳ -ȳ -Ẏ -Ạ-ẙ -Ỳ -ỳ -á»´ -ỵ -Ỷ -á»· -Ỹ -ỹ -Z -z -Ź -ź -Å» -ż -Ž -ž -Ƶ -ƶ -Ȥ -È¥ -Ê -Ê‘ -Ạ-ẑ -Ẓ -ẓ -Ẕ -ẕ - - diff --git a/docbook-xsl-1.75.2/common/autoidx-kimber.xsl b/docbook-xsl-1.75.2/common/autoidx-kimber.xsl deleted file mode 100644 index 151d3af..0000000 --- a/docbook-xsl-1.75.2/common/autoidx-kimber.xsl +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - -]> - - - - - - - - - - ERROR: the 'kimber' index method requires the - Saxon version 6 or 8 XSLT processor. - - - 1 - - - - - - - - diff --git a/docbook-xsl-1.75.2/common/autoidx-kosek.xsl b/docbook-xsl-1.75.2/common/autoidx-kosek.xsl deleted file mode 100644 index 386e452..0000000 --- a/docbook-xsl-1.75.2/common/autoidx-kosek.xsl +++ /dev/null @@ -1,150 +0,0 @@ - - - -]> - - - - - - - - - - ERROR: the 'kosek' index method does not - work with the xsltproc XSLT processor. - - - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - No " - - " localization of index grouping letters exists - - - . - - - ; using "en". - - - - - - - - - - - - - - - - - - - - - - 0 - - - - - - - - - - - - - - - - - - - - - - - - - - - - No " - - " localization of index grouping letters exists - - - . - - - ; using "en". - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/common/az.xml b/docbook-xsl-1.75.2/common/az.xml deleted file mode 100644 index aebfb01..0000000 --- a/docbook-xsl-1.75.2/common/az.xml +++ /dev/null @@ -1,673 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Ä°ÅŸarÉ™lÉ™r -A -a -B -b -C -c -Ç -ç -D -d -E -e -e -e -Æ -É™ -G -g -Äž -ÄŸ -H -h -X -x -I -ı -Ä° -i -J -j -K -k -Q -q -L -l -M -m -N -n -O -o -Ö -ö -P -p -R -r -S -s -Åž -ÅŸ -T -t -U -u -Ãœ -ü -V -v -Y -y -Z -z - - diff --git a/docbook-xsl-1.75.2/common/bg.xml b/docbook-xsl-1.75.2/common/bg.xml deleted file mode 100644 index 3f91ddd..0000000 --- a/docbook-xsl-1.75.2/common/bg.xml +++ /dev/null @@ -1,725 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Цифри и знаци -Ð -а -Б -б -Ð’ -в -Г -г -Д -д -Е -е -Ж -ж -З -з -И -и -Й -й -К -к -Л -л -Ðœ -м -Ð -н -О -о -П -п -Р -Ñ€ -С -Ñ -Т -Ñ‚ -У -у -Ф -Ñ„ -Ð¥ -Ñ… -Ц -ц -Ч -ч -Ш -ш -Щ -щ -Ъ -ÑŠ -Ь -ÑŒ -Ю -ÑŽ -Я -Ñ -Э -Ñ -Ы -Ñ‹ -A -a -B -b -C -c -D -d -E -e -F -f -G -g -H -h -I -i -J -j -K -k -L -l -M -m -N -n -O -o -P -p -Q -q -R -r -S -s -T -t -U -u -V -v -W -w -X -x -Y -y -Z -z - - diff --git a/docbook-xsl-1.75.2/common/bn.xml b/docbook-xsl-1.75.2/common/bn.xml deleted file mode 100644 index c63341e..0000000 --- a/docbook-xsl-1.75.2/common/bn.xml +++ /dev/null @@ -1,1230 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Symbols -A -a -À -à -à -á - -â -à -ã -Ä -ä -Ã… -Ã¥ -Ä€ -Ä -Ä‚ -ă -Ä„ -Ä… -Ç -ÇŽ -Çž -ÇŸ -Ç  -Ç¡ -Ǻ -Ç» -È€ -È -È‚ -ȃ -Ȧ -ȧ -Ḁ -Ḡ-ẚ -Ạ -ạ -Ả -ả -Ấ -ấ -Ầ -ầ -Ẩ -ẩ -Ẫ -ẫ -Ậ -ậ -Ắ -ắ -Ằ -ằ -Ẳ -ẳ -Ẵ -ẵ -Ặ -ặ -B -b -Æ€ -Æ -É“ -Æ‚ -ƃ -Ḃ -ḃ -Ḅ -ḅ -Ḇ -ḇ -C -c -Ç -ç -Ć -ć -Ĉ -ĉ -ÄŠ -Ä‹ -ÄŒ -Ä -Ƈ -ƈ -É• -Ḉ -ḉ -D -d -ÄŽ -Ä -Ä -Ä‘ -ÆŠ -É— -Æ‹ -ÆŒ -Ç… -Dz -È¡ -É– -Ḋ -ḋ -Ḍ -Ḡ-Ḏ -Ḡ-Ḡ-ḑ -Ḓ -ḓ -E -e -È -è -É -é -Ê -ê -Ë -ë -Ä’ -Ä“ -Ä” -Ä• -Ä– -Ä— -Ę -Ä™ -Äš -Ä› -È„ -È… -Ȇ -ȇ -Ȩ -È© -Ḕ -ḕ -Ḗ -ḗ -Ḙ -ḙ -Ḛ -ḛ -Ḝ -Ḡ-Ẹ -ẹ -Ẻ -ẻ -Ẽ -ẽ -Ế -ế -Ề -á» -Ể -ể -Ễ -á»… -Ệ -ệ -F -f -Æ‘ -Æ’ -Ḟ -ḟ -G -g -Äœ -Ä -Äž -ÄŸ -Ä  -Ä¡ -Ä¢ -Ä£ -Æ“ -É  -Ǥ -Ç¥ -Ǧ -ǧ -Ç´ -ǵ -Ḡ -ḡ -H -h -Ĥ -Ä¥ -Ħ -ħ -Èž -ÈŸ -ɦ -Ḣ -ḣ -Ḥ -ḥ -Ḧ -ḧ -Ḩ -ḩ -Ḫ -ḫ -ẖ -I -i -ÃŒ -ì -à -í -ÃŽ -î -à -ï -Ĩ -Ä© -Ī -Ä« -Ĭ -Ä­ -Ä® -į -Ä° -Æ— -ɨ -Ç -Ç -Ȉ -ȉ -ÈŠ -È‹ -Ḭ -ḭ -Ḯ -ḯ -Ỉ -ỉ -Ị -ị -J -j -Ä´ -ĵ -Ç° -Ê -K -k -Ķ -Ä· -Ƙ -Æ™ -Ǩ -Ç© -Ḱ -ḱ -Ḳ -ḳ -Ḵ -ḵ -L -l -Ĺ -ĺ -Ä» -ļ -Ľ -ľ -Ä¿ -Å€ -Å -Å‚ -Æš -Lj -È´ -É« -ɬ -É­ -Ḷ -ḷ -Ḹ -ḹ -Ḻ -ḻ -Ḽ -ḽ -M -m -ɱ -Ḿ -ḿ -á¹€ -á¹ -Ṃ -ṃ -N -n -Ñ -ñ -Ń -Å„ -Å… -ņ -Ň -ň -Æ -ɲ -Æž -È  -Ç‹ -Ǹ -ǹ -ȵ -ɳ -Ṅ -á¹… -Ṇ -ṇ -Ṉ -ṉ -Ṋ -ṋ -O -o -Ã’ -ò -Ó -ó -Ô -ô -Õ -õ -Ö -ö -Ø -ø -ÅŒ -Å -ÅŽ -Å -Å -Å‘ -ÆŸ -Æ  -Æ¡ -Ç‘ -Ç’ -Ǫ -Ç« -Ǭ -Ç­ -Ǿ -Ç¿ -ÈŒ -È -ÈŽ -È -Ȫ -È« -Ȭ -È­ -È® -ȯ -È° -ȱ -Ṍ -á¹ -Ṏ -á¹ -á¹ -ṑ -á¹’ -ṓ -Ọ -á» -Ỏ -á» -á» -ố -á»’ -ồ -á»” -ổ -á»– -á»— -Ộ -á»™ -Ớ -á»› -Ờ -á» -Ở -ở -á»  -ỡ -Ợ -ợ -P -p -Ƥ -Æ¥ -á¹” -ṕ -á¹– -á¹— -Q -q -Ê  -R -r -Å” -Å• -Å– -Å— -Ř -Å™ -È -È‘ -È’ -È“ -ɼ -ɽ -ɾ -Ṙ -á¹™ -Ṛ -á¹› -Ṝ -á¹ -Ṟ -ṟ -S -s -Åš -Å› -Åœ -Å -Åž -ÅŸ -Å  -Å¡ -Ș -È™ -Ê‚ -á¹  -ṡ -á¹¢ -á¹£ -Ṥ -á¹¥ -Ṧ -ṧ -Ṩ -ṩ -T -t -Å¢ -Å£ -Ť -Å¥ -Ŧ -ŧ -Æ« -Ƭ -Æ­ -Æ® -ʈ -Èš -È› -ȶ -Ṫ -ṫ -Ṭ -á¹­ -á¹® -ṯ -á¹° -á¹± -ẗ -U -u -Ù -ù -Ú -ú -Û -û -Ãœ -ü -Ũ -Å© -Ū -Å« -Ŭ -Å­ -Å® -ů -Å° -ű -Ų -ų -Ư -Æ° -Ç“ -Ç” -Ç• -Ç– -Ç— -ǘ -Ç™ -Çš -Ç› -Çœ -È” -È• -È– -È— -á¹² -á¹³ -á¹´ -á¹µ -Ṷ -á¹· -Ṹ -á¹¹ -Ṻ -á¹» -Ụ -ụ -Ủ -ủ -Ứ -ứ -Ừ -ừ -Ử -á»­ -á»® -ữ -á»° -á»± -V -v -Ʋ -Ê‹ -á¹¼ -á¹½ -á¹¾ -ṿ -W -w -Å´ -ŵ -Ẁ -Ạ-Ẃ -ẃ -Ẅ -ẅ -Ẇ -ẇ -Ẉ -ẉ -ẘ -X -x -Ẋ -ẋ -Ẍ -Ạ-Y -y -à -ý -ÿ -Ÿ -Ŷ -Å· -Ƴ -Æ´ -Ȳ -ȳ -Ẏ -Ạ-ẙ -Ỳ -ỳ -á»´ -ỵ -Ỷ -á»· -Ỹ -ỹ -Z -z -Ź -ź -Å» -ż -Ž -ž -Ƶ -ƶ -Ȥ -È¥ -Ê -Ê‘ -Ạ-ẑ -Ẓ -ẓ -Ẕ -ẕ - - diff --git a/docbook-xsl-1.75.2/common/bs.xml b/docbook-xsl-1.75.2/common/bs.xml deleted file mode 100644 index 782ecb8..0000000 --- a/docbook-xsl-1.75.2/common/bs.xml +++ /dev/null @@ -1,663 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Simboli -A -a -B -b -C -c -Ć -ć -ÄŒ -Ä -D -d -Ä -Ä‘ -E -e -F -f -G -g -H -h -I -i -J -j -K -k -L -l -M -m -N -n -O -o -P -p -R -r -S -s -Å  -Å¡ -T -t -U -u -V -v -Z -z -Ž -ž - - diff --git a/docbook-xsl-1.75.2/common/ca.xml b/docbook-xsl-1.75.2/common/ca.xml deleted file mode 100644 index fc91a30..0000000 --- a/docbook-xsl-1.75.2/common/ca.xml +++ /dev/null @@ -1,1230 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Symbols -A -a -À -à -à -á - -â -à -ã -Ä -ä -Ã… -Ã¥ -Ä€ -Ä -Ä‚ -ă -Ä„ -Ä… -Ç -ÇŽ -Çž -ÇŸ -Ç  -Ç¡ -Ǻ -Ç» -È€ -È -È‚ -ȃ -Ȧ -ȧ -Ḁ -Ḡ-ẚ -Ạ -ạ -Ả -ả -Ấ -ấ -Ầ -ầ -Ẩ -ẩ -Ẫ -ẫ -Ậ -ậ -Ắ -ắ -Ằ -ằ -Ẳ -ẳ -Ẵ -ẵ -Ặ -ặ -B -b -Æ€ -Æ -É“ -Æ‚ -ƃ -Ḃ -ḃ -Ḅ -ḅ -Ḇ -ḇ -C -c -Ç -ç -Ć -ć -Ĉ -ĉ -ÄŠ -Ä‹ -ÄŒ -Ä -Ƈ -ƈ -É• -Ḉ -ḉ -D -d -ÄŽ -Ä -Ä -Ä‘ -ÆŠ -É— -Æ‹ -ÆŒ -Ç… -Dz -È¡ -É– -Ḋ -ḋ -Ḍ -Ḡ-Ḏ -Ḡ-Ḡ-ḑ -Ḓ -ḓ -E -e -È -è -É -é -Ê -ê -Ë -ë -Ä’ -Ä“ -Ä” -Ä• -Ä– -Ä— -Ę -Ä™ -Äš -Ä› -È„ -È… -Ȇ -ȇ -Ȩ -È© -Ḕ -ḕ -Ḗ -ḗ -Ḙ -ḙ -Ḛ -ḛ -Ḝ -Ḡ-Ẹ -ẹ -Ẻ -ẻ -Ẽ -ẽ -Ế -ế -Ề -á» -Ể -ể -Ễ -á»… -Ệ -ệ -F -f -Æ‘ -Æ’ -Ḟ -ḟ -G -g -Äœ -Ä -Äž -ÄŸ -Ä  -Ä¡ -Ä¢ -Ä£ -Æ“ -É  -Ǥ -Ç¥ -Ǧ -ǧ -Ç´ -ǵ -Ḡ -ḡ -H -h -Ĥ -Ä¥ -Ħ -ħ -Èž -ÈŸ -ɦ -Ḣ -ḣ -Ḥ -ḥ -Ḧ -ḧ -Ḩ -ḩ -Ḫ -ḫ -ẖ -I -i -ÃŒ -ì -à -í -ÃŽ -î -à -ï -Ĩ -Ä© -Ī -Ä« -Ĭ -Ä­ -Ä® -į -Ä° -Æ— -ɨ -Ç -Ç -Ȉ -ȉ -ÈŠ -È‹ -Ḭ -ḭ -Ḯ -ḯ -Ỉ -ỉ -Ị -ị -J -j -Ä´ -ĵ -Ç° -Ê -K -k -Ķ -Ä· -Ƙ -Æ™ -Ǩ -Ç© -Ḱ -ḱ -Ḳ -ḳ -Ḵ -ḵ -L -l -Ĺ -ĺ -Ä» -ļ -Ľ -ľ -Ä¿ -Å€ -Å -Å‚ -Æš -Lj -È´ -É« -ɬ -É­ -Ḷ -ḷ -Ḹ -ḹ -Ḻ -ḻ -Ḽ -ḽ -M -m -ɱ -Ḿ -ḿ -á¹€ -á¹ -Ṃ -ṃ -N -n -Ñ -ñ -Ń -Å„ -Å… -ņ -Ň -ň -Æ -ɲ -Æž -È  -Ç‹ -Ǹ -ǹ -ȵ -ɳ -Ṅ -á¹… -Ṇ -ṇ -Ṉ -ṉ -Ṋ -ṋ -O -o -Ã’ -ò -Ó -ó -Ô -ô -Õ -õ -Ö -ö -Ø -ø -ÅŒ -Å -ÅŽ -Å -Å -Å‘ -ÆŸ -Æ  -Æ¡ -Ç‘ -Ç’ -Ǫ -Ç« -Ǭ -Ç­ -Ǿ -Ç¿ -ÈŒ -È -ÈŽ -È -Ȫ -È« -Ȭ -È­ -È® -ȯ -È° -ȱ -Ṍ -á¹ -Ṏ -á¹ -á¹ -ṑ -á¹’ -ṓ -Ọ -á» -Ỏ -á» -á» -ố -á»’ -ồ -á»” -ổ -á»– -á»— -Ộ -á»™ -Ớ -á»› -Ờ -á» -Ở -ở -á»  -ỡ -Ợ -ợ -P -p -Ƥ -Æ¥ -á¹” -ṕ -á¹– -á¹— -Q -q -Ê  -R -r -Å” -Å• -Å– -Å— -Ř -Å™ -È -È‘ -È’ -È“ -ɼ -ɽ -ɾ -Ṙ -á¹™ -Ṛ -á¹› -Ṝ -á¹ -Ṟ -ṟ -S -s -Åš -Å› -Åœ -Å -Åž -ÅŸ -Å  -Å¡ -Ș -È™ -Ê‚ -á¹  -ṡ -á¹¢ -á¹£ -Ṥ -á¹¥ -Ṧ -ṧ -Ṩ -ṩ -T -t -Å¢ -Å£ -Ť -Å¥ -Ŧ -ŧ -Æ« -Ƭ -Æ­ -Æ® -ʈ -Èš -È› -ȶ -Ṫ -ṫ -Ṭ -á¹­ -á¹® -ṯ -á¹° -á¹± -ẗ -U -u -Ù -ù -Ú -ú -Û -û -Ãœ -ü -Ũ -Å© -Ū -Å« -Ŭ -Å­ -Å® -ů -Å° -ű -Ų -ų -Ư -Æ° -Ç“ -Ç” -Ç• -Ç– -Ç— -ǘ -Ç™ -Çš -Ç› -Çœ -È” -È• -È– -È— -á¹² -á¹³ -á¹´ -á¹µ -Ṷ -á¹· -Ṹ -á¹¹ -Ṻ -á¹» -Ụ -ụ -Ủ -ủ -Ứ -ứ -Ừ -ừ -Ử -á»­ -á»® -ữ -á»° -á»± -V -v -Ʋ -Ê‹ -á¹¼ -á¹½ -á¹¾ -ṿ -W -w -Å´ -ŵ -Ẁ -Ạ-Ẃ -ẃ -Ẅ -ẅ -Ẇ -ẇ -Ẉ -ẉ -ẘ -X -x -Ẋ -ẋ -Ẍ -Ạ-Y -y -à -ý -ÿ -Ÿ -Ŷ -Å· -Ƴ -Æ´ -Ȳ -ȳ -Ẏ -Ạ-ẙ -Ỳ -ỳ -á»´ -ỵ -Ỷ -á»· -Ỹ -ỹ -Z -z -Ź -ź -Å» -ż -Ž -ž -Ƶ -ƶ -Ȥ -È¥ -Ê -Ê‘ -Ạ-ẑ -Ẓ -ẓ -Ẕ -ẕ - - diff --git a/docbook-xsl-1.75.2/common/charmap.xml b/docbook-xsl-1.75.2/common/charmap.xml deleted file mode 100644 index a12a84f..0000000 --- a/docbook-xsl-1.75.2/common/charmap.xml +++ /dev/null @@ -1,185 +0,0 @@ - - - - - Common » Character-Map Template Reference - - $Id: charmap.xsl 7266 2007-08-22 11:58:42Z xmldoc $ - - - - - Introduction - -This is technical reference documentation for the - character-map templates in the DocBook XSL Stylesheets. - - - -These templates are defined in a separate file from the set - of “common†templates because some of the common templates - reference DocBook XSL stylesheet parameters, requiring the - entire set of parameters to be imported/included in any - stylesheet that imports/includes the common templates. - - -The character-map templates don’t import or include - any DocBook XSL stylesheet parameters, so the - character-map templates can be used without importing the - whole set of parameters. - - - -This is not intended to be user documentation. It is - provided for developers writing customization layers for the - stylesheets. - - - - - -apply-character-map -Applies an XSLT character map - - -<xsl:template name="apply-character-map"> -<xsl:param name="content"/> -<xsl:param name="map.contents"/> - ... -</xsl:template> - -Description - -This template applies an XSLT character map; that is, it causes certain - individual characters to be substituted with strings of one - or more characters. It is useful mainly for replacing - multiple “special†characters or symbols in the same target - content. It uses the value of - map.contents to do substitution on - content, and then returns the - modified contents. - - - -This template is a very slightly modified version of - Jeni Tennison’s replace_strings - template in the multiple string replacements section of Dave Pawson’s - XSLT FAQ. - - -The apply-string-subst-map - template is essentially the same template as the - apply-character-map template; the - only difference is that in the map that - apply-string-subst-map expects, oldstring and newstring attributes are used - instead of character and string attributes. - - - Parameters - - - content - - -The content on which to perform the character-map - substitution. - - - - map.contents - - -A node set of elements, with each element having - the following attributes: - - - - character, a - character to be replaced - - - string, a - string with which to replace character - - - - - - - - - - - - - -read-character-map -Reads in all or part of an XSLT character map - - -<xsl:template name="read-character-map"> -<xsl:param name="use.subset"/> -<xsl:param name="subset.profile"/> -<xsl:param name="uri"/> - ... -</xsl:template> - -Description - -The XSLT 2.0 specification describes character maps and explains how they may be used - to allow a specific character appearing in a text or - attribute node in a final result tree to be substituted by - a specified string of characters during serialization. The - read-character-map template provides a - means for reading and using character maps with XSLT - 1.0-based tools. - - -This template reads the character-map contents from - uri (in full or in part, depending on - the value of the use.subset - parameter), then passes those contents to the - apply-character-map template, along with - content, the data on which to perform - the character substitution. - - -Using the character map “in part†means that it uses only - those output-character elements that match the - XPath expression given in the value of the - subset.profile parameter. The current - implementation of that capability here relies on the - evaluate extension XSLT function. - - Parameters - - - use.subset - - -Specifies whether to use a subset of the character - map instead of the whole map; boolean - 0 or 1 - - - - subset.profile - - -XPath expression that specifies what subset of the - character map to use - - - - uri - - -URI for a character map - - - - - - - - diff --git a/docbook-xsl-1.75.2/common/charmap.xsl b/docbook-xsl-1.75.2/common/charmap.xsl deleted file mode 100644 index 3e0f5d4..0000000 --- a/docbook-xsl-1.75.2/common/charmap.xsl +++ /dev/null @@ -1,221 +0,0 @@ - - - - - - - Common » Character-Map Template Reference - - $Id: charmap.xsl 7266 2007-08-22 11:58:42Z xmldoc $ - - - - - Introduction - This is technical reference documentation for the - character-map templates in the DocBook XSL Stylesheets. - - These templates are defined in a separate file from the set - of “common†templates because some of the common templates - reference DocBook XSL stylesheet parameters, requiring the - entire set of parameters to be imported/included in any - stylesheet that imports/includes the common templates. - The character-map templates don’t import or include - any DocBook XSL stylesheet parameters, so the - character-map templates can be used without importing the - whole set of parameters. - - This is not intended to be user documentation. It is - provided for developers writing customization layers for the - stylesheets. - - - - - - Applies an XSLT character map - - This template applies an XSLT character map; that is, it causes certain - individual characters to be substituted with strings of one - or more characters. It is useful mainly for replacing - multiple “special†characters or symbols in the same target - content. It uses the value of - map.contents to do substitution on - content, and then returns the - modified contents. - - This template is a very slightly modified version of - Jeni Tennison’s replace_strings - template in the multiple string replacements section of Dave Pawson’s - XSLT FAQ. - The apply-string-subst-map - template is essentially the same template as the - apply-character-map template; the - only difference is that in the map that - apply-string-subst-map expects, oldstring and newstring attributes are used - instead of character and string attributes. - - - - - content - - The content on which to perform the character-map - substitution. - - - map.contents - - A node set of elements, with each element having - the following attributes: - - - character, a - character to be replaced - - - string, a - string with which to replace character - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Reads in all or part of an XSLT character map - - The XSLT 2.0 specification describes character maps and explains how they may be used - to allow a specific character appearing in a text or - attribute node in a final result tree to be substituted by - a specified string of characters during serialization. The - read-character-map template provides a - means for reading and using character maps with XSLT - 1.0-based tools. - This template reads the character-map contents from - uri (in full or in part, depending on - the value of the use.subset - parameter), then passes those contents to the - apply-character-map template, along with - content, the data on which to perform - the character substitution. - Using the character map “in part†means that it uses only - those output-character elements that match the - XPath expression given in the value of the - subset.profile parameter. The current - implementation of that capability here relies on the - evaluate extension XSLT function. - - - - use.subset - - Specifies whether to use a subset of the character - map instead of the whole map; boolean - 0 or 1 - - - subset.profile - - XPath expression that specifies what subset of the - character map to use - - - uri - - URI for a character map - - - - - - - - - - - - - - - - - - - - - - - -Error: To process character-map subsets, you must use an XSLT engine -that supports the evaluate() XSLT extension function. Your XSLT engine -does not support it. - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/common/common.xml b/docbook-xsl-1.75.2/common/common.xml deleted file mode 100644 index 4447888..0000000 --- a/docbook-xsl-1.75.2/common/common.xml +++ /dev/null @@ -1,622 +0,0 @@ - - - - - Common » Base Template Reference - - $Id: common.xsl 8274 2009-02-27 07:02:45Z bobstayton $ - - - - - Introduction - -This is technical reference documentation for the “base†- set of common templates in the DocBook XSL Stylesheets. - - -This is not intended to be user documentation. It is - provided for developers writing customization layers for the - stylesheets. - - - - - -is.component -Tests if a given node is a component-level element - - -<xsl:template name="is.component"> -<xsl:param name="node" select="."/> - ... -</xsl:template> - -Description - -This template returns '1' if the specified node is a component -(Chapter, Appendix, etc.), and '0' otherwise. - -Parameters - - -node - - -The node which is to be tested. - - - - - -Returns - -This template returns '1' if the specified node is a component -(Chapter, Appendix, etc.), and '0' otherwise. - - - - - -is.section -Tests if a given node is a section-level element - - -<xsl:template name="is.section"> -<xsl:param name="node" select="."/> - ... -</xsl:template> - -Description - -This template returns '1' if the specified node is a section -(Section, Sect1, Sect2, etc.), and '0' otherwise. - -Parameters - - -node - - -The node which is to be tested. - - - - - -Returns - -This template returns '1' if the specified node is a section -(Section, Sect1, Sect2, etc.), and '0' otherwise. - - - - - -section.level -Returns the hierarchical level of a section - - -<xsl:template name="section.level"> -<xsl:param name="node" select="."/> - ... -</xsl:template> - -Description - -This template calculates the hierarchical level of a section. -The element sect1 is at level 1, sect2 is -at level 2, etc. - - - -Recursive sections are calculated down to the fifth level. - -Parameters - - -node - - -The section node for which the level should be calculated. -Defaults to the context node. - - - - - -Returns - -The section level, 1, 2, etc. - - - - - - -qanda.section.level -Returns the hierarchical level of a QandASet - - -<xsl:template name="qanda.section.level"/> - -Description - -This template calculates the hierarchical level of a QandASet. - - -Returns - -The level, 1, 2, etc. - - - - - - -select.mediaobject -Selects and processes an appropriate media object from a list - - -<xsl:template name="select.mediaobject"> -<xsl:param name="olist" select="imageobject|imageobjectco |videoobject|audioobject|textobject"/> - ... -</xsl:template> - -Description - -This template takes a list of media objects (usually the -children of a mediaobject or inlinemediaobject) and processes -the "right" object. - - - -This template relies on a template named -"select.mediaobject.index" to determine which object -in the list is appropriate. - - - -If no acceptable object is located, nothing happens. - -Parameters - - -olist - - -The node list of potential objects to examine. - - - - - -Returns - -Calls <xsl:apply-templates> on the selected object. - - - - - -select.mediaobject.index -Selects the position of the appropriate media object from a list - - -<xsl:template name="select.mediaobject.index"> -<xsl:param name="olist" select="imageobject|imageobjectco |videoobject|audioobject|textobject"/> -<xsl:param name="count">1</xsl:param> - ... -</xsl:template> - -Description - -This template takes a list of media objects (usually the -children of a mediaobject or inlinemediaobject) and determines -the "right" object. It returns the position of that object -to be used by the calling template. - - - -If the parameter use.role.for.mediaobject -is nonzero, then it first checks for an object with -a role attribute of the appropriate value. It takes the first -of those. Otherwise, it takes the first acceptable object -through a recursive pass through the list. - - - -This template relies on a template named "is.acceptable.mediaobject" -to determine if a given object is an acceptable graphic. The semantics -of media objects is that the first acceptable graphic should be used. - - - - -If no acceptable object is located, no index is returned. - -Parameters - - -olist - - -The node list of potential objects to examine. - - - -count - - -The position in the list currently being considered by the -recursive process. - - - - - -Returns - -Returns the position in the original list of the selected object. - - - - - -is.acceptable.mediaobject -Returns '1' if the specified media object is recognized - - -<xsl:template name="is.acceptable.mediaobject"> -<xsl:param name="object"/> - ... -</xsl:template> - -Description - -This template examines a media object and returns '1' if the -object is recognized as a graphic. - -Parameters - - -object - - -The media object to consider. - - - - - -Returns - -0 or 1 - - - - - -check.id.unique -Warn users about references to non-unique IDs - - -<xsl:template name="check.id.unique"> -<xsl:param name="linkend"/> - ... -</xsl:template> - -Description - -If passed an ID in linkend, -check.id.unique prints -a warning message to the user if either the ID does not exist or -the ID is not unique. - - - - - -check.idref.targets -Warn users about incorrectly typed references - - -<xsl:template name="check.idref.targets"> -<xsl:param name="linkend"/> -<xsl:param name="element-list"/> - ... -</xsl:template> - -Description - -If passed an ID in linkend, -check.idref.targets makes sure that the element -pointed to by the link is one of the elements listed in -element-list and warns the user otherwise. - - - - - -copyright.years -Print a set of years with collapsed ranges - - -<xsl:template name="copyright.years"> -<xsl:param name="years"/> -<xsl:param name="print.ranges" select="1"/> -<xsl:param name="single.year.ranges" select="0"/> -<xsl:param name="firstyear" select="0"/> -<xsl:param name="nextyear" select="0"/> - ... -</xsl:template> - -Description - -This template prints a list of year elements with consecutive -years printed as a range. In other words: - - -<year>1992</year> -<year>1993</year> -<year>1994</year> - - -is printed 1992-1994, whereas: - - -<year>1992</year> -<year>1994</year> - - -is printed 1992, 1994. - - - -This template assumes that all the year elements contain only -decimal year numbers, that the elements are sorted in increasing -numerical order, that there are no duplicates, and that all the years -are expressed in full century+year -(1999 not 99) notation. - -Parameters - - -years - - -The initial set of year elements. - - - -print.ranges - - -If non-zero, multi-year ranges are collapsed. If zero, all years -are printed discretely. - - - -single.year.ranges - - -If non-zero, two consecutive years will be printed as a range, -otherwise, they will be printed discretely. In other words, a single -year range is 1991-1992 but discretely it's -1991, 1992. - - - - - -Returns - -This template returns the formatted list of years. - - - - - -find.path.params -Search in a table for the "best" match for the node - - -<xsl:template name="find.path.params"> -<xsl:param name="node" select="."/> -<xsl:param name="table" select="''"/> -<xsl:param name="location"> - <xsl:call-template name="xpath.location"> - <xsl:with-param name="node" select="$node"/> - </xsl:call-template> - </xsl:param> - ... -</xsl:template> - -Description - -This template searches in a table for the value that most-closely -(in the typical best-match sense of XSLT) matches the current (element) -node location. - - - - - -string.upper -Converts a string to all uppercase letters - - -<xsl:template name="string.upper"> -<xsl:param name="string" select="''"/> - ... -</xsl:template> - -Description - -Given a string, this template does a language-aware conversion -of that string to all uppercase letters, based on the values of the -lowercase.alpha and -uppercase.alpha gentext keys for the current -locale. It affects only those characters found in the values of -lowercase.alpha and -uppercase.alpha. All other characters are left -unchanged. - -Parameters - - -string - - -The string to convert to uppercase. - - - - - - - - - -string.lower -Converts a string to all lowercase letters - - -<xsl:template name="string.lower"> -<xsl:param name="string" select="''"/> - ... -</xsl:template> - -Description - -Given a string, this template does a language-aware conversion -of that string to all lowercase letters, based on the values of the -uppercase.alpha and -lowercase.alpha gentext keys for the current -locale. It affects only those characters found in the values of -uppercase.alpha and -lowercase.alpha. All other characters are left -unchanged. - -Parameters - - -string - - -The string to convert to lowercase. - - - - - - - - - -select.choice.separator -Returns localized choice separator - - -<xsl:template name="select.choice.separator"/> - -Description - -This template enables auto-generation of an appropriate - localized "choice" separator (for example, "and" or "or") before - the final item in an inline list (though it could also be useful - for generating choice separators for non-inline lists). - - -It currently works by evaluating a processing instruction - (PI) of the form <?dbchoice choice="foo"?> : - - - - if the value of the choice - pseudo-attribute is "and" or "or", returns a localized "and" - or "or" - - - otherwise returns the literal value of the - choice pseudo-attribute - - - - The latter is provided only as a temporary workaround because the - locale files do not currently have translations for the word - or. So if you want to generate a a - logical "or" separator in French (for example), you currently need - to do this: - <?dbchoice choice="ou"?> - - - - -The dbchoice processing instruction is - an unfortunate hack; support for it may disappear in the future - (particularly if and when a more appropriate means for marking - up "choice" lists becomes available in DocBook). - - - - - - -evaluate.info.profile -Evaluates an info profile - - -<xsl:template name="evaluate.info.profile"> -<xsl:param name="profile"/> -<xsl:param name="info"/> - ... -</xsl:template> - -Description - -This template evaluates an "info profile" matching the XPath - expression given by the profile - parameter. It relies on the XSLT evaluate() - extension function. - - - -The value of the profile parameter - can include the literal string $info. If found - in the value of the profile parameter, the - literal string $info string is replaced with - the value of the info parameter, which - should be a set of *info nodes; the - expression is then evaluated using the XSLT - evaluate() extension function. - - Parameters - - - - profile - - -A string representing an XPath expression - - - - - info - - -A set of *info nodes - - - - - - Returns - -Returns a node (the result of evaluating the - profile parameter) - - - - diff --git a/docbook-xsl-1.75.2/common/common.xsl b/docbook-xsl-1.75.2/common/common.xsl deleted file mode 100644 index 70acad9..0000000 --- a/docbook-xsl-1.75.2/common/common.xsl +++ /dev/null @@ -1,2039 +0,0 @@ - - - - - - - - Common » Base Template Reference - - $Id: common.xsl 8274 2009-02-27 07:02:45Z bobstayton $ - - - - - Introduction - This is technical reference documentation for the “base†- set of common templates in the DocBook XSL Stylesheets. - This is not intended to be user documentation. It is - provided for developers writing customization layers for the - stylesheets. - - - - - - - - - - - - -Tests if a given node is a component-level element - - -This template returns '1' if the specified node is a component -(Chapter, Appendix, etc.), and '0' otherwise. - - - - -node - -The node which is to be tested. - - - - - - -This template returns '1' if the specified node is a component -(Chapter, Appendix, etc.), and '0' otherwise. - - - - - - - 1 - 0 - - - - - - -Tests if a given node is a section-level element - - -This template returns '1' if the specified node is a section -(Section, Sect1, Sect2, etc.), and '0' otherwise. - - - - -node - -The node which is to be tested. - - - - - - -This template returns '1' if the specified node is a section -(Section, Sect1, Sect2, etc.), and '0' otherwise. - - - - - - - 1 - 0 - - - - - - -Returns the hierarchical level of a section - - -This template calculates the hierarchical level of a section. -The element sect1 is at level 1, sect2 is -at level 2, etc. - -Recursive sections are calculated down to the fifth level. - - - - -node - -The section node for which the level should be calculated. -Defaults to the context node. - - - - - - -The section level, 1, 2, etc. - - - - - - - - 1 - 2 - 3 - 4 - 5 - - - 6 - 5 - 4 - 3 - 2 - 1 - - - - - - - - - - 2 - 3 - 4 - 5 - 5 - - - 5 - 4 - 3 - 2 - - - 1 - - - 1 - - - - -Returns the hierarchical level of a QandASet - - -This template calculates the hierarchical level of a QandASet. - - - - -The level, 1, 2, etc. - - - - - - - - - 1 - - - - - - - - - - - - - - - - - - - - - - - - 1 - 1 - 2 - 3 - - - 5 - 4 - 3 - 2 - 1 - - - - - - - - - - - - - - - - - - - - - - - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - question - answer - qandadiv - qandaset - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - [FAMILY Given] - - - - - - - - - , - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - , - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -[ -] -{ -} - - -[ -] -... - - - | -4pi - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Selects and processes an appropriate media object from a list - - -This template takes a list of media objects (usually the -children of a mediaobject or inlinemediaobject) and processes -the "right" object. - -This template relies on a template named -"select.mediaobject.index" to determine which object -in the list is appropriate. - -If no acceptable object is located, nothing happens. - - - - -olist - -The node list of potential objects to examine. - - - - - - -Calls <xsl:apply-templates> on the selected object. - - - - - - - - - - - - - - - - - - - - - -Selects the position of the appropriate media object from a list - - -This template takes a list of media objects (usually the -children of a mediaobject or inlinemediaobject) and determines -the "right" object. It returns the position of that object -to be used by the calling template. - -If the parameter use.role.for.mediaobject -is nonzero, then it first checks for an object with -a role attribute of the appropriate value. It takes the first -of those. Otherwise, it takes the first acceptable object -through a recursive pass through the list. - -This template relies on a template named "is.acceptable.mediaobject" -to determine if a given object is an acceptable graphic. The semantics -of media objects is that the first acceptable graphic should be used. - - -If no acceptable object is located, no index is returned. - - - - -olist - -The node list of potential objects to examine. - - -count - -The position in the list currently being considered by the -recursive process. - - - - - - -Returns the position in the original list of the selected object. - - - - - - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - - - - 0 - - - - 0 - - - - 1 - - - - 0 - - - - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Returns '1' if the specified media object is recognized - - -This template examines a media object and returns '1' if the -object is recognized as a graphic. - - - - -object - -The media object to consider. - - - - - - -0 or 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - 1 - 1 - 1 - 0 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - . - - - - - - - - - - - - . - - - - - - - - - - - - - - - - -Warn users about references to non-unique IDs - -If passed an ID in linkend, -check.id.unique prints -a warning message to the user if either the ID does not exist or -the ID is not unique. - - - - - - - - - - - - Error: no ID for constraint linkend: - - . - - - - - - - Warning: multiple "IDs" for constraint linkend: - - . - - - - - - -Warn users about incorrectly typed references - -If passed an ID in linkend, -check.idref.targets makes sure that the element -pointed to by the link is one of the elements listed in -element-list and warns the user otherwise. - - - - - - - - - - - - - - Error: linkend ( - - ) points to " - - " not (one of): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Unexpected context in procedure.step.numeration: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - - - - - - 2 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - loweralpha - lowerroman - upperalpha - upperroman - arabic - arabic - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1. - a. - i. - A. - I. - - - - Unexpected numeration: - - - - - - - - - - - - - - - - - - - - - - - - - - circle - square - disc - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Print a set of years with collapsed ranges - - -This template prints a list of year elements with consecutive -years printed as a range. In other words: - -1992 -1993 -1994]]> - -is printed 1992-1994, whereas: - -1992 -1994]]> - -is printed 1992, 1994. - -This template assumes that all the year elements contain only -decimal year numbers, that the elements are sorted in increasing -numerical order, that there are no duplicates, and that all the years -are expressed in full century+year -(1999 not 99) notation. - - - - -years - -The initial set of year elements. - - -print.ranges - -If non-zero, multi-year ranges are collapsed. If zero, all years -are printed discretely. - - -single.year.ranges - -If non-zero, two consecutive years will be printed as a range, -otherwise, they will be printed discretely. In other words, a single -year range is 1991-1992 but discretely it's -1991, 1992. - - - - - - -This template returns the formatted list of years. - - - - - - - - - - - - - - - - - - - - - , - - - - - - - - - - - - - - - - - - - - - - - - , - - - - - - - - - - - - - - - , - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - , - - - - , - - , - - - - - - - , - - - - - - - - - - - - - - - - -Search in a table for the "best" match for the node - - -This template searches in a table for the value that most-closely -(in the typical best-match sense of XSLT) matches the current (element) -node location. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - / - - - - - - - - - -Converts a string to all uppercase letters - - -Given a string, this template does a language-aware conversion -of that string to all uppercase letters, based on the values of the -lowercase.alpha and -uppercase.alpha gentext keys for the current -locale. It affects only those characters found in the values of -lowercase.alpha and -uppercase.alpha. All other characters are left -unchanged. - - - - -string - -The string to convert to uppercase. - - - - - - - - - - - - - - - - - - - - - - - -Converts a string to all lowercase letters - - -Given a string, this template does a language-aware conversion -of that string to all lowercase letters, based on the values of the -uppercase.alpha and -lowercase.alpha gentext keys for the current -locale. It affects only those characters found in the values of -uppercase.alpha and -lowercase.alpha. All other characters are left -unchanged. - - - - -string - -The string to convert to lowercase. - - - - - - - - - - - - - - - - - - - - - - - - Returns localized choice separator - - This template enables auto-generation of an appropriate - localized "choice" separator (for example, "and" or "or") before - the final item in an inline list (though it could also be useful - for generating choice separators for non-inline lists). - It currently works by evaluating a processing instruction - (PI) of the form <?dbchoice choice="foo"?> : - - - if the value of the choice - pseudo-attribute is "and" or "or", returns a localized "and" - or "or" - - - otherwise returns the literal value of the - choice pseudo-attribute - - - The latter is provided only as a temporary workaround because the - locale files do not currently have translations for the word - or. So if you want to generate a a - logical "or" separator in French (for example), you currently need - to do this: - <?dbchoice choice="ou"?> - - - The dbchoice processing instruction is - an unfortunate hack; support for it may disappear in the future - (particularly if and when a more appropriate means for marking - up "choice" lists becomes available in DocBook). - - - - - - - - - - - - - - - - - - - - - - - - - - Evaluates an info profile - - This template evaluates an "info profile" matching the XPath - expression given by the profile - parameter. It relies on the XSLT evaluate() - extension function. - - The value of the profile parameter - can include the literal string $info. If found - in the value of the profile parameter, the - literal string $info string is replaced with - the value of the info parameter, which - should be a set of *info nodes; the - expression is then evaluated using the XSLT - evaluate() extension function. - - - - - profile - - A string representing an XPath expression - - - - info - - A set of *info nodes - - - - - - - Returns a node (the result of evaluating the - profile parameter) - - - - - - - - - - - - - - - - -Error: The "info profiling" mechanism currently requires an XSLT -engine that supports the evaluate() XSLT extension function. Your XSLT -engine does not support it. - - - - - diff --git a/docbook-xsl-1.75.2/common/cs.xml b/docbook-xsl-1.75.2/common/cs.xml deleted file mode 100644 index f736bf5..0000000 --- a/docbook-xsl-1.75.2/common/cs.xml +++ /dev/null @@ -1,701 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Symboly -A -a -à -á -B -b -C -c -ÄŒ -Ä -D -d -ÄŽ -Ä -E -e -É -é -Äš -Ä› -Ë -ë -F -f -G -g -H -h -Ch -ch -cH -CH -I -i -à -í -J -j -K -k -L -l -M -m -N -n -Ň -ň -O -o -Ó -ó -Ö -ö -P -p -Q -q -R -r -Ř -Å™ -S -s -Å  -Å¡ -T -t -Ť -Å¥ -U -u -Ú -ú -Å® -ů -Ãœ -ü -V -v -W -w -X -x -Y -y -à -ý -Z -z -Ž -ž - - diff --git a/docbook-xsl-1.75.2/common/cy.xml b/docbook-xsl-1.75.2/common/cy.xml deleted file mode 100644 index 5f39025..0000000 --- a/docbook-xsl-1.75.2/common/cy.xml +++ /dev/null @@ -1,1246 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Symbols -A -a -À -à -à -á - -â -à -ã -Ä -ä -Ã… -Ã¥ -Ä€ -Ä -Ä‚ -ă -Ä„ -Ä… -Ç -ÇŽ -Çž -ÇŸ -Ç  -Ç¡ -Ǻ -Ç» -È€ -È -È‚ -ȃ -Ȧ -ȧ -Ḁ -Ḡ-ẚ -Ạ -ạ -Ả -ả -Ấ -ấ -Ầ -ầ -Ẩ -ẩ -Ẫ -ẫ -Ậ -ậ -Ắ -ắ -Ằ -ằ -Ẳ -ẳ -Ẵ -ẵ -Ặ -ặ -B -b -Æ€ -Æ -É“ -Æ‚ -ƃ -Ḃ -ḃ -Ḅ -ḅ -Ḇ -ḇ -C -c -Ç -ç -Ć -ć -Ĉ -ĉ -ÄŠ -Ä‹ -ÄŒ -Ä -Ƈ -ƈ -É• -Ḉ -ḉ -Ch -ch -D -d -ÄŽ -Ä -Ä -Ä‘ -ÆŠ -É— -Æ‹ -ÆŒ -Ç… -Dz -È¡ -É– -Ḋ -ḋ -Ḍ -Ḡ-Ḏ -Ḡ-Ḡ-ḑ -Ḓ -ḓ -Dd -dd -E -e -È -è -É -é -Ê -ê -Ë -ë -Ä’ -Ä“ -Ä” -Ä• -Ä– -Ä— -Ę -Ä™ -Äš -Ä› -È„ -È… -Ȇ -ȇ -Ȩ -È© -Ḕ -ḕ -Ḗ -ḗ -Ḙ -ḙ -Ḛ -ḛ -Ḝ -Ḡ-Ẹ -ẹ -Ẻ -ẻ -Ẽ -ẽ -Ế -ế -Ề -á» -Ể -ể -Ễ -á»… -Ệ -ệ -F -f -Æ‘ -Æ’ -Ḟ -ḟ -Ff -ff -G -g -Äœ -Ä -Äž -ÄŸ -Ä  -Ä¡ -Ä¢ -Ä£ -Æ“ -É  -Ǥ -Ç¥ -Ǧ -ǧ -Ç´ -ǵ -Ḡ -ḡ -Ng -ng -H -h -Ĥ -Ä¥ -Ħ -ħ -Èž -ÈŸ -ɦ -Ḣ -ḣ -Ḥ -ḥ -Ḧ -ḧ -Ḩ -ḩ -Ḫ -ḫ -ẖ -I -i -ÃŒ -ì -à -í -ÃŽ -î -à -ï -Ĩ -Ä© -Ī -Ä« -Ĭ -Ä­ -Ä® -į -Ä° -Æ— -ɨ -Ç -Ç -Ȉ -ȉ -ÈŠ -È‹ -Ḭ -ḭ -Ḯ -ḯ -Ỉ -ỉ -Ị -ị -J -j -Ä´ -ĵ -Ç° -Ê -K -k -Ķ -Ä· -Ƙ -Æ™ -Ǩ -Ç© -Ḱ -ḱ -Ḳ -ḳ -Ḵ -ḵ -L -l -Ĺ -ĺ -Ä» -ļ -Ľ -ľ -Ä¿ -Å€ -Å -Å‚ -Æš -Lj -È´ -É« -ɬ -É­ -Ḷ -ḷ -Ḹ -ḹ -Ḻ -ḻ -Ḽ -ḽ -Ll -ll -M -m -ɱ -Ḿ -ḿ -á¹€ -á¹ -Ṃ -ṃ -N -n -Ñ -ñ -Ń -Å„ -Å… -ņ -Ň -ň -Æ -ɲ -Æž -È  -Ç‹ -Ǹ -ǹ -ȵ -ɳ -Ṅ -á¹… -Ṇ -ṇ -Ṉ -ṉ -Ṋ -ṋ -O -o -Ã’ -ò -Ó -ó -Ô -ô -Õ -õ -Ö -ö -Ø -ø -ÅŒ -Å -ÅŽ -Å -Å -Å‘ -ÆŸ -Æ  -Æ¡ -Ç‘ -Ç’ -Ǫ -Ç« -Ǭ -Ç­ -Ǿ -Ç¿ -ÈŒ -È -ÈŽ -È -Ȫ -È« -Ȭ -È­ -È® -ȯ -È° -ȱ -Ṍ -á¹ -Ṏ -á¹ -á¹ -ṑ -á¹’ -ṓ -Ọ -á» -Ỏ -á» -á» -ố -á»’ -ồ -á»” -ổ -á»– -á»— -Ộ -á»™ -Ớ -á»› -Ờ -á» -Ở -ở -á»  -ỡ -Ợ -ợ -P -p -Ƥ -Æ¥ -á¹” -ṕ -á¹– -á¹— -Ph -ph -Q -q -Ê  -R -r -Å” -Å• -Å– -Å— -Ř -Å™ -È -È‘ -È’ -È“ -ɼ -ɽ -ɾ -Ṙ -á¹™ -Ṛ -á¹› -Ṝ -á¹ -Ṟ -ṟ -Rh -rh -S -s -Åš -Å› -Åœ -Å -Åž -ÅŸ -Å  -Å¡ -Ș -È™ -Ê‚ -á¹  -ṡ -á¹¢ -á¹£ -Ṥ -á¹¥ -Ṧ -ṧ -Ṩ -ṩ -T -t -Å¢ -Å£ -Ť -Å¥ -Ŧ -ŧ -Æ« -Ƭ -Æ­ -Æ® -ʈ -Èš -È› -ȶ -Ṫ -ṫ -Ṭ -á¹­ -á¹® -ṯ -á¹° -á¹± -ẗ -Th -th -U -u -Ù -ù -Ú -ú -Û -û -Ãœ -ü -Ũ -Å© -Ū -Å« -Ŭ -Å­ -Å® -ů -Å° -ű -Ų -ų -Ư -Æ° -Ç“ -Ç” -Ç• -Ç– -Ç— -ǘ -Ç™ -Çš -Ç› -Çœ -È” -È• -È– -È— -á¹² -á¹³ -á¹´ -á¹µ -Ṷ -á¹· -Ṹ -á¹¹ -Ṻ -á¹» -Ụ -ụ -Ủ -ủ -Ứ -ứ -Ừ -ừ -Ử -á»­ -á»® -ữ -á»° -á»± -V -v -Ʋ -Ê‹ -á¹¼ -á¹½ -á¹¾ -ṿ -W -w -Å´ -ŵ -Ẁ -Ạ-Ẃ -ẃ -Ẅ -ẅ -Ẇ -ẇ -Ẉ -ẉ -ẘ -X -x -Ẋ -ẋ -Ẍ -Ạ-Y -y -à -ý -ÿ -Ÿ -Ŷ -Å· -Ƴ -Æ´ -Ȳ -ȳ -Ẏ -Ạ-ẙ -Ỳ -ỳ -á»´ -ỵ -Ỷ -á»· -Ỹ -ỹ -Z -z -Ź -ź -Å» -ż -Ž -ž -Ƶ -ƶ -Ȥ -È¥ -Ê -Ê‘ -Ạ-ẑ -Ẓ -ẓ -Ẕ -ẕ - - diff --git a/docbook-xsl-1.75.2/common/da.xml b/docbook-xsl-1.75.2/common/da.xml deleted file mode 100644 index 3acb4e3..0000000 --- a/docbook-xsl-1.75.2/common/da.xml +++ /dev/null @@ -1,665 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -A -a -B -b -C -c -D -d -E -e -F -f -G -g -H -h -I -i -J -j -K -k -L -l -M -m -N -n -O -o -P -p -Q -q -R -r -S -s -T -t -U -u -V -v -W -w -X -x -Y -y -Z -z -Æ -æ -Ø -ø -Ã… -Ã¥ - - diff --git a/docbook-xsl-1.75.2/common/de.xml b/docbook-xsl-1.75.2/common/de.xml deleted file mode 100644 index d794d16..0000000 --- a/docbook-xsl-1.75.2/common/de.xml +++ /dev/null @@ -1,667 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Symbole -A -a -Ä -ä -B -b -C -c -D -d -E -e -F -f -G -g -H -h -I -i -J -j -K -k -L -l -M -m -N -n -O -o -Ö -ö -P -p -Q -q -R -r -S -s -T -t -U -u -Ãœ -ü -V -v -W -w -X -x -Y -y -Z -z - - diff --git a/docbook-xsl-1.75.2/common/el.xml b/docbook-xsl-1.75.2/common/el.xml deleted file mode 100644 index cdf2e72..0000000 --- a/docbook-xsl-1.75.2/common/el.xml +++ /dev/null @@ -1,1230 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Symbols -A -a -À -à -à -á - -â -à -ã -Ä -ä -Ã… -Ã¥ -Ä€ -Ä -Ä‚ -ă -Ä„ -Ä… -Ç -ÇŽ -Çž -ÇŸ -Ç  -Ç¡ -Ǻ -Ç» -È€ -È -È‚ -ȃ -Ȧ -ȧ -Ḁ -Ḡ-ẚ -Ạ -ạ -Ả -ả -Ấ -ấ -Ầ -ầ -Ẩ -ẩ -Ẫ -ẫ -Ậ -ậ -Ắ -ắ -Ằ -ằ -Ẳ -ẳ -Ẵ -ẵ -Ặ -ặ -B -b -Æ€ -Æ -É“ -Æ‚ -ƃ -Ḃ -ḃ -Ḅ -ḅ -Ḇ -ḇ -C -c -Ç -ç -Ć -ć -Ĉ -ĉ -ÄŠ -Ä‹ -ÄŒ -Ä -Ƈ -ƈ -É• -Ḉ -ḉ -D -d -ÄŽ -Ä -Ä -Ä‘ -ÆŠ -É— -Æ‹ -ÆŒ -Ç… -Dz -È¡ -É– -Ḋ -ḋ -Ḍ -Ḡ-Ḏ -Ḡ-Ḡ-ḑ -Ḓ -ḓ -E -e -È -è -É -é -Ê -ê -Ë -ë -Ä’ -Ä“ -Ä” -Ä• -Ä– -Ä— -Ę -Ä™ -Äš -Ä› -È„ -È… -Ȇ -ȇ -Ȩ -È© -Ḕ -ḕ -Ḗ -ḗ -Ḙ -ḙ -Ḛ -ḛ -Ḝ -Ḡ-Ẹ -ẹ -Ẻ -ẻ -Ẽ -ẽ -Ế -ế -Ề -á» -Ể -ể -Ễ -á»… -Ệ -ệ -F -f -Æ‘ -Æ’ -Ḟ -ḟ -G -g -Äœ -Ä -Äž -ÄŸ -Ä  -Ä¡ -Ä¢ -Ä£ -Æ“ -É  -Ǥ -Ç¥ -Ǧ -ǧ -Ç´ -ǵ -Ḡ -ḡ -H -h -Ĥ -Ä¥ -Ħ -ħ -Èž -ÈŸ -ɦ -Ḣ -ḣ -Ḥ -ḥ -Ḧ -ḧ -Ḩ -ḩ -Ḫ -ḫ -ẖ -I -i -ÃŒ -ì -à -í -ÃŽ -î -à -ï -Ĩ -Ä© -Ī -Ä« -Ĭ -Ä­ -Ä® -į -Ä° -Æ— -ɨ -Ç -Ç -Ȉ -ȉ -ÈŠ -È‹ -Ḭ -ḭ -Ḯ -ḯ -Ỉ -ỉ -Ị -ị -J -j -Ä´ -ĵ -Ç° -Ê -K -k -Ķ -Ä· -Ƙ -Æ™ -Ǩ -Ç© -Ḱ -ḱ -Ḳ -ḳ -Ḵ -ḵ -L -l -Ĺ -ĺ -Ä» -ļ -Ľ -ľ -Ä¿ -Å€ -Å -Å‚ -Æš -Lj -È´ -É« -ɬ -É­ -Ḷ -ḷ -Ḹ -ḹ -Ḻ -ḻ -Ḽ -ḽ -M -m -ɱ -Ḿ -ḿ -á¹€ -á¹ -Ṃ -ṃ -N -n -Ñ -ñ -Ń -Å„ -Å… -ņ -Ň -ň -Æ -ɲ -Æž -È  -Ç‹ -Ǹ -ǹ -ȵ -ɳ -Ṅ -á¹… -Ṇ -ṇ -Ṉ -ṉ -Ṋ -ṋ -O -o -Ã’ -ò -Ó -ó -Ô -ô -Õ -õ -Ö -ö -Ø -ø -ÅŒ -Å -ÅŽ -Å -Å -Å‘ -ÆŸ -Æ  -Æ¡ -Ç‘ -Ç’ -Ǫ -Ç« -Ǭ -Ç­ -Ǿ -Ç¿ -ÈŒ -È -ÈŽ -È -Ȫ -È« -Ȭ -È­ -È® -ȯ -È° -ȱ -Ṍ -á¹ -Ṏ -á¹ -á¹ -ṑ -á¹’ -ṓ -Ọ -á» -Ỏ -á» -á» -ố -á»’ -ồ -á»” -ổ -á»– -á»— -Ộ -á»™ -Ớ -á»› -Ờ -á» -Ở -ở -á»  -ỡ -Ợ -ợ -P -p -Ƥ -Æ¥ -á¹” -ṕ -á¹– -á¹— -Q -q -Ê  -R -r -Å” -Å• -Å– -Å— -Ř -Å™ -È -È‘ -È’ -È“ -ɼ -ɽ -ɾ -Ṙ -á¹™ -Ṛ -á¹› -Ṝ -á¹ -Ṟ -ṟ -S -s -Åš -Å› -Åœ -Å -Åž -ÅŸ -Å  -Å¡ -Ș -È™ -Ê‚ -á¹  -ṡ -á¹¢ -á¹£ -Ṥ -á¹¥ -Ṧ -ṧ -Ṩ -ṩ -T -t -Å¢ -Å£ -Ť -Å¥ -Ŧ -ŧ -Æ« -Ƭ -Æ­ -Æ® -ʈ -Èš -È› -ȶ -Ṫ -ṫ -Ṭ -á¹­ -á¹® -ṯ -á¹° -á¹± -ẗ -U -u -Ù -ù -Ú -ú -Û -û -Ãœ -ü -Ũ -Å© -Ū -Å« -Ŭ -Å­ -Å® -ů -Å° -ű -Ų -ų -Ư -Æ° -Ç“ -Ç” -Ç• -Ç– -Ç— -ǘ -Ç™ -Çš -Ç› -Çœ -È” -È• -È– -È— -á¹² -á¹³ -á¹´ -á¹µ -Ṷ -á¹· -Ṹ -á¹¹ -Ṻ -á¹» -Ụ -ụ -Ủ -ủ -Ứ -ứ -Ừ -ừ -Ử -á»­ -á»® -ữ -á»° -á»± -V -v -Ʋ -Ê‹ -á¹¼ -á¹½ -á¹¾ -ṿ -W -w -Å´ -ŵ -Ẁ -Ạ-Ẃ -ẃ -Ẅ -ẅ -Ẇ -ẇ -Ẉ -ẉ -ẘ -X -x -Ẋ -ẋ -Ẍ -Ạ-Y -y -à -ý -ÿ -Ÿ -Ŷ -Å· -Ƴ -Æ´ -Ȳ -ȳ -Ẏ -Ạ-ẙ -Ỳ -ỳ -á»´ -ỵ -Ỷ -á»· -Ỹ -ỹ -Z -z -Ź -ź -Å» -ż -Ž -ž -Ƶ -ƶ -Ȥ -È¥ -Ê -Ê‘ -Ạ-ẑ -Ẓ -ẓ -Ẕ -ẕ - - diff --git a/docbook-xsl-1.75.2/common/en.xml b/docbook-xsl-1.75.2/common/en.xml deleted file mode 100644 index 3553488..0000000 --- a/docbook-xsl-1.75.2/common/en.xml +++ /dev/null @@ -1,1230 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Symbols -A -a -À -à -à -á - -â -à -ã -Ä -ä -Ã… -Ã¥ -Ä€ -Ä -Ä‚ -ă -Ä„ -Ä… -Ç -ÇŽ -Çž -ÇŸ -Ç  -Ç¡ -Ǻ -Ç» -È€ -È -È‚ -ȃ -Ȧ -ȧ -Ḁ -Ḡ-ẚ -Ạ -ạ -Ả -ả -Ấ -ấ -Ầ -ầ -Ẩ -ẩ -Ẫ -ẫ -Ậ -ậ -Ắ -ắ -Ằ -ằ -Ẳ -ẳ -Ẵ -ẵ -Ặ -ặ -B -b -Æ€ -Æ -É“ -Æ‚ -ƃ -Ḃ -ḃ -Ḅ -ḅ -Ḇ -ḇ -C -c -Ç -ç -Ć -ć -Ĉ -ĉ -ÄŠ -Ä‹ -ÄŒ -Ä -Ƈ -ƈ -É• -Ḉ -ḉ -D -d -ÄŽ -Ä -Ä -Ä‘ -ÆŠ -É— -Æ‹ -ÆŒ -Ç… -Dz -È¡ -É– -Ḋ -ḋ -Ḍ -Ḡ-Ḏ -Ḡ-Ḡ-ḑ -Ḓ -ḓ -E -e -È -è -É -é -Ê -ê -Ë -ë -Ä’ -Ä“ -Ä” -Ä• -Ä– -Ä— -Ę -Ä™ -Äš -Ä› -È„ -È… -Ȇ -ȇ -Ȩ -È© -Ḕ -ḕ -Ḗ -ḗ -Ḙ -ḙ -Ḛ -ḛ -Ḝ -Ḡ-Ẹ -ẹ -Ẻ -ẻ -Ẽ -ẽ -Ế -ế -Ề -á» -Ể -ể -Ễ -á»… -Ệ -ệ -F -f -Æ‘ -Æ’ -Ḟ -ḟ -G -g -Äœ -Ä -Äž -ÄŸ -Ä  -Ä¡ -Ä¢ -Ä£ -Æ“ -É  -Ǥ -Ç¥ -Ǧ -ǧ -Ç´ -ǵ -Ḡ -ḡ -H -h -Ĥ -Ä¥ -Ħ -ħ -Èž -ÈŸ -ɦ -Ḣ -ḣ -Ḥ -ḥ -Ḧ -ḧ -Ḩ -ḩ -Ḫ -ḫ -ẖ -I -i -ÃŒ -ì -à -í -ÃŽ -î -à -ï -Ĩ -Ä© -Ī -Ä« -Ĭ -Ä­ -Ä® -į -Ä° -Æ— -ɨ -Ç -Ç -Ȉ -ȉ -ÈŠ -È‹ -Ḭ -ḭ -Ḯ -ḯ -Ỉ -ỉ -Ị -ị -J -j -Ä´ -ĵ -Ç° -Ê -K -k -Ķ -Ä· -Ƙ -Æ™ -Ǩ -Ç© -Ḱ -ḱ -Ḳ -ḳ -Ḵ -ḵ -L -l -Ĺ -ĺ -Ä» -ļ -Ľ -ľ -Ä¿ -Å€ -Å -Å‚ -Æš -Lj -È´ -É« -ɬ -É­ -Ḷ -ḷ -Ḹ -ḹ -Ḻ -ḻ -Ḽ -ḽ -M -m -ɱ -Ḿ -ḿ -á¹€ -á¹ -Ṃ -ṃ -N -n -Ñ -ñ -Ń -Å„ -Å… -ņ -Ň -ň -Æ -ɲ -Æž -È  -Ç‹ -Ǹ -ǹ -ȵ -ɳ -Ṅ -á¹… -Ṇ -ṇ -Ṉ -ṉ -Ṋ -ṋ -O -o -Ã’ -ò -Ó -ó -Ô -ô -Õ -õ -Ö -ö -Ø -ø -ÅŒ -Å -ÅŽ -Å -Å -Å‘ -ÆŸ -Æ  -Æ¡ -Ç‘ -Ç’ -Ǫ -Ç« -Ǭ -Ç­ -Ǿ -Ç¿ -ÈŒ -È -ÈŽ -È -Ȫ -È« -Ȭ -È­ -È® -ȯ -È° -ȱ -Ṍ -á¹ -Ṏ -á¹ -á¹ -ṑ -á¹’ -ṓ -Ọ -á» -Ỏ -á» -á» -ố -á»’ -ồ -á»” -ổ -á»– -á»— -Ộ -á»™ -Ớ -á»› -Ờ -á» -Ở -ở -á»  -ỡ -Ợ -ợ -P -p -Ƥ -Æ¥ -á¹” -ṕ -á¹– -á¹— -Q -q -Ê  -R -r -Å” -Å• -Å– -Å— -Ř -Å™ -È -È‘ -È’ -È“ -ɼ -ɽ -ɾ -Ṙ -á¹™ -Ṛ -á¹› -Ṝ -á¹ -Ṟ -ṟ -S -s -Åš -Å› -Åœ -Å -Åž -ÅŸ -Å  -Å¡ -Ș -È™ -Ê‚ -á¹  -ṡ -á¹¢ -á¹£ -Ṥ -á¹¥ -Ṧ -ṧ -Ṩ -ṩ -T -t -Å¢ -Å£ -Ť -Å¥ -Ŧ -ŧ -Æ« -Ƭ -Æ­ -Æ® -ʈ -Èš -È› -ȶ -Ṫ -ṫ -Ṭ -á¹­ -á¹® -ṯ -á¹° -á¹± -ẗ -U -u -Ù -ù -Ú -ú -Û -û -Ãœ -ü -Ũ -Å© -Ū -Å« -Ŭ -Å­ -Å® -ů -Å° -ű -Ų -ų -Ư -Æ° -Ç“ -Ç” -Ç• -Ç– -Ç— -ǘ -Ç™ -Çš -Ç› -Çœ -È” -È• -È– -È— -á¹² -á¹³ -á¹´ -á¹µ -Ṷ -á¹· -Ṹ -á¹¹ -Ṻ -á¹» -Ụ -ụ -Ủ -ủ -Ứ -ứ -Ừ -ừ -Ử -á»­ -á»® -ữ -á»° -á»± -V -v -Ʋ -Ê‹ -á¹¼ -á¹½ -á¹¾ -ṿ -W -w -Å´ -ŵ -Ẁ -Ạ-Ẃ -ẃ -Ẅ -ẅ -Ẇ -ẇ -Ẉ -ẉ -ẘ -X -x -Ẋ -ẋ -Ẍ -Ạ-Y -y -à -ý -ÿ -Ÿ -Ŷ -Å· -Ƴ -Æ´ -Ȳ -ȳ -Ẏ -Ạ-ẙ -Ỳ -ỳ -á»´ -ỵ -Ỷ -á»· -Ỹ -ỹ -Z -z -Ź -ź -Å» -ż -Ž -ž -Ƶ -ƶ -Ȥ -È¥ -Ê -Ê‘ -Ạ-ẑ -Ẓ -ẓ -Ẕ -ẕ - - diff --git a/docbook-xsl-1.75.2/common/entities.ent b/docbook-xsl-1.75.2/common/entities.ent deleted file mode 100644 index 5285e14..0000000 --- a/docbook-xsl-1.75.2/common/entities.ent +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - normalize.sort.input - - - - - - normalize.sort.output - - -'> - - - \ No newline at end of file diff --git a/docbook-xsl-1.75.2/common/eo.xml b/docbook-xsl-1.75.2/common/eo.xml deleted file mode 100644 index 5568176..0000000 --- a/docbook-xsl-1.75.2/common/eo.xml +++ /dev/null @@ -1,1230 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Symbols -A -a -À -à -à -á - -â -à -ã -Ä -ä -Ã… -Ã¥ -Ä€ -Ä -Ä‚ -ă -Ä„ -Ä… -Ç -ÇŽ -Çž -ÇŸ -Ç  -Ç¡ -Ǻ -Ç» -È€ -È -È‚ -ȃ -Ȧ -ȧ -Ḁ -Ḡ-ẚ -Ạ -ạ -Ả -ả -Ấ -ấ -Ầ -ầ -Ẩ -ẩ -Ẫ -ẫ -Ậ -ậ -Ắ -ắ -Ằ -ằ -Ẳ -ẳ -Ẵ -ẵ -Ặ -ặ -B -b -Æ€ -Æ -É“ -Æ‚ -ƃ -Ḃ -ḃ -Ḅ -ḅ -Ḇ -ḇ -C -c -Ç -ç -Ć -ć -Ĉ -ĉ -ÄŠ -Ä‹ -ÄŒ -Ä -Ƈ -ƈ -É• -Ḉ -ḉ -D -d -ÄŽ -Ä -Ä -Ä‘ -ÆŠ -É— -Æ‹ -ÆŒ -Ç… -Dz -È¡ -É– -Ḋ -ḋ -Ḍ -Ḡ-Ḏ -Ḡ-Ḡ-ḑ -Ḓ -ḓ -E -e -È -è -É -é -Ê -ê -Ë -ë -Ä’ -Ä“ -Ä” -Ä• -Ä– -Ä— -Ę -Ä™ -Äš -Ä› -È„ -È… -Ȇ -ȇ -Ȩ -È© -Ḕ -ḕ -Ḗ -ḗ -Ḙ -ḙ -Ḛ -ḛ -Ḝ -Ḡ-Ẹ -ẹ -Ẻ -ẻ -Ẽ -ẽ -Ế -ế -Ề -á» -Ể -ể -Ễ -á»… -Ệ -ệ -F -f -Æ‘ -Æ’ -Ḟ -ḟ -G -g -Äœ -Ä -Äž -ÄŸ -Ä  -Ä¡ -Ä¢ -Ä£ -Æ“ -É  -Ǥ -Ç¥ -Ǧ -ǧ -Ç´ -ǵ -Ḡ -ḡ -H -h -Ĥ -Ä¥ -Ħ -ħ -Èž -ÈŸ -ɦ -Ḣ -ḣ -Ḥ -ḥ -Ḧ -ḧ -Ḩ -ḩ -Ḫ -ḫ -ẖ -I -i -ÃŒ -ì -à -í -ÃŽ -î -à -ï -Ĩ -Ä© -Ī -Ä« -Ĭ -Ä­ -Ä® -į -Ä° -Æ— -ɨ -Ç -Ç -Ȉ -ȉ -ÈŠ -È‹ -Ḭ -ḭ -Ḯ -ḯ -Ỉ -ỉ -Ị -ị -J -j -Ä´ -ĵ -Ç° -Ê -K -k -Ķ -Ä· -Ƙ -Æ™ -Ǩ -Ç© -Ḱ -ḱ -Ḳ -ḳ -Ḵ -ḵ -L -l -Ĺ -ĺ -Ä» -ļ -Ľ -ľ -Ä¿ -Å€ -Å -Å‚ -Æš -Lj -È´ -É« -ɬ -É­ -Ḷ -ḷ -Ḹ -ḹ -Ḻ -ḻ -Ḽ -ḽ -M -m -ɱ -Ḿ -ḿ -á¹€ -á¹ -Ṃ -ṃ -N -n -Ñ -ñ -Ń -Å„ -Å… -ņ -Ň -ň -Æ -ɲ -Æž -È  -Ç‹ -Ǹ -ǹ -ȵ -ɳ -Ṅ -á¹… -Ṇ -ṇ -Ṉ -ṉ -Ṋ -ṋ -O -o -Ã’ -ò -Ó -ó -Ô -ô -Õ -õ -Ö -ö -Ø -ø -ÅŒ -Å -ÅŽ -Å -Å -Å‘ -ÆŸ -Æ  -Æ¡ -Ç‘ -Ç’ -Ǫ -Ç« -Ǭ -Ç­ -Ǿ -Ç¿ -ÈŒ -È -ÈŽ -È -Ȫ -È« -Ȭ -È­ -È® -ȯ -È° -ȱ -Ṍ -á¹ -Ṏ -á¹ -á¹ -ṑ -á¹’ -ṓ -Ọ -á» -Ỏ -á» -á» -ố -á»’ -ồ -á»” -ổ -á»– -á»— -Ộ -á»™ -Ớ -á»› -Ờ -á» -Ở -ở -á»  -ỡ -Ợ -ợ -P -p -Ƥ -Æ¥ -á¹” -ṕ -á¹– -á¹— -Q -q -Ê  -R -r -Å” -Å• -Å– -Å— -Ř -Å™ -È -È‘ -È’ -È“ -ɼ -ɽ -ɾ -Ṙ -á¹™ -Ṛ -á¹› -Ṝ -á¹ -Ṟ -ṟ -S -s -Åš -Å› -Åœ -Å -Åž -ÅŸ -Å  -Å¡ -Ș -È™ -Ê‚ -á¹  -ṡ -á¹¢ -á¹£ -Ṥ -á¹¥ -Ṧ -ṧ -Ṩ -ṩ -T -t -Å¢ -Å£ -Ť -Å¥ -Ŧ -ŧ -Æ« -Ƭ -Æ­ -Æ® -ʈ -Èš -È› -ȶ -Ṫ -ṫ -Ṭ -á¹­ -á¹® -ṯ -á¹° -á¹± -ẗ -U -u -Ù -ù -Ú -ú -Û -û -Ãœ -ü -Ũ -Å© -Ū -Å« -Ŭ -Å­ -Å® -ů -Å° -ű -Ų -ų -Ư -Æ° -Ç“ -Ç” -Ç• -Ç– -Ç— -ǘ -Ç™ -Çš -Ç› -Çœ -È” -È• -È– -È— -á¹² -á¹³ -á¹´ -á¹µ -Ṷ -á¹· -Ṹ -á¹¹ -Ṻ -á¹» -Ụ -ụ -Ủ -ủ -Ứ -ứ -Ừ -ừ -Ử -á»­ -á»® -ữ -á»° -á»± -V -v -Ʋ -Ê‹ -á¹¼ -á¹½ -á¹¾ -ṿ -W -w -Å´ -ŵ -Ẁ -Ạ-Ẃ -ẃ -Ẅ -ẅ -Ẇ -ẇ -Ẉ -ẉ -ẘ -X -x -Ẋ -ẋ -Ẍ -Ạ-Y -y -à -ý -ÿ -Ÿ -Ŷ -Å· -Ƴ -Æ´ -Ȳ -ȳ -Ẏ -Ạ-ẙ -Ỳ -ỳ -á»´ -ỵ -Ỷ -á»· -Ỹ -ỹ -Z -z -Ź -ź -Å» -ż -Ž -ž -Ƶ -ƶ -Ȥ -È¥ -Ê -Ê‘ -Ạ-ẑ -Ẓ -ẓ -Ẕ -ẕ - - diff --git a/docbook-xsl-1.75.2/common/es.xml b/docbook-xsl-1.75.2/common/es.xml deleted file mode 100644 index 2c1ba5f..0000000 --- a/docbook-xsl-1.75.2/common/es.xml +++ /dev/null @@ -1,677 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Símbolos -A -a -á -à -B -b -C -c -CH -ch -D -d -E -e -É -é -F -f -G -g -H -h -I -i -à -í -J -j -K -k -L -l -LL -ll -M -m -N -n -Ñ -ñ -O -o -Ó -ó -P -p -Q -q -R -r -S -s -T -t -U -u -Ú -ú -V -v -W -w -X -x -Y -y -Z -z - - diff --git a/docbook-xsl-1.75.2/common/et.xml b/docbook-xsl-1.75.2/common/et.xml deleted file mode 100644 index 8f6418c..0000000 --- a/docbook-xsl-1.75.2/common/et.xml +++ /dev/null @@ -1,1230 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Symbols -A -a -À -à -à -á - -â -à -ã -Ä -ä -Ã… -Ã¥ -Ä€ -Ä -Ä‚ -ă -Ä„ -Ä… -Ç -ÇŽ -Çž -ÇŸ -Ç  -Ç¡ -Ǻ -Ç» -È€ -È -È‚ -ȃ -Ȧ -ȧ -Ḁ -Ḡ-ẚ -Ạ -ạ -Ả -ả -Ấ -ấ -Ầ -ầ -Ẩ -ẩ -Ẫ -ẫ -Ậ -ậ -Ắ -ắ -Ằ -ằ -Ẳ -ẳ -Ẵ -ẵ -Ặ -ặ -B -b -Æ€ -Æ -É“ -Æ‚ -ƃ -Ḃ -ḃ -Ḅ -ḅ -Ḇ -ḇ -C -c -Ç -ç -Ć -ć -Ĉ -ĉ -ÄŠ -Ä‹ -ÄŒ -Ä -Ƈ -ƈ -É• -Ḉ -ḉ -D -d -ÄŽ -Ä -Ä -Ä‘ -ÆŠ -É— -Æ‹ -ÆŒ -Ç… -Dz -È¡ -É– -Ḋ -ḋ -Ḍ -Ḡ-Ḏ -Ḡ-Ḡ-ḑ -Ḓ -ḓ -E -e -È -è -É -é -Ê -ê -Ë -ë -Ä’ -Ä“ -Ä” -Ä• -Ä– -Ä— -Ę -Ä™ -Äš -Ä› -È„ -È… -Ȇ -ȇ -Ȩ -È© -Ḕ -ḕ -Ḗ -ḗ -Ḙ -ḙ -Ḛ -ḛ -Ḝ -Ḡ-Ẹ -ẹ -Ẻ -ẻ -Ẽ -ẽ -Ế -ế -Ề -á» -Ể -ể -Ễ -á»… -Ệ -ệ -F -f -Æ‘ -Æ’ -Ḟ -ḟ -G -g -Äœ -Ä -Äž -ÄŸ -Ä  -Ä¡ -Ä¢ -Ä£ -Æ“ -É  -Ǥ -Ç¥ -Ǧ -ǧ -Ç´ -ǵ -Ḡ -ḡ -H -h -Ĥ -Ä¥ -Ħ -ħ -Èž -ÈŸ -ɦ -Ḣ -ḣ -Ḥ -ḥ -Ḧ -ḧ -Ḩ -ḩ -Ḫ -ḫ -ẖ -I -i -ÃŒ -ì -à -í -ÃŽ -î -à -ï -Ĩ -Ä© -Ī -Ä« -Ĭ -Ä­ -Ä® -į -Ä° -Æ— -ɨ -Ç -Ç -Ȉ -ȉ -ÈŠ -È‹ -Ḭ -ḭ -Ḯ -ḯ -Ỉ -ỉ -Ị -ị -J -j -Ä´ -ĵ -Ç° -Ê -K -k -Ķ -Ä· -Ƙ -Æ™ -Ǩ -Ç© -Ḱ -ḱ -Ḳ -ḳ -Ḵ -ḵ -L -l -Ĺ -ĺ -Ä» -ļ -Ľ -ľ -Ä¿ -Å€ -Å -Å‚ -Æš -Lj -È´ -É« -ɬ -É­ -Ḷ -ḷ -Ḹ -ḹ -Ḻ -ḻ -Ḽ -ḽ -M -m -ɱ -Ḿ -ḿ -á¹€ -á¹ -Ṃ -ṃ -N -n -Ñ -ñ -Ń -Å„ -Å… -ņ -Ň -ň -Æ -ɲ -Æž -È  -Ç‹ -Ǹ -ǹ -ȵ -ɳ -Ṅ -á¹… -Ṇ -ṇ -Ṉ -ṉ -Ṋ -ṋ -O -o -Ã’ -ò -Ó -ó -Ô -ô -Õ -õ -Ö -ö -Ø -ø -ÅŒ -Å -ÅŽ -Å -Å -Å‘ -ÆŸ -Æ  -Æ¡ -Ç‘ -Ç’ -Ǫ -Ç« -Ǭ -Ç­ -Ǿ -Ç¿ -ÈŒ -È -ÈŽ -È -Ȫ -È« -Ȭ -È­ -È® -ȯ -È° -ȱ -Ṍ -á¹ -Ṏ -á¹ -á¹ -ṑ -á¹’ -ṓ -Ọ -á» -Ỏ -á» -á» -ố -á»’ -ồ -á»” -ổ -á»– -á»— -Ộ -á»™ -Ớ -á»› -Ờ -á» -Ở -ở -á»  -ỡ -Ợ -ợ -P -p -Ƥ -Æ¥ -á¹” -ṕ -á¹– -á¹— -Q -q -Ê  -R -r -Å” -Å• -Å– -Å— -Ř -Å™ -È -È‘ -È’ -È“ -ɼ -ɽ -ɾ -Ṙ -á¹™ -Ṛ -á¹› -Ṝ -á¹ -Ṟ -ṟ -S -s -Åš -Å› -Åœ -Å -Åž -ÅŸ -Å  -Å¡ -Ș -È™ -Ê‚ -á¹  -ṡ -á¹¢ -á¹£ -Ṥ -á¹¥ -Ṧ -ṧ -Ṩ -ṩ -T -t -Å¢ -Å£ -Ť -Å¥ -Ŧ -ŧ -Æ« -Ƭ -Æ­ -Æ® -ʈ -Èš -È› -ȶ -Ṫ -ṫ -Ṭ -á¹­ -á¹® -ṯ -á¹° -á¹± -ẗ -U -u -Ù -ù -Ú -ú -Û -û -Ãœ -ü -Ũ -Å© -Ū -Å« -Ŭ -Å­ -Å® -ů -Å° -ű -Ų -ų -Ư -Æ° -Ç“ -Ç” -Ç• -Ç– -Ç— -ǘ -Ç™ -Çš -Ç› -Çœ -È” -È• -È– -È— -á¹² -á¹³ -á¹´ -á¹µ -Ṷ -á¹· -Ṹ -á¹¹ -Ṻ -á¹» -Ụ -ụ -Ủ -ủ -Ứ -ứ -Ừ -ừ -Ử -á»­ -á»® -ữ -á»° -á»± -V -v -Ʋ -Ê‹ -á¹¼ -á¹½ -á¹¾ -ṿ -W -w -Å´ -ŵ -Ẁ -Ạ-Ẃ -ẃ -Ẅ -ẅ -Ẇ -ẇ -Ẉ -ẉ -ẘ -X -x -Ẋ -ẋ -Ẍ -Ạ-Y -y -à -ý -ÿ -Ÿ -Ŷ -Å· -Ƴ -Æ´ -Ȳ -ȳ -Ẏ -Ạ-ẙ -Ỳ -ỳ -á»´ -ỵ -Ỷ -á»· -Ỹ -ỹ -Z -z -Ź -ź -Å» -ż -Ž -ž -Ƶ -ƶ -Ȥ -È¥ -Ê -Ê‘ -Ạ-ẑ -Ẓ -ẓ -Ẕ -ẕ - - diff --git a/docbook-xsl-1.75.2/common/eu.xml b/docbook-xsl-1.75.2/common/eu.xml deleted file mode 100644 index 4a9a314..0000000 --- a/docbook-xsl-1.75.2/common/eu.xml +++ /dev/null @@ -1,1230 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Symbols -A -a -À -à -à -á - -â -à -ã -Ä -ä -Ã… -Ã¥ -Ä€ -Ä -Ä‚ -ă -Ä„ -Ä… -Ç -ÇŽ -Çž -ÇŸ -Ç  -Ç¡ -Ǻ -Ç» -È€ -È -È‚ -ȃ -Ȧ -ȧ -Ḁ -Ḡ-ẚ -Ạ -ạ -Ả -ả -Ấ -ấ -Ầ -ầ -Ẩ -ẩ -Ẫ -ẫ -Ậ -ậ -Ắ -ắ -Ằ -ằ -Ẳ -ẳ -Ẵ -ẵ -Ặ -ặ -B -b -Æ€ -Æ -É“ -Æ‚ -ƃ -Ḃ -ḃ -Ḅ -ḅ -Ḇ -ḇ -C -c -Ç -ç -Ć -ć -Ĉ -ĉ -ÄŠ -Ä‹ -ÄŒ -Ä -Ƈ -ƈ -É• -Ḉ -ḉ -D -d -ÄŽ -Ä -Ä -Ä‘ -ÆŠ -É— -Æ‹ -ÆŒ -Ç… -Dz -È¡ -É– -Ḋ -ḋ -Ḍ -Ḡ-Ḏ -Ḡ-Ḡ-ḑ -Ḓ -ḓ -E -e -È -è -É -é -Ê -ê -Ë -ë -Ä’ -Ä“ -Ä” -Ä• -Ä– -Ä— -Ę -Ä™ -Äš -Ä› -È„ -È… -Ȇ -ȇ -Ȩ -È© -Ḕ -ḕ -Ḗ -ḗ -Ḙ -ḙ -Ḛ -ḛ -Ḝ -Ḡ-Ẹ -ẹ -Ẻ -ẻ -Ẽ -ẽ -Ế -ế -Ề -á» -Ể -ể -Ễ -á»… -Ệ -ệ -F -f -Æ‘ -Æ’ -Ḟ -ḟ -G -g -Äœ -Ä -Äž -ÄŸ -Ä  -Ä¡ -Ä¢ -Ä£ -Æ“ -É  -Ǥ -Ç¥ -Ǧ -ǧ -Ç´ -ǵ -Ḡ -ḡ -H -h -Ĥ -Ä¥ -Ħ -ħ -Èž -ÈŸ -ɦ -Ḣ -ḣ -Ḥ -ḥ -Ḧ -ḧ -Ḩ -ḩ -Ḫ -ḫ -ẖ -I -i -ÃŒ -ì -à -í -ÃŽ -î -à -ï -Ĩ -Ä© -Ī -Ä« -Ĭ -Ä­ -Ä® -į -Ä° -Æ— -ɨ -Ç -Ç -Ȉ -ȉ -ÈŠ -È‹ -Ḭ -ḭ -Ḯ -ḯ -Ỉ -ỉ -Ị -ị -J -j -Ä´ -ĵ -Ç° -Ê -K -k -Ķ -Ä· -Ƙ -Æ™ -Ǩ -Ç© -Ḱ -ḱ -Ḳ -ḳ -Ḵ -ḵ -L -l -Ĺ -ĺ -Ä» -ļ -Ľ -ľ -Ä¿ -Å€ -Å -Å‚ -Æš -Lj -È´ -É« -ɬ -É­ -Ḷ -ḷ -Ḹ -ḹ -Ḻ -ḻ -Ḽ -ḽ -M -m -ɱ -Ḿ -ḿ -á¹€ -á¹ -Ṃ -ṃ -N -n -Ñ -ñ -Ń -Å„ -Å… -ņ -Ň -ň -Æ -ɲ -Æž -È  -Ç‹ -Ǹ -ǹ -ȵ -ɳ -Ṅ -á¹… -Ṇ -ṇ -Ṉ -ṉ -Ṋ -ṋ -O -o -Ã’ -ò -Ó -ó -Ô -ô -Õ -õ -Ö -ö -Ø -ø -ÅŒ -Å -ÅŽ -Å -Å -Å‘ -ÆŸ -Æ  -Æ¡ -Ç‘ -Ç’ -Ǫ -Ç« -Ǭ -Ç­ -Ǿ -Ç¿ -ÈŒ -È -ÈŽ -È -Ȫ -È« -Ȭ -È­ -È® -ȯ -È° -ȱ -Ṍ -á¹ -Ṏ -á¹ -á¹ -ṑ -á¹’ -ṓ -Ọ -á» -Ỏ -á» -á» -ố -á»’ -ồ -á»” -ổ -á»– -á»— -Ộ -á»™ -Ớ -á»› -Ờ -á» -Ở -ở -á»  -ỡ -Ợ -ợ -P -p -Ƥ -Æ¥ -á¹” -ṕ -á¹– -á¹— -Q -q -Ê  -R -r -Å” -Å• -Å– -Å— -Ř -Å™ -È -È‘ -È’ -È“ -ɼ -ɽ -ɾ -Ṙ -á¹™ -Ṛ -á¹› -Ṝ -á¹ -Ṟ -ṟ -S -s -Åš -Å› -Åœ -Å -Åž -ÅŸ -Å  -Å¡ -Ș -È™ -Ê‚ -á¹  -ṡ -á¹¢ -á¹£ -Ṥ -á¹¥ -Ṧ -ṧ -Ṩ -ṩ -T -t -Å¢ -Å£ -Ť -Å¥ -Ŧ -ŧ -Æ« -Ƭ -Æ­ -Æ® -ʈ -Èš -È› -ȶ -Ṫ -ṫ -Ṭ -á¹­ -á¹® -ṯ -á¹° -á¹± -ẗ -U -u -Ù -ù -Ú -ú -Û -û -Ãœ -ü -Ũ -Å© -Ū -Å« -Ŭ -Å­ -Å® -ů -Å° -ű -Ų -ų -Ư -Æ° -Ç“ -Ç” -Ç• -Ç– -Ç— -ǘ -Ç™ -Çš -Ç› -Çœ -È” -È• -È– -È— -á¹² -á¹³ -á¹´ -á¹µ -Ṷ -á¹· -Ṹ -á¹¹ -Ṻ -á¹» -Ụ -ụ -Ủ -ủ -Ứ -ứ -Ừ -ừ -Ử -á»­ -á»® -ữ -á»° -á»± -V -v -Ʋ -Ê‹ -á¹¼ -á¹½ -á¹¾ -ṿ -W -w -Å´ -ŵ -Ẁ -Ạ-Ẃ -ẃ -Ẅ -ẅ -Ẇ -ẇ -Ẉ -ẉ -ẘ -X -x -Ẋ -ẋ -Ẍ -Ạ-Y -y -à -ý -ÿ -Ÿ -Ŷ -Å· -Ƴ -Æ´ -Ȳ -ȳ -Ẏ -Ạ-ẙ -Ỳ -ỳ -á»´ -ỵ -Ỷ -á»· -Ỹ -ỹ -Z -z -Ź -ź -Å» -ż -Ž -ž -Ƶ -ƶ -Ȥ -È¥ -Ê -Ê‘ -Ạ-ẑ -Ẓ -ẓ -Ẕ -ẕ - - diff --git a/docbook-xsl-1.75.2/common/fa.xml b/docbook-xsl-1.75.2/common/fa.xml deleted file mode 100644 index 65a52c0..0000000 --- a/docbook-xsl-1.75.2/common/fa.xml +++ /dev/null @@ -1,1230 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Symbols -A -a -À -à -à -á - -â -à -ã -Ä -ä -Ã… -Ã¥ -Ä€ -Ä -Ä‚ -ă -Ä„ -Ä… -Ç -ÇŽ -Çž -ÇŸ -Ç  -Ç¡ -Ǻ -Ç» -È€ -È -È‚ -ȃ -Ȧ -ȧ -Ḁ -Ḡ-ẚ -Ạ -ạ -Ả -ả -Ấ -ấ -Ầ -ầ -Ẩ -ẩ -Ẫ -ẫ -Ậ -ậ -Ắ -ắ -Ằ -ằ -Ẳ -ẳ -Ẵ -ẵ -Ặ -ặ -B -b -Æ€ -Æ -É“ -Æ‚ -ƃ -Ḃ -ḃ -Ḅ -ḅ -Ḇ -ḇ -C -c -Ç -ç -Ć -ć -Ĉ -ĉ -ÄŠ -Ä‹ -ÄŒ -Ä -Ƈ -ƈ -É• -Ḉ -ḉ -D -d -ÄŽ -Ä -Ä -Ä‘ -ÆŠ -É— -Æ‹ -ÆŒ -Ç… -Dz -È¡ -É– -Ḋ -ḋ -Ḍ -Ḡ-Ḏ -Ḡ-Ḡ-ḑ -Ḓ -ḓ -E -e -È -è -É -é -Ê -ê -Ë -ë -Ä’ -Ä“ -Ä” -Ä• -Ä– -Ä— -Ę -Ä™ -Äš -Ä› -È„ -È… -Ȇ -ȇ -Ȩ -È© -Ḕ -ḕ -Ḗ -ḗ -Ḙ -ḙ -Ḛ -ḛ -Ḝ -Ḡ-Ẹ -ẹ -Ẻ -ẻ -Ẽ -ẽ -Ế -ế -Ề -á» -Ể -ể -Ễ -á»… -Ệ -ệ -F -f -Æ‘ -Æ’ -Ḟ -ḟ -G -g -Äœ -Ä -Äž -ÄŸ -Ä  -Ä¡ -Ä¢ -Ä£ -Æ“ -É  -Ǥ -Ç¥ -Ǧ -ǧ -Ç´ -ǵ -Ḡ -ḡ -H -h -Ĥ -Ä¥ -Ħ -ħ -Èž -ÈŸ -ɦ -Ḣ -ḣ -Ḥ -ḥ -Ḧ -ḧ -Ḩ -ḩ -Ḫ -ḫ -ẖ -I -i -ÃŒ -ì -à -í -ÃŽ -î -à -ï -Ĩ -Ä© -Ī -Ä« -Ĭ -Ä­ -Ä® -į -Ä° -Æ— -ɨ -Ç -Ç -Ȉ -ȉ -ÈŠ -È‹ -Ḭ -ḭ -Ḯ -ḯ -Ỉ -ỉ -Ị -ị -J -j -Ä´ -ĵ -Ç° -Ê -K -k -Ķ -Ä· -Ƙ -Æ™ -Ǩ -Ç© -Ḱ -ḱ -Ḳ -ḳ -Ḵ -ḵ -L -l -Ĺ -ĺ -Ä» -ļ -Ľ -ľ -Ä¿ -Å€ -Å -Å‚ -Æš -Lj -È´ -É« -ɬ -É­ -Ḷ -ḷ -Ḹ -ḹ -Ḻ -ḻ -Ḽ -ḽ -M -m -ɱ -Ḿ -ḿ -á¹€ -á¹ -Ṃ -ṃ -N -n -Ñ -ñ -Ń -Å„ -Å… -ņ -Ň -ň -Æ -ɲ -Æž -È  -Ç‹ -Ǹ -ǹ -ȵ -ɳ -Ṅ -á¹… -Ṇ -ṇ -Ṉ -ṉ -Ṋ -ṋ -O -o -Ã’ -ò -Ó -ó -Ô -ô -Õ -õ -Ö -ö -Ø -ø -ÅŒ -Å -ÅŽ -Å -Å -Å‘ -ÆŸ -Æ  -Æ¡ -Ç‘ -Ç’ -Ǫ -Ç« -Ǭ -Ç­ -Ǿ -Ç¿ -ÈŒ -È -ÈŽ -È -Ȫ -È« -Ȭ -È­ -È® -ȯ -È° -ȱ -Ṍ -á¹ -Ṏ -á¹ -á¹ -ṑ -á¹’ -ṓ -Ọ -á» -Ỏ -á» -á» -ố -á»’ -ồ -á»” -ổ -á»– -á»— -Ộ -á»™ -Ớ -á»› -Ờ -á» -Ở -ở -á»  -ỡ -Ợ -ợ -P -p -Ƥ -Æ¥ -á¹” -ṕ -á¹– -á¹— -Q -q -Ê  -R -r -Å” -Å• -Å– -Å— -Ř -Å™ -È -È‘ -È’ -È“ -ɼ -ɽ -ɾ -Ṙ -á¹™ -Ṛ -á¹› -Ṝ -á¹ -Ṟ -ṟ -S -s -Åš -Å› -Åœ -Å -Åž -ÅŸ -Å  -Å¡ -Ș -È™ -Ê‚ -á¹  -ṡ -á¹¢ -á¹£ -Ṥ -á¹¥ -Ṧ -ṧ -Ṩ -ṩ -T -t -Å¢ -Å£ -Ť -Å¥ -Ŧ -ŧ -Æ« -Ƭ -Æ­ -Æ® -ʈ -Èš -È› -ȶ -Ṫ -ṫ -Ṭ -á¹­ -á¹® -ṯ -á¹° -á¹± -ẗ -U -u -Ù -ù -Ú -ú -Û -û -Ãœ -ü -Ũ -Å© -Ū -Å« -Ŭ -Å­ -Å® -ů -Å° -ű -Ų -ų -Ư -Æ° -Ç“ -Ç” -Ç• -Ç– -Ç— -ǘ -Ç™ -Çš -Ç› -Çœ -È” -È• -È– -È— -á¹² -á¹³ -á¹´ -á¹µ -Ṷ -á¹· -Ṹ -á¹¹ -Ṻ -á¹» -Ụ -ụ -Ủ -ủ -Ứ -ứ -Ừ -ừ -Ử -á»­ -á»® -ữ -á»° -á»± -V -v -Ʋ -Ê‹ -á¹¼ -á¹½ -á¹¾ -ṿ -W -w -Å´ -ŵ -Ẁ -Ạ-Ẃ -ẃ -Ẅ -ẅ -Ẇ -ẇ -Ẉ -ẉ -ẘ -X -x -Ẋ -ẋ -Ẍ -Ạ-Y -y -à -ý -ÿ -Ÿ -Ŷ -Å· -Ƴ -Æ´ -Ȳ -ȳ -Ẏ -Ạ-ẙ -Ỳ -ỳ -á»´ -ỵ -Ỷ -á»· -Ỹ -ỹ -Z -z -Ź -ź -Å» -ż -Ž -ž -Ƶ -ƶ -Ȥ -È¥ -Ê -Ê‘ -Ạ-ẑ -Ẓ -ẓ -Ẕ -ẕ - - diff --git a/docbook-xsl-1.75.2/common/fi.xml b/docbook-xsl-1.75.2/common/fi.xml deleted file mode 100644 index 23b028b..0000000 --- a/docbook-xsl-1.75.2/common/fi.xml +++ /dev/null @@ -1,671 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Symbole -A -a -B -b -C -c -D -d -E -e -F -f -G -g -H -h -I -i -J -j -K -k -L -l -M -m -N -n -O -o -P -p -Q -q -R -r -S -s -Å  -Å¡ -T -t -U -u -V -v -W -w -X -x -Y -y -Z -z -Ž -ž -Ã… -Ã¥ -Ä -ä -Ö -ö - - diff --git a/docbook-xsl-1.75.2/common/fr.xml b/docbook-xsl-1.75.2/common/fr.xml deleted file mode 100644 index 74ff79b..0000000 --- a/docbook-xsl-1.75.2/common/fr.xml +++ /dev/null @@ -1,691 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Symboles -A -a -à -À -â - -Æ -æ -B -b -C -c -ç -D -d -E -e -ê -Ê -é -É -è -È -ë -Ë -€ -F -f -G -g -H -h -I -i -ÃŽ -î -à -ï -J -j -K -k -L -l -M -m -N -n -O -o -Ö -ö -Å’ -Å“ -P -p -Q -q -R -r -S -s -T -t -U -u -Ù -ù -Û -û -Ãœ -ü -V -v -W -w -X -x -Y -y -Z -z - - diff --git a/docbook-xsl-1.75.2/common/ga.xml b/docbook-xsl-1.75.2/common/ga.xml deleted file mode 100644 index 020fe3c..0000000 --- a/docbook-xsl-1.75.2/common/ga.xml +++ /dev/null @@ -1,1230 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Siombailí -A -a -À -à -à -á - -â -à -ã -Ä -ä -Ã… -Ã¥ -Ä€ -Ä -Ä‚ -ă -Ä„ -Ä… -Ç -ÇŽ -Çž -ÇŸ -Ç  -Ç¡ -Ǻ -Ç» -È€ -È -È‚ -ȃ -Ȧ -ȧ -Ḁ -Ḡ-ẚ -Ạ -ạ -Ả -ả -Ấ -ấ -Ầ -ầ -Ẩ -ẩ -Ẫ -ẫ -Ậ -ậ -Ắ -ắ -Ằ -ằ -Ẳ -ẳ -Ẵ -ẵ -Ặ -ặ -B -b -Æ€ -Æ -É“ -Æ‚ -ƃ -Ḃ -ḃ -Ḅ -ḅ -Ḇ -ḇ -C -c -Ç -ç -Ć -ć -Ĉ -ĉ -ÄŠ -Ä‹ -ÄŒ -Ä -Ƈ -ƈ -É• -Ḉ -ḉ -D -d -ÄŽ -Ä -Ä -Ä‘ -ÆŠ -É— -Æ‹ -ÆŒ -Ç… -Dz -È¡ -É– -Ḋ -ḋ -Ḍ -Ḡ-Ḏ -Ḡ-Ḡ-ḑ -Ḓ -ḓ -E -e -È -è -É -é -Ê -ê -Ë -ë -Ä’ -Ä“ -Ä” -Ä• -Ä– -Ä— -Ę -Ä™ -Äš -Ä› -È„ -È… -Ȇ -ȇ -Ȩ -È© -Ḕ -ḕ -Ḗ -ḗ -Ḙ -ḙ -Ḛ -ḛ -Ḝ -Ḡ-Ẹ -ẹ -Ẻ -ẻ -Ẽ -ẽ -Ế -ế -Ề -á» -Ể -ể -Ễ -á»… -Ệ -ệ -F -f -Æ‘ -Æ’ -Ḟ -ḟ -G -g -Äœ -Ä -Äž -ÄŸ -Ä  -Ä¡ -Ä¢ -Ä£ -Æ“ -É  -Ǥ -Ç¥ -Ǧ -ǧ -Ç´ -ǵ -Ḡ -ḡ -H -h -Ĥ -Ä¥ -Ħ -ħ -Èž -ÈŸ -ɦ -Ḣ -ḣ -Ḥ -ḥ -Ḧ -ḧ -Ḩ -ḩ -Ḫ -ḫ -ẖ -I -i -ÃŒ -ì -à -í -ÃŽ -î -à -ï -Ĩ -Ä© -Ī -Ä« -Ĭ -Ä­ -Ä® -į -Ä° -Æ— -ɨ -Ç -Ç -Ȉ -ȉ -ÈŠ -È‹ -Ḭ -ḭ -Ḯ -ḯ -Ỉ -ỉ -Ị -ị -J -j -Ä´ -ĵ -Ç° -Ê -K -k -Ķ -Ä· -Ƙ -Æ™ -Ǩ -Ç© -Ḱ -ḱ -Ḳ -ḳ -Ḵ -ḵ -L -l -Ĺ -ĺ -Ä» -ļ -Ľ -ľ -Ä¿ -Å€ -Å -Å‚ -Æš -Lj -È´ -É« -ɬ -É­ -Ḷ -ḷ -Ḹ -ḹ -Ḻ -ḻ -Ḽ -ḽ -M -m -ɱ -Ḿ -ḿ -á¹€ -á¹ -Ṃ -ṃ -N -n -Ñ -ñ -Ń -Å„ -Å… -ņ -Ň -ň -Æ -ɲ -Æž -È  -Ç‹ -Ǹ -ǹ -ȵ -ɳ -Ṅ -á¹… -Ṇ -ṇ -Ṉ -ṉ -Ṋ -ṋ -O -o -Ã’ -ò -Ó -ó -Ô -ô -Õ -õ -Ö -ö -Ø -ø -ÅŒ -Å -ÅŽ -Å -Å -Å‘ -ÆŸ -Æ  -Æ¡ -Ç‘ -Ç’ -Ǫ -Ç« -Ǭ -Ç­ -Ǿ -Ç¿ -ÈŒ -È -ÈŽ -È -Ȫ -È« -Ȭ -È­ -È® -ȯ -È° -ȱ -Ṍ -á¹ -Ṏ -á¹ -á¹ -ṑ -á¹’ -ṓ -Ọ -á» -Ỏ -á» -á» -ố -á»’ -ồ -á»” -ổ -á»– -á»— -Ộ -á»™ -Ớ -á»› -Ờ -á» -Ở -ở -á»  -ỡ -Ợ -ợ -P -p -Ƥ -Æ¥ -á¹” -ṕ -á¹– -á¹— -Q -q -Ê  -R -r -Å” -Å• -Å– -Å— -Ř -Å™ -È -È‘ -È’ -È“ -ɼ -ɽ -ɾ -Ṙ -á¹™ -Ṛ -á¹› -Ṝ -á¹ -Ṟ -ṟ -S -s -Åš -Å› -Åœ -Å -Åž -ÅŸ -Å  -Å¡ -Ș -È™ -Ê‚ -á¹  -ṡ -á¹¢ -á¹£ -Ṥ -á¹¥ -Ṧ -ṧ -Ṩ -ṩ -T -t -Å¢ -Å£ -Ť -Å¥ -Ŧ -ŧ -Æ« -Ƭ -Æ­ -Æ® -ʈ -Èš -È› -ȶ -Ṫ -ṫ -Ṭ -á¹­ -á¹® -ṯ -á¹° -á¹± -ẗ -U -u -Ù -ù -Ú -ú -Û -û -Ãœ -ü -Ũ -Å© -Ū -Å« -Ŭ -Å­ -Å® -ů -Å° -ű -Ų -ų -Ư -Æ° -Ç“ -Ç” -Ç• -Ç– -Ç— -ǘ -Ç™ -Çš -Ç› -Çœ -È” -È• -È– -È— -á¹² -á¹³ -á¹´ -á¹µ -Ṷ -á¹· -Ṹ -á¹¹ -Ṻ -á¹» -Ụ -ụ -Ủ -ủ -Ứ -ứ -Ừ -ừ -Ử -á»­ -á»® -ữ -á»° -á»± -V -v -Ʋ -Ê‹ -á¹¼ -á¹½ -á¹¾ -ṿ -W -w -Å´ -ŵ -Ẁ -Ạ-Ẃ -ẃ -Ẅ -ẅ -Ẇ -ẇ -Ẉ -ẉ -ẘ -X -x -Ẋ -ẋ -Ẍ -Ạ-Y -y -à -ý -ÿ -Ÿ -Ŷ -Å· -Ƴ -Æ´ -Ȳ -ȳ -Ẏ -Ạ-ẙ -Ỳ -ỳ -á»´ -ỵ -Ỷ -á»· -Ỹ -ỹ -Z -z -Ź -ź -Å» -ż -Ž -ž -Ƶ -ƶ -Ȥ -È¥ -Ê -Ê‘ -Ạ-ẑ -Ẓ -ẓ -Ẕ -ẕ - - diff --git a/docbook-xsl-1.75.2/common/gentext.xsl b/docbook-xsl-1.75.2/common/gentext.xsl deleted file mode 100644 index 13c07d0..0000000 --- a/docbook-xsl-1.75.2/common/gentext.xsl +++ /dev/null @@ -1,836 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - .formal - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - object.xref.markup: empty xref template - for linkend=" - - " and @xrefstyle=" - - " - - - - - - - - - - - - - - - - - - - - - - - - - - - Xref is only supported to listitems in an - orderedlist: - - - ??? - - - - - - - - - - - - - - - - - - - - - - - - %n - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - - - - - - - - - - - - - - - - - Attempt to use %d in gentext with no referrer! - - - - - - - % - - - % - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - labelnumber - - - labelname - - - label - - - - - - - - quotedtitle - - - title - - - - - - - - - - - - - - nopage - - - pagenumber - - - pageabbrev - - - Page - - - page - - - - - - - - - - - nodocname - - - docnamelong - - - docname - - - - - - - - - - - - - - - - - - - - - - %n - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - %t - - - - - - %t - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - %p - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/common/gl.xml b/docbook-xsl-1.75.2/common/gl.xml deleted file mode 100644 index 0b826d7..0000000 --- a/docbook-xsl-1.75.2/common/gl.xml +++ /dev/null @@ -1,1230 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Symbols -A -a -À -à -à -á - -â -à -ã -Ä -ä -Ã… -Ã¥ -Ä€ -Ä -Ä‚ -ă -Ä„ -Ä… -Ç -ÇŽ -Çž -ÇŸ -Ç  -Ç¡ -Ǻ -Ç» -È€ -È -È‚ -ȃ -Ȧ -ȧ -Ḁ -Ḡ-ẚ -Ạ -ạ -Ả -ả -Ấ -ấ -Ầ -ầ -Ẩ -ẩ -Ẫ -ẫ -Ậ -ậ -Ắ -ắ -Ằ -ằ -Ẳ -ẳ -Ẵ -ẵ -Ặ -ặ -B -b -Æ€ -Æ -É“ -Æ‚ -ƃ -Ḃ -ḃ -Ḅ -ḅ -Ḇ -ḇ -C -c -Ç -ç -Ć -ć -Ĉ -ĉ -ÄŠ -Ä‹ -ÄŒ -Ä -Ƈ -ƈ -É• -Ḉ -ḉ -D -d -ÄŽ -Ä -Ä -Ä‘ -ÆŠ -É— -Æ‹ -ÆŒ -Ç… -Dz -È¡ -É– -Ḋ -ḋ -Ḍ -Ḡ-Ḏ -Ḡ-Ḡ-ḑ -Ḓ -ḓ -E -e -È -è -É -é -Ê -ê -Ë -ë -Ä’ -Ä“ -Ä” -Ä• -Ä– -Ä— -Ę -Ä™ -Äš -Ä› -È„ -È… -Ȇ -ȇ -Ȩ -È© -Ḕ -ḕ -Ḗ -ḗ -Ḙ -ḙ -Ḛ -ḛ -Ḝ -Ḡ-Ẹ -ẹ -Ẻ -ẻ -Ẽ -ẽ -Ế -ế -Ề -á» -Ể -ể -Ễ -á»… -Ệ -ệ -F -f -Æ‘ -Æ’ -Ḟ -ḟ -G -g -Äœ -Ä -Äž -ÄŸ -Ä  -Ä¡ -Ä¢ -Ä£ -Æ“ -É  -Ǥ -Ç¥ -Ǧ -ǧ -Ç´ -ǵ -Ḡ -ḡ -H -h -Ĥ -Ä¥ -Ħ -ħ -Èž -ÈŸ -ɦ -Ḣ -ḣ -Ḥ -ḥ -Ḧ -ḧ -Ḩ -ḩ -Ḫ -ḫ -ẖ -I -i -ÃŒ -ì -à -í -ÃŽ -î -à -ï -Ĩ -Ä© -Ī -Ä« -Ĭ -Ä­ -Ä® -į -Ä° -Æ— -ɨ -Ç -Ç -Ȉ -ȉ -ÈŠ -È‹ -Ḭ -ḭ -Ḯ -ḯ -Ỉ -ỉ -Ị -ị -J -j -Ä´ -ĵ -Ç° -Ê -K -k -Ķ -Ä· -Ƙ -Æ™ -Ǩ -Ç© -Ḱ -ḱ -Ḳ -ḳ -Ḵ -ḵ -L -l -Ĺ -ĺ -Ä» -ļ -Ľ -ľ -Ä¿ -Å€ -Å -Å‚ -Æš -Lj -È´ -É« -ɬ -É­ -Ḷ -ḷ -Ḹ -ḹ -Ḻ -ḻ -Ḽ -ḽ -M -m -ɱ -Ḿ -ḿ -á¹€ -á¹ -Ṃ -ṃ -N -n -Ñ -ñ -Ń -Å„ -Å… -ņ -Ň -ň -Æ -ɲ -Æž -È  -Ç‹ -Ǹ -ǹ -ȵ -ɳ -Ṅ -á¹… -Ṇ -ṇ -Ṉ -ṉ -Ṋ -ṋ -O -o -Ã’ -ò -Ó -ó -Ô -ô -Õ -õ -Ö -ö -Ø -ø -ÅŒ -Å -ÅŽ -Å -Å -Å‘ -ÆŸ -Æ  -Æ¡ -Ç‘ -Ç’ -Ǫ -Ç« -Ǭ -Ç­ -Ǿ -Ç¿ -ÈŒ -È -ÈŽ -È -Ȫ -È« -Ȭ -È­ -È® -ȯ -È° -ȱ -Ṍ -á¹ -Ṏ -á¹ -á¹ -ṑ -á¹’ -ṓ -Ọ -á» -Ỏ -á» -á» -ố -á»’ -ồ -á»” -ổ -á»– -á»— -Ộ -á»™ -Ớ -á»› -Ờ -á» -Ở -ở -á»  -ỡ -Ợ -ợ -P -p -Ƥ -Æ¥ -á¹” -ṕ -á¹– -á¹— -Q -q -Ê  -R -r -Å” -Å• -Å– -Å— -Ř -Å™ -È -È‘ -È’ -È“ -ɼ -ɽ -ɾ -Ṙ -á¹™ -Ṛ -á¹› -Ṝ -á¹ -Ṟ -ṟ -S -s -Åš -Å› -Åœ -Å -Åž -ÅŸ -Å  -Å¡ -Ș -È™ -Ê‚ -á¹  -ṡ -á¹¢ -á¹£ -Ṥ -á¹¥ -Ṧ -ṧ -Ṩ -ṩ -T -t -Å¢ -Å£ -Ť -Å¥ -Ŧ -ŧ -Æ« -Ƭ -Æ­ -Æ® -ʈ -Èš -È› -ȶ -Ṫ -ṫ -Ṭ -á¹­ -á¹® -ṯ -á¹° -á¹± -ẗ -U -u -Ù -ù -Ú -ú -Û -û -Ãœ -ü -Ũ -Å© -Ū -Å« -Ŭ -Å­ -Å® -ů -Å° -ű -Ų -ų -Ư -Æ° -Ç“ -Ç” -Ç• -Ç– -Ç— -ǘ -Ç™ -Çš -Ç› -Çœ -È” -È• -È– -È— -á¹² -á¹³ -á¹´ -á¹µ -Ṷ -á¹· -Ṹ -á¹¹ -Ṻ -á¹» -Ụ -ụ -Ủ -ủ -Ứ -ứ -Ừ -ừ -Ử -á»­ -á»® -ữ -á»° -á»± -V -v -Ʋ -Ê‹ -á¹¼ -á¹½ -á¹¾ -ṿ -W -w -Å´ -ŵ -Ẁ -Ạ-Ẃ -ẃ -Ẅ -ẅ -Ẇ -ẇ -Ẉ -ẉ -ẘ -X -x -Ẋ -ẋ -Ẍ -Ạ-Y -y -à -ý -ÿ -Ÿ -Ŷ -Å· -Ƴ -Æ´ -Ȳ -ȳ -Ẏ -Ạ-ẙ -Ỳ -ỳ -á»´ -ỵ -Ỷ -á»· -Ỹ -ỹ -Z -z -Ź -ź -Å» -ż -Ž -ž -Ƶ -ƶ -Ȥ -È¥ -Ê -Ê‘ -Ạ-ẑ -Ẓ -ẓ -Ẕ -ẕ - - diff --git a/docbook-xsl-1.75.2/common/gu.xml b/docbook-xsl-1.75.2/common/gu.xml deleted file mode 100644 index f782acc..0000000 --- a/docbook-xsl-1.75.2/common/gu.xml +++ /dev/null @@ -1,1230 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Symbols -A -a -À -à -à -á - -â -à -ã -Ä -ä -Ã… -Ã¥ -Ä€ -Ä -Ä‚ -ă -Ä„ -Ä… -Ç -ÇŽ -Çž -ÇŸ -Ç  -Ç¡ -Ǻ -Ç» -È€ -È -È‚ -ȃ -Ȧ -ȧ -Ḁ -Ḡ-ẚ -Ạ -ạ -Ả -ả -Ấ -ấ -Ầ -ầ -Ẩ -ẩ -Ẫ -ẫ -Ậ -ậ -Ắ -ắ -Ằ -ằ -Ẳ -ẳ -Ẵ -ẵ -Ặ -ặ -B -b -Æ€ -Æ -É“ -Æ‚ -ƃ -Ḃ -ḃ -Ḅ -ḅ -Ḇ -ḇ -C -c -Ç -ç -Ć -ć -Ĉ -ĉ -ÄŠ -Ä‹ -ÄŒ -Ä -Ƈ -ƈ -É• -Ḉ -ḉ -D -d -ÄŽ -Ä -Ä -Ä‘ -ÆŠ -É— -Æ‹ -ÆŒ -Ç… -Dz -È¡ -É– -Ḋ -ḋ -Ḍ -Ḡ-Ḏ -Ḡ-Ḡ-ḑ -Ḓ -ḓ -E -e -È -è -É -é -Ê -ê -Ë -ë -Ä’ -Ä“ -Ä” -Ä• -Ä– -Ä— -Ę -Ä™ -Äš -Ä› -È„ -È… -Ȇ -ȇ -Ȩ -È© -Ḕ -ḕ -Ḗ -ḗ -Ḙ -ḙ -Ḛ -ḛ -Ḝ -Ḡ-Ẹ -ẹ -Ẻ -ẻ -Ẽ -ẽ -Ế -ế -Ề -á» -Ể -ể -Ễ -á»… -Ệ -ệ -F -f -Æ‘ -Æ’ -Ḟ -ḟ -G -g -Äœ -Ä -Äž -ÄŸ -Ä  -Ä¡ -Ä¢ -Ä£ -Æ“ -É  -Ǥ -Ç¥ -Ǧ -ǧ -Ç´ -ǵ -Ḡ -ḡ -H -h -Ĥ -Ä¥ -Ħ -ħ -Èž -ÈŸ -ɦ -Ḣ -ḣ -Ḥ -ḥ -Ḧ -ḧ -Ḩ -ḩ -Ḫ -ḫ -ẖ -I -i -ÃŒ -ì -à -í -ÃŽ -î -à -ï -Ĩ -Ä© -Ī -Ä« -Ĭ -Ä­ -Ä® -į -Ä° -Æ— -ɨ -Ç -Ç -Ȉ -ȉ -ÈŠ -È‹ -Ḭ -ḭ -Ḯ -ḯ -Ỉ -ỉ -Ị -ị -J -j -Ä´ -ĵ -Ç° -Ê -K -k -Ķ -Ä· -Ƙ -Æ™ -Ǩ -Ç© -Ḱ -ḱ -Ḳ -ḳ -Ḵ -ḵ -L -l -Ĺ -ĺ -Ä» -ļ -Ľ -ľ -Ä¿ -Å€ -Å -Å‚ -Æš -Lj -È´ -É« -ɬ -É­ -Ḷ -ḷ -Ḹ -ḹ -Ḻ -ḻ -Ḽ -ḽ -M -m -ɱ -Ḿ -ḿ -á¹€ -á¹ -Ṃ -ṃ -N -n -Ñ -ñ -Ń -Å„ -Å… -ņ -Ň -ň -Æ -ɲ -Æž -È  -Ç‹ -Ǹ -ǹ -ȵ -ɳ -Ṅ -á¹… -Ṇ -ṇ -Ṉ -ṉ -Ṋ -ṋ -O -o -Ã’ -ò -Ó -ó -Ô -ô -Õ -õ -Ö -ö -Ø -ø -ÅŒ -Å -ÅŽ -Å -Å -Å‘ -ÆŸ -Æ  -Æ¡ -Ç‘ -Ç’ -Ǫ -Ç« -Ǭ -Ç­ -Ǿ -Ç¿ -ÈŒ -È -ÈŽ -È -Ȫ -È« -Ȭ -È­ -È® -ȯ -È° -ȱ -Ṍ -á¹ -Ṏ -á¹ -á¹ -ṑ -á¹’ -ṓ -Ọ -á» -Ỏ -á» -á» -ố -á»’ -ồ -á»” -ổ -á»– -á»— -Ộ -á»™ -Ớ -á»› -Ờ -á» -Ở -ở -á»  -ỡ -Ợ -ợ -P -p -Ƥ -Æ¥ -á¹” -ṕ -á¹– -á¹— -Q -q -Ê  -R -r -Å” -Å• -Å– -Å— -Ř -Å™ -È -È‘ -È’ -È“ -ɼ -ɽ -ɾ -Ṙ -á¹™ -Ṛ -á¹› -Ṝ -á¹ -Ṟ -ṟ -S -s -Åš -Å› -Åœ -Å -Åž -ÅŸ -Å  -Å¡ -Ș -È™ -Ê‚ -á¹  -ṡ -á¹¢ -á¹£ -Ṥ -á¹¥ -Ṧ -ṧ -Ṩ -ṩ -T -t -Å¢ -Å£ -Ť -Å¥ -Ŧ -ŧ -Æ« -Ƭ -Æ­ -Æ® -ʈ -Èš -È› -ȶ -Ṫ -ṫ -Ṭ -á¹­ -á¹® -ṯ -á¹° -á¹± -ẗ -U -u -Ù -ù -Ú -ú -Û -û -Ãœ -ü -Ũ -Å© -Ū -Å« -Ŭ -Å­ -Å® -ů -Å° -ű -Ų -ų -Ư -Æ° -Ç“ -Ç” -Ç• -Ç– -Ç— -ǘ -Ç™ -Çš -Ç› -Çœ -È” -È• -È– -È— -á¹² -á¹³ -á¹´ -á¹µ -Ṷ -á¹· -Ṹ -á¹¹ -Ṻ -á¹» -Ụ -ụ -Ủ -ủ -Ứ -ứ -Ừ -ừ -Ử -á»­ -á»® -ữ -á»° -á»± -V -v -Ʋ -Ê‹ -á¹¼ -á¹½ -á¹¾ -ṿ -W -w -Å´ -ŵ -Ẁ -Ạ-Ẃ -ẃ -Ẅ -ẅ -Ẇ -ẇ -Ẉ -ẉ -ẘ -X -x -Ẋ -ẋ -Ẍ -Ạ-Y -y -à -ý -ÿ -Ÿ -Ŷ -Å· -Ƴ -Æ´ -Ȳ -ȳ -Ẏ -Ạ-ẙ -Ỳ -ỳ -á»´ -ỵ -Ỷ -á»· -Ỹ -ỹ -Z -z -Ź -ź -Å» -ż -Ž -ž -Ƶ -ƶ -Ȥ -È¥ -Ê -Ê‘ -Ạ-ẑ -Ẓ -ẓ -Ẕ -ẕ - - diff --git a/docbook-xsl-1.75.2/common/he.xml b/docbook-xsl-1.75.2/common/he.xml deleted file mode 100644 index 8d22621..0000000 --- a/docbook-xsl-1.75.2/common/he.xml +++ /dev/null @@ -1,1230 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Symbols -A -a -À -à -à -á - -â -à -ã -Ä -ä -Ã… -Ã¥ -Ä€ -Ä -Ä‚ -ă -Ä„ -Ä… -Ç -ÇŽ -Çž -ÇŸ -Ç  -Ç¡ -Ǻ -Ç» -È€ -È -È‚ -ȃ -Ȧ -ȧ -Ḁ -Ḡ-ẚ -Ạ -ạ -Ả -ả -Ấ -ấ -Ầ -ầ -Ẩ -ẩ -Ẫ -ẫ -Ậ -ậ -Ắ -ắ -Ằ -ằ -Ẳ -ẳ -Ẵ -ẵ -Ặ -ặ -B -b -Æ€ -Æ -É“ -Æ‚ -ƃ -Ḃ -ḃ -Ḅ -ḅ -Ḇ -ḇ -C -c -Ç -ç -Ć -ć -Ĉ -ĉ -ÄŠ -Ä‹ -ÄŒ -Ä -Ƈ -ƈ -É• -Ḉ -ḉ -D -d -ÄŽ -Ä -Ä -Ä‘ -ÆŠ -É— -Æ‹ -ÆŒ -Ç… -Dz -È¡ -É– -Ḋ -ḋ -Ḍ -Ḡ-Ḏ -Ḡ-Ḡ-ḑ -Ḓ -ḓ -E -e -È -è -É -é -Ê -ê -Ë -ë -Ä’ -Ä“ -Ä” -Ä• -Ä– -Ä— -Ę -Ä™ -Äš -Ä› -È„ -È… -Ȇ -ȇ -Ȩ -È© -Ḕ -ḕ -Ḗ -ḗ -Ḙ -ḙ -Ḛ -ḛ -Ḝ -Ḡ-Ẹ -ẹ -Ẻ -ẻ -Ẽ -ẽ -Ế -ế -Ề -á» -Ể -ể -Ễ -á»… -Ệ -ệ -F -f -Æ‘ -Æ’ -Ḟ -ḟ -G -g -Äœ -Ä -Äž -ÄŸ -Ä  -Ä¡ -Ä¢ -Ä£ -Æ“ -É  -Ǥ -Ç¥ -Ǧ -ǧ -Ç´ -ǵ -Ḡ -ḡ -H -h -Ĥ -Ä¥ -Ħ -ħ -Èž -ÈŸ -ɦ -Ḣ -ḣ -Ḥ -ḥ -Ḧ -ḧ -Ḩ -ḩ -Ḫ -ḫ -ẖ -I -i -ÃŒ -ì -à -í -ÃŽ -î -à -ï -Ĩ -Ä© -Ī -Ä« -Ĭ -Ä­ -Ä® -į -Ä° -Æ— -ɨ -Ç -Ç -Ȉ -ȉ -ÈŠ -È‹ -Ḭ -ḭ -Ḯ -ḯ -Ỉ -ỉ -Ị -ị -J -j -Ä´ -ĵ -Ç° -Ê -K -k -Ķ -Ä· -Ƙ -Æ™ -Ǩ -Ç© -Ḱ -ḱ -Ḳ -ḳ -Ḵ -ḵ -L -l -Ĺ -ĺ -Ä» -ļ -Ľ -ľ -Ä¿ -Å€ -Å -Å‚ -Æš -Lj -È´ -É« -ɬ -É­ -Ḷ -ḷ -Ḹ -ḹ -Ḻ -ḻ -Ḽ -ḽ -M -m -ɱ -Ḿ -ḿ -á¹€ -á¹ -Ṃ -ṃ -N -n -Ñ -ñ -Ń -Å„ -Å… -ņ -Ň -ň -Æ -ɲ -Æž -È  -Ç‹ -Ǹ -ǹ -ȵ -ɳ -Ṅ -á¹… -Ṇ -ṇ -Ṉ -ṉ -Ṋ -ṋ -O -o -Ã’ -ò -Ó -ó -Ô -ô -Õ -õ -Ö -ö -Ø -ø -ÅŒ -Å -ÅŽ -Å -Å -Å‘ -ÆŸ -Æ  -Æ¡ -Ç‘ -Ç’ -Ǫ -Ç« -Ǭ -Ç­ -Ǿ -Ç¿ -ÈŒ -È -ÈŽ -È -Ȫ -È« -Ȭ -È­ -È® -ȯ -È° -ȱ -Ṍ -á¹ -Ṏ -á¹ -á¹ -ṑ -á¹’ -ṓ -Ọ -á» -Ỏ -á» -á» -ố -á»’ -ồ -á»” -ổ -á»– -á»— -Ộ -á»™ -Ớ -á»› -Ờ -á» -Ở -ở -á»  -ỡ -Ợ -ợ -P -p -Ƥ -Æ¥ -á¹” -ṕ -á¹– -á¹— -Q -q -Ê  -R -r -Å” -Å• -Å– -Å— -Ř -Å™ -È -È‘ -È’ -È“ -ɼ -ɽ -ɾ -Ṙ -á¹™ -Ṛ -á¹› -Ṝ -á¹ -Ṟ -ṟ -S -s -Åš -Å› -Åœ -Å -Åž -ÅŸ -Å  -Å¡ -Ș -È™ -Ê‚ -á¹  -ṡ -á¹¢ -á¹£ -Ṥ -á¹¥ -Ṧ -ṧ -Ṩ -ṩ -T -t -Å¢ -Å£ -Ť -Å¥ -Ŧ -ŧ -Æ« -Ƭ -Æ­ -Æ® -ʈ -Èš -È› -ȶ -Ṫ -ṫ -Ṭ -á¹­ -á¹® -ṯ -á¹° -á¹± -ẗ -U -u -Ù -ù -Ú -ú -Û -û -Ãœ -ü -Ũ -Å© -Ū -Å« -Ŭ -Å­ -Å® -ů -Å° -ű -Ų -ų -Ư -Æ° -Ç“ -Ç” -Ç• -Ç– -Ç— -ǘ -Ç™ -Çš -Ç› -Çœ -È” -È• -È– -È— -á¹² -á¹³ -á¹´ -á¹µ -Ṷ -á¹· -Ṹ -á¹¹ -Ṻ -á¹» -Ụ -ụ -Ủ -ủ -Ứ -ứ -Ừ -ừ -Ử -á»­ -á»® -ữ -á»° -á»± -V -v -Ʋ -Ê‹ -á¹¼ -á¹½ -á¹¾ -ṿ -W -w -Å´ -ŵ -Ẁ -Ạ-Ẃ -ẃ -Ẅ -ẅ -Ẇ -ẇ -Ẉ -ẉ -ẘ -X -x -Ẋ -ẋ -Ẍ -Ạ-Y -y -à -ý -ÿ -Ÿ -Ŷ -Å· -Ƴ -Æ´ -Ȳ -ȳ -Ẏ -Ạ-ẙ -Ỳ -ỳ -á»´ -ỵ -Ỷ -á»· -Ỹ -ỹ -Z -z -Ź -ź -Å» -ż -Ž -ž -Ƶ -ƶ -Ȥ -È¥ -Ê -Ê‘ -Ạ-ẑ -Ẓ -ẓ -Ẕ -ẕ - - diff --git a/docbook-xsl-1.75.2/common/hi.xml b/docbook-xsl-1.75.2/common/hi.xml deleted file mode 100644 index acb4cb8..0000000 --- a/docbook-xsl-1.75.2/common/hi.xml +++ /dev/null @@ -1,1230 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Symbols -A -a -À -à -à -á - -â -à -ã -Ä -ä -Ã… -Ã¥ -Ä€ -Ä -Ä‚ -ă -Ä„ -Ä… -Ç -ÇŽ -Çž -ÇŸ -Ç  -Ç¡ -Ǻ -Ç» -È€ -È -È‚ -ȃ -Ȧ -ȧ -Ḁ -Ḡ-ẚ -Ạ -ạ -Ả -ả -Ấ -ấ -Ầ -ầ -Ẩ -ẩ -Ẫ -ẫ -Ậ -ậ -Ắ -ắ -Ằ -ằ -Ẳ -ẳ -Ẵ -ẵ -Ặ -ặ -B -b -Æ€ -Æ -É“ -Æ‚ -ƃ -Ḃ -ḃ -Ḅ -ḅ -Ḇ -ḇ -C -c -Ç -ç -Ć -ć -Ĉ -ĉ -ÄŠ -Ä‹ -ÄŒ -Ä -Ƈ -ƈ -É• -Ḉ -ḉ -D -d -ÄŽ -Ä -Ä -Ä‘ -ÆŠ -É— -Æ‹ -ÆŒ -Ç… -Dz -È¡ -É– -Ḋ -ḋ -Ḍ -Ḡ-Ḏ -Ḡ-Ḡ-ḑ -Ḓ -ḓ -E -e -È -è -É -é -Ê -ê -Ë -ë -Ä’ -Ä“ -Ä” -Ä• -Ä– -Ä— -Ę -Ä™ -Äš -Ä› -È„ -È… -Ȇ -ȇ -Ȩ -È© -Ḕ -ḕ -Ḗ -ḗ -Ḙ -ḙ -Ḛ -ḛ -Ḝ -Ḡ-Ẹ -ẹ -Ẻ -ẻ -Ẽ -ẽ -Ế -ế -Ề -á» -Ể -ể -Ễ -á»… -Ệ -ệ -F -f -Æ‘ -Æ’ -Ḟ -ḟ -G -g -Äœ -Ä -Äž -ÄŸ -Ä  -Ä¡ -Ä¢ -Ä£ -Æ“ -É  -Ǥ -Ç¥ -Ǧ -ǧ -Ç´ -ǵ -Ḡ -ḡ -H -h -Ĥ -Ä¥ -Ħ -ħ -Èž -ÈŸ -ɦ -Ḣ -ḣ -Ḥ -ḥ -Ḧ -ḧ -Ḩ -ḩ -Ḫ -ḫ -ẖ -I -i -ÃŒ -ì -à -í -ÃŽ -î -à -ï -Ĩ -Ä© -Ī -Ä« -Ĭ -Ä­ -Ä® -į -Ä° -Æ— -ɨ -Ç -Ç -Ȉ -ȉ -ÈŠ -È‹ -Ḭ -ḭ -Ḯ -ḯ -Ỉ -ỉ -Ị -ị -J -j -Ä´ -ĵ -Ç° -Ê -K -k -Ķ -Ä· -Ƙ -Æ™ -Ǩ -Ç© -Ḱ -ḱ -Ḳ -ḳ -Ḵ -ḵ -L -l -Ĺ -ĺ -Ä» -ļ -Ľ -ľ -Ä¿ -Å€ -Å -Å‚ -Æš -Lj -È´ -É« -ɬ -É­ -Ḷ -ḷ -Ḹ -ḹ -Ḻ -ḻ -Ḽ -ḽ -M -m -ɱ -Ḿ -ḿ -á¹€ -á¹ -Ṃ -ṃ -N -n -Ñ -ñ -Ń -Å„ -Å… -ņ -Ň -ň -Æ -ɲ -Æž -È  -Ç‹ -Ǹ -ǹ -ȵ -ɳ -Ṅ -á¹… -Ṇ -ṇ -Ṉ -ṉ -Ṋ -ṋ -O -o -Ã’ -ò -Ó -ó -Ô -ô -Õ -õ -Ö -ö -Ø -ø -ÅŒ -Å -ÅŽ -Å -Å -Å‘ -ÆŸ -Æ  -Æ¡ -Ç‘ -Ç’ -Ǫ -Ç« -Ǭ -Ç­ -Ǿ -Ç¿ -ÈŒ -È -ÈŽ -È -Ȫ -È« -Ȭ -È­ -È® -ȯ -È° -ȱ -Ṍ -á¹ -Ṏ -á¹ -á¹ -ṑ -á¹’ -ṓ -Ọ -á» -Ỏ -á» -á» -ố -á»’ -ồ -á»” -ổ -á»– -á»— -Ộ -á»™ -Ớ -á»› -Ờ -á» -Ở -ở -á»  -ỡ -Ợ -ợ -P -p -Ƥ -Æ¥ -á¹” -ṕ -á¹– -á¹— -Q -q -Ê  -R -r -Å” -Å• -Å– -Å— -Ř -Å™ -È -È‘ -È’ -È“ -ɼ -ɽ -ɾ -Ṙ -á¹™ -Ṛ -á¹› -Ṝ -á¹ -Ṟ -ṟ -S -s -Åš -Å› -Åœ -Å -Åž -ÅŸ -Å  -Å¡ -Ș -È™ -Ê‚ -á¹  -ṡ -á¹¢ -á¹£ -Ṥ -á¹¥ -Ṧ -ṧ -Ṩ -ṩ -T -t -Å¢ -Å£ -Ť -Å¥ -Ŧ -ŧ -Æ« -Ƭ -Æ­ -Æ® -ʈ -Èš -È› -ȶ -Ṫ -ṫ -Ṭ -á¹­ -á¹® -ṯ -á¹° -á¹± -ẗ -U -u -Ù -ù -Ú -ú -Û -û -Ãœ -ü -Ũ -Å© -Ū -Å« -Ŭ -Å­ -Å® -ů -Å° -ű -Ų -ų -Ư -Æ° -Ç“ -Ç” -Ç• -Ç– -Ç— -ǘ -Ç™ -Çš -Ç› -Çœ -È” -È• -È– -È— -á¹² -á¹³ -á¹´ -á¹µ -Ṷ -á¹· -Ṹ -á¹¹ -Ṻ -á¹» -Ụ -ụ -Ủ -ủ -Ứ -ứ -Ừ -ừ -Ử -á»­ -á»® -ữ -á»° -á»± -V -v -Ʋ -Ê‹ -á¹¼ -á¹½ -á¹¾ -ṿ -W -w -Å´ -ŵ -Ẁ -Ạ-Ẃ -ẃ -Ẅ -ẅ -Ẇ -ẇ -Ẉ -ẉ -ẘ -X -x -Ẋ -ẋ -Ẍ -Ạ-Y -y -à -ý -ÿ -Ÿ -Ŷ -Å· -Ƴ -Æ´ -Ȳ -ȳ -Ẏ -Ạ-ẙ -Ỳ -ỳ -á»´ -ỵ -Ỷ -á»· -Ỹ -ỹ -Z -z -Ź -ź -Å» -ż -Ž -ž -Ƶ -ƶ -Ȥ -È¥ -Ê -Ê‘ -Ạ-ẑ -Ẓ -ẓ -Ẕ -ẕ - - diff --git a/docbook-xsl-1.75.2/common/hr.xml b/docbook-xsl-1.75.2/common/hr.xml deleted file mode 100644 index aaa2454..0000000 --- a/docbook-xsl-1.75.2/common/hr.xml +++ /dev/null @@ -1,1230 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Symbols -A -a -À -à -à -á - -â -à -ã -Ä -ä -Ã… -Ã¥ -Ä€ -Ä -Ä‚ -ă -Ä„ -Ä… -Ç -ÇŽ -Çž -ÇŸ -Ç  -Ç¡ -Ǻ -Ç» -È€ -È -È‚ -ȃ -Ȧ -ȧ -Ḁ -Ḡ-ẚ -Ạ -ạ -Ả -ả -Ấ -ấ -Ầ -ầ -Ẩ -ẩ -Ẫ -ẫ -Ậ -ậ -Ắ -ắ -Ằ -ằ -Ẳ -ẳ -Ẵ -ẵ -Ặ -ặ -B -b -Æ€ -Æ -É“ -Æ‚ -ƃ -Ḃ -ḃ -Ḅ -ḅ -Ḇ -ḇ -C -c -Ç -ç -Ć -ć -Ĉ -ĉ -ÄŠ -Ä‹ -ÄŒ -Ä -Ƈ -ƈ -É• -Ḉ -ḉ -D -d -ÄŽ -Ä -Ä -Ä‘ -ÆŠ -É— -Æ‹ -ÆŒ -Ç… -Dz -È¡ -É– -Ḋ -ḋ -Ḍ -Ḡ-Ḏ -Ḡ-Ḡ-ḑ -Ḓ -ḓ -E -e -È -è -É -é -Ê -ê -Ë -ë -Ä’ -Ä“ -Ä” -Ä• -Ä– -Ä— -Ę -Ä™ -Äš -Ä› -È„ -È… -Ȇ -ȇ -Ȩ -È© -Ḕ -ḕ -Ḗ -ḗ -Ḙ -ḙ -Ḛ -ḛ -Ḝ -Ḡ-Ẹ -ẹ -Ẻ -ẻ -Ẽ -ẽ -Ế -ế -Ề -á» -Ể -ể -Ễ -á»… -Ệ -ệ -F -f -Æ‘ -Æ’ -Ḟ -ḟ -G -g -Äœ -Ä -Äž -ÄŸ -Ä  -Ä¡ -Ä¢ -Ä£ -Æ“ -É  -Ǥ -Ç¥ -Ǧ -ǧ -Ç´ -ǵ -Ḡ -ḡ -H -h -Ĥ -Ä¥ -Ħ -ħ -Èž -ÈŸ -ɦ -Ḣ -ḣ -Ḥ -ḥ -Ḧ -ḧ -Ḩ -ḩ -Ḫ -ḫ -ẖ -I -i -ÃŒ -ì -à -í -ÃŽ -î -à -ï -Ĩ -Ä© -Ī -Ä« -Ĭ -Ä­ -Ä® -į -Ä° -Æ— -ɨ -Ç -Ç -Ȉ -ȉ -ÈŠ -È‹ -Ḭ -ḭ -Ḯ -ḯ -Ỉ -ỉ -Ị -ị -J -j -Ä´ -ĵ -Ç° -Ê -K -k -Ķ -Ä· -Ƙ -Æ™ -Ǩ -Ç© -Ḱ -ḱ -Ḳ -ḳ -Ḵ -ḵ -L -l -Ĺ -ĺ -Ä» -ļ -Ľ -ľ -Ä¿ -Å€ -Å -Å‚ -Æš -Lj -È´ -É« -ɬ -É­ -Ḷ -ḷ -Ḹ -ḹ -Ḻ -ḻ -Ḽ -ḽ -M -m -ɱ -Ḿ -ḿ -á¹€ -á¹ -Ṃ -ṃ -N -n -Ñ -ñ -Ń -Å„ -Å… -ņ -Ň -ň -Æ -ɲ -Æž -È  -Ç‹ -Ǹ -ǹ -ȵ -ɳ -Ṅ -á¹… -Ṇ -ṇ -Ṉ -ṉ -Ṋ -ṋ -O -o -Ã’ -ò -Ó -ó -Ô -ô -Õ -õ -Ö -ö -Ø -ø -ÅŒ -Å -ÅŽ -Å -Å -Å‘ -ÆŸ -Æ  -Æ¡ -Ç‘ -Ç’ -Ǫ -Ç« -Ǭ -Ç­ -Ǿ -Ç¿ -ÈŒ -È -ÈŽ -È -Ȫ -È« -Ȭ -È­ -È® -ȯ -È° -ȱ -Ṍ -á¹ -Ṏ -á¹ -á¹ -ṑ -á¹’ -ṓ -Ọ -á» -Ỏ -á» -á» -ố -á»’ -ồ -á»” -ổ -á»– -á»— -Ộ -á»™ -Ớ -á»› -Ờ -á» -Ở -ở -á»  -ỡ -Ợ -ợ -P -p -Ƥ -Æ¥ -á¹” -ṕ -á¹– -á¹— -Q -q -Ê  -R -r -Å” -Å• -Å– -Å— -Ř -Å™ -È -È‘ -È’ -È“ -ɼ -ɽ -ɾ -Ṙ -á¹™ -Ṛ -á¹› -Ṝ -á¹ -Ṟ -ṟ -S -s -Åš -Å› -Åœ -Å -Åž -ÅŸ -Å  -Å¡ -Ș -È™ -Ê‚ -á¹  -ṡ -á¹¢ -á¹£ -Ṥ -á¹¥ -Ṧ -ṧ -Ṩ -ṩ -T -t -Å¢ -Å£ -Ť -Å¥ -Ŧ -ŧ -Æ« -Ƭ -Æ­ -Æ® -ʈ -Èš -È› -ȶ -Ṫ -ṫ -Ṭ -á¹­ -á¹® -ṯ -á¹° -á¹± -ẗ -U -u -Ù -ù -Ú -ú -Û -û -Ãœ -ü -Ũ -Å© -Ū -Å« -Ŭ -Å­ -Å® -ů -Å° -ű -Ų -ų -Ư -Æ° -Ç“ -Ç” -Ç• -Ç– -Ç— -ǘ -Ç™ -Çš -Ç› -Çœ -È” -È• -È– -È— -á¹² -á¹³ -á¹´ -á¹µ -Ṷ -á¹· -Ṹ -á¹¹ -Ṻ -á¹» -Ụ -ụ -Ủ -ủ -Ứ -ứ -Ừ -ừ -Ử -á»­ -á»® -ữ -á»° -á»± -V -v -Ʋ -Ê‹ -á¹¼ -á¹½ -á¹¾ -ṿ -W -w -Å´ -ŵ -Ẁ -Ạ-Ẃ -ẃ -Ẅ -ẅ -Ẇ -ẇ -Ẉ -ẉ -ẘ -X -x -Ẋ -ẋ -Ẍ -Ạ-Y -y -à -ý -ÿ -Ÿ -Ŷ -Å· -Ƴ -Æ´ -Ȳ -ȳ -Ẏ -Ạ-ẙ -Ỳ -ỳ -á»´ -ỵ -Ỷ -á»· -Ỹ -ỹ -Z -z -Ź -ź -Å» -ż -Ž -ž -Ƶ -ƶ -Ȥ -È¥ -Ê -Ê‘ -Ạ-ẑ -Ẓ -ẓ -Ẕ -ẕ - - diff --git a/docbook-xsl-1.75.2/common/hu.xml b/docbook-xsl-1.75.2/common/hu.xml deleted file mode 100644 index 5f689b7..0000000 --- a/docbook-xsl-1.75.2/common/hu.xml +++ /dev/null @@ -1,1230 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Symbols -A -a -À -à -à -á - -â -à -ã -Ä -ä -Ã… -Ã¥ -Ä€ -Ä -Ä‚ -ă -Ä„ -Ä… -Ç -ÇŽ -Çž -ÇŸ -Ç  -Ç¡ -Ǻ -Ç» -È€ -È -È‚ -ȃ -Ȧ -ȧ -Ḁ -Ḡ-ẚ -Ạ -ạ -Ả -ả -Ấ -ấ -Ầ -ầ -Ẩ -ẩ -Ẫ -ẫ -Ậ -ậ -Ắ -ắ -Ằ -ằ -Ẳ -ẳ -Ẵ -ẵ -Ặ -ặ -B -b -Æ€ -Æ -É“ -Æ‚ -ƃ -Ḃ -ḃ -Ḅ -ḅ -Ḇ -ḇ -C -c -Ç -ç -Ć -ć -Ĉ -ĉ -ÄŠ -Ä‹ -ÄŒ -Ä -Ƈ -ƈ -É• -Ḉ -ḉ -D -d -ÄŽ -Ä -Ä -Ä‘ -ÆŠ -É— -Æ‹ -ÆŒ -Ç… -Dz -È¡ -É– -Ḋ -ḋ -Ḍ -Ḡ-Ḏ -Ḡ-Ḡ-ḑ -Ḓ -ḓ -E -e -È -è -É -é -Ê -ê -Ë -ë -Ä’ -Ä“ -Ä” -Ä• -Ä– -Ä— -Ę -Ä™ -Äš -Ä› -È„ -È… -Ȇ -ȇ -Ȩ -È© -Ḕ -ḕ -Ḗ -ḗ -Ḙ -ḙ -Ḛ -ḛ -Ḝ -Ḡ-Ẹ -ẹ -Ẻ -ẻ -Ẽ -ẽ -Ế -ế -Ề -á» -Ể -ể -Ễ -á»… -Ệ -ệ -F -f -Æ‘ -Æ’ -Ḟ -ḟ -G -g -Äœ -Ä -Äž -ÄŸ -Ä  -Ä¡ -Ä¢ -Ä£ -Æ“ -É  -Ǥ -Ç¥ -Ǧ -ǧ -Ç´ -ǵ -Ḡ -ḡ -H -h -Ĥ -Ä¥ -Ħ -ħ -Èž -ÈŸ -ɦ -Ḣ -ḣ -Ḥ -ḥ -Ḧ -ḧ -Ḩ -ḩ -Ḫ -ḫ -ẖ -I -i -ÃŒ -ì -à -í -ÃŽ -î -à -ï -Ĩ -Ä© -Ī -Ä« -Ĭ -Ä­ -Ä® -į -Ä° -Æ— -ɨ -Ç -Ç -Ȉ -ȉ -ÈŠ -È‹ -Ḭ -ḭ -Ḯ -ḯ -Ỉ -ỉ -Ị -ị -J -j -Ä´ -ĵ -Ç° -Ê -K -k -Ķ -Ä· -Ƙ -Æ™ -Ǩ -Ç© -Ḱ -ḱ -Ḳ -ḳ -Ḵ -ḵ -L -l -Ĺ -ĺ -Ä» -ļ -Ľ -ľ -Ä¿ -Å€ -Å -Å‚ -Æš -Lj -È´ -É« -ɬ -É­ -Ḷ -ḷ -Ḹ -ḹ -Ḻ -ḻ -Ḽ -ḽ -M -m -ɱ -Ḿ -ḿ -á¹€ -á¹ -Ṃ -ṃ -N -n -Ñ -ñ -Ń -Å„ -Å… -ņ -Ň -ň -Æ -ɲ -Æž -È  -Ç‹ -Ǹ -ǹ -ȵ -ɳ -Ṅ -á¹… -Ṇ -ṇ -Ṉ -ṉ -Ṋ -ṋ -O -o -Ã’ -ò -Ó -ó -Ô -ô -Õ -õ -Ö -ö -Ø -ø -ÅŒ -Å -ÅŽ -Å -Å -Å‘ -ÆŸ -Æ  -Æ¡ -Ç‘ -Ç’ -Ǫ -Ç« -Ǭ -Ç­ -Ǿ -Ç¿ -ÈŒ -È -ÈŽ -È -Ȫ -È« -Ȭ -È­ -È® -ȯ -È° -ȱ -Ṍ -á¹ -Ṏ -á¹ -á¹ -ṑ -á¹’ -ṓ -Ọ -á» -Ỏ -á» -á» -ố -á»’ -ồ -á»” -ổ -á»– -á»— -Ộ -á»™ -Ớ -á»› -Ờ -á» -Ở -ở -á»  -ỡ -Ợ -ợ -P -p -Ƥ -Æ¥ -á¹” -ṕ -á¹– -á¹— -Q -q -Ê  -R -r -Å” -Å• -Å– -Å— -Ř -Å™ -È -È‘ -È’ -È“ -ɼ -ɽ -ɾ -Ṙ -á¹™ -Ṛ -á¹› -Ṝ -á¹ -Ṟ -ṟ -S -s -Åš -Å› -Åœ -Å -Åž -ÅŸ -Å  -Å¡ -Ș -È™ -Ê‚ -á¹  -ṡ -á¹¢ -á¹£ -Ṥ -á¹¥ -Ṧ -ṧ -Ṩ -ṩ -T -t -Å¢ -Å£ -Ť -Å¥ -Ŧ -ŧ -Æ« -Ƭ -Æ­ -Æ® -ʈ -Èš -È› -ȶ -Ṫ -ṫ -Ṭ -á¹­ -á¹® -ṯ -á¹° -á¹± -ẗ -U -u -Ù -ù -Ú -ú -Û -û -Ãœ -ü -Ũ -Å© -Ū -Å« -Ŭ -Å­ -Å® -ů -Å° -ű -Ų -ų -Ư -Æ° -Ç“ -Ç” -Ç• -Ç– -Ç— -ǘ -Ç™ -Çš -Ç› -Çœ -È” -È• -È– -È— -á¹² -á¹³ -á¹´ -á¹µ -Ṷ -á¹· -Ṹ -á¹¹ -Ṻ -á¹» -Ụ -ụ -Ủ -ủ -Ứ -ứ -Ừ -ừ -Ử -á»­ -á»® -ữ -á»° -á»± -V -v -Ʋ -Ê‹ -á¹¼ -á¹½ -á¹¾ -ṿ -W -w -Å´ -ŵ -Ẁ -Ạ-Ẃ -ẃ -Ẅ -ẅ -Ẇ -ẇ -Ẉ -ẉ -ẘ -X -x -Ẋ -ẋ -Ẍ -Ạ-Y -y -à -ý -ÿ -Ÿ -Ŷ -Å· -Ƴ -Æ´ -Ȳ -ȳ -Ẏ -Ạ-ẙ -Ỳ -ỳ -á»´ -ỵ -Ỷ -á»· -Ỹ -ỹ -Z -z -Ź -ź -Å» -ż -Ž -ž -Ƶ -ƶ -Ȥ -È¥ -Ê -Ê‘ -Ạ-ẑ -Ẓ -ẓ -Ẕ -ẕ - - diff --git a/docbook-xsl-1.75.2/common/id.xml b/docbook-xsl-1.75.2/common/id.xml deleted file mode 100644 index 8a8d2f2..0000000 --- a/docbook-xsl-1.75.2/common/id.xml +++ /dev/null @@ -1,1230 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Symbols -A -a -À -à -à -á - -â -à -ã -Ä -ä -Ã… -Ã¥ -Ä€ -Ä -Ä‚ -ă -Ä„ -Ä… -Ç -ÇŽ -Çž -ÇŸ -Ç  -Ç¡ -Ǻ -Ç» -È€ -È -È‚ -ȃ -Ȧ -ȧ -Ḁ -Ḡ-ẚ -Ạ -ạ -Ả -ả -Ấ -ấ -Ầ -ầ -Ẩ -ẩ -Ẫ -ẫ -Ậ -ậ -Ắ -ắ -Ằ -ằ -Ẳ -ẳ -Ẵ -ẵ -Ặ -ặ -B -b -Æ€ -Æ -É“ -Æ‚ -ƃ -Ḃ -ḃ -Ḅ -ḅ -Ḇ -ḇ -C -c -Ç -ç -Ć -ć -Ĉ -ĉ -ÄŠ -Ä‹ -ÄŒ -Ä -Ƈ -ƈ -É• -Ḉ -ḉ -D -d -ÄŽ -Ä -Ä -Ä‘ -ÆŠ -É— -Æ‹ -ÆŒ -Ç… -Dz -È¡ -É– -Ḋ -ḋ -Ḍ -Ḡ-Ḏ -Ḡ-Ḡ-ḑ -Ḓ -ḓ -E -e -È -è -É -é -Ê -ê -Ë -ë -Ä’ -Ä“ -Ä” -Ä• -Ä– -Ä— -Ę -Ä™ -Äš -Ä› -È„ -È… -Ȇ -ȇ -Ȩ -È© -Ḕ -ḕ -Ḗ -ḗ -Ḙ -ḙ -Ḛ -ḛ -Ḝ -Ḡ-Ẹ -ẹ -Ẻ -ẻ -Ẽ -ẽ -Ế -ế -Ề -á» -Ể -ể -Ễ -á»… -Ệ -ệ -F -f -Æ‘ -Æ’ -Ḟ -ḟ -G -g -Äœ -Ä -Äž -ÄŸ -Ä  -Ä¡ -Ä¢ -Ä£ -Æ“ -É  -Ǥ -Ç¥ -Ǧ -ǧ -Ç´ -ǵ -Ḡ -ḡ -H -h -Ĥ -Ä¥ -Ħ -ħ -Èž -ÈŸ -ɦ -Ḣ -ḣ -Ḥ -ḥ -Ḧ -ḧ -Ḩ -ḩ -Ḫ -ḫ -ẖ -I -i -ÃŒ -ì -à -í -ÃŽ -î -à -ï -Ĩ -Ä© -Ī -Ä« -Ĭ -Ä­ -Ä® -į -Ä° -Æ— -ɨ -Ç -Ç -Ȉ -ȉ -ÈŠ -È‹ -Ḭ -ḭ -Ḯ -ḯ -Ỉ -ỉ -Ị -ị -J -j -Ä´ -ĵ -Ç° -Ê -K -k -Ķ -Ä· -Ƙ -Æ™ -Ǩ -Ç© -Ḱ -ḱ -Ḳ -ḳ -Ḵ -ḵ -L -l -Ĺ -ĺ -Ä» -ļ -Ľ -ľ -Ä¿ -Å€ -Å -Å‚ -Æš -Lj -È´ -É« -ɬ -É­ -Ḷ -ḷ -Ḹ -ḹ -Ḻ -ḻ -Ḽ -ḽ -M -m -ɱ -Ḿ -ḿ -á¹€ -á¹ -Ṃ -ṃ -N -n -Ñ -ñ -Ń -Å„ -Å… -ņ -Ň -ň -Æ -ɲ -Æž -È  -Ç‹ -Ǹ -ǹ -ȵ -ɳ -Ṅ -á¹… -Ṇ -ṇ -Ṉ -ṉ -Ṋ -ṋ -O -o -Ã’ -ò -Ó -ó -Ô -ô -Õ -õ -Ö -ö -Ø -ø -ÅŒ -Å -ÅŽ -Å -Å -Å‘ -ÆŸ -Æ  -Æ¡ -Ç‘ -Ç’ -Ǫ -Ç« -Ǭ -Ç­ -Ǿ -Ç¿ -ÈŒ -È -ÈŽ -È -Ȫ -È« -Ȭ -È­ -È® -ȯ -È° -ȱ -Ṍ -á¹ -Ṏ -á¹ -á¹ -ṑ -á¹’ -ṓ -Ọ -á» -Ỏ -á» -á» -ố -á»’ -ồ -á»” -ổ -á»– -á»— -Ộ -á»™ -Ớ -á»› -Ờ -á» -Ở -ở -á»  -ỡ -Ợ -ợ -P -p -Ƥ -Æ¥ -á¹” -ṕ -á¹– -á¹— -Q -q -Ê  -R -r -Å” -Å• -Å– -Å— -Ř -Å™ -È -È‘ -È’ -È“ -ɼ -ɽ -ɾ -Ṙ -á¹™ -Ṛ -á¹› -Ṝ -á¹ -Ṟ -ṟ -S -s -Åš -Å› -Åœ -Å -Åž -ÅŸ -Å  -Å¡ -Ș -È™ -Ê‚ -á¹  -ṡ -á¹¢ -á¹£ -Ṥ -á¹¥ -Ṧ -ṧ -Ṩ -ṩ -T -t -Å¢ -Å£ -Ť -Å¥ -Ŧ -ŧ -Æ« -Ƭ -Æ­ -Æ® -ʈ -Èš -È› -ȶ -Ṫ -ṫ -Ṭ -á¹­ -á¹® -ṯ -á¹° -á¹± -ẗ -U -u -Ù -ù -Ú -ú -Û -û -Ãœ -ü -Ũ -Å© -Ū -Å« -Ŭ -Å­ -Å® -ů -Å° -ű -Ų -ų -Ư -Æ° -Ç“ -Ç” -Ç• -Ç– -Ç— -ǘ -Ç™ -Çš -Ç› -Çœ -È” -È• -È– -È— -á¹² -á¹³ -á¹´ -á¹µ -Ṷ -á¹· -Ṹ -á¹¹ -Ṻ -á¹» -Ụ -ụ -Ủ -ủ -Ứ -ứ -Ừ -ừ -Ử -á»­ -á»® -ữ -á»° -á»± -V -v -Ʋ -Ê‹ -á¹¼ -á¹½ -á¹¾ -ṿ -W -w -Å´ -ŵ -Ẁ -Ạ-Ẃ -ẃ -Ẅ -ẅ -Ẇ -ẇ -Ẉ -ẉ -ẘ -X -x -Ẋ -ẋ -Ẍ -Ạ-Y -y -à -ý -ÿ -Ÿ -Ŷ -Å· -Ƴ -Æ´ -Ȳ -ȳ -Ẏ -Ạ-ẙ -Ỳ -ỳ -á»´ -ỵ -Ỷ -á»· -Ỹ -ỹ -Z -z -Ź -ź -Å» -ż -Ž -ž -Ƶ -ƶ -Ȥ -È¥ -Ê -Ê‘ -Ạ-ẑ -Ẓ -ẓ -Ẕ -ẕ - - diff --git a/docbook-xsl-1.75.2/common/insertfile.xsl b/docbook-xsl-1.75.2/common/insertfile.xsl deleted file mode 100644 index 66bcf41..0000000 --- a/docbook-xsl-1.75.2/common/insertfile.xsl +++ /dev/null @@ -1,111 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/common/is.xml b/docbook-xsl-1.75.2/common/is.xml deleted file mode 100644 index 8563bc7..0000000 --- a/docbook-xsl-1.75.2/common/is.xml +++ /dev/null @@ -1,673 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -tákn -A -a -à -á -B -b -D -d -Ä -ð -E -e -É -é -F -f -G -g -H -h -I -i -à -í -J -j -K -k -L -l -M -m -N -n -O -o -Ó -ó -P -p -R -r -S -s -T -t -U -u -Ú -ú -V -v -X -x -Y -y -à -ý -Þ -þ -Æ -æ -Ö -ö - - diff --git a/docbook-xsl-1.75.2/common/it.xml b/docbook-xsl-1.75.2/common/it.xml deleted file mode 100644 index 23a5492..0000000 --- a/docbook-xsl-1.75.2/common/it.xml +++ /dev/null @@ -1,1230 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Simboli -A -a -À -à -à -á - -â -à -ã -Ä -ä -Ã… -Ã¥ -Ä€ -Ä -Ä‚ -ă -Ä„ -Ä… -Ç -ÇŽ -Çž -ÇŸ -Ç  -Ç¡ -Ǻ -Ç» -È€ -È -È‚ -ȃ -Ȧ -ȧ -Ḁ -Ḡ-ẚ -Ạ -ạ -Ả -ả -Ấ -ấ -Ầ -ầ -Ẩ -ẩ -Ẫ -ẫ -Ậ -ậ -Ắ -ắ -Ằ -ằ -Ẳ -ẳ -Ẵ -ẵ -Ặ -ặ -B -b -Æ€ -Æ -É“ -Æ‚ -ƃ -Ḃ -ḃ -Ḅ -ḅ -Ḇ -ḇ -C -c -Ç -ç -Ć -ć -Ĉ -ĉ -ÄŠ -Ä‹ -ÄŒ -Ä -Ƈ -ƈ -É• -Ḉ -ḉ -D -d -ÄŽ -Ä -Ä -Ä‘ -ÆŠ -É— -Æ‹ -ÆŒ -Ç… -Dz -È¡ -É– -Ḋ -ḋ -Ḍ -Ḡ-Ḏ -Ḡ-Ḡ-ḑ -Ḓ -ḓ -E -e -È -è -É -é -Ê -ê -Ë -ë -Ä’ -Ä“ -Ä” -Ä• -Ä– -Ä— -Ę -Ä™ -Äš -Ä› -È„ -È… -Ȇ -ȇ -Ȩ -È© -Ḕ -ḕ -Ḗ -ḗ -Ḙ -ḙ -Ḛ -ḛ -Ḝ -Ḡ-Ẹ -ẹ -Ẻ -ẻ -Ẽ -ẽ -Ế -ế -Ề -á» -Ể -ể -Ễ -á»… -Ệ -ệ -F -f -Æ‘ -Æ’ -Ḟ -ḟ -G -g -Äœ -Ä -Äž -ÄŸ -Ä  -Ä¡ -Ä¢ -Ä£ -Æ“ -É  -Ǥ -Ç¥ -Ǧ -ǧ -Ç´ -ǵ -Ḡ -ḡ -H -h -Ĥ -Ä¥ -Ħ -ħ -Èž -ÈŸ -ɦ -Ḣ -ḣ -Ḥ -ḥ -Ḧ -ḧ -Ḩ -ḩ -Ḫ -ḫ -ẖ -I -i -ÃŒ -ì -à -í -ÃŽ -î -à -ï -Ĩ -Ä© -Ī -Ä« -Ĭ -Ä­ -Ä® -į -Ä° -Æ— -ɨ -Ç -Ç -Ȉ -ȉ -ÈŠ -È‹ -Ḭ -ḭ -Ḯ -ḯ -Ỉ -ỉ -Ị -ị -J -j -Ä´ -ĵ -Ç° -Ê -K -k -Ķ -Ä· -Ƙ -Æ™ -Ǩ -Ç© -Ḱ -ḱ -Ḳ -ḳ -Ḵ -ḵ -L -l -Ĺ -ĺ -Ä» -ļ -Ľ -ľ -Ä¿ -Å€ -Å -Å‚ -Æš -Lj -È´ -É« -ɬ -É­ -Ḷ -ḷ -Ḹ -ḹ -Ḻ -ḻ -Ḽ -ḽ -M -m -ɱ -Ḿ -ḿ -á¹€ -á¹ -Ṃ -ṃ -N -n -Ñ -ñ -Ń -Å„ -Å… -ņ -Ň -ň -Æ -ɲ -Æž -È  -Ç‹ -Ǹ -ǹ -ȵ -ɳ -Ṅ -á¹… -Ṇ -ṇ -Ṉ -ṉ -Ṋ -ṋ -O -o -Ã’ -ò -Ó -ó -Ô -ô -Õ -õ -Ö -ö -Ø -ø -ÅŒ -Å -ÅŽ -Å -Å -Å‘ -ÆŸ -Æ  -Æ¡ -Ç‘ -Ç’ -Ǫ -Ç« -Ǭ -Ç­ -Ǿ -Ç¿ -ÈŒ -È -ÈŽ -È -Ȫ -È« -Ȭ -È­ -È® -ȯ -È° -ȱ -Ṍ -á¹ -Ṏ -á¹ -á¹ -ṑ -á¹’ -ṓ -Ọ -á» -Ỏ -á» -á» -ố -á»’ -ồ -á»” -ổ -á»– -á»— -Ộ -á»™ -Ớ -á»› -Ờ -á» -Ở -ở -á»  -ỡ -Ợ -ợ -P -p -Ƥ -Æ¥ -á¹” -ṕ -á¹– -á¹— -Q -q -Ê  -R -r -Å” -Å• -Å– -Å— -Ř -Å™ -È -È‘ -È’ -È“ -ɼ -ɽ -ɾ -Ṙ -á¹™ -Ṛ -á¹› -Ṝ -á¹ -Ṟ -ṟ -S -s -Åš -Å› -Åœ -Å -Åž -ÅŸ -Å  -Å¡ -Ș -È™ -Ê‚ -á¹  -ṡ -á¹¢ -á¹£ -Ṥ -á¹¥ -Ṧ -ṧ -Ṩ -ṩ -T -t -Å¢ -Å£ -Ť -Å¥ -Ŧ -ŧ -Æ« -Ƭ -Æ­ -Æ® -ʈ -Èš -È› -ȶ -Ṫ -ṫ -Ṭ -á¹­ -á¹® -ṯ -á¹° -á¹± -ẗ -U -u -Ù -ù -Ú -ú -Û -û -Ãœ -ü -Ũ -Å© -Ū -Å« -Ŭ -Å­ -Å® -ů -Å° -ű -Ų -ų -Ư -Æ° -Ç“ -Ç” -Ç• -Ç– -Ç— -ǘ -Ç™ -Çš -Ç› -Çœ -È” -È• -È– -È— -á¹² -á¹³ -á¹´ -á¹µ -Ṷ -á¹· -Ṹ -á¹¹ -Ṻ -á¹» -Ụ -ụ -Ủ -ủ -Ứ -ứ -Ừ -ừ -Ử -á»­ -á»® -ữ -á»° -á»± -V -v -Ʋ -Ê‹ -á¹¼ -á¹½ -á¹¾ -ṿ -W -w -Å´ -ŵ -Ẁ -Ạ-Ẃ -ẃ -Ẅ -ẅ -Ẇ -ẇ -Ẉ -ẉ -ẘ -X -x -Ẋ -ẋ -Ẍ -Ạ-Y -y -à -ý -ÿ -Ÿ -Ŷ -Å· -Ƴ -Æ´ -Ȳ -ȳ -Ẏ -Ạ-ẙ -Ỳ -ỳ -á»´ -ỵ -Ỷ -á»· -Ỹ -ỹ -Z -z -Ź -ź -Å» -ż -Ž -ž -Ƶ -ƶ -Ȥ -È¥ -Ê -Ê‘ -Ạ-ẑ -Ẓ -ẓ -Ẕ -ẕ - - diff --git a/docbook-xsl-1.75.2/common/ja.xml b/docbook-xsl-1.75.2/common/ja.xml deleted file mode 100644 index 5234792..0000000 --- a/docbook-xsl-1.75.2/common/ja.xml +++ /dev/null @@ -1,1230 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Symbols -A -a -À -à -à -á - -â -à -ã -Ä -ä -Ã… -Ã¥ -Ä€ -Ä -Ä‚ -ă -Ä„ -Ä… -Ç -ÇŽ -Çž -ÇŸ -Ç  -Ç¡ -Ǻ -Ç» -È€ -È -È‚ -ȃ -Ȧ -ȧ -Ḁ -Ḡ-ẚ -Ạ -ạ -Ả -ả -Ấ -ấ -Ầ -ầ -Ẩ -ẩ -Ẫ -ẫ -Ậ -ậ -Ắ -ắ -Ằ -ằ -Ẳ -ẳ -Ẵ -ẵ -Ặ -ặ -B -b -Æ€ -Æ -É“ -Æ‚ -ƃ -Ḃ -ḃ -Ḅ -ḅ -Ḇ -ḇ -C -c -Ç -ç -Ć -ć -Ĉ -ĉ -ÄŠ -Ä‹ -ÄŒ -Ä -Ƈ -ƈ -É• -Ḉ -ḉ -D -d -ÄŽ -Ä -Ä -Ä‘ -ÆŠ -É— -Æ‹ -ÆŒ -Ç… -Dz -È¡ -É– -Ḋ -ḋ -Ḍ -Ḡ-Ḏ -Ḡ-Ḡ-ḑ -Ḓ -ḓ -E -e -È -è -É -é -Ê -ê -Ë -ë -Ä’ -Ä“ -Ä” -Ä• -Ä– -Ä— -Ę -Ä™ -Äš -Ä› -È„ -È… -Ȇ -ȇ -Ȩ -È© -Ḕ -ḕ -Ḗ -ḗ -Ḙ -ḙ -Ḛ -ḛ -Ḝ -Ḡ-Ẹ -ẹ -Ẻ -ẻ -Ẽ -ẽ -Ế -ế -Ề -á» -Ể -ể -Ễ -á»… -Ệ -ệ -F -f -Æ‘ -Æ’ -Ḟ -ḟ -G -g -Äœ -Ä -Äž -ÄŸ -Ä  -Ä¡ -Ä¢ -Ä£ -Æ“ -É  -Ǥ -Ç¥ -Ǧ -ǧ -Ç´ -ǵ -Ḡ -ḡ -H -h -Ĥ -Ä¥ -Ħ -ħ -Èž -ÈŸ -ɦ -Ḣ -ḣ -Ḥ -ḥ -Ḧ -ḧ -Ḩ -ḩ -Ḫ -ḫ -ẖ -I -i -ÃŒ -ì -à -í -ÃŽ -î -à -ï -Ĩ -Ä© -Ī -Ä« -Ĭ -Ä­ -Ä® -į -Ä° -Æ— -ɨ -Ç -Ç -Ȉ -ȉ -ÈŠ -È‹ -Ḭ -ḭ -Ḯ -ḯ -Ỉ -ỉ -Ị -ị -J -j -Ä´ -ĵ -Ç° -Ê -K -k -Ķ -Ä· -Ƙ -Æ™ -Ǩ -Ç© -Ḱ -ḱ -Ḳ -ḳ -Ḵ -ḵ -L -l -Ĺ -ĺ -Ä» -ļ -Ľ -ľ -Ä¿ -Å€ -Å -Å‚ -Æš -Lj -È´ -É« -ɬ -É­ -Ḷ -ḷ -Ḹ -ḹ -Ḻ -ḻ -Ḽ -ḽ -M -m -ɱ -Ḿ -ḿ -á¹€ -á¹ -Ṃ -ṃ -N -n -Ñ -ñ -Ń -Å„ -Å… -ņ -Ň -ň -Æ -ɲ -Æž -È  -Ç‹ -Ǹ -ǹ -ȵ -ɳ -Ṅ -á¹… -Ṇ -ṇ -Ṉ -ṉ -Ṋ -ṋ -O -o -Ã’ -ò -Ó -ó -Ô -ô -Õ -õ -Ö -ö -Ø -ø -ÅŒ -Å -ÅŽ -Å -Å -Å‘ -ÆŸ -Æ  -Æ¡ -Ç‘ -Ç’ -Ǫ -Ç« -Ǭ -Ç­ -Ǿ -Ç¿ -ÈŒ -È -ÈŽ -È -Ȫ -È« -Ȭ -È­ -È® -ȯ -È° -ȱ -Ṍ -á¹ -Ṏ -á¹ -á¹ -ṑ -á¹’ -ṓ -Ọ -á» -Ỏ -á» -á» -ố -á»’ -ồ -á»” -ổ -á»– -á»— -Ộ -á»™ -Ớ -á»› -Ờ -á» -Ở -ở -á»  -ỡ -Ợ -ợ -P -p -Ƥ -Æ¥ -á¹” -ṕ -á¹– -á¹— -Q -q -Ê  -R -r -Å” -Å• -Å– -Å— -Ř -Å™ -È -È‘ -È’ -È“ -ɼ -ɽ -ɾ -Ṙ -á¹™ -Ṛ -á¹› -Ṝ -á¹ -Ṟ -ṟ -S -s -Åš -Å› -Åœ -Å -Åž -ÅŸ -Å  -Å¡ -Ș -È™ -Ê‚ -á¹  -ṡ -á¹¢ -á¹£ -Ṥ -á¹¥ -Ṧ -ṧ -Ṩ -ṩ -T -t -Å¢ -Å£ -Ť -Å¥ -Ŧ -ŧ -Æ« -Ƭ -Æ­ -Æ® -ʈ -Èš -È› -ȶ -Ṫ -ṫ -Ṭ -á¹­ -á¹® -ṯ -á¹° -á¹± -ẗ -U -u -Ù -ù -Ú -ú -Û -û -Ãœ -ü -Ũ -Å© -Ū -Å« -Ŭ -Å­ -Å® -ů -Å° -ű -Ų -ų -Ư -Æ° -Ç“ -Ç” -Ç• -Ç– -Ç— -ǘ -Ç™ -Çš -Ç› -Çœ -È” -È• -È– -È— -á¹² -á¹³ -á¹´ -á¹µ -Ṷ -á¹· -Ṹ -á¹¹ -Ṻ -á¹» -Ụ -ụ -Ủ -ủ -Ứ -ứ -Ừ -ừ -Ử -á»­ -á»® -ữ -á»° -á»± -V -v -Ʋ -Ê‹ -á¹¼ -á¹½ -á¹¾ -ṿ -W -w -Å´ -ŵ -Ẁ -Ạ-Ẃ -ẃ -Ẅ -ẅ -Ẇ -ẇ -Ẉ -ẉ -ẘ -X -x -Ẋ -ẋ -Ẍ -Ạ-Y -y -à -ý -ÿ -Ÿ -Ŷ -Å· -Ƴ -Æ´ -Ȳ -ȳ -Ẏ -Ạ-ẙ -Ỳ -ỳ -á»´ -ỵ -Ỷ -á»· -Ỹ -ỹ -Z -z -Ź -ź -Å» -ż -Ž -ž -Ƶ -ƶ -Ȥ -È¥ -Ê -Ê‘ -Ạ-ẑ -Ẓ -ẓ -Ẕ -ẕ - - diff --git a/docbook-xsl-1.75.2/common/kn.xml b/docbook-xsl-1.75.2/common/kn.xml deleted file mode 100644 index 342fbc3..0000000 --- a/docbook-xsl-1.75.2/common/kn.xml +++ /dev/null @@ -1,1230 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Symbols -A -a -À -à -à -á - -â -à -ã -Ä -ä -Ã… -Ã¥ -Ä€ -Ä -Ä‚ -ă -Ä„ -Ä… -Ç -ÇŽ -Çž -ÇŸ -Ç  -Ç¡ -Ǻ -Ç» -È€ -È -È‚ -ȃ -Ȧ -ȧ -Ḁ -Ḡ-ẚ -Ạ -ạ -Ả -ả -Ấ -ấ -Ầ -ầ -Ẩ -ẩ -Ẫ -ẫ -Ậ -ậ -Ắ -ắ -Ằ -ằ -Ẳ -ẳ -Ẵ -ẵ -Ặ -ặ -B -b -Æ€ -Æ -É“ -Æ‚ -ƃ -Ḃ -ḃ -Ḅ -ḅ -Ḇ -ḇ -C -c -Ç -ç -Ć -ć -Ĉ -ĉ -ÄŠ -Ä‹ -ÄŒ -Ä -Ƈ -ƈ -É• -Ḉ -ḉ -D -d -ÄŽ -Ä -Ä -Ä‘ -ÆŠ -É— -Æ‹ -ÆŒ -Ç… -Dz -È¡ -É– -Ḋ -ḋ -Ḍ -Ḡ-Ḏ -Ḡ-Ḡ-ḑ -Ḓ -ḓ -E -e -È -è -É -é -Ê -ê -Ë -ë -Ä’ -Ä“ -Ä” -Ä• -Ä– -Ä— -Ę -Ä™ -Äš -Ä› -È„ -È… -Ȇ -ȇ -Ȩ -È© -Ḕ -ḕ -Ḗ -ḗ -Ḙ -ḙ -Ḛ -ḛ -Ḝ -Ḡ-Ẹ -ẹ -Ẻ -ẻ -Ẽ -ẽ -Ế -ế -Ề -á» -Ể -ể -Ễ -á»… -Ệ -ệ -F -f -Æ‘ -Æ’ -Ḟ -ḟ -G -g -Äœ -Ä -Äž -ÄŸ -Ä  -Ä¡ -Ä¢ -Ä£ -Æ“ -É  -Ǥ -Ç¥ -Ǧ -ǧ -Ç´ -ǵ -Ḡ -ḡ -H -h -Ĥ -Ä¥ -Ħ -ħ -Èž -ÈŸ -ɦ -Ḣ -ḣ -Ḥ -ḥ -Ḧ -ḧ -Ḩ -ḩ -Ḫ -ḫ -ẖ -I -i -ÃŒ -ì -à -í -ÃŽ -î -à -ï -Ĩ -Ä© -Ī -Ä« -Ĭ -Ä­ -Ä® -į -Ä° -Æ— -ɨ -Ç -Ç -Ȉ -ȉ -ÈŠ -È‹ -Ḭ -ḭ -Ḯ -ḯ -Ỉ -ỉ -Ị -ị -J -j -Ä´ -ĵ -Ç° -Ê -K -k -Ķ -Ä· -Ƙ -Æ™ -Ǩ -Ç© -Ḱ -ḱ -Ḳ -ḳ -Ḵ -ḵ -L -l -Ĺ -ĺ -Ä» -ļ -Ľ -ľ -Ä¿ -Å€ -Å -Å‚ -Æš -Lj -È´ -É« -ɬ -É­ -Ḷ -ḷ -Ḹ -ḹ -Ḻ -ḻ -Ḽ -ḽ -M -m -ɱ -Ḿ -ḿ -á¹€ -á¹ -Ṃ -ṃ -N -n -Ñ -ñ -Ń -Å„ -Å… -ņ -Ň -ň -Æ -ɲ -Æž -È  -Ç‹ -Ǹ -ǹ -ȵ -ɳ -Ṅ -á¹… -Ṇ -ṇ -Ṉ -ṉ -Ṋ -ṋ -O -o -Ã’ -ò -Ó -ó -Ô -ô -Õ -õ -Ö -ö -Ø -ø -ÅŒ -Å -ÅŽ -Å -Å -Å‘ -ÆŸ -Æ  -Æ¡ -Ç‘ -Ç’ -Ǫ -Ç« -Ǭ -Ç­ -Ǿ -Ç¿ -ÈŒ -È -ÈŽ -È -Ȫ -È« -Ȭ -È­ -È® -ȯ -È° -ȱ -Ṍ -á¹ -Ṏ -á¹ -á¹ -ṑ -á¹’ -ṓ -Ọ -á» -Ỏ -á» -á» -ố -á»’ -ồ -á»” -ổ -á»– -á»— -Ộ -á»™ -Ớ -á»› -Ờ -á» -Ở -ở -á»  -ỡ -Ợ -ợ -P -p -Ƥ -Æ¥ -á¹” -ṕ -á¹– -á¹— -Q -q -Ê  -R -r -Å” -Å• -Å– -Å— -Ř -Å™ -È -È‘ -È’ -È“ -ɼ -ɽ -ɾ -Ṙ -á¹™ -Ṛ -á¹› -Ṝ -á¹ -Ṟ -ṟ -S -s -Åš -Å› -Åœ -Å -Åž -ÅŸ -Å  -Å¡ -Ș -È™ -Ê‚ -á¹  -ṡ -á¹¢ -á¹£ -Ṥ -á¹¥ -Ṧ -ṧ -Ṩ -ṩ -T -t -Å¢ -Å£ -Ť -Å¥ -Ŧ -ŧ -Æ« -Ƭ -Æ­ -Æ® -ʈ -Èš -È› -ȶ -Ṫ -ṫ -Ṭ -á¹­ -á¹® -ṯ -á¹° -á¹± -ẗ -U -u -Ù -ù -Ú -ú -Û -û -Ãœ -ü -Ũ -Å© -Ū -Å« -Ŭ -Å­ -Å® -ů -Å° -ű -Ų -ų -Ư -Æ° -Ç“ -Ç” -Ç• -Ç– -Ç— -ǘ -Ç™ -Çš -Ç› -Çœ -È” -È• -È– -È— -á¹² -á¹³ -á¹´ -á¹µ -Ṷ -á¹· -Ṹ -á¹¹ -Ṻ -á¹» -Ụ -ụ -Ủ -ủ -Ứ -ứ -Ừ -ừ -Ử -á»­ -á»® -ữ -á»° -á»± -V -v -Ʋ -Ê‹ -á¹¼ -á¹½ -á¹¾ -ṿ -W -w -Å´ -ŵ -Ẁ -Ạ-Ẃ -ẃ -Ẅ -ẅ -Ẇ -ẇ -Ẉ -ẉ -ẘ -X -x -Ẋ -ẋ -Ẍ -Ạ-Y -y -à -ý -ÿ -Ÿ -Ŷ -Å· -Ƴ -Æ´ -Ȳ -ȳ -Ẏ -Ạ-ẙ -Ỳ -ỳ -á»´ -ỵ -Ỷ -á»· -Ỹ -ỹ -Z -z -Ź -ź -Å» -ż -Ž -ž -Ƶ -ƶ -Ȥ -È¥ -Ê -Ê‘ -Ạ-ẑ -Ẓ -ẓ -Ẕ -ẕ - - diff --git a/docbook-xsl-1.75.2/common/ko.xml b/docbook-xsl-1.75.2/common/ko.xml deleted file mode 100644 index d96b42d..0000000 --- a/docbook-xsl-1.75.2/common/ko.xml +++ /dev/null @@ -1,1230 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Symbols -A -a -À -à -à -á - -â -à -ã -Ä -ä -Ã… -Ã¥ -Ä€ -Ä -Ä‚ -ă -Ä„ -Ä… -Ç -ÇŽ -Çž -ÇŸ -Ç  -Ç¡ -Ǻ -Ç» -È€ -È -È‚ -ȃ -Ȧ -ȧ -Ḁ -Ḡ-ẚ -Ạ -ạ -Ả -ả -Ấ -ấ -Ầ -ầ -Ẩ -ẩ -Ẫ -ẫ -Ậ -ậ -Ắ -ắ -Ằ -ằ -Ẳ -ẳ -Ẵ -ẵ -Ặ -ặ -B -b -Æ€ -Æ -É“ -Æ‚ -ƃ -Ḃ -ḃ -Ḅ -ḅ -Ḇ -ḇ -C -c -Ç -ç -Ć -ć -Ĉ -ĉ -ÄŠ -Ä‹ -ÄŒ -Ä -Ƈ -ƈ -É• -Ḉ -ḉ -D -d -ÄŽ -Ä -Ä -Ä‘ -ÆŠ -É— -Æ‹ -ÆŒ -Ç… -Dz -È¡ -É– -Ḋ -ḋ -Ḍ -Ḡ-Ḏ -Ḡ-Ḡ-ḑ -Ḓ -ḓ -E -e -È -è -É -é -Ê -ê -Ë -ë -Ä’ -Ä“ -Ä” -Ä• -Ä– -Ä— -Ę -Ä™ -Äš -Ä› -È„ -È… -Ȇ -ȇ -Ȩ -È© -Ḕ -ḕ -Ḗ -ḗ -Ḙ -ḙ -Ḛ -ḛ -Ḝ -Ḡ-Ẹ -ẹ -Ẻ -ẻ -Ẽ -ẽ -Ế -ế -Ề -á» -Ể -ể -Ễ -á»… -Ệ -ệ -F -f -Æ‘ -Æ’ -Ḟ -ḟ -G -g -Äœ -Ä -Äž -ÄŸ -Ä  -Ä¡ -Ä¢ -Ä£ -Æ“ -É  -Ǥ -Ç¥ -Ǧ -ǧ -Ç´ -ǵ -Ḡ -ḡ -H -h -Ĥ -Ä¥ -Ħ -ħ -Èž -ÈŸ -ɦ -Ḣ -ḣ -Ḥ -ḥ -Ḧ -ḧ -Ḩ -ḩ -Ḫ -ḫ -ẖ -I -i -ÃŒ -ì -à -í -ÃŽ -î -à -ï -Ĩ -Ä© -Ī -Ä« -Ĭ -Ä­ -Ä® -į -Ä° -Æ— -ɨ -Ç -Ç -Ȉ -ȉ -ÈŠ -È‹ -Ḭ -ḭ -Ḯ -ḯ -Ỉ -ỉ -Ị -ị -J -j -Ä´ -ĵ -Ç° -Ê -K -k -Ķ -Ä· -Ƙ -Æ™ -Ǩ -Ç© -Ḱ -ḱ -Ḳ -ḳ -Ḵ -ḵ -L -l -Ĺ -ĺ -Ä» -ļ -Ľ -ľ -Ä¿ -Å€ -Å -Å‚ -Æš -Lj -È´ -É« -ɬ -É­ -Ḷ -ḷ -Ḹ -ḹ -Ḻ -ḻ -Ḽ -ḽ -M -m -ɱ -Ḿ -ḿ -á¹€ -á¹ -Ṃ -ṃ -N -n -Ñ -ñ -Ń -Å„ -Å… -ņ -Ň -ň -Æ -ɲ -Æž -È  -Ç‹ -Ǹ -ǹ -ȵ -ɳ -Ṅ -á¹… -Ṇ -ṇ -Ṉ -ṉ -Ṋ -ṋ -O -o -Ã’ -ò -Ó -ó -Ô -ô -Õ -õ -Ö -ö -Ø -ø -ÅŒ -Å -ÅŽ -Å -Å -Å‘ -ÆŸ -Æ  -Æ¡ -Ç‘ -Ç’ -Ǫ -Ç« -Ǭ -Ç­ -Ǿ -Ç¿ -ÈŒ -È -ÈŽ -È -Ȫ -È« -Ȭ -È­ -È® -ȯ -È° -ȱ -Ṍ -á¹ -Ṏ -á¹ -á¹ -ṑ -á¹’ -ṓ -Ọ -á» -Ỏ -á» -á» -ố -á»’ -ồ -á»” -ổ -á»– -á»— -Ộ -á»™ -Ớ -á»› -Ờ -á» -Ở -ở -á»  -ỡ -Ợ -ợ -P -p -Ƥ -Æ¥ -á¹” -ṕ -á¹– -á¹— -Q -q -Ê  -R -r -Å” -Å• -Å– -Å— -Ř -Å™ -È -È‘ -È’ -È“ -ɼ -ɽ -ɾ -Ṙ -á¹™ -Ṛ -á¹› -Ṝ -á¹ -Ṟ -ṟ -S -s -Åš -Å› -Åœ -Å -Åž -ÅŸ -Å  -Å¡ -Ș -È™ -Ê‚ -á¹  -ṡ -á¹¢ -á¹£ -Ṥ -á¹¥ -Ṧ -ṧ -Ṩ -ṩ -T -t -Å¢ -Å£ -Ť -Å¥ -Ŧ -ŧ -Æ« -Ƭ -Æ­ -Æ® -ʈ -Èš -È› -ȶ -Ṫ -ṫ -Ṭ -á¹­ -á¹® -ṯ -á¹° -á¹± -ẗ -U -u -Ù -ù -Ú -ú -Û -û -Ãœ -ü -Ũ -Å© -Ū -Å« -Ŭ -Å­ -Å® -ů -Å° -ű -Ų -ų -Ư -Æ° -Ç“ -Ç” -Ç• -Ç– -Ç— -ǘ -Ç™ -Çš -Ç› -Çœ -È” -È• -È– -È— -á¹² -á¹³ -á¹´ -á¹µ -Ṷ -á¹· -Ṹ -á¹¹ -Ṻ -á¹» -Ụ -ụ -Ủ -ủ -Ứ -ứ -Ừ -ừ -Ử -á»­ -á»® -ữ -á»° -á»± -V -v -Ʋ -Ê‹ -á¹¼ -á¹½ -á¹¾ -ṿ -W -w -Å´ -ŵ -Ẁ -Ạ-Ẃ -ẃ -Ẅ -ẅ -Ẇ -ẇ -Ẉ -ẉ -ẘ -X -x -Ẋ -ẋ -Ẍ -Ạ-Y -y -à -ý -ÿ -Ÿ -Ŷ -Å· -Ƴ -Æ´ -Ȳ -ȳ -Ẏ -Ạ-ẙ -Ỳ -ỳ -á»´ -ỵ -Ỷ -á»· -Ỹ -ỹ -Z -z -Ź -ź -Å» -ż -Ž -ž -Ƶ -ƶ -Ȥ -È¥ -Ê -Ê‘ -Ạ-ẑ -Ẓ -ẓ -Ẕ -ẕ - - diff --git a/docbook-xsl-1.75.2/common/ky.xml b/docbook-xsl-1.75.2/common/ky.xml deleted file mode 100644 index 57d387a..0000000 --- a/docbook-xsl-1.75.2/common/ky.xml +++ /dev/null @@ -1,733 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Символдор -A -a -B -b -C -c -D -d -E -e -F -f -G -g -H -h -I -i -J -j -K -k -L -l -M -m -N -n -O -o -P -p -Q -q -R -r -S -s -T -t -U -u -V -v -W -w -X -x -Y -y -Z -z -Ð -а -Б -б -Ð’ -в -Г -г -Д -д -Е -е -Ð -Ñ‘ -Ж -ж -З -з -И -и -Й -й -К -к -Л -л -Ðœ -м -Ð -н -Ò¢ -Ò£ -О -о -Ó¨ -Ó© -П -п -Р -Ñ€ -С -Ñ -Т -Ñ‚ -У -у -Ò® -Ò¯ -Ф -Ñ„ -Ð¥ -Ñ… -Ц -ц -Ч -ч -Ш -ш -Щ -щ -Ъ -ÑŠ -Ы -Ñ‹ -Ь -ÑŒ -Э -Ñ -Ю -ÑŽ -Я -Ñ - - diff --git a/docbook-xsl-1.75.2/common/l10n.dtd b/docbook-xsl-1.75.2/common/l10n.dtd deleted file mode 100644 index 1d6f836..0000000 --- a/docbook-xsl-1.75.2/common/l10n.dtd +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/common/l10n.xml b/docbook-xsl-1.75.2/common/l10n.xml deleted file mode 100644 index 4cdeb6c..0000000 --- a/docbook-xsl-1.75.2/common/l10n.xml +++ /dev/null @@ -1,131 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -]> - -⁡ -&am; -&ar; -&az; -&bg; -&bn; -&bs; -&ca; -&cs; -&cy; -&da; -&de; -⪙ -&en; -&eo; -&es; -&et; -&eu; -&fa; -&fi; -&fr; -&ga; -≷ -&gu; -&he; -&hi; -&hr; -&hu; -&id; -⁢ -&ja; -&kn; -&ko; -&la; -&lit; -&lv; -&mn; -&nl; -&nn; -&nb; -∨ -&pa; -&pl; -&pt; -&pt_br; -&ro; -&ru; -&sk; -&sl; -&sq; -&sr; -&sr_Latn; -&sv; -&ta; -&th; -&tl; -&tr; -&uk; -&vi; -&xh; -&zh; -&zh_cn; -&zh_tw; - diff --git a/docbook-xsl-1.75.2/common/l10n.xsl b/docbook-xsl-1.75.2/common/l10n.xsl deleted file mode 100644 index dbadf45..0000000 --- a/docbook-xsl-1.75.2/common/l10n.xsl +++ /dev/null @@ -1,497 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - _ - - - - - - - - - - - - - - - - - - - - No localization exists for " - - " or " - - ". Using default " - - ". - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No " - - " localization of " - - " exists - - - . - - - ; using "en". - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - bullet - - - - - - - - - - - - - - - - - - No " - - " localization of dingbat - - exists; using "en". - - - - - - - - - - startquote - - - - - - endquote - - - - - - nestedstartquote - - - - - - nestedendquote - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No " - - " localization exists. - - - - - - - - - - No context named " - - " exists in the " - - " localization. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No template for " - - " (or any of its leaves) exists -in the context named " - - " in the " - - " localization. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - 0 - - - - - diff --git a/docbook-xsl-1.75.2/common/la.xml b/docbook-xsl-1.75.2/common/la.xml deleted file mode 100644 index 7ca09a9..0000000 --- a/docbook-xsl-1.75.2/common/la.xml +++ /dev/null @@ -1,1230 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Symbols -A -a -À -à -à -á - -â -à -ã -Ä -ä -Ã… -Ã¥ -Ä€ -Ä -Ä‚ -ă -Ä„ -Ä… -Ç -ÇŽ -Çž -ÇŸ -Ç  -Ç¡ -Ǻ -Ç» -È€ -È -È‚ -ȃ -Ȧ -ȧ -Ḁ -Ḡ-ẚ -Ạ -ạ -Ả -ả -Ấ -ấ -Ầ -ầ -Ẩ -ẩ -Ẫ -ẫ -Ậ -ậ -Ắ -ắ -Ằ -ằ -Ẳ -ẳ -Ẵ -ẵ -Ặ -ặ -B -b -Æ€ -Æ -É“ -Æ‚ -ƃ -Ḃ -ḃ -Ḅ -ḅ -Ḇ -ḇ -C -c -Ç -ç -Ć -ć -Ĉ -ĉ -ÄŠ -Ä‹ -ÄŒ -Ä -Ƈ -ƈ -É• -Ḉ -ḉ -D -d -ÄŽ -Ä -Ä -Ä‘ -ÆŠ -É— -Æ‹ -ÆŒ -Ç… -Dz -È¡ -É– -Ḋ -ḋ -Ḍ -Ḡ-Ḏ -Ḡ-Ḡ-ḑ -Ḓ -ḓ -E -e -È -è -É -é -Ê -ê -Ë -ë -Ä’ -Ä“ -Ä” -Ä• -Ä– -Ä— -Ę -Ä™ -Äš -Ä› -È„ -È… -Ȇ -ȇ -Ȩ -È© -Ḕ -ḕ -Ḗ -ḗ -Ḙ -ḙ -Ḛ -ḛ -Ḝ -Ḡ-Ẹ -ẹ -Ẻ -ẻ -Ẽ -ẽ -Ế -ế -Ề -á» -Ể -ể -Ễ -á»… -Ệ -ệ -F -f -Æ‘ -Æ’ -Ḟ -ḟ -G -g -Äœ -Ä -Äž -ÄŸ -Ä  -Ä¡ -Ä¢ -Ä£ -Æ“ -É  -Ǥ -Ç¥ -Ǧ -ǧ -Ç´ -ǵ -Ḡ -ḡ -H -h -Ĥ -Ä¥ -Ħ -ħ -Èž -ÈŸ -ɦ -Ḣ -ḣ -Ḥ -ḥ -Ḧ -ḧ -Ḩ -ḩ -Ḫ -ḫ -ẖ -I -i -ÃŒ -ì -à -í -ÃŽ -î -à -ï -Ĩ -Ä© -Ī -Ä« -Ĭ -Ä­ -Ä® -į -Ä° -Æ— -ɨ -Ç -Ç -Ȉ -ȉ -ÈŠ -È‹ -Ḭ -ḭ -Ḯ -ḯ -Ỉ -ỉ -Ị -ị -J -j -Ä´ -ĵ -Ç° -Ê -K -k -Ķ -Ä· -Ƙ -Æ™ -Ǩ -Ç© -Ḱ -ḱ -Ḳ -ḳ -Ḵ -ḵ -L -l -Ĺ -ĺ -Ä» -ļ -Ľ -ľ -Ä¿ -Å€ -Å -Å‚ -Æš -Lj -È´ -É« -ɬ -É­ -Ḷ -ḷ -Ḹ -ḹ -Ḻ -ḻ -Ḽ -ḽ -M -m -ɱ -Ḿ -ḿ -á¹€ -á¹ -Ṃ -ṃ -N -n -Ñ -ñ -Ń -Å„ -Å… -ņ -Ň -ň -Æ -ɲ -Æž -È  -Ç‹ -Ǹ -ǹ -ȵ -ɳ -Ṅ -á¹… -Ṇ -ṇ -Ṉ -ṉ -Ṋ -ṋ -O -o -Ã’ -ò -Ó -ó -Ô -ô -Õ -õ -Ö -ö -Ø -ø -ÅŒ -Å -ÅŽ -Å -Å -Å‘ -ÆŸ -Æ  -Æ¡ -Ç‘ -Ç’ -Ǫ -Ç« -Ǭ -Ç­ -Ǿ -Ç¿ -ÈŒ -È -ÈŽ -È -Ȫ -È« -Ȭ -È­ -È® -ȯ -È° -ȱ -Ṍ -á¹ -Ṏ -á¹ -á¹ -ṑ -á¹’ -ṓ -Ọ -á» -Ỏ -á» -á» -ố -á»’ -ồ -á»” -ổ -á»– -á»— -Ộ -á»™ -Ớ -á»› -Ờ -á» -Ở -ở -á»  -ỡ -Ợ -ợ -P -p -Ƥ -Æ¥ -á¹” -ṕ -á¹– -á¹— -Q -q -Ê  -R -r -Å” -Å• -Å– -Å— -Ř -Å™ -È -È‘ -È’ -È“ -ɼ -ɽ -ɾ -Ṙ -á¹™ -Ṛ -á¹› -Ṝ -á¹ -Ṟ -ṟ -S -s -Åš -Å› -Åœ -Å -Åž -ÅŸ -Å  -Å¡ -Ș -È™ -Ê‚ -á¹  -ṡ -á¹¢ -á¹£ -Ṥ -á¹¥ -Ṧ -ṧ -Ṩ -ṩ -T -t -Å¢ -Å£ -Ť -Å¥ -Ŧ -ŧ -Æ« -Ƭ -Æ­ -Æ® -ʈ -Èš -È› -ȶ -Ṫ -ṫ -Ṭ -á¹­ -á¹® -ṯ -á¹° -á¹± -ẗ -U -u -Ù -ù -Ú -ú -Û -û -Ãœ -ü -Ũ -Å© -Ū -Å« -Ŭ -Å­ -Å® -ů -Å° -ű -Ų -ų -Ư -Æ° -Ç“ -Ç” -Ç• -Ç– -Ç— -ǘ -Ç™ -Çš -Ç› -Çœ -È” -È• -È– -È— -á¹² -á¹³ -á¹´ -á¹µ -Ṷ -á¹· -Ṹ -á¹¹ -Ṻ -á¹» -Ụ -ụ -Ủ -ủ -Ứ -ứ -Ừ -ừ -Ử -á»­ -á»® -ữ -á»° -á»± -V -v -Ʋ -Ê‹ -á¹¼ -á¹½ -á¹¾ -ṿ -W -w -Å´ -ŵ -Ẁ -Ạ-Ẃ -ẃ -Ẅ -ẅ -Ẇ -ẇ -Ẉ -ẉ -ẘ -X -x -Ẋ -ẋ -Ẍ -Ạ-Y -y -à -ý -ÿ -Ÿ -Ŷ -Å· -Ƴ -Æ´ -Ȳ -ȳ -Ẏ -Ạ-ẙ -Ỳ -ỳ -á»´ -ỵ -Ỷ -á»· -Ỹ -ỹ -Z -z -Ź -ź -Å» -ż -Ž -ž -Ƶ -ƶ -Ȥ -È¥ -Ê -Ê‘ -Ạ-ẑ -Ẓ -ẓ -Ẕ -ẕ - - diff --git a/docbook-xsl-1.75.2/common/labels.xsl b/docbook-xsl-1.75.2/common/labels.xsl deleted file mode 100644 index 8fe0145..0000000 --- a/docbook-xsl-1.75.2/common/labels.xsl +++ /dev/null @@ -1,890 +0,0 @@ - - - - - - - - - - -Provides access to element labels - -Processing an element in the -label.markup mode produces the -element label. -Trailing punctuation is not added to the label. - - - - - - . - - - - - - - Request for label of unexpected element: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - label.markup: this can't happen! - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -   - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - a - i - A - I - - - - Unexpected numeration: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - - - - -Returns true if $section should be labelled - -Returns true if the specified section should be labelled. -By default, this template returns zero unless -the section level is less than or equal to the value of the -$section.autolabel.max.depth parameter, in -which case it returns -$section.autolabel. -Custom stylesheets may override it to get more selective behavior. - - - - - - - - - - - - - - - 1 - - - - - - - - - - - 1 - - - - - - - - - - - - - - - - - - Unexpected .autolabel value: - ; using default. - - - - - - - - - -Returns format for autolabel parameters - -Returns format passed as parameter if non zero. Supported - format are 'arabic' or '1', 'loweralpha' or 'a', 'lowerroman' or 'i', - 'upperlapha' or 'A', 'upperroman' or 'I', 'arabicindic' or '١'. - If its not one of these then - returns the default format. - - - - - - diff --git a/docbook-xsl-1.75.2/common/lt.xml b/docbook-xsl-1.75.2/common/lt.xml deleted file mode 100644 index dfe64ae..0000000 --- a/docbook-xsl-1.75.2/common/lt.xml +++ /dev/null @@ -1,679 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Simboliai -A -a -Ä„ -Ä… -B -b -C -c -ÄŒ -Ä -D -d -E -e -Ę -Ä™ -Ä– -Ä— -F -f -G -g -H -h -I -i -Ä® -į -Y -y -J -j -K -k -L -l -M -m -N -n -O -o -P -p -R -r -S -s -Å  -Å¡ -T -t -U -u -Ų -ų -Ū -Å« -V -v -Z -z -Ž -ž -Q -q -W -w -X -x - - diff --git a/docbook-xsl-1.75.2/common/lv.xml b/docbook-xsl-1.75.2/common/lv.xml deleted file mode 100644 index 55e9b52..0000000 --- a/docbook-xsl-1.75.2/common/lv.xml +++ /dev/null @@ -1,1230 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Symbols -A -a -À -à -à -á - -â -à -ã -Ä -ä -Ã… -Ã¥ -Ä€ -Ä -Ä‚ -ă -Ä„ -Ä… -Ç -ÇŽ -Çž -ÇŸ -Ç  -Ç¡ -Ǻ -Ç» -È€ -È -È‚ -ȃ -Ȧ -ȧ -Ḁ -Ḡ-ẚ -Ạ -ạ -Ả -ả -Ấ -ấ -Ầ -ầ -Ẩ -ẩ -Ẫ -ẫ -Ậ -ậ -Ắ -ắ -Ằ -ằ -Ẳ -ẳ -Ẵ -ẵ -Ặ -ặ -B -b -Æ€ -Æ -É“ -Æ‚ -ƃ -Ḃ -ḃ -Ḅ -ḅ -Ḇ -ḇ -C -c -Ç -ç -Ć -ć -Ĉ -ĉ -ÄŠ -Ä‹ -ÄŒ -Ä -Ƈ -ƈ -É• -Ḉ -ḉ -D -d -ÄŽ -Ä -Ä -Ä‘ -ÆŠ -É— -Æ‹ -ÆŒ -Ç… -Dz -È¡ -É– -Ḋ -ḋ -Ḍ -Ḡ-Ḏ -Ḡ-Ḡ-ḑ -Ḓ -ḓ -E -e -È -è -É -é -Ê -ê -Ë -ë -Ä’ -Ä“ -Ä” -Ä• -Ä– -Ä— -Ę -Ä™ -Äš -Ä› -È„ -È… -Ȇ -ȇ -Ȩ -È© -Ḕ -ḕ -Ḗ -ḗ -Ḙ -ḙ -Ḛ -ḛ -Ḝ -Ḡ-Ẹ -ẹ -Ẻ -ẻ -Ẽ -ẽ -Ế -ế -Ề -á» -Ể -ể -Ễ -á»… -Ệ -ệ -F -f -Æ‘ -Æ’ -Ḟ -ḟ -G -g -Äœ -Ä -Äž -ÄŸ -Ä  -Ä¡ -Ä¢ -Ä£ -Æ“ -É  -Ǥ -Ç¥ -Ǧ -ǧ -Ç´ -ǵ -Ḡ -ḡ -H -h -Ĥ -Ä¥ -Ħ -ħ -Èž -ÈŸ -ɦ -Ḣ -ḣ -Ḥ -ḥ -Ḧ -ḧ -Ḩ -ḩ -Ḫ -ḫ -ẖ -I -i -ÃŒ -ì -à -í -ÃŽ -î -à -ï -Ĩ -Ä© -Ī -Ä« -Ĭ -Ä­ -Ä® -į -Ä° -Æ— -ɨ -Ç -Ç -Ȉ -ȉ -ÈŠ -È‹ -Ḭ -ḭ -Ḯ -ḯ -Ỉ -ỉ -Ị -ị -J -j -Ä´ -ĵ -Ç° -Ê -K -k -Ķ -Ä· -Ƙ -Æ™ -Ǩ -Ç© -Ḱ -ḱ -Ḳ -ḳ -Ḵ -ḵ -L -l -Ĺ -ĺ -Ä» -ļ -Ľ -ľ -Ä¿ -Å€ -Å -Å‚ -Æš -Lj -È´ -É« -ɬ -É­ -Ḷ -ḷ -Ḹ -ḹ -Ḻ -ḻ -Ḽ -ḽ -M -m -ɱ -Ḿ -ḿ -á¹€ -á¹ -Ṃ -ṃ -N -n -Ñ -ñ -Ń -Å„ -Å… -ņ -Ň -ň -Æ -ɲ -Æž -È  -Ç‹ -Ǹ -ǹ -ȵ -ɳ -Ṅ -á¹… -Ṇ -ṇ -Ṉ -ṉ -Ṋ -ṋ -O -o -Ã’ -ò -Ó -ó -Ô -ô -Õ -õ -Ö -ö -Ø -ø -ÅŒ -Å -ÅŽ -Å -Å -Å‘ -ÆŸ -Æ  -Æ¡ -Ç‘ -Ç’ -Ǫ -Ç« -Ǭ -Ç­ -Ǿ -Ç¿ -ÈŒ -È -ÈŽ -È -Ȫ -È« -Ȭ -È­ -È® -ȯ -È° -ȱ -Ṍ -á¹ -Ṏ -á¹ -á¹ -ṑ -á¹’ -ṓ -Ọ -á» -Ỏ -á» -á» -ố -á»’ -ồ -á»” -ổ -á»– -á»— -Ộ -á»™ -Ớ -á»› -Ờ -á» -Ở -ở -á»  -ỡ -Ợ -ợ -P -p -Ƥ -Æ¥ -á¹” -ṕ -á¹– -á¹— -Q -q -Ê  -R -r -Å” -Å• -Å– -Å— -Ř -Å™ -È -È‘ -È’ -È“ -ɼ -ɽ -ɾ -Ṙ -á¹™ -Ṛ -á¹› -Ṝ -á¹ -Ṟ -ṟ -S -s -Åš -Å› -Åœ -Å -Åž -ÅŸ -Å  -Å¡ -Ș -È™ -Ê‚ -á¹  -ṡ -á¹¢ -á¹£ -Ṥ -á¹¥ -Ṧ -ṧ -Ṩ -ṩ -T -t -Å¢ -Å£ -Ť -Å¥ -Ŧ -ŧ -Æ« -Ƭ -Æ­ -Æ® -ʈ -Èš -È› -ȶ -Ṫ -ṫ -Ṭ -á¹­ -á¹® -ṯ -á¹° -á¹± -ẗ -U -u -Ù -ù -Ú -ú -Û -û -Ãœ -ü -Ũ -Å© -Ū -Å« -Ŭ -Å­ -Å® -ů -Å° -ű -Ų -ų -Ư -Æ° -Ç“ -Ç” -Ç• -Ç– -Ç— -ǘ -Ç™ -Çš -Ç› -Çœ -È” -È• -È– -È— -á¹² -á¹³ -á¹´ -á¹µ -Ṷ -á¹· -Ṹ -á¹¹ -Ṻ -á¹» -Ụ -ụ -Ủ -ủ -Ứ -ứ -Ừ -ừ -Ử -á»­ -á»® -ữ -á»° -á»± -V -v -Ʋ -Ê‹ -á¹¼ -á¹½ -á¹¾ -ṿ -W -w -Å´ -ŵ -Ẁ -Ạ-Ẃ -ẃ -Ẅ -ẅ -Ẇ -ẇ -Ẉ -ẉ -ẘ -X -x -Ẋ -ẋ -Ẍ -Ạ-Y -y -à -ý -ÿ -Ÿ -Ŷ -Å· -Ƴ -Æ´ -Ȳ -ȳ -Ẏ -Ạ-ẙ -Ỳ -ỳ -á»´ -ỵ -Ỷ -á»· -Ỹ -ỹ -Z -z -Ź -ź -Å» -ż -Ž -ž -Ƶ -ƶ -Ȥ -È¥ -Ê -Ê‘ -Ạ-ẑ -Ẓ -ẓ -Ẕ -ẕ - - diff --git a/docbook-xsl-1.75.2/common/mn.xml b/docbook-xsl-1.75.2/common/mn.xml deleted file mode 100644 index f328e42..0000000 --- a/docbook-xsl-1.75.2/common/mn.xml +++ /dev/null @@ -1,731 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -ТÑмдÑгтүүд -A -a -B -b -C -c -D -d -E -e -F -f -G -g -H -h -I -i -J -j -K -k -L -l -M -m -N -n -O -o -P -p -Q -q -R -r -S -s -T -t -U -u -V -v -W -w -X -x -Y -y -Z -z -Ð -а -Б -б -Ð’ -в -Г -г -Д -д -Е -е -Ð -Ñ‘ -Ж -ж -З -з -И -и -Й -й -К -к -Л -л -Ðœ -м -Ð -н -О -о -Ó¨ -Ó© -П -п -Р -Ñ€ -С -Ñ -Т -Ñ‚ -У -у -Ò® -Ò¯ -Ф -Ñ„ -Ð¥ -Ñ… -Ц -ц -Ч -ч -Ш -ш -Щ -щ -Ъ -ÑŠ -Ы -Ñ‹ -Ь -ÑŒ -Э -Ñ -Ю -ÑŽ -Я -Ñ - - diff --git a/docbook-xsl-1.75.2/common/nb.xml b/docbook-xsl-1.75.2/common/nb.xml deleted file mode 100644 index b014820..0000000 --- a/docbook-xsl-1.75.2/common/nb.xml +++ /dev/null @@ -1,1230 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Symbols -A -a -À -à -à -á - -â -à -ã -Ä -ä -Ã… -Ã¥ -Ä€ -Ä -Ä‚ -ă -Ä„ -Ä… -Ç -ÇŽ -Çž -ÇŸ -Ç  -Ç¡ -Ǻ -Ç» -È€ -È -È‚ -ȃ -Ȧ -ȧ -Ḁ -Ḡ-ẚ -Ạ -ạ -Ả -ả -Ấ -ấ -Ầ -ầ -Ẩ -ẩ -Ẫ -ẫ -Ậ -ậ -Ắ -ắ -Ằ -ằ -Ẳ -ẳ -Ẵ -ẵ -Ặ -ặ -B -b -Æ€ -Æ -É“ -Æ‚ -ƃ -Ḃ -ḃ -Ḅ -ḅ -Ḇ -ḇ -C -c -Ç -ç -Ć -ć -Ĉ -ĉ -ÄŠ -Ä‹ -ÄŒ -Ä -Ƈ -ƈ -É• -Ḉ -ḉ -D -d -ÄŽ -Ä -Ä -Ä‘ -ÆŠ -É— -Æ‹ -ÆŒ -Ç… -Dz -È¡ -É– -Ḋ -ḋ -Ḍ -Ḡ-Ḏ -Ḡ-Ḡ-ḑ -Ḓ -ḓ -E -e -È -è -É -é -Ê -ê -Ë -ë -Ä’ -Ä“ -Ä” -Ä• -Ä– -Ä— -Ę -Ä™ -Äš -Ä› -È„ -È… -Ȇ -ȇ -Ȩ -È© -Ḕ -ḕ -Ḗ -ḗ -Ḙ -ḙ -Ḛ -ḛ -Ḝ -Ḡ-Ẹ -ẹ -Ẻ -ẻ -Ẽ -ẽ -Ế -ế -Ề -á» -Ể -ể -Ễ -á»… -Ệ -ệ -F -f -Æ‘ -Æ’ -Ḟ -ḟ -G -g -Äœ -Ä -Äž -ÄŸ -Ä  -Ä¡ -Ä¢ -Ä£ -Æ“ -É  -Ǥ -Ç¥ -Ǧ -ǧ -Ç´ -ǵ -Ḡ -ḡ -H -h -Ĥ -Ä¥ -Ħ -ħ -Èž -ÈŸ -ɦ -Ḣ -ḣ -Ḥ -ḥ -Ḧ -ḧ -Ḩ -ḩ -Ḫ -ḫ -ẖ -I -i -ÃŒ -ì -à -í -ÃŽ -î -à -ï -Ĩ -Ä© -Ī -Ä« -Ĭ -Ä­ -Ä® -į -Ä° -Æ— -ɨ -Ç -Ç -Ȉ -ȉ -ÈŠ -È‹ -Ḭ -ḭ -Ḯ -ḯ -Ỉ -ỉ -Ị -ị -J -j -Ä´ -ĵ -Ç° -Ê -K -k -Ķ -Ä· -Ƙ -Æ™ -Ǩ -Ç© -Ḱ -ḱ -Ḳ -ḳ -Ḵ -ḵ -L -l -Ĺ -ĺ -Ä» -ļ -Ľ -ľ -Ä¿ -Å€ -Å -Å‚ -Æš -Lj -È´ -É« -ɬ -É­ -Ḷ -ḷ -Ḹ -ḹ -Ḻ -ḻ -Ḽ -ḽ -M -m -ɱ -Ḿ -ḿ -á¹€ -á¹ -Ṃ -ṃ -N -n -Ñ -ñ -Ń -Å„ -Å… -ņ -Ň -ň -Æ -ɲ -Æž -È  -Ç‹ -Ǹ -ǹ -ȵ -ɳ -Ṅ -á¹… -Ṇ -ṇ -Ṉ -ṉ -Ṋ -ṋ -O -o -Ã’ -ò -Ó -ó -Ô -ô -Õ -õ -Ö -ö -Ø -ø -ÅŒ -Å -ÅŽ -Å -Å -Å‘ -ÆŸ -Æ  -Æ¡ -Ç‘ -Ç’ -Ǫ -Ç« -Ǭ -Ç­ -Ǿ -Ç¿ -ÈŒ -È -ÈŽ -È -Ȫ -È« -Ȭ -È­ -È® -ȯ -È° -ȱ -Ṍ -á¹ -Ṏ -á¹ -á¹ -ṑ -á¹’ -ṓ -Ọ -á» -Ỏ -á» -á» -ố -á»’ -ồ -á»” -ổ -á»– -á»— -Ộ -á»™ -Ớ -á»› -Ờ -á» -Ở -ở -á»  -ỡ -Ợ -ợ -P -p -Ƥ -Æ¥ -á¹” -ṕ -á¹– -á¹— -Q -q -Ê  -R -r -Å” -Å• -Å– -Å— -Ř -Å™ -È -È‘ -È’ -È“ -ɼ -ɽ -ɾ -Ṙ -á¹™ -Ṛ -á¹› -Ṝ -á¹ -Ṟ -ṟ -S -s -Åš -Å› -Åœ -Å -Åž -ÅŸ -Å  -Å¡ -Ș -È™ -Ê‚ -á¹  -ṡ -á¹¢ -á¹£ -Ṥ -á¹¥ -Ṧ -ṧ -Ṩ -ṩ -T -t -Å¢ -Å£ -Ť -Å¥ -Ŧ -ŧ -Æ« -Ƭ -Æ­ -Æ® -ʈ -Èš -È› -ȶ -Ṫ -ṫ -Ṭ -á¹­ -á¹® -ṯ -á¹° -á¹± -ẗ -U -u -Ù -ù -Ú -ú -Û -û -Ãœ -ü -Ũ -Å© -Ū -Å« -Ŭ -Å­ -Å® -ů -Å° -ű -Ų -ų -Ư -Æ° -Ç“ -Ç” -Ç• -Ç– -Ç— -ǘ -Ç™ -Çš -Ç› -Çœ -È” -È• -È– -È— -á¹² -á¹³ -á¹´ -á¹µ -Ṷ -á¹· -Ṹ -á¹¹ -Ṻ -á¹» -Ụ -ụ -Ủ -ủ -Ứ -ứ -Ừ -ừ -Ử -á»­ -á»® -ữ -á»° -á»± -V -v -Ʋ -Ê‹ -á¹¼ -á¹½ -á¹¾ -ṿ -W -w -Å´ -ŵ -Ẁ -Ạ-Ẃ -ẃ -Ẅ -ẅ -Ẇ -ẇ -Ẉ -ẉ -ẘ -X -x -Ẋ -ẋ -Ẍ -Ạ-Y -y -à -ý -ÿ -Ÿ -Ŷ -Å· -Ƴ -Æ´ -Ȳ -ȳ -Ẏ -Ạ-ẙ -Ỳ -ỳ -á»´ -ỵ -Ỷ -á»· -Ỹ -ỹ -Z -z -Ź -ź -Å» -ż -Ž -ž -Ƶ -ƶ -Ȥ -È¥ -Ê -Ê‘ -Ạ-ẑ -Ẓ -ẓ -Ẕ -ẕ - - diff --git a/docbook-xsl-1.75.2/common/nl.xml b/docbook-xsl-1.75.2/common/nl.xml deleted file mode 100644 index 42966e8..0000000 --- a/docbook-xsl-1.75.2/common/nl.xml +++ /dev/null @@ -1,1230 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Symbols -A -a -À -à -à -á - -â -à -ã -Ä -ä -Ã… -Ã¥ -Ä€ -Ä -Ä‚ -ă -Ä„ -Ä… -Ç -ÇŽ -Çž -ÇŸ -Ç  -Ç¡ -Ǻ -Ç» -È€ -È -È‚ -ȃ -Ȧ -ȧ -Ḁ -Ḡ-ẚ -Ạ -ạ -Ả -ả -Ấ -ấ -Ầ -ầ -Ẩ -ẩ -Ẫ -ẫ -Ậ -ậ -Ắ -ắ -Ằ -ằ -Ẳ -ẳ -Ẵ -ẵ -Ặ -ặ -B -b -Æ€ -Æ -É“ -Æ‚ -ƃ -Ḃ -ḃ -Ḅ -ḅ -Ḇ -ḇ -C -c -Ç -ç -Ć -ć -Ĉ -ĉ -ÄŠ -Ä‹ -ÄŒ -Ä -Ƈ -ƈ -É• -Ḉ -ḉ -D -d -ÄŽ -Ä -Ä -Ä‘ -ÆŠ -É— -Æ‹ -ÆŒ -Ç… -Dz -È¡ -É– -Ḋ -ḋ -Ḍ -Ḡ-Ḏ -Ḡ-Ḡ-ḑ -Ḓ -ḓ -E -e -È -è -É -é -Ê -ê -Ë -ë -Ä’ -Ä“ -Ä” -Ä• -Ä– -Ä— -Ę -Ä™ -Äš -Ä› -È„ -È… -Ȇ -ȇ -Ȩ -È© -Ḕ -ḕ -Ḗ -ḗ -Ḙ -ḙ -Ḛ -ḛ -Ḝ -Ḡ-Ẹ -ẹ -Ẻ -ẻ -Ẽ -ẽ -Ế -ế -Ề -á» -Ể -ể -Ễ -á»… -Ệ -ệ -F -f -Æ‘ -Æ’ -Ḟ -ḟ -G -g -Äœ -Ä -Äž -ÄŸ -Ä  -Ä¡ -Ä¢ -Ä£ -Æ“ -É  -Ǥ -Ç¥ -Ǧ -ǧ -Ç´ -ǵ -Ḡ -ḡ -H -h -Ĥ -Ä¥ -Ħ -ħ -Èž -ÈŸ -ɦ -Ḣ -ḣ -Ḥ -ḥ -Ḧ -ḧ -Ḩ -ḩ -Ḫ -ḫ -ẖ -I -i -ÃŒ -ì -à -í -ÃŽ -î -à -ï -Ĩ -Ä© -Ī -Ä« -Ĭ -Ä­ -Ä® -į -Ä° -Æ— -ɨ -Ç -Ç -Ȉ -ȉ -ÈŠ -È‹ -Ḭ -ḭ -Ḯ -ḯ -Ỉ -ỉ -Ị -ị -J -j -Ä´ -ĵ -Ç° -Ê -K -k -Ķ -Ä· -Ƙ -Æ™ -Ǩ -Ç© -Ḱ -ḱ -Ḳ -ḳ -Ḵ -ḵ -L -l -Ĺ -ĺ -Ä» -ļ -Ľ -ľ -Ä¿ -Å€ -Å -Å‚ -Æš -Lj -È´ -É« -ɬ -É­ -Ḷ -ḷ -Ḹ -ḹ -Ḻ -ḻ -Ḽ -ḽ -M -m -ɱ -Ḿ -ḿ -á¹€ -á¹ -Ṃ -ṃ -N -n -Ñ -ñ -Ń -Å„ -Å… -ņ -Ň -ň -Æ -ɲ -Æž -È  -Ç‹ -Ǹ -ǹ -ȵ -ɳ -Ṅ -á¹… -Ṇ -ṇ -Ṉ -ṉ -Ṋ -ṋ -O -o -Ã’ -ò -Ó -ó -Ô -ô -Õ -õ -Ö -ö -Ø -ø -ÅŒ -Å -ÅŽ -Å -Å -Å‘ -ÆŸ -Æ  -Æ¡ -Ç‘ -Ç’ -Ǫ -Ç« -Ǭ -Ç­ -Ǿ -Ç¿ -ÈŒ -È -ÈŽ -È -Ȫ -È« -Ȭ -È­ -È® -ȯ -È° -ȱ -Ṍ -á¹ -Ṏ -á¹ -á¹ -ṑ -á¹’ -ṓ -Ọ -á» -Ỏ -á» -á» -ố -á»’ -ồ -á»” -ổ -á»– -á»— -Ộ -á»™ -Ớ -á»› -Ờ -á» -Ở -ở -á»  -ỡ -Ợ -ợ -P -p -Ƥ -Æ¥ -á¹” -ṕ -á¹– -á¹— -Q -q -Ê  -R -r -Å” -Å• -Å– -Å— -Ř -Å™ -È -È‘ -È’ -È“ -ɼ -ɽ -ɾ -Ṙ -á¹™ -Ṛ -á¹› -Ṝ -á¹ -Ṟ -ṟ -S -s -Åš -Å› -Åœ -Å -Åž -ÅŸ -Å  -Å¡ -Ș -È™ -Ê‚ -á¹  -ṡ -á¹¢ -á¹£ -Ṥ -á¹¥ -Ṧ -ṧ -Ṩ -ṩ -T -t -Å¢ -Å£ -Ť -Å¥ -Ŧ -ŧ -Æ« -Ƭ -Æ­ -Æ® -ʈ -Èš -È› -ȶ -Ṫ -ṫ -Ṭ -á¹­ -á¹® -ṯ -á¹° -á¹± -ẗ -U -u -Ù -ù -Ú -ú -Û -û -Ãœ -ü -Ũ -Å© -Ū -Å« -Ŭ -Å­ -Å® -ů -Å° -ű -Ų -ų -Ư -Æ° -Ç“ -Ç” -Ç• -Ç– -Ç— -ǘ -Ç™ -Çš -Ç› -Çœ -È” -È• -È– -È— -á¹² -á¹³ -á¹´ -á¹µ -Ṷ -á¹· -Ṹ -á¹¹ -Ṻ -á¹» -Ụ -ụ -Ủ -ủ -Ứ -ứ -Ừ -ừ -Ử -á»­ -á»® -ữ -á»° -á»± -V -v -Ʋ -Ê‹ -á¹¼ -á¹½ -á¹¾ -ṿ -W -w -Å´ -ŵ -Ẁ -Ạ-Ẃ -ẃ -Ẅ -ẅ -Ẇ -ẇ -Ẉ -ẉ -ẘ -X -x -Ẋ -ẋ -Ẍ -Ạ-Y -y -à -ý -ÿ -Ÿ -Ŷ -Å· -Ƴ -Æ´ -Ȳ -ȳ -Ẏ -Ạ-ẙ -Ỳ -ỳ -á»´ -ỵ -Ỷ -á»· -Ỹ -ỹ -Z -z -Ź -ź -Å» -ż -Ž -ž -Ƶ -ƶ -Ȥ -È¥ -Ê -Ê‘ -Ạ-ẑ -Ẓ -ẓ -Ẕ -ẕ - - diff --git a/docbook-xsl-1.75.2/common/nn.xml b/docbook-xsl-1.75.2/common/nn.xml deleted file mode 100644 index ee5314f..0000000 --- a/docbook-xsl-1.75.2/common/nn.xml +++ /dev/null @@ -1,1230 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Symbols -A -a -À -à -à -á - -â -à -ã -Ä -ä -Ã… -Ã¥ -Ä€ -Ä -Ä‚ -ă -Ä„ -Ä… -Ç -ÇŽ -Çž -ÇŸ -Ç  -Ç¡ -Ǻ -Ç» -È€ -È -È‚ -ȃ -Ȧ -ȧ -Ḁ -Ḡ-ẚ -Ạ -ạ -Ả -ả -Ấ -ấ -Ầ -ầ -Ẩ -ẩ -Ẫ -ẫ -Ậ -ậ -Ắ -ắ -Ằ -ằ -Ẳ -ẳ -Ẵ -ẵ -Ặ -ặ -B -b -Æ€ -Æ -É“ -Æ‚ -ƃ -Ḃ -ḃ -Ḅ -ḅ -Ḇ -ḇ -C -c -Ç -ç -Ć -ć -Ĉ -ĉ -ÄŠ -Ä‹ -ÄŒ -Ä -Ƈ -ƈ -É• -Ḉ -ḉ -D -d -ÄŽ -Ä -Ä -Ä‘ -ÆŠ -É— -Æ‹ -ÆŒ -Ç… -Dz -È¡ -É– -Ḋ -ḋ -Ḍ -Ḡ-Ḏ -Ḡ-Ḡ-ḑ -Ḓ -ḓ -E -e -È -è -É -é -Ê -ê -Ë -ë -Ä’ -Ä“ -Ä” -Ä• -Ä– -Ä— -Ę -Ä™ -Äš -Ä› -È„ -È… -Ȇ -ȇ -Ȩ -È© -Ḕ -ḕ -Ḗ -ḗ -Ḙ -ḙ -Ḛ -ḛ -Ḝ -Ḡ-Ẹ -ẹ -Ẻ -ẻ -Ẽ -ẽ -Ế -ế -Ề -á» -Ể -ể -Ễ -á»… -Ệ -ệ -F -f -Æ‘ -Æ’ -Ḟ -ḟ -G -g -Äœ -Ä -Äž -ÄŸ -Ä  -Ä¡ -Ä¢ -Ä£ -Æ“ -É  -Ǥ -Ç¥ -Ǧ -ǧ -Ç´ -ǵ -Ḡ -ḡ -H -h -Ĥ -Ä¥ -Ħ -ħ -Èž -ÈŸ -ɦ -Ḣ -ḣ -Ḥ -ḥ -Ḧ -ḧ -Ḩ -ḩ -Ḫ -ḫ -ẖ -I -i -ÃŒ -ì -à -í -ÃŽ -î -à -ï -Ĩ -Ä© -Ī -Ä« -Ĭ -Ä­ -Ä® -į -Ä° -Æ— -ɨ -Ç -Ç -Ȉ -ȉ -ÈŠ -È‹ -Ḭ -ḭ -Ḯ -ḯ -Ỉ -ỉ -Ị -ị -J -j -Ä´ -ĵ -Ç° -Ê -K -k -Ķ -Ä· -Ƙ -Æ™ -Ǩ -Ç© -Ḱ -ḱ -Ḳ -ḳ -Ḵ -ḵ -L -l -Ĺ -ĺ -Ä» -ļ -Ľ -ľ -Ä¿ -Å€ -Å -Å‚ -Æš -Lj -È´ -É« -ɬ -É­ -Ḷ -ḷ -Ḹ -ḹ -Ḻ -ḻ -Ḽ -ḽ -M -m -ɱ -Ḿ -ḿ -á¹€ -á¹ -Ṃ -ṃ -N -n -Ñ -ñ -Ń -Å„ -Å… -ņ -Ň -ň -Æ -ɲ -Æž -È  -Ç‹ -Ǹ -ǹ -ȵ -ɳ -Ṅ -á¹… -Ṇ -ṇ -Ṉ -ṉ -Ṋ -ṋ -O -o -Ã’ -ò -Ó -ó -Ô -ô -Õ -õ -Ö -ö -Ø -ø -ÅŒ -Å -ÅŽ -Å -Å -Å‘ -ÆŸ -Æ  -Æ¡ -Ç‘ -Ç’ -Ǫ -Ç« -Ǭ -Ç­ -Ǿ -Ç¿ -ÈŒ -È -ÈŽ -È -Ȫ -È« -Ȭ -È­ -È® -ȯ -È° -ȱ -Ṍ -á¹ -Ṏ -á¹ -á¹ -ṑ -á¹’ -ṓ -Ọ -á» -Ỏ -á» -á» -ố -á»’ -ồ -á»” -ổ -á»– -á»— -Ộ -á»™ -Ớ -á»› -Ờ -á» -Ở -ở -á»  -ỡ -Ợ -ợ -P -p -Ƥ -Æ¥ -á¹” -ṕ -á¹– -á¹— -Q -q -Ê  -R -r -Å” -Å• -Å– -Å— -Ř -Å™ -È -È‘ -È’ -È“ -ɼ -ɽ -ɾ -Ṙ -á¹™ -Ṛ -á¹› -Ṝ -á¹ -Ṟ -ṟ -S -s -Åš -Å› -Åœ -Å -Åž -ÅŸ -Å  -Å¡ -Ș -È™ -Ê‚ -á¹  -ṡ -á¹¢ -á¹£ -Ṥ -á¹¥ -Ṧ -ṧ -Ṩ -ṩ -T -t -Å¢ -Å£ -Ť -Å¥ -Ŧ -ŧ -Æ« -Ƭ -Æ­ -Æ® -ʈ -Èš -È› -ȶ -Ṫ -ṫ -Ṭ -á¹­ -á¹® -ṯ -á¹° -á¹± -ẗ -U -u -Ù -ù -Ú -ú -Û -û -Ãœ -ü -Ũ -Å© -Ū -Å« -Ŭ -Å­ -Å® -ů -Å° -ű -Ų -ų -Ư -Æ° -Ç“ -Ç” -Ç• -Ç– -Ç— -ǘ -Ç™ -Çš -Ç› -Çœ -È” -È• -È– -È— -á¹² -á¹³ -á¹´ -á¹µ -Ṷ -á¹· -Ṹ -á¹¹ -Ṻ -á¹» -Ụ -ụ -Ủ -ủ -Ứ -ứ -Ừ -ừ -Ử -á»­ -á»® -ữ -á»° -á»± -V -v -Ʋ -Ê‹ -á¹¼ -á¹½ -á¹¾ -ṿ -W -w -Å´ -ŵ -Ẁ -Ạ-Ẃ -ẃ -Ẅ -ẅ -Ẇ -ẇ -Ẉ -ẉ -ẘ -X -x -Ẋ -ẋ -Ẍ -Ạ-Y -y -à -ý -ÿ -Ÿ -Ŷ -Å· -Ƴ -Æ´ -Ȳ -ȳ -Ẏ -Ạ-ẙ -Ỳ -ỳ -á»´ -ỵ -Ỷ -á»· -Ỹ -ỹ -Z -z -Ź -ź -Å» -ż -Ž -ž -Ƶ -ƶ -Ȥ -È¥ -Ê -Ê‘ -Ạ-ẑ -Ẓ -ẓ -Ẕ -ẕ - - diff --git a/docbook-xsl-1.75.2/common/olink.xsl b/docbook-xsl-1.75.2/common/olink.xsl deleted file mode 100644 index 78a2fa5..0000000 --- a/docbook-xsl-1.75.2/common/olink.xsl +++ /dev/null @@ -1,1215 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Olinks not processed: must specify a - $target.database.document parameter - when using olinks with targetdoc - and targetptr attributes. - - - - - - Olink error: could not open target database ' - - '. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Olink debug: cases for targetdoc=' - - ' and targetptr=' - - ' in language ' - - '. - - - - - - - - - - - - - - Olink debug: CaseA matched. - - - - Olink debug: CaseA NOT matched - - - - - - - - - - - - - - - - Olink debug: CaseB matched. - - - - Olink debug: CaseB NOT matched - - - - - - - - - - - - - - - - - Olink debug: CaseC matched. - - - - Olink debug: CaseC NOT matched. - - - - - - - - - - - - - - - - - Olink debug: CaseD matched. - - - - Olink debug: CaseD NOT matched - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Olink debug: CaseE matched. - - - - Olink debug: CaseE NOT matched. - - - - - - - - - - - - - - - - - - - - - - - - - - - - Olink debug: CaseF matched. - - - - Olink debug: CaseF NOT matched. - - - - - - - - - - - - - - Olink debug: CaseB key is the final selection: - - - - - - - - - Olink debug: CaseA key is the final selection: - - - - - - - - - Olink debug: CaseC key is the final selection: - - - - - - - - - Olink debug: CaseD key is the final selection: - - - - - - - - - Olink debug: CaseF key is the final selection: - - - - - - - - - Olink debug: CaseE key is the final selection: - - - - - - - - Olink debug: No case matched for lang ' - - '. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - 0 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Olink error: cannot compute relative - sitemap path because $current.docid ' - - ' not found in target database. - - - - - - - Olink warning: cannot compute relative - sitemap path without $current.docid parameter - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - xrefstyle is ' - - '. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Olink error: no gentext template - exists for xrefstyle ' - - ' for element ' - - ' in language ' - - ' in context 'xref-number-and-title - '. Using template without @style. - - - - - - - - Olink error: no gentext template - exists for xrefstyle ' - - ' for element ' - - ' in language ' - - ' in context 'xref-number - '. Using template without @style. - - - - - - - - Olink error: no gentext template - exists for xrefstyle ' - - ' for element ' - - ' in language ' - - ' in context 'xref - '. Using template without @style. - - - - - - Olink error: no gentext template - exists for xrefstyle ' - - ' for element ' - - ' in language ' - - '. Trying '%t'. - - - - - - - - - - - Olink debug: xrefstyle template is ' - - '. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - 0 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Olink error: no generated text for - targetdoc/targetptr/lang = ' - - '. - - ???? - - - - - - - Olink error: no generated text for - targetdoc/targetptr/lang = ' - - '. - - - ???? - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Olink error: cannot locate targetdoc in sitemap - - - - - - - / - - - - - - - - - - - ../ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/common/or.xml b/docbook-xsl-1.75.2/common/or.xml deleted file mode 100644 index ae82a0e..0000000 --- a/docbook-xsl-1.75.2/common/or.xml +++ /dev/null @@ -1,1230 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Symbols -A -a -À -à -à -á - -â -à -ã -Ä -ä -Ã… -Ã¥ -Ä€ -Ä -Ä‚ -ă -Ä„ -Ä… -Ç -ÇŽ -Çž -ÇŸ -Ç  -Ç¡ -Ǻ -Ç» -È€ -È -È‚ -ȃ -Ȧ -ȧ -Ḁ -Ḡ-ẚ -Ạ -ạ -Ả -ả -Ấ -ấ -Ầ -ầ -Ẩ -ẩ -Ẫ -ẫ -Ậ -ậ -Ắ -ắ -Ằ -ằ -Ẳ -ẳ -Ẵ -ẵ -Ặ -ặ -B -b -Æ€ -Æ -É“ -Æ‚ -ƃ -Ḃ -ḃ -Ḅ -ḅ -Ḇ -ḇ -C -c -Ç -ç -Ć -ć -Ĉ -ĉ -ÄŠ -Ä‹ -ÄŒ -Ä -Ƈ -ƈ -É• -Ḉ -ḉ -D -d -ÄŽ -Ä -Ä -Ä‘ -ÆŠ -É— -Æ‹ -ÆŒ -Ç… -Dz -È¡ -É– -Ḋ -ḋ -Ḍ -Ḡ-Ḏ -Ḡ-Ḡ-ḑ -Ḓ -ḓ -E -e -È -è -É -é -Ê -ê -Ë -ë -Ä’ -Ä“ -Ä” -Ä• -Ä– -Ä— -Ę -Ä™ -Äš -Ä› -È„ -È… -Ȇ -ȇ -Ȩ -È© -Ḕ -ḕ -Ḗ -ḗ -Ḙ -ḙ -Ḛ -ḛ -Ḝ -Ḡ-Ẹ -ẹ -Ẻ -ẻ -Ẽ -ẽ -Ế -ế -Ề -á» -Ể -ể -Ễ -á»… -Ệ -ệ -F -f -Æ‘ -Æ’ -Ḟ -ḟ -G -g -Äœ -Ä -Äž -ÄŸ -Ä  -Ä¡ -Ä¢ -Ä£ -Æ“ -É  -Ǥ -Ç¥ -Ǧ -ǧ -Ç´ -ǵ -Ḡ -ḡ -H -h -Ĥ -Ä¥ -Ħ -ħ -Èž -ÈŸ -ɦ -Ḣ -ḣ -Ḥ -ḥ -Ḧ -ḧ -Ḩ -ḩ -Ḫ -ḫ -ẖ -I -i -ÃŒ -ì -à -í -ÃŽ -î -à -ï -Ĩ -Ä© -Ī -Ä« -Ĭ -Ä­ -Ä® -į -Ä° -Æ— -ɨ -Ç -Ç -Ȉ -ȉ -ÈŠ -È‹ -Ḭ -ḭ -Ḯ -ḯ -Ỉ -ỉ -Ị -ị -J -j -Ä´ -ĵ -Ç° -Ê -K -k -Ķ -Ä· -Ƙ -Æ™ -Ǩ -Ç© -Ḱ -ḱ -Ḳ -ḳ -Ḵ -ḵ -L -l -Ĺ -ĺ -Ä» -ļ -Ľ -ľ -Ä¿ -Å€ -Å -Å‚ -Æš -Lj -È´ -É« -ɬ -É­ -Ḷ -ḷ -Ḹ -ḹ -Ḻ -ḻ -Ḽ -ḽ -M -m -ɱ -Ḿ -ḿ -á¹€ -á¹ -Ṃ -ṃ -N -n -Ñ -ñ -Ń -Å„ -Å… -ņ -Ň -ň -Æ -ɲ -Æž -È  -Ç‹ -Ǹ -ǹ -ȵ -ɳ -Ṅ -á¹… -Ṇ -ṇ -Ṉ -ṉ -Ṋ -ṋ -O -o -Ã’ -ò -Ó -ó -Ô -ô -Õ -õ -Ö -ö -Ø -ø -ÅŒ -Å -ÅŽ -Å -Å -Å‘ -ÆŸ -Æ  -Æ¡ -Ç‘ -Ç’ -Ǫ -Ç« -Ǭ -Ç­ -Ǿ -Ç¿ -ÈŒ -È -ÈŽ -È -Ȫ -È« -Ȭ -È­ -È® -ȯ -È° -ȱ -Ṍ -á¹ -Ṏ -á¹ -á¹ -ṑ -á¹’ -ṓ -Ọ -á» -Ỏ -á» -á» -ố -á»’ -ồ -á»” -ổ -á»– -á»— -Ộ -á»™ -Ớ -á»› -Ờ -á» -Ở -ở -á»  -ỡ -Ợ -ợ -P -p -Ƥ -Æ¥ -á¹” -ṕ -á¹– -á¹— -Q -q -Ê  -R -r -Å” -Å• -Å– -Å— -Ř -Å™ -È -È‘ -È’ -È“ -ɼ -ɽ -ɾ -Ṙ -á¹™ -Ṛ -á¹› -Ṝ -á¹ -Ṟ -ṟ -S -s -Åš -Å› -Åœ -Å -Åž -ÅŸ -Å  -Å¡ -Ș -È™ -Ê‚ -á¹  -ṡ -á¹¢ -á¹£ -Ṥ -á¹¥ -Ṧ -ṧ -Ṩ -ṩ -T -t -Å¢ -Å£ -Ť -Å¥ -Ŧ -ŧ -Æ« -Ƭ -Æ­ -Æ® -ʈ -Èš -È› -ȶ -Ṫ -ṫ -Ṭ -á¹­ -á¹® -ṯ -á¹° -á¹± -ẗ -U -u -Ù -ù -Ú -ú -Û -û -Ãœ -ü -Ũ -Å© -Ū -Å« -Ŭ -Å­ -Å® -ů -Å° -ű -Ų -ų -Ư -Æ° -Ç“ -Ç” -Ç• -Ç– -Ç— -ǘ -Ç™ -Çš -Ç› -Çœ -È” -È• -È– -È— -á¹² -á¹³ -á¹´ -á¹µ -Ṷ -á¹· -Ṹ -á¹¹ -Ṻ -á¹» -Ụ -ụ -Ủ -ủ -Ứ -ứ -Ừ -ừ -Ử -á»­ -á»® -ữ -á»° -á»± -V -v -Ʋ -Ê‹ -á¹¼ -á¹½ -á¹¾ -ṿ -W -w -Å´ -ŵ -Ẁ -Ạ-Ẃ -ẃ -Ẅ -ẅ -Ẇ -ẇ -Ẉ -ẉ -ẘ -X -x -Ẋ -ẋ -Ẍ -Ạ-Y -y -à -ý -ÿ -Ÿ -Ŷ -Å· -Ƴ -Æ´ -Ȳ -ȳ -Ẏ -Ạ-ẙ -Ỳ -ỳ -á»´ -ỵ -Ỷ -á»· -Ỹ -ỹ -Z -z -Ź -ź -Å» -ż -Ž -ž -Ƶ -ƶ -Ȥ -È¥ -Ê -Ê‘ -Ạ-ẑ -Ẓ -ẓ -Ẕ -ẕ - - diff --git a/docbook-xsl-1.75.2/common/pa.xml b/docbook-xsl-1.75.2/common/pa.xml deleted file mode 100644 index b6fe61f..0000000 --- a/docbook-xsl-1.75.2/common/pa.xml +++ /dev/null @@ -1,1230 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Symbols -A -a -À -à -à -á - -â -à -ã -Ä -ä -Ã… -Ã¥ -Ä€ -Ä -Ä‚ -ă -Ä„ -Ä… -Ç -ÇŽ -Çž -ÇŸ -Ç  -Ç¡ -Ǻ -Ç» -È€ -È -È‚ -ȃ -Ȧ -ȧ -Ḁ -Ḡ-ẚ -Ạ -ạ -Ả -ả -Ấ -ấ -Ầ -ầ -Ẩ -ẩ -Ẫ -ẫ -Ậ -ậ -Ắ -ắ -Ằ -ằ -Ẳ -ẳ -Ẵ -ẵ -Ặ -ặ -B -b -Æ€ -Æ -É“ -Æ‚ -ƃ -Ḃ -ḃ -Ḅ -ḅ -Ḇ -ḇ -C -c -Ç -ç -Ć -ć -Ĉ -ĉ -ÄŠ -Ä‹ -ÄŒ -Ä -Ƈ -ƈ -É• -Ḉ -ḉ -D -d -ÄŽ -Ä -Ä -Ä‘ -ÆŠ -É— -Æ‹ -ÆŒ -Ç… -Dz -È¡ -É– -Ḋ -ḋ -Ḍ -Ḡ-Ḏ -Ḡ-Ḡ-ḑ -Ḓ -ḓ -E -e -È -è -É -é -Ê -ê -Ë -ë -Ä’ -Ä“ -Ä” -Ä• -Ä– -Ä— -Ę -Ä™ -Äš -Ä› -È„ -È… -Ȇ -ȇ -Ȩ -È© -Ḕ -ḕ -Ḗ -ḗ -Ḙ -ḙ -Ḛ -ḛ -Ḝ -Ḡ-Ẹ -ẹ -Ẻ -ẻ -Ẽ -ẽ -Ế -ế -Ề -á» -Ể -ể -Ễ -á»… -Ệ -ệ -F -f -Æ‘ -Æ’ -Ḟ -ḟ -G -g -Äœ -Ä -Äž -ÄŸ -Ä  -Ä¡ -Ä¢ -Ä£ -Æ“ -É  -Ǥ -Ç¥ -Ǧ -ǧ -Ç´ -ǵ -Ḡ -ḡ -H -h -Ĥ -Ä¥ -Ħ -ħ -Èž -ÈŸ -ɦ -Ḣ -ḣ -Ḥ -ḥ -Ḧ -ḧ -Ḩ -ḩ -Ḫ -ḫ -ẖ -I -i -ÃŒ -ì -à -í -ÃŽ -î -à -ï -Ĩ -Ä© -Ī -Ä« -Ĭ -Ä­ -Ä® -į -Ä° -Æ— -ɨ -Ç -Ç -Ȉ -ȉ -ÈŠ -È‹ -Ḭ -ḭ -Ḯ -ḯ -Ỉ -ỉ -Ị -ị -J -j -Ä´ -ĵ -Ç° -Ê -K -k -Ķ -Ä· -Ƙ -Æ™ -Ǩ -Ç© -Ḱ -ḱ -Ḳ -ḳ -Ḵ -ḵ -L -l -Ĺ -ĺ -Ä» -ļ -Ľ -ľ -Ä¿ -Å€ -Å -Å‚ -Æš -Lj -È´ -É« -ɬ -É­ -Ḷ -ḷ -Ḹ -ḹ -Ḻ -ḻ -Ḽ -ḽ -M -m -ɱ -Ḿ -ḿ -á¹€ -á¹ -Ṃ -ṃ -N -n -Ñ -ñ -Ń -Å„ -Å… -ņ -Ň -ň -Æ -ɲ -Æž -È  -Ç‹ -Ǹ -ǹ -ȵ -ɳ -Ṅ -á¹… -Ṇ -ṇ -Ṉ -ṉ -Ṋ -ṋ -O -o -Ã’ -ò -Ó -ó -Ô -ô -Õ -õ -Ö -ö -Ø -ø -ÅŒ -Å -ÅŽ -Å -Å -Å‘ -ÆŸ -Æ  -Æ¡ -Ç‘ -Ç’ -Ǫ -Ç« -Ǭ -Ç­ -Ǿ -Ç¿ -ÈŒ -È -ÈŽ -È -Ȫ -È« -Ȭ -È­ -È® -ȯ -È° -ȱ -Ṍ -á¹ -Ṏ -á¹ -á¹ -ṑ -á¹’ -ṓ -Ọ -á» -Ỏ -á» -á» -ố -á»’ -ồ -á»” -ổ -á»– -á»— -Ộ -á»™ -Ớ -á»› -Ờ -á» -Ở -ở -á»  -ỡ -Ợ -ợ -P -p -Ƥ -Æ¥ -á¹” -ṕ -á¹– -á¹— -Q -q -Ê  -R -r -Å” -Å• -Å– -Å— -Ř -Å™ -È -È‘ -È’ -È“ -ɼ -ɽ -ɾ -Ṙ -á¹™ -Ṛ -á¹› -Ṝ -á¹ -Ṟ -ṟ -S -s -Åš -Å› -Åœ -Å -Åž -ÅŸ -Å  -Å¡ -Ș -È™ -Ê‚ -á¹  -ṡ -á¹¢ -á¹£ -Ṥ -á¹¥ -Ṧ -ṧ -Ṩ -ṩ -T -t -Å¢ -Å£ -Ť -Å¥ -Ŧ -ŧ -Æ« -Ƭ -Æ­ -Æ® -ʈ -Èš -È› -ȶ -Ṫ -ṫ -Ṭ -á¹­ -á¹® -ṯ -á¹° -á¹± -ẗ -U -u -Ù -ù -Ú -ú -Û -û -Ãœ -ü -Ũ -Å© -Ū -Å« -Ŭ -Å­ -Å® -ů -Å° -ű -Ų -ų -Ư -Æ° -Ç“ -Ç” -Ç• -Ç– -Ç— -ǘ -Ç™ -Çš -Ç› -Çœ -È” -È• -È– -È— -á¹² -á¹³ -á¹´ -á¹µ -Ṷ -á¹· -Ṹ -á¹¹ -Ṻ -á¹» -Ụ -ụ -Ủ -ủ -Ứ -ứ -Ừ -ừ -Ử -á»­ -á»® -ữ -á»° -á»± -V -v -Ʋ -Ê‹ -á¹¼ -á¹½ -á¹¾ -ṿ -W -w -Å´ -ŵ -Ẁ -Ạ-Ẃ -ẃ -Ẅ -ẅ -Ẇ -ẇ -Ẉ -ẉ -ẘ -X -x -Ẋ -ẋ -Ẍ -Ạ-Y -y -à -ý -ÿ -Ÿ -Ŷ -Å· -Ƴ -Æ´ -Ȳ -ȳ -Ẏ -Ạ-ẙ -Ỳ -ỳ -á»´ -ỵ -Ỷ -á»· -Ỹ -ỹ -Z -z -Ź -ź -Å» -ż -Ž -ž -Ƶ -ƶ -Ȥ -È¥ -Ê -Ê‘ -Ạ-ẑ -Ẓ -ẓ -Ẕ -ẕ - - diff --git a/docbook-xsl-1.75.2/common/pi.xml b/docbook-xsl-1.75.2/common/pi.xml deleted file mode 100644 index 5965007..0000000 --- a/docbook-xsl-1.75.2/common/pi.xml +++ /dev/null @@ -1,165 +0,0 @@ - - -Common Processing Instruction Reference - - $Id: pi.xsl 8349 2009-03-17 06:53:03Z bobstayton $ - - - - Introduction - -This is generated reference documentation for all - user-specifiable processing instructions (PIs) in the - “common†part of the DocBook XSL stylesheets. - - -You add these PIs at particular points in a document to - cause specific “exceptions†to formatting/output behavior. To - make global changes in formatting/output behavior across an - entire document, it’s better to do it by setting an - appropriate stylesheet parameter (if there is one). - - - - - - - - -dbchoice_choice -Generates a localized choice separator - - - - dbchoice choice="and"|"or"|string" - - -Description - -Use the dbchoice choice PI to - generate an appropriate localized “choice†separator (for - example, and or or) - before the final item in an inline simplelist - - - -This PI is a less-than-ideal hack; support for it may - disappear in the future (particularly if and when a more - appropriate means for marking up "choice" lists becomes - available in DocBook). - - - Parameters - - - choice="and" - - -generates a localized and separator - - - - choice="or" - - -generates a localized or separator - - - - choice="string" - - -generates a literal string separator - - - - - - - - - -dbtimestamp -Inserts a date timestamp - - - - dbtimestamp format="formatstring" [padding="0"|"1"] - - -Description - -Use the dbtimestamp PI at any point in a - source document to cause a date timestamp (a formatted - string representing the current date and time) to be - inserted in output of the document. - - Parameters - - - format="formatstring" - - -Specifies format in which the date and time are - output - - - -For details of the content of the format string, - see Date and time. - - - - - padding="0"|"1" - - -Specifies padding behavior; if non-zero, padding is is added - - - - - - - - - -dbtex_delims -Generates delimiters around embedded TeX equations - in output - - - - dbtex delims="no"|"yes" - - -Description - -Use the dbtex delims PI as a - child of a textobject containing embedded TeX - markup, to cause that markup to be surrounded by - $ delimiter characters in output. - - Parameters - - - dbtex delims="no"|"yes" - - -Specifies whether delimiters are output - - - - - - Related Global Parameters - -tex.math.delims - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -DBTeXMath - - - - diff --git a/docbook-xsl-1.75.2/common/pi.xsl b/docbook-xsl-1.75.2/common/pi.xsl deleted file mode 100644 index 5535415..0000000 --- a/docbook-xsl-1.75.2/common/pi.xsl +++ /dev/null @@ -1,344 +0,0 @@ - - - - - -Common Processing Instruction Reference - - $Id: pi.xsl 8349 2009-03-17 06:53:03Z bobstayton $ - - - - Introduction - This is generated reference documentation for all - user-specifiable processing instructions (PIs) in the - “common†part of the DocBook XSL stylesheets. - - You add these PIs at particular points in a document to - cause specific “exceptions†to formatting/output behavior. To - make global changes in formatting/output behavior across an - entire document, it’s better to do it by setting an - appropriate stylesheet parameter (if there is one). - - - - - - - - Generates a localized choice separator - - Use the dbchoice choice PI to - generate an appropriate localized “choice†separator (for - example, and or or) - before the final item in an inline simplelist - - This PI is a less-than-ideal hack; support for it may - disappear in the future (particularly if and when a more - appropriate means for marking up "choice" lists becomes - available in DocBook). - - - - dbchoice choice="and"|"or"|string" - - - - choice="and" - - generates a localized and separator - - - choice="or" - - generates a localized or separator - - - choice="string" - - generates a literal string separator - - - - - - - - - - choice - - - - - Inserts a date timestamp - - Use the dbtimestamp PI at any point in a - source document to cause a date timestamp (a formatted - string representing the current date and time) to be - inserted in output of the document. - - - dbtimestamp format="formatstring" [padding="0"|"1"] - - - - format="formatstring" - - Specifies format in which the date and time are - output - - For details of the content of the format string, - see Date and time. - - - - padding="0"|"1" - - Specifies padding behavior; if non-zero, padding is is added - - - - - - - - - - - format - - - - - - - - - - - - - - - - - - - padding - - - - - - - 1 - - - - - - - - - - - - - - - - - - - - - - - - Timestamp processing requires XSLT processor with EXSLT date support. - - - - - - - Generates delimiters around embedded TeX equations - in output - - Use the dbtex delims PI as a - child of a textobject containing embedded TeX - markup, to cause that markup to be surrounded by - $ delimiter characters in output. - - - dbtex delims="no"|"yes" - - - - dbtex delims="no"|"yes" - - Specifies whether delimiters are output - - - - - - tex.math.delims - - - DBTeXMath - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - - - - 0 - - - - - - - 0 - - - - 0 - - - - 0 - - - - - - - - - - - - - - - - - - - - - - - - - - - Timestamp processing requires an XSLT processor with support - for the EXSLT node-set() function. - - - - - - - diff --git a/docbook-xsl-1.75.2/common/pl.xml b/docbook-xsl-1.75.2/common/pl.xml deleted file mode 100644 index 0e1f014..0000000 --- a/docbook-xsl-1.75.2/common/pl.xml +++ /dev/null @@ -1,1230 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Symbols -A -a -À -à -à -á - -â -à -ã -Ä -ä -Ã… -Ã¥ -Ä€ -Ä -Ä‚ -ă -Ä„ -Ä… -Ç -ÇŽ -Çž -ÇŸ -Ç  -Ç¡ -Ǻ -Ç» -È€ -È -È‚ -ȃ -Ȧ -ȧ -Ḁ -Ḡ-ẚ -Ạ -ạ -Ả -ả -Ấ -ấ -Ầ -ầ -Ẩ -ẩ -Ẫ -ẫ -Ậ -ậ -Ắ -ắ -Ằ -ằ -Ẳ -ẳ -Ẵ -ẵ -Ặ -ặ -B -b -Æ€ -Æ -É“ -Æ‚ -ƃ -Ḃ -ḃ -Ḅ -ḅ -Ḇ -ḇ -C -c -Ç -ç -Ć -ć -Ĉ -ĉ -ÄŠ -Ä‹ -ÄŒ -Ä -Ƈ -ƈ -É• -Ḉ -ḉ -D -d -ÄŽ -Ä -Ä -Ä‘ -ÆŠ -É— -Æ‹ -ÆŒ -Ç… -Dz -È¡ -É– -Ḋ -ḋ -Ḍ -Ḡ-Ḏ -Ḡ-Ḡ-ḑ -Ḓ -ḓ -E -e -È -è -É -é -Ê -ê -Ë -ë -Ä’ -Ä“ -Ä” -Ä• -Ä– -Ä— -Ę -Ä™ -Äš -Ä› -È„ -È… -Ȇ -ȇ -Ȩ -È© -Ḕ -ḕ -Ḗ -ḗ -Ḙ -ḙ -Ḛ -ḛ -Ḝ -Ḡ-Ẹ -ẹ -Ẻ -ẻ -Ẽ -ẽ -Ế -ế -Ề -á» -Ể -ể -Ễ -á»… -Ệ -ệ -F -f -Æ‘ -Æ’ -Ḟ -ḟ -G -g -Äœ -Ä -Äž -ÄŸ -Ä  -Ä¡ -Ä¢ -Ä£ -Æ“ -É  -Ǥ -Ç¥ -Ǧ -ǧ -Ç´ -ǵ -Ḡ -ḡ -H -h -Ĥ -Ä¥ -Ħ -ħ -Èž -ÈŸ -ɦ -Ḣ -ḣ -Ḥ -ḥ -Ḧ -ḧ -Ḩ -ḩ -Ḫ -ḫ -ẖ -I -i -ÃŒ -ì -à -í -ÃŽ -î -à -ï -Ĩ -Ä© -Ī -Ä« -Ĭ -Ä­ -Ä® -į -Ä° -Æ— -ɨ -Ç -Ç -Ȉ -ȉ -ÈŠ -È‹ -Ḭ -ḭ -Ḯ -ḯ -Ỉ -ỉ -Ị -ị -J -j -Ä´ -ĵ -Ç° -Ê -K -k -Ķ -Ä· -Ƙ -Æ™ -Ǩ -Ç© -Ḱ -ḱ -Ḳ -ḳ -Ḵ -ḵ -L -l -Ĺ -ĺ -Ä» -ļ -Ľ -ľ -Ä¿ -Å€ -Å -Å‚ -Æš -Lj -È´ -É« -ɬ -É­ -Ḷ -ḷ -Ḹ -ḹ -Ḻ -ḻ -Ḽ -ḽ -M -m -ɱ -Ḿ -ḿ -á¹€ -á¹ -Ṃ -ṃ -N -n -Ñ -ñ -Ń -Å„ -Å… -ņ -Ň -ň -Æ -ɲ -Æž -È  -Ç‹ -Ǹ -ǹ -ȵ -ɳ -Ṅ -á¹… -Ṇ -ṇ -Ṉ -ṉ -Ṋ -ṋ -O -o -Ã’ -ò -Ó -ó -Ô -ô -Õ -õ -Ö -ö -Ø -ø -ÅŒ -Å -ÅŽ -Å -Å -Å‘ -ÆŸ -Æ  -Æ¡ -Ç‘ -Ç’ -Ǫ -Ç« -Ǭ -Ç­ -Ǿ -Ç¿ -ÈŒ -È -ÈŽ -È -Ȫ -È« -Ȭ -È­ -È® -ȯ -È° -ȱ -Ṍ -á¹ -Ṏ -á¹ -á¹ -ṑ -á¹’ -ṓ -Ọ -á» -Ỏ -á» -á» -ố -á»’ -ồ -á»” -ổ -á»– -á»— -Ộ -á»™ -Ớ -á»› -Ờ -á» -Ở -ở -á»  -ỡ -Ợ -ợ -P -p -Ƥ -Æ¥ -á¹” -ṕ -á¹– -á¹— -Q -q -Ê  -R -r -Å” -Å• -Å– -Å— -Ř -Å™ -È -È‘ -È’ -È“ -ɼ -ɽ -ɾ -Ṙ -á¹™ -Ṛ -á¹› -Ṝ -á¹ -Ṟ -ṟ -S -s -Åš -Å› -Åœ -Å -Åž -ÅŸ -Å  -Å¡ -Ș -È™ -Ê‚ -á¹  -ṡ -á¹¢ -á¹£ -Ṥ -á¹¥ -Ṧ -ṧ -Ṩ -ṩ -T -t -Å¢ -Å£ -Ť -Å¥ -Ŧ -ŧ -Æ« -Ƭ -Æ­ -Æ® -ʈ -Èš -È› -ȶ -Ṫ -ṫ -Ṭ -á¹­ -á¹® -ṯ -á¹° -á¹± -ẗ -U -u -Ù -ù -Ú -ú -Û -û -Ãœ -ü -Ũ -Å© -Ū -Å« -Ŭ -Å­ -Å® -ů -Å° -ű -Ų -ų -Ư -Æ° -Ç“ -Ç” -Ç• -Ç– -Ç— -ǘ -Ç™ -Çš -Ç› -Çœ -È” -È• -È– -È— -á¹² -á¹³ -á¹´ -á¹µ -Ṷ -á¹· -Ṹ -á¹¹ -Ṻ -á¹» -Ụ -ụ -Ủ -ủ -Ứ -ứ -Ừ -ừ -Ử -á»­ -á»® -ữ -á»° -á»± -V -v -Ʋ -Ê‹ -á¹¼ -á¹½ -á¹¾ -ṿ -W -w -Å´ -ŵ -Ẁ -Ạ-Ẃ -ẃ -Ẅ -ẅ -Ẇ -ẇ -Ẉ -ẉ -ẘ -X -x -Ẋ -ẋ -Ẍ -Ạ-Y -y -à -ý -ÿ -Ÿ -Ŷ -Å· -Ƴ -Æ´ -Ȳ -ȳ -Ẏ -Ạ-ẙ -Ỳ -ỳ -á»´ -ỵ -Ỷ -á»· -Ỹ -ỹ -Z -z -Ź -ź -Å» -ż -Ž -ž -Ƶ -ƶ -Ȥ -È¥ -Ê -Ê‘ -Ạ-ẑ -Ẓ -ẓ -Ẕ -ẕ - - diff --git a/docbook-xsl-1.75.2/common/pt.xml b/docbook-xsl-1.75.2/common/pt.xml deleted file mode 100644 index 5c93abe..0000000 --- a/docbook-xsl-1.75.2/common/pt.xml +++ /dev/null @@ -1,1230 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Symbols -A -a -À -à -à -á - -â -à -ã -Ä -ä -Ã… -Ã¥ -Ä€ -Ä -Ä‚ -ă -Ä„ -Ä… -Ç -ÇŽ -Çž -ÇŸ -Ç  -Ç¡ -Ǻ -Ç» -È€ -È -È‚ -ȃ -Ȧ -ȧ -Ḁ -Ḡ-ẚ -Ạ -ạ -Ả -ả -Ấ -ấ -Ầ -ầ -Ẩ -ẩ -Ẫ -ẫ -Ậ -ậ -Ắ -ắ -Ằ -ằ -Ẳ -ẳ -Ẵ -ẵ -Ặ -ặ -B -b -Æ€ -Æ -É“ -Æ‚ -ƃ -Ḃ -ḃ -Ḅ -ḅ -Ḇ -ḇ -C -c -Ç -ç -Ć -ć -Ĉ -ĉ -ÄŠ -Ä‹ -ÄŒ -Ä -Ƈ -ƈ -É• -Ḉ -ḉ -D -d -ÄŽ -Ä -Ä -Ä‘ -ÆŠ -É— -Æ‹ -ÆŒ -Ç… -Dz -È¡ -É– -Ḋ -ḋ -Ḍ -Ḡ-Ḏ -Ḡ-Ḡ-ḑ -Ḓ -ḓ -E -e -È -è -É -é -Ê -ê -Ë -ë -Ä’ -Ä“ -Ä” -Ä• -Ä– -Ä— -Ę -Ä™ -Äš -Ä› -È„ -È… -Ȇ -ȇ -Ȩ -È© -Ḕ -ḕ -Ḗ -ḗ -Ḙ -ḙ -Ḛ -ḛ -Ḝ -Ḡ-Ẹ -ẹ -Ẻ -ẻ -Ẽ -ẽ -Ế -ế -Ề -á» -Ể -ể -Ễ -á»… -Ệ -ệ -F -f -Æ‘ -Æ’ -Ḟ -ḟ -G -g -Äœ -Ä -Äž -ÄŸ -Ä  -Ä¡ -Ä¢ -Ä£ -Æ“ -É  -Ǥ -Ç¥ -Ǧ -ǧ -Ç´ -ǵ -Ḡ -ḡ -H -h -Ĥ -Ä¥ -Ħ -ħ -Èž -ÈŸ -ɦ -Ḣ -ḣ -Ḥ -ḥ -Ḧ -ḧ -Ḩ -ḩ -Ḫ -ḫ -ẖ -I -i -ÃŒ -ì -à -í -ÃŽ -î -à -ï -Ĩ -Ä© -Ī -Ä« -Ĭ -Ä­ -Ä® -į -Ä° -Æ— -ɨ -Ç -Ç -Ȉ -ȉ -ÈŠ -È‹ -Ḭ -ḭ -Ḯ -ḯ -Ỉ -ỉ -Ị -ị -J -j -Ä´ -ĵ -Ç° -Ê -K -k -Ķ -Ä· -Ƙ -Æ™ -Ǩ -Ç© -Ḱ -ḱ -Ḳ -ḳ -Ḵ -ḵ -L -l -Ĺ -ĺ -Ä» -ļ -Ľ -ľ -Ä¿ -Å€ -Å -Å‚ -Æš -Lj -È´ -É« -ɬ -É­ -Ḷ -ḷ -Ḹ -ḹ -Ḻ -ḻ -Ḽ -ḽ -M -m -ɱ -Ḿ -ḿ -á¹€ -á¹ -Ṃ -ṃ -N -n -Ñ -ñ -Ń -Å„ -Å… -ņ -Ň -ň -Æ -ɲ -Æž -È  -Ç‹ -Ǹ -ǹ -ȵ -ɳ -Ṅ -á¹… -Ṇ -ṇ -Ṉ -ṉ -Ṋ -ṋ -O -o -Ã’ -ò -Ó -ó -Ô -ô -Õ -õ -Ö -ö -Ø -ø -ÅŒ -Å -ÅŽ -Å -Å -Å‘ -ÆŸ -Æ  -Æ¡ -Ç‘ -Ç’ -Ǫ -Ç« -Ǭ -Ç­ -Ǿ -Ç¿ -ÈŒ -È -ÈŽ -È -Ȫ -È« -Ȭ -È­ -È® -ȯ -È° -ȱ -Ṍ -á¹ -Ṏ -á¹ -á¹ -ṑ -á¹’ -ṓ -Ọ -á» -Ỏ -á» -á» -ố -á»’ -ồ -á»” -ổ -á»– -á»— -Ộ -á»™ -Ớ -á»› -Ờ -á» -Ở -ở -á»  -ỡ -Ợ -ợ -P -p -Ƥ -Æ¥ -á¹” -ṕ -á¹– -á¹— -Q -q -Ê  -R -r -Å” -Å• -Å– -Å— -Ř -Å™ -È -È‘ -È’ -È“ -ɼ -ɽ -ɾ -Ṙ -á¹™ -Ṛ -á¹› -Ṝ -á¹ -Ṟ -ṟ -S -s -Åš -Å› -Åœ -Å -Åž -ÅŸ -Å  -Å¡ -Ș -È™ -Ê‚ -á¹  -ṡ -á¹¢ -á¹£ -Ṥ -á¹¥ -Ṧ -ṧ -Ṩ -ṩ -T -t -Å¢ -Å£ -Ť -Å¥ -Ŧ -ŧ -Æ« -Ƭ -Æ­ -Æ® -ʈ -Èš -È› -ȶ -Ṫ -ṫ -Ṭ -á¹­ -á¹® -ṯ -á¹° -á¹± -ẗ -U -u -Ù -ù -Ú -ú -Û -û -Ãœ -ü -Ũ -Å© -Ū -Å« -Ŭ -Å­ -Å® -ů -Å° -ű -Ų -ų -Ư -Æ° -Ç“ -Ç” -Ç• -Ç– -Ç— -ǘ -Ç™ -Çš -Ç› -Çœ -È” -È• -È– -È— -á¹² -á¹³ -á¹´ -á¹µ -Ṷ -á¹· -Ṹ -á¹¹ -Ṻ -á¹» -Ụ -ụ -Ủ -ủ -Ứ -ứ -Ừ -ừ -Ử -á»­ -á»® -ữ -á»° -á»± -V -v -Ʋ -Ê‹ -á¹¼ -á¹½ -á¹¾ -ṿ -W -w -Å´ -ŵ -Ẁ -Ạ-Ẃ -ẃ -Ẅ -ẅ -Ẇ -ẇ -Ẉ -ẉ -ẘ -X -x -Ẋ -ẋ -Ẍ -Ạ-Y -y -à -ý -ÿ -Ÿ -Ŷ -Å· -Ƴ -Æ´ -Ȳ -ȳ -Ẏ -Ạ-ẙ -Ỳ -ỳ -á»´ -ỵ -Ỷ -á»· -Ỹ -ỹ -Z -z -Ź -ź -Å» -ż -Ž -ž -Ƶ -ƶ -Ȥ -È¥ -Ê -Ê‘ -Ạ-ẑ -Ẓ -ẓ -Ẕ -ẕ - - diff --git a/docbook-xsl-1.75.2/common/pt_br.xml b/docbook-xsl-1.75.2/common/pt_br.xml deleted file mode 100644 index 536429a..0000000 --- a/docbook-xsl-1.75.2/common/pt_br.xml +++ /dev/null @@ -1,1230 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Symbols -A -a -À -à -à -á - -â -à -ã -Ä -ä -Ã… -Ã¥ -Ä€ -Ä -Ä‚ -ă -Ä„ -Ä… -Ç -ÇŽ -Çž -ÇŸ -Ç  -Ç¡ -Ǻ -Ç» -È€ -È -È‚ -ȃ -Ȧ -ȧ -Ḁ -Ḡ-ẚ -Ạ -ạ -Ả -ả -Ấ -ấ -Ầ -ầ -Ẩ -ẩ -Ẫ -ẫ -Ậ -ậ -Ắ -ắ -Ằ -ằ -Ẳ -ẳ -Ẵ -ẵ -Ặ -ặ -B -b -Æ€ -Æ -É“ -Æ‚ -ƃ -Ḃ -ḃ -Ḅ -ḅ -Ḇ -ḇ -C -c -Ç -ç -Ć -ć -Ĉ -ĉ -ÄŠ -Ä‹ -ÄŒ -Ä -Ƈ -ƈ -É• -Ḉ -ḉ -D -d -ÄŽ -Ä -Ä -Ä‘ -ÆŠ -É— -Æ‹ -ÆŒ -Ç… -Dz -È¡ -É– -Ḋ -ḋ -Ḍ -Ḡ-Ḏ -Ḡ-Ḡ-ḑ -Ḓ -ḓ -E -e -È -è -É -é -Ê -ê -Ë -ë -Ä’ -Ä“ -Ä” -Ä• -Ä– -Ä— -Ę -Ä™ -Äš -Ä› -È„ -È… -Ȇ -ȇ -Ȩ -È© -Ḕ -ḕ -Ḗ -ḗ -Ḙ -ḙ -Ḛ -ḛ -Ḝ -Ḡ-Ẹ -ẹ -Ẻ -ẻ -Ẽ -ẽ -Ế -ế -Ề -á» -Ể -ể -Ễ -á»… -Ệ -ệ -F -f -Æ‘ -Æ’ -Ḟ -ḟ -G -g -Äœ -Ä -Äž -ÄŸ -Ä  -Ä¡ -Ä¢ -Ä£ -Æ“ -É  -Ǥ -Ç¥ -Ǧ -ǧ -Ç´ -ǵ -Ḡ -ḡ -H -h -Ĥ -Ä¥ -Ħ -ħ -Èž -ÈŸ -ɦ -Ḣ -ḣ -Ḥ -ḥ -Ḧ -ḧ -Ḩ -ḩ -Ḫ -ḫ -ẖ -I -i -ÃŒ -ì -à -í -ÃŽ -î -à -ï -Ĩ -Ä© -Ī -Ä« -Ĭ -Ä­ -Ä® -į -Ä° -Æ— -ɨ -Ç -Ç -Ȉ -ȉ -ÈŠ -È‹ -Ḭ -ḭ -Ḯ -ḯ -Ỉ -ỉ -Ị -ị -J -j -Ä´ -ĵ -Ç° -Ê -K -k -Ķ -Ä· -Ƙ -Æ™ -Ǩ -Ç© -Ḱ -ḱ -Ḳ -ḳ -Ḵ -ḵ -L -l -Ĺ -ĺ -Ä» -ļ -Ľ -ľ -Ä¿ -Å€ -Å -Å‚ -Æš -Lj -È´ -É« -ɬ -É­ -Ḷ -ḷ -Ḹ -ḹ -Ḻ -ḻ -Ḽ -ḽ -M -m -ɱ -Ḿ -ḿ -á¹€ -á¹ -Ṃ -ṃ -N -n -Ñ -ñ -Ń -Å„ -Å… -ņ -Ň -ň -Æ -ɲ -Æž -È  -Ç‹ -Ǹ -ǹ -ȵ -ɳ -Ṅ -á¹… -Ṇ -ṇ -Ṉ -ṉ -Ṋ -ṋ -O -o -Ã’ -ò -Ó -ó -Ô -ô -Õ -õ -Ö -ö -Ø -ø -ÅŒ -Å -ÅŽ -Å -Å -Å‘ -ÆŸ -Æ  -Æ¡ -Ç‘ -Ç’ -Ǫ -Ç« -Ǭ -Ç­ -Ǿ -Ç¿ -ÈŒ -È -ÈŽ -È -Ȫ -È« -Ȭ -È­ -È® -ȯ -È° -ȱ -Ṍ -á¹ -Ṏ -á¹ -á¹ -ṑ -á¹’ -ṓ -Ọ -á» -Ỏ -á» -á» -ố -á»’ -ồ -á»” -ổ -á»– -á»— -Ộ -á»™ -Ớ -á»› -Ờ -á» -Ở -ở -á»  -ỡ -Ợ -ợ -P -p -Ƥ -Æ¥ -á¹” -ṕ -á¹– -á¹— -Q -q -Ê  -R -r -Å” -Å• -Å– -Å— -Ř -Å™ -È -È‘ -È’ -È“ -ɼ -ɽ -ɾ -Ṙ -á¹™ -Ṛ -á¹› -Ṝ -á¹ -Ṟ -ṟ -S -s -Åš -Å› -Åœ -Å -Åž -ÅŸ -Å  -Å¡ -Ș -È™ -Ê‚ -á¹  -ṡ -á¹¢ -á¹£ -Ṥ -á¹¥ -Ṧ -ṧ -Ṩ -ṩ -T -t -Å¢ -Å£ -Ť -Å¥ -Ŧ -ŧ -Æ« -Ƭ -Æ­ -Æ® -ʈ -Èš -È› -ȶ -Ṫ -ṫ -Ṭ -á¹­ -á¹® -ṯ -á¹° -á¹± -ẗ -U -u -Ù -ù -Ú -ú -Û -û -Ãœ -ü -Ũ -Å© -Ū -Å« -Ŭ -Å­ -Å® -ů -Å° -ű -Ų -ų -Ư -Æ° -Ç“ -Ç” -Ç• -Ç– -Ç— -ǘ -Ç™ -Çš -Ç› -Çœ -È” -È• -È– -È— -á¹² -á¹³ -á¹´ -á¹µ -Ṷ -á¹· -Ṹ -á¹¹ -Ṻ -á¹» -Ụ -ụ -Ủ -ủ -Ứ -ứ -Ừ -ừ -Ử -á»­ -á»® -ữ -á»° -á»± -V -v -Ʋ -Ê‹ -á¹¼ -á¹½ -á¹¾ -ṿ -W -w -Å´ -ŵ -Ẁ -Ạ-Ẃ -ẃ -Ẅ -ẅ -Ẇ -ẇ -Ẉ -ẉ -ẘ -X -x -Ẋ -ẋ -Ẍ -Ạ-Y -y -à -ý -ÿ -Ÿ -Ŷ -Å· -Ƴ -Æ´ -Ȳ -ȳ -Ẏ -Ạ-ẙ -Ỳ -ỳ -á»´ -ỵ -Ỷ -á»· -Ỹ -ỹ -Z -z -Ź -ź -Å» -ż -Ž -ž -Ƶ -ƶ -Ȥ -È¥ -Ê -Ê‘ -Ạ-ẑ -Ẓ -ẓ -Ẕ -ẕ - - diff --git a/docbook-xsl-1.75.2/common/refentry.xml b/docbook-xsl-1.75.2/common/refentry.xml deleted file mode 100644 index 4741ce0..0000000 --- a/docbook-xsl-1.75.2/common/refentry.xml +++ /dev/null @@ -1,781 +0,0 @@ - - - - - Common » Refentry Metadata Template Reference - - $Id: refentry.xsl 7867 2008-03-07 09:54:25Z xmldoc $ - - - - - Introduction - -This is technical reference documentation for the “refentry - metadata†templates in the DocBook XSL Stylesheets. - - -This is not intended to be user documentation. It is provided - for developers writing customization layers for the stylesheets. - - - -Currently, only the manpages stylesheets make use of these - templates. They are, however, potentially useful elsewhere. - - - - - - -get.refentry.metadata -Gathers metadata from a refentry and its ancestors - - -<xsl:template name="get.refentry.metadata"> -<xsl:param name="refname"/> -<xsl:param name="info"/> -<xsl:param name="prefs"/> - ... -</xsl:template> - -Description - -Reference documentation for particular commands, functions, - etc., is sometimes viewed in isolation from its greater "context". For - example, users view Unix man pages as, well, individual pages, not as - part of a "book" of some kind. Therefore, it is sometimes necessary to - embed "context" information in output for each refentry. - - - -However, one problem is that different users mark up that - context information in different ways. Often (usually), the - context information is not actually part of the content of the - refentry itself, but instead part of the content of a - parent or ancestor element to the refentry. And - even then, DocBook provides a variety of elements that users might - potentially use to mark up the same kind of information. One user - might use the productnumber element to mark up version - information about a particular product, while another might use - the releaseinfo element. - - - -Taking all that in mind, the - get.refentry.metadata template tries to gather - metadata from a refentry element and its ancestor - elements in an intelligent and user-configurable way. The basic - mechanism used in the XPath expressions throughout this stylesheet - is to select the relevant metadata from the *info element that is - closest to the actual refentry – either on the - refentry itself, or on its nearest ancestor. - - - - -The get.refentry.metadata - template is actually just sort of a "driver" template; it - calls other templates that do the actual data collection, - then returns the data as a set. - - - - Parameters - - - - refname - - -The first refname in the refentry - - - - - info - - -A set of info nodes (from a refentry - element and its ancestors) - - - - - prefs - - -A node containing user preferences (from global - stylesheet parameters) - - - - - - Returns - -Returns a node set with the following elements. The - descriptions are verbatim from the man(7) man - page. - - - - title - - -the title of the man page (e.g., MAN) - - - - - section - - -the section number the man page should be placed in (e.g., - 7) - - - - - date - - -the date of the last revision - - - - - source - - -the source of the command - - - - - manual - - -the title of the manual (e.g., Linux - Programmer's Manual) - - - - - - - - - - - -get.refentry.title -Gets title metadata for a refentry - - -<xsl:template name="get.refentry.title"> -<xsl:param name="refname"/> - ... -</xsl:template> - -Description - -The man(7) man page describes this as "the - title of the man page (e.g., MAN). This differs - from refname in that, if the refentry has a - refentrytitle, we use that as the title; - otherwise, we just use first refname in the first - refnamediv in the source. - - Parameters - - - - refname - - -The first refname in the refentry - - - - - - Returns - -Returns a title node. - - - - -get.refentry.section -Gets section metadata for a refentry - - -<xsl:template name="get.refentry.section"> -<xsl:param name="refname"/> -<xsl:param name="quiet" select="0"/> - ... -</xsl:template> - -Description - -The man(7) man page describes this as "the - section number the man page should be placed in (e.g., - 7)". If we do not find a manvolnum - specified in the source, and we find that the refentry is - for a function, we use the section number 3 - ["Library calls (functions within program libraries)"]; otherwise, we - default to using 1 ["Executable programs or shell - commands"]. - - Parameters - - - - refname - - -The first refname in the refentry - - - - - quiet - - -If non-zero, no "missing" message is emitted - - - - - - Returns - -Returns a string representing a section number. - - - - -get.refentry.date -Gets date metadata for a refentry - - -<xsl:template name="get.refentry.date"> -<xsl:param name="refname"/> -<xsl:param name="info"/> -<xsl:param name="prefs"/> - ... -</xsl:template> - -Description - -The man(7) man page describes this as "the - date of the last revision". If we cannot find a date in the source, we - generate one. - - Parameters - - - - refname - - -The first refname in the refentry - - - - - info - - -A set of info nodes (from a refentry - element and its ancestors) - - - - - prefs - - -A node containing users preferences (from global stylesheet parameters) - - - - - - Returns - -Returns a date node. - - - - - -get.refentry.source -Gets source metadata for a refentry - - -<xsl:template name="get.refentry.source"> -<xsl:param name="refname"/> -<xsl:param name="info"/> -<xsl:param name="prefs"/> - ... -</xsl:template> - -Description - -The man(7) man page describes this as "the - source of the command", and provides the following examples: - - - - -For binaries, use something like: GNU, NET-2, SLS - Distribution, MCC Distribution. - - - - -For system calls, use the version of the kernel that you are - currently looking at: Linux 0.99.11. - - - - -For library calls, use the source of the function: GNU, BSD - 4.3, Linux DLL 4.4.1. - - - - - - - - -The solbook(5) man page describes - something very much like what man(7) calls - "source", except that solbook(5) names it - "software" and describes it like this: -
- -This is the name of the software product that the topic - discussed on the reference page belongs to. For example UNIX - commands are part of the SunOS x.x - release. - -
-
- - - -In practice, there are many pages that simply have a version - number in the "source" field. So, it looks like what we have is a - two-part field, - Name Version, - where: - - - - Name - - -product name (e.g., BSD) or org. name (e.g., GNU) - - - - - Version - - -version name - - - - - - Each part is optional. If the Name is a - product name, then the Version is probably - the version of the product. Or there may be no - Name, in which case, if there is a - Version, it is probably the version of the - item itself, not the product it is part of. Or, if the - Name is an organization name, then there - probably will be no Version. - - -
Parameters - - - - refname - - -The first refname in the refentry - - - - - info - - -A set of info nodes (from a refentry - element and its ancestors) - - - - - prefs - - -A node containing users preferences (from global - stylesheet parameters) - - - - - - Returns - -Returns a source node. - -
- - - -get.refentry.source.name -Gets source-name metadata for a refentry - - -<xsl:template name="get.refentry.source.name"> -<xsl:param name="refname"/> -<xsl:param name="info"/> -<xsl:param name="prefs"/> - ... -</xsl:template> - -Description - -A "source name" is one part of a (potentially) two-part - Name Version - source field. For more details, see the documentation for the - get.refentry.source template. - - Parameters - - - - refname - - -The first refname in the refentry - - - - - info - - -A set of info nodes (from a refentry - element and its ancestors) - - - - - prefs - - -A node containing users preferences (from global - stylesheet parameters) - - - - - - Returns - -Depending on what output method is used for the - current stylesheet, either returns a text node or possibly an element - node, containing "source name" data. - - - - - -get.refentry.version -Gets version metadata for a refentry - - -<xsl:template name="get.refentry.version"> -<xsl:param name="refname"/> -<xsl:param name="info"/> -<xsl:param name="prefs"/> - ... -</xsl:template> - -Description - -A "version" is one part of a (potentially) two-part - Name Version - source field. For more details, see the documentation for the - get.refentry.source template. - - Parameters - - - - refname - - -The first refname in the refentry - - - - - info - - -A set of info nodes (from a refentry - element and its ancestors) - - - - - prefs - - -A node containing users preferences (from global - stylesheet parameters) - - - - - - Returns - -Depending on what output method is used for the - current stylesheet, either returns a text node or possibly an element - node, containing "version" data. - - - - - -get.refentry.manual -Gets source metadata for a refentry - - -<xsl:template name="get.refentry.manual"> -<xsl:param name="refname"/> -<xsl:param name="info"/> -<xsl:param name="prefs"/> - ... -</xsl:template> - -Description - -The man(7) man page describes this as "the - title of the manual (e.g., Linux Programmer's - Manual)". Here are some examples from existing man pages: - - - - -dpkg utilities - (dpkg-name) - - - - -User Contributed Perl Documentation - (GET) - - - - -GNU Development Tools - (ld) - - - - -Emperor Norton Utilities - (ddate) - - - - -Debian GNU/Linux manual - (faked) - - - - -GIMP Manual Pages - (gimp) - - - - -KDOC Documentation System - (qt2kdoc) - - - - - - - - -The solbook(5) man page describes - something very much like what man(7) calls - "manual", except that solbook(5) names it - "sectdesc" and describes it like this: -
- -This is the section title of the reference page; for - example User Commands. - -
-
- - -
Parameters - - - - refname - - -The first refname in the refentry - - - - - info - - -A set of info nodes (from a refentry - element and its ancestors) - - - - - prefs - - -A node containing users preferences (from global - stylesheet parameters) - - - - - - Returns - -Returns a manual node. - -
- - - -get.refentry.metadata.prefs -Gets user preferences for refentry metadata gathering - - -<xsl:template name="get.refentry.metadata.prefs"/> - -Description - -The DocBook XSL stylesheets include several user-configurable - global stylesheet parameters for controlling refentry - metadata gathering. Those parameters are not read directly by the - other refentry metadata-gathering - templates. Instead, they are read only by the - get.refentry.metadata.prefs template, - which assembles them into a structure that is then passed to - the other refentry metadata-gathering - templates. - - - -So the, get.refentry.metadata.prefs - template is the only interface to collecting stylesheet parameters for - controlling refentry metadata gathering. - - Parameters - -There are no local parameters for this template; however, it - does rely on a number of global parameters. - - Returns - -Returns a manual node. - - - - - -set.refentry.metadata -Sets content of a refentry metadata item - - -<xsl:template name="set.refentry.metadata"> -<xsl:param name="refname"/> -<xsl:param name="info"/> -<xsl:param name="contents"/> -<xsl:param name="context"/> -<xsl:param name="preferred"/> - ... -</xsl:template> - -Description - -The set.refentry.metadata template is - called each time a suitable source element is found for a certain - metadata field. - - Parameters - - - - refname - - -The first refname in the refentry - - - - - info - - -A single *info node that contains the selected source element. - - - - - contents - - -A node containing the selected source element. - - - - - context - - -A string describing the metadata context in which the - set.refentry.metadata template was - called: either "date", "source", "version", or "manual". - - - - - - Returns - -Returns formatted contents of a selected source element. - -
- diff --git a/docbook-xsl-1.75.2/common/refentry.xsl b/docbook-xsl-1.75.2/common/refentry.xsl deleted file mode 100644 index 5a04b60..0000000 --- a/docbook-xsl-1.75.2/common/refentry.xsl +++ /dev/null @@ -1,1352 +0,0 @@ - - - - - - - - - Common » Refentry Metadata Template Reference - - $Id: refentry.xsl 7867 2008-03-07 09:54:25Z xmldoc $ - - - - - Introduction - This is technical reference documentation for the “refentry - metadata†templates in the DocBook XSL Stylesheets. - This is not intended to be user documentation. It is provided - for developers writing customization layers for the stylesheets. - - Currently, only the manpages stylesheets make use of these - templates. They are, however, potentially useful elsewhere. - - - - - - - Gathers metadata from a refentry and its ancestors - - Reference documentation for particular commands, functions, - etc., is sometimes viewed in isolation from its greater "context". For - example, users view Unix man pages as, well, individual pages, not as - part of a "book" of some kind. Therefore, it is sometimes necessary to - embed "context" information in output for each refentry. - - However, one problem is that different users mark up that - context information in different ways. Often (usually), the - context information is not actually part of the content of the - refentry itself, but instead part of the content of a - parent or ancestor element to the refentry. And - even then, DocBook provides a variety of elements that users might - potentially use to mark up the same kind of information. One user - might use the productnumber element to mark up version - information about a particular product, while another might use - the releaseinfo element. - - Taking all that in mind, the - get.refentry.metadata template tries to gather - metadata from a refentry element and its ancestor - elements in an intelligent and user-configurable way. The basic - mechanism used in the XPath expressions throughout this stylesheet - is to select the relevant metadata from the *info element that is - closest to the actual refentry â€“ either on the - refentry itself, or on its nearest ancestor. - - - The get.refentry.metadata - template is actually just sort of a "driver" template; it - calls other templates that do the actual data collection, - then returns the data as a set. - - - - - - - refname - - The first refname in the refentry - - - - info - - A set of info nodes (from a refentry - element and its ancestors) - - - - prefs - - A node containing user preferences (from global - stylesheet parameters) - - - - - - Returns a node set with the following elements. The - descriptions are verbatim from the man(7) man - page. - - - title - - the title of the man page (e.g., MAN) - - - - section - - the section number the man page should be placed in (e.g., - 7) - - - - date - - the date of the last revision - - - - source - - the source of the command - - - - manual - - the title of the manual (e.g., Linux - Programmer's Manual) - - - - - - - - - - - - <xsl:call-template name="get.refentry.title"> - <xsl:with-param name="refname" select="$refname"/> - </xsl:call-template> - -
- - - -
- - - - - - - - - - - - - - - - - - - - - -
- - - - Gets title metadata for a refentry - - The man(7) man page describes this as "the - title of the man page (e.g., MAN). This differs - from refname in that, if the refentry has a - refentrytitle, we use that as the title; - otherwise, we just use first refname in the first - refnamediv in the source. - - - - - refname - - The first refname in the refentry - - - - - - Returns a title node. - - - - - - - - - - - - - - - - - - Gets section metadata for a refentry - - The man(7) man page describes this as "the - section number the man page should be placed in (e.g., - 7)". If we do not find a manvolnum - specified in the source, and we find that the refentry is - for a function, we use the section number 3 - ["Library calls (functions within program libraries)"]; otherwise, we - default to using 1 ["Executable programs or shell - commands"]. - - - - - refname - - The first refname in the refentry - - - - quiet - - If non-zero, no "missing" message is emitted - - - - - - Returns a string representing a section number. - - - - - - - - - - - - - Note - - meta manvol - - no refentry/refmeta/manvolnum - - - - Note - - meta manvol - - see http://docbook.sf.net/el/manvolnum - - - - - - - - - - Note - - meta manvol - - Setting man section to 3 - - - - - 3 - - - 1 - - - - - - - - - Gets date metadata for a refentry - - The man(7) man page describes this as "the - date of the last revision". If we cannot find a date in the source, we - generate one. - - - - - refname - - The first refname in the refentry - - - - info - - A set of info nodes (from a refentry - element and its ancestors) - - - - prefs - - A node containing users preferences (from global stylesheet parameters) - - - - - - Returns a date node. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Gets source metadata for a refentry - - The man(7) man page describes this as "the - source of the command", and provides the following examples: - - - For binaries, use something like: GNU, NET-2, SLS - Distribution, MCC Distribution. - - - For system calls, use the version of the kernel that you are - currently looking at: Linux 0.99.11. - - - For library calls, use the source of the function: GNU, BSD - 4.3, Linux DLL 4.4.1. - - - - - The solbook(5) man page describes - something very much like what man(7) calls - "source", except that solbook(5) names it - "software" and describes it like this: -
- This is the name of the software product that the topic - discussed on the reference page belongs to. For example UNIX - commands are part of the SunOS x.x - release. -
-
- - In practice, there are many pages that simply have a version - number in the "source" field. So, it looks like what we have is a - two-part field, - Name Version, - where: - - - Name - - product name (e.g., BSD) or org. name (e.g., GNU) - - - - Version - - version name - - - - Each part is optional. If the Name is a - product name, then the Version is probably - the version of the product. Or there may be no - Name, in which case, if there is a - Version, it is probably the version of the - item itself, not the product it is part of. Or, if the - Name is an organization name, then there - probably will be no Version. - -
- - - - refname - - The first refname in the refentry - - - - info - - A set of info nodes (from a refentry - element and its ancestors) - - - - prefs - - A node containing users preferences (from global - stylesheet parameters) - - - - - - Returns a source node. - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Warn - - meta source - - using - " - - " - for "source" - - - - - - - - [FIXME: source] - - - Warn - - meta source - - no fallback for source, so inserted a fixme - - - - - - - - - - [FIXME: source] - - - Warn - - meta source - - no source fallback given, so inserted a fixme - - - - - - - - - - Gets source-name metadata for a refentry - - A "source name" is one part of a (potentially) two-part - Name Version - source field. For more details, see the documentation for the - get.refentry.source template. - - - - - refname - - The first refname in the refentry - - - - info - - A set of info nodes (from a refentry - element and its ancestors) - - - - prefs - - A node containing users preferences (from global - stylesheet parameters) - - - - - - Depending on what output method is used for the - current stylesheet, either returns a text node or possibly an element - node, containing "source name" data. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - source - - - - - - - - source - productname - - - - - - - - source - productname - - - - - - - - source - productname - - - - - - - - source - productname - - - - - - - - source - productname - - - - - - - - - - - - - Note - - meta source - - no *info/productname or alternative - - - - Note - - meta source - - see http://docbook.sf.net/el/productname - - - - Note - - meta source - - no refentry/refmeta/refmiscinfo@class=source - - - - Note - - meta source - - see http://docbook.sf.net/el/refmiscinfo - - - - - - - Gets version metadata for a refentry - - A "version" is one part of a (potentially) two-part - Name Version - source field. For more details, see the documentation for the - get.refentry.source template. - - - - - refname - - The first refname in the refentry - - - - info - - A set of info nodes (from a refentry - element and its ancestors) - - - - prefs - - A node containing users preferences (from global - stylesheet parameters) - - - - - - Depending on what output method is used for the - current stylesheet, either returns a text node or possibly an element - node, containing "version" data. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - version - - - - - - - - version - productnumber - - - - - - - - version - productnumber - - - - - - - - - - - - - Note - - meta version - - no *info/productnumber or alternative - - - - Note - - meta version - - see http://docbook.sf.net/el/productnumber - - - - Note - - meta version - - no refentry/refmeta/refmiscinfo@class=version - - - - Note - - meta version - - see http://docbook.sf.net/el/refmiscinfo - - - - - - - Gets source metadata for a refentry - - The man(7) man page describes this as "the - title of the manual (e.g., Linux Programmer's - Manual)". Here are some examples from existing man pages: - - - dpkg utilities - (dpkg-name) - - - User Contributed Perl Documentation - (GET) - - - GNU Development Tools - (ld) - - - Emperor Norton Utilities - (ddate) - - - Debian GNU/Linux manual - (faked) - - - GIMP Manual Pages - (gimp) - - - KDOC Documentation System - (qt2kdoc) - - - - - The solbook(5) man page describes - something very much like what man(7) calls - "manual", except that solbook(5) names it - "sectdesc" and describes it like this: -
- This is the section title of the reference page; for - example User Commands. -
-
- -
- - - - refname - - The first refname in the refentry - - - - info - - A set of info nodes (from a refentry - element and its ancestors) - - - - prefs - - A node containing users preferences (from global - stylesheet parameters) - - - - - - Returns a manual node. - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - manual - - - - - - - - manual - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Warn - - meta manual - - using - " - - " - for "manual" - - - - - - - - [FIXME: manual] - - - Warn - - meta manual - - no fallback for manual, so inserted a fixme - - - - - - - - - - [FIXME: manual] - - - Warn - - meta manual - - no manual fallback given, so inserted a fixme - - - - - - - - - - - Note - - meta manual - - no titled ancestor of refentry - - - - Note - - meta manual - - no refentry/refmeta/refmiscinfo@class=manual - - - - Note - - meta manual - - see http://docbook.sf.net/el/refmiscinfo - - - - - - Gets user preferences for refentry metadata gathering - - The DocBook XSL stylesheets include several user-configurable - global stylesheet parameters for controlling refentry - metadata gathering. Those parameters are not read directly by the - other refentry metadata-gathering - templates. Instead, they are read only by the - get.refentry.metadata.prefs template, - which assembles them into a structure that is then passed to - the other refentry metadata-gathering - templates. - - So the, get.refentry.metadata.prefs - template is the only interface to collecting stylesheet parameters for - controlling refentry metadata gathering. - - - There are no local parameters for this template; however, it - does rely on a number of global parameters. - - - Returns a manual node. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Sets content of a refentry metadata item - - The set.refentry.metadata template is - called each time a suitable source element is found for a certain - metadata field. - - - - - refname - - The first refname in the refentry - - - - info - - A single *info node that contains the selected source element. - - - - contents - - A node containing the selected source element. - - - - context - - A string describing the metadata context in which the - set.refentry.metadata template was - called: either "date", "source", "version", or "manual". - - - - - - Returns formatted contents of a selected source element. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff --git a/docbook-xsl-1.75.2/common/ro.xml b/docbook-xsl-1.75.2/common/ro.xml deleted file mode 100644 index aa92d3e..0000000 --- a/docbook-xsl-1.75.2/common/ro.xml +++ /dev/null @@ -1,1230 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Symbols -A -a -À -à -à -á - -â -à -ã -Ä -ä -Ã… -Ã¥ -Ä€ -Ä -Ä‚ -ă -Ä„ -Ä… -Ç -ÇŽ -Çž -ÇŸ -Ç  -Ç¡ -Ǻ -Ç» -È€ -È -È‚ -ȃ -Ȧ -ȧ -Ḁ -Ḡ-ẚ -Ạ -ạ -Ả -ả -Ấ -ấ -Ầ -ầ -Ẩ -ẩ -Ẫ -ẫ -Ậ -ậ -Ắ -ắ -Ằ -ằ -Ẳ -ẳ -Ẵ -ẵ -Ặ -ặ -B -b -Æ€ -Æ -É“ -Æ‚ -ƃ -Ḃ -ḃ -Ḅ -ḅ -Ḇ -ḇ -C -c -Ç -ç -Ć -ć -Ĉ -ĉ -ÄŠ -Ä‹ -ÄŒ -Ä -Ƈ -ƈ -É• -Ḉ -ḉ -D -d -ÄŽ -Ä -Ä -Ä‘ -ÆŠ -É— -Æ‹ -ÆŒ -Ç… -Dz -È¡ -É– -Ḋ -ḋ -Ḍ -Ḡ-Ḏ -Ḡ-Ḡ-ḑ -Ḓ -ḓ -E -e -È -è -É -é -Ê -ê -Ë -ë -Ä’ -Ä“ -Ä” -Ä• -Ä– -Ä— -Ę -Ä™ -Äš -Ä› -È„ -È… -Ȇ -ȇ -Ȩ -È© -Ḕ -ḕ -Ḗ -ḗ -Ḙ -ḙ -Ḛ -ḛ -Ḝ -Ḡ-Ẹ -ẹ -Ẻ -ẻ -Ẽ -ẽ -Ế -ế -Ề -á» -Ể -ể -Ễ -á»… -Ệ -ệ -F -f -Æ‘ -Æ’ -Ḟ -ḟ -G -g -Äœ -Ä -Äž -ÄŸ -Ä  -Ä¡ -Ä¢ -Ä£ -Æ“ -É  -Ǥ -Ç¥ -Ǧ -ǧ -Ç´ -ǵ -Ḡ -ḡ -H -h -Ĥ -Ä¥ -Ħ -ħ -Èž -ÈŸ -ɦ -Ḣ -ḣ -Ḥ -ḥ -Ḧ -ḧ -Ḩ -ḩ -Ḫ -ḫ -ẖ -I -i -ÃŒ -ì -à -í -ÃŽ -î -à -ï -Ĩ -Ä© -Ī -Ä« -Ĭ -Ä­ -Ä® -į -Ä° -Æ— -ɨ -Ç -Ç -Ȉ -ȉ -ÈŠ -È‹ -Ḭ -ḭ -Ḯ -ḯ -Ỉ -ỉ -Ị -ị -J -j -Ä´ -ĵ -Ç° -Ê -K -k -Ķ -Ä· -Ƙ -Æ™ -Ǩ -Ç© -Ḱ -ḱ -Ḳ -ḳ -Ḵ -ḵ -L -l -Ĺ -ĺ -Ä» -ļ -Ľ -ľ -Ä¿ -Å€ -Å -Å‚ -Æš -Lj -È´ -É« -ɬ -É­ -Ḷ -ḷ -Ḹ -ḹ -Ḻ -ḻ -Ḽ -ḽ -M -m -ɱ -Ḿ -ḿ -á¹€ -á¹ -Ṃ -ṃ -N -n -Ñ -ñ -Ń -Å„ -Å… -ņ -Ň -ň -Æ -ɲ -Æž -È  -Ç‹ -Ǹ -ǹ -ȵ -ɳ -Ṅ -á¹… -Ṇ -ṇ -Ṉ -ṉ -Ṋ -ṋ -O -o -Ã’ -ò -Ó -ó -Ô -ô -Õ -õ -Ö -ö -Ø -ø -ÅŒ -Å -ÅŽ -Å -Å -Å‘ -ÆŸ -Æ  -Æ¡ -Ç‘ -Ç’ -Ǫ -Ç« -Ǭ -Ç­ -Ǿ -Ç¿ -ÈŒ -È -ÈŽ -È -Ȫ -È« -Ȭ -È­ -È® -ȯ -È° -ȱ -Ṍ -á¹ -Ṏ -á¹ -á¹ -ṑ -á¹’ -ṓ -Ọ -á» -Ỏ -á» -á» -ố -á»’ -ồ -á»” -ổ -á»– -á»— -Ộ -á»™ -Ớ -á»› -Ờ -á» -Ở -ở -á»  -ỡ -Ợ -ợ -P -p -Ƥ -Æ¥ -á¹” -ṕ -á¹– -á¹— -Q -q -Ê  -R -r -Å” -Å• -Å– -Å— -Ř -Å™ -È -È‘ -È’ -È“ -ɼ -ɽ -ɾ -Ṙ -á¹™ -Ṛ -á¹› -Ṝ -á¹ -Ṟ -ṟ -S -s -Åš -Å› -Åœ -Å -Åž -ÅŸ -Å  -Å¡ -Ș -È™ -Ê‚ -á¹  -ṡ -á¹¢ -á¹£ -Ṥ -á¹¥ -Ṧ -ṧ -Ṩ -ṩ -T -t -Å¢ -Å£ -Ť -Å¥ -Ŧ -ŧ -Æ« -Ƭ -Æ­ -Æ® -ʈ -Èš -È› -ȶ -Ṫ -ṫ -Ṭ -á¹­ -á¹® -ṯ -á¹° -á¹± -ẗ -U -u -Ù -ù -Ú -ú -Û -û -Ãœ -ü -Ũ -Å© -Ū -Å« -Ŭ -Å­ -Å® -ů -Å° -ű -Ų -ų -Ư -Æ° -Ç“ -Ç” -Ç• -Ç– -Ç— -ǘ -Ç™ -Çš -Ç› -Çœ -È” -È• -È– -È— -á¹² -á¹³ -á¹´ -á¹µ -Ṷ -á¹· -Ṹ -á¹¹ -Ṻ -á¹» -Ụ -ụ -Ủ -ủ -Ứ -ứ -Ừ -ừ -Ử -á»­ -á»® -ữ -á»° -á»± -V -v -Ʋ -Ê‹ -á¹¼ -á¹½ -á¹¾ -ṿ -W -w -Å´ -ŵ -Ẁ -Ạ-Ẃ -ẃ -Ẅ -ẅ -Ẇ -ẇ -Ẉ -ẉ -ẘ -X -x -Ẋ -ẋ -Ẍ -Ạ-Y -y -à -ý -ÿ -Ÿ -Ŷ -Å· -Ƴ -Æ´ -Ȳ -ȳ -Ẏ -Ạ-ẙ -Ỳ -ỳ -á»´ -ỵ -Ỷ -á»· -Ỹ -ỹ -Z -z -Ź -ź -Å» -ż -Ž -ž -Ƶ -ƶ -Ȥ -È¥ -Ê -Ê‘ -Ạ-ẑ -Ẓ -ẓ -Ẕ -ẕ - - diff --git a/docbook-xsl-1.75.2/common/ru.xml b/docbook-xsl-1.75.2/common/ru.xml deleted file mode 100644 index 23f4f4b..0000000 --- a/docbook-xsl-1.75.2/common/ru.xml +++ /dev/null @@ -1,727 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -A -a -B -b -C -c -D -d -E -e -F -f -G -g -H -h -I -i -J -j -K -k -L -l -M -m -N -n -O -o -P -p -Q -q -R -r -S -s -T -t -U -u -V -v -W -w -X -x -Y -y -Z -z -Ð -а -Б -б -Ð’ -в -Г -г -Д -д -Е -е -Ð -Ñ‘ -Ж -ж -З -з -И -и -Й -й -К -к -Л -л -Ðœ -м -Ð -н -О -о -П -п -Р -Ñ€ -С -Ñ -Т -Ñ‚ -У -у -Ф -Ñ„ -Ð¥ -Ñ… -Ц -ц -Ч -ч -Ш -ш -Щ -щ -Ъ -ÑŠ -Ы -Ñ‹ -Ь -ÑŒ -Э -Ñ -Ю -ÑŽ -Я -Ñ - - diff --git a/docbook-xsl-1.75.2/common/sk.xml b/docbook-xsl-1.75.2/common/sk.xml deleted file mode 100644 index 1c9cfd2..0000000 --- a/docbook-xsl-1.75.2/common/sk.xml +++ /dev/null @@ -1,1230 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Symbols -A -a -À -à -à -á - -â -à -ã -Ä -ä -Ã… -Ã¥ -Ä€ -Ä -Ä‚ -ă -Ä„ -Ä… -Ç -ÇŽ -Çž -ÇŸ -Ç  -Ç¡ -Ǻ -Ç» -È€ -È -È‚ -ȃ -Ȧ -ȧ -Ḁ -Ḡ-ẚ -Ạ -ạ -Ả -ả -Ấ -ấ -Ầ -ầ -Ẩ -ẩ -Ẫ -ẫ -Ậ -ậ -Ắ -ắ -Ằ -ằ -Ẳ -ẳ -Ẵ -ẵ -Ặ -ặ -B -b -Æ€ -Æ -É“ -Æ‚ -ƃ -Ḃ -ḃ -Ḅ -ḅ -Ḇ -ḇ -C -c -Ç -ç -Ć -ć -Ĉ -ĉ -ÄŠ -Ä‹ -ÄŒ -Ä -Ƈ -ƈ -É• -Ḉ -ḉ -D -d -ÄŽ -Ä -Ä -Ä‘ -ÆŠ -É— -Æ‹ -ÆŒ -Ç… -Dz -È¡ -É– -Ḋ -ḋ -Ḍ -Ḡ-Ḏ -Ḡ-Ḡ-ḑ -Ḓ -ḓ -E -e -È -è -É -é -Ê -ê -Ë -ë -Ä’ -Ä“ -Ä” -Ä• -Ä– -Ä— -Ę -Ä™ -Äš -Ä› -È„ -È… -Ȇ -ȇ -Ȩ -È© -Ḕ -ḕ -Ḗ -ḗ -Ḙ -ḙ -Ḛ -ḛ -Ḝ -Ḡ-Ẹ -ẹ -Ẻ -ẻ -Ẽ -ẽ -Ế -ế -Ề -á» -Ể -ể -Ễ -á»… -Ệ -ệ -F -f -Æ‘ -Æ’ -Ḟ -ḟ -G -g -Äœ -Ä -Äž -ÄŸ -Ä  -Ä¡ -Ä¢ -Ä£ -Æ“ -É  -Ǥ -Ç¥ -Ǧ -ǧ -Ç´ -ǵ -Ḡ -ḡ -H -h -Ĥ -Ä¥ -Ħ -ħ -Èž -ÈŸ -ɦ -Ḣ -ḣ -Ḥ -ḥ -Ḧ -ḧ -Ḩ -ḩ -Ḫ -ḫ -ẖ -I -i -ÃŒ -ì -à -í -ÃŽ -î -à -ï -Ĩ -Ä© -Ī -Ä« -Ĭ -Ä­ -Ä® -į -Ä° -Æ— -ɨ -Ç -Ç -Ȉ -ȉ -ÈŠ -È‹ -Ḭ -ḭ -Ḯ -ḯ -Ỉ -ỉ -Ị -ị -J -j -Ä´ -ĵ -Ç° -Ê -K -k -Ķ -Ä· -Ƙ -Æ™ -Ǩ -Ç© -Ḱ -ḱ -Ḳ -ḳ -Ḵ -ḵ -L -l -Ĺ -ĺ -Ä» -ļ -Ľ -ľ -Ä¿ -Å€ -Å -Å‚ -Æš -Lj -È´ -É« -ɬ -É­ -Ḷ -ḷ -Ḹ -ḹ -Ḻ -ḻ -Ḽ -ḽ -M -m -ɱ -Ḿ -ḿ -á¹€ -á¹ -Ṃ -ṃ -N -n -Ñ -ñ -Ń -Å„ -Å… -ņ -Ň -ň -Æ -ɲ -Æž -È  -Ç‹ -Ǹ -ǹ -ȵ -ɳ -Ṅ -á¹… -Ṇ -ṇ -Ṉ -ṉ -Ṋ -ṋ -O -o -Ã’ -ò -Ó -ó -Ô -ô -Õ -õ -Ö -ö -Ø -ø -ÅŒ -Å -ÅŽ -Å -Å -Å‘ -ÆŸ -Æ  -Æ¡ -Ç‘ -Ç’ -Ǫ -Ç« -Ǭ -Ç­ -Ǿ -Ç¿ -ÈŒ -È -ÈŽ -È -Ȫ -È« -Ȭ -È­ -È® -ȯ -È° -ȱ -Ṍ -á¹ -Ṏ -á¹ -á¹ -ṑ -á¹’ -ṓ -Ọ -á» -Ỏ -á» -á» -ố -á»’ -ồ -á»” -ổ -á»– -á»— -Ộ -á»™ -Ớ -á»› -Ờ -á» -Ở -ở -á»  -ỡ -Ợ -ợ -P -p -Ƥ -Æ¥ -á¹” -ṕ -á¹– -á¹— -Q -q -Ê  -R -r -Å” -Å• -Å– -Å— -Ř -Å™ -È -È‘ -È’ -È“ -ɼ -ɽ -ɾ -Ṙ -á¹™ -Ṛ -á¹› -Ṝ -á¹ -Ṟ -ṟ -S -s -Åš -Å› -Åœ -Å -Åž -ÅŸ -Å  -Å¡ -Ș -È™ -Ê‚ -á¹  -ṡ -á¹¢ -á¹£ -Ṥ -á¹¥ -Ṧ -ṧ -Ṩ -ṩ -T -t -Å¢ -Å£ -Ť -Å¥ -Ŧ -ŧ -Æ« -Ƭ -Æ­ -Æ® -ʈ -Èš -È› -ȶ -Ṫ -ṫ -Ṭ -á¹­ -á¹® -ṯ -á¹° -á¹± -ẗ -U -u -Ù -ù -Ú -ú -Û -û -Ãœ -ü -Ũ -Å© -Ū -Å« -Ŭ -Å­ -Å® -ů -Å° -ű -Ų -ų -Ư -Æ° -Ç“ -Ç” -Ç• -Ç– -Ç— -ǘ -Ç™ -Çš -Ç› -Çœ -È” -È• -È– -È— -á¹² -á¹³ -á¹´ -á¹µ -Ṷ -á¹· -Ṹ -á¹¹ -Ṻ -á¹» -Ụ -ụ -Ủ -ủ -Ứ -ứ -Ừ -ừ -Ử -á»­ -á»® -ữ -á»° -á»± -V -v -Ʋ -Ê‹ -á¹¼ -á¹½ -á¹¾ -ṿ -W -w -Å´ -ŵ -Ẁ -Ạ-Ẃ -ẃ -Ẅ -ẅ -Ẇ -ẇ -Ẉ -ẉ -ẘ -X -x -Ẋ -ẋ -Ẍ -Ạ-Y -y -à -ý -ÿ -Ÿ -Ŷ -Å· -Ƴ -Æ´ -Ȳ -ȳ -Ẏ -Ạ-ẙ -Ỳ -ỳ -á»´ -ỵ -Ỷ -á»· -Ỹ -ỹ -Z -z -Ź -ź -Å» -ż -Ž -ž -Ƶ -ƶ -Ȥ -È¥ -Ê -Ê‘ -Ạ-ẑ -Ẓ -ẓ -Ẕ -ẕ - - diff --git a/docbook-xsl-1.75.2/common/sl.xml b/docbook-xsl-1.75.2/common/sl.xml deleted file mode 100644 index 1b0685d..0000000 --- a/docbook-xsl-1.75.2/common/sl.xml +++ /dev/null @@ -1,1230 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Symbols -A -a -À -à -à -á - -â -à -ã -Ä -ä -Ã… -Ã¥ -Ä€ -Ä -Ä‚ -ă -Ä„ -Ä… -Ç -ÇŽ -Çž -ÇŸ -Ç  -Ç¡ -Ǻ -Ç» -È€ -È -È‚ -ȃ -Ȧ -ȧ -Ḁ -Ḡ-ẚ -Ạ -ạ -Ả -ả -Ấ -ấ -Ầ -ầ -Ẩ -ẩ -Ẫ -ẫ -Ậ -ậ -Ắ -ắ -Ằ -ằ -Ẳ -ẳ -Ẵ -ẵ -Ặ -ặ -B -b -Æ€ -Æ -É“ -Æ‚ -ƃ -Ḃ -ḃ -Ḅ -ḅ -Ḇ -ḇ -C -c -Ç -ç -Ć -ć -Ĉ -ĉ -ÄŠ -Ä‹ -ÄŒ -Ä -Ƈ -ƈ -É• -Ḉ -ḉ -D -d -ÄŽ -Ä -Ä -Ä‘ -ÆŠ -É— -Æ‹ -ÆŒ -Ç… -Dz -È¡ -É– -Ḋ -ḋ -Ḍ -Ḡ-Ḏ -Ḡ-Ḡ-ḑ -Ḓ -ḓ -E -e -È -è -É -é -Ê -ê -Ë -ë -Ä’ -Ä“ -Ä” -Ä• -Ä– -Ä— -Ę -Ä™ -Äš -Ä› -È„ -È… -Ȇ -ȇ -Ȩ -È© -Ḕ -ḕ -Ḗ -ḗ -Ḙ -ḙ -Ḛ -ḛ -Ḝ -Ḡ-Ẹ -ẹ -Ẻ -ẻ -Ẽ -ẽ -Ế -ế -Ề -á» -Ể -ể -Ễ -á»… -Ệ -ệ -F -f -Æ‘ -Æ’ -Ḟ -ḟ -G -g -Äœ -Ä -Äž -ÄŸ -Ä  -Ä¡ -Ä¢ -Ä£ -Æ“ -É  -Ǥ -Ç¥ -Ǧ -ǧ -Ç´ -ǵ -Ḡ -ḡ -H -h -Ĥ -Ä¥ -Ħ -ħ -Èž -ÈŸ -ɦ -Ḣ -ḣ -Ḥ -ḥ -Ḧ -ḧ -Ḩ -ḩ -Ḫ -ḫ -ẖ -I -i -ÃŒ -ì -à -í -ÃŽ -î -à -ï -Ĩ -Ä© -Ī -Ä« -Ĭ -Ä­ -Ä® -į -Ä° -Æ— -ɨ -Ç -Ç -Ȉ -ȉ -ÈŠ -È‹ -Ḭ -ḭ -Ḯ -ḯ -Ỉ -ỉ -Ị -ị -J -j -Ä´ -ĵ -Ç° -Ê -K -k -Ķ -Ä· -Ƙ -Æ™ -Ǩ -Ç© -Ḱ -ḱ -Ḳ -ḳ -Ḵ -ḵ -L -l -Ĺ -ĺ -Ä» -ļ -Ľ -ľ -Ä¿ -Å€ -Å -Å‚ -Æš -Lj -È´ -É« -ɬ -É­ -Ḷ -ḷ -Ḹ -ḹ -Ḻ -ḻ -Ḽ -ḽ -M -m -ɱ -Ḿ -ḿ -á¹€ -á¹ -Ṃ -ṃ -N -n -Ñ -ñ -Ń -Å„ -Å… -ņ -Ň -ň -Æ -ɲ -Æž -È  -Ç‹ -Ǹ -ǹ -ȵ -ɳ -Ṅ -á¹… -Ṇ -ṇ -Ṉ -ṉ -Ṋ -ṋ -O -o -Ã’ -ò -Ó -ó -Ô -ô -Õ -õ -Ö -ö -Ø -ø -ÅŒ -Å -ÅŽ -Å -Å -Å‘ -ÆŸ -Æ  -Æ¡ -Ç‘ -Ç’ -Ǫ -Ç« -Ǭ -Ç­ -Ǿ -Ç¿ -ÈŒ -È -ÈŽ -È -Ȫ -È« -Ȭ -È­ -È® -ȯ -È° -ȱ -Ṍ -á¹ -Ṏ -á¹ -á¹ -ṑ -á¹’ -ṓ -Ọ -á» -Ỏ -á» -á» -ố -á»’ -ồ -á»” -ổ -á»– -á»— -Ộ -á»™ -Ớ -á»› -Ờ -á» -Ở -ở -á»  -ỡ -Ợ -ợ -P -p -Ƥ -Æ¥ -á¹” -ṕ -á¹– -á¹— -Q -q -Ê  -R -r -Å” -Å• -Å– -Å— -Ř -Å™ -È -È‘ -È’ -È“ -ɼ -ɽ -ɾ -Ṙ -á¹™ -Ṛ -á¹› -Ṝ -á¹ -Ṟ -ṟ -S -s -Åš -Å› -Åœ -Å -Åž -ÅŸ -Å  -Å¡ -Ș -È™ -Ê‚ -á¹  -ṡ -á¹¢ -á¹£ -Ṥ -á¹¥ -Ṧ -ṧ -Ṩ -ṩ -T -t -Å¢ -Å£ -Ť -Å¥ -Ŧ -ŧ -Æ« -Ƭ -Æ­ -Æ® -ʈ -Èš -È› -ȶ -Ṫ -ṫ -Ṭ -á¹­ -á¹® -ṯ -á¹° -á¹± -ẗ -U -u -Ù -ù -Ú -ú -Û -û -Ãœ -ü -Ũ -Å© -Ū -Å« -Ŭ -Å­ -Å® -ů -Å° -ű -Ų -ų -Ư -Æ° -Ç“ -Ç” -Ç• -Ç– -Ç— -ǘ -Ç™ -Çš -Ç› -Çœ -È” -È• -È– -È— -á¹² -á¹³ -á¹´ -á¹µ -Ṷ -á¹· -Ṹ -á¹¹ -Ṻ -á¹» -Ụ -ụ -Ủ -ủ -Ứ -ứ -Ừ -ừ -Ử -á»­ -á»® -ữ -á»° -á»± -V -v -Ʋ -Ê‹ -á¹¼ -á¹½ -á¹¾ -ṿ -W -w -Å´ -ŵ -Ẁ -Ạ-Ẃ -ẃ -Ẅ -ẅ -Ẇ -ẇ -Ẉ -ẉ -ẘ -X -x -Ẋ -ẋ -Ẍ -Ạ-Y -y -à -ý -ÿ -Ÿ -Ŷ -Å· -Ƴ -Æ´ -Ȳ -ȳ -Ẏ -Ạ-ẙ -Ỳ -ỳ -á»´ -ỵ -Ỷ -á»· -Ỹ -ỹ -Z -z -Ź -ź -Å» -ż -Ž -ž -Ƶ -ƶ -Ȥ -È¥ -Ê -Ê‘ -Ạ-ẑ -Ẓ -ẓ -Ẕ -ẕ - - diff --git a/docbook-xsl-1.75.2/common/sq.xml b/docbook-xsl-1.75.2/common/sq.xml deleted file mode 100644 index 2f9275d..0000000 --- a/docbook-xsl-1.75.2/common/sq.xml +++ /dev/null @@ -1,1230 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Symbols -A -a -À -à -à -á - -â -à -ã -Ä -ä -Ã… -Ã¥ -Ä€ -Ä -Ä‚ -ă -Ä„ -Ä… -Ç -ÇŽ -Çž -ÇŸ -Ç  -Ç¡ -Ǻ -Ç» -È€ -È -È‚ -ȃ -Ȧ -ȧ -Ḁ -Ḡ-ẚ -Ạ -ạ -Ả -ả -Ấ -ấ -Ầ -ầ -Ẩ -ẩ -Ẫ -ẫ -Ậ -ậ -Ắ -ắ -Ằ -ằ -Ẳ -ẳ -Ẵ -ẵ -Ặ -ặ -B -b -Æ€ -Æ -É“ -Æ‚ -ƃ -Ḃ -ḃ -Ḅ -ḅ -Ḇ -ḇ -C -c -Ç -ç -Ć -ć -Ĉ -ĉ -ÄŠ -Ä‹ -ÄŒ -Ä -Ƈ -ƈ -É• -Ḉ -ḉ -D -d -ÄŽ -Ä -Ä -Ä‘ -ÆŠ -É— -Æ‹ -ÆŒ -Ç… -Dz -È¡ -É– -Ḋ -ḋ -Ḍ -Ḡ-Ḏ -Ḡ-Ḡ-ḑ -Ḓ -ḓ -E -e -È -è -É -é -Ê -ê -Ë -ë -Ä’ -Ä“ -Ä” -Ä• -Ä– -Ä— -Ę -Ä™ -Äš -Ä› -È„ -È… -Ȇ -ȇ -Ȩ -È© -Ḕ -ḕ -Ḗ -ḗ -Ḙ -ḙ -Ḛ -ḛ -Ḝ -Ḡ-Ẹ -ẹ -Ẻ -ẻ -Ẽ -ẽ -Ế -ế -Ề -á» -Ể -ể -Ễ -á»… -Ệ -ệ -F -f -Æ‘ -Æ’ -Ḟ -ḟ -G -g -Äœ -Ä -Äž -ÄŸ -Ä  -Ä¡ -Ä¢ -Ä£ -Æ“ -É  -Ǥ -Ç¥ -Ǧ -ǧ -Ç´ -ǵ -Ḡ -ḡ -H -h -Ĥ -Ä¥ -Ħ -ħ -Èž -ÈŸ -ɦ -Ḣ -ḣ -Ḥ -ḥ -Ḧ -ḧ -Ḩ -ḩ -Ḫ -ḫ -ẖ -I -i -ÃŒ -ì -à -í -ÃŽ -î -à -ï -Ĩ -Ä© -Ī -Ä« -Ĭ -Ä­ -Ä® -į -Ä° -Æ— -ɨ -Ç -Ç -Ȉ -ȉ -ÈŠ -È‹ -Ḭ -ḭ -Ḯ -ḯ -Ỉ -ỉ -Ị -ị -J -j -Ä´ -ĵ -Ç° -Ê -K -k -Ķ -Ä· -Ƙ -Æ™ -Ǩ -Ç© -Ḱ -ḱ -Ḳ -ḳ -Ḵ -ḵ -L -l -Ĺ -ĺ -Ä» -ļ -Ľ -ľ -Ä¿ -Å€ -Å -Å‚ -Æš -Lj -È´ -É« -ɬ -É­ -Ḷ -ḷ -Ḹ -ḹ -Ḻ -ḻ -Ḽ -ḽ -M -m -ɱ -Ḿ -ḿ -á¹€ -á¹ -Ṃ -ṃ -N -n -Ñ -ñ -Ń -Å„ -Å… -ņ -Ň -ň -Æ -ɲ -Æž -È  -Ç‹ -Ǹ -ǹ -ȵ -ɳ -Ṅ -á¹… -Ṇ -ṇ -Ṉ -ṉ -Ṋ -ṋ -O -o -Ã’ -ò -Ó -ó -Ô -ô -Õ -õ -Ö -ö -Ø -ø -ÅŒ -Å -ÅŽ -Å -Å -Å‘ -ÆŸ -Æ  -Æ¡ -Ç‘ -Ç’ -Ǫ -Ç« -Ǭ -Ç­ -Ǿ -Ç¿ -ÈŒ -È -ÈŽ -È -Ȫ -È« -Ȭ -È­ -È® -ȯ -È° -ȱ -Ṍ -á¹ -Ṏ -á¹ -á¹ -ṑ -á¹’ -ṓ -Ọ -á» -Ỏ -á» -á» -ố -á»’ -ồ -á»” -ổ -á»– -á»— -Ộ -á»™ -Ớ -á»› -Ờ -á» -Ở -ở -á»  -ỡ -Ợ -ợ -P -p -Ƥ -Æ¥ -á¹” -ṕ -á¹– -á¹— -Q -q -Ê  -R -r -Å” -Å• -Å– -Å— -Ř -Å™ -È -È‘ -È’ -È“ -ɼ -ɽ -ɾ -Ṙ -á¹™ -Ṛ -á¹› -Ṝ -á¹ -Ṟ -ṟ -S -s -Åš -Å› -Åœ -Å -Åž -ÅŸ -Å  -Å¡ -Ș -È™ -Ê‚ -á¹  -ṡ -á¹¢ -á¹£ -Ṥ -á¹¥ -Ṧ -ṧ -Ṩ -ṩ -T -t -Å¢ -Å£ -Ť -Å¥ -Ŧ -ŧ -Æ« -Ƭ -Æ­ -Æ® -ʈ -Èš -È› -ȶ -Ṫ -ṫ -Ṭ -á¹­ -á¹® -ṯ -á¹° -á¹± -ẗ -U -u -Ù -ù -Ú -ú -Û -û -Ãœ -ü -Ũ -Å© -Ū -Å« -Ŭ -Å­ -Å® -ů -Å° -ű -Ų -ų -Ư -Æ° -Ç“ -Ç” -Ç• -Ç– -Ç— -ǘ -Ç™ -Çš -Ç› -Çœ -È” -È• -È– -È— -á¹² -á¹³ -á¹´ -á¹µ -Ṷ -á¹· -Ṹ -á¹¹ -Ṻ -á¹» -Ụ -ụ -Ủ -ủ -Ứ -ứ -Ừ -ừ -Ử -á»­ -á»® -ữ -á»° -á»± -V -v -Ʋ -Ê‹ -á¹¼ -á¹½ -á¹¾ -ṿ -W -w -Å´ -ŵ -Ẁ -Ạ-Ẃ -ẃ -Ẅ -ẅ -Ẇ -ẇ -Ẉ -ẉ -ẘ -X -x -Ẋ -ẋ -Ẍ -Ạ-Y -y -à -ý -ÿ -Ÿ -Ŷ -Å· -Ƴ -Æ´ -Ȳ -ȳ -Ẏ -Ạ-ẙ -Ỳ -ỳ -á»´ -ỵ -Ỷ -á»· -Ỹ -ỹ -Z -z -Ź -ź -Å» -ż -Ž -ž -Ƶ -ƶ -Ȥ -È¥ -Ê -Ê‘ -Ạ-ẑ -Ẓ -ẓ -Ẕ -ẕ - - diff --git a/docbook-xsl-1.75.2/common/sr.xml b/docbook-xsl-1.75.2/common/sr.xml deleted file mode 100644 index 4b0bce2..0000000 --- a/docbook-xsl-1.75.2/common/sr.xml +++ /dev/null @@ -1,721 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Симболи -Ð -а -Б -б -Ð’ -в -Г -г -Д -д -Ђ -Ñ’ -Е -е -Ж -ж -З -з -И -и -Ј -ј -К -к -Л -л -Љ -Ñ™ -Ðœ -м -Ð -н -Њ -Ñš -О -о -П -п -Р -Ñ€ -С -Ñ -Т -Ñ‚ -Ћ -Ñ› -У -у -Ф -Ñ„ -Ð¥ -Ñ… -Ц -ц -Ч -ч -Ð -ÑŸ -Ш -ш -A -a -B -b -C -c -D -d -E -e -F -f -G -g -H -h -I -i -J -j -K -k -L -l -M -m -N -n -O -o -P -p -Q -Q -R -r -S -s -T -t -U -u -V -v -W -w -X -x -Y -y -Z -z - - diff --git a/docbook-xsl-1.75.2/common/sr_Latn.xml b/docbook-xsl-1.75.2/common/sr_Latn.xml deleted file mode 100644 index d3f2c3c..0000000 --- a/docbook-xsl-1.75.2/common/sr_Latn.xml +++ /dev/null @@ -1,680 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Simboli -A -a -B -b -C -c -ÄŒ -Ä -Ć -ć -D -d -DŽ -Dž -dž -Ä -Ä‘ -E -e -F -f -G -g -H -h -I -i -J -j -K -k -L -l -LJ -Lj -lj -M -m -N -n -NJ -Nj -nj -O -o -P -p -Q -Q -R -r -S -s -Å  -Å¡ -T -t -U -u -V -v -W -w -X -x -Y -y -Z -z -Ž -ž - - diff --git a/docbook-xsl-1.75.2/common/stripns.xsl b/docbook-xsl-1.75.2/common/stripns.xsl deleted file mode 100644 index bfedf7a..0000000 --- a/docbook-xsl-1.75.2/common/stripns.xsl +++ /dev/null @@ -1,330 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - info - - - objectinfo - - blockinfo - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - WARNING: cannot add @xml:base to node - set root element. - Relative paths may not work. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - / - - - - - - - - - - - - - - Stripping namespace from DocBook 5 document. - - - - Processing stripped document. - - - - - - - - - diff --git a/docbook-xsl-1.75.2/common/subtitles.xsl b/docbook-xsl-1.75.2/common/subtitles.xsl deleted file mode 100644 index 8211c84..0000000 --- a/docbook-xsl-1.75.2/common/subtitles.xsl +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - - - -Provides access to element subtitles - -Processing an element in the -subtitle.markup mode produces the -subtitle of the element. - - - - - - - Request for subtitle of unexpected element: - - - ???SUBTITLE??? - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/common/sv.xml b/docbook-xsl-1.75.2/common/sv.xml deleted file mode 100644 index 2ef0855..0000000 --- a/docbook-xsl-1.75.2/common/sv.xml +++ /dev/null @@ -1,665 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -A -a -B -b -C -c -D -d -E -e -F -f -G -g -H -h -I -i -J -j -K -k -L -l -M -m -N -n -O -o -P -p -Q -q -R -r -S -s -T -t -U -u -V -v -W -w -X -x -Y -y -Z -z -Ã… -Ã¥ -Ä -ä -Ö -ö - - diff --git a/docbook-xsl-1.75.2/common/ta.xml b/docbook-xsl-1.75.2/common/ta.xml deleted file mode 100644 index 69fd641..0000000 --- a/docbook-xsl-1.75.2/common/ta.xml +++ /dev/null @@ -1,1230 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Symbols -A -a -À -à -à -á - -â -à -ã -Ä -ä -Ã… -Ã¥ -Ä€ -Ä -Ä‚ -ă -Ä„ -Ä… -Ç -ÇŽ -Çž -ÇŸ -Ç  -Ç¡ -Ǻ -Ç» -È€ -È -È‚ -ȃ -Ȧ -ȧ -Ḁ -Ḡ-ẚ -Ạ -ạ -Ả -ả -Ấ -ấ -Ầ -ầ -Ẩ -ẩ -Ẫ -ẫ -Ậ -ậ -Ắ -ắ -Ằ -ằ -Ẳ -ẳ -Ẵ -ẵ -Ặ -ặ -B -b -Æ€ -Æ -É“ -Æ‚ -ƃ -Ḃ -ḃ -Ḅ -ḅ -Ḇ -ḇ -C -c -Ç -ç -Ć -ć -Ĉ -ĉ -ÄŠ -Ä‹ -ÄŒ -Ä -Ƈ -ƈ -É• -Ḉ -ḉ -D -d -ÄŽ -Ä -Ä -Ä‘ -ÆŠ -É— -Æ‹ -ÆŒ -Ç… -Dz -È¡ -É– -Ḋ -ḋ -Ḍ -Ḡ-Ḏ -Ḡ-Ḡ-ḑ -Ḓ -ḓ -E -e -È -è -É -é -Ê -ê -Ë -ë -Ä’ -Ä“ -Ä” -Ä• -Ä– -Ä— -Ę -Ä™ -Äš -Ä› -È„ -È… -Ȇ -ȇ -Ȩ -È© -Ḕ -ḕ -Ḗ -ḗ -Ḙ -ḙ -Ḛ -ḛ -Ḝ -Ḡ-Ẹ -ẹ -Ẻ -ẻ -Ẽ -ẽ -Ế -ế -Ề -á» -Ể -ể -Ễ -á»… -Ệ -ệ -F -f -Æ‘ -Æ’ -Ḟ -ḟ -G -g -Äœ -Ä -Äž -ÄŸ -Ä  -Ä¡ -Ä¢ -Ä£ -Æ“ -É  -Ǥ -Ç¥ -Ǧ -ǧ -Ç´ -ǵ -Ḡ -ḡ -H -h -Ĥ -Ä¥ -Ħ -ħ -Èž -ÈŸ -ɦ -Ḣ -ḣ -Ḥ -ḥ -Ḧ -ḧ -Ḩ -ḩ -Ḫ -ḫ -ẖ -I -i -ÃŒ -ì -à -í -ÃŽ -î -à -ï -Ĩ -Ä© -Ī -Ä« -Ĭ -Ä­ -Ä® -į -Ä° -Æ— -ɨ -Ç -Ç -Ȉ -ȉ -ÈŠ -È‹ -Ḭ -ḭ -Ḯ -ḯ -Ỉ -ỉ -Ị -ị -J -j -Ä´ -ĵ -Ç° -Ê -K -k -Ķ -Ä· -Ƙ -Æ™ -Ǩ -Ç© -Ḱ -ḱ -Ḳ -ḳ -Ḵ -ḵ -L -l -Ĺ -ĺ -Ä» -ļ -Ľ -ľ -Ä¿ -Å€ -Å -Å‚ -Æš -Lj -È´ -É« -ɬ -É­ -Ḷ -ḷ -Ḹ -ḹ -Ḻ -ḻ -Ḽ -ḽ -M -m -ɱ -Ḿ -ḿ -á¹€ -á¹ -Ṃ -ṃ -N -n -Ñ -ñ -Ń -Å„ -Å… -ņ -Ň -ň -Æ -ɲ -Æž -È  -Ç‹ -Ǹ -ǹ -ȵ -ɳ -Ṅ -á¹… -Ṇ -ṇ -Ṉ -ṉ -Ṋ -ṋ -O -o -Ã’ -ò -Ó -ó -Ô -ô -Õ -õ -Ö -ö -Ø -ø -ÅŒ -Å -ÅŽ -Å -Å -Å‘ -ÆŸ -Æ  -Æ¡ -Ç‘ -Ç’ -Ǫ -Ç« -Ǭ -Ç­ -Ǿ -Ç¿ -ÈŒ -È -ÈŽ -È -Ȫ -È« -Ȭ -È­ -È® -ȯ -È° -ȱ -Ṍ -á¹ -Ṏ -á¹ -á¹ -ṑ -á¹’ -ṓ -Ọ -á» -Ỏ -á» -á» -ố -á»’ -ồ -á»” -ổ -á»– -á»— -Ộ -á»™ -Ớ -á»› -Ờ -á» -Ở -ở -á»  -ỡ -Ợ -ợ -P -p -Ƥ -Æ¥ -á¹” -ṕ -á¹– -á¹— -Q -q -Ê  -R -r -Å” -Å• -Å– -Å— -Ř -Å™ -È -È‘ -È’ -È“ -ɼ -ɽ -ɾ -Ṙ -á¹™ -Ṛ -á¹› -Ṝ -á¹ -Ṟ -ṟ -S -s -Åš -Å› -Åœ -Å -Åž -ÅŸ -Å  -Å¡ -Ș -È™ -Ê‚ -á¹  -ṡ -á¹¢ -á¹£ -Ṥ -á¹¥ -Ṧ -ṧ -Ṩ -ṩ -T -t -Å¢ -Å£ -Ť -Å¥ -Ŧ -ŧ -Æ« -Ƭ -Æ­ -Æ® -ʈ -Èš -È› -ȶ -Ṫ -ṫ -Ṭ -á¹­ -á¹® -ṯ -á¹° -á¹± -ẗ -U -u -Ù -ù -Ú -ú -Û -û -Ãœ -ü -Ũ -Å© -Ū -Å« -Ŭ -Å­ -Å® -ů -Å° -ű -Ų -ų -Ư -Æ° -Ç“ -Ç” -Ç• -Ç– -Ç— -ǘ -Ç™ -Çš -Ç› -Çœ -È” -È• -È– -È— -á¹² -á¹³ -á¹´ -á¹µ -Ṷ -á¹· -Ṹ -á¹¹ -Ṻ -á¹» -Ụ -ụ -Ủ -ủ -Ứ -ứ -Ừ -ừ -Ử -á»­ -á»® -ữ -á»° -á»± -V -v -Ʋ -Ê‹ -á¹¼ -á¹½ -á¹¾ -ṿ -W -w -Å´ -ŵ -Ẁ -Ạ-Ẃ -ẃ -Ẅ -ẅ -Ẇ -ẇ -Ẉ -ẉ -ẘ -X -x -Ẋ -ẋ -Ẍ -Ạ-Y -y -à -ý -ÿ -Ÿ -Ŷ -Å· -Ƴ -Æ´ -Ȳ -ȳ -Ẏ -Ạ-ẙ -Ỳ -ỳ -á»´ -ỵ -Ỷ -á»· -Ỹ -ỹ -Z -z -Ź -ź -Å» -ż -Ž -ž -Ƶ -ƶ -Ȥ -È¥ -Ê -Ê‘ -Ạ-ẑ -Ẓ -ẓ -Ẕ -ẕ - - diff --git a/docbook-xsl-1.75.2/common/table.xsl b/docbook-xsl-1.75.2/common/table.xsl deleted file mode 100644 index aefdb07..0000000 --- a/docbook-xsl-1.75.2/common/table.xsl +++ /dev/null @@ -1,514 +0,0 @@ - - - - - - - - - - - 0: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0: - - - : - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - - - - -Determine the column number in which a given entry occurs - -If an entry has a -colname or -namest attribute, this template -will determine the number of the column in which the entry should occur. -For other entrys, nothing is returned. - - - -entry - -The entry-element which is to be tested. - - - - - - -This template returns the column number if it can be determined, -or 0 (the empty string) - - - - - - - - - - - - - - - - - - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - : - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/common/targetdatabase.dtd b/docbook-xsl-1.75.2/common/targetdatabase.dtd deleted file mode 100644 index 2ace1e0..0000000 --- a/docbook-xsl-1.75.2/common/targetdatabase.dtd +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/common/targets.xsl b/docbook-xsl-1.75.2/common/targets.xsl deleted file mode 100644 index 294c304..0000000 --- a/docbook-xsl-1.75.2/common/targets.xsl +++ /dev/null @@ -1,333 +0,0 @@ - - - - - - - - - - -Collects information for potential cross reference targets - -Processing the root element in the -collect.targets mode produces -a set of target database elements that can be used by -the olink mechanism to resolve external cross references. -The collection process is controlled by the -collect.xref.targets parameter, which can be -yes to collect targets and process -the document for output, only to -only collect the targets, and no -(default) to not collect the targets and only process the document. - - -A targets.filename parameter must be -specified to receive the output if -collect.xref.targets is -set to yes so as to -redirect the target data to a file separate from the -document output. - - - - - - - - - - - Must specify a $targets.filename parameter when - $collect.xref.targets is set to 'yes'. - The xref targets were not collected. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Warning: processing automatic glossary - without a glossary.collection file. - - - - - - Warning: processing automatic glossary but unable to - open glossary.collection file ' - - ' - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff --git a/docbook-xsl-1.75.2/common/th.xml b/docbook-xsl-1.75.2/common/th.xml deleted file mode 100644 index 2e4415a..0000000 --- a/docbook-xsl-1.75.2/common/th.xml +++ /dev/null @@ -1,1230 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Symbols -A -a -À -à -à -á - -â -à -ã -Ä -ä -Ã… -Ã¥ -Ä€ -Ä -Ä‚ -ă -Ä„ -Ä… -Ç -ÇŽ -Çž -ÇŸ -Ç  -Ç¡ -Ǻ -Ç» -È€ -È -È‚ -ȃ -Ȧ -ȧ -Ḁ -Ḡ-ẚ -Ạ -ạ -Ả -ả -Ấ -ấ -Ầ -ầ -Ẩ -ẩ -Ẫ -ẫ -Ậ -ậ -Ắ -ắ -Ằ -ằ -Ẳ -ẳ -Ẵ -ẵ -Ặ -ặ -B -b -Æ€ -Æ -É“ -Æ‚ -ƃ -Ḃ -ḃ -Ḅ -ḅ -Ḇ -ḇ -C -c -Ç -ç -Ć -ć -Ĉ -ĉ -ÄŠ -Ä‹ -ÄŒ -Ä -Ƈ -ƈ -É• -Ḉ -ḉ -D -d -ÄŽ -Ä -Ä -Ä‘ -ÆŠ -É— -Æ‹ -ÆŒ -Ç… -Dz -È¡ -É– -Ḋ -ḋ -Ḍ -Ḡ-Ḏ -Ḡ-Ḡ-ḑ -Ḓ -ḓ -E -e -È -è -É -é -Ê -ê -Ë -ë -Ä’ -Ä“ -Ä” -Ä• -Ä– -Ä— -Ę -Ä™ -Äš -Ä› -È„ -È… -Ȇ -ȇ -Ȩ -È© -Ḕ -ḕ -Ḗ -ḗ -Ḙ -ḙ -Ḛ -ḛ -Ḝ -Ḡ-Ẹ -ẹ -Ẻ -ẻ -Ẽ -ẽ -Ế -ế -Ề -á» -Ể -ể -Ễ -á»… -Ệ -ệ -F -f -Æ‘ -Æ’ -Ḟ -ḟ -G -g -Äœ -Ä -Äž -ÄŸ -Ä  -Ä¡ -Ä¢ -Ä£ -Æ“ -É  -Ǥ -Ç¥ -Ǧ -ǧ -Ç´ -ǵ -Ḡ -ḡ -H -h -Ĥ -Ä¥ -Ħ -ħ -Èž -ÈŸ -ɦ -Ḣ -ḣ -Ḥ -ḥ -Ḧ -ḧ -Ḩ -ḩ -Ḫ -ḫ -ẖ -I -i -ÃŒ -ì -à -í -ÃŽ -î -à -ï -Ĩ -Ä© -Ī -Ä« -Ĭ -Ä­ -Ä® -į -Ä° -Æ— -ɨ -Ç -Ç -Ȉ -ȉ -ÈŠ -È‹ -Ḭ -ḭ -Ḯ -ḯ -Ỉ -ỉ -Ị -ị -J -j -Ä´ -ĵ -Ç° -Ê -K -k -Ķ -Ä· -Ƙ -Æ™ -Ǩ -Ç© -Ḱ -ḱ -Ḳ -ḳ -Ḵ -ḵ -L -l -Ĺ -ĺ -Ä» -ļ -Ľ -ľ -Ä¿ -Å€ -Å -Å‚ -Æš -Lj -È´ -É« -ɬ -É­ -Ḷ -ḷ -Ḹ -ḹ -Ḻ -ḻ -Ḽ -ḽ -M -m -ɱ -Ḿ -ḿ -á¹€ -á¹ -Ṃ -ṃ -N -n -Ñ -ñ -Ń -Å„ -Å… -ņ -Ň -ň -Æ -ɲ -Æž -È  -Ç‹ -Ǹ -ǹ -ȵ -ɳ -Ṅ -á¹… -Ṇ -ṇ -Ṉ -ṉ -Ṋ -ṋ -O -o -Ã’ -ò -Ó -ó -Ô -ô -Õ -õ -Ö -ö -Ø -ø -ÅŒ -Å -ÅŽ -Å -Å -Å‘ -ÆŸ -Æ  -Æ¡ -Ç‘ -Ç’ -Ǫ -Ç« -Ǭ -Ç­ -Ǿ -Ç¿ -ÈŒ -È -ÈŽ -È -Ȫ -È« -Ȭ -È­ -È® -ȯ -È° -ȱ -Ṍ -á¹ -Ṏ -á¹ -á¹ -ṑ -á¹’ -ṓ -Ọ -á» -Ỏ -á» -á» -ố -á»’ -ồ -á»” -ổ -á»– -á»— -Ộ -á»™ -Ớ -á»› -Ờ -á» -Ở -ở -á»  -ỡ -Ợ -ợ -P -p -Ƥ -Æ¥ -á¹” -ṕ -á¹– -á¹— -Q -q -Ê  -R -r -Å” -Å• -Å– -Å— -Ř -Å™ -È -È‘ -È’ -È“ -ɼ -ɽ -ɾ -Ṙ -á¹™ -Ṛ -á¹› -Ṝ -á¹ -Ṟ -ṟ -S -s -Åš -Å› -Åœ -Å -Åž -ÅŸ -Å  -Å¡ -Ș -È™ -Ê‚ -á¹  -ṡ -á¹¢ -á¹£ -Ṥ -á¹¥ -Ṧ -ṧ -Ṩ -ṩ -T -t -Å¢ -Å£ -Ť -Å¥ -Ŧ -ŧ -Æ« -Ƭ -Æ­ -Æ® -ʈ -Èš -È› -ȶ -Ṫ -ṫ -Ṭ -á¹­ -á¹® -ṯ -á¹° -á¹± -ẗ -U -u -Ù -ù -Ú -ú -Û -û -Ãœ -ü -Ũ -Å© -Ū -Å« -Ŭ -Å­ -Å® -ů -Å° -ű -Ų -ų -Ư -Æ° -Ç“ -Ç” -Ç• -Ç– -Ç— -ǘ -Ç™ -Çš -Ç› -Çœ -È” -È• -È– -È— -á¹² -á¹³ -á¹´ -á¹µ -Ṷ -á¹· -Ṹ -á¹¹ -Ṻ -á¹» -Ụ -ụ -Ủ -ủ -Ứ -ứ -Ừ -ừ -Ử -á»­ -á»® -ữ -á»° -á»± -V -v -Ʋ -Ê‹ -á¹¼ -á¹½ -á¹¾ -ṿ -W -w -Å´ -ŵ -Ẁ -Ạ-Ẃ -ẃ -Ẅ -ẅ -Ẇ -ẇ -Ẉ -ẉ -ẘ -X -x -Ẋ -ẋ -Ẍ -Ạ-Y -y -à -ý -ÿ -Ÿ -Ŷ -Å· -Ƴ -Æ´ -Ȳ -ȳ -Ẏ -Ạ-ẙ -Ỳ -ỳ -á»´ -ỵ -Ỷ -á»· -Ỹ -ỹ -Z -z -Ź -ź -Å» -ż -Ž -ž -Ƶ -ƶ -Ȥ -È¥ -Ê -Ê‘ -Ạ-ẑ -Ẓ -ẓ -Ẕ -ẕ - - diff --git a/docbook-xsl-1.75.2/common/titles.xsl b/docbook-xsl-1.75.2/common/titles.xsl deleted file mode 100644 index 54e4c42..0000000 --- a/docbook-xsl-1.75.2/common/titles.xsl +++ /dev/null @@ -1,803 +0,0 @@ - - - - - - - - - - -Provides access to element titles - -Processing an element in the -title.markup mode produces the -title of the element. This does not include the label. - - - - - - - - - - - - - - - - - - - - - - - Request for title of element with no title: - - - - (id=" - - ") - - - (xml:id=" - - ") - - - - - ???TITLE??? - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - REFENTRY WITHOUT TITLE??? - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ERROR: glossdiv missing its required title - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Note - Important - Caution - Warning - Tip - - - - - - - - - - Question - - - - - Answer - - - - - Question - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Endterm points to nonexistent ID: - - - ??? - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - XRef to nonexistent id: - - - ??? - - - - - - - - - - Endterm points to nonexistent ID: - - - ??? - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/common/tl.xml b/docbook-xsl-1.75.2/common/tl.xml deleted file mode 100644 index 0673e6c..0000000 --- a/docbook-xsl-1.75.2/common/tl.xml +++ /dev/null @@ -1,1230 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Symbols -A -a -À -à -à -á - -â -à -ã -Ä -ä -Ã… -Ã¥ -Ä€ -Ä -Ä‚ -ă -Ä„ -Ä… -Ç -ÇŽ -Çž -ÇŸ -Ç  -Ç¡ -Ǻ -Ç» -È€ -È -È‚ -ȃ -Ȧ -ȧ -Ḁ -Ḡ-ẚ -Ạ -ạ -Ả -ả -Ấ -ấ -Ầ -ầ -Ẩ -ẩ -Ẫ -ẫ -Ậ -ậ -Ắ -ắ -Ằ -ằ -Ẳ -ẳ -Ẵ -ẵ -Ặ -ặ -B -b -Æ€ -Æ -É“ -Æ‚ -ƃ -Ḃ -ḃ -Ḅ -ḅ -Ḇ -ḇ -C -c -Ç -ç -Ć -ć -Ĉ -ĉ -ÄŠ -Ä‹ -ÄŒ -Ä -Ƈ -ƈ -É• -Ḉ -ḉ -D -d -ÄŽ -Ä -Ä -Ä‘ -ÆŠ -É— -Æ‹ -ÆŒ -Ç… -Dz -È¡ -É– -Ḋ -ḋ -Ḍ -Ḡ-Ḏ -Ḡ-Ḡ-ḑ -Ḓ -ḓ -E -e -È -è -É -é -Ê -ê -Ë -ë -Ä’ -Ä“ -Ä” -Ä• -Ä– -Ä— -Ę -Ä™ -Äš -Ä› -È„ -È… -Ȇ -ȇ -Ȩ -È© -Ḕ -ḕ -Ḗ -ḗ -Ḙ -ḙ -Ḛ -ḛ -Ḝ -Ḡ-Ẹ -ẹ -Ẻ -ẻ -Ẽ -ẽ -Ế -ế -Ề -á» -Ể -ể -Ễ -á»… -Ệ -ệ -F -f -Æ‘ -Æ’ -Ḟ -ḟ -G -g -Äœ -Ä -Äž -ÄŸ -Ä  -Ä¡ -Ä¢ -Ä£ -Æ“ -É  -Ǥ -Ç¥ -Ǧ -ǧ -Ç´ -ǵ -Ḡ -ḡ -H -h -Ĥ -Ä¥ -Ħ -ħ -Èž -ÈŸ -ɦ -Ḣ -ḣ -Ḥ -ḥ -Ḧ -ḧ -Ḩ -ḩ -Ḫ -ḫ -ẖ -I -i -ÃŒ -ì -à -í -ÃŽ -î -à -ï -Ĩ -Ä© -Ī -Ä« -Ĭ -Ä­ -Ä® -į -Ä° -Æ— -ɨ -Ç -Ç -Ȉ -ȉ -ÈŠ -È‹ -Ḭ -ḭ -Ḯ -ḯ -Ỉ -ỉ -Ị -ị -J -j -Ä´ -ĵ -Ç° -Ê -K -k -Ķ -Ä· -Ƙ -Æ™ -Ǩ -Ç© -Ḱ -ḱ -Ḳ -ḳ -Ḵ -ḵ -L -l -Ĺ -ĺ -Ä» -ļ -Ľ -ľ -Ä¿ -Å€ -Å -Å‚ -Æš -Lj -È´ -É« -ɬ -É­ -Ḷ -ḷ -Ḹ -ḹ -Ḻ -ḻ -Ḽ -ḽ -M -m -ɱ -Ḿ -ḿ -á¹€ -á¹ -Ṃ -ṃ -N -n -Ñ -ñ -Ń -Å„ -Å… -ņ -Ň -ň -Æ -ɲ -Æž -È  -Ç‹ -Ǹ -ǹ -ȵ -ɳ -Ṅ -á¹… -Ṇ -ṇ -Ṉ -ṉ -Ṋ -ṋ -O -o -Ã’ -ò -Ó -ó -Ô -ô -Õ -õ -Ö -ö -Ø -ø -ÅŒ -Å -ÅŽ -Å -Å -Å‘ -ÆŸ -Æ  -Æ¡ -Ç‘ -Ç’ -Ǫ -Ç« -Ǭ -Ç­ -Ǿ -Ç¿ -ÈŒ -È -ÈŽ -È -Ȫ -È« -Ȭ -È­ -È® -ȯ -È° -ȱ -Ṍ -á¹ -Ṏ -á¹ -á¹ -ṑ -á¹’ -ṓ -Ọ -á» -Ỏ -á» -á» -ố -á»’ -ồ -á»” -ổ -á»– -á»— -Ộ -á»™ -Ớ -á»› -Ờ -á» -Ở -ở -á»  -ỡ -Ợ -ợ -P -p -Ƥ -Æ¥ -á¹” -ṕ -á¹– -á¹— -Q -q -Ê  -R -r -Å” -Å• -Å– -Å— -Ř -Å™ -È -È‘ -È’ -È“ -ɼ -ɽ -ɾ -Ṙ -á¹™ -Ṛ -á¹› -Ṝ -á¹ -Ṟ -ṟ -S -s -Åš -Å› -Åœ -Å -Åž -ÅŸ -Å  -Å¡ -Ș -È™ -Ê‚ -á¹  -ṡ -á¹¢ -á¹£ -Ṥ -á¹¥ -Ṧ -ṧ -Ṩ -ṩ -T -t -Å¢ -Å£ -Ť -Å¥ -Ŧ -ŧ -Æ« -Ƭ -Æ­ -Æ® -ʈ -Èš -È› -ȶ -Ṫ -ṫ -Ṭ -á¹­ -á¹® -ṯ -á¹° -á¹± -ẗ -U -u -Ù -ù -Ú -ú -Û -û -Ãœ -ü -Ũ -Å© -Ū -Å« -Ŭ -Å­ -Å® -ů -Å° -ű -Ų -ų -Ư -Æ° -Ç“ -Ç” -Ç• -Ç– -Ç— -ǘ -Ç™ -Çš -Ç› -Çœ -È” -È• -È– -È— -á¹² -á¹³ -á¹´ -á¹µ -Ṷ -á¹· -Ṹ -á¹¹ -Ṻ -á¹» -Ụ -ụ -Ủ -ủ -Ứ -ứ -Ừ -ừ -Ử -á»­ -á»® -ữ -á»° -á»± -V -v -Ʋ -Ê‹ -á¹¼ -á¹½ -á¹¾ -ṿ -W -w -Å´ -ŵ -Ẁ -Ạ-Ẃ -ẃ -Ẅ -ẅ -Ẇ -ẇ -Ẉ -ẉ -ẘ -X -x -Ẋ -ẋ -Ẍ -Ạ-Y -y -à -ý -ÿ -Ÿ -Ŷ -Å· -Ƴ -Æ´ -Ȳ -ȳ -Ẏ -Ạ-ẙ -Ỳ -ỳ -á»´ -ỵ -Ỷ -á»· -Ỹ -ỹ -Z -z -Ź -ź -Å» -ż -Ž -ž -Ƶ -ƶ -Ȥ -È¥ -Ê -Ê‘ -Ạ-ẑ -Ẓ -ẓ -Ẕ -ẕ - - diff --git a/docbook-xsl-1.75.2/common/tr.xml b/docbook-xsl-1.75.2/common/tr.xml deleted file mode 100644 index 9b550bf..0000000 --- a/docbook-xsl-1.75.2/common/tr.xml +++ /dev/null @@ -1,667 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Semboller -A -a -B -b -C -c -Ç -ç -D -d -E -e -F -f -G -g -Äž -ÄŸ -H -h -I -ı -Ä° -i -J -j -K -k -L -l -M -m -N -n -O -o -Ö -ö -P -p -R -r -S -s -Åž -ÅŸ -T -t -U -u -Ãœ -ü -V -v -Y -y -Z -z - - diff --git a/docbook-xsl-1.75.2/common/uk.xml b/docbook-xsl-1.75.2/common/uk.xml deleted file mode 100644 index 16afb67..0000000 --- a/docbook-xsl-1.75.2/common/uk.xml +++ /dev/null @@ -1,727 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -A -a -B -b -C -c -D -d -E -e -F -f -G -g -H -h -I -i -J -j -K -k -L -l -M -m -N -n -O -o -P -p -Q -q -R -r -S -s -T -t -U -u -V -v -W -w -X -x -Y -y -Z -z -Ð -а -Б -б -Ð’ -в -Г -г -Ò -Ò‘ -Д -д -Е -е -Є -Ñ” -Ж -ж -З -з -И -и -І -Ñ– -Ї -Ñ— -Й -й -К -к -Л -л -Ðœ -м -Ð -н -О -о -П -п -Р -Ñ€ -С -Ñ -Т -Ñ‚ -У -у -Ф -Ñ„ -Ð¥ -Ñ… -Ц -ц -Ч -ч -Ш -ш -Щ -щ -Ь -ÑŒ -Ю -ÑŽ -Я -Ñ - - diff --git a/docbook-xsl-1.75.2/common/utility.xml b/docbook-xsl-1.75.2/common/utility.xml deleted file mode 100644 index d9cbe3c..0000000 --- a/docbook-xsl-1.75.2/common/utility.xml +++ /dev/null @@ -1,259 +0,0 @@ - - - - - Common » Utility Template Reference - - $Id: utility.xsl 7101 2007-07-20 15:32:12Z xmldoc $ - - - - - Introduction - -This is technical reference documentation for the - miscellaneous utility templates in the DocBook XSL - Stylesheets. - - - -These templates are defined in a separate file from the set - of “common†templates because some of the common templates - reference DocBook XSL stylesheet parameters, requiring the - entire set of parameters to be imported/included in any - stylesheet that imports/includes the common templates. - - -The utility templates don’t import or include any DocBook - XSL stylesheet parameters, so the utility templates can be used - without importing the whole set of parameters. - - - -This is not intended to be user documentation. It is - provided for developers writing customization layers for the - stylesheets. - - - - - -log.message -Logs/emits formatted notes and warnings - - -<xsl:template name="log.message"> -<xsl:param name="level"/> -<xsl:param name="source"/> -<xsl:param name="context-desc"/> -<xsl:param name="context-desc-field-length">12</xsl:param> -<xsl:param name="context-desc-padded"> - <xsl:if test="not($context-desc = '')"> - <xsl:call-template name="pad-string"> - <xsl:with-param name="leftRight">right</xsl:with-param> - <xsl:with-param name="padVar" select="substring($context-desc, 1, $context-desc-field-length)"/> - <xsl:with-param name="length" select="$context-desc-field-length"/> - </xsl:call-template> - </xsl:if> - </xsl:param> -<xsl:param name="message"/> -<xsl:param name="message-field-length" select="45"/> -<xsl:param name="message-padded"> - <xsl:variable name="spaces-for-blank-level"> - <!-- * if the level field is blank, we'll need to pad out --> - <!-- * the message field with spaces to compensate --> - <xsl:choose> - <xsl:when test="$level = ''"> - <xsl:value-of select="4 + 2"/> - <!-- * 4 = hard-coded length of comment text ("Note" or "Warn") --> - <!-- * + 2 = length of colon-plus-space separator ": " --> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="0"/> - </xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:variable name="spaces-for-blank-context-desc"> - <!-- * if the context-description field is blank, we'll need --> - <!-- * to pad out the message field with spaces to compensate --> - <xsl:choose> - <xsl:when test="$context-desc = ''"> - <xsl:value-of select="$context-desc-field-length + 2"/> - <!-- * + 2 = length of colon-plus-space separator ": " --> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="0"/> - </xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:variable name="extra-spaces" select="$spaces-for-blank-level + $spaces-for-blank-context-desc"/> - <xsl:call-template name="pad-string"> - <xsl:with-param name="leftRight">right</xsl:with-param> - <xsl:with-param name="padVar" select="substring($message, 1, ($message-field-length + $extra-spaces))"/> - <xsl:with-param name="length" select="$message-field-length + $extra-spaces"/> - </xsl:call-template> - </xsl:param> - ... -</xsl:template> - -Description - -The log.message template is a utility - template for logging/emitting formatted messages – that is, - notes and warnings, along with a given log “level†and an - identifier for the “source†that the message relates to. - - Parameters - - - level - - -Text to log/emit in the message-level field to - indicate the message level - (Note or - Warning) - - - - source - - -Text to log/emit in the source field to identify the - “source†to which the notification/warning relates. - This can be any arbitrary string, but because the - message lacks line and column numbers to identify the - exact part of the source document to which it - relates, the intention is that the value you pass - into the source parameter should - give the user some way to identify the portion of - their source document on which to take potentially - take action in response to the log message (for - example, to edit, change, or add content). - - -So the source value should be, - for example, an ID, book/chapter/article title, title - of some formal object, or even a string giving an - XPath expression. - - - - context-desc - - -Text to log/emit in the context-description field to - describe the context for the message. - - - - context-desc-field-length - - -Specifies length of the context-description field - (in characters); default is 12 - - -If the text specified by the - context-desc parameter is longer - than the number of characters specified in - context-desc-field-length, it is - truncated to context-desc-field-length - (12 characters by default). - - -If the specified text is shorter than - context-desc-field-length, - it is right-padded out to - context-desc-field-length (12 by - default). - - -If no value has been specified for the - context-desc parameter, the field is - left empty and the text of the log message begins with - the value of the message - parameter. - - - - message - - -Text to log/emit in the actual message field - - - - message-field-length - - -Specifies length of the message - field (in characters); default is 45 - - - - - - Returns - -Outputs a message (generally, to standard error). - - - - -get.doc.title -Gets a title from the current document - - -<xsl:template name="get.doc.title"/> - -Description - -The get.doc.title template is a - utility template for returning the first title found in the - current document. - - Returns - -Returns a string containing some identifying title for the - current document . - - - - -pad-string -Right-pads or left-pads a string out to a certain length - - -<xsl:template name="pad-string"> -<xsl:param name="padChar" select="' '"/> -<xsl:param name="leftRight">left</xsl:param> -<xsl:param name="padVar"/> -<xsl:param name="length"/> - ... -</xsl:template> - -Description - -This function takes string padVar and - pads it out in the direction rightLeft to - the string-length length, using string - padChar (a space character by default) as - the padding string (note that padChar can - be a string; it is not limited to just being a single - character). - - - -This function began as a copy of Nate Austin's - prepend-pad function in the Padding - Content section of Dave Pawson's XSLT - FAQ. - - - Returns - -Returns a (padded) string. - - - diff --git a/docbook-xsl-1.75.2/common/utility.xsl b/docbook-xsl-1.75.2/common/utility.xsl deleted file mode 100644 index 37092b7..0000000 --- a/docbook-xsl-1.75.2/common/utility.xsl +++ /dev/null @@ -1,290 +0,0 @@ - - - - - - - Common » Utility Template Reference - - $Id: utility.xsl 7101 2007-07-20 15:32:12Z xmldoc $ - - - - - Introduction - This is technical reference documentation for the - miscellaneous utility templates in the DocBook XSL - Stylesheets. - - These templates are defined in a separate file from the set - of “common†templates because some of the common templates - reference DocBook XSL stylesheet parameters, requiring the - entire set of parameters to be imported/included in any - stylesheet that imports/includes the common templates. - The utility templates don’t import or include any DocBook - XSL stylesheet parameters, so the utility templates can be used - without importing the whole set of parameters. - - This is not intended to be user documentation. It is - provided for developers writing customization layers for the - stylesheets. - - - - - - - Logs/emits formatted notes and warnings - - - The log.message template is a utility - template for logging/emitting formatted messages â€“ that is, - notes and warnings, along with a given log “level†and an - identifier for the “source†that the message relates to. - - - - - level - - Text to log/emit in the message-level field to - indicate the message level - (Note or - Warning) - - - source - - Text to log/emit in the source field to identify the - “source†to which the notification/warning relates. - This can be any arbitrary string, but because the - message lacks line and column numbers to identify the - exact part of the source document to which it - relates, the intention is that the value you pass - into the source parameter should - give the user some way to identify the portion of - their source document on which to take potentially - take action in response to the log message (for - example, to edit, change, or add content). - So the source value should be, - for example, an ID, book/chapter/article title, title - of some formal object, or even a string giving an - XPath expression. - - - context-desc - - Text to log/emit in the context-description field to - describe the context for the message. - - - context-desc-field-length - - Specifies length of the context-description field - (in characters); default is 12 - If the text specified by the - context-desc parameter is longer - than the number of characters specified in - context-desc-field-length, it is - truncated to context-desc-field-length - (12 characters by default). - If the specified text is shorter than - context-desc-field-length, - it is right-padded out to - context-desc-field-length (12 by - default). - If no value has been specified for the - context-desc parameter, the field is - left empty and the text of the log message begins with - the value of the message - parameter. - - - message - - Text to log/emit in the actual message field - - - message-field-length - - Specifies length of the message - field (in characters); default is 45 - - - - - - Outputs a message (generally, to standard error). - - - - - - 12 - - - - right - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - right - - - - - - - - - : - - - - : - - - - - - - - - - Gets a title from the current document - - The get.doc.title template is a - utility template for returning the first title found in the - current document. - - - Returns a string containing some identifying title for the - current document . - - - - - - - - - - - - - - - Right-pads or left-pads a string out to a certain length - - This function takes string padVar and - pads it out in the direction rightLeft to - the string-length length, using string - padChar (a space character by default) as - the padding string (note that padChar can - be a string; it is not limited to just being a single - character). - - This function began as a copy of Nate Austin's - prepend-pad function in the Padding - Content section of Dave Pawson's XSLT - FAQ. - - - - Returns a (padded) string. - - - - - - left - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/common/vi.xml b/docbook-xsl-1.75.2/common/vi.xml deleted file mode 100644 index 0979f70..0000000 --- a/docbook-xsl-1.75.2/common/vi.xml +++ /dev/null @@ -1,1230 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Symbols -A -a -À -à -à -á - -â -à -ã -Ä -ä -Ã… -Ã¥ -Ä€ -Ä -Ä‚ -ă -Ä„ -Ä… -Ç -ÇŽ -Çž -ÇŸ -Ç  -Ç¡ -Ǻ -Ç» -È€ -È -È‚ -ȃ -Ȧ -ȧ -Ḁ -Ḡ-ẚ -Ạ -ạ -Ả -ả -Ấ -ấ -Ầ -ầ -Ẩ -ẩ -Ẫ -ẫ -Ậ -ậ -Ắ -ắ -Ằ -ằ -Ẳ -ẳ -Ẵ -ẵ -Ặ -ặ -B -b -Æ€ -Æ -É“ -Æ‚ -ƃ -Ḃ -ḃ -Ḅ -ḅ -Ḇ -ḇ -C -c -Ç -ç -Ć -ć -Ĉ -ĉ -ÄŠ -Ä‹ -ÄŒ -Ä -Ƈ -ƈ -É• -Ḉ -ḉ -D -d -ÄŽ -Ä -Ä -Ä‘ -ÆŠ -É— -Æ‹ -ÆŒ -Ç… -Dz -È¡ -É– -Ḋ -ḋ -Ḍ -Ḡ-Ḏ -Ḡ-Ḡ-ḑ -Ḓ -ḓ -E -e -È -è -É -é -Ê -ê -Ë -ë -Ä’ -Ä“ -Ä” -Ä• -Ä– -Ä— -Ę -Ä™ -Äš -Ä› -È„ -È… -Ȇ -ȇ -Ȩ -È© -Ḕ -ḕ -Ḗ -ḗ -Ḙ -ḙ -Ḛ -ḛ -Ḝ -Ḡ-Ẹ -ẹ -Ẻ -ẻ -Ẽ -ẽ -Ế -ế -Ề -á» -Ể -ể -Ễ -á»… -Ệ -ệ -F -f -Æ‘ -Æ’ -Ḟ -ḟ -G -g -Äœ -Ä -Äž -ÄŸ -Ä  -Ä¡ -Ä¢ -Ä£ -Æ“ -É  -Ǥ -Ç¥ -Ǧ -ǧ -Ç´ -ǵ -Ḡ -ḡ -H -h -Ĥ -Ä¥ -Ħ -ħ -Èž -ÈŸ -ɦ -Ḣ -ḣ -Ḥ -ḥ -Ḧ -ḧ -Ḩ -ḩ -Ḫ -ḫ -ẖ -I -i -ÃŒ -ì -à -í -ÃŽ -î -à -ï -Ĩ -Ä© -Ī -Ä« -Ĭ -Ä­ -Ä® -į -Ä° -Æ— -ɨ -Ç -Ç -Ȉ -ȉ -ÈŠ -È‹ -Ḭ -ḭ -Ḯ -ḯ -Ỉ -ỉ -Ị -ị -J -j -Ä´ -ĵ -Ç° -Ê -K -k -Ķ -Ä· -Ƙ -Æ™ -Ǩ -Ç© -Ḱ -ḱ -Ḳ -ḳ -Ḵ -ḵ -L -l -Ĺ -ĺ -Ä» -ļ -Ľ -ľ -Ä¿ -Å€ -Å -Å‚ -Æš -Lj -È´ -É« -ɬ -É­ -Ḷ -ḷ -Ḹ -ḹ -Ḻ -ḻ -Ḽ -ḽ -M -m -ɱ -Ḿ -ḿ -á¹€ -á¹ -Ṃ -ṃ -N -n -Ñ -ñ -Ń -Å„ -Å… -ņ -Ň -ň -Æ -ɲ -Æž -È  -Ç‹ -Ǹ -ǹ -ȵ -ɳ -Ṅ -á¹… -Ṇ -ṇ -Ṉ -ṉ -Ṋ -ṋ -O -o -Ã’ -ò -Ó -ó -Ô -ô -Õ -õ -Ö -ö -Ø -ø -ÅŒ -Å -ÅŽ -Å -Å -Å‘ -ÆŸ -Æ  -Æ¡ -Ç‘ -Ç’ -Ǫ -Ç« -Ǭ -Ç­ -Ǿ -Ç¿ -ÈŒ -È -ÈŽ -È -Ȫ -È« -Ȭ -È­ -È® -ȯ -È° -ȱ -Ṍ -á¹ -Ṏ -á¹ -á¹ -ṑ -á¹’ -ṓ -Ọ -á» -Ỏ -á» -á» -ố -á»’ -ồ -á»” -ổ -á»– -á»— -Ộ -á»™ -Ớ -á»› -Ờ -á» -Ở -ở -á»  -ỡ -Ợ -ợ -P -p -Ƥ -Æ¥ -á¹” -ṕ -á¹– -á¹— -Q -q -Ê  -R -r -Å” -Å• -Å– -Å— -Ř -Å™ -È -È‘ -È’ -È“ -ɼ -ɽ -ɾ -Ṙ -á¹™ -Ṛ -á¹› -Ṝ -á¹ -Ṟ -ṟ -S -s -Åš -Å› -Åœ -Å -Åž -ÅŸ -Å  -Å¡ -Ș -È™ -Ê‚ -á¹  -ṡ -á¹¢ -á¹£ -Ṥ -á¹¥ -Ṧ -ṧ -Ṩ -ṩ -T -t -Å¢ -Å£ -Ť -Å¥ -Ŧ -ŧ -Æ« -Ƭ -Æ­ -Æ® -ʈ -Èš -È› -ȶ -Ṫ -ṫ -Ṭ -á¹­ -á¹® -ṯ -á¹° -á¹± -ẗ -U -u -Ù -ù -Ú -ú -Û -û -Ãœ -ü -Ũ -Å© -Ū -Å« -Ŭ -Å­ -Å® -ů -Å° -ű -Ų -ų -Ư -Æ° -Ç“ -Ç” -Ç• -Ç– -Ç— -ǘ -Ç™ -Çš -Ç› -Çœ -È” -È• -È– -È— -á¹² -á¹³ -á¹´ -á¹µ -Ṷ -á¹· -Ṹ -á¹¹ -Ṻ -á¹» -Ụ -ụ -Ủ -ủ -Ứ -ứ -Ừ -ừ -Ử -á»­ -á»® -ữ -á»° -á»± -V -v -Ʋ -Ê‹ -á¹¼ -á¹½ -á¹¾ -ṿ -W -w -Å´ -ŵ -Ẁ -Ạ-Ẃ -ẃ -Ẅ -ẅ -Ẇ -ẇ -Ẉ -ẉ -ẘ -X -x -Ẋ -ẋ -Ẍ -Ạ-Y -y -à -ý -ÿ -Ÿ -Ŷ -Å· -Ƴ -Æ´ -Ȳ -ȳ -Ẏ -Ạ-ẙ -Ỳ -ỳ -á»´ -ỵ -Ỷ -á»· -Ỹ -ỹ -Z -z -Ź -ź -Å» -ż -Ž -ž -Ƶ -ƶ -Ȥ -È¥ -Ê -Ê‘ -Ạ-ẑ -Ẓ -ẓ -Ẕ -ẕ - - diff --git a/docbook-xsl-1.75.2/common/xh.xml b/docbook-xsl-1.75.2/common/xh.xml deleted file mode 100644 index e1a3744..0000000 --- a/docbook-xsl-1.75.2/common/xh.xml +++ /dev/null @@ -1,1230 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Symbols -A -a -À -à -à -á - -â -à -ã -Ä -ä -Ã… -Ã¥ -Ä€ -Ä -Ä‚ -ă -Ä„ -Ä… -Ç -ÇŽ -Çž -ÇŸ -Ç  -Ç¡ -Ǻ -Ç» -È€ -È -È‚ -ȃ -Ȧ -ȧ -Ḁ -Ḡ-ẚ -Ạ -ạ -Ả -ả -Ấ -ấ -Ầ -ầ -Ẩ -ẩ -Ẫ -ẫ -Ậ -ậ -Ắ -ắ -Ằ -ằ -Ẳ -ẳ -Ẵ -ẵ -Ặ -ặ -B -b -Æ€ -Æ -É“ -Æ‚ -ƃ -Ḃ -ḃ -Ḅ -ḅ -Ḇ -ḇ -C -c -Ç -ç -Ć -ć -Ĉ -ĉ -ÄŠ -Ä‹ -ÄŒ -Ä -Ƈ -ƈ -É• -Ḉ -ḉ -D -d -ÄŽ -Ä -Ä -Ä‘ -ÆŠ -É— -Æ‹ -ÆŒ -Ç… -Dz -È¡ -É– -Ḋ -ḋ -Ḍ -Ḡ-Ḏ -Ḡ-Ḡ-ḑ -Ḓ -ḓ -E -e -È -è -É -é -Ê -ê -Ë -ë -Ä’ -Ä“ -Ä” -Ä• -Ä– -Ä— -Ę -Ä™ -Äš -Ä› -È„ -È… -Ȇ -ȇ -Ȩ -È© -Ḕ -ḕ -Ḗ -ḗ -Ḙ -ḙ -Ḛ -ḛ -Ḝ -Ḡ-Ẹ -ẹ -Ẻ -ẻ -Ẽ -ẽ -Ế -ế -Ề -á» -Ể -ể -Ễ -á»… -Ệ -ệ -F -f -Æ‘ -Æ’ -Ḟ -ḟ -G -g -Äœ -Ä -Äž -ÄŸ -Ä  -Ä¡ -Ä¢ -Ä£ -Æ“ -É  -Ǥ -Ç¥ -Ǧ -ǧ -Ç´ -ǵ -Ḡ -ḡ -H -h -Ĥ -Ä¥ -Ħ -ħ -Èž -ÈŸ -ɦ -Ḣ -ḣ -Ḥ -ḥ -Ḧ -ḧ -Ḩ -ḩ -Ḫ -ḫ -ẖ -I -i -ÃŒ -ì -à -í -ÃŽ -î -à -ï -Ĩ -Ä© -Ī -Ä« -Ĭ -Ä­ -Ä® -į -Ä° -Æ— -ɨ -Ç -Ç -Ȉ -ȉ -ÈŠ -È‹ -Ḭ -ḭ -Ḯ -ḯ -Ỉ -ỉ -Ị -ị -J -j -Ä´ -ĵ -Ç° -Ê -K -k -Ķ -Ä· -Ƙ -Æ™ -Ǩ -Ç© -Ḱ -ḱ -Ḳ -ḳ -Ḵ -ḵ -L -l -Ĺ -ĺ -Ä» -ļ -Ľ -ľ -Ä¿ -Å€ -Å -Å‚ -Æš -Lj -È´ -É« -ɬ -É­ -Ḷ -ḷ -Ḹ -ḹ -Ḻ -ḻ -Ḽ -ḽ -M -m -ɱ -Ḿ -ḿ -á¹€ -á¹ -Ṃ -ṃ -N -n -Ñ -ñ -Ń -Å„ -Å… -ņ -Ň -ň -Æ -ɲ -Æž -È  -Ç‹ -Ǹ -ǹ -ȵ -ɳ -Ṅ -á¹… -Ṇ -ṇ -Ṉ -ṉ -Ṋ -ṋ -O -o -Ã’ -ò -Ó -ó -Ô -ô -Õ -õ -Ö -ö -Ø -ø -ÅŒ -Å -ÅŽ -Å -Å -Å‘ -ÆŸ -Æ  -Æ¡ -Ç‘ -Ç’ -Ǫ -Ç« -Ǭ -Ç­ -Ǿ -Ç¿ -ÈŒ -È -ÈŽ -È -Ȫ -È« -Ȭ -È­ -È® -ȯ -È° -ȱ -Ṍ -á¹ -Ṏ -á¹ -á¹ -ṑ -á¹’ -ṓ -Ọ -á» -Ỏ -á» -á» -ố -á»’ -ồ -á»” -ổ -á»– -á»— -Ộ -á»™ -Ớ -á»› -Ờ -á» -Ở -ở -á»  -ỡ -Ợ -ợ -P -p -Ƥ -Æ¥ -á¹” -ṕ -á¹– -á¹— -Q -q -Ê  -R -r -Å” -Å• -Å– -Å— -Ř -Å™ -È -È‘ -È’ -È“ -ɼ -ɽ -ɾ -Ṙ -á¹™ -Ṛ -á¹› -Ṝ -á¹ -Ṟ -ṟ -S -s -Åš -Å› -Åœ -Å -Åž -ÅŸ -Å  -Å¡ -Ș -È™ -Ê‚ -á¹  -ṡ -á¹¢ -á¹£ -Ṥ -á¹¥ -Ṧ -ṧ -Ṩ -ṩ -T -t -Å¢ -Å£ -Ť -Å¥ -Ŧ -ŧ -Æ« -Ƭ -Æ­ -Æ® -ʈ -Èš -È› -ȶ -Ṫ -ṫ -Ṭ -á¹­ -á¹® -ṯ -á¹° -á¹± -ẗ -U -u -Ù -ù -Ú -ú -Û -û -Ãœ -ü -Ũ -Å© -Ū -Å« -Ŭ -Å­ -Å® -ů -Å° -ű -Ų -ų -Ư -Æ° -Ç“ -Ç” -Ç• -Ç– -Ç— -ǘ -Ç™ -Çš -Ç› -Çœ -È” -È• -È– -È— -á¹² -á¹³ -á¹´ -á¹µ -Ṷ -á¹· -Ṹ -á¹¹ -Ṻ -á¹» -Ụ -ụ -Ủ -ủ -Ứ -ứ -Ừ -ừ -Ử -á»­ -á»® -ữ -á»° -á»± -V -v -Ʋ -Ê‹ -á¹¼ -á¹½ -á¹¾ -ṿ -W -w -Å´ -ŵ -Ẁ -Ạ-Ẃ -ẃ -Ẅ -ẅ -Ẇ -ẇ -Ẉ -ẉ -ẘ -X -x -Ẋ -ẋ -Ẍ -Ạ-Y -y -à -ý -ÿ -Ÿ -Ŷ -Å· -Ƴ -Æ´ -Ȳ -ȳ -Ẏ -Ạ-ẙ -Ỳ -ỳ -á»´ -ỵ -Ỷ -á»· -Ỹ -ỹ -Z -z -Ź -ź -Å» -ż -Ž -ž -Ƶ -ƶ -Ȥ -È¥ -Ê -Ê‘ -Ạ-ẑ -Ẓ -ẓ -Ẕ -ẕ - - diff --git a/docbook-xsl-1.75.2/common/zh.xml b/docbook-xsl-1.75.2/common/zh.xml deleted file mode 100644 index 728225e..0000000 --- a/docbook-xsl-1.75.2/common/zh.xml +++ /dev/null @@ -1,661 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -ç¬¦å· -A -a -B -b -C -c -D -d -E -e -F -f -G -g -H -h -I -i -J -j -K -k -L -l -M -m -N -n -O -o -P -p -Q -q -R -r -S -s -T -t -U -u -V -v -W -w -X -x -Y -y -Z -z - - diff --git a/docbook-xsl-1.75.2/common/zh_cn.xml b/docbook-xsl-1.75.2/common/zh_cn.xml deleted file mode 100644 index 36a569c..0000000 --- a/docbook-xsl-1.75.2/common/zh_cn.xml +++ /dev/null @@ -1,661 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -ç¬¦å· -A -a -B -b -C -c -D -d -E -e -F -f -G -g -H -h -I -i -J -j -K -k -L -l -M -m -N -n -O -o -P -p -Q -q -R -r -S -s -T -t -U -u -V -v -W -w -X -x -Y -y -Z -z - - diff --git a/docbook-xsl-1.75.2/common/zh_tw.xml b/docbook-xsl-1.75.2/common/zh_tw.xml deleted file mode 100644 index 41a07c6..0000000 --- a/docbook-xsl-1.75.2/common/zh_tw.xml +++ /dev/null @@ -1,1230 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Symbols -A -a -À -à -à -á - -â -à -ã -Ä -ä -Ã… -Ã¥ -Ä€ -Ä -Ä‚ -ă -Ä„ -Ä… -Ç -ÇŽ -Çž -ÇŸ -Ç  -Ç¡ -Ǻ -Ç» -È€ -È -È‚ -ȃ -Ȧ -ȧ -Ḁ -Ḡ-ẚ -Ạ -ạ -Ả -ả -Ấ -ấ -Ầ -ầ -Ẩ -ẩ -Ẫ -ẫ -Ậ -ậ -Ắ -ắ -Ằ -ằ -Ẳ -ẳ -Ẵ -ẵ -Ặ -ặ -B -b -Æ€ -Æ -É“ -Æ‚ -ƃ -Ḃ -ḃ -Ḅ -ḅ -Ḇ -ḇ -C -c -Ç -ç -Ć -ć -Ĉ -ĉ -ÄŠ -Ä‹ -ÄŒ -Ä -Ƈ -ƈ -É• -Ḉ -ḉ -D -d -ÄŽ -Ä -Ä -Ä‘ -ÆŠ -É— -Æ‹ -ÆŒ -Ç… -Dz -È¡ -É– -Ḋ -ḋ -Ḍ -Ḡ-Ḏ -Ḡ-Ḡ-ḑ -Ḓ -ḓ -E -e -È -è -É -é -Ê -ê -Ë -ë -Ä’ -Ä“ -Ä” -Ä• -Ä– -Ä— -Ę -Ä™ -Äš -Ä› -È„ -È… -Ȇ -ȇ -Ȩ -È© -Ḕ -ḕ -Ḗ -ḗ -Ḙ -ḙ -Ḛ -ḛ -Ḝ -Ḡ-Ẹ -ẹ -Ẻ -ẻ -Ẽ -ẽ -Ế -ế -Ề -á» -Ể -ể -Ễ -á»… -Ệ -ệ -F -f -Æ‘ -Æ’ -Ḟ -ḟ -G -g -Äœ -Ä -Äž -ÄŸ -Ä  -Ä¡ -Ä¢ -Ä£ -Æ“ -É  -Ǥ -Ç¥ -Ǧ -ǧ -Ç´ -ǵ -Ḡ -ḡ -H -h -Ĥ -Ä¥ -Ħ -ħ -Èž -ÈŸ -ɦ -Ḣ -ḣ -Ḥ -ḥ -Ḧ -ḧ -Ḩ -ḩ -Ḫ -ḫ -ẖ -I -i -ÃŒ -ì -à -í -ÃŽ -î -à -ï -Ĩ -Ä© -Ī -Ä« -Ĭ -Ä­ -Ä® -į -Ä° -Æ— -ɨ -Ç -Ç -Ȉ -ȉ -ÈŠ -È‹ -Ḭ -ḭ -Ḯ -ḯ -Ỉ -ỉ -Ị -ị -J -j -Ä´ -ĵ -Ç° -Ê -K -k -Ķ -Ä· -Ƙ -Æ™ -Ǩ -Ç© -Ḱ -ḱ -Ḳ -ḳ -Ḵ -ḵ -L -l -Ĺ -ĺ -Ä» -ļ -Ľ -ľ -Ä¿ -Å€ -Å -Å‚ -Æš -Lj -È´ -É« -ɬ -É­ -Ḷ -ḷ -Ḹ -ḹ -Ḻ -ḻ -Ḽ -ḽ -M -m -ɱ -Ḿ -ḿ -á¹€ -á¹ -Ṃ -ṃ -N -n -Ñ -ñ -Ń -Å„ -Å… -ņ -Ň -ň -Æ -ɲ -Æž -È  -Ç‹ -Ǹ -ǹ -ȵ -ɳ -Ṅ -á¹… -Ṇ -ṇ -Ṉ -ṉ -Ṋ -ṋ -O -o -Ã’ -ò -Ó -ó -Ô -ô -Õ -õ -Ö -ö -Ø -ø -ÅŒ -Å -ÅŽ -Å -Å -Å‘ -ÆŸ -Æ  -Æ¡ -Ç‘ -Ç’ -Ǫ -Ç« -Ǭ -Ç­ -Ǿ -Ç¿ -ÈŒ -È -ÈŽ -È -Ȫ -È« -Ȭ -È­ -È® -ȯ -È° -ȱ -Ṍ -á¹ -Ṏ -á¹ -á¹ -ṑ -á¹’ -ṓ -Ọ -á» -Ỏ -á» -á» -ố -á»’ -ồ -á»” -ổ -á»– -á»— -Ộ -á»™ -Ớ -á»› -Ờ -á» -Ở -ở -á»  -ỡ -Ợ -ợ -P -p -Ƥ -Æ¥ -á¹” -ṕ -á¹– -á¹— -Q -q -Ê  -R -r -Å” -Å• -Å– -Å— -Ř -Å™ -È -È‘ -È’ -È“ -ɼ -ɽ -ɾ -Ṙ -á¹™ -Ṛ -á¹› -Ṝ -á¹ -Ṟ -ṟ -S -s -Åš -Å› -Åœ -Å -Åž -ÅŸ -Å  -Å¡ -Ș -È™ -Ê‚ -á¹  -ṡ -á¹¢ -á¹£ -Ṥ -á¹¥ -Ṧ -ṧ -Ṩ -ṩ -T -t -Å¢ -Å£ -Ť -Å¥ -Ŧ -ŧ -Æ« -Ƭ -Æ­ -Æ® -ʈ -Èš -È› -ȶ -Ṫ -ṫ -Ṭ -á¹­ -á¹® -ṯ -á¹° -á¹± -ẗ -U -u -Ù -ù -Ú -ú -Û -û -Ãœ -ü -Ũ -Å© -Ū -Å« -Ŭ -Å­ -Å® -ů -Å° -ű -Ų -ų -Ư -Æ° -Ç“ -Ç” -Ç• -Ç– -Ç— -ǘ -Ç™ -Çš -Ç› -Çœ -È” -È• -È– -È— -á¹² -á¹³ -á¹´ -á¹µ -Ṷ -á¹· -Ṹ -á¹¹ -Ṻ -á¹» -Ụ -ụ -Ủ -ủ -Ứ -ứ -Ừ -ừ -Ử -á»­ -á»® -ữ -á»° -á»± -V -v -Ʋ -Ê‹ -á¹¼ -á¹½ -á¹¾ -ṿ -W -w -Å´ -ŵ -Ẁ -Ạ-Ẃ -ẃ -Ẅ -ẅ -Ẇ -ẇ -Ẉ -ẉ -ẘ -X -x -Ẋ -ẋ -Ẍ -Ạ-Y -y -à -ý -ÿ -Ÿ -Ŷ -Å· -Ƴ -Æ´ -Ȳ -ȳ -Ẏ -Ạ-ẙ -Ỳ -ỳ -á»´ -ỵ -Ỷ -á»· -Ỹ -ỹ -Z -z -Ź -ź -Å» -ż -Ž -ž -Ƶ -ƶ -Ȥ -È¥ -Ê -Ê‘ -Ạ-ẑ -Ẓ -ẓ -Ẕ -ẕ - - diff --git a/docbook-xsl-1.75.2/docsrc/authors.xml b/docbook-xsl-1.75.2/docsrc/authors.xml deleted file mode 100644 index ea4bf02..0000000 --- a/docbook-xsl-1.75.2/docsrc/authors.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - WalshNorman - - - - The DocBook Project - - diff --git a/docbook-xsl-1.75.2/docsrc/copyright.xml b/docbook-xsl-1.75.2/docsrc/copyright.xml deleted file mode 100644 index 505f7f8..0000000 --- a/docbook-xsl-1.75.2/docsrc/copyright.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - 1999-2007 - Norman Walsh - - - 2003 - Jiří Kosek - - - 2004-2007 - Steve Ball - - - 2001-2007 - The DocBook Project - - diff --git a/docbook-xsl-1.75.2/docsrc/license.xml b/docbook-xsl-1.75.2/docsrc/license.xml deleted file mode 100644 index c265ce8..0000000 --- a/docbook-xsl-1.75.2/docsrc/license.xml +++ /dev/null @@ -1,23 +0,0 @@ -License -Permission is hereby granted, free of charge, to any person -obtaining a copy of this software and associated documentation files -(the Software), to deal in the Software without -restriction, including without limitation the rights to use, copy, -modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished -to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. -Except as contained in this notice, the names of individuals -credited with contribution to this software shall not be used in -advertising or otherwise to promote the sale, use or other dealings in -this Software without prior written authorization from the individuals -in question. -Any stylesheet derived from this Software that is publically -distributed will be identified with a different name and the version -strings in any derived Software will be changed so that no possibility -of confusion between the derived package and this Software will -exist. - diff --git a/docbook-xsl-1.75.2/docsrc/page.png b/docbook-xsl-1.75.2/docsrc/page.png deleted file mode 100644 index 9c15d88..0000000 Binary files a/docbook-xsl-1.75.2/docsrc/page.png and /dev/null differ diff --git a/docbook-xsl-1.75.2/docsrc/reference.css b/docbook-xsl-1.75.2/docsrc/reference.css deleted file mode 100644 index 9e7e511..0000000 --- a/docbook-xsl-1.75.2/docsrc/reference.css +++ /dev/null @@ -1,79 +0,0 @@ -/* reference.css, a stylesheet for reference documentation - * generated by the DocBook XSL Stylesheets */ -/* $Id: reference.css 8234 2009-02-09 12:10:48Z xmldoc $ */ - -div.legalnotice { - font-size: 80%; -} - -div.note, div.tip, div.warning { - margin-left: 5%; - margin-right: 10%; - padding: 5px; -} - -div.note, div.tip { - border-left: solid #d5dee3 20px; - border-right: solid #d5dee3 20px; -} - -div.note, div.tip { - border-left: solid palegreen 20px; - border-right: solid palegreen 20px; -} - -div.warning { - border-left: solid yellow 20px; - border-right: solid yellow 20px; -} - -div.note p, div.tip p, div.warning p { - margin-top: 0px; - margin-bottom: 4px; -} - -div.note h3, div.tip h3, div.warning h3 { - margin-top: 0; -} - -div.informalexample { - background-color: #d5dee3; - border-top-width: 2px; - border-top-style: double; - border-top-color: #d3d3d3; - border-bottom-width: 2px; - border-bottom-style: double; - border-bottom-color: #d3d3d3; - padding: 4px; - margin: 0em; - margin-left: 2em; -} - -pre.programlisting, pre.synopsis { - whitespace: pre; - font-family: monospace; - background-color: #d5dee3; - border-top-width: 1px; - border-top-style: single; - border-top-color: #d3d3d3; - border-bottom-width: 1px; - border-bottom-style: single; - border-bottom-color: #d3d3d3; - padding: 4px; - margin: 0em; - margin-top: 6px; - margin-bottom: 6px; -} - -div.informalexample pre { - whitespace: pre; - font-family: monospace; - border-top-width: 0px; - border-bottom-width: 0px; - padding: 0px; -} - -/* Parameter and PI titles */ - div.refnamediv h2 { - font-size: 2em; -} diff --git a/docbook-xsl-1.75.2/docsrc/reference.xml b/docbook-xsl-1.75.2/docsrc/reference.xml deleted file mode 100644 index 7d49306..0000000 --- a/docbook-xsl-1.75.2/docsrc/reference.xml +++ /dev/null @@ -1,229 +0,0 @@ - - - - - - - - - - - DocBook XSL Stylesheets: Reference Documentation - $Id: reference.xml 8321 2009-03-12 18:20:36Z mzjn $ - - - - - - About this document - This is generated reference documentation for the DocBook - XSL stylesheets. It is available in the following formats: - - - HTML, - PDF, - plain text - - - This is primarily documentation on the parameters and processing instructions you can use - to control the behavior of the stylesheets. - - This is purely reference documentation â€“ not how-to - documentation. For a thorough step-by-step how-to guide to - publishing content using the DocBook XSL stylesheets, see - Bob Stayton’s DocBook XSL: The Complete Guide, available online - at http://www.sagehill.net/docbookxsl/index.html - - - This document is divided into three sets of references: - the first two sets provides user documentation; the third, - developer documentation. - - - DocBook XSL Stylesheets User Reference: Parameters - - - This is generated reference documentation for all - user-configurable parameters in the DocBook XSL - stylesheets. - - This is purely reference documentation â€“ not how-to - documentation. For a thorough step-by-step how-to guide to - publishing content using the DocBook XSL stylesheets, see - Bob Stayton’s DocBook XSL: The Complete Guide, available online - at http://www.sagehill.net/docbookxsl/index.html - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Slides Parameter Reference - - - - This is reference documentation for all - user-configurable parameters in the DocBook XSL Slides - stylesheets (for generating HTML and PDF slide - presentations). - - The Slides stylesheet for HTML output is a - customization layer of the DocBook XSL HTML - stylesheet; the Slides stylesheet for FO output is a - customization layer of the DocBook XSL FO stylesheet. - Therefore, in addition to the slides-specific - parameters listed in this section, you can also use a - number of HTML stylesheet - parameters and FO - stylesheet parameters to control Slides - output. - - - - - - - - - - - - - - - - DocBook XSL Stylesheets User Reference: PIs - - - - - This is generated reference documentation for all - user-specifiable processing instructions in the DocBook - XSL stylesheets. - - You add these PIs at particular points in a document to - cause specific “exceptions†to formatting/output behavior. To - make global changes in formatting/output behavior across an - entire document, it’s better to do it by setting an - appropriate stylesheet parameter (if there is one). - - - - - - - - - - - - - - - - - - DocBook XSL Stylesheets Developer Reference - - - This is technical reference documentation for - developers using the DocBook XSL Stylesheets. It is not - intended to be user documentation, but is instead - provided for developers writing customization layers for - the stylesheets. - - - - - - - - - - - - Common Template Reference - - - - - This is technical reference documentation for the - “baseâ€, “refentryâ€, and “utility†sets of common - templates in the DocBook XSL Stylesheets. These - templates are “common†in that they are shared across - output formats (that is, they’re not - output-format-dependent) - This documentation is not intended to be user - documentation. It is provided for developers writing - customization layers for the stylesheets. - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/docsrc/reference.xml.included b/docbook-xsl-1.75.2/docsrc/reference.xml.included deleted file mode 100644 index 2dbba96..0000000 --- a/docbook-xsl-1.75.2/docsrc/reference.xml.included +++ /dev/null @@ -1,33555 +0,0 @@ - - - - - - - - - - - DocBook XSL Stylesheets: Reference Documentation - $Id: reference.xml 8321 2009-03-12 18:20:36Z mzjn $ - - - - WalshNorman - - - - The DocBook Project - - - - 1999-2007 - Norman Walsh - - 2003 - Jiří Kosek - - 2004-2007 - Steve Ball - - 2001-2007 - The DocBook Project - - License -Permission is hereby granted, free of charge, to any person -obtaining a copy of this software and associated documentation files -(the Software), to deal in the Software without -restriction, including without limitation the rights to use, copy, -modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished -to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. -Except as contained in this notice, the names of individuals -credited with contribution to this software shall not be used in -advertising or otherwise to promote the sale, use or other dealings in -this Software without prior written authorization from the individuals -in question. -Any stylesheet derived from this Software that is publically -distributed will be identified with a different name and the version -strings in any derived Software will be changed so that no possibility -of confusion between the derived package and this Software will -exist. - - Warranty -THE SOFTWARE IS PROVIDED AS IS, -WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT -LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR -PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL NORMAN WALSH OR ANY -OTHER CONTRIBUTOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT -OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - - About this document - This is generated reference documentation for the DocBook - XSL stylesheets. It is available in the following formats: - - - HTML, - PDF, - plain text - - - This is primarily documentation on the parameters and processing instructions you can use - to control the behavior of the stylesheets. - - This is purely reference documentation – not how-to - documentation. For a thorough step-by-step how-to guide to - publishing content using the DocBook XSL stylesheets, see - Bob Stayton’s DocBook XSL: The Complete Guide, available online - at http://www.sagehill.net/docbookxsl/index.html - - - This document is divided into three sets of references: - the first two sets provides user documentation; the third, - developer documentation. - - - DocBook XSL Stylesheets User Reference: Parameters - - - This is generated reference documentation for all - user-configurable parameters in the DocBook XSL - stylesheets. - - This is purely reference documentation – not how-to - documentation. For a thorough step-by-step how-to guide to - publishing content using the DocBook XSL stylesheets, see - Bob Stayton’s DocBook XSL: The Complete Guide, available online - at http://www.sagehill.net/docbookxsl/index.html - - - - - - - - - HTML Parameter Reference - - - This is reference documentation for all user-configurable - parameters in the DocBook XSL HTML stylesheets (for generating - HTML output). - - - Admonitions - - -admon.graphics.extension -string - - -admon.graphics.extension -Filename extension for admonition graphics - - - - -<xsl:param name="admon.graphics.extension">.png</xsl:param> - - - -Description - -Sets the filename extension to use on admonition graphics. - - - - - - -admon.graphics.path -string - - -admon.graphics.path -Path to admonition graphics - - - -<xsl:param name="admon.graphics.path">images/</xsl:param> - - -Description - -Sets the path to the directory containing the admonition graphics -(caution.png, important.png etc). This location is normally relative -to the output html directory. See base.dir - - - - - - -admon.graphics -boolean - - -admon.graphics -Use graphics in admonitions? - - - - -<xsl:param name="admon.graphics" select="0"></xsl:param> - - - -Description - -If true (non-zero), admonitions are presented in an alternate style that uses -a graphic. Default graphics are provided in the distribution. - - - - - - - -admon.textlabel -boolean - - -admon.textlabel -Use text label in admonitions? - - - - -<xsl:param name="admon.textlabel" select="1"></xsl:param> - - - -Description - -If true (non-zero), admonitions are presented with a generated -text label such as Note or Warning in the appropriate language. -If zero, such labels are turned off, but any title child -of the admonition element are still output. -The default value is 1. - - - - - - - -admon.style -string - - -admon.style -Specifies the CSS style attribute that should be added to -admonitions. - - - -<xsl:param name="admon.style"> - <xsl:value-of select="concat('margin-', $direction.align.start, ': 0.5in; margin-', $direction.align.end, ': 0.5in;')"></xsl:value-of> -</xsl:param> - - -Description - -Specifies the value of the CSS style -attribute that should be added to admonitions. - - - - - -Callouts - - -callout.defaultcolumn -integer - - -callout.defaultcolumn -Indicates what column callouts appear in by default - - - - -<xsl:param name="callout.defaultcolumn">60</xsl:param> - - - -Description - -If a callout does not identify a column (for example, if it uses -the linerange unit), -it will appear in the default column. - - - - - - - -callout.graphics.extension -string - - -callout.graphics.extension -Filename extension for callout graphics - - - - -<xsl:param name="callout.graphics.extension">.png</xsl:param> - - - - -Description -Sets the filename extension to use on callout graphics. - - -The Docbook XSL distribution provides callout graphics in the following formats: -SVG (extension: .svg) -PNG (extension: .png) -GIF (extension: .gif) - - - - - - -callout.graphics.number.limit -integer - - -callout.graphics.number.limit -Number of the largest callout graphic - - - - -<xsl:param name="callout.graphics.number.limit">15</xsl:param> - - - - -Description - -If callout.graphics is non-zero, graphics -are used to represent callout numbers instead of plain text. The value -of callout.graphics.number.limit is the largest -number for which a graphic exists. If the callout number exceeds this -limit, the default presentation "(plain text instead of a graphic)" -will be used. - - - - - - - -callout.graphics.path -string - - -callout.graphics.path -Path to callout graphics - - - - -<xsl:param name="callout.graphics.path">images/callouts/</xsl:param> - - - -Description - -Sets the path to the directory holding the callout graphics. his -location is normally relative to the output html directory. see -base.dir. Always terminate the directory with / since the graphic file -is appended to this string, hence needs the separator. - - - - - - - -callout.graphics -boolean - - -callout.graphics -Use graphics for callouts? - - - - -<xsl:param name="callout.graphics" select="1"></xsl:param> - - - -Description - -If non-zero, callouts are presented with graphics (e.g., reverse-video -circled numbers instead of "(1)", "(2)", etc.). -Default graphics are provided in the distribution. - - - - - - - -callout.list.table -boolean - - -callout.list.table -Present callout lists using a table? - - - - -<xsl:param name="callout.list.table" select="1"></xsl:param> - - - -Description - -The default presentation of calloutlists uses -an HTML DL element. Some browsers don't align DLs very well -if callout.graphics is used. With this option -turned on, calloutlists are presented in an HTML -TABLE, which usually results in better alignment -of the callout number with the callout description. - - - - - - -callout.unicode.number.limit -integer - - -callout.unicode.number.limit -Number of the largest unicode callout character - - - - -<xsl:param name="callout.unicode.number.limit">10</xsl:param> - - - -Description - -If callout.unicode -is non-zero, unicode characters are used to represent -callout numbers. The value of -callout.unicode.number.limit -is -the largest number for which a unicode character exists. If the callout number -exceeds this limit, the default presentation "(nnn)" will always -be used. - - - - - - - -callout.unicode.start.character -integer - - -callout.unicode.start.character -First Unicode character to use, decimal value. - - - - -<xsl:param name="callout.unicode.start.character">10102</xsl:param> - - - -Description - -If callout.graphics is zero and callout.unicode -is non-zero, unicode characters are used to represent -callout numbers. The value of -callout.unicode.start.character -is the decimal unicode value used for callout number one. Currently, -only 10102 is supported in the stylesheets for this parameter. - - - - - - - -callout.unicode -boolean - - -callout.unicode -Use Unicode characters rather than images for callouts. - - - -<xsl:param name="callout.unicode" select="0"></xsl:param> - - -Description - -The stylesheets can use either an image of the numbers one to ten, or the single Unicode character which represents the numeral, in white on a black background. Use this to select the Unicode character option. - - - - - - - -callouts.extension -boolean - - -callouts.extension -Enable the callout extension - - - - -<xsl:param name="callouts.extension" select="1"></xsl:param> - - - -Description - -The callouts extension processes areaset -elements in ProgramListingCO and other text-based -callout elements. - - - - - -EBNF - - -ebnf.table.bgcolor -color - - -ebnf.table.bgcolor -Background color for EBNF tables - - - - -<xsl:param name="ebnf.table.bgcolor">#F5DCB3</xsl:param> - - - -Description - -Sets the background color for EBNF tables (a pale brown). No -bgcolor attribute is output if -ebnf.table.bgcolor is set to the null string. - - - - - - - -ebnf.table.border -boolean - - -ebnf.table.border -Selects border on EBNF tables - - - -<xsl:param name="ebnf.table.border" select="1"></xsl:param> - - -Description - -Selects the border on EBNF tables. If non-zero, the tables have -borders, otherwise they don't. - - - - - - -ebnf.assignment -rtf - - -ebnf.assignment -The EBNF production assignment operator - - - - -<xsl:param name="ebnf.assignment"> -<code>::=</code> -</xsl:param> - - - - -Description - -The ebnf.assignment parameter determines what -text is used to show assignment in productions -in productionsets. - -While ::= is common, so are several -other operators. - - - - - - -ebnf.statement.terminator -rtf - - -ebnf.statement.terminator -Punctuation that ends an EBNF statement. - - - - -<xsl:param name="ebnf.statement.terminator"></xsl:param> - - - - -Description - -The ebnf.statement.terminator parameter determines what -text is used to terminate each production -in productionset. - -Some notations end each statement with a period. - - - - -ToC/LoT/Index Generation - - -annotate.toc -boolean - - -annotate.toc -Annotate the Table of Contents? - - - -<xsl:param name="annotate.toc" select="1"></xsl:param> - - -Description - -If true, TOCs will be annotated. At present, this just means -that the refpurpose of refentry -TOC entries will be displayed. - - - - - - - -autotoc.label.separator -string - - -autotoc.label.separator -Separator between labels and titles in the ToC - - - - -<xsl:param name="autotoc.label.separator">. </xsl:param> - - - -Description - -String used to separate labels and titles in a table of contents. - - - - - - -autotoc.label.in.hyperlink -boolean - - -autotoc.label.in.hyperlink -Include label in hyperlinked titles in TOC? - - - -<xsl:param name="autotoc.label.in.hyperlink" select="1"></xsl:param> - - -Description - -If the value of -autotoc.label.in.hyperlink is non-zero, labels -are included in hyperlinked titles in the TOC. If it is instead zero, -labels are still displayed prior to the hyperlinked titles, but -are not hyperlinked along with the titles. - - - - - - -process.source.toc -boolean - - -process.source.toc -Process a non-empty toc element if it occurs in a source document? - - - -<xsl:param name="process.source.toc" select="0"></xsl:param> - - -Description - -Specifies that the contents of a non-empty "hard-coded" -toc element in a source document are processed to -generate a TOC in output. - - This parameter has no effect on automated generation of - TOCs. An automated TOC may still be generated along with the - "hard-coded" TOC. To suppress automated TOC generation, adjust the - value of the generate.toc paramameter. - - The process.source.toc parameter also has - no effect if the toc element is empty; handling - for empty toc is controlled by the - process.empty.source.toc parameter. - - - - - - - - -process.empty.source.toc -boolean - - -process.empty.source.toc -Generate automated TOC if toc element occurs in a source document? - - - -<xsl:param name="process.empty.source.toc" select="0"></xsl:param> - - -Description - -Specifies that if an empty toc element is found in a -source document, an automated TOC is generated at this point in the -document. - - Depending on what the value of the - generate.toc parameter is, setting this - parameter to 1 could result in generation of - duplicate automated TOCs. So the - process.empty.source.toc is primarily useful - as an "override": by placing an empty toc in your - document and setting this parameter to 1, you can - force a TOC to be generated even if generate.toc - says not to. - - - - - - - - -bridgehead.in.toc -boolean - - -bridgehead.in.toc -Should bridgehead elements appear in the TOC? - - - -<xsl:param name="bridgehead.in.toc" select="0"></xsl:param> - - -Description - -If non-zero, bridgeheads appear in the TOC. Note that -this option is not fully supported and may be removed in a future -version of the stylesheets. - - - - - - - -simplesect.in.toc -boolean - - -simplesect.in.toc -Should simplesect elements appear in the TOC? - - - -<xsl:param name="simplesect.in.toc" select="0"></xsl:param> - - -Description - -If non-zero, simplesects will be included in the TOC. - - - - - - - -manual.toc -string - - -manual.toc -An explicit TOC to be used for the TOC - - - - -<xsl:param name="manual.toc"></xsl:param> - - - -Description - -The manual.toc identifies an explicit TOC that -will be used for building the printed TOC. - - - - - - - -toc.list.type -list -dl -ul -ol - - -toc.list.type -Type of HTML list element to use for Tables of Contents - - - -<xsl:param name="toc.list.type">dl</xsl:param> - - -Description - -When an automatically generated Table of Contents (or List of Titles) -is produced, this HTML element will be used to make the list. - - - - - - - -toc.section.depth -integer - - -toc.section.depth -How deep should recursive sections appear -in the TOC? - - - -<xsl:param name="toc.section.depth">2</xsl:param> - - -Description - -Specifies the depth to which recursive sections should appear in the -TOC. - - - - - - - -toc.max.depth -integer - - -toc.max.depth -How many levels should be created for each TOC? - - - -<xsl:param name="toc.max.depth">8</xsl:param> - - -Description - -Specifies the maximal depth of TOC on all levels. - - - - - - -generate.toc -table - - -generate.toc -Control generation of ToCs and LoTs - - - - -<xsl:param name="generate.toc"> -appendix toc,title -article/appendix nop -article toc,title -book toc,title,figure,table,example,equation -chapter toc,title -part toc,title -preface toc,title -qandadiv toc -qandaset toc -reference toc,title -sect1 toc -sect2 toc -sect3 toc -sect4 toc -sect5 toc -section toc -set toc,title -</xsl:param> - - - - -Description - -This parameter has a structured value. It is a table of space-delimited -path/value pairs. Each path identifies some element in the source document -using a restricted subset of XPath (only the implicit child axis, no wildcards, -no predicates). Paths can be either relative or absolute. - -When processing a particular element, the stylesheets consult this table to -determine if a ToC (or LoT(s)) should be generated. - -For example, consider the entry: - -book toc,figure - -This indicates that whenever a book is formatted, a -Table Of Contents and a List of Figures should be generated. Similarly, - -/chapter toc - -indicates that whenever a document that has a root -of chapter is formatted, a Table of -Contents should be generated. The entry chapter would match -all chapters, but /chapter matches only chapter -document elements. - -Generally, the longest match wins. So, for example, if you want to distinguish -articles in books from articles in parts, you could use these two entries: - -book/article toc,figure -part/article toc - -Note that an article in a part can never match a book/article, -so if you want nothing to be generated for articles in parts, you can simply leave -that rule out. - -If you want to leave the rule in, to make it explicit that you're turning -something off, use the value nop. For example, the following -entry disables ToCs and LoTs for articles: - -article nop - -Do not simply leave the word article in the file -without a matching value. That'd be just begging the silly little -path/value parser to get confused. - -Section ToCs are further controlled by the -generate.section.toc.level parameter. -For a given section level to have a ToC, it must have both an entry in -generate.toc and be within the range enabled by -generate.section.toc.level. - - - - - -generate.section.toc.level -integer - - -generate.section.toc.level -Control depth of TOC generation in sections - - - - -<xsl:param name="generate.section.toc.level" select="0"></xsl:param> - - - -Description - -The generate.section.toc.level parameter -controls the depth of section in which TOCs will be generated. Note -that this is related to, but not the same as -toc.section.depth, which controls the depth to -which TOC entries will be generated in a given TOC. -If, for example, generate.section.toc.level -is 3, TOCs will be generated in first, second, and third -level sections, but not in fourth level sections. - - - - - - - -generate.index -boolean - - -generate.index -Do you want an index? - - - -<xsl:param name="generate.index" select="1"></xsl:param> - - -Description - -Specify if an index should be generated. - - - - - - -index.method -list -basic -kosek -kimber - - -index.method -Select method used to group index entries in an index - - - - -<xsl:param name="index.method">basic</xsl:param> - - - -Description - -This parameter lets you select which method to use for sorting and grouping - index entries in an index. -Indexes in Latin-based languages that have accented characters typically -sort together accented words and unaccented words. -Thus Á (U+00C1 LATIN CAPITAL LETTER A WITH ACUTE) would sort together -with A (U+0041 LATIN CAPITAL LETTER A), so both would appear in the A -section of the index. -Languages using other alphabets (such as Russian, which is written in the Cyrillic alphabet) -and languages using ideographic chararacters (such as Japanese) -require grouping specific to the languages and alphabets. - - -The default indexing method is limited. -It can group accented characters in Latin-based languages only. -It cannot handle non-Latin alphabets or ideographic languages. -The other indexing methods require extensions of one type or -another, and do not work with -all XSLT processors, which is why they are not used by default. - -The three choices for indexing method are: - - -basic - - -(default) Sort and groups words based only on the Latin alphabet. -Words with accented Latin letters will group and sort with -their respective primary letter, but -words in non-Latin alphabets will be -put in the Symbols section of the index. - - - - -kosek - - -This method sorts and groups words based on letter groups configured in -the DocBook locale file for the given language. -See, for example, the French locale file common/fr.xml. -This method requires that the XSLT processor -supports the EXSLT extensions (most do). -It also requires support for using -user-defined functions in xsl:key (xsltproc does not). - -This method is suitable for any language for which you can -list all the individual characters that should appear -in each letter group in an index. -It is probably not practical to use it for ideographic languages -such as Chinese that have hundreds or thousands of characters. - - -To use the kosek method, you must: - - - -Use a processor that supports its extensions, such as -Saxon 6 or Xalan (xsltproc and Saxon 8 do not). - - - -Set the index.method parameter's value to kosek. - - - -Import the appropriate index extensions stylesheet module -fo/autoidx-kosek.xsl or -html/autoidx-kosek.xsl into your -customization. - - - - - - - -kimber - - -This method uses extensions to the Saxon processor to implement -sophisticated indexing processes. It uses its own -configuration file, which can include information for any number of -languages. Each language's configuration can group -words using one of two processes. In the -enumerated process similar to that used in the kosek method, -you indicate the groupings character-by-character. -In the between-key process, you specify the -break-points in the sort order that should start a new group. -The latter configuration is useful for ideographic languages -such as Chinese, Japanese, and Korean. -You can also define your own collation algorithms and how you -want mixed Latin-alphabet words sorted. - - -For a whitepaper describing the extensions, see: -http://www.innodata-isogen.com/knowledge_center/white_papers/back_of_book_for_xsl_fo.pdf. - - - -To download the extension library, see -http://www.innodata-isogen.com/knowledge_center/tools_downloads/i18nsupport. - - - - -To use the kimber method, you must: - - - -Use Saxon (version 6 or 8) as your XSLT processor. - - - -Install and configure the Innodata Isogen library, using -the documentation that comes with it. - - - -Set the index.method parameter's value to kimber. - - - -Import the appropriate index extensions stylesheet module -fo/autoidx-kimber.xsl or -html/autoidx-kimber.xsl into your -customization. - - - - - - - - - - - - - -index.on.type -boolean - - -index.on.type -Select indexterms based on type -attribute value - - - - -<xsl:param name="index.on.type" select="0"></xsl:param> - - - -Description - - -If non-zero, -then an index element that has a -type attribute -value will contain only those indexterm -elements with a matching type attribute value. -If an index has no type -attribute or it is blank, then the index will contain -all indexterms in the current scope. - - - -If index.on.type is zero, then the -type attribute has no effect -on selecting indexterms for an index. - - -For those using DocBook version 4.2 or earlier, -the type attribute is not available -for index terms. However, you can achieve the same -effect by using the role attribute -in the same manner on indexterm -and index, and setting the stylesheet parameter -index.on.role to a nonzero value. - - - - - - - -index.on.role -boolean - - -index.on.role -Select indexterms based on role value - - - - -<xsl:param name="index.on.role" select="0"></xsl:param> - - - -Description - - -If non-zero, -then an index element that has a -role attribute -value will contain only those indexterm -elements with a matching role value. -If an index has no role -attribute or it is blank, then the index will contain -all indexterms in the current scope. - - -If index.on.role is zero, then the -role attribute has no effect -on selecting indexterms for an index. - - -If you are using DocBook version 4.3 or later, you should -use the type attribute instead of role -on indexterm and index, -and set the index.on.type to a nonzero -value. - - - - - - - -index.links.to.section -boolean - - -index.links.to.section -HTML index entries link to container section title - - - - -<xsl:param name="index.links.to.section" select="1"></xsl:param> - - - -Description - -If zero, then an index entry in an index links -directly to the location of the -generated anchor that is output -for the indexterm. If two identical indexterm elements -exist in the same section, then both entries appear -in the index with the same title but link to different -locations. - -If non-zero, then an index entry in an index links to the -section title containing the indexterm, rather than -directly to the anchor output for the indexterm. -Duplicate indexterm entries in the same section are dropped. - - -The default value is 1, so index entries link to -section titles by default. - -In both cases, the link text in an index entry is the -title of the section containing the indexterm. -That is because HTML does not have numbered pages. -It also provides the reader with context information -for each link. - -This parameter lets you choose which style of -index linking you want. - - - -When set to 0, an index entry takes you -to the precise location of its corresponding indexterm. -However, if you have a lot of duplicate -entries in sections, then you have a lot of duplicate -titles in the index, which makes it more cluttered. -The reader may not recognize why duplicate titles -appear until they follow the links. Also, the links -may land the reader in the middle of a section where the -section title is not visible, which may also be -confusing to the reader. - - -When set to 1, an index entry link is -less precise, but duplicate titles in the -index entries are eliminated. -Landing on the section title location may confirm the reader's -expectation that a link that -shows a section title will take them to that section title, -not a location within the section. - - - - - - - - - -index.prefer.titleabbrev -boolean - - -index.prefer.titleabbrev -Should abbreviated titles be used as back references? - - - - -<xsl:param name="index.prefer.titleabbrev" select="0"></xsl:param> - - - -Description - -If non-zero, and if a titleabbrev is defined, the abbreviated title -is used as the link text of a back reference in the index. - - - - - - - -index.term.separator -string - - -index.term.separator -Override for punctuation separating an index term -from its list of page references in an index - - - - -<xsl:param name="index.term.separator"></xsl:param> - - - -Description - -This parameter permits you to override -the text to insert between -the end of an index term and its list of page references. -Typically that might be a comma and a space. - - -Because this text may be locale dependent, -this parameter's value is normally taken from a gentext -template named 'term-separator' in the -context 'index' in the stylesheet -locale file for the language -of the current document. -This parameter can be used to override the gentext string, -and would typically be used on the command line. -This parameter would apply to all languages. - - -So this text string can be customized in two ways. -You can reset the default gentext string using -the local.l10n.xml parameter, or you can -fill in the content for this normally empty -override parameter. -The content can be a simple string, or it can be -something more complex such as a call-template. -For fo output, it could be an fo:leader -element to provide space of a specific length, or a dot leader. - - - - - - - -index.number.separator -string - - -index.number.separator -Override for punctuation separating page numbers in index - - - - -<xsl:param name="index.number.separator"></xsl:param> - - - -Description - -This parameter permits you to override the text to insert between -page references in a formatted index entry. Typically -that would be a comma and a space. - - -Because this text may be locale dependent, -this parameter's value is normally taken from a gentext -template named 'number-separator' in the -context 'index' in the stylesheet -locale file for the language -of the current document. -This parameter can be used to override the gentext string, -and would typically be used on the command line. -This parameter would apply to all languages. - - -So this text string can be customized in two ways. -You can reset the default gentext string using -the local.l10n.xml parameter, or you can -override the gentext with the content of this parameter. -The content can be a simple string, or it can be -something more complex such as a call-template. - - -In HTML index output, section title references are used instead of -page number references. This punctuation appears between -such section titles in an HTML index. - - - - - - - -index.range.separator -string - - -index.range.separator -Override for punctuation separating the two numbers -in a page range in index - - - - -<xsl:param name="index.range.separator"></xsl:param> - - - -Description - -This parameter permits you -to override the text to insert between -the two numbers of a page range in an index. -This parameter is only used by those XSL-FO processors -that support an extension for generating such page ranges -(such as XEP). - -Because this text may be locale dependent, -this parameter's value is normally taken from a gentext -template named 'range-separator' in the -context 'index' in the stylesheet -locale file for the language -of the current document. -This parameter can be used to override the gentext string, -and would typically be used on the command line. -This parameter would apply to all languages. - - -So this text string can be customized in two ways. -You can reset the default gentext string using -the local.l10n.xml parameter, or you can -override the gentext with the content of this parameter. -The content can be a simple string, or it can be -something more complex such as a call-template. - - -In HTML index output, section title references are used instead of -page number references. So there are no page ranges -and this parameter has no effect. - - - - - -Stylesheet Extensions - - -linenumbering.everyNth -integer - - -linenumbering.everyNth -Indicate which lines should be numbered - - - - -<xsl:param name="linenumbering.everyNth">5</xsl:param> - - - -Description - -If line numbering is enabled, everyNth line will be -numbered. Note that numbering is one based, not zero based. - - - - - - - -linenumbering.extension -boolean - - -linenumbering.extension -Enable the line numbering extension - - - - -<xsl:param name="linenumbering.extension" select="1"></xsl:param> - - - -Description - -If non-zero, verbatim environments (address, literallayout, -programlisting, screen, synopsis) that specify line numbering will -have line numbers. - - - - - - - -linenumbering.separator -string - - -linenumbering.separator -Specify a separator between line numbers and lines - - - - -<xsl:param name="linenumbering.separator"><xsl:text> </xsl:text></xsl:param> - - - -Description - -The separator is inserted between line numbers and lines in the -verbatim environment. The default value is a single white space. - Note the interaction with linenumbering.width - - - - - - - -linenumbering.width -integer - - -linenumbering.width -Indicates the width of line numbers - - - - -<xsl:param name="linenumbering.width">3</xsl:param> - - - -Description - -If line numbering is enabled, line numbers will appear right -justified in a field "width" characters wide. - - - - - - - -tablecolumns.extension -boolean - - -tablecolumns.extension -Enable the table columns extension function - - - - -<xsl:param name="tablecolumns.extension" select="1"></xsl:param> - - - -Description - -The table columns extension function adjusts the widths of table -columns in the HTML result to more accurately reflect the specifications -in the CALS table. - - - - - - - - textinsert.extension - boolean - - - textinsert.extension - Enables the textinsert extension element - - - - <xsl:param name="textinsert.extension" select="1"></xsl:param> - - - Description - The textinsert extension element inserts the contents of - a file into the result tree (as text). - - To use the textinsert extension element, you must use - either Saxon or Xalan as your XSLT processor (it doesn’t - work with xsltproc), along with either the DocBook Saxon - extensions or DocBook Xalan extensions (for more - information about those extensions, see DocBook Saxon Extensions and DocBook Xalan Extensions), and you must set both - the use.extensions and - textinsert.extension parameters to - 1. - As an alternative to using the textinsert element, - consider using an Xinclude element with the - parse="text" attribute and value - specified, as detailed in Using XInclude for text inclusions. - - - See Also - You can also use the dbhtml-include href processing - instruction to insert external files — both files containing - plain text and files with markup content (including HTML - content). - - More information - For how-to documentation on inserting contents of - external code files and other text files into output, see - External code files. - For guidelines on inserting contents of - HTML files into output, see Inserting external HTML code. - - - - - -textdata.default.encoding -string - - -textdata.default.encoding -Default encoding of external text files which are included -using textdata element - - - - -<xsl:param name="textdata.default.encoding"></xsl:param> - - - -Description - -Specifies the encoding of any external text files included using -textdata element. This value is used only when you do -not specify encoding by the appropriate attribute -directly on textdata. An empty string is interpreted as the system -default encoding. - - - - - - -graphicsize.extension -boolean - - -graphicsize.extension -Enable the getWidth()/getDepth() extension functions - - - - -<xsl:param name="graphicsize.extension" select="1"></xsl:param> - - - -Description - -If non-zero (and if use.extensions is non-zero -and if you're using a processor that supports extension functions), the -getWidth and getDepth functions -will be used to extract image sizes from graphics. - - - - - - -graphicsize.use.img.src.path -boolean - - -graphicsize.use.img.src.path -Prepend img.src.path before -filenames passed to extension functions - - - - -<xsl:param name="graphicsize.use.img.src.path" select="0"></xsl:param> - - - -Description - -If non-zero img.src.path parameter will -be appended before filenames passed to extension functions for -measuring image dimensions. - - - - - - -use.extensions -boolean - - -use.extensions -Enable extensions - - - - -<xsl:param name="use.extensions" select="0"></xsl:param> - - - -Description - -If non-zero, extensions may be used. Each extension is -further controlled by its own parameter. But if -use.extensions is zero, no extensions will -be used. - - - - - -Automatic labelling - - -chapter.autolabel -list -0none -11,2,3... -AA,B,C... -aa,b,c... -ii,ii,iii... -II,II,III... - - -chapter.autolabel -Specifies the labeling format for Chapter titles - - - - -<xsl:param name="chapter.autolabel" select="1"></xsl:param> - - -Description - -If non-zero, then chapters will be numbered using the parameter -value as the number format if the value matches one of the following: - - - - - 1 or arabic - - Arabic numeration (1, 2, 3 ...). - - - - A or upperalpha - - Uppercase letter numeration (A, B, C ...). - - - - a or loweralpha - - Lowercase letter numeration (a, b, c ...). - - - - I or upperroman - - Uppercase roman numeration (I, II, III ...). - - - - i or lowerroman - - Lowercase roman letter numeration (i, ii, iii ...). - - - - -Any nonzero value other than the above will generate -the default number format (arabic). - - - - - - - -appendix.autolabel -list -0none -11,2,3... -AA,B,C... -aa,b,c... -ii,ii,iii... -II,II,III... - - -appendix.autolabel -Specifies the labeling format for Appendix titles - - - - -<xsl:param name="appendix.autolabel">A</xsl:param> - - - -Description - -If non-zero, then appendices will be numbered using the -parameter value as the number format if the value matches one of the -following: - - - - - 1 or arabic - - Arabic numeration (1, 2, 3 ...). - - - - A or upperalpha - - Uppercase letter numeration (A, B, C ...). - - - - a or loweralpha - - Lowercase letter numeration (a, b, c ...). - - - - I or upperroman - - Uppercase roman numeration (I, II, III ...). - - - - i or lowerroman - - Lowercase roman letter numeration (i, ii, iii ...). - - - - -Any nonzero value other than the above will generate -the default number format (upperalpha). - - - - - - - -part.autolabel -list -0none -11,2,3... -AA,B,C... -aa,b,c... -ii,ii,iii... -II,II,III... - - -part.autolabel -Specifies the labeling format for Part titles - - - - -<xsl:param name="part.autolabel">I</xsl:param> - - - -Description - -If non-zero, then parts will be numbered using the parameter -value as the number format if the value matches one of the following: - - - - - 1 or arabic - - Arabic numeration (1, 2, 3 ...). - - - - A or upperalpha - - Uppercase letter numeration (A, B, C ...). - - - - a or loweralpha - - Lowercase letter numeration (a, b, c ...). - - - - I or upperroman - - Uppercase roman numeration (I, II, III ...). - - - - i or lowerroman - - Lowercase roman letter numeration (i, ii, iii ...). - - - - -Any nonzero value other than the above will generate -the default number format (upperroman). - - - - - - - - -reference.autolabel -list -0none -11,2,3... -AA,B,C... -aa,b,c... -ii,ii,iii... -II,II,III... - - -reference.autolabel -Specifies the labeling format for Reference titles - - - - <xsl:param name="reference.autolabel">I</xsl:param> - - -Description -If non-zero, references will be numbered using the parameter - value as the number format if the value matches one of the - following: - - - - 1 or arabic - - Arabic numeration (1, 2, 3 ...). - - - - A or upperalpha - - Uppercase letter numeration (A, B, C ...). - - - - a or loweralpha - - Lowercase letter numeration (a, b, c ...). - - - - I or upperroman - - Uppercase roman numeration (I, II, III ...). - - - - i or lowerroman - - Lowercase roman letter numeration (i, ii, iii ...). - - - -Any non-zero value other than the above will generate -the default number format (upperroman). - - - - - - -preface.autolabel -list -0none -11,2,3... -AA,B,C... -aa,b,c... -ii,ii,iii... -II,II,III... - - -preface.autolabel -Specifices the labeling format for Preface titles - - - -<xsl:param name="preface.autolabel" select="0"></xsl:param> - - -Description - -If non-zero then prefaces will be numbered using the parameter -value as the number format if the value matches one of the following: - - - - - 1 or arabic - - Arabic numeration (1, 2, 3 ...). - - - - A or upperalpha - - Uppercase letter numeration (A, B, C ...). - - - - a or loweralpha - - Lowercase letter numeration (a, b, c ...). - - - - I or upperroman - - Uppercase roman numeration (I, II, III ...). - - - - i or lowerroman - - Lowercase roman letter numeration (i, ii, iii ...). - - - - -Any nonzero value other than the above will generate -the default number format (arabic). - - - - - - - - -qandadiv.autolabel -boolean - - -qandadiv.autolabel -Are divisions in QAndASets enumerated? - - - -<xsl:param name="qandadiv.autolabel" select="1"></xsl:param> - - -Description - -If non-zero, unlabeled qandadivs will be enumerated. - - - - - - - -section.autolabel -boolean - - -section.autolabel -Are sections enumerated? - - - -<xsl:param name="section.autolabel" select="0"></xsl:param> - - -Description - -If true (non-zero), unlabeled sections will be enumerated. - - - - - - - -section.autolabel.max.depth -integer - - -section.autolabel.max.depth -The deepest level of sections that are numbered. - - - - -<xsl:param name="section.autolabel.max.depth">8</xsl:param> - - - -Description - -When section numbering is turned on by the -section.autolabel parameter, then this -parameter controls the depth of section nesting that is -numbered. Sections nested to a level deeper than this value will not -be numbered. - - - - - - - -section.label.includes.component.label -boolean - - -section.label.includes.component.label -Do section labels include the component label? - - - -<xsl:param name="section.label.includes.component.label" select="0"></xsl:param> - - -Description - -If non-zero, section labels are prefixed with the label of the -component that contains them. - - - - - - - -label.from.part -boolean - - -label.from.part -Renumber components in each part? - - - - -<xsl:param name="label.from.part" select="0"></xsl:param> - - - -Description - -If label.from.part is non-zero, then - numbering of components — preface, - chapter, appendix, and - reference (when reference occurs at the - component level) — is re-started within each - part. -If label.from.part is zero (the - default), numbering of components is not - re-started within each part; instead, components are - numbered sequentially throughout each book, - regardless of whether or not they occur within part - instances. - - - - - - -component.label.includes.part.label -boolean - - -component.label.includes.part.label -Do component labels include the part label? - - - -<xsl:param name="component.label.includes.part.label" select="0"></xsl:param> - - -Description - -If non-zero, number labels for chapter, -appendix, and other component elements are prefixed with -the label of the part element that contains them. So you might see -Chapter II.3 instead of Chapter 3. Also, the labels for formal -elements such as table and figure will include -the part label. If there is no part element container, then no prefix -is generated. - - -This feature is most useful when the -label.from.part parameter is turned on. -In that case, there would be more than one chapter -1, and the extra part label prefix will identify -each chapter unambiguously. - - - - - -HTML - - -html.base -uri - - -html.base -An HTML base URI - - - - -<xsl:param name="html.base"></xsl:param> - - -Description - -If html.base is set, it is used for the base element -in the head of the html documents. The parameter specifies -the base URL for all relative URLs in the document. This is useful -for dynamically served html where the base URI needs to be -shifted. - - - - - - -html.stylesheet.type -string - - -html.stylesheet.type -The type of the stylesheet used in the generated HTML - - - -<xsl:param name="html.stylesheet.type">text/css</xsl:param> - - -Description - -The type of the stylesheet to place in the HTML link tag. - - - - - - - -html.stylesheet -string - - -html.stylesheet -Name of the stylesheet(s) to use in the generated HTML - - - - -<xsl:param name="html.stylesheet"></xsl:param> - - - -Description - -The html.stylesheet parameter is either -empty, indicating that no stylesheet link tag should be -generated in the html output, or it is a list of one or more -stylesheet files. - -Multiple stylesheets are space-delimited. If you need to -reference a stylesheet URI that includes a space, encode it with -%20. A separate html link element will -be generated for each stylesheet in the order they are listed in the -parameter. - - - - - - -css.decoration -boolean - - -css.decoration -Enable CSS decoration of elements - - - - -<xsl:param name="css.decoration" select="1"></xsl:param> - - - -Description - - -If non-zero, then html elements produced by the stylesheet may be -decorated with style attributes. For example, the -li tags produced for list items may include a -fragment of CSS in the style attribute which sets -the CSS property "list-style-type". - - - - - - - -spacing.paras -boolean - - -spacing.paras -Insert additional <p> elements for spacing? - - - - -<xsl:param name="spacing.paras" select="0"></xsl:param> - - - -Description - -When non-zero, additional, empty paragraphs are inserted in -several contexts (for example, around informal figures), to create a -more pleasing visual appearance in many browsers. - - - - - - - -emphasis.propagates.style -boolean - - -emphasis.propagates.style -Pass emphasis role attribute through to HTML? - - - -<xsl:param name="emphasis.propagates.style" select="1"></xsl:param> - - -Description -If non-zero, the role attribute of -emphasis elements will be passed through to the HTML as a -class attribute on a span that surrounds the -emphasis. - - - - - -para.propagates.style -boolean - - -para.propagates.style -Pass para role attribute through to HTML? - - - - -<xsl:param name="para.propagates.style" select="1"></xsl:param> - - - -Description - -If true, the role attribute of para elements -will be passed through to the HTML as a class attribute on the -p generated for the paragraph. - - - - - - -phrase.propagates.style -boolean - - -phrase.propagates.style -Pass phrase role attribute through to HTML? - - - - -<xsl:param name="phrase.propagates.style" select="1"></xsl:param> - - -Description - -If non-zero, the role attribute of phrase elements -will be passed through to the HTML as a class -attribute on a span that surrounds the -phrase. - - - - - - -entry.propagates.style -boolean - - -entry.propagates.style -Pass entry role attribute through to HTML? - - - - -<xsl:param name="entry.propagates.style" select="1"></xsl:param> - - - -Description - -If true, the role attribute of entry elements -will be passed through to the HTML as a class attribute on the -td or th generated for the table -cell. - - - - - - -html.longdesc -boolean - - -html.longdesc -Should longdesc URIs be created? - - - -<xsl:param name="html.longdesc" select="1"></xsl:param> - - -Description -If non-zero, HTML files will be created for the -longdesc attribute. These files -are created from the textobjects in -mediaobjects and -inlinemediaobject. - - - - - - -html.longdesc.link -boolean - - -html.longdesc.link -Should a link to the longdesc be included in the HTML? - - - - -<xsl:param name="html.longdesc.link" select="$html.longdesc"></xsl:param> - - - -Description - -If non-zero, links will be created to the -HTML files created for the -longdesc attribute. It makes no -sense to enable this option without also enabling the -html.longdesc parameter. - - - - - - - - -make.valid.html -boolean - - -make.valid.html -Attempt to make sure the HTML output is valid HTML - - - - -<xsl:param name="make.valid.html" select="0"></xsl:param> - - - -Description - -If make.valid.html is true, the stylesheets take -extra effort to ensure that the resulting HTML is valid. This may mean that some -para tags are translated into HTML divs or -that other substitutions occur. - -This parameter is different from html.cleanup -because it changes the resulting markup; it does not use extension functions -to manipulate result-tree-fragments and is therefore applicable to any -XSLT processor. - - - - - - -html.cleanup -boolean - - -html.cleanup -Attempt to clean up the resulting HTML? - - - - -<xsl:param name="html.cleanup" select="1"></xsl:param> - - - -Description - -If non-zero, and if the EXSLT -extensions are supported by your processor, the resulting HTML will be -cleaned up. This improves the chances that the -resulting HTML will be valid. It may also improve the formatting of -some elements. - -This parameter is different from make.valid.html -because it uses extension functions to manipulate result-tree-fragments. - - - - - - -html.append -string - - -html.append -Specifies content to append to HTML output - - - -<xsl:param name="html.append"></xsl:param> - - -Description - -Specifies content to append to the end of HTML files output by -the html/docbook.xsl stylesheet, after the -closing <html> tag. You probably don’t want to set any -value for this parameter; but if you do, the only value it should ever -be set to is a newline character: &#x0a; or -&#10; - - - - - - -draft.mode -list -no -yes -maybe - - -draft.mode -Select draft mode - - - - -<xsl:param name="draft.mode">maybe</xsl:param> - - - -Description - -Selects draft mode. If draft.mode is -yes, the entire document will be treated -as a draft. If it is no, the entire document -will be treated as a final copy. If it is maybe, -individual sections will be treated as draft or final independently, depending -on how their status attribute is set. - - - - - - - -draft.watermark.image -uri - - -draft.watermark.image -The URI of the image to be used for draft watermarks - - - - -<xsl:param name="draft.watermark.image">http://docbook.sourceforge.net/release/images/draft.png</xsl:param> - - - -Description - -The image to be used for draft watermarks. - - - - - - -generate.id.attributes -boolean - - -generate.id.attributes -Generate ID attributes on container elements? - - - - -<xsl:param name="generate.id.attributes" select="0"></xsl:param> - - - -Description - -If non-zero, the HTML stylesheet will generate ID attributes on -containers. For example, the markup: - -<section id="foo"><title>Some Title</title> -<para>Some para.</para> -</section> - -might produce: - -<div class="section" id="foo"> -<h2>Some Title</h2> -<p>Some para.</p> -</div> - -The alternative is to generate anchors: - -<div class="section"> -<h2><a name="foo"></a>Some Title</h2> -<p>Some para.</p> -</div> - -Because the name attribute of -the a element and the id -attribute of other tags are both of type ID, producing both -generates invalid documents. - -As of version 1.50, you can use this switch to control which type of -identifier is generated. For backwards-compatibility, generating -a anchors is preferred. - -Note: at present, this switch is incompletely implemented. -Disabling ID attributes will suppress them, but enabling ID attributes -will not suppress the anchors. - - - - - - -generate.meta.abstract -boolean - - -generate.meta.abstract -Generate HTML META element from abstract? - - - - -<xsl:param name="generate.meta.abstract" select="1"></xsl:param> - - - -Description - -If non-zero, document abstracts will be reproduced in the HTML -head, with >meta name="description" content="..." - - - - - -XSLT Processing - - -rootid -string - - -rootid -Specify the root element to format - - - - -<xsl:param name="rootid"></xsl:param> - - -Description - -If rootid is not empty, it must be the -value of an ID that occurs in the document being formatted. The entire -document will be loaded and parsed, but formatting will begin at the -element identified, rather than at the root. For example, this allows -you to process only chapter 4 of a book. -Because the entire document is available to the processor, automatic -numbering, cross references, and other dependencies are correctly -resolved. - - - - - - -suppress.navigation -boolean - - -suppress.navigation -Disable header and footer navigation - - - - -<xsl:param name="suppress.navigation" select="0"></xsl:param> - - - -Description - - -If non-zero, header and footer navigation will be suppressed. - - - - - - -suppress.header.navigation -boolean - - -suppress.header.navigation -Disable header navigation - - - - -<xsl:param name="suppress.header.navigation" select="0"></xsl:param> - - - -Description - -If non-zero, header navigation will be suppressed. - - - - - - -suppress.footer.navigation -boolean - - -suppress.footer.navigation -Disable footer navigation - - - -<xsl:param name="suppress.footer.navigation">0</xsl:param> - - -Description - - -If non-zero, footer navigation will be suppressed. - - - - - - -header.rule -boolean - - -header.rule -Rule under headers? - - - - -<xsl:param name="header.rule" select="1"></xsl:param> - - - -Description - -If non-zero, a rule will be drawn below the page headers. - - - - - - -footer.rule -boolean - - -footer.rule -Rule over footers? - - - - -<xsl:param name="footer.rule" select="1"></xsl:param> - - - -Description - -If non-zero, a rule will be drawn above the page footers. - - - - - - -id.warnings -boolean - - -id.warnings -Should warnings be generated for titled elements without IDs? - - - -<xsl:param name="id.warnings" select="0"></xsl:param> - - -Description -If non-zero, the stylesheet will issue a warning for any element -(other than the root element) which has a title but does not have an -ID. - - - -Meta/*Info and Titlepages - - -inherit.keywords -boolean - - -inherit.keywords -Inherit keywords from ancestor elements? - - - - -<xsl:param name="inherit.keywords" select="1"></xsl:param> - - -Description - -If inherit.keywords -is non-zero, the keyword meta for each HTML -head element will include all of the keywords from -ancestor elements. Otherwise, only the keywords from the current section -will be used. - - - - - - - -make.single.year.ranges -boolean - - -make.single.year.ranges -Print single-year ranges (e.g., 1998-1999) - - - - -<xsl:param name="make.single.year.ranges" select="0"></xsl:param> - - -Description - -If non-zero, year ranges that span a single year will be printed -in range notation (1998-1999) instead of discrete notation -(1998, 1999). - - - - - - -make.year.ranges -boolean - - -make.year.ranges -Collate copyright years into ranges? - - - -<xsl:param name="make.year.ranges" select="0"></xsl:param> - - -Description - -If non-zero, multiple copyright year elements will be -collated into ranges. -This works only if each year number is put into a separate -year element. The copyright element permits multiple -year elements. If a year element contains a dash or -a comma, then that year element will not be merged into -any range. - - - - - - - -author.othername.in.middle -boolean - - -author.othername.in.middle -Is othername in author a -middle name? - - - - -<xsl:param name="author.othername.in.middle" select="1"></xsl:param> - - -Description - -If non-zero, the othername of an author -appears between the firstname and -surname. Otherwise, othername -is suppressed. - - - - - - - -blurb.on.titlepage.enabled -boolean - - -blurb.on.titlepage.enabled -Display personblurb and authorblurb on title pages? - - - - -<xsl:param name="blurb.on.titlepage.enabled" select="0"></xsl:param> - - - -Description - -If non-zero, output from authorblurb and -personblurb elements is displayed on title pages. If zero -(the default), output from those elements is suppressed on title pages -(unless you are using a titlepage customization -that causes them to be included). - - - - - - -contrib.inline.enabled -boolean - - -contrib.inline.enabled -Display contrib output inline? - - - -<xsl:param name="contrib.inline.enabled">1</xsl:param> - - -Description - -If non-zero (the default), output of the contrib element is -displayed as inline content rather than as block content. - - - - - - -editedby.enabled -boolean - - -editedby.enabled -Display “Edited by” heading above editor name? - - - -<xsl:param name="editedby.enabled">1</xsl:param> - - -Description - -If non-zero, a localized Edited -by heading is displayed above editor names in output of the -editor element. - - - - - - -abstract.notitle.enabled -boolean - - -abstract.notitle.enabled -Suppress display of abstract titles? - - - <xsl:param name="abstract.notitle.enabled" select="0"></xsl:param> - -Description -If non-zero, in output of the abstract element on titlepages, -display of the abstract title is suppressed. - - - - - -othercredit.like.author.enabled -boolean - - -othercredit.like.author.enabled -Display othercredit in same style as author? - - - -<xsl:param name="othercredit.like.author.enabled">0</xsl:param> - - -Description - -If non-zero, output of the -othercredit element on titlepages is displayed in -the same style as author and -editor output. If zero then -othercredit output is displayed using a style -different than that of author and -editor. - - - - - - -generate.legalnotice.link -boolean - - -generate.legalnotice.link -Write legalnotice to separate chunk and generate link? - - - -<xsl:param name="generate.legalnotice.link" select="0"></xsl:param> - - -Description - -If the value of generate.legalnotice.link -is non-zero, the stylesheet: - - - - writes the contents of legalnotice to a separate - HTML file - - - inserts a hyperlink to the legalnotice file - - - adds (in the HTML head) either a single - link or element or multiple - link elements (depending on the value of the - html.head.legalnotice.link.multiple - parameter), with the value or values derived from the - html.head.legalnotice.link.types - parameter - - - - Otherwise, if generate.legalnotice.link is - zero, legalnotice contents are rendered on the title - page. - -The name of the separate HTML file is computed as follows: - - - - If a filename is given by the dbhtml filename -processing instruction, that filename is used. - - - If the legalnotice has an id/xml:id -attribute, and if use.id.as.filename != 0, the filename -is the concatenation of the id value and the value of the html.ext -parameter. - - - If the legalnotice does not have an id/xml:id - attribute, or if use.id.as.filename = 0, the filename is the concatenation of "ln-", -auto-generated id value, and html.ext value. - - - - - - - - - - - -generate.revhistory.link -boolean - - -generate.revhistory.link -Write revhistory to separate chunk and generate link? - - - -<xsl:param name="generate.revhistory.link" select="0"></xsl:param> - - -Description - -If non-zero, the contents of revhistory are written -to a separate HTML file and a link to the file is -generated. Otherwise, revhistory contents are rendered on -the title page. - -The name of the separate HTML file is computed as follows: - - - - If a filename is given by the dbhtml filename processing instruction, -that filename is used. - - - If the revhistory has an id/xml:id -attribute, and if use.id.as.filename != 0, the filename is the concatenation of -the id value and the value of the html.ext parameter. - - - If the revhistory does not have an id/xml:id -attribute, or if use.id.as.filename = 0, the filename is the concatenation of "rh-", -auto-generated id value, and html.ext value. - - - - - - - - - - - -html.head.legalnotice.link.types -string - - -html.head.legalnotice.link.types -Specifies link types for legalnotice link in html head - - - - -<xsl:param name="html.head.legalnotice.link.types">copyright</xsl:param> - - - -Description - -The value of -html.head.legalnotice.link.types is a -space-separated list of link types, as described in Section 6.12 -of the HTML 4.01 specification. If the value of the -generate.legalnotice.link parameter is -non-zero, then the stylesheet generates (in the -head section of the HTML source) either a single -HTML link element or, if the value of the -html.head.legalnotice.link.multiple is -non-zero, one link element for each link type -specified. Each link has the following attributes: - - - - a rel attribute whose - value is derived from the value of - html.head.legalnotice.link.types - - - an href attribute whose - value is set to the URL of the file containing the - legalnotice - - - a title attribute whose - value is set to the title of the corresponding - legalnotice (or a title programatically - determined by the stylesheet) - - - -For example: - - <link rel="license" href="ln-id2524073.html" title="Legal Notice"> - - -About the default value - - In an ideal world, the default value of - html.head.legalnotice.link.types would - probably be “license”, since the content of the - DocBook legalnotice is typically license - information, not copyright information. However, the default value - is “copyright” for pragmatic reasons: because - that’s among the set of “recognized link types” listed in Section - 6.12 of the HTML 4.01 specification, and because certain - browsers and browser extensions are preconfigured to recognize that - value. - - - - - - - -html.head.legalnotice.link.multiple -boolean - - -html.head.legalnotice.link.multiple -Generate multiple link instances in html head for legalnotice? - - - - -<xsl:param name="html.head.legalnotice.link.multiple" select="1"></xsl:param> - - - -Description - -If html.head.legalnotice.link.multiple is -non-zero and the value of -html.head.legalnotice.link.types contains -multiple link types, then the stylesheet generates (in the -head section of the HTML source) one -link element for each link type specified. For -example, if the value of -html.head.legalnotice.link.types is -“copyright license”: - - <link rel="copyright" href="ln-id2524073.html" title="Legal Notice"> - <link rel="license" href="ln-id2524073.html" title="Legal Notice"> - - Otherwise, the stylesheet generates generates a single - link instance; for example: - - <link rel="copyright license" href="ln-id2524073.html" title="Legal Notice"> - - - - - -Reference Pages - - -funcsynopsis.decoration -boolean - - -funcsynopsis.decoration -Decorate elements of a funcsynopsis? - - - - -<xsl:param name="funcsynopsis.decoration" select="1"></xsl:param> - - - -Description - -If non-zero, elements of the funcsynopsis will be -decorated (e.g. rendered as bold or italic text). The decoration is controlled by -templates that can be redefined in a customization layer. - - - - - - - -funcsynopsis.style -list -ansi -kr - - -funcsynopsis.style -What style of funcsynopsis should be generated? - - - -<xsl:param name="funcsynopsis.style">kr</xsl:param> - - -Description - -If funcsynopsis.style is ansi, -ANSI-style function synopses are generated for a -funcsynopsis, otherwise K&R-style -function synopses are generated. - - - - - - - -function.parens -boolean - - -function.parens -Generate parens after a function? - - - - -<xsl:param name="function.parens" select="0"></xsl:param> - - - -Description - -If non-zero, the formatting of a function element -will include generated parentheses. - - - - - - - -refentry.generate.name -boolean - - -refentry.generate.name -Output NAME header before refnames? - - - - -<xsl:param name="refentry.generate.name" select="1"></xsl:param> - - - -Description - -If non-zero, a "NAME" section title is output before the list -of refnames. This parameter and -refentry.generate.title are mutually -exclusive. This means that if you change this parameter to zero, you -should set refentry.generate.title to non-zero unless -you want get quite strange output. - - - - - - - -refentry.generate.title -boolean - - -refentry.generate.title -Output title before refnames? - - - - -<xsl:param name="refentry.generate.title" select="0"></xsl:param> - - - -Description - -If non-zero, the reference page title or first name is -output before the list of refnames. This parameter and -refentry.generate.name are mutually exclusive. -This means that if you change this parameter to non-zero, you -should set refentry.generate.name to zero unless -you want get quite strange output. - - - - - - - -refentry.xref.manvolnum -boolean - - -refentry.xref.manvolnum -Output manvolnum as part of -refentry cross-reference? - - - - -<xsl:param name="refentry.xref.manvolnum" select="1"></xsl:param> - - - -Description - -if non-zero, the manvolnum is used when cross-referencing -refentrys, either with xref -or citerefentry. - - - - - - - -citerefentry.link -boolean - - -citerefentry.link -Generate URL links when cross-referencing RefEntrys? - - - - -<xsl:param name="citerefentry.link" select="0"></xsl:param> - - -Description - -If non-zero, a web link will be generated, presumably -to an online man->HTML gateway. The text of the link is -generated by the generate.citerefentry.link template. - - - - - - - -refentry.separator -boolean - - -refentry.separator -Generate a separator between consecutive RefEntry elements? - - - - -<xsl:param name="refentry.separator" select="1"></xsl:param> - - - -Description - -If true, a separator will be generated between consecutive -reference pages. - - - - - - - -refclass.suppress -boolean - - -refclass.suppress -Suppress display of refclass contents? - - - - -<xsl:param name="refclass.suppress" select="0"></xsl:param> - - -Description - -If the value of refclass.suppress is -non-zero, then display of refclass contents is -suppressed in output. - - - - -Tables - - -default.table.width -length - - -default.table.width -The default width of tables - - - -<xsl:param name="default.table.width"></xsl:param> - - -Description -If non-zero, this value will be used for the -width attribute on tables that do not specify an -alternate width (with the dbhtml table-width or -dbfo table-width processing instruction). - - - - - -nominal.table.width -length - - -nominal.table.width -The (absolute) nominal width of tables - - - - -<xsl:param name="nominal.table.width">6in</xsl:param> - - - -Description - -In order to convert CALS column widths into HTML column widths, it -is sometimes necessary to have an absolute table width to use for conversion -of mixed absolute and relative widths. This value must be an absolute -length (not a percentage). - - - - - - -table.borders.with.css -boolean - - -table.borders.with.css -Use CSS to specify table, row, and cell borders? - - - - -<xsl:param name="table.borders.with.css" select="0"></xsl:param> - - - -Description - -If non-zero, CSS will be used to draw table borders. - - - - - - - -table.cell.border.style -list -none -solid -dotted -dashed -double -groove -ridge -inset -outset -solid - - -table.cell.border.style -Specifies the border style of table cells - - - - -<xsl:param name="table.cell.border.style">solid</xsl:param> - - - -Description - -Specifies the border style of table cells. - - - To control properties of cell borders in HTML output, you must also turn on the - table.borders.with.css parameter. - - - - - - - -table.cell.border.thickness -length - - -table.cell.border.thickness -Specifies the thickness of table cell borders - - - - -<xsl:param name="table.cell.border.thickness">0.5pt</xsl:param> - - - -Description - -If non-zero, specifies the thickness of borders on table -cells. The units are points. See -CSS - - - To control properties of cell borders in HTML output, you must also turn on the - table.borders.with.css parameter. - - - - - - - -table.cell.border.color -color - - -table.cell.border.color -Specifies the border color of table cells - - - - -<xsl:param name="table.cell.border.color"></xsl:param> - - - - -Description - -Set the color of table cell borders. If non-zero, the value is used -for the border coloration. See CSS. A -color is either a keyword or a numerical RGB specification. -Keywords are aqua, black, blue, fuchsia, gray, green, lime, maroon, -navy, olive, orange, purple, red, silver, teal, white, and -yellow. - - - To control properties of cell borders in HTML output, you must also turn on the - table.borders.with.css parameter. - - - - - - - -table.frame.border.style -list -none -solid -dotted -dashed -double -groove -ridge -inset -outset -solid - - -table.frame.border.style -Specifies the border style of table frames - - - - -<xsl:param name="table.frame.border.style">solid</xsl:param> - - - -Description - -Specifies the border style of table frames. - - - - - - -table.frame.border.thickness -length - - -table.frame.border.thickness -Specifies the thickness of the frame border - - - - -<xsl:param name="table.frame.border.thickness">0.5pt</xsl:param> - - - -Description - -Specifies the thickness of the border on the table's frame. - - - - - - -table.frame.border.color -color - - -table.frame.border.color -Specifies the border color of table frames - - - - -<xsl:param name="table.frame.border.color"></xsl:param> - - - - -Description - -Specifies the border color of table frames. - - - - - - -default.table.frame -string - - -default.table.frame -The default framing of tables - - - - -<xsl:param name="default.table.frame">all</xsl:param> - - - -Description - -This value will be used when there is no frame attribute on the -table. - - - - - - -html.cellspacing -integer - - -html.cellspacing -Default value for cellspacing in HTML tables - - - - -<xsl:param name="html.cellspacing"></xsl:param> - - - -Description - -If non-zero, this value will be used as the default cellspacing -value in HTML tables. nn for pixels or nn% for percentage -length. E.g. 5 or 5% - - - - - - -html.cellpadding -integer - - -html.cellpadding -Default value for cellpadding in HTML tables - - - - -<xsl:param name="html.cellpadding"></xsl:param> - - - -Description - -If non-zero, this value will be used as the default cellpadding value -in HTML tables. nn for pixels or nn% for percentage length. E.g. 5 or -5% - - - - -QAndASet - - -qanda.defaultlabel -list -number -qanda -none - - -qanda.defaultlabel -Sets the default for defaultlabel on QandASet. - - - - -<xsl:param name="qanda.defaultlabel">number</xsl:param> - - - -Description - -If no defaultlabel attribute is specified on -a qandaset, this value is used. It is generally one of the legal -values for the defaultlabel attribute (none, -number or -qanda), or one of the additional stylesheet-specific values -(qnumber or qnumberanda). -The default value is 'number'. - -The values are rendered as follows: - -qanda - -questions are labeled "Q:" and -answers are labeled "A:". - - - -number - -The questions are enumerated and the answers -are not labeled. - - - -qnumber - -The questions are labeled "Q:" followed by a number, and answers are not -labeled. -When sections are numbered, adding a label -to the number distinguishes the question numbers -from the section numbers. -This value is not allowed in the -defaultlabel attribute -of a qandaset element. - - - -qnumberanda - -The questions are labeled "Q:" followed by a number, and -the answers are labeled "A:". -When sections are numbered, adding a label -to the number distinguishes the question numbers -from the section numbers. -This value is not allowed in the -defaultlabel attribute -of a qandaset element. - - - -none - -No distinguishing label precedes Questions or Answers. - - - - - - - - - - -qanda.inherit.numeration -boolean - - -qanda.inherit.numeration -Does enumeration of QandASet components inherit the numeration of parent elements? - - - - -<xsl:param name="qanda.inherit.numeration" select="1"></xsl:param> - - - -Description - -If non-zero, numbered qandadiv elements and -question and answer inherit the enumeration of -the ancestors of the qandaset. - - - - - - - -qanda.in.toc -boolean - - -qanda.in.toc -Should qandaentry questions appear in -the document table of contents? - - - -<xsl:param name="qanda.in.toc" select="0"></xsl:param> - - -Description - -If true (non-zero), then the generated table of contents -for a document will include qandaset titles, -qandadiv titles, -and question elements. The default value (zero) excludes -them from the TOC. - -This parameter does not affect any tables of contents -that may be generated inside a qandaset or qandadiv. - - - - - - - -qanda.nested.in.toc -boolean - - -qanda.nested.in.toc -Should nested answer/qandaentry instances appear in TOC? - - - - -<xsl:param name="qanda.nested.in.toc" select="0"></xsl:param> - - - -Description - -If non-zero, instances of qandaentry -that are children of answer elements are shown in -the TOC. - - - - -Linking - - -target.database.document -uri - - -target.database.document -Name of master database file for resolving -olinks - - - - <xsl:param name="target.database.document">olinkdb.xml</xsl:param> - - -Description - - -To resolve olinks between documents, the stylesheets use a master -database document that identifies the target datafiles for all the -documents within the scope of the olinks. This parameter value is the -URI of the master document to be read during processing to resolve -olinks. The default value is olinkdb.xml. - -The data structure of the file is defined in the -targetdatabase.dtd DTD. The database file -provides the high level elements to record the identifiers, locations, -and relationships of documents. The cross reference data for -individual documents is generally pulled into the database using -system entity references or XIncludes. See also -targets.filename. - - - - -targets.filename -string - - -targets.filename -Name of cross reference targets data file - - -<xsl:param name="targets.filename">target.db</xsl:param> - - -Description - - -In order to resolve olinks efficiently, the stylesheets can -generate an external data file containing information about -all potential cross reference endpoints in a document. -This parameter lets you change the name of the generated -file from the default name target.db. -The name must agree with that used in the target database -used to resolve olinks during processing. -See also target.database.document. - - - - - - -olink.base.uri -uri - - -olink.base.uri -Base URI used in olink hrefs - - -<xsl:param name="olink.base.uri"></xsl:param> - - -Description - -When cross reference data is collected for resolving olinks, it -may be necessary to prepend a base URI to each target's href. This -parameter lets you set that base URI when cross reference data is -collected. This feature is needed when you want to link to a document -that is processed without chunking. The output filename for such a -document is not known to the XSL stylesheet; the only target -information consists of fragment identifiers such as -#idref. To enable the resolution of olinks between -documents, you should pass the name of the HTML output file as the -value of this parameter. Then the hrefs recorded in the cross -reference data collection look like -outfile.html#idref, which can be reached as links -from other documents. - - - - - -use.local.olink.style -boolean - - -use.local.olink.style -Process olinks using xref style of current -document - - -<xsl:param name="use.local.olink.style" select="0"></xsl:param> - -Description - -When cross reference data is collected for use by olinks, the data for each potential target includes one field containing a completely assembled cross reference string, as if it were an xref generated in that document. Other fields record the separate title, number, and element name of each target. When an olink is formed to a target from another document, the olink resolves to that preassembled string by default. If the use.local.olink.style parameter is set to non-zero, then instead the cross -reference string is formed again from the target title, number, and -element name, using the stylesheet processing the targeting document. -Then olinks will match the xref style in the targeting document -rather than in the target document. If both documents are processed -with the same stylesheet, then the results will be the same. - - - - - -current.docid -string - - -current.docid -targetdoc identifier for the document being -processed - - -<xsl:param name="current.docid"></xsl:param> - - -Description - -When olinks between documents are resolved for HTML output, the stylesheet can compute the relative path between the current document and the target document. The stylesheet needs to know the targetdoc identifiers for both documents, as they appear in the target.database.document database file. This parameter passes to the stylesheet -the targetdoc identifier of the current document, since that -identifier does not appear in the document itself. -This parameter can also be used for print output. If an olink's targetdoc id differs from the current.docid, then the stylesheet can append the target document's title to the generated olink text. That identifies to the reader that the link is to a different document, not the current document. See also olink.doctitle to enable that feature. - - - - - -olink.doctitle -list -no -yes -maybe - - -olink.doctitle -show the document title for external olinks? - - - -<xsl:param name="olink.doctitle">no</xsl:param> - - -Description - -When olinks between documents are resolved, the generated text -may not make it clear that the reference is to another document. -It is possible for the stylesheets to append the other document's -title to external olinks. For this to happen, two parameters must -be set. - - -This olink.doctitle parameter -should be set to either yes or maybe -to enable this feature. - - - -And you should also set the current.docid -parameter to the document id for the document currently -being processed for output. - - - - - -Then if an olink's targetdoc id differs from -the current.docid value, the stylesheet knows -that it is a reference to another document and can -append the target document's -title to the generated olink text. - -The text for the target document's title is copied from the -olink database from the ttl element -of the top-level div for that document. -If that ttl element is missing or empty, -no title is output. - - -The supported values for olink.doctitle are: - - - -yes - - -Always insert the title to the target document if it is not -the current document. - - - - -no - - -Never insert the title to the target document, even if requested -in an xrefstyle attribute. - - - - -maybe - - -Only insert the title to the target document, if requested -in an xrefstyle attribute. - - - - -An xrefstyle attribute -may override the global setting for individual olinks. -The following values are supported in an -xrefstyle -attribute using the select: syntax: - - - - -docname - - -Insert the target document name for this olink using the -docname gentext template, but only -if the value of olink.doctitle -is not no. - - - - -docnamelong - - -Insert the target document name for this olink using the -docnamelong gentext template, but only -if the value of olink.doctitle -is not no. - - - - -nodocname - - -Omit the target document name even if -the value of olink.doctitle -is yes. - - - - -Another way of inserting the target document name -for a single olink is to employ an -xrefstyle -attribute using the template: syntax. -The %o placeholder (the letter o, not zero) -in such a template -will be filled in with the target document's title when it is processed. -This will occur regardless of -the value of olink.doctitle. - -Note that prior to version 1.66 of the XSL stylesheets, -the allowed values for this parameter were 0 and 1. Those -values are still supported and mapped to 'no' and 'yes', respectively. - - - - - - -olink.debug -boolean - - -olink.debug -Turn on debugging messages for olinks - - - - -<xsl:param name="olink.debug" select="0"></xsl:param> - - - -Description - -If non-zero, then each olink will generate several -messages about how it is being resolved during processing. -This is useful when an olink does not resolve properly -and the standard error messages are not sufficient to -find the problem. - - -You may need to read through the olink XSL templates -to understand the context for some of the debug messages. - - - - - - - -olink.properties -attribute set - - -olink.properties -Properties associated with the cross-reference -text of an olink. - - - - -<xsl:attribute-set name="olink.properties"> - <xsl:attribute name="show-destination">replace</xsl:attribute> -</xsl:attribute-set> - - - -Description - -This attribute set is applied to the -fo:basic-link element of an olink. It is not applied to the -optional page number or optional title of the external -document. - - - - - - -olink.lang.fallback.sequence -string - - -olink.lang.fallback.sequence -look up translated documents if olink not found? - - - -<xsl:param name="olink.lang.fallback.sequence"></xsl:param> - - -Description - - -This parameter defines a list of lang values -to search among to resolve olinks. - - -Normally an olink tries to resolve to a document in the same -language as the olink itself. The language of an olink -is determined by its nearest ancestor element with a -lang attribute, otherwise the -value of the l10n.gentext.default.lang -parameter. - - -An olink database can contain target data for the same -document in multiple languages. Each set of data has the -same value for the targetdoc attribute in -the document element in the database, but with a -different lang attribute value. - - -When an olink is being resolved, the target is first -sought in the document with the same language as the olink. -If no match is found there, then this parameter is consulted -for additional languages to try. - -The olink.lang.fallback.sequence -must be a whitespace separated list of lang values to -try. The first one with a match in the olink database is used. -The default value is empty. - -For example, a document might be written in German -and contain an olink with -targetdoc="adminguide". -When the document is processed, the processor -first looks for a target dataset in the -olink database starting with: - -<document targetdoc="adminguide" lang="de">. - - -If there is no such element, then the -olink.lang.fallback.sequence -parameter is consulted. -If its value is, for example, fr en, then the processor next -looks for targetdoc="adminguide" lang="fr", and -then for targetdoc="adminguide" lang="en". -If there is still no match, it looks for -targetdoc="adminguide" with no -lang attribute. - - -This parameter is useful when a set of documents is only -partially translated, or is in the process of being translated. -If a target of an olink has not yet been translated, then this -parameter permits the processor to look for the document in -other languages. This assumes the reader would rather have -a link to a document in a different language than to have -a broken link. - - - - - - - -insert.olink.page.number -list -no -yes -maybe - - -insert.olink.page.number -Turns page numbers in olinks on and off - - - - -<xsl:param name="insert.olink.page.number">no</xsl:param> - - - -Description - -The value of this parameter determines if -cross references made between documents with -olink will -include page number citations. -In most cases this is only applicable to references in printed output. - -The parameter has three possible values. - - - -no -No page number references will be generated for olinks. - - - -yes -Page number references will be generated -for all olink references. -The style of page reference may be changed -if an xrefstyle -attribute is used. - - - -maybe -Page number references will not be generated -for an olink element unless -it has an -xrefstyle -attribute whose value specifies a page reference. - - - -Olinks that point to targets within the same document -are treated as xrefs, and controlled by -the insert.xref.page.number parameter. - - -Page number references for olinks to -external documents can only be inserted if the -information exists in the olink database. -This means each olink target element -(div or obj) -must have a page attribute -whose value is its page number in the target document. -The XSL stylesheets are not able to extract that information -during processing because pages have not yet been created in -XSLT transformation. Only the XSL-FO processor knows what -page each element is placed on. -Therefore some postprocessing must take place to populate -page numbers in the olink database. - - - - - - - - - -insert.olink.pdf.frag -boolean - - -insert.olink.pdf.frag -Add fragment identifiers for links into PDF files - - - - -<xsl:param name="insert.olink.pdf.frag" select="0"></xsl:param> - - - -Description - -The value of this parameter determines whether -the cross reference URIs to PDF documents made with -olink will -include fragment identifiers. - - -When forming a URI to link to a PDF document, -a fragment identifier (typically a '#' followed by an -id value) appended to the PDF filename can be used by -the PDF viewer to open -the PDF file to a location within the document instead of -the first page. -However, not all PDF files have id -values embedded in them, and not all PDF viewers can -handle fragment identifiers. - - -If insert.olink.pdf.frag is set -to a non-zero value, then any olink targeting a -PDF file will have the fragment identifier appended to the URI. -The URI is formed by concatenating the value of the -olink.base.uri parameter, the -value of the baseuri -attribute from the document -element in the olink database with the matching -targetdoc value, -and the value of the href -attribute for the targeted element in the olink database. -The href attribute -contains the fragment identifier. - - -If insert.olink.pdf.frag is set -to zero (the default value), then -the href attribute -from the olink database -is not appended to PDF olinks, so the fragment identifier is left off. -A PDF olink is any olink for which the -baseuri attribute -from the matching document -element in the olink database ends with '.pdf'. -Any other olinks will still have the fragment identifier added. - - - - - - -prefer.internal.olink -boolean - - -prefer.internal.olink -Prefer a local olink reference to an external reference - - - - -<xsl:param name="prefer.internal.olink" select="0"></xsl:param> - - - -Description - -If you are re-using XML content modules in multiple documents, -you may want to redirect some of your olinks. This parameter -permits you to redirect an olink to the current document. - - -For example: you are writing documentation for a product, -which includes 3 manuals: a little installation -booklet (booklet.xml), a user -guide (user.xml), and a reference manual (reference.xml). -All 3 documents begin with the same introduction section (intro.xml) that -contains a reference to the customization section (custom.xml) which is -included in both user.xml and reference.xml documents. - - -How do you write the link to custom.xml in intro.xml -so that it is interpreted correctly in all 3 documents? - -If you use xref, it will fail in user.xml. - -If you use olink (pointing to reference.xml), -the reference in user.xml -will point to the customization section of the reference manual, while it is -actually available in user.xml. - - - -If you set the prefer.internal.olink -parameter to a non-zero value, then the processor will -first look in the olink database -for the olink's targetptr attribute value -in document matching the current.docid -parameter value. If it isn't found there, then -it tries the document in the database -with the targetdoc -value that matches the olink's targetdoc -attribute. - - -This feature permits an olink reference to resolve to -the current document if there is an element -with an id matching the olink's targetptr -value. The current document's olink data must be -included in the target database for this to work. - - -There is a potential for incorrect links if -the same id attribute value is used for different -content in different documents. -Some of your olinks may be redirected to the current document -when they shouldn't be. It is not possible to control -individual olink instances. - - - - - - - -link.mailto.url -string - - -link.mailto.url -Mailto URL for the LINK REL=made HTML HEAD element - - - - -<xsl:param name="link.mailto.url"></xsl:param> - - - -Description - -If not the empty string, this address will be used for the -rel=made link element in the html head - - - - - - - -ulink.target -string - - -ulink.target -The HTML anchor target for ULinks - - - - -<xsl:param name="ulink.target">_top</xsl:param> - - - -Description - -If ulink.target is non-zero, its value will -be used for the target attribute -on anchors generated for ulinks. - - - - - - -olink.fragid -string - - -olink.fragid -Names the fragment identifier portion of an OLink resolver query - - - -<xsl:param name="olink.fragid">fragid=</xsl:param> - - -Description -The fragment identifier portion of an olink target. - - - - - -olink.outline.ext -string - - -olink.outline.ext -The extension of OLink outline files - - - - -<xsl:param name="olink.outline.ext">.olink</xsl:param> - - - -Description - -The extension to be expected for OLink outline files -Bob has this parameter as dead. Please don't use - - - - - - -olink.pubid -string - - -olink.pubid -Names the public identifier portion of an OLink resolver query - - - - -<xsl:param name="olink.pubid">pubid</xsl:param> - - - -Description - - - - - - - - -olink.sysid -string - - -olink.sysid -Names the system identifier portion of an OLink resolver query - - - - -<xsl:param name="olink.sysid">sysid</xsl:param> - - - -Description - -FIXME - - - - - - -olink.resolver -string - - -olink.resolver -The root name of the OLink resolver (usually a script) - - - - <xsl:param name="olink.resolver">/cgi-bin/olink</xsl:param> - - -Description -FIXME: - - - -Cross References - - -collect.xref.targets -list -no -yes -only - - -collect.xref.targets -Controls whether cross reference data is -collected - - -<xsl:param name="collect.xref.targets">no</xsl:param> - - -Description - - -In order to resolve olinks efficiently, the stylesheets can -generate an external data file containing information about -all potential cross reference endpoints in a document. -This parameter determines whether the collection process is run when the document is processed by the stylesheet. The default value is no, which means the data file is not generated during processing. The other choices are yes, which means the data file is created and the document is processed for output, and only, which means the data file is created but the document is not processed for output. -See also targets.filename. - - - - - - -insert.xref.page.number -list -no -yes -maybe - - -insert.xref.page.number -Turns page numbers in xrefs on and off - - - - -<xsl:param name="insert.xref.page.number">no</xsl:param> - - - -Description - -The value of this parameter determines if -cross references (xrefs) in -printed output will -include page number citations. -It has three possible values. - - - -no -No page number references will be generated. - - - -yes -Page number references will be generated -for all xref elements. -The style of page reference may be changed -if an xrefstyle -attribute is used. - - - -maybe -Page number references will not be generated -for an xref element unless -it has an -xrefstyle -attribute whose value specifies a page reference. - - - - - - - - - -use.role.as.xrefstyle -boolean - - -use.role.as.xrefstyle -Use role attribute for -xrefstyle on xref? - - - - -<xsl:param name="use.role.as.xrefstyle" select="1"></xsl:param> - - - -Description - -In DocBook documents that conform to a schema older than V4.3, this parameter allows -role to serve the purpose of specifying the cross reference style. - -If non-zero, the role attribute on -xref will be used to select the cross reference style. -In DocBook V4.3, the xrefstyle attribute was added for this purpose. -If the xrefstyle attribute is present, -role will be ignored, regardless of the setting -of this parameter. - - - -Example - -The following small stylesheet shows how to configure the -stylesheets to make use of the cross reference style: - -<?xml version="1.0"?> -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" - version="1.0"> - -<xsl:import href="../xsl/html/docbook.xsl"/> - -<xsl:output method="html"/> - -<xsl:param name="local.l10n.xml" select="document('')"/> -<l:i18n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0"> - <l:l10n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0" language="en"> - <l:context name="xref"> - <l:template name="chapter" style="title" text="Chapter %n, %t"/> - <l:template name="chapter" text="Chapter %n"/> - </l:context> - </l:l10n> -</l:i18n> - -</xsl:stylesheet> - -With this stylesheet, the cross references in the following document: - -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN" - "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd"> -<book id="book"><title>Book</title> - -<preface> -<title>Preface</title> - -<para>Normal: <xref linkend="ch1"/>.</para> -<para>Title: <xref xrefstyle="title" linkend="ch1"/>.</para> - -</preface> - -<chapter id="ch1"> -<title>First Chapter</title> - -<para>Irrelevant.</para> - -</chapter> -</book> - -will appear as: - - -Normal: Chapter 1. -Title: Chapter 1, First Chapter. - - - - - - - -xref.with.number.and.title -boolean - - -xref.with.number.and.title -Use number and title in cross references - - - - -<xsl:param name="xref.with.number.and.title" select="1"></xsl:param> - - - -Description - -A cross reference may include the number (for example, the number of -an example or figure) and the title which is a required child of some -targets. This parameter inserts both the relevant number as well as -the title into the link. - - - - - - -xref.label-page.separator -string - - -xref.label-page.separator -Punctuation or space separating label from page number in xref - - - -<xsl:param name="xref.label-page.separator"><xsl:text> </xsl:text></xsl:param> - - -Description - - -This parameter allows you to control the punctuation of certain -types of generated cross reference text. -When cross reference text is generated for an -xref or -olink element -using an xrefstyle attribute -that makes use of the select: feature, -and the selected components include both label and page -but no title, -then the value of this parameter is inserted between -label and page number in the output. -If a title is included, then other separators are used. - - - - - - - -xref.label-title.separator -string - - -xref.label-title.separator -Punctuation or space separating label from title in xref - - - -<xsl:param name="xref.label-title.separator">: </xsl:param> - - -Description - - -This parameter allows you to control the punctuation of certain -types of generated cross reference text. -When cross reference text is generated for an -xref or -olink element -using an xrefstyle attribute -that makes use of the select: feature, -and the selected components include both label and title, -then the value of this parameter is inserted between -label and title in the output. - - - - - - - -xref.title-page.separator -string - - -xref.title-page.separator -Punctuation or space separating title from page number in xref - - - -<xsl:param name="xref.title-page.separator"><xsl:text> </xsl:text></xsl:param> - - -Description - - -This parameter allows you to control the punctuation of certain -types of generated cross reference text. -When cross reference text is generated for an -xref or -olink element -using an xrefstyle attribute -that makes use of the select: feature, -and the selected components include both title and page number, -then the value of this parameter is inserted between -title and page number in the output. - - - - - -Lists - - -segmentedlist.as.table -boolean - - -segmentedlist.as.table -Format segmented lists as tables? - - - - -<xsl:param name="segmentedlist.as.table" select="0"></xsl:param> - - - -Description - -If non-zero, segmentedlists will be formatted as -tables. - - - - - - -variablelist.as.table -boolean - - -variablelist.as.table -Format variablelists as tables? - - - - -<xsl:param name="variablelist.as.table" select="0"></xsl:param> - - - -Description - -If non-zero, variablelists will be formatted as -tables. A processing instruction exists to specify a particular width for the -column containing the terms: -dbhtml term-width=".25in" - -You can override this setting with a processing instruction as the -child of variablelist: dbhtml -list-presentation="table" or dbhtml -list-presentation="list". - -This parameter only applies to the HTML transformations. In the -FO case, proper list markup is robust enough to handle the formatting. -But see also variablelist.as.blocks. - - <variablelist> - <?dbhtml list-presentation="table"?> - <?dbhtml term-width="1.5in"?> - <?dbfo list-presentation="list"?> - <?dbfo term-width="1in"?> - <varlistentry> - <term>list</term> - <listitem> - <para> - Formatted as a table even if variablelist.as.table is set to 0. - </para> - </listitem> - </varlistentry> - </variablelist> - - - - - - -variablelist.term.separator -string - - -variablelist.term.separator -Text to separate terms within a multi-term -varlistentry - - - - -<xsl:param name="variablelist.term.separator">, </xsl:param> - - -Description - -When a varlistentry contains multiple term -elements, the string specified in the value of the -variablelist.term.separator parameter is placed -after each term except the last. - - - To generate a line break between multiple terms in - a varlistentry, set a non-zero value for the - variablelist.term.break.after parameter. If - you do so, you may also want to set the value of the - variablelist.term.separator parameter to an - empty string (to suppress rendering of the default comma and space - after each term). - - - - - - - -variablelist.term.break.after -boolean - - -variablelist.term.break.after -Generate line break after each term within a -multi-term varlistentry? - - - - -<xsl:param name="variablelist.term.break.after">0</xsl:param> - - -Description - -Set a non-zero value for the -variablelist.term.break.after parameter to -generate a line break between terms in a -multi-term varlistentry. - - -If you set a non-zero value for -variablelist.term.break.after, you may also -want to set the value of the -variablelist.term.separator parameter to an -empty string (to suppress rendering of the default comma and space -after each term). - - - - - -Bibliography - - -bibliography.style -list -normal -iso690 - - -bibliography.style -Style used for formatting of biblioentries. - - - - -<xsl:param name="bibliography.style">normal</xsl:param> - - - -Description - -Currently only normal and -iso690 styles are supported. - -In order to use ISO690 style to the full extent you might need -to use additional markup described on the -following WiKi page. - - - - - - -biblioentry.item.separator -string - - -biblioentry.item.separator -Text to separate bibliography entries - - - -<xsl:param name="biblioentry.item.separator">. </xsl:param> - - -Description - -Text to separate bibliography entries - - - - - - - -bibliography.collection -string - - -bibliography.collection -Name of the bibliography collection file - - - - -<xsl:param name="bibliography.collection">http://docbook.sourceforge.net/release/bibliography/bibliography.xml</xsl:param> - - - - -Description - -Maintaining bibliography entries across a set of documents is tedious, time -consuming, and error prone. It makes much more sense, usually, to store all of -the bibliography entries in a single place and simply extract -the ones you need in each document. - -That's the purpose of the -bibliography.collection parameter. To setup a global -bibliography database, follow these steps: - -First, create a stand-alone bibliography document that contains all of -the documents that you wish to reference. Make sure that each bibliography -entry (whether you use biblioentry or bibliomixed) -has an ID. - -My global bibliography, ~/bibliography.xml begins -like this: - - -<!DOCTYPE bibliography - PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN" - "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd"> -<bibliography><title>References</title> - -<bibliomixed id="xml-rec"><abbrev>XML 1.0</abbrev>Tim Bray, -Jean Paoli, C. M. Sperberg-McQueen, and Eve Maler, editors. -<citetitle><ulink url="http://www.w3.org/TR/REC-xml">Extensible Markup -Language (XML) 1.0 Second Edition</ulink></citetitle>. -World Wide Web Consortium, 2000. -</bibliomixed> - -<bibliomixed id="xml-names"><abbrev>Namespaces</abbrev>Tim Bray, -Dave Hollander, -and Andrew Layman, editors. -<citetitle><ulink url="http://www.w3.org/TR/REC-xml-names/">Namespaces in -XML</ulink></citetitle>. -World Wide Web Consortium, 1999. -</bibliomixed> - -<!-- ... --> -</bibliography> - - - -When you create a bibliography in your document, simply -provide empty bibliomixed -entries for each document that you wish to cite. Make sure that these -elements have the same ID as the corresponding real -entry in your global bibliography. - -For example: - - -<bibliography><title>Bibliography</title> - -<bibliomixed id="xml-rec"/> -<bibliomixed id="xml-names"/> -<bibliomixed id="DKnuth86">Donald E. Knuth. <citetitle>Computers and -Typesetting: Volume B, TeX: The Program</citetitle>. Addison-Wesley, -1986. ISBN 0-201-13437-3. -</bibliomixed> -<bibliomixed id="relaxng"/> - -</bibliography> - - -Note that it's perfectly acceptable to mix entries from your -global bibliography with normal entries. You can use -xref or other elements to cross-reference your -bibliography entries in exactly the same way you do now. - -Finally, when you are ready to format your document, simply set the -bibliography.collection parameter (in either a -customization layer or directly through your processor's interface) to -point to your global bibliography. - -The stylesheets will format the bibliography in your document as if -all of the entries referenced appeared there literally. - - - - - - -bibliography.numbered -boolean - - -bibliography.numbered -Should bibliography entries be numbered? - - - - -<xsl:param name="bibliography.numbered" select="0"></xsl:param> - - - -Description - -If non-zero bibliography entries will be numbered - - - - -Glossary - - -glossterm.auto.link -boolean - - -glossterm.auto.link -Generate links from glossterm to glossentry automatically? - - - - -<xsl:param name="glossterm.auto.link" select="0"></xsl:param> - - - -Description - -If non-zero, links from inline glossterms to the corresponding -glossentry elements in a glossary or glosslist -will be automatically generated. This is useful when your glossterms are consistent -and you don't want to add links manually. - -The automatic link generation feature is not used on glossterm elements -that have a linkend attribute. - - - - - - -firstterm.only.link -boolean - - -firstterm.only.link -Does automatic glossterm linking only apply to firstterms? - - - - -<xsl:param name="firstterm.only.link" select="0"></xsl:param> - - - -Description - -If non-zero, only firstterms will be automatically linked -to the glossary. If glossary linking is not enabled, this parameter -has no effect. - - - - - - -glossary.collection -string - - -glossary.collection -Name of the glossary collection file - - - - -<xsl:param name="glossary.collection"></xsl:param> - - - -Description - -Glossaries maintained independently across a set of documents -are likely to become inconsistent unless considerable effort is -expended to keep them in sync. It makes much more sense, usually, to -store all of the glossary entries in a single place and simply -extract the ones you need in each document. - -That's the purpose of the -glossary.collection parameter. To setup a global -glossary database, follow these steps: - -Setting Up the Glossary Database - -First, create a stand-alone glossary document that contains all of -the entries that you wish to reference. Make sure that each glossary -entry has an ID. - -Here's an example glossary: - - - -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE glossary - PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN" - "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd"> -<glossary> -<glossaryinfo> -<editor><firstname>Eric</firstname><surname>Raymond</surname></editor> -<title>Jargon File 4.2.3 (abridged)</title> -<releaseinfo>Just some test data</releaseinfo> -</glossaryinfo> - -<glossdiv><title>0</title> - -<glossentry> -<glossterm>0</glossterm> -<glossdef> -<para>Numeric zero, as opposed to the letter `O' (the 15th letter of -the English alphabet). In their unmodified forms they look a lot -alike, and various kluges invented to make them visually distinct have -compounded the confusion. If your zero is center-dotted and letter-O -is not, or if letter-O looks almost rectangular but zero looks more -like an American football stood on end (or the reverse), you're -probably looking at a modern character display (though the dotted zero -seems to have originated as an option on IBM 3270 controllers). If -your zero is slashed but letter-O is not, you're probably looking at -an old-style ASCII graphic set descended from the default typewheel on -the venerable ASR-33 Teletype (Scandinavians, for whom /O is a letter, -curse this arrangement). (Interestingly, the slashed zero long -predates computers; Florian Cajori's monumental "A History of -Mathematical Notations" notes that it was used in the twelfth and -thirteenth centuries.) If letter-O has a slash across it and the zero -does not, your display is tuned for a very old convention used at IBM -and a few other early mainframe makers (Scandinavians curse <emphasis>this</emphasis> -arrangement even more, because it means two of their letters collide). -Some Burroughs/Unisys equipment displays a zero with a <emphasis>reversed</emphasis> -slash. Old CDC computers rendered letter O as an unbroken oval and 0 -as an oval broken at upper right and lower left. And yet another -convention common on early line printers left zero unornamented but -added a tail or hook to the letter-O so that it resembled an inverted -Q or cursive capital letter-O (this was endorsed by a draft ANSI -standard for how to draw ASCII characters, but the final standard -changed the distinguisher to a tick-mark in the upper-left corner). -Are we sufficiently confused yet?</para> -</glossdef> -</glossentry> - -<glossentry> -<glossterm>1TBS</glossterm> -<glossdef> -<para role="accidence"> -<phrase role="pronounce"></phrase> -<phrase role="partsofspeach">n</phrase> -</para> -<para>The "One True Brace Style"</para> -<glossseealso>indent style</glossseealso> -</glossdef> -</glossentry> - -<!-- ... --> - -</glossdiv> - -<!-- ... --> - -</glossary> - - - - -Marking Up Glossary Terms - -That takes care of the glossary database, now you have to get the entries -into your document. Unlike bibliography entries, which can be empty, creating -placeholder glossary entries would be very tedious. So instead, -support for glossary.collection relies on implicit linking. - -In your source document, simply use firstterm and -glossterm to identify the terms you wish to have included -in the glossary. The stylesheets assume that you will either set the -baseform attribute correctly, or that the -content of the element exactly matches a term in your glossary. - -If you're using a glossary.collection, don't -make explicit links on the terms in your document. - -So, in your document, you might write things like this: - - -<para>This is dummy text, without any real meaning. -The point is simply to reference glossary terms like <glossterm>0</glossterm> -and the <firstterm baseform="1TBS">One True Brace Style (1TBS)</firstterm>. -The <glossterm>1TBS</glossterm>, as you can probably imagine, is a nearly -religious issue.</para> - - -If you set the firstterm.only.link parameter, -only the terms marked with firstterm will be links. -Otherwise, all the terms will be linked. - - - -Marking Up the Glossary - -The glossary itself has to be identified for the stylesheets. For lack -of a better choice, the role is used. -To identify the glossary as the target for automatic processing, set -the role to auto. The title of this -glossary (and any other information from the glossaryinfo -that's rendered by your stylesheet) will be displayed, but the entries will -come from the database. - - -Unfortunately, the glossary can't be empty, so you must put in -at least one glossentry. The content of this entry -is irrelevant, it will not be rendered: - - -<glossary role="auto"> -<glossentry> -<glossterm>Irrelevant</glossterm> -<glossdef> -<para>If you can see this, the document was processed incorrectly. Use -the <parameter>glossary.collection</parameter> parameter.</para> -</glossdef> -</glossentry> -</glossary> - - -What about glossary divisions? If your glossary database has glossary -divisions and your automatic glossary contains at least -one glossdiv, the automic glossary will have divisions. -If the glossdiv is missing from either location, no divisions -will be rendered. - -Glossary entries (and divisions, if appropriate) in the glossary will -occur in precisely the order they occur in your database. - - - -Formatting the Document - -Finally, when you are ready to format your document, simply set the -glossary.collection parameter (in either a -customization layer or directly through your processor's interface) to -point to your global glossary. - -The stylesheets will format the glossary in your document as if -all of the entries implicilty referenced appeared there literally. - - -Limitations - -Glossary cross-references within the glossary are -not supported. For example, this will not work: - - -<glossentry> -<glossterm>gloss-1</glossterm> -<glossdef><para>A description that references <glossterm>gloss-2</glossterm>.</para> -<glossseealso>gloss-2</glossseealso> -</glossdef> -</glossentry> - - -If you put glossary cross-references in your glossary that way, -you'll get the cryptic error: Warning: -glossary.collection specified, but there are 0 automatic -glossaries. - -Instead, you must do two things: - - - -Markup your glossary using glossseealso: - - -<glossentry> -<glossterm>gloss-1</glossterm> -<glossdef><para>A description that references <glossterm>gloss-2</glossterm>.</para> -<glossseealso>gloss-2</glossseealso> -</glossdef> -</glossentry> - - - - -Make sure there is at least one glossterm reference to -gloss-2 in your document. The -easiest way to do that is probably within a remark in your -automatic glossary: - - -<glossary role="auto"> -<remark>Make sure there's a reference to <glossterm>gloss-2</glossterm>.</remark> -<glossentry> -<glossterm>Irrelevant</glossterm> -<glossdef> -<para>If you can see this, the document was processed incorrectly. Use -the <parameter>glossary.collection</parameter> parameter.</para> -</glossdef> -</glossentry> -</glossary> - - - - - - - - - - -glossary.sort -boolean - - -glossary.sort -Sort glossentry elements? - - - - -<xsl:param name="glossary.sort" select="0"></xsl:param> - - - -Description - -If non-zero, then the glossentry elements within a -glossary, glossdiv, or glosslist are sorted on the glossterm, using -the current lang setting. If zero (the default), then -glossentry elements are not sorted and are presented -in document order. - - - - - - - -glossentry.show.acronym -list -no -yes -primary - - -glossentry.show.acronym -Display glossentry acronyms? - - - - -<xsl:param name="glossentry.show.acronym">no</xsl:param> - - - -Description - -A setting of yes means they should be displayed; -no means they shouldn't. If primary is used, -then they are shown as the primary text for the entry. - - -This setting controls both acronym and -abbrev elements in the glossentry. - - - - - -Miscellaneous - - -formal.procedures -boolean - - -formal.procedures -Selects formal or informal procedures - - - - -<xsl:param name="formal.procedures" select="1"></xsl:param> - - - -Description - -Formal procedures are numbered and always have a title. - - - - - - - -formal.title.placement -table - - -formal.title.placement -Specifies where formal object titles should occur - - - - -<xsl:param name="formal.title.placement"> -figure before -example before -equation before -table before -procedure before -task before -</xsl:param> - - - -Description - -Specifies where formal object titles should occur. For each formal object -type (figure, -example, -equation, -table, and procedure) -you can specify either the keyword -before or -after. - - - - - - -runinhead.default.title.end.punct -string - - -runinhead.default.title.end.punct -Default punctuation character on a run-in-head - - - -<xsl:param name="runinhead.default.title.end.punct">.</xsl:param> - - - -Description - -If non-zero, For a formalpara, use the specified -string as the separator between the title and following text. The period is the default value. - - - - - - -runinhead.title.end.punct -string - - -runinhead.title.end.punct -Characters that count as punctuation on a run-in-head - - - - -<xsl:param name="runinhead.title.end.punct">.!?:</xsl:param> - - - -Description - -Specify which characters are to be counted as punctuation. These -characters are checked for a match with the last character of the -title. If no match is found, the -runinhead.default.title.end.punct contents are -inserted. This is to avoid duplicated punctuation in the output. - - - - - - - -show.comments -boolean - - -show.comments -Display remark elements? - - - - -<xsl:param name="show.comments" select="1"></xsl:param> - - - -Description - -If non-zero, comments will be displayed, otherwise they -are suppressed. Comments here refers to the remark element -(which was called comment prior to DocBook -4.0), not XML comments (<-- like this -->) which are -unavailable. - - - - - - - -show.revisionflag -boolean - - -show.revisionflag -Enable decoration of elements that have a revisionflag - - - - -<xsl:param name="show.revisionflag" select="0"></xsl:param> - - - -Description - - -If show.revisionflag is turned on, then the stylesheets -may produce additional markup designed to allow a CSS stylesheet to -highlight elements that have specific revisionflag settings. - -The markup inserted will be usually be either a <span> or -<div> with an appropriate class -attribute. (The value of the class attribute will be the same as the -value of the revisionflag attribute). In some contexts, for example -tables, where extra markup would be structurally illegal, the class -attribute will be added to the appropriate container element. - -In general, the stylesheets only test for revisionflag in contexts -where an importing stylesheet would have to redefine whole templates. -Most of the revisionflag processing is expected to be done by another -stylesheet, for example changebars.xsl. - - - - - - -shade.verbatim -boolean - - -shade.verbatim -Should verbatim environments be shaded? - - - -<xsl:param name="shade.verbatim" select="0"></xsl:param> - - -Description - -In the FO stylesheet, if this parameter is non-zero then the -shade.verbatim.style properties will be applied -to verbatim environments. - -In the HTML stylesheet, this parameter is now deprecated. Use -CSS instead. - - - - - - -shade.verbatim.style -attribute set - - -shade.verbatim.style -Properties that specify the style of shaded verbatim listings - - - - -<xsl:attribute-set name="shade.verbatim.style"> - <xsl:attribute name="border">0</xsl:attribute> - <xsl:attribute name="bgcolor">#E0E0E0</xsl:attribute> -</xsl:attribute-set> - - - - -Description - -Properties that specify the style of shaded verbatim listings. The -parameters specified (the border and background color) are added to -the styling of the xsl-fo output. A border might be specified as "thin -black solid" for example. See xsl-fo - - - - - - -punct.honorific -string - - -punct.honorific -Punctuation after an honorific in a personal name. - - - - -<xsl:param name="punct.honorific">.</xsl:param> - - - -Description - -This parameter specifies the punctuation that should be added after an -honorific in a personal name. - - - - - - -tex.math.in.alt -list -plain -latex - - -tex.math.in.alt -TeX notation used for equations - - - - -<xsl:param name="tex.math.in.alt"></xsl:param> - - - -Description - -If you want type math directly in TeX notation in equations, -this parameter specifies notation used. Currently are supported two -values -- plain and latex. Empty -value means that you are not using TeX math at all. - -Preferred way for including TeX alternative of math is inside of -textobject element. Eg.: - -<inlineequation> -<inlinemediaobject> -<imageobject> -<imagedata fileref="eq1.gif"/> -</imageobject> -<textobject><phrase>E=mc squared</phrase></textobject> -<textobject role="tex"><phrase>E=mc^2</phrase></textobject> -</inlinemediaobject> -</inlineequation> - -If you are using graphic element, you can -store TeX inside alt element: - -<inlineequation> -<alt role="tex">a^2+b^2=c^2</alt> -<graphic fileref="a2b2c2.gif"/> -</inlineequation> - -If you want use this feature, you should process your FO with -PassiveTeX, which only supports TeX math notation. When calling -stylsheet, don't forget to specify also -passivetex.extensions=1. - -If you want equations in HTML, just process generated file -tex-math-equations.tex by TeX or LaTeX. Then run -dvi2bitmap program on result DVI file. You will get images for -equations in your document. - - - This feature is useful for print/PDF output only if you - use the obsolete and now unsupported PassiveTeX XSL-FO - engine. - - - - -Related Parameters - tex.math.delims, - passivetex.extensions, - tex.math.file - -More information - For how-to documentation on embedding TeX equations and - generating output from them, see - DBTeXMath. - - - - - -tex.math.file -string - - -tex.math.file -Name of temporary file for generating images from equations - - - - -<xsl:param name="tex.math.file">tex-math-equations.tex</xsl:param> - - - -Description - -Name of auxiliary file for TeX equations. This file can be -processed by dvi2bitmap to get bitmap versions of equations for HTML -output. - - -Related Parameters - tex.math.in.alt, - tex.math.delims, - - -More information - For how-to documentation on embedding TeX equations and - generating output from them, see - DBTeXMath. - - - - - -tex.math.delims -boolean - - -tex.math.delims -Should equations output for processing by TeX be -surrounded by math mode delimiters? - - - - -<xsl:param name="tex.math.delims" select="1"></xsl:param> - - - -Description - -For compatibility with DSSSL based DBTeXMath from Allin Cottrell -you should set this parameter to 0. - - -Related Parameters - tex.math.in.alt, - passivetex.extensions - - -See Also - You can also use the dbtex delims processing - instruction to control whether delimiters are output. - -More information - For how-to documentation on embedding TeX equations and - generating output from them, see - DBTeXMath. - - - - - -pixels.per.inch -integer - - -pixels.per.inch -How many pixels are there per inch? - - - - -<xsl:param name="pixels.per.inch">90</xsl:param> - - - -Description - -When lengths are converted to pixels, this value is used to -determine the size of a pixel. The default value is taken from the -XSL -Recommendation. - - - - - - - -points.per.em -number - - -points.per.em -Specify the nominal size of an em-space in points - - - - -<xsl:param name="points.per.em">10</xsl:param> - - - -Description - -The fixed value used for calculations based upon the size of a -character. The assumption made is that ten point font is in use. This -assumption may not be valid. - - - - - - -use.svg -boolean - - -use.svg -Allow SVG in the result tree? - - - - -<xsl:param name="use.svg" select="1"></xsl:param> - - - -Description - -If non-zero, SVG will be considered an acceptable image format. SVG -is passed through to the result tree, so correct rendering of the resulting -diagram depends on the formatter (FO processor or web browser) that is used -to process the output from the stylesheet. - - - - - - -menuchoice.separator -string - - -menuchoice.separator -Separator between items of a menuchoice -other than guimenuitem and -guisubmenu - - - - -<xsl:param name="menuchoice.separator">+</xsl:param> - - - -Description - -Separator used to connect items of a menuchoice other -than guimenuitem and guisubmenu. The latter -elements are linked with menuchoice.menu.separator. - - - - - - - -menuchoice.menu.separator -string - - -menuchoice.menu.separator -Separator between items of a menuchoice -with guimenuitem or -guisubmenu - - - - -<xsl:param name="menuchoice.menu.separator"> → </xsl:param> - - - -Description - -Separator used to connect items of a menuchoice with -guimenuitem or guisubmenu. Other elements -are linked with menuchoice.separator. - -The default value is &#x2192;, which is the -&rarr; (right arrow) character entity. -The current FOP (0.20.5) requires setting the font-family -explicitly. - -The default value also includes spaces around the arrow, -which will allow a line to break. Replace the spaces with -&#xA0; (nonbreaking space) if you don't want those -spaces to break. - - - - - - - -default.float.class -string - - -default.float.class -Specifies the default float class - - - - -<xsl:param name="default.float.class"> - <xsl:choose> - <xsl:when test="contains($stylesheet.result.type,'html')">left</xsl:when> - <xsl:otherwise>before</xsl:otherwise> - </xsl:choose> -</xsl:param> - - - -Description - -Selects the direction in which a float should be placed. for -xsl-fo this is before, for html it is left. For Western texts, the -before direction is the top of the page. - - - - - - -footnote.number.format -list -11,2,3... -AA,B,C... -aa,b,c... -ii,ii,iii... -II,II,III... - - -footnote.number.format -Identifies the format used for footnote numbers - - - - -<xsl:param name="footnote.number.format">1</xsl:param> - - - -Description - -The footnote.number.format specifies the format -to use for footnote numeration (1, i, I, a, or A). - - - - - - -table.footnote.number.format -list -11,2,3... -AA,B,C... -aa,b,c... -ii,ii,iii... -II,II,III... - - -table.footnote.number.format -Identifies the format used for footnote numbers in tables - - - - -<xsl:param name="table.footnote.number.format">a</xsl:param> - - - -Description - -The table.footnote.number.format specifies the format -to use for footnote numeration (1, i, I, a, or A) in tables. - - - - - - -footnote.number.symbols - - - -footnote.number.symbols -Special characters to use as footnote markers - - - - -<xsl:param name="footnote.number.symbols"></xsl:param> - - - -Description - -If footnote.number.symbols is not the empty string, -footnotes will use the characters it contains as footnote symbols. For example, -*&#x2020;&#x2021;&#x25CA;&#x2720; will identify -footnotes with *, , , -, and . If there are more footnotes -than symbols, the stylesheets will fall back to numbered footnotes using -footnote.number.format. - -The use of symbols for footnotes depends on the ability of your -processor (or browser) to render the symbols you select. Not all systems are -capable of displaying the full range of Unicode characters. If the quoted characters -in the preceding paragraph are not displayed properly, that's a good indicator -that you may have trouble using those symbols for footnotes. - - - - - - -table.footnote.number.symbols -string - - -table.footnote.number.symbols -Special characters to use a footnote markers in tables - - - - -<xsl:param name="table.footnote.number.symbols"></xsl:param> - - - -Description - -If table.footnote.number.symbols is not the empty string, -table footnotes will use the characters it contains as footnote symbols. For example, -*&#x2020;&#x2021;&#x25CA;&#x2720; will identify -footnotes with *, , , -, and . If there are more footnotes -than symbols, the stylesheets will fall back to numbered footnotes using -table.footnote.number.format. - -The use of symbols for footnotes depends on the ability of your -processor (or browser) to render the symbols you select. Not all systems are -capable of displaying the full range of Unicode characters. If the quoted characters -in the preceding paragraph are not displayed properly, that's a good indicator -that you may have trouble using those symbols for footnotes. - - - - - - -highlight.source -boolean - - -highlight.source -Should the content of programlisting -be syntactically highlighted? - - - - -<xsl:param name="highlight.source" select="0"></xsl:param> - - - -Description - -When this parameter is non-zero, the stylesheets will try to do syntax highlighting of the -content of programlisting elements. You specify the language for each programlisting -by using the language attribute. The highlight.default.language -parameter can be used to specify the language for programlistings without a language -attribute. Syntax highlighting also works for screen and synopsis elements. - -The actual highlighting work is done by the XSLTHL extension module. This is an external Java library that has to be -downloaded separately (see below). - - -In order to use this extension, you must - -add xslthl-2.x.x.jar to your Java classpath. The latest version is available -from the XSLT syntax highlighting project -at SourceForge. - - -use a customization layer in which you import one of the following stylesheet modules: - - - html/highlight.xsl - - - - xhtml/highlight.xsl - - - - xhtml-1_1/highlight.xsl - - - - fo/highlight.xsl - - - - - -let either the xslthl.config Java system property or the -highlight.xslthl.config parameter point to the configuration file for syntax -highlighting (using URL syntax). DocBook XSL comes with a ready-to-use configuration file, -highlighting/xslthl-config.xml. - - - -The extension works with Saxon 6.5.x and Xalan-J. (Saxon 8.5 or later is also supported, but since it is -an XSLT 2.0 processor it is not guaranteed to work with DocBook XSL in all circumstances.) - -The following is an example of a Saxon 6 command adapted for syntax highlighting, to be used on Windows: - - -java -cp c:/Java/saxon.jar;c:/Java/xslthl-2.0.1.jar --Dxslthl.config=file:///c:/docbook-xsl/highlighting/xslthl-config.xml com.icl.saxon.StyleSheet --o test.html test.xml myhtml.xsl - - - - - - - -highlight.xslthl.config -uri - - -highlight.xslthl.config -Location of XSLTHL configuration file - - - - -<xsl:param name="highlight.xslthl.config"></xsl:param> - - - -Description - -This location has precedence over the corresponding Java property. - - - - - - -highlight.default.language -string - - -highlight.default.language -Default language of programlisting - - - - -<xsl:param name="highlight.default.language"></xsl:param> - - - -Description - -This language is used when there is no language attribute on programlisting. - - - - - - -email.delimiters.enabled -boolean - - -email.delimiters.enabled -Generate delimiters around email addresses? - - - - -<xsl:param name="email.delimiters.enabled" select="1"></xsl:param> - - - -Description - -If non-zero, delimiters - -For delimiters, the -stylesheets are currently hard-coded to output angle -brackets. - -are generated around e-mail addresses -(the output of the email element). - - - - - - -exsl.node.set.available -boolean - - -exsl.node.set.available -Is the test function-available('exsl:node-set') true? - - - -<xsl:param name="exsl.node.set.available"> - <xsl:choose> - <xsl:when exsl:foo="" test="function-available('exsl:node-set') or contains(system-property('xsl:vendor'), 'Apache Software Foundation')">1</xsl:when> - <xsl:otherwise>0</xsl:otherwise> - </xsl:choose> -</xsl:param> - - - -Description - -If non-zero, -then the exsl:node-set() function is available to be used in -the stylesheet. -If zero, then the function is not available. -This param automatically detects the presence of -the function and does not normally need to be set manually. - -This param was created to handle a long-standing -bug in the Xalan processor that fails to detect the -function even though it is available. - - - - -Annotations - - -annotation.support -boolean - - -annotation.support -Enable annotations? - - - - -<xsl:param name="annotation.support" select="0"></xsl:param> - - - -Description - -If non-zero, the stylesheets will attempt to support annotation -elements in HTML by including some JavaScript (see -annotation.js). - - - - - - -annotation.js -string - - -annotation.js -URIs identifying JavaScript files with support for annotation popups - - - - - -<xsl:param name="annotation.js"> -<xsl:text>http://docbook.sourceforge.net/release/script/AnchorPosition.js http://docbook.sourceforge.net/release/script/PopupWindow.js</xsl:text></xsl:param> - - - - -Description - -If annotation.support is enabled and the -document contains annotations, then the URIs listed -in this parameter will be included. These JavaScript files are required -for popup annotation support. - - - - - - -annotation.css -string - - -annotation.css -CSS rules for annotations - - - - -<xsl:param name="annotation.css"> -/* ====================================================================== - Annotations -*/ - -div.annotation-list { visibility: hidden; - } - -div.annotation-nocss { position: absolute; - visibility: hidden; - } - -div.annotation-popup { position: absolute; - z-index: 4; - visibility: hidden; - padding: 0px; - margin: 2px; - border-style: solid; - border-width: 1px; - width: 200px; - background-color: white; - } - -div.annotation-title { padding: 1px; - font-weight: bold; - border-bottom-style: solid; - border-bottom-width: 1px; - color: white; - background-color: black; - } - -div.annotation-body { padding: 2px; - } - -div.annotation-body p { margin-top: 0px; - padding-top: 0px; - } - -div.annotation-close { position: absolute; - top: 2px; - right: 2px; - } -</xsl:param> - - - -Description - -If annotation.support is enabled and the -document contains annotations, then the CSS in this -parameter will be included in the document. - - - - - - -annotation.graphic.open -uri - - -annotation.graphic.open -Image for identifying a link that opens an annotation popup - - - - -<xsl:param name="annotation.graphic.open">http://docbook.sourceforge.net/release/images/annot-open.png</xsl:param> - - - -Description - -This image is used inline to identify the location of -annotations. It may be replaced by a user provided graphic. The size should be approximately 10x10 pixels. - - - - - - -annotation.graphic.close -uri - - -annotation.graphic.close -Image for identifying a link that closes an annotation popup - - - - -<xsl:param name="annotation.graphic.close"> -http://docbook.sourceforge.net/release/images/annot-close.png</xsl:param> - - - -Description - -This image is used on popup annotations as the “x” that the -user can click to dismiss the popup. -This image is used on popup annotations as the “x” that the user can -click to dismiss the popup. It may be replaced by a user provided graphic. The size should be approximately 10x10 pixels. - - - - -Graphics - - -img.src.path -string - - -img.src.path -Path to HTML/FO image files - - - -<xsl:param name="img.src.path"></xsl:param> - - -Description - -Add a path prefix to the value of the fileref -attribute of graphic, inlinegraphic, and imagedata elements. The resulting -compound path is used in the output as the value of the src -attribute of img (HTML) or external-graphic (FO). - - - -The path given by img.src.path could be relative to the directory where the HTML/FO -files are created, or it could be an absolute URI. -The default value is empty. -Be sure to include a trailing slash if needed. - - -This prefix is not applied to any filerefs that start -with "/" or contain "//:". - - - - - - - -keep.relative.image.uris -boolean - - -keep.relative.image.uris -Should image URIs be resolved against xml:base? - - - - -<xsl:param name="keep.relative.image.uris" select="1"></xsl:param> - - - - -Description - -If non-zero, relative URIs (in, for example -fileref attributes) will be used in the generated -output. Otherwise, the URIs will be made absolute with respect to the -base URI. - -Note that the stylesheets calculate (and use) the absolute form -for some purposes, this only applies to the resulting output. - - - - - - -graphic.default.extension -string - - -graphic.default.extension -Default extension for graphic filenames - - - -<xsl:param name="graphic.default.extension"></xsl:param> - - -Description - -If a graphic or mediaobject -includes a reference to a filename that does not include an extension, -and the format attribute is -unspecified, the default extension will be used. - - - - - - - -default.image.width -length - - -default.image.width -The default width of images - - - - -<xsl:param name="default.image.width"></xsl:param> - - - -Description - -If specified, this value will be used for the -width attribute on -images that do not specify any -viewport -dimensions. - - - - - - -nominal.image.width -length - - -nominal.image.width -The nominal image width - - - - -<xsl:param name="nominal.image.width" select="6 * $pixels.per.inch"></xsl:param> - - - -Description - -Graphic widths expressed as a percentage are problematic. In the -following discussion, we speak of width and contentwidth, but -the same issues apply to depth and contentdepth. - -A width of 50% means "half of the available space for the image." -That's fine. But note that in HTML, this is a dynamic property and -the image size will vary if the browser window is resized. - -A contentwidth of 50% means "half of the actual image width". -But what does that mean if the stylesheets cannot assess the image's -actual size? Treating this as a width of 50% is one possibility, but -it produces behavior (dynamic scaling) that seems entirely out of -character with the meaning. - -Instead, the stylesheets define a -nominal.image.width and convert percentages to -actual values based on that nominal size. - - - - - - -nominal.image.depth -length - - -nominal.image.depth -Nominal image depth - - - - -<xsl:param name="nominal.image.depth" select="4 * $pixels.per.inch"></xsl:param> - - - -Description - -See nominal.image.width. - - - - - - -use.embed.for.svg -boolean - - -use.embed.for.svg -Use HTML embed for SVG? - - - - -<xsl:param name="use.embed.for.svg" select="0"></xsl:param> - - - -Description - -If non-zero, an embed element will be created for -SVG figures. An object is always created, -this parameter merely controls whether or not an additional embed -is generated inside the object. - -On the plus side, this may be more portable among browsers and plug-ins. -On the minus side, it isn't valid HTML. - - - - - - -make.graphic.viewport -boolean - - -make.graphic.viewport -Use tables in HTML to make viewports for graphics - - - - -<xsl:param name="make.graphic.viewport" select="1"></xsl:param> - - - -Description - -The HTML img element only supports the notion -of content-area scaling; it doesn't support the distinction between a -content-area and a viewport-area, so we have to make some compromises. - -If make.graphic.viewport is non-zero, a table -will be used to frame the image. This creates an effective viewport-area. - - -Tables and alignment don't work together, so this parameter is ignored -if alignment is specified on an image. - - - - - -preferred.mediaobject.role -string - - -preferred.mediaobject.role -Select which mediaobject to use based on -this value of an object's role attribute. - - - - - -<xsl:param name="preferred.mediaobject.role"></xsl:param> - - - -Description - -A mediaobject may contain several objects such as imageobjects. -If the parameter use.role.for.mediaobject is -non-zero, then the role attribute on -imageobjects and other objects within a -mediaobject container will be used to select which object -will be used. If one of the objects has a role value that matches the -preferred.mediaobject.role parameter, then it -has first priority for selection. If more than one has such a role -value, the first one is used. - - -See the use.role.for.mediaobject parameter -for the sequence of selection. - - - - - -use.role.for.mediaobject -boolean - - -use.role.for.mediaobject -Use role attribute -value for selecting which of several objects within a mediaobject to use. - - - - - -<xsl:param name="use.role.for.mediaobject" select="1"></xsl:param> - - - -Description - -If non-zero, the role attribute on -imageobjects or other objects within a mediaobject container will be used to select which object will be -used. - - -The order of selection when then parameter is non-zero is: - - - - If the stylesheet parameter preferred.mediaobject.role has a value, then the object whose role equals that value is selected. - - -Else if an object's role attribute has a value of -html for HTML processing or -fo for FO output, then the first -of such objects is selected. - - - -Else the first suitable object is selected. - - - -If the value of -use.role.for.mediaobject -is zero, then role attributes are not considered -and the first suitable object -with or without a role value is used. - - - - - - -ignore.image.scaling -boolean - - -ignore.image.scaling -Tell the stylesheets to ignore the author's image scaling attributes - - - - -<xsl:param name="ignore.image.scaling" select="0"></xsl:param> - - - -Description - -If non-zero, the scaling attributes on graphics and media objects are -ignored. - - - - -Chunking - - -chunker.output.cdata-section-elements -string - - -chunker.output.cdata-section-elements -List of elements to escape with CDATA sections - - - -<xsl:param name="chunker.output.cdata-section-elements"></xsl:param> - - -Description -This parameter specifies the list of elements that should be escaped -as CDATA sections by the chunking stylesheet. Not all processors support -specification of this parameter. - - -This parameter is documented here, but the declaration is actually -in the chunker.xsl stylesheet module. - - - - - - -chunker.output.doctype-public -string - - -chunker.output.doctype-public -Public identifer to use in the document type of generated pages - - - -<xsl:param name="chunker.output.doctype-public"></xsl:param> - - -Description -This parameter specifies the public identifier that should be used by -the chunking stylesheet in the document type declaration of chunked pages. -Not all processors support specification of -this parameter. - - -This parameter is documented here, but the declaration is actually -in the chunker.xsl stylesheet module. - - - - - - -chunker.output.doctype-system -uri - - -chunker.output.doctype-system -System identifier to use for the document type in generated pages - - - -<xsl:param name="chunker.output.doctype-system"></xsl:param> - - -Description -This parameter specifies the system identifier that should be used by -the chunking stylesheet in the document type declaration of chunked pages. -Not all processors support specification of -this parameter. - - -This parameter is documented here, but the declaration is actually -in the chunker.xsl stylesheet module. - - - - - - -chunker.output.encoding -string - - -chunker.output.encoding -Encoding used in generated pages - - - -<xsl:param name="chunker.output.encoding">ISO-8859-1</xsl:param> - - -Description -This parameter specifies the encoding to be used in files -generated by the chunking stylesheet. Not all processors support -specification of this parameter. - -This parameter used to be named default.encoding. - -This parameter is documented here, but the declaration is actually -in the chunker.xsl stylesheet module. - - - - - - -chunker.output.indent -string - - -chunker.output.indent -Specification of indentation on generated pages - - - -<xsl:param name="chunker.output.indent">no</xsl:param> - - -Description -This parameter specifies the value of the indent -specification for generated pages. Not all processors support -specification of this parameter. - - -This parameter is documented here, but the declaration is actually -in the chunker.xsl stylesheet module. - - - - - - -chunker.output.media-type -string - - -chunker.output.media-type -Media type to use in generated pages - - - -<xsl:param name="chunker.output.media-type"></xsl:param> - - -Description -This parameter specifies the media type that should be used by -the chunking stylesheet. Not all processors support specification of -this parameter. - -This parameter specifies the media type that should be used by the -chunking stylesheet. This should be one from those defined in -[RFC2045] and - [RFC2046] - -This parameter is documented here, but the declaration is actually -in the chunker.xsl stylesheet module. -It must be one from html, xml or text - - - - - - -chunker.output.method -list -html -xml - - -chunker.output.method -Method used in generated pages - - - -<xsl:param name="chunker.output.method">html</xsl:param> - - -Description -This parameter specifies the output method to be used in files -generated by the chunking stylesheet. - -This parameter used to be named output.method. - -This parameter is documented here, but the declaration is actually -in the chunker.xsl stylesheet module. - - - - - - -chunker.output.omit-xml-declaration -string - - -chunker.output.omit-xml-declaration -Omit-xml-declaration for generated pages - - - -<xsl:param name="chunker.output.omit-xml-declaration">no</xsl:param> - - -Description -This parameter specifies the value of the omit-xml-declaration -specification for generated pages. Not all processors support -specification of this parameter. - - -This parameter is documented here, but the declaration is actually -in the chunker.xsl stylesheet module. - - - - - - -chunker.output.standalone -string - - -chunker.output.standalone -Standalone declaration for generated pages - - - -<xsl:param name="chunker.output.standalone">no</xsl:param> - - -Description -This parameter specifies the value of the standalone - specification for generated pages. It must be either - yes or no. Not all - processors support specification of this parameter. - - -This parameter is documented here, but the declaration is actually -in the chunker.xsl stylesheet module. - - - - - - -saxon.character.representation -string - - -saxon.character.representation -Saxon character representation used in generated HTML pages - - - - <xsl:param name="saxon.character.representation" select="'entity;decimal'"></xsl:param> - - -Description - -This parameter has effect only when Saxon 6 is used (version 6.4.2 or later). -It sets the character representation in files generated by the chunking stylesheets. -If you want to suppress entity references for characters with direct representations in -chunker.output.encoding, set the parameter value to native. - - - For more information, see Saxon output character representation. - - -This parameter is documented here, but the declaration is actually -in the chunker.xsl stylesheet module. - - - - - - - - -html.ext -string - - -html.ext -Identifies the extension of generated HTML files - - - - -<xsl:param name="html.ext">.html</xsl:param> - - - -Description - -The extension identified by html.ext will -be used as the filename extension for chunks created by this -stylesheet. - - - - - - -use.id.as.filename -boolean - - -use.id.as.filename -Use ID value of chunk elements as the filename? - - - - -<xsl:param name="use.id.as.filename" select="0"></xsl:param> - - - -Description - -If use.id.as.filename -is non-zero, the filename of chunk elements that have IDs will be -derived from the ID value. - - - - - - - -html.extra.head.links -boolean - - -html.extra.head.links -Toggle extra HTML head link information - - - - -<xsl:param name="html.extra.head.links" select="0"></xsl:param> - - - -Description - -If non-zero, extra link elements will be -generated in the head of chunked HTML files. These -extra links point to chapters, appendixes, sections, etc. as supported -by the Site Navigation Bar in Mozilla 1.0 (as of CR1, at least). - - - - - - - -root.filename -uri - - -root.filename -Identifies the name of the root HTML file when chunking - - - - -<xsl:param name="root.filename">index</xsl:param> - - - -Description - -The root.filename is the base filename for -the chunk created for the root of each document processed. - - - - - - - -base.dir -uri - - -base.dir -The base directory of chunks - - - - -<xsl:param name="base.dir"></xsl:param> - - - -Description - -If specified, the base.dir identifies -the output directory for chunks. (If not specified, the output directory -is system dependent.) - - - - - - - generate.manifest - boolean - - - generate.manifest - Generate a manifest file? - - - - <xsl:param name="generate.manifest" select="0"></xsl:param> - - - Description - - If non-zero, a list of HTML files generated by the - stylesheet transformation is written to the file named by - the manifest parameter. - - - - - - - manifest - string - - - manifest - Name of manifest file - - - - - <xsl:param name="manifest">HTML.manifest</xsl:param> - - - - Description - - The name of the file to which a manifest is written (if the - value of the generate.manifest parameter - is non-zero). - - - - - - -manifest.in.base.dir -boolean - - -manifest.in.base.dir -Should the manifest file be written into base.dir? - - - - -<xsl:param name="manifest.in.base.dir" select="0"></xsl:param> - - - -Description - -If non-zero, the manifest file as well as project files for HTML Help and -Eclipse Help are written into base.dir instead -of the current directory. - - - - - - -chunk.toc -string - - -chunk.toc -An explicit TOC to be used for chunking - - - - -<xsl:param name="chunk.toc"></xsl:param> - - - -Description - -The chunk.toc identifies an explicit TOC that -will be used for chunking. This parameter is only used by the -chunktoc.xsl stylesheet (and customization layers built -from it). - - - - - - -chunk.tocs.and.lots -boolean - - -chunk.tocs.and.lots -Should ToC and LoTs be in separate chunks? - - - - -<xsl:param name="chunk.tocs.and.lots" select="0"></xsl:param> - - - -Description - -If non-zero, ToC and LoT (List of Examples, List of Figures, etc.) -will be put in a separate chunk. At the moment, this chunk is not in the -normal forward/backward navigation list. Instead, a new link is added to the -navigation footer. - -This feature is still somewhat experimental. Feedback welcome. - - - - - - -chunk.separate.lots -boolean - - -chunk.separate.lots -Should each LoT be in its own separate chunk? - - - - -<xsl:param name="chunk.separate.lots" select="0"></xsl:param> - - - -Description - -If non-zero, each of the ToC and LoTs -(List of Examples, List of Figures, etc.) -will be put in its own separate chunk. -The title page includes generated links to each of the separate files. - - -This feature depends on the -chunk.tocs.and.lots -parameter also being non-zero. - - - - - - - -chunk.tocs.and.lots.has.title -boolean - - -chunk.tocs.and.lots.has.title -Should ToC and LoTs in a separate chunks have title? - - - - -<xsl:param name="chunk.tocs.and.lots.has.title" select="1"></xsl:param> - - - -Description - -If non-zero title of document is shown before ToC/LoT in -separate chunk. - - - - - - -chunk.section.depth -integer - - -chunk.section.depth -Depth to which sections should be chunked - - - - -<xsl:param name="chunk.section.depth" select="1"></xsl:param> - - - -Description - -This parameter sets the depth of section chunking. - - - - - - -chunk.first.sections -boolean - - -chunk.first.sections -Chunk the first top-level section? - - - - -<xsl:param name="chunk.first.sections" select="0"></xsl:param> - - - -Description - -If non-zero, a chunk will be created for the first top-level -sect1 or section elements in -each component. Otherwise, that section will be part of the chunk for -its parent. - - - - - - - -chunk.quietly -boolean - - -chunk.quietly -Omit the chunked filename messages. - - - - -<xsl:param name="chunk.quietly" select="0"></xsl:param> - - - -Description - -If zero (the default), the XSL processor emits a message naming -each separate chunk filename as it is being output. -If nonzero, then the messages are suppressed. - - - - - - - -chunk.append -string - - -chunk.append -Specifies content to append to chunked HTML output - - - -<xsl:param name="chunk.append"></xsl:param> - - -Description - -Specifies content to append to the end of HTML files output by -the html/chunk.xsl stylesheet, after the closing -<html> tag. You probably don’t want to set any value -for this parameter; but if you do, the only value it should ever be -set to is a newline character: &#x0a; or -&#10; - - - - - - -navig.graphics -boolean - - -navig.graphics -Use graphics in navigational headers and footers? - - - - -<xsl:param name="navig.graphics" select="0"></xsl:param> - - - -Description - -If non-zero, the navigational headers and footers in chunked -HTML are presented in an alternate style that uses graphical icons for -Next, Previous, Up, and Home. Default graphics are provided in the -distribution. If zero, text is used instead of graphics. - - - - - - - -navig.graphics.extension -string - - -navig.graphics.extension -Extension for navigational graphics - - - - -<xsl:param name="navig.graphics.extension">.gif</xsl:param> - - - -Description - -Sets the filename extension to use on navigational graphics used -in the headers and footers of chunked HTML. - - - - - - -navig.graphics.path -string - - -navig.graphics.path -Path to navigational graphics - - - - -<xsl:param name="navig.graphics.path">images/</xsl:param> - - - -Description - -Sets the path, probably relative to the directory where the HTML -files are created, to the navigational graphics used in the -headers and footers of chunked HTML. - - - - - - - -navig.showtitles -boolean - - -navig.showtitles -Display titles in HTML headers and footers? - - - -<xsl:param name="navig.showtitles">1</xsl:param> - - -Description - -If non-zero, -the headers and footers of chunked HTML -display the titles of the next and previous chunks, -along with the words 'Next' and 'Previous' (or the -equivalent graphical icons if navig.graphics is true). -If false (zero), then only the words 'Next' and 'Previous' -(or the icons) are displayed. - - - - - -Profiling - -The following parameters can be used for attribute-based -profiling of your document. For more information about profiling, see -Profiling (conditional text). - - - -profile.arch -string - - -profile.arch -Target profile for arch -attribute - - - - -<xsl:param name="profile.arch"></xsl:param> - - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - - - - -profile.audience -string - - -profile.audience -Target profile for audience -attribute - - - - -<xsl:param name="profile.audience"></xsl:param> - - - -Description - -Value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - - - - -profile.condition -string - - -profile.condition -Target profile for condition -attribute - - - - -<xsl:param name="profile.condition"></xsl:param> - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - - - - -profile.conformance -string - - -profile.conformance -Target profile for conformance -attribute - - - - -<xsl:param name="profile.conformance"></xsl:param> - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - - - - -profile.lang -string - - -profile.lang -Target profile for lang -attribute - - - - -<xsl:param name="profile.lang"></xsl:param> - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - - - - -profile.os -string - - -profile.os -Target profile for os -attribute - - - - -<xsl:param name="profile.os"></xsl:param> - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - - - - -profile.revision -string - - -profile.revision -Target profile for revision -attribute - - - - -<xsl:param name="profile.revision"></xsl:param> - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - - - - -profile.revisionflag -string - - -profile.revisionflag -Target profile for revisionflag -attribute - - - - -<xsl:param name="profile.revisionflag"></xsl:param> - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - - - - -profile.role -string - - -profile.role -Target profile for role -attribute - - - - -<xsl:param name="profile.role"></xsl:param> - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - -Note that role is often -used for other purposes than profiling. For example it is commonly -used to get emphasize in bold font: - -<emphasis role="bold">very important</emphasis> - -If you are using role for -these purposes do not forget to add values like bold to -value of this parameter. If you forgot you will get document with -small pieces missing which are very hard to track. - -For this reason it is not recommended to use role attribute for profiling. You should -rather use profiling specific attributes like userlevel, os, arch, condition, etc. - - - - - - - -profile.security -string - - -profile.security -Target profile for security -attribute - - - - -<xsl:param name="profile.security"></xsl:param> - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - - - - -profile.status -string - - -profile.status -Target profile for status -attribute - - - - -<xsl:param name="profile.status"></xsl:param> - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - - - - -profile.userlevel -string - - -profile.userlevel -Target profile for userlevel -attribute - - - - -<xsl:param name="profile.userlevel"></xsl:param> - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - - - - -profile.vendor -string - - -profile.vendor -Target profile for vendor -attribute - - - - -<xsl:param name="profile.vendor"></xsl:param> - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - - - - -profile.wordsize -string - - -profile.wordsize -Target profile for wordsize -attribute - - - - -<xsl:param name="profile.wordsize"></xsl:param> - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - - - - -profile.attribute -string - - -profile.attribute -Name of user-specified profiling attribute - - - - -<xsl:param name="profile.attribute"></xsl:param> - - - -Description - -This parameter is used in conjuction with -profile.value. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - - - - -profile.value -string - - -profile.value -Target profile for user-specified attribute - - - - -<xsl:param name="profile.value"></xsl:param> - - - -Description - -When you are using this parameter you must also specify name of -profiling attribute with parameter -profile.attribute. - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - - - - -profile.separator -string - - -profile.separator -Separator character for compound profile values - - - - -<xsl:param name="profile.separator">;</xsl:param> - - - -Description - -Separator character used for compound profile values. See profile.arch - - - - -HTML Help - - -htmlhelp.encoding -string - - -htmlhelp.encoding -Character encoding to use in files for HTML Help compiler. - - - - -<xsl:param name="htmlhelp.encoding">iso-8859-1</xsl:param> - - - -Description - -HTML Help Compiler is not UTF-8 aware, so you should always use an -appropriate single-byte encoding here. Use one from iana, the registered charset values. - - - - - - -htmlhelp.autolabel -boolean - - -htmlhelp.autolabel -Should tree-like ToC use autonumbering feature? - - - - -<xsl:param name="htmlhelp.autolabel" select="0"></xsl:param> - - - -Description - -Set this to non-zero to include chapter and section numbers into ToC -in the left panel. - - - - - - -htmlhelp.chm -string - - -htmlhelp.chm -Filename of output HTML Help file. - - - - -<xsl:param name="htmlhelp.chm">htmlhelp.chm</xsl:param> - - - -Description - -Set the name of resulting CHM file - - - - - - -htmlhelp.default.topic -string - - -htmlhelp.default.topic -Name of file with default topic - - - - -<xsl:param name="htmlhelp.default.topic"></xsl:param> - - - -Description - -Normally first chunk of document is displayed when you open HTML -Help file. If you want to display another topic, simply set its -filename by this parameter. - -This is useful especially if you don't generate ToC in front of -your document and you also hide root element in ToC. E.g.: - -<xsl:param name="generate.book.toc" select="0"/> -<xsl:param name="htmlhelp.hhc.show.root" select="0"/> -<xsl:param name="htmlhelp.default.topic">pr01.html</xsl:param> - - - - - - - -htmlhelp.display.progress -boolean - - -htmlhelp.display.progress -Display compile progress? - - - - -<xsl:param name="htmlhelp.display.progress" select="1"></xsl:param> - - - -Description - -Set to non-zero to to display compile progress - - - - - - - -htmlhelp.hhp -string - - -htmlhelp.hhp -Filename of project file. - - - - -<xsl:param name="htmlhelp.hhp">htmlhelp.hhp</xsl:param> - - - -Description - -Change this parameter if you want different name of project -file than htmlhelp.hhp. - - - - - - -htmlhelp.hhc -string - - -htmlhelp.hhc -Filename of TOC file. - - - - -<xsl:param name="htmlhelp.hhc">toc.hhc</xsl:param> - - - -Description - -Set the name of the TOC file. The default is toc.hhc. - - - - - - -htmlhelp.hhk -string - - -htmlhelp.hhk -Filename of index file. - - - - -<xsl:param name="htmlhelp.hhk">index.hhk</xsl:param> - - - -Description - -set the name of the index file. The default is index.hhk. - - - - - - -htmlhelp.hhp.tail -string - - -htmlhelp.hhp.tail -Additional content for project file. - - - - -<xsl:param name="htmlhelp.hhp.tail"></xsl:param> - - - -Description - -If you want to include some additional parameters into project file, -store appropriate part of project file into this parameter. - - - - - - -htmlhelp.hhp.window -string - - -htmlhelp.hhp.window -Name of default window. - - - - -<xsl:param name="htmlhelp.hhp.window">Main</xsl:param> - - - -Description - -Name of default window. If empty no [WINDOWS] section will be -added to project file. - - - - - - -htmlhelp.hhp.windows -string - - -htmlhelp.hhp.windows -Definition of additional windows - - - - -<xsl:param name="htmlhelp.hhp.windows"></xsl:param> - - - -Description - -Content of this parameter is placed at the end of [WINDOWS] -section of project file. You can use it for defining your own -addtional windows. - - - - - - -htmlhelp.enhanced.decompilation -boolean - - -htmlhelp.enhanced.decompilation -Allow enhanced decompilation of CHM? - - - - -<xsl:param name="htmlhelp.enhanced.decompilation" select="0"></xsl:param> - - - -Description - -When non-zero this parameter enables enhanced decompilation of CHM. - - - - - - -htmlhelp.enumerate.images -boolean - - -htmlhelp.enumerate.images -Should the paths to all used images be added to the project file? - - - - -<xsl:param name="htmlhelp.enumerate.images" select="0"></xsl:param> - - - -Description - -Set to non-zero if you insert images into your documents as -external binary entities or if you are using absolute image paths. - - - - - - -htmlhelp.force.map.and.alias -boolean - - -htmlhelp.force.map.and.alias -Should [MAP] and [ALIAS] sections be added to the project file unconditionally? - - - -<xsl:param name="htmlhelp.force.map.and.alias" select="0"></xsl:param> - - -Description - Set to non-zero if you have your own - alias.h and context.h - files and you want to include references to them in the project - file. - - - - - -htmlhelp.map.file -string - - -htmlhelp.map.file -Filename of map file. - - - -<xsl:param name="htmlhelp.map.file">context.h</xsl:param> - - -Description -Set the name of map file. The default is - context.h. (used for context-sensitive - help). - - - - - -htmlhelp.alias.file -string - - -htmlhelp.alias.file -Filename of alias file. - - - - -<xsl:param name="htmlhelp.alias.file">alias.h</xsl:param> - - - -Description - -Specifies the filename of the alias file (used for context-sensitive help). - - - - - - -htmlhelp.hhc.section.depth -integer - - -htmlhelp.hhc.section.depth -Depth of TOC for sections in a left pane. - - - - -<xsl:param name="htmlhelp.hhc.section.depth">5</xsl:param> - - - -Description - -Set the section depth in the left pane of HTML Help viewer. - - - - - - -htmlhelp.hhc.show.root -boolean - - -htmlhelp.hhc.show.root -Should there be an entry for the root element in the ToC? - - - - -<xsl:param name="htmlhelp.hhc.show.root" select="1"></xsl:param> - - - -Description - -If set to zero, there will be no entry for the root element in the -ToC. This is useful when you want to provide the user with an expanded -ToC as a default. - - - - - - -htmlhelp.hhc.folders.instead.books -boolean - - -htmlhelp.hhc.folders.instead.books -Use folder icons in ToC (instead of book icons)? - - - - -<xsl:param name="htmlhelp.hhc.folders.instead.books" select="1"></xsl:param> - - - -Description - -Set non-zero for folder-like icons or zero for book-like icons in the TOC -ToC. If you want to use folder-like icons you must swith off binary -ToC using (xref) htmlhelp.hhc.binary. - - - - - - - - - - -htmlhelp.hhc.binary -boolean - - -htmlhelp.hhc.binary -Generate binary ToC? - - - - -<xsl:param name="htmlhelp.hhc.binary" select="1"></xsl:param> - - - -Description - -Set to non-zero to generate a binary TOC. You must create a binary TOC -if you want to add Prev/Next buttons to toolbar (which is default -behaviour). Files with binary TOC can't be merged. - - - - - - -htmlhelp.hhc.width -integer - - -htmlhelp.hhc.width -Width of navigation pane - - - - -<xsl:param name="htmlhelp.hhc.width"></xsl:param> - - - -Description - -This parameter specifies the width of the navigation pane (containing TOC and -other navigation tabs) in pixels. - - - - - - -htmlhelp.title -string - - -htmlhelp.title -Title of HTML Help - - - - -<xsl:param name="htmlhelp.title"></xsl:param> - - - -Description - -Content of this parameter will be used as a title for generated -HTML Help. If empty, title will be automatically taken from document. - - - - - - -htmlhelp.show.menu -boolean - - -htmlhelp.show.menu -Should the menu bar be shown? - - - - -<xsl:param name="htmlhelp.show.menu" select="0"></xsl:param> - - - -Description - -Set to non-zero to have an application menu bar in your HTML Help window. - - - - - - - -htmlhelp.show.toolbar.text -boolean - - -htmlhelp.show.toolbar.text -Show text under toolbar buttons? - - - - -<xsl:param name="htmlhelp.show.toolbar.text" select="1"></xsl:param> - - - -Description - -Set to non-zero to display texts under toolbar buttons, zero to switch -off displays. - - - - - - -htmlhelp.show.advanced.search -boolean - - -htmlhelp.show.advanced.search -Should advanced search features be available? - - - - -<xsl:param name="htmlhelp.show.advanced.search" select="0"></xsl:param> - - - -Description - -If you want advanced search features in your help, turn this -parameter to 1. - - - - - - -htmlhelp.show.favorities -boolean - - -htmlhelp.show.favorities -Should the Favorites tab be shown? - - - - -<xsl:param name="htmlhelp.show.favorities" select="0"></xsl:param> - - - -Description - -Set to non-zero to include a Favorites tab in the navigation pane -of the help window. - - - - - - -htmlhelp.button.hideshow -boolean - - -htmlhelp.button.hideshow -Should the Hide/Show button be shown? - - - - -<xsl:param name="htmlhelp.button.hideshow" select="1"></xsl:param> - - - -Description - -Set to non-zero to include the Hide/Show button shown on toolbar - - - - - - -htmlhelp.button.back -boolean - - -htmlhelp.button.back -Should the Back button be shown? - - - - -<xsl:param name="htmlhelp.button.back" select="1"></xsl:param> - - - -Description - -Set to non-zero to include the Hide/Show button shown on toolbar - - - - - - -htmlhelp.button.forward -boolean - - -htmlhelp.button.forward -Should the Forward button be shown? - - - - -<xsl:param name="htmlhelp.button.forward" select="0"></xsl:param> - - - -Description - -Set to non-zero to include the Forward button on the toolbar. - - - - - - -htmlhelp.button.stop -boolean - - -htmlhelp.button.stop -Should the Stop button be shown? - - - - -<xsl:param name="htmlhelp.button.stop" select="0"></xsl:param> - - - -Description - -If you want Stop button shown on toolbar, turn this -parameter to 1. - - - - - - -htmlhelp.button.refresh -boolean - - -htmlhelp.button.refresh -Should the Refresh button be shown? - - - - -<xsl:param name="htmlhelp.button.refresh" select="0"></xsl:param> - - - -Description - -Set to non-zero to include the Stop button on the toolbar. - - - - - - -htmlhelp.button.home -boolean - - -htmlhelp.button.home -Should the Home button be shown? - - - - -<xsl:param name="htmlhelp.button.home" select="0"></xsl:param> - - - -Description - -Set to non-zero to include the Home button on the toolbar. - - - - - - -htmlhelp.button.home.url -string - - -htmlhelp.button.home.url -URL address of page accessible by Home button - - - - -<xsl:param name="htmlhelp.button.home.url"></xsl:param> - - - -Description - -URL address of page accessible by Home button. - - - - - - -htmlhelp.button.options -boolean - - -htmlhelp.button.options -Should the Options button be shown? - - - - -<xsl:param name="htmlhelp.button.options" select="1"></xsl:param> - - - -Description - -If you want Options button shown on toolbar, turn this -parameter to 1. - - - - - - -htmlhelp.button.print -boolean - - -htmlhelp.button.print -Should the Print button be shown? - - - - -<xsl:param name="htmlhelp.button.print" select="1"></xsl:param> - - - -Description - -Set to non-zero to include the Print button on the toolbar. - - - - - - - -htmlhelp.button.locate -boolean - - -htmlhelp.button.locate -Should the Locate button be shown? - - - - -<xsl:param name="htmlhelp.button.locate" select="0"></xsl:param> - - - -Description - -If you want Locate button shown on toolbar, turn this -parameter to 1. - - - - - - -htmlhelp.button.jump1 -boolean - - -htmlhelp.button.jump1 -Should the Jump1 button be shown? - - - -<xsl:param name="htmlhelp.button.jump1" select="0"></xsl:param> - - -Description - Set to non-zero to include the Jump1 button on the toolbar. - - - - - -htmlhelp.button.jump1.url -string - - -htmlhelp.button.jump1.url -URL address of page accessible by Jump1 button - - - - -<xsl:param name="htmlhelp.button.jump1.url"></xsl:param> - - - -Description - -URL address of page accessible by Jump1 button. - - - - - - -htmlhelp.button.jump1.title -string - - -htmlhelp.button.jump1.title -Title of Jump1 button - - - - -<xsl:param name="htmlhelp.button.jump1.title">User1</xsl:param> - - - -Description - -Title of Jump1 button. - - - - - - -htmlhelp.button.jump2 -boolean - - -htmlhelp.button.jump2 -Should the Jump2 button be shown? - - - - -<xsl:param name="htmlhelp.button.jump2" select="0"></xsl:param> - - - -Description - -Set to non-zero to include the Jump2 button on the toolbar. - - - - - - -htmlhelp.button.jump2.url -string - - -htmlhelp.button.jump2.url -URL address of page accessible by Jump2 button - - - - -<xsl:param name="htmlhelp.button.jump2.url"></xsl:param> - - - -Description - -URL address of page accessible by Jump2 button. - - - - - - -htmlhelp.button.jump2.title -string - - -htmlhelp.button.jump2.title -Title of Jump2 button - - - - -<xsl:param name="htmlhelp.button.jump2.title">User2</xsl:param> - - - -Description - -Title of Jump2 button. - - - - - - -htmlhelp.button.next -boolean - - -htmlhelp.button.next -Should the Next button be shown? - - - - -<xsl:param name="htmlhelp.button.next" select="1"></xsl:param> - - - -Description - -Set to non-zero to include the Next button on the toolbar. - - - - - - -htmlhelp.button.prev -boolean - - -htmlhelp.button.prev -Should the Prev button be shown? - - - - -<xsl:param name="htmlhelp.button.prev" select="1"></xsl:param> - - - -Description - -Set to non-zero to include the Prev button on the toolbar. - - - - - - - -htmlhelp.button.zoom -boolean - - -htmlhelp.button.zoom -Should the Zoom button be shown? - - - - -<xsl:param name="htmlhelp.button.zoom" select="0"></xsl:param> - - - -Description - -Set to non-zero to include the Zoom button on the toolbar. - - - - - - - -htmlhelp.remember.window.position -boolean - - -htmlhelp.remember.window.position -Remember help window position? - - - - -<xsl:param name="htmlhelp.remember.window.position" select="0"></xsl:param> - - - -Description - -Set to non-zero to remember help window position between starts. - - - - - - -htmlhelp.window.geometry -string - - -htmlhelp.window.geometry -Set initial geometry of help window - - - - -<xsl:param name="htmlhelp.window.geometry"></xsl:param> - - - -Description - -This parameter specifies initial position of help -window. E.g. - -<xsl:param name="htmlhelp.window.geometry">[160,64,992,704]</xsl:param> - - - - - - -htmlhelp.use.hhk -boolean - - -htmlhelp.use.hhk -Should the index be built using the HHK file? - - - - -<xsl:param name="htmlhelp.use.hhk" select="0"></xsl:param> - - - -Description - -If non-zero, the index is created using the HHK file (instead of using object -elements in the HTML files). For more information, see Generating an index. - - - - - -htmlhelp.only -boolean - - -htmlhelp.only -Should only project files be generated? - - - - -<xsl:param name="htmlhelp.only" select="0"></xsl:param> - - - -Description - - -Set to non-zero if you want to play with various HTML Help parameters -and you don't need to regenerate all HTML files. This setting will not -process whole document, only project files (hhp, hhc, hhk,...) will be -generated. - - - - - -Eclipse Help Platform - - -eclipse.autolabel -boolean - - -eclipse.autolabel -Should tree-like ToC use autonumbering feature? - - - - -<xsl:param name="eclipse.autolabel" select="0"></xsl:param> - - - -Description - -If you want to include chapter and section numbers into ToC in -the left panel, set this parameter to 1. - - - - - - -eclipse.plugin.name -string - - -eclipse.plugin.name -Eclipse Help plugin name - - - - -<xsl:param name="eclipse.plugin.name">DocBook Online Help Sample</xsl:param> - - - -Description - -Eclipse Help plugin name. - - - - - - -eclipse.plugin.id -string - - -eclipse.plugin.id -Eclipse Help plugin id - - - - -<xsl:param name="eclipse.plugin.id">com.example.help</xsl:param> - - - -Description - -Eclipse Help plugin id. You should change this id to something -unique for each help. - - - - - - -eclipse.plugin.provider -string - - -eclipse.plugin.provider -Eclipse Help plugin provider name - - - - -<xsl:param name="eclipse.plugin.provider">Example provider</xsl:param> - - - -Description - -Eclipse Help plugin provider name. - - - - -JavaHelp - - -javahelp.encoding -string - - -javahelp.encoding -Character encoding to use in control files for JavaHelp. - - - - -<xsl:param name="javahelp.encoding">iso-8859-1</xsl:param> - - - -Description - -JavaHelp crashes on some characters when written as character -references. In that case you can use this parameter to select an appropriate encoding. - - - - - - - -Localization - - -l10n.gentext.language -string - - -l10n.gentext.language -Sets the gentext language - - - - -<xsl:param name="l10n.gentext.language"></xsl:param> - - - -Description - -If this parameter is set to any value other than the empty string, its -value will be used as the value for the language when generating text. Setting -l10n.gentext.language overrides any settings within the -document being formatted. - -It's much more likely that you might want to set the -l10n.gentext.default.language parameter. - - - - - - - l10n.gentext.default.language - string - - - l10n.gentext.default.language - Sets the default language for generated text - - - - -<xsl:param name="l10n.gentext.default.language">en</xsl:param> - - - -Description - -The value of the l10n.gentext.default.language -parameter is used as the language for generated text if no setting is provided -in the source document. - - - - - - -l10n.gentext.use.xref.language -boolean - - -l10n.gentext.use.xref.language -Use the language of target when generating cross-reference text? - - - - -<xsl:param name="l10n.gentext.use.xref.language" select="0"></xsl:param> - - - -Description - -If non-zero, the language of the target will be used when -generating cross reference text. Usually, the current -language is used when generating text (that is, the language of the -element that contains the cross-reference element). But setting this parameter -allows the language of the element pointed to to control -the generated text. - -Consider the following example: - - -<para lang="en">See also <xref linkend="chap3"/>.</para> - - - -Suppose that Chapter 3 happens to be written in German. -If l10n.gentext.use.xref.language is non-zero, the -resulting text will be something like this: - -
-See also Kapital 3. -
- -Where the more traditional rendering would be: - -
-See also Chapter 3. -
- -
-
- - - -l10n.lang.value.rfc.compliant -boolean - - -l10n.lang.value.rfc.compliant -Make value of lang attribute RFC compliant? - - - - -<xsl:param name="l10n.lang.value.rfc.compliant" select="1"></xsl:param> - - - -Description - -If non-zero, ensure that the values for all lang attributes in HTML output are RFC -compliantSection 8.1.1, Language Codes, in the HTML 4.0 Recommendation states that: - -
[RFC1766] defines and explains the language codes -that must be used in HTML documents. -Briefly, language codes consist of a primary code and a possibly -empty series of subcodes: - -language-code = primary-code ( "-" subcode )* - -And in RFC 1766, Tags for the Identification -of Languages, the EBNF for "language tag" is given as: - -Language-Tag = Primary-tag *( "-" Subtag ) -Primary-tag = 1*8ALPHA -Subtag = 1*8ALPHA - -
-
. - -by taking any underscore characters in any lang values found in source documents, and -replacing them with hyphen characters in output HTML files. For -example, zh_CN in a source document becomes -zh-CN in the HTML output form that source. - - -This parameter does not cause any case change in lang values, because RFC 1766 -explicitly states that all "language tags" (as it calls them) "are -to be treated as case insensitive". - -
- -
-
- - - -writing.mode -string - - -writing.mode -Direction of text flow based on locale - - - - -<xsl:param name="writing.mode"> - <xsl:call-template name="gentext"> - <xsl:with-param name="key">writing-mode</xsl:with-param> - <xsl:with-param name="lang"> - <xsl:call-template name="l10n.language"> - <xsl:with-param name="target" select="/*[1]"></xsl:with-param> - </xsl:call-template> - </xsl:with-param> - </xsl:call-template> -</xsl:param> - - - -Description - -Sets direction of text flow and text alignment based on locale. -The value is normally taken from the gentext file for the -lang attribute of the document's root element, using the -key name 'writing-mode' to look it up in the gentext file. -But the param can also be -set on the command line to override that gentext value. - -Accepted values are: - - - lr-tb - - Left-to-right text flow in each line, lines stack top to bottom. - - - - rl-tb - - Right-to-left text flow in each line, lines stack top to bottom. - - - - tb-rl - - Top-to-bottom text flow in each vertical line, lines stack right to left. - Supported by only a few XSL-FO processors. Not supported in HTML output. - - - - lr - - Shorthand for lr-tb. - - - - rl - - Shorthand for rl-tb. - - - - tb - - Shorthand for tb-rl. - - - - - - - - -
-
- - - - FO Parameter Reference - - - This is reference documentation for all user-configurable - parameters in the DocBook XSL FO stylesheets (for generating - XSL-FO output destined for final print/PDF output). - - - Admonitions - - -admon.graphics -boolean - - -admon.graphics -Use graphics in admonitions? - - - - -<xsl:param name="admon.graphics" select="0"></xsl:param> - - - -Description - -If true (non-zero), admonitions are presented in an alternate style that uses -a graphic. Default graphics are provided in the distribution. - - - - - - - -admon.graphics.extension -string - - -admon.graphics.extension -Filename extension for admonition graphics - - - - -<xsl:param name="admon.graphics.extension">.png</xsl:param> - - - -Description - -Sets the filename extension to use on admonition graphics. - - - - - - -admon.graphics.path -string - - -admon.graphics.path -Path to admonition graphics - - - -<xsl:param name="admon.graphics.path">images/</xsl:param> - - -Description - -Sets the path to the directory containing the admonition graphics -(caution.png, important.png etc). This location is normally relative -to the output html directory. See base.dir - - - - - - -admon.textlabel -boolean - - -admon.textlabel -Use text label in admonitions? - - - - -<xsl:param name="admon.textlabel" select="1"></xsl:param> - - - -Description - -If true (non-zero), admonitions are presented with a generated -text label such as Note or Warning in the appropriate language. -If zero, such labels are turned off, but any title child -of the admonition element are still output. -The default value is 1. - - - - - - - - - admonition.title.properties - attribute set - - -admonition.title.properties -To set the style for admonitions titles. - - - - -<xsl:attribute-set name="admonition.title.properties"> - <xsl:attribute name="font-size">14pt</xsl:attribute> - <xsl:attribute name="font-weight">bold</xsl:attribute> - <xsl:attribute name="hyphenate">false</xsl:attribute> - <xsl:attribute name="keep-with-next.within-column">always</xsl:attribute> -</xsl:attribute-set> - - -Description -How do you want admonitions titles styled? -Set the font-size, weight etc to the style required. - - - - - - - admonition.properties - attribute set - - -admonition.properties -To set the style for admonitions. - - - -<xsl:attribute-set name="admonition.properties"></xsl:attribute-set> - - -Description -How do you want admonitions styled? -Set the font-size, weight, etc. to the style required - - - - - - -graphical.admonition.properties -attribute set - - -graphical.admonition.properties -To add properties to the outer block of a graphical admonition. - - - -<xsl:attribute-set name="graphical.admonition.properties"> - <xsl:attribute name="space-before.optimum">1em</xsl:attribute> - <xsl:attribute name="space-before.minimum">0.8em</xsl:attribute> - <xsl:attribute name="space-before.maximum">1.2em</xsl:attribute> - <xsl:attribute name="space-after.optimum">1em</xsl:attribute> - <xsl:attribute name="space-after.minimum">0.8em</xsl:attribute> - <xsl:attribute name="space-after.maximum">1.2em</xsl:attribute> -</xsl:attribute-set> - - -Description -These properties are added to the outer block containing the -entire graphical admonition, including its title. -It is used when the parameter -admon.graphics is set to nonzero. -Use this attribute-set to set the space above and below, -and any indent for the whole admonition. - -In addition to these properties, a graphical admonition -also applies the admonition.title.properties -attribute-set to the title, and applies the -admonition.properties attribute-set -to the rest of the content. - - - - - - -nongraphical.admonition.properties -attribute set - - -nongraphical.admonition.properties -To add properties to the outer block of a nongraphical admonition. - - - -<xsl:attribute-set name="nongraphical.admonition.properties"> - <xsl:attribute name="space-before.minimum">0.8em</xsl:attribute> - <xsl:attribute name="space-before.optimum">1em</xsl:attribute> - <xsl:attribute name="space-before.maximum">1.2em</xsl:attribute> - <xsl:attribute name="margin-{$direction.align.start}">0.25in</xsl:attribute> - <xsl:attribute name="margin-{$direction.align.end}">0.25in</xsl:attribute> -</xsl:attribute-set> - - -Description -These properties are added to the outer block containing the -entire nongraphical admonition, including its title. -It is used when the parameter -admon.graphics is set to zero. -Use this attribute-set to set the space above and below, -and any indent for the whole admonition. - -In addition to these properties, a nongraphical admonition -also applies the admonition.title.properties -attribute-set to the title, and the -admonition.properties attribute-set -to the rest of the content. - - - - -Callouts - - -callout.defaultcolumn -integer - - -callout.defaultcolumn -Indicates what column callouts appear in by default - - - - -<xsl:param name="callout.defaultcolumn">60</xsl:param> - - - -Description - -If a callout does not identify a column (for example, if it uses -the linerange unit), -it will appear in the default column. - - - - - - - -callout.graphics -boolean - - -callout.graphics -Use graphics for callouts? - - - - -<xsl:param name="callout.graphics" select="1"></xsl:param> - - - -Description - -If non-zero, callouts are presented with graphics (e.g., reverse-video -circled numbers instead of "(1)", "(2)", etc.). -Default graphics are provided in the distribution. - - - - - - - -callout.graphics.extension -string - - -callout.graphics.extension -Filename extension for callout graphics - - - - - -<xsl:param name="callout.graphics.extension">.svg</xsl:param> - - - -Description -Sets the filename extension to use on callout graphics. - - -The Docbook XSL distribution provides callout graphics in the following formats: -SVG (extension: .svg) -PNG (extension: .png) -GIF (extension: .gif) - - - - - - -callout.graphics.number.limit -integer - - -callout.graphics.number.limit -Number of the largest callout graphic - - - - - -<xsl:param name="callout.graphics.number.limit">30</xsl:param> - - - -Description - -If callout.graphics is non-zero, graphics -are used to represent callout numbers instead of plain text. The value -of callout.graphics.number.limit is the largest -number for which a graphic exists. If the callout number exceeds this -limit, the default presentation "(plain text instead of a graphic)" -will be used. - - - - - - - -callout.graphics.path -string - - -callout.graphics.path -Path to callout graphics - - - - -<xsl:param name="callout.graphics.path">images/callouts/</xsl:param> - - - -Description - -Sets the path to the directory holding the callout graphics. his -location is normally relative to the output html directory. see -base.dir. Always terminate the directory with / since the graphic file -is appended to this string, hence needs the separator. - - - - - - - -callout.icon.size -length - - -callout.icon.size -Specifies the size of callout marker icons - - - - -<xsl:param name="callout.icon.size">7pt</xsl:param> - - - -Description - -Specifies the size of the callout marker icons. -The default size is 7 points. - - - - - - -callout.unicode -boolean - - -callout.unicode -Use Unicode characters rather than images for callouts. - - - -<xsl:param name="callout.unicode" select="0"></xsl:param> - - -Description - -The stylesheets can use either an image of the numbers one to ten, or the single Unicode character which represents the numeral, in white on a black background. Use this to select the Unicode character option. - - - - - - - -callout.unicode.font -string - - -callout.unicode.font -Specify a font for Unicode glyphs - - - - -<xsl:param name="callout.unicode.font">ZapfDingbats</xsl:param> - - - -Description - -The name of the font to specify around Unicode callout glyphs. -If set to the empty string, no font change will occur. - - - - - - - -callout.unicode.number.limit -integer - - -callout.unicode.number.limit -Number of the largest unicode callout character - - - - -<xsl:param name="callout.unicode.number.limit">10</xsl:param> - - - -Description - -If callout.unicode -is non-zero, unicode characters are used to represent -callout numbers. The value of -callout.unicode.number.limit -is -the largest number for which a unicode character exists. If the callout number -exceeds this limit, the default presentation "(nnn)" will always -be used. - - - - - - - -callout.unicode.start.character -integer - - -callout.unicode.start.character -First Unicode character to use, decimal value. - - - - -<xsl:param name="callout.unicode.start.character">10102</xsl:param> - - - -Description - -If callout.graphics is zero and callout.unicode -is non-zero, unicode characters are used to represent -callout numbers. The value of -callout.unicode.start.character -is the decimal unicode value used for callout number one. Currently, -only 10102 is supported in the stylesheets for this parameter. - - - - - - - -callouts.extension -boolean - - -callouts.extension -Enable the callout extension - - - - -<xsl:param name="callouts.extension" select="1"></xsl:param> - - - -Description - -The callouts extension processes areaset -elements in ProgramListingCO and other text-based -callout elements. - - - - - -ToC/LoT/Index Generation - - -autotoc.label.separator -string - - -autotoc.label.separator -Separator between labels and titles in the ToC - - - - -<xsl:param name="autotoc.label.separator">. </xsl:param> - - - -Description - -String used to separate labels and titles in a table of contents. - - - - - - -process.empty.source.toc -boolean - - -process.empty.source.toc -Generate automated TOC if toc element occurs in a source document? - - - -<xsl:param name="process.empty.source.toc" select="0"></xsl:param> - - -Description - -Specifies that if an empty toc element is found in a -source document, an automated TOC is generated at this point in the -document. - - Depending on what the value of the - generate.toc parameter is, setting this - parameter to 1 could result in generation of - duplicate automated TOCs. So the - process.empty.source.toc is primarily useful - as an "override": by placing an empty toc in your - document and setting this parameter to 1, you can - force a TOC to be generated even if generate.toc - says not to. - - - - - - - - -process.source.toc -boolean - - -process.source.toc -Process a non-empty toc element if it occurs in a source document? - - - -<xsl:param name="process.source.toc" select="0"></xsl:param> - - -Description - -Specifies that the contents of a non-empty "hard-coded" -toc element in a source document are processed to -generate a TOC in output. - - This parameter has no effect on automated generation of - TOCs. An automated TOC may still be generated along with the - "hard-coded" TOC. To suppress automated TOC generation, adjust the - value of the generate.toc paramameter. - - The process.source.toc parameter also has - no effect if the toc element is empty; handling - for empty toc is controlled by the - process.empty.source.toc parameter. - - - - - - - - -generate.toc -table - - -generate.toc -Control generation of ToCs and LoTs - - - - - -<xsl:param name="generate.toc"> -/appendix toc,title -article/appendix nop -/article toc,title -book toc,title,figure,table,example,equation -/chapter toc,title -part toc,title -/preface toc,title -reference toc,title -/sect1 toc -/sect2 toc -/sect3 toc -/sect4 toc -/sect5 toc -/section toc -set toc,title -</xsl:param> - - - -Description - -This parameter has a structured value. It is a table of space-delimited -path/value pairs. Each path identifies some element in the source document -using a restricted subset of XPath (only the implicit child axis, no wildcards, -no predicates). Paths can be either relative or absolute. - -When processing a particular element, the stylesheets consult this table to -determine if a ToC (or LoT(s)) should be generated. - -For example, consider the entry: - -book toc,figure - -This indicates that whenever a book is formatted, a -Table Of Contents and a List of Figures should be generated. Similarly, - -/chapter toc - -indicates that whenever a document that has a root -of chapter is formatted, a Table of -Contents should be generated. The entry chapter would match -all chapters, but /chapter matches only chapter -document elements. - -Generally, the longest match wins. So, for example, if you want to distinguish -articles in books from articles in parts, you could use these two entries: - -book/article toc,figure -part/article toc - -Note that an article in a part can never match a book/article, -so if you want nothing to be generated for articles in parts, you can simply leave -that rule out. - -If you want to leave the rule in, to make it explicit that you're turning -something off, use the value nop. For example, the following -entry disables ToCs and LoTs for articles: - -article nop - -Do not simply leave the word article in the file -without a matching value. That'd be just begging the silly little -path/value parser to get confused. - -Section ToCs are further controlled by the -generate.section.toc.level parameter. -For a given section level to have a ToC, it must have both an entry in -generate.toc and be within the range enabled by -generate.section.toc.level. - - - - - -generate.index -boolean - - -generate.index -Do you want an index? - - - -<xsl:param name="generate.index" select="1"></xsl:param> - - -Description - -Specify if an index should be generated. - - - - - - -make.index.markup -boolean - - -make.index.markup -Generate XML index markup in the index? - - - - -<xsl:param name="make.index.markup" select="0"></xsl:param> - - - -Description - -This parameter enables a very neat trick for getting properly -merged, collated back-of-the-book indexes. G. Ken Holman suggested -this trick at Extreme Markup Languages 2002 and I'm indebted to him -for it. - -Jeni Tennison's excellent code in -autoidx.xsl does a great job of merging and -sorting indexterms in the document and building a -back-of-the-book index. However, there's one thing that it cannot -reasonably be expected to do: merge page numbers into ranges. (I would -not have thought that it could collate and suppress duplicate page -numbers, but in fact it appears to manage that task somehow.) - -Ken's trick is to produce a document in which the index at the -back of the book is displayed in XML. Because the index -is generated by the FO processor, all of the page numbers have been resolved. -It's a bit hard to explain, but what it boils down to is that instead of having -an index at the back of the book that looks like this: - -
-A -ap1, 1, 2, 3 - -
- -you get one that looks like this: - -
-<indexdiv>A</indexdiv> -<indexentry> -<primaryie>ap1</primaryie>, -<phrase role="pageno">1</phrase>, -<phrase role="pageno">2</phrase>, -<phrase role="pageno">3</phrase> -</indexentry> -
- -After building a PDF file with this sort of odd-looking index, you can -extract the text from the PDF file and the result is a proper index expressed in -XML. - -Now you have data that's amenable to processing and a simple Perl script -(such as fo/pdf2index) can -merge page ranges and generate a proper index. - -Finally, reformat your original document using this literal index instead of -an automatically generated one and bingo! - -
-
- - - -index.method -list -basic -kosek -kimber - - -index.method -Select method used to group index entries in an index - - - - -<xsl:param name="index.method">basic</xsl:param> - - - -Description - -This parameter lets you select which method to use for sorting and grouping - index entries in an index. -Indexes in Latin-based languages that have accented characters typically -sort together accented words and unaccented words. -Thus Á (U+00C1 LATIN CAPITAL LETTER A WITH ACUTE) would sort together -with A (U+0041 LATIN CAPITAL LETTER A), so both would appear in the A -section of the index. -Languages using other alphabets (such as Russian, which is written in the Cyrillic alphabet) -and languages using ideographic chararacters (such as Japanese) -require grouping specific to the languages and alphabets. - - -The default indexing method is limited. -It can group accented characters in Latin-based languages only. -It cannot handle non-Latin alphabets or ideographic languages. -The other indexing methods require extensions of one type or -another, and do not work with -all XSLT processors, which is why they are not used by default. - -The three choices for indexing method are: - - -basic - - -(default) Sort and groups words based only on the Latin alphabet. -Words with accented Latin letters will group and sort with -their respective primary letter, but -words in non-Latin alphabets will be -put in the Symbols section of the index. - - - - -kosek - - -This method sorts and groups words based on letter groups configured in -the DocBook locale file for the given language. -See, for example, the French locale file common/fr.xml. -This method requires that the XSLT processor -supports the EXSLT extensions (most do). -It also requires support for using -user-defined functions in xsl:key (xsltproc does not). - -This method is suitable for any language for which you can -list all the individual characters that should appear -in each letter group in an index. -It is probably not practical to use it for ideographic languages -such as Chinese that have hundreds or thousands of characters. - - -To use the kosek method, you must: - - - -Use a processor that supports its extensions, such as -Saxon 6 or Xalan (xsltproc and Saxon 8 do not). - - - -Set the index.method parameter's value to kosek. - - - -Import the appropriate index extensions stylesheet module -fo/autoidx-kosek.xsl or -html/autoidx-kosek.xsl into your -customization. - - - - - - - -kimber - - -This method uses extensions to the Saxon processor to implement -sophisticated indexing processes. It uses its own -configuration file, which can include information for any number of -languages. Each language's configuration can group -words using one of two processes. In the -enumerated process similar to that used in the kosek method, -you indicate the groupings character-by-character. -In the between-key process, you specify the -break-points in the sort order that should start a new group. -The latter configuration is useful for ideographic languages -such as Chinese, Japanese, and Korean. -You can also define your own collation algorithms and how you -want mixed Latin-alphabet words sorted. - - -For a whitepaper describing the extensions, see: -http://www.innodata-isogen.com/knowledge_center/white_papers/back_of_book_for_xsl_fo.pdf. - - - -To download the extension library, see -http://www.innodata-isogen.com/knowledge_center/tools_downloads/i18nsupport. - - - - -To use the kimber method, you must: - - - -Use Saxon (version 6 or 8) as your XSLT processor. - - - -Install and configure the Innodata Isogen library, using -the documentation that comes with it. - - - -Set the index.method parameter's value to kimber. - - - -Import the appropriate index extensions stylesheet module -fo/autoidx-kimber.xsl or -html/autoidx-kimber.xsl into your -customization. - - - - - - - - - - - - - -index.on.type -boolean - - -index.on.type -Select indexterms based on type -attribute value - - - - -<xsl:param name="index.on.type" select="0"></xsl:param> - - - -Description - - -If non-zero, -then an index element that has a -type attribute -value will contain only those indexterm -elements with a matching type attribute value. -If an index has no type -attribute or it is blank, then the index will contain -all indexterms in the current scope. - - - -If index.on.type is zero, then the -type attribute has no effect -on selecting indexterms for an index. - - -For those using DocBook version 4.2 or earlier, -the type attribute is not available -for index terms. However, you can achieve the same -effect by using the role attribute -in the same manner on indexterm -and index, and setting the stylesheet parameter -index.on.role to a nonzero value. - - - - - - - -index.on.role -boolean - - -index.on.role -Select indexterms based on role value - - - - -<xsl:param name="index.on.role" select="0"></xsl:param> - - - -Description - - -If non-zero, -then an index element that has a -role attribute -value will contain only those indexterm -elements with a matching role value. -If an index has no role -attribute or it is blank, then the index will contain -all indexterms in the current scope. - - -If index.on.role is zero, then the -role attribute has no effect -on selecting indexterms for an index. - - -If you are using DocBook version 4.3 or later, you should -use the type attribute instead of role -on indexterm and index, -and set the index.on.type to a nonzero -value. - - - - - - - -index.preferred.page.properties -attribute set - - -index.preferred.page.properties -Properties used to emphasize page number references for -significant index terms - - - - -<xsl:attribute-set name="index.preferred.page.properties"> - <xsl:attribute name="font-weight">bold</xsl:attribute> -</xsl:attribute-set> - - - -Description - -Properties used to emphasize page number references for -significant index terms (significance=preferred). Currently works only with -XEP. - - - - - - -index.entry.properties -attribute set - - -index.entry.properties -Properties applied to the formatted entries -in an index - - - - -<xsl:attribute-set name="index.entry.properties"> - <xsl:attribute name="start-indent">0pt</xsl:attribute> -</xsl:attribute-set> - - - -Description - -This attribute set is applied to the block containing -the entries in a letter division in an index. It can be used to set the -font-size, font-family, and other inheritable properties that will be -applied to all index entries. - - - - - - -index.div.title.properties -attribute set - - -index.div.title.properties -Properties associated with the letter headings in an -index - - - - -<xsl:attribute-set name="index.div.title.properties"> - <xsl:attribute name="margin-{$direction.align.start}">0pt</xsl:attribute> - <xsl:attribute name="font-size">14.4pt</xsl:attribute> - <xsl:attribute name="font-family"><xsl:value-of select="$title.fontset"></xsl:value-of></xsl:attribute> - <xsl:attribute name="font-weight">bold</xsl:attribute> - <xsl:attribute name="keep-with-next.within-column">always</xsl:attribute> - <xsl:attribute name="space-before.optimum"><xsl:value-of select="concat($body.font.master,'pt')"></xsl:value-of></xsl:attribute> - <xsl:attribute name="space-before.minimum"><xsl:value-of select="concat($body.font.master,'pt * 0.8')"></xsl:value-of></xsl:attribute> - <xsl:attribute name="space-before.maximum"><xsl:value-of select="concat($body.font.master,'pt * 1.2')"></xsl:value-of></xsl:attribute> - <xsl:attribute name="start-indent">0pt</xsl:attribute> -</xsl:attribute-set> - - - -Description - -This attribute set is used on the letter headings that separate -the divisions in an index. - - - - - - -index.number.separator -string - - -index.number.separator -Override for punctuation separating page numbers in index - - - - -<xsl:param name="index.number.separator"></xsl:param> - - - -Description - -This parameter permits you to override the text to insert between -page references in a formatted index entry. Typically -that would be a comma and a space. - - -Because this text may be locale dependent, -this parameter's value is normally taken from a gentext -template named 'number-separator' in the -context 'index' in the stylesheet -locale file for the language -of the current document. -This parameter can be used to override the gentext string, -and would typically be used on the command line. -This parameter would apply to all languages. - - -So this text string can be customized in two ways. -You can reset the default gentext string using -the local.l10n.xml parameter, or you can -override the gentext with the content of this parameter. -The content can be a simple string, or it can be -something more complex such as a call-template. - - -In HTML index output, section title references are used instead of -page number references. This punctuation appears between -such section titles in an HTML index. - - - - - - - -index.range.separator -string - - -index.range.separator -Override for punctuation separating the two numbers -in a page range in index - - - - -<xsl:param name="index.range.separator"></xsl:param> - - - -Description - -This parameter permits you -to override the text to insert between -the two numbers of a page range in an index. -This parameter is only used by those XSL-FO processors -that support an extension for generating such page ranges -(such as XEP). - -Because this text may be locale dependent, -this parameter's value is normally taken from a gentext -template named 'range-separator' in the -context 'index' in the stylesheet -locale file for the language -of the current document. -This parameter can be used to override the gentext string, -and would typically be used on the command line. -This parameter would apply to all languages. - - -So this text string can be customized in two ways. -You can reset the default gentext string using -the local.l10n.xml parameter, or you can -override the gentext with the content of this parameter. -The content can be a simple string, or it can be -something more complex such as a call-template. - - -In HTML index output, section title references are used instead of -page number references. So there are no page ranges -and this parameter has no effect. - - - - - - - -index.term.separator -string - - -index.term.separator -Override for punctuation separating an index term -from its list of page references in an index - - - - -<xsl:param name="index.term.separator"></xsl:param> - - - -Description - -This parameter permits you to override -the text to insert between -the end of an index term and its list of page references. -Typically that might be a comma and a space. - - -Because this text may be locale dependent, -this parameter's value is normally taken from a gentext -template named 'term-separator' in the -context 'index' in the stylesheet -locale file for the language -of the current document. -This parameter can be used to override the gentext string, -and would typically be used on the command line. -This parameter would apply to all languages. - - -So this text string can be customized in two ways. -You can reset the default gentext string using -the local.l10n.xml parameter, or you can -fill in the content for this normally empty -override parameter. -The content can be a simple string, or it can be -something more complex such as a call-template. -For fo output, it could be an fo:leader -element to provide space of a specific length, or a dot leader. - - - - - - - -xep.index.item.properties -attribute set - - -xep.index.item.properties -Properties associated with XEP index-items - - - - -<xsl:attribute-set name="xep.index.item.properties" use-attribute-sets="index.page.number.properties"> - <xsl:attribute name="merge-subsequent-page-numbers">true</xsl:attribute> - <xsl:attribute name="link-back">true</xsl:attribute> -</xsl:attribute-set> - - - -Description - -Properties associated with XEP index-items, which generate -page numbers in an index processed by XEP. For more info see -the XEP documentation section "Indexes" in -http://www.renderx.com/reference.html#Indexes. - -This attribute-set also adds by default any properties from the -index.page.number.properties -attribute-set. - - - - - -toc.section.depth -integer - - -toc.section.depth -How deep should recursive sections appear -in the TOC? - - - -<xsl:param name="toc.section.depth">2</xsl:param> - - -Description - -Specifies the depth to which recursive sections should appear in the -TOC. - - - - - - - -toc.max.depth -integer - - -toc.max.depth -How many levels should be created for each TOC? - - - -<xsl:param name="toc.max.depth">8</xsl:param> - - -Description - -Specifies the maximal depth of TOC on all levels. - - - - - - -toc.indent.width -float - - -toc.indent.width -Amount of indentation for TOC entries - - - - -<xsl:param name="toc.indent.width">24</xsl:param> -<!-- inconsistant point specification? --> - - - -Description - -Specifies, in points, the distance by which each level of the -TOC is indented from its parent. - -This value is expressed in points, without -a unit (in other words, it is a bare number). Using a bare number allows the stylesheet -to perform calculations that would otherwise have to be performed by the FO processor -because not all processors support expressions. - - - - - - -toc.line.properties -attribute set - - -toc.line.properties -Properties for lines in ToC and LoTs - - - - -<xsl:attribute-set name="toc.line.properties"> - <xsl:attribute name="text-align-last">justify</xsl:attribute> - <xsl:attribute name="text-align">start</xsl:attribute> - <xsl:attribute name="end-indent"><xsl:value-of select="concat($toc.indent.width, 'pt')"></xsl:value-of></xsl:attribute> - <xsl:attribute name="last-line-end-indent"><xsl:value-of select="concat('-', $toc.indent.width, 'pt')"></xsl:value-of></xsl:attribute> -</xsl:attribute-set> - - - -Description - -Properties which are applied to every line in ToC (or LoT). You can -modify them in order to change appearance of all, or some lines. For -example in order to make lines for chapters in bold specify the -following in your customization layer. - -<xsl:attribute-set name="toc.line.properties"> - <xsl:attribute name="font-weight"> - <xsl:when test="self::chapter | self::preface | self::appendix">bold</xsl:when> - <xsl:otherwise>normal</xsl:otherwise> - </xsl:attribute> -</xsl:attribute-set> - - - - - - -toc.margin.properties -attribute set - - -toc.margin.properties -Margin properties used on Tables of Contents - - - - -<xsl:attribute-set name="toc.margin.properties"> - <xsl:attribute name="space-before.minimum">0.5em</xsl:attribute> - <xsl:attribute name="space-before.optimum">1em</xsl:attribute> - <xsl:attribute name="space-before.maximum">2em</xsl:attribute> - <xsl:attribute name="space-after.minimum">0.5em</xsl:attribute> - <xsl:attribute name="space-after.optimum">1em</xsl:attribute> - <xsl:attribute name="space-after.maximum">2em</xsl:attribute> -</xsl:attribute-set> - - - -Description -This attribute set is used on Tables of Contents. These attributes are set -on the wrapper that surrounds the ToC block, not on each individual lines. - - - - - -bridgehead.in.toc -boolean - - -bridgehead.in.toc -Should bridgehead elements appear in the TOC? - - - -<xsl:param name="bridgehead.in.toc" select="0"></xsl:param> - - -Description - -If non-zero, bridgeheads appear in the TOC. Note that -this option is not fully supported and may be removed in a future -version of the stylesheets. - - - - - - - -simplesect.in.toc -boolean - - -simplesect.in.toc -Should simplesect elements appear in the TOC? - - - -<xsl:param name="simplesect.in.toc" select="0"></xsl:param> - - -Description - -If non-zero, simplesects will be included in the TOC. - - - - - - - -generate.section.toc.level -integer - - -generate.section.toc.level -Control depth of TOC generation in sections - - - - -<xsl:param name="generate.section.toc.level" select="0"></xsl:param> - - - -Description - -The generate.section.toc.level parameter -controls the depth of section in which TOCs will be generated. Note -that this is related to, but not the same as -toc.section.depth, which controls the depth to -which TOC entries will be generated in a given TOC. -If, for example, generate.section.toc.level -is 3, TOCs will be generated in first, second, and third -level sections, but not in fourth level sections. - - - - - - - - -
Processor Extensions - - -arbortext.extensions -boolean - - -arbortext.extensions -Enable Arbortext extensions? - - - -<xsl:param name="arbortext.extensions" select="0"></xsl:param> - - -Description - -If non-zero, -Arbortext -extensions will be used. - -This parameter can also affect which graphics file formats -are supported - - - - - - -axf.extensions -boolean - - -axf.extensions -Enable XSL Formatter extensions? - - - - -<xsl:param name="axf.extensions" select="0"></xsl:param> - - - -Description - -If non-zero, -XSL Formatter -extensions will be used. XSL Formatter extensions consists of PDF bookmarks, -document information and better index processing. - -This parameter can also affect which graphics file formats -are supported - - - - - - -fop.extensions -boolean - - -fop.extensions -Enable extensions for FOP version 0.20.5 and earlier - - - -<xsl:param name="fop.extensions" select="0"></xsl:param> - - -Description - -If non-zero, extensions intended for -FOP -version 0.20.5 and earlier will be used. -At present, this consists of PDF bookmarks. - - -This parameter can also affect which graphics file formats -are supported. - -If you are using a version of FOP beyond -version 0.20.5, then use the fop1.extensions parameter -instead. - - - - - - -fop1.extensions -boolean - - -fop1.extensions -Enable extensions for FOP version 0.90 and later - - - -<xsl:param name="fop1.extensions" select="0"></xsl:param> - - -Description - -If non-zero, extensions for -FOP -version 0.90 and later will be used. - - -This parameter can also affect which graphics file formats -are supported. - -The original fop.extensions parameter -should still be used for FOP version 0.20.5 and earlier. - - - - - - -passivetex.extensions -boolean - - -passivetex.extensions -Enable PassiveTeX extensions? - - - -<xsl:param name="passivetex.extensions" select="0"></xsl:param> - - -Description - -If non-zero, -PassiveTeX -extensions will be used. At present, this consists of PDF bookmarks -and sorted index terms. - - -This parameter can also affect which graphics file formats -are supported - - - PassiveTeX is incomplete and development has ceased. In most cases, -another XSL-FO engine is probably a better choice. - - - - - - - -tex.math.in.alt -list -plain -latex - - -tex.math.in.alt -TeX notation used for equations - - - - -<xsl:param name="tex.math.in.alt"></xsl:param> - - - -Description - -If you want type math directly in TeX notation in equations, -this parameter specifies notation used. Currently are supported two -values -- plain and latex. Empty -value means that you are not using TeX math at all. - -Preferred way for including TeX alternative of math is inside of -textobject element. Eg.: - -<inlineequation> -<inlinemediaobject> -<imageobject> -<imagedata fileref="eq1.gif"/> -</imageobject> -<textobject><phrase>E=mc squared</phrase></textobject> -<textobject role="tex"><phrase>E=mc^2</phrase></textobject> -</inlinemediaobject> -</inlineequation> - -If you are using graphic element, you can -store TeX inside alt element: - -<inlineequation> -<alt role="tex">a^2+b^2=c^2</alt> -<graphic fileref="a2b2c2.gif"/> -</inlineequation> - -If you want use this feature, you should process your FO with -PassiveTeX, which only supports TeX math notation. When calling -stylsheet, don't forget to specify also -passivetex.extensions=1. - -If you want equations in HTML, just process generated file -tex-math-equations.tex by TeX or LaTeX. Then run -dvi2bitmap program on result DVI file. You will get images for -equations in your document. - - - This feature is useful for print/PDF output only if you - use the obsolete and now unsupported PassiveTeX XSL-FO - engine. - - - - -Related Parameters - tex.math.delims, - passivetex.extensions, - tex.math.file - -More information - For how-to documentation on embedding TeX equations and - generating output from them, see - DBTeXMath. - - - - - -tex.math.delims -boolean - - -tex.math.delims -Should equations output for processing by TeX be -surrounded by math mode delimiters? - - - - -<xsl:param name="tex.math.delims" select="1"></xsl:param> - - - -Description - -For compatibility with DSSSL based DBTeXMath from Allin Cottrell -you should set this parameter to 0. - - -Related Parameters - tex.math.in.alt, - passivetex.extensions - - -See Also - You can also use the dbtex delims processing - instruction to control whether delimiters are output. - -More information - For how-to documentation on embedding TeX equations and - generating output from them, see - DBTeXMath. - - - - - -xep.extensions -boolean - - -xep.extensions -Enable XEP extensions? - - - -<xsl:param name="xep.extensions" select="0"></xsl:param> - - -Description - -If non-zero, -XEP -extensions will be used. XEP extensions consists of PDF bookmarks, -document information and better index processing. - - -This parameter can also affect which graphics file formats -are supported - - - -Stylesheet Extensions - - -linenumbering.everyNth -integer - - -linenumbering.everyNth -Indicate which lines should be numbered - - - - -<xsl:param name="linenumbering.everyNth">5</xsl:param> - - - -Description - -If line numbering is enabled, everyNth line will be -numbered. Note that numbering is one based, not zero based. - - - - - - - -linenumbering.extension -boolean - - -linenumbering.extension -Enable the line numbering extension - - - - -<xsl:param name="linenumbering.extension" select="1"></xsl:param> - - - -Description - -If non-zero, verbatim environments (address, literallayout, -programlisting, screen, synopsis) that specify line numbering will -have line numbers. - - - - - - - -linenumbering.separator -string - - -linenumbering.separator -Specify a separator between line numbers and lines - - - - -<xsl:param name="linenumbering.separator"><xsl:text> </xsl:text></xsl:param> - - - -Description - -The separator is inserted between line numbers and lines in the -verbatim environment. The default value is a single white space. - Note the interaction with linenumbering.width - - - - - - - -linenumbering.width -integer - - -linenumbering.width -Indicates the width of line numbers - - - - -<xsl:param name="linenumbering.width">3</xsl:param> - - - -Description - -If line numbering is enabled, line numbers will appear right -justified in a field "width" characters wide. - - - - - - - -tablecolumns.extension -boolean - - -tablecolumns.extension -Enable the table columns extension function - - - - -<xsl:param name="tablecolumns.extension" select="1"></xsl:param> - - - -Description - -The table columns extension function adjusts the widths of table -columns in the HTML result to more accurately reflect the specifications -in the CALS table. - - - - - - - - textinsert.extension - boolean - - - textinsert.extension - Enables the textinsert extension element - - - - <xsl:param name="textinsert.extension" select="1"></xsl:param> - - - Description - The textinsert extension element inserts the contents of - a file into the result tree (as text). - - To use the textinsert extension element, you must use - either Saxon or Xalan as your XSLT processor (it doesn’t - work with xsltproc), along with either the DocBook Saxon - extensions or DocBook Xalan extensions (for more - information about those extensions, see DocBook Saxon Extensions and DocBook Xalan Extensions), and you must set both - the use.extensions and - textinsert.extension parameters to - 1. - As an alternative to using the textinsert element, - consider using an Xinclude element with the - parse="text" attribute and value - specified, as detailed in Using XInclude for text inclusions. - - - See Also - You can also use the dbhtml-include href processing - instruction to insert external files — both files containing - plain text and files with markup content (including HTML - content). - - More information - For how-to documentation on inserting contents of - external code files and other text files into output, see - External code files. - For guidelines on inserting contents of - HTML files into output, see Inserting external HTML code. - - - - - -textdata.default.encoding -string - - -textdata.default.encoding -Default encoding of external text files which are included -using textdata element - - - - -<xsl:param name="textdata.default.encoding"></xsl:param> - - - -Description - -Specifies the encoding of any external text files included using -textdata element. This value is used only when you do -not specify encoding by the appropriate attribute -directly on textdata. An empty string is interpreted as the system -default encoding. - - - - - - -use.extensions -boolean - - -use.extensions -Enable extensions - - - - -<xsl:param name="use.extensions" select="0"></xsl:param> - - - -Description - -If non-zero, extensions may be used. Each extension is -further controlled by its own parameter. But if -use.extensions is zero, no extensions will -be used. - - - - - -Automatic labelling - - -appendix.autolabel -list -0none -11,2,3... -AA,B,C... -aa,b,c... -ii,ii,iii... -II,II,III... - - -appendix.autolabel -Specifies the labeling format for Appendix titles - - - - -<xsl:param name="appendix.autolabel">A</xsl:param> - - - -Description - -If non-zero, then appendices will be numbered using the -parameter value as the number format if the value matches one of the -following: - - - - - 1 or arabic - - Arabic numeration (1, 2, 3 ...). - - - - A or upperalpha - - Uppercase letter numeration (A, B, C ...). - - - - a or loweralpha - - Lowercase letter numeration (a, b, c ...). - - - - I or upperroman - - Uppercase roman numeration (I, II, III ...). - - - - i or lowerroman - - Lowercase roman letter numeration (i, ii, iii ...). - - - - -Any nonzero value other than the above will generate -the default number format (upperalpha). - - - - - - - -chapter.autolabel -list -0none -11,2,3... -AA,B,C... -aa,b,c... -ii,ii,iii... -II,II,III... - - -chapter.autolabel -Specifies the labeling format for Chapter titles - - - - -<xsl:param name="chapter.autolabel" select="1"></xsl:param> - - -Description - -If non-zero, then chapters will be numbered using the parameter -value as the number format if the value matches one of the following: - - - - - 1 or arabic - - Arabic numeration (1, 2, 3 ...). - - - - A or upperalpha - - Uppercase letter numeration (A, B, C ...). - - - - a or loweralpha - - Lowercase letter numeration (a, b, c ...). - - - - I or upperroman - - Uppercase roman numeration (I, II, III ...). - - - - i or lowerroman - - Lowercase roman letter numeration (i, ii, iii ...). - - - - -Any nonzero value other than the above will generate -the default number format (arabic). - - - - - - - -part.autolabel -list -0none -11,2,3... -AA,B,C... -aa,b,c... -ii,ii,iii... -II,II,III... - - -part.autolabel -Specifies the labeling format for Part titles - - - - -<xsl:param name="part.autolabel">I</xsl:param> - - - -Description - -If non-zero, then parts will be numbered using the parameter -value as the number format if the value matches one of the following: - - - - - 1 or arabic - - Arabic numeration (1, 2, 3 ...). - - - - A or upperalpha - - Uppercase letter numeration (A, B, C ...). - - - - a or loweralpha - - Lowercase letter numeration (a, b, c ...). - - - - I or upperroman - - Uppercase roman numeration (I, II, III ...). - - - - i or lowerroman - - Lowercase roman letter numeration (i, ii, iii ...). - - - - -Any nonzero value other than the above will generate -the default number format (upperroman). - - - - - - - - -reference.autolabel -list -0none -11,2,3... -AA,B,C... -aa,b,c... -ii,ii,iii... -II,II,III... - - -reference.autolabel -Specifies the labeling format for Reference titles - - - - <xsl:param name="reference.autolabel">I</xsl:param> - - -Description -If non-zero, references will be numbered using the parameter - value as the number format if the value matches one of the - following: - - - - 1 or arabic - - Arabic numeration (1, 2, 3 ...). - - - - A or upperalpha - - Uppercase letter numeration (A, B, C ...). - - - - a or loweralpha - - Lowercase letter numeration (a, b, c ...). - - - - I or upperroman - - Uppercase roman numeration (I, II, III ...). - - - - i or lowerroman - - Lowercase roman letter numeration (i, ii, iii ...). - - - -Any non-zero value other than the above will generate -the default number format (upperroman). - - - - - - -preface.autolabel -list -0none -11,2,3... -AA,B,C... -aa,b,c... -ii,ii,iii... -II,II,III... - - -preface.autolabel -Specifices the labeling format for Preface titles - - - -<xsl:param name="preface.autolabel" select="0"></xsl:param> - - -Description - -If non-zero then prefaces will be numbered using the parameter -value as the number format if the value matches one of the following: - - - - - 1 or arabic - - Arabic numeration (1, 2, 3 ...). - - - - A or upperalpha - - Uppercase letter numeration (A, B, C ...). - - - - a or loweralpha - - Lowercase letter numeration (a, b, c ...). - - - - I or upperroman - - Uppercase roman numeration (I, II, III ...). - - - - i or lowerroman - - Lowercase roman letter numeration (i, ii, iii ...). - - - - -Any nonzero value other than the above will generate -the default number format (arabic). - - - - - - - - -section.autolabel -boolean - - -section.autolabel -Are sections enumerated? - - - -<xsl:param name="section.autolabel" select="0"></xsl:param> - - -Description - -If true (non-zero), unlabeled sections will be enumerated. - - - - - - - -section.autolabel.max.depth -integer - - -section.autolabel.max.depth -The deepest level of sections that are numbered. - - - - -<xsl:param name="section.autolabel.max.depth">8</xsl:param> - - - -Description - -When section numbering is turned on by the -section.autolabel parameter, then this -parameter controls the depth of section nesting that is -numbered. Sections nested to a level deeper than this value will not -be numbered. - - - - - - - -section.label.includes.component.label -boolean - - -section.label.includes.component.label -Do section labels include the component label? - - - -<xsl:param name="section.label.includes.component.label" select="0"></xsl:param> - - -Description - -If non-zero, section labels are prefixed with the label of the -component that contains them. - - - - - - - -label.from.part -boolean - - -label.from.part -Renumber components in each part? - - - - -<xsl:param name="label.from.part" select="0"></xsl:param> - - - -Description - -If label.from.part is non-zero, then - numbering of components — preface, - chapter, appendix, and - reference (when reference occurs at the - component level) — is re-started within each - part. -If label.from.part is zero (the - default), numbering of components is not - re-started within each part; instead, components are - numbered sequentially throughout each book, - regardless of whether or not they occur within part - instances. - - - - - - -component.label.includes.part.label -boolean - - -component.label.includes.part.label -Do component labels include the part label? - - - -<xsl:param name="component.label.includes.part.label" select="0"></xsl:param> - - -Description - -If non-zero, number labels for chapter, -appendix, and other component elements are prefixed with -the label of the part element that contains them. So you might see -Chapter II.3 instead of Chapter 3. Also, the labels for formal -elements such as table and figure will include -the part label. If there is no part element container, then no prefix -is generated. - - -This feature is most useful when the -label.from.part parameter is turned on. -In that case, there would be more than one chapter -1, and the extra part label prefix will identify -each chapter unambiguously. - - - - - -XSLT Processing - - -rootid -string - - -rootid -Specify the root element to format - - - - -<xsl:param name="rootid"></xsl:param> - - -Description - -If rootid is not empty, it must be the -value of an ID that occurs in the document being formatted. The entire -document will be loaded and parsed, but formatting will begin at the -element identified, rather than at the root. For example, this allows -you to process only chapter 4 of a book. -Because the entire document is available to the processor, automatic -numbering, cross references, and other dependencies are correctly -resolved. - - - - -Meta/*Info - - -make.single.year.ranges -boolean - - -make.single.year.ranges -Print single-year ranges (e.g., 1998-1999) - - - - -<xsl:param name="make.single.year.ranges" select="0"></xsl:param> - - -Description - -If non-zero, year ranges that span a single year will be printed -in range notation (1998-1999) instead of discrete notation -(1998, 1999). - - - - - - -make.year.ranges -boolean - - -make.year.ranges -Collate copyright years into ranges? - - - -<xsl:param name="make.year.ranges" select="0"></xsl:param> - - -Description - -If non-zero, multiple copyright year elements will be -collated into ranges. -This works only if each year number is put into a separate -year element. The copyright element permits multiple -year elements. If a year element contains a dash or -a comma, then that year element will not be merged into -any range. - - - - - - - -author.othername.in.middle -boolean - - -author.othername.in.middle -Is othername in author a -middle name? - - - - -<xsl:param name="author.othername.in.middle" select="1"></xsl:param> - - -Description - -If non-zero, the othername of an author -appears between the firstname and -surname. Otherwise, othername -is suppressed. - - - - - -Reference Pages - - -funcsynopsis.decoration -boolean - - -funcsynopsis.decoration -Decorate elements of a funcsynopsis? - - - - -<xsl:param name="funcsynopsis.decoration" select="1"></xsl:param> - - - -Description - -If non-zero, elements of the funcsynopsis will be -decorated (e.g. rendered as bold or italic text). The decoration is controlled by -templates that can be redefined in a customization layer. - - - - - - - -funcsynopsis.style -list -ansi -kr - - -funcsynopsis.style -What style of funcsynopsis should be generated? - - - -<xsl:param name="funcsynopsis.style">kr</xsl:param> - - -Description - -If funcsynopsis.style is ansi, -ANSI-style function synopses are generated for a -funcsynopsis, otherwise K&R-style -function synopses are generated. - - - - - - - -function.parens -boolean - - -function.parens -Generate parens after a function? - - - - -<xsl:param name="function.parens" select="0"></xsl:param> - - - -Description - -If non-zero, the formatting of a function element -will include generated parentheses. - - - - - - - -refentry.generate.name -boolean - - -refentry.generate.name -Output NAME header before refnames? - - - - -<xsl:param name="refentry.generate.name" select="1"></xsl:param> - - - -Description - -If non-zero, a "NAME" section title is output before the list -of refnames. This parameter and -refentry.generate.title are mutually -exclusive. This means that if you change this parameter to zero, you -should set refentry.generate.title to non-zero unless -you want get quite strange output. - - - - - - - -refentry.generate.title -boolean - - -refentry.generate.title -Output title before refnames? - - - - -<xsl:param name="refentry.generate.title" select="0"></xsl:param> - - - -Description - -If non-zero, the reference page title or first name is -output before the list of refnames. This parameter and -refentry.generate.name are mutually exclusive. -This means that if you change this parameter to non-zero, you -should set refentry.generate.name to zero unless -you want get quite strange output. - - - - - - - -refentry.pagebreak -boolean - - -refentry.pagebreak -Start each refentry on a new page - - - -<xsl:param name="refentry.pagebreak" select="1"></xsl:param> - - -Description - -If non-zero (the default), each refentry -element will start on a new page. If zero, a page -break will not be generated between refentry elements. -The exception is when the refentry elements are children of -a part element, in which case the page breaks are always -retained. That is because a part element does not generate -a page-sequence for its children, so each refentry must -start its own page-sequence. - - - - - - - -refentry.title.properties -attribute set - - -refentry.title.properties -Title properties for a refentry title - - - - -<xsl:attribute-set name="refentry.title.properties"> - <xsl:attribute name="font-family"> - <xsl:value-of select="$title.font.family"></xsl:value-of> - </xsl:attribute> - <xsl:attribute name="font-size">18pt</xsl:attribute> - <xsl:attribute name="font-weight">bold</xsl:attribute> - <xsl:attribute name="space-after">1em</xsl:attribute> - <xsl:attribute name="hyphenate">false</xsl:attribute> - <xsl:attribute name="keep-with-next.within-column">always</xsl:attribute> - <xsl:attribute name="space-before.minimum">0.8em</xsl:attribute> - <xsl:attribute name="space-before.optimum">1.0em</xsl:attribute> - <xsl:attribute name="space-before.maximum">1.2em</xsl:attribute> - <xsl:attribute name="space-after.optimum">0.5em</xsl:attribute> - <xsl:attribute name="space-after.minimum">0.4em</xsl:attribute> - <xsl:attribute name="space-after.maximum">0.6em</xsl:attribute> - <xsl:attribute name="start-indent"><xsl:value-of select="$title.margin.left"></xsl:value-of></xsl:attribute> -</xsl:attribute-set> - - - -Description - -Formatting properties applied to the title generated for the -refnamediv part of output for -refentry when the value of the -refentry.generate.title parameter is -non-zero. The font size is supplied by the appropriate section.levelX.title.properties -attribute-set, computed from the location of the -refentry in the section hierarchy. - - - This parameter has no effect on the the title generated for - the refnamediv part of output for - refentry when the value of the - refentry.generate.name parameter is - non-zero. By default, that title is formatted with the same - properties as the titles for all other first-level children of - refentry. - - - - - - - -refentry.xref.manvolnum -boolean - - -refentry.xref.manvolnum -Output manvolnum as part of -refentry cross-reference? - - - - -<xsl:param name="refentry.xref.manvolnum" select="1"></xsl:param> - - - -Description - -if non-zero, the manvolnum is used when cross-referencing -refentrys, either with xref -or citerefentry. - - - - - - - -refclass.suppress -boolean - - -refclass.suppress -Suppress display of refclass contents? - - - - -<xsl:param name="refclass.suppress" select="0"></xsl:param> - - -Description - -If the value of refclass.suppress is -non-zero, then display of refclass contents is -suppressed in output. - - - - -Tables - - -default.table.width -length - - -default.table.width -The default width of tables - - - -<xsl:param name="default.table.width"></xsl:param> - - -Description -If non-zero, this value will be used for the -width attribute on tables that do not specify an -alternate width (with the dbhtml table-width or -dbfo table-width processing instruction). - - - - - -nominal.table.width -length - - -nominal.table.width -The (absolute) nominal width of tables - - - - -<xsl:param name="nominal.table.width">6in</xsl:param> - - - -Description - -In order to convert CALS column widths into HTML column widths, it -is sometimes necessary to have an absolute table width to use for conversion -of mixed absolute and relative widths. This value must be an absolute -length (not a percentage). - - - - - - -default.table.frame -string - - -default.table.frame -The default framing of tables - - - - -<xsl:param name="default.table.frame">all</xsl:param> - - - -Description - -This value will be used when there is no frame attribute on the -table. - - - - - - -default.table.rules -string - - -default.table.rules -The default column and row rules for tables using HTML markup - - - - -<xsl:param name="default.table.rules">none</xsl:param> - - - -Description - -Tables using HTML markup elements can use an attribute -named rules on the table or -informaltable element -to specify whether column and row border rules should be -displayed. This parameter lets you specify a global default -style for all HTML tables that don't otherwise have -that attribute. -These are the supported values: - - -all - -Rules will appear between all rows and columns. - - - -rows - -Rules will appear between rows only. - - - -cols - -Rules will appear between columns only. - - - -groups - -Rules will appear between row groups (thead, tfoot, tbody). -No support for rules between column groups yet. - - - - -none - -No rules. This is the default value. - - - - - - -The border after the last row and the border after -the last column are not affected by -this setting. Those borders are controlled by -the frame attribute on the table element. - - - - - - - -table.cell.padding -attribute set - - -table.cell.padding -Specifies the padding of table cells - - - - -<xsl:attribute-set name="table.cell.padding"> - <xsl:attribute name="padding-start">2pt</xsl:attribute> - <xsl:attribute name="padding-end">2pt</xsl:attribute> - <xsl:attribute name="padding-top">2pt</xsl:attribute> - <xsl:attribute name="padding-bottom">2pt</xsl:attribute> -</xsl:attribute-set> - - - -Description - -Specifies the padding of table cells. - - - - - - -table.frame.border.thickness -length - - -table.frame.border.thickness -Specifies the thickness of the frame border - - - - -<xsl:param name="table.frame.border.thickness">0.5pt</xsl:param> - - - -Description - -Specifies the thickness of the border on the table's frame. - - - - - - -table.frame.border.style -list -none -solid -dotted -dashed -double -groove -ridge -inset -outset -solid - - -table.frame.border.style -Specifies the border style of table frames - - - - -<xsl:param name="table.frame.border.style">solid</xsl:param> - - - -Description - -Specifies the border style of table frames. - - - - - - -table.frame.border.color -color - - -table.frame.border.color -Specifies the border color of table frames - - - - - -<xsl:param name="table.frame.border.color">black</xsl:param> - - - -Description - -Specifies the border color of table frames. - - - - - - -table.cell.border.thickness -length - - -table.cell.border.thickness -Specifies the thickness of table cell borders - - - - -<xsl:param name="table.cell.border.thickness">0.5pt</xsl:param> - - - -Description - -If non-zero, specifies the thickness of borders on table -cells. The units are points. See -CSS - - - To control properties of cell borders in HTML output, you must also turn on the - table.borders.with.css parameter. - - - - - - - -table.cell.border.style -list -none -solid -dotted -dashed -double -groove -ridge -inset -outset -solid - - -table.cell.border.style -Specifies the border style of table cells - - - - -<xsl:param name="table.cell.border.style">solid</xsl:param> - - - -Description - -Specifies the border style of table cells. - - - To control properties of cell borders in HTML output, you must also turn on the - table.borders.with.css parameter. - - - - - - - -table.cell.border.color -color - - -table.cell.border.color -Specifies the border color of table cells - - - - - -<xsl:param name="table.cell.border.color">black</xsl:param> - - - -Description - -Set the color of table cell borders. If non-zero, the value is used -for the border coloration. See CSS. A -color is either a keyword or a numerical RGB specification. -Keywords are aqua, black, blue, fuchsia, gray, green, lime, maroon, -navy, olive, orange, purple, red, silver, teal, white, and -yellow. - - - To control properties of cell borders in HTML output, you must also turn on the - table.borders.with.css parameter. - - - - - - - -table.table.properties -attribute set - - -table.table.properties -Properties associated with a table - - - - -<xsl:attribute-set name="table.table.properties"> - <xsl:attribute name="border-before-width.conditionality">retain</xsl:attribute> - <xsl:attribute name="border-collapse">collapse</xsl:attribute> -</xsl:attribute-set> - - - -Description - -The styling for tables. This parameter should really -have been called table.properties, but that parameter -name was inadvertently established for the block-level properties -of the table as a whole. - - -See also table.properties. - - - - -Linking - - -current.docid -string - - -current.docid -targetdoc identifier for the document being -processed - - -<xsl:param name="current.docid"></xsl:param> - - -Description - -When olinks between documents are resolved for HTML output, the stylesheet can compute the relative path between the current document and the target document. The stylesheet needs to know the targetdoc identifiers for both documents, as they appear in the target.database.document database file. This parameter passes to the stylesheet -the targetdoc identifier of the current document, since that -identifier does not appear in the document itself. -This parameter can also be used for print output. If an olink's targetdoc id differs from the current.docid, then the stylesheet can append the target document's title to the generated olink text. That identifies to the reader that the link is to a different document, not the current document. See also olink.doctitle to enable that feature. - - - - - -collect.xref.targets -list -no -yes -only - - -collect.xref.targets -Controls whether cross reference data is -collected - - -<xsl:param name="collect.xref.targets">no</xsl:param> - - -Description - - -In order to resolve olinks efficiently, the stylesheets can -generate an external data file containing information about -all potential cross reference endpoints in a document. -This parameter determines whether the collection process is run when the document is processed by the stylesheet. The default value is no, which means the data file is not generated during processing. The other choices are yes, which means the data file is created and the document is processed for output, and only, which means the data file is created but the document is not processed for output. -See also targets.filename. - - - - - - -insert.olink.page.number -list -no -yes -maybe - - -insert.olink.page.number -Turns page numbers in olinks on and off - - - - -<xsl:param name="insert.olink.page.number">no</xsl:param> - - - -Description - -The value of this parameter determines if -cross references made between documents with -olink will -include page number citations. -In most cases this is only applicable to references in printed output. - -The parameter has three possible values. - - - -no -No page number references will be generated for olinks. - - - -yes -Page number references will be generated -for all olink references. -The style of page reference may be changed -if an xrefstyle -attribute is used. - - - -maybe -Page number references will not be generated -for an olink element unless -it has an -xrefstyle -attribute whose value specifies a page reference. - - - -Olinks that point to targets within the same document -are treated as xrefs, and controlled by -the insert.xref.page.number parameter. - - -Page number references for olinks to -external documents can only be inserted if the -information exists in the olink database. -This means each olink target element -(div or obj) -must have a page attribute -whose value is its page number in the target document. -The XSL stylesheets are not able to extract that information -during processing because pages have not yet been created in -XSLT transformation. Only the XSL-FO processor knows what -page each element is placed on. -Therefore some postprocessing must take place to populate -page numbers in the olink database. - - - - - - - - - -insert.olink.pdf.frag -boolean - - -insert.olink.pdf.frag -Add fragment identifiers for links into PDF files - - - - -<xsl:param name="insert.olink.pdf.frag" select="0"></xsl:param> - - - -Description - -The value of this parameter determines whether -the cross reference URIs to PDF documents made with -olink will -include fragment identifiers. - - -When forming a URI to link to a PDF document, -a fragment identifier (typically a '#' followed by an -id value) appended to the PDF filename can be used by -the PDF viewer to open -the PDF file to a location within the document instead of -the first page. -However, not all PDF files have id -values embedded in them, and not all PDF viewers can -handle fragment identifiers. - - -If insert.olink.pdf.frag is set -to a non-zero value, then any olink targeting a -PDF file will have the fragment identifier appended to the URI. -The URI is formed by concatenating the value of the -olink.base.uri parameter, the -value of the baseuri -attribute from the document -element in the olink database with the matching -targetdoc value, -and the value of the href -attribute for the targeted element in the olink database. -The href attribute -contains the fragment identifier. - - -If insert.olink.pdf.frag is set -to zero (the default value), then -the href attribute -from the olink database -is not appended to PDF olinks, so the fragment identifier is left off. -A PDF olink is any olink for which the -baseuri attribute -from the matching document -element in the olink database ends with '.pdf'. -Any other olinks will still have the fragment identifier added. - - - - - - -olink.base.uri -uri - - -olink.base.uri -Base URI used in olink hrefs - - -<xsl:param name="olink.base.uri"></xsl:param> - - -Description - -When cross reference data is collected for resolving olinks, it -may be necessary to prepend a base URI to each target's href. This -parameter lets you set that base URI when cross reference data is -collected. This feature is needed when you want to link to a document -that is processed without chunking. The output filename for such a -document is not known to the XSL stylesheet; the only target -information consists of fragment identifiers such as -#idref. To enable the resolution of olinks between -documents, you should pass the name of the HTML output file as the -value of this parameter. Then the hrefs recorded in the cross -reference data collection look like -outfile.html#idref, which can be reached as links -from other documents. - - - - - -olink.debug -boolean - - -olink.debug -Turn on debugging messages for olinks - - - - -<xsl:param name="olink.debug" select="0"></xsl:param> - - - -Description - -If non-zero, then each olink will generate several -messages about how it is being resolved during processing. -This is useful when an olink does not resolve properly -and the standard error messages are not sufficient to -find the problem. - - -You may need to read through the olink XSL templates -to understand the context for some of the debug messages. - - - - - - - -olink.doctitle -list -no -yes -maybe - - -olink.doctitle -show the document title for external olinks? - - - -<xsl:param name="olink.doctitle">no</xsl:param> - - -Description - -When olinks between documents are resolved, the generated text -may not make it clear that the reference is to another document. -It is possible for the stylesheets to append the other document's -title to external olinks. For this to happen, two parameters must -be set. - - -This olink.doctitle parameter -should be set to either yes or maybe -to enable this feature. - - - -And you should also set the current.docid -parameter to the document id for the document currently -being processed for output. - - - - - -Then if an olink's targetdoc id differs from -the current.docid value, the stylesheet knows -that it is a reference to another document and can -append the target document's -title to the generated olink text. - -The text for the target document's title is copied from the -olink database from the ttl element -of the top-level div for that document. -If that ttl element is missing or empty, -no title is output. - - -The supported values for olink.doctitle are: - - - -yes - - -Always insert the title to the target document if it is not -the current document. - - - - -no - - -Never insert the title to the target document, even if requested -in an xrefstyle attribute. - - - - -maybe - - -Only insert the title to the target document, if requested -in an xrefstyle attribute. - - - - -An xrefstyle attribute -may override the global setting for individual olinks. -The following values are supported in an -xrefstyle -attribute using the select: syntax: - - - - -docname - - -Insert the target document name for this olink using the -docname gentext template, but only -if the value of olink.doctitle -is not no. - - - - -docnamelong - - -Insert the target document name for this olink using the -docnamelong gentext template, but only -if the value of olink.doctitle -is not no. - - - - -nodocname - - -Omit the target document name even if -the value of olink.doctitle -is yes. - - - - -Another way of inserting the target document name -for a single olink is to employ an -xrefstyle -attribute using the template: syntax. -The %o placeholder (the letter o, not zero) -in such a template -will be filled in with the target document's title when it is processed. -This will occur regardless of -the value of olink.doctitle. - -Note that prior to version 1.66 of the XSL stylesheets, -the allowed values for this parameter were 0 and 1. Those -values are still supported and mapped to 'no' and 'yes', respectively. - - - - - - -olink.lang.fallback.sequence -string - - -olink.lang.fallback.sequence -look up translated documents if olink not found? - - - -<xsl:param name="olink.lang.fallback.sequence"></xsl:param> - - -Description - - -This parameter defines a list of lang values -to search among to resolve olinks. - - -Normally an olink tries to resolve to a document in the same -language as the olink itself. The language of an olink -is determined by its nearest ancestor element with a -lang attribute, otherwise the -value of the l10n.gentext.default.lang -parameter. - - -An olink database can contain target data for the same -document in multiple languages. Each set of data has the -same value for the targetdoc attribute in -the document element in the database, but with a -different lang attribute value. - - -When an olink is being resolved, the target is first -sought in the document with the same language as the olink. -If no match is found there, then this parameter is consulted -for additional languages to try. - -The olink.lang.fallback.sequence -must be a whitespace separated list of lang values to -try. The first one with a match in the olink database is used. -The default value is empty. - -For example, a document might be written in German -and contain an olink with -targetdoc="adminguide". -When the document is processed, the processor -first looks for a target dataset in the -olink database starting with: - -<document targetdoc="adminguide" lang="de">. - - -If there is no such element, then the -olink.lang.fallback.sequence -parameter is consulted. -If its value is, for example, fr en, then the processor next -looks for targetdoc="adminguide" lang="fr", and -then for targetdoc="adminguide" lang="en". -If there is still no match, it looks for -targetdoc="adminguide" with no -lang attribute. - - -This parameter is useful when a set of documents is only -partially translated, or is in the process of being translated. -If a target of an olink has not yet been translated, then this -parameter permits the processor to look for the document in -other languages. This assumes the reader would rather have -a link to a document in a different language than to have -a broken link. - - - - - - - -olink.properties -attribute set - - -olink.properties -Properties associated with the cross-reference -text of an olink. - - - - -<xsl:attribute-set name="olink.properties"> - <xsl:attribute name="show-destination">replace</xsl:attribute> -</xsl:attribute-set> - - - -Description - -This attribute set is applied to the -fo:basic-link element of an olink. It is not applied to the -optional page number or optional title of the external -document. - - - - - - -prefer.internal.olink -boolean - - -prefer.internal.olink -Prefer a local olink reference to an external reference - - - - -<xsl:param name="prefer.internal.olink" select="0"></xsl:param> - - - -Description - -If you are re-using XML content modules in multiple documents, -you may want to redirect some of your olinks. This parameter -permits you to redirect an olink to the current document. - - -For example: you are writing documentation for a product, -which includes 3 manuals: a little installation -booklet (booklet.xml), a user -guide (user.xml), and a reference manual (reference.xml). -All 3 documents begin with the same introduction section (intro.xml) that -contains a reference to the customization section (custom.xml) which is -included in both user.xml and reference.xml documents. - - -How do you write the link to custom.xml in intro.xml -so that it is interpreted correctly in all 3 documents? - -If you use xref, it will fail in user.xml. - -If you use olink (pointing to reference.xml), -the reference in user.xml -will point to the customization section of the reference manual, while it is -actually available in user.xml. - - - -If you set the prefer.internal.olink -parameter to a non-zero value, then the processor will -first look in the olink database -for the olink's targetptr attribute value -in document matching the current.docid -parameter value. If it isn't found there, then -it tries the document in the database -with the targetdoc -value that matches the olink's targetdoc -attribute. - - -This feature permits an olink reference to resolve to -the current document if there is an element -with an id matching the olink's targetptr -value. The current document's olink data must be -included in the target database for this to work. - - -There is a potential for incorrect links if -the same id attribute value is used for different -content in different documents. -Some of your olinks may be redirected to the current document -when they shouldn't be. It is not possible to control -individual olink instances. - - - - - - - -target.database.document -uri - - -target.database.document -Name of master database file for resolving -olinks - - - - <xsl:param name="target.database.document">olinkdb.xml</xsl:param> - - -Description - - -To resolve olinks between documents, the stylesheets use a master -database document that identifies the target datafiles for all the -documents within the scope of the olinks. This parameter value is the -URI of the master document to be read during processing to resolve -olinks. The default value is olinkdb.xml. - -The data structure of the file is defined in the -targetdatabase.dtd DTD. The database file -provides the high level elements to record the identifiers, locations, -and relationships of documents. The cross reference data for -individual documents is generally pulled into the database using -system entity references or XIncludes. See also -targets.filename. - - - - -targets.filename -string - - -targets.filename -Name of cross reference targets data file - - -<xsl:param name="targets.filename">target.db</xsl:param> - - -Description - - -In order to resolve olinks efficiently, the stylesheets can -generate an external data file containing information about -all potential cross reference endpoints in a document. -This parameter lets you change the name of the generated -file from the default name target.db. -The name must agree with that used in the target database -used to resolve olinks during processing. -See also target.database.document. - - - - - - -use.local.olink.style -boolean - - -use.local.olink.style -Process olinks using xref style of current -document - - -<xsl:param name="use.local.olink.style" select="0"></xsl:param> - -Description - -When cross reference data is collected for use by olinks, the data for each potential target includes one field containing a completely assembled cross reference string, as if it were an xref generated in that document. Other fields record the separate title, number, and element name of each target. When an olink is formed to a target from another document, the olink resolves to that preassembled string by default. If the use.local.olink.style parameter is set to non-zero, then instead the cross -reference string is formed again from the target title, number, and -element name, using the stylesheet processing the targeting document. -Then olinks will match the xref style in the targeting document -rather than in the target document. If both documents are processed -with the same stylesheet, then the results will be the same. - - - -Cross References - - -insert.xref.page.number -list -no -yes -maybe - - -insert.xref.page.number -Turns page numbers in xrefs on and off - - - - -<xsl:param name="insert.xref.page.number">no</xsl:param> - - - -Description - -The value of this parameter determines if -cross references (xrefs) in -printed output will -include page number citations. -It has three possible values. - - - -no -No page number references will be generated. - - - -yes -Page number references will be generated -for all xref elements. -The style of page reference may be changed -if an xrefstyle -attribute is used. - - - -maybe -Page number references will not be generated -for an xref element unless -it has an -xrefstyle -attribute whose value specifies a page reference. - - - - - - - - - -xref.properties -attribute set - - -xref.properties -Properties associated with cross-reference text - - - - -<xsl:attribute-set name="xref.properties"> -</xsl:attribute-set> - - - -Description - -This attribute set is used to set properties -on cross reference text. - - - - - - -xref.label-title.separator -string - - -xref.label-title.separator -Punctuation or space separating label from title in xref - - - -<xsl:param name="xref.label-title.separator">: </xsl:param> - - -Description - - -This parameter allows you to control the punctuation of certain -types of generated cross reference text. -When cross reference text is generated for an -xref or -olink element -using an xrefstyle attribute -that makes use of the select: feature, -and the selected components include both label and title, -then the value of this parameter is inserted between -label and title in the output. - - - - - - - -xref.label-page.separator -string - - -xref.label-page.separator -Punctuation or space separating label from page number in xref - - - -<xsl:param name="xref.label-page.separator"><xsl:text> </xsl:text></xsl:param> - - -Description - - -This parameter allows you to control the punctuation of certain -types of generated cross reference text. -When cross reference text is generated for an -xref or -olink element -using an xrefstyle attribute -that makes use of the select: feature, -and the selected components include both label and page -but no title, -then the value of this parameter is inserted between -label and page number in the output. -If a title is included, then other separators are used. - - - - - - - -xref.title-page.separator -string - - -xref.title-page.separator -Punctuation or space separating title from page number in xref - - - -<xsl:param name="xref.title-page.separator"><xsl:text> </xsl:text></xsl:param> - - -Description - - -This parameter allows you to control the punctuation of certain -types of generated cross reference text. -When cross reference text is generated for an -xref or -olink element -using an xrefstyle attribute -that makes use of the select: feature, -and the selected components include both title and page number, -then the value of this parameter is inserted between -title and page number in the output. - - - - - - - -insert.link.page.number -list -no -yes -maybe - - -insert.link.page.number -Turns page numbers in link elements on and off - - - - -<xsl:param name="insert.link.page.number">no</xsl:param> - - - -Description - -The value of this parameter determines if -cross references using the link element in -printed output will -include standard page number citations. -It has three possible values. - - - -no -No page number references will be generated. - - - -yes -Page number references will be generated -for all link elements. -The style of page reference may be changed -if an xrefstyle -attribute is used. - - - -maybe -Page number references will not be generated -for a link element unless -it has an -xrefstyle -attribute whose value specifies a page reference. - - - - -Although the xrefstyle attribute -can be used to turn the page reference on or off, it cannot be -used to control the formatting of the page number as it -can in xref. -In link it will always format with -the style established by the -gentext template with name="page.citation" -in the l:context name="xref". - - - - -Lists - - -compact.list.item.spacing -attribute set - - -compact.list.item.spacing -What space do you want between list items (when spacing="compact")? - - - -<xsl:attribute-set name="compact.list.item.spacing"> - <xsl:attribute name="space-before.optimum">0em</xsl:attribute> - <xsl:attribute name="space-before.minimum">0em</xsl:attribute> - <xsl:attribute name="space-before.maximum">0.2em</xsl:attribute> -</xsl:attribute-set> - -Description -Specify what spacing you want between each list item when -spacing is -compact. - - - - - -itemizedlist.properties -attribute set - - -itemizedlist.properties -Properties that apply to each list-block generated by itemizedlist. - - - -<xsl:attribute-set name="itemizedlist.properties" use-attribute-sets="list.block.properties"> -</xsl:attribute-set> - -Description -Properties that apply to each fo:list-block generated by itemizedlist. - - - - - -itemizedlist.label.properties -attribute set - - -itemizedlist.label.properties -Properties that apply to each label inside itemized list. - - - -<xsl:attribute-set name="itemizedlist.label.properties"> -</xsl:attribute-set> - -Description -Properties that apply to each label inside itemized list. E.g.: -<xsl:attribute-set name="itemizedlist.label.properties"> - <xsl:attribute name="text-align">right</xsl:attribute> -</xsl:attribute-set> - - - - - -itemizedlist.label.width -length - - - itemizedlist.label.width -The default width of the label (bullet) in an itemized list. - - - - - <xsl:param name="itemizedlist.label.width">1.0em</xsl:param> - - - -Description -Specifies the default width of the label (usually a bullet or other -symbol) in an itemized list. You can override the default value on any -particular list with the “dbfo” processing instruction using the -“label-width” pseudoattribute. - - - - - -list.block.properties -attribute set - - -list.block.properties -Properties that apply to each list-block generated by list. - - - -<xsl:attribute-set name="list.block.properties"> - <xsl:attribute name="provisional-label-separation">0.2em</xsl:attribute> - <xsl:attribute name="provisional-distance-between-starts">1.5em</xsl:attribute> -</xsl:attribute-set> - -Description -Properties that apply to each fo:list-block generated by itemizedlist/orderedlist. - - - - - -list.block.spacing -attribute set - - -list.block.spacing -What spacing do you want before and after lists? - - - -<xsl:attribute-set name="list.block.spacing"> - <xsl:attribute name="space-before.optimum">1em</xsl:attribute> - <xsl:attribute name="space-before.minimum">0.8em</xsl:attribute> - <xsl:attribute name="space-before.maximum">1.2em</xsl:attribute> - <xsl:attribute name="space-after.optimum">1em</xsl:attribute> - <xsl:attribute name="space-after.minimum">0.8em</xsl:attribute> - <xsl:attribute name="space-after.maximum">1.2em</xsl:attribute> -</xsl:attribute-set> - -Description -Specify the spacing required before and after a list. It is necessary to specify the space after a list block because lists can come inside of paras. - - - - - -list.item.spacing -attribute set - - -list.item.spacing -What space do you want between list items? - - - -<xsl:attribute-set name="list.item.spacing"> - <xsl:attribute name="space-before.optimum">1em</xsl:attribute> - <xsl:attribute name="space-before.minimum">0.8em</xsl:attribute> - <xsl:attribute name="space-before.maximum">1.2em</xsl:attribute> -</xsl:attribute-set> - -Description -Specify what spacing you want between each list item. - - - - - -orderedlist.properties -attribute set - - -orderedlist.properties -Properties that apply to each list-block generated by orderedlist. - - - -<xsl:attribute-set name="orderedlist.properties" use-attribute-sets="list.block.properties"> - <xsl:attribute name="provisional-distance-between-starts">2em</xsl:attribute> -</xsl:attribute-set> - -Description -Properties that apply to each fo:list-block generated by orderedlist. - - - - - -orderedlist.label.properties -attribute set - - -orderedlist.label.properties -Properties that apply to each label inside ordered list. - - - -<xsl:attribute-set name="orderedlist.label.properties"> -</xsl:attribute-set> - -Description -Properties that apply to each label inside ordered list. E.g.: -<xsl:attribute-set name="orderedlist.label.properties"> - <xsl:attribute name="text-align">right</xsl:attribute> -</xsl:attribute-set> - - - - - -orderedlist.label.width -length - - -orderedlist.label.width -The default width of the label (number) in an ordered list. - - - - -<xsl:param name="orderedlist.label.width">1.2em</xsl:param> - - - -Description -Specifies the default width of the label (usually a number or -sequence of numbers) in an ordered list. You can override the default -value on any particular list with the “dbfo” processing instruction -using the “label-width” pseudoattribute. - - - - - -variablelist.max.termlength -number - - -variablelist.max.termlength -Specifies the longest term in variablelists - - - - -<xsl:param name="variablelist.max.termlength">24</xsl:param> - - - -Description - -In variablelists, the listitem -is indented to leave room for the -term elements. That indent may be computed -if it is not specified with a termlength -attribute on the variablelist element. - - -The computation counts characters in the -term elements in the list -to find the longest term. However, some terms are very long -and would produce extreme indents. This parameter lets you -set a maximum character count. Any terms longer than the maximum -would line wrap. The default value is 24. - - -The character counts are converted to physical widths -by multiplying by 0.50em. There will be some variability -in how many actual characters fit in the space -since some characters are wider than others. - - - - - - - -variablelist.term.separator -string - - -variablelist.term.separator -Text to separate terms within a multi-term -varlistentry - - - - -<xsl:param name="variablelist.term.separator">, </xsl:param> - - -Description - -When a varlistentry contains multiple term -elements, the string specified in the value of the -variablelist.term.separator parameter is placed -after each term except the last. - - - To generate a line break between multiple terms in - a varlistentry, set a non-zero value for the - variablelist.term.break.after parameter. If - you do so, you may also want to set the value of the - variablelist.term.separator parameter to an - empty string (to suppress rendering of the default comma and space - after each term). - - - - - - - -variablelist.term.properties -attribute set - - -variablelist.term.properties -To add properties to the term elements in a variablelist. - - - - -<xsl:attribute-set name="variablelist.term.properties"> -</xsl:attribute-set> - - -Description -These properties are added to the block containing a -term in a variablelist. -Use this attribute-set to set -font properties or alignment, for example. - - - - - - -variablelist.term.break.after -boolean - - -variablelist.term.break.after -Generate line break after each term within a -multi-term varlistentry? - - - - -<xsl:param name="variablelist.term.break.after">0</xsl:param> - - -Description - -Set a non-zero value for the -variablelist.term.break.after parameter to -generate a line break between terms in a -multi-term varlistentry. - - -If you set a non-zero value for -variablelist.term.break.after, you may also -want to set the value of the -variablelist.term.separator parameter to an -empty string (to suppress rendering of the default comma and space -after each term). - - - - - -QAndASet - - -qandadiv.autolabel -boolean - - -qandadiv.autolabel -Are divisions in QAndASets enumerated? - - - -<xsl:param name="qandadiv.autolabel" select="1"></xsl:param> - - -Description - -If non-zero, unlabeled qandadivs will be enumerated. - - - - - - - -qanda.inherit.numeration -boolean - - -qanda.inherit.numeration -Does enumeration of QandASet components inherit the numeration of parent elements? - - - - -<xsl:param name="qanda.inherit.numeration" select="1"></xsl:param> - - - -Description - -If non-zero, numbered qandadiv elements and -question and answer inherit the enumeration of -the ancestors of the qandaset. - - - - - - - -qanda.defaultlabel -list -number -qanda -none - - -qanda.defaultlabel -Sets the default for defaultlabel on QandASet. - - - - -<xsl:param name="qanda.defaultlabel">number</xsl:param> - - - -Description - -If no defaultlabel attribute is specified on -a qandaset, this value is used. It is generally one of the legal -values for the defaultlabel attribute (none, -number or -qanda), or one of the additional stylesheet-specific values -(qnumber or qnumberanda). -The default value is 'number'. - -The values are rendered as follows: - -qanda - -questions are labeled "Q:" and -answers are labeled "A:". - - - -number - -The questions are enumerated and the answers -are not labeled. - - - -qnumber - -The questions are labeled "Q:" followed by a number, and answers are not -labeled. -When sections are numbered, adding a label -to the number distinguishes the question numbers -from the section numbers. -This value is not allowed in the -defaultlabel attribute -of a qandaset element. - - - -qnumberanda - -The questions are labeled "Q:" followed by a number, and -the answers are labeled "A:". -When sections are numbered, adding a label -to the number distinguishes the question numbers -from the section numbers. -This value is not allowed in the -defaultlabel attribute -of a qandaset element. - - - -none - -No distinguishing label precedes Questions or Answers. - - - - - - - - - - -qanda.in.toc -boolean - - -qanda.in.toc -Should qandaentry questions appear in -the document table of contents? - - - -<xsl:param name="qanda.in.toc" select="0"></xsl:param> - - -Description - -If true (non-zero), then the generated table of contents -for a document will include qandaset titles, -qandadiv titles, -and question elements. The default value (zero) excludes -them from the TOC. - -This parameter does not affect any tables of contents -that may be generated inside a qandaset or qandadiv. - - - - - - - -qanda.nested.in.toc -boolean - - -qanda.nested.in.toc -Should nested answer/qandaentry instances appear in TOC? - - - - -<xsl:param name="qanda.nested.in.toc" select="0"></xsl:param> - - - -Description - -If non-zero, instances of qandaentry -that are children of answer elements are shown in -the TOC. - - - - -Bibliography - - -bibliography.style -list -normal -iso690 - - -bibliography.style -Style used for formatting of biblioentries. - - - - -<xsl:param name="bibliography.style">normal</xsl:param> - - - -Description - -Currently only normal and -iso690 styles are supported. - -In order to use ISO690 style to the full extent you might need -to use additional markup described on the -following WiKi page. - - - - - - -biblioentry.item.separator -string - - -biblioentry.item.separator -Text to separate bibliography entries - - - -<xsl:param name="biblioentry.item.separator">. </xsl:param> - - -Description - -Text to separate bibliography entries - - - - - - - -bibliography.collection -string - - -bibliography.collection -Name of the bibliography collection file - - - - -<xsl:param name="bibliography.collection">http://docbook.sourceforge.net/release/bibliography/bibliography.xml</xsl:param> - - - - -Description - -Maintaining bibliography entries across a set of documents is tedious, time -consuming, and error prone. It makes much more sense, usually, to store all of -the bibliography entries in a single place and simply extract -the ones you need in each document. - -That's the purpose of the -bibliography.collection parameter. To setup a global -bibliography database, follow these steps: - -First, create a stand-alone bibliography document that contains all of -the documents that you wish to reference. Make sure that each bibliography -entry (whether you use biblioentry or bibliomixed) -has an ID. - -My global bibliography, ~/bibliography.xml begins -like this: - - -<!DOCTYPE bibliography - PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN" - "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd"> -<bibliography><title>References</title> - -<bibliomixed id="xml-rec"><abbrev>XML 1.0</abbrev>Tim Bray, -Jean Paoli, C. M. Sperberg-McQueen, and Eve Maler, editors. -<citetitle><ulink url="http://www.w3.org/TR/REC-xml">Extensible Markup -Language (XML) 1.0 Second Edition</ulink></citetitle>. -World Wide Web Consortium, 2000. -</bibliomixed> - -<bibliomixed id="xml-names"><abbrev>Namespaces</abbrev>Tim Bray, -Dave Hollander, -and Andrew Layman, editors. -<citetitle><ulink url="http://www.w3.org/TR/REC-xml-names/">Namespaces in -XML</ulink></citetitle>. -World Wide Web Consortium, 1999. -</bibliomixed> - -<!-- ... --> -</bibliography> - - - -When you create a bibliography in your document, simply -provide empty bibliomixed -entries for each document that you wish to cite. Make sure that these -elements have the same ID as the corresponding real -entry in your global bibliography. - -For example: - - -<bibliography><title>Bibliography</title> - -<bibliomixed id="xml-rec"/> -<bibliomixed id="xml-names"/> -<bibliomixed id="DKnuth86">Donald E. Knuth. <citetitle>Computers and -Typesetting: Volume B, TeX: The Program</citetitle>. Addison-Wesley, -1986. ISBN 0-201-13437-3. -</bibliomixed> -<bibliomixed id="relaxng"/> - -</bibliography> - - -Note that it's perfectly acceptable to mix entries from your -global bibliography with normal entries. You can use -xref or other elements to cross-reference your -bibliography entries in exactly the same way you do now. - -Finally, when you are ready to format your document, simply set the -bibliography.collection parameter (in either a -customization layer or directly through your processor's interface) to -point to your global bibliography. - -The stylesheets will format the bibliography in your document as if -all of the entries referenced appeared there literally. - - - - - - -bibliography.numbered -boolean - - -bibliography.numbered -Should bibliography entries be numbered? - - - - -<xsl:param name="bibliography.numbered" select="0"></xsl:param> - - - -Description - -If non-zero bibliography entries will be numbered - - - - - - - biblioentry.properties - attribute set - - -biblioentry.properties -To set the style for biblioentry. - - - -<xsl:attribute-set name="biblioentry.properties" use-attribute-sets="normal.para.spacing"> - <xsl:attribute name="start-indent">0.5in</xsl:attribute> - <xsl:attribute name="text-indent">-0.5in</xsl:attribute> -</xsl:attribute-set> - - -Description -How do you want biblioentry styled? -Set the font-size, weight, space-above and space-below, indents, etc. to the style required - - - - -Glossary - - -glossterm.auto.link -boolean - - -glossterm.auto.link -Generate links from glossterm to glossentry automatically? - - - - -<xsl:param name="glossterm.auto.link" select="0"></xsl:param> - - - -Description - -If non-zero, links from inline glossterms to the corresponding -glossentry elements in a glossary or glosslist -will be automatically generated. This is useful when your glossterms are consistent -and you don't want to add links manually. - -The automatic link generation feature is not used on glossterm elements -that have a linkend attribute. - - - - - - -firstterm.only.link -boolean - - -firstterm.only.link -Does automatic glossterm linking only apply to firstterms? - - - - -<xsl:param name="firstterm.only.link" select="0"></xsl:param> - - - -Description - -If non-zero, only firstterms will be automatically linked -to the glossary. If glossary linking is not enabled, this parameter -has no effect. - - - - - - -glossary.collection -string - - -glossary.collection -Name of the glossary collection file - - - - -<xsl:param name="glossary.collection"></xsl:param> - - - -Description - -Glossaries maintained independently across a set of documents -are likely to become inconsistent unless considerable effort is -expended to keep them in sync. It makes much more sense, usually, to -store all of the glossary entries in a single place and simply -extract the ones you need in each document. - -That's the purpose of the -glossary.collection parameter. To setup a global -glossary database, follow these steps: - -Setting Up the Glossary Database - -First, create a stand-alone glossary document that contains all of -the entries that you wish to reference. Make sure that each glossary -entry has an ID. - -Here's an example glossary: - - - -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE glossary - PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN" - "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd"> -<glossary> -<glossaryinfo> -<editor><firstname>Eric</firstname><surname>Raymond</surname></editor> -<title>Jargon File 4.2.3 (abridged)</title> -<releaseinfo>Just some test data</releaseinfo> -</glossaryinfo> - -<glossdiv><title>0</title> - -<glossentry> -<glossterm>0</glossterm> -<glossdef> -<para>Numeric zero, as opposed to the letter `O' (the 15th letter of -the English alphabet). In their unmodified forms they look a lot -alike, and various kluges invented to make them visually distinct have -compounded the confusion. If your zero is center-dotted and letter-O -is not, or if letter-O looks almost rectangular but zero looks more -like an American football stood on end (or the reverse), you're -probably looking at a modern character display (though the dotted zero -seems to have originated as an option on IBM 3270 controllers). If -your zero is slashed but letter-O is not, you're probably looking at -an old-style ASCII graphic set descended from the default typewheel on -the venerable ASR-33 Teletype (Scandinavians, for whom /O is a letter, -curse this arrangement). (Interestingly, the slashed zero long -predates computers; Florian Cajori's monumental "A History of -Mathematical Notations" notes that it was used in the twelfth and -thirteenth centuries.) If letter-O has a slash across it and the zero -does not, your display is tuned for a very old convention used at IBM -and a few other early mainframe makers (Scandinavians curse <emphasis>this</emphasis> -arrangement even more, because it means two of their letters collide). -Some Burroughs/Unisys equipment displays a zero with a <emphasis>reversed</emphasis> -slash. Old CDC computers rendered letter O as an unbroken oval and 0 -as an oval broken at upper right and lower left. And yet another -convention common on early line printers left zero unornamented but -added a tail or hook to the letter-O so that it resembled an inverted -Q or cursive capital letter-O (this was endorsed by a draft ANSI -standard for how to draw ASCII characters, but the final standard -changed the distinguisher to a tick-mark in the upper-left corner). -Are we sufficiently confused yet?</para> -</glossdef> -</glossentry> - -<glossentry> -<glossterm>1TBS</glossterm> -<glossdef> -<para role="accidence"> -<phrase role="pronounce"></phrase> -<phrase role="partsofspeach">n</phrase> -</para> -<para>The "One True Brace Style"</para> -<glossseealso>indent style</glossseealso> -</glossdef> -</glossentry> - -<!-- ... --> - -</glossdiv> - -<!-- ... --> - -</glossary> - - - - -Marking Up Glossary Terms - -That takes care of the glossary database, now you have to get the entries -into your document. Unlike bibliography entries, which can be empty, creating -placeholder glossary entries would be very tedious. So instead, -support for glossary.collection relies on implicit linking. - -In your source document, simply use firstterm and -glossterm to identify the terms you wish to have included -in the glossary. The stylesheets assume that you will either set the -baseform attribute correctly, or that the -content of the element exactly matches a term in your glossary. - -If you're using a glossary.collection, don't -make explicit links on the terms in your document. - -So, in your document, you might write things like this: - - -<para>This is dummy text, without any real meaning. -The point is simply to reference glossary terms like <glossterm>0</glossterm> -and the <firstterm baseform="1TBS">One True Brace Style (1TBS)</firstterm>. -The <glossterm>1TBS</glossterm>, as you can probably imagine, is a nearly -religious issue.</para> - - -If you set the firstterm.only.link parameter, -only the terms marked with firstterm will be links. -Otherwise, all the terms will be linked. - - - -Marking Up the Glossary - -The glossary itself has to be identified for the stylesheets. For lack -of a better choice, the role is used. -To identify the glossary as the target for automatic processing, set -the role to auto. The title of this -glossary (and any other information from the glossaryinfo -that's rendered by your stylesheet) will be displayed, but the entries will -come from the database. - - -Unfortunately, the glossary can't be empty, so you must put in -at least one glossentry. The content of this entry -is irrelevant, it will not be rendered: - - -<glossary role="auto"> -<glossentry> -<glossterm>Irrelevant</glossterm> -<glossdef> -<para>If you can see this, the document was processed incorrectly. Use -the <parameter>glossary.collection</parameter> parameter.</para> -</glossdef> -</glossentry> -</glossary> - - -What about glossary divisions? If your glossary database has glossary -divisions and your automatic glossary contains at least -one glossdiv, the automic glossary will have divisions. -If the glossdiv is missing from either location, no divisions -will be rendered. - -Glossary entries (and divisions, if appropriate) in the glossary will -occur in precisely the order they occur in your database. - - - -Formatting the Document - -Finally, when you are ready to format your document, simply set the -glossary.collection parameter (in either a -customization layer or directly through your processor's interface) to -point to your global glossary. - -The stylesheets will format the glossary in your document as if -all of the entries implicilty referenced appeared there literally. - - -Limitations - -Glossary cross-references within the glossary are -not supported. For example, this will not work: - - -<glossentry> -<glossterm>gloss-1</glossterm> -<glossdef><para>A description that references <glossterm>gloss-2</glossterm>.</para> -<glossseealso>gloss-2</glossseealso> -</glossdef> -</glossentry> - - -If you put glossary cross-references in your glossary that way, -you'll get the cryptic error: Warning: -glossary.collection specified, but there are 0 automatic -glossaries. - -Instead, you must do two things: - - - -Markup your glossary using glossseealso: - - -<glossentry> -<glossterm>gloss-1</glossterm> -<glossdef><para>A description that references <glossterm>gloss-2</glossterm>.</para> -<glossseealso>gloss-2</glossseealso> -</glossdef> -</glossentry> - - - - -Make sure there is at least one glossterm reference to -gloss-2 in your document. The -easiest way to do that is probably within a remark in your -automatic glossary: - - -<glossary role="auto"> -<remark>Make sure there's a reference to <glossterm>gloss-2</glossterm>.</remark> -<glossentry> -<glossterm>Irrelevant</glossterm> -<glossdef> -<para>If you can see this, the document was processed incorrectly. Use -the <parameter>glossary.collection</parameter> parameter.</para> -</glossdef> -</glossentry> -</glossary> - - - - - - - - - - -glossary.as.blocks -boolean - - -glossary.as.blocks -Present glossarys using blocks instead of lists? - - - - -<xsl:param name="glossary.as.blocks" select="0"></xsl:param> - - - -Description - -If non-zero, glossarys will be formatted as -blocks. - -If you have long glossterms, proper list -markup in the FO case may produce unattractive lists. By setting this -parameter, you can force the stylesheets to produce block markup -instead of proper lists. - -You can override this setting with a processing instruction as the -child of glossary: dbfo -glossary-presentation="blocks" or dbfo -glossary-presentation="list" - - - - - - -glosslist.as.blocks -boolean - - -glosslist.as.blocks -Use blocks for glosslists? - - - - -<xsl:param name="glosslist.as.blocks" select="0"></xsl:param> - - - -Description - -See glossary.as.blocks. - - - - - - -glossentry.list.item.properties -attribute set - - -glossentry.list.item.properties -To add properties to each glossentry in a list. - - - -<xsl:attribute-set name="glossentry.list.item.properties"> - <xsl:attribute name="space-before.optimum">1em</xsl:attribute> - <xsl:attribute name="space-before.minimum">0.8em</xsl:attribute> - <xsl:attribute name="space-before.maximum">1.2em</xsl:attribute> -</xsl:attribute-set> - - -Description -These properties are added to the fo:list-item containing a -glossentry in a glossary when the glossary.as.blocks parameter -is zero. -Use this attribute-set to set -spacing between entries, for example. - - - - - - -glossterm.block.properties -attribute set - - -glossterm.block.properties -To add properties to the block of a glossentry's glossterm. - - - -<xsl:attribute-set name="glossterm.block.properties"> - <xsl:attribute name="space-before.optimum">1em</xsl:attribute> - <xsl:attribute name="space-before.minimum">0.8em</xsl:attribute> - <xsl:attribute name="space-before.maximum">1.2em</xsl:attribute> - <xsl:attribute name="keep-with-next.within-column">always</xsl:attribute> - <xsl:attribute name="keep-together.within-column">always</xsl:attribute> -</xsl:attribute-set> - - -Description -These properties are added to the block containing a -glossary term in a glossary when the glossary.as.blocks parameter -is non-zero. -Use this attribute-set to set the space above and below, -font properties, -and any indent for the glossary term. - - - - - - -glossdef.block.properties -attribute set - - -glossdef.block.properties -To add properties to the block of a glossary definition. - - - -<xsl:attribute-set name="glossdef.block.properties"> - <xsl:attribute name="margin-{$direction.align.start}">.25in</xsl:attribute> -</xsl:attribute-set> - - -Description -These properties are added to the block containing a -glossary definition in a glossary when -the glossary.as.blocks parameter -is non-zero. -Use this attribute-set to set the space above and below, -any font properties, -and any indent for the glossary definition. - - - - - - -glossterm.list.properties -attribute set - - -glossterm.list.properties -To add properties to the glossterm in a list. - - - - -<xsl:attribute-set name="glossterm.list.properties"> -</xsl:attribute-set> - - -Description -These properties are added to the block containing a -glossary term in a glossary when the glossary.as.blocks parameter -is zero. -Use this attribute-set to set -font properties, for example. - - - - - - -glossdef.list.properties -attribute set - - -glossdef.list.properties -To add properties to the glossary definition in a list. - - - - -<xsl:attribute-set name="glossdef.list.properties"> -</xsl:attribute-set> - - -Description -These properties are added to the block containing a -glossary definition in a glossary when -the glossary.as.blocks parameter -is zero. -Use this attribute-set to set font properties, for example. - - - - - - -glossterm.width -length - - -glossterm.width -Width of glossterm in list presentation mode - - - - -<xsl:param name="glossterm.width">2in</xsl:param> - - - -Description - -This parameter specifies the width reserved for glossary terms when -a list presentation is used. - - - - - - -glossterm.separation -length - - -glossterm.separation -Separation between glossary terms and descriptions in list mode - - - - -<xsl:param name="glossterm.separation">0.25in</xsl:param> - - - -Description - -Specifies the miminum horizontal -separation between glossary terms and descriptions when -they are presented side-by-side using lists -when the glossary.as.blocks -is zero. - - - - - - -glossentry.show.acronym -list -no -yes -primary - - -glossentry.show.acronym -Display glossentry acronyms? - - - - -<xsl:param name="glossentry.show.acronym">no</xsl:param> - - - -Description - -A setting of yes means they should be displayed; -no means they shouldn't. If primary is used, -then they are shown as the primary text for the entry. - - -This setting controls both acronym and -abbrev elements in the glossentry. - - - - - - - -glossary.sort -boolean - - -glossary.sort -Sort glossentry elements? - - - - -<xsl:param name="glossary.sort" select="0"></xsl:param> - - - -Description - -If non-zero, then the glossentry elements within a -glossary, glossdiv, or glosslist are sorted on the glossterm, using -the current lang setting. If zero (the default), then -glossentry elements are not sorted and are presented -in document order. - - - - - -Miscellaneous - - -formal.procedures -boolean - - -formal.procedures -Selects formal or informal procedures - - - - -<xsl:param name="formal.procedures" select="1"></xsl:param> - - - -Description - -Formal procedures are numbered and always have a title. - - - - - - - -formal.title.placement -table - - -formal.title.placement -Specifies where formal object titles should occur - - - - -<xsl:param name="formal.title.placement"> -figure before -example before -equation before -table before -procedure before -task before -</xsl:param> - - - -Description - -Specifies where formal object titles should occur. For each formal object -type (figure, -example, -equation, -table, and procedure) -you can specify either the keyword -before or -after. - - - - - - -runinhead.default.title.end.punct -string - - -runinhead.default.title.end.punct -Default punctuation character on a run-in-head - - - -<xsl:param name="runinhead.default.title.end.punct">.</xsl:param> - - - -Description - -If non-zero, For a formalpara, use the specified -string as the separator between the title and following text. The period is the default value. - - - - - - -runinhead.title.end.punct -string - - -runinhead.title.end.punct -Characters that count as punctuation on a run-in-head - - - - -<xsl:param name="runinhead.title.end.punct">.!?:</xsl:param> - - - -Description - -Specify which characters are to be counted as punctuation. These -characters are checked for a match with the last character of the -title. If no match is found, the -runinhead.default.title.end.punct contents are -inserted. This is to avoid duplicated punctuation in the output. - - - - - - - -show.comments -boolean - - -show.comments -Display remark elements? - - - - -<xsl:param name="show.comments" select="1"></xsl:param> - - - -Description - -If non-zero, comments will be displayed, otherwise they -are suppressed. Comments here refers to the remark element -(which was called comment prior to DocBook -4.0), not XML comments (<-- like this -->) which are -unavailable. - - - - - - - -punct.honorific -string - - -punct.honorific -Punctuation after an honorific in a personal name. - - - - -<xsl:param name="punct.honorific">.</xsl:param> - - - -Description - -This parameter specifies the punctuation that should be added after an -honorific in a personal name. - - - - - - -segmentedlist.as.table -boolean - - -segmentedlist.as.table -Format segmented lists as tables? - - - - -<xsl:param name="segmentedlist.as.table" select="0"></xsl:param> - - - -Description - -If non-zero, segmentedlists will be formatted as -tables. - - - - - - -variablelist.as.blocks -boolean - - -variablelist.as.blocks -Format variablelists lists as blocks? - - - - -<xsl:param name="variablelist.as.blocks" select="0"></xsl:param> - - - -Description - -If non-zero, variablelists will be formatted as -blocks. - -If you have long terms, proper list markup in the FO case may produce -unattractive lists. By setting this parameter, you can force the stylesheets -to produce block markup instead of proper lists. - -You can override this setting with a processing instruction as the -child of variablelist: dbfo -list-presentation="blocks" or dbfo -list-presentation="list". - -When using list-presentation="list", -you can also control the amount of space used for the terms with -the dbfo term-width=".25in" processing instruction, -the termlength attribute on variablelist, -or allow the stylesheets to attempt to calculate the amount of space to leave based on the -number of letters in the longest term. - - - <variablelist> - <?dbfo list-presentation="list"?> - <?dbfo term-width="1.5in"?> - <?dbhtml list-presentation="table"?> - <?dbhtml term-width="1.5in"?> - <varlistentry> - <term>list</term> - <listitem> - <para> - Formatted as a list even if variablelist.as.blocks is set to 1. - </para> - </listitem> - </varlistentry> - </variablelist> - - - - - - - - - blockquote.properties - attribute set - - -blockquote.properties -To set the style for block quotations. - - - - -<xsl:attribute-set name="blockquote.properties"> -<xsl:attribute name="margin-{$direction.align.start}">0.5in</xsl:attribute> -<xsl:attribute name="margin-{$direction.align.end}">0.5in</xsl:attribute> -<xsl:attribute name="space-after.minimum">0.5em</xsl:attribute> -<xsl:attribute name="space-after.optimum">1em</xsl:attribute> -<xsl:attribute name="space-after.maximum">2em</xsl:attribute> -</xsl:attribute-set> - - - -Description - -The blockquote.properties attribute set specifies -the formating properties of block quotations. - - - - - - -ulink.show -boolean - - -ulink.show -Display URLs after ulinks? - - - - -<xsl:param name="ulink.show" select="1"></xsl:param> - - - -Description - -If non-zero, the URL of each ulink will -appear after the text of the link. If the text of the link and the URL -are identical, the URL is suppressed. - -See also ulink.footnotes. - -DocBook 5 does not have an ulink element. When processing -DocBoook 5 documents, ulink.show applies to all inline -elements that are marked up with xlink:href attributes -that point to external resources. - - - - - - - -ulink.footnotes -boolean - - -ulink.footnotes -Generate footnotes for ulinks? - - - - -<xsl:param name="ulink.footnotes" select="0"></xsl:param> - - - -Description - -If non-zero, and if ulink.show also is non-zero, -the URL of each ulink will appear as a footnote. - -DocBook 5 does not have an ulink element. When processing -DocBoook 5 documents, ulink.footnotes applies to all inline -elements that are marked up with xlink:href attributes -that point to external resources. - - - - - - - -ulink.hyphenate -string - - -ulink.hyphenate -Allow URLs to be automatically hyphenated - - - - -<xsl:param name="ulink.hyphenate"></xsl:param> - - - -Description - -If not empty, the specified character (or more generally, content) is -added to URLs after every character included in the string -in the ulink.hyphenate.chars parameter (default -is /). If the character in this parameter is a -Unicode soft hyphen (0x00AD) or Unicode zero-width space (0x200B), some FO -processors will be able to reasonably hyphenate long URLs. - -As of 28 Jan 2002, discretionary hyphens are more widely and correctly -supported than zero-width spaces for this purpose. - - - - - - -ulink.hyphenate.chars -string - - -ulink.hyphenate.chars -List of characters to allow ulink URLs to be automatically hyphenated on - - - - -<xsl:param name="ulink.hyphenate.chars">/</xsl:param> - - - -Description - -If the ulink.hyphenate is not empty, then -hyphenation of ulinks is turned on, and any -character contained in this parameter is treated as an allowable -hyphenation point. - -The default value is /, but the parameter -could be customized -to contain other URL characters, as for example: - -<xsl:param name="ulink.hyphenate.chars">:/@&?.#</xsl:param> - - - - - - - -shade.verbatim -boolean - - -shade.verbatim -Should verbatim environments be shaded? - - - -<xsl:param name="shade.verbatim" select="0"></xsl:param> - - -Description - -In the FO stylesheet, if this parameter is non-zero then the -shade.verbatim.style properties will be applied -to verbatim environments. - -In the HTML stylesheet, this parameter is now deprecated. Use -CSS instead. - - - - - - -shade.verbatim.style -attribute set - - -shade.verbatim.style -Properties that specify the style of shaded verbatim listings - - - - - -<xsl:attribute-set name="shade.verbatim.style"> - <xsl:attribute name="background-color">#E0E0E0</xsl:attribute> -</xsl:attribute-set> - - - -Description - -Properties that specify the style of shaded verbatim listings. The -parameters specified (the border and background color) are added to -the styling of the xsl-fo output. A border might be specified as "thin -black solid" for example. See xsl-fo - - - - - - -hyphenate.verbatim -boolean - - -hyphenate.verbatim -Should verbatim environments be hyphenated on space characters? - - - -<xsl:param name="hyphenate.verbatim" select="0"></xsl:param> - - -Description - -If the lines of program listing are too long to fit into one -line it is quite common to split them at space and indicite by hook -arrow that code continues on the next line. You can turn on this -behaviour for programlisting, -screen and synopsis elements by -using this parameter. - -Note that you must also enable line wrapping for verbatim environments and -select appropriate hyphenation character (e.g. hook arrow). This can -be done using monospace.verbatim.properties -attribute set: - -<xsl:attribute-set name="monospace.verbatim.properties" - use-attribute-sets="verbatim.properties monospace.properties"> - <xsl:attribute name="wrap-option">wrap</xsl:attribute> - <xsl:attribute name="hyphenation-character">&#x25BA;</xsl:attribute> -</xsl:attribute-set> - -For a list of arrows available in Unicode see http://www.unicode.org/charts/PDF/U2190.pdf and http://www.unicode.org/charts/PDF/U2900.pdf and make sure that -selected character is available in the font you are using for verbatim -environments. - - - - - - -hyphenate.verbatim.characters -string - - -hyphenate.verbatim.characters -List of characters after which a line break can occur in listings - - - - -<xsl:param name="hyphenate.verbatim.characters"></xsl:param> - - - -Description - -If you enable hyphenate.verbatim line -breaks are allowed only on space characters. If this is not enough for -your document, you can specify list of additional characters after -which line break is allowed in this parameter. - - - - - - -use.svg -boolean - - -use.svg -Allow SVG in the result tree? - - - - -<xsl:param name="use.svg" select="1"></xsl:param> - - - -Description - -If non-zero, SVG will be considered an acceptable image format. SVG -is passed through to the result tree, so correct rendering of the resulting -diagram depends on the formatter (FO processor or web browser) that is used -to process the output from the stylesheet. - - - - - - -use.role.as.xrefstyle -boolean - - -use.role.as.xrefstyle -Use role attribute for -xrefstyle on xref? - - - - -<xsl:param name="use.role.as.xrefstyle" select="1"></xsl:param> - - - -Description - -In DocBook documents that conform to a schema older than V4.3, this parameter allows -role to serve the purpose of specifying the cross reference style. - -If non-zero, the role attribute on -xref will be used to select the cross reference style. -In DocBook V4.3, the xrefstyle attribute was added for this purpose. -If the xrefstyle attribute is present, -role will be ignored, regardless of the setting -of this parameter. - - - -Example - -The following small stylesheet shows how to configure the -stylesheets to make use of the cross reference style: - -<?xml version="1.0"?> -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" - version="1.0"> - -<xsl:import href="../xsl/html/docbook.xsl"/> - -<xsl:output method="html"/> - -<xsl:param name="local.l10n.xml" select="document('')"/> -<l:i18n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0"> - <l:l10n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0" language="en"> - <l:context name="xref"> - <l:template name="chapter" style="title" text="Chapter %n, %t"/> - <l:template name="chapter" text="Chapter %n"/> - </l:context> - </l:l10n> -</l:i18n> - -</xsl:stylesheet> - -With this stylesheet, the cross references in the following document: - -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN" - "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd"> -<book id="book"><title>Book</title> - -<preface> -<title>Preface</title> - -<para>Normal: <xref linkend="ch1"/>.</para> -<para>Title: <xref xrefstyle="title" linkend="ch1"/>.</para> - -</preface> - -<chapter id="ch1"> -<title>First Chapter</title> - -<para>Irrelevant.</para> - -</chapter> -</book> - -will appear as: - - -Normal: Chapter 1. -Title: Chapter 1, First Chapter. - - - - - - - -menuchoice.separator -string - - -menuchoice.separator -Separator between items of a menuchoice -other than guimenuitem and -guisubmenu - - - - -<xsl:param name="menuchoice.separator">+</xsl:param> - - - -Description - -Separator used to connect items of a menuchoice other -than guimenuitem and guisubmenu. The latter -elements are linked with menuchoice.menu.separator. - - - - - - - -menuchoice.menu.separator -string - - -menuchoice.menu.separator -Separator between items of a menuchoice -with guimenuitem or -guisubmenu - - - - -<xsl:param name="menuchoice.menu.separator"> → </xsl:param> - - - -Description - -Separator used to connect items of a menuchoice with -guimenuitem or guisubmenu. Other elements -are linked with menuchoice.separator. - -The default value is &#x2192;, which is the -&rarr; (right arrow) character entity. -The current FOP (0.20.5) requires setting the font-family -explicitly. - -The default value also includes spaces around the arrow, -which will allow a line to break. Replace the spaces with -&#xA0; (nonbreaking space) if you don't want those -spaces to break. - - - - - - - -default.float.class -string - - -default.float.class -Specifies the default float class - - - - -<xsl:param name="default.float.class"> - <xsl:choose> - <xsl:when test="contains($stylesheet.result.type,'html')">left</xsl:when> - <xsl:otherwise>before</xsl:otherwise> - </xsl:choose> -</xsl:param> - - - -Description - -Selects the direction in which a float should be placed. for -xsl-fo this is before, for html it is left. For Western texts, the -before direction is the top of the page. - - - - - - -footnote.number.format -list -11,2,3... -AA,B,C... -aa,b,c... -ii,ii,iii... -II,II,III... - - -footnote.number.format -Identifies the format used for footnote numbers - - - - -<xsl:param name="footnote.number.format">1</xsl:param> - - - -Description - -The footnote.number.format specifies the format -to use for footnote numeration (1, i, I, a, or A). - - - - - - -table.footnote.number.format -list -11,2,3... -AA,B,C... -aa,b,c... -ii,ii,iii... -II,II,III... - - -table.footnote.number.format -Identifies the format used for footnote numbers in tables - - - - -<xsl:param name="table.footnote.number.format">a</xsl:param> - - - -Description - -The table.footnote.number.format specifies the format -to use for footnote numeration (1, i, I, a, or A) in tables. - - - - - - -footnote.number.symbols - - - -footnote.number.symbols -Special characters to use as footnote markers - - - - -<xsl:param name="footnote.number.symbols"></xsl:param> - - - -Description - -If footnote.number.symbols is not the empty string, -footnotes will use the characters it contains as footnote symbols. For example, -*&#x2020;&#x2021;&#x25CA;&#x2720; will identify -footnotes with *, , , -, and . If there are more footnotes -than symbols, the stylesheets will fall back to numbered footnotes using -footnote.number.format. - -The use of symbols for footnotes depends on the ability of your -processor (or browser) to render the symbols you select. Not all systems are -capable of displaying the full range of Unicode characters. If the quoted characters -in the preceding paragraph are not displayed properly, that's a good indicator -that you may have trouble using those symbols for footnotes. - - - - - - -table.footnote.number.symbols -string - - -table.footnote.number.symbols -Special characters to use a footnote markers in tables - - - - -<xsl:param name="table.footnote.number.symbols"></xsl:param> - - - -Description - -If table.footnote.number.symbols is not the empty string, -table footnotes will use the characters it contains as footnote symbols. For example, -*&#x2020;&#x2021;&#x25CA;&#x2720; will identify -footnotes with *, , , -, and . If there are more footnotes -than symbols, the stylesheets will fall back to numbered footnotes using -table.footnote.number.format. - -The use of symbols for footnotes depends on the ability of your -processor (or browser) to render the symbols you select. Not all systems are -capable of displaying the full range of Unicode characters. If the quoted characters -in the preceding paragraph are not displayed properly, that's a good indicator -that you may have trouble using those symbols for footnotes. - - - - - - -footnote.properties -attribute set - - -footnote.properties -Properties applied to each footnote body - - - - - -<xsl:attribute-set name="footnote.properties"> - <xsl:attribute name="font-family"><xsl:value-of select="$body.fontset"></xsl:value-of></xsl:attribute> - <xsl:attribute name="font-size"><xsl:value-of select="$footnote.font.size"></xsl:value-of></xsl:attribute> - <xsl:attribute name="font-weight">normal</xsl:attribute> - <xsl:attribute name="font-style">normal</xsl:attribute> - <xsl:attribute name="text-align"><xsl:value-of select="$alignment"></xsl:value-of></xsl:attribute> - <xsl:attribute name="start-indent">0pt</xsl:attribute> - <xsl:attribute name="text-indent">0pt</xsl:attribute> - <xsl:attribute name="hyphenate"><xsl:value-of select="$hyphenate"></xsl:value-of></xsl:attribute> - <xsl:attribute name="wrap-option">wrap</xsl:attribute> - <xsl:attribute name="linefeed-treatment">treat-as-space</xsl:attribute> -</xsl:attribute-set> - - - -Description - -This attribute set is applied to the footnote-block -for each footnote. -It can be used to set the -font-size, font-family, and other inheritable properties that will be -applied to all footnotes. - - - - - - -table.footnote.properties -attribute set - - -table.footnote.properties -Properties applied to each table footnote body - - - - - -<xsl:attribute-set name="table.footnote.properties"> - <xsl:attribute name="font-family"><xsl:value-of select="$body.fontset"></xsl:value-of></xsl:attribute> - <xsl:attribute name="font-size"><xsl:value-of select="$footnote.font.size"></xsl:value-of></xsl:attribute> - <xsl:attribute name="font-weight">normal</xsl:attribute> - <xsl:attribute name="font-style">normal</xsl:attribute> - <xsl:attribute name="space-before">2pt</xsl:attribute> - <xsl:attribute name="text-align"><xsl:value-of select="$alignment"></xsl:value-of></xsl:attribute> -</xsl:attribute-set> - - - -Description - -This attribute set is applied to the footnote-block -for each table footnote. -It can be used to set the -font-size, font-family, and other inheritable properties that will be -applied to all table footnotes. - - - - - - -footnote.mark.properties -attribute set - - -footnote.mark.properties -Properties applied to each footnote mark - - - - - -<xsl:attribute-set name="footnote.mark.properties"> - <xsl:attribute name="font-family"><xsl:value-of select="$body.fontset"></xsl:value-of></xsl:attribute> - <xsl:attribute name="font-size">75%</xsl:attribute> - <xsl:attribute name="font-weight">normal</xsl:attribute> - <xsl:attribute name="font-style">normal</xsl:attribute> -</xsl:attribute-set> - - - -Description - -This attribute set is applied to the footnote mark used -for each footnote. -It should contain only inline properties. - - -The property to make the mark a superscript is contained in the -footnote template itself, because the current version of FOP reports -an error if baseline-shift is used. - - - - - - - -footnote.sep.leader.properties -attribute set - - -footnote.sep.leader.properties -Properties associated with footnote separators - - - - -<xsl:attribute-set name="footnote.sep.leader.properties"> - <xsl:attribute name="color">black</xsl:attribute> - <xsl:attribute name="leader-pattern">rule</xsl:attribute> - <xsl:attribute name="leader-length">1in</xsl:attribute> -</xsl:attribute-set> - - - -Description - -The styling for the rule line that separates the -footnotes from the body text. -These are properties applied to the fo:leader used as -the separator. - -If you want to do more than just set properties on -the leader element, then you can customize the template -named footnote.separator in -fo/pagesetup.xsl. - - - - - - -xref.with.number.and.title -boolean - - -xref.with.number.and.title -Use number and title in cross references - - - - -<xsl:param name="xref.with.number.and.title" select="1"></xsl:param> - - - -Description - -A cross reference may include the number (for example, the number of -an example or figure) and the title which is a required child of some -targets. This parameter inserts both the relevant number as well as -the title into the link. - - - - - - -superscript.properties -attribute set - - -superscript.properties -Properties associated with superscripts - - - - -<xsl:attribute-set name="superscript.properties"> - <xsl:attribute name="font-size">75%</xsl:attribute> -</xsl:attribute-set> - - - -Description - -Specifies styling properties for superscripts. - - - - - - -subscript.properties -attribute set - - -subscript.properties -Properties associated with subscripts - - - - -<xsl:attribute-set name="subscript.properties"> - <xsl:attribute name="font-size">75%</xsl:attribute> -</xsl:attribute-set> - - - -Description - -Specifies styling properties for subscripts. - - - - - - -pgwide.properties -attribute set - - -pgwide.properties -Properties to make a figure or table page wide. - - - - - -<xsl:attribute-set name="pgwide.properties"> - <xsl:attribute name="start-indent">0pt</xsl:attribute> -</xsl:attribute-set> - - - -Description - -This attribute set is used to set the properties -that make a figure or table "page wide" in fo output. -It comes into effect when an attribute pgwide="1" -is used. - - - -By default, it sets start-indent -to 0pt. -In a stylesheet that sets the parameter -body.start.indent -to a non-zero value in order to indent body text, -this attribute set can be used to outdent pgwide -figures to the start margin. - - -If a document uses a multi-column page layout, -then this attribute set could try setting span -to a value of all. However, this may -not work with some processors because a span property must be on an -fo:block that is a direct child of fo:flow. It may work in -some processors anyway. - - - - - - - -highlight.source -boolean - - -highlight.source -Should the content of programlisting -be syntactically highlighted? - - - - -<xsl:param name="highlight.source" select="0"></xsl:param> - - - -Description - -When this parameter is non-zero, the stylesheets will try to do syntax highlighting of the -content of programlisting elements. You specify the language for each programlisting -by using the language attribute. The highlight.default.language -parameter can be used to specify the language for programlistings without a language -attribute. Syntax highlighting also works for screen and synopsis elements. - -The actual highlighting work is done by the XSLTHL extension module. This is an external Java library that has to be -downloaded separately (see below). - - -In order to use this extension, you must - -add xslthl-2.x.x.jar to your Java classpath. The latest version is available -from the XSLT syntax highlighting project -at SourceForge. - - -use a customization layer in which you import one of the following stylesheet modules: - - - html/highlight.xsl - - - - xhtml/highlight.xsl - - - - xhtml-1_1/highlight.xsl - - - - fo/highlight.xsl - - - - - -let either the xslthl.config Java system property or the -highlight.xslthl.config parameter point to the configuration file for syntax -highlighting (using URL syntax). DocBook XSL comes with a ready-to-use configuration file, -highlighting/xslthl-config.xml. - - - -The extension works with Saxon 6.5.x and Xalan-J. (Saxon 8.5 or later is also supported, but since it is -an XSLT 2.0 processor it is not guaranteed to work with DocBook XSL in all circumstances.) - -The following is an example of a Saxon 6 command adapted for syntax highlighting, to be used on Windows: - - -java -cp c:/Java/saxon.jar;c:/Java/xslthl-2.0.1.jar --Dxslthl.config=file:///c:/docbook-xsl/highlighting/xslthl-config.xml com.icl.saxon.StyleSheet --o test.html test.xml myhtml.xsl - - - - - - - -highlight.xslthl.config -uri - - -highlight.xslthl.config -Location of XSLTHL configuration file - - - - -<xsl:param name="highlight.xslthl.config"></xsl:param> - - - -Description - -This location has precedence over the corresponding Java property. - - - - - - -highlight.default.language -string - - -highlight.default.language -Default language of programlisting - - - - -<xsl:param name="highlight.default.language"></xsl:param> - - - -Description - -This language is used when there is no language attribute on programlisting. - - - - - - -email.delimiters.enabled -boolean - - -email.delimiters.enabled -Generate delimiters around email addresses? - - - - -<xsl:param name="email.delimiters.enabled" select="1"></xsl:param> - - - -Description - -If non-zero, delimiters - -For delimiters, the -stylesheets are currently hard-coded to output angle -brackets. - -are generated around e-mail addresses -(the output of the email element). - - - - - - -email.mailto.enabled -boolean - - -email.mailto.enabled -Generate mailto: links for email addresses? - - - - -<xsl:param name="email.mailto.enabled" select="0"></xsl:param> - - - -Description - -If non-zero the generated output for the email element -will be a clickable mailto: link that brings up the default mail client -on the system. - - - - - - -section.container.element -list -block -wrapper - - -section.container.element -Select XSL-FO element name to contain sections - - - - -<xsl:param name="section.container.element">block</xsl:param> - - - -Description - -Selects the element name for outer container of -each section. The choices are block (default) -or wrapper. -The fo: namespace prefix is added -by the stylesheet to form the full element name. - - -This element receives the section id -attribute and the appropriate section level attribute-set. - - -Changing this parameter to wrapper -is only necessary when producing multi-column output -that contains page-wide spans. Using fo:wrapper -avoids the nesting of fo:block -elements that prevents spans from working (the standard says -a span must be on a block that is a direct child of -fo:flow). - - -If set to wrapper, the -section attribute-sets only support properties -that are inheritable. That's because there is no -block to apply them to. Properties such as -font-family are inheritable, but properties such as -border are not. - - -Only some XSL-FO processors need to use this parameter. -The Antenna House processor, for example, will handle -spans in nested blocks without changing the element name. -The RenderX XEP product and FOP follow the XSL-FO standard -and need to use wrapper. - - - - - - - -monospace.verbatim.font.width -length - - -monospace.verbatim.font.width -Width of a single monospace font character - - - - -<xsl:param name="monospace.verbatim.font.width">0.60em</xsl:param> - - - -Description - -Specifies with em units the width of a single character -of the monospace font. The default value is 0.6em. - -This parameter is only used when a screen -or programlisting element has a -width attribute, which is -expressed as a plain integer to indicate the maximum character count -of each line. -To convert this character count to an actual maximum width -measurement, the width of the font characters must be provided. -Different monospace fonts have different character width, -so this parameter should be adjusted to fit the -monospace font being used. - - - - - - - -exsl.node.set.available -boolean - - -exsl.node.set.available -Is the test function-available('exsl:node-set') true? - - - -<xsl:param name="exsl.node.set.available"> - <xsl:choose> - <xsl:when exsl:foo="" test="function-available('exsl:node-set') or contains(system-property('xsl:vendor'), 'Apache Software Foundation')">1</xsl:when> - <xsl:otherwise>0</xsl:otherwise> - </xsl:choose> -</xsl:param> - - - -Description - -If non-zero, -then the exsl:node-set() function is available to be used in -the stylesheet. -If zero, then the function is not available. -This param automatically detects the presence of -the function and does not normally need to be set manually. - -This param was created to handle a long-standing -bug in the Xalan processor that fails to detect the -function even though it is available. - - - - - - -bookmarks.collapse -boolean - - -bookmarks.collapse -Specifies the initial state of bookmarks - - - - -<xsl:param name="bookmarks.collapse" select="1"></xsl:param> - - - -Description - -If non-zero, the bookmark tree is collapsed so that only the -top-level bookmarks are displayed initially. Otherwise, the whole tree -of bookmarks is displayed. - -This parameter currently works with FOP 0.93 or later. - - - - -Graphics - - -graphic.default.extension -string - - -graphic.default.extension -Default extension for graphic filenames - - - -<xsl:param name="graphic.default.extension"></xsl:param> - - -Description - -If a graphic or mediaobject -includes a reference to a filename that does not include an extension, -and the format attribute is -unspecified, the default extension will be used. - - - - - - - -default.image.width -length - - -default.image.width -The default width of images - - - - -<xsl:param name="default.image.width"></xsl:param> - - - -Description - -If specified, this value will be used for the -width attribute on -images that do not specify any -viewport -dimensions. - - - - - - -preferred.mediaobject.role -string - - -preferred.mediaobject.role -Select which mediaobject to use based on -this value of an object's role attribute. - - - - - -<xsl:param name="preferred.mediaobject.role"></xsl:param> - - - -Description - -A mediaobject may contain several objects such as imageobjects. -If the parameter use.role.for.mediaobject is -non-zero, then the role attribute on -imageobjects and other objects within a -mediaobject container will be used to select which object -will be used. If one of the objects has a role value that matches the -preferred.mediaobject.role parameter, then it -has first priority for selection. If more than one has such a role -value, the first one is used. - - -See the use.role.for.mediaobject parameter -for the sequence of selection. - - - - - -use.role.for.mediaobject -boolean - - -use.role.for.mediaobject -Use role attribute -value for selecting which of several objects within a mediaobject to use. - - - - - -<xsl:param name="use.role.for.mediaobject" select="1"></xsl:param> - - - -Description - -If non-zero, the role attribute on -imageobjects or other objects within a mediaobject container will be used to select which object will be -used. - - -The order of selection when then parameter is non-zero is: - - - - If the stylesheet parameter preferred.mediaobject.role has a value, then the object whose role equals that value is selected. - - -Else if an object's role attribute has a value of -html for HTML processing or -fo for FO output, then the first -of such objects is selected. - - - -Else the first suitable object is selected. - - - -If the value of -use.role.for.mediaobject -is zero, then role attributes are not considered -and the first suitable object -with or without a role value is used. - - - - - - -ignore.image.scaling -boolean - - -ignore.image.scaling -Tell the stylesheets to ignore the author's image scaling attributes - - - - -<xsl:param name="ignore.image.scaling" select="0"></xsl:param> - - - -Description - -If non-zero, the scaling attributes on graphics and media objects are -ignored. - - - - - - -img.src.path -string - - -img.src.path -Path to HTML/FO image files - - - -<xsl:param name="img.src.path"></xsl:param> - - -Description - -Add a path prefix to the value of the fileref -attribute of graphic, inlinegraphic, and imagedata elements. The resulting -compound path is used in the output as the value of the src -attribute of img (HTML) or external-graphic (FO). - - - -The path given by img.src.path could be relative to the directory where the HTML/FO -files are created, or it could be an absolute URI. -The default value is empty. -Be sure to include a trailing slash if needed. - - -This prefix is not applied to any filerefs that start -with "/" or contain "//:". - - - - - - - -keep.relative.image.uris -boolean - - -keep.relative.image.uris -Should image URIs be resolved against xml:base? - - - - - -<xsl:param name="keep.relative.image.uris" select="0"></xsl:param> - - - -Description - -If non-zero, relative URIs (in, for example -fileref attributes) will be used in the generated -output. Otherwise, the URIs will be made absolute with respect to the -base URI. - -Note that the stylesheets calculate (and use) the absolute form -for some purposes, this only applies to the resulting output. - - - - -Pagination and General Styles - -
Understanding XSL FO Margins - -To make sense of the parameters in this section, it's useful to -consider . - -
- Page Model - - - - - - - - Figure showing page margins - - This figure shows the physical page with the various FO page regions - identified. - - -
- -First, let's consider the regions on the page. - -The white region is the physical page. Its dimensions are determined by -the page.height and page.width -parameters. - -The yellow region is the region-body. The size and placement of -the region body is constrained by the dimensions labelled in the -figure. - -The pink region at the top of the page is the region-before. The -darker area inside the region-before is the header text. In XSL, the default -display alignment for a region is before, but the -DocBook stylesheets still explicitly make it before. That's -why the darker area is at the top. - -The pink region at the bottom of the page is the region-after. -The darker area is the footer text. In XSL, the default display -alignment for a region is before, -but the DocBook stylesheets explicitly make it -after. That's why the darker area is at the bottom. - -The dimensions in the figure are: - - -The page-master margin-top. - -The region-before extent. - -The region-body margin-top. - -The region-after extent. - -The page-master margin-bottom. - -The region-body margin-bottom. - -The sum of the page-master margin-left and the -region-body margin-left. In DocBook, the region-body margin-left is -zero by default, so this is simply the page-master margin-left. - -The sum of the page-master margin-right and the -region-body margin-right. In DocBook, the region-body margin-right is -zero by default, so this is simply the page-master margin-right. - - - -
-
- - - -page.height -length - - -page.height -The height of the physical page - - - -<xsl:param name="page.height"> - <xsl:choose> - <xsl:when test="$page.orientation = 'portrait'"> - <xsl:value-of select="$page.height.portrait"></xsl:value-of> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="$page.width.portrait"></xsl:value-of> - </xsl:otherwise> - </xsl:choose> -</xsl:param> - - -Description - -The page height is generally calculated from the -paper.type and -page.orientation parameters. - - - - - - - -page.height.portrait -length - - -page.height.portrait -Specify the physical size of the long edge of the page - - - -<xsl:param name="page.height.portrait"> - <xsl:choose> - <xsl:when test="$paper.type = 'A4landscape'">210mm</xsl:when> - <xsl:when test="$paper.type = 'USletter'">11in</xsl:when> - <xsl:when test="$paper.type = 'USlandscape'">8.5in</xsl:when> - <xsl:when test="$paper.type = '4A0'">2378mm</xsl:when> - <xsl:when test="$paper.type = '2A0'">1682mm</xsl:when> - <xsl:when test="$paper.type = 'A0'">1189mm</xsl:when> - <xsl:when test="$paper.type = 'A1'">841mm</xsl:when> - <xsl:when test="$paper.type = 'A2'">594mm</xsl:when> - <xsl:when test="$paper.type = 'A3'">420mm</xsl:when> - <xsl:when test="$paper.type = 'A4'">297mm</xsl:when> - <xsl:when test="$paper.type = 'A5'">210mm</xsl:when> - <xsl:when test="$paper.type = 'A6'">148mm</xsl:when> - <xsl:when test="$paper.type = 'A7'">105mm</xsl:when> - <xsl:when test="$paper.type = 'A8'">74mm</xsl:when> - <xsl:when test="$paper.type = 'A9'">52mm</xsl:when> - <xsl:when test="$paper.type = 'A10'">37mm</xsl:when> - <xsl:when test="$paper.type = 'B0'">1414mm</xsl:when> - <xsl:when test="$paper.type = 'B1'">1000mm</xsl:when> - <xsl:when test="$paper.type = 'B2'">707mm</xsl:when> - <xsl:when test="$paper.type = 'B3'">500mm</xsl:when> - <xsl:when test="$paper.type = 'B4'">353mm</xsl:when> - <xsl:when test="$paper.type = 'B5'">250mm</xsl:when> - <xsl:when test="$paper.type = 'B6'">176mm</xsl:when> - <xsl:when test="$paper.type = 'B7'">125mm</xsl:when> - <xsl:when test="$paper.type = 'B8'">88mm</xsl:when> - <xsl:when test="$paper.type = 'B9'">62mm</xsl:when> - <xsl:when test="$paper.type = 'B10'">44mm</xsl:when> - <xsl:when test="$paper.type = 'C0'">1297mm</xsl:when> - <xsl:when test="$paper.type = 'C1'">917mm</xsl:when> - <xsl:when test="$paper.type = 'C2'">648mm</xsl:when> - <xsl:when test="$paper.type = 'C3'">458mm</xsl:when> - <xsl:when test="$paper.type = 'C4'">324mm</xsl:when> - <xsl:when test="$paper.type = 'C5'">229mm</xsl:when> - <xsl:when test="$paper.type = 'C6'">162mm</xsl:when> - <xsl:when test="$paper.type = 'C7'">114mm</xsl:when> - <xsl:when test="$paper.type = 'C8'">81mm</xsl:when> - <xsl:when test="$paper.type = 'C9'">57mm</xsl:when> - <xsl:when test="$paper.type = 'C10'">40mm</xsl:when> - <xsl:otherwise>11in</xsl:otherwise> - </xsl:choose> -</xsl:param> - - -Description - -The portrait page height is the length of the long -edge of the physical page. - - - - - - - -page.margin.bottom -length - - -page.margin.bottom -The bottom margin of the page - - - - -<xsl:param name="page.margin.bottom">0.5in</xsl:param> - - - -Description - -The bottom page margin is the distance from the bottom of the region-after -to the physical bottom of the page. - - - - - - - -page.margin.inner -length - - -page.margin.inner -The inner page margin - - - -<xsl:param name="page.margin.inner"> - <xsl:choose> - <xsl:when test="$double.sided != 0">1.25in</xsl:when> - <xsl:otherwise>1in</xsl:otherwise> - </xsl:choose> -</xsl:param> - - -Description - -The inner page margin is the distance from bound edge of the -page to the first column of text. - -The inner page margin is the distance from bound edge of the -page to the outer edge of the first column of text. - -In left-to-right text direction, -this is the left margin of recto (front side) pages. -For single-sided output, it is the left margin -of all pages. - -In right-to-left text direction, -this is the right margin of recto pages. -For single-sided output, this is the -right margin of all pages. - - -Current versions (at least as of version 4.13) -of the XEP XSL-FO processor do not -correctly handle these margin settings for documents -with right-to-left text direction. -The workaround in that situation is to reverse -the values for page.margin.inner -and page.margin.outer, until -this bug is fixed by RenderX. It does not affect documents -with left-to-right text direction. - - - - - - - -page.margin.outer -length - - -page.margin.outer -The outer page margin - - - -<xsl:param name="page.margin.outer"> - <xsl:choose> - <xsl:when test="$double.sided != 0">0.75in</xsl:when> - <xsl:otherwise>1in</xsl:otherwise> - </xsl:choose> -</xsl:param> - - -Description - -The outer page margin is the distance from non-bound edge of the -page to the outer edge of the last column of text. - -In left-to-right text direction, -this is the right margin of recto (front side) pages. -For single-sided output, it is the right margin -of all pages. - -In right-to-left text direction, -this is the left margin of recto pages. -For single-sided output, this is the -left margin of all pages. - - -Current versions (at least as of version 4.13) -of the XEP XSL-FO processor do not -correctly handle these margin settings for documents -with right-to-left text direction. -The workaround in that situation is to reverse -the values for page.margin.inner -and page.margin.outer, until -this bug is fixed by RenderX. It does not affect documents -with left-to-right text direction. - - - - - - - -page.margin.top -length - - -page.margin.top -The top margin of the page - - - - -<xsl:param name="page.margin.top">0.5in</xsl:param> - - - -Description - -The top page margin is the distance from the physical top of the -page to the top of the region-before. - - - - - - -page.orientation -list -portrait -landscape - - -page.orientation -Select the page orientation - - - - -<xsl:param name="page.orientation">portrait</xsl:param> - - - -Description - - Select one from portrait or landscape. -In portrait orientation, the short edge is horizontal; in -landscape orientation, it is vertical. - - - - - - - -page.width -length - - -page.width -The width of the physical page - - - -<xsl:param name="page.width"> - <xsl:choose> - <xsl:when test="$page.orientation = 'portrait'"> - <xsl:value-of select="$page.width.portrait"></xsl:value-of> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="$page.height.portrait"></xsl:value-of> - </xsl:otherwise> - </xsl:choose> -</xsl:param> - - -Description - -The page width is generally calculated from the -paper.type and -page.orientation parameters. - - - - - - -page.width.portrait -length - - -page.width.portrait -Specify the physical size of the short edge of the page - - - -<xsl:param name="page.width.portrait"> - <xsl:choose> - <xsl:when test="$paper.type = 'USletter'">8.5in</xsl:when> - <xsl:when test="$paper.type = '4A0'">1682mm</xsl:when> - <xsl:when test="$paper.type = '2A0'">1189mm</xsl:when> - <xsl:when test="$paper.type = 'A0'">841mm</xsl:when> - <xsl:when test="$paper.type = 'A1'">594mm</xsl:when> - <xsl:when test="$paper.type = 'A2'">420mm</xsl:when> - <xsl:when test="$paper.type = 'A3'">297mm</xsl:when> - <xsl:when test="$paper.type = 'A4'">210mm</xsl:when> - <xsl:when test="$paper.type = 'A5'">148mm</xsl:when> - <xsl:when test="$paper.type = 'A6'">105mm</xsl:when> - <xsl:when test="$paper.type = 'A7'">74mm</xsl:when> - <xsl:when test="$paper.type = 'A8'">52mm</xsl:when> - <xsl:when test="$paper.type = 'A9'">37mm</xsl:when> - <xsl:when test="$paper.type = 'A10'">26mm</xsl:when> - <xsl:when test="$paper.type = 'B0'">1000mm</xsl:when> - <xsl:when test="$paper.type = 'B1'">707mm</xsl:when> - <xsl:when test="$paper.type = 'B2'">500mm</xsl:when> - <xsl:when test="$paper.type = 'B3'">353mm</xsl:when> - <xsl:when test="$paper.type = 'B4'">250mm</xsl:when> - <xsl:when test="$paper.type = 'B5'">176mm</xsl:when> - <xsl:when test="$paper.type = 'B6'">125mm</xsl:when> - <xsl:when test="$paper.type = 'B7'">88mm</xsl:when> - <xsl:when test="$paper.type = 'B8'">62mm</xsl:when> - <xsl:when test="$paper.type = 'B9'">44mm</xsl:when> - <xsl:when test="$paper.type = 'B10'">31mm</xsl:when> - <xsl:when test="$paper.type = 'C0'">917mm</xsl:when> - <xsl:when test="$paper.type = 'C1'">648mm</xsl:when> - <xsl:when test="$paper.type = 'C2'">458mm</xsl:when> - <xsl:when test="$paper.type = 'C3'">324mm</xsl:when> - <xsl:when test="$paper.type = 'C4'">229mm</xsl:when> - <xsl:when test="$paper.type = 'C5'">162mm</xsl:when> - <xsl:when test="$paper.type = 'C6'">114mm</xsl:when> - <xsl:when test="$paper.type = 'C7'">81mm</xsl:when> - <xsl:when test="$paper.type = 'C8'">57mm</xsl:when> - <xsl:when test="$paper.type = 'C9'">40mm</xsl:when> - <xsl:when test="$paper.type = 'C10'">28mm</xsl:when> - <xsl:otherwise>8.5in</xsl:otherwise> - </xsl:choose> -</xsl:param> - - -Description - -The portrait page width is the length of the short -edge of the physical page. - - - - - - - -paper.type -list -open -open -USletter8.5x11in -USlandscape11x8.5in -4A02378x1682mm -2A01682x1189mm -A01189x841mm -A1841x594mm -A2594x420mm -A3420x297mm -A4297x210mm -A5210x148mm -A6148x105mm -A7105x74mm -A874x52mm -A952x37mm -A1037x26mm -B01414x1000mm -B11000x707mm -B2707x500mm -B3500x353mm -B4353x250mm -B5250x176mm -B6176x125mm -B7125x88mm -B888x62mm -B962x44mm -B1044x31mm -C01297x917mm -C1917x648mm -C2648x458mm -C3458x324mm -C4324x229mm -C5229x162mm -C6162x114mm -C7114x81mm -C881x57mm -C957x40mm -C1040x28mm - - -paper.type -Select the paper type - - - - -<xsl:param name="paper.type">USletter</xsl:param> - - - -Description - -The paper type is a convenient way to specify the paper size. -The list of known paper sizes includes USletter and most of the A, -B, and C sizes. See page.width.portrait, for example. - - - - - - - - - -double.sided -boolean - - -double.sided -Is the document to be printed double sided? - - - - -<xsl:param name="double.sided" select="0"></xsl:param> - - - -Description - -Double-sided documents are printed with a slightly wider margin -on the binding edge of the page. - -FIXME: The current set of parameters does not take writing direction -into account. - - - - - - -body.margin.bottom -length - - -body.margin.bottom -The bottom margin of the body text - - - - -<xsl:param name="body.margin.bottom">0.5in</xsl:param> - - - -Description - -The body bottom margin is the distance from the last line of text -in the page body to the bottom of the region-after. - - - - - - - -body.margin.top -length - - -body.margin.top -To specify the size of the top margin of a page - - - - -<xsl:param name="body.margin.top">0.5in</xsl:param> - - - -Description - -The body top margin is the distance from the top of the -region-before to the first line of text in the page body. - - - - - - -body.start.indent -length - - -body.start.indent -The start-indent for the body text - - - - -<xsl:param name="body.start.indent"> - <xsl:choose> - <xsl:when test="$fop.extensions != 0">0pt</xsl:when> - <xsl:when test="$passivetex.extensions != 0">0pt</xsl:when> - <xsl:otherwise>4pc</xsl:otherwise> - </xsl:choose> -</xsl:param> - - - -Description - -This parameter provides -the means of indenting the body text relative to -section titles. -For left-to-right text direction, it indents the left side. -For right-to-left text direction, it indents the right side. -It is used in place of the -title.margin.left for -all XSL-FO processors except FOP 0.25. -It enables support for side floats to appear -in the indented margin area. - -This start-indent property is added to the fo:flow -for certain page sequences. Which page-sequences it is -applied to is determined by the template named -set.flow.properties. -By default, that template adds it to the flow -for page-sequences using the body -master-reference, as well as appendixes and prefaces. - -If this parameter is used, section titles should have -a start-indent value of 0pt if they are to be -outdented relative to the body text. - - -If you are using FOP, then set this parameter to a zero -width value and set the title.margin.left -parameter to the negative value of the desired indent. - - -See also body.end.indent and -title.margin.left. - - - - - - - -body.end.indent -length - - -body.end.indent -The end-indent for the body text - - - - -<xsl:param name="body.end.indent">0pt</xsl:param> - - - -Description - -This end-indent property is added to the fo:flow -for certain page sequences. Which page-sequences it is -applied to is determined by the template named -set.flow.properties. -By default, that template adds it to the flow -for page-sequences using the body -master-reference, as well as appendixes and prefaces. - - -See also body.start.indent. - - - - - - - -alignment - list - open - left - start - right - end - center - justify - - -alignment -Specify the default text alignment - - - -<xsl:param name="alignment">justify</xsl:param> - - -Description - -The default text alignment is used for most body text. -Allowed values are -left, -right, -start, -end, -center, -justify. -The default value is justify. - - - - - - - -hyphenate -list -closed -true -false - - -hyphenate -Specify hyphenation behavior - - - -<xsl:param name="hyphenate">true</xsl:param> - - -Description - -If true, words may be hyphenated. Otherwise, they may not. - - - - - - - -line-height -string - - -line-height -Specify the line-height property - - - - -<xsl:param name="line-height">normal</xsl:param> - - - -Description - -Sets the line-height property. - - - - - - -column.count.back -integer - - -column.count.back -Number of columns on back matter pages - - - - -<xsl:param name="column.count.back" select="1"></xsl:param> - - - -Description - -Number of columns on back matter (appendix, glossary, etc.) pages. - - - - - - -column.count.body -integer - - -column.count.body -Number of columns on body pages - - - - -<xsl:param name="column.count.body" select="1"></xsl:param> - - - -Description - -Number of columns on body pages. - - - - - - -column.count.front -integer - - -column.count.front -Number of columns on front matter pages - - - - -<xsl:param name="column.count.front" select="1"></xsl:param> - - - -Description - -Number of columns on front matter (dedication, preface, etc.) pages. - - - - - - -column.count.index -integer - - -column.count.index -Number of columns on index pages - - - - -<xsl:param name="column.count.index">2</xsl:param> - - - -Description - -Number of columns on index pages. - - - - - - -column.count.lot -integer - - -column.count.lot -Number of columns on a 'List-of-Titles' page - - - - -<xsl:param name="column.count.lot" select="1"></xsl:param> - - - -Description - -Number of columns on a page sequence containing the Table of Contents, -List of Figures, etc. - - - - - - -column.count.titlepage -integer - - -column.count.titlepage -Number of columns on a title page - - - - -<xsl:param name="column.count.titlepage" select="1"></xsl:param> - - - -Description - -Number of columns on a title page - - - - - - -column.gap.back -length - - -column.gap.back -Gap between columns in back matter - - - - -<xsl:param name="column.gap.back">12pt</xsl:param> - - - -Description - -Specifies the gap between columns in back matter (if -column.count.back is greater than one). - - - - - - -column.gap.body -length - - -column.gap.body -Gap between columns in the body - - - - -<xsl:param name="column.gap.body">12pt</xsl:param> - - - -Description - -Specifies the gap between columns in body matter (if -column.count.body is greater than one). - - - - - - -column.gap.front -length - - -column.gap.front -Gap between columns in the front matter - - - - -<xsl:param name="column.gap.front">12pt</xsl:param> - - - -Description - -Specifies the gap between columns in front matter (if -column.count.front is greater than one). - - - - - - -column.gap.index -length - - -column.gap.index -Gap between columns in the index - - - - -<xsl:param name="column.gap.index">12pt</xsl:param> - - - -Description - -Specifies the gap between columns in indexes (if -column.count.index is greater than one). - - - - - - -column.gap.lot -length - - -column.gap.lot -Gap between columns on a 'List-of-Titles' page - - - - -<xsl:param name="column.gap.lot">12pt</xsl:param> - - - -Description - -Specifies the gap between columns on 'List-of-Titles' pages (if -column.count.lot is greater than one). - - - - - - -column.gap.titlepage -length - - -column.gap.titlepage -Gap between columns on title pages - - - - -<xsl:param name="column.gap.titlepage">12pt</xsl:param> - - - -Description - -Specifies the gap between columns on title pages (if -column.count.titlepage is greater than one). - - - - - - - -region.after.extent -length - - -region.after.extent -Specifies the height of the footer. - - - - -<xsl:param name="region.after.extent">0.4in</xsl:param> - - - -Description - -The region after extent is the height of the area where footers -are printed. - - - - - - - -region.before.extent -length - - -region.before.extent -Specifies the height of the header - - - - -<xsl:param name="region.before.extent">0.4in</xsl:param> - - - -Description - -The region before extent is the height of the area where headers -are printed. - - - - - - - -default.units -list -cm -mm -in -pt -pc -px -em - - -default.units -Default units for an unqualified dimension - - - - -<xsl:param name="default.units">pt</xsl:param> - - - -Description - -If an unqualified dimension is encountered (for example, in a -graphic width), the default.units will be used for the -units. Unqualified dimensions are not allowed in XSL Formatting Objects. - - - - - - - -normal.para.spacing -attribute set - - -normal.para.spacing -What space do you want between normal paragraphs - - - -<xsl:attribute-set name="normal.para.spacing"> - <xsl:attribute name="space-before.optimum">1em</xsl:attribute> - <xsl:attribute name="space-before.minimum">0.8em</xsl:attribute> - <xsl:attribute name="space-before.maximum">1.2em</xsl:attribute> -</xsl:attribute-set> - -Description -Specify the spacing required between normal paragraphs - - - - - -body.font.master - number - - -body.font.master -Specifies the default point size for body text - - - - -<xsl:param name="body.font.master">10</xsl:param> - - - -Description - -The body font size is specified in two parameters -(body.font.master and body.font.size) -so that math can be performed on the font size by XSLT. - - - - - - - -body.font.size -length - - -body.font.size -Specifies the default font size for body text - - - - -<xsl:param name="body.font.size"> - <xsl:value-of select="$body.font.master"></xsl:value-of><xsl:text>pt</xsl:text> -</xsl:param> - - -Description - -The body font size is specified in two parameters -(body.font.master and body.font.size) -so that math can be performed on the font size by XSLT. - - - - - - - -footnote.font.size -length - - -footnote.font.size -The font size for footnotes - - - -<xsl:param name="footnote.font.size"> - <xsl:value-of select="$body.font.master * 0.8"></xsl:value-of><xsl:text>pt</xsl:text> -</xsl:param> - - -Description - -The footnote font size is used for...footnotes! - - - - - - - -title.margin.left -length - - -title.margin.left -Adjust the left margin for titles - - - - -<xsl:param name="title.margin.left"> - <xsl:choose> - <xsl:when test="$fop.extensions != 0">-4pc</xsl:when> - <xsl:when test="$passivetex.extensions != 0">0pt</xsl:when> - <xsl:otherwise>0pt</xsl:otherwise> - </xsl:choose> -</xsl:param> - - - -Description - -This parameter provides -the means of adjusting the left margin for titles -when the XSL-FO processor being used is -an old version of FOP (0.25 and earlier). -It is only useful when the fop.extensions -is nonzero. - -The left margin of the body region -is calculated to include this space, -and titles are outdented to the left outside -the body region by this amount, -effectively leaving titles at the intended left margin -and the body text indented. -Currently this method is only used for old FOP because -it cannot properly use the body.start.indent -parameter. - - -The default value when the fop.extensions -parameter is nonzero is -4pc, which means the -body text is indented 4 picas relative to -the titles. -The default value when the fop.extensions -parameter equals zero is 0pt, and -the body indent should instead be specified -using the body.start.indent -parameter. - - -If you set the value to zero, be sure to still include -a unit indicator such as 0pt, or -the FO processor will report errors. - - - - - - - -draft.mode -list -no -yes -maybe - - -draft.mode -Select draft mode - - - - -<xsl:param name="draft.mode">maybe</xsl:param> - - - -Description - -Selects draft mode. If draft.mode is -yes, the entire document will be treated -as a draft. If it is no, the entire document -will be treated as a final copy. If it is maybe, -individual sections will be treated as draft or final independently, depending -on how their status attribute is set. - - - - - - - -draft.watermark.image -uri - - -draft.watermark.image -The URI of the image to be used for draft watermarks - - - - -<xsl:param name="draft.watermark.image">http://docbook.sourceforge.net/release/images/draft.png</xsl:param> - - - -Description - -The image to be used for draft watermarks. - - - - - - -headers.on.blank.pages -boolean - - -headers.on.blank.pages -Put headers on blank pages? - - - - -<xsl:param name="headers.on.blank.pages" select="1"></xsl:param> - - - -Description - -If non-zero, headers will be placed on blank pages. - - - - - - -footers.on.blank.pages -boolean - - -footers.on.blank.pages -Put footers on blank pages? - - - - -<xsl:param name="footers.on.blank.pages" select="1"></xsl:param> - - - -Description - -If non-zero, footers will be placed on blank pages. - - - - - - -header.rule -boolean - - -header.rule -Rule under headers? - - - - -<xsl:param name="header.rule" select="1"></xsl:param> - - - -Description - -If non-zero, a rule will be drawn below the page headers. - - - - - - -footer.rule -boolean - - -footer.rule -Rule over footers? - - - - -<xsl:param name="footer.rule" select="1"></xsl:param> - - - -Description - -If non-zero, a rule will be drawn above the page footers. - - - - - - -header.column.widths -string - - -header.column.widths -Specify relative widths of header areas - - - -<xsl:param name="header.column.widths">1 1 1</xsl:param> - - -Description - -Page headers in print output use a three column table -to position text at the left, center, and right side of -the header on the page. -This parameter lets you specify the relative sizes of the -three columns. The default value is -"1 1 1". - -The parameter value must be three numbers, separated -by white space. The first number represents the relative -width of the inside header for -double-sided output. The second number is the relative -width of the center header. The third number is the -relative width of the outside header for -double-sided output. - -For single-sided output, the first number is the -relative width of left header for left-to-right -text direction, or the right header for right-to-left -text direction. -The third number is the -relative width of right header for left-to-right -text direction, or the left header for right-to-left -text direction. - -The numbers are used to specify the column widths -for the table that makes up the header area. -In the FO output, this looks like: - - - -<fo:table-column column-number="1" - column-width="proportional-column-width(1)"/> - - - -The proportional-column-width() -function computes a column width by dividing its -argument by the total of the arguments for all the columns, and -then multiplying the result by the width of the whole table -(assuming all the column specs use the function). -Its argument can be any positive integer or floating point number. -Zero is an acceptable value, although some FO processors -may warn about it, in which case using a very small number might -be more satisfactory. - - -For example, the value "1 2 1" means the center -header should have twice the width of the other areas. -A value of "0 0 1" means the entire header area -is reserved for the right (or outside) header text. -Note that to keep the center area centered on -the page, the left and right values must be -the same. A specification like "1 2 3" means the -center area is no longer centered on the page -since the right area is three times the width of the left area. - - - - - - - -footer.column.widths -string - - -footer.column.widths -Specify relative widths of footer areas - - - -<xsl:param name="footer.column.widths">1 1 1</xsl:param> - - -Description - -Page footers in print output use a three column table -to position text at the left, center, and right side of -the footer on the page. -This parameter lets you specify the relative sizes of the -three columns. The default value is -"1 1 1". - -The parameter value must be three numbers, separated -by white space. The first number represents the relative -width of the inside footer for -double-sided output. The second number is the relative -width of the center footer. The third number is the -relative width of the outside footer for -double-sided output. - -For single-sided output, the first number is the -relative width of left footer for left-to-right -text direction, or the right footer for right-to-left -text direction. -The third number is the -relative width of right footer for left-to-right -text direction, or the left footer for right-to-left -text direction. - -The numbers are used to specify the column widths -for the table that makes up the footer area. -In the FO output, this looks like: - - - -<fo:table-column column-number="1" - column-width="proportional-column-width(1)"/> - - - -The proportional-column-width() -function computes a column width by dividing its -argument by the total of the arguments for all the columns, and -then multiplying the result by the width of the whole table -(assuming all the column specs use the function). -Its argument can be any positive integer or floating point number. -Zero is an acceptable value, although some FO processors -may warn about it, in which case using a very small number might -be more satisfactory. - - -For example, the value "1 2 1" means the center -footer should have twice the width of the other areas. -A value of "0 0 1" means the entire footer area -is reserved for the right (or outside) footer text. -Note that to keep the center area centered on -the page, the left and right values must be -the same. A specification like "1 2 3" means the -center area is no longer centered on the page -since the right area is three times the width of the left area. - - - - - - - -header.table.properties -attribute set - - -header.table.properties -Apply properties to the header layout table - - - - -<xsl:attribute-set name="header.table.properties"> - <xsl:attribute name="table-layout">fixed</xsl:attribute> - <xsl:attribute name="width">100%</xsl:attribute> -</xsl:attribute-set> - - - -Description - -Properties applied to the table that lays out the page header. - - - - - - -header.table.height -length - - -header.table.height -Specify the minimum height of the table containing the running page headers - - - -<xsl:param name="header.table.height">14pt</xsl:param> - - -Description - -Page headers in print output use a three column table -to position text at the left, center, and right side of -the header on the page. -This parameter lets you specify the minimum height -of the single row in the table. -Since this specifies only the minimum height, -the table should automatically grow to fit taller content. -The default value is "14pt". - - - - - - -footer.table.properties -attribute set - - -footer.table.properties -Apply properties to the footer layout table - - - - -<xsl:attribute-set name="footer.table.properties"> - <xsl:attribute name="table-layout">fixed</xsl:attribute> - <xsl:attribute name="width">100%</xsl:attribute> -</xsl:attribute-set> - - - -Description - -Properties applied to the table that lays out the page footer. - - - - - - -footer.table.height -length - - -footer.table.height -Specify the minimum height of the table containing the running page footers - - - -<xsl:param name="footer.table.height">14pt</xsl:param> - - -Description - -Page footers in print output use a three column table -to position text at the left, center, and right side of -the footer on the page. -This parameter lets you specify the minimum height -of the single row in the table. -Since this specifies only the minimum height, -the table should automatically grow to fit taller content. -The default value is "14pt". - - - - - - -header.content.properties -attribute set - - -header.content.properties -Properties of page header content - - - - -<xsl:attribute-set name="header.content.properties"> - <xsl:attribute name="font-family"> - <xsl:value-of select="$body.fontset"></xsl:value-of> - </xsl:attribute> - <xsl:attribute name="margin-left"> - <xsl:value-of select="$title.margin.left"></xsl:value-of> - </xsl:attribute> -</xsl:attribute-set> - - - -Description - -Properties of page header content. - - - - - - -footer.content.properties -attribute set - - -footer.content.properties -Properties of page footer content - - - - -<xsl:attribute-set name="footer.content.properties"> - <xsl:attribute name="font-family"> - <xsl:value-of select="$body.fontset"></xsl:value-of> - </xsl:attribute> - <xsl:attribute name="margin-left"> - <xsl:value-of select="$title.margin.left"></xsl:value-of> - </xsl:attribute> -</xsl:attribute-set> - - - -Description - -Properties of page footer content. - - - - - - -marker.section.level -integer - - -marker.section.level -Control depth of sections shown in running headers or footers - - - - -<xsl:param name="marker.section.level">2</xsl:param> - - - -Description - -The marker.section.level parameter -controls the depth of section levels that may be displayed -in running headers and footers. For example, if the value -is 2 (the default), then titles from sect1 and -sect2 or equivalent section -elements are candidates for use in running headers and -footers. - -Each candidate title is marked in the FO output with a -<fo:marker marker-class-name="section.head.marker"> -element. - -In order for such titles to appear in headers -or footers, the header.content -or footer.content template -must be customized to retrieve the marker using -an output element such as: - - -<fo:retrieve-marker retrieve-class-name="section.head.marker" - retrieve-position="first-including-carryover" - retrieve-boundary="page-sequence"/> - - - - - - -
Font Families - - -body.font.family -list -open -serif -sans-serif -monospace - - -body.font.family -The default font family for body text - - - - -<xsl:param name="body.font.family">serif</xsl:param> - - - -Description - -The body font family is the default font used for text in the page body. - - - - - - - -dingbat.font.family -list -open -serif -sans-serif -monospace - - -dingbat.font.family -The font family for copyright, quotes, and other symbols - - - - -<xsl:param name="dingbat.font.family">serif</xsl:param> - - - -Description - -The dingbat font family is used for dingbats. If it is defined -as the empty string, no font change is effected around dingbats. - - - - - - - -monospace.font.family -string - - -monospace.font.family -The default font family for monospace environments - - - - -<xsl:param name="monospace.font.family">monospace</xsl:param> - - - -Description - -The monospace font family is used for verbatim environments -(program listings, screens, etc.). - - - - - - - -sans.font.family -string - - -sans.font.family -The default sans-serif font family - - - - -<xsl:param name="sans.font.family">sans-serif</xsl:param> - - - -Description - -The default sans-serif font family. At the present, this isn't -actually used by the stylesheets. - - - - - - - -title.font.family -list -open -serif -sans-serif -monospace - - -title.font.family -The default font family for titles - - - - -<xsl:param name="title.font.family">sans-serif</xsl:param> - - - -Description - -The title font family is used for titles (chapter, section, figure, -etc.) - - - - - - - -symbol.font.family -list -open -serif -sans-serif -monospace - - -symbol.font.family -The font families to be searched for symbols outside - of the body font - - - - -<xsl:param name="symbol.font.family">Symbol,ZapfDingbats</xsl:param> - - - -Description - -A typical body or title font does not contain all -the character glyphs that DocBook supports. This parameter -specifies additional fonts that should be searched for -special characters not in the normal font. -These symbol font names are automatically appended -to the body or title font family name when fonts -are specified in a -font-family -property in the FO output. - -The symbol font names should be entered as a -comma-separated list. The default value is -Symbol,ZapfDingbats. - - - - - -Property Sets - - -formal.object.properties -attribute set - - -formal.object.properties -Properties associated with a formal object such as a figure, or other component that has a title - - - - -<xsl:attribute-set name="formal.object.properties"> - <xsl:attribute name="space-before.minimum">0.5em</xsl:attribute> - <xsl:attribute name="space-before.optimum">1em</xsl:attribute> - <xsl:attribute name="space-before.maximum">2em</xsl:attribute> - <xsl:attribute name="space-after.minimum">0.5em</xsl:attribute> - <xsl:attribute name="space-after.optimum">1em</xsl:attribute> - <xsl:attribute name="space-after.maximum">2em</xsl:attribute> - <xsl:attribute name="keep-together.within-column">always</xsl:attribute> -</xsl:attribute-set> - - - -Description - -The styling for formal objects in docbook. Specify the spacing -before and after the object. - - - - - - -formal.title.properties -attribute set - - -formal.title.properties -Style the title element of formal object such as a figure. - - - - -<xsl:attribute-set name="formal.title.properties" use-attribute-sets="normal.para.spacing"> - <xsl:attribute name="font-weight">bold</xsl:attribute> - <xsl:attribute name="font-size"> - <xsl:value-of select="$body.font.master * 1.2"></xsl:value-of> - <xsl:text>pt</xsl:text> - </xsl:attribute> - <xsl:attribute name="hyphenate">false</xsl:attribute> - <xsl:attribute name="space-after.minimum">0.4em</xsl:attribute> - <xsl:attribute name="space-after.optimum">0.6em</xsl:attribute> - <xsl:attribute name="space-after.maximum">0.8em</xsl:attribute> -</xsl:attribute-set> - - -Description -Specify how the title should be styled. Specify the font size and weight of the title of the formal object. - - - - - -informal.object.properties -attribute set - - -informal.object.properties -Properties associated with an informal (untitled) object, such as an informalfigure - - - -<xsl:attribute-set name="informal.object.properties"> - <xsl:attribute name="space-before.minimum">0.5em</xsl:attribute> - <xsl:attribute name="space-before.optimum">1em</xsl:attribute> - <xsl:attribute name="space-before.maximum">2em</xsl:attribute> - <xsl:attribute name="space-after.minimum">0.5em</xsl:attribute> - <xsl:attribute name="space-after.optimum">1em</xsl:attribute> - <xsl:attribute name="space-after.maximum">2em</xsl:attribute> -</xsl:attribute-set> - -Description -The styling for informal objects in docbook. Specify the spacing before and after the object. - - - - - -monospace.properties -attribute set - - -monospace.properties -Properties of monospaced content - - - - -<xsl:attribute-set name="monospace.properties"> - <xsl:attribute name="font-family"> - <xsl:value-of select="$monospace.font.family"></xsl:value-of> - </xsl:attribute> -</xsl:attribute-set> - - - -Description - -Specifies the font name for monospaced output. This property set -used to set the font-size as well, but that doesn't work very well -when different fonts are used (as they are in titles and paragraphs, -for example). - -If you want to set the font-size in a customization layer, it's -probably going to be more appropriate to set font-size-adjust, if your -formatter supports it. - - - - - - -verbatim.properties -attribute set - - -verbatim.properties -Properties associated with verbatim text - - - - -<xsl:attribute-set name="verbatim.properties"> - <xsl:attribute name="space-before.minimum">0.8em</xsl:attribute> - <xsl:attribute name="space-before.optimum">1em</xsl:attribute> - <xsl:attribute name="space-before.maximum">1.2em</xsl:attribute> - <xsl:attribute name="space-after.minimum">0.8em</xsl:attribute> - <xsl:attribute name="space-after.optimum">1em</xsl:attribute> - <xsl:attribute name="space-after.maximum">1.2em</xsl:attribute> - <xsl:attribute name="hyphenate">false</xsl:attribute> - <xsl:attribute name="wrap-option">no-wrap</xsl:attribute> - <xsl:attribute name="white-space-collapse">false</xsl:attribute> - <xsl:attribute name="white-space-treatment">preserve</xsl:attribute> - <xsl:attribute name="linefeed-treatment">preserve</xsl:attribute> - <xsl:attribute name="text-align">start</xsl:attribute> -</xsl:attribute-set> - - -Description -This attribute set is used on all verbatim environments. - - - - - - -monospace.verbatim.properties -attribute set - - -monospace.verbatim.properties -What font and size do you want for monospaced content? - - - - -<xsl:attribute-set name="monospace.verbatim.properties" use-attribute-sets="verbatim.properties monospace.properties"> - <xsl:attribute name="text-align">start</xsl:attribute> - <xsl:attribute name="wrap-option">no-wrap</xsl:attribute> -</xsl:attribute-set> - - -Description -Specify the font name and size you want for monospaced output - - - - - -sidebar.properties -attribute set - - -sidebar.properties -Attribute set for sidebar properties - - - - -<xsl:attribute-set name="sidebar.properties" use-attribute-sets="formal.object.properties"> - <xsl:attribute name="border-style">solid</xsl:attribute> - <xsl:attribute name="border-width">1pt</xsl:attribute> - <xsl:attribute name="border-color">black</xsl:attribute> - <xsl:attribute name="background-color">#DDDDDD</xsl:attribute> - <xsl:attribute name="padding-start">12pt</xsl:attribute> - <xsl:attribute name="padding-end">12pt</xsl:attribute> - <xsl:attribute name="padding-top">6pt</xsl:attribute> - <xsl:attribute name="padding-bottom">6pt</xsl:attribute> - <xsl:attribute name="margin-{$direction.align.start}">0pt</xsl:attribute> - <xsl:attribute name="margin-{$direction.align.end}">0pt</xsl:attribute> -<!-- - <xsl:attribute name="margin-top">6pt</xsl:attribute> - <xsl:attribute name="margin-bottom">6pt</xsl:attribute> ---> -</xsl:attribute-set> - - - -Description - -The styling for sidebars. - - - - - - -sidebar.title.properties -attribute set - - -sidebar.title.properties -Attribute set for sidebar titles - - - - -<xsl:attribute-set name="sidebar.title.properties"> - <xsl:attribute name="font-weight">bold</xsl:attribute> - <xsl:attribute name="hyphenate">false</xsl:attribute> - <xsl:attribute name="text-align">start</xsl:attribute> - <xsl:attribute name="keep-with-next.within-column">always</xsl:attribute> -</xsl:attribute-set> - - - -Description - -The styling for sidebars titles. - - - - - - -sidebar.float.type -list -none -before -left -start -right -end -inside -outside - - -sidebar.float.type -Select type of float for sidebar elements - - - - -<xsl:param name="sidebar.float.type">none</xsl:param> - - - -Description - -Selects the type of float for sidebar elements. - - - -If sidebar.float.type is -none, then -no float is used. - - - -If sidebar.float.type is -before, then -the float appears at the top of the page. On some processors, -that may be the next page rather than the current page. - - - - -If sidebar.float.type is -left, -then a left side float is used. - - - - -If sidebar.float.type is -start, -then when the text direction is left-to-right a left side float is used. -When the text direction is right-to-left, a right side float is used. - - - - -If sidebar.float.type is -right, -then a right side float is used. - - - - -If sidebar.float.type is -end, -then when the text direction is left-to-right a right side float is used. -When the text direction is right-to-left, a left side float is used. - - - - -If your XSL-FO processor supports floats positioned on the -inside or -outside -of double-sided pages, then you have those two -options for side floats as well. - - - - - - - - - -sidebar.float.width -length - - -sidebar.float.width -Set the default width for sidebars - - - - -<xsl:param name="sidebar.float.width">1in</xsl:param> - - - -Description - -Sets the default width for sidebars when used as a side float. -The width determines the degree to which the sidebar block intrudes into -the text area. - -If sidebar.float.type is -before or -none, then -this parameter is ignored. - - - - - - - -margin.note.properties -attribute set - - -margin.note.properties -Attribute set for margin.note properties - - - - -<xsl:attribute-set name="margin.note.properties"> - <xsl:attribute name="font-size">90%</xsl:attribute> - <xsl:attribute name="text-align">start</xsl:attribute> -</xsl:attribute-set> - - - -Description - -The styling for margin notes. -By default, margin notes are not implemented for any -element. A stylesheet customization is needed to make -use of this attribute-set. - -You can use a template named floater -to create the customization. -That template can create side floats by specifying the -content and characteristics as template parameters. - - -For example: -<xsl:template match="para[@role='marginnote']"> - <xsl:call-template name="floater"> - <xsl:with-param name="position"> - <xsl:value-of select="$margin.note.float.type"/> - </xsl:with-param> - <xsl:with-param name="width"> - <xsl:value-of select="$margin.note.width"/> - </xsl:with-param> - <xsl:with-param name="content"> - <xsl:apply-imports/> - </xsl:with-param> - </xsl:call-template> -</xsl:template> - - - - - - -margin.note.title.properties -attribute set - - -margin.note.title.properties -Attribute set for margin note titles - - - - -<xsl:attribute-set name="margin.note.title.properties"> - <xsl:attribute name="font-weight">bold</xsl:attribute> - <xsl:attribute name="hyphenate">false</xsl:attribute> - <xsl:attribute name="text-align">start</xsl:attribute> - <xsl:attribute name="keep-with-next.within-column">always</xsl:attribute> -</xsl:attribute-set> - - - -Description - -The styling for margin note titles. - - - - - - -margin.note.float.type -list -none -before -left -start -right -end -inside -outside - - -margin.note.float.type -Select type of float for margin note customizations - - - - -<xsl:param name="margin.note.float.type">none</xsl:param> - - - -Description - -Selects the type of float for margin notes. -DocBook does not define a margin note element, so this -feature must be implemented as a customization of the stylesheet. -See margin.note.properties for -an example. - - - -If margin.note.float.type is -none, then -no float is used. - - - -If margin.note.float.type is -before, then -the float appears at the top of the page. On some processors, -that may be the next page rather than the current page. - - - -If margin.note.float.type is -left or -start, then -a left side float is used. - - - -If margin.note.float.type is -right or -end, then -a right side float is used. - - - -If your XSL-FO processor supports floats positioned on the -inside or -outside -of double-sided pages, then you have those two -options for side floats as well. - - - - - - - - - -margin.note.width -length - - -margin.note.width -Set the default width for margin notes - - - - -<xsl:param name="margin.note.width">1in</xsl:param> - - - -Description - -Sets the default width for margin notes when used as a side -float. The width determines the degree to which the margin note block -intrudes into the text area. - -If margin.note.float.type is -before or -none, then -this parameter is ignored. - - - - - - - -component.title.properties -attribute set - - -component.title.properties -Properties for component titles - - - - -<xsl:attribute-set name="component.title.properties"> - <xsl:attribute name="keep-with-next.within-column">always</xsl:attribute> - <xsl:attribute name="space-before.optimum"><xsl:value-of select="concat($body.font.master, 'pt')"></xsl:value-of></xsl:attribute> - <xsl:attribute name="space-before.minimum"><xsl:value-of select="concat($body.font.master, 'pt * 0.8')"></xsl:value-of></xsl:attribute> - <xsl:attribute name="space-before.maximum"><xsl:value-of select="concat($body.font.master, 'pt * 1.2')"></xsl:value-of></xsl:attribute> - <xsl:attribute name="hyphenate">false</xsl:attribute> - <xsl:attribute name="text-align"> - <xsl:choose> - <xsl:when test="((parent::article | parent::articleinfo | parent::info/parent::article) and not(ancestor::book) and not(self::bibliography)) or (parent::slides | parent::slidesinfo)">center</xsl:when> - <xsl:otherwise>start</xsl:otherwise> - </xsl:choose> - </xsl:attribute> - <xsl:attribute name="start-indent"><xsl:value-of select="$title.margin.left"></xsl:value-of></xsl:attribute> -</xsl:attribute-set> - - - -Description - -The properties common to all component titles. - - - - - - -component.titlepage.properties -attribute set - - -component.titlepage.properties -Properties for component titlepages - - - - -<xsl:attribute-set name="component.titlepage.properties"> -</xsl:attribute-set> - - - -Description - -The properties that are applied to the outer block containing -all the component title page information. -Its main use is to set a span="all" -property on the block that is a direct child of the flow. - -This attribute-set also applies to index titlepages. It is empty by default. - - - - - - -section.title.properties -attribute set - - -section.title.properties -Properties for section titles - - - - -<xsl:attribute-set name="section.title.properties"> - <xsl:attribute name="font-family"> - <xsl:value-of select="$title.font.family"></xsl:value-of> - </xsl:attribute> - <xsl:attribute name="font-weight">bold</xsl:attribute> - <!-- font size is calculated dynamically by section.heading template --> - <xsl:attribute name="keep-with-next.within-column">always</xsl:attribute> - <xsl:attribute name="space-before.minimum">0.8em</xsl:attribute> - <xsl:attribute name="space-before.optimum">1.0em</xsl:attribute> - <xsl:attribute name="space-before.maximum">1.2em</xsl:attribute> - <xsl:attribute name="text-align">start</xsl:attribute> - <xsl:attribute name="start-indent"><xsl:value-of select="$title.margin.left"></xsl:value-of></xsl:attribute> -</xsl:attribute-set> - - - -Description - -The properties common to all section titles. - - - - - - -section.title.level1.properties -attribute set - - -section.title.level1.properties -Properties for level-1 section titles - - - - -<xsl:attribute-set name="section.title.level1.properties"> - <xsl:attribute name="font-size"> - <xsl:value-of select="$body.font.master * 2.0736"></xsl:value-of> - <xsl:text>pt</xsl:text> - </xsl:attribute> -</xsl:attribute-set> - - - -Description - -The properties of level-1 section titles. - - - - - - - -section.title.level2.properties -attribute set - - -section.title.level2.properties -Properties for level-2 section titles - - - - -<xsl:attribute-set name="section.title.level2.properties"> - <xsl:attribute name="font-size"> - <xsl:value-of select="$body.font.master * 1.728"></xsl:value-of> - <xsl:text>pt</xsl:text> - </xsl:attribute> -</xsl:attribute-set> - - - -Description - -The properties of level-2 section titles. - - - - - - -section.title.level3.properties -attribute set - - -section.title.level3.properties -Properties for level-3 section titles - - - - -<xsl:attribute-set name="section.title.level3.properties"> - <xsl:attribute name="font-size"> - <xsl:value-of select="$body.font.master * 1.44"></xsl:value-of> - <xsl:text>pt</xsl:text> - </xsl:attribute> -</xsl:attribute-set> - - - -Description - -The properties of level-3 section titles. - - - - - - -section.title.level4.properties -attribute set - - -section.title.level4.properties -Properties for level-4 section titles - - - - -<xsl:attribute-set name="section.title.level4.properties"> - <xsl:attribute name="font-size"> - <xsl:value-of select="$body.font.master * 1.2"></xsl:value-of> - <xsl:text>pt</xsl:text> - </xsl:attribute> -</xsl:attribute-set> - - - -Description - -The properties of level-4 section titles. - - - - - - -section.title.level5.properties -attribute set - - -section.title.level5.properties -Properties for level-5 section titles - - - - -<xsl:attribute-set name="section.title.level5.properties"> - <xsl:attribute name="font-size"> - <xsl:value-of select="$body.font.master"></xsl:value-of> - <xsl:text>pt</xsl:text> - </xsl:attribute> -</xsl:attribute-set> - - - -Description - -The properties of level-5 section titles. - - - - - - -section.title.level6.properties -attribute set - - -section.title.level6.properties -Properties for level-6 section titles - - - - -<xsl:attribute-set name="section.title.level6.properties"> - <xsl:attribute name="font-size"> - <xsl:value-of select="$body.font.master"></xsl:value-of> - <xsl:text>pt</xsl:text> - </xsl:attribute> -</xsl:attribute-set> - - - -Description - -The properties of level-6 section titles. This property set is actually -used for all titles below level 5. - - - - - - -section.properties -attribute set - - -section.properties -Properties for all section levels - - - - -<xsl:attribute-set name="section.properties"> -</xsl:attribute-set> - - - -Description - -The properties that apply to the containing -block of all section levels, and therefore apply to -the whole section. -This attribute set is inherited by the -more specific attribute sets such as -section.level1.properties. -The default is empty. - - - - - - - -section.level1.properties -attribute set - - -section.level1.properties -Properties for level-1 sections - - - - -<xsl:attribute-set name="section.level1.properties" use-attribute-sets="section.properties"> -</xsl:attribute-set> - - - -Description - -The properties that apply to the containing -block of a level-1 section, and therefore apply to -the whole section. This includes sect1 -elements and section elements at level 1. - - -For example, you could start each level-1 section on -a new page by using: -<xsl:attribute-set name="section.level1.properties"> - <xsl:attribute name="break-before">page</xsl:attribute> -</xsl:attribute-set> - - -This attribute set inherits attributes from the -general section.properties attribute set. - - - - - - - -section.level2.properties -attribute set - - -section.level2.properties -Properties for level-2 sections - - - - -<xsl:attribute-set name="section.level2.properties" use-attribute-sets="section.properties"> -</xsl:attribute-set> - - - -Description - -The properties that apply to the containing -block of a level-2 section, and therefore apply to -the whole section. This includes sect2 -elements and section elements at level 2. - - -For example, you could start each level-2 section on -a new page by using: -<xsl:attribute-set name="section.level2.properties"> - <xsl:attribute name="break-before">page</xsl:attribute> -</xsl:attribute-set> - - -This attribute set inherits attributes from the -general section.properties attribute set. - - - - - - - -section.level3.properties -attribute set - - -section.level3.properties -Properties for level-3 sections - - - - -<xsl:attribute-set name="section.level3.properties" use-attribute-sets="section.properties"> -</xsl:attribute-set> - - - -Description - -The properties that apply to the containing -block of a level-3 section, and therefore apply to -the whole section. This includes sect3 -elements and section elements at level 3. - - -For example, you could start each level-3 section on -a new page by using: -<xsl:attribute-set name="section.level3.properties"> - <xsl:attribute name="break-before">page</xsl:attribute> -</xsl:attribute-set> - - -This attribute set inherits attributes from the -general section.properties attribute set. - - - - - - - -section.level4.properties -attribute set - - -section.level4.properties -Properties for level-4 sections - - - - -<xsl:attribute-set name="section.level4.properties" use-attribute-sets="section.properties"> -</xsl:attribute-set> - - - -Description - -The properties that apply to the containing -block of a level-4 section, and therefore apply to -the whole section. This includes sect4 -elements and section elements at level 4. - - -For example, you could start each level-4 section on -a new page by using: -<xsl:attribute-set name="section.level4.properties"> - <xsl:attribute name="break-before">page</xsl:attribute> -</xsl:attribute-set> - - -This attribute set inherits attributes from the -general section.properties attribute set. - - - - - - - -section.level5.properties -attribute set - - -section.level5.properties -Properties for level-5 sections - - - - -<xsl:attribute-set name="section.level5.properties" use-attribute-sets="section.properties"> -</xsl:attribute-set> - - - -Description - -The properties that apply to the containing -block of a level-5 section, and therefore apply to -the whole section. This includes sect5 -elements and section elements at level 5. - - -For example, you could start each level-5 section on -a new page by using: -<xsl:attribute-set name="section.level5.properties"> - <xsl:attribute name="break-before">page</xsl:attribute> -</xsl:attribute-set> - - -This attribute set inherits attributes from the -general section.properties attribute set. - - - - - - - -section.level6.properties -attribute set - - -section.level6.properties -Properties for level-6 sections - - - - -<xsl:attribute-set name="section.level6.properties" use-attribute-sets="section.properties"> -</xsl:attribute-set> - - - -Description - -The properties that apply to the containing -block of a level 6 or lower section, and therefore apply to -the whole section. This includes -section elements at level 6 and lower. - - -For example, you could start each level-6 section on -a new page by using: -<xsl:attribute-set name="section.level6.properties"> - <xsl:attribute name="break-before">page</xsl:attribute> -</xsl:attribute-set> - - -This attribute set inherits attributes from the -general section.properties attribute set. - - - - - - - -figure.properties -attribute set - - -figure.properties -Properties associated with a figure - - - - -<xsl:attribute-set name="figure.properties" use-attribute-sets="formal.object.properties"></xsl:attribute-set> - - - -Description - -The styling for figures. - - - - - - -example.properties -attribute set - - -example.properties -Properties associated with a example - - - - -<xsl:attribute-set name="example.properties" use-attribute-sets="formal.object.properties"></xsl:attribute-set> - - - -Description - -The styling for examples. - - - - - - -equation.properties -attribute set - - -equation.properties -Properties associated with a equation - - - - -<xsl:attribute-set name="equation.properties" use-attribute-sets="formal.object.properties"></xsl:attribute-set> - - - -Description - -The styling for equations. - - - - - - -table.properties -attribute set - - -table.properties -Properties associated with the block surrounding a table - - - - -<xsl:attribute-set name="table.properties" use-attribute-sets="formal.object.properties"> - <xsl:attribute name="keep-together.within-column">auto</xsl:attribute> -</xsl:attribute-set> - - - -Description - -Block styling properties for tables. This parameter should really -have been called table.block.properties or something -like that, but we’re leaving it to avoid backwards-compatibility -problems. - -See also table.table.properties. - - - - - - -informalfigure.properties -attribute set - - -informalfigure.properties -Properties associated with an informalfigure - - - - -<xsl:attribute-set name="informalfigure.properties" use-attribute-sets="informal.object.properties"></xsl:attribute-set> - - - -Description - -The styling for informalfigures. - - - - - - -informalexample.properties -attribute set - - -informalexample.properties -Properties associated with an informalexample - - - - -<xsl:attribute-set name="informalexample.properties" use-attribute-sets="informal.object.properties"></xsl:attribute-set> - - - -Description - -The styling for informalexamples. - - - - - - -informalequation.properties -attribute set - - -informalequation.properties -Properties associated with an informalequation - - - - -<xsl:attribute-set name="informalequation.properties" use-attribute-sets="informal.object.properties"></xsl:attribute-set> - - - -Description - -The styling for informalequations. - - - - - - -informaltable.properties -attribute set - - -informaltable.properties -Properties associated with the block surrounding an informaltable - - - - -<xsl:attribute-set name="informaltable.properties" use-attribute-sets="informal.object.properties"></xsl:attribute-set> - - - -Description - -Block styling properties for informaltables. This parameter should really -have been called informaltable.block.properties or something -like that, but we’re leaving it to avoid backwards-compatibility -problems. - -See also table.table.properties. - - - - - - -procedure.properties -attribute set - - -procedure.properties -Properties associated with a procedure - - - - -<xsl:attribute-set name="procedure.properties" use-attribute-sets="formal.object.properties"> - <xsl:attribute name="keep-together.within-column">auto</xsl:attribute> -</xsl:attribute-set> - - - -Description - -The styling for procedures. - - - - - - -root.properties -attribute set - - -root.properties -The properties of the fo:root element - - - - -<xsl:attribute-set name="root.properties"> - <xsl:attribute name="font-family"> - <xsl:value-of select="$body.fontset"></xsl:value-of> - </xsl:attribute> - <xsl:attribute name="font-size"> - <xsl:value-of select="$body.font.size"></xsl:value-of> - </xsl:attribute> - <xsl:attribute name="text-align"> - <xsl:value-of select="$alignment"></xsl:value-of> - </xsl:attribute> - <xsl:attribute name="line-height"> - <xsl:value-of select="$line-height"></xsl:value-of> - </xsl:attribute> - <xsl:attribute name="font-selection-strategy">character-by-character</xsl:attribute> - <xsl:attribute name="line-height-shift-adjustment">disregard-shifts</xsl:attribute> - <xsl:attribute name="writing-mode"> - <xsl:value-of select="$direction.mode"></xsl:value-of> - </xsl:attribute> -</xsl:attribute-set> - - - -Description - -This property set is used on the fo:root element of -an FO file. It defines a set of default, global parameters. - - - - - - -qanda.title.properties -attribute set - - -qanda.title.properties -Properties for qanda set titles - - - - -<xsl:attribute-set name="qanda.title.properties"> - <xsl:attribute name="font-family"> - <xsl:value-of select="$title.font.family"></xsl:value-of> - </xsl:attribute> - <xsl:attribute name="font-weight">bold</xsl:attribute> - <!-- font size is calculated dynamically by qanda.heading template --> - <xsl:attribute name="keep-with-next.within-column">always</xsl:attribute> - <xsl:attribute name="space-before.minimum">0.8em</xsl:attribute> - <xsl:attribute name="space-before.optimum">1.0em</xsl:attribute> - <xsl:attribute name="space-before.maximum">1.2em</xsl:attribute> -</xsl:attribute-set> - - - -Description - -The properties common to all qanda set titles. - - - - - - -qanda.title.level1.properties -attribute set - - -qanda.title.level1.properties -Properties for level-1 qanda set titles - - - - -<xsl:attribute-set name="qanda.title.level1.properties"> - <xsl:attribute name="font-size"> - <xsl:value-of select="$body.font.master * 2.0736"></xsl:value-of> - <xsl:text>pt</xsl:text> - </xsl:attribute> -</xsl:attribute-set> - - - -Description - -The properties of level-1 qanda set titles. - - - - - - -qanda.title.level2.properties -attribute set - - -qanda.title.level2.properties -Properties for level-2 qanda set titles - - - - -<xsl:attribute-set name="qanda.title.level2.properties"> - <xsl:attribute name="font-size"> - <xsl:value-of select="$body.font.master * 1.728"></xsl:value-of> - <xsl:text>pt</xsl:text> - </xsl:attribute> -</xsl:attribute-set> - - - -Description - -The properties of level-2 qanda set titles. - - - - - - -qanda.title.level3.properties -attribute set - - -qanda.title.level3.properties -Properties for level-3 qanda set titles - - - - -<xsl:attribute-set name="qanda.title.level3.properties"> - <xsl:attribute name="font-size"> - <xsl:value-of select="$body.font.master * 1.44"></xsl:value-of> - <xsl:text>pt</xsl:text> - </xsl:attribute> -</xsl:attribute-set> - - - -Description - -The properties of level-3 qanda set titles. - - - - - - -qanda.title.level4.properties -attribute set - - -qanda.title.level4.properties -Properties for level-4 qanda set titles - - - - -<xsl:attribute-set name="qanda.title.level4.properties"> - <xsl:attribute name="font-size"> - <xsl:value-of select="$body.font.master * 1.2"></xsl:value-of> - <xsl:text>pt</xsl:text> - </xsl:attribute> -</xsl:attribute-set> - - - -Description - -The properties of level-4 qanda set titles. - - - - - - -qanda.title.level5.properties -attribute set - - -qanda.title.level5.properties -Properties for level-5 qanda set titles - - - - -<xsl:attribute-set name="qanda.title.level5.properties"> - <xsl:attribute name="font-size"> - <xsl:value-of select="$body.font.master"></xsl:value-of> - <xsl:text>pt</xsl:text> - </xsl:attribute> -</xsl:attribute-set> - - - -Description - -The properties of level-5 qanda set titles. - - - - - - -qanda.title.level6.properties -attribute set - - -qanda.title.level6.properties -Properties for level-6 qanda set titles - - - - -<xsl:attribute-set name="qanda.title.level6.properties"> - <xsl:attribute name="font-size"> - <xsl:value-of select="$body.font.master"></xsl:value-of> - <xsl:text>pt</xsl:text> - </xsl:attribute> -</xsl:attribute-set> - - - -Description - -The properties of level-6 qanda set titles. -This property set is actually -used for all titles below level 5. - - - - - - -article.appendix.title.properties -attribute set - - -article.appendix.title.properties -Properties for appendix titles that appear in an article - - - - -<xsl:attribute-set name="article.appendix.title.properties" use-attribute-sets="section.title.properties section.title.level1.properties"> - <xsl:attribute name="margin-{$direction.align.start}"> - <xsl:value-of select="$title.margin.left"></xsl:value-of> - </xsl:attribute> -</xsl:attribute-set> - - - -Description - -The properties for the title of an appendix that -appears inside an article. The default is to use -the properties of sect1 titles. - - - - - - -abstract.properties -attribute set - - -abstract.properties -Properties associated with the block surrounding an abstract - - - - -<xsl:attribute-set name="abstract.properties"> - <xsl:attribute name="start-indent">0.0in</xsl:attribute> - <xsl:attribute name="end-indent">0.0in</xsl:attribute> -</xsl:attribute-set> - - - -Description - -Block styling properties for abstract. - -See also abstract.title.properties. - - - - - - -abstract.title.properties -attribute set - - -abstract.title.properties -Properties for abstract titles - - - - -<xsl:attribute-set name="abstract.title.properties"> - <xsl:attribute name="font-family"><xsl:value-of select="$title.fontset"></xsl:value-of></xsl:attribute> - <xsl:attribute name="font-weight">bold</xsl:attribute> - <xsl:attribute name="keep-with-next.within-column">always</xsl:attribute> - <xsl:attribute name="keep-with-next.within-column">always</xsl:attribute> - <xsl:attribute name="space-before.optimum"><xsl:value-of select="concat($body.font.master, 'pt')"></xsl:value-of></xsl:attribute> - <xsl:attribute name="space-before.minimum"><xsl:value-of select="concat($body.font.master, 'pt * 0.8')"></xsl:value-of></xsl:attribute> - <xsl:attribute name="space-before.maximum"><xsl:value-of select="concat($body.font.master, 'pt * 1.2')"></xsl:value-of></xsl:attribute> - <xsl:attribute name="hyphenate">false</xsl:attribute> - <xsl:attribute name="text-align">center</xsl:attribute> -</xsl:attribute-set> - - - -Description - -The properties for abstract titles. - -See also abstract.properties. - - - - - - -index.page.number.properties -attribute set - - -index.page.number.properties -Properties associated with index page numbers - - - - -<xsl:attribute-set name="index.page.number.properties"> -</xsl:attribute-set> - - - -Description - -Properties associated with page numbers in indexes. -Changing color to indicate the page number is a link is -one possibility. - - - - - - - -revhistory.table.properties -attribute set - - -revhistory.table.properties -The properties of table used for formatting revhistory - - - - -<xsl:attribute-set name="revhistory.table.properties"> -</xsl:attribute-set> - - - -Description - -This property set defines appearance of revhistory table. - - - - - - -revhistory.table.cell.properties -attribute set - - -revhistory.table.cell.properties -The properties of table cells used for formatting revhistory - - - - -<xsl:attribute-set name="revhistory.table.cell.properties"> -</xsl:attribute-set> - - - -Description - -This property set defines appearance of individual cells in revhistory table. - - - - - - -revhistory.title.properties -attribute set - - -revhistory.title.properties -The properties of revhistory title - - - - -<xsl:attribute-set name="revhistory.title.properties"> -</xsl:attribute-set> - - - -Description - -This property set defines appearance of revhistory title. - - - - -Profiling - -The following parameters can be used for attribute-based -profiling of your document. For more information about profiling, see -Profiling (conditional text). - - - -profile.arch -string - - -profile.arch -Target profile for arch -attribute - - - - -<xsl:param name="profile.arch"></xsl:param> - - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - - - - -profile.audience -string - - -profile.audience -Target profile for audience -attribute - - - - -<xsl:param name="profile.audience"></xsl:param> - - - -Description - -Value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - - - - -profile.condition -string - - -profile.condition -Target profile for condition -attribute - - - - -<xsl:param name="profile.condition"></xsl:param> - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - - - - -profile.conformance -string - - -profile.conformance -Target profile for conformance -attribute - - - - -<xsl:param name="profile.conformance"></xsl:param> - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - - - - -profile.lang -string - - -profile.lang -Target profile for lang -attribute - - - - -<xsl:param name="profile.lang"></xsl:param> - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - - - - -profile.os -string - - -profile.os -Target profile for os -attribute - - - - -<xsl:param name="profile.os"></xsl:param> - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - - - - -profile.revision -string - - -profile.revision -Target profile for revision -attribute - - - - -<xsl:param name="profile.revision"></xsl:param> - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - - - - -profile.revisionflag -string - - -profile.revisionflag -Target profile for revisionflag -attribute - - - - -<xsl:param name="profile.revisionflag"></xsl:param> - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - - - - -profile.role -string - - -profile.role -Target profile for role -attribute - - - - -<xsl:param name="profile.role"></xsl:param> - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - -Note that role is often -used for other purposes than profiling. For example it is commonly -used to get emphasize in bold font: - -<emphasis role="bold">very important</emphasis> - -If you are using role for -these purposes do not forget to add values like bold to -value of this parameter. If you forgot you will get document with -small pieces missing which are very hard to track. - -For this reason it is not recommended to use role attribute for profiling. You should -rather use profiling specific attributes like userlevel, os, arch, condition, etc. - - - - - - - -profile.security -string - - -profile.security -Target profile for security -attribute - - - - -<xsl:param name="profile.security"></xsl:param> - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - - - - -profile.status -string - - -profile.status -Target profile for status -attribute - - - - -<xsl:param name="profile.status"></xsl:param> - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - - - - -profile.userlevel -string - - -profile.userlevel -Target profile for userlevel -attribute - - - - -<xsl:param name="profile.userlevel"></xsl:param> - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - - - - -profile.vendor -string - - -profile.vendor -Target profile for vendor -attribute - - - - -<xsl:param name="profile.vendor"></xsl:param> - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - - - - -profile.wordsize -string - - -profile.wordsize -Target profile for wordsize -attribute - - - - -<xsl:param name="profile.wordsize"></xsl:param> - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - - - - -profile.attribute -string - - -profile.attribute -Name of user-specified profiling attribute - - - - -<xsl:param name="profile.attribute"></xsl:param> - - - -Description - -This parameter is used in conjuction with -profile.value. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - - - - -profile.value -string - - -profile.value -Target profile for user-specified attribute - - - - -<xsl:param name="profile.value"></xsl:param> - - - -Description - -When you are using this parameter you must also specify name of -profiling attribute with parameter -profile.attribute. - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - - - - -profile.separator -string - - -profile.separator -Separator character for compound profile values - - - - -<xsl:param name="profile.separator">;</xsl:param> - - - -Description - -Separator character used for compound profile values. See profile.arch - - - - -Localization - - -l10n.gentext.language -string - - -l10n.gentext.language -Sets the gentext language - - - - -<xsl:param name="l10n.gentext.language"></xsl:param> - - - -Description - -If this parameter is set to any value other than the empty string, its -value will be used as the value for the language when generating text. Setting -l10n.gentext.language overrides any settings within the -document being formatted. - -It's much more likely that you might want to set the -l10n.gentext.default.language parameter. - - - - - - - l10n.gentext.default.language - string - - - l10n.gentext.default.language - Sets the default language for generated text - - - - -<xsl:param name="l10n.gentext.default.language">en</xsl:param> - - - -Description - -The value of the l10n.gentext.default.language -parameter is used as the language for generated text if no setting is provided -in the source document. - - - - - - -l10n.gentext.use.xref.language -boolean - - -l10n.gentext.use.xref.language -Use the language of target when generating cross-reference text? - - - - -<xsl:param name="l10n.gentext.use.xref.language" select="0"></xsl:param> - - - -Description - -If non-zero, the language of the target will be used when -generating cross reference text. Usually, the current -language is used when generating text (that is, the language of the -element that contains the cross-reference element). But setting this parameter -allows the language of the element pointed to to control -the generated text. - -Consider the following example: - - -<para lang="en">See also <xref linkend="chap3"/>.</para> - - - -Suppose that Chapter 3 happens to be written in German. -If l10n.gentext.use.xref.language is non-zero, the -resulting text will be something like this: - -
-See also Kapital 3. -
- -Where the more traditional rendering would be: - -
-See also Chapter 3. -
- -
-
- - - -l10n.lang.value.rfc.compliant -boolean - - -l10n.lang.value.rfc.compliant -Make value of lang attribute RFC compliant? - - - - -<xsl:param name="l10n.lang.value.rfc.compliant" select="1"></xsl:param> - - - -Description - -If non-zero, ensure that the values for all lang attributes in HTML output are RFC -compliantSection 8.1.1, Language Codes, in the HTML 4.0 Recommendation states that: - -
[RFC1766] defines and explains the language codes -that must be used in HTML documents. -Briefly, language codes consist of a primary code and a possibly -empty series of subcodes: - -language-code = primary-code ( "-" subcode )* - -And in RFC 1766, Tags for the Identification -of Languages, the EBNF for "language tag" is given as: - -Language-Tag = Primary-tag *( "-" Subtag ) -Primary-tag = 1*8ALPHA -Subtag = 1*8ALPHA - -
-
. - -by taking any underscore characters in any lang values found in source documents, and -replacing them with hyphen characters in output HTML files. For -example, zh_CN in a source document becomes -zh-CN in the HTML output form that source. - - -This parameter does not cause any case change in lang values, because RFC 1766 -explicitly states that all "language tags" (as it calls them) "are -to be treated as case insensitive". - -
- -
-
- - - -writing.mode -string - - -writing.mode -Direction of text flow based on locale - - - - -<xsl:param name="writing.mode"> - <xsl:call-template name="gentext"> - <xsl:with-param name="key">writing-mode</xsl:with-param> - <xsl:with-param name="lang"> - <xsl:call-template name="l10n.language"> - <xsl:with-param name="target" select="/*[1]"></xsl:with-param> - </xsl:call-template> - </xsl:with-param> - </xsl:call-template> -</xsl:param> - - - -Description - -Sets direction of text flow and text alignment based on locale. -The value is normally taken from the gentext file for the -lang attribute of the document's root element, using the -key name 'writing-mode' to look it up in the gentext file. -But the param can also be -set on the command line to override that gentext value. - -Accepted values are: - - - lr-tb - - Left-to-right text flow in each line, lines stack top to bottom. - - - - rl-tb - - Right-to-left text flow in each line, lines stack top to bottom. - - - - tb-rl - - Top-to-bottom text flow in each vertical line, lines stack right to left. - Supported by only a few XSL-FO processors. Not supported in HTML output. - - - - lr - - Shorthand for lr-tb. - - - - rl - - Shorthand for rl-tb. - - - - tb - - Shorthand for tb-rl. - - - - - - - - -
EBNF - - -ebnf.assignment -rtf - - -ebnf.assignment -The EBNF production assignment operator - - - - - -<xsl:param name="ebnf.assignment"> - <fo:inline font-family="{$monospace.font.family}"> - <xsl:text>::=</xsl:text> - </fo:inline> -</xsl:param> - - - -Description - -The ebnf.assignment parameter determines what -text is used to show assignment in productions -in productionsets. - -While ::= is common, so are several -other operators. - - - - - - -ebnf.statement.terminator -rtf - - -ebnf.statement.terminator -Punctuation that ends an EBNF statement. - - - - - -<xsl:param name="ebnf.statement.terminator"></xsl:param> - - - -Description - -The ebnf.statement.terminator parameter determines what -text is used to terminate each production -in productionset. - -Some notations end each statement with a period. - - - - -Prepress - - -crop.marks -boolean - - -crop.marks -Output crop marks? - - - - -<xsl:param name="crop.marks" select="0"></xsl:param> - - - -Description - -If non-zero, crop marks will be added to each page. Currently this -works only with XEP if you have xep.extensions set. - - - - - - -crop.mark.width -length - - -crop.mark.width -Width of crop marks. - - - - -<xsl:param name="crop.mark.width">0.5pt</xsl:param> - - - -Description - -Width of crop marks. Crop marks are controlled by -crop.marks parameter. - - - - - - -crop.mark.offset -length - - -crop.mark.offset -Length of crop marks. - - - - -<xsl:param name="crop.mark.offset">24pt</xsl:param> - - - -Description - -Length of crop marks. Crop marks are controlled by -crop.marks parameter. - - - - - - -crop.mark.bleed -length - - -crop.mark.bleed -Length of invisible part of crop marks. - - - - -<xsl:param name="crop.mark.bleed">6pt</xsl:param> - - - -Description - -Length of invisible part of crop marks. Crop marks are controlled by -crop.marks parameter. - - - - - -
- - - - Manpages Parameter Reference - - - This is reference documentation for all user-configurable - parameters in the DocBook XSL "manpages" stylesheet (for - generating groff/nroff output). Note that the manpages - stylesheet is a customization layer of the DocBook XSL HTML - stylesheet. Therefore, you can also use a number of HTML stylesheet parameters - to control manpages output (in addition to the - manpages-specific parameters listed in this section). - - - - Hyphenation, justification, and breaking - - -man.hyphenate -boolean - - -man.hyphenate -Enable hyphenation? - - - - -<xsl:param name="man.hyphenate">0</xsl:param> - - -Description - -If non-zero, hyphenation is enabled. - - -The default value for this parameter is zero because groff is -not particularly smart about how it does hyphenation; it can end up -hyphenating a lot of things that you don't want hyphenated. To -mitigate that, the default behavior of the stylesheets is to suppress -hyphenation of computer inlines, filenames, and URLs. (You can -override the default behavior by setting non-zero values for the -man.hyphenate.urls, -man.hyphenate.filenames, and -man.hyphenate.computer.inlines parameters.) But -the best way is still to just globally disable hyphenation, as the -stylesheets do by default. - -The only good reason to enabled hyphenation is if you have also -enabled justification (which is disabled by default). The reason is -that justified text can look very bad unless you also hyphenate it; to -quote the Hypenation node from the groff info page: - -
- Since the odds are not great for finding a set of - words, for every output line, which fit nicely on a line without - inserting excessive amounts of space between words, 'gtroff' - hyphenates words so that it can justify lines without inserting too - much space between words. -
- -So, if you set a non-zero value for the -man.justify parameter (to enable -justification), then you should probably also set a non-zero value for -man.hyphenate (to enable hyphenation).
-
- - -
-
- - - -man.hyphenate.urls -boolean - - -man.hyphenate.urls -Hyphenate URLs? - - - - -<xsl:param name="man.hyphenate.urls">0</xsl:param> - - -Description - -If zero (the default), hyphenation is suppressed for output of -the ulink url attribute. - - - If hyphenation is already turned off globally (that is, if - man.hyphenate is zero, setting - man.hyphenate.urls is not necessary. - - -If man.hyphenate.urls is non-zero, URLs -will not be treated specially and are subject to hyphenation just like -other words. - - - If you are thinking about setting a non-zero value for - man.hyphenate.urls in order to make long - URLs break across lines, you'd probably be better off - experimenting with setting the - man.break.after.slash parameter first. That - will cause long URLs to be broken after slashes. - - - - - - - -man.hyphenate.filenames -boolean - - -man.hyphenate.filenames -Hyphenate filenames? - - - - -<xsl:param name="man.hyphenate.filenames">0</xsl:param> - - -Description - -If zero (the default), hyphenation is suppressed for -filename output. - - - If hyphenation is already turned off globally (that is, if - man.hyphenate is zero, setting - man.hyphenate.filenames is not - necessary. - - -If man.hyphenate.filenames is non-zero, -filenames will not be treated specially and are subject to hyphenation -just like other words. - - - If you are thinking about setting a non-zero value for - man.hyphenate.filenames in order to make long - filenames/pathnames break across lines, you'd probably be better off - experimenting with setting the - man.break.after.slash parameter first. That - will cause long pathnames to be broken after slashes. - - - - - - - -man.hyphenate.computer.inlines -boolean - - -man.hyphenate.computer.inlines -Hyphenate computer inlines? - - - - -<xsl:param name="man.hyphenate.computer.inlines">0</xsl:param> - - -Description - -If zero (the default), hyphenation is suppressed for -computer inlines such as environment variables, -constants, etc. This parameter current affects output of the following -elements: - - - classname - constant - envar - errorcode - option - replaceable - userinput - type - varname - - - - - If hyphenation is already turned off globally (that is, if - man.hyphenate is zero, setting the - man.hyphenate.computer.inlines is not - necessary. - - -If man.hyphenate.computer.inlines is -non-zero, computer inlines will not be treated specially and will be -hyphenated like other words when needed. - - - - - - -man.justify -boolean - - -man.justify -Justify text to both right and left margins? - - - - -<xsl:param name="man.justify">0</xsl:param> - - -Description - -If non-zero, text is justified to both the right and left -margins (or, in roff terminology, "adjusted and filled" to both the -right and left margins). If zero (the default), text is adjusted to -the left margin only -- producing what is traditionally called -"ragged-right" text. - - -The default value for this parameter is zero because justified -text looks good only when it is also hyphenated. Without hyphenation, -excessive amounts of space often end up getting between words, in -order to "pad" lines out to align on the right margin. - -The problem is that groff is not particularly smart about how it -does hyphenation; it can end up hyphenating a lot of things that you -don't want hyphenated. So, disabling both justification and -hyphenation ensures that hyphens won't get inserted where you don't -want to them, and you don't end up with lines containing excessive -amounts of space between words. - -However, if do you decide to set a non-zero value for the -man.justify parameter (to enable -justification), then you should probably also set a non-zero value for -man.hyphenate (to enable hyphenation). - -Yes, these default settings run counter to how most existing man -pages are formatted. But there are some notable exceptions, such as -the perl man pages. - - - - - - -man.break.after.slash -boolean - - -man.break.after.slash -Enable line-breaking after slashes? - - - - -<xsl:param name="man.break.after.slash">0</xsl:param> - - -Description - -If non-zero, line-breaking after slashes is enabled. This is -mainly useful for causing long URLs or pathnames/filenames to be -broken up or "wrapped" across lines (though it also has the side -effect of sometimes causing relatively short URLs and pathnames to be -broken up across lines too). - -If zero (the default), line-breaking after slashes is -disabled. In that case, strings containing slashes (for example, URLs -or filenames) are not broken across lines, even if they exceed the -maximum column widith. - - - If you set a non-zero value for this parameter, check your - man-page output carefuly afterwards, in order to make sure that the - setting has not introduced an excessive amount of breaking-up of URLs - or pathnames. If your content contains mostly short URLs or - pathnames, setting a non-zero value for - man.break.after.slash will probably result in - in a significant number of relatively short URLs and pathnames being - broken across lines, which is probably not what you want. - - - - - -
- Indentation - - -man.indent.width -length - - -man.indent.width -Specifies width used for adjusted indents - - - - -<xsl:param name="man.indent.width">4</xsl:param> - - - -Description -The man.indent.width parameter specifies -the width used for adjusted indents. The value of -man.indent.width is used for indenting of -lists, verbatims, headings, and elsewhere, depending on whether the -values of certain man.indent.* boolean parameters -are non-zero. - -The value of man.indent.width should -include a valid roff measurement unit (for example, -n or u). The default value of -4n specifies a 4-en width; when viewed on a -console, that amounts to the width of four characters. For details -about roff measurment units, see the Measurements -node in the groff info page. - - - - - - -man.indent.refsect -boolean - - -man.indent.refsect -Adjust indentation of refsect* and refsection? - - - - -<xsl:param name="man.indent.refsect" select="0"></xsl:param> - - -Description - -If the value of man.indent.refsect is -non-zero, the width of the left margin for -refsect1, refsect2 and -refsect3 contents and titles (and first-level, -second-level, and third-level nested -refsectioninstances) is adjusted by the value of -the man.indent.width parameter. With -man.indent.width set to its default value of -3n, the main results are that: - - - - contents of refsect1 are output with a - left margin of three characters instead the roff default of seven - or eight characters - - - contents of refsect2 are displayed in - console output with a left margin of six characters instead the of - the roff default of seven characters - - - the contents of refsect3 and nested - refsection instances are adjusted - accordingly. - - - -If instead the value of man.indent.refsect is -zero, no margin adjustment is done for refsect* -output. - - - If your content is primarly comprised of - refsect1 and refsect2 content - (or the refsection equivalent) – with few or - no refsect3 or lower nested sections , you may be - able to “conserve” space in your output by setting - man.indent.refsect to a non-zero value. Doing - so will “squeeze” the left margin in such as way as to provide an - additional four characters of “room” per line in - refsect1 output. That extra room may be useful - if, for example, you have many verbatim sections with long lines in - them. - - - - - - - -man.indent.blurbs -boolean - - -man.indent.blurbs -Adjust indentation of blurbs? - - - - -<xsl:param name="man.indent.blurbs" select="1"></xsl:param> - - -Description - -If the value of man.indent.blurbs is -non-zero, the width of the left margin for -authorblurb, personblurb, and -contrib output is set to the value of the -man.indent.width parameter -(3n by default). If instead the value of -man.indent.blurbs is zero, the built-in roff -default width (7.2n) is used. - - - - - - -man.indent.lists -boolean - - -man.indent.lists -Adjust indentation of lists? - - - - -<xsl:param name="man.indent.lists" select="1"></xsl:param> - - -Description - -If the value of man.indent.lists is -non-zero, the width of the left margin for list items in -itemizedlist, -orderedlist, -variablelist output (and output of some other -lists) is set to the value of the -man.indent.width parameter -(4n by default). If instead the value of -man.indent.lists is zero, the built-in roff -default width (7.2n) is used. - - - - - - -man.indent.verbatims -boolean - - -man.indent.verbatims -Adjust indentation of verbatims? - - - - -<xsl:param name="man.indent.verbatims" select="1"></xsl:param> - - -Description - -If the value of man.indent.verbatims is -non-zero, the width of the left margin for output of verbatim -environments (programlisting, -screen, and so on) is set to the value of the -man.indent.width parameter -(3n by default). If instead the value of -man.indent.verbatims is zero, the built-in roff -default width (7.2n) is used. - - - - - - Fonts - - -man.font.funcprototype -string - - -man.font.funcprototype -Specifies font for funcprototype output - - - - - <xsl:param name="man.font.funcprototype">BI</xsl:param> - - - -Description - -The man.font.funcprototype parameter -specifies the font for funcprototype output. It -should be a valid roff font name, such as BI or -B. - - - - - - -man.font.funcsynopsisinfo -string - - -man.font.funcsynopsisinfo -Specifies font for funcsynopsisinfo output - - - - - <xsl:param name="man.font.funcsynopsisinfo">B</xsl:param> - - - -Description - -The man.font.funcsynopsisinfo parameter -specifies the font for funcsynopsisinfo output. It -should be a valid roff font name, such as B or -I. - - - - - - -man.font.links -string - - -man.font.links -Specifies font for links - - - - -<xsl:param name="man.font.links">B</xsl:param> - - - -Description - -The man.font.links parameter -specifies the font for output of links (ulink instances -and any instances of any element with an xlink:href attribute). - -The value of man.font.links must be - either B or I, or empty. If -the value is empty, no font formatting is applied to links. - -If you set man.endnotes.are.numbered and/or -man.endnotes.list.enabled to zero (disabled), then -you should probably also set an empty value for -man.font.links. But if -man.endnotes.are.numbered is non-zero (enabled), -you should probably keep -man.font.links set to -B or IThe - main purpose of applying a font format to links in most output -formats it to indicate that the formatted text is -“clickable”; given that links rendered in man pages are -not “real” hyperlinks that users can click on, it might -seem like there is never a good reason to have font formatting for -link contents in man output. -In fact, if you suppress the -display of inline link references (by setting -man.endnotes.are.numbered to zero), there is no -good reason to apply font formatting to links. However, if -man.endnotes.are.numbered is non-zero, having -font formatting for links (arguably) serves a purpose: It provides -“context” information about exactly what part of the text -is being “annotated” by the link. Depending on how you -mark up your content, that context information may or may not -have value.. - - -Related Parameters - man.endnotes.list.enabled, - man.endnotes.are.numbered - - - - - - -man.font.table.headings -string - - -man.font.table.headings -Specifies font for table headings - - - - - <xsl:param name="man.font.table.headings">B</xsl:param> - - - -Description - -The man.font.table.headings parameter -specifies the font for table headings. It should be -a valid roff font, such as B or -I. - - - - - - -man.font.table.title -string - - -man.font.table.title -Specifies font for table headings - - - - - <xsl:param name="man.font.table.title">B</xsl:param> - - - -Description - -The man.font.table.title parameter -specifies the font for table titles. It should be -a valid roff font, such as B or -I. - - - - - - SYNOPSIS section - - -man.funcsynopsis.style -list -ansi -kr - - -man.funcsynopsis.style -What style of funcsynopsis should be generated? - - -<xsl:param name="man.funcsynopsis.style">ansi</xsl:param> - -Description -If man.funcsynopsis.style is -ansi, ANSI-style function synopses are -generated for a funcsynopsis, otherwise K&R-style -function synopses are generated. - - - - - AUTHORS and COPYRIGHT sections - - -man.authors.section.enabled -boolean - - -man.authors.section.enabled -Display auto-generated AUTHORS section? - - - -<xsl:param name="man.authors.section.enabled">1</xsl:param> - - -Description - -If the value of -man.authors.section.enabled is non-zero -(the default), then an AUTHORS section is -generated near the end of each man page. The output of the -AUTHORS section is assembled from any -author, editor, and othercredit -metadata found in the contents of the child info or -refentryinfo (if any) of the refentry -itself, or from any author, editor, and -othercredit metadata that may appear in info -contents of any ancestors of the refentry. - -If the value of -man.authors.section.enabled is zero, the -the auto-generated AUTHORS section is -suppressed. - -Set the value of - man.authors.section.enabled to zero if - you want to have a manually created AUTHORS - section in your source, and you want it to appear in output - instead of the auto-generated AUTHORS - section. - - - - - -man.copyright.section.enabled -boolean - - -man.copyright.section.enabled -Display auto-generated COPYRIGHT section? - - - -<xsl:param name="man.copyright.section.enabled">1</xsl:param> - - -Description - -If the value of -man.copyright.section.enabled is non-zero -(the default), then a COPYRIGHT section is -generated near the end of each man page. The output of the -COPYRIGHT section is assembled from any -copyright and legalnotice metadata found in -the contents of the child info or -refentryinfo (if any) of the refentry -itself, or from any copyright and -legalnotice metadata that may appear in info -contents of any ancestors of the refentry. - -If the value of -man.copyright.section.enabled is zero, the -the auto-generated COPYRIGHT section is -suppressed. - -Set the value of - man.copyright.section.enabled to zero if - you want to have a manually created COPYRIGHT - section in your source, and you want it to appear in output - instead of the auto-generated COPYRIGHT - section. - - - - - Endnotes and link handling - - -man.endnotes.list.enabled -boolean - - -man.endnotes.list.enabled -Display endnotes list at end of man page? - - - - -<xsl:param name="man.endnotes.list.enabled">1</xsl:param> - - - -Description - -If the value of man.endnotes.list.enabled is -non-zero (the default), then an endnotes list is added to the end of -the output man page. - -If the value of man.endnotes.list.enabled is -zero, the list is suppressed — unless link numbering is enabled (that -is, if man.endnotes.are.numbered is non-zero), in -which case, that setting overrides the -man.endnotes.list.enabled setting, and the -endnotes list is still displayed. The reason is that inline -numbering of notesources associated with endnotes only makes sense -if a (numbered) list of endnotes is also generated. - - - Leaving - man.endnotes.list.enabled at its default - (non-zero) value ensures that no “out of line” information (such - as the URLs for hyperlinks and images) gets lost in your - man-page output. It just gets “rearranged”. - So if you’re thinking about disabling endnotes listing by - setting the value of - man.endnotes.list.enabled to zero: - Before you do so, first take some time to carefully consider - the information needs and experiences of your users. The “out - of line” information has value even if the presentation of it - in text output is not as interactive as it may be in other - output formats. - As far as the specific case of URLs: Even though the URLs - displayed in text output may not be “real” (clickable) - hyperlinks, many X terminals have convenience features for - recognizing URLs and can, for example, present users with - an options to open a URL in a browser with the user clicks on - the URL is a terminal window. And short of those, users with X - terminals can always manually cut and paste the URLs into a web - browser. - Also, note that various “man to html” tools, such as the - widely used man2html (VH-Man2html) - application, automatically mark up URLs with a@href markup - during conversion — resulting in “real” hyperlinks in HTML - output from those tools. - - -To “turn off” numbering of endnotes in the -endnotes list, set man.endnotes.are.numbered -to zero. The endnotes list will -still be displayed; it will just be displayed without the -numbersIt can still make sense to have -the list of endnotes displayed even if you have endnotes numbering turned -off. In that case, your endnotes list basically becomes a “list -of references” without any association with specific text in -your document. This is probably the best option if you find the inline -endnotes numbering obtrusive. Your users will still have access to all the “out of line” -such as URLs for hyperlinks. - - -The default heading for the endnotes list is -NOTES. To change that, set a non-empty -value for the man.endnotes.list.heading -parameter. - -In the case of notesources that are links: Along with the -URL for each link, the endnotes list includes the contents of the -link. The list thus includes only non-empty - -A “non-empty” link is one that looks like -this: <ulink url="http://docbook.sf.net/snapshot/xsl/doc/manpages/">manpages</ulink> -an “empty link” is on that looks like this: <ulink url="http://docbook.sf.net/snapshot/xsl/doc/manpages/"/> - links. - -Empty links are never included, and never numbered. They are simply -displayed inline, without any numbering. - -In addition, if there are multiple instances of links in a -refentry that have the same URL, the URL is listed only -once. The contents listed for that link in the endnotes list are -the contents of the first link which has that URL. - -If you disable endnotes listing, you should probably also set -man.links.are.underlined to zero (to disable -link underlining). - - - - - -man.endnotes.list.heading -string - - -man.endnotes.list.heading -Specifies an alternate name for endnotes list - - - - -<xsl:param name="man.endnotes.list.heading"></xsl:param> - - - -Description - -If the value of the -man.endnotes.are.numbered parameter -and/or the man.endnotes.list.enabled -parameter is non-zero (the defaults for both are non-zero), a -numbered list of endnotes is generated near the end of each man -page. The default heading for the list of endnotes is the -equivalent of the English word NOTES in -the current locale. To cause an alternate heading to be displayed, -set a non-empty value for the -man.endnotes.list.heading parameter — -for example, REFERENCES. - - - - - -man.endnotes.are.numbered -boolean - - -man.endnotes.are.numbered -Number endnotes? - - - - -<xsl:param name="man.endnotes.are.numbered">1</xsl:param> - - - -Description - -If the value of man.endnotes.are.numbered is -non-zero (the default), then for each non-empty -A “non-empty” notesource is one that looks like -this: <ulink url="http://docbook.sf.net/snapshot/xsl/doc/manpages/">manpages</ulink> -an “empty” notesource is on that looks like this: <ulink url="http://docbook.sf.net/snapshot/xsl/doc/manpages/"/> - “notesource”: - - - - a number (in square brackets) is displayed inline after the - rendered inline contents (if any) of the notesource - - - the contents of the notesource are included in a - numbered list of endnotes that is generated at the end of - each man page; the number for each endnote corresponds to - the inline number for the notesource with which it is - associated - - -The default heading for the list of endnotes is -NOTES. To output a different heading, set a value -for the man.endnotes.section.heading -parameter. - - - The endnotes list is also displayed (but without - numbers) if the value of - man.endnotes.list.enabled is - non-zero. - - - -If the value of man.endnotes.are.numbered is -zero, numbering of endnotess is suppressed; only inline -contents (if any) of the notesource are displayed inline. - - If you are thinking about disabling endnote numbering by setting - the value of man.endnotes.are.numbered to zero, - before you do so, first take some time to carefully - consider the information needs and experiences of your users. The - square-bracketed numbers displayed inline after notesources may seem - obstrusive and aesthetically unpleasingAs far as notesources that are links, ytou might - think it would be better to just display URLs for non-empty - links inline, after their content, rather than displaying - square-bracketed numbers all over the place. But it's not better. In - fact, it's not even practical, because many (most) URLs for links - are too long to be displayed inline. They end up overflowing the - right margin. You can set a non-zero value for - man.break.after.slash parameter to deal with - that, but it could be argued that what you end up with is at least - as ugly, and definitely more obstrusive, then having short - square-bracketed numbers displayed inline., - - but in a text-only output format, the - numbered-notesources/endnotes-listing mechanism is the only - practical way to handle this kind of content. - - Also, users of “text based” browsers such as - lynx will already be accustomed to seeing inline - numbers for links. And various "man to html" applications, such as - the widely used man2html (VH-Man2html) - application, can automatically turn URLs into "real" HTML hyperlinks - in output. So leaving man.endnotes.are.numbered - at its default (non-zero) value ensures that no information is - lost in your man-page output. It just gets - “rearranged”. - - -The handling of empty links is not affected by this -parameter. Empty links are handled simply by displaying their URLs -inline. Empty links are never auto-numbered. - -If you disable endnotes numbering, you should probably also set -man.font.links to an empty value (to -disable font formatting for links. - - -Related Parameters - man.endnotes.list.enabled, - man.font.links - - - - - - man.base.url.for.relative.links - string - - - man.base.url.for.relative.links - Specifies a base URL for relative links - - - - <xsl:param name="man.base.url.for.relative.links">[set $man.base.url.for.relative.links]/</xsl:param> - - - Description - - For any “notesource” listed in the auto-generated - “NOTES” section of output man pages (which is generated when - the value of the - man.endnotes.list.enabled parameter - is non-zero), if the notesource is a link source with a - relative URI, the URI is displayed in output with the value - of the - man.base.url.for.relative.links - parameter prepended to the value of the link URI. - - - A link source is an notesource that references an - external resource: - - - a ulink element with a url attribute - - - any element with an xlink:href attribute - - - an imagedata, audiodata, or - videodata element - - - - - - If you use relative URIs in link sources in your DocBook - refentry source, and you leave - man.base.url.for.relative.links - unset, the relative links will appear “as is” in the “Notes” - section of any man-page output generated from your source. - That’s probably not what you want, because such relative - links are only usable in the context of HTML output. So, to - make the links meaningful and usable in the context of - man-page output, set a value for - man.base.url.for.relative.links that - points to the online version of HTML output generated from - your DocBook refentry source. For - example: - <xsl:param name="man.base.url.for.relative.links" - >http://www.kernel.org/pub/software/scm/git/docs/</xsl:param> - - - - - Related Parameters - man.endnotes.list.enabled - - - - - - Lists - - -man.segtitle.suppress -boolean - - -man.segtitle.suppress -Suppress display of segtitle contents? - - - - -<xsl:param name="man.segtitle.suppress" select="0"></xsl:param> - - -Description - -If the value of man.segtitle.suppress is -non-zero, then display of segtitle contents is -suppressed in output. - - - - - - Character/string substitution - - -man.charmap.enabled -boolean - - -man.charmap.enabled -Apply character map before final output? - - - - -<xsl:param name="man.charmap.enabled" select="1"></xsl:param> - - - -Description - -If the value of the man.charmap.enabled -parameter is non-zero, a "character map" is used to substitute certain -Unicode symbols and special characters with appropriate roff/groff -equivalents, just before writing each man-page file to the -filesystem. If instead the value of -man.charmap.enabled is zero, Unicode characters -are passed through "as is". - -Details - -For converting certain Unicode symbols and special characters in -UTF-8 or UTF-16 encoded XML source to appropriate groff/roff -equivalents in man-page output, the DocBook XSL Stylesheets -distribution includes a roff character map that is compliant with the XSLT character -map format as detailed in the XSLT 2.0 specification. The map -contains more than 800 character mappings and can be considered the -standard roff character map for the distribution. - -You can use the man.charmap.uri -parameter to specify a URI for the location for an alternate roff -character map to use in place of the standard roff character map -provided in the distribution. - -You can also use a subset of a character map. For details, -see the man.charmap.use.subset, -man.charmap.subset.profile, and -man.charmap.subset.profile.english -parameters. - - - - - - - -man.charmap.uri -uri - - -man.charmap.uri -URI for custom roff character map - - - - -<xsl:param name="man.charmap.uri"></xsl:param> - - - -Description - -For converting certain Unicode symbols and special characters in -UTF-8 or UTF-16 encoded XML source to appropriate groff/roff -equivalents in man-page output, the DocBook XSL Stylesheets -distribution includes an XSLT character -map. That character map can be considered the standard roff -character map for the distribution. - -If the value of the man.charmap.uri -parameter is non-empty, that value is used as the URI for the location -for an alternate roff character map to use in place of the standard -roff character map provided in the distribution. - - -Do not set a value for man.charmap.uri -unless you have a custom roff character map that differs from the -standard one provided in the distribution. - - - - - - -man.charmap.use.subset -boolean - - -man.charmap.use.subset -Use subset of character map instead of full map? - - - - -<xsl:param name="man.charmap.use.subset" select="1"></xsl:param> - - - -Description - -If the value of the -man.charmap.use.subset parameter is non-zero, -a subset of the roff character map is used instead of the full roff -character map. The profile of the subset used is determined either -by the value of the -man.charmap.subset.profile -parameter (if the source is not in English) or the -man.charmap.subset.profile.english -parameter (if the source is in English). - - - You may want to experiment with setting a non-zero value of - man.charmap.use.subset, so that the full - character map is used. Depending on which XSLT engine you run, - setting a non-zero value for - man.charmap.use.subset may significantly - increase the time needed to process your documents. Or it may - not. For example, if you set it and run it with xsltproc, it seems - to dramatically increase processing time; on the other hand, if you - set it and run it with Saxon, it does not seem to increase - processing time nearly as much. - - If processing time is not a important concern and/or you can - tolerate the increase in processing time imposed by using the full - character map, set man.charmap.use.subset to - zero. - - -Details - -For converting certain Unicode symbols and special characters in -UTF-8 or UTF-16 encoded XML source to appropriate groff/roff -equivalents in man-page output, the DocBook XSL Stylesheets -distribution includes a roff character map that is compliant with the XSLT character -map format as detailed in the XSLT 2.0 specification. The map -contains more than 800 character mappings and can be considered the -standard roff character map for the distribution. - - -You can use the man.charmap.uri -parameter to specify a URI for the location for an alternate roff -character map to use in place of the standard roff character map -provided in the distribution. - - -Because it is not terrifically efficient to use the standard -800-character character map in full -- and for most (or all) users, -never necessary to use it in full -- the DocBook XSL Stylesheets -support a mechanism for using, within any given character map, a -subset of character mappings instead of the full set. You can use the -man.charmap.subset.profile or -man.charmap.subset.profile.english -parameter to tune the profile of that subset to use. - - - - - - - -man.charmap.subset.profile -string - - -man.charmap.subset.profile -Profile of character map subset - - - - -<xsl:param name="man.charmap.subset.profile"> -@*[local-name() = 'block'] = 'Miscellaneous Technical' or -(@*[local-name() = 'block'] = 'C1 Controls And Latin-1 Supplement (Latin-1 Supplement)' and - (@*[local-name() = 'class'] = 'symbols' or - @*[local-name() = 'class'] = 'letters') -) or -@*[local-name() = 'block'] = 'Latin Extended-A' -or -(@*[local-name() = 'block'] = 'General Punctuation' and - (@*[local-name() = 'class'] = 'spaces' or - @*[local-name() = 'class'] = 'dashes' or - @*[local-name() = 'class'] = 'quotes' or - @*[local-name() = 'class'] = 'bullets' - ) -) or -@*[local-name() = 'name'] = 'HORIZONTAL ELLIPSIS' or -@*[local-name() = 'name'] = 'WORD JOINER' or -@*[local-name() = 'name'] = 'SERVICE MARK' or -@*[local-name() = 'name'] = 'TRADE MARK SIGN' or -@*[local-name() = 'name'] = 'ZERO WIDTH NO-BREAK SPACE' -</xsl:param> - - - -Description - -If the value of the -man.charmap.use.subset parameter is non-zero, -and your DocBook source is not written in English (that - is, if the lang or xml:lang attribute on the root element - in your DocBook source or on the first refentry - element in your source has a value other than - en), then the character-map subset specified - by the man.charmap.subset.profile - parameter is used instead of the full roff character map. - -Otherwise, if the lang or xml:lang attribute on the root - element in your DocBook - source or on the first refentry element in your source - has the value en or if it has no lang or xml:lang attribute, then the character-map - subset specified by the - man.charmap.subset.profile.english - parameter is used instead of - man.charmap.subset.profile. - -The difference between the two subsets is that - man.charmap.subset.profile provides - mappings for characters in Western European languages that are - not part of the Roman (English) alphabet (ASCII character set). - -The value of man.charmap.subset.profile -is a string representing an XPath expression that matches attribute -names and values for output-character -elements in the character map. - -The attributes supported in the standard roff character map included in the distribution are: - - - character - - a raw Unicode character or numeric Unicode - character-entity value (either in decimal or hex); all - characters have this attribute - - - - name - - a standard full/long ISO/Unicode character name (e.g., - "OHM SIGN"); all characters have this attribute - - - - block - - a standard Unicode "block" name (e.g., "General - Punctuation"); all characters have this attribute. For the full - list of Unicode block names supported in the standard roff - character map, see . - - - - class - - a class of characters (e.g., "spaces"). Not all - characters have this attribute; currently, it is used only with - certain characters within the "C1 Controls And Latin-1 - Supplement" and "General Punctuation" blocks. For details, see - . - - - - entity - - an ISO entity name (e.g., "ohm"); not all characters - have this attribute, because not all characters have ISO entity - names; for example, of the 800 or so characters in the standard - roff character map included in the distribution, only around 300 - have ISO entity names. - - - - - string - - a string representing an roff/groff escape-code (with - "@esc@" used in place of the backslash), or a simple ASCII - string; all characters in the roff character map have this - attribute - - - - -The value of man.charmap.subset.profile -is evaluated as an XPath expression at run-time to select a portion of -the roff character map to use. You can tune the subset used by adding -or removing parts. For example, if you need to use a wide range of -mathematical operators in a document, and you want to have them -converted into roff markup properly, you might add the following: - - @*[local-name() = 'block'] ='MathematicalOperators' - -That will cause a additional set of around 67 additional "math" -characters to be converted into roff markup. - - -Depending on which XSLT engine you use, either the EXSLT -dyn:evaluate extension function (for xsltproc or -Xalan) or saxon:evaluate extension function (for -Saxon) are used to dynamically evaluate the value of -man.charmap.subset.profile at run-time. If you -don't use xsltproc, Saxon, Xalan -- or some other XSLT engine that -supports dyn:evaluate -- you must either set the -value of the man.charmap.use.subset parameter -to zero and process your documents using the full character map -instead, or set the value of the -man.charmap.enabled parameter to zero instead -(so that character-map processing is disabled completely. - - -An alternative to using -man.charmap.subset.profile is to create your -own custom character map, and set the value of -man.charmap.uri to the URI/filename for -that. If you use a custom character map, you will probably want to -include in it just the characters you want to use, and so you will -most likely also want to set the value of -man.charmap.use.subset to zero. -You can create a -custom character map by making a copy of the standard roff character map provided in the distribution, and -then adding to, changing, and/or deleting from that. - - -If you author your DocBook XML source in UTF-8 or UTF-16 -encoding and aren't sure what OSes or environments your man-page -output might end up being viewed on, and not sure what version of -nroff/groff those environments might have, you should be careful about -what Unicode symbols and special characters you use in your source and -what parts you add to the value of -man.charmap.subset.profile. -Many of the escape codes used are specific to groff and using -them may not provide the expected output on an OS or environment that -uses nroff instead of groff. -On the other hand, if you intend for your man-page output to be -viewed only on modern systems (for example, GNU/Linux systems, FreeBSD -systems, or Cygwin environments) that have a good, up-to-date groff, -then you can safely include a wide range of Unicode symbols and -special characters in your UTF-8 or UTF-16 encoded DocBook XML source -and add any of the supported Unicode block names to the value of -man.charmap.subset.profile. - - - -For other details, see the documentation for the -man.charmap.use.subset parameter. - -Supported Unicode block names and "class" values - - - Below is the full list of Unicode block names and "class" - values supported in the standard roff stylesheet provided in the - distribution, along with a description of which codepoints from the - Unicode range corresponding to that block name or block/class - combination are supported. - - - - C1 Controls And Latin-1 Supplement (Latin-1 Supplement) (x00a0 to x00ff) - class values - - - symbols - - - letters - - - - - Latin Extended-A (x0100 to x017f, partial) - - - Spacing Modifier Letters (x02b0 to x02ee, partial) - - - Greek and Coptic (x0370 to x03ff, partial) - - - General Punctuation (x2000 to x206f, partial) - class values - - - spaces - - - dashes - - - quotes - - - daggers - - - bullets - - - leaders - - - primes - - - - - - Superscripts and Subscripts (x2070 to x209f) - - - Currency Symbols (x20a0 to x20b1) - - - Letterlike Symbols (x2100 to x214b) - - - Number Forms (x2150 to x218f) - - - Arrows (x2190 to x21ff, partial) - - - Mathematical Operators (x2200 to x22ff, partial) - - - Control Pictures (x2400 to x243f) - - - Enclosed Alphanumerics (x2460 to x24ff) - - - Geometric Shapes (x25a0 to x25f7, partial) - - - Miscellaneous Symbols (x2600 to x26ff, partial) - - - Dingbats (x2700 to x27be, partial) - - - Alphabetic Presentation Forms (xfb00 to xfb04 only) - - - - - - - - -man.charmap.subset.profile.english -string - - -man.charmap.subset.profile.english -Profile of character map subset - - - - -<xsl:param name="man.charmap.subset.profile.english"> -@*[local-name() = 'block'] = 'Miscellaneous Technical' or -(@*[local-name() = 'block'] = 'C1 Controls And Latin-1 Supplement (Latin-1 Supplement)' and - @*[local-name() = 'class'] = 'symbols') -or -(@*[local-name() = 'block'] = 'General Punctuation' and - (@*[local-name() = 'class'] = 'spaces' or - @*[local-name() = 'class'] = 'dashes' or - @*[local-name() = 'class'] = 'quotes' or - @*[local-name() = 'class'] = 'bullets' - ) -) or -@*[local-name() = 'name'] = 'HORIZONTAL ELLIPSIS' or -@*[local-name() = 'name'] = 'WORD JOINER' or -@*[local-name() = 'name'] = 'SERVICE MARK' or -@*[local-name() = 'name'] = 'TRADE MARK SIGN' or -@*[local-name() = 'name'] = 'ZERO WIDTH NO-BREAK SPACE' -</xsl:param> - - - -Description - -If the value of the - man.charmap.use.subset parameter is - non-zero, and your DocBook source is written in English (that - is, if its lang or xml:lang attribute on the root element - in your DocBook source or on the first refentry - element in your source has the value en or if - it has no lang or xml:lang attribute), then the - character-map subset specified by the - man.charmap.subset.profile.english - parameter is used instead of the full roff character map. - -Otherwise, if the lang or xml:lang attribute - on the root element in your DocBook source or on the first - refentry element in your source has a value other - than en, then the character-map subset - specified by the - man.charmap.subset.profile parameter is - used instead of - man.charmap.subset.profile.english. - -The difference between the two subsets is that - man.charmap.subset.profile provides - mappings for characters in Western European languages that are - not part of the Roman (English) alphabet (ASCII character set). - -The value of man.charmap.subset.profile.english -is a string representing an XPath expression that matches attribute -names and values for output-character elements in the character map. - -For other details, see the documentation for the -man.charmap.subset.profile.english and -man.charmap.use.subset parameters. - - - - - - -man.string.subst.map.local.pre -string - - -man.string.subst.map.local.pre -Specifies “local” string substitutions - - - - - <xsl:param name="man.string.subst.map.local.pre"></xsl:param> - - - -Description - -Use the man.string.subst.map.local.pre -parameter to specify any “local” string substitutions to perform over -the entire roff source for each man page before -performing the string substitutions specified by the man.string.subst.map parameter. - -For details about the format of this parameter, see the -documentation for the man.string.subst.map -parameter. - - - - - - -man.string.subst.map -rtf - - -man.string.subst.map -Specifies a set of string substitutions - - - - -<xsl:param name="man.string.subst.map"> - - <!-- * remove no-break marker at beginning of line (stylesheet artifact) --> - <ss:substitution oldstring="▒▀" newstring="▒"></ss:substitution> - <!-- * replace U+2580 no-break marker (stylesheet-added) w/ no-break space --> - <ss:substitution oldstring="▀" newstring="\ "></ss:substitution> - - <!-- ==================================================================== --> - - <!-- * squeeze multiple newlines before a roff request --> - <ss:substitution oldstring=" - -." newstring=" -."></ss:substitution> - <!-- * remove any .sp instances that directly precede a .PP --> - <ss:substitution oldstring=".sp -.PP" newstring=".PP"></ss:substitution> - <!-- * remove any .sp instances that directly follow a .PP --> - <ss:substitution oldstring=".sp -.sp" newstring=".sp"></ss:substitution> - <!-- * squeeze multiple .sp instances into a single .sp--> - <ss:substitution oldstring=".PP -.sp" newstring=".PP"></ss:substitution> - <!-- * squeeze multiple newlines after start of no-fill (verbatim) env. --> - <ss:substitution oldstring=".nf - -" newstring=".nf -"></ss:substitution> - <!-- * squeeze multiple newlines after REstoring margin --> - <ss:substitution oldstring=".RE - -" newstring=".RE -"></ss:substitution> - <!-- * U+2591 is a marker we add before and after every Parameter in --> - <!-- * Funcprototype output --> - <ss:substitution oldstring="░" newstring=" "></ss:substitution> - <!-- * U+2592 is a marker we add for the newline before output of <sbr>; --> - <ss:substitution oldstring="▒" newstring=" -"></ss:substitution> - <!-- * --> - <!-- * Now deal with some other characters that are added by the --> - <!-- * stylesheets during processing. --> - <!-- * --> - <!-- * bullet --> - <ss:substitution oldstring="•" newstring="\(bu"></ss:substitution> - <!-- * left double quote --> - <ss:substitution oldstring="“" newstring="\(lq"></ss:substitution> - <!-- * right double quote --> - <ss:substitution oldstring="”" newstring="\(rq"></ss:substitution> - <!-- * left single quote --> - <ss:substitution oldstring="‘" newstring="\(oq"></ss:substitution> - <!-- * right single quote --> - <ss:substitution oldstring="’" newstring="\(cq"></ss:substitution> - <!-- * copyright sign --> - <ss:substitution oldstring="©" newstring="\(co"></ss:substitution> - <!-- * registered sign --> - <ss:substitution oldstring="®" newstring="\(rg"></ss:substitution> - <!-- * ...servicemark... --> - <!-- * There is no groff equivalent for it. --> - <ss:substitution oldstring="℠" newstring="(SM)"></ss:substitution> - <!-- * ...trademark... --> - <!-- * We don't do "\(tm" because for console output, --> - <!-- * groff just renders that as "tm"; that is: --> - <!-- * --> - <!-- * Product&#x2122; -> Producttm --> - <!-- * --> - <!-- * So we just make it to "(TM)" instead; thus: --> - <!-- * --> - <!-- * Product&#x2122; -> Product(TM) --> - <ss:substitution oldstring="™" newstring="(TM)"></ss:substitution> - -</xsl:param> - - - -Description - -The man.string.subst.map parameter -contains a map that specifies a set of -string substitutions to perform over the entire roff source for each -man page, either just before generating final man-page output (that -is, before writing man-page files to disk) or, if the value of the -man.charmap.enabled parameter is non-zero, -before applying the roff character map. - -You can use man.string.subst.map as a -“lightweight” character map to perform “essential” substitutions -- -that is, substitutions that are always performed, -even if the value of the man.charmap.enabled -parameter is zero. For example, you can use it to replace quotation -marks or other special characters that are generated by the DocBook -XSL stylesheets for a particular locale setting (as opposed to those -characters that are actually in source XML documents), or to replace -any special characters that may be automatically generated by a -particular customization of the DocBook XSL stylesheets. - - - Do you not change value of the - man.string.subst.map parameter unless you are - sure what you are doing. First consider adding your - string-substitution mappings to either or both of the following - parameters: - - - man.string.subst.map.local.pre - applied before - man.string.subst.map - - - man.string.subst.map.local.post - applied after - man.string.subst.map - - - By default, both of those parameters contain no - string substitutions. They are intended as a means for you to - specify your own local string-substitution mappings. - - If you remove any of default mappings from the value of the - man.string.subst.map parameter, you are - likely to end up with broken output. And be very careful about adding - anything to it; it’s used for doing string substitution over the - entire roff source of each man page – it causes target strings to be - replaced in roff requests and escapes, not just in the visible - contents of the page. - - - - - - Contents of the substitution map - - The string-substitution map contains one or more - ss:substitution elements, each of which has two - attributes: - - - oldstring - - string to replace - - - - newstring - - string with which to replace oldstring - - - - It may also include XML comments (that is, delimited with - "<!--" and "-->"). - - - - - - - - -man.string.subst.map.local.post -string - - -man.string.subst.map.local.post -Specifies “local” string substitutions - - - - -<xsl:param name="man.string.subst.map.local.post"></xsl:param> - - - -Description - -Use the man.string.subst.map.local.post -parameter to specify any “local” string substitutions to perform over -the entire roff source for each man page after -performing the string substitutions specified by the man.string.subst.map parameter. - -For details about the format of this parameter, see the -documentation for the man.string.subst.map -parameter. - - - - - - Refentry metadata gathering - - -refentry.meta.get.quietly -boolean - - -refentry.meta.get.quietly -Suppress notes and warnings when gathering refentry metadata? - - - - -<xsl:param name="refentry.meta.get.quietly" select="0"></xsl:param> - - - -Description - -If zero (the default), notes and warnings about “missing” markup -are generated during gathering of refentry metadata. If non-zero, the -metadata is gathered “quietly” -- that is, the notes and warnings are -suppressed. - - - If you are processing a large amount of refentry - content, you may be able to speed up processing significantly by - setting a non-zero value for - refentry.meta.get.quietly. - - - - - - - -refentry.date.profile -string - - -refentry.date.profile -Specifies profile for refentry "date" data - - - - -<xsl:param name="refentry.date.profile"> - (($info[//date])[last()]/date)[1]| - (($info[//pubdate])[last()]/pubdate)[1] -</xsl:param> - - - -Description - -The value of refentry.date.profile is a -string representing an XPath expression. It is evaluated at run-time -and used only if refentry.date.profile.enabled -is non-zero. Otherwise, the refentry metadata-gathering -logic "hard coded" into the stylesheets is used. - - The man(7) man page describes this content -as "the date of the last revision". In man pages, it is the content -that is usually displayed in the center footer. - - - - - - -refentry.date.profile.enabled -boolean - - -refentry.date.profile.enabled -Enable refentry "date" profiling? - - - - -<xsl:param name="refentry.date.profile.enabled">0</xsl:param> - - -Description - -If the value of -refentry.date.profile.enabled is non-zero, then -during refentry metadata gathering, the info profile -specified by the customizable -refentry.date.profile parameter is used. - -If instead the value of -refentry.date.profile.enabled is zero (the -default), then "hard coded" logic within the DocBook XSL stylesheets -is used for gathering refentry "date" data. - -If you find that the default refentry -metadata-gathering behavior is causing incorrect "date" data to show -up in your output, then consider setting a non-zero value for -refentry.date.profile.enabled and adjusting the -value of refentry.date.profile to cause correct -data to be gathered. - -Note that the terms "source" and "date" have special meanings in -this context. For details, see the documentation for the -refentry.date.profile parameter. - - - - - - -refentry.manual.profile -string - - -refentry.manual.profile -Specifies profile for refentry "manual" data - - - - -<xsl:param name="refentry.manual.profile"> - (($info[//title])[last()]/title)[1]| - ../title/node() -</xsl:param> - - - -Description - -The value of refentry.manual.profile is -a string representing an XPath expression. It is evaluated at -run-time and used only if -refentry.manual.profile.enabled is -non-zero. Otherwise, the refentry metadata-gathering logic -"hard coded" into the stylesheets is used. - -In man pages, this content is usually displayed in the middle of -the header of the page. The man(7) man page -describes this as "the title of the manual (e.g., Linux -Programmer's Manual)". Here are some examples from -existing man pages: - - - dpkg utilities - (dpkg-name) - - - User Contributed Perl Documentation - (GET) - - - GNU Development Tools - (ld) - - - Emperor Norton Utilities - (ddate) - - - Debian GNU/Linux manual - (faked) - - - GIMP Manual Pages - (gimp) - - - KDOC Documentation System - (qt2kdoc) - - - - - - - - - -refentry.manual.profile.enabled -boolean - - -refentry.manual.profile.enabled -Enable refentry "manual" profiling? - - - - -<xsl:param name="refentry.manual.profile.enabled">0</xsl:param> - - -Description - -If the value of -refentry.manual.profile.enabled is -non-zero, then during refentry metadata gathering, the info -profile specified by the customizable -refentry.manual.profile parameter is -used. - -If instead the value of -refentry.manual.profile.enabled is zero (the -default), then "hard coded" logic within the DocBook XSL stylesheets -is used for gathering refentry "manual" data. - -If you find that the default refentry -metadata-gathering behavior is causing incorrect "manual" data to show -up in your output, then consider setting a non-zero value for -refentry.manual.profile.enabled and adjusting -the value of refentry.manual.profile to cause -correct data to be gathered. - -Note that the term "manual" has a special meanings in this -context. For details, see the documentation for the -refentry.manual.profile parameter. - - - - - - -refentry.source.name.suppress -boolean - - -refentry.source.name.suppress -Suppress "name" part of refentry "source" contents? - - - - -<xsl:param name="refentry.source.name.suppress">0</xsl:param> - - -Description - -If the value of -refentry.source.name.suppress is non-zero, then -during refentry metadata gathering, no "source name" data -is added to the refentry "source" contents. Instead (unless -refentry.version.suppress is also non-zero), -only "version" data is added to the "source" contents. - -If you find that the refentry metadata gathering -mechanism is causing unwanted "source name" data to show up in your -output -- for example, in the footer (or possibly header) of a man -page -- then you might consider setting a non-zero value for -refentry.source.name.suppress. - -Note that the terms "source", "source name", and "version" have -special meanings in this context. For details, see the documentation -for the refentry.source.name.profile -parameter. - - - - - - -refentry.source.name.profile -string - - -refentry.source.name.profile -Specifies profile for refentry "source name" data - - - - -<xsl:param name="refentry.source.name.profile"> - (($info[//productname])[last()]/productname)[1]| - (($info[//corpname])[last()]/corpname)[1]| - (($info[//corpcredit])[last()]/corpcredit)[1]| - (($info[//corpauthor])[last()]/corpauthor)[1]| - (($info[//orgname])[last()]/orgname)[1]| - (($info[//publishername])[last()]/publishername)[1] -</xsl:param> - - - -Description - -The value of refentry.source.name.profile -is a string representing an XPath expression. It is evaluated at -run-time and used only if -refentry.source.name.profile.enabled is -non-zero. Otherwise, the refentry metadata-gathering logic -"hard coded" into the stylesheets is used. - -A "source name" is one part of a (potentially) two-part -Name Version -"source" field. In man pages, it is usually displayed in the left -footer of the page. It typically indicates the software system or -product that the item documented in the man page belongs to. The -man(7) man page describes it as "the source of -the command", and provides the following examples: - - - For binaries, use something like: GNU, NET-2, SLS - Distribution, MCC Distribution. - - - For system calls, use the version of the kernel that you - are currently looking at: Linux 0.99.11. - - - For library calls, use the source of the function: GNU, BSD - 4.3, Linux DLL 4.4.1. - - - - -In practice, there are many pages that simply have a Version -number in the "source" field. So, it looks like what we have is a -two-part field, -Name Version, -where: - - - Name - - product name (e.g., BSD) or org. name (e.g., GNU) - - - - Version - - version number - - - -Each part is optional. If the Name is a -product name, then the Version is probably -the version of the product. Or there may be no -Name, in which case, if there is a -Version, it is probably the version -of the item itself, not the product it is part of. Or, if the -Name is an organization name, then there -probably will be no Version. - - - - - -refentry.source.name.profile.enabled -boolean - - -refentry.source.name.profile.enabled -Enable refentry "source name" profiling? - - - - -<xsl:param name="refentry.source.name.profile.enabled">0</xsl:param> - - -Description - -If the value of -refentry.source.name.profile.enabled is -non-zero, then during refentry metadata gathering, the info -profile specified by the customizable -refentry.source.name.profile parameter is -used. - -If instead the value of -refentry.source.name.profile.enabled is zero (the -default), then "hard coded" logic within the DocBook XSL stylesheets -is used for gathering refentry "source name" data. - -If you find that the default refentry -metadata-gathering behavior is causing incorrect "source name" data to -show up in your output, then consider setting a non-zero value for -refentry.source.name.profile.enabled and -adjusting the value of -refentry.source.name.profile to cause correct -data to be gathered. - -Note that the terms "source" and "source name" have special -meanings in this context. For details, see the documentation for the -refentry.source.name.profile parameter. - - - - - - -refentry.version.suppress -boolean - - -refentry.version.suppress -Suppress "version" part of refentry "source" contents? - - - - -<xsl:param name="refentry.version.suppress">0</xsl:param> - - -Description - -If the value of refentry.version.suppress -is non-zero, then during refentry metadata gathering, no -"version" data is added to the refentry "source" -contents. Instead (unless -refentry.source.name.suppress is also -non-zero), only "source name" data is added to the "source" -contents. - -If you find that the refentry metadata gathering -mechanism is causing unwanted "version" data to show up in your output --- for example, in the footer (or possibly header) of a man page -- -then you might consider setting a non-zero value for -refentry.version.suppress. - -Note that the terms "source", "source name", and "version" have -special meanings in this context. For details, see the documentation -for the refentry.source.name.profile -parameter. - - - - - - -refentry.version.profile -string - - -refentry.version.profile -Specifies profile for refentry "version" data - - - - -<xsl:param name="refentry.version.profile"> - (($info[//productnumber])[last()]/productnumber)[1]| - (($info[//edition])[last()]/edition)[1]| - (($info[//releaseinfo])[last()]/releaseinfo)[1] -</xsl:param> - - - -Description - -The value of refentry.version.profile is -a string representing an XPath expression. It is evaluated at -run-time and used only if -refentry.version.profile.enabled is -non-zero. Otherwise, the refentry metadata-gathering logic -"hard coded" into the stylesheets is used. - -A "source.name" is one part of a (potentially) two-part -Name Version -"source" field. For more details, see the documentation for the -refentry.source.name.profile parameter. - - - - - - -refentry.version.profile.enabled -boolean - - -refentry.version.profile.enabled -Enable refentry "version" profiling? - - - - -<xsl:param name="refentry.version.profile.enabled">0</xsl:param> - - -Description - -If the value of -refentry.version.profile.enabled is -non-zero, then during refentry metadata gathering, the info -profile specified by the customizable -refentry.version.profile parameter is -used. - -If instead the value of -refentry.version.profile.enabled is zero (the -default), then "hard coded" logic within the DocBook XSL stylesheets -is used for gathering refentry "version" data. - -If you find that the default refentry -metadata-gathering behavior is causing incorrect "version" data to show -up in your output, then consider setting a non-zero value for -refentry.version.profile.enabled and adjusting -the value of refentry.version.profile to cause -correct data to be gathered. - -Note that the terms "source" and "version" have special -meanings in this context. For details, see the documentation for the -refentry.version.profile parameter. - - - - - - -refentry.manual.fallback.profile -string - - -refentry.manual.fallback.profile -Specifies profile of "fallback" for refentry "manual" data - - - - -<xsl:param name="refentry.manual.fallback.profile"> -refmeta/refmiscinfo[not(@class = 'date')][1]/node()</xsl:param> - - - -Description - -The value of -refentry.manual.fallback.profile is a string -representing an XPath expression. It is evaluated at run-time and -used only if no "manual" data can be found by other means (that is, -either using the refentry metadata-gathering logic "hard -coded" in the stylesheets, or the value of -refentry.manual.profile, if it is -enabled). - - -Depending on which XSLT engine you run, either the EXSLT -dyn:evaluate extension function (for xsltproc or -Xalan) or saxon:evaluate extension function (for -Saxon) are used to dynamically evaluate the value of -refentry.manual.fallback.profile at -run-time. If you don't use xsltproc, Saxon, Xalan -- or some other -XSLT engine that supports dyn:evaluate -- you -must manually disable fallback processing by setting an empty value -for the refentry.manual.fallback.profile -parameter. - - - - - - - -refentry.source.fallback.profile -string - - -refentry.source.fallback.profile -Specifies profile of "fallback" for refentry "source" data - - - - -<xsl:param name="refentry.source.fallback.profile"> -refmeta/refmiscinfo[not(@class = 'date')][1]/node()</xsl:param> - - - -Description - -The value of -refentry.source.fallback.profile is a string -representing an XPath expression. It is evaluated at run-time and used -only if no "source" data can be found by other means (that is, either -using the refentry metadata-gathering logic "hard coded" in -the stylesheets, or the value of the -refentry.source.name.profile and -refentry.version.profile parameters, if those -are enabled). - - -Depending on which XSLT engine you run, either the EXSLT -dyn:evaluate extension function (for xsltproc or -Xalan) or saxon:evaluate extension function (for -Saxon) are used to dynamically evaluate the value of -refentry.source.fallback.profile at -run-time. If you don't use xsltproc, Saxon, Xalan -- or some other -XSLT engine that supports dyn:evaluate -- you -must manually disable fallback processing by setting an empty value -for the refentry.source.fallback.profile -parameter. - - - - - - - Page header/footer - - -man.th.extra1.suppress -boolean - - -man.th.extra1.suppress -Suppress extra1 part of header/footer? - - - - -<xsl:param name="man.th.extra1.suppress">0</xsl:param> - - -Description - -If the value of man.th.extra1.suppress is -non-zero, then the extra1 part of the -.TH title line header/footer is suppressed. - -The content of the extra1 field is almost -always displayed in the center footer of the page and is, universally, -a date. - - - - - - -man.th.extra2.suppress -boolean - - -man.th.extra2.suppress -Suppress extra2 part of header/footer? - - - - -<xsl:param name="man.th.extra2.suppress">0</xsl:param> - - -Description - -If the value of man.th.extra2.suppress is -non-zero, then the extra2 part of the -.TH title line header/footer is suppressed. - -The content of the extra2 field is usually -displayed in the left footer of the page and is typically "source" -data, often in the form -Name Version; -for example, "GTK+ 1.2" (from the gtk-options(7) -man page). - - - You can use the - refentry.source.name.suppress and - refentry.version.suppress parameters to - independently suppress the Name and - Version parts of the - extra2 field. - - - - - - - -man.th.extra3.suppress -boolean - - -man.th.extra3.suppress -Suppress extra3 part of header/footer? - - - - -<xsl:param name="man.th.extra3.suppress">0</xsl:param> - - -Description - -If the value of man.th.extra3.suppress is -non-zero, then the extra3 part of the -.TH title line header/footer is -suppressed. - -The content of the extra3 field is usually -displayed in the middle header of the page and is typically a "manual -name"; for example, "GTK+ User's Manual" (from the -gtk-options(7) man page). - - - - - - -man.th.title.max.length -integer - - -man.th.title.max.length -Maximum length of title in header/footer - - - - -<xsl:param name="man.th.title.max.length">20</xsl:param> - - - -Description - -Specifies the maximum permitted length of the title part of the -man-page .TH title line header/footer. If the title -exceeds the maxiumum specified, it is truncated down to the maximum -permitted length. - -Details - - -Every man page generated using the DocBook stylesheets has a -title line, specified using the TH roff -macro. Within that title line, there is always, at a minimum, a title, -followed by a section value (representing a man "section" -- usually -just a number). - -The title and section are displayed, together, in the visible -header of each page. Where in the header they are displayed depends on -OS the man page is viewed on, and on what version of nroff/groff/man -is used for viewing the page. But, at a minimum and across all -systems, the title and section are displayed on the right-hand column -of the header. On many systems -- those with a modern groff, including -Linux systems -- they are displayed twice: both in the left and right -columns of the header. - -So if the length of the title exceeds a certain percentage of -the column width in which the page is viewed, the left and right -titles can end up overlapping, making them unreadable, or breaking to -another line, which doesn't look particularly good. - -So the stylesheets provide the -man.th.title.max.length parameter as a means -for truncating titles that exceed the maximum length that can be -viewing properly in a page header. - -The default value is reasonable but somewhat arbitrary. If you -have pages with long titles, you may want to experiment with changing -the value in order to achieve the correct aesthetic results. - - - - - - - -man.th.extra2.max.length -integer - - -man.th.extra2.max.length -Maximum length of extra2 in header/footer - - - - -<xsl:param name="man.th.extra2.max.length">30</xsl:param> - - - -Description - -Specifies the maximum permitted length of the -extra2 part of the man-page part of the -.TH title line header/footer. If the -extra2 content exceeds the maxiumum specified, it -is truncated down to the maximum permitted length. - -The content of the extra2 field is usually -displayed in the left footer of the page and is typically "source" -data indicating the software system or product that the item -documented in the man page belongs to, often in the form -Name Version; -for example, "GTK+ 1.2" (from the gtk-options(7) -man page). - -The default value for this parameter is reasonable but somewhat -arbitrary. If you are processing pages with long "source" information, -you may want to experiment with changing the value in order to achieve -the correct aesthetic results. - - - - - -man.th.extra3.max.length -integer - - -man.th.extra3.max.length -Maximum length of extra3 in header/footer - - - - -<xsl:param name="man.th.extra3.max.length">30</xsl:param> - - - -Description - -Specifies the maximum permitted length of the -extra3 part of the man-page .TH -title line header/footer. If the extra3 content -exceeds the maxiumum specified, it is truncated down to the maximum -permitted length. - -The content of the extra3 field is usually -displayed in the middle header of the page and is typically a "manual -name"; for example, "GTK+ User's Manual" (from the -gtk-options(7) man page). - -The default value for this parameter is reasonable but somewhat -arbitrary. If you are processing pages with long "manual names" -- or -especially if you are processing pages that have both long "title" -parts (command/function, etc. names) and long -manual names -- you may want to experiment with changing the value in -order to achieve the correct aesthetic results. - - - - - Output - - - man.output.manifest.enabled - boolean - - - man.output.manifest.enabled - Generate a manifest file? - - - - <xsl:param name="man.output.manifest.enabled" select="0"></xsl:param> - - - Description - - If non-zero, a list of filenames for man pages generated by - the stylesheet transformation is written to the file named by the - man.output.manifest.filename parameter. - - - - - - - man.output.manifest.filename - string - - - man.output.manifest.filename - Name of manifest file - - - - <xsl:param name="man.output.manifest.filename">MAN.MANIFEST</xsl:param> - - - Description - - The man.output.manifest.filename parameter - specifies the name of the file to which the manpages manifest file - is written (if the value of the - man.output.manifest.enabled parameter is - non-zero). - - - - - - -man.output.in.separate.dir -boolean - - -man.output.in.separate.dir -Output man-page files in separate output directory? - - - - -<xsl:param name="man.output.in.separate.dir" select="0"></xsl:param> - - - -Description - -If the value of man.output.in.separate.dir -parameter is non-zero, man-page files are output in a separate -directory, specified by the man.output.base.dir -parameter; otherwise, if the value of -man.output.in.separate.dir is zero, man-page files -are not output in a separate directory. - - - - - - -man.output.lang.in.name.enabled -boolean - - -man.output.lang.in.name.enabled -Include $LANG value in man-page filename/pathname? - - - - -<xsl:param name="man.output.lang.in.name.enabled" select="0"></xsl:param> - - - -Description - - The man.output.lang.in.name.enabled - parameter specifies whether a $lang value is - included in man-page filenames and pathnames. - - If the value of - man.output.lang.in.name.enabled is non-zero, - man-page files are output with the $lang value - included in their filenames or pathnames as follows; - - - - if man.output.subdirs.enabled is - non-zero, each file is output to, e.g., a - man/$lang/man8/foo.8 - pathname - - - if man.output.subdirs.enabled is - zero, each file is output with a - foo.$lang.8 - filename - - - - - - - - - -man.output.base.dir -uri - - -man.output.base.dir -Specifies separate output directory - - - -<xsl:param name="man.output.base.dir">man/</xsl:param> - - -Description - -The man.output.base.dir parameter -specifies the base directory into which man-page files are output. The -man.output.subdirs.enabled parameter controls -whether the files are output in subdirectories within the base -directory. - - - The values of the man.output.base.dir - and man.output.subdirs.enabled parameters are - used only if the value of - man.output.in.separate.dir parameter is - non-zero. If the value of the - man.output.in.separate.dir is zero, man-page - files are not output in a separate directory. - - - - - - - -man.output.subdirs.enabled -boolean - - -man.output.subdirs.enabled -Output man-page files in subdirectories within base output directory? - - - - -<xsl:param name="man.output.subdirs.enabled" select="1"></xsl:param> - - - -Description - -The man.output.subdirs.enabled parameter -controls whether man-pages files are output in subdirectories within -the base directory specified by the directory specified by the -man.output.base.dir parameter. - - - The values of the man.output.base.dir - and man.output.subdirs.enabled parameters are - used only if the value of - man.output.in.separate.dir parameter is - non-zero. If the value of the - man.output.in.separate.dir is zero, man-page - files are not output in a separate directory. - - - - - - - -man.output.quietly -boolean - - -man.output.quietly -Suppress filename messages emitted when generating output? - - - - -<xsl:param name="man.output.quietly" select="0"></xsl:param> - - - -Description - -If zero (the default), for each man-page file created, a message -with the name of the file is emitted. If non-zero, the files are -output "quietly" -- that is, the filename messages are -suppressed. - - - If you are processing a large amount of refentry - content, you may be able to speed up processing significantly by - setting a non-zero value for - man.output.quietly. - - - - - - - -man.output.encoding -string - - -man.output.encoding -Encoding used for man-page output - - - - -<xsl:param name="man.output.encoding">UTF-8</xsl:param> - - - -Description - -This parameter specifies the encoding to use for files generated -by the manpages stylesheet. Not all processors support specification -of this parameter. - - - If the value of the man.charmap.enabled - parameter is non-zero (the default), keeping the - man.output.encoding parameter at its default - value (UTF-8) or setting it to - UTF-16 does not cause your - man pages to be output in raw UTF-8 or UTF-16 -- because - any Unicode characters for which matches are found in the enabled - character map will be replaced with roff escape sequences before the - final man-page files are generated. - - So if you want to generate "real" UTF-8 man pages, without any - character substitution being performed on your content, you need to - set man.charmap.enabled to zero (which will - completely disable character-map processing). - - You may also need to set - man.charmap.enabled to zero if you want to - output man pages in an encoding other than UTF-8 - or UTF-16. Character-map processing is based on - Unicode character values and may not work with other output - encodings. - - - - - - - -man.output.better.ps.enabled -boolean - - -man.output.better.ps.enabled -Enable enhanced print/PostScript output? - - - -<xsl:param name="man.output.better.ps.enabled">0</xsl:param> - - -Description - -If the value of the -man.output.better.ps.enabled parameter is -non-zero, certain markup is embedded in each generated man page -such that PostScript output from the man -Tps -command for that page will include a number of enhancements -designed to improve the quality of that output. - -If man.output.better.ps.enabled is -zero (the default), no such markup is embedded in generated man -pages, and no enhancements are included in the PostScript -output generated from those man pages by the man - -Tps command. - - - The enhancements provided by this parameter rely on - features that are specific to groff (GNU troff) and that are - not part of “classic” AT&T troff or any of its - derivatives. Therefore, any man pages you generate with this - parameter enabled will be readable only on systems on which - the groff (GNU troff) program is installed, such as GNU/Linux - systems. The pages will not not be - readable on systems on with the classic troff (AT&T - troff) command is installed. - - -The value of this parameter only affects PostScript output - generated from the man command. It has no - effect on output generated using the FO backend. - - - You can generate PostScript output for any man page by - running the following command: - man FOO -Tps > FOO.ps - You can then generate PDF output by running the following - command: - ps2pdf FOO.ps - - - - - - - Other - - -man.table.footnotes.divider -string - - -man.table.footnotes.divider -Specifies divider string that appears before table footnotes - - - - -<xsl:param name="man.table.footnotes.divider">----</xsl:param> - - - -Description - -In each table that contains footenotes, the string specified by -the man.table.footnotes.divider parameter is -output before the list of footnotes for the table. - - - - - - -man.subheading.divider.enabled -boolean - - -man.subheading.divider.enabled -Add divider comment to roff source before/after subheadings? - - - - -<xsl:param name="man.subheading.divider.enabled">0</xsl:param> - - - -Description - -If the value of the -man.subheading.divider.enabled parameter is -non-zero, the contents of the -man.subheading.divider parameter are used to -add a "divider" before and after subheadings in the roff -output. The divider is not visisble in the -rendered man page; it is added as a comment, in the source, -simply for the purpose of increasing reability of the source. - -If man.subheading.divider.enabled is zero -(the default), the subheading divider is suppressed. - - - - - - -man.subheading.divider -string - - -man.subheading.divider -Specifies string to use as divider comment before/after subheadings - - - - -<xsl:param name="man.subheading.divider">========================================================================</xsl:param> - - - -Description - -If the value of the -man.subheading.divider.enabled parameter is -non-zero, the contents of the -man.subheading.divider parameter are used to -add a "divider" before and after subheadings in the roff -output. The divider is not visisble in the -rendered man page; it is added as a comment, in the source, -simply for the purpose of increasing reability of the source. - -If man.subheading.divider.enabled is zero -(the default), the subheading divider is suppressed. - - - - - -
- - - - Roundtrip Parameter Reference - - - This is reference documentation for all user-configurable - parameters in the DocBook “Roundtrip” Stylesheets (for - transforming DocBook to WordML, OpenDocument, and Apple Pages, - and for converting from those formats back to DocBook). - - - - - - -wordml.template -uri - - -wordml.template -Specify the template WordML document - - - - -<xsl:param name="wordml.template"></xsl:param> - - - -Description - -The wordml.template parameter specifies a WordML document to use as a template for the generated document. The template document is used to define the (extensive) headers for the generated document, in particular the paragraph and character styles that are used to format the various elements. Any content in the template document is ignored. - -A template document is used in order to allow maintenance of the paragraph and character styles to be done using Word itself, rather than these XSL stylesheets. - - - - - - -pages.template -uri - - -pages.template -Specify the template Pages document - - - - -<xsl:param name="pages.template"></xsl:param> - - - -Description - -The pages.template parameter specifies a Pages (the Apple word processing application) document to use as a template for the generated document. The template document is used to define the (extensive) headers for the generated document, in particular the paragraph and character styles that are used to format the various elements. Any content in the template document is ignored. - -A template document is used in order to allow maintenance of the paragraph and character styles to be done using Pages itself, rather than these XSL stylesheets. - - - - - - - Slides Parameter Reference - - - - This is reference documentation for all - user-configurable parameters in the DocBook XSL Slides - stylesheets (for generating HTML and PDF slide - presentations). - - The Slides stylesheet for HTML output is a - customization layer of the DocBook XSL HTML - stylesheet; the Slides stylesheet for FO output is a - customization layer of the DocBook XSL FO stylesheet. - Therefore, in addition to the slides-specific - parameters listed in this section, you can also use a - number of HTML stylesheet - parameters and FO - stylesheet parameters to control Slides - output. - - - -HTML: General Parameters - - -keyboard.nav -boolean - - -keyboard.nav -Enable keyboard navigation? - - - - -<xsl:param name="keyboard.nav" select="1"></xsl:param> - - - -Description - -If non-zero, JavaScript is added to the slides to enable keyboard -navigation. Pressing 'n', space, or return moves forward; pressing 'p' moves -backward. - - - - - - -css.stylesheet -uri - - -css.stylesheet -CSS stylesheet for slides - - - - -<xsl:param name="css.stylesheet">slides.css</xsl:param> - - - -Description - -Identifies the CSS stylesheet used by all the slides. This parameter -can be set in the source document with the <?dbhtml?> pseudo-attribute -css-stylesheet. - - - - - - -css.stylesheet.dir -uri - - -css.stylesheet.dir -Default directory for CSS stylesheets - - - - -<xsl:param name="css.stylesheet.dir"></xsl:param> - - - -Description - -Identifies the default directory for the CSS stylesheet -generated on all the slides. This parameter can be set in the source -document with the <?dbhtml?> pseudo-attribute -css-stylesheet-dir. - -If non-empty, this value is prepended to each of the stylesheets. - - - - - - - -titlefoil.html -filename - - -titlefoil.html -Name of title foil HTML file - - - - -<xsl:param name="titlefoil.html" select="concat('index', $html.ext)"></xsl:param> - - - -Description - -Sets the filename used for the slides titlepage. - - - - - - -toc.html -filename - - -toc.html -Name of ToC HTML file - - - - -<xsl:param name="toc.html" select="concat('toc', $html.ext)"></xsl:param> - - - -Description - -Sets the filename used for the table of contents page. - - - - - - -foilgroup.toc -boolean - - -foilgroup.toc -Put ToC on foilgroup pages? - - - - -<xsl:param name="foilgroup.toc" select="1"></xsl:param> - - - -Description - -If non-zero, a ToC will be placed on foilgroup pages (after any -other content). - - - - - - - -output.indent -list -no -yes - - -output.indent -Indent output? - - - - -<xsl:param name="output.indent">no</xsl:param> - - - -Description - -Specifies the setting of the indent -parameter on the HTML slides. For more information, see the discussion -of the xsl:output element in the XSLT specification. -Select from yes or no. - - - - - - -overlay -boolean - - -overlay -Overlay footer navigation? - - - - -<xsl:param name="overlay" select="0"></xsl:param> - - - -Description - -If non-zero, JavaScript is added to the slides to make the -bottom navigation appear at the bottom of each page. This option and -multiframe are mutually exclusive. - -If this parameter is zero, the bottom navigation simply appears -below the content of each slide. - - - - - - -show.foil.number -boolean - - -show.foil.number -Show foil number on each foil? - - - - -<xsl:param name="show.foil.number" select="0"></xsl:param> - - - -Description - -If non-zero, on each slide there will be its number. Currently -not supported in all output formats. - - - - - -HTML: Frames Parameters - - -nav.separator -boolean - - -nav.separator -Output separator between navigation and body? - - - - -<xsl:param name="nav.separator" select="1"></xsl:param> - - - -Description - -If non-zero, a separator (<HR>) is -added between the navigation links and the content of each slide. - - - - - - -toc.row.height -length - - -toc.row.height -Height of ToC rows in dynamic ToCs - - - - -<xsl:param name="toc.row.height">22</xsl:param> - - - -Description - -This parameter specifies the height of each row in the table of -contents. This is only applicable if a dynamic ToC is used. You may want to -adjust this parameter for optimal appearance with the font and image -sizes selected by your CSS -stylesheet. - - - - - - - -toc.bg.color -color - - -toc.bg.color -Background color for ToC frame - - - - -<xsl:param name="toc.bg.color">#FFFFFF</xsl:param> - - - -Description - -Specifies the background color used in the ToC frame. - - - - - - -body.bg.color -color - - -body.bg.color -Background color for body frame - - - - -<xsl:param name="body.bg.color">#FFFFFF</xsl:param> - - - -Description - -Specifies the background color used in the body column of -tabular slides. - - - - - - -toc.width -length - - -toc.width -Width of ToC frame - - - - -<xsl:param name="toc.width">250</xsl:param> -<!-- Presumably in pixels? --> - - - -Description - -Specifies the width of the ToC frame in pixels. - - - - - - -toc.hide.show -boolean - - -toc.hide.show -Enable hide/show button for ToC frame - - - - -<xsl:param name="toc.hide.show" select="0"></xsl:param> - - - -Description - -If non-zero, JavaScript (and an additional icon, see -hidetoc.image and -showtoc.image) is added to each slide -to allow the ToC panel to be toggled on each panel. - -There is a bug in Mozilla 1.0 (at least as of CR3) that causes -the browser to reload the titlepage when this feature is used. - - - - - - -dynamic.toc -boolean - - -dynamic.toc -Dynamic ToCs? - - - - -<xsl:param name="dynamic.toc" select="0"></xsl:param> - - - -Description - -If non-zero, JavaScript is used to make the ToC panel dynamic. -In a dynamic ToC, each section in the ToC can be expanded and collapsed by -clicking on the appropriate image. - - - - - - -active.toc -boolean - - -active.toc -Active ToCs? - - - - -<xsl:param name="active.toc" select="0"></xsl:param> - - - -Description - -If non-zero, JavaScript is used to keep the ToC and the current slide -in sync. That is, each time the slide changes, the corresponding -ToC entry will be underlined. - - - - - - - - -multiframe -boolean - - -multiframe -Use multiple frames for slide bodies? - - - - -<xsl:param name="multiframe" select="0"></xsl:param> - - - -Description - -If non-zero, multiple frames are used for the body of each -slide. This is one way of forcing the slide navigation elements to -appear in constant locations. The other way is with overlays. The overlay and -multiframe parameters are mutually -exclusive. - - - - - - -multiframe.top.bgcolor -color - - -multiframe.top.bgcolor -Background color for top navigation frame - - - - -<xsl:param name="multiframe.top.bgcolor">white</xsl:param> - - - -Description - -Specifies the background color of the top navigation frame when -multiframe is enabled. - - - - - - -multiframe.bottom.bgcolor -color - - -multiframe.bottom.bgcolor -Background color for bottom navigation frame - - - - -<xsl:param name="multiframe.bottom.bgcolor">white</xsl:param> - - - -Description - -Specifies the background color of the bottom navigation frame when -multiframe is enabled. - - - - - - -multiframe.navigation.height -length - - -multiframe.navigation.height -Height of navigation frames - - - - -<xsl:param name="multiframe.navigation.height">40</xsl:param> - - - -Description - -Specifies the height of the navigation frames in pixels when -multiframe is enabled. - - - - - -HTML: Graphics Parameters - - -graphics.dir -uri - - -graphics.dir -Graphics directory - - - - -<xsl:param name="graphics.dir"></xsl:param> - - - -Description - -Identifies the graphics directory for the navigation components -generated on all the slides. This parameter can be set in the source -document with the <?dbhtml?> pseudo-attribute -graphics-dir. - -If non-empty, this value is prepended to each of the graphic -image paths. - - - - - - -bullet.image -filename - - -bullet.image -Bullet image - - - - -<xsl:param name="bullet.image">toc/bullet.png</xsl:param> - - - -Description - -Specifies the filename of the bullet image used for foils in the -framed ToC. - - - - - - -next.image -filename - - -next.image -Right-arrow image - - - - -<xsl:param name="next.image">active/nav-next.png</xsl:param> - - - -Description - -Specifies the filename of the right-pointing navigation arrow. - - - - - - -prev.image -filename - - -prev.image -Left-arrow image - - - - -<xsl:param name="prev.image">active/nav-prev.png</xsl:param> - - - -Description - -Specifies the filename of the left-pointing navigation arrow. - - - - - - -up.image -filename - - -up.image -Up-arrow image - - - - -<xsl:param name="up.image">active/nav-up.png</xsl:param> - - - -Description - -Specifies the filename of the upward-pointing navigation arrow. - - - - - - -home.image -filename - - -home.image -Home image - - - - -<xsl:param name="home.image">active/nav-home.png</xsl:param> - - - -Description - -Specifies the filename of the home navigation icon. - - - - - - -toc.image -filename - - -toc.image -ToC image - - - - -<xsl:param name="toc.image">active/nav-toc.png</xsl:param> - - - -Description - -Specifies the filename of the ToC navigation icon. - - - - - - - -no.next.image -filename - - -no.next.image -Inactive right-arrow image - - - - -<xsl:param name="no.next.image">inactive/nav-next.png</xsl:param> - - - -Description - -Specifies the filename of the inactive right-pointing navigation arrow. - - - - - - -no.prev.image -filename - - -no.prev.image -Inactive left-arrow image - - - - -<xsl:param name="no.prev.image">inactive/nav-prev.png</xsl:param> - - - -Description - -Specifies the filename of the inactive left-pointing navigation arrow. - - - - - - -no.up.image -filename - - -no.up.image -Inactive up-arrow image - - - - -<xsl:param name="no.up.image">inactive/nav-up.png</xsl:param> - - - -Description - -Specifies the filename of the inactive upward-pointing navigation arrow. - - - - - - -no.home.image -filename - - -no.home.image -Inactive home image - - - - -<xsl:param name="no.home.image">inactive/nav-home.png</xsl:param> - - - -Description - -Specifies the filename of the inactive home navigation icon. - - - - - - -no.toc.image -filename - - -no.toc.image -Inactive ToC image - - - - -<xsl:param name="no.toc.image">inactive/nav-toc.png</xsl:param> - - - -Description - -Specifies the filename of the inactive ToC navigation icon. - - - - - - - -plus.image -filename - - -plus.image -Plus image - - - - -<xsl:param name="plus.image">toc/closed.png</xsl:param> - - - -Description - -Specifies the filename of the plus image; the image used in a -dynamic ToC to indicate that a section -can be expanded. - - - - - - -minus.image -filename - - -minus.image -Minus image - - - - -<xsl:param name="minus.image">toc/open.png</xsl:param> - - - -Description - -Specifies the filename of the minus image; the image used in a -dynamic ToC to indicate that a section -can be collapsed. - - - - - - -hidetoc.image -filename - - -hidetoc.image -Hide ToC image - - - - -<xsl:param name="hidetoc.image">hidetoc.gif</xsl:param> - - - -Description - -Specifies the filename of the hide ToC image. This is used -when the ToC hide/show parameter is -enabled. - - - - - - -showtoc.image -filename - - -showtoc.image -Show ToC image - - - - -<xsl:param name="showtoc.image">showtoc.gif</xsl:param> - - - -Description - -Specifies the filename of the show ToC image. This is used -when the ToC hide/show parameter is -enabled. - - - - - -HTML: JavaScript Parameters - - -script.dir -uri - - -script.dir -Script directory - - - - -<xsl:param name="script.dir"></xsl:param> - - - -Description - -Identifies the JavaScript source directory for the slides. -This parameter can be set in the source -document with the <?dbhtml?> pseudo-attribute -script-dir. - -If non-empty, this value is prepended to each of the JavaScript files. - - - - - - - -ua.js -filename - - -ua.js -UA JavaScript file - - - - -<xsl:param name="ua.js">ua.js</xsl:param> - - - -Description - -Specifies the filename of the UA JavaScript file. It's unlikely -that you will ever need to change this parameter. - - - - - - -xbDOM.js -filename - - -xbDOM.js -xbDOM JavaScript file - - - - -<xsl:param name="xbDOM.js">xbDOM.js</xsl:param> - - - -Description - -Specifies the filename of the xbDOM JavaScript file. It's unlikely -that you will ever need to change this parameter. - - - - - - -xbStyle.js -filename - - -xbStyle.js -xbStyle JavaScript file - - - - -<xsl:param name="xbStyle.js">xbStyle.js</xsl:param> - - - -Description - -Specifies the filename of the xbStyle JavaScript file. It's unlikely -that you will ever need to change this parameter. - - - - - - -xbLibrary.js -filename - - -xbLibrary.js -xbLibrary JavaScript file - - - - -<xsl:param name="xbLibrary.js">xbLibrary.js</xsl:param> - - - -Description - -Specifies the filename of the xbLibrary JavaScript file. It's unlikely -that you will ever need to change this parameter. - - - - - - -xbCollapsibleLists.js -filename - - -xbCollapsibleLists.js -xbCollapsibleLists JavaScript file - - - - -<xsl:param name="xbCollapsibleLists.js">xbCollapsibleLists.js</xsl:param> - - - -Description - -Specifies the filename of the xbCollapsibleLists JavaScript file. It's unlikely -that you will ever need to change this parameter. - - - - - - -overlay.js -filename - - -overlay.js -Overlay JavaScript file - - - - -<xsl:param name="overlay.js">overlay.js</xsl:param> - - - -Description - -Specifies the filename of the overlay JavaScript file. It's unlikely -that you will ever need to change this parameter. - - - - - - -slides.js -filename - - -slides.js -Slides overlay file - - - - -<xsl:param name="slides.js">slides.js</xsl:param> - - - -Description - -Specifies the filename of the slides JavaScript file. It's unlikely -that you will ever need to change this parameter. - - - - - -HTML: Localization Parameters - - -text.home -string - - -text.home -Home - - - - -<xsl:param name="text.home">Home</xsl:param> - - - -Description - -FIXME: - - - - - - -text.toc -string - - -text.toc -FIXME: - - - - -<xsl:param name="text.toc">ToC</xsl:param> - - - -Description - -FIXME: - - - - - - -text.prev -string - - -text.prev -FIXME: - - - - -<xsl:param name="text.prev">Prev</xsl:param> - - - -Description - -FIXME: - - - - - - -text.up -string - - -text.up -FIXME: - - - - -<xsl:param name="text.up">Up</xsl:param> - - - -Description - -FIXME: - - - - - - -text.next -string - - -text.next -FIXME: - - - - -<xsl:param name="text.next">Next</xsl:param> - - - -Description - -FIXME: - - - - - - - - - FO: General Params - - -slide.title.font.family -list -open -serif -sans-serif -monospace - - -slide.title.font.family -Specifies font family to use for slide titles - - - - -<xsl:param name="slide.title.font.family">Helvetica</xsl:param> - - - -Description - -Specifies the font family to use for slides titles. - - - - - - -slide.font.family -list -open -serif -sans-serif -monospace - - -slide.font.family -Specifies font family to use for slide bodies - - - - -<xsl:param name="slide.font.family">Helvetica</xsl:param> - - - -Description - -Specifies the font family to use for slides bodies. - - - - - - -foil.title.master -number - - -foil.title.master -Specifies unitless font size to use for foil titles - - - - -<xsl:param name="foil.title.master">36</xsl:param> -<!-- Inconsistant use of point size? --> - - - -Description - -Specifies a unitless font size to use for foil titles; used in -combination with the foil.title.size -parameter. - - - - - -foil.title.size -length - - -foil.title.size -Specifies font size to use for foil titles, including units - - - - - <xsl:param name="foil.title.size"> - <xsl:value-of select="$foil.title.master"></xsl:value-of><xsl:text>pt</xsl:text> - </xsl:param> - - - -Description - -This parameter combines the value of the -foil.title.master parameter with a unit -specification. The default unit is pt -(points). - - - - - - FO: Property Sets - - -slides.properties -attribute set - - -slides.properties -Specifies properties for all slides - - - - - <xsl:attribute-set name="slides.properties"> - <xsl:attribute name="font-family"> - <xsl:value-of select="$slide.font.family"></xsl:value-of> - </xsl:attribute> - </xsl:attribute-set> - - - -Description - -This parameter specifies properties that are applied to all slides. - - - - - - -foilgroup.properties -attribute set - - -foilgroup.properties -Specifies properties for all foilgroups - - - - - <xsl:attribute-set name="foilgroup.properties"> - <xsl:attribute name="font-family"> - <xsl:value-of select="$slide.font.family"></xsl:value-of> - </xsl:attribute> - </xsl:attribute-set> - - - -Description - -This parameter specifies properties that are applied to all foilgroups. - - - - - - -foil.subtitle.properties -attribute set - - -foil.subtitle.properties -Specifies properties for all foil subtitles - - - - - <xsl:attribute-set name="foil.subtitle.properties"> - <xsl:attribute name="font-family"> - <xsl:value-of select="$slide.title.font.family"></xsl:value-of> - </xsl:attribute> - <xsl:attribute name="text-align">center</xsl:attribute> - <xsl:attribute name="font-size"> - <xsl:value-of select="$foil.title.master * 0.8"></xsl:value-of><xsl:text>pt</xsl:text> - </xsl:attribute> - <xsl:attribute name="space-after">12pt</xsl:attribute> - </xsl:attribute-set> - - - -Description - -This parameter specifies properties that are applied to all foil subtitles. - - - - - - -foil.properties -attribute set - - -foil.properties -Specifies properties for all foils - - - - - <xsl:attribute-set name="foil.properties"> - <xsl:attribute name="font-family"> - <xsl:value-of select="$slide.font.family"></xsl:value-of> - </xsl:attribute> - <xsl:attribute name="margin-{$direction.align.start}">1in</xsl:attribute> - <xsl:attribute name="margin-{$direction.align.end}">1in</xsl:attribute> - <xsl:attribute name="font-size"> - <xsl:value-of select="$body.font.size"></xsl:value-of> - </xsl:attribute> - <xsl:attribute name="font-weight">bold</xsl:attribute> - </xsl:attribute-set> - - - -Description - -This parameter specifies properties that are applied to all foils. - - - - - - -speakernote.properties -attribute set - - -speakernote.properties -Specifies properties for all speakernotes - - - - - <xsl:attribute-set name="speakernote.properties"> - <xsl:attribute name="font-family">Times Roman</xsl:attribute> - <xsl:attribute name="font-style">italic</xsl:attribute> - <xsl:attribute name="font-size">12pt</xsl:attribute> - <xsl:attribute name="font-weight">normal</xsl:attribute> - </xsl:attribute-set> - - - -Description - -This parameter specifies properties that are applied to all speakernotes. - - - - - - -running.foot.properties -attribute set - - -running.foot.properties -Specifies properties for running foot on each slide - - - - - <xsl:attribute-set name="running.foot.properties"> - <xsl:attribute name="font-family"> - <xsl:value-of select="$slide.font.family"></xsl:value-of> - </xsl:attribute> - <xsl:attribute name="font-size">14pt</xsl:attribute> - <xsl:attribute name="color">#9F9F9F</xsl:attribute> - </xsl:attribute-set> - - - -Description - -This parameter specifies properties that are applied to the -running foot area of each slide. - - - - - - - - - - Website Parameter Reference - - - This is reference documentation for all user-configurable - parameters in the DocBook XSL Website stylesheet (for - generating websites from DocBook XML sources). Note that the - Website stylesheet is a customization layer of the DocBook XSL - HTML stylesheet. Therefore, in addition to the - Website-specific parameters listed in this section, you can - also use a number of HTML - stylesheet parameters to control Website output. - - - -General Parameters - - -autolayout-file -filename - - -autolayout-file -Identifies the autolayout.xml file - - - - -<xsl:param name="autolayout-file">autolayout.xml</xsl:param> - - - -Description -When the source pages are spread over several directories, this -parameter can be set (for example, from the command line of a batch-mode -XSLT processor) to indicate the location of the autolayout.xml file. -FIXME: for browser-based use, there needs to be a PI for this... - - - - - - -body.attributes -attribute set - - -body.attributes -DEPRECATED - - - - -<xsl:attribute-set name="body.attributes"> - <xsl:attribute name="bgcolor">white</xsl:attribute> - <xsl:attribute name="text">black</xsl:attribute> - <xsl:attribute name="link">#0000FF</xsl:attribute> - <xsl:attribute name="vlink">#840084</xsl:attribute> - <xsl:attribute name="alink">#0000FF</xsl:attribute> -</xsl:attribute-set> - - - -Description -DEPRECATED - - - - - -currentpage.marker -string - - -currentpage.marker -The text symbol used to mark the current page - - - - -<xsl:param name="currentpage.marker">@</xsl:param> - - - -Description -Character to use as identifying the current page in - - - - - -dry-run -boolean - - -dry-run -Indicates that no files should be produced - - - - <xsl:param name="dry-run" select="0"></xsl:param> - - -Description -When using the XSLT processor to manage dependencies and construct -the website, this parameter can be used to suppress the generation of -new and updated files. Effectively, this allows you to see what the -stylesheet would do, without actually making any changes. -Only applies when XSLT-based chunking is being used. - - - - - -feedback.href -uri - - -feedback.href -HREF (URI) for feedback link - - - - -<xsl:param name="feedback.href"></xsl:param> - - - -Description -The feedback.href value is used as the value -for the href attribute on the feedback -link. If feedback.href -is empty, no feedback link is generated. - - - - - -feedback.link.text -string - - -feedback.link.text -The text of the feedback link - - - - -<xsl:param name="feedback.link.text">Feedback</xsl:param> - - - -Description -The contents of this variable is used as the text of the feedback -link if feedback.href is not empty. If -feedback.href is empty, no feedback link is -generated. - - - - - -feedback.with.ids -boolean - - -feedback.with.ids -Toggle use of IDs in feedback - - - - -<xsl:param name="feedback.with.ids" select="0"></xsl:param> - - - -Description -If feedback.with.ids is non-zero, the ID of the -current page will be added to the feedback link. This can be used, for -example, if the feedback.href is a CGI script. - - - - - -filename-prefix -string - - -filename-prefix -Prefix added to all filenames - - - - -<xsl:param name="filename-prefix"></xsl:param> - - - -Description -To produce the text-only (that is, non-tabular) layout -of a website simultaneously with the tabular layout, the filenames have to -be distinguished. That's accomplished by adding the -filename-prefix to the front of each filename. - - - - - -footer.hr -boolean - - -footer.hr -Toggle <HR> before footer - - - - -<xsl:param name="footer.hr" select="1"></xsl:param> - - - -Description -If non-zero, an <HR> is generated at the bottom of each web page, -before the footer. - - - - - -header.hr -boolean - - -header.hr -Toggle <HR> after header - - - - -<xsl:param name="header.hr" select="1"></xsl:param> - - - -Description -If non-zero, an <HR> is generated at the bottom of each web page, -before the footer. - - - - - -output-root -filename - - -output-root -Specifies the root directory of the website - - - - -<xsl:param name="output-root">.</xsl:param> - - - -Description -When using the XSLT processor to manage dependencies and construct -the website, this parameter can be used to indicate the root directory -where the resulting pages are placed. -Only applies when XSLT-based chunking is being used. - - - - - -rebuild-all -boolean - - -rebuild-all -Indicates that all files should be produced - - - - -<xsl:param name="rebuild-all" select="0"></xsl:param> - - - -Description -When using the XSLT processor to manage dependencies and construct -the website, this parameter can be used to regenerate the whole website, -updating even pages that don't appear to need to be updated. -The dependency extension only looks at the source documents. So -if you change something in the stylesheet, for example, that has a global -effect, you can use this parameter to force the stylesheet to rebuild the -whole website. - -Only applies when XSLT-based chunking is being used. - - - - - -sequential.links -boolean - - -sequential.links -Make sequentional links? - - - - -<xsl:param name="sequential.links" select="0"></xsl:param> - - - -Description -FIXME - - - - - -suppress.homepage.title -boolean - - -suppress.homepage.title -Suppress title on homepage? - - - - -<xsl:param name="suppress.homepage.title" select="1"></xsl:param> - - - -Description -FIXME:If non-zero, the title on the homepage is suppressed? - - - - - -table.spacer.image -filename - - -table.spacer.image -Invisible pixel for tabular accessibility - - - - -<xsl:param name="table.spacer.image">graphics/spacer.gif</xsl:param> - - - -Description -This is the 1x1 pixel, transparent pixel used for the table trick to increase the accessibility of the tabular -website presentation. - - - - -Navigation Parameters - - -banner.before.navigation -boolean - - -banner.before.navigation -Put banner before navigation? - - - - -<xsl:param name="banner.before.navigation" select="1"></xsl:param> - - - -Description -FIXME - - - - - -navbgcolor -color - - -navbgcolor -The background color of the navigation TOC - - - - -<xsl:param name="navbgcolor">#4080FF</xsl:param> - - - -Description -The background color of the navigation TOC. -Only applies with the tabular presentation is being used. - - - - - -navbodywidth -length - - -navbodywidth -Specifies the width of the navigation table body - - - - -<xsl:param name="navbodywidth"></xsl:param> - - - -Description -The width of the body column. -Only applies with the tabular presentation is being used. - - - - - -nav.table.summary -string - - -nav.table.summary -HTML Table summary attribute value for navigation tables - - - - -<xsl:param name="nav.table.summary">Navigation</xsl:param> - - - -Description -The value of this parameter is used as the value of the table -summary attribute for the navigation table. -Only applies with the tabular presentation is being used. - - - - - -navtocwidth -length - - -navtocwidth -Specifies the width of the navigation table TOC - - - - -<xsl:param name="navtocwidth">220</xsl:param> - - - -Description -The width, in pixels, of the navigation column. -Only applies with the tabular presentation is being used. - - - - - -textbgcolor -color - - -textbgcolor -The background color of the table body - - - - -<xsl:param name="textbgcolor">white</xsl:param> - - - -Description -The background color of the table body. -Only applies with the tabular presentation is being used. - - - - -ToC Parameters - - -toc.blank.graphic -boolean - - -toc.blank.graphic -Use graphic for "blanks" in TOC? - - - - -<xsl:param name="toc.blank.graphic" select="1"></xsl:param> - - - -Description -If non-zero, "blanks" in the the TOC will be accomplished -with the graphic identified by toc.spacer.image. - -Only applies with the tabular presentation is being used. - - - - - -toc.blank.image -filename - - -toc.blank.image -The image for "blanks" in the TOC - - - - -<xsl:param name="toc.blank.image">graphics/blank.gif</xsl:param> - - - -Description -If toc.blank.graphic is non-zero, this image -will be used to for "blanks" in the TOC. -Only applies with the tabular presentation is being used. - - - - - -toc.blank.text -string - - -toc.blank.text -The text for "blanks" in the TOC - - - - -<xsl:param name="toc.blank.text">   </xsl:param> - - - -Description -If toc.blank.graphic is zero, this text string -will be used for "blanks" in the TOC. -Only applies with the tabular presentation is being used. - - - - - -toc.pointer.graphic -boolean - - -toc.pointer.graphic -Use graphic for TOC pointer? - - - - -<xsl:param name="toc.pointer.graphic" select="1"></xsl:param> - - - -Description -If non-zero, the "pointer" in the TOC will be displayed -with the graphic identified by toc.pointer.image. - -Only applies with the tabular presentation is being used. - - - - - -toc.pointer.image -filename - - -toc.pointer.image -The image for the "pointer" in the TOC - - - - -<xsl:param name="toc.pointer.image">graphics/arrow.gif</xsl:param> - - - -Description -If toc.pointer.graphic is non-zero, this image -will be used for the "pointer" in the TOC. -Only applies with the tabular presentation is being used. - - - - - -toc.pointer.text -string - - -toc.pointer.text -The text for the "pointer" in the TOC - - - - -<xsl:param name="toc.pointer.text"> > </xsl:param> - - - -Description -If toc.pointer.graphic is zero, this text string -will be used to display the "pointer" in the TOC. -Only applies with the tabular presentation is being used. - - - - - -toc.spacer.graphic -boolean - - -toc.spacer.graphic -Use graphic for TOC spacer? - - - - -<xsl:param name="toc.spacer.graphic" select="1"></xsl:param> - - - -Description -If non-zero, the indentation in the TOC will be accomplished -with the graphic identified by toc.spacer.image. - -Only applies with the tabular presentation is being used. - - - - - -toc.spacer.image -filename - - -toc.spacer.image -The image for spacing the TOC - - - - -<xsl:param name="toc.spacer.image">graphics/blank.gif</xsl:param> - - - -Description -If toc.spacer.graphic is non-zero, this image -will be used to indent the TOC. -Only applies with the tabular presentation is being used. - - - - - -toc.spacer.text -string - - -toc.spacer.text -The text for spacing the TOC - - - - -<xsl:param name="toc.spacer.text">   </xsl:param> - - - -Description -If toc.spacer.graphic is zero, this text string -will be used to indent the TOC. -Only applies with the tabular presentation is being used. - - - - - -
- DocBook XSL Stylesheets User Reference: PIs - - - - - This is generated reference documentation for all - user-specifiable processing instructions in the DocBook - XSL stylesheets. - - You add these PIs at particular points in a document to - cause specific “exceptions” to formatting/output behavior. To - make global changes in formatting/output behavior across an - entire document, it’s better to do it by setting an - appropriate stylesheet parameter (if there is one). - - - - - - HTML Processing Instruction Reference - - $Id: pi.xsl 8394 2009-04-02 20:31:30Z mzjn $ - - - - Introduction - -This is generated reference documentation for all - user-specifiable processing instructions (PIs) in the DocBook - XSL stylesheets for HTML output. - - -You add these PIs at particular points in a document to - cause specific “exceptions” to formatting/output behavior. To - make global changes in formatting/output behavior across an - entire document, it’s better to do it by setting an - appropriate stylesheet parameter (if there is one). - - - - - - - - -dbhtml_background-color -Sets background color for an image - - - - dbhtml background-color="color" - - -Description - -Use the dbhtml background-color PI before or - after an image (graphic, inlinegraphic, - imagedata, or videodata element) as a - sibling to the element, to set a background color for the - image. - - Parameters - - - background-color="color" - - -An HTML color value - - - - - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Background color - - - - - -dbhtml_bgcolor -Sets background color on a CALS table row or table cell - - - - dbhtml bgcolor="color" - - -Description - -Use the dbhtml bgcolor PI as child of a CALS table row - or cell to set a background color for that table row or cell. - - Parameters - - - bgcolor="color" - - -An HTML color value - - - - - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Cell background color - - - - - -dbhtml_cellpadding -Specifies cellpadding in CALS table or qandaset output - - - - dbhtml cellpadding="number" - - -Description - -Use the dbhtml cellpadding PI as a child of a - CALS table or qandaset to specify the value - for the HTML cellpadding attribute in the - output HTML table. - - Parameters - - - cellpadding="number" - - -Specifies the cellpadding - - - - - - Related Global Parameters - -html.cellpadding - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Cell spacing and cell padding, - Q and A formatting - - - - - -dbhtml_cellspacing -Specifies cellspacing in CALS table or qandaset output - - - - dbhtml cellspacing="number" - - -Description - -Use the dbhtml cellspacing PI as a child of a - CALS table or qandaset to specify the value - for the HTML cellspacing attribute in the - output HTML table. - - Parameters - - - cellspacing="number" - - -Specifies the cellspacing - - - - - - Related Global Parameters - -html.cellspacing - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Cell spacing and cell padding, - Q and A formatting - - - - - -dbhtml_class -Set value of the class attribute for a CALS table row - - - - dbhtml class="name" - - -Description - -Use the dbhtml class PI as a child of a - row to specify a class - attribute and value in the HTML output for that row. - - Parameters - - - class="name" - - -Specifies the class name - - - - - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Table styles in HTML output - - - - - -dbhtml_dir -Specifies a directory name in which to write files - - - - dbhtml dir="path" - - -Description - -When chunking output, use the dbhtml dir PI - as a child of a chunk source to cause the output of that - chunk to be written to the specified directory; also, use it - as a child of a mediaobject to specify a - directory into which any long-description files for that - mediaobject will be written. - - Parameters - - - dir="path" - - -Specifies the pathname for the directory - - - - - - Related Global Parameters - -base.dir - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -dbhtml dir processing instruction - - - - - -dbhtml_filename -Specifies a filename for a chunk - - - - dbhtml filename="filename" - - -Description - -When chunking output, use the dbhtml filename - PI as a child of a chunk source to specify a filename for - the output file for that chunk. - - Parameters - - - filename="path" - - -Specifies the filename for the file - - - - - - Related Global Parameters - -use.id.as.filename - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -dbhtml filenames - - - - - -dbhtml_funcsynopsis-style -Specifies presentation style for a funcsynopsis - - - - dbhtml funcsynopsis-style="kr"|"ansi" - - -Description - -Use the dbhtml funcsynopsis-style PI as a child of - a funcsynopsis or anywhere within a funcsynopsis - to control the presentation style for output of all - funcprototype instances within that funcsynopsis. - - Parameters - - - funcsynopsis-style="kr" - - -Displays funcprototype output in K&R style - - - - funcsynopsis-style="ansi" - - -Displays funcprototype output in ANSI style - - - - - - Related Global Parameters - -funcsynopsis.style - - - - - -dbhtml_img.src.path -Specifies a path to the location of an image file - - - - dbhtml img.src.path="path" - - -Description - -Use the dbhtml img.src.path PI before or - after an image (graphic, - inlinegraphic, imagedata, or - videodata element) as a sibling to the element, - to specify a path to the location of the image; in HTML - output, the value specified for the - img.src.path attribute is prepended to the - filename. - - Parameters - - - img.src.path="path" - - -Specifies the pathname to prepend to the name of the image file - - - - - - Related Global Parameters - -img.src.path - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Using fileref - - - - - -dbhtml_label-width -Specifies the label width for a qandaset - - - - dbhtml label-width="width" - - -Description - -Use the dbhtml label-width PI as a child of a - qandaset to specify the width of labels. - - Parameters - - - label-width="width" - - -Specifies the label width (including units) - - - - - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Q and A formatting - - - - - -dbhtml_linenumbering.everyNth -Specifies interval for line numbers in verbatims - - - - dbhtml linenumbering.everyNth="N" - - -Description - -Use the dbhtml linenumbering.everyNth PI as a child - of a “verbatim” element – programlisting, - screen, synopsis — to specify - the interval at which lines are numbered. - - Parameters - - - linenumbering.everyNth="N" - - -Specifies numbering interval; a number is output - before every Nth line - - - - - - Related Global Parameters - -linenumbering.everyNth - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Line numbering - - - - - -dbhtml_linenumbering.separator -Specifies separator text for line numbers in verbatims - - - - dbhtml linenumbering.separator="text" - - -Description - -Use the dbhtml linenumbering.separator PI as a child - of a “verbatim” element – programlisting, - screen, synopsis — to specify - the separator text output between the line numbers and content. - - Parameters - - - linenumbering.separator="text" - - -Specifies the text (zero or more characters) - - - - - - Related Global Parameters - -linenumbering.separator - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Line numbering - - - - - -dbhtml_linenumbering.width -Specifies width for line numbers in verbatims - - - - dbhtml linenumbering.width="width" - - -Description - -Use the dbhtml linenumbering.width PI as a child - of a “verbatim” element – programlisting, - screen, synopsis — to specify - the width set aside for line numbers. - - Parameters - - - linenumbering.width="width" - - -Specifies the width (inluding units) - - - - - - Related Global Parameters - -linenumbering.width - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Line numbering - - - - - -dbhtml_list-presentation -Specifies presentation style for a variablelist or - segmentedlist - - - - dbhtml list-presentation="list"|"table" - - -Description - -Use the dbhtml list-presentation PI as a child of - a variablelist or segmentedlist to - control the presentation style for the list (to cause it, for - example, to be displayed as a table). - - Parameters - - - list-presentation="list" - - -Displays the list as a list - - - - list-presentation="table" - - -Displays the list as a table - - - - - - Related Global Parameters - - - - -variablelist.as.table - - - - -segmentedlist.as.table - - - - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Variable list formatting in HTML - - - - - -dbhtml_list-width -Specifies the width of a variablelist or simplelist - - - - dbhtml list-width="width" - - -Description - -Use the dbhtml list-width PI as a child of a - variablelist or a simplelist presented - as a table, to specify the output width. - - Parameters - - - list-width="width" - - -Specifies the output width (including units) - - - - - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Variable list formatting in HTML - - - - - -dbhtml_row-height -Specifies the height for a CALS table row - - - - dbhtml row-height="height" - - -Description - -Use the dbhtml row-height PI as a child of a - row to specify the height of the row. - - Parameters - - - row-height="height" - - -Specifies the row height (including units) - - - - - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Row height - - - - - -dbhtml_start -(obsolete) Sets the starting number on an ordered list - - - - dbhtml start="character" - - -Description - -This PI is obsolete. The intent of - this PI was to provide a means for setting a specific starting - number for an ordered list. Instead of this PI, set a value - for the override attribute on the first - listitem in the list; that will have the same - effect as what this PI was intended for. - - Parameters - - - start="character" - - -Specifies the character to use as the starting - number; use 0-9, a-z, A-Z, or lowercase or uppercase - Roman numerals - - - - - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -List starting number - - - - - -dbhtml_stop-chunking -Do not chunk any descendants of this element. - - - - dbhtml stop-chunking - - -Description - -When generating chunked HTML output, adding this PI as the child of an element that contains elements that would normally be generated on separate pages if generating chunked output causes chunking to stop at this point. No descendants of the current element will be split into new HTML pages: -<section> -<title>Configuring pencil</title> -<?dbhtml stop-chunking?> - -... - -</section> - - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Chunking into multiple HTML files - - - - - -dbhtml_table-summary -Specifies summary for CALS table, variablelist, segmentedlist, or qandaset output - - - - dbhtml table-summary="text" - - -Description - -Use the dbhtml table-summary PI as a child of - a CALS table, variablelist, - segmentedlist, or qandaset to specify - the text for the HTML summary attribute - in the output HTML table. - - Parameters - - - table-summary="text" - - -Specifies the summary text (zero or more characters) - - - - - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Variable list formatting in HTML, - Table summary text - - - - - -dbhtml_table-width -Specifies the width for a CALS table - - - - dbhtml table-width="width" - - -Description - -Use the dbhtml table-width PI as a child of a - CALS table to specify the width of the table in - output. - - Parameters - - - table-width="width" - - -Specifies the table width (including units or as a percentage) - - - - - - Related Global Parameters - -default.table.width - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Table width - - - - - -dbhtml_term-presentation -Sets character formatting for terms in a variablelist - - - - dbhtml term-presentation="bold"|"italic"|"bold-italic" - - -Description - -Use the dbhtml term-presentation PI as a child - of a variablelist to set character formatting for - the term output of the list. - - Parameters - - - term-presentation="bold" - - -Specifies that terms are displayed in bold - - - - term-presentation="italic" - - -Specifies that terms are displayed in italic - - - - term-presentation="bold-italic" - - -Specifies that terms are displayed in bold-italic - - - - - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Variable list formatting in HTML - - - - - -dbhtml_term-separator -Specifies separator text among terms in a varlistentry - - - - dbhtml term-separator="text" - - -Description - -Use the dbhtml term-separator PI as a child - of a variablelist to specify the separator text - among term instances. - - Parameters - - - term-separator="text" - - -Specifies the text (zero or more characters) - - - - - - Related Global Parameters - -variablelist.term.separator - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Variable list formatting in HTML - - - - - -dbhtml_term-width -Specifies the term width for a variablelist - - - - dbhtml term-width="width" - - -Description - -Use the dbhtml term-width PI as a child of a - variablelist to specify the width for - term output. - - Parameters - - - term-width="width" - - -Specifies the term width (including units) - - - - - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Variable list formatting in HTML - - - - - -dbhtml_toc -Specifies whether a TOC should be generated for a qandaset - - - - dbhtml toc="0"|"1" - - -Description - -Use the dbhtml toc PI as a child of a - qandaset to specify whether a table of contents - (TOC) is generated for the qandaset. - - Parameters - - - toc="0" - - -If zero, no TOC is generated - - - - toc="1" - - -If 1 (or any non-zero value), - a TOC is generated - - - - - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Q and A list of questions, - Q and A formatting - - - - - -dbcmdlist -Generates a hyperlinked list of commands - - - - dbcmdlist - - -Description - -Use the dbcmdlist PI as the child of any - element (for example, refsynopsisdiv) containing multiple - cmdsynopsis instances; a hyperlinked navigational - “command list” will be generated at the top of output for that - element, enabling users to quickly jump - to each command synopsis. - - Parameters - -[No parameters] - - - - - -dbfunclist -Generates a hyperlinked list of functions - - - - dbfunclist - - -Description - -Use the dbfunclist PI as the child of any - element (for example, refsynopsisdiv) containing multiple - funcsynopsis instances; a hyperlinked - navigational “function list” will be generated at the top of - output for that element, enabling users to quickly - jump to to each function synopsis. - - Parameters - -[No parameters] - - - - - -dbhtml-include_href -Copies an external well-formed HTML/XML file into current doc - - - - dbhtml-include href="URI" - - -Description - -Use the dbhtml-include href PI anywhere in a - document to cause the contents of the file referenced by the - href pseudo-attribute to be copied/inserted “as - is” into your HTML output at the point in document order - where the PI occurs in the source. - - - -The referenced file may contain plain text (as long as - it is “wrapped” in an html element — see the - note below) or markup in any arbitrary vocabulary, - including HTML — but it must conform to XML - well-formedness constraints (because the feature in XSLT - 1.0 for opening external files, the - document() function, can only handle - files that meet XML well-formedness constraints). - - -Among other things, XML well-formedness constraints - require a document to have a single root - element. So if the content you want to - include is plain text or is markup that does - not have a single root element, - wrap the content in an - html element. The stylesheets will - strip out that surrounding html “wrapper” when - they find it, leaving just the content you want to - insert. - - - Parameters - - - href="URI" - - -Specifies the URI for the file to include; the URI - can be, for example, a remote http: - URI, or a local filesystem file: - URI - - - - - - Related Global Parameters - -textinsert.extension - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Inserting external HTML code, - External code files - - - - - -dbhh -Sets topic name and topic id for context-sensitive HTML Help - - - - dbhh topicname="name" topicid="id" - - -Description - -Use the dbhh PI as a child of components - that should be used as targets for context-sensitive help requests. - - Parameters - - - topicname="name" - - -Specifies a unique string constant that identifies a help topic - - - - topicid="id" - - -Specifies a unique integer value for the topicname string - - - - - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Context-sensitive help - - - - - - FO Processing Instruction Reference - - $Id: pi.xsl 8487 2009-07-14 21:43:36Z bobstayton $ - - - - - Introduction - - -This is generated reference documentation for all - user-specifiable processing instructions (PIs) in the DocBook - XSL stylesheets for FO output. - - -You add these PIs at particular points in a document to - cause specific “exceptions” to formatting/output behavior. To - make global changes in formatting/output behavior across an - entire document, it’s better to do it by setting an - appropriate stylesheet parameter (if there is one). - - - - - - - - -dbfo_background-color -Sets background color for an image - - - - dbfo background-color="color" - - -Description - -Use the dbfo background-color PI before or - after an image (graphic, inlinegraphic, - imagedata, or videodata element) as a - sibling to the element, to set a background color for the - image. - - Parameters - - - background-color="color" - - -An HTML color value - - - - - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Background color - - - - - -dbfo_bgcolor -Sets background color on a table row or table cell - - - - dbfo bgcolor="color" - - -Description - -Use the dbfo bgcolor PI as child of a table row - or cell to set a background color for that table row or cell. - - -This PI works for both CALS and HTML tables. - - Parameters - - - bgcolor="color" - - -An HTML color value - - - - - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Cell background color - - - - - -dbfo_float-type -Specifies float behavior for a sidebar - - - - dbfo float-type="margin.note" - - -Description - -Use the dbfo float-type PI to specify the float - behavior for a sidebar (to cause the sidebar to be - displayed as a marginal note). - - Parameters - - - float-type="margin.note" - - -Specifies that the sidebar should be - displayed as a marginal note. - - - - - - Related Global Parameters - -sidebar.float.type (parameter), - sidebar.float.width (parameter), - sidebar.properties (attribute-set), - sidebar.title.properties (attribute-set) - - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -A sidebar as - side float - - - - - -dbfo_funcsynopsis-style -Specifies presentation style for a funcsynopsis - - - - dbfo funcsynopsis-style="kr"|"ansi" - - -Description - -Use the dbfo funcsynopsis-style PI as a child of - a funcsynopsis or anywhere within a funcsynopsis - to control the presentation style for output of all - funcprototype instances within that funcsynopsis. - - Parameters - - - funcsynopsis-style="kr" - - -Displays funcprototype output in K&R style - - - - funcsynopsis-style="ansi" - - -Displays funcprototype output in ANSI style - - - - - - Related Global Parameters - -funcsynopsis.style - - - - - -dbfo_glossary-presentation -Specifies presentation style for a glossary - - - - dbfo glossary-presentation="list"|"blocks" - - -Description - -Use the dbfo glossary-presentation PI as a child of - a glossary to control its presentation style. - - Parameters - - - glossary-presentation="list" - - -Displays the glossary as a list - - - - glossary-presentation="blocks" - - -Displays the glossary as blocks - - - - - - Related Global Parameters - -glossary.as.blocks - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Glossary - formatting in print - - - - - -dbfo_glosslist-presentation -Specifies presentation style for a glosslist - - - - dbfo glosslist-presentation="list"|"blocks" - - -Description - -Use the dbfo glosslist-presentation PI as a child of - a glosslist to control its presentation style. - - Parameters - - - glosslist-presentation="list" - - -Displays the glosslist as a list - - - - glosslist-presentation="blocks" - - -Displays the glosslist as blocks - - - - - - Related Global Parameters - -glosslist.as.blocks - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Glossary - formatting in print - - - - - -dbfo_glossterm-width -Specifies the glossterm width for a glossary or - glosslist - - - - dbfo glossterm-width="width" - - -Description - -Use the dbfo glossterm-width PI as a child of a - glossary or glosslist to specify the - width for output of glossterm instances in the - output. - - Parameters - - - glossterm-width="width" - - -Specifies the glossterm width (including units) - - - - - - Related Global Parameters - -glossterm.width, - glossterm.separation - - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Glossary - formatting in print - - - - - -dbfo_keep-together -Specifies “keep” behavior for a table, example, - figure, equation, procedure, or task - - - - dbfo keep-together="auto"|"always" - - -Description - -Use the dbfo keep-together PI as a child of a - formal object (table, example, - figure, equation, procedure, or - task) to specify “keep” behavior (to allow the object to - “break” across a page). - - -The PI also works with informaltable, informalexample, - informalfigure and informalequation. - - - - Parameters - - - keep-together="auto" - - -Enables the object to break across a page - - - - keep-together="always" - - -Prevents the object from breaking across a page (the - default stylesheet behavior) - - - - - - Related Global Parameters - -formal.object.properties - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Keep-together processing instruction - - - - - -dbfo_label-width -Specifies the label width for a qandaset, itemizedlist, orderedlist - or calloutlist - - - - dbfo label-width="width" - - -Description - -Use the dbfo label-width PI as a child of a - qandaset, itemizedlist, orderedlist, - or calloutlist to specify the width of labels. - - Parameters - - - label-width="width" - - -Specifies the label width (including units) - - - - - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Q and A formatting - - - - - -dbfo_linenumbering.everyNth -Specifies interval for line numbers in verbatims - - - - dbfo linenumbering.everyNth="N" - - -Description - -Use the dbfo linenumbering.everyNth PI as a child - of a “verbatim” element – programlisting, - screen, synopsis — to specify - the interval at which lines are numbered. - - Parameters - - - linenumbering.everyNth="N" - - -Specifies numbering interval; a number is output - before every Nth line - - - - - - Related Global Parameters - -linenumbering.everyNth - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Line numbering - - - - - -dbfo_linenumbering.separator -Specifies separator text for line numbers in verbatims - - - - dbfo linenumbering.separator="text" - - -Description - -Use the dbfo linenumbering.separator PI as a child - of a “verbatim” element – programlisting, - screen, synopsis — to specify - the separator text output between the line numbers and content. - - Parameters - - - linenumbering.separator="text" - - -Specifies the text (zero or more characters) - - - - - - Related Global Parameters - -linenumbering.separator - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Line numbering - - - - - -dbfo_linenumbering.width -Specifies width for line numbers in verbatims - - - - dbfo linenumbering.width="width" - - -Description - -Use the dbfo linenumbering.width PI as a child - of a “verbatim” element – programlisting, - screen, synopsis — to specify - the width set aside for line numbers. - - Parameters - - - linenumbering.width="width" - - -Specifies the width (inluding units) - - - - - - Related Global Parameters - -linenumbering.width - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Line numbering - - - - - -dbfo_list-presentation -Specifies presentation style for a variablelist or - segmentedlist - - - - dbfo list-presentation="list"|"blocks"|"table" - - -Description - -Use the dbfo list-presentation PI as a child of - a variablelist or segmentedlist to - control the presentation style for the list (to cause it, for - example, to be displayed as a table). - - Parameters - - - list-presentation="list" - - -Displays the list as a list - - - - list-presentation="blocks" - - -(variablelist only) Displays the list as blocks - - - - list-presentation="table" - - -(segmentedlist only) Displays the list as a table - - - - - - Related Global Parameters - - - - -variablelist.as.blocks - - - - -variablelist.as.table - - - - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Variable list formatting in print - - - - - -dbfo_list-width -Specifies the width of a horizontal simplelist - - - - dbfo list-width="width" - - -Description - -Use the dbfo list-width PI as a child of a - simplelist whose class - value is horizontal, to specify the width - of the simplelist. - - Parameters - - - list-width="width" - - -Specifies the simplelist width (including units) - - - - - - - - - -dbfo_orientation -Specifies the orientation for a CALS table row or cell - - - - dbfo orientation="0"|"90"|"180"|"270"|"-90"|"-180"|"-270" - - -Description - -Use the dbfo orientation PI as a child of a CALS - table row or cell to specify the orientation - (rotation) for the row or cell. - - Parameters - - - orientation="0"|"90"|"180"|"270"|"-90"|"-180"|"-270" - - -Specifies the number of degrees by which the cell or - row is rotated - - - - - - - - - -dbfo_pgwide -Specifies if an equation or example goes across full page width - - - - dbfo pgwide="0"|"1" - - -Description - -Use the dbfo pgwide PI as a child of an - equation or example to specify that the - content should rendered across the full width of the page. - - Parameters - - - pgwide="0" - - -If zero, the content is rendered across the current - text flow - - - - pgwide="1" - - -If 1 (or any non-zero value), the - content is rendered across the full width of the page - - - - - - Related Global Parameters - -pgwide.properties - - - - - -dbfo_rotated-width -Specifies the width for a CALS table entry or - row - - - - dbfo rotated-width="width" - - -Description - -Use the dbfo rotated-width PI as a child of - entry or row instance in a CALS table to specify the - width of that the entry or row; or - use it higher up in table to cause the width to be inherited - recursively down. - - Parameters - - - rotated-width="width" - - -Specifies the width of a row or cell (including units) - - - - - - - - - -dbfo_sidebar-width -Specifies the width of a sidebar - - - - dbfo sidebar-width="width" - - -Description - -Use the dbfo sidebar-width PI as a child of a - sidebar to specify the width of the sidebar. - - Parameters - - - sidebar-width="width" - - -Specifies the sidebar width (including units) - - - - - - Related Global Parameters - -sidebar.float.type parameter, - sidebar.float.width parameter, - sidebar.properties attribute-set, - sidebar.title.properties - - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -A sidebar as - side float - - - - - -dbfo_start -(obsolete) Sets the starting number on an ordered list - - - - dbfo start="character" - - -Description - -This PI is obsolete. The intent of - it was to provide a means for setting a specific starting - number for an ordered list. Instead of this PI, set a value - for the override attribute on the first - listitem in the list; that will have the same - effect as what this PI was intended for. - - Parameters - - - start="character" - - -Specifies the character to use as the starting - number; use 0-9, a-z, A-Z, or lowercase or uppercase - Roman numerals - - - - - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -List starting number - - - - - -dbfo_table-width -Specifies the width for a CALS table or for revhistory - output - - - - dbfo table-width="width" - - -Description - -Use the dbfo table-width PI as a child or - sibling of a CALS table, or as a child of an - informaltable, entrytbl, or - revhistory instance (which is rendered as a table - in output) to specify the width of the table in output. - - Parameters - - - table-width="width" - - -Specifies the table width (including units or as a percentage) - - - - - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Table width - - - - - -dbfo_term-width -Specifies the term width for a variablelist - - - - dbfo term-width="width" - - -Description - -Use the dbfo term-width PI as a child of a - variablelist to specify the width for - term output. - - Parameters - - - term-width="width" - - -Specifies the term width (including units) - - - - - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Variable list formatting in print - - - - - -dbfo_toc -Specifies whether a TOC should be generated for a qandaset - - - - dbfo toc="0"|"1" - - -Description - -Use the dbfo toc PI as a child of a - qandaset to specify whether a table of contents - (TOC) is generated for the qandaset. - - Parameters - - - toc="0" - - -If zero, no TOC is generated - - - - toc="1" - - -If 1 (or any non-zero value), - a TOC is generated - - - - - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Q and A list of questions, - Q and A formatting - - - - - -dbfo-need -Specify a need for space (a kind of soft page break) - - - - dbfo-need height="n" [space-before="n"] - - -Description - -A “need” is a request for space on a page. If the - requested space is not available, the page breaks and the - content that follows the need request appears on the next - page. If the requested space is available, then no page break - is inserted. - - Parameters - - - height="n" - - -The amount of height needed (including units) - - - - space-before="n" - - -The amount of extra vertical space to add (including units) - - - - - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Soft page breaks - - - - - -dbfo_row-height -Specifies the height for a CALS table row - - - - dbfo row-height="height" - - -Description - -Use the dbfo row-height PI as a child of a - row to specify the height of the row. - - Parameters - - - row-height="height" - - -Specifies the row height (including units) - - - - - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Row height - - - - - - manpages Processing Instruction Reference - - $Id: pi.xsl 7644 2008-01-16 11:04:07Z xmldoc $ - - - - Introduction - -This is generated reference documentation for all - user-specifiable processing instructions (PIs) in the DocBook - XSL stylesheets for manpages output. - - -You add these PIs at particular points in a document to - cause specific “exceptions” to formatting/output behavior. To - make global changes in formatting/output behavior across an - entire document, it’s better to do it by setting an - appropriate stylesheet parameter (if there is one). - - - - - - - - -dbman_funcsynopsis-style -Specifies presentation style for a funcsynopsis. - - - - dbman funcsynopsis-style="kr"|"ansi" - - -Description - -Use the dbman - funcsynopsis-style PI as a child of a - funcsynopsis or anywhere within a funcsynopsis - to control the presentation style for output of all - funcprototype instances within that funcsynopsis. - - Parameters - - - funcsynopsis-style="kr" - - -Displays the funcprototype in K&R style - - - - funcsynopsis-style="ansi" - - -Displays the funcprototype in ANSI style - - - - - - Related Global Parameters - -man.funcsynopsis.style - - - - - - Common Processing Instruction Reference - - $Id: pi.xsl 8349 2009-03-17 06:53:03Z bobstayton $ - - - - Introduction - -This is generated reference documentation for all - user-specifiable processing instructions (PIs) in the - “common” part of the DocBook XSL stylesheets. - - -You add these PIs at particular points in a document to - cause specific “exceptions” to formatting/output behavior. To - make global changes in formatting/output behavior across an - entire document, it’s better to do it by setting an - appropriate stylesheet parameter (if there is one). - - - - - - - - -dbchoice_choice -Generates a localized choice separator - - - - dbchoice choice="and"|"or"|string" - - -Description - -Use the dbchoice choice PI to - generate an appropriate localized “choice” separator (for - example, and or or) - before the final item in an inline simplelist - - - -This PI is a less-than-ideal hack; support for it may - disappear in the future (particularly if and when a more - appropriate means for marking up "choice" lists becomes - available in DocBook). - - - Parameters - - - choice="and" - - -generates a localized and separator - - - - choice="or" - - -generates a localized or separator - - - - choice="string" - - -generates a literal string separator - - - - - - - - - -dbtimestamp -Inserts a date timestamp - - - - dbtimestamp format="formatstring" [padding="0"|"1"] - - -Description - -Use the dbtimestamp PI at any point in a - source document to cause a date timestamp (a formatted - string representing the current date and time) to be - inserted in output of the document. - - Parameters - - - format="formatstring" - - -Specifies format in which the date and time are - output - - - -For details of the content of the format string, - see Date and time. - - - - - padding="0"|"1" - - -Specifies padding behavior; if non-zero, padding is is added - - - - - - - - - -dbtex_delims -Generates delimiters around embedded TeX equations - in output - - - - dbtex delims="no"|"yes" - - -Description - -Use the dbtex delims PI as a - child of a textobject containing embedded TeX - markup, to cause that markup to be surrounded by - $ delimiter characters in output. - - Parameters - - - dbtex delims="no"|"yes" - - -Specifies whether delimiters are output - - - - - - Related Global Parameters - -tex.math.delims - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -DBTeXMath - - - - - - DocBook XSL Stylesheets Developer Reference - - - This is technical reference documentation for - developers using the DocBook XSL Stylesheets. It is not - intended to be user documentation, but is instead - provided for developers writing customization layers for - the stylesheets. - - - - - - XSL Library Template Reference - - Introduction - This is technical reference documentation for the - vocabulary-independent “library” templates in the DocBook XSL - Stylesheets. - This is not intended to be user documentation. It is - provided for developers writing customization layers for the - stylesheets. - - - - General Library Templates - - - -dot.count -Returns the number of . characters in a string - - -Description - - Given a string, the dot.count - template returns the number of dot/period characters in the - string. This template is useful, for example, when testing the - nesting level of nested inline markup (for nested emphasis, - quotations, etc.). - - -<xsl:template name="dot.count"> - <!-- Returns the number of "." characters in a string --> - <xsl:param name="string"></xsl:param> - <xsl:param name="count" select="0"></xsl:param> - <xsl:choose> - <xsl:when test="contains($string, '.')"> - <xsl:call-template name="dot.count"> - <xsl:with-param name="string" select="substring-after($string, '.')"></xsl:with-param> - <xsl:with-param name="count" select="$count+1"></xsl:with-param> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="$count"></xsl:value-of> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - - - - - - - - - -copy-string -Returns count copies of a string - - -Description - - Given a string, the copy-string - template creates n copies of the - string, when the value of n is - given by the count parameter. - - -<xsl:template name="copy-string"> - <!-- returns 'count' copies of 'string' --> - <xsl:param name="string"></xsl:param> - <xsl:param name="count" select="0"></xsl:param> - <xsl:param name="result"></xsl:param> - - <xsl:choose> - <xsl:when test="$count>0"> - <xsl:call-template name="copy-string"> - <xsl:with-param name="string" select="$string"></xsl:with-param> - <xsl:with-param name="count" select="$count - 1"></xsl:with-param> - <xsl:with-param name="result"> - <xsl:value-of select="$result"></xsl:value-of> - <xsl:value-of select="$string"></xsl:value-of> - </xsl:with-param> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="$result"></xsl:value-of> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - - - - - - - - - -string.subst -Substitute one text string for another in a string - - -Description - -The string.subst template replaces all -occurances of target in string -with replacement and returns the result. - - - -<xsl:template name="string.subst"> - <xsl:param name="string"></xsl:param> - <xsl:param name="target"></xsl:param> - <xsl:param name="replacement"></xsl:param> - - <xsl:choose> - <xsl:when test="contains($string, $target)"> - <xsl:variable name="rest"> - <xsl:call-template name="string.subst"> - <xsl:with-param name="string" select="substring-after($string, $target)"></xsl:with-param> - <xsl:with-param name="target" select="$target"></xsl:with-param> - <xsl:with-param name="replacement" select="$replacement"></xsl:with-param> - </xsl:call-template> - </xsl:variable> - <xsl:value-of select="concat(substring-before($string, $target), $replacement, $rest)"></xsl:value-of> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="$string"></xsl:value-of> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - - - - - - - - - -xpointer.idref -Extract IDREF from an XPointer - - -Description - -The xpointer.idref template returns the -ID portion of an XPointer which is a pointer to an ID within the current -document, or the empty string if it is not. -In other words, xpointer.idref returns -foo when passed either #foo -or #xpointer(id('foo')), otherwise it returns -the empty string. - - -<xsl:template name="xpointer.idref"> - <xsl:param name="xpointer">http://...</xsl:param> - <xsl:choose> - <xsl:when test="starts-with($xpointer, '#xpointer(id(')"> - <xsl:variable name="rest" select="substring-after($xpointer, '#xpointer(id(')"></xsl:variable> - <xsl:variable name="quote" select="substring($rest, 1, 1)"></xsl:variable> - <xsl:value-of select="substring-before(substring-after($xpointer, $quote), $quote)"></xsl:value-of> - </xsl:when> - <xsl:when test="starts-with($xpointer, '#')"> - <xsl:value-of select="substring-after($xpointer, '#')"></xsl:value-of> - </xsl:when> - <!-- otherwise it's a pointer to some other document --> - </xsl:choose> -</xsl:template> - - - - - - - - - - -length-magnitude -Return the unqualified dimension from a length specification - - -Description - -The length-magnitude template returns the -unqualified length ("20" for "20pt") from a dimension. - - - -<xsl:template name="length-magnitude"> - <xsl:param name="length" select="'0pt'"></xsl:param> - - <xsl:choose> - <xsl:when test="string-length($length) = 0"></xsl:when> - <xsl:when test="substring($length,1,1) = '0' or substring($length,1,1) = '1' or substring($length,1,1) = '2' or substring($length,1,1) = '3' or substring($length,1,1) = '4' or substring($length,1,1) = '5' or substring($length,1,1) = '6' or substring($length,1,1) = '7' or substring($length,1,1) = '8' or substring($length,1,1) = '9' or substring($length,1,1) = '.'"> - <xsl:value-of select="substring($length,1,1)"></xsl:value-of> - <xsl:call-template name="length-magnitude"> - <xsl:with-param name="length" select="substring($length,2)"></xsl:with-param> - </xsl:call-template> - </xsl:when> - </xsl:choose> -</xsl:template> - - - - - - - - - -length-units -Return the units from a length specification - - -Description - -The length-units template returns the -units ("pt" for "20pt") from a length. If no units are supplied on the -length, the defauilt.units are returned. - - -<xsl:template name="length-units"> - <xsl:param name="length" select="'0pt'"></xsl:param> - <xsl:param name="default.units" select="'px'"></xsl:param> - <xsl:variable name="magnitude"> - <xsl:call-template name="length-magnitude"> - <xsl:with-param name="length" select="$length"></xsl:with-param> - </xsl:call-template> - </xsl:variable> - - <xsl:variable name="units"> - <xsl:value-of select="substring($length, string-length($magnitude)+1)"></xsl:value-of> - </xsl:variable> - - <xsl:choose> - <xsl:when test="$units = ''"> - <xsl:value-of select="$default.units"></xsl:value-of> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="$units"></xsl:value-of> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - - - - - - - - - -length-spec -Return a fully qualified length specification - - -Description - -The length-spec template returns the -qualified length from a dimension. If an unqualified length is given, -the default.units will be added to it. - - - -<xsl:template name="length-spec"> - <xsl:param name="length" select="'0pt'"></xsl:param> - <xsl:param name="default.units" select="'px'"></xsl:param> - - <xsl:variable name="magnitude"> - <xsl:call-template name="length-magnitude"> - <xsl:with-param name="length" select="$length"></xsl:with-param> - </xsl:call-template> - </xsl:variable> - - <xsl:variable name="units"> - <xsl:value-of select="substring($length, string-length($magnitude)+1)"></xsl:value-of> - </xsl:variable> - - <xsl:value-of select="$magnitude"></xsl:value-of> - <xsl:choose> - <xsl:when test="$units='cm' or $units='mm' or $units='in' or $units='pt' or $units='pc' or $units='px' or $units='em'"> - <xsl:value-of select="$units"></xsl:value-of> - </xsl:when> - <xsl:when test="$units = ''"> - <xsl:value-of select="$default.units"></xsl:value-of> - </xsl:when> - <xsl:otherwise> - <xsl:message> - <xsl:text>Unrecognized unit of measure: </xsl:text> - <xsl:value-of select="$units"></xsl:value-of> - <xsl:text>.</xsl:text> - </xsl:message> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - - - - - - - - - -length-in-points -Returns the size, in points, of a specified length - - -Description - -The length-in-points template converts a length -specification to points and returns that value as an unqualified -number. - - - -There is no way for the template to infer the size of an -em. It relies on the default em.size -which is initially 10 (for 10pt). - -Similarly, converting pixels to points relies on the -pixels.per.inch parameter which is initially -90. - - - - -<xsl:template name="length-in-points"> - <xsl:param name="length" select="'0pt'"></xsl:param> - <xsl:param name="em.size" select="10"></xsl:param> - <xsl:param name="pixels.per.inch" select="90"></xsl:param> - - <xsl:variable name="magnitude"> - <xsl:call-template name="length-magnitude"> - <xsl:with-param name="length" select="$length"></xsl:with-param> - </xsl:call-template> - </xsl:variable> - - <xsl:variable name="units"> - <xsl:value-of select="substring($length, string-length($magnitude)+1)"></xsl:value-of> - </xsl:variable> - - <xsl:choose> - <xsl:when test="$units = 'pt'"> - <xsl:value-of select="$magnitude"></xsl:value-of> - </xsl:when> - <xsl:when test="$units = 'cm'"> - <xsl:value-of select="$magnitude div 2.54 * 72.0"></xsl:value-of> - </xsl:when> - <xsl:when test="$units = 'mm'"> - <xsl:value-of select="$magnitude div 25.4 * 72.0"></xsl:value-of> - </xsl:when> - <xsl:when test="$units = 'in'"> - <xsl:value-of select="$magnitude * 72.0"></xsl:value-of> - </xsl:when> - <xsl:when test="$units = 'pc'"> - <xsl:value-of select="$magnitude * 12.0"></xsl:value-of> - </xsl:when> - <xsl:when test="$units = 'px'"> - <xsl:value-of select="$magnitude div $pixels.per.inch * 72.0"></xsl:value-of> - </xsl:when> - <xsl:when test="$units = 'em'"> - <xsl:value-of select="$magnitude * $em.size"></xsl:value-of> - </xsl:when> - <xsl:otherwise> - <xsl:message> - <xsl:text>Unrecognized unit of measure: </xsl:text> - <xsl:value-of select="$units"></xsl:value-of> - <xsl:text>.</xsl:text> - </xsl:message> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - - - - - - - - - -pi-attribute -Extract a pseudo-attribute from a PI - - -Description - -The pi-attribute template extracts a pseudo-attribute -from a processing instruction. For example, given the PI -<?foo bar="1" baz='red'?>, -<xsl:call-template name="pi-attribute"> - <xsl:with-param name="pis" select="processing-instruction('foo')"/> - <xsl:with-param name="attribute" select="'baz'"/> -</xsl:call-template> -will return red. This template returns the first matching -attribute that it finds. Presented with processing instructions that -contain badly formed pseudo-attributes (missing or unbalanced quotes, -for example), the template may silently return erroneous results. - - -<xsl:template name="pi-attribute"> - <xsl:param name="pis" select="processing-instruction('BOGUS_PI')"></xsl:param> - <xsl:param name="attribute">filename</xsl:param> - <xsl:param name="count">1</xsl:param> - - <xsl:choose> - <xsl:when test="$count>count($pis)"> - <!-- not found --> - </xsl:when> - <xsl:otherwise> - <xsl:variable name="pi"> - <xsl:value-of select="$pis[$count]"></xsl:value-of> - </xsl:variable> - <xsl:variable name="pivalue"> - <xsl:value-of select="concat(' ', normalize-space($pi))"></xsl:value-of> - </xsl:variable> - <xsl:choose> - <xsl:when test="contains($pivalue,concat(' ', $attribute, '='))"> - <xsl:variable name="rest" select="substring-after($pivalue,concat(' ', $attribute,'='))"></xsl:variable> - <xsl:variable name="quote" select="substring($rest,1,1)"></xsl:variable> - <xsl:value-of select="substring-before(substring($rest,2),$quote)"></xsl:value-of> - </xsl:when> - <xsl:otherwise> - <xsl:call-template name="pi-attribute"> - <xsl:with-param name="pis" select="$pis"></xsl:with-param> - <xsl:with-param name="attribute" select="$attribute"></xsl:with-param> - <xsl:with-param name="count" select="$count + 1"></xsl:with-param> - </xsl:call-template> - </xsl:otherwise> - </xsl:choose> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - - - - - - - - - -lookup.key -Retrieve the value associated with a particular key in a table - - -Description - -Given a table of space-delimited key/value pairs, -the lookup.key template extracts the value associated -with a particular key. - - -<xsl:template name="lookup.key"> - <xsl:param name="key" select="''"></xsl:param> - <xsl:param name="table" select="''"></xsl:param> - - <xsl:if test="contains($table, ' ')"> - <xsl:choose> - <xsl:when test="substring-before($table, ' ') = $key"> - <xsl:variable name="rest" select="substring-after($table, ' ')"></xsl:variable> - <xsl:choose> - <xsl:when test="contains($rest, ' ')"> - <xsl:value-of select="substring-before($rest, ' ')"></xsl:value-of> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="$rest"></xsl:value-of> - </xsl:otherwise> - </xsl:choose> - </xsl:when> - <xsl:otherwise> - <xsl:call-template name="lookup.key"> - <xsl:with-param name="key" select="$key"></xsl:with-param> - <xsl:with-param name="table" select="substring-after(substring-after($table,' '), ' ')"></xsl:with-param> - </xsl:call-template> - </xsl:otherwise> - </xsl:choose> - </xsl:if> -</xsl:template> - - - - - - - - - -xpath.location -Calculate the XPath child-sequence to the current node - - -Description - -The xpath.location template calculates the -absolute path from the root of the tree to the current element node. - - - -<xsl:template name="xpath.location"> - <xsl:param name="node" select="."></xsl:param> - <xsl:param name="path" select="''"></xsl:param> - - <xsl:variable name="next.path"> - <xsl:value-of select="local-name($node)"></xsl:value-of> - <xsl:if test="$path != ''">/</xsl:if> - <xsl:value-of select="$path"></xsl:value-of> - </xsl:variable> - - <xsl:choose> - <xsl:when test="$node/parent::*"> - <xsl:call-template name="xpath.location"> - <xsl:with-param name="node" select="$node/parent::*"></xsl:with-param> - <xsl:with-param name="path" select="$next.path"></xsl:with-param> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <xsl:text>/</xsl:text> - <xsl:value-of select="$next.path"></xsl:value-of> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - - - - - - - - - -comment-escape-string -Prepare a string for inclusion in an XML comment - - -Description - -The comment-escape-string template returns a string -that has been transformed so that it can safely be output as an XML comment. -Internal occurrences of "--" will be replaced with "- -" and a leading and/or -trailing space will be added to the string, if necessary. - - -<xsl:template name="comment-escape-string"> - <xsl:param name="string" select="''"></xsl:param> - - <xsl:if test="starts-with($string, '-')"> - <xsl:text> </xsl:text> - </xsl:if> - - <xsl:call-template name="comment-escape-string.recursive"> - <xsl:with-param name="string" select="$string"></xsl:with-param> - </xsl:call-template> - - <xsl:if test="substring($string, string-length($string), 1) = '-'"> - <xsl:text> </xsl:text> - </xsl:if> -</xsl:template> - - - - - - - - - -comment-escape-string.recursive -Internal function used by comment-escape-string - - -Description - -The comment-escape-string.recursive template is used -by comment-escape-string. - - -<xsl:template name="comment-escape-string.recursive"> - <xsl:param name="string" select="''"></xsl:param> - <xsl:choose> - <xsl:when test="contains($string, '--')"> - <xsl:value-of select="substring-before($string, '--')"></xsl:value-of> - <xsl:value-of select="'- -'"></xsl:value-of> - <xsl:call-template name="comment-escape-string.recursive"> - <xsl:with-param name="string" select="substring-after($string, '--')"></xsl:with-param> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="$string"></xsl:value-of> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - - - - - - - - -trim.text -Trim leading and trailing whitespace from a text node - - -Description - -Given a text node, this function trims leading and trailing -whitespace from it and returns the trimmed contents. - - - - <xsl:template name="trim.text"> - <xsl:param name="contents" select="."></xsl:param> - <xsl:variable name="contents-left-trimmed"> - <xsl:call-template name="trim-left"> - <xsl:with-param name="contents" select="$contents"></xsl:with-param> - </xsl:call-template> - </xsl:variable> - <xsl:variable name="contents-trimmed"> - <xsl:call-template name="trim-right"> - <xsl:with-param name="contents" select="$contents-left-trimmed"></xsl:with-param> - </xsl:call-template> - </xsl:variable> - <xsl:value-of select="$contents-trimmed"></xsl:value-of> - </xsl:template> - - <xsl:template name="trim-left"> - <xsl:param name="contents"></xsl:param> - <xsl:choose> - <xsl:when test="starts-with($contents,' -') or starts-with($contents,' ') or starts-with($contents,' ') or starts-with($contents,' ')"> - <xsl:call-template name="trim-left"> - <xsl:with-param name="contents" select="substring($contents, 2)"></xsl:with-param> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="$contents"></xsl:value-of> - </xsl:otherwise> - </xsl:choose> - </xsl:template> - - <xsl:template name="trim-right"> - <xsl:param name="contents"></xsl:param> - <xsl:variable name="last-char"> - <xsl:value-of select="substring($contents, string-length($contents), 1)"></xsl:value-of> - </xsl:variable> - <xsl:choose> - <xsl:when test="($last-char = ' -') or ($last-char = ' ') or ($last-char = ' ') or ($last-char = ' ')"> - <xsl:call-template name="trim-right"> - <xsl:with-param name="contents" select="substring($contents, 1, string-length($contents) - 1)"></xsl:with-param> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="$contents"></xsl:value-of> - </xsl:otherwise> - </xsl:choose> - </xsl:template> - - - - - - - - - -str.tokenize.keep.delimiters -Tokenize a string while preserving any delimiters - -Description -Based on the occurrence of one or more delimiter characters, -this function breaks a string into a list of tokens and delimiters, -marking up each of the tokens with a token element -and preserving the delimiters as text nodes between the tokens. - - This function is a very slightly modified version of a - function from the EXSLT - site. The original is available at: - -
- - The str.tokenize.keep.delimiters function - differs only in that it preserves the delimiters instead of - discarding them.
-
- - <xsl:template name="str.tokenize.keep.delimiters"> - <xsl:param name="string" select="''"></xsl:param> - <xsl:param name="delimiters" select="' '"></xsl:param> - <xsl:choose> - <xsl:when test="not($string)"></xsl:when> - <xsl:when test="not($delimiters)"> - <xsl:call-template name="str.tokenize.keep.delimiters-characters"> - <xsl:with-param name="string" select="$string"></xsl:with-param> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <xsl:call-template name="str.tokenize.keep.delimiters-delimiters"> - <xsl:with-param name="string" select="$string"></xsl:with-param> - <xsl:with-param name="delimiters" select="$delimiters"></xsl:with-param> - </xsl:call-template> - </xsl:otherwise> - </xsl:choose> - </xsl:template> - <xsl:template name="str.tokenize.keep.delimiters-characters"> - <xsl:param name="string"></xsl:param> - <xsl:if test="$string"> - <ssb:token><xsl:value-of select="substring($string, 1, 1)"></xsl:value-of></ssb:token> - <xsl:call-template name="str.tokenize.keep.delimiters-characters"> - <xsl:with-param name="string" select="substring($string, 2)"></xsl:with-param> - </xsl:call-template> - </xsl:if> - </xsl:template> - <xsl:template name="str.tokenize.keep.delimiters-delimiters"> - <xsl:param name="string"></xsl:param> - <xsl:param name="delimiters"></xsl:param> - <xsl:variable name="delimiter" select="substring($delimiters, 1, 1)"></xsl:variable> - <xsl:choose> - <xsl:when test="not($delimiter)"> - <ssb:token><xsl:value-of select="$string"></xsl:value-of></ssb:token> - </xsl:when> - <xsl:when test="contains($string, $delimiter)"> - <xsl:if test="not(starts-with($string, $delimiter))"> - <xsl:call-template name="str.tokenize.keep.delimiters-delimiters"> - <xsl:with-param name="string" select="substring-before($string, $delimiter)"></xsl:with-param> - <xsl:with-param name="delimiters" select="substring($delimiters, 2)"></xsl:with-param> - </xsl:call-template> - </xsl:if> - <!-- output each delimiter --> - <xsl:value-of select="$delimiter"></xsl:value-of> - <xsl:call-template name="str.tokenize.keep.delimiters-delimiters"> - <xsl:with-param name="string" select="substring-after($string, $delimiter)"></xsl:with-param> - <xsl:with-param name="delimiters" select="$delimiters"></xsl:with-param> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <xsl:call-template name="str.tokenize.keep.delimiters-delimiters"> - <xsl:with-param name="string" select="$string"></xsl:with-param> - <xsl:with-param name="delimiters" select="substring($delimiters, 2)"></xsl:with-param> - </xsl:call-template> - </xsl:otherwise> - </xsl:choose> - </xsl:template> - -
-
- - - - - - apply-string-subst-map - Apply a string-substitution map - - Description - This function applies a “string substitution” map. Use it when - you want to do multiple string substitutions on the same target - content. It reads in two things: content, the - content on which to perform the substitution, and - map.contents, a node set of - elements (the names of the elements don't matter), with each element - having the following attributes: - - - oldstring, a string to - be replaced - - - newstring, a string with - which to replace oldstring - - - The function uses map.contents to - do substitution on content, and then - returns the modified contents. - - This function is a very slightly modified version of Jeni - Tennison’s replace_strings function in the - multiple string replacements section of Dave Pawson’s - XSLT - FAQ. - The apply-string-subst-map function is - essentially the same function as the - apply-character-map function; the only - difference is that in the map that - apply-string-subst-map expects, oldstring and newstring attributes are used instead of - character and string attributes. - - - <xsl:template name="apply-string-subst-map"> - <xsl:param name="content"></xsl:param> - <xsl:param name="map.contents"></xsl:param> - <xsl:variable name="replaced_text"> - <xsl:call-template name="string.subst"> - <xsl:with-param name="string" select="$content"></xsl:with-param> - <xsl:with-param name="target" select="$map.contents[1]/@oldstring"></xsl:with-param> - <xsl:with-param name="replacement" select="$map.contents[1]/@newstring"></xsl:with-param> - </xsl:call-template> - </xsl:variable> - <xsl:choose> - <xsl:when test="$map.contents[2]"> - <xsl:call-template name="apply-string-subst-map"> - <xsl:with-param name="content" select="$replaced_text"></xsl:with-param> - <xsl:with-param name="map.contents" select="$map.contents[position() > 1]"></xsl:with-param> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="$replaced_text"></xsl:value-of> - </xsl:otherwise> - </xsl:choose> - </xsl:template> - - - -
-Relative URI Functions - -Introduction - -These functions manipulate relative URI references. - -The following assumptions must hold true: - - - -All URIs are relative. - - -No URI contains the ../ sequence -which would effectively move up the hierarchy. - - - -If these assumptions do not hold, the results are unpredictable. - - - - - - - -count.uri.path.depth -Count the number of path components in a relative URI - - -Description - -This function counts the number of path components in a relative URI. - - -<xsl:template name="count.uri.path.depth"> - <xsl:param name="filename" select="''"></xsl:param> - <xsl:param name="count" select="0"></xsl:param> - - <xsl:choose> - <xsl:when test="contains($filename, '/')"> - <xsl:call-template name="count.uri.path.depth"> - <xsl:with-param name="filename" select="substring-after($filename, '/')"></xsl:with-param> - <xsl:with-param name="count" select="$count + 1"></xsl:with-param> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="$count"></xsl:value-of> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - - - - - - - - - -trim.common.uri.paths -Trim common leading path components from a relative URI - - -Description - -This function trims common leading path components from a relative URI. - - -<xsl:template name="trim.common.uri.paths"> - <xsl:param name="uriA" select="''"></xsl:param> - <xsl:param name="uriB" select="''"></xsl:param> - <xsl:param name="return" select="'A'"></xsl:param> - - <xsl:choose> - <xsl:when test="contains($uriA, '/') and contains($uriB, '/') and substring-before($uriA, '/') = substring-before($uriB, '/')"> - <xsl:call-template name="trim.common.uri.paths"> - <xsl:with-param name="uriA" select="substring-after($uriA, '/')"></xsl:with-param> - <xsl:with-param name="uriB" select="substring-after($uriB, '/')"></xsl:with-param> - <xsl:with-param name="return" select="$return"></xsl:with-param> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <xsl:choose> - <xsl:when test="$return = 'A'"> - <xsl:value-of select="$uriA"></xsl:value-of> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="$uriB"></xsl:value-of> - </xsl:otherwise> - </xsl:choose> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - - - - - - -
- Common Template Reference - - - - - This is technical reference documentation for the - “base”, “refentry”, and “utility” sets of common - templates in the DocBook XSL Stylesheets. These - templates are “common” in that they are shared across - output formats (that is, they’re not - output-format-dependent) - This documentation is not intended to be user - documentation. It is provided for developers writing - customization layers for the stylesheets. - - - - - Common » Base Template Reference - - $Id: common.xsl 8274 2009-02-27 07:02:45Z bobstayton $ - - - - - Introduction - -This is technical reference documentation for the “base” - set of common templates in the DocBook XSL Stylesheets. - - -This is not intended to be user documentation. It is - provided for developers writing customization layers for the - stylesheets. - - - - - -is.component -Tests if a given node is a component-level element - - -<xsl:template name="is.component"> -<xsl:param name="node" select="."/> - ... -</xsl:template> - -Description - -This template returns '1' if the specified node is a component -(Chapter, Appendix, etc.), and '0' otherwise. - -Parameters - - -node - - -The node which is to be tested. - - - - - -Returns - -This template returns '1' if the specified node is a component -(Chapter, Appendix, etc.), and '0' otherwise. - - - - - -is.section -Tests if a given node is a section-level element - - -<xsl:template name="is.section"> -<xsl:param name="node" select="."/> - ... -</xsl:template> - -Description - -This template returns '1' if the specified node is a section -(Section, Sect1, Sect2, etc.), and '0' otherwise. - -Parameters - - -node - - -The node which is to be tested. - - - - - -Returns - -This template returns '1' if the specified node is a section -(Section, Sect1, Sect2, etc.), and '0' otherwise. - - - - - -section.level -Returns the hierarchical level of a section - - -<xsl:template name="section.level"> -<xsl:param name="node" select="."/> - ... -</xsl:template> - -Description - -This template calculates the hierarchical level of a section. -The element sect1 is at level 1, sect2 is -at level 2, etc. - - - -Recursive sections are calculated down to the fifth level. - -Parameters - - -node - - -The section node for which the level should be calculated. -Defaults to the context node. - - - - - -Returns - -The section level, 1, 2, etc. - - - - - - -qanda.section.level -Returns the hierarchical level of a QandASet - - -<xsl:template name="qanda.section.level"/> - -Description - -This template calculates the hierarchical level of a QandASet. - - -Returns - -The level, 1, 2, etc. - - - - - - -select.mediaobject -Selects and processes an appropriate media object from a list - - -<xsl:template name="select.mediaobject"> -<xsl:param name="olist" select="imageobject|imageobjectco |videoobject|audioobject|textobject"/> - ... -</xsl:template> - -Description - -This template takes a list of media objects (usually the -children of a mediaobject or inlinemediaobject) and processes -the "right" object. - - - -This template relies on a template named -"select.mediaobject.index" to determine which object -in the list is appropriate. - - - -If no acceptable object is located, nothing happens. - -Parameters - - -olist - - -The node list of potential objects to examine. - - - - - -Returns - -Calls <xsl:apply-templates> on the selected object. - - - - - -select.mediaobject.index -Selects the position of the appropriate media object from a list - - -<xsl:template name="select.mediaobject.index"> -<xsl:param name="olist" select="imageobject|imageobjectco |videoobject|audioobject|textobject"/> -<xsl:param name="count">1</xsl:param> - ... -</xsl:template> - -Description - -This template takes a list of media objects (usually the -children of a mediaobject or inlinemediaobject) and determines -the "right" object. It returns the position of that object -to be used by the calling template. - - - -If the parameter use.role.for.mediaobject -is nonzero, then it first checks for an object with -a role attribute of the appropriate value. It takes the first -of those. Otherwise, it takes the first acceptable object -through a recursive pass through the list. - - - -This template relies on a template named "is.acceptable.mediaobject" -to determine if a given object is an acceptable graphic. The semantics -of media objects is that the first acceptable graphic should be used. - - - - -If no acceptable object is located, no index is returned. - -Parameters - - -olist - - -The node list of potential objects to examine. - - - -count - - -The position in the list currently being considered by the -recursive process. - - - - - -Returns - -Returns the position in the original list of the selected object. - - - - - -is.acceptable.mediaobject -Returns '1' if the specified media object is recognized - - -<xsl:template name="is.acceptable.mediaobject"> -<xsl:param name="object"/> - ... -</xsl:template> - -Description - -This template examines a media object and returns '1' if the -object is recognized as a graphic. - -Parameters - - -object - - -The media object to consider. - - - - - -Returns - -0 or 1 - - - - - -check.id.unique -Warn users about references to non-unique IDs - - -<xsl:template name="check.id.unique"> -<xsl:param name="linkend"/> - ... -</xsl:template> - -Description - -If passed an ID in linkend, -check.id.unique prints -a warning message to the user if either the ID does not exist or -the ID is not unique. - - - - - -check.idref.targets -Warn users about incorrectly typed references - - -<xsl:template name="check.idref.targets"> -<xsl:param name="linkend"/> -<xsl:param name="element-list"/> - ... -</xsl:template> - -Description - -If passed an ID in linkend, -check.idref.targets makes sure that the element -pointed to by the link is one of the elements listed in -element-list and warns the user otherwise. - - - - - -copyright.years -Print a set of years with collapsed ranges - - -<xsl:template name="copyright.years"> -<xsl:param name="years"/> -<xsl:param name="print.ranges" select="1"/> -<xsl:param name="single.year.ranges" select="0"/> -<xsl:param name="firstyear" select="0"/> -<xsl:param name="nextyear" select="0"/> - ... -</xsl:template> - -Description - -This template prints a list of year elements with consecutive -years printed as a range. In other words: - - -<year>1992</year> -<year>1993</year> -<year>1994</year> - - -is printed 1992-1994, whereas: - - -<year>1992</year> -<year>1994</year> - - -is printed 1992, 1994. - - - -This template assumes that all the year elements contain only -decimal year numbers, that the elements are sorted in increasing -numerical order, that there are no duplicates, and that all the years -are expressed in full century+year -(1999 not 99) notation. - -Parameters - - -years - - -The initial set of year elements. - - - -print.ranges - - -If non-zero, multi-year ranges are collapsed. If zero, all years -are printed discretely. - - - -single.year.ranges - - -If non-zero, two consecutive years will be printed as a range, -otherwise, they will be printed discretely. In other words, a single -year range is 1991-1992 but discretely it's -1991, 1992. - - - - - -Returns - -This template returns the formatted list of years. - - - - - -find.path.params -Search in a table for the "best" match for the node - - -<xsl:template name="find.path.params"> -<xsl:param name="node" select="."/> -<xsl:param name="table" select="''"/> -<xsl:param name="location"> - <xsl:call-template name="xpath.location"> - <xsl:with-param name="node" select="$node"/> - </xsl:call-template> - </xsl:param> - ... -</xsl:template> - -Description - -This template searches in a table for the value that most-closely -(in the typical best-match sense of XSLT) matches the current (element) -node location. - - - - - -string.upper -Converts a string to all uppercase letters - - -<xsl:template name="string.upper"> -<xsl:param name="string" select="''"/> - ... -</xsl:template> - -Description - -Given a string, this template does a language-aware conversion -of that string to all uppercase letters, based on the values of the -lowercase.alpha and -uppercase.alpha gentext keys for the current -locale. It affects only those characters found in the values of -lowercase.alpha and -uppercase.alpha. All other characters are left -unchanged. - -Parameters - - -string - - -The string to convert to uppercase. - - - - - - - - - -string.lower -Converts a string to all lowercase letters - - -<xsl:template name="string.lower"> -<xsl:param name="string" select="''"/> - ... -</xsl:template> - -Description - -Given a string, this template does a language-aware conversion -of that string to all lowercase letters, based on the values of the -uppercase.alpha and -lowercase.alpha gentext keys for the current -locale. It affects only those characters found in the values of -uppercase.alpha and -lowercase.alpha. All other characters are left -unchanged. - -Parameters - - -string - - -The string to convert to lowercase. - - - - - - - - - -select.choice.separator -Returns localized choice separator - - -<xsl:template name="select.choice.separator"/> - -Description - -This template enables auto-generation of an appropriate - localized "choice" separator (for example, "and" or "or") before - the final item in an inline list (though it could also be useful - for generating choice separators for non-inline lists). - - -It currently works by evaluating a processing instruction - (PI) of the form <?dbchoice choice="foo"?> : - - - - if the value of the choice - pseudo-attribute is "and" or "or", returns a localized "and" - or "or" - - - otherwise returns the literal value of the - choice pseudo-attribute - - - - The latter is provided only as a temporary workaround because the - locale files do not currently have translations for the word - or. So if you want to generate a a - logical "or" separator in French (for example), you currently need - to do this: - <?dbchoice choice="ou"?> - - - - -The dbchoice processing instruction is - an unfortunate hack; support for it may disappear in the future - (particularly if and when a more appropriate means for marking - up "choice" lists becomes available in DocBook). - - - - - - -evaluate.info.profile -Evaluates an info profile - - -<xsl:template name="evaluate.info.profile"> -<xsl:param name="profile"/> -<xsl:param name="info"/> - ... -</xsl:template> - -Description - -This template evaluates an "info profile" matching the XPath - expression given by the profile - parameter. It relies on the XSLT evaluate() - extension function. - - - -The value of the profile parameter - can include the literal string $info. If found - in the value of the profile parameter, the - literal string $info string is replaced with - the value of the info parameter, which - should be a set of *info nodes; the - expression is then evaluated using the XSLT - evaluate() extension function. - - Parameters - - - - profile - - -A string representing an XPath expression - - - - - info - - -A set of *info nodes - - - - - - Returns - -Returns a node (the result of evaluating the - profile parameter) - - - - - - Common » Refentry Metadata Template Reference - - $Id: refentry.xsl 7867 2008-03-07 09:54:25Z xmldoc $ - - - - - Introduction - -This is technical reference documentation for the “refentry - metadata” templates in the DocBook XSL Stylesheets. - - -This is not intended to be user documentation. It is provided - for developers writing customization layers for the stylesheets. - - - -Currently, only the manpages stylesheets make use of these - templates. They are, however, potentially useful elsewhere. - - - - - - -get.refentry.metadata -Gathers metadata from a refentry and its ancestors - - -<xsl:template name="get.refentry.metadata"> -<xsl:param name="refname"/> -<xsl:param name="info"/> -<xsl:param name="prefs"/> - ... -</xsl:template> - -Description - -Reference documentation for particular commands, functions, - etc., is sometimes viewed in isolation from its greater "context". For - example, users view Unix man pages as, well, individual pages, not as - part of a "book" of some kind. Therefore, it is sometimes necessary to - embed "context" information in output for each refentry. - - - -However, one problem is that different users mark up that - context information in different ways. Often (usually), the - context information is not actually part of the content of the - refentry itself, but instead part of the content of a - parent or ancestor element to the refentry. And - even then, DocBook provides a variety of elements that users might - potentially use to mark up the same kind of information. One user - might use the productnumber element to mark up version - information about a particular product, while another might use - the releaseinfo element. - - - -Taking all that in mind, the - get.refentry.metadata template tries to gather - metadata from a refentry element and its ancestor - elements in an intelligent and user-configurable way. The basic - mechanism used in the XPath expressions throughout this stylesheet - is to select the relevant metadata from the *info element that is - closest to the actual refentry – either on the - refentry itself, or on its nearest ancestor. - - - - -The get.refentry.metadata - template is actually just sort of a "driver" template; it - calls other templates that do the actual data collection, - then returns the data as a set. - - - - Parameters - - - - refname - - -The first refname in the refentry - - - - - info - - -A set of info nodes (from a refentry - element and its ancestors) - - - - - prefs - - -A node containing user preferences (from global - stylesheet parameters) - - - - - - Returns - -Returns a node set with the following elements. The - descriptions are verbatim from the man(7) man - page. - - - - title - - -the title of the man page (e.g., MAN) - - - - - section - - -the section number the man page should be placed in (e.g., - 7) - - - - - date - - -the date of the last revision - - - - - source - - -the source of the command - - - - - manual - - -the title of the manual (e.g., Linux - Programmer's Manual) - - - - - - - - - - - -get.refentry.title -Gets title metadata for a refentry - - -<xsl:template name="get.refentry.title"> -<xsl:param name="refname"/> - ... -</xsl:template> - -Description - -The man(7) man page describes this as "the - title of the man page (e.g., MAN). This differs - from refname in that, if the refentry has a - refentrytitle, we use that as the title; - otherwise, we just use first refname in the first - refnamediv in the source. - - Parameters - - - - refname - - -The first refname in the refentry - - - - - - Returns - -Returns a title node. - - - - -get.refentry.section -Gets section metadata for a refentry - - -<xsl:template name="get.refentry.section"> -<xsl:param name="refname"/> -<xsl:param name="quiet" select="0"/> - ... -</xsl:template> - -Description - -The man(7) man page describes this as "the - section number the man page should be placed in (e.g., - 7)". If we do not find a manvolnum - specified in the source, and we find that the refentry is - for a function, we use the section number 3 - ["Library calls (functions within program libraries)"]; otherwise, we - default to using 1 ["Executable programs or shell - commands"]. - - Parameters - - - - refname - - -The first refname in the refentry - - - - - quiet - - -If non-zero, no "missing" message is emitted - - - - - - Returns - -Returns a string representing a section number. - - - - -get.refentry.date -Gets date metadata for a refentry - - -<xsl:template name="get.refentry.date"> -<xsl:param name="refname"/> -<xsl:param name="info"/> -<xsl:param name="prefs"/> - ... -</xsl:template> - -Description - -The man(7) man page describes this as "the - date of the last revision". If we cannot find a date in the source, we - generate one. - - Parameters - - - - refname - - -The first refname in the refentry - - - - - info - - -A set of info nodes (from a refentry - element and its ancestors) - - - - - prefs - - -A node containing users preferences (from global stylesheet parameters) - - - - - - Returns - -Returns a date node. - - - - - -get.refentry.source -Gets source metadata for a refentry - - -<xsl:template name="get.refentry.source"> -<xsl:param name="refname"/> -<xsl:param name="info"/> -<xsl:param name="prefs"/> - ... -</xsl:template> - -Description - -The man(7) man page describes this as "the - source of the command", and provides the following examples: - - - - -For binaries, use something like: GNU, NET-2, SLS - Distribution, MCC Distribution. - - - - -For system calls, use the version of the kernel that you are - currently looking at: Linux 0.99.11. - - - - -For library calls, use the source of the function: GNU, BSD - 4.3, Linux DLL 4.4.1. - - - - - - - - -The solbook(5) man page describes - something very much like what man(7) calls - "source", except that solbook(5) names it - "software" and describes it like this: -
- -This is the name of the software product that the topic - discussed on the reference page belongs to. For example UNIX - commands are part of the SunOS x.x - release. - -
-
- - - -In practice, there are many pages that simply have a version - number in the "source" field. So, it looks like what we have is a - two-part field, - Name Version, - where: - - - - Name - - -product name (e.g., BSD) or org. name (e.g., GNU) - - - - - Version - - -version name - - - - - - Each part is optional. If the Name is a - product name, then the Version is probably - the version of the product. Or there may be no - Name, in which case, if there is a - Version, it is probably the version of the - item itself, not the product it is part of. Or, if the - Name is an organization name, then there - probably will be no Version. - - -
Parameters - - - - refname - - -The first refname in the refentry - - - - - info - - -A set of info nodes (from a refentry - element and its ancestors) - - - - - prefs - - -A node containing users preferences (from global - stylesheet parameters) - - - - - - Returns - -Returns a source node. - -
- - - -get.refentry.source.name -Gets source-name metadata for a refentry - - -<xsl:template name="get.refentry.source.name"> -<xsl:param name="refname"/> -<xsl:param name="info"/> -<xsl:param name="prefs"/> - ... -</xsl:template> - -Description - -A "source name" is one part of a (potentially) two-part - Name Version - source field. For more details, see the documentation for the - get.refentry.source template. - - Parameters - - - - refname - - -The first refname in the refentry - - - - - info - - -A set of info nodes (from a refentry - element and its ancestors) - - - - - prefs - - -A node containing users preferences (from global - stylesheet parameters) - - - - - - Returns - -Depending on what output method is used for the - current stylesheet, either returns a text node or possibly an element - node, containing "source name" data. - - - - - -get.refentry.version -Gets version metadata for a refentry - - -<xsl:template name="get.refentry.version"> -<xsl:param name="refname"/> -<xsl:param name="info"/> -<xsl:param name="prefs"/> - ... -</xsl:template> - -Description - -A "version" is one part of a (potentially) two-part - Name Version - source field. For more details, see the documentation for the - get.refentry.source template. - - Parameters - - - - refname - - -The first refname in the refentry - - - - - info - - -A set of info nodes (from a refentry - element and its ancestors) - - - - - prefs - - -A node containing users preferences (from global - stylesheet parameters) - - - - - - Returns - -Depending on what output method is used for the - current stylesheet, either returns a text node or possibly an element - node, containing "version" data. - - - - - -get.refentry.manual -Gets source metadata for a refentry - - -<xsl:template name="get.refentry.manual"> -<xsl:param name="refname"/> -<xsl:param name="info"/> -<xsl:param name="prefs"/> - ... -</xsl:template> - -Description - -The man(7) man page describes this as "the - title of the manual (e.g., Linux Programmer's - Manual)". Here are some examples from existing man pages: - - - - -dpkg utilities - (dpkg-name) - - - - -User Contributed Perl Documentation - (GET) - - - - -GNU Development Tools - (ld) - - - - -Emperor Norton Utilities - (ddate) - - - - -Debian GNU/Linux manual - (faked) - - - - -GIMP Manual Pages - (gimp) - - - - -KDOC Documentation System - (qt2kdoc) - - - - - - - - -The solbook(5) man page describes - something very much like what man(7) calls - "manual", except that solbook(5) names it - "sectdesc" and describes it like this: -
- -This is the section title of the reference page; for - example User Commands. - -
-
- - -
Parameters - - - - refname - - -The first refname in the refentry - - - - - info - - -A set of info nodes (from a refentry - element and its ancestors) - - - - - prefs - - -A node containing users preferences (from global - stylesheet parameters) - - - - - - Returns - -Returns a manual node. - -
- - - -get.refentry.metadata.prefs -Gets user preferences for refentry metadata gathering - - -<xsl:template name="get.refentry.metadata.prefs"/> - -Description - -The DocBook XSL stylesheets include several user-configurable - global stylesheet parameters for controlling refentry - metadata gathering. Those parameters are not read directly by the - other refentry metadata-gathering - templates. Instead, they are read only by the - get.refentry.metadata.prefs template, - which assembles them into a structure that is then passed to - the other refentry metadata-gathering - templates. - - - -So the, get.refentry.metadata.prefs - template is the only interface to collecting stylesheet parameters for - controlling refentry metadata gathering. - - Parameters - -There are no local parameters for this template; however, it - does rely on a number of global parameters. - - Returns - -Returns a manual node. - - - - - -set.refentry.metadata -Sets content of a refentry metadata item - - -<xsl:template name="set.refentry.metadata"> -<xsl:param name="refname"/> -<xsl:param name="info"/> -<xsl:param name="contents"/> -<xsl:param name="context"/> -<xsl:param name="preferred"/> - ... -</xsl:template> - -Description - -The set.refentry.metadata template is - called each time a suitable source element is found for a certain - metadata field. - - Parameters - - - - refname - - -The first refname in the refentry - - - - - info - - -A single *info node that contains the selected source element. - - - - - contents - - -A node containing the selected source element. - - - - - context - - -A string describing the metadata context in which the - set.refentry.metadata template was - called: either "date", "source", "version", or "manual". - - - - - - Returns - -Returns formatted contents of a selected source element. - -
- - - Common » Utility Template Reference - - $Id: utility.xsl 7101 2007-07-20 15:32:12Z xmldoc $ - - - - - Introduction - -This is technical reference documentation for the - miscellaneous utility templates in the DocBook XSL - Stylesheets. - - - -These templates are defined in a separate file from the set - of “common” templates because some of the common templates - reference DocBook XSL stylesheet parameters, requiring the - entire set of parameters to be imported/included in any - stylesheet that imports/includes the common templates. - - -The utility templates don’t import or include any DocBook - XSL stylesheet parameters, so the utility templates can be used - without importing the whole set of parameters. - - - -This is not intended to be user documentation. It is - provided for developers writing customization layers for the - stylesheets. - - - - - -log.message -Logs/emits formatted notes and warnings - - -<xsl:template name="log.message"> -<xsl:param name="level"/> -<xsl:param name="source"/> -<xsl:param name="context-desc"/> -<xsl:param name="context-desc-field-length">12</xsl:param> -<xsl:param name="context-desc-padded"> - <xsl:if test="not($context-desc = '')"> - <xsl:call-template name="pad-string"> - <xsl:with-param name="leftRight">right</xsl:with-param> - <xsl:with-param name="padVar" select="substring($context-desc, 1, $context-desc-field-length)"/> - <xsl:with-param name="length" select="$context-desc-field-length"/> - </xsl:call-template> - </xsl:if> - </xsl:param> -<xsl:param name="message"/> -<xsl:param name="message-field-length" select="45"/> -<xsl:param name="message-padded"> - <xsl:variable name="spaces-for-blank-level"> - <!-- * if the level field is blank, we'll need to pad out --> - <!-- * the message field with spaces to compensate --> - <xsl:choose> - <xsl:when test="$level = ''"> - <xsl:value-of select="4 + 2"/> - <!-- * 4 = hard-coded length of comment text ("Note" or "Warn") --> - <!-- * + 2 = length of colon-plus-space separator ": " --> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="0"/> - </xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:variable name="spaces-for-blank-context-desc"> - <!-- * if the context-description field is blank, we'll need --> - <!-- * to pad out the message field with spaces to compensate --> - <xsl:choose> - <xsl:when test="$context-desc = ''"> - <xsl:value-of select="$context-desc-field-length + 2"/> - <!-- * + 2 = length of colon-plus-space separator ": " --> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="0"/> - </xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:variable name="extra-spaces" select="$spaces-for-blank-level + $spaces-for-blank-context-desc"/> - <xsl:call-template name="pad-string"> - <xsl:with-param name="leftRight">right</xsl:with-param> - <xsl:with-param name="padVar" select="substring($message, 1, ($message-field-length + $extra-spaces))"/> - <xsl:with-param name="length" select="$message-field-length + $extra-spaces"/> - </xsl:call-template> - </xsl:param> - ... -</xsl:template> - -Description - -The log.message template is a utility - template for logging/emitting formatted messages – that is, - notes and warnings, along with a given log “level” and an - identifier for the “source” that the message relates to. - - Parameters - - - level - - -Text to log/emit in the message-level field to - indicate the message level - (Note or - Warning) - - - - source - - -Text to log/emit in the source field to identify the - “source” to which the notification/warning relates. - This can be any arbitrary string, but because the - message lacks line and column numbers to identify the - exact part of the source document to which it - relates, the intention is that the value you pass - into the source parameter should - give the user some way to identify the portion of - their source document on which to take potentially - take action in response to the log message (for - example, to edit, change, or add content). - - -So the source value should be, - for example, an ID, book/chapter/article title, title - of some formal object, or even a string giving an - XPath expression. - - - - context-desc - - -Text to log/emit in the context-description field to - describe the context for the message. - - - - context-desc-field-length - - -Specifies length of the context-description field - (in characters); default is 12 - - -If the text specified by the - context-desc parameter is longer - than the number of characters specified in - context-desc-field-length, it is - truncated to context-desc-field-length - (12 characters by default). - - -If the specified text is shorter than - context-desc-field-length, - it is right-padded out to - context-desc-field-length (12 by - default). - - -If no value has been specified for the - context-desc parameter, the field is - left empty and the text of the log message begins with - the value of the message - parameter. - - - - message - - -Text to log/emit in the actual message field - - - - message-field-length - - -Specifies length of the message - field (in characters); default is 45 - - - - - - Returns - -Outputs a message (generally, to standard error). - - - - -get.doc.title -Gets a title from the current document - - -<xsl:template name="get.doc.title"/> - -Description - -The get.doc.title template is a - utility template for returning the first title found in the - current document. - - Returns - -Returns a string containing some identifying title for the - current document . - - - - -pad-string -Right-pads or left-pads a string out to a certain length - - -<xsl:template name="pad-string"> -<xsl:param name="padChar" select="' '"/> -<xsl:param name="leftRight">left</xsl:param> -<xsl:param name="padVar"/> -<xsl:param name="length"/> - ... -</xsl:template> - -Description - -This function takes string padVar and - pads it out in the direction rightLeft to - the string-length length, using string - padChar (a space character by default) as - the padding string (note that padChar can - be a string; it is not limited to just being a single - character). - - - -This function began as a copy of Nate Austin's - prepend-pad function in the Padding - Content section of Dave Pawson's XSLT - FAQ. - - - Returns - -Returns a (padded) string. - - - - - Common » Character-Map Template Reference - - $Id: charmap.xsl 7266 2007-08-22 11:58:42Z xmldoc $ - - - - - Introduction - -This is technical reference documentation for the - character-map templates in the DocBook XSL Stylesheets. - - - -These templates are defined in a separate file from the set - of “common” templates because some of the common templates - reference DocBook XSL stylesheet parameters, requiring the - entire set of parameters to be imported/included in any - stylesheet that imports/includes the common templates. - - -The character-map templates don’t import or include - any DocBook XSL stylesheet parameters, so the - character-map templates can be used without importing the - whole set of parameters. - - - -This is not intended to be user documentation. It is - provided for developers writing customization layers for the - stylesheets. - - - - - -apply-character-map -Applies an XSLT character map - - -<xsl:template name="apply-character-map"> -<xsl:param name="content"/> -<xsl:param name="map.contents"/> - ... -</xsl:template> - -Description - -This template applies an XSLT character map; that is, it causes certain - individual characters to be substituted with strings of one - or more characters. It is useful mainly for replacing - multiple “special” characters or symbols in the same target - content. It uses the value of - map.contents to do substitution on - content, and then returns the - modified contents. - - - -This template is a very slightly modified version of - Jeni Tennison’s replace_strings - template in the multiple string replacements section of Dave Pawson’s - XSLT FAQ. - - -The apply-string-subst-map - template is essentially the same template as the - apply-character-map template; the - only difference is that in the map that - apply-string-subst-map expects, oldstring and newstring attributes are used - instead of character and string attributes. - - - Parameters - - - content - - -The content on which to perform the character-map - substitution. - - - - map.contents - - -A node set of elements, with each element having - the following attributes: - - - - character, a - character to be replaced - - - string, a - string with which to replace character - - - - - - - - - - - - - -read-character-map -Reads in all or part of an XSLT character map - - -<xsl:template name="read-character-map"> -<xsl:param name="use.subset"/> -<xsl:param name="subset.profile"/> -<xsl:param name="uri"/> - ... -</xsl:template> - -Description - -The XSLT 2.0 specification describes character maps and explains how they may be used - to allow a specific character appearing in a text or - attribute node in a final result tree to be substituted by - a specified string of characters during serialization. The - read-character-map template provides a - means for reading and using character maps with XSLT - 1.0-based tools. - - -This template reads the character-map contents from - uri (in full or in part, depending on - the value of the use.subset - parameter), then passes those contents to the - apply-character-map template, along with - content, the data on which to perform - the character substitution. - - -Using the character map “in part” means that it uses only - those output-character elements that match the - XPath expression given in the value of the - subset.profile parameter. The current - implementation of that capability here relies on the - evaluate extension XSLT function. - - Parameters - - - use.subset - - -Specifies whether to use a subset of the character - map instead of the whole map; boolean - 0 or 1 - - - - subset.profile - - -XPath expression that specifies what subset of the - character map to use - - - - uri - - -URI for a character map - - - - - - - -
- - - - - Formatting Object Table Reference - - $Id: table.xsl 8392 2009-04-01 08:47:55Z bobstayton $ - - - - Introduction - -This is technical reference documentation for the FO - table-processing templates in the DocBook XSL Stylesheets. - - -This is not intended to be user documentation. It is - provided for developers writing customization layers for the - stylesheets. - - - - - -calc.column.width -Calculate an XSL FO table column width specification from a -CALS table column width specification. - - -<xsl:template name="calc.column.width"> -<xsl:param name="colwidth">1*</xsl:param> - ... -</xsl:template> - -Description - -CALS expresses table column widths in the following basic -forms: - - - - - - -99.99units, a fixed length specifier. - - - - -99.99, a fixed length specifier without any units. - - - - -99.99*, a relative length specifier. - - - - -99.99*+99.99units, a combination of both. - - - - - - -The CALS units are points (pt), picas (pi), centimeters (cm), -millimeters (mm), and inches (in). These are the same units as XSL, -except that XSL abbreviates picas "pc" instead of "pi". If a length -specifier has no units, the CALS default unit (pt) is assumed. - - - -Relative length specifiers are represented in XSL with the -proportional-column-width() function. - - - -Here are some examples: - - - - - - -"36pt" becomes "36pt" - - - - -"3pi" becomes "3pc" - - - - -"36" becomes "36pt" - - - - -"3*" becomes "proportional-column-width(3)" - - - - -"3*+2pi" becomes "proportional-column-width(3)+2pc" - - - - -"1*+2" becomes "proportional-column-width(1)+2pt" - - - - -Parameters - - -colwidth - - -The CALS column width specification. - - - - - -Returns - -The XSL column width specification. - - - - - - - - - - Titlepage Template Stylesheet Reference - - $Id: titlepage.xsl 7058 2007-07-17 13:59:29Z xmldoc $ - - - - Introduction - -This is technical reference documentation for the - “titlepage” templates in the DocBook XSL Stylesheets. - - -This is not intended to be user documentation. It is - provided for developers writing customization layers for the - stylesheets. - - - - - -t:templates -Construct a stylesheet for the templates provided - - -<xsl:template match="t:templates"/> - -Description - -The t:templates element is the root of a -set of templates. This template creates an appropriate -xsl:stylesheet for the templates. - - - -If the t:templates element has a -base-stylesheet attribute, an -xsl:import statement is constructed for it. - - - - - -xsl:* -Copy xsl: elements straight through - - -<xsl:template match="xsl:*"/> - -Description - -This template simply copies the xsl: elements -straight through into the result tree. - - - - - -t:titlepage -Create the templates necessary to construct a title page - - -<xsl:template match="t:titlepage"/> - -Description - -The t:titlepage element creates a set of -templates for processing the titlepage for an element. The -root of this template set is the template named -wrapper.titlepage. That is the -template that should be called to generate the title page. - - - - -The t:titlepage element has three attributes: - - - -element - -The name of the source document element for which -these templates apply. In other words, to make a title page for the -article element, set the -element attribute to -article. This attribute is required. - - - -wrapper - -The entire title page can be wrapped with an element. -This attribute identifies that element. - - - -class - -If the class attribute -is set, a class attribute with this -value will be added to the wrapper element that surrounds the entire -title page. - - - - - - - - - -Any other attributes are copied through literally to the -wrapper element. - - - -The content of a t:titlepage is one or -more t:titlepage-content, -t:titlepage-separator, and -t:titlepage-before elements. - - - -Each of these elements may be provided for the recto -and verso sides of the title page. - - - - - - -@* (in copy.literal.atts mode) -Copy t:titlepage attributes - - -<xsl:template match="@*" mode="copy.literal.atts"/> - -Description - -This template copies all of the other attributes -from a t:titlepage element onto the specified -wrapper. - - - - - -t:titlepage-content -Create templates for the content of one side of a title page - - -<xsl:template match="t:titlepage-content"/> - -Description - -The title page content, that is, the elements from the source -document that are rendered on the title page, can be controlled independently -for the recto and verso sides of the title page. - - - -The t:titlepage-content element has two attributes: - - - -side - -Identifies the side of the page to which this title -page content applies. The -side attribute is required and -must be set to either -recto or -verso. In addition, you must specify -exactly one t:titlepage-content for each side -within each t:titlepage. - - - -order - -Indicates how the order of the elements presented on -the title page is determined. If the -order is -document, the elements are presented -in document order. Otherwise (if the -order is -stylesheet), the elements are presented -in the order that they appear in the template (and consequently in -the stylesheet). - - - - - - - - - -The content of a t:titlepage-content element is -a list of element names. These names should be unqualified. They identify -the elements in the source document that should appear on the title page. - - - - -Each element may have a single attribute: -predicate. The value of this -attribute is used as a predicate for the expression that matches -the element on which it occurs. - - - -In other words, to put only the first three authors on the -recto-side of a title -page, you could specify: - - - <t:titlepage-contents side="recto"> - <!-- other titlepage elements --> - <author predicate="[count(previous-sibling::author)<2]"/> - <!-- other titlepage elements --> - </t:titlepage-contents> - - - - - -Usually, the elements so named are empty. But it is possible to -make one level of selection within them. Suppose that you want to -process authorgroup elements on the title page, but -you want to select only proper authors, editors, or corporate authors, -not collaborators or other credited authors. - - - -In that case, you can put a t:or group inside -the authorgroup element: - - - <t:titlepage-contents side="recto"> - <!-- other titlepage elements --> - <authorgroup> - <t:or> - <author/> - <editor/> - <corpauthor/> - </t:or> - </authorgroup> - <!-- other titlepage elements --> - </t:titlepage-contents> - - - - - -This will have the effect of automatically generating a template -for processing authorgroups in the title page mode, -selecting only the specified children. If you need more complex processing, -you'll have to construct the templates by hand. - - - - - - -t:titlepage-separator -Create templates for the separator - - -<xsl:template match="t:titlepage-separator"/> - -Description - -The title page is separated from the content which follows it by -the markup specified in the t:titlepage-separator -element. - - - - - -t:titlepage-before -Create templates for what precedes a title page - - -<xsl:template match="t:titlepage-before"/> - -Description - -Each side of the title page is preceded by the markup specified -in the t:titlepage-before element for that -side. - - - - - -* (in copy mode) -Copy elements - - -<xsl:template match="*" mode="copy"/> - -Description - -This template simply copies the elements that it applies to -straight through into the result tree. - - - - - -@* (in copy mode) -Copy attributes - - -<xsl:template match="@*" mode="copy"/> - -Description - -This template simply copies the attributes that it applies to -straight through into the result tree. - - - - - -* (in document.order mode) -Create rules to process titlepage elements in document order - - -<xsl:template match="*" mode="document.order"/> - -Description - -This template is called to process all of the children of the -t:titlepage-content element. It creates the hairy -select expression necessary to process each of those elements in -the title page. - - - -Note that this template automatically handles the case where -some DocBook elements, like title and subtitle, can occur both inside -the *info elements where metadata is usually stored and outside. - - - - -It also automatically calculates the name for the *info container -and handles elements that have historically had containers with different -names. - - - - - - -* (in document.order mode) -Create rules to process titlepage elements in stylesheet order - - -<xsl:template match="*" mode="document.order"/> - -Description - -This template is called to process all of the children of the -t:titlepage-content element. It creates the set -of xsl:apply-templates elements necessary -process each of those elements in the title page. - - - -Note that this template automatically handles the case where -some DocBook elements, like title and subtitle, can occur both inside -the *info elements where metadata is usually stored and outside. - - - - -It also automatically calculates the name for the *info container -and handles elements that have historically had containers with different -names. - - - - - - -* (in titlepage.specialrules mode) -Create templates for special rules - - -<xsl:template match="*" mode="titlepage.specialrules"/> - -Description - -This template is called to process all of the descendants of the -t:titlepage-content element that require special -processing. At present, that's just t:or elements. - - - - - - -* (in titlepage.subrules mode) -Create template for individual special rules - - -<xsl:template match="*" mode="titlepage.subrules"/> - -Description - -This template is called to process the children of special -template elements. - - - - - - -t:or -Process the t:or special rule - - -<xsl:template match="t:or"/><xsl:template match="t:or" mode="titlepage.subrules"/> - -Description - -This template processes t:or. - - - - - -t:or (in titlepage.subrules mode) -Process the t:or special rule in -titlepage.subrules mode - - -<xsl:template match="t:or" mode="titlepage.subrules"/> - -Description - -The titlepage.subrules mode doesn't apply to t:or, so just -reprocess this node in the normal mode. - - - - - -element-or-list -Construct the "or-list" used in the select attribute for -special rules. - - -<xsl:template name="element-or-list"> -<xsl:param name="elements" select="*"/> -<xsl:param name="element.count" select="count($elements)"/> -<xsl:param name="count" select="1"/> -<xsl:param name="orlist"/> - ... -</xsl:template> - -Description - -Walk through each of the children of t:or, producing the -text of the select attribute. - - - - -
-
\ No newline at end of file diff --git a/docbook-xsl-1.75.2/docsrc/warranty.xml b/docbook-xsl-1.75.2/docsrc/warranty.xml deleted file mode 100644 index 3c70d32..0000000 --- a/docbook-xsl-1.75.2/docsrc/warranty.xml +++ /dev/null @@ -1,11 +0,0 @@ -Warranty -THE SOFTWARE IS PROVIDED AS IS, -WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT -LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR -PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL NORMAN WALSH OR ANY -OTHER CONTRIBUTOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT -OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - diff --git a/docbook-xsl-1.75.2/eclipse/eclipse.xsl b/docbook-xsl-1.75.2/eclipse/eclipse.xsl deleted file mode 100644 index 07ddcea..0000000 --- a/docbook-xsl-1.75.2/eclipse/eclipse.xsl +++ /dev/null @@ -1,306 +0,0 @@ - - - - - - - - - - - - - - - - - - - Note - - - namesp. cut - - - stripped namespace before processing - - - - - - - Note - - - namesp. cut - - - processing stripped document - - - - - - - - - - - ID ' - - ' not found in document. - - - - - - - - Formatting from - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ( - - - ) - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/eclipse/profile-eclipse.xsl b/docbook-xsl-1.75.2/eclipse/profile-eclipse.xsl deleted file mode 100644 index 5040c9b..0000000 --- a/docbook-xsl-1.75.2/eclipse/profile-eclipse.xsl +++ /dev/null @@ -1,269 +0,0 @@ - - - - - - - - - -Note: namesp. cut : stripped namespace before processingNote: namesp. cut : processing stripped document - - - - - - - - - - - - - - - - ID ' - - ' not found in document. - - - - - - - - Formatting from - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ( - - - ) - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/epub/README b/docbook-xsl-1.75.2/epub/README deleted file mode 100644 index 5e2587a..0000000 --- a/docbook-xsl-1.75.2/epub/README +++ /dev/null @@ -1,88 +0,0 @@ ----------------------------------------------------------------------- - README file for the DocBook XSL Stylesheets ----------------------------------------------------------------------- - -These are XSL stylesheets for transforming DocBook XML document -instances into .epub format. - -.epub is an open standard of the The International Digital Publishing Forum (IDPF), -a the trade and standards association for the digital publishing industry. - -An alpha-quality reference implementation (dbtoepub) for a DocBook to .epub -converter (written in Ruby) is available under bin/. - -From http://idpf.org - What is EPUB, .epub, OPS/OCF & OEB? - - ".epub" is the file extension of an XML format for reflowable digital - books and publications. ".epub" is composed of three open standards, - the Open Publication Structure (OPS), Open Packaging Format (OPF) and - Open Container Format (OCF), produced by the IDPF. "EPUB" allows - publishers to produce and send a single digital publication file - through distribution and offers consumers interoperability between - software/hardware for unencrypted reflowable digital books and other - publications. The Open eBook Publication Structure or "OEB", - originally produced in 1999, is the precursor to OPS. - ----------------------------------------------------------------------- -.epub Constraints ----------------------------------------------------------------------- - -.epub does not support all of the image formats that DocBook supports. -When an image is available in an accepted format, it will be used. The -accepted @formats are: 'GIF','GIF87a','GIF89a','JPEG','JPG','PNG','SVG' -A mime-type for the image will be guessed from the file extension, -which may not work if your file extensions are non-standard. - -Non-supported elements: - * - * , , , with text/XML - @filerefs - * - * in lists (generic XHTML rendering inability) - * (just make your programlistings - siblings, rather than descendents of paras) - ----------------------------------------------------------------------- -dbtoepub Reference Implementation ----------------------------------------------------------------------- - -An alpha-quality DocBook to .epub conversion program, dbtoepub, is provided -in bin/dbtoepub. - -This tool requires: - - 'xsltproc' in your PATH - - 'zip' in your PATH - - Ruby 1.8.4+ - -Windows compatibility has not been extensively tested; bug reports encouraged. -[See http://www.zlatkovic.com/libxml.en.html and http://unxutils.sourceforge.net/] - -$ dbtoepub --help - Usage: dbtoepub [OPTIONS] [DocBook Files] - - dbtoepub converts DocBook and
s into to .epub files. - - .epub is defined by the IDPF at www.idpf.org and is made up of 3 standards: - - Open Publication Structure (OPS) - - Open Packaging Format (OPF) - - Open Container Format (OCF) - - Specific options: - -d, --debug Show debugging output. - -h, --help Display usage info - -v, --verbose Make output verbose - - ----------------------------------------------------------------------- -Validation ----------------------------------------------------------------------- - -The epubcheck project provides limited validation for .epub documents. -See http://code.google.com/p/epubcheck/ for details. - ----------------------------------------------------------------------- -Copyright information ----------------------------------------------------------------------- -See the accompanying file named COPYING. - diff --git a/docbook-xsl-1.75.2/epub/bin/dbtoepub b/docbook-xsl-1.75.2/epub/bin/dbtoepub deleted file mode 100644 index b9239d1..0000000 --- a/docbook-xsl-1.75.2/epub/bin/dbtoepub +++ /dev/null @@ -1,74 +0,0 @@ -#!/usr/bin/env ruby -# This program converts DocBook documents into .epub files. -# -# Usage: dbtoepub [OPTIONS] [DocBook Files] -# -# .epub is defined by the IDPF at www.idpf.org and is made up of 3 standards: -# - Open Publication Structure (OPS) -# - Open Packaging Format (OPF) -# - Open Container Format (OCF) -# -# Specific options: -# -c, --css [FILE] Use FILE for CSS on generated XHTML. -# -d, --debug Show debugging output. -# -f, --font [OTF FILE] Embed OTF FILE in .epub. -# -h, --help Display usage info. -# -s, --stylesheet [XSL FILE] Use XSL FILE as a customization -# layer (imports epub/docbook.xsl). -# -v, --verbose Make output verbose. - -lib = File.expand_path(File.join(File.dirname(__FILE__), 'lib')) -$LOAD_PATH.unshift(lib) if File.exist?(lib) - -require 'fileutils' -require 'optparse' -require 'tmpdir' - -require 'docbook' - -verbose = false -debug = false -css_file = nil -otf_files = [] -customization_layer = nil -output_file = nil - -# Set up the OptionParser -opts = OptionParser.new -opts.banner = "Usage: #{File.basename($0)} [OPTIONS] [DocBook Files] - -#{File.basename($0)} converts DocBook and
s into to .epub files. - -.epub is defined by the IDPF at www.idpf.org and is made up of 3 standards: -- Open Publication Structure (OPS) -- Open Packaging Format (OPF) -- Open Container Format (OCF) - -Specific options:" -opts.on("-c", "--css [FILE]", "Use FILE for CSS on generated XHTML.") {|f| css_file = f} -opts.on("-d", "--debug", "Show debugging output.") {debug = true; verbose = true} -opts.on("-f", "--font [OTF FILE]", "Embed OTF FILE in .epub.") {|f| otf_files << f} -opts.on("-h", "--help", "Display usage info.") {puts opts.to_s; exit 0} -opts.on("-o", "--output [OUTPUT FILE]", "Output ePub file as OUTPUT FILE.") {|f| output_file = f} -opts.on("-s", "--stylesheet [XSL FILE]", "Use XSL FILE as a customization layer (imports epub/docbook.xsl).") {|f| customization_layer = f} -opts.on("-v", "--verbose", "Make output verbose.") {verbose = true} - -db_files = opts.parse(ARGV) -if db_files.size == 0 - puts opts.to_s - exit 0 -end - -db_files.each {|docbook_file| - dir = File.expand_path(File.join(Dir.tmpdir, ".epubtmp#{Time.now.to_f.to_s}")) - FileUtils.mkdir_p(dir) - e = DocBook::Epub.new(docbook_file, dir, css_file, customization_layer, otf_files) - - if output_file - epub_file = output_file - else - epub_file = File.basename(docbook_file, ".xml") + ".epub" - end - puts "Rendering DocBook file #{docbook_file} to #{epub_file}" if verbose - e.render_to_file(epub_file) -} diff --git a/docbook-xsl-1.75.2/epub/bin/lib/docbook.rb b/docbook-xsl-1.75.2/epub/bin/lib/docbook.rb deleted file mode 100644 index 2664999..0000000 --- a/docbook-xsl-1.75.2/epub/bin/lib/docbook.rb +++ /dev/null @@ -1,226 +0,0 @@ -require 'fileutils' -require 'rexml/parsers/pullparser' - -module DocBook - - class Epub - CHECKER = "epubcheck" - STYLESHEET = File.expand_path(File.join(File.dirname(__FILE__), '..', '..', "docbook.xsl")) - CALLOUT_PATH = File.join('images', 'callouts') - CALLOUT_FULL_PATH = File.expand_path(File.join(File.dirname(__FILE__), '..', '..', '..', CALLOUT_PATH)) - CALLOUT_LIMIT = 15 - CALLOUT_EXT = ".png" - XSLT_PROCESSOR = "xsltproc" - OUTPUT_DIR = ".epubtmp#{Time.now.to_f.to_s}" - MIMETYPE = "application/epub+zip" - META_DIR = "META-INF" - OEBPS_DIR = "OEBPS" - ZIPPER = "zip" - - attr_reader :output_dir - - def initialize(docbook_file, output_dir=OUTPUT_DIR, css_file=nil, customization_layer=nil, embedded_fonts=[]) - @docbook_file = docbook_file - @output_dir = output_dir - @meta_dir = File.join(@output_dir, META_DIR) - @oebps_dir = File.join(@output_dir, OEBPS_DIR) - @css_file = css_file ? File.expand_path(css_file) : css_file - @embedded_fonts = embedded_fonts - raise NotImplementedError if @embedded_fonts.length > 1 - @to_delete = [] - - if customization_layer - @stylesheet = File.expand_path(customization_layer) - else - @stylesheet = STYLESHEET - end - - unless File.exist?(@docbook_file) - raise ArgumentError.new("File #{@docbook_file} does not exist") - end - end - - def render_to_file(output_file, verbose=false) - render_to_epub(output_file, verbose) - bundle_epub(output_file, verbose) - cleanup_files(@to_delete) - end - - def self.invalid?(file) - # Obnoxiously, we can't just check for a non-zero output... - cmd = "#{CHECKER} #{file}" - output = `#{cmd} 2>&1` - - if $?.to_i == 0 - return false - else - STDERR.puts output if $DEBUG - return output - end - end - - private - def render_to_epub(output_file, verbose) - @collapsed_docbook_file = collapse_docbook() - - chunk_quietly = "--stringparam chunk.quietly " + (verbose ? '0' : '1') - callout_path = "--stringparam callout.graphics.path #{CALLOUT_PATH}/" - callout_limit = "--stringparam callout.graphics.number.limit #{CALLOUT_LIMIT}" - callout_ext = "--stringparam callout.graphics.extension #{CALLOUT_EXT}" - html_stylesheet = "--stringparam html.stylesheet #{File.basename(@css_file)}" if @css_file - base = "--stringparam base.dir #{OEBPS_DIR}/" - unless @embedded_fonts.empty? - font = "--stringparam epub.embedded.font \"#{File.basename(@embedded_fonts.first)}\"" - end - meta = "--stringparam epub.metainf.dir #{META_DIR}/" - oebps = "--stringparam epub.oebps.dir #{OEBPS_DIR}/" - options = [chunk_quietly, - callout_path, - callout_limit, - callout_ext, - base, - font, - meta, - oebps, - html_stylesheet, - ].join(" ") - # Double-quote stylesheet & file to help Windows cmd.exe - db2epub_cmd = "cd #{@output_dir} && #{XSLT_PROCESSOR} #{options} \"#{@stylesheet}\" \"#{@collapsed_docbook_file}\"" - STDERR.puts db2epub_cmd if $DEBUG - success = system(db2epub_cmd) - raise "Could not render as .epub to #{output_file} (#{db2epub_cmd})" unless success - @to_delete << Dir["#{@meta_dir}/*"] - @to_delete << Dir["#{@oebps_dir}/*"] - end - - def bundle_epub(output_file, verbose) - - quiet = verbose ? "" : "-q" - mimetype_filename = write_mimetype() - meta = File.basename(@meta_dir) - oebps = File.basename(@oebps_dir) - images = copy_images() - csses = copy_csses() - fonts = copy_fonts() - callouts = copy_callouts() - # zip -X -r ../book.epub mimetype META-INF OEBPS - # Double-quote stylesheet & file to help Windows cmd.exe - zip_cmd = "cd \"#{@output_dir}\" && #{ZIPPER} #{quiet} -X -r \"#{File.expand_path(output_file)}\" \"#{mimetype_filename}\" \"#{meta}\" \"#{oebps}\"" - puts zip_cmd if $DEBUG - success = system(zip_cmd) - raise "Could not bundle into .epub file to #{output_file}" unless success - end - - # Input must be collapsed because REXML couldn't find figures in files that - # were XIncluded or added by ENTITY - # http://sourceforge.net/tracker/?func=detail&aid=2750442&group_id=21935&atid=373747 - def collapse_docbook - collapsed_file = File.join(File.expand_path(File.dirname(@docbook_file)), - '.collapsed.' + File.basename(@docbook_file)) - entity_collapse_command = "xmllint --loaddtd --noent -o '#{collapsed_file}' '#{@docbook_file}'" - entity_success = system(entity_collapse_command) - raise "Could not collapse named entites in #{@docbook_file}" unless entity_success - - xinclude_collapse_command = "xmllint --xinclude -o '#{collapsed_file}' '#{collapsed_file}'" - xinclude_success = system(xinclude_collapse_command) - raise "Could not collapse XIncludes in #{@docbook_file}" unless xinclude_success - - @to_delete << collapsed_file - return collapsed_file - end - - def copy_callouts - new_callout_images = [] - if has_callouts? - calloutglob = "#{CALLOUT_FULL_PATH}/*#{CALLOUT_EXT}" - Dir.glob(calloutglob).each {|img| - img_new_filename = File.join(@oebps_dir, CALLOUT_PATH, File.basename(img)) - - # TODO: What to rescue for these two? - FileUtils.mkdir_p(File.dirname(img_new_filename)) - FileUtils.cp(img, img_new_filename) - @to_delete << img_new_filename - new_callout_images << img - } - end - return new_callout_images - end - - def copy_fonts - new_fonts = [] - @embedded_fonts.each {|font_file| - font_new_filename = File.join(@oebps_dir, File.basename(font_file)) - FileUtils.cp(font_file, font_new_filename) - new_fonts << font_file - } - return new_fonts - end - - def copy_csses - if @css_file - css_new_filename = File.join(@oebps_dir, File.basename(@css_file)) - FileUtils.cp(@css_file, css_new_filename) - end - end - - def copy_images - image_references = get_image_refs() - new_images = [] - image_references.each {|img| - # TODO: It'd be cooler if we had a filetype lookup rather than just - # extension - if img =~ /\.(svg|png|gif|jpe?g|xml)/i - img_new_filename = File.join(@oebps_dir, img) - img_full = File.join(File.expand_path(File.dirname(@docbook_file)), img) - - # TODO: What to rescue for these two? - FileUtils.mkdir_p(File.dirname(img_new_filename)) - puts(img_full + ": " + img_new_filename) if $DEBUG - FileUtils.cp(img_full, img_new_filename) - @to_delete << img_new_filename - new_images << img_full - end - } - return new_images - end - - def write_mimetype - mimetype_filename = File.join(@output_dir, "mimetype") - File.open(mimetype_filename, "w") {|f| f.print MIMETYPE} - @to_delete << mimetype_filename - return File.basename(mimetype_filename) - end - - def cleanup_files(file_list) - file_list.flatten.each {|f| - # Yikes - FileUtils.rm_r(f, :force => true ) - } - end - - # Returns an Array of all of the (image) @filerefs in a document - def get_image_refs - parser = REXML::Parsers::PullParser.new(File.new(@collapsed_docbook_file)) - image_refs = [] - while parser.has_next? - el = parser.pull - if el.start_element? and (el[0] == "imagedata" or el[0] == "graphic") - image_refs << el[1]['fileref'] - end - end - return image_refs - end - - # Returns true if the document has code callouts - def has_callouts? - parser = REXML::Parsers::PullParser.new(File.new(@collapsed_docbook_file)) - while parser.has_next? - el = parser.pull - if el.start_element? and (el[0] == "calloutlist" or el[0] == "co") - return true - end - end - return false - end - end -end diff --git a/docbook-xsl-1.75.2/epub/docbook.xsl b/docbook-xsl-1.75.2/epub/docbook.xsl deleted file mode 100644 index a11f3eb..0000000 --- a/docbook-xsl-1.75.2/epub/docbook.xsl +++ /dev/null @@ -1,1684 +0,0 @@ - - - - - - - - - - 1 - 2 - - book toc,title - - - - - - - - - - - - - - - - - - - ncxtoc - htmltoc - - - - - - - - - .png - - - - - - - - - - - - - - - - 1 - - - 1 - - - 1 - - - 0 - - - - - - - - - - - - - - - - - - Note - - - namesp. cut - - - stripped namespace before processing - - - - - - - Note - - - namesp. cut - - - processing stripped document - - - - - - - - - - - ID ' - - ' not found in document. - - - - - - - - - Formatting from - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - _ - - - - - - - - - - - - - - - - - - - - - - - - - - 2.0 - - - - - - - - - urn: - - : - - - - - urn:isbn: - - - - urn:issn: - - - - - - - - - - - - - - - - - - - - - - cover - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1.0 - - - - - - - application/oebps-package+xml - - - - - - - - - - - - - - - - - - - - - - - - - 2005-1 - - - - - - cover - - - - - - - - dtb:uid - - isbn: - - - - - - - - - dtb:depth - -1 - - - dtb:totalPageCount - 0 - - - dtb:maxPageNumber - 0 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - : - - - - - - - - : - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - © - - - - - - - - - - - - - - - - cover - Cover - - - - - - - - - - - toc - Table of Contents - - - - - - - - - - - - - - - - - - - - - - yes - - no - - - - - - - - - - yes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - application/x-dtbncx+xml - - - - - - - application/xhtml+xml - - - - - - - - - - - text/css - css - - - - - - - - - - - application/xhtml+xml - - - - - - epub.embedded.font - - - - font/opentype - - - - WARNING: OpenType fonts should be supplied! ( - - ) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/gif - - - image/gif - - - image/png - - - image/png - - - image/jpeg - - - image/jpeg - - - image/jpeg - - - image/jpeg - - - image/svg+xml - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - WARNING: mediaobjectco almost certainly will not render as expected in .epub! - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - application/xhtml+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - (missing alt) - - - - - - - - - - - - - - text-align: - - middle - - - - - - - - - - - - - - - - - - - - - - 1 - - - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - - 1 - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No insertfile extension available. - - - - - - - - No insertfile extension available. Use a different processor (with extensions) or turn on $use.extensions and $textinsert.extension (see docs for more). - - - - - - - - - - - - - - - - - - - - - - - - - - - - Cover - - text/css - - img { max-width: 100%; } - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -toc - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 6 - - - - - - - - - - clear: both - - - - - - - - - - - - - - - - - - - - - - - 1 - - - - - - - - - - - - 1 - - - - - - - 1 - 2 - 3 - 4 - 5 - - - - - - - - - - - - - - - - - - - - - - - - 6 - 5 - 4 - 3 - 2 - 1 - - - - - title - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/extensions/README.LIBXSLT b/docbook-xsl-1.75.2/extensions/README.LIBXSLT deleted file mode 100644 index 2c80274..0000000 --- a/docbook-xsl-1.75.2/extensions/README.LIBXSLT +++ /dev/null @@ -1,52 +0,0 @@ ----------------------------------------------------------------------- - README file for the libxslt extensions ----------------------------------------------------------------------- -$Id: README.LIBXSLT 7877 2008-03-08 04:07:52Z xmldoc $ - -These are XSLT extensions written in Python for use with the DocBook XML -stylesheets and the libxslt library[1]. - -Currently, the only available extension is a function for adjusting column -widths in tables. For more information, see the section describing the -equivalent Java extension in "DocBook XSL: The Complete Guide"[2]. - ----------------------------------------------------------------------- -Preparations ----------------------------------------------------------------------- -In addition to libxml2 and libxslt, the following software needs to -be installed before you start using the extensions: - -1. Python[3]. - -2. Python bindings for libxml2/libxslt. Most distributions of - libxml2/libxslt for Unix/Linux include these bindings. - A native Windows port is provided by Stéphane Bidoul[4]. - ----------------------------------------------------------------------- -Installation of the extensions ----------------------------------------------------------------------- -No special installation step is needed. - ----------------------------------------------------------------------- -How to use the extensions ----------------------------------------------------------------------- -Instead of using xsltproc, you run a Python program (xslt.py). The -command has this general form: - -python xslt.py xmlfile xslfile [outputfile] [param1=val1 [param2=val]...] - -Modify paths, filenames, and parameters as needed. Make sure to set -the "use.extensions" and "tablecolumns.extension" parameters to 1. - ----------------------------------------------------------------------- -Manifest ----------------------------------------------------------------------- -README.LIBXSLT This file -xslt.py Executable script file -docbook.py Module that implements extensions - ----------------------------------------------------------------------- -[1] http://xmlsoft.org/XSLT -[2] http://www.sagehill.net/docbookxsl/ColumnWidths.html -[3] http://www.python.org/download -[4] http://users.skynet.be/sbi/libxml-python diff --git a/docbook-xsl-1.75.2/extensions/docbook.py b/docbook-xsl-1.75.2/extensions/docbook.py deleted file mode 100644 index c070602..0000000 --- a/docbook-xsl-1.75.2/extensions/docbook.py +++ /dev/null @@ -1,239 +0,0 @@ -# docbook.py: extension module -# $Id: docbook.py 8353 2009-03-17 16:57:50Z mzjn $ - -import sys -import string -import libxml2 -import libxslt -import re -import math - -# Some globals -pixelsPerInch = 96.0 -unitHash = { 'in': pixelsPerInch, - 'cm': pixelsPerInch / 2.54, - 'mm': pixelsPerInch / 25.4, - 'pc': (pixelsPerInch / 72.0) * 12, - 'pt': pixelsPerInch / 72.0, - 'px': 1 } - -# ====================================================================== - -def adjustColumnWidths(ctx, nodeset): - # - # Small check to verify the context is correcly accessed - # - try: - pctxt = libxslt.xpathParserContext(_obj=ctx) - ctxt = pctxt.context() - tctxt = ctxt.transformContext() - except: - pass - - # Get the nominal table width - varString = lookupVariable(tctxt, "nominal.table.width", None) - if varString == None: - nominalWidth = 6 * pixelsPerInch; - else: - nominalWidth = convertLength(varString); - - # Get the requested table width - tableWidth = lookupVariable(tctxt, "table.width", "100%") - - foStylesheet = (tctxt.variableLookup("stylesheet.result.type", None) == "fo") - - relTotal = 0 - relParts = [] - - absTotal = 0 - absParts = [] - - colgroup = libxml2.xmlNode(_obj = nodeset[0]) - # If this is an foStylesheet, we've been passed a list of fo:table-columns. - # Otherwise we've been passed a colgroup that contains a list of cols. - if foStylesheet: - colChildren = colgroup - else: - colChildren = colgroup.children - - col = colChildren - while col != None: - if foStylesheet: - width = col.prop("column-width") - else: - width = col.prop("width") - - if width == None: - width = "1*" - - relPart = 0.0 - absPart = 0.0 - starPos = string.find(width, "*") - if starPos >= 0: - relPart, absPart = string.split(width, "*", 2) - relPart = float(relPart) - relTotal = relTotal + float(relPart) - else: - absPart = width - - pixels = convertLength(absPart) - absTotal = absTotal + pixels - - relParts.append(relPart) - absParts.append(pixels) - - col = col.next - - # Ok, now we have the relative widths and absolute widths in - # two parallel arrays. - # - # - If there are no relative widths, output the absolute widths - # - If there are no absolute widths, output the relative widths - # - If there are a mixture of relative and absolute widths, - # - If the table width is absolute, turn these all into absolute - # widths. - # - If the table width is relative, turn these all into absolute - # widths in the nominalWidth and then turn them back into - # percentages. - - widths = [] - - if relTotal == 0: - for absPart in absParts: - if foStylesheet: - inches = absPart / pixelsPerInch - widths.append("%4.2fin" % inches) - else: - widths.append("%d" % absPart) - elif absTotal == 0: - for relPart in relParts: - rel = relPart / relTotal * 100 - widths.append(rel) - widths = correctRoundingError(widths) - else: - pixelWidth = nominalWidth - if string.find(tableWidth, "%") < 0: - pixelWidth = convertLength(tableWidth) - - if pixelWidth <= absTotal: - print "Table is wider than table width" - else: - pixelWidth = pixelWidth - absTotal - - absTotal = 0 - for count in range(len(relParts)): - rel = relParts[count] / relTotal * pixelWidth - relParts[count] = rel + absParts[count] - absTotal = absTotal + rel + absParts[count] - - if string.find(tableWidth, "%") < 0: - for count in range(len(relParts)): - if foStylesheet: - pixels = relParts[count] - inches = pixels / pixelsPerInch - widths.append("%4.2fin" % inches) - else: - widths.append(relParts[count]) - else: - for count in range(len(relParts)): - rel = relParts[count] / absTotal * 100 - widths.append(rel) - widths = correctRoundingError(widths) - - # Danger, Will Robinson! In-place modification of the result tree! - # Side-effect free? We don' need no steenkin' side-effect free! - count = 0 - col = colChildren - while col != None: - if foStylesheet: - col.setProp("column-width", widths[count]) - else: - col.setProp("width", widths[count]) - - count = count+1 - col = col.next - - return nodeset - -def convertLength(length): - # Given "3.4in" return the width in pixels - global pixelsPerInch - global unitHash - - m = re.search('([+-]?[\d\.]+)(\S+)', length) - if m != None and m.lastindex > 1: - unit = pixelsPerInch - if unitHash.has_key(m.group(2)): - unit = unitHash[m.group(2)] - else: - print "Unrecognized length: " + m.group(2) - - pixels = unit * float(m.group(1)) - else: - pixels = 0 - - return pixels - -def correctRoundingError(floatWidths): - # The widths are currently floating point numbers, we have to truncate - # them back to integers and then distribute the error so that they sum - # to exactly 100%. - - totalWidth = 0 - widths = [] - for width in floatWidths: - width = math.floor(width) - widths.append(width) - totalWidth = totalWidth + math.floor(width) - - totalError = 100 - totalWidth - columnError = totalError / len(widths) - error = 0 - for count in range(len(widths)): - width = widths[count] - error = error + columnError - if error >= 1.0: - adj = math.floor(error) - error = error - adj - widths[count] = "%d%%" % (width + adj) - else: - widths[count] = "%d%%" % width - - return widths - -def lookupVariable(tctxt, varName, default): - varString = tctxt.variableLookup(varName, None) - if varString == None: - return default - - # If it's a list, get the first element - if type(varString) == type([]): - varString = varString[0] - - # If it's not a string, it must be a node, get its content - if type(varString) != type(""): - varString = varString.content - - return varString - -# ====================================================================== -# Random notes... - -#once you have a node which is a libxml2 python xmlNode wrapper all common -#operations are possible: -# .children .last .parent .next .prev .doc for navigation -# .content .type for introspection -# .prop("attribute_name") to lookup attribute values - -# # Now make a nodeset to return -# # Danger, Will Robinson! This creates a memory leak! -# newDoc = libxml2.newDoc("1.0") -# newColGroup = newDoc.newDocNode(None, "colgroup", None) -# newDoc.addChild(newColGroup) -# col = colgroup.children -# while col != None: -# newCol = newDoc.newDocNode(None, "col", None) -# newCol.copyPropList(col); -# newCol.setProp("width", "4") -# newColGroup.addChild(newCol) -# col = col.next diff --git a/docbook-xsl-1.75.2/extensions/saxon65.jar b/docbook-xsl-1.75.2/extensions/saxon65.jar deleted file mode 100644 index af0d0ad..0000000 Binary files a/docbook-xsl-1.75.2/extensions/saxon65.jar and /dev/null differ diff --git a/docbook-xsl-1.75.2/extensions/xalan27.jar b/docbook-xsl-1.75.2/extensions/xalan27.jar deleted file mode 100644 index 6b16401..0000000 Binary files a/docbook-xsl-1.75.2/extensions/xalan27.jar and /dev/null differ diff --git a/docbook-xsl-1.75.2/extensions/xslt.py b/docbook-xsl-1.75.2/extensions/xslt.py deleted file mode 100644 index c712f65..0000000 --- a/docbook-xsl-1.75.2/extensions/xslt.py +++ /dev/null @@ -1,84 +0,0 @@ -#!/usr/bin/python -u -# $Id: xslt.py 8353 2009-03-17 16:57:50Z mzjn $ - -import sys -import libxml2 -import libxslt -from docbook import adjustColumnWidths - -# Check the arguments -usage = "Usage: %s xmlfile.xml xslfile.xsl [outputfile] [param1=val [param2=val]...]" % sys.argv[0] - -xmlfile = None -xslfile = None -outfile = "-" -params = {} - -try: - xmlfile = sys.argv[1] - xslfile = sys.argv[2] -except IndexError: - print usage - sys.exit(1) - -def quote(astring): - if astring.find("'") < 0: - return "'" + astring + "'" - else: - return '"' + astring + '"' - -try: - outfile = sys.argv[3] - if outfile.find("=") > 0: - name, value = outfile.split("=", 2) - params[name] = quote(value) - outfile = None - - count = 4 - while (sys.argv[count]): - try: - name, value = sys.argv[count].split("=", 2) - if params.has_key(name): - print "Warning: '%s' re-specified; replacing value" % name - params[name] = quote(value) - except ValueError: - print "Invalid parameter specification: '" + sys.argv[count] + "'" - print usage - sys.exit(1) - count = count+1 -except IndexError: - pass - -# ====================================================================== -# Memory debug specific -# libxml2.debugMemory(1) - -# Setup environment -libxml2.lineNumbersDefault(1) -libxml2.substituteEntitiesDefault(1) -libxslt.registerExtModuleFunction("adjustColumnWidths", - "http://nwalsh.com/xslt/ext/xsltproc/python/Table", - adjustColumnWidths) - -# Initialize and run -styledoc = libxml2.parseFile(xslfile) -style = libxslt.parseStylesheetDoc(styledoc) -doc = libxml2.parseFile(xmlfile) -result = style.applyStylesheet(doc, params) - -# Save the result -if outfile: - style.saveResultToFilename(outfile, result, 0) -else: - print result - -# Free things up -style.freeStylesheet() -doc.freeDoc() -result.freeDoc() - -# Memory debug specific -#libxslt.cleanup() -#if libxml2.debugMemory(1) != 0: -# print "Memory leak %d bytes" % (libxml2.debugMemory(1)) -# libxml2.dumpMemory() diff --git a/docbook-xsl-1.75.2/fo/admon.xsl b/docbook-xsl-1.75.2/fo/admon.xsl deleted file mode 100644 index 4f69be4..0000000 --- a/docbook-xsl-1.75.2/fo/admon.xsl +++ /dev/null @@ -1,130 +0,0 @@ - - - - - - - - - - - - - - - - - - - 36pt - - - - - - - - - note - warning - caution - tip - important - note - - - - - - - - - - url( - - ) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/fo/annotations.xsl b/docbook-xsl-1.75.2/fo/annotations.xsl deleted file mode 100644 index ba6baa6..0000000 --- a/docbook-xsl-1.75.2/fo/annotations.xsl +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - diff --git a/docbook-xsl-1.75.2/fo/autoidx-kimber.xsl b/docbook-xsl-1.75.2/fo/autoidx-kimber.xsl deleted file mode 100644 index 4c6f396..0000000 --- a/docbook-xsl-1.75.2/fo/autoidx-kimber.xsl +++ /dev/null @@ -1,178 +0,0 @@ - - - - - - - - - - - -]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ERROR: the 'kimber' index method requires the - Saxon version 6 or 8 XSLT processor. - - - - - - ERROR: the 'kimber' index method requires the - Innodata Isogen Java extensions for - internationalized indexes. Install those - extensions, or use a different index method. - For more information, see: - http://www.innodata-isogen.com/knowledge_center/tools_downloads/i18nsupport - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/fo/autoidx-kosek.xsl b/docbook-xsl-1.75.2/fo/autoidx-kosek.xsl deleted file mode 100644 index c44d07a..0000000 --- a/docbook-xsl-1.75.2/fo/autoidx-kosek.xsl +++ /dev/null @@ -1,149 +0,0 @@ - - - - - - - - - - -]> - - - - - - - - - - - - - - - - ERROR: the 'kosek' index method does not - work with the xsltproc XSLT processor. - - - - - - ERROR: the 'kosek' index method does not - work with the Saxon 8 XSLT processor. - - - - - - - ERROR: the 'kosek' index method requires the - exslt:node-set() function. Use a processor that - has it, or use a different index method. - - - - - - ERROR: the 'kosek' index method requires the - index extension functions be imported: - xsl:import href="common/autoidx-kosek.xsl" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/fo/autoidx-ng.xsl b/docbook-xsl-1.75.2/fo/autoidx-ng.xsl deleted file mode 100644 index 9407b5c..0000000 --- a/docbook-xsl-1.75.2/fo/autoidx-ng.xsl +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - -kosek - - diff --git a/docbook-xsl-1.75.2/fo/autoidx.xsl b/docbook-xsl-1.75.2/fo/autoidx.xsl deleted file mode 100644 index 920760f..0000000 --- a/docbook-xsl-1.75.2/fo/autoidx.xsl +++ /dev/null @@ -1,1330 +0,0 @@ - - -%common.entities; -]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ERROR: the 'kosek' index method does not - work with the xsltproc XSLT processor. - - - - - - - ERROR: the 'kosek' index method requires the - exslt:node-set() function. Use a processor that - has it, or use a different index method. - - - - - - ERROR: the 'kosek' index method requires the - kosek index extensions be imported: - xsl:import href="fo/autoidx-kosek.xsl" - - - - - - - - - - - - - - ERROR: the 'kimber' index method requires the - Saxon version 6 or 8 XSLT processor. - - - - - - ERROR: the 'kimber' index method requires the - kimber index extensions be imported: - xsl:import href="fo/autoidx-kimber.xsl" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - true - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - true - - - - - - - - - - - - - - - - - - - - - - - , - - - - - - - - - , - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - true - - - - - - - - - - - - - - - - - - - - - - - - , - - , - - - - - - - - - , - - , - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ( - - - - - - ) - - - - - - - - - - - - ( - - - - - - ) - - - - - - - - - - - - - - - - - <index> - - <indexdiv> - <title> - - - - </title> - - - - - - - </indexdiv> - - - - - - - - - </index> - - - - - - - - < - - > - - - - - - - - - - - - - <indexdiv> - <title> - - </title> - - - - - - - - </indexdiv> - - - - - - - - - - - - - - - - - - - - - - - - - <indexentry> - <primaryie> - <phrase> - - - - </phrase> - , - - - - - - - - - - - </primaryie> - - - - - - - - - - - - - - - - - - - - - - - - </indexentry> - - - - - - - - - - - <secondaryie> - <phrase> - - - - </phrase> - , - - - - - - - - - - - </secondaryie> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - <tertiaryie> - <phrase> - - - - </phrase> - , - - - - - - - - - - - </tertiaryie> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - <phrase role="pageno"> - <link linkend=" - - "> - - - - - - - </link> - </phrase> - - - <phrase role="pageno"> - - <link linkend=" - - "> - - - - - - </link> - - </phrase> - - - - - - - - - - - - - - - - - - - - - - - <phrase fole="pageno"> - - <link linkend=" - - "> - - - - - - </link> - - </phrase> - - - - - - - - - - - - - - - - - - - <phrase role="pageno"> - - <link linkend=" - - "> - - - - - - </link> - - </phrase> - - - - - - - - - - <seeie> - <phrase> - - - - </phrase> - </seeie> - - - - - - - - - <seealsoie> - <phrase> - - - - </phrase> - </seealsoie> - - - - - - - - - - - - - &lt; - - - - - - - - &amp; - - - - - - - - &lt; - - - - - - - - &amp; - - - - - - - - - - - - - - - - - - - - - - - - - - - - index - term-separator - - - - - - - - - - - - - - index - number-separator - - - - - - - - - - - - - - index - range-separator - - - - - - - - diff --git a/docbook-xsl-1.75.2/fo/autotoc.xsl b/docbook-xsl-1.75.2/fo/autotoc.xsl deleted file mode 100644 index c1079b8..0000000 --- a/docbook-xsl-1.75.2/fo/autotoc.xsl +++ /dev/null @@ -1,915 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - false - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - false - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 3em - -3em - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/fo/axf.xsl b/docbook-xsl-1.75.2/fo/axf.xsl deleted file mode 100644 index e63c3a6..0000000 --- a/docbook-xsl-1.75.2/fo/axf.xsl +++ /dev/null @@ -1,110 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - author - - - - - - - - - - - - - - - - - - - - - keywords - - - - - , - - - - - - - - - subject - - - - - , - - - - - - - - - - - - - - crop - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/fo/biblio-iso690.xsl b/docbook-xsl-1.75.2/fo/biblio-iso690.xsl deleted file mode 100644 index 1bc3858..0000000 --- a/docbook-xsl-1.75.2/fo/biblio-iso690.xsl +++ /dev/null @@ -1,1300 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - In - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/fo/biblio.xsl b/docbook-xsl-1.75.2/fo/biblio.xsl deleted file mode 100644 index 4524612..0000000 --- a/docbook-xsl-1.75.2/fo/biblio.xsl +++ /dev/null @@ -1,1169 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No bibliography entry: - - found in - - - - Error: no bibliography entry: - - found in - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No bibliography entry: - - found in - - - - Error: no bibliography entry: - - found in - - - - - - - - - - - - - - - - - - - - [ - - ] - - - [ - - ] - - - [ - - ] - - - [ - - ] - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - copyright - - - - - - - - - - - - - , - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/fo/block.xsl b/docbook-xsl-1.75.2/fo/block.xsl deleted file mode 100644 index 907200b..0000000 --- a/docbook-xsl-1.75.2/fo/block.xsl +++ /dev/null @@ -1,643 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -   - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0pt - 0pt - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0pt - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0pt - 0.5em - 0pt - - - - - 0.5em - 0pt - 0pt - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0pt - 0.5em - 0pt - - - - - 0.5em - 0pt - 0pt - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - , - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/fo/callout.xsl b/docbook-xsl-1.75.2/fo/callout.xsl deleted file mode 100644 index a31f218..0000000 --- a/docbook-xsl-1.75.2/fo/callout.xsl +++ /dev/null @@ -1,231 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Don't know how to do callouts with - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Error: coref link is broken: - - - - - - Error: coref doesn't point to a co: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - url( - - ) - - - - - - - - - - - - - - - - - - - - - - - - - - Don't know how to generate Unicode callouts - when $callout.unicode.start.character is - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/fo/component.xsl b/docbook-xsl-1.75.2/fo/component.xsl deleted file mode 100644 index 1466413..0000000 --- a/docbook-xsl-1.75.2/fo/component.xsl +++ /dev/null @@ -1,887 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 6 - 5 - 4 - 3 - 2 - 1 - - - - - - - - - - - - - inherit - - - - - - - - - - - - - - - - - - - - - false - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - false - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/fo/division.xsl b/docbook-xsl-1.75.2/fo/division.xsl deleted file mode 100644 index 975d8c5..0000000 --- a/docbook-xsl-1.75.2/fo/division.xsl +++ /dev/null @@ -1,612 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - - - false - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/fo/docbook.xsl b/docbook-xsl-1.75.2/fo/docbook.xsl deleted file mode 100644 index aeff84b..0000000 --- a/docbook-xsl-1.75.2/fo/docbook.xsl +++ /dev/null @@ -1,333 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Element - - in namespace ' - - ' encountered - - in - - - , but no template matches. - - - - < - - > - - </ - - > - - - - - - - - - - - - - - - - - Note - - - namesp. cut - - - stripped namespace before processing - - - - - - - Note - - - namesp. cut - - - processing stripped document - - - - - - - - Unable to strip the namespace from DB5 document, - cannot proceed. - - - - - - - - - - ID ' - - ' not found in document. - - - - - ERROR: Document root element ($rootid= - - ) for FO output - must be one of the following elements: - - - - - - - - - - - - - - - - - - - - - ERROR: Document root element for FO output - must be one of the following elements: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - [could not find document title] - - - - - - false - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Making - - pages on - - paper ( - - x - - ) - - - - - - diff --git a/docbook-xsl-1.75.2/fo/ebnf.xsl b/docbook-xsl-1.75.2/fo/ebnf.xsl deleted file mode 100644 index 09dcb11..0000000 --- a/docbook-xsl-1.75.2/fo/ebnf.xsl +++ /dev/null @@ -1,325 +0,0 @@ - - - - - - - - -$Id: ebnf.xsl 6910 2007-06-28 23:23:30Z xmldoc $ - -Walsh -Norman -199920002001 -Norman Walsh - - -HTML EBNF Reference - - -
Introduction - -This is technical reference documentation for the DocBook XSL -Stylesheets; it documents (some of) the parameters, templates, and -other elements of the stylesheets. - -This reference describes the templates and parameters relevant -to formatting EBNF markup. - -This is not intended to be user documentation. -It is provided for developers writing customization layers for the -stylesheets, and for anyone who's interested in how it -works. - -Although I am trying to be thorough, this documentation is known -to be incomplete. Don't forget to read the source, too :-) -
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - [ - - ] - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -   - - - - - - - - - - - - - - Error: no ID for productionrecap linkend: - - . - - - - - - Warning: multiple "IDs" for productionrecap linkend: - - . - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - production - - - - - - - - - Non-terminals with no content must point to - production elements in the current document. - - - Invalid xpointer for empty nt: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ??? - - - - - - - - - - - - - /*  - -  */ - - - - - - - - - - constraintdef - - - - - - - - - - - - - - - - - - - : - - - - - - - : - - - - - - - - - -  ] - - - - - - - - - - - - - - - - - -
diff --git a/docbook-xsl-1.75.2/fo/fo-rtf.xsl b/docbook-xsl-1.75.2/fo/fo-rtf.xsl deleted file mode 100644 index 4aa0f32..0000000 --- a/docbook-xsl-1.75.2/fo/fo-rtf.xsl +++ /dev/null @@ -1,154 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/fo/fo.xsl b/docbook-xsl-1.75.2/fo/fo.xsl deleted file mode 100644 index 854098f..0000000 --- a/docbook-xsl-1.75.2/fo/fo.xsl +++ /dev/null @@ -1,117 +0,0 @@ - - - - - - - - - - - left - left - left - right - top - left - - - - - - right - right - right - left - bottom - right - - - - - - - WARNING: FOP does not support right-to-left writing-mode - lr-tb - - - WARNING: FOP does not support right-to-left writing-mode - lr-tb - - lr-tb - rl-tb - tb-rl - lr-tb - - - - - - - - - - - - - - - - - - - bullet - - - o - © - - - ® - (SM) - " - " - ' - ' - - - - o - - - - - - - - - - - - - - - - - - - # - - - - - - - diff --git a/docbook-xsl-1.75.2/fo/footnote.xsl b/docbook-xsl-1.75.2/fo/footnote.xsl deleted file mode 100644 index cc0242d..0000000 --- a/docbook-xsl-1.75.2/fo/footnote.xsl +++ /dev/null @@ -1,220 +0,0 @@ - - - - - - - - - - - super - - - super - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -ERROR: A footnoteref element has a linkend that points to an element that is not a footnote. -Typically this happens when an id attribute is accidentally applied to the child of a footnote element. -target element: -linkend/id: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Warning: footnote number may not be generated - correctly; - - unexpected as first child of footnote. - - - - - - - - - diff --git a/docbook-xsl-1.75.2/fo/fop.xsl b/docbook-xsl-1.75.2/fo/fop.xsl deleted file mode 100644 index c82a48d..0000000 --- a/docbook-xsl-1.75.2/fo/fop.xsl +++ /dev/null @@ -1,93 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/fo/fop1.xsl b/docbook-xsl-1.75.2/fo/fop1.xsl deleted file mode 100644 index e44eb2a..0000000 --- a/docbook-xsl-1.75.2/fo/fop1.xsl +++ /dev/null @@ -1,188 +0,0 @@ - - - - - - - - - - hide - show - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - , - - - - - - - - - - - - - - - - , - - - - - - - - - - - DocBook XSL Stylesheets with Apache FOP - - - - - - - - diff --git a/docbook-xsl-1.75.2/fo/formal.xsl b/docbook-xsl-1.75.2/fo/formal.xsl deleted file mode 100644 index 5c602b9..0000000 --- a/docbook-xsl-1.75.2/fo/formal.xsl +++ /dev/null @@ -1,618 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - always - - - always - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - before - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - before - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Broken table: tr descendent of CALS Table. - The text in the first tr is: - - - - - - Broken table: row descendent of HTML table. - The text in the first row is: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - before - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/fo/glossary.xsl b/docbook-xsl-1.75.2/fo/glossary.xsl deleted file mode 100644 index 7c2f368..0000000 --- a/docbook-xsl-1.75.2/fo/glossary.xsl +++ /dev/null @@ -1,1144 +0,0 @@ - - -%common.entities; -]> - - - - - - - - - - - - - - - - - - - - - - &setup-language-variable; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - &setup-language-variable; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Warning: processing automatic glossary - without a glossary.collection file. - - - - - - Warning: processing automatic glossary but unable to - open glossary.collection file ' - - ' - - - - - - - - - - - - &setup-language-variable; - - - - - - - - - - - - - - - - - - - - - - - - - - - Warning: processing automatic glossary - without a glossary.collection file. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Warning: processing automatic glossary - without a glossary.collection file. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - &setup-language-variable; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - &setup-language-variable; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - &setup-language-variable; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - 1 - - - - - - - - - - - - ( - - ) - - - - - - - - - - - - ( - - ) - - - - - - - - - - - - - - - - - - - - - - - - - - - , - - - - - , - - - - - , - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Warning: glosssee @otherterm reference not found: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Warning: glossseealso @otherterm reference not found: - - - - - - - - - - - - - - - - - - - - - - - - - &setup-language-variable; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - 1 - - - - - - - - - - ( - - ) - - - - - - - - - - - - ( - - ) - - - - - - - - - - - - - - - - - - - - - - - - , - - - - - , - - - - - , - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Warning: glosssee @otherterm reference not found: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Warning: glossseealso @otherterm reference not found: - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/fo/graphics.xsl b/docbook-xsl-1.75.2/fo/graphics.xsl deleted file mode 100644 index f75d66b..0000000 --- a/docbook-xsl-1.75.2/fo/graphics.xsl +++ /dev/null @@ -1,642 +0,0 @@ - - - - ]> - - - - - - - - - - - - PNG PDF JPG JPEG linespecific - - - BMP GIF TIFF SVG PNG EPS JPG JPEG linespecific - - - BMP GIF TIFF SVG PNG EPS JPG JPEG linespecific - - - PNG PDF JPG JPEG linespecific GIF GIF87a GIF89a TIFF BMP - - - SVG PNG PDF JPG JPEG linespecific GIF GIF87a GIF89a TIFF BMP - - - PNG PDF JPG JPEG linespecific GIF GIF87a GIF89a TIFF BMP - - - - - - - 1 - - - - - - - png pdf jpg jpeg - - - bmp gif tif tiff svg png pdf jpg jpeg eps - - - bmp gif tif tiff svg png pdf jpg jpeg eps - - - png pdf jpg jpeg gif tif tiff bmp - - - svg png pdf jpg jpeg gif tif tiff bmp eps - - - svg png pdf jpg jpeg gif tif tiff bmp eps - - - - - - - - - 1 - - - - - - - - - - - - - - application/postscript - application/pdf - image/png - image/svg+xml - image/jpeg - image/gif - image/gif - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - 0 - 0 - 0 - - 1 - 1 - 0 - - - - - - 0 - 1.0 - - - - 1.0 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - auto - - - - - - - - - - - - - - - - auto - - - - - - auto - - - - - - - - - - auto - - - - - - auto - - - - - - - - - - - - % - - scale-to-fit - auto - - - - - - auto - - - - - - - - - - - - % - - scale-to-fit - auto - - - - - - - - - - - - - - - - - - - - - - - - - before - center - after - auto - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Don't know how to insert files with - - - - - - - - Cannot insert - . Check use.extensions and textinsert.extension parameters. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Don't know how to insert files with - - - - - - - - Cannot insert - . Check use.extensions and textinsert.extension parameters. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Don't know how to insert files with - - - - - - - - Cannot insert - . Check use.extensions and textinsert.extension parameters. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/fo/highlight.xsl b/docbook-xsl-1.75.2/fo/highlight.xsl deleted file mode 100644 index 7843ad2..0000000 --- a/docbook-xsl-1.75.2/fo/highlight.xsl +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/fo/htmltbl.xsl b/docbook-xsl-1.75.2/fo/htmltbl.xsl deleted file mode 100644 index 4918b8a..0000000 --- a/docbook-xsl-1.75.2/fo/htmltbl.xsl +++ /dev/null @@ -1,425 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - fixed - - - - - - - - - - - - 100% - - - - - - - all - all - bottom - top - topbot - sides - lhs - rhs - none - all - none - - - - - - - all - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - none - none - none - none - - - - - none - none - none - - - - - - - - - - - - - - - - 1 - - 1 - 1 - - 1 - 0 - - - - - none - none - none - - - - - - - - - - - - - none - none - - - - - 1 - - 1 - 1 - - 1 - 0 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - none - none - none - - - - - - - - - - - - none - none - none - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/fo/index.xsl b/docbook-xsl-1.75.2/fo/index.xsl deleted file mode 100644 index e8a8b2e..0000000 --- a/docbook-xsl-1.75.2/fo/index.xsl +++ /dev/null @@ -1,485 +0,0 @@ - - - - -]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - body - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - body - index - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -.tnacifingis - - - - - - - - - fo:wrapper - - - - - - - - - - - - - - , - - - - , - - - - - - - - - - - , - - - - , - - - - - - - - - - - - - - - - - - - - , - - - - , - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ( - - - - - - ) - - - - - - - - - ( - - - - - - ) - - - - - - - - - ( - - - - - - ) - - - - - - - - - - - - - - - 3pc - 2pc - 1pc - - - ( - - - - - - ) - - - - - - - - - - - - - fo:block - fo:wrapper - fo:inline - - - - diff --git a/docbook-xsl-1.75.2/fo/info.xsl b/docbook-xsl-1.75.2/fo/info.xsl deleted file mode 100644 index 7497b82..0000000 --- a/docbook-xsl-1.75.2/fo/info.xsl +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/fo/inline.xsl b/docbook-xsl-1.75.2/fo/inline.xsl deleted file mode 100644 index e8b5260..0000000 --- a/docbook-xsl-1.75.2/fo/inline.xsl +++ /dev/null @@ -1,1286 +0,0 @@ - - -%common.entities; -]> - - - - - - - - - - - - - - - - - - - - - 1 - 0 - - - - - - - - - 1 - 0 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - XLink to nonexistent id: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - XLink to nonexistent id: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ltr - rtl - - - - - - - - - - - - - - - - - - - - - - - - - ltr - rtl - - - - - - - - - - - - - - - - - - - - - ltr - rtl - - - - - - - - - - - - - - - - - - - - - - ltr - rtl - - - - - - - - - - - - - - - - - - - - - - ltr - rtl - - - - - - - - - - - - - - - - - - - - - - ltr - rtl - - - - - - - - - - - - - - - - - - - - - - ltr - rtl - - - - - - super - - - super - - - - - - - - - - - - - - - - - - - - - ltr - rtl - - - - - - sub - - - sub - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ( - - ) - - - - - - - - - - - , - - - - - - - , - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - There's no entry for - - in - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Error: no glossentry for glossterm: - - . - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - element - - - - - - - - - - - - - - - - - </ - - > - - - - - - - & - - ; - - - - - - - &# - - ; - - - - - - - % - - ; - - - - - - - <? - - > - - - - - - - <? - - ?> - - - - - - - < - - > - - - - - - - < - - /> - - - - - - - <!-- - - --> - - - - - - - - - - - - - - - < - - - - - - mailto: - - - - - - - - - - > - - - - - - - - - - - - + - - - - - - - - + - - - - - - - - - - - - - - - - - - - ( - - ) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - [ - - - - - - - - - - - - - - - - - - ] - - - - [ - - ] - - - - - - - - - - - - - [ - - - - - - - - - - - ] - - - - [ - - ] - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/fo/keywords.xsl b/docbook-xsl-1.75.2/fo/keywords.xsl deleted file mode 100644 index 6070b91..0000000 --- a/docbook-xsl-1.75.2/fo/keywords.xsl +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/fo/lists.xsl b/docbook-xsl-1.75.2/fo/lists.xsl deleted file mode 100644 index ffe2394..0000000 --- a/docbook-xsl-1.75.2/fo/lists.xsl +++ /dev/null @@ -1,1393 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - em - - - em * 0.60 - - - - - - - - - - - - - - em - - - em * 0.60 - - - - - - - - - 1em - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0.25in - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 100% - - - - - - - - - - - - auto - - - - - - fixed - - - - - - - - - - - 1 - - - - - - - - - - - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - , - - - - - - - - - - - - - - - - - - - - - - - - - - - - 100% - - - - - - - - - - - auto - - - - - - fixed - - - - - - - - - - 1 - - - - - - - - - - - 1 - - - - - - - - - - - - - - - - - - - - - 1 - 1 - - - - - - - - - - - - - - - - - - - - 1 - 1 - - 1 - - - - - - - - - - - - - - - - - - - - 1 - 1 - - - - - - - - - - - - - - - - - - - - - - - 1 - 1 - 1 - - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - before - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - . - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - : - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - : ??? - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ??? - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/fo/math.xsl b/docbook-xsl-1.75.2/fo/math.xsl deleted file mode 100644 index 6d7d470..0000000 --- a/docbook-xsl-1.75.2/fo/math.xsl +++ /dev/null @@ -1,140 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - $ - - - - $ - - - - - - - - - - - - - $$ - - - - $$ - - - - - - - - - Your equation is misplaced. It should be in inlineequation, equation or informalequation. - - - - - - - - - - - - - - 0 - 0 - 1 - - - - - - diff --git a/docbook-xsl-1.75.2/fo/pagesetup.xsl b/docbook-xsl-1.75.2/fo/pagesetup.xsl deleted file mode 100644 index 62f5ac4..0000000 --- a/docbook-xsl-1.75.2/fo/pagesetup.xsl +++ /dev/null @@ -1,2567 +0,0 @@ - - - - - - - - - - , - - - - - - , - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - blank - - - - - blank-body - - - - - - - - - - - - - - - - - - - - titlepage-first - - - - - - - - - - - - - - - - - - - - - titlepage-odd - - - - - - - - - - - - - - - - - - - - - titlepage-even - - - - - - - - - - - - - - - - - - - - - - lot-first - - - - - - - - - - - - - - - - - - - - - lot-odd - - - - - - - - - - - - - - - - - - - - - lot-even - - - - - - - - - - - - - - - - - - - - - - front-first - - - - - - - - - - - - - - - - - - - - - front-odd - - - - - - - - - - - - - - - - - - - - - front-even - - - - - - - - - - - - - - - - - - - - - - - - - body-first - - - - - - - - - - - - - - - - - - - - - body-odd - - - - - - - - - - - - - - - - - - - - - body-even - - - - - - - - - - - - - - - - - - - - - - back-first - - - - - - - - - - - - - - - - - - - - - back-odd - - - - - - - - - - - - - - - - - - - - - back-even - - - - - - - - - - - - - - - - - - - - - - index-first - - - - - - - - - - - - - - - - - - - - - index-odd - - - - - - - - - - - - - - - - - - - - - index-even - - - - - - - - - - - - - - - - - - - - - - - blank-draft - - - - - - - - - - fixed - no-repeat - center - center - - - - - - - - - - - - - - - - - - - - titlepage-first-draft - - - - - - - - - - fixed - no-repeat - center - center - - - - - - - - - - - - - - - - - - - titlepage-odd-draft - - - - - - - - - - fixed - no-repeat - center - center - - - - - - - - - - - - - - - - - - - titlepage-even-draft - - - - - - - - - - fixed - no-repeat - center - center - - - - - - - - - - - - - - - - - - - - lot-first-draft - - - - - - - - - - fixed - no-repeat - center - center - - - - - - - - - - - - - - - - - - - lot-odd-draft - - - - - - - - - - fixed - no-repeat - center - center - - - - - - - - - - - - - - - - - - - lot-even-draft - - - - - - - - - - fixed - no-repeat - center - center - - - - - - - - - - - - - - - - - - - - front-first-draft - - - - - - - - - - fixed - no-repeat - center - center - - - - - - - - - - - - - - - - - - - front-odd-draft - - - - - - - - - - fixed - no-repeat - center - center - - - - - - - - - - - - - - - - - - - front-even-draft - - - - - - - - - - fixed - no-repeat - center - center - - - - - - - - - - - - - - - - - - - - body-first-draft - - - - - - - - - - fixed - no-repeat - center - center - - - - - - - - - - - - - - - - - - - body-odd-draft - - - - - - - - - - fixed - no-repeat - center - center - - - - - - - - - - - - - - - - - - - body-even-draft - - - - - - - - - - fixed - no-repeat - center - center - - - - - - - - - - - - - - - - - - - - back-first-draft - - - - - - - - - - fixed - no-repeat - center - center - - - - - - - - - - - - - - - - - - - back-odd-draft - - - - - - - - - - fixed - no-repeat - center - center - - - - - - - - - - - - - - - - - - - back-even-draft - - - - - - - - - - fixed - no-repeat - center - center - - - - - - - - - - - - - - - - - - - - index-first-draft - - - - - - - - - - fixed - no-repeat - center - center - - - - - - - - - - - - - - - - - - - index-odd-draft - - - - - - - - - - fixed - no-repeat - center - center - - - - - - - - - - - - - - - - - - - index-even-draft - - - - - - - - - - fixed - no-repeat - center - center - - - - - - - - - - - - - - - - - titlepage-even - titlepage-odd - - - - - - - - - - - - - - - - lot-even - lot-odd - - - - - - - - - - - - - - - - front-even - front-odd - - - - - - - - - - - - - - - - body-even - body-odd - - - - - - - - - - - - - - - - back-even - back-odd - - - - - - - - - - - - - - - - index-even - index-odd - - - - - - - - - - - - - - - - - titlepage-even-draft - titlepage-odd-draft - - - - - - - - - - - - - - - - lot-even-draft - lot-odd-draft - - - - - - - - - - - - - - - - front-even-draft - front-odd-draft - - - - - - - - - - - - - - - - body-even-draft - body-odd-draft - - - - - - - - - - - - - - - - back-even-draft - back-odd-draft - - - - - - - - - - - - - - - - index-even-draft - index-odd-draft - - - - - - - - - - - - - - - - - - - - - - - - - - - - lot - front - front - front - back - back - back - index - back - body - - - - - -draft - - - - - - -draft - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0.5pt - solid - black - - - - - - - - - - 0.5pt - solid - black - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0pt - - - - - - 1 - 1 - 3 - - - - - - 3 - 3 - 1 - - - - - - - - - - - - - - proportional-column-width( - - header - - - ) - - - - - proportional-column-width( - - header - - - ) - - - - - proportional-column-width( - - header - - - ) - - - - - - - - - - - baseline - - - - - - - - - - - - - baseline - - - - - - - - - - - - - baseline - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Error: value in .column.widths at position is not a number. - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0pt - - - - - - 1 - 1 - 3 - - - - - - 3 - 3 - 1 - - - - - - - - - - - - - proportional-column-width( - - footer - - - ) - - - - - proportional-column-width( - - footer - - - ) - - - - - proportional-column-width( - - footer - - - ) - - - - - - - - - - - baseline - - - - - - - - - - - - - baseline - - - - - - - - - - - - - baseline - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - i - i - i - 1 - - - - - - - - - - - - - - auto-odd - 1 - - - auto-odd - 1 - 1 - auto-odd - - - - - - - auto - 1 - auto - 1 - 1 - auto - - - - - - - - - - - - end-on-even - - no-force - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/fo/param.xml b/docbook-xsl-1.75.2/fo/param.xml deleted file mode 100644 index d9b625d..0000000 --- a/docbook-xsl-1.75.2/fo/param.xml +++ /dev/null @@ -1,12413 +0,0 @@ - - - -FO Parameter Reference - -$Id: param.xweb 8392 2009-04-01 08:47:55Z bobstayton $ - - - - Walsh - Norman - - - - 1999 - 2000 - 2001 - 2002 - 2003 - 2004 - 2005 - 2006 - 2007 - Norman Walsh - - - This is reference documentation for all user-configurable - parameters in the DocBook XSL FO stylesheets (for generating - XSL-FO output destined for final print/PDF output). - - -Admonitions - - -admon.graphics -boolean - - -admon.graphics -Use graphics in admonitions? - - - - -<xsl:param name="admon.graphics" select="0"></xsl:param> - - - -Description - -If true (non-zero), admonitions are presented in an alternate style that uses -a graphic. Default graphics are provided in the distribution. - - - - - - - -admon.graphics.extension -string - - -admon.graphics.extension -Filename extension for admonition graphics - - - - -<xsl:param name="admon.graphics.extension">.png</xsl:param> - - - -Description - -Sets the filename extension to use on admonition graphics. - - - - - - -admon.graphics.path -string - - -admon.graphics.path -Path to admonition graphics - - - -<xsl:param name="admon.graphics.path">images/</xsl:param> - - -Description - -Sets the path to the directory containing the admonition graphics -(caution.png, important.png etc). This location is normally relative -to the output html directory. See base.dir - - - - - - -admon.textlabel -boolean - - -admon.textlabel -Use text label in admonitions? - - - - -<xsl:param name="admon.textlabel" select="1"></xsl:param> - - - -Description - -If true (non-zero), admonitions are presented with a generated -text label such as Note or Warning in the appropriate language. -If zero, such labels are turned off, but any title child -of the admonition element are still output. -The default value is 1. - - - - - - - - - admonition.title.properties - attribute set - - -admonition.title.properties -To set the style for admonitions titles. - - - - -<xsl:attribute-set name="admonition.title.properties"> - <xsl:attribute name="font-size">14pt</xsl:attribute> - <xsl:attribute name="font-weight">bold</xsl:attribute> - <xsl:attribute name="hyphenate">false</xsl:attribute> - <xsl:attribute name="keep-with-next.within-column">always</xsl:attribute> -</xsl:attribute-set> - - -Description -How do you want admonitions titles styled? -Set the font-size, weight etc to the style required. - - - - - - - admonition.properties - attribute set - - -admonition.properties -To set the style for admonitions. - - - -<xsl:attribute-set name="admonition.properties"></xsl:attribute-set> - - -Description -How do you want admonitions styled? -Set the font-size, weight, etc. to the style required - - - - - - -graphical.admonition.properties -attribute set - - -graphical.admonition.properties -To add properties to the outer block of a graphical admonition. - - - -<xsl:attribute-set name="graphical.admonition.properties"> - <xsl:attribute name="space-before.optimum">1em</xsl:attribute> - <xsl:attribute name="space-before.minimum">0.8em</xsl:attribute> - <xsl:attribute name="space-before.maximum">1.2em</xsl:attribute> - <xsl:attribute name="space-after.optimum">1em</xsl:attribute> - <xsl:attribute name="space-after.minimum">0.8em</xsl:attribute> - <xsl:attribute name="space-after.maximum">1.2em</xsl:attribute> -</xsl:attribute-set> - - -Description -These properties are added to the outer block containing the -entire graphical admonition, including its title. -It is used when the parameter -admon.graphics is set to nonzero. -Use this attribute-set to set the space above and below, -and any indent for the whole admonition. - -In addition to these properties, a graphical admonition -also applies the admonition.title.properties -attribute-set to the title, and applies the -admonition.properties attribute-set -to the rest of the content. - - - - - - -nongraphical.admonition.properties -attribute set - - -nongraphical.admonition.properties -To add properties to the outer block of a nongraphical admonition. - - - -<xsl:attribute-set name="nongraphical.admonition.properties"> - <xsl:attribute name="space-before.minimum">0.8em</xsl:attribute> - <xsl:attribute name="space-before.optimum">1em</xsl:attribute> - <xsl:attribute name="space-before.maximum">1.2em</xsl:attribute> - <xsl:attribute name="margin-{$direction.align.start}">0.25in</xsl:attribute> - <xsl:attribute name="margin-{$direction.align.end}">0.25in</xsl:attribute> -</xsl:attribute-set> - - -Description -These properties are added to the outer block containing the -entire nongraphical admonition, including its title. -It is used when the parameter -admon.graphics is set to zero. -Use this attribute-set to set the space above and below, -and any indent for the whole admonition. - -In addition to these properties, a nongraphical admonition -also applies the admonition.title.properties -attribute-set to the title, and the -admonition.properties attribute-set -to the rest of the content. - - - - - -Callouts - - -callout.defaultcolumn -integer - - -callout.defaultcolumn -Indicates what column callouts appear in by default - - - - -<xsl:param name="callout.defaultcolumn">60</xsl:param> - - - -Description - -If a callout does not identify a column (for example, if it uses -the linerange unit), -it will appear in the default column. - - - - - - - -callout.graphics -boolean - - -callout.graphics -Use graphics for callouts? - - - - -<xsl:param name="callout.graphics" select="1"></xsl:param> - - - -Description - -If non-zero, callouts are presented with graphics (e.g., reverse-video -circled numbers instead of "(1)", "(2)", etc.). -Default graphics are provided in the distribution. - - - - - - - -callout.graphics.extension -string - - -callout.graphics.extension -Filename extension for callout graphics - - - - - -<xsl:param name="callout.graphics.extension">.svg</xsl:param> - - - -Description -Sets the filename extension to use on callout graphics. - - -The Docbook XSL distribution provides callout graphics in the following formats: -SVG (extension: .svg) -PNG (extension: .png) -GIF (extension: .gif) - - - - - - -callout.graphics.number.limit -integer - - -callout.graphics.number.limit -Number of the largest callout graphic - - - - - -<xsl:param name="callout.graphics.number.limit">30</xsl:param> - - - -Description - -If callout.graphics is non-zero, graphics -are used to represent callout numbers instead of plain text. The value -of callout.graphics.number.limit is the largest -number for which a graphic exists. If the callout number exceeds this -limit, the default presentation "(plain text instead of a graphic)" -will be used. - - - - - - - -callout.graphics.path -string - - -callout.graphics.path -Path to callout graphics - - - - -<xsl:param name="callout.graphics.path">images/callouts/</xsl:param> - - - -Description - -Sets the path to the directory holding the callout graphics. his -location is normally relative to the output html directory. see -base.dir. Always terminate the directory with / since the graphic file -is appended to this string, hence needs the separator. - - - - - - - -callout.icon.size -length - - -callout.icon.size -Specifies the size of callout marker icons - - - - -<xsl:param name="callout.icon.size">7pt</xsl:param> - - - -Description - -Specifies the size of the callout marker icons. -The default size is 7 points. - - - - - - -callout.unicode -boolean - - -callout.unicode -Use Unicode characters rather than images for callouts. - - - -<xsl:param name="callout.unicode" select="0"></xsl:param> - - -Description - -The stylesheets can use either an image of the numbers one to ten, or the single Unicode character which represents the numeral, in white on a black background. Use this to select the Unicode character option. - - - - - - - -callout.unicode.font -string - - -callout.unicode.font -Specify a font for Unicode glyphs - - - - -<xsl:param name="callout.unicode.font">ZapfDingbats</xsl:param> - - - -Description - -The name of the font to specify around Unicode callout glyphs. -If set to the empty string, no font change will occur. - - - - - - - -callout.unicode.number.limit -integer - - -callout.unicode.number.limit -Number of the largest unicode callout character - - - - -<xsl:param name="callout.unicode.number.limit">10</xsl:param> - - - -Description - -If callout.unicode -is non-zero, unicode characters are used to represent -callout numbers. The value of -callout.unicode.number.limit -is -the largest number for which a unicode character exists. If the callout number -exceeds this limit, the default presentation "(nnn)" will always -be used. - - - - - - - -callout.unicode.start.character -integer - - -callout.unicode.start.character -First Unicode character to use, decimal value. - - - - -<xsl:param name="callout.unicode.start.character">10102</xsl:param> - - - -Description - -If callout.graphics is zero and callout.unicode -is non-zero, unicode characters are used to represent -callout numbers. The value of -callout.unicode.start.character -is the decimal unicode value used for callout number one. Currently, -only 10102 is supported in the stylesheets for this parameter. - - - - - - - -callouts.extension -boolean - - -callouts.extension -Enable the callout extension - - - - -<xsl:param name="callouts.extension" select="1"></xsl:param> - - - -Description - -The callouts extension processes areaset -elements in ProgramListingCO and other text-based -callout elements. - - - - - - -ToC/LoT/Index Generation - - -autotoc.label.separator -string - - -autotoc.label.separator -Separator between labels and titles in the ToC - - - - -<xsl:param name="autotoc.label.separator">. </xsl:param> - - - -Description - -String used to separate labels and titles in a table of contents. - - - - - - -process.empty.source.toc -boolean - - -process.empty.source.toc -Generate automated TOC if toc element occurs in a source document? - - - -<xsl:param name="process.empty.source.toc" select="0"></xsl:param> - - -Description - -Specifies that if an empty toc element is found in a -source document, an automated TOC is generated at this point in the -document. - - Depending on what the value of the - generate.toc parameter is, setting this - parameter to 1 could result in generation of - duplicate automated TOCs. So the - process.empty.source.toc is primarily useful - as an "override": by placing an empty toc in your - document and setting this parameter to 1, you can - force a TOC to be generated even if generate.toc - says not to. - - - - - - - - -process.source.toc -boolean - - -process.source.toc -Process a non-empty toc element if it occurs in a source document? - - - -<xsl:param name="process.source.toc" select="0"></xsl:param> - - -Description - -Specifies that the contents of a non-empty "hard-coded" -toc element in a source document are processed to -generate a TOC in output. - - This parameter has no effect on automated generation of - TOCs. An automated TOC may still be generated along with the - "hard-coded" TOC. To suppress automated TOC generation, adjust the - value of the generate.toc paramameter. - - The process.source.toc parameter also has - no effect if the toc element is empty; handling - for empty toc is controlled by the - process.empty.source.toc parameter. - - - - - - - - -generate.toc -table - - -generate.toc -Control generation of ToCs and LoTs - - - - - -<xsl:param name="generate.toc"> -/appendix toc,title -article/appendix nop -/article toc,title -book toc,title,figure,table,example,equation -/chapter toc,title -part toc,title -/preface toc,title -reference toc,title -/sect1 toc -/sect2 toc -/sect3 toc -/sect4 toc -/sect5 toc -/section toc -set toc,title -</xsl:param> - - - -Description - -This parameter has a structured value. It is a table of space-delimited -path/value pairs. Each path identifies some element in the source document -using a restricted subset of XPath (only the implicit child axis, no wildcards, -no predicates). Paths can be either relative or absolute. - -When processing a particular element, the stylesheets consult this table to -determine if a ToC (or LoT(s)) should be generated. - -For example, consider the entry: - -book toc,figure - -This indicates that whenever a book is formatted, a -Table Of Contents and a List of Figures should be generated. Similarly, - -/chapter toc - -indicates that whenever a document that has a root -of chapter is formatted, a Table of -Contents should be generated. The entry chapter would match -all chapters, but /chapter matches only chapter -document elements. - -Generally, the longest match wins. So, for example, if you want to distinguish -articles in books from articles in parts, you could use these two entries: - -book/article toc,figure -part/article toc - -Note that an article in a part can never match a book/article, -so if you want nothing to be generated for articles in parts, you can simply leave -that rule out. - -If you want to leave the rule in, to make it explicit that you're turning -something off, use the value nop. For example, the following -entry disables ToCs and LoTs for articles: - -article nop - -Do not simply leave the word article in the file -without a matching value. That'd be just begging the silly little -path/value parser to get confused. - -Section ToCs are further controlled by the -generate.section.toc.level parameter. -For a given section level to have a ToC, it must have both an entry in -generate.toc and be within the range enabled by -generate.section.toc.level. - - - - - -generate.index -boolean - - -generate.index -Do you want an index? - - - -<xsl:param name="generate.index" select="1"></xsl:param> - - -Description - -Specify if an index should be generated. - - - - - - -make.index.markup -boolean - - -make.index.markup -Generate XML index markup in the index? - - - - -<xsl:param name="make.index.markup" select="0"></xsl:param> - - - -Description - -This parameter enables a very neat trick for getting properly -merged, collated back-of-the-book indexes. G. Ken Holman suggested -this trick at Extreme Markup Languages 2002 and I'm indebted to him -for it. - -Jeni Tennison's excellent code in -autoidx.xsl does a great job of merging and -sorting indexterms in the document and building a -back-of-the-book index. However, there's one thing that it cannot -reasonably be expected to do: merge page numbers into ranges. (I would -not have thought that it could collate and suppress duplicate page -numbers, but in fact it appears to manage that task somehow.) - -Ken's trick is to produce a document in which the index at the -back of the book is displayed in XML. Because the index -is generated by the FO processor, all of the page numbers have been resolved. -It's a bit hard to explain, but what it boils down to is that instead of having -an index at the back of the book that looks like this: - -
-A -ap1, 1, 2, 3 - -
- -you get one that looks like this: - -
-<indexdiv>A</indexdiv> -<indexentry> -<primaryie>ap1</primaryie>, -<phrase role="pageno">1</phrase>, -<phrase role="pageno">2</phrase>, -<phrase role="pageno">3</phrase> -</indexentry> -
- -After building a PDF file with this sort of odd-looking index, you can -extract the text from the PDF file and the result is a proper index expressed in -XML. - -Now you have data that's amenable to processing and a simple Perl script -(such as fo/pdf2index) can -merge page ranges and generate a proper index. - -Finally, reformat your original document using this literal index instead of -an automatically generated one and bingo! - -
-
- - - -index.method -list -basic -kosek -kimber - - -index.method -Select method used to group index entries in an index - - - - -<xsl:param name="index.method">basic</xsl:param> - - - -Description - -This parameter lets you select which method to use for sorting and grouping - index entries in an index. -Indexes in Latin-based languages that have accented characters typically -sort together accented words and unaccented words. -Thus Á (U+00C1 LATIN CAPITAL LETTER A WITH ACUTE) would sort together -with A (U+0041 LATIN CAPITAL LETTER A), so both would appear in the A -section of the index. -Languages using other alphabets (such as Russian, which is written in the Cyrillic alphabet) -and languages using ideographic chararacters (such as Japanese) -require grouping specific to the languages and alphabets. - - -The default indexing method is limited. -It can group accented characters in Latin-based languages only. -It cannot handle non-Latin alphabets or ideographic languages. -The other indexing methods require extensions of one type or -another, and do not work with -all XSLT processors, which is why they are not used by default. - -The three choices for indexing method are: - - -basic - - -(default) Sort and groups words based only on the Latin alphabet. -Words with accented Latin letters will group and sort with -their respective primary letter, but -words in non-Latin alphabets will be -put in the Symbols section of the index. - - - - -kosek - - -This method sorts and groups words based on letter groups configured in -the DocBook locale file for the given language. -See, for example, the French locale file common/fr.xml. -This method requires that the XSLT processor -supports the EXSLT extensions (most do). -It also requires support for using -user-defined functions in xsl:key (xsltproc does not). - -This method is suitable for any language for which you can -list all the individual characters that should appear -in each letter group in an index. -It is probably not practical to use it for ideographic languages -such as Chinese that have hundreds or thousands of characters. - - -To use the kosek method, you must: - - - -Use a processor that supports its extensions, such as -Saxon 6 or Xalan (xsltproc and Saxon 8 do not). - - - -Set the index.method parameter's value to kosek. - - - -Import the appropriate index extensions stylesheet module -fo/autoidx-kosek.xsl or -html/autoidx-kosek.xsl into your -customization. - - - - - - - -kimber - - -This method uses extensions to the Saxon processor to implement -sophisticated indexing processes. It uses its own -configuration file, which can include information for any number of -languages. Each language's configuration can group -words using one of two processes. In the -enumerated process similar to that used in the kosek method, -you indicate the groupings character-by-character. -In the between-key process, you specify the -break-points in the sort order that should start a new group. -The latter configuration is useful for ideographic languages -such as Chinese, Japanese, and Korean. -You can also define your own collation algorithms and how you -want mixed Latin-alphabet words sorted. - - -For a whitepaper describing the extensions, see: -http://www.innodata-isogen.com/knowledge_center/white_papers/back_of_book_for_xsl_fo.pdf. - - - -To download the extension library, see -http://www.innodata-isogen.com/knowledge_center/tools_downloads/i18nsupport. - - - - -To use the kimber method, you must: - - - -Use Saxon (version 6 or 8) as your XSLT processor. - - - -Install and configure the Innodata Isogen library, using -the documentation that comes with it. - - - -Set the index.method parameter's value to kimber. - - - -Import the appropriate index extensions stylesheet module -fo/autoidx-kimber.xsl or -html/autoidx-kimber.xsl into your -customization. - - - - - - - - - - - - - -index.on.type -boolean - - -index.on.type -Select indexterms based on type -attribute value - - - - -<xsl:param name="index.on.type" select="0"></xsl:param> - - - -Description - - -If non-zero, -then an index element that has a -type attribute -value will contain only those indexterm -elements with a matching type attribute value. -If an index has no type -attribute or it is blank, then the index will contain -all indexterms in the current scope. - - - -If index.on.type is zero, then the -type attribute has no effect -on selecting indexterms for an index. - - -For those using DocBook version 4.2 or earlier, -the type attribute is not available -for index terms. However, you can achieve the same -effect by using the role attribute -in the same manner on indexterm -and index, and setting the stylesheet parameter -index.on.role to a nonzero value. - - - - - - - -index.on.role -boolean - - -index.on.role -Select indexterms based on role value - - - - -<xsl:param name="index.on.role" select="0"></xsl:param> - - - -Description - - -If non-zero, -then an index element that has a -role attribute -value will contain only those indexterm -elements with a matching role value. -If an index has no role -attribute or it is blank, then the index will contain -all indexterms in the current scope. - - -If index.on.role is zero, then the -role attribute has no effect -on selecting indexterms for an index. - - -If you are using DocBook version 4.3 or later, you should -use the type attribute instead of role -on indexterm and index, -and set the index.on.type to a nonzero -value. - - - - - - - -index.preferred.page.properties -attribute set - - -index.preferred.page.properties -Properties used to emphasize page number references for -significant index terms - - - - -<xsl:attribute-set name="index.preferred.page.properties"> - <xsl:attribute name="font-weight">bold</xsl:attribute> -</xsl:attribute-set> - - - -Description - -Properties used to emphasize page number references for -significant index terms (significance=preferred). Currently works only with -XEP. - - - - - - -index.entry.properties -attribute set - - -index.entry.properties -Properties applied to the formatted entries -in an index - - - - -<xsl:attribute-set name="index.entry.properties"> - <xsl:attribute name="start-indent">0pt</xsl:attribute> -</xsl:attribute-set> - - - -Description - -This attribute set is applied to the block containing -the entries in a letter division in an index. It can be used to set the -font-size, font-family, and other inheritable properties that will be -applied to all index entries. - - - - - - -index.div.title.properties -attribute set - - -index.div.title.properties -Properties associated with the letter headings in an -index - - - - -<xsl:attribute-set name="index.div.title.properties"> - <xsl:attribute name="margin-{$direction.align.start}">0pt</xsl:attribute> - <xsl:attribute name="font-size">14.4pt</xsl:attribute> - <xsl:attribute name="font-family"><xsl:value-of select="$title.fontset"></xsl:value-of></xsl:attribute> - <xsl:attribute name="font-weight">bold</xsl:attribute> - <xsl:attribute name="keep-with-next.within-column">always</xsl:attribute> - <xsl:attribute name="space-before.optimum"><xsl:value-of select="concat($body.font.master,'pt')"></xsl:value-of></xsl:attribute> - <xsl:attribute name="space-before.minimum"><xsl:value-of select="concat($body.font.master,'pt * 0.8')"></xsl:value-of></xsl:attribute> - <xsl:attribute name="space-before.maximum"><xsl:value-of select="concat($body.font.master,'pt * 1.2')"></xsl:value-of></xsl:attribute> - <xsl:attribute name="start-indent">0pt</xsl:attribute> -</xsl:attribute-set> - - - -Description - -This attribute set is used on the letter headings that separate -the divisions in an index. - - - - - - -index.number.separator -string - - -index.number.separator -Override for punctuation separating page numbers in index - - - - -<xsl:param name="index.number.separator"></xsl:param> - - - -Description - -This parameter permits you to override the text to insert between -page references in a formatted index entry. Typically -that would be a comma and a space. - - -Because this text may be locale dependent, -this parameter's value is normally taken from a gentext -template named 'number-separator' in the -context 'index' in the stylesheet -locale file for the language -of the current document. -This parameter can be used to override the gentext string, -and would typically be used on the command line. -This parameter would apply to all languages. - - -So this text string can be customized in two ways. -You can reset the default gentext string using -the local.l10n.xml parameter, or you can -override the gentext with the content of this parameter. -The content can be a simple string, or it can be -something more complex such as a call-template. - - -In HTML index output, section title references are used instead of -page number references. This punctuation appears between -such section titles in an HTML index. - - - - - - - -index.range.separator -string - - -index.range.separator -Override for punctuation separating the two numbers -in a page range in index - - - - -<xsl:param name="index.range.separator"></xsl:param> - - - -Description - -This parameter permits you -to override the text to insert between -the two numbers of a page range in an index. -This parameter is only used by those XSL-FO processors -that support an extension for generating such page ranges -(such as XEP). - -Because this text may be locale dependent, -this parameter's value is normally taken from a gentext -template named 'range-separator' in the -context 'index' in the stylesheet -locale file for the language -of the current document. -This parameter can be used to override the gentext string, -and would typically be used on the command line. -This parameter would apply to all languages. - - -So this text string can be customized in two ways. -You can reset the default gentext string using -the local.l10n.xml parameter, or you can -override the gentext with the content of this parameter. -The content can be a simple string, or it can be -something more complex such as a call-template. - - -In HTML index output, section title references are used instead of -page number references. So there are no page ranges -and this parameter has no effect. - - - - - - - -index.term.separator -string - - -index.term.separator -Override for punctuation separating an index term -from its list of page references in an index - - - - -<xsl:param name="index.term.separator"></xsl:param> - - - -Description - -This parameter permits you to override -the text to insert between -the end of an index term and its list of page references. -Typically that might be a comma and a space. - - -Because this text may be locale dependent, -this parameter's value is normally taken from a gentext -template named 'term-separator' in the -context 'index' in the stylesheet -locale file for the language -of the current document. -This parameter can be used to override the gentext string, -and would typically be used on the command line. -This parameter would apply to all languages. - - -So this text string can be customized in two ways. -You can reset the default gentext string using -the local.l10n.xml parameter, or you can -fill in the content for this normally empty -override parameter. -The content can be a simple string, or it can be -something more complex such as a call-template. -For fo output, it could be an fo:leader -element to provide space of a specific length, or a dot leader. - - - - - - - -xep.index.item.properties -attribute set - - -xep.index.item.properties -Properties associated with XEP index-items - - - - -<xsl:attribute-set name="xep.index.item.properties" use-attribute-sets="index.page.number.properties"> - <xsl:attribute name="merge-subsequent-page-numbers">true</xsl:attribute> - <xsl:attribute name="link-back">true</xsl:attribute> -</xsl:attribute-set> - - - -Description - -Properties associated with XEP index-items, which generate -page numbers in an index processed by XEP. For more info see -the XEP documentation section "Indexes" in -http://www.renderx.com/reference.html#Indexes. - -This attribute-set also adds by default any properties from the -index.page.number.properties -attribute-set. - - - - - -toc.section.depth -integer - - -toc.section.depth -How deep should recursive sections appear -in the TOC? - - - -<xsl:param name="toc.section.depth">2</xsl:param> - - -Description - -Specifies the depth to which recursive sections should appear in the -TOC. - - - - - - - -toc.max.depth -integer - - -toc.max.depth -How many levels should be created for each TOC? - - - -<xsl:param name="toc.max.depth">8</xsl:param> - - -Description - -Specifies the maximal depth of TOC on all levels. - - - - - - -toc.indent.width -float - - -toc.indent.width -Amount of indentation for TOC entries - - - - -<xsl:param name="toc.indent.width">24</xsl:param> -<!-- inconsistant point specification? --> - - - -Description - -Specifies, in points, the distance by which each level of the -TOC is indented from its parent. - -This value is expressed in points, without -a unit (in other words, it is a bare number). Using a bare number allows the stylesheet -to perform calculations that would otherwise have to be performed by the FO processor -because not all processors support expressions. - - - - - - -toc.line.properties -attribute set - - -toc.line.properties -Properties for lines in ToC and LoTs - - - - -<xsl:attribute-set name="toc.line.properties"> - <xsl:attribute name="text-align-last">justify</xsl:attribute> - <xsl:attribute name="text-align">start</xsl:attribute> - <xsl:attribute name="end-indent"><xsl:value-of select="concat($toc.indent.width, 'pt')"></xsl:value-of></xsl:attribute> - <xsl:attribute name="last-line-end-indent"><xsl:value-of select="concat('-', $toc.indent.width, 'pt')"></xsl:value-of></xsl:attribute> -</xsl:attribute-set> - - - -Description - -Properties which are applied to every line in ToC (or LoT). You can -modify them in order to change appearance of all, or some lines. For -example in order to make lines for chapters in bold specify the -following in your customization layer. - -<xsl:attribute-set name="toc.line.properties"> - <xsl:attribute name="font-weight"> - <xsl:when test="self::chapter | self::preface | self::appendix">bold</xsl:when> - <xsl:otherwise>normal</xsl:otherwise> - </xsl:attribute> -</xsl:attribute-set> - - - - - - -toc.margin.properties -attribute set - - -toc.margin.properties -Margin properties used on Tables of Contents - - - - -<xsl:attribute-set name="toc.margin.properties"> - <xsl:attribute name="space-before.minimum">0.5em</xsl:attribute> - <xsl:attribute name="space-before.optimum">1em</xsl:attribute> - <xsl:attribute name="space-before.maximum">2em</xsl:attribute> - <xsl:attribute name="space-after.minimum">0.5em</xsl:attribute> - <xsl:attribute name="space-after.optimum">1em</xsl:attribute> - <xsl:attribute name="space-after.maximum">2em</xsl:attribute> -</xsl:attribute-set> - - - -Description -This attribute set is used on Tables of Contents. These attributes are set -on the wrapper that surrounds the ToC block, not on each individual lines. - - - - - -bridgehead.in.toc -boolean - - -bridgehead.in.toc -Should bridgehead elements appear in the TOC? - - - -<xsl:param name="bridgehead.in.toc" select="0"></xsl:param> - - -Description - -If non-zero, bridgeheads appear in the TOC. Note that -this option is not fully supported and may be removed in a future -version of the stylesheets. - - - - - - - -simplesect.in.toc -boolean - - -simplesect.in.toc -Should simplesect elements appear in the TOC? - - - -<xsl:param name="simplesect.in.toc" select="0"></xsl:param> - - -Description - -If non-zero, simplesects will be included in the TOC. - - - - - - - -generate.section.toc.level -integer - - -generate.section.toc.level -Control depth of TOC generation in sections - - - - -<xsl:param name="generate.section.toc.level" select="0"></xsl:param> - - - -Description - -The generate.section.toc.level parameter -controls the depth of section in which TOCs will be generated. Note -that this is related to, but not the same as -toc.section.depth, which controls the depth to -which TOC entries will be generated in a given TOC. -If, for example, generate.section.toc.level -is 3, TOCs will be generated in first, second, and third -level sections, but not in fourth level sections. - - - - - - - - -
-Processor Extensions - - -arbortext.extensions -boolean - - -arbortext.extensions -Enable Arbortext extensions? - - - -<xsl:param name="arbortext.extensions" select="0"></xsl:param> - - -Description - -If non-zero, -Arbortext -extensions will be used. - -This parameter can also affect which graphics file formats -are supported - - - - - - -axf.extensions -boolean - - -axf.extensions -Enable XSL Formatter extensions? - - - - -<xsl:param name="axf.extensions" select="0"></xsl:param> - - - -Description - -If non-zero, -XSL Formatter -extensions will be used. XSL Formatter extensions consists of PDF bookmarks, -document information and better index processing. - -This parameter can also affect which graphics file formats -are supported - - - - - - -fop.extensions -boolean - - -fop.extensions -Enable extensions for FOP version 0.20.5 and earlier - - - -<xsl:param name="fop.extensions" select="0"></xsl:param> - - -Description - -If non-zero, extensions intended for -FOP -version 0.20.5 and earlier will be used. -At present, this consists of PDF bookmarks. - - -This parameter can also affect which graphics file formats -are supported. - -If you are using a version of FOP beyond -version 0.20.5, then use the fop1.extensions parameter -instead. - - - - - - -fop1.extensions -boolean - - -fop1.extensions -Enable extensions for FOP version 0.90 and later - - - -<xsl:param name="fop1.extensions" select="0"></xsl:param> - - -Description - -If non-zero, extensions for -FOP -version 0.90 and later will be used. - - -This parameter can also affect which graphics file formats -are supported. - -The original fop.extensions parameter -should still be used for FOP version 0.20.5 and earlier. - - - - - - -passivetex.extensions -boolean - - -passivetex.extensions -Enable PassiveTeX extensions? - - - -<xsl:param name="passivetex.extensions" select="0"></xsl:param> - - -Description - -If non-zero, -PassiveTeX -extensions will be used. At present, this consists of PDF bookmarks -and sorted index terms. - - -This parameter can also affect which graphics file formats -are supported - - - PassiveTeX is incomplete and development has ceased. In most cases, -another XSL-FO engine is probably a better choice. - - - - - - - -tex.math.in.alt -list -plain -latex - - -tex.math.in.alt -TeX notation used for equations - - - - -<xsl:param name="tex.math.in.alt"></xsl:param> - - - -Description - -If you want type math directly in TeX notation in equations, -this parameter specifies notation used. Currently are supported two -values -- plain and latex. Empty -value means that you are not using TeX math at all. - -Preferred way for including TeX alternative of math is inside of -textobject element. Eg.: - -<inlineequation> -<inlinemediaobject> -<imageobject> -<imagedata fileref="eq1.gif"/> -</imageobject> -<textobject><phrase>E=mc squared</phrase></textobject> -<textobject role="tex"><phrase>E=mc^2</phrase></textobject> -</inlinemediaobject> -</inlineequation> - -If you are using graphic element, you can -store TeX inside alt element: - -<inlineequation> -<alt role="tex">a^2+b^2=c^2</alt> -<graphic fileref="a2b2c2.gif"/> -</inlineequation> - -If you want use this feature, you should process your FO with -PassiveTeX, which only supports TeX math notation. When calling -stylsheet, don't forget to specify also -passivetex.extensions=1. - -If you want equations in HTML, just process generated file -tex-math-equations.tex by TeX or LaTeX. Then run -dvi2bitmap program on result DVI file. You will get images for -equations in your document. - - - This feature is useful for print/PDF output only if you - use the obsolete and now unsupported PassiveTeX XSL-FO - engine. - - - - -Related Parameters - tex.math.delims, - passivetex.extensions, - tex.math.file - -More information - For how-to documentation on embedding TeX equations and - generating output from them, see - DBTeXMath. - - - - - -tex.math.delims -boolean - - -tex.math.delims -Should equations output for processing by TeX be -surrounded by math mode delimiters? - - - - -<xsl:param name="tex.math.delims" select="1"></xsl:param> - - - -Description - -For compatibility with DSSSL based DBTeXMath from Allin Cottrell -you should set this parameter to 0. - - -Related Parameters - tex.math.in.alt, - passivetex.extensions - - -See Also - You can also use the dbtex delims processing - instruction to control whether delimiters are output. - -More information - For how-to documentation on embedding TeX equations and - generating output from them, see - DBTeXMath. - - - - - -xep.extensions -boolean - - -xep.extensions -Enable XEP extensions? - - - -<xsl:param name="xep.extensions" select="0"></xsl:param> - - -Description - -If non-zero, -XEP -extensions will be used. XEP extensions consists of PDF bookmarks, -document information and better index processing. - - -This parameter can also affect which graphics file formats -are supported - - - - -Stylesheet Extensions - - -linenumbering.everyNth -integer - - -linenumbering.everyNth -Indicate which lines should be numbered - - - - -<xsl:param name="linenumbering.everyNth">5</xsl:param> - - - -Description - -If line numbering is enabled, everyNth line will be -numbered. Note that numbering is one based, not zero based. - - - - - - - -linenumbering.extension -boolean - - -linenumbering.extension -Enable the line numbering extension - - - - -<xsl:param name="linenumbering.extension" select="1"></xsl:param> - - - -Description - -If non-zero, verbatim environments (address, literallayout, -programlisting, screen, synopsis) that specify line numbering will -have line numbers. - - - - - - - -linenumbering.separator -string - - -linenumbering.separator -Specify a separator between line numbers and lines - - - - -<xsl:param name="linenumbering.separator"><xsl:text> </xsl:text></xsl:param> - - - -Description - -The separator is inserted between line numbers and lines in the -verbatim environment. The default value is a single white space. - Note the interaction with linenumbering.width - - - - - - - -linenumbering.width -integer - - -linenumbering.width -Indicates the width of line numbers - - - - -<xsl:param name="linenumbering.width">3</xsl:param> - - - -Description - -If line numbering is enabled, line numbers will appear right -justified in a field "width" characters wide. - - - - - - - -tablecolumns.extension -boolean - - -tablecolumns.extension -Enable the table columns extension function - - - - -<xsl:param name="tablecolumns.extension" select="1"></xsl:param> - - - -Description - -The table columns extension function adjusts the widths of table -columns in the HTML result to more accurately reflect the specifications -in the CALS table. - - - - - - - - textinsert.extension - boolean - - - textinsert.extension - Enables the textinsert extension element - - - - <xsl:param name="textinsert.extension" select="1"></xsl:param> - - - Description - The textinsert extension element inserts the contents of - a file into the result tree (as text). - - To use the textinsert extension element, you must use - either Saxon or Xalan as your XSLT processor (it doesn’t - work with xsltproc), along with either the DocBook Saxon - extensions or DocBook Xalan extensions (for more - information about those extensions, see DocBook Saxon Extensions and DocBook Xalan Extensions), and you must set both - the use.extensions and - textinsert.extension parameters to - 1. - As an alternative to using the textinsert element, - consider using an Xinclude element with the - parse="text" attribute and value - specified, as detailed in Using XInclude for text inclusions. - - - See Also - You can also use the dbhtml-include href processing - instruction to insert external files — both files containing - plain text and files with markup content (including HTML - content). - - More information - For how-to documentation on inserting contents of - external code files and other text files into output, see - External code files. - For guidelines on inserting contents of - HTML files into output, see Inserting external HTML code. - - - - - -textdata.default.encoding -string - - -textdata.default.encoding -Default encoding of external text files which are included -using textdata element - - - - -<xsl:param name="textdata.default.encoding"></xsl:param> - - - -Description - -Specifies the encoding of any external text files included using -textdata element. This value is used only when you do -not specify encoding by the appropriate attribute -directly on textdata. An empty string is interpreted as the system -default encoding. - - - - - - -use.extensions -boolean - - -use.extensions -Enable extensions - - - - -<xsl:param name="use.extensions" select="0"></xsl:param> - - - -Description - -If non-zero, extensions may be used. Each extension is -further controlled by its own parameter. But if -use.extensions is zero, no extensions will -be used. - - - - - - -Automatic labelling - - -appendix.autolabel -list -0none -11,2,3... -AA,B,C... -aa,b,c... -ii,ii,iii... -II,II,III... - - -appendix.autolabel -Specifies the labeling format for Appendix titles - - - - -<xsl:param name="appendix.autolabel">A</xsl:param> - - - -Description - -If non-zero, then appendices will be numbered using the -parameter value as the number format if the value matches one of the -following: - - - - - 1 or arabic - - Arabic numeration (1, 2, 3 ...). - - - - A or upperalpha - - Uppercase letter numeration (A, B, C ...). - - - - a or loweralpha - - Lowercase letter numeration (a, b, c ...). - - - - I or upperroman - - Uppercase roman numeration (I, II, III ...). - - - - i or lowerroman - - Lowercase roman letter numeration (i, ii, iii ...). - - - - -Any nonzero value other than the above will generate -the default number format (upperalpha). - - - - - - - -chapter.autolabel -list -0none -11,2,3... -AA,B,C... -aa,b,c... -ii,ii,iii... -II,II,III... - - -chapter.autolabel -Specifies the labeling format for Chapter titles - - - - -<xsl:param name="chapter.autolabel" select="1"></xsl:param> - - -Description - -If non-zero, then chapters will be numbered using the parameter -value as the number format if the value matches one of the following: - - - - - 1 or arabic - - Arabic numeration (1, 2, 3 ...). - - - - A or upperalpha - - Uppercase letter numeration (A, B, C ...). - - - - a or loweralpha - - Lowercase letter numeration (a, b, c ...). - - - - I or upperroman - - Uppercase roman numeration (I, II, III ...). - - - - i or lowerroman - - Lowercase roman letter numeration (i, ii, iii ...). - - - - -Any nonzero value other than the above will generate -the default number format (arabic). - - - - - - - -part.autolabel -list -0none -11,2,3... -AA,B,C... -aa,b,c... -ii,ii,iii... -II,II,III... - - -part.autolabel -Specifies the labeling format for Part titles - - - - -<xsl:param name="part.autolabel">I</xsl:param> - - - -Description - -If non-zero, then parts will be numbered using the parameter -value as the number format if the value matches one of the following: - - - - - 1 or arabic - - Arabic numeration (1, 2, 3 ...). - - - - A or upperalpha - - Uppercase letter numeration (A, B, C ...). - - - - a or loweralpha - - Lowercase letter numeration (a, b, c ...). - - - - I or upperroman - - Uppercase roman numeration (I, II, III ...). - - - - i or lowerroman - - Lowercase roman letter numeration (i, ii, iii ...). - - - - -Any nonzero value other than the above will generate -the default number format (upperroman). - - - - - - - - -reference.autolabel -list -0none -11,2,3... -AA,B,C... -aa,b,c... -ii,ii,iii... -II,II,III... - - -reference.autolabel -Specifies the labeling format for Reference titles - - - - <xsl:param name="reference.autolabel">I</xsl:param> - - -Description -If non-zero, references will be numbered using the parameter - value as the number format if the value matches one of the - following: - - - - 1 or arabic - - Arabic numeration (1, 2, 3 ...). - - - - A or upperalpha - - Uppercase letter numeration (A, B, C ...). - - - - a or loweralpha - - Lowercase letter numeration (a, b, c ...). - - - - I or upperroman - - Uppercase roman numeration (I, II, III ...). - - - - i or lowerroman - - Lowercase roman letter numeration (i, ii, iii ...). - - - -Any non-zero value other than the above will generate -the default number format (upperroman). - - - - - - -preface.autolabel -list -0none -11,2,3... -AA,B,C... -aa,b,c... -ii,ii,iii... -II,II,III... - - -preface.autolabel -Specifices the labeling format for Preface titles - - - -<xsl:param name="preface.autolabel" select="0"></xsl:param> - - -Description - -If non-zero then prefaces will be numbered using the parameter -value as the number format if the value matches one of the following: - - - - - 1 or arabic - - Arabic numeration (1, 2, 3 ...). - - - - A or upperalpha - - Uppercase letter numeration (A, B, C ...). - - - - a or loweralpha - - Lowercase letter numeration (a, b, c ...). - - - - I or upperroman - - Uppercase roman numeration (I, II, III ...). - - - - i or lowerroman - - Lowercase roman letter numeration (i, ii, iii ...). - - - - -Any nonzero value other than the above will generate -the default number format (arabic). - - - - - - - - -section.autolabel -boolean - - -section.autolabel -Are sections enumerated? - - - -<xsl:param name="section.autolabel" select="0"></xsl:param> - - -Description - -If true (non-zero), unlabeled sections will be enumerated. - - - - - - - -section.autolabel.max.depth -integer - - -section.autolabel.max.depth -The deepest level of sections that are numbered. - - - - -<xsl:param name="section.autolabel.max.depth">8</xsl:param> - - - -Description - -When section numbering is turned on by the -section.autolabel parameter, then this -parameter controls the depth of section nesting that is -numbered. Sections nested to a level deeper than this value will not -be numbered. - - - - - - - -section.label.includes.component.label -boolean - - -section.label.includes.component.label -Do section labels include the component label? - - - -<xsl:param name="section.label.includes.component.label" select="0"></xsl:param> - - -Description - -If non-zero, section labels are prefixed with the label of the -component that contains them. - - - - - - - -label.from.part -boolean - - -label.from.part -Renumber components in each part? - - - - -<xsl:param name="label.from.part" select="0"></xsl:param> - - - -Description - -If label.from.part is non-zero, then - numbering of components — preface, - chapter, appendix, and - reference (when reference occurs at the - component level) — is re-started within each - part. -If label.from.part is zero (the - default), numbering of components is not - re-started within each part; instead, components are - numbered sequentially throughout each book, - regardless of whether or not they occur within part - instances. - - - - - - -component.label.includes.part.label -boolean - - -component.label.includes.part.label -Do component labels include the part label? - - - -<xsl:param name="component.label.includes.part.label" select="0"></xsl:param> - - -Description - -If non-zero, number labels for chapter, -appendix, and other component elements are prefixed with -the label of the part element that contains them. So you might see -Chapter II.3 instead of Chapter 3. Also, the labels for formal -elements such as table and figure will include -the part label. If there is no part element container, then no prefix -is generated. - - -This feature is most useful when the -label.from.part parameter is turned on. -In that case, there would be more than one chapter -1, and the extra part label prefix will identify -each chapter unambiguously. - - - - - - -XSLT Processing - - -rootid -string - - -rootid -Specify the root element to format - - - - -<xsl:param name="rootid"></xsl:param> - - -Description - -If rootid is not empty, it must be the -value of an ID that occurs in the document being formatted. The entire -document will be loaded and parsed, but formatting will begin at the -element identified, rather than at the root. For example, this allows -you to process only chapter 4 of a book. -Because the entire document is available to the processor, automatic -numbering, cross references, and other dependencies are correctly -resolved. - - - - - -Meta/*Info - - -make.single.year.ranges -boolean - - -make.single.year.ranges -Print single-year ranges (e.g., 1998-1999) - - - - -<xsl:param name="make.single.year.ranges" select="0"></xsl:param> - - -Description - -If non-zero, year ranges that span a single year will be printed -in range notation (1998-1999) instead of discrete notation -(1998, 1999). - - - - - - -make.year.ranges -boolean - - -make.year.ranges -Collate copyright years into ranges? - - - -<xsl:param name="make.year.ranges" select="0"></xsl:param> - - -Description - -If non-zero, multiple copyright year elements will be -collated into ranges. -This works only if each year number is put into a separate -year element. The copyright element permits multiple -year elements. If a year element contains a dash or -a comma, then that year element will not be merged into -any range. - - - - - - - -author.othername.in.middle -boolean - - -author.othername.in.middle -Is othername in author a -middle name? - - - - -<xsl:param name="author.othername.in.middle" select="1"></xsl:param> - - -Description - -If non-zero, the othername of an author -appears between the firstname and -surname. Otherwise, othername -is suppressed. - - - - - - -Reference Pages - - -funcsynopsis.decoration -boolean - - -funcsynopsis.decoration -Decorate elements of a funcsynopsis? - - - - -<xsl:param name="funcsynopsis.decoration" select="1"></xsl:param> - - - -Description - -If non-zero, elements of the funcsynopsis will be -decorated (e.g. rendered as bold or italic text). The decoration is controlled by -templates that can be redefined in a customization layer. - - - - - - - -funcsynopsis.style -list -ansi -kr - - -funcsynopsis.style -What style of funcsynopsis should be generated? - - - -<xsl:param name="funcsynopsis.style">kr</xsl:param> - - -Description - -If funcsynopsis.style is ansi, -ANSI-style function synopses are generated for a -funcsynopsis, otherwise K&R-style -function synopses are generated. - - - - - - - -function.parens -boolean - - -function.parens -Generate parens after a function? - - - - -<xsl:param name="function.parens" select="0"></xsl:param> - - - -Description - -If non-zero, the formatting of a function element -will include generated parentheses. - - - - - - - -refentry.generate.name -boolean - - -refentry.generate.name -Output NAME header before refnames? - - - - -<xsl:param name="refentry.generate.name" select="1"></xsl:param> - - - -Description - -If non-zero, a "NAME" section title is output before the list -of refnames. This parameter and -refentry.generate.title are mutually -exclusive. This means that if you change this parameter to zero, you -should set refentry.generate.title to non-zero unless -you want get quite strange output. - - - - - - - -refentry.generate.title -boolean - - -refentry.generate.title -Output title before refnames? - - - - -<xsl:param name="refentry.generate.title" select="0"></xsl:param> - - - -Description - -If non-zero, the reference page title or first name is -output before the list of refnames. This parameter and -refentry.generate.name are mutually exclusive. -This means that if you change this parameter to non-zero, you -should set refentry.generate.name to zero unless -you want get quite strange output. - - - - - - - -refentry.pagebreak -boolean - - -refentry.pagebreak -Start each refentry on a new page - - - -<xsl:param name="refentry.pagebreak" select="1"></xsl:param> - - -Description - -If non-zero (the default), each refentry -element will start on a new page. If zero, a page -break will not be generated between refentry elements. -The exception is when the refentry elements are children of -a part element, in which case the page breaks are always -retained. That is because a part element does not generate -a page-sequence for its children, so each refentry must -start its own page-sequence. - - - - - - - -refentry.title.properties -attribute set - - -refentry.title.properties -Title properties for a refentry title - - - - -<xsl:attribute-set name="refentry.title.properties"> - <xsl:attribute name="font-family"> - <xsl:value-of select="$title.font.family"></xsl:value-of> - </xsl:attribute> - <xsl:attribute name="font-size">18pt</xsl:attribute> - <xsl:attribute name="font-weight">bold</xsl:attribute> - <xsl:attribute name="space-after">1em</xsl:attribute> - <xsl:attribute name="hyphenate">false</xsl:attribute> - <xsl:attribute name="keep-with-next.within-column">always</xsl:attribute> - <xsl:attribute name="space-before.minimum">0.8em</xsl:attribute> - <xsl:attribute name="space-before.optimum">1.0em</xsl:attribute> - <xsl:attribute name="space-before.maximum">1.2em</xsl:attribute> - <xsl:attribute name="space-after.optimum">0.5em</xsl:attribute> - <xsl:attribute name="space-after.minimum">0.4em</xsl:attribute> - <xsl:attribute name="space-after.maximum">0.6em</xsl:attribute> - <xsl:attribute name="start-indent"><xsl:value-of select="$title.margin.left"></xsl:value-of></xsl:attribute> -</xsl:attribute-set> - - - -Description - -Formatting properties applied to the title generated for the -refnamediv part of output for -refentry when the value of the -refentry.generate.title parameter is -non-zero. The font size is supplied by the appropriate section.levelX.title.properties -attribute-set, computed from the location of the -refentry in the section hierarchy. - - - This parameter has no effect on the the title generated for - the refnamediv part of output for - refentry when the value of the - refentry.generate.name parameter is - non-zero. By default, that title is formatted with the same - properties as the titles for all other first-level children of - refentry. - - - - - - - -refentry.xref.manvolnum -boolean - - -refentry.xref.manvolnum -Output manvolnum as part of -refentry cross-reference? - - - - -<xsl:param name="refentry.xref.manvolnum" select="1"></xsl:param> - - - -Description - -if non-zero, the manvolnum is used when cross-referencing -refentrys, either with xref -or citerefentry. - - - - - - - -refclass.suppress -boolean - - -refclass.suppress -Suppress display of refclass contents? - - - - -<xsl:param name="refclass.suppress" select="0"></xsl:param> - - -Description - -If the value of refclass.suppress is -non-zero, then display of refclass contents is -suppressed in output. - - - - - -Tables - - -default.table.width -length - - -default.table.width -The default width of tables - - - -<xsl:param name="default.table.width"></xsl:param> - - -Description -If non-zero, this value will be used for the -width attribute on tables that do not specify an -alternate width (with the dbhtml table-width or -dbfo table-width processing instruction). - - - - - -nominal.table.width -length - - -nominal.table.width -The (absolute) nominal width of tables - - - - -<xsl:param name="nominal.table.width">6in</xsl:param> - - - -Description - -In order to convert CALS column widths into HTML column widths, it -is sometimes necessary to have an absolute table width to use for conversion -of mixed absolute and relative widths. This value must be an absolute -length (not a percentage). - - - - - - -default.table.frame -string - - -default.table.frame -The default framing of tables - - - - -<xsl:param name="default.table.frame">all</xsl:param> - - - -Description - -This value will be used when there is no frame attribute on the -table. - - - - - - -default.table.rules -string - - -default.table.rules -The default column and row rules for tables using HTML markup - - - - -<xsl:param name="default.table.rules">none</xsl:param> - - - -Description - -Tables using HTML markup elements can use an attribute -named rules on the table or -informaltable element -to specify whether column and row border rules should be -displayed. This parameter lets you specify a global default -style for all HTML tables that don't otherwise have -that attribute. -These are the supported values: - - -all - -Rules will appear between all rows and columns. - - - -rows - -Rules will appear between rows only. - - - -cols - -Rules will appear between columns only. - - - -groups - -Rules will appear between row groups (thead, tfoot, tbody). -No support for rules between column groups yet. - - - - -none - -No rules. This is the default value. - - - - - - -The border after the last row and the border after -the last column are not affected by -this setting. Those borders are controlled by -the frame attribute on the table element. - - - - - - - -table.cell.padding -attribute set - - -table.cell.padding -Specifies the padding of table cells - - - - -<xsl:attribute-set name="table.cell.padding"> - <xsl:attribute name="padding-start">2pt</xsl:attribute> - <xsl:attribute name="padding-end">2pt</xsl:attribute> - <xsl:attribute name="padding-top">2pt</xsl:attribute> - <xsl:attribute name="padding-bottom">2pt</xsl:attribute> -</xsl:attribute-set> - - - -Description - -Specifies the padding of table cells. - - - - - - -table.frame.border.thickness -length - - -table.frame.border.thickness -Specifies the thickness of the frame border - - - - -<xsl:param name="table.frame.border.thickness">0.5pt</xsl:param> - - - -Description - -Specifies the thickness of the border on the table's frame. - - - - - - -table.frame.border.style -list -none -solid -dotted -dashed -double -groove -ridge -inset -outset -solid - - -table.frame.border.style -Specifies the border style of table frames - - - - -<xsl:param name="table.frame.border.style">solid</xsl:param> - - - -Description - -Specifies the border style of table frames. - - - - - - -table.frame.border.color -color - - -table.frame.border.color -Specifies the border color of table frames - - - - - -<xsl:param name="table.frame.border.color">black</xsl:param> - - - -Description - -Specifies the border color of table frames. - - - - - - -table.cell.border.thickness -length - - -table.cell.border.thickness -Specifies the thickness of table cell borders - - - - -<xsl:param name="table.cell.border.thickness">0.5pt</xsl:param> - - - -Description - -If non-zero, specifies the thickness of borders on table -cells. The units are points. See -CSS - - - To control properties of cell borders in HTML output, you must also turn on the - table.borders.with.css parameter. - - - - - - - -table.cell.border.style -list -none -solid -dotted -dashed -double -groove -ridge -inset -outset -solid - - -table.cell.border.style -Specifies the border style of table cells - - - - -<xsl:param name="table.cell.border.style">solid</xsl:param> - - - -Description - -Specifies the border style of table cells. - - - To control properties of cell borders in HTML output, you must also turn on the - table.borders.with.css parameter. - - - - - - - -table.cell.border.color -color - - -table.cell.border.color -Specifies the border color of table cells - - - - - -<xsl:param name="table.cell.border.color">black</xsl:param> - - - -Description - -Set the color of table cell borders. If non-zero, the value is used -for the border coloration. See CSS. A -color is either a keyword or a numerical RGB specification. -Keywords are aqua, black, blue, fuchsia, gray, green, lime, maroon, -navy, olive, orange, purple, red, silver, teal, white, and -yellow. - - - To control properties of cell borders in HTML output, you must also turn on the - table.borders.with.css parameter. - - - - - - - -table.table.properties -attribute set - - -table.table.properties -Properties associated with a table - - - - -<xsl:attribute-set name="table.table.properties"> - <xsl:attribute name="border-before-width.conditionality">retain</xsl:attribute> - <xsl:attribute name="border-collapse">collapse</xsl:attribute> -</xsl:attribute-set> - - - -Description - -The styling for tables. This parameter should really -have been called table.properties, but that parameter -name was inadvertently established for the block-level properties -of the table as a whole. - - -See also table.properties. - - - - - -Linking - - -current.docid -string - - -current.docid -targetdoc identifier for the document being -processed - - -<xsl:param name="current.docid"></xsl:param> - - -Description - -When olinks between documents are resolved for HTML output, the stylesheet can compute the relative path between the current document and the target document. The stylesheet needs to know the targetdoc identifiers for both documents, as they appear in the target.database.document database file. This parameter passes to the stylesheet -the targetdoc identifier of the current document, since that -identifier does not appear in the document itself. -This parameter can also be used for print output. If an olink's targetdoc id differs from the current.docid, then the stylesheet can append the target document's title to the generated olink text. That identifies to the reader that the link is to a different document, not the current document. See also olink.doctitle to enable that feature. - - - - - -collect.xref.targets -list -no -yes -only - - -collect.xref.targets -Controls whether cross reference data is -collected - - -<xsl:param name="collect.xref.targets">no</xsl:param> - - -Description - - -In order to resolve olinks efficiently, the stylesheets can -generate an external data file containing information about -all potential cross reference endpoints in a document. -This parameter determines whether the collection process is run when the document is processed by the stylesheet. The default value is no, which means the data file is not generated during processing. The other choices are yes, which means the data file is created and the document is processed for output, and only, which means the data file is created but the document is not processed for output. -See also targets.filename. - - - - - - -insert.olink.page.number -list -no -yes -maybe - - -insert.olink.page.number -Turns page numbers in olinks on and off - - - - -<xsl:param name="insert.olink.page.number">no</xsl:param> - - - -Description - -The value of this parameter determines if -cross references made between documents with -olink will -include page number citations. -In most cases this is only applicable to references in printed output. - -The parameter has three possible values. - - - -no -No page number references will be generated for olinks. - - - -yes -Page number references will be generated -for all olink references. -The style of page reference may be changed -if an xrefstyle -attribute is used. - - - -maybe -Page number references will not be generated -for an olink element unless -it has an -xrefstyle -attribute whose value specifies a page reference. - - - -Olinks that point to targets within the same document -are treated as xrefs, and controlled by -the insert.xref.page.number parameter. - - -Page number references for olinks to -external documents can only be inserted if the -information exists in the olink database. -This means each olink target element -(div or obj) -must have a page attribute -whose value is its page number in the target document. -The XSL stylesheets are not able to extract that information -during processing because pages have not yet been created in -XSLT transformation. Only the XSL-FO processor knows what -page each element is placed on. -Therefore some postprocessing must take place to populate -page numbers in the olink database. - - - - - - - - - -insert.olink.pdf.frag -boolean - - -insert.olink.pdf.frag -Add fragment identifiers for links into PDF files - - - - -<xsl:param name="insert.olink.pdf.frag" select="0"></xsl:param> - - - -Description - -The value of this parameter determines whether -the cross reference URIs to PDF documents made with -olink will -include fragment identifiers. - - -When forming a URI to link to a PDF document, -a fragment identifier (typically a '#' followed by an -id value) appended to the PDF filename can be used by -the PDF viewer to open -the PDF file to a location within the document instead of -the first page. -However, not all PDF files have id -values embedded in them, and not all PDF viewers can -handle fragment identifiers. - - -If insert.olink.pdf.frag is set -to a non-zero value, then any olink targeting a -PDF file will have the fragment identifier appended to the URI. -The URI is formed by concatenating the value of the -olink.base.uri parameter, the -value of the baseuri -attribute from the document -element in the olink database with the matching -targetdoc value, -and the value of the href -attribute for the targeted element in the olink database. -The href attribute -contains the fragment identifier. - - -If insert.olink.pdf.frag is set -to zero (the default value), then -the href attribute -from the olink database -is not appended to PDF olinks, so the fragment identifier is left off. -A PDF olink is any olink for which the -baseuri attribute -from the matching document -element in the olink database ends with '.pdf'. -Any other olinks will still have the fragment identifier added. - - - - - - -olink.base.uri -uri - - -olink.base.uri -Base URI used in olink hrefs - - -<xsl:param name="olink.base.uri"></xsl:param> - - -Description - -When cross reference data is collected for resolving olinks, it -may be necessary to prepend a base URI to each target's href. This -parameter lets you set that base URI when cross reference data is -collected. This feature is needed when you want to link to a document -that is processed without chunking. The output filename for such a -document is not known to the XSL stylesheet; the only target -information consists of fragment identifiers such as -#idref. To enable the resolution of olinks between -documents, you should pass the name of the HTML output file as the -value of this parameter. Then the hrefs recorded in the cross -reference data collection look like -outfile.html#idref, which can be reached as links -from other documents. - - - - - -olink.debug -boolean - - -olink.debug -Turn on debugging messages for olinks - - - - -<xsl:param name="olink.debug" select="0"></xsl:param> - - - -Description - -If non-zero, then each olink will generate several -messages about how it is being resolved during processing. -This is useful when an olink does not resolve properly -and the standard error messages are not sufficient to -find the problem. - - -You may need to read through the olink XSL templates -to understand the context for some of the debug messages. - - - - - - - -olink.doctitle -list -no -yes -maybe - - -olink.doctitle -show the document title for external olinks? - - - -<xsl:param name="olink.doctitle">no</xsl:param> - - -Description - -When olinks between documents are resolved, the generated text -may not make it clear that the reference is to another document. -It is possible for the stylesheets to append the other document's -title to external olinks. For this to happen, two parameters must -be set. - - -This olink.doctitle parameter -should be set to either yes or maybe -to enable this feature. - - - -And you should also set the current.docid -parameter to the document id for the document currently -being processed for output. - - - - - -Then if an olink's targetdoc id differs from -the current.docid value, the stylesheet knows -that it is a reference to another document and can -append the target document's -title to the generated olink text. - -The text for the target document's title is copied from the -olink database from the ttl element -of the top-level div for that document. -If that ttl element is missing or empty, -no title is output. - - -The supported values for olink.doctitle are: - - - -yes - - -Always insert the title to the target document if it is not -the current document. - - - - -no - - -Never insert the title to the target document, even if requested -in an xrefstyle attribute. - - - - -maybe - - -Only insert the title to the target document, if requested -in an xrefstyle attribute. - - - - -An xrefstyle attribute -may override the global setting for individual olinks. -The following values are supported in an -xrefstyle -attribute using the select: syntax: - - - - -docname - - -Insert the target document name for this olink using the -docname gentext template, but only -if the value of olink.doctitle -is not no. - - - - -docnamelong - - -Insert the target document name for this olink using the -docnamelong gentext template, but only -if the value of olink.doctitle -is not no. - - - - -nodocname - - -Omit the target document name even if -the value of olink.doctitle -is yes. - - - - -Another way of inserting the target document name -for a single olink is to employ an -xrefstyle -attribute using the template: syntax. -The %o placeholder (the letter o, not zero) -in such a template -will be filled in with the target document's title when it is processed. -This will occur regardless of -the value of olink.doctitle. - -Note that prior to version 1.66 of the XSL stylesheets, -the allowed values for this parameter were 0 and 1. Those -values are still supported and mapped to 'no' and 'yes', respectively. - - - - - - -olink.lang.fallback.sequence -string - - -olink.lang.fallback.sequence -look up translated documents if olink not found? - - - -<xsl:param name="olink.lang.fallback.sequence"></xsl:param> - - -Description - - -This parameter defines a list of lang values -to search among to resolve olinks. - - -Normally an olink tries to resolve to a document in the same -language as the olink itself. The language of an olink -is determined by its nearest ancestor element with a -lang attribute, otherwise the -value of the l10n.gentext.default.lang -parameter. - - -An olink database can contain target data for the same -document in multiple languages. Each set of data has the -same value for the targetdoc attribute in -the document element in the database, but with a -different lang attribute value. - - -When an olink is being resolved, the target is first -sought in the document with the same language as the olink. -If no match is found there, then this parameter is consulted -for additional languages to try. - -The olink.lang.fallback.sequence -must be a whitespace separated list of lang values to -try. The first one with a match in the olink database is used. -The default value is empty. - -For example, a document might be written in German -and contain an olink with -targetdoc="adminguide". -When the document is processed, the processor -first looks for a target dataset in the -olink database starting with: - -<document targetdoc="adminguide" lang="de">. - - -If there is no such element, then the -olink.lang.fallback.sequence -parameter is consulted. -If its value is, for example, fr en, then the processor next -looks for targetdoc="adminguide" lang="fr", and -then for targetdoc="adminguide" lang="en". -If there is still no match, it looks for -targetdoc="adminguide" with no -lang attribute. - - -This parameter is useful when a set of documents is only -partially translated, or is in the process of being translated. -If a target of an olink has not yet been translated, then this -parameter permits the processor to look for the document in -other languages. This assumes the reader would rather have -a link to a document in a different language than to have -a broken link. - - - - - - - -olink.properties -attribute set - - -olink.properties -Properties associated with the cross-reference -text of an olink. - - - - -<xsl:attribute-set name="olink.properties"> - <xsl:attribute name="show-destination">replace</xsl:attribute> -</xsl:attribute-set> - - - -Description - -This attribute set is applied to the -fo:basic-link element of an olink. It is not applied to the -optional page number or optional title of the external -document. - - - - - - -prefer.internal.olink -boolean - - -prefer.internal.olink -Prefer a local olink reference to an external reference - - - - -<xsl:param name="prefer.internal.olink" select="0"></xsl:param> - - - -Description - -If you are re-using XML content modules in multiple documents, -you may want to redirect some of your olinks. This parameter -permits you to redirect an olink to the current document. - - -For example: you are writing documentation for a product, -which includes 3 manuals: a little installation -booklet (booklet.xml), a user -guide (user.xml), and a reference manual (reference.xml). -All 3 documents begin with the same introduction section (intro.xml) that -contains a reference to the customization section (custom.xml) which is -included in both user.xml and reference.xml documents. - - -How do you write the link to custom.xml in intro.xml -so that it is interpreted correctly in all 3 documents? - -If you use xref, it will fail in user.xml. - -If you use olink (pointing to reference.xml), -the reference in user.xml -will point to the customization section of the reference manual, while it is -actually available in user.xml. - - - -If you set the prefer.internal.olink -parameter to a non-zero value, then the processor will -first look in the olink database -for the olink's targetptr attribute value -in document matching the current.docid -parameter value. If it isn't found there, then -it tries the document in the database -with the targetdoc -value that matches the olink's targetdoc -attribute. - - -This feature permits an olink reference to resolve to -the current document if there is an element -with an id matching the olink's targetptr -value. The current document's olink data must be -included in the target database for this to work. - - -There is a potential for incorrect links if -the same id attribute value is used for different -content in different documents. -Some of your olinks may be redirected to the current document -when they shouldn't be. It is not possible to control -individual olink instances. - - - - - - - -target.database.document -uri - - -target.database.document -Name of master database file for resolving -olinks - - - - <xsl:param name="target.database.document">olinkdb.xml</xsl:param> - - -Description - - -To resolve olinks between documents, the stylesheets use a master -database document that identifies the target datafiles for all the -documents within the scope of the olinks. This parameter value is the -URI of the master document to be read during processing to resolve -olinks. The default value is olinkdb.xml. - -The data structure of the file is defined in the -targetdatabase.dtd DTD. The database file -provides the high level elements to record the identifiers, locations, -and relationships of documents. The cross reference data for -individual documents is generally pulled into the database using -system entity references or XIncludes. See also -targets.filename. - - - - -targets.filename -string - - -targets.filename -Name of cross reference targets data file - - -<xsl:param name="targets.filename">target.db</xsl:param> - - -Description - - -In order to resolve olinks efficiently, the stylesheets can -generate an external data file containing information about -all potential cross reference endpoints in a document. -This parameter lets you change the name of the generated -file from the default name target.db. -The name must agree with that used in the target database -used to resolve olinks during processing. -See also target.database.document. - - - - - - -use.local.olink.style -boolean - - -use.local.olink.style -Process olinks using xref style of current -document - - -<xsl:param name="use.local.olink.style" select="0"></xsl:param> - -Description - -When cross reference data is collected for use by olinks, the data for each potential target includes one field containing a completely assembled cross reference string, as if it were an xref generated in that document. Other fields record the separate title, number, and element name of each target. When an olink is formed to a target from another document, the olink resolves to that preassembled string by default. If the use.local.olink.style parameter is set to non-zero, then instead the cross -reference string is formed again from the target title, number, and -element name, using the stylesheet processing the targeting document. -Then olinks will match the xref style in the targeting document -rather than in the target document. If both documents are processed -with the same stylesheet, then the results will be the same. - - - - -Cross References - - -insert.xref.page.number -list -no -yes -maybe - - -insert.xref.page.number -Turns page numbers in xrefs on and off - - - - -<xsl:param name="insert.xref.page.number">no</xsl:param> - - - -Description - -The value of this parameter determines if -cross references (xrefs) in -printed output will -include page number citations. -It has three possible values. - - - -no -No page number references will be generated. - - - -yes -Page number references will be generated -for all xref elements. -The style of page reference may be changed -if an xrefstyle -attribute is used. - - - -maybe -Page number references will not be generated -for an xref element unless -it has an -xrefstyle -attribute whose value specifies a page reference. - - - - - - - - - -xref.properties -attribute set - - -xref.properties -Properties associated with cross-reference text - - - - -<xsl:attribute-set name="xref.properties"> -</xsl:attribute-set> - - - -Description - -This attribute set is used to set properties -on cross reference text. - - - - - - -xref.label-title.separator -string - - -xref.label-title.separator -Punctuation or space separating label from title in xref - - - -<xsl:param name="xref.label-title.separator">: </xsl:param> - - -Description - - -This parameter allows you to control the punctuation of certain -types of generated cross reference text. -When cross reference text is generated for an -xref or -olink element -using an xrefstyle attribute -that makes use of the select: feature, -and the selected components include both label and title, -then the value of this parameter is inserted between -label and title in the output. - - - - - - - -xref.label-page.separator -string - - -xref.label-page.separator -Punctuation or space separating label from page number in xref - - - -<xsl:param name="xref.label-page.separator"><xsl:text> </xsl:text></xsl:param> - - -Description - - -This parameter allows you to control the punctuation of certain -types of generated cross reference text. -When cross reference text is generated for an -xref or -olink element -using an xrefstyle attribute -that makes use of the select: feature, -and the selected components include both label and page -but no title, -then the value of this parameter is inserted between -label and page number in the output. -If a title is included, then other separators are used. - - - - - - - -xref.title-page.separator -string - - -xref.title-page.separator -Punctuation or space separating title from page number in xref - - - -<xsl:param name="xref.title-page.separator"><xsl:text> </xsl:text></xsl:param> - - -Description - - -This parameter allows you to control the punctuation of certain -types of generated cross reference text. -When cross reference text is generated for an -xref or -olink element -using an xrefstyle attribute -that makes use of the select: feature, -and the selected components include both title and page number, -then the value of this parameter is inserted between -title and page number in the output. - - - - - - - -insert.link.page.number -list -no -yes -maybe - - -insert.link.page.number -Turns page numbers in link elements on and off - - - - -<xsl:param name="insert.link.page.number">no</xsl:param> - - - -Description - -The value of this parameter determines if -cross references using the link element in -printed output will -include standard page number citations. -It has three possible values. - - - -no -No page number references will be generated. - - - -yes -Page number references will be generated -for all link elements. -The style of page reference may be changed -if an xrefstyle -attribute is used. - - - -maybe -Page number references will not be generated -for a link element unless -it has an -xrefstyle -attribute whose value specifies a page reference. - - - - -Although the xrefstyle attribute -can be used to turn the page reference on or off, it cannot be -used to control the formatting of the page number as it -can in xref. -In link it will always format with -the style established by the -gentext template with name="page.citation" -in the l:context name="xref". - - - - - -Lists - - -compact.list.item.spacing -attribute set - - -compact.list.item.spacing -What space do you want between list items (when spacing="compact")? - - - -<xsl:attribute-set name="compact.list.item.spacing"> - <xsl:attribute name="space-before.optimum">0em</xsl:attribute> - <xsl:attribute name="space-before.minimum">0em</xsl:attribute> - <xsl:attribute name="space-before.maximum">0.2em</xsl:attribute> -</xsl:attribute-set> - -Description -Specify what spacing you want between each list item when -spacing is -compact. - - - - - -itemizedlist.properties -attribute set - - -itemizedlist.properties -Properties that apply to each list-block generated by itemizedlist. - - - -<xsl:attribute-set name="itemizedlist.properties" use-attribute-sets="list.block.properties"> -</xsl:attribute-set> - -Description -Properties that apply to each fo:list-block generated by itemizedlist. - - - - - -itemizedlist.label.properties -attribute set - - -itemizedlist.label.properties -Properties that apply to each label inside itemized list. - - - -<xsl:attribute-set name="itemizedlist.label.properties"> -</xsl:attribute-set> - -Description -Properties that apply to each label inside itemized list. E.g.: -<xsl:attribute-set name="itemizedlist.label.properties"> - <xsl:attribute name="text-align">right</xsl:attribute> -</xsl:attribute-set> - - - - - -itemizedlist.label.width -length - - - itemizedlist.label.width -The default width of the label (bullet) in an itemized list. - - - - - <xsl:param name="itemizedlist.label.width">1.0em</xsl:param> - - - -Description -Specifies the default width of the label (usually a bullet or other -symbol) in an itemized list. You can override the default value on any -particular list with the “dbfo” processing instruction using the -“label-width” pseudoattribute. - - - - - -list.block.properties -attribute set - - -list.block.properties -Properties that apply to each list-block generated by list. - - - -<xsl:attribute-set name="list.block.properties"> - <xsl:attribute name="provisional-label-separation">0.2em</xsl:attribute> - <xsl:attribute name="provisional-distance-between-starts">1.5em</xsl:attribute> -</xsl:attribute-set> - -Description -Properties that apply to each fo:list-block generated by itemizedlist/orderedlist. - - - - - -list.block.spacing -attribute set - - -list.block.spacing -What spacing do you want before and after lists? - - - -<xsl:attribute-set name="list.block.spacing"> - <xsl:attribute name="space-before.optimum">1em</xsl:attribute> - <xsl:attribute name="space-before.minimum">0.8em</xsl:attribute> - <xsl:attribute name="space-before.maximum">1.2em</xsl:attribute> - <xsl:attribute name="space-after.optimum">1em</xsl:attribute> - <xsl:attribute name="space-after.minimum">0.8em</xsl:attribute> - <xsl:attribute name="space-after.maximum">1.2em</xsl:attribute> -</xsl:attribute-set> - -Description -Specify the spacing required before and after a list. It is necessary to specify the space after a list block because lists can come inside of paras. - - - - - -list.item.spacing -attribute set - - -list.item.spacing -What space do you want between list items? - - - -<xsl:attribute-set name="list.item.spacing"> - <xsl:attribute name="space-before.optimum">1em</xsl:attribute> - <xsl:attribute name="space-before.minimum">0.8em</xsl:attribute> - <xsl:attribute name="space-before.maximum">1.2em</xsl:attribute> -</xsl:attribute-set> - -Description -Specify what spacing you want between each list item. - - - - - -orderedlist.properties -attribute set - - -orderedlist.properties -Properties that apply to each list-block generated by orderedlist. - - - -<xsl:attribute-set name="orderedlist.properties" use-attribute-sets="list.block.properties"> - <xsl:attribute name="provisional-distance-between-starts">2em</xsl:attribute> -</xsl:attribute-set> - -Description -Properties that apply to each fo:list-block generated by orderedlist. - - - - - -orderedlist.label.properties -attribute set - - -orderedlist.label.properties -Properties that apply to each label inside ordered list. - - - -<xsl:attribute-set name="orderedlist.label.properties"> -</xsl:attribute-set> - -Description -Properties that apply to each label inside ordered list. E.g.: -<xsl:attribute-set name="orderedlist.label.properties"> - <xsl:attribute name="text-align">right</xsl:attribute> -</xsl:attribute-set> - - - - - -orderedlist.label.width -length - - -orderedlist.label.width -The default width of the label (number) in an ordered list. - - - - -<xsl:param name="orderedlist.label.width">1.2em</xsl:param> - - - -Description -Specifies the default width of the label (usually a number or -sequence of numbers) in an ordered list. You can override the default -value on any particular list with the “dbfo” processing instruction -using the “label-width” pseudoattribute. - - - - - -variablelist.max.termlength -number - - -variablelist.max.termlength -Specifies the longest term in variablelists - - - - -<xsl:param name="variablelist.max.termlength">24</xsl:param> - - - -Description - -In variablelists, the listitem -is indented to leave room for the -term elements. That indent may be computed -if it is not specified with a termlength -attribute on the variablelist element. - - -The computation counts characters in the -term elements in the list -to find the longest term. However, some terms are very long -and would produce extreme indents. This parameter lets you -set a maximum character count. Any terms longer than the maximum -would line wrap. The default value is 24. - - -The character counts are converted to physical widths -by multiplying by 0.50em. There will be some variability -in how many actual characters fit in the space -since some characters are wider than others. - - - - - - - -variablelist.term.separator -string - - -variablelist.term.separator -Text to separate terms within a multi-term -varlistentry - - - - -<xsl:param name="variablelist.term.separator">, </xsl:param> - - -Description - -When a varlistentry contains multiple term -elements, the string specified in the value of the -variablelist.term.separator parameter is placed -after each term except the last. - - - To generate a line break between multiple terms in - a varlistentry, set a non-zero value for the - variablelist.term.break.after parameter. If - you do so, you may also want to set the value of the - variablelist.term.separator parameter to an - empty string (to suppress rendering of the default comma and space - after each term). - - - - - - - -variablelist.term.properties -attribute set - - -variablelist.term.properties -To add properties to the term elements in a variablelist. - - - - -<xsl:attribute-set name="variablelist.term.properties"> -</xsl:attribute-set> - - -Description -These properties are added to the block containing a -term in a variablelist. -Use this attribute-set to set -font properties or alignment, for example. - - - - - - -variablelist.term.break.after -boolean - - -variablelist.term.break.after -Generate line break after each term within a -multi-term varlistentry? - - - - -<xsl:param name="variablelist.term.break.after">0</xsl:param> - - -Description - -Set a non-zero value for the -variablelist.term.break.after parameter to -generate a line break between terms in a -multi-term varlistentry. - - -If you set a non-zero value for -variablelist.term.break.after, you may also -want to set the value of the -variablelist.term.separator parameter to an -empty string (to suppress rendering of the default comma and space -after each term). - - - - - - -QAndASet - - -qandadiv.autolabel -boolean - - -qandadiv.autolabel -Are divisions in QAndASets enumerated? - - - -<xsl:param name="qandadiv.autolabel" select="1"></xsl:param> - - -Description - -If non-zero, unlabeled qandadivs will be enumerated. - - - - - - - -qanda.inherit.numeration -boolean - - -qanda.inherit.numeration -Does enumeration of QandASet components inherit the numeration of parent elements? - - - - -<xsl:param name="qanda.inherit.numeration" select="1"></xsl:param> - - - -Description - -If non-zero, numbered qandadiv elements and -question and answer inherit the enumeration of -the ancestors of the qandaset. - - - - - - - -qanda.defaultlabel -list -number -qanda -none - - -qanda.defaultlabel -Sets the default for defaultlabel on QandASet. - - - - -<xsl:param name="qanda.defaultlabel">number</xsl:param> - - - -Description - -If no defaultlabel attribute is specified on -a qandaset, this value is used. It is generally one of the legal -values for the defaultlabel attribute (none, -number or -qanda), or one of the additional stylesheet-specific values -(qnumber or qnumberanda). -The default value is 'number'. - -The values are rendered as follows: - -qanda - -questions are labeled "Q:" and -answers are labeled "A:". - - - -number - -The questions are enumerated and the answers -are not labeled. - - - -qnumber - -The questions are labeled "Q:" followed by a number, and answers are not -labeled. -When sections are numbered, adding a label -to the number distinguishes the question numbers -from the section numbers. -This value is not allowed in the -defaultlabel attribute -of a qandaset element. - - - -qnumberanda - -The questions are labeled "Q:" followed by a number, and -the answers are labeled "A:". -When sections are numbered, adding a label -to the number distinguishes the question numbers -from the section numbers. -This value is not allowed in the -defaultlabel attribute -of a qandaset element. - - - -none - -No distinguishing label precedes Questions or Answers. - - - - - - - - - - -qanda.in.toc -boolean - - -qanda.in.toc -Should qandaentry questions appear in -the document table of contents? - - - -<xsl:param name="qanda.in.toc" select="0"></xsl:param> - - -Description - -If true (non-zero), then the generated table of contents -for a document will include qandaset titles, -qandadiv titles, -and question elements. The default value (zero) excludes -them from the TOC. - -This parameter does not affect any tables of contents -that may be generated inside a qandaset or qandadiv. - - - - - - - -qanda.nested.in.toc -boolean - - -qanda.nested.in.toc -Should nested answer/qandaentry instances appear in TOC? - - - - -<xsl:param name="qanda.nested.in.toc" select="0"></xsl:param> - - - -Description - -If non-zero, instances of qandaentry -that are children of answer elements are shown in -the TOC. - - - - - -Bibliography - - -bibliography.style -list -normal -iso690 - - -bibliography.style -Style used for formatting of biblioentries. - - - - -<xsl:param name="bibliography.style">normal</xsl:param> - - - -Description - -Currently only normal and -iso690 styles are supported. - -In order to use ISO690 style to the full extent you might need -to use additional markup described on the -following WiKi page. - - - - - - -biblioentry.item.separator -string - - -biblioentry.item.separator -Text to separate bibliography entries - - - -<xsl:param name="biblioentry.item.separator">. </xsl:param> - - -Description - -Text to separate bibliography entries - - - - - - - -bibliography.collection -string - - -bibliography.collection -Name of the bibliography collection file - - - - -<xsl:param name="bibliography.collection">http://docbook.sourceforge.net/release/bibliography/bibliography.xml</xsl:param> - - - - -Description - -Maintaining bibliography entries across a set of documents is tedious, time -consuming, and error prone. It makes much more sense, usually, to store all of -the bibliography entries in a single place and simply extract -the ones you need in each document. - -That's the purpose of the -bibliography.collection parameter. To setup a global -bibliography database, follow these steps: - -First, create a stand-alone bibliography document that contains all of -the documents that you wish to reference. Make sure that each bibliography -entry (whether you use biblioentry or bibliomixed) -has an ID. - -My global bibliography, ~/bibliography.xml begins -like this: - - -<!DOCTYPE bibliography - PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN" - "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd"> -<bibliography><title>References</title> - -<bibliomixed id="xml-rec"><abbrev>XML 1.0</abbrev>Tim Bray, -Jean Paoli, C. M. Sperberg-McQueen, and Eve Maler, editors. -<citetitle><ulink url="http://www.w3.org/TR/REC-xml">Extensible Markup -Language (XML) 1.0 Second Edition</ulink></citetitle>. -World Wide Web Consortium, 2000. -</bibliomixed> - -<bibliomixed id="xml-names"><abbrev>Namespaces</abbrev>Tim Bray, -Dave Hollander, -and Andrew Layman, editors. -<citetitle><ulink url="http://www.w3.org/TR/REC-xml-names/">Namespaces in -XML</ulink></citetitle>. -World Wide Web Consortium, 1999. -</bibliomixed> - -<!-- ... --> -</bibliography> - - - -When you create a bibliography in your document, simply -provide empty bibliomixed -entries for each document that you wish to cite. Make sure that these -elements have the same ID as the corresponding real -entry in your global bibliography. - -For example: - - -<bibliography><title>Bibliography</title> - -<bibliomixed id="xml-rec"/> -<bibliomixed id="xml-names"/> -<bibliomixed id="DKnuth86">Donald E. Knuth. <citetitle>Computers and -Typesetting: Volume B, TeX: The Program</citetitle>. Addison-Wesley, -1986. ISBN 0-201-13437-3. -</bibliomixed> -<bibliomixed id="relaxng"/> - -</bibliography> - - -Note that it's perfectly acceptable to mix entries from your -global bibliography with normal entries. You can use -xref or other elements to cross-reference your -bibliography entries in exactly the same way you do now. - -Finally, when you are ready to format your document, simply set the -bibliography.collection parameter (in either a -customization layer or directly through your processor's interface) to -point to your global bibliography. - -The stylesheets will format the bibliography in your document as if -all of the entries referenced appeared there literally. - - - - - - -bibliography.numbered -boolean - - -bibliography.numbered -Should bibliography entries be numbered? - - - - -<xsl:param name="bibliography.numbered" select="0"></xsl:param> - - - -Description - -If non-zero bibliography entries will be numbered - - - - - - - biblioentry.properties - attribute set - - -biblioentry.properties -To set the style for biblioentry. - - - -<xsl:attribute-set name="biblioentry.properties" use-attribute-sets="normal.para.spacing"> - <xsl:attribute name="start-indent">0.5in</xsl:attribute> - <xsl:attribute name="text-indent">-0.5in</xsl:attribute> -</xsl:attribute-set> - - -Description -How do you want biblioentry styled? -Set the font-size, weight, space-above and space-below, indents, etc. to the style required - - - - - -Glossary - - -glossterm.auto.link -boolean - - -glossterm.auto.link -Generate links from glossterm to glossentry automatically? - - - - -<xsl:param name="glossterm.auto.link" select="0"></xsl:param> - - - -Description - -If non-zero, links from inline glossterms to the corresponding -glossentry elements in a glossary or glosslist -will be automatically generated. This is useful when your glossterms are consistent -and you don't want to add links manually. - -The automatic link generation feature is not used on glossterm elements -that have a linkend attribute. - - - - - - -firstterm.only.link -boolean - - -firstterm.only.link -Does automatic glossterm linking only apply to firstterms? - - - - -<xsl:param name="firstterm.only.link" select="0"></xsl:param> - - - -Description - -If non-zero, only firstterms will be automatically linked -to the glossary. If glossary linking is not enabled, this parameter -has no effect. - - - - - - -glossary.collection -string - - -glossary.collection -Name of the glossary collection file - - - - -<xsl:param name="glossary.collection"></xsl:param> - - - -Description - -Glossaries maintained independently across a set of documents -are likely to become inconsistent unless considerable effort is -expended to keep them in sync. It makes much more sense, usually, to -store all of the glossary entries in a single place and simply -extract the ones you need in each document. - -That's the purpose of the -glossary.collection parameter. To setup a global -glossary database, follow these steps: - -Setting Up the Glossary Database - -First, create a stand-alone glossary document that contains all of -the entries that you wish to reference. Make sure that each glossary -entry has an ID. - -Here's an example glossary: - - - -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE glossary - PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN" - "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd"> -<glossary> -<glossaryinfo> -<editor><firstname>Eric</firstname><surname>Raymond</surname></editor> -<title>Jargon File 4.2.3 (abridged)</title> -<releaseinfo>Just some test data</releaseinfo> -</glossaryinfo> - -<glossdiv><title>0</title> - -<glossentry> -<glossterm>0</glossterm> -<glossdef> -<para>Numeric zero, as opposed to the letter `O' (the 15th letter of -the English alphabet). In their unmodified forms they look a lot -alike, and various kluges invented to make them visually distinct have -compounded the confusion. If your zero is center-dotted and letter-O -is not, or if letter-O looks almost rectangular but zero looks more -like an American football stood on end (or the reverse), you're -probably looking at a modern character display (though the dotted zero -seems to have originated as an option on IBM 3270 controllers). If -your zero is slashed but letter-O is not, you're probably looking at -an old-style ASCII graphic set descended from the default typewheel on -the venerable ASR-33 Teletype (Scandinavians, for whom /O is a letter, -curse this arrangement). (Interestingly, the slashed zero long -predates computers; Florian Cajori's monumental "A History of -Mathematical Notations" notes that it was used in the twelfth and -thirteenth centuries.) If letter-O has a slash across it and the zero -does not, your display is tuned for a very old convention used at IBM -and a few other early mainframe makers (Scandinavians curse <emphasis>this</emphasis> -arrangement even more, because it means two of their letters collide). -Some Burroughs/Unisys equipment displays a zero with a <emphasis>reversed</emphasis> -slash. Old CDC computers rendered letter O as an unbroken oval and 0 -as an oval broken at upper right and lower left. And yet another -convention common on early line printers left zero unornamented but -added a tail or hook to the letter-O so that it resembled an inverted -Q or cursive capital letter-O (this was endorsed by a draft ANSI -standard for how to draw ASCII characters, but the final standard -changed the distinguisher to a tick-mark in the upper-left corner). -Are we sufficiently confused yet?</para> -</glossdef> -</glossentry> - -<glossentry> -<glossterm>1TBS</glossterm> -<glossdef> -<para role="accidence"> -<phrase role="pronounce"></phrase> -<phrase role="partsofspeach">n</phrase> -</para> -<para>The "One True Brace Style"</para> -<glossseealso>indent style</glossseealso> -</glossdef> -</glossentry> - -<!-- ... --> - -</glossdiv> - -<!-- ... --> - -</glossary> - - - - -Marking Up Glossary Terms - -That takes care of the glossary database, now you have to get the entries -into your document. Unlike bibliography entries, which can be empty, creating -placeholder glossary entries would be very tedious. So instead, -support for glossary.collection relies on implicit linking. - -In your source document, simply use firstterm and -glossterm to identify the terms you wish to have included -in the glossary. The stylesheets assume that you will either set the -baseform attribute correctly, or that the -content of the element exactly matches a term in your glossary. - -If you're using a glossary.collection, don't -make explicit links on the terms in your document. - -So, in your document, you might write things like this: - - -<para>This is dummy text, without any real meaning. -The point is simply to reference glossary terms like <glossterm>0</glossterm> -and the <firstterm baseform="1TBS">One True Brace Style (1TBS)</firstterm>. -The <glossterm>1TBS</glossterm>, as you can probably imagine, is a nearly -religious issue.</para> - - -If you set the firstterm.only.link parameter, -only the terms marked with firstterm will be links. -Otherwise, all the terms will be linked. - - - -Marking Up the Glossary - -The glossary itself has to be identified for the stylesheets. For lack -of a better choice, the role is used. -To identify the glossary as the target for automatic processing, set -the role to auto. The title of this -glossary (and any other information from the glossaryinfo -that's rendered by your stylesheet) will be displayed, but the entries will -come from the database. - - -Unfortunately, the glossary can't be empty, so you must put in -at least one glossentry. The content of this entry -is irrelevant, it will not be rendered: - - -<glossary role="auto"> -<glossentry> -<glossterm>Irrelevant</glossterm> -<glossdef> -<para>If you can see this, the document was processed incorrectly. Use -the <parameter>glossary.collection</parameter> parameter.</para> -</glossdef> -</glossentry> -</glossary> - - -What about glossary divisions? If your glossary database has glossary -divisions and your automatic glossary contains at least -one glossdiv, the automic glossary will have divisions. -If the glossdiv is missing from either location, no divisions -will be rendered. - -Glossary entries (and divisions, if appropriate) in the glossary will -occur in precisely the order they occur in your database. - - - -Formatting the Document - -Finally, when you are ready to format your document, simply set the -glossary.collection parameter (in either a -customization layer or directly through your processor's interface) to -point to your global glossary. - -The stylesheets will format the glossary in your document as if -all of the entries implicilty referenced appeared there literally. - - -Limitations - -Glossary cross-references within the glossary are -not supported. For example, this will not work: - - -<glossentry> -<glossterm>gloss-1</glossterm> -<glossdef><para>A description that references <glossterm>gloss-2</glossterm>.</para> -<glossseealso>gloss-2</glossseealso> -</glossdef> -</glossentry> - - -If you put glossary cross-references in your glossary that way, -you'll get the cryptic error: Warning: -glossary.collection specified, but there are 0 automatic -glossaries. - -Instead, you must do two things: - - - -Markup your glossary using glossseealso: - - -<glossentry> -<glossterm>gloss-1</glossterm> -<glossdef><para>A description that references <glossterm>gloss-2</glossterm>.</para> -<glossseealso>gloss-2</glossseealso> -</glossdef> -</glossentry> - - - - -Make sure there is at least one glossterm reference to -gloss-2 in your document. The -easiest way to do that is probably within a remark in your -automatic glossary: - - -<glossary role="auto"> -<remark>Make sure there's a reference to <glossterm>gloss-2</glossterm>.</remark> -<glossentry> -<glossterm>Irrelevant</glossterm> -<glossdef> -<para>If you can see this, the document was processed incorrectly. Use -the <parameter>glossary.collection</parameter> parameter.</para> -</glossdef> -</glossentry> -</glossary> - - - - - - - - - - -glossary.as.blocks -boolean - - -glossary.as.blocks -Present glossarys using blocks instead of lists? - - - - -<xsl:param name="glossary.as.blocks" select="0"></xsl:param> - - - -Description - -If non-zero, glossarys will be formatted as -blocks. - -If you have long glossterms, proper list -markup in the FO case may produce unattractive lists. By setting this -parameter, you can force the stylesheets to produce block markup -instead of proper lists. - -You can override this setting with a processing instruction as the -child of glossary: dbfo -glossary-presentation="blocks" or dbfo -glossary-presentation="list" - - - - - - -glosslist.as.blocks -boolean - - -glosslist.as.blocks -Use blocks for glosslists? - - - - -<xsl:param name="glosslist.as.blocks" select="0"></xsl:param> - - - -Description - -See glossary.as.blocks. - - - - - - -glossentry.list.item.properties -attribute set - - -glossentry.list.item.properties -To add properties to each glossentry in a list. - - - -<xsl:attribute-set name="glossentry.list.item.properties"> - <xsl:attribute name="space-before.optimum">1em</xsl:attribute> - <xsl:attribute name="space-before.minimum">0.8em</xsl:attribute> - <xsl:attribute name="space-before.maximum">1.2em</xsl:attribute> -</xsl:attribute-set> - - -Description -These properties are added to the fo:list-item containing a -glossentry in a glossary when the glossary.as.blocks parameter -is zero. -Use this attribute-set to set -spacing between entries, for example. - - - - - - -glossterm.block.properties -attribute set - - -glossterm.block.properties -To add properties to the block of a glossentry's glossterm. - - - -<xsl:attribute-set name="glossterm.block.properties"> - <xsl:attribute name="space-before.optimum">1em</xsl:attribute> - <xsl:attribute name="space-before.minimum">0.8em</xsl:attribute> - <xsl:attribute name="space-before.maximum">1.2em</xsl:attribute> - <xsl:attribute name="keep-with-next.within-column">always</xsl:attribute> - <xsl:attribute name="keep-together.within-column">always</xsl:attribute> -</xsl:attribute-set> - - -Description -These properties are added to the block containing a -glossary term in a glossary when the glossary.as.blocks parameter -is non-zero. -Use this attribute-set to set the space above and below, -font properties, -and any indent for the glossary term. - - - - - - -glossdef.block.properties -attribute set - - -glossdef.block.properties -To add properties to the block of a glossary definition. - - - -<xsl:attribute-set name="glossdef.block.properties"> - <xsl:attribute name="margin-{$direction.align.start}">.25in</xsl:attribute> -</xsl:attribute-set> - - -Description -These properties are added to the block containing a -glossary definition in a glossary when -the glossary.as.blocks parameter -is non-zero. -Use this attribute-set to set the space above and below, -any font properties, -and any indent for the glossary definition. - - - - - - -glossterm.list.properties -attribute set - - -glossterm.list.properties -To add properties to the glossterm in a list. - - - - -<xsl:attribute-set name="glossterm.list.properties"> -</xsl:attribute-set> - - -Description -These properties are added to the block containing a -glossary term in a glossary when the glossary.as.blocks parameter -is zero. -Use this attribute-set to set -font properties, for example. - - - - - - -glossdef.list.properties -attribute set - - -glossdef.list.properties -To add properties to the glossary definition in a list. - - - - -<xsl:attribute-set name="glossdef.list.properties"> -</xsl:attribute-set> - - -Description -These properties are added to the block containing a -glossary definition in a glossary when -the glossary.as.blocks parameter -is zero. -Use this attribute-set to set font properties, for example. - - - - - - -glossterm.width -length - - -glossterm.width -Width of glossterm in list presentation mode - - - - -<xsl:param name="glossterm.width">2in</xsl:param> - - - -Description - -This parameter specifies the width reserved for glossary terms when -a list presentation is used. - - - - - - -glossterm.separation -length - - -glossterm.separation -Separation between glossary terms and descriptions in list mode - - - - -<xsl:param name="glossterm.separation">0.25in</xsl:param> - - - -Description - -Specifies the miminum horizontal -separation between glossary terms and descriptions when -they are presented side-by-side using lists -when the glossary.as.blocks -is zero. - - - - - - -glossentry.show.acronym -list -no -yes -primary - - -glossentry.show.acronym -Display glossentry acronyms? - - - - -<xsl:param name="glossentry.show.acronym">no</xsl:param> - - - -Description - -A setting of yes means they should be displayed; -no means they shouldn't. If primary is used, -then they are shown as the primary text for the entry. - - -This setting controls both acronym and -abbrev elements in the glossentry. - - - - - - - -glossary.sort -boolean - - -glossary.sort -Sort glossentry elements? - - - - -<xsl:param name="glossary.sort" select="0"></xsl:param> - - - -Description - -If non-zero, then the glossentry elements within a -glossary, glossdiv, or glosslist are sorted on the glossterm, using -the current lang setting. If zero (the default), then -glossentry elements are not sorted and are presented -in document order. - - - - - - -Miscellaneous - - -formal.procedures -boolean - - -formal.procedures -Selects formal or informal procedures - - - - -<xsl:param name="formal.procedures" select="1"></xsl:param> - - - -Description - -Formal procedures are numbered and always have a title. - - - - - - - -formal.title.placement -table - - -formal.title.placement -Specifies where formal object titles should occur - - - - -<xsl:param name="formal.title.placement"> -figure before -example before -equation before -table before -procedure before -task before -</xsl:param> - - - -Description - -Specifies where formal object titles should occur. For each formal object -type (figure, -example, -equation, -table, and procedure) -you can specify either the keyword -before or -after. - - - - - - -runinhead.default.title.end.punct -string - - -runinhead.default.title.end.punct -Default punctuation character on a run-in-head - - - -<xsl:param name="runinhead.default.title.end.punct">.</xsl:param> - - - -Description - -If non-zero, For a formalpara, use the specified -string as the separator between the title and following text. The period is the default value. - - - - - - -runinhead.title.end.punct -string - - -runinhead.title.end.punct -Characters that count as punctuation on a run-in-head - - - - -<xsl:param name="runinhead.title.end.punct">.!?:</xsl:param> - - - -Description - -Specify which characters are to be counted as punctuation. These -characters are checked for a match with the last character of the -title. If no match is found, the -runinhead.default.title.end.punct contents are -inserted. This is to avoid duplicated punctuation in the output. - - - - - - - -show.comments -boolean - - -show.comments -Display remark elements? - - - - -<xsl:param name="show.comments" select="1"></xsl:param> - - - -Description - -If non-zero, comments will be displayed, otherwise they -are suppressed. Comments here refers to the remark element -(which was called comment prior to DocBook -4.0), not XML comments (<-- like this -->) which are -unavailable. - - - - - - - -punct.honorific -string - - -punct.honorific -Punctuation after an honorific in a personal name. - - - - -<xsl:param name="punct.honorific">.</xsl:param> - - - -Description - -This parameter specifies the punctuation that should be added after an -honorific in a personal name. - - - - - - -segmentedlist.as.table -boolean - - -segmentedlist.as.table -Format segmented lists as tables? - - - - -<xsl:param name="segmentedlist.as.table" select="0"></xsl:param> - - - -Description - -If non-zero, segmentedlists will be formatted as -tables. - - - - - - -variablelist.as.blocks -boolean - - -variablelist.as.blocks -Format variablelists lists as blocks? - - - - -<xsl:param name="variablelist.as.blocks" select="0"></xsl:param> - - - -Description - -If non-zero, variablelists will be formatted as -blocks. - -If you have long terms, proper list markup in the FO case may produce -unattractive lists. By setting this parameter, you can force the stylesheets -to produce block markup instead of proper lists. - -You can override this setting with a processing instruction as the -child of variablelist: dbfo -list-presentation="blocks" or dbfo -list-presentation="list". - -When using list-presentation="list", -you can also control the amount of space used for the terms with -the dbfo term-width=".25in" processing instruction, -the termlength attribute on variablelist, -or allow the stylesheets to attempt to calculate the amount of space to leave based on the -number of letters in the longest term. - - - <variablelist> - <?dbfo list-presentation="list"?> - <?dbfo term-width="1.5in"?> - <?dbhtml list-presentation="table"?> - <?dbhtml term-width="1.5in"?> - <varlistentry> - <term>list</term> - <listitem> - <para> - Formatted as a list even if variablelist.as.blocks is set to 1. - </para> - </listitem> - </varlistentry> - </variablelist> - - - - - - - - - blockquote.properties - attribute set - - -blockquote.properties -To set the style for block quotations. - - - - -<xsl:attribute-set name="blockquote.properties"> -<xsl:attribute name="margin-{$direction.align.start}">0.5in</xsl:attribute> -<xsl:attribute name="margin-{$direction.align.end}">0.5in</xsl:attribute> -<xsl:attribute name="space-after.minimum">0.5em</xsl:attribute> -<xsl:attribute name="space-after.optimum">1em</xsl:attribute> -<xsl:attribute name="space-after.maximum">2em</xsl:attribute> -</xsl:attribute-set> - - - -Description - -The blockquote.properties attribute set specifies -the formating properties of block quotations. - - - - - - -ulink.show -boolean - - -ulink.show -Display URLs after ulinks? - - - - -<xsl:param name="ulink.show" select="1"></xsl:param> - - - -Description - -If non-zero, the URL of each ulink will -appear after the text of the link. If the text of the link and the URL -are identical, the URL is suppressed. - -See also ulink.footnotes. - -DocBook 5 does not have an ulink element. When processing -DocBoook 5 documents, ulink.show applies to all inline -elements that are marked up with xlink:href attributes -that point to external resources. - - - - - - - -ulink.footnotes -boolean - - -ulink.footnotes -Generate footnotes for ulinks? - - - - -<xsl:param name="ulink.footnotes" select="0"></xsl:param> - - - -Description - -If non-zero, and if ulink.show also is non-zero, -the URL of each ulink will appear as a footnote. - -DocBook 5 does not have an ulink element. When processing -DocBoook 5 documents, ulink.footnotes applies to all inline -elements that are marked up with xlink:href attributes -that point to external resources. - - - - - - - -ulink.hyphenate -string - - -ulink.hyphenate -Allow URLs to be automatically hyphenated - - - - -<xsl:param name="ulink.hyphenate"></xsl:param> - - - -Description - -If not empty, the specified character (or more generally, content) is -added to URLs after every character included in the string -in the ulink.hyphenate.chars parameter (default -is /). If the character in this parameter is a -Unicode soft hyphen (0x00AD) or Unicode zero-width space (0x200B), some FO -processors will be able to reasonably hyphenate long URLs. - -As of 28 Jan 2002, discretionary hyphens are more widely and correctly -supported than zero-width spaces for this purpose. - - - - - - -ulink.hyphenate.chars -string - - -ulink.hyphenate.chars -List of characters to allow ulink URLs to be automatically hyphenated on - - - - -<xsl:param name="ulink.hyphenate.chars">/</xsl:param> - - - -Description - -If the ulink.hyphenate is not empty, then -hyphenation of ulinks is turned on, and any -character contained in this parameter is treated as an allowable -hyphenation point. - -The default value is /, but the parameter -could be customized -to contain other URL characters, as for example: - -<xsl:param name="ulink.hyphenate.chars">:/@&?.#</xsl:param> - - - - - - - -shade.verbatim -boolean - - -shade.verbatim -Should verbatim environments be shaded? - - - -<xsl:param name="shade.verbatim" select="0"></xsl:param> - - -Description - -In the FO stylesheet, if this parameter is non-zero then the -shade.verbatim.style properties will be applied -to verbatim environments. - -In the HTML stylesheet, this parameter is now deprecated. Use -CSS instead. - - - - - - -shade.verbatim.style -attribute set - - -shade.verbatim.style -Properties that specify the style of shaded verbatim listings - - - - - -<xsl:attribute-set name="shade.verbatim.style"> - <xsl:attribute name="background-color">#E0E0E0</xsl:attribute> -</xsl:attribute-set> - - - -Description - -Properties that specify the style of shaded verbatim listings. The -parameters specified (the border and background color) are added to -the styling of the xsl-fo output. A border might be specified as "thin -black solid" for example. See xsl-fo - - - - - - -hyphenate.verbatim -boolean - - -hyphenate.verbatim -Should verbatim environments be hyphenated on space characters? - - - -<xsl:param name="hyphenate.verbatim" select="0"></xsl:param> - - -Description - -If the lines of program listing are too long to fit into one -line it is quite common to split them at space and indicite by hook -arrow that code continues on the next line. You can turn on this -behaviour for programlisting, -screen and synopsis elements by -using this parameter. - -Note that you must also enable line wrapping for verbatim environments and -select appropriate hyphenation character (e.g. hook arrow). This can -be done using monospace.verbatim.properties -attribute set: - -<xsl:attribute-set name="monospace.verbatim.properties" - use-attribute-sets="verbatim.properties monospace.properties"> - <xsl:attribute name="wrap-option">wrap</xsl:attribute> - <xsl:attribute name="hyphenation-character">&#x25BA;</xsl:attribute> -</xsl:attribute-set> - -For a list of arrows available in Unicode see http://www.unicode.org/charts/PDF/U2190.pdf and http://www.unicode.org/charts/PDF/U2900.pdf and make sure that -selected character is available in the font you are using for verbatim -environments. - - - - - - -hyphenate.verbatim.characters -string - - -hyphenate.verbatim.characters -List of characters after which a line break can occur in listings - - - - -<xsl:param name="hyphenate.verbatim.characters"></xsl:param> - - - -Description - -If you enable hyphenate.verbatim line -breaks are allowed only on space characters. If this is not enough for -your document, you can specify list of additional characters after -which line break is allowed in this parameter. - - - - - - -use.svg -boolean - - -use.svg -Allow SVG in the result tree? - - - - -<xsl:param name="use.svg" select="1"></xsl:param> - - - -Description - -If non-zero, SVG will be considered an acceptable image format. SVG -is passed through to the result tree, so correct rendering of the resulting -diagram depends on the formatter (FO processor or web browser) that is used -to process the output from the stylesheet. - - - - - - -use.role.as.xrefstyle -boolean - - -use.role.as.xrefstyle -Use role attribute for -xrefstyle on xref? - - - - -<xsl:param name="use.role.as.xrefstyle" select="1"></xsl:param> - - - -Description - -In DocBook documents that conform to a schema older than V4.3, this parameter allows -role to serve the purpose of specifying the cross reference style. - -If non-zero, the role attribute on -xref will be used to select the cross reference style. -In DocBook V4.3, the xrefstyle attribute was added for this purpose. -If the xrefstyle attribute is present, -role will be ignored, regardless of the setting -of this parameter. - - - -Example - -The following small stylesheet shows how to configure the -stylesheets to make use of the cross reference style: - -<?xml version="1.0"?> -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" - version="1.0"> - -<xsl:import href="../xsl/html/docbook.xsl"/> - -<xsl:output method="html"/> - -<xsl:param name="local.l10n.xml" select="document('')"/> -<l:i18n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0"> - <l:l10n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0" language="en"> - <l:context name="xref"> - <l:template name="chapter" style="title" text="Chapter %n, %t"/> - <l:template name="chapter" text="Chapter %n"/> - </l:context> - </l:l10n> -</l:i18n> - -</xsl:stylesheet> - -With this stylesheet, the cross references in the following document: - -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN" - "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd"> -<book id="book"><title>Book</title> - -<preface> -<title>Preface</title> - -<para>Normal: <xref linkend="ch1"/>.</para> -<para>Title: <xref xrefstyle="title" linkend="ch1"/>.</para> - -</preface> - -<chapter id="ch1"> -<title>First Chapter</title> - -<para>Irrelevant.</para> - -</chapter> -</book> - -will appear as: - - -Normal: Chapter 1. -Title: Chapter 1, First Chapter. - - - - - - - -menuchoice.separator -string - - -menuchoice.separator -Separator between items of a menuchoice -other than guimenuitem and -guisubmenu - - - - -<xsl:param name="menuchoice.separator">+</xsl:param> - - - -Description - -Separator used to connect items of a menuchoice other -than guimenuitem and guisubmenu. The latter -elements are linked with menuchoice.menu.separator. - - - - - - - -menuchoice.menu.separator -string - - -menuchoice.menu.separator -Separator between items of a menuchoice -with guimenuitem or -guisubmenu - - - - -<xsl:param name="menuchoice.menu.separator"> → </xsl:param> - - - -Description - -Separator used to connect items of a menuchoice with -guimenuitem or guisubmenu. Other elements -are linked with menuchoice.separator. - -The default value is &#x2192;, which is the -&rarr; (right arrow) character entity. -The current FOP (0.20.5) requires setting the font-family -explicitly. - -The default value also includes spaces around the arrow, -which will allow a line to break. Replace the spaces with -&#xA0; (nonbreaking space) if you don't want those -spaces to break. - - - - - - - -default.float.class -string - - -default.float.class -Specifies the default float class - - - - -<xsl:param name="default.float.class"> - <xsl:choose> - <xsl:when test="contains($stylesheet.result.type,'html')">left</xsl:when> - <xsl:otherwise>before</xsl:otherwise> - </xsl:choose> -</xsl:param> - - - -Description - -Selects the direction in which a float should be placed. for -xsl-fo this is before, for html it is left. For Western texts, the -before direction is the top of the page. - - - - - - -footnote.number.format -list -11,2,3... -AA,B,C... -aa,b,c... -ii,ii,iii... -II,II,III... - - -footnote.number.format -Identifies the format used for footnote numbers - - - - -<xsl:param name="footnote.number.format">1</xsl:param> - - - -Description - -The footnote.number.format specifies the format -to use for footnote numeration (1, i, I, a, or A). - - - - - - -table.footnote.number.format -list -11,2,3... -AA,B,C... -aa,b,c... -ii,ii,iii... -II,II,III... - - -table.footnote.number.format -Identifies the format used for footnote numbers in tables - - - - -<xsl:param name="table.footnote.number.format">a</xsl:param> - - - -Description - -The table.footnote.number.format specifies the format -to use for footnote numeration (1, i, I, a, or A) in tables. - - - - - - -footnote.number.symbols - - - -footnote.number.symbols -Special characters to use as footnote markers - - - - -<xsl:param name="footnote.number.symbols"></xsl:param> - - - -Description - -If footnote.number.symbols is not the empty string, -footnotes will use the characters it contains as footnote symbols. For example, -*&#x2020;&#x2021;&#x25CA;&#x2720; will identify -footnotes with *, , , -, and . If there are more footnotes -than symbols, the stylesheets will fall back to numbered footnotes using -footnote.number.format. - -The use of symbols for footnotes depends on the ability of your -processor (or browser) to render the symbols you select. Not all systems are -capable of displaying the full range of Unicode characters. If the quoted characters -in the preceding paragraph are not displayed properly, that's a good indicator -that you may have trouble using those symbols for footnotes. - - - - - - -table.footnote.number.symbols -string - - -table.footnote.number.symbols -Special characters to use a footnote markers in tables - - - - -<xsl:param name="table.footnote.number.symbols"></xsl:param> - - - -Description - -If table.footnote.number.symbols is not the empty string, -table footnotes will use the characters it contains as footnote symbols. For example, -*&#x2020;&#x2021;&#x25CA;&#x2720; will identify -footnotes with *, , , -, and . If there are more footnotes -than symbols, the stylesheets will fall back to numbered footnotes using -table.footnote.number.format. - -The use of symbols for footnotes depends on the ability of your -processor (or browser) to render the symbols you select. Not all systems are -capable of displaying the full range of Unicode characters. If the quoted characters -in the preceding paragraph are not displayed properly, that's a good indicator -that you may have trouble using those symbols for footnotes. - - - - - - -footnote.properties -attribute set - - -footnote.properties -Properties applied to each footnote body - - - - - -<xsl:attribute-set name="footnote.properties"> - <xsl:attribute name="font-family"><xsl:value-of select="$body.fontset"></xsl:value-of></xsl:attribute> - <xsl:attribute name="font-size"><xsl:value-of select="$footnote.font.size"></xsl:value-of></xsl:attribute> - <xsl:attribute name="font-weight">normal</xsl:attribute> - <xsl:attribute name="font-style">normal</xsl:attribute> - <xsl:attribute name="text-align"><xsl:value-of select="$alignment"></xsl:value-of></xsl:attribute> - <xsl:attribute name="start-indent">0pt</xsl:attribute> - <xsl:attribute name="text-indent">0pt</xsl:attribute> - <xsl:attribute name="hyphenate"><xsl:value-of select="$hyphenate"></xsl:value-of></xsl:attribute> - <xsl:attribute name="wrap-option">wrap</xsl:attribute> - <xsl:attribute name="linefeed-treatment">treat-as-space</xsl:attribute> -</xsl:attribute-set> - - - -Description - -This attribute set is applied to the footnote-block -for each footnote. -It can be used to set the -font-size, font-family, and other inheritable properties that will be -applied to all footnotes. - - - - - - -table.footnote.properties -attribute set - - -table.footnote.properties -Properties applied to each table footnote body - - - - - -<xsl:attribute-set name="table.footnote.properties"> - <xsl:attribute name="font-family"><xsl:value-of select="$body.fontset"></xsl:value-of></xsl:attribute> - <xsl:attribute name="font-size"><xsl:value-of select="$footnote.font.size"></xsl:value-of></xsl:attribute> - <xsl:attribute name="font-weight">normal</xsl:attribute> - <xsl:attribute name="font-style">normal</xsl:attribute> - <xsl:attribute name="space-before">2pt</xsl:attribute> - <xsl:attribute name="text-align"><xsl:value-of select="$alignment"></xsl:value-of></xsl:attribute> -</xsl:attribute-set> - - - -Description - -This attribute set is applied to the footnote-block -for each table footnote. -It can be used to set the -font-size, font-family, and other inheritable properties that will be -applied to all table footnotes. - - - - - - -footnote.mark.properties -attribute set - - -footnote.mark.properties -Properties applied to each footnote mark - - - - - -<xsl:attribute-set name="footnote.mark.properties"> - <xsl:attribute name="font-family"><xsl:value-of select="$body.fontset"></xsl:value-of></xsl:attribute> - <xsl:attribute name="font-size">75%</xsl:attribute> - <xsl:attribute name="font-weight">normal</xsl:attribute> - <xsl:attribute name="font-style">normal</xsl:attribute> -</xsl:attribute-set> - - - -Description - -This attribute set is applied to the footnote mark used -for each footnote. -It should contain only inline properties. - - -The property to make the mark a superscript is contained in the -footnote template itself, because the current version of FOP reports -an error if baseline-shift is used. - - - - - - - -footnote.sep.leader.properties -attribute set - - -footnote.sep.leader.properties -Properties associated with footnote separators - - - - -<xsl:attribute-set name="footnote.sep.leader.properties"> - <xsl:attribute name="color">black</xsl:attribute> - <xsl:attribute name="leader-pattern">rule</xsl:attribute> - <xsl:attribute name="leader-length">1in</xsl:attribute> -</xsl:attribute-set> - - - -Description - -The styling for the rule line that separates the -footnotes from the body text. -These are properties applied to the fo:leader used as -the separator. - -If you want to do more than just set properties on -the leader element, then you can customize the template -named footnote.separator in -fo/pagesetup.xsl. - - - - - - -xref.with.number.and.title -boolean - - -xref.with.number.and.title -Use number and title in cross references - - - - -<xsl:param name="xref.with.number.and.title" select="1"></xsl:param> - - - -Description - -A cross reference may include the number (for example, the number of -an example or figure) and the title which is a required child of some -targets. This parameter inserts both the relevant number as well as -the title into the link. - - - - - - -superscript.properties -attribute set - - -superscript.properties -Properties associated with superscripts - - - - -<xsl:attribute-set name="superscript.properties"> - <xsl:attribute name="font-size">75%</xsl:attribute> -</xsl:attribute-set> - - - -Description - -Specifies styling properties for superscripts. - - - - - - -subscript.properties -attribute set - - -subscript.properties -Properties associated with subscripts - - - - -<xsl:attribute-set name="subscript.properties"> - <xsl:attribute name="font-size">75%</xsl:attribute> -</xsl:attribute-set> - - - -Description - -Specifies styling properties for subscripts. - - - - - - -pgwide.properties -attribute set - - -pgwide.properties -Properties to make a figure or table page wide. - - - - - -<xsl:attribute-set name="pgwide.properties"> - <xsl:attribute name="start-indent">0pt</xsl:attribute> -</xsl:attribute-set> - - - -Description - -This attribute set is used to set the properties -that make a figure or table "page wide" in fo output. -It comes into effect when an attribute pgwide="1" -is used. - - - -By default, it sets start-indent -to 0pt. -In a stylesheet that sets the parameter -body.start.indent -to a non-zero value in order to indent body text, -this attribute set can be used to outdent pgwide -figures to the start margin. - - -If a document uses a multi-column page layout, -then this attribute set could try setting span -to a value of all. However, this may -not work with some processors because a span property must be on an -fo:block that is a direct child of fo:flow. It may work in -some processors anyway. - - - - - - - -highlight.source -boolean - - -highlight.source -Should the content of programlisting -be syntactically highlighted? - - - - -<xsl:param name="highlight.source" select="0"></xsl:param> - - - -Description - -When this parameter is non-zero, the stylesheets will try to do syntax highlighting of the -content of programlisting elements. You specify the language for each programlisting -by using the language attribute. The highlight.default.language -parameter can be used to specify the language for programlistings without a language -attribute. Syntax highlighting also works for screen and synopsis elements. - -The actual highlighting work is done by the XSLTHL extension module. This is an external Java library that has to be -downloaded separately (see below). - - -In order to use this extension, you must - -add xslthl-2.x.x.jar to your Java classpath. The latest version is available -from the XSLT syntax highlighting project -at SourceForge. - - -use a customization layer in which you import one of the following stylesheet modules: - - - html/highlight.xsl - - - - xhtml/highlight.xsl - - - - xhtml-1_1/highlight.xsl - - - - fo/highlight.xsl - - - - - -let either the xslthl.config Java system property or the -highlight.xslthl.config parameter point to the configuration file for syntax -highlighting (using URL syntax). DocBook XSL comes with a ready-to-use configuration file, -highlighting/xslthl-config.xml. - - - -The extension works with Saxon 6.5.x and Xalan-J. (Saxon 8.5 or later is also supported, but since it is -an XSLT 2.0 processor it is not guaranteed to work with DocBook XSL in all circumstances.) - -The following is an example of a Saxon 6 command adapted for syntax highlighting, to be used on Windows: - - -java -cp c:/Java/saxon.jar;c:/Java/xslthl-2.0.1.jar --Dxslthl.config=file:///c:/docbook-xsl/highlighting/xslthl-config.xml com.icl.saxon.StyleSheet --o test.html test.xml myhtml.xsl - - - - - - - -highlight.xslthl.config -uri - - -highlight.xslthl.config -Location of XSLTHL configuration file - - - - -<xsl:param name="highlight.xslthl.config"></xsl:param> - - - -Description - -This location has precedence over the corresponding Java property. - - - - - - -highlight.default.language -string - - -highlight.default.language -Default language of programlisting - - - - -<xsl:param name="highlight.default.language"></xsl:param> - - - -Description - -This language is used when there is no language attribute on programlisting. - - - - - - -email.delimiters.enabled -boolean - - -email.delimiters.enabled -Generate delimiters around email addresses? - - - - -<xsl:param name="email.delimiters.enabled" select="1"></xsl:param> - - - -Description - -If non-zero, delimiters - -For delimiters, the -stylesheets are currently hard-coded to output angle -brackets. - -are generated around e-mail addresses -(the output of the email element). - - - - - - -email.mailto.enabled -boolean - - -email.mailto.enabled -Generate mailto: links for email addresses? - - - - -<xsl:param name="email.mailto.enabled" select="0"></xsl:param> - - - -Description - -If non-zero the generated output for the email element -will be a clickable mailto: link that brings up the default mail client -on the system. - - - - - - -section.container.element -list -block -wrapper - - -section.container.element -Select XSL-FO element name to contain sections - - - - -<xsl:param name="section.container.element">block</xsl:param> - - - -Description - -Selects the element name for outer container of -each section. The choices are block (default) -or wrapper. -The fo: namespace prefix is added -by the stylesheet to form the full element name. - - -This element receives the section id -attribute and the appropriate section level attribute-set. - - -Changing this parameter to wrapper -is only necessary when producing multi-column output -that contains page-wide spans. Using fo:wrapper -avoids the nesting of fo:block -elements that prevents spans from working (the standard says -a span must be on a block that is a direct child of -fo:flow). - - -If set to wrapper, the -section attribute-sets only support properties -that are inheritable. That's because there is no -block to apply them to. Properties such as -font-family are inheritable, but properties such as -border are not. - - -Only some XSL-FO processors need to use this parameter. -The Antenna House processor, for example, will handle -spans in nested blocks without changing the element name. -The RenderX XEP product and FOP follow the XSL-FO standard -and need to use wrapper. - - - - - - - -monospace.verbatim.font.width -length - - -monospace.verbatim.font.width -Width of a single monospace font character - - - - -<xsl:param name="monospace.verbatim.font.width">0.60em</xsl:param> - - - -Description - -Specifies with em units the width of a single character -of the monospace font. The default value is 0.6em. - -This parameter is only used when a screen -or programlisting element has a -width attribute, which is -expressed as a plain integer to indicate the maximum character count -of each line. -To convert this character count to an actual maximum width -measurement, the width of the font characters must be provided. -Different monospace fonts have different character width, -so this parameter should be adjusted to fit the -monospace font being used. - - - - - - - -exsl.node.set.available -boolean - - -exsl.node.set.available -Is the test function-available('exsl:node-set') true? - - - -<xsl:param name="exsl.node.set.available"> - <xsl:choose> - <xsl:when exsl:foo="" test="function-available('exsl:node-set') or contains(system-property('xsl:vendor'), 'Apache Software Foundation')">1</xsl:when> - <xsl:otherwise>0</xsl:otherwise> - </xsl:choose> -</xsl:param> - - - -Description - -If non-zero, -then the exsl:node-set() function is available to be used in -the stylesheet. -If zero, then the function is not available. -This param automatically detects the presence of -the function and does not normally need to be set manually. - -This param was created to handle a long-standing -bug in the Xalan processor that fails to detect the -function even though it is available. - - - - - - -bookmarks.collapse -boolean - - -bookmarks.collapse -Specifies the initial state of bookmarks - - - - -<xsl:param name="bookmarks.collapse" select="1"></xsl:param> - - - -Description - -If non-zero, the bookmark tree is collapsed so that only the -top-level bookmarks are displayed initially. Otherwise, the whole tree -of bookmarks is displayed. - -This parameter currently works with FOP 0.93 or later. - - - - - -Graphics - - -graphic.default.extension -string - - -graphic.default.extension -Default extension for graphic filenames - - - -<xsl:param name="graphic.default.extension"></xsl:param> - - -Description - -If a graphic or mediaobject -includes a reference to a filename that does not include an extension, -and the format attribute is -unspecified, the default extension will be used. - - - - - - - -default.image.width -length - - -default.image.width -The default width of images - - - - -<xsl:param name="default.image.width"></xsl:param> - - - -Description - -If specified, this value will be used for the -width attribute on -images that do not specify any -viewport -dimensions. - - - - - - -preferred.mediaobject.role -string - - -preferred.mediaobject.role -Select which mediaobject to use based on -this value of an object's role attribute. - - - - - -<xsl:param name="preferred.mediaobject.role"></xsl:param> - - - -Description - -A mediaobject may contain several objects such as imageobjects. -If the parameter use.role.for.mediaobject is -non-zero, then the role attribute on -imageobjects and other objects within a -mediaobject container will be used to select which object -will be used. If one of the objects has a role value that matches the -preferred.mediaobject.role parameter, then it -has first priority for selection. If more than one has such a role -value, the first one is used. - - -See the use.role.for.mediaobject parameter -for the sequence of selection. - - - - - -use.role.for.mediaobject -boolean - - -use.role.for.mediaobject -Use role attribute -value for selecting which of several objects within a mediaobject to use. - - - - - -<xsl:param name="use.role.for.mediaobject" select="1"></xsl:param> - - - -Description - -If non-zero, the role attribute on -imageobjects or other objects within a mediaobject container will be used to select which object will be -used. - - -The order of selection when then parameter is non-zero is: - - - - If the stylesheet parameter preferred.mediaobject.role has a value, then the object whose role equals that value is selected. - - -Else if an object's role attribute has a value of -html for HTML processing or -fo for FO output, then the first -of such objects is selected. - - - -Else the first suitable object is selected. - - - -If the value of -use.role.for.mediaobject -is zero, then role attributes are not considered -and the first suitable object -with or without a role value is used. - - - - - - -ignore.image.scaling -boolean - - -ignore.image.scaling -Tell the stylesheets to ignore the author's image scaling attributes - - - - -<xsl:param name="ignore.image.scaling" select="0"></xsl:param> - - - -Description - -If non-zero, the scaling attributes on graphics and media objects are -ignored. - - - - - - -img.src.path -string - - -img.src.path -Path to HTML/FO image files - - - -<xsl:param name="img.src.path"></xsl:param> - - -Description - -Add a path prefix to the value of the fileref -attribute of graphic, inlinegraphic, and imagedata elements. The resulting -compound path is used in the output as the value of the src -attribute of img (HTML) or external-graphic (FO). - - - -The path given by img.src.path could be relative to the directory where the HTML/FO -files are created, or it could be an absolute URI. -The default value is empty. -Be sure to include a trailing slash if needed. - - -This prefix is not applied to any filerefs that start -with "/" or contain "//:". - - - - - - - -keep.relative.image.uris -boolean - - -keep.relative.image.uris -Should image URIs be resolved against xml:base? - - - - - -<xsl:param name="keep.relative.image.uris" select="0"></xsl:param> - - - -Description - -If non-zero, relative URIs (in, for example -fileref attributes) will be used in the generated -output. Otherwise, the URIs will be made absolute with respect to the -base URI. - -Note that the stylesheets calculate (and use) the absolute form -for some purposes, this only applies to the resulting output. - - - - - -Pagination and General Styles - -
Understanding XSL FO Margins - -To make sense of the parameters in this section, it's useful to -consider . - -
- Page Model - - - - - - - - Figure showing page margins - - This figure shows the physical page with the various FO page regions - identified. - - -
- -First, let's consider the regions on the page. - -The white region is the physical page. Its dimensions are determined by -the page.height and page.width -parameters. - -The yellow region is the region-body. The size and placement of -the region body is constrained by the dimensions labelled in the -figure. - -The pink region at the top of the page is the region-before. The -darker area inside the region-before is the header text. In XSL, the default -display alignment for a region is before, but the -DocBook stylesheets still explicitly make it before. That's -why the darker area is at the top. - -The pink region at the bottom of the page is the region-after. -The darker area is the footer text. In XSL, the default display -alignment for a region is before, -but the DocBook stylesheets explicitly make it -after. That's why the darker area is at the bottom. - -The dimensions in the figure are: - - -The page-master margin-top. - -The region-before extent. - -The region-body margin-top. - -The region-after extent. - -The page-master margin-bottom. - -The region-body margin-bottom. - -The sum of the page-master margin-left and the -region-body margin-left. In DocBook, the region-body margin-left is -zero by default, so this is simply the page-master margin-left. - -The sum of the page-master margin-right and the -region-body margin-right. In DocBook, the region-body margin-right is -zero by default, so this is simply the page-master margin-right. - - - -
-
- - - -page.height -length - - -page.height -The height of the physical page - - - -<xsl:param name="page.height"> - <xsl:choose> - <xsl:when test="$page.orientation = 'portrait'"> - <xsl:value-of select="$page.height.portrait"></xsl:value-of> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="$page.width.portrait"></xsl:value-of> - </xsl:otherwise> - </xsl:choose> -</xsl:param> - - -Description - -The page height is generally calculated from the -paper.type and -page.orientation parameters. - - - - - - - -page.height.portrait -length - - -page.height.portrait -Specify the physical size of the long edge of the page - - - -<xsl:param name="page.height.portrait"> - <xsl:choose> - <xsl:when test="$paper.type = 'A4landscape'">210mm</xsl:when> - <xsl:when test="$paper.type = 'USletter'">11in</xsl:when> - <xsl:when test="$paper.type = 'USlandscape'">8.5in</xsl:when> - <xsl:when test="$paper.type = '4A0'">2378mm</xsl:when> - <xsl:when test="$paper.type = '2A0'">1682mm</xsl:when> - <xsl:when test="$paper.type = 'A0'">1189mm</xsl:when> - <xsl:when test="$paper.type = 'A1'">841mm</xsl:when> - <xsl:when test="$paper.type = 'A2'">594mm</xsl:when> - <xsl:when test="$paper.type = 'A3'">420mm</xsl:when> - <xsl:when test="$paper.type = 'A4'">297mm</xsl:when> - <xsl:when test="$paper.type = 'A5'">210mm</xsl:when> - <xsl:when test="$paper.type = 'A6'">148mm</xsl:when> - <xsl:when test="$paper.type = 'A7'">105mm</xsl:when> - <xsl:when test="$paper.type = 'A8'">74mm</xsl:when> - <xsl:when test="$paper.type = 'A9'">52mm</xsl:when> - <xsl:when test="$paper.type = 'A10'">37mm</xsl:when> - <xsl:when test="$paper.type = 'B0'">1414mm</xsl:when> - <xsl:when test="$paper.type = 'B1'">1000mm</xsl:when> - <xsl:when test="$paper.type = 'B2'">707mm</xsl:when> - <xsl:when test="$paper.type = 'B3'">500mm</xsl:when> - <xsl:when test="$paper.type = 'B4'">353mm</xsl:when> - <xsl:when test="$paper.type = 'B5'">250mm</xsl:when> - <xsl:when test="$paper.type = 'B6'">176mm</xsl:when> - <xsl:when test="$paper.type = 'B7'">125mm</xsl:when> - <xsl:when test="$paper.type = 'B8'">88mm</xsl:when> - <xsl:when test="$paper.type = 'B9'">62mm</xsl:when> - <xsl:when test="$paper.type = 'B10'">44mm</xsl:when> - <xsl:when test="$paper.type = 'C0'">1297mm</xsl:when> - <xsl:when test="$paper.type = 'C1'">917mm</xsl:when> - <xsl:when test="$paper.type = 'C2'">648mm</xsl:when> - <xsl:when test="$paper.type = 'C3'">458mm</xsl:when> - <xsl:when test="$paper.type = 'C4'">324mm</xsl:when> - <xsl:when test="$paper.type = 'C5'">229mm</xsl:when> - <xsl:when test="$paper.type = 'C6'">162mm</xsl:when> - <xsl:when test="$paper.type = 'C7'">114mm</xsl:when> - <xsl:when test="$paper.type = 'C8'">81mm</xsl:when> - <xsl:when test="$paper.type = 'C9'">57mm</xsl:when> - <xsl:when test="$paper.type = 'C10'">40mm</xsl:when> - <xsl:otherwise>11in</xsl:otherwise> - </xsl:choose> -</xsl:param> - - -Description - -The portrait page height is the length of the long -edge of the physical page. - - - - - - - -page.margin.bottom -length - - -page.margin.bottom -The bottom margin of the page - - - - -<xsl:param name="page.margin.bottom">0.5in</xsl:param> - - - -Description - -The bottom page margin is the distance from the bottom of the region-after -to the physical bottom of the page. - - - - - - - -page.margin.inner -length - - -page.margin.inner -The inner page margin - - - -<xsl:param name="page.margin.inner"> - <xsl:choose> - <xsl:when test="$double.sided != 0">1.25in</xsl:when> - <xsl:otherwise>1in</xsl:otherwise> - </xsl:choose> -</xsl:param> - - -Description - -The inner page margin is the distance from bound edge of the -page to the first column of text. - -The inner page margin is the distance from bound edge of the -page to the outer edge of the first column of text. - -In left-to-right text direction, -this is the left margin of recto (front side) pages. -For single-sided output, it is the left margin -of all pages. - -In right-to-left text direction, -this is the right margin of recto pages. -For single-sided output, this is the -right margin of all pages. - - -Current versions (at least as of version 4.13) -of the XEP XSL-FO processor do not -correctly handle these margin settings for documents -with right-to-left text direction. -The workaround in that situation is to reverse -the values for page.margin.inner -and page.margin.outer, until -this bug is fixed by RenderX. It does not affect documents -with left-to-right text direction. - - - - - - - -page.margin.outer -length - - -page.margin.outer -The outer page margin - - - -<xsl:param name="page.margin.outer"> - <xsl:choose> - <xsl:when test="$double.sided != 0">0.75in</xsl:when> - <xsl:otherwise>1in</xsl:otherwise> - </xsl:choose> -</xsl:param> - - -Description - -The outer page margin is the distance from non-bound edge of the -page to the outer edge of the last column of text. - -In left-to-right text direction, -this is the right margin of recto (front side) pages. -For single-sided output, it is the right margin -of all pages. - -In right-to-left text direction, -this is the left margin of recto pages. -For single-sided output, this is the -left margin of all pages. - - -Current versions (at least as of version 4.13) -of the XEP XSL-FO processor do not -correctly handle these margin settings for documents -with right-to-left text direction. -The workaround in that situation is to reverse -the values for page.margin.inner -and page.margin.outer, until -this bug is fixed by RenderX. It does not affect documents -with left-to-right text direction. - - - - - - - -page.margin.top -length - - -page.margin.top -The top margin of the page - - - - -<xsl:param name="page.margin.top">0.5in</xsl:param> - - - -Description - -The top page margin is the distance from the physical top of the -page to the top of the region-before. - - - - - - -page.orientation -list -portrait -landscape - - -page.orientation -Select the page orientation - - - - -<xsl:param name="page.orientation">portrait</xsl:param> - - - -Description - - Select one from portrait or landscape. -In portrait orientation, the short edge is horizontal; in -landscape orientation, it is vertical. - - - - - - - -page.width -length - - -page.width -The width of the physical page - - - -<xsl:param name="page.width"> - <xsl:choose> - <xsl:when test="$page.orientation = 'portrait'"> - <xsl:value-of select="$page.width.portrait"></xsl:value-of> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="$page.height.portrait"></xsl:value-of> - </xsl:otherwise> - </xsl:choose> -</xsl:param> - - -Description - -The page width is generally calculated from the -paper.type and -page.orientation parameters. - - - - - - -page.width.portrait -length - - -page.width.portrait -Specify the physical size of the short edge of the page - - - -<xsl:param name="page.width.portrait"> - <xsl:choose> - <xsl:when test="$paper.type = 'USletter'">8.5in</xsl:when> - <xsl:when test="$paper.type = '4A0'">1682mm</xsl:when> - <xsl:when test="$paper.type = '2A0'">1189mm</xsl:when> - <xsl:when test="$paper.type = 'A0'">841mm</xsl:when> - <xsl:when test="$paper.type = 'A1'">594mm</xsl:when> - <xsl:when test="$paper.type = 'A2'">420mm</xsl:when> - <xsl:when test="$paper.type = 'A3'">297mm</xsl:when> - <xsl:when test="$paper.type = 'A4'">210mm</xsl:when> - <xsl:when test="$paper.type = 'A5'">148mm</xsl:when> - <xsl:when test="$paper.type = 'A6'">105mm</xsl:when> - <xsl:when test="$paper.type = 'A7'">74mm</xsl:when> - <xsl:when test="$paper.type = 'A8'">52mm</xsl:when> - <xsl:when test="$paper.type = 'A9'">37mm</xsl:when> - <xsl:when test="$paper.type = 'A10'">26mm</xsl:when> - <xsl:when test="$paper.type = 'B0'">1000mm</xsl:when> - <xsl:when test="$paper.type = 'B1'">707mm</xsl:when> - <xsl:when test="$paper.type = 'B2'">500mm</xsl:when> - <xsl:when test="$paper.type = 'B3'">353mm</xsl:when> - <xsl:when test="$paper.type = 'B4'">250mm</xsl:when> - <xsl:when test="$paper.type = 'B5'">176mm</xsl:when> - <xsl:when test="$paper.type = 'B6'">125mm</xsl:when> - <xsl:when test="$paper.type = 'B7'">88mm</xsl:when> - <xsl:when test="$paper.type = 'B8'">62mm</xsl:when> - <xsl:when test="$paper.type = 'B9'">44mm</xsl:when> - <xsl:when test="$paper.type = 'B10'">31mm</xsl:when> - <xsl:when test="$paper.type = 'C0'">917mm</xsl:when> - <xsl:when test="$paper.type = 'C1'">648mm</xsl:when> - <xsl:when test="$paper.type = 'C2'">458mm</xsl:when> - <xsl:when test="$paper.type = 'C3'">324mm</xsl:when> - <xsl:when test="$paper.type = 'C4'">229mm</xsl:when> - <xsl:when test="$paper.type = 'C5'">162mm</xsl:when> - <xsl:when test="$paper.type = 'C6'">114mm</xsl:when> - <xsl:when test="$paper.type = 'C7'">81mm</xsl:when> - <xsl:when test="$paper.type = 'C8'">57mm</xsl:when> - <xsl:when test="$paper.type = 'C9'">40mm</xsl:when> - <xsl:when test="$paper.type = 'C10'">28mm</xsl:when> - <xsl:otherwise>8.5in</xsl:otherwise> - </xsl:choose> -</xsl:param> - - -Description - -The portrait page width is the length of the short -edge of the physical page. - - - - - - - -paper.type -list -open -open -USletter8.5x11in -USlandscape11x8.5in -4A02378x1682mm -2A01682x1189mm -A01189x841mm -A1841x594mm -A2594x420mm -A3420x297mm -A4297x210mm -A5210x148mm -A6148x105mm -A7105x74mm -A874x52mm -A952x37mm -A1037x26mm -B01414x1000mm -B11000x707mm -B2707x500mm -B3500x353mm -B4353x250mm -B5250x176mm -B6176x125mm -B7125x88mm -B888x62mm -B962x44mm -B1044x31mm -C01297x917mm -C1917x648mm -C2648x458mm -C3458x324mm -C4324x229mm -C5229x162mm -C6162x114mm -C7114x81mm -C881x57mm -C957x40mm -C1040x28mm - - -paper.type -Select the paper type - - - - -<xsl:param name="paper.type">USletter</xsl:param> - - - -Description - -The paper type is a convenient way to specify the paper size. -The list of known paper sizes includes USletter and most of the A, -B, and C sizes. See page.width.portrait, for example. - - - - - - - - - -double.sided -boolean - - -double.sided -Is the document to be printed double sided? - - - - -<xsl:param name="double.sided" select="0"></xsl:param> - - - -Description - -Double-sided documents are printed with a slightly wider margin -on the binding edge of the page. - -FIXME: The current set of parameters does not take writing direction -into account. - - - - - - -body.margin.bottom -length - - -body.margin.bottom -The bottom margin of the body text - - - - -<xsl:param name="body.margin.bottom">0.5in</xsl:param> - - - -Description - -The body bottom margin is the distance from the last line of text -in the page body to the bottom of the region-after. - - - - - - - -body.margin.top -length - - -body.margin.top -To specify the size of the top margin of a page - - - - -<xsl:param name="body.margin.top">0.5in</xsl:param> - - - -Description - -The body top margin is the distance from the top of the -region-before to the first line of text in the page body. - - - - - - -body.start.indent -length - - -body.start.indent -The start-indent for the body text - - - - -<xsl:param name="body.start.indent"> - <xsl:choose> - <xsl:when test="$fop.extensions != 0">0pt</xsl:when> - <xsl:when test="$passivetex.extensions != 0">0pt</xsl:when> - <xsl:otherwise>4pc</xsl:otherwise> - </xsl:choose> -</xsl:param> - - - -Description - -This parameter provides -the means of indenting the body text relative to -section titles. -For left-to-right text direction, it indents the left side. -For right-to-left text direction, it indents the right side. -It is used in place of the -title.margin.left for -all XSL-FO processors except FOP 0.25. -It enables support for side floats to appear -in the indented margin area. - -This start-indent property is added to the fo:flow -for certain page sequences. Which page-sequences it is -applied to is determined by the template named -set.flow.properties. -By default, that template adds it to the flow -for page-sequences using the body -master-reference, as well as appendixes and prefaces. - -If this parameter is used, section titles should have -a start-indent value of 0pt if they are to be -outdented relative to the body text. - - -If you are using FOP, then set this parameter to a zero -width value and set the title.margin.left -parameter to the negative value of the desired indent. - - -See also body.end.indent and -title.margin.left. - - - - - - - -body.end.indent -length - - -body.end.indent -The end-indent for the body text - - - - -<xsl:param name="body.end.indent">0pt</xsl:param> - - - -Description - -This end-indent property is added to the fo:flow -for certain page sequences. Which page-sequences it is -applied to is determined by the template named -set.flow.properties. -By default, that template adds it to the flow -for page-sequences using the body -master-reference, as well as appendixes and prefaces. - - -See also body.start.indent. - - - - - - - -alignment - list - open - left - start - right - end - center - justify - - -alignment -Specify the default text alignment - - - -<xsl:param name="alignment">justify</xsl:param> - - -Description - -The default text alignment is used for most body text. -Allowed values are -left, -right, -start, -end, -center, -justify. -The default value is justify. - - - - - - - -hyphenate -list -closed -true -false - - -hyphenate -Specify hyphenation behavior - - - -<xsl:param name="hyphenate">true</xsl:param> - - -Description - -If true, words may be hyphenated. Otherwise, they may not. - - - - - - - -line-height -string - - -line-height -Specify the line-height property - - - - -<xsl:param name="line-height">normal</xsl:param> - - - -Description - -Sets the line-height property. - - - - - - -column.count.back -integer - - -column.count.back -Number of columns on back matter pages - - - - -<xsl:param name="column.count.back" select="1"></xsl:param> - - - -Description - -Number of columns on back matter (appendix, glossary, etc.) pages. - - - - - - -column.count.body -integer - - -column.count.body -Number of columns on body pages - - - - -<xsl:param name="column.count.body" select="1"></xsl:param> - - - -Description - -Number of columns on body pages. - - - - - - -column.count.front -integer - - -column.count.front -Number of columns on front matter pages - - - - -<xsl:param name="column.count.front" select="1"></xsl:param> - - - -Description - -Number of columns on front matter (dedication, preface, etc.) pages. - - - - - - -column.count.index -integer - - -column.count.index -Number of columns on index pages - - - - -<xsl:param name="column.count.index">2</xsl:param> - - - -Description - -Number of columns on index pages. - - - - - - -column.count.lot -integer - - -column.count.lot -Number of columns on a 'List-of-Titles' page - - - - -<xsl:param name="column.count.lot" select="1"></xsl:param> - - - -Description - -Number of columns on a page sequence containing the Table of Contents, -List of Figures, etc. - - - - - - -column.count.titlepage -integer - - -column.count.titlepage -Number of columns on a title page - - - - -<xsl:param name="column.count.titlepage" select="1"></xsl:param> - - - -Description - -Number of columns on a title page - - - - - - -column.gap.back -length - - -column.gap.back -Gap between columns in back matter - - - - -<xsl:param name="column.gap.back">12pt</xsl:param> - - - -Description - -Specifies the gap between columns in back matter (if -column.count.back is greater than one). - - - - - - -column.gap.body -length - - -column.gap.body -Gap between columns in the body - - - - -<xsl:param name="column.gap.body">12pt</xsl:param> - - - -Description - -Specifies the gap between columns in body matter (if -column.count.body is greater than one). - - - - - - -column.gap.front -length - - -column.gap.front -Gap between columns in the front matter - - - - -<xsl:param name="column.gap.front">12pt</xsl:param> - - - -Description - -Specifies the gap between columns in front matter (if -column.count.front is greater than one). - - - - - - -column.gap.index -length - - -column.gap.index -Gap between columns in the index - - - - -<xsl:param name="column.gap.index">12pt</xsl:param> - - - -Description - -Specifies the gap between columns in indexes (if -column.count.index is greater than one). - - - - - - -column.gap.lot -length - - -column.gap.lot -Gap between columns on a 'List-of-Titles' page - - - - -<xsl:param name="column.gap.lot">12pt</xsl:param> - - - -Description - -Specifies the gap between columns on 'List-of-Titles' pages (if -column.count.lot is greater than one). - - - - - - -column.gap.titlepage -length - - -column.gap.titlepage -Gap between columns on title pages - - - - -<xsl:param name="column.gap.titlepage">12pt</xsl:param> - - - -Description - -Specifies the gap between columns on title pages (if -column.count.titlepage is greater than one). - - - - - - - -region.after.extent -length - - -region.after.extent -Specifies the height of the footer. - - - - -<xsl:param name="region.after.extent">0.4in</xsl:param> - - - -Description - -The region after extent is the height of the area where footers -are printed. - - - - - - - -region.before.extent -length - - -region.before.extent -Specifies the height of the header - - - - -<xsl:param name="region.before.extent">0.4in</xsl:param> - - - -Description - -The region before extent is the height of the area where headers -are printed. - - - - - - - -default.units -list -cm -mm -in -pt -pc -px -em - - -default.units -Default units for an unqualified dimension - - - - -<xsl:param name="default.units">pt</xsl:param> - - - -Description - -If an unqualified dimension is encountered (for example, in a -graphic width), the default.units will be used for the -units. Unqualified dimensions are not allowed in XSL Formatting Objects. - - - - - - - -normal.para.spacing -attribute set - - -normal.para.spacing -What space do you want between normal paragraphs - - - -<xsl:attribute-set name="normal.para.spacing"> - <xsl:attribute name="space-before.optimum">1em</xsl:attribute> - <xsl:attribute name="space-before.minimum">0.8em</xsl:attribute> - <xsl:attribute name="space-before.maximum">1.2em</xsl:attribute> -</xsl:attribute-set> - -Description -Specify the spacing required between normal paragraphs - - - - - -body.font.master - number - - -body.font.master -Specifies the default point size for body text - - - - -<xsl:param name="body.font.master">10</xsl:param> - - - -Description - -The body font size is specified in two parameters -(body.font.master and body.font.size) -so that math can be performed on the font size by XSLT. - - - - - - - -body.font.size -length - - -body.font.size -Specifies the default font size for body text - - - - -<xsl:param name="body.font.size"> - <xsl:value-of select="$body.font.master"></xsl:value-of><xsl:text>pt</xsl:text> -</xsl:param> - - -Description - -The body font size is specified in two parameters -(body.font.master and body.font.size) -so that math can be performed on the font size by XSLT. - - - - - - - -footnote.font.size -length - - -footnote.font.size -The font size for footnotes - - - -<xsl:param name="footnote.font.size"> - <xsl:value-of select="$body.font.master * 0.8"></xsl:value-of><xsl:text>pt</xsl:text> -</xsl:param> - - -Description - -The footnote font size is used for...footnotes! - - - - - - - -title.margin.left -length - - -title.margin.left -Adjust the left margin for titles - - - - -<xsl:param name="title.margin.left"> - <xsl:choose> - <xsl:when test="$fop.extensions != 0">-4pc</xsl:when> - <xsl:when test="$passivetex.extensions != 0">0pt</xsl:when> - <xsl:otherwise>0pt</xsl:otherwise> - </xsl:choose> -</xsl:param> - - - -Description - -This parameter provides -the means of adjusting the left margin for titles -when the XSL-FO processor being used is -an old version of FOP (0.25 and earlier). -It is only useful when the fop.extensions -is nonzero. - -The left margin of the body region -is calculated to include this space, -and titles are outdented to the left outside -the body region by this amount, -effectively leaving titles at the intended left margin -and the body text indented. -Currently this method is only used for old FOP because -it cannot properly use the body.start.indent -parameter. - - -The default value when the fop.extensions -parameter is nonzero is -4pc, which means the -body text is indented 4 picas relative to -the titles. -The default value when the fop.extensions -parameter equals zero is 0pt, and -the body indent should instead be specified -using the body.start.indent -parameter. - - -If you set the value to zero, be sure to still include -a unit indicator such as 0pt, or -the FO processor will report errors. - - - - - - - -draft.mode -list -no -yes -maybe - - -draft.mode -Select draft mode - - - - -<xsl:param name="draft.mode">maybe</xsl:param> - - - -Description - -Selects draft mode. If draft.mode is -yes, the entire document will be treated -as a draft. If it is no, the entire document -will be treated as a final copy. If it is maybe, -individual sections will be treated as draft or final independently, depending -on how their status attribute is set. - - - - - - - -draft.watermark.image -uri - - -draft.watermark.image -The URI of the image to be used for draft watermarks - - - - -<xsl:param name="draft.watermark.image">http://docbook.sourceforge.net/release/images/draft.png</xsl:param> - - - -Description - -The image to be used for draft watermarks. - - - - - - -headers.on.blank.pages -boolean - - -headers.on.blank.pages -Put headers on blank pages? - - - - -<xsl:param name="headers.on.blank.pages" select="1"></xsl:param> - - - -Description - -If non-zero, headers will be placed on blank pages. - - - - - - -footers.on.blank.pages -boolean - - -footers.on.blank.pages -Put footers on blank pages? - - - - -<xsl:param name="footers.on.blank.pages" select="1"></xsl:param> - - - -Description - -If non-zero, footers will be placed on blank pages. - - - - - - -header.rule -boolean - - -header.rule -Rule under headers? - - - - -<xsl:param name="header.rule" select="1"></xsl:param> - - - -Description - -If non-zero, a rule will be drawn below the page headers. - - - - - - -footer.rule -boolean - - -footer.rule -Rule over footers? - - - - -<xsl:param name="footer.rule" select="1"></xsl:param> - - - -Description - -If non-zero, a rule will be drawn above the page footers. - - - - - - -header.column.widths -string - - -header.column.widths -Specify relative widths of header areas - - - -<xsl:param name="header.column.widths">1 1 1</xsl:param> - - -Description - -Page headers in print output use a three column table -to position text at the left, center, and right side of -the header on the page. -This parameter lets you specify the relative sizes of the -three columns. The default value is -"1 1 1". - -The parameter value must be three numbers, separated -by white space. The first number represents the relative -width of the inside header for -double-sided output. The second number is the relative -width of the center header. The third number is the -relative width of the outside header for -double-sided output. - -For single-sided output, the first number is the -relative width of left header for left-to-right -text direction, or the right header for right-to-left -text direction. -The third number is the -relative width of right header for left-to-right -text direction, or the left header for right-to-left -text direction. - -The numbers are used to specify the column widths -for the table that makes up the header area. -In the FO output, this looks like: - - - -<fo:table-column column-number="1" - column-width="proportional-column-width(1)"/> - - - -The proportional-column-width() -function computes a column width by dividing its -argument by the total of the arguments for all the columns, and -then multiplying the result by the width of the whole table -(assuming all the column specs use the function). -Its argument can be any positive integer or floating point number. -Zero is an acceptable value, although some FO processors -may warn about it, in which case using a very small number might -be more satisfactory. - - -For example, the value "1 2 1" means the center -header should have twice the width of the other areas. -A value of "0 0 1" means the entire header area -is reserved for the right (or outside) header text. -Note that to keep the center area centered on -the page, the left and right values must be -the same. A specification like "1 2 3" means the -center area is no longer centered on the page -since the right area is three times the width of the left area. - - - - - - - -footer.column.widths -string - - -footer.column.widths -Specify relative widths of footer areas - - - -<xsl:param name="footer.column.widths">1 1 1</xsl:param> - - -Description - -Page footers in print output use a three column table -to position text at the left, center, and right side of -the footer on the page. -This parameter lets you specify the relative sizes of the -three columns. The default value is -"1 1 1". - -The parameter value must be three numbers, separated -by white space. The first number represents the relative -width of the inside footer for -double-sided output. The second number is the relative -width of the center footer. The third number is the -relative width of the outside footer for -double-sided output. - -For single-sided output, the first number is the -relative width of left footer for left-to-right -text direction, or the right footer for right-to-left -text direction. -The third number is the -relative width of right footer for left-to-right -text direction, or the left footer for right-to-left -text direction. - -The numbers are used to specify the column widths -for the table that makes up the footer area. -In the FO output, this looks like: - - - -<fo:table-column column-number="1" - column-width="proportional-column-width(1)"/> - - - -The proportional-column-width() -function computes a column width by dividing its -argument by the total of the arguments for all the columns, and -then multiplying the result by the width of the whole table -(assuming all the column specs use the function). -Its argument can be any positive integer or floating point number. -Zero is an acceptable value, although some FO processors -may warn about it, in which case using a very small number might -be more satisfactory. - - -For example, the value "1 2 1" means the center -footer should have twice the width of the other areas. -A value of "0 0 1" means the entire footer area -is reserved for the right (or outside) footer text. -Note that to keep the center area centered on -the page, the left and right values must be -the same. A specification like "1 2 3" means the -center area is no longer centered on the page -since the right area is three times the width of the left area. - - - - - - - -header.table.properties -attribute set - - -header.table.properties -Apply properties to the header layout table - - - - -<xsl:attribute-set name="header.table.properties"> - <xsl:attribute name="table-layout">fixed</xsl:attribute> - <xsl:attribute name="width">100%</xsl:attribute> -</xsl:attribute-set> - - - -Description - -Properties applied to the table that lays out the page header. - - - - - - -header.table.height -length - - -header.table.height -Specify the minimum height of the table containing the running page headers - - - -<xsl:param name="header.table.height">14pt</xsl:param> - - -Description - -Page headers in print output use a three column table -to position text at the left, center, and right side of -the header on the page. -This parameter lets you specify the minimum height -of the single row in the table. -Since this specifies only the minimum height, -the table should automatically grow to fit taller content. -The default value is "14pt". - - - - - - -footer.table.properties -attribute set - - -footer.table.properties -Apply properties to the footer layout table - - - - -<xsl:attribute-set name="footer.table.properties"> - <xsl:attribute name="table-layout">fixed</xsl:attribute> - <xsl:attribute name="width">100%</xsl:attribute> -</xsl:attribute-set> - - - -Description - -Properties applied to the table that lays out the page footer. - - - - - - -footer.table.height -length - - -footer.table.height -Specify the minimum height of the table containing the running page footers - - - -<xsl:param name="footer.table.height">14pt</xsl:param> - - -Description - -Page footers in print output use a three column table -to position text at the left, center, and right side of -the footer on the page. -This parameter lets you specify the minimum height -of the single row in the table. -Since this specifies only the minimum height, -the table should automatically grow to fit taller content. -The default value is "14pt". - - - - - - -header.content.properties -attribute set - - -header.content.properties -Properties of page header content - - - - -<xsl:attribute-set name="header.content.properties"> - <xsl:attribute name="font-family"> - <xsl:value-of select="$body.fontset"></xsl:value-of> - </xsl:attribute> - <xsl:attribute name="margin-left"> - <xsl:value-of select="$title.margin.left"></xsl:value-of> - </xsl:attribute> -</xsl:attribute-set> - - - -Description - -Properties of page header content. - - - - - - -footer.content.properties -attribute set - - -footer.content.properties -Properties of page footer content - - - - -<xsl:attribute-set name="footer.content.properties"> - <xsl:attribute name="font-family"> - <xsl:value-of select="$body.fontset"></xsl:value-of> - </xsl:attribute> - <xsl:attribute name="margin-left"> - <xsl:value-of select="$title.margin.left"></xsl:value-of> - </xsl:attribute> -</xsl:attribute-set> - - - -Description - -Properties of page footer content. - - - - - - -marker.section.level -integer - - -marker.section.level -Control depth of sections shown in running headers or footers - - - - -<xsl:param name="marker.section.level">2</xsl:param> - - - -Description - -The marker.section.level parameter -controls the depth of section levels that may be displayed -in running headers and footers. For example, if the value -is 2 (the default), then titles from sect1 and -sect2 or equivalent section -elements are candidates for use in running headers and -footers. - -Each candidate title is marked in the FO output with a -<fo:marker marker-class-name="section.head.marker"> -element. - -In order for such titles to appear in headers -or footers, the header.content -or footer.content template -must be customized to retrieve the marker using -an output element such as: - - -<fo:retrieve-marker retrieve-class-name="section.head.marker" - retrieve-position="first-including-carryover" - retrieve-boundary="page-sequence"/> - - - - - - -
-Font Families - - -body.font.family -list -open -serif -sans-serif -monospace - - -body.font.family -The default font family for body text - - - - -<xsl:param name="body.font.family">serif</xsl:param> - - - -Description - -The body font family is the default font used for text in the page body. - - - - - - - -dingbat.font.family -list -open -serif -sans-serif -monospace - - -dingbat.font.family -The font family for copyright, quotes, and other symbols - - - - -<xsl:param name="dingbat.font.family">serif</xsl:param> - - - -Description - -The dingbat font family is used for dingbats. If it is defined -as the empty string, no font change is effected around dingbats. - - - - - - - -monospace.font.family -string - - -monospace.font.family -The default font family for monospace environments - - - - -<xsl:param name="monospace.font.family">monospace</xsl:param> - - - -Description - -The monospace font family is used for verbatim environments -(program listings, screens, etc.). - - - - - - - -sans.font.family -string - - -sans.font.family -The default sans-serif font family - - - - -<xsl:param name="sans.font.family">sans-serif</xsl:param> - - - -Description - -The default sans-serif font family. At the present, this isn't -actually used by the stylesheets. - - - - - - - -title.font.family -list -open -serif -sans-serif -monospace - - -title.font.family -The default font family for titles - - - - -<xsl:param name="title.font.family">sans-serif</xsl:param> - - - -Description - -The title font family is used for titles (chapter, section, figure, -etc.) - - - - - - - -symbol.font.family -list -open -serif -sans-serif -monospace - - -symbol.font.family -The font families to be searched for symbols outside - of the body font - - - - -<xsl:param name="symbol.font.family">Symbol,ZapfDingbats</xsl:param> - - - -Description - -A typical body or title font does not contain all -the character glyphs that DocBook supports. This parameter -specifies additional fonts that should be searched for -special characters not in the normal font. -These symbol font names are automatically appended -to the body or title font family name when fonts -are specified in a -font-family -property in the FO output. - -The symbol font names should be entered as a -comma-separated list. The default value is -Symbol,ZapfDingbats. - - - - - - -Property Sets - - -formal.object.properties -attribute set - - -formal.object.properties -Properties associated with a formal object such as a figure, or other component that has a title - - - - -<xsl:attribute-set name="formal.object.properties"> - <xsl:attribute name="space-before.minimum">0.5em</xsl:attribute> - <xsl:attribute name="space-before.optimum">1em</xsl:attribute> - <xsl:attribute name="space-before.maximum">2em</xsl:attribute> - <xsl:attribute name="space-after.minimum">0.5em</xsl:attribute> - <xsl:attribute name="space-after.optimum">1em</xsl:attribute> - <xsl:attribute name="space-after.maximum">2em</xsl:attribute> - <xsl:attribute name="keep-together.within-column">always</xsl:attribute> -</xsl:attribute-set> - - - -Description - -The styling for formal objects in docbook. Specify the spacing -before and after the object. - - - - - - -formal.title.properties -attribute set - - -formal.title.properties -Style the title element of formal object such as a figure. - - - - -<xsl:attribute-set name="formal.title.properties" use-attribute-sets="normal.para.spacing"> - <xsl:attribute name="font-weight">bold</xsl:attribute> - <xsl:attribute name="font-size"> - <xsl:value-of select="$body.font.master * 1.2"></xsl:value-of> - <xsl:text>pt</xsl:text> - </xsl:attribute> - <xsl:attribute name="hyphenate">false</xsl:attribute> - <xsl:attribute name="space-after.minimum">0.4em</xsl:attribute> - <xsl:attribute name="space-after.optimum">0.6em</xsl:attribute> - <xsl:attribute name="space-after.maximum">0.8em</xsl:attribute> -</xsl:attribute-set> - - -Description -Specify how the title should be styled. Specify the font size and weight of the title of the formal object. - - - - - -informal.object.properties -attribute set - - -informal.object.properties -Properties associated with an informal (untitled) object, such as an informalfigure - - - -<xsl:attribute-set name="informal.object.properties"> - <xsl:attribute name="space-before.minimum">0.5em</xsl:attribute> - <xsl:attribute name="space-before.optimum">1em</xsl:attribute> - <xsl:attribute name="space-before.maximum">2em</xsl:attribute> - <xsl:attribute name="space-after.minimum">0.5em</xsl:attribute> - <xsl:attribute name="space-after.optimum">1em</xsl:attribute> - <xsl:attribute name="space-after.maximum">2em</xsl:attribute> -</xsl:attribute-set> - -Description -The styling for informal objects in docbook. Specify the spacing before and after the object. - - - - - -monospace.properties -attribute set - - -monospace.properties -Properties of monospaced content - - - - -<xsl:attribute-set name="monospace.properties"> - <xsl:attribute name="font-family"> - <xsl:value-of select="$monospace.font.family"></xsl:value-of> - </xsl:attribute> -</xsl:attribute-set> - - - -Description - -Specifies the font name for monospaced output. This property set -used to set the font-size as well, but that doesn't work very well -when different fonts are used (as they are in titles and paragraphs, -for example). - -If you want to set the font-size in a customization layer, it's -probably going to be more appropriate to set font-size-adjust, if your -formatter supports it. - - - - - - -verbatim.properties -attribute set - - -verbatim.properties -Properties associated with verbatim text - - - - -<xsl:attribute-set name="verbatim.properties"> - <xsl:attribute name="space-before.minimum">0.8em</xsl:attribute> - <xsl:attribute name="space-before.optimum">1em</xsl:attribute> - <xsl:attribute name="space-before.maximum">1.2em</xsl:attribute> - <xsl:attribute name="space-after.minimum">0.8em</xsl:attribute> - <xsl:attribute name="space-after.optimum">1em</xsl:attribute> - <xsl:attribute name="space-after.maximum">1.2em</xsl:attribute> - <xsl:attribute name="hyphenate">false</xsl:attribute> - <xsl:attribute name="wrap-option">no-wrap</xsl:attribute> - <xsl:attribute name="white-space-collapse">false</xsl:attribute> - <xsl:attribute name="white-space-treatment">preserve</xsl:attribute> - <xsl:attribute name="linefeed-treatment">preserve</xsl:attribute> - <xsl:attribute name="text-align">start</xsl:attribute> -</xsl:attribute-set> - - -Description -This attribute set is used on all verbatim environments. - - - - - - -monospace.verbatim.properties -attribute set - - -monospace.verbatim.properties -What font and size do you want for monospaced content? - - - - -<xsl:attribute-set name="monospace.verbatim.properties" use-attribute-sets="verbatim.properties monospace.properties"> - <xsl:attribute name="text-align">start</xsl:attribute> - <xsl:attribute name="wrap-option">no-wrap</xsl:attribute> -</xsl:attribute-set> - - -Description -Specify the font name and size you want for monospaced output - - - - - -sidebar.properties -attribute set - - -sidebar.properties -Attribute set for sidebar properties - - - - -<xsl:attribute-set name="sidebar.properties" use-attribute-sets="formal.object.properties"> - <xsl:attribute name="border-style">solid</xsl:attribute> - <xsl:attribute name="border-width">1pt</xsl:attribute> - <xsl:attribute name="border-color">black</xsl:attribute> - <xsl:attribute name="background-color">#DDDDDD</xsl:attribute> - <xsl:attribute name="padding-start">12pt</xsl:attribute> - <xsl:attribute name="padding-end">12pt</xsl:attribute> - <xsl:attribute name="padding-top">6pt</xsl:attribute> - <xsl:attribute name="padding-bottom">6pt</xsl:attribute> - <xsl:attribute name="margin-{$direction.align.start}">0pt</xsl:attribute> - <xsl:attribute name="margin-{$direction.align.end}">0pt</xsl:attribute> -<!-- - <xsl:attribute name="margin-top">6pt</xsl:attribute> - <xsl:attribute name="margin-bottom">6pt</xsl:attribute> ---> -</xsl:attribute-set> - - - -Description - -The styling for sidebars. - - - - - - -sidebar.title.properties -attribute set - - -sidebar.title.properties -Attribute set for sidebar titles - - - - -<xsl:attribute-set name="sidebar.title.properties"> - <xsl:attribute name="font-weight">bold</xsl:attribute> - <xsl:attribute name="hyphenate">false</xsl:attribute> - <xsl:attribute name="text-align">start</xsl:attribute> - <xsl:attribute name="keep-with-next.within-column">always</xsl:attribute> -</xsl:attribute-set> - - - -Description - -The styling for sidebars titles. - - - - - - -sidebar.float.type -list -none -before -left -start -right -end -inside -outside - - -sidebar.float.type -Select type of float for sidebar elements - - - - -<xsl:param name="sidebar.float.type">none</xsl:param> - - - -Description - -Selects the type of float for sidebar elements. - - - -If sidebar.float.type is -none, then -no float is used. - - - -If sidebar.float.type is -before, then -the float appears at the top of the page. On some processors, -that may be the next page rather than the current page. - - - - -If sidebar.float.type is -left, -then a left side float is used. - - - - -If sidebar.float.type is -start, -then when the text direction is left-to-right a left side float is used. -When the text direction is right-to-left, a right side float is used. - - - - -If sidebar.float.type is -right, -then a right side float is used. - - - - -If sidebar.float.type is -end, -then when the text direction is left-to-right a right side float is used. -When the text direction is right-to-left, a left side float is used. - - - - -If your XSL-FO processor supports floats positioned on the -inside or -outside -of double-sided pages, then you have those two -options for side floats as well. - - - - - - - - - -sidebar.float.width -length - - -sidebar.float.width -Set the default width for sidebars - - - - -<xsl:param name="sidebar.float.width">1in</xsl:param> - - - -Description - -Sets the default width for sidebars when used as a side float. -The width determines the degree to which the sidebar block intrudes into -the text area. - -If sidebar.float.type is -before or -none, then -this parameter is ignored. - - - - - - - -margin.note.properties -attribute set - - -margin.note.properties -Attribute set for margin.note properties - - - - -<xsl:attribute-set name="margin.note.properties"> - <xsl:attribute name="font-size">90%</xsl:attribute> - <xsl:attribute name="text-align">start</xsl:attribute> -</xsl:attribute-set> - - - -Description - -The styling for margin notes. -By default, margin notes are not implemented for any -element. A stylesheet customization is needed to make -use of this attribute-set. - -You can use a template named floater -to create the customization. -That template can create side floats by specifying the -content and characteristics as template parameters. - - -For example: -<xsl:template match="para[@role='marginnote']"> - <xsl:call-template name="floater"> - <xsl:with-param name="position"> - <xsl:value-of select="$margin.note.float.type"/> - </xsl:with-param> - <xsl:with-param name="width"> - <xsl:value-of select="$margin.note.width"/> - </xsl:with-param> - <xsl:with-param name="content"> - <xsl:apply-imports/> - </xsl:with-param> - </xsl:call-template> -</xsl:template> - - - - - - -margin.note.title.properties -attribute set - - -margin.note.title.properties -Attribute set for margin note titles - - - - -<xsl:attribute-set name="margin.note.title.properties"> - <xsl:attribute name="font-weight">bold</xsl:attribute> - <xsl:attribute name="hyphenate">false</xsl:attribute> - <xsl:attribute name="text-align">start</xsl:attribute> - <xsl:attribute name="keep-with-next.within-column">always</xsl:attribute> -</xsl:attribute-set> - - - -Description - -The styling for margin note titles. - - - - - - -margin.note.float.type -list -none -before -left -start -right -end -inside -outside - - -margin.note.float.type -Select type of float for margin note customizations - - - - -<xsl:param name="margin.note.float.type">none</xsl:param> - - - -Description - -Selects the type of float for margin notes. -DocBook does not define a margin note element, so this -feature must be implemented as a customization of the stylesheet. -See margin.note.properties for -an example. - - - -If margin.note.float.type is -none, then -no float is used. - - - -If margin.note.float.type is -before, then -the float appears at the top of the page. On some processors, -that may be the next page rather than the current page. - - - -If margin.note.float.type is -left or -start, then -a left side float is used. - - - -If margin.note.float.type is -right or -end, then -a right side float is used. - - - -If your XSL-FO processor supports floats positioned on the -inside or -outside -of double-sided pages, then you have those two -options for side floats as well. - - - - - - - - - -margin.note.width -length - - -margin.note.width -Set the default width for margin notes - - - - -<xsl:param name="margin.note.width">1in</xsl:param> - - - -Description - -Sets the default width for margin notes when used as a side -float. The width determines the degree to which the margin note block -intrudes into the text area. - -If margin.note.float.type is -before or -none, then -this parameter is ignored. - - - - - - - -component.title.properties -attribute set - - -component.title.properties -Properties for component titles - - - - -<xsl:attribute-set name="component.title.properties"> - <xsl:attribute name="keep-with-next.within-column">always</xsl:attribute> - <xsl:attribute name="space-before.optimum"><xsl:value-of select="concat($body.font.master, 'pt')"></xsl:value-of></xsl:attribute> - <xsl:attribute name="space-before.minimum"><xsl:value-of select="concat($body.font.master, 'pt * 0.8')"></xsl:value-of></xsl:attribute> - <xsl:attribute name="space-before.maximum"><xsl:value-of select="concat($body.font.master, 'pt * 1.2')"></xsl:value-of></xsl:attribute> - <xsl:attribute name="hyphenate">false</xsl:attribute> - <xsl:attribute name="text-align"> - <xsl:choose> - <xsl:when test="((parent::article | parent::articleinfo | parent::info/parent::article) and not(ancestor::book) and not(self::bibliography)) or (parent::slides | parent::slidesinfo)">center</xsl:when> - <xsl:otherwise>start</xsl:otherwise> - </xsl:choose> - </xsl:attribute> - <xsl:attribute name="start-indent"><xsl:value-of select="$title.margin.left"></xsl:value-of></xsl:attribute> -</xsl:attribute-set> - - - -Description - -The properties common to all component titles. - - - - - - -component.titlepage.properties -attribute set - - -component.titlepage.properties -Properties for component titlepages - - - - -<xsl:attribute-set name="component.titlepage.properties"> -</xsl:attribute-set> - - - -Description - -The properties that are applied to the outer block containing -all the component title page information. -Its main use is to set a span="all" -property on the block that is a direct child of the flow. - -This attribute-set also applies to index titlepages. It is empty by default. - - - - - - -section.title.properties -attribute set - - -section.title.properties -Properties for section titles - - - - -<xsl:attribute-set name="section.title.properties"> - <xsl:attribute name="font-family"> - <xsl:value-of select="$title.font.family"></xsl:value-of> - </xsl:attribute> - <xsl:attribute name="font-weight">bold</xsl:attribute> - <!-- font size is calculated dynamically by section.heading template --> - <xsl:attribute name="keep-with-next.within-column">always</xsl:attribute> - <xsl:attribute name="space-before.minimum">0.8em</xsl:attribute> - <xsl:attribute name="space-before.optimum">1.0em</xsl:attribute> - <xsl:attribute name="space-before.maximum">1.2em</xsl:attribute> - <xsl:attribute name="text-align">start</xsl:attribute> - <xsl:attribute name="start-indent"><xsl:value-of select="$title.margin.left"></xsl:value-of></xsl:attribute> -</xsl:attribute-set> - - - -Description - -The properties common to all section titles. - - - - - - -section.title.level1.properties -attribute set - - -section.title.level1.properties -Properties for level-1 section titles - - - - -<xsl:attribute-set name="section.title.level1.properties"> - <xsl:attribute name="font-size"> - <xsl:value-of select="$body.font.master * 2.0736"></xsl:value-of> - <xsl:text>pt</xsl:text> - </xsl:attribute> -</xsl:attribute-set> - - - -Description - -The properties of level-1 section titles. - - - - - - - -section.title.level2.properties -attribute set - - -section.title.level2.properties -Properties for level-2 section titles - - - - -<xsl:attribute-set name="section.title.level2.properties"> - <xsl:attribute name="font-size"> - <xsl:value-of select="$body.font.master * 1.728"></xsl:value-of> - <xsl:text>pt</xsl:text> - </xsl:attribute> -</xsl:attribute-set> - - - -Description - -The properties of level-2 section titles. - - - - - - -section.title.level3.properties -attribute set - - -section.title.level3.properties -Properties for level-3 section titles - - - - -<xsl:attribute-set name="section.title.level3.properties"> - <xsl:attribute name="font-size"> - <xsl:value-of select="$body.font.master * 1.44"></xsl:value-of> - <xsl:text>pt</xsl:text> - </xsl:attribute> -</xsl:attribute-set> - - - -Description - -The properties of level-3 section titles. - - - - - - -section.title.level4.properties -attribute set - - -section.title.level4.properties -Properties for level-4 section titles - - - - -<xsl:attribute-set name="section.title.level4.properties"> - <xsl:attribute name="font-size"> - <xsl:value-of select="$body.font.master * 1.2"></xsl:value-of> - <xsl:text>pt</xsl:text> - </xsl:attribute> -</xsl:attribute-set> - - - -Description - -The properties of level-4 section titles. - - - - - - -section.title.level5.properties -attribute set - - -section.title.level5.properties -Properties for level-5 section titles - - - - -<xsl:attribute-set name="section.title.level5.properties"> - <xsl:attribute name="font-size"> - <xsl:value-of select="$body.font.master"></xsl:value-of> - <xsl:text>pt</xsl:text> - </xsl:attribute> -</xsl:attribute-set> - - - -Description - -The properties of level-5 section titles. - - - - - - -section.title.level6.properties -attribute set - - -section.title.level6.properties -Properties for level-6 section titles - - - - -<xsl:attribute-set name="section.title.level6.properties"> - <xsl:attribute name="font-size"> - <xsl:value-of select="$body.font.master"></xsl:value-of> - <xsl:text>pt</xsl:text> - </xsl:attribute> -</xsl:attribute-set> - - - -Description - -The properties of level-6 section titles. This property set is actually -used for all titles below level 5. - - - - - - -section.properties -attribute set - - -section.properties -Properties for all section levels - - - - -<xsl:attribute-set name="section.properties"> -</xsl:attribute-set> - - - -Description - -The properties that apply to the containing -block of all section levels, and therefore apply to -the whole section. -This attribute set is inherited by the -more specific attribute sets such as -section.level1.properties. -The default is empty. - - - - - - - -section.level1.properties -attribute set - - -section.level1.properties -Properties for level-1 sections - - - - -<xsl:attribute-set name="section.level1.properties" use-attribute-sets="section.properties"> -</xsl:attribute-set> - - - -Description - -The properties that apply to the containing -block of a level-1 section, and therefore apply to -the whole section. This includes sect1 -elements and section elements at level 1. - - -For example, you could start each level-1 section on -a new page by using: -<xsl:attribute-set name="section.level1.properties"> - <xsl:attribute name="break-before">page</xsl:attribute> -</xsl:attribute-set> - - -This attribute set inherits attributes from the -general section.properties attribute set. - - - - - - - -section.level2.properties -attribute set - - -section.level2.properties -Properties for level-2 sections - - - - -<xsl:attribute-set name="section.level2.properties" use-attribute-sets="section.properties"> -</xsl:attribute-set> - - - -Description - -The properties that apply to the containing -block of a level-2 section, and therefore apply to -the whole section. This includes sect2 -elements and section elements at level 2. - - -For example, you could start each level-2 section on -a new page by using: -<xsl:attribute-set name="section.level2.properties"> - <xsl:attribute name="break-before">page</xsl:attribute> -</xsl:attribute-set> - - -This attribute set inherits attributes from the -general section.properties attribute set. - - - - - - - -section.level3.properties -attribute set - - -section.level3.properties -Properties for level-3 sections - - - - -<xsl:attribute-set name="section.level3.properties" use-attribute-sets="section.properties"> -</xsl:attribute-set> - - - -Description - -The properties that apply to the containing -block of a level-3 section, and therefore apply to -the whole section. This includes sect3 -elements and section elements at level 3. - - -For example, you could start each level-3 section on -a new page by using: -<xsl:attribute-set name="section.level3.properties"> - <xsl:attribute name="break-before">page</xsl:attribute> -</xsl:attribute-set> - - -This attribute set inherits attributes from the -general section.properties attribute set. - - - - - - - -section.level4.properties -attribute set - - -section.level4.properties -Properties for level-4 sections - - - - -<xsl:attribute-set name="section.level4.properties" use-attribute-sets="section.properties"> -</xsl:attribute-set> - - - -Description - -The properties that apply to the containing -block of a level-4 section, and therefore apply to -the whole section. This includes sect4 -elements and section elements at level 4. - - -For example, you could start each level-4 section on -a new page by using: -<xsl:attribute-set name="section.level4.properties"> - <xsl:attribute name="break-before">page</xsl:attribute> -</xsl:attribute-set> - - -This attribute set inherits attributes from the -general section.properties attribute set. - - - - - - - -section.level5.properties -attribute set - - -section.level5.properties -Properties for level-5 sections - - - - -<xsl:attribute-set name="section.level5.properties" use-attribute-sets="section.properties"> -</xsl:attribute-set> - - - -Description - -The properties that apply to the containing -block of a level-5 section, and therefore apply to -the whole section. This includes sect5 -elements and section elements at level 5. - - -For example, you could start each level-5 section on -a new page by using: -<xsl:attribute-set name="section.level5.properties"> - <xsl:attribute name="break-before">page</xsl:attribute> -</xsl:attribute-set> - - -This attribute set inherits attributes from the -general section.properties attribute set. - - - - - - - -section.level6.properties -attribute set - - -section.level6.properties -Properties for level-6 sections - - - - -<xsl:attribute-set name="section.level6.properties" use-attribute-sets="section.properties"> -</xsl:attribute-set> - - - -Description - -The properties that apply to the containing -block of a level 6 or lower section, and therefore apply to -the whole section. This includes -section elements at level 6 and lower. - - -For example, you could start each level-6 section on -a new page by using: -<xsl:attribute-set name="section.level6.properties"> - <xsl:attribute name="break-before">page</xsl:attribute> -</xsl:attribute-set> - - -This attribute set inherits attributes from the -general section.properties attribute set. - - - - - - - -figure.properties -attribute set - - -figure.properties -Properties associated with a figure - - - - -<xsl:attribute-set name="figure.properties" use-attribute-sets="formal.object.properties"></xsl:attribute-set> - - - -Description - -The styling for figures. - - - - - - -example.properties -attribute set - - -example.properties -Properties associated with a example - - - - -<xsl:attribute-set name="example.properties" use-attribute-sets="formal.object.properties"></xsl:attribute-set> - - - -Description - -The styling for examples. - - - - - - -equation.properties -attribute set - - -equation.properties -Properties associated with a equation - - - - -<xsl:attribute-set name="equation.properties" use-attribute-sets="formal.object.properties"></xsl:attribute-set> - - - -Description - -The styling for equations. - - - - - - -table.properties -attribute set - - -table.properties -Properties associated with the block surrounding a table - - - - -<xsl:attribute-set name="table.properties" use-attribute-sets="formal.object.properties"> - <xsl:attribute name="keep-together.within-column">auto</xsl:attribute> -</xsl:attribute-set> - - - -Description - -Block styling properties for tables. This parameter should really -have been called table.block.properties or something -like that, but we’re leaving it to avoid backwards-compatibility -problems. - -See also table.table.properties. - - - - - - -informalfigure.properties -attribute set - - -informalfigure.properties -Properties associated with an informalfigure - - - - -<xsl:attribute-set name="informalfigure.properties" use-attribute-sets="informal.object.properties"></xsl:attribute-set> - - - -Description - -The styling for informalfigures. - - - - - - -informalexample.properties -attribute set - - -informalexample.properties -Properties associated with an informalexample - - - - -<xsl:attribute-set name="informalexample.properties" use-attribute-sets="informal.object.properties"></xsl:attribute-set> - - - -Description - -The styling for informalexamples. - - - - - - -informalequation.properties -attribute set - - -informalequation.properties -Properties associated with an informalequation - - - - -<xsl:attribute-set name="informalequation.properties" use-attribute-sets="informal.object.properties"></xsl:attribute-set> - - - -Description - -The styling for informalequations. - - - - - - -informaltable.properties -attribute set - - -informaltable.properties -Properties associated with the block surrounding an informaltable - - - - -<xsl:attribute-set name="informaltable.properties" use-attribute-sets="informal.object.properties"></xsl:attribute-set> - - - -Description - -Block styling properties for informaltables. This parameter should really -have been called informaltable.block.properties or something -like that, but we’re leaving it to avoid backwards-compatibility -problems. - -See also table.table.properties. - - - - - - -procedure.properties -attribute set - - -procedure.properties -Properties associated with a procedure - - - - -<xsl:attribute-set name="procedure.properties" use-attribute-sets="formal.object.properties"> - <xsl:attribute name="keep-together.within-column">auto</xsl:attribute> -</xsl:attribute-set> - - - -Description - -The styling for procedures. - - - - - - -root.properties -attribute set - - -root.properties -The properties of the fo:root element - - - - -<xsl:attribute-set name="root.properties"> - <xsl:attribute name="font-family"> - <xsl:value-of select="$body.fontset"></xsl:value-of> - </xsl:attribute> - <xsl:attribute name="font-size"> - <xsl:value-of select="$body.font.size"></xsl:value-of> - </xsl:attribute> - <xsl:attribute name="text-align"> - <xsl:value-of select="$alignment"></xsl:value-of> - </xsl:attribute> - <xsl:attribute name="line-height"> - <xsl:value-of select="$line-height"></xsl:value-of> - </xsl:attribute> - <xsl:attribute name="font-selection-strategy">character-by-character</xsl:attribute> - <xsl:attribute name="line-height-shift-adjustment">disregard-shifts</xsl:attribute> - <xsl:attribute name="writing-mode"> - <xsl:value-of select="$direction.mode"></xsl:value-of> - </xsl:attribute> -</xsl:attribute-set> - - - -Description - -This property set is used on the fo:root element of -an FO file. It defines a set of default, global parameters. - - - - - - -qanda.title.properties -attribute set - - -qanda.title.properties -Properties for qanda set titles - - - - -<xsl:attribute-set name="qanda.title.properties"> - <xsl:attribute name="font-family"> - <xsl:value-of select="$title.font.family"></xsl:value-of> - </xsl:attribute> - <xsl:attribute name="font-weight">bold</xsl:attribute> - <!-- font size is calculated dynamically by qanda.heading template --> - <xsl:attribute name="keep-with-next.within-column">always</xsl:attribute> - <xsl:attribute name="space-before.minimum">0.8em</xsl:attribute> - <xsl:attribute name="space-before.optimum">1.0em</xsl:attribute> - <xsl:attribute name="space-before.maximum">1.2em</xsl:attribute> -</xsl:attribute-set> - - - -Description - -The properties common to all qanda set titles. - - - - - - -qanda.title.level1.properties -attribute set - - -qanda.title.level1.properties -Properties for level-1 qanda set titles - - - - -<xsl:attribute-set name="qanda.title.level1.properties"> - <xsl:attribute name="font-size"> - <xsl:value-of select="$body.font.master * 2.0736"></xsl:value-of> - <xsl:text>pt</xsl:text> - </xsl:attribute> -</xsl:attribute-set> - - - -Description - -The properties of level-1 qanda set titles. - - - - - - -qanda.title.level2.properties -attribute set - - -qanda.title.level2.properties -Properties for level-2 qanda set titles - - - - -<xsl:attribute-set name="qanda.title.level2.properties"> - <xsl:attribute name="font-size"> - <xsl:value-of select="$body.font.master * 1.728"></xsl:value-of> - <xsl:text>pt</xsl:text> - </xsl:attribute> -</xsl:attribute-set> - - - -Description - -The properties of level-2 qanda set titles. - - - - - - -qanda.title.level3.properties -attribute set - - -qanda.title.level3.properties -Properties for level-3 qanda set titles - - - - -<xsl:attribute-set name="qanda.title.level3.properties"> - <xsl:attribute name="font-size"> - <xsl:value-of select="$body.font.master * 1.44"></xsl:value-of> - <xsl:text>pt</xsl:text> - </xsl:attribute> -</xsl:attribute-set> - - - -Description - -The properties of level-3 qanda set titles. - - - - - - -qanda.title.level4.properties -attribute set - - -qanda.title.level4.properties -Properties for level-4 qanda set titles - - - - -<xsl:attribute-set name="qanda.title.level4.properties"> - <xsl:attribute name="font-size"> - <xsl:value-of select="$body.font.master * 1.2"></xsl:value-of> - <xsl:text>pt</xsl:text> - </xsl:attribute> -</xsl:attribute-set> - - - -Description - -The properties of level-4 qanda set titles. - - - - - - -qanda.title.level5.properties -attribute set - - -qanda.title.level5.properties -Properties for level-5 qanda set titles - - - - -<xsl:attribute-set name="qanda.title.level5.properties"> - <xsl:attribute name="font-size"> - <xsl:value-of select="$body.font.master"></xsl:value-of> - <xsl:text>pt</xsl:text> - </xsl:attribute> -</xsl:attribute-set> - - - -Description - -The properties of level-5 qanda set titles. - - - - - - -qanda.title.level6.properties -attribute set - - -qanda.title.level6.properties -Properties for level-6 qanda set titles - - - - -<xsl:attribute-set name="qanda.title.level6.properties"> - <xsl:attribute name="font-size"> - <xsl:value-of select="$body.font.master"></xsl:value-of> - <xsl:text>pt</xsl:text> - </xsl:attribute> -</xsl:attribute-set> - - - -Description - -The properties of level-6 qanda set titles. -This property set is actually -used for all titles below level 5. - - - - - - -article.appendix.title.properties -attribute set - - -article.appendix.title.properties -Properties for appendix titles that appear in an article - - - - -<xsl:attribute-set name="article.appendix.title.properties" use-attribute-sets="section.title.properties section.title.level1.properties"> - <xsl:attribute name="margin-{$direction.align.start}"> - <xsl:value-of select="$title.margin.left"></xsl:value-of> - </xsl:attribute> -</xsl:attribute-set> - - - -Description - -The properties for the title of an appendix that -appears inside an article. The default is to use -the properties of sect1 titles. - - - - - - -abstract.properties -attribute set - - -abstract.properties -Properties associated with the block surrounding an abstract - - - - -<xsl:attribute-set name="abstract.properties"> - <xsl:attribute name="start-indent">0.0in</xsl:attribute> - <xsl:attribute name="end-indent">0.0in</xsl:attribute> -</xsl:attribute-set> - - - -Description - -Block styling properties for abstract. - -See also abstract.title.properties. - - - - - - -abstract.title.properties -attribute set - - -abstract.title.properties -Properties for abstract titles - - - - -<xsl:attribute-set name="abstract.title.properties"> - <xsl:attribute name="font-family"><xsl:value-of select="$title.fontset"></xsl:value-of></xsl:attribute> - <xsl:attribute name="font-weight">bold</xsl:attribute> - <xsl:attribute name="keep-with-next.within-column">always</xsl:attribute> - <xsl:attribute name="keep-with-next.within-column">always</xsl:attribute> - <xsl:attribute name="space-before.optimum"><xsl:value-of select="concat($body.font.master, 'pt')"></xsl:value-of></xsl:attribute> - <xsl:attribute name="space-before.minimum"><xsl:value-of select="concat($body.font.master, 'pt * 0.8')"></xsl:value-of></xsl:attribute> - <xsl:attribute name="space-before.maximum"><xsl:value-of select="concat($body.font.master, 'pt * 1.2')"></xsl:value-of></xsl:attribute> - <xsl:attribute name="hyphenate">false</xsl:attribute> - <xsl:attribute name="text-align">center</xsl:attribute> -</xsl:attribute-set> - - - -Description - -The properties for abstract titles. - -See also abstract.properties. - - - - - - -index.page.number.properties -attribute set - - -index.page.number.properties -Properties associated with index page numbers - - - - -<xsl:attribute-set name="index.page.number.properties"> -</xsl:attribute-set> - - - -Description - -Properties associated with page numbers in indexes. -Changing color to indicate the page number is a link is -one possibility. - - - - - - - -revhistory.table.properties -attribute set - - -revhistory.table.properties -The properties of table used for formatting revhistory - - - - -<xsl:attribute-set name="revhistory.table.properties"> -</xsl:attribute-set> - - - -Description - -This property set defines appearance of revhistory table. - - - - - - -revhistory.table.cell.properties -attribute set - - -revhistory.table.cell.properties -The properties of table cells used for formatting revhistory - - - - -<xsl:attribute-set name="revhistory.table.cell.properties"> -</xsl:attribute-set> - - - -Description - -This property set defines appearance of individual cells in revhistory table. - - - - - - -revhistory.title.properties -attribute set - - -revhistory.title.properties -The properties of revhistory title - - - - -<xsl:attribute-set name="revhistory.title.properties"> -</xsl:attribute-set> - - - -Description - -This property set defines appearance of revhistory title. - - - - - -Profiling - -The following parameters can be used for attribute-based -profiling of your document. For more information about profiling, see -Profiling (conditional text). - - - -profile.arch -string - - -profile.arch -Target profile for arch -attribute - - - - -<xsl:param name="profile.arch"></xsl:param> - - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - - - - -profile.audience -string - - -profile.audience -Target profile for audience -attribute - - - - -<xsl:param name="profile.audience"></xsl:param> - - - -Description - -Value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - - - - -profile.condition -string - - -profile.condition -Target profile for condition -attribute - - - - -<xsl:param name="profile.condition"></xsl:param> - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - - - - -profile.conformance -string - - -profile.conformance -Target profile for conformance -attribute - - - - -<xsl:param name="profile.conformance"></xsl:param> - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - - - - -profile.lang -string - - -profile.lang -Target profile for lang -attribute - - - - -<xsl:param name="profile.lang"></xsl:param> - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - - - - -profile.os -string - - -profile.os -Target profile for os -attribute - - - - -<xsl:param name="profile.os"></xsl:param> - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - - - - -profile.revision -string - - -profile.revision -Target profile for revision -attribute - - - - -<xsl:param name="profile.revision"></xsl:param> - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - - - - -profile.revisionflag -string - - -profile.revisionflag -Target profile for revisionflag -attribute - - - - -<xsl:param name="profile.revisionflag"></xsl:param> - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - - - - -profile.role -string - - -profile.role -Target profile for role -attribute - - - - -<xsl:param name="profile.role"></xsl:param> - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - -Note that role is often -used for other purposes than profiling. For example it is commonly -used to get emphasize in bold font: - -<emphasis role="bold">very important</emphasis> - -If you are using role for -these purposes do not forget to add values like bold to -value of this parameter. If you forgot you will get document with -small pieces missing which are very hard to track. - -For this reason it is not recommended to use role attribute for profiling. You should -rather use profiling specific attributes like userlevel, os, arch, condition, etc. - - - - - - - -profile.security -string - - -profile.security -Target profile for security -attribute - - - - -<xsl:param name="profile.security"></xsl:param> - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - - - - -profile.status -string - - -profile.status -Target profile for status -attribute - - - - -<xsl:param name="profile.status"></xsl:param> - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - - - - -profile.userlevel -string - - -profile.userlevel -Target profile for userlevel -attribute - - - - -<xsl:param name="profile.userlevel"></xsl:param> - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - - - - -profile.vendor -string - - -profile.vendor -Target profile for vendor -attribute - - - - -<xsl:param name="profile.vendor"></xsl:param> - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - - - - -profile.wordsize -string - - -profile.wordsize -Target profile for wordsize -attribute - - - - -<xsl:param name="profile.wordsize"></xsl:param> - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - - - - -profile.attribute -string - - -profile.attribute -Name of user-specified profiling attribute - - - - -<xsl:param name="profile.attribute"></xsl:param> - - - -Description - -This parameter is used in conjuction with -profile.value. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - - - - -profile.value -string - - -profile.value -Target profile for user-specified attribute - - - - -<xsl:param name="profile.value"></xsl:param> - - - -Description - -When you are using this parameter you must also specify name of -profiling attribute with parameter -profile.attribute. - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - - - - -profile.separator -string - - -profile.separator -Separator character for compound profile values - - - - -<xsl:param name="profile.separator">;</xsl:param> - - - -Description - -Separator character used for compound profile values. See profile.arch - - - - - -Localization - - -l10n.gentext.language -string - - -l10n.gentext.language -Sets the gentext language - - - - -<xsl:param name="l10n.gentext.language"></xsl:param> - - - -Description - -If this parameter is set to any value other than the empty string, its -value will be used as the value for the language when generating text. Setting -l10n.gentext.language overrides any settings within the -document being formatted. - -It's much more likely that you might want to set the -l10n.gentext.default.language parameter. - - - - - - - l10n.gentext.default.language - string - - - l10n.gentext.default.language - Sets the default language for generated text - - - - -<xsl:param name="l10n.gentext.default.language">en</xsl:param> - - - -Description - -The value of the l10n.gentext.default.language -parameter is used as the language for generated text if no setting is provided -in the source document. - - - - - - -l10n.gentext.use.xref.language -boolean - - -l10n.gentext.use.xref.language -Use the language of target when generating cross-reference text? - - - - -<xsl:param name="l10n.gentext.use.xref.language" select="0"></xsl:param> - - - -Description - -If non-zero, the language of the target will be used when -generating cross reference text. Usually, the current -language is used when generating text (that is, the language of the -element that contains the cross-reference element). But setting this parameter -allows the language of the element pointed to to control -the generated text. - -Consider the following example: - - -<para lang="en">See also <xref linkend="chap3"/>.</para> - - - -Suppose that Chapter 3 happens to be written in German. -If l10n.gentext.use.xref.language is non-zero, the -resulting text will be something like this: - -
-See also Kapital 3. -
- -Where the more traditional rendering would be: - -
-See also Chapter 3. -
- -
-
- - - -l10n.lang.value.rfc.compliant -boolean - - -l10n.lang.value.rfc.compliant -Make value of lang attribute RFC compliant? - - - - -<xsl:param name="l10n.lang.value.rfc.compliant" select="1"></xsl:param> - - - -Description - -If non-zero, ensure that the values for all lang attributes in HTML output are RFC -compliantSection 8.1.1, Language Codes, in the HTML 4.0 Recommendation states that: - -
[RFC1766] defines and explains the language codes -that must be used in HTML documents. -Briefly, language codes consist of a primary code and a possibly -empty series of subcodes: - -language-code = primary-code ( "-" subcode )* - -And in RFC 1766, Tags for the Identification -of Languages, the EBNF for "language tag" is given as: - -Language-Tag = Primary-tag *( "-" Subtag ) -Primary-tag = 1*8ALPHA -Subtag = 1*8ALPHA - -
-
. - -by taking any underscore characters in any lang values found in source documents, and -replacing them with hyphen characters in output HTML files. For -example, zh_CN in a source document becomes -zh-CN in the HTML output form that source. - - -This parameter does not cause any case change in lang values, because RFC 1766 -explicitly states that all "language tags" (as it calls them) "are -to be treated as case insensitive". - -
- -
-
- - - -writing.mode -string - - -writing.mode -Direction of text flow based on locale - - - - -<xsl:param name="writing.mode"> - <xsl:call-template name="gentext"> - <xsl:with-param name="key">writing-mode</xsl:with-param> - <xsl:with-param name="lang"> - <xsl:call-template name="l10n.language"> - <xsl:with-param name="target" select="/*[1]"></xsl:with-param> - </xsl:call-template> - </xsl:with-param> - </xsl:call-template> -</xsl:param> - - - -Description - -Sets direction of text flow and text alignment based on locale. -The value is normally taken from the gentext file for the -lang attribute of the document's root element, using the -key name 'writing-mode' to look it up in the gentext file. -But the param can also be -set on the command line to override that gentext value. - -Accepted values are: - - - lr-tb - - Left-to-right text flow in each line, lines stack top to bottom. - - - - rl-tb - - Right-to-left text flow in each line, lines stack top to bottom. - - - - tb-rl - - Top-to-bottom text flow in each vertical line, lines stack right to left. - Supported by only a few XSL-FO processors. Not supported in HTML output. - - - - lr - - Shorthand for lr-tb. - - - - rl - - Shorthand for rl-tb. - - - - tb - - Shorthand for tb-rl. - - - - - - - - -
-EBNF - - -ebnf.assignment -rtf - - -ebnf.assignment -The EBNF production assignment operator - - - - - -<xsl:param name="ebnf.assignment"> - <fo:inline font-family="{$monospace.font.family}"> - <xsl:text>::=</xsl:text> - </fo:inline> -</xsl:param> - - - -Description - -The ebnf.assignment parameter determines what -text is used to show assignment in productions -in productionsets. - -While ::= is common, so are several -other operators. - - - - - - -ebnf.statement.terminator -rtf - - -ebnf.statement.terminator -Punctuation that ends an EBNF statement. - - - - - -<xsl:param name="ebnf.statement.terminator"></xsl:param> - - - -Description - -The ebnf.statement.terminator parameter determines what -text is used to terminate each production -in productionset. - -Some notations end each statement with a period. - - - - - -Prepress - - -crop.marks -boolean - - -crop.marks -Output crop marks? - - - - -<xsl:param name="crop.marks" select="0"></xsl:param> - - - -Description - -If non-zero, crop marks will be added to each page. Currently this -works only with XEP if you have xep.extensions set. - - - - - - -crop.mark.width -length - - -crop.mark.width -Width of crop marks. - - - - -<xsl:param name="crop.mark.width">0.5pt</xsl:param> - - - -Description - -Width of crop marks. Crop marks are controlled by -crop.marks parameter. - - - - - - -crop.mark.offset -length - - -crop.mark.offset -Length of crop marks. - - - - -<xsl:param name="crop.mark.offset">24pt</xsl:param> - - - -Description - -Length of crop marks. Crop marks are controlled by -crop.marks parameter. - - - - - - -crop.mark.bleed -length - - -crop.mark.bleed -Length of invisible part of crop marks. - - - - -<xsl:param name="crop.mark.bleed">6pt</xsl:param> - - - -Description - -Length of invisible part of crop marks. Crop marks are controlled by -crop.marks parameter. - - - - - - -The Stylesheet - -The param.xsl stylesheet is just a wrapper -around all these parameters. - - -<xsl:stylesheet exclude-result-prefixes="src" version="1.0"> - -<!-- This file is generated from param.xweb --> - -<!-- ******************************************************************** - $Id: param.xweb 8392 2009-04-01 08:47:55Z bobstayton $ - ******************************************************************** - - This file is part of the XSL DocBook Stylesheet distribution. - See ../README or http://docbook.sf.net/release/xsl/current/ for - copyright and other information. - - ******************************************************************** --> - -<src:fragref linkend="abstract.properties.frag"></src:fragref> -<src:fragref linkend="abstract.title.properties.frag"></src:fragref> -<src:fragref linkend="admon.graphics.extension.frag"></src:fragref> -<src:fragref linkend="admon.graphics.frag"></src:fragref> -<src:fragref linkend="admon.graphics.path.frag"></src:fragref> -<src:fragref linkend="admon.textlabel.frag"></src:fragref> -<src:fragref linkend="admonition.properties.frag"></src:fragref> -<src:fragref linkend="admonition.title.properties.frag"></src:fragref> -<src:fragref linkend="graphical.admonition.properties.frag"></src:fragref> -<src:fragref linkend="nongraphical.admonition.properties.frag"></src:fragref> -<src:fragref linkend="alignment.frag"></src:fragref> -<src:fragref linkend="appendix.autolabel.frag"></src:fragref> -<src:fragref linkend="arbortext.extensions.frag"></src:fragref> -<src:fragref linkend="article.appendix.title.properties.frag"></src:fragref> -<src:fragref linkend="author.othername.in.middle.frag"></src:fragref> -<src:fragref linkend="autotoc.label.separator.frag"></src:fragref> -<src:fragref linkend="axf.extensions.frag"></src:fragref> -<src:fragref linkend="biblioentry.item.separator.frag"></src:fragref> -<src:fragref linkend="biblioentry.properties.frag"></src:fragref> -<src:fragref linkend="bibliography.collection.frag"></src:fragref> -<src:fragref linkend="bibliography.numbered.frag"></src:fragref> -<src:fragref linkend="bibliography.style.frag"></src:fragref> -<src:fragref linkend="blockquote.properties.frag"></src:fragref> -<src:fragref linkend="body.font.family.frag"></src:fragref> -<src:fragref linkend="body.font.master.frag"></src:fragref> -<src:fragref linkend="body.font.size.frag"></src:fragref> -<src:fragref linkend="body.margin.bottom.frag"></src:fragref> -<src:fragref linkend="body.margin.top.frag"></src:fragref> -<src:fragref linkend="body.start.indent.frag"></src:fragref> -<src:fragref linkend="body.end.indent.frag"></src:fragref> -<src:fragref linkend="bookmarks.collapse.frag"></src:fragref> -<src:fragref linkend="bridgehead.in.toc.frag"></src:fragref> -<src:fragref linkend="callout.defaultcolumn.frag"></src:fragref> -<src:fragref linkend="callout.graphics.extension.frag"></src:fragref> -<src:fragref linkend="callout.graphics.frag"></src:fragref> -<src:fragref linkend="callout.icon.size.frag"></src:fragref> -<src:fragref linkend="callout.graphics.number.limit.frag"></src:fragref> -<src:fragref linkend="callout.graphics.path.frag"></src:fragref> -<src:fragref linkend="callout.unicode.font.frag"></src:fragref> -<src:fragref linkend="callout.unicode.frag"></src:fragref> -<src:fragref linkend="callout.unicode.number.limit.frag"></src:fragref> -<src:fragref linkend="callout.unicode.start.character.frag"></src:fragref> -<src:fragref linkend="callouts.extension.frag"></src:fragref> -<src:fragref linkend="chapter.autolabel.frag"></src:fragref> -<src:fragref linkend="collect.xref.targets.frag"></src:fragref> -<src:fragref linkend="column.count.back.frag"></src:fragref> -<src:fragref linkend="column.count.body.frag"></src:fragref> -<src:fragref linkend="column.count.front.frag"></src:fragref> -<src:fragref linkend="column.count.index.frag"></src:fragref> -<src:fragref linkend="column.count.lot.frag"></src:fragref> -<src:fragref linkend="column.count.titlepage.frag"></src:fragref> -<src:fragref linkend="column.gap.back.frag"></src:fragref> -<src:fragref linkend="column.gap.body.frag"></src:fragref> -<src:fragref linkend="column.gap.front.frag"></src:fragref> -<src:fragref linkend="column.gap.index.frag"></src:fragref> -<src:fragref linkend="column.gap.lot.frag"></src:fragref> -<src:fragref linkend="column.gap.titlepage.frag"></src:fragref> -<src:fragref linkend="compact.list.item.spacing.frag"></src:fragref> -<src:fragref linkend="component.label.includes.part.label.frag"></src:fragref> -<src:fragref linkend="component.title.properties.frag"></src:fragref> -<src:fragref linkend="component.titlepage.properties.frag"></src:fragref> -<src:fragref linkend="crop.marks.frag"></src:fragref> -<src:fragref linkend="crop.mark.width.frag"></src:fragref> -<src:fragref linkend="crop.mark.offset.frag"></src:fragref> -<src:fragref linkend="crop.mark.bleed.frag"></src:fragref> -<src:fragref linkend="current.docid.frag"></src:fragref> -<src:fragref linkend="default.float.class.frag"></src:fragref> -<src:fragref linkend="default.image.width.frag"></src:fragref> -<src:fragref linkend="default.table.width.frag"></src:fragref> -<src:fragref linkend="default.table.frame.frag"></src:fragref> -<src:fragref linkend="default.table.rules.frag"></src:fragref> -<src:fragref linkend="default.units.frag"></src:fragref> -<src:fragref linkend="dingbat.font.family.frag"></src:fragref> -<src:fragref linkend="double.sided.frag"></src:fragref> -<src:fragref linkend="draft.mode.frag"></src:fragref> -<src:fragref linkend="draft.watermark.image.frag"></src:fragref> -<src:fragref linkend="ebnf.assignment.frag"></src:fragref> -<src:fragref linkend="ebnf.statement.terminator.frag"></src:fragref> -<src:fragref linkend="email.delimiters.enabled.frag"></src:fragref> -<src:fragref linkend="email.mailto.enabled.frag"></src:fragref> -<src:fragref linkend="equation.properties.frag"></src:fragref> -<src:fragref linkend="example.properties.frag"></src:fragref> -<src:fragref linkend="exsl.node.set.available.frag"></src:fragref> -<src:fragref linkend="figure.properties.frag"></src:fragref> -<src:fragref linkend="firstterm.only.link.frag"></src:fragref> -<src:fragref linkend="footer.content.properties.frag"></src:fragref> -<src:fragref linkend="footer.rule.frag"></src:fragref> -<src:fragref linkend="footer.column.widths.frag"></src:fragref> -<src:fragref linkend="footer.table.height.frag"></src:fragref> -<src:fragref linkend="footer.table.properties.frag"></src:fragref> -<src:fragref linkend="footers.on.blank.pages.frag"></src:fragref> -<src:fragref linkend="footnote.font.size.frag"></src:fragref> -<src:fragref linkend="footnote.number.format.frag"></src:fragref> -<src:fragref linkend="footnote.number.symbols.frag"></src:fragref> -<src:fragref linkend="footnote.mark.properties.frag"></src:fragref> -<src:fragref linkend="footnote.properties.frag"></src:fragref> -<src:fragref linkend="footnote.sep.leader.properties.frag"></src:fragref> -<src:fragref linkend="fop.extensions.frag"></src:fragref> -<src:fragref linkend="fop1.extensions.frag"></src:fragref> -<src:fragref linkend="formal.object.properties.frag"></src:fragref> -<src:fragref linkend="formal.procedures.frag"></src:fragref> -<src:fragref linkend="formal.title.placement.frag"></src:fragref> -<src:fragref linkend="formal.title.properties.frag"></src:fragref> -<src:fragref linkend="funcsynopsis.decoration.frag"></src:fragref> -<src:fragref linkend="funcsynopsis.style.frag"></src:fragref> -<src:fragref linkend="function.parens.frag"></src:fragref> -<src:fragref linkend="generate.index.frag"></src:fragref> -<src:fragref linkend="generate.section.toc.level.frag"></src:fragref> -<src:fragref linkend="generate.toc.frag"></src:fragref> -<src:fragref linkend="glossary.as.blocks.frag"></src:fragref> -<src:fragref linkend="glossary.collection.frag"></src:fragref> -<src:fragref linkend="glossary.sort.frag"></src:fragref> -<src:fragref linkend="glossentry.show.acronym.frag"></src:fragref> -<src:fragref linkend="glosslist.as.blocks.frag"></src:fragref> -<src:fragref linkend="glossterm.auto.link.frag"></src:fragref> -<src:fragref linkend="glossterm.separation.frag"></src:fragref> -<src:fragref linkend="glossterm.width.frag"></src:fragref> -<src:fragref linkend="glossentry.list.item.properties.frag"></src:fragref> -<src:fragref linkend="glossterm.list.properties.frag"></src:fragref> -<src:fragref linkend="glossterm.block.properties.frag"></src:fragref> -<src:fragref linkend="glossdef.list.properties.frag"></src:fragref> -<src:fragref linkend="glossdef.block.properties.frag"></src:fragref> -<src:fragref linkend="graphic.default.extension.frag"></src:fragref> -<src:fragref linkend="header.content.properties.frag"></src:fragref> -<src:fragref linkend="header.rule.frag"></src:fragref> -<src:fragref linkend="header.column.widths.frag"></src:fragref> -<src:fragref linkend="header.table.height.frag"></src:fragref> -<src:fragref linkend="header.table.properties.frag"></src:fragref> -<src:fragref linkend="headers.on.blank.pages.frag"></src:fragref> -<src:fragref linkend="highlight.default.language.frag"></src:fragref> -<src:fragref linkend="highlight.source.frag"></src:fragref> -<src:fragref linkend="highlight.xslthl.config.frag"></src:fragref> -<src:fragref linkend="hyphenate.frag"></src:fragref> -<src:fragref linkend="hyphenate.verbatim.frag"></src:fragref> -<src:fragref linkend="hyphenate.verbatim.characters.frag"></src:fragref> -<src:fragref linkend="ignore.image.scaling.frag"></src:fragref> -<src:fragref linkend="img.src.path.frag"></src:fragref> -<src:fragref linkend="index.method.frag"></src:fragref> -<src:fragref linkend="index.on.role.frag"></src:fragref> -<src:fragref linkend="index.on.type.frag"></src:fragref> -<src:fragref linkend="index.page.number.properties.frag"></src:fragref> -<src:fragref linkend="informalequation.properties.frag"></src:fragref> -<src:fragref linkend="informalexample.properties.frag"></src:fragref> -<src:fragref linkend="informalfigure.properties.frag"></src:fragref> -<src:fragref linkend="informal.object.properties.frag"></src:fragref> -<src:fragref linkend="informaltable.properties.frag"></src:fragref> -<src:fragref linkend="index.preferred.page.properties.frag"></src:fragref> -<src:fragref linkend="index.div.title.properties.frag"></src:fragref> -<src:fragref linkend="index.entry.properties.frag"></src:fragref> -<src:fragref linkend="index.number.separator.frag"></src:fragref> -<src:fragref linkend="index.range.separator.frag"></src:fragref> -<src:fragref linkend="index.term.separator.frag"></src:fragref> -<src:fragref linkend="insert.link.page.number.frag"></src:fragref> -<src:fragref linkend="insert.xref.page.number.frag"></src:fragref> -<src:fragref linkend="itemizedlist.properties.frag"></src:fragref> -<src:fragref linkend="itemizedlist.label.properties.frag"></src:fragref> -<src:fragref linkend="itemizedlist.label.width.frag"></src:fragref> -<src:fragref linkend="keep.relative.image.uris.frag"></src:fragref> -<src:fragref linkend="l10n.gentext.default.language.frag"></src:fragref> -<src:fragref linkend="l10n.gentext.language.frag"></src:fragref> -<src:fragref linkend="l10n.gentext.use.xref.language.frag"></src:fragref> -<src:fragref linkend="l10n.lang.value.rfc.compliant.frag"></src:fragref> -<src:fragref linkend="label.from.part.frag"></src:fragref> -<src:fragref linkend="line-height.frag"></src:fragref> -<src:fragref linkend="linenumbering.everyNth.frag"></src:fragref> -<src:fragref linkend="linenumbering.extension.frag"></src:fragref> -<src:fragref linkend="linenumbering.separator.frag"></src:fragref> -<src:fragref linkend="linenumbering.width.frag"></src:fragref> -<src:fragref linkend="list.block.properties.frag"></src:fragref> -<src:fragref linkend="list.block.spacing.frag"></src:fragref> -<src:fragref linkend="list.item.spacing.frag"></src:fragref> -<src:fragref linkend="make.index.markup.frag"></src:fragref> -<src:fragref linkend="make.single.year.ranges.frag"></src:fragref> -<src:fragref linkend="make.year.ranges.frag"></src:fragref> -<src:fragref linkend="margin.note.properties.frag"></src:fragref> -<src:fragref linkend="margin.note.title.properties.frag"></src:fragref> -<src:fragref linkend="margin.note.float.type.frag"></src:fragref> -<src:fragref linkend="margin.note.width.frag"></src:fragref> -<src:fragref linkend="marker.section.level.frag"></src:fragref> -<src:fragref linkend="menuchoice.menu.separator.frag"></src:fragref> -<src:fragref linkend="menuchoice.separator.frag"></src:fragref> -<src:fragref linkend="monospace.font.family.frag"></src:fragref> -<src:fragref linkend="monospace.properties.frag"></src:fragref> -<src:fragref linkend="monospace.verbatim.properties.frag"></src:fragref> -<src:fragref linkend="monospace.verbatim.font.width.frag"></src:fragref> -<src:fragref linkend="nominal.table.width.frag"></src:fragref> -<src:fragref linkend="normal.para.spacing.frag"></src:fragref> -<src:fragref linkend="olink.doctitle.frag"></src:fragref> -<src:fragref linkend="olink.base.uri.frag"></src:fragref> -<src:fragref linkend="olink.debug.frag"></src:fragref> -<src:fragref linkend="olink.properties.frag"></src:fragref> -<src:fragref linkend="olink.lang.fallback.sequence.frag"></src:fragref> -<src:fragref linkend="orderedlist.properties.frag"></src:fragref> -<src:fragref linkend="orderedlist.label.properties.frag"></src:fragref> -<src:fragref linkend="orderedlist.label.width.frag"></src:fragref> -<src:fragref linkend="prefer.internal.olink.frag"></src:fragref> -<src:fragref linkend="insert.olink.page.number.frag"></src:fragref> -<src:fragref linkend="insert.olink.pdf.frag.frag"></src:fragref> -<src:fragref linkend="page.height.frag"></src:fragref> -<src:fragref linkend="page.height.portrait.frag"></src:fragref> -<src:fragref linkend="page.margin.bottom.frag"></src:fragref> -<src:fragref linkend="page.margin.inner.frag"></src:fragref> -<src:fragref linkend="page.margin.outer.frag"></src:fragref> -<src:fragref linkend="page.margin.top.frag"></src:fragref> -<src:fragref linkend="page.orientation.frag"></src:fragref> -<src:fragref linkend="page.width.frag"></src:fragref> -<src:fragref linkend="page.width.portrait.frag"></src:fragref> -<src:fragref linkend="paper.type.frag"></src:fragref> -<src:fragref linkend="part.autolabel.frag"></src:fragref> -<src:fragref linkend="passivetex.extensions.frag"></src:fragref> -<src:fragref linkend="pgwide.properties.frag"></src:fragref> -<src:fragref linkend="preface.autolabel.frag"></src:fragref> -<src:fragref linkend="preferred.mediaobject.role.frag"></src:fragref> -<src:fragref linkend="procedure.properties.frag"></src:fragref> -<src:fragref linkend="process.empty.source.toc.frag"></src:fragref> -<src:fragref linkend="process.source.toc.frag"></src:fragref> -<src:fragref linkend="profile.arch.frag"></src:fragref> -<src:fragref linkend="profile.audience.frag"></src:fragref> -<src:fragref linkend="profile.attribute.frag"></src:fragref> -<src:fragref linkend="profile.condition.frag"></src:fragref> -<src:fragref linkend="profile.conformance.frag"></src:fragref> -<src:fragref linkend="profile.lang.frag"></src:fragref> -<src:fragref linkend="profile.os.frag"></src:fragref> -<src:fragref linkend="profile.revision.frag"></src:fragref> -<src:fragref linkend="profile.revisionflag.frag"></src:fragref> -<src:fragref linkend="profile.role.frag"></src:fragref> -<src:fragref linkend="profile.security.frag"></src:fragref> -<src:fragref linkend="profile.separator.frag"></src:fragref> -<src:fragref linkend="profile.status.frag"></src:fragref> -<src:fragref linkend="profile.userlevel.frag"></src:fragref> -<src:fragref linkend="profile.value.frag"></src:fragref> -<src:fragref linkend="profile.vendor.frag"></src:fragref> -<src:fragref linkend="profile.wordsize.frag"></src:fragref> -<src:fragref linkend="punct.honorific.frag"></src:fragref> -<src:fragref linkend="qanda.defaultlabel.frag"></src:fragref> -<src:fragref linkend="qanda.in.toc.frag"></src:fragref> -<src:fragref linkend="qanda.nested.in.toc.frag"></src:fragref> -<src:fragref linkend="qanda.inherit.numeration.frag"></src:fragref> -<src:fragref linkend="qandadiv.autolabel.frag"></src:fragref> -<src:fragref linkend="qanda.title.level1.properties.frag"></src:fragref> -<src:fragref linkend="qanda.title.level2.properties.frag"></src:fragref> -<src:fragref linkend="qanda.title.level3.properties.frag"></src:fragref> -<src:fragref linkend="qanda.title.level4.properties.frag"></src:fragref> -<src:fragref linkend="qanda.title.level5.properties.frag"></src:fragref> -<src:fragref linkend="qanda.title.level6.properties.frag"></src:fragref> -<src:fragref linkend="qanda.title.properties.frag"></src:fragref> -<src:fragref linkend="refentry.generate.name.frag"></src:fragref> -<src:fragref linkend="refentry.generate.title.frag"></src:fragref> -<src:fragref linkend="refentry.pagebreak.frag"></src:fragref> -<src:fragref linkend="refentry.title.properties.frag"></src:fragref> -<src:fragref linkend="refentry.xref.manvolnum.frag"></src:fragref> -<src:fragref linkend="reference.autolabel.frag"></src:fragref> -<src:fragref linkend="refclass.suppress.frag"></src:fragref> -<src:fragref linkend="region.after.extent.frag"></src:fragref> -<src:fragref linkend="region.before.extent.frag"></src:fragref> -<src:fragref linkend="revhistory.table.properties.frag"></src:fragref> -<src:fragref linkend="revhistory.table.cell.properties.frag"></src:fragref> -<src:fragref linkend="revhistory.title.properties.frag"></src:fragref> -<src:fragref linkend="root.properties.frag"></src:fragref> -<src:fragref linkend="rootid.frag"></src:fragref> -<src:fragref linkend="runinhead.default.title.end.punct.frag"></src:fragref> -<src:fragref linkend="runinhead.title.end.punct.frag"></src:fragref> -<src:fragref linkend="sans.font.family.frag"></src:fragref> -<src:fragref linkend="section.autolabel.frag"></src:fragref> -<src:fragref linkend="section.autolabel.max.depth.frag"></src:fragref> -<src:fragref linkend="section.container.element.frag"></src:fragref> -<src:fragref linkend="section.label.includes.component.label.frag"></src:fragref> -<src:fragref linkend="section.title.level1.properties.frag"></src:fragref> -<src:fragref linkend="section.title.level2.properties.frag"></src:fragref> -<src:fragref linkend="section.title.level3.properties.frag"></src:fragref> -<src:fragref linkend="section.title.level4.properties.frag"></src:fragref> -<src:fragref linkend="section.title.level5.properties.frag"></src:fragref> -<src:fragref linkend="section.title.level6.properties.frag"></src:fragref> -<src:fragref linkend="section.title.properties.frag"></src:fragref> -<src:fragref linkend="section.level1.properties.frag"></src:fragref> -<src:fragref linkend="section.level2.properties.frag"></src:fragref> -<src:fragref linkend="section.level3.properties.frag"></src:fragref> -<src:fragref linkend="section.level4.properties.frag"></src:fragref> -<src:fragref linkend="section.level5.properties.frag"></src:fragref> -<src:fragref linkend="section.level6.properties.frag"></src:fragref> -<src:fragref linkend="section.properties.frag"></src:fragref> -<src:fragref linkend="segmentedlist.as.table.frag"></src:fragref> -<src:fragref linkend="shade.verbatim.frag"></src:fragref> -<src:fragref linkend="shade.verbatim.style.frag"></src:fragref> -<src:fragref linkend="show.comments.frag"></src:fragref> -<src:fragref linkend="sidebar.properties.frag"></src:fragref> -<src:fragref linkend="sidebar.title.properties.frag"></src:fragref> -<src:fragref linkend="sidebar.float.type.frag"></src:fragref> -<src:fragref linkend="sidebar.float.width.frag"></src:fragref> -<src:fragref linkend="simplesect.in.toc.frag"></src:fragref> -<src:fragref linkend="subscript.properties.frag"></src:fragref> -<src:fragref linkend="superscript.properties.frag"></src:fragref> -<src:fragref linkend="symbol.font.family.frag"></src:fragref> -<src:fragref linkend="table.cell.border.color.frag"></src:fragref> -<src:fragref linkend="table.cell.border.style.frag"></src:fragref> -<src:fragref linkend="table.cell.border.thickness.frag"></src:fragref> -<src:fragref linkend="table.cell.padding.frag"></src:fragref> -<src:fragref linkend="table.footnote.number.format.frag"></src:fragref> -<src:fragref linkend="table.footnote.number.symbols.frag"></src:fragref> -<src:fragref linkend="table.footnote.properties.frag"></src:fragref> -<src:fragref linkend="table.frame.border.color.frag"></src:fragref> -<src:fragref linkend="table.frame.border.style.frag"></src:fragref> -<src:fragref linkend="table.frame.border.thickness.frag"></src:fragref> -<src:fragref linkend="table.properties.frag"></src:fragref> -<src:fragref linkend="tablecolumns.extension.frag"></src:fragref> -<src:fragref linkend="table.table.properties.frag"></src:fragref> -<src:fragref linkend="target.database.document.frag"></src:fragref> -<src:fragref linkend="targets.filename.frag"></src:fragref> -<src:fragref linkend="textdata.default.encoding.frag"></src:fragref> -<src:fragref linkend="tex.math.delims.frag"></src:fragref> -<src:fragref linkend="tex.math.in.alt.frag"></src:fragref> -<src:fragref linkend="textinsert.extension.frag"></src:fragref> -<src:fragref linkend="title.font.family.frag"></src:fragref> -<src:fragref linkend="title.margin.left.frag"></src:fragref> -<src:fragref linkend="toc.indent.width.frag"></src:fragref> -<src:fragref linkend="toc.line.properties.frag"></src:fragref> -<src:fragref linkend="toc.margin.properties.frag"></src:fragref> -<src:fragref linkend="toc.max.depth.frag"></src:fragref> -<src:fragref linkend="toc.section.depth.frag"></src:fragref> -<src:fragref linkend="ulink.footnotes.frag"></src:fragref> -<src:fragref linkend="ulink.hyphenate.frag"></src:fragref> -<src:fragref linkend="ulink.hyphenate.chars.frag"></src:fragref> -<src:fragref linkend="ulink.show.frag"></src:fragref> -<src:fragref linkend="use.extensions.frag"></src:fragref> -<src:fragref linkend="use.local.olink.style.frag"></src:fragref> -<src:fragref linkend="use.role.as.xrefstyle.frag"></src:fragref> -<src:fragref linkend="use.role.for.mediaobject.frag"></src:fragref> -<src:fragref linkend="use.svg.frag"></src:fragref> -<src:fragref linkend="variablelist.as.blocks.frag"></src:fragref> -<src:fragref linkend="variablelist.max.termlength.frag"></src:fragref> -<src:fragref linkend="variablelist.term.separator.frag"></src:fragref> -<src:fragref linkend="variablelist.term.properties.frag"></src:fragref> -<src:fragref linkend="variablelist.term.break.after.frag"></src:fragref> -<src:fragref linkend="verbatim.properties.frag"></src:fragref> -<src:fragref linkend="writing.mode.frag"></src:fragref> -<src:fragref linkend="xep.extensions.frag"></src:fragref> -<src:fragref linkend="xep.index.item.properties.frag"></src:fragref> -<src:fragref linkend="xref.label-page.separator.frag"></src:fragref> -<src:fragref linkend="xref.label-title.separator.frag"></src:fragref> -<src:fragref linkend="xref.properties.frag"></src:fragref> -<src:fragref linkend="xref.title-page.separator.frag"></src:fragref> -<src:fragref linkend="xref.with.number.and.title.frag"></src:fragref> - -</xsl:stylesheet> - - - -
diff --git a/docbook-xsl-1.75.2/fo/param.xsl b/docbook-xsl-1.75.2/fo/param.xsl deleted file mode 100644 index b52132e..0000000 --- a/docbook-xsl-1.75.2/fo/param.xsl +++ /dev/null @@ -1,942 +0,0 @@ - - - - - - - - - 0.0in - 0.0in - - - - bold - always - always - - - - false - center - -.png - -images/ - - - - 14pt - bold - false - always - - - 1em - 0.8em - 1.2em - 1em - 0.8em - 1.2em - - - 0.8em - 1em - 1.2em - 0.25in - 0.25in - -justify -A - - - - - - - -. - -. - - 0.5in - -0.5in - -http://docbook.sourceforge.net/release/bibliography/bibliography.xml - - -normal - -0.5in -0.5in -0.5em -1em -2em - -serif -10 - - pt - -0.5in -0.5in - - - 0pt - 0pt - 4pc - - -0pt - - -60 - -.svg - -7pt - -30 -images/callouts/ -ZapfDingbats - -10 -10102 - - -no - - - -2 - - -12pt -12pt -12pt -12pt -12pt -12pt - - 0em - 0em - 0.2em - - - - always - - - - false - - - center - start - - - - - - - -0.5pt -24pt -6pt - - - - left - before - - - - -all -none -pt -serif - -maybe -http://docbook.sourceforge.net/release/images/draft.png - - - - ::= - - - - - - - - - - - 1 - 0 - - - - - - - - - - - - - -1 1 1 -14pt - - fixed - 100% - - - - pt - -1 - - - - 75% - normal - normal - - - - - normal - normal - - 0pt - 0pt - - wrap - treat-as-space - - - black - rule - 1in - - - - - 0.5em - 1em - 2em - 0.5em - 1em - 2em - always - - - -figure before -example before -equation before -table before -procedure before -task before - - - bold - - - pt - - false - 0.4em - 0.6em - 0.8em - - -kr - - - - - -/appendix toc,title -article/appendix nop -/article toc,title -book toc,title,figure,table,example,equation -/chapter toc,title -part toc,title -/preface toc,title -reference toc,title -/sect1 toc -/sect2 toc -/sect3 toc -/sect4 toc -/sect5 toc -/section toc -set toc,title - - - - -no - - -0.25in -2in - - 1em - 0.8em - 1.2em - - - - - 1em - 0.8em - 1.2em - always - always - - - - - .25in - - - - - - - - - - - -1 1 1 -14pt - - fixed - 100% - - - - - -true - - - - -basic - - - - - - - - - 0.5em - 1em - 2em - 0.5em - 1em - 2em - - - - bold - - - 0pt - 14.4pt - - bold - always - - - - 0pt - - - 0pt - - - - -no -no - - - - - 1.0em - - - -en - - - - -normal -5 - - -3 - - 0.2em - 1.5em - - - 1em - 0.8em - 1.2em - 1em - 0.8em - 1.2em - - - 1em - 0.8em - 1.2em - - - - - - 90% - start - - - bold - false - start - always - -none -1in -2 - -+ -monospace - - - - - - - start - no-wrap - -0.60em -6in - - 1em - 0.8em - 1.2em - -no - - - - replace - - - - 2em - - - -1.2em - -no - - - - - - - - - - - - - - 210mm - 11in - 8.5in - 2378mm - 1682mm - 1189mm - 841mm - 594mm - 420mm - 297mm - 210mm - 148mm - 105mm - 74mm - 52mm - 37mm - 1414mm - 1000mm - 707mm - 500mm - 353mm - 250mm - 176mm - 125mm - 88mm - 62mm - 44mm - 1297mm - 917mm - 648mm - 458mm - 324mm - 229mm - 162mm - 114mm - 81mm - 57mm - 40mm - 11in - - -0.5in - - - 1.25in - 1in - - - - - 0.75in - 1in - - -0.5in -portrait - - - - - - - - - - - - - 8.5in - 1682mm - 1189mm - 841mm - 594mm - 420mm - 297mm - 210mm - 148mm - 105mm - 74mm - 52mm - 37mm - 26mm - 1000mm - 707mm - 500mm - 353mm - 250mm - 176mm - 125mm - 88mm - 62mm - 44mm - 31mm - 917mm - 648mm - 458mm - 324mm - 229mm - 162mm - 114mm - 81mm - 57mm - 40mm - 28mm - 8.5in - - -USletter -I - - - 0pt - - - - - auto - - - - - - - - - - - - - - -; - - - - - -. -number - - - - - - - - pt - - - - - - pt - - - - - - pt - - - - - - pt - - - - - - pt - - - - - - pt - - - - - - - bold - - always - 0.8em - 1.0em - 1.2em - - - - - - - - - 18pt - bold - 1em - false - always - 0.8em - 1.0em - 1.2em - 0.5em - 0.4em - 0.6em - - - - I - -0.4in -0.4in - - - - - - - - - - - - - - - - - - - - character-by-character - disregard-shifts - - - - - -. -.!?: -sans-serif - -8 -block - - - - - pt - - - - - - pt - - - - - - pt - - - - - - pt - - - - - - pt - - - - - - pt - - - - - - - bold - - always - 0.8em - 1.0em - 1.2em - start - - - - - - - - - - - - - - - - - - - - - #E0E0E0 - - - - solid - 1pt - black - #DDDDDD - 12pt - 12pt - 6pt - 6pt - 0pt - 0pt - - - - bold - false - start - always - -none -1in - - - 75% - - - 75% - -Symbol,ZapfDingbats - -black -solid -0.5pt - - 2pt - 2pt - 2pt - 2pt - -a - - - - - normal - normal - 2pt - - - -black -solid -0.5pt - - auto - - - - retain - collapse - - olinkdb.xml -target.db - - - - -sans-serif - - - -4pc - 0pt - 0pt - - -24 - - - justify - start - - - - - 0.5em - 1em - 2em - 0.5em - 1em - 2em - -8 -2 - - -/ - - - - - - - -24 -, - - -0 - - 0.8em - 1em - 1.2em - 0.8em - 1em - 1.2em - false - no-wrap - false - preserve - preserve - start - - - - writing-mode - - - - - - - - - - true - true - - -: - - - - - - diff --git a/docbook-xsl-1.75.2/fo/passivetex.xsl b/docbook-xsl-1.75.2/fo/passivetex.xsl deleted file mode 100644 index 9fa28ec..0000000 --- a/docbook-xsl-1.75.2/fo/passivetex.xsl +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/fo/pdf2index b/docbook-xsl-1.75.2/fo/pdf2index deleted file mode 100644 index c14d8ec..0000000 --- a/docbook-xsl-1.75.2/fo/pdf2index +++ /dev/null @@ -1,140 +0,0 @@ -#!/usr/bin/perl -- # -*- Perl -*- - -# this needs some cleanup... - -my $PSTOTEXT = "pstotext"; - -my $pdf = shift @ARGV; - -my $index = ""; -my $inindex = 0; -open (F, "$PSTOTEXT $pdf |"); -while () { - if (/^<\/index/) { - $index .= $_; - $inindex = 0; - } - $inindex = 1 if /^.*?<\/phrase>\s*)+)/s) { - $cindex .= $1; - $_ = $2; - $index = $'; # ' - - my @pages = m/.*?<\/phrase>\s*/sg; - - # Expand ranges - if ($#pages >= 0) { - my @mpages = (); - foreach my $page (@pages) { - my $pageno = &pageno($page); - if ($pageno =~ /^([0-9]+)[^0-9]([0-9]+)$/) { # funky - - for (my $count = $1; $count <= $2; $count++) { - push (@mpages, "$count"); - } - } else { - push (@mpages, $page); - } - } - @pages = sort rangesort @mpages; - } - - # Remove duplicates... - if ($#pages > 0) { - my @mpages = (); - my $current = ""; - foreach my $page (@pages) { - my $pageno = &pageno($page); - if ($pageno ne $current) { - push (@mpages, $page); - $current = $pageno; - } - } - @pages = @mpages; - } - - # Collapse ranges... - if ($#pages > 1) { - my @cpages = (); - while (@pages) { - my $count = 0; - my $len = &rangelen($count, @pages); - if ($len <= 2) { - my $page = shift @pages; - push (@cpages, $page); - } else { - my $fpage = shift @pages; - my $lpage = ""; - while ($len > 1) { - $lpage = shift @pages; - $len--; - } - my $fpno = &pageno($fpage); - my $lpno = &pageno($lpage); - $fpage =~ s/>$fpno${fpno}-$lpno//; - $page =~ s/^//; - - return $1 if $page =~ /^([^<>]+)/; - return "?"; -} - -sub rangesort { - my $apno = &pageno($a); - my $bpno = &pageno($b); - - # Make sure roman pages come before arabic ones, otherwise sort them in order - return -1 if ($apno !~ /^\d+/ && $bpno =~ /^\d+/); - return 1 if ($apno =~ /^\d+/ && $bpno !~ /^\d+/); - return $apno <=> $bpno; -} - -sub rangelen { - my $count = shift; - my @pages = @_; - my $len = 1; - my $inrange = 1; - - my $current = &pageno($pages[$count]); - while ($count < $#pages && $inrange) { - $count++; - my $next = &pageno($pages[$count]); - if ($current + 1 eq $next) { - $current = $next; - $inrange = 1; - $len++; - } else { - $inrange = 0; - } - } - - return $len; -} diff --git a/docbook-xsl-1.75.2/fo/pi.xml b/docbook-xsl-1.75.2/fo/pi.xml deleted file mode 100644 index 701d414..0000000 --- a/docbook-xsl-1.75.2/fo/pi.xml +++ /dev/null @@ -1,1002 +0,0 @@ - - -FO Processing Instruction Reference - - $Id: pi.xsl 8487 2009-07-14 21:43:36Z bobstayton $ - - - - - Introduction - - -This is generated reference documentation for all - user-specifiable processing instructions (PIs) in the DocBook - XSL stylesheets for FO output. - - -You add these PIs at particular points in a document to - cause specific “exceptions†to formatting/output behavior. To - make global changes in formatting/output behavior across an - entire document, it’s better to do it by setting an - appropriate stylesheet parameter (if there is one). - - - - - - - - -dbfo_background-color -Sets background color for an image - - - - dbfo background-color="color" - - -Description - -Use the dbfo background-color PI before or - after an image (graphic, inlinegraphic, - imagedata, or videodata element) as a - sibling to the element, to set a background color for the - image. - - Parameters - - - background-color="color" - - -An HTML color value - - - - - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Background color - - - - - -dbfo_bgcolor -Sets background color on a table row or table cell - - - - dbfo bgcolor="color" - - -Description - -Use the dbfo bgcolor PI as child of a table row - or cell to set a background color for that table row or cell. - - -This PI works for both CALS and HTML tables. - - Parameters - - - bgcolor="color" - - -An HTML color value - - - - - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Cell background color - - - - - -dbfo_float-type -Specifies float behavior for a sidebar - - - - dbfo float-type="margin.note" - - -Description - -Use the dbfo float-type PI to specify the float - behavior for a sidebar (to cause the sidebar to be - displayed as a marginal note). - - Parameters - - - float-type="margin.note" - - -Specifies that the sidebar should be - displayed as a marginal note. - - - - - - Related Global Parameters - -sidebar.float.type (parameter), - sidebar.float.width (parameter), - sidebar.properties (attribute-set), - sidebar.title.properties (attribute-set) - - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -A sidebar as - side float - - - - - -dbfo_funcsynopsis-style -Specifies presentation style for a funcsynopsis - - - - dbfo funcsynopsis-style="kr"|"ansi" - - -Description - -Use the dbfo funcsynopsis-style PI as a child of - a funcsynopsis or anywhere within a funcsynopsis - to control the presentation style for output of all - funcprototype instances within that funcsynopsis. - - Parameters - - - funcsynopsis-style="kr" - - -Displays funcprototype output in K&R style - - - - funcsynopsis-style="ansi" - - -Displays funcprototype output in ANSI style - - - - - - Related Global Parameters - -funcsynopsis.style - - - - - -dbfo_glossary-presentation -Specifies presentation style for a glossary - - - - dbfo glossary-presentation="list"|"blocks" - - -Description - -Use the dbfo glossary-presentation PI as a child of - a glossary to control its presentation style. - - Parameters - - - glossary-presentation="list" - - -Displays the glossary as a list - - - - glossary-presentation="blocks" - - -Displays the glossary as blocks - - - - - - Related Global Parameters - -glossary.as.blocks - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Glossary - formatting in print - - - - - -dbfo_glosslist-presentation -Specifies presentation style for a glosslist - - - - dbfo glosslist-presentation="list"|"blocks" - - -Description - -Use the dbfo glosslist-presentation PI as a child of - a glosslist to control its presentation style. - - Parameters - - - glosslist-presentation="list" - - -Displays the glosslist as a list - - - - glosslist-presentation="blocks" - - -Displays the glosslist as blocks - - - - - - Related Global Parameters - -glosslist.as.blocks - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Glossary - formatting in print - - - - - -dbfo_glossterm-width -Specifies the glossterm width for a glossary or - glosslist - - - - dbfo glossterm-width="width" - - -Description - -Use the dbfo glossterm-width PI as a child of a - glossary or glosslist to specify the - width for output of glossterm instances in the - output. - - Parameters - - - glossterm-width="width" - - -Specifies the glossterm width (including units) - - - - - - Related Global Parameters - -glossterm.width, - glossterm.separation - - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Glossary - formatting in print - - - - - -dbfo_keep-together -Specifies “keep†behavior for a table, example, - figure, equation, procedure, or task - - - - dbfo keep-together="auto"|"always" - - -Description - -Use the dbfo keep-together PI as a child of a - formal object (table, example, - figure, equation, procedure, or - task) to specify “keep†behavior (to allow the object to - “break†across a page). - - -The PI also works with informaltable, informalexample, - informalfigure and informalequation. - - - - Parameters - - - keep-together="auto" - - -Enables the object to break across a page - - - - keep-together="always" - - -Prevents the object from breaking across a page (the - default stylesheet behavior) - - - - - - Related Global Parameters - -formal.object.properties - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Keep-together processing instruction - - - - - -dbfo_label-width -Specifies the label width for a qandaset, itemizedlist, orderedlist - or calloutlist - - - - dbfo label-width="width" - - -Description - -Use the dbfo label-width PI as a child of a - qandaset, itemizedlist, orderedlist, - or calloutlist to specify the width of labels. - - Parameters - - - label-width="width" - - -Specifies the label width (including units) - - - - - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Q and A formatting - - - - - -dbfo_linenumbering.everyNth -Specifies interval for line numbers in verbatims - - - - dbfo linenumbering.everyNth="N" - - -Description - -Use the dbfo linenumbering.everyNth PI as a child - of a “verbatim†element – programlisting, - screen, synopsis — to specify - the interval at which lines are numbered. - - Parameters - - - linenumbering.everyNth="N" - - -Specifies numbering interval; a number is output - before every Nth line - - - - - - Related Global Parameters - -linenumbering.everyNth - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Line numbering - - - - - -dbfo_linenumbering.separator -Specifies separator text for line numbers in verbatims - - - - dbfo linenumbering.separator="text" - - -Description - -Use the dbfo linenumbering.separator PI as a child - of a “verbatim†element – programlisting, - screen, synopsis — to specify - the separator text output between the line numbers and content. - - Parameters - - - linenumbering.separator="text" - - -Specifies the text (zero or more characters) - - - - - - Related Global Parameters - -linenumbering.separator - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Line numbering - - - - - -dbfo_linenumbering.width -Specifies width for line numbers in verbatims - - - - dbfo linenumbering.width="width" - - -Description - -Use the dbfo linenumbering.width PI as a child - of a “verbatim†element – programlisting, - screen, synopsis — to specify - the width set aside for line numbers. - - Parameters - - - linenumbering.width="width" - - -Specifies the width (inluding units) - - - - - - Related Global Parameters - -linenumbering.width - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Line numbering - - - - - -dbfo_list-presentation -Specifies presentation style for a variablelist or - segmentedlist - - - - dbfo list-presentation="list"|"blocks"|"table" - - -Description - -Use the dbfo list-presentation PI as a child of - a variablelist or segmentedlist to - control the presentation style for the list (to cause it, for - example, to be displayed as a table). - - Parameters - - - list-presentation="list" - - -Displays the list as a list - - - - list-presentation="blocks" - - -(variablelist only) Displays the list as blocks - - - - list-presentation="table" - - -(segmentedlist only) Displays the list as a table - - - - - - Related Global Parameters - - - - -variablelist.as.blocks - - - - -variablelist.as.table - - - - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Variable list formatting in print - - - - - -dbfo_list-width -Specifies the width of a horizontal simplelist - - - - dbfo list-width="width" - - -Description - -Use the dbfo list-width PI as a child of a - simplelist whose class - value is horizontal, to specify the width - of the simplelist. - - Parameters - - - list-width="width" - - -Specifies the simplelist width (including units) - - - - - - - - - -dbfo_orientation -Specifies the orientation for a CALS table row or cell - - - - dbfo orientation="0"|"90"|"180"|"270"|"-90"|"-180"|"-270" - - -Description - -Use the dbfo orientation PI as a child of a CALS - table row or cell to specify the orientation - (rotation) for the row or cell. - - Parameters - - - orientation="0"|"90"|"180"|"270"|"-90"|"-180"|"-270" - - -Specifies the number of degrees by which the cell or - row is rotated - - - - - - - - - -dbfo_pgwide -Specifies if an equation or example goes across full page width - - - - dbfo pgwide="0"|"1" - - -Description - -Use the dbfo pgwide PI as a child of an - equation or example to specify that the - content should rendered across the full width of the page. - - Parameters - - - pgwide="0" - - -If zero, the content is rendered across the current - text flow - - - - pgwide="1" - - -If 1 (or any non-zero value), the - content is rendered across the full width of the page - - - - - - Related Global Parameters - -pgwide.properties - - - - - -dbfo_rotated-width -Specifies the width for a CALS table entry or - row - - - - dbfo rotated-width="width" - - -Description - -Use the dbfo rotated-width PI as a child of - entry or row instance in a CALS table to specify the - width of that the entry or row; or - use it higher up in table to cause the width to be inherited - recursively down. - - Parameters - - - rotated-width="width" - - -Specifies the width of a row or cell (including units) - - - - - - - - - -dbfo_sidebar-width -Specifies the width of a sidebar - - - - dbfo sidebar-width="width" - - -Description - -Use the dbfo sidebar-width PI as a child of a - sidebar to specify the width of the sidebar. - - Parameters - - - sidebar-width="width" - - -Specifies the sidebar width (including units) - - - - - - Related Global Parameters - -sidebar.float.type parameter, - sidebar.float.width parameter, - sidebar.properties attribute-set, - sidebar.title.properties - - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -A sidebar as - side float - - - - - -dbfo_start -(obsolete) Sets the starting number on an ordered list - - - - dbfo start="character" - - -Description - -This PI is obsolete. The intent of - it was to provide a means for setting a specific starting - number for an ordered list. Instead of this PI, set a value - for the override attribute on the first - listitem in the list; that will have the same - effect as what this PI was intended for. - - Parameters - - - start="character" - - -Specifies the character to use as the starting - number; use 0-9, a-z, A-Z, or lowercase or uppercase - Roman numerals - - - - - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -List starting number - - - - - -dbfo_table-width -Specifies the width for a CALS table or for revhistory - output - - - - dbfo table-width="width" - - -Description - -Use the dbfo table-width PI as a child or - sibling of a CALS table, or as a child of an - informaltable, entrytbl, or - revhistory instance (which is rendered as a table - in output) to specify the width of the table in output. - - Parameters - - - table-width="width" - - -Specifies the table width (including units or as a percentage) - - - - - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Table width - - - - - -dbfo_term-width -Specifies the term width for a variablelist - - - - dbfo term-width="width" - - -Description - -Use the dbfo term-width PI as a child of a - variablelist to specify the width for - term output. - - Parameters - - - term-width="width" - - -Specifies the term width (including units) - - - - - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Variable list formatting in print - - - - - -dbfo_toc -Specifies whether a TOC should be generated for a qandaset - - - - dbfo toc="0"|"1" - - -Description - -Use the dbfo toc PI as a child of a - qandaset to specify whether a table of contents - (TOC) is generated for the qandaset. - - Parameters - - - toc="0" - - -If zero, no TOC is generated - - - - toc="1" - - -If 1 (or any non-zero value), - a TOC is generated - - - - - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Q and A list of questions, - Q and A formatting - - - - - -dbfo-need -Specify a need for space (a kind of soft page break) - - - - dbfo-need height="n" [space-before="n"] - - -Description - -A “need†is a request for space on a page. If the - requested space is not available, the page breaks and the - content that follows the need request appears on the next - page. If the requested space is available, then no page break - is inserted. - - Parameters - - - height="n" - - -The amount of height needed (including units) - - - - space-before="n" - - -The amount of extra vertical space to add (including units) - - - - - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Soft page breaks - - - - - -dbfo_row-height -Specifies the height for a CALS table row - - - - dbfo row-height="height" - - -Description - -Use the dbfo row-height PI as a child of a - row to specify the height of the row. - - Parameters - - - row-height="height" - - -Specifies the row height (including units) - - - - - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Row height - - - - diff --git a/docbook-xsl-1.75.2/fo/pi.xsl b/docbook-xsl-1.75.2/fo/pi.xsl deleted file mode 100644 index c5f258b..0000000 --- a/docbook-xsl-1.75.2/fo/pi.xsl +++ /dev/null @@ -1,1092 +0,0 @@ - - - - - -FO Processing Instruction Reference - - $Id: pi.xsl 8487 2009-07-14 21:43:36Z bobstayton $ - - - - - Introduction - - This is generated reference documentation for all - user-specifiable processing instructions (PIs) in the DocBook - XSL stylesheets for FO output. - - You add these PIs at particular points in a document to - cause specific “exceptions†to formatting/output behavior. To - make global changes in formatting/output behavior across an - entire document, it’s better to do it by setting an - appropriate stylesheet parameter (if there is one). - - - - - - - - - Sets background color for an image - - Use the dbfo background-color PI before or - after an image (graphic, inlinegraphic, - imagedata, or videodata element) as a - sibling to the element, to set a background color for the - image. - - - dbfo background-color="color" - - - - background-color="color" - - An HTML color value - - - - - - Background color - - - - - - - - - - - - Sets background color on a table row or table cell - - Use the dbfo bgcolor PI as child of a table row - or cell to set a background color for that table row or cell. - This PI works for both CALS and HTML tables. - - - dbfo bgcolor="color" - - - - bgcolor="color" - - An HTML color value - - - - - - Cell background color - - - - - - - - - - - - Specifies float behavior for a sidebar - - Use the dbfo float-type PI to specify the float - behavior for a sidebar (to cause the sidebar to be - displayed as a marginal note). - - - dbfo float-type="margin.note" - - - - float-type="margin.note" - - Specifies that the sidebar should be - displayed as a marginal note. - - - - - - sidebar.float.type (parameter), - sidebar.float.width (parameter), - sidebar.properties (attribute-set), - sidebar.title.properties (attribute-set) - - - - A sidebar as - side float - - - - - - - - - - - - Specifies presentation style for a funcsynopsis - - Use the dbfo funcsynopsis-style PI as a child of - a funcsynopsis or anywhere within a funcsynopsis - to control the presentation style for output of all - funcprototype instances within that funcsynopsis. - - - dbfo funcsynopsis-style="kr"|"ansi" - - - - funcsynopsis-style="kr" - - Displays funcprototype output in K&R style - - - funcsynopsis-style="ansi" - - Displays funcprototype output in ANSI style - - - - - - funcsynopsis.style - - - - - - - - - - - - Specifies presentation style for a glossary - - Use the dbfo glossary-presentation PI as a child of - a glossary to control its presentation style. - - - dbfo glossary-presentation="list"|"blocks" - - - - glossary-presentation="list" - - Displays the glossary as a list - - - glossary-presentation="blocks" - - Displays the glossary as blocks - - - - - - glossary.as.blocks - - - Glossary - formatting in print - - - - - - - - - - - - Specifies presentation style for a glosslist - - Use the dbfo glosslist-presentation PI as a child of - a glosslist to control its presentation style. - - - dbfo glosslist-presentation="list"|"blocks" - - - - glosslist-presentation="list" - - Displays the glosslist as a list - - - glosslist-presentation="blocks" - - Displays the glosslist as blocks - - - - - - glosslist.as.blocks - - - Glossary - formatting in print - - - - - - - - - - - - Specifies the glossterm width for a glossary or - glosslist - - Use the dbfo glossterm-width PI as a child of a - glossary or glosslist to specify the - width for output of glossterm instances in the - output. - - - dbfo glossterm-width="width" - - - - glossterm-width="width" - - Specifies the glossterm width (including units) - - - - - - glossterm.width, - glossterm.separation - - - - Glossary - formatting in print - - - - - - - - - - - - Specifies “keep†behavior for a table, example, - figure, equation, procedure, or task - - Use the dbfo keep-together PI as a child of a - formal object (table, example, - figure, equation, procedure, or - task) to specify “keep†behavior (to allow the object to - “break†across a page). - The PI also works with informaltable, informalexample, - informalfigure and informalequation. - - - - - dbfo keep-together="auto"|"always" - - - - keep-together="auto" - - Enables the object to break across a page - - - keep-together="always" - - Prevents the object from breaking across a page (the - default stylesheet behavior) - - - - - - formal.object.properties - - - Keep-together processing instruction - - - - - - - - - - - - Specifies the label width for a qandaset, itemizedlist, orderedlist - or calloutlist - - Use the dbfo label-width PI as a child of a - qandaset, itemizedlist, orderedlist, - or calloutlist to specify the width of labels. - - - dbfo label-width="width" - - - - label-width="width" - - Specifies the label width (including units) - - - - - - Q and A formatting - - - - - - - - - - - - Specifies interval for line numbers in verbatims - - Use the dbfo linenumbering.everyNth PI as a child - of a “verbatim†element – programlisting, - screen, synopsis — to specify - the interval at which lines are numbered. - - - dbfo linenumbering.everyNth="N" - - - - linenumbering.everyNth="N" - - Specifies numbering interval; a number is output - before every Nth line - - - - - - linenumbering.everyNth - - - Line numbering - - - - - - - - - - - - Specifies separator text for line numbers in verbatims - - Use the dbfo linenumbering.separator PI as a child - of a “verbatim†element – programlisting, - screen, synopsis — to specify - the separator text output between the line numbers and content. - - - dbfo linenumbering.separator="text" - - - - linenumbering.separator="text" - - Specifies the text (zero or more characters) - - - - - - linenumbering.separator - - - Line numbering - - - - - - - - - - - - Specifies width for line numbers in verbatims - - Use the dbfo linenumbering.width PI as a child - of a “verbatim†element – programlisting, - screen, synopsis — to specify - the width set aside for line numbers. - - - dbfo linenumbering.width="width" - - - - linenumbering.width="width" - - Specifies the width (inluding units) - - - - - - linenumbering.width - - - Line numbering - - - - - - - - - - - - Specifies presentation style for a variablelist or - segmentedlist - - Use the dbfo list-presentation PI as a child of - a variablelist or segmentedlist to - control the presentation style for the list (to cause it, for - example, to be displayed as a table). - - - dbfo list-presentation="list"|"blocks"|"table" - - - - list-presentation="list" - - Displays the list as a list - - - list-presentation="blocks" - - (variablelist only) Displays the list as blocks - - - list-presentation="table" - - (segmentedlist only) Displays the list as a table - - - - - - - - variablelist.as.blocks - - - variablelist.as.table - - - - - Variable list formatting in print - - - - - - - - - - - - Specifies the width of a horizontal simplelist - - Use the dbfo list-width PI as a child of a - simplelist whose class - value is horizontal, to specify the width - of the simplelist. - - - dbfo list-width="width" - - - - list-width="width" - - Specifies the simplelist width (including units) - - - - - - - - - - - - - - - Specifies the orientation for a CALS table row or cell - - Use the dbfo orientation PI as a child of a CALS - table row or cell to specify the orientation - (rotation) for the row or cell. - - - dbfo orientation="0"|"90"|"180"|"270"|"-90"|"-180"|"-270" - - - - orientation="0"|"90"|"180"|"270"|"-90"|"-180"|"-270" - - Specifies the number of degrees by which the cell or - row is rotated - - - - - - - - - - - - - - - Specifies if an equation or example goes across full page width - - Use the dbfo pgwide PI as a child of an - equation or example to specify that the - content should rendered across the full width of the page. - - - dbfo pgwide="0"|"1" - - - - pgwide="0" - - If zero, the content is rendered across the current - text flow - - - pgwide="1" - - If 1 (or any non-zero value), the - content is rendered across the full width of the page - - - - - - pgwide.properties - - - - - - - - - - - - Specifies the width for a CALS table entry or - row - - Use the dbfo rotated-width PI as a child of - entry or row instance in a CALS table to specify the - width of that the entry or row; or - use it higher up in table to cause the width to be inherited - recursively down. - - - dbfo rotated-width="width" - - - - rotated-width="width" - - Specifies the width of a row or cell (including units) - - - - - - - - - - - - - - - Specifies the width of a sidebar - - Use the dbfo sidebar-width PI as a child of a - sidebar to specify the width of the sidebar. - - - dbfo sidebar-width="width" - - - - sidebar-width="width" - - Specifies the sidebar width (including units) - - - - - - sidebar.float.type parameter, - sidebar.float.width parameter, - sidebar.properties attribute-set, - sidebar.title.properties - - - - A sidebar as - side float - - - - - - - - - - - - (obsolete) Sets the starting number on an ordered list - - This PI is obsolete. The intent of - it was to provide a means for setting a specific starting - number for an ordered list. Instead of this PI, set a value - for the override attribute on the first - listitem in the list; that will have the same - effect as what this PI was intended for. - - - dbfo start="character" - - - - start="character" - - Specifies the character to use as the starting - number; use 0-9, a-z, A-Z, or lowercase or uppercase - Roman numerals - - - - - - List starting number - - - - - - - - - - - - Specifies the width for a CALS table or for revhistory - output - - Use the dbfo table-width PI as a child or - sibling of a CALS table, or as a child of an - informaltable, entrytbl, or - revhistory instance (which is rendered as a table - in output) to specify the width of the table in output. - - - dbfo table-width="width" - - - - table-width="width" - - Specifies the table width (including units or as a percentage) - - - - - - Table width - - - - - - - - - - - - Specifies the term width for a variablelist - - Use the dbfo term-width PI as a child of a - variablelist to specify the width for - term output. - - - dbfo term-width="width" - - - - term-width="width" - - Specifies the term width (including units) - - - - - - Variable list formatting in print - - - - - - - - - - - - Specifies whether a TOC should be generated for a qandaset - - Use the dbfo toc PI as a child of a - qandaset to specify whether a table of contents - (TOC) is generated for the qandaset. - - - dbfo toc="0"|"1" - - - - toc="0" - - If zero, no TOC is generated - - - toc="1" - - If 1 (or any non-zero value), - a TOC is generated - - - - - - Q and A list of questions, - Q and A formatting - - - - - - - - - - - - Specify a need for space (a kind of soft page break) - - A “need†is a request for space on a page. If the - requested space is not available, the page breaks and the - content that follows the need request appears on the next - page. If the requested space is available, then no page break - is inserted. - - - dbfo-need height="n" [space-before="n"] - - - - height="n" - - The amount of height needed (including units) - - - space-before="n" - - The amount of extra vertical space to add (including units) - - - - - - Soft page breaks - - - - - Specifies the height for a CALS table row - - Use the dbfo row-height PI as a child of a - row to specify the height of the row. - - - dbfo row-height="height" - - - - row-height="height" - - Specifies the row height (including units) - - - - - - Row height - - - - - - - - - - - - - - - - - - - - - - - - - 0pt - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - filename - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/fo/profile-docbook.xsl b/docbook-xsl-1.75.2/fo/profile-docbook.xsl deleted file mode 100644 index b8ebc03..0000000 --- a/docbook-xsl-1.75.2/fo/profile-docbook.xsl +++ /dev/null @@ -1,288 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Element - - in namespace ' - - ' encountered - - in - - - , but no template matches. - - - - < - - > - - </ - - > - - - - - - -Note: namesp. cut : stripped namespace before processingNote: namesp. cut : processing stripped document - - - - - - - - - - - - - - - - - - ID ' - - ' not found in document. - - - - - ERROR: Document root element ($rootid= - - ) for FO output - must be one of the following elements: - - - - - - - - - - - - - - - - - - - - - ERROR: Document root element for FO output - must be one of the following elements: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - [could not find document title] - - - - - - false - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Making - - pages on - - paper ( - - x - - ) - - - - - - diff --git a/docbook-xsl-1.75.2/fo/ptc.xsl b/docbook-xsl-1.75.2/fo/ptc.xsl deleted file mode 100644 index a8874d8..0000000 --- a/docbook-xsl-1.75.2/fo/ptc.xsl +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/fo/qandaset.xsl b/docbook-xsl-1.75.2/fo/qandaset.xsl deleted file mode 100644 index cbf118a..0000000 --- a/docbook-xsl-1.75.2/fo/qandaset.xsl +++ /dev/null @@ -1,395 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 2.5em - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - em * 0.50 - - - 5em - - - 4em - - - 3em - - 2.5em - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 2.5em - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/fo/refentry.xsl b/docbook-xsl-1.75.2/fo/refentry.xsl deleted file mode 100644 index 96e2592..0000000 --- a/docbook-xsl-1.75.2/fo/refentry.xsl +++ /dev/null @@ -1,637 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - page - - - - - - - - - - - - - ( - - ) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1em - - - - - - - - - - - , - - - - - - - - - em-dash - - - - - - - - - - - - - - - - : - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - false - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/fo/sections.xsl b/docbook-xsl-1.75.2/fo/sections.xsl deleted file mode 100644 index 4569f2d..0000000 --- a/docbook-xsl-1.75.2/fo/sections.xsl +++ /dev/null @@ -1,764 +0,0 @@ - - - - - - - - - - - - - - - - - - - - 1 - 2 - 3 - 4 - 5 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - 2 - 3 - 4 - 5 - - - - - - - - - - - - - - - - - - - - 1 - 0 - - - - - - - - - - - - - - - - - - - - - - - - - - false - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 2 - - - - - - - - - - - - 2 - - - - - - 1 - 2 - 3 - 4 - 5 - - - - - - - - - 1 - 0 - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/fo/spaces.xsl b/docbook-xsl-1.75.2/fo/spaces.xsl deleted file mode 100644 index d34c9cd..0000000 --- a/docbook-xsl-1.75.2/fo/spaces.xsl +++ /dev/null @@ -1,274 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - -0.5em -1em -0.5em -1em -0.33em -0.25em -0.16em - - -0.2em -0.1em - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/fo/synop.xsl b/docbook-xsl-1.75.2/fo/synop.xsl deleted file mode 100644 index 92afc20..0000000 --- a/docbook-xsl-1.75.2/fo/synop.xsl +++ /dev/null @@ -1,1007 +0,0 @@ - - - -]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ( - - ) - -   - - - - - - - - - - - - - - - - - ( - - ) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - (void); - - - (); - - - - - - (...); - - - - - - - - - - - - ( - - - - - - - - - - - , - - - ); - - - - - - - - - - - - - - - , - - - - - - - ; - - - - - ( - - ) - - - - - - - - - - - - - - - - - - - - - - -java - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Unrecognized language on - - : - - - - - - - - - - - - &RE; - - - - - - - - - - extends - - - &RE;     - - - - implements - - - &RE;     - - - - throws - - -  {&RE; - - } - - - - - - - - - - - , - - - - - - - - - - - -   - - - - - - , - - - - - - - , - - - - - - - , - - - - - - -    - - ; - - - - - - -   - - - - -   - - - - - - - - - void  - - - - - - - - 0 - - ,&RE; - - -   - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ( - - - - ) - - &RE;    throws  - - - - - - - ; - - - - - - - - - - - : - - - &RE;     - - - - implements - - - &RE;     - - - - throws - - -  {&RE; - - } - - - - - - - - - - , - - - - - - - -   - - - - - - , - - - - - - - , - - - - - - - , - - - - - - -    - - ; - - - - - - -   - - - - -   - - - - - - - - - void  - - - - - - - - - , - - - - - - - - - - - - - - - - - - - - - - - - ( - - ) - - &RE;    throws  - - - - - - - ; - - - - - - - - - interface - - - : - - - &RE;     - - - - implements - - - &RE;     - - - - throws - - -  {&RE; - - } - - - - - - - - - - , - - - - - - - -   - - - - - - , - - - - - - - , - - - - - - - , - - - - - - -    - - ; - - - - - - -   - - - - -   - - - - - - - - - void  - - - - - - - - - , - - - - - - - - - - - - - - - - - - - - - - - - ( - - ) - - &RE;    raises( - - ) - - - - - - ; - - - - - - - - - package - - ;&RE; - - - @ISA = ( - - );&RE; - - - - - - - - - - - - - , - - - - - - - -   - - - - - - , - - - - - - - , - - - - - - - , - - - - - - -    - - ; - - - - - - -   - - - - -   - - - - - - - - - void  - - - - - - - - - , - - - - - - - - - - - - - - - sub - - - { ... }; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/fo/table.xml b/docbook-xsl-1.75.2/fo/table.xml deleted file mode 100644 index 8f9defd..0000000 --- a/docbook-xsl-1.75.2/fo/table.xml +++ /dev/null @@ -1,135 +0,0 @@ - - - - - - Formatting Object Table Reference - - $Id: table.xsl 8392 2009-04-01 08:47:55Z bobstayton $ - - - - Introduction - -This is technical reference documentation for the FO - table-processing templates in the DocBook XSL Stylesheets. - - -This is not intended to be user documentation. It is - provided for developers writing customization layers for the - stylesheets. - - - - - -calc.column.width -Calculate an XSL FO table column width specification from a -CALS table column width specification. - - -<xsl:template name="calc.column.width"> -<xsl:param name="colwidth">1*</xsl:param> - ... -</xsl:template> - -Description - -CALS expresses table column widths in the following basic -forms: - - - - - - -99.99units, a fixed length specifier. - - - - -99.99, a fixed length specifier without any units. - - - - -99.99*, a relative length specifier. - - - - -99.99*+99.99units, a combination of both. - - - - - - -The CALS units are points (pt), picas (pi), centimeters (cm), -millimeters (mm), and inches (in). These are the same units as XSL, -except that XSL abbreviates picas "pc" instead of "pi". If a length -specifier has no units, the CALS default unit (pt) is assumed. - - - -Relative length specifiers are represented in XSL with the -proportional-column-width() function. - - - -Here are some examples: - - - - - - -"36pt" becomes "36pt" - - - - -"3pi" becomes "3pc" - - - - -"36" becomes "36pt" - - - - -"3*" becomes "proportional-column-width(3)" - - - - -"3*+2pi" becomes "proportional-column-width(3)+2pc" - - - - -"1*+2" becomes "proportional-column-width(1)+2pt" - - - - -Parameters - - -colwidth - - -The CALS column width specification. - - - - - -Returns - -The XSL column width specification. - - - - diff --git a/docbook-xsl-1.75.2/fo/table.xsl b/docbook-xsl-1.75.2/fo/table.xsl deleted file mode 100644 index 352dfa9..0000000 --- a/docbook-xsl-1.75.2/fo/table.xsl +++ /dev/null @@ -1,1621 +0,0 @@ - - - - - - - - - - - Formatting Object Table Reference - - $Id: table.xsl 8392 2009-04-01 08:47:55Z bobstayton $ - - - - Introduction - This is technical reference documentation for the FO - table-processing templates in the DocBook XSL Stylesheets. - This is not intended to be user documentation. It is - provided for developers writing customization layers for the - stylesheets. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0pt - none - 0pt - 0pt - 0pt - 0pt - 0pt - 0pt - - - 0pt - none - 0pt - 0pt - 0pt - 0pt - 0pt - 0pt - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - before - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - - - - - - - - - - - - - - - always - - - - - - - - - - - - - - - - - - - - - - - - - - - - - all - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - none - none - none - - - - - - - - - - - - - - - - - - none - none - - - - - - - - - - - - - - - - - - none - none - none - - - - - - - - - - - - none - none - none - - - - - - - - - none - none - - - - none - - - - - - - - - none - none - - - - - - - - - - - - - - - - - - - - - none - none - none - none - - - - Impossible frame on table: - - - none - none - none - none - - - - - - - - - - - - - - - - - - - - - - - - - - Error: CALS tables must specify the number of columns. - - - - - - - - - - - - - - - - - - - - - - - - - fixed - - - - - - - - - - - - - - - - - - - - - No adjustColumnWidths function available. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - NOWIDTH - NOWIDTH - - - - - - - - - - - - - - + - - - NOWIDTH - NOWIDTH - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 100% - - - - 100% - - - auto - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Warning: overlapped row contains content! - - - - This row intentionally left blank - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - always - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -   - - - - - - fixed - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - before - center - after - - - Unexpected valign value: - - , center used. - - center - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - before - center - after - - - Unexpected valign value: - - , center used. - - center - - - - - - - - - - - - - - - - - bold - - - - - - - - - - - - - - - - - 1 - - - - - - - - - - - - - - : - - - - - - - - 0: - - - - - - - - - - - - - - - 0 - - : - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - - 1 - 1 - - - - - - - - - - - - - - - - - - - - - - - - - 1* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - - 1 - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Calculate an XSL FO table column width specification from a -CALS table column width specification. - - -CALS expresses table column widths in the following basic -forms: - - - -99.99units, a fixed length specifier. - - -99.99, a fixed length specifier without any units. - - -99.99*, a relative length specifier. - - -99.99*+99.99units, a combination of both. - - - -The CALS units are points (pt), picas (pi), centimeters (cm), -millimeters (mm), and inches (in). These are the same units as XSL, -except that XSL abbreviates picas "pc" instead of "pi". If a length -specifier has no units, the CALS default unit (pt) is assumed. - -Relative length specifiers are represented in XSL with the -proportional-column-width() function. - -Here are some examples: - - - -"36pt" becomes "36pt" - - -"3pi" becomes "3pc" - - -"36" becomes "36pt" - - -"3*" becomes "proportional-column-width(3)" - - -"3*+2pi" becomes "proportional-column-width(3)+2pc" - - -"1*+2" becomes "proportional-column-width(1)+2pt" - - - - - - -colwidth - -The CALS column width specification. - - - - - - -The XSL column width specification. - - - - - 1* - - - - - - - - - - - - proportional-column-width( - - - - - - 1.00 - - - ) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - pc - pt - - - - - - - diff --git a/docbook-xsl-1.75.2/fo/task.xsl b/docbook-xsl-1.75.2/fo/task.xsl deleted file mode 100644 index c864bc6..0000000 --- a/docbook-xsl-1.75.2/fo/task.xsl +++ /dev/null @@ -1,91 +0,0 @@ - - - - - - - - - - - - - - - - - - - - before - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/fo/titlepage.templates.xml b/docbook-xsl-1.75.2/fo/titlepage.templates.xml deleted file mode 100644 index e3434bc..0000000 --- a/docbook-xsl-1.75.2/fo/titlepage.templates.xml +++ /dev/null @@ -1,1354 +0,0 @@ - - - - - - - - - - - - -]> - - - - - - - - - - - - - <subtitle/> - - <corpauthor space-before="0.5em" - font-size="&hsize2;"/> - <authorgroup space-before="0.5em" - font-size="&hsize2;"/> - <author space-before="0.5em" - font-size="&hsize2;"/> - - <!-- If you add editor, include this t:predicate attribute - because only the first editor generates the list of editors. - <editor t:predicate="[position() = 1]"/> - --> - <othercredit space-before="0.5em"/> - <releaseinfo space-before="0.5em"/> - <copyright space-before="0.5em"/> - <legalnotice text-align="start" - margin-left="0.5in" - margin-right="0.5in" - font-family="{$body.fontset}"/> - <pubdate space-before="0.5em"/> - <revision space-before="0.5em"/> - <revhistory space-before="0.5em"/> - <abstract space-before="0.5em" - text-align="start" - margin-left="0.5in" - margin-right="0.5in" - font-family="{$body.fontset}"/> - </t:titlepage-content> - - <t:titlepage-content t:side="verso"> - </t:titlepage-content> - - <t:titlepage-separator> - </t:titlepage-separator> - - <t:titlepage-before t:side="recto"> - </t:titlepage-before> - - <t:titlepage-before t:side="verso"> - </t:titlepage-before> -</t:titlepage> - -<!-- ==================================================================== --> - -<t:titlepage t:element="set" t:wrapper="fo:block"> - <t:titlepage-content t:side="recto"> - <title - t:named-template="division.title" - param:node="ancestor-or-self::set[1]" - text-align="center" - font-size="&hsize5;" - space-before="&hsize5space;" - font-weight="bold" - font-family="{$title.fontset}"/> - <subtitle - font-family="{$title.fontset}" - text-align="center"/> - <corpauthor/> - <authorgroup/> - <author/> - <othercredit/> - <releaseinfo/> - <copyright/> - <legalnotice/> - <pubdate/> - <revision/> - <revhistory/> - <abstract/> - </t:titlepage-content> - - <t:titlepage-content t:side="verso"> - </t:titlepage-content> - - <t:titlepage-separator> - </t:titlepage-separator> - - <t:titlepage-before t:side="recto"> - </t:titlepage-before> - - <t:titlepage-before t:side="verso"> - </t:titlepage-before> -</t:titlepage> - -<!-- ==================================================================== --> - - <t:titlepage t:element="book" t:wrapper="fo:block"> - <t:titlepage-content t:side="recto"> - <title - t:named-template="division.title" - param:node="ancestor-or-self::book[1]" - text-align="center" - font-size="&hsize5;" - space-before="&hsize5space;" - font-weight="bold" - font-family="{$title.fontset}"/> - <subtitle - text-align="center" - font-size="&hsize4;" - space-before="&hsize4space;" - font-family="{$title.fontset}"/> - <corpauthor font-size="&hsize3;" - keep-with-next.within-column="always" - space-before="2in"/> - <authorgroup space-before="2in"/> - <author font-size="&hsize3;" - space-before="&hsize2space;" - keep-with-next.within-column="always"/> - <!-- If you add editor, include this t:predicate attribute - because only the first editor generates the list of editors. - <editor t:predicate="[position() = 1]"/> - --> - </t:titlepage-content> - - <t:titlepage-content t:side="verso"> - <title - t:named-template="book.verso.title" - font-size="&hsize2;" - font-weight="bold" - font-family="{$title.fontset}"/> - <corpauthor/> - <authorgroup t:named-template="verso.authorgroup"/> - <author/> - <!-- If you add editor, include this t:predicate attribute - because only the first editor generates the list of editors. - <editor t:predicate="[position() = 1]"/> - --> - <othercredit/> - <releaseinfo space-before="0.5em"/> - <pubdate space-before="1em"/> - <copyright/> - <abstract/> - <legalnotice font-size="8pt"/> - </t:titlepage-content> - - <t:titlepage-separator> - <fo:block break-after="page"/> - </t:titlepage-separator> - - <t:titlepage-before t:side="recto"> - </t:titlepage-before> - - <t:titlepage-before t:side="verso"> - <fo:block break-after="page"/> - </t:titlepage-before> -</t:titlepage> - -<!-- ==================================================================== --> - -<t:titlepage t:element="part" t:wrapper="fo:block"> - <t:titlepage-content t:side="recto"> - <title - t:named-template="division.title" - param:node="ancestor-or-self::part[1]" - text-align="center" - font-size="&hsize5;" - space-before="&hsize5space;" - font-weight="bold" - font-family="{$title.fontset}"/> - <subtitle - text-align="center" - font-size="&hsize4;" - space-before="&hsize4space;" - font-weight='bold' - font-style='italic' - font-family="{$title.fontset}"/> - </t:titlepage-content> - - <t:titlepage-content t:side="verso"> - </t:titlepage-content> - - <t:titlepage-separator> - </t:titlepage-separator> - - <t:titlepage-before t:side="recto"> - </t:titlepage-before> - - <t:titlepage-before t:side="verso"> - </t:titlepage-before> -</t:titlepage> - -<t:titlepage t:element="partintro" t:wrapper="fo:block"> - <t:titlepage-content t:side="recto"> - <title - text-align="center" - font-size="&hsize5;" - font-weight="bold" - space-before="1em" - font-family="{$title.fontset}"/> - <subtitle - text-align="center" - font-size="&hsize2;" - font-weight="bold" - font-style="italic" - font-family="{$title.fontset}"/> - <corpauthor/> - <authorgroup/> - <author/> - <othercredit/> - <releaseinfo/> - <copyright/> - <legalnotice/> - <pubdate/> - <revision/> - <revhistory/> - <abstract/> - </t:titlepage-content> - - <t:titlepage-content t:side="verso"> - </t:titlepage-content> - - <t:titlepage-separator> - </t:titlepage-separator> - - <t:titlepage-before t:side="recto"> - </t:titlepage-before> - - <t:titlepage-before t:side="verso"> - </t:titlepage-before> -</t:titlepage> - -<!-- ==================================================================== --> - -<t:titlepage t:element="reference" t:wrapper="fo:block"> - <t:titlepage-content t:side="recto"> - <title - t:named-template="division.title" - param:node="ancestor-or-self::reference[1]" - text-align="center" - font-size="&hsize5;" - space-before="&hsize5space;" - font-weight="bold" - font-family="{$title.fontset}"/> - <subtitle - font-family="{$title.fontset}" - text-align="center"/> - <corpauthor/> - <authorgroup/> - <author/> - <othercredit/> - <releaseinfo/> - <copyright/> - <legalnotice/> - <pubdate/> - <revision/> - <revhistory/> - <abstract/> - </t:titlepage-content> - - <t:titlepage-content t:side="verso"> - </t:titlepage-content> - - <t:titlepage-separator> - </t:titlepage-separator> - - <t:titlepage-before t:side="recto"> - </t:titlepage-before> - - <t:titlepage-before t:side="verso"> - </t:titlepage-before> -</t:titlepage> - -<!-- ==================================================================== --> - -<t:titlepage t:element="refsynopsisdiv" t:wrapper="fo:block"> - <t:titlepage-content t:side="recto"> - <title - font-family="{$title.fontset}"/> - </t:titlepage-content> - - <t:titlepage-content t:side="verso"> - </t:titlepage-content> - - <t:titlepage-separator> - </t:titlepage-separator> - - <t:titlepage-before t:side="recto"> - </t:titlepage-before> - - <t:titlepage-before t:side="verso"> - </t:titlepage-before> -</t:titlepage> - -<!-- ==================================================================== --> - -<t:titlepage t:element="refsection" t:wrapper="fo:block"> - <t:titlepage-content t:side="recto"> - <title - font-family="{$title.fontset}"/> - </t:titlepage-content> - - <t:titlepage-content t:side="verso"> - </t:titlepage-content> - - <t:titlepage-separator> - </t:titlepage-separator> - - <t:titlepage-before t:side="recto"> - </t:titlepage-before> - - <t:titlepage-before t:side="verso"> - </t:titlepage-before> -</t:titlepage> - -<!-- ==================================================================== --> - -<t:titlepage t:element="refsect1" t:wrapper="fo:block"> - <t:titlepage-content t:side="recto"> - <title - font-family="{$title.fontset}"/> - </t:titlepage-content> - - <t:titlepage-content t:side="verso"> - </t:titlepage-content> - - <t:titlepage-separator> - </t:titlepage-separator> - - <t:titlepage-before t:side="recto"> - </t:titlepage-before> - - <t:titlepage-before t:side="verso"> - </t:titlepage-before> -</t:titlepage> - -<!-- ==================================================================== --> - -<t:titlepage t:element="refsect2" t:wrapper="fo:block"> - <t:titlepage-content t:side="recto"> - <title - font-family="{$title.fontset}"/> - </t:titlepage-content> - - <t:titlepage-content t:side="verso"> - </t:titlepage-content> - - <t:titlepage-separator> - </t:titlepage-separator> - - <t:titlepage-before t:side="recto"> - </t:titlepage-before> - - <t:titlepage-before t:side="verso"> - </t:titlepage-before> -</t:titlepage> - -<!-- ==================================================================== --> - -<t:titlepage t:element="refsect3" t:wrapper="fo:block"> - <t:titlepage-content t:side="recto"> - <title - font-family="{$title.fontset}"/> - </t:titlepage-content> - - <t:titlepage-content t:side="verso"> - </t:titlepage-content> - - <t:titlepage-separator> - </t:titlepage-separator> - - <t:titlepage-before t:side="recto"> - </t:titlepage-before> - - <t:titlepage-before t:side="verso"> - </t:titlepage-before> -</t:titlepage> - -<!-- ==================================================================== --> - - <t:titlepage t:element="dedication" t:wrapper="fo:block"> - <t:titlepage-content t:side="recto"> - <title - t:force="1" - t:named-template="component.title" - param:node="ancestor-or-self::dedication[1]" - margin-left="{$title.margin.left}" - font-size="&hsize5;" - font-family="{$title.fontset}" - font-weight="bold"/> - <subtitle - font-family="{$title.fontset}"/> - </t:titlepage-content> - - <t:titlepage-content t:side="verso"> - </t:titlepage-content> - - <t:titlepage-separator> - </t:titlepage-separator> - - <t:titlepage-before t:side="recto"> - </t:titlepage-before> - - <t:titlepage-before t:side="verso"> - </t:titlepage-before> -</t:titlepage> - -<!-- ==================================================================== --> - -<!-- Same formatting as dedication --> - <t:titlepage t:element="acknowledgements" t:wrapper="fo:block"> - <t:titlepage-content t:side="recto"> - <title - t:force="1" - t:named-template="component.title" - param:node="ancestor-or-self::acknowledgements[1]" - margin-left="{$title.margin.left}" - font-size="&hsize5;" - font-family="{$title.fontset}" - font-weight="bold"/> - <subtitle - font-family="{$title.fontset}"/> - </t:titlepage-content> - - <t:titlepage-content t:side="verso"> - </t:titlepage-content> - - <t:titlepage-separator> - </t:titlepage-separator> - - <t:titlepage-before t:side="recto"> - </t:titlepage-before> - - <t:titlepage-before t:side="verso"> - </t:titlepage-before> -</t:titlepage> - - -<!-- ==================================================================== --> - - <t:titlepage t:element="preface" t:wrapper="fo:block"> - <t:titlepage-content t:side="recto"> - <title - t:force="1" - t:named-template="component.title" - param:node="ancestor-or-self::preface[1]" - margin-left="{$title.margin.left}" - font-size="&hsize5;" - font-family="{$title.fontset}" - font-weight="bold"/> - <subtitle - font-family="{$title.fontset}"/> - <corpauthor/> - <authorgroup/> - <author/> - <othercredit/> - <releaseinfo/> - <copyright/> - <legalnotice/> - <pubdate/> - <revision/> - <revhistory/> - <abstract/> - </t:titlepage-content> - - <t:titlepage-content t:side="verso"> - </t:titlepage-content> - - <t:titlepage-separator> - </t:titlepage-separator> - - <t:titlepage-before t:side="recto"> - </t:titlepage-before> - - <t:titlepage-before t:side="verso"> - </t:titlepage-before> -</t:titlepage> - -<!-- ==================================================================== --> - - <t:titlepage t:element="chapter" t:wrapper="fo:block" - font-family="{$title.fontset}"> - <t:titlepage-content t:side="recto" margin-left="{$title.margin.left}"> - <title t:named-template="component.title" - param:node="ancestor-or-self::chapter[1]" - font-size="&hsize5;" - font-weight="bold"/> - - <subtitle space-before="0.5em" - font-style="italic" - font-size="&hsize2;" - font-weight="bold"/> - - <corpauthor space-before="0.5em" - space-after="0.5em" - font-size="&hsize2;"/> - - <authorgroup space-before="0.5em" - space-after="0.5em" - font-size="&hsize2;"/> - - <author space-before="0.5em" - space-after="0.5em" - font-size="&hsize2;"/> - - <othercredit/> - <releaseinfo/> - <copyright/> - <legalnotice/> - <pubdate/> - <revision/> - <revhistory/> - <abstract/> - </t:titlepage-content> - - <t:titlepage-content t:side="verso"> - </t:titlepage-content> - - <t:titlepage-separator> - </t:titlepage-separator> - - <t:titlepage-before t:side="recto"> - </t:titlepage-before> - - <t:titlepage-before t:side="verso"> - </t:titlepage-before> -</t:titlepage> - -<!-- ==================================================================== --> - - <t:titlepage t:element="appendix" t:wrapper="fo:block"> - <t:titlepage-content t:side="recto"> - <title - t:named-template="component.title" - param:node="ancestor-or-self::appendix[1]" - margin-left="{$title.margin.left}" - font-size="&hsize5;" - font-weight="bold" - font-family="{$title.fontset}"/> - <subtitle - font-family="{$title.fontset}"/> - <corpauthor/> - <authorgroup/> - <author/> - <othercredit/> - <releaseinfo/> - <copyright/> - <legalnotice/> - <pubdate/> - <revision/> - <revhistory/> - <abstract/> - </t:titlepage-content> - - <t:titlepage-content t:side="verso"> - </t:titlepage-content> - - <t:titlepage-separator> - </t:titlepage-separator> - - <t:titlepage-before t:side="recto"> - </t:titlepage-before> - - <t:titlepage-before t:side="verso"> - </t:titlepage-before> -</t:titlepage> - -<!-- ==================================================================== --> - -<t:titlepage t:element="section" t:wrapper="fo:block"> - <t:titlepage-content t:side="recto"> - <title - margin-left="{$title.margin.left}" - font-family="{$title.fontset}"/> - <subtitle - font-family="{$title.fontset}"/> - <corpauthor/> - <authorgroup/> - <author/> - <othercredit/> - <releaseinfo/> - <copyright/> - <legalnotice/> - <pubdate/> - <revision/> - <revhistory/> - <abstract/> - </t:titlepage-content> - - <t:titlepage-content t:side="verso"> - </t:titlepage-content> - - <t:titlepage-separator> - </t:titlepage-separator> - - <t:titlepage-before t:side="recto"> - </t:titlepage-before> - - <t:titlepage-before t:side="verso"> - </t:titlepage-before> -</t:titlepage> - -<t:titlepage t:element="sect1" t:wrapper="fo:block"> - <t:titlepage-content t:side="recto"> - <title - margin-left="{$title.margin.left}" - font-family="{$title.fontset}"/> - <subtitle - font-family="{$title.fontset}"/> - <corpauthor/> - <authorgroup/> - <author/> - <othercredit/> - <releaseinfo/> - <copyright/> - <legalnotice/> - <pubdate/> - <revision/> - <revhistory/> - <abstract/> - </t:titlepage-content> - - <t:titlepage-content t:side="verso"> - </t:titlepage-content> - - <t:titlepage-separator> - </t:titlepage-separator> - - <t:titlepage-before t:side="recto"> - </t:titlepage-before> - - <t:titlepage-before t:side="verso"> - </t:titlepage-before> -</t:titlepage> - -<t:titlepage t:element="sect2" t:wrapper="fo:block"> - <t:titlepage-content t:side="recto"> - <title - margin-left="{$title.margin.left}" - font-family="{$title.fontset}"/> - <subtitle - font-family="{$title.fontset}"/> - <corpauthor/> - <authorgroup/> - <author/> - <othercredit/> - <releaseinfo/> - <copyright/> - <legalnotice/> - <pubdate/> - <revision/> - <revhistory/> - <abstract/> - </t:titlepage-content> - - <t:titlepage-content t:side="verso"> - </t:titlepage-content> - - <t:titlepage-separator> - </t:titlepage-separator> - - <t:titlepage-before t:side="recto"> - </t:titlepage-before> - - <t:titlepage-before t:side="verso"> - </t:titlepage-before> -</t:titlepage> - -<t:titlepage t:element="sect3" t:wrapper="fo:block"> - <t:titlepage-content t:side="recto"> - <title - margin-left="{$title.margin.left}" - font-family="{$title.fontset}"/> - <subtitle - font-family="{$title.fontset}"/> - <corpauthor/> - <authorgroup/> - <author/> - <othercredit/> - <releaseinfo/> - <copyright/> - <legalnotice/> - <pubdate/> - <revision/> - <revhistory/> - <abstract/> - </t:titlepage-content> - - <t:titlepage-content t:side="verso"> - </t:titlepage-content> - - <t:titlepage-separator> - </t:titlepage-separator> - - <t:titlepage-before t:side="recto"> - </t:titlepage-before> - - <t:titlepage-before t:side="verso"> - </t:titlepage-before> -</t:titlepage> - -<t:titlepage t:element="sect4" t:wrapper="fo:block"> - <t:titlepage-content t:side="recto"> - <title - margin-left="{$title.margin.left}" - font-family="{$title.fontset}"/> - <subtitle - font-family="{$title.fontset}"/> - <corpauthor/> - <authorgroup/> - <author/> - <othercredit/> - <releaseinfo/> - <copyright/> - <legalnotice/> - <pubdate/> - <revision/> - <revhistory/> - <abstract/> - </t:titlepage-content> - - <t:titlepage-content t:side="verso"> - </t:titlepage-content> - - <t:titlepage-separator> - </t:titlepage-separator> - - <t:titlepage-before t:side="recto"> - </t:titlepage-before> - - <t:titlepage-before t:side="verso"> - </t:titlepage-before> -</t:titlepage> - -<t:titlepage t:element="sect5" t:wrapper="fo:block"> - <t:titlepage-content t:side="recto"> - <title - margin-left="{$title.margin.left}" - font-family="{$title.fontset}"/> - <subtitle - font-family="{$title.fontset}"/> - <corpauthor/> - <authorgroup/> - <author/> - <othercredit/> - <releaseinfo/> - <copyright/> - <legalnotice/> - <pubdate/> - <revision/> - <revhistory/> - <abstract/> - </t:titlepage-content> - - <t:titlepage-content t:side="verso"> - </t:titlepage-content> - - <t:titlepage-separator> - </t:titlepage-separator> - - <t:titlepage-before t:side="recto"> - </t:titlepage-before> - - <t:titlepage-before t:side="verso"> - </t:titlepage-before> -</t:titlepage> - -<t:titlepage t:element="simplesect" t:wrapper="fo:block"> - <t:titlepage-content t:side="recto"> - <title - margin-left="{$title.margin.left}" - font-family="{$title.fontset}"/> - <subtitle - font-family="{$title.fontset}"/> - <corpauthor/> - <authorgroup/> - <author/> - <othercredit/> - <releaseinfo/> - <copyright/> - <legalnotice/> - <pubdate/> - <revision/> - <revhistory/> - <abstract/> - </t:titlepage-content> - - <t:titlepage-content t:side="verso"> - </t:titlepage-content> - - <t:titlepage-separator> - </t:titlepage-separator> - - <t:titlepage-before t:side="recto"> - </t:titlepage-before> - - <t:titlepage-before t:side="verso"> - </t:titlepage-before> -</t:titlepage> - -<!-- ==================================================================== --> - - <t:titlepage t:element="bibliography" t:wrapper="fo:block"> - <t:titlepage-content t:side="recto"> - <title - t:force="1" - t:named-template="component.title" - param:node="ancestor-or-self::bibliography[1]" - margin-left="{$title.margin.left}" - font-size="&hsize5;" - font-family="{$title.fontset}" - font-weight="bold"/> - <subtitle - font-family="{$title.fontset}"/> - </t:titlepage-content> - - <t:titlepage-content t:side="verso"> - </t:titlepage-content> - - <t:titlepage-separator> - </t:titlepage-separator> - - <t:titlepage-before t:side="recto"> - </t:titlepage-before> - - <t:titlepage-before t:side="verso"> - </t:titlepage-before> - </t:titlepage> - -<!-- ==================================================================== --> - - <t:titlepage t:element="bibliodiv" t:wrapper="fo:block"> - <t:titlepage-content t:side="recto"> - <title t:named-template="component.title" - param:node="ancestor-or-self::bibliodiv[1]" - margin-left="{$title.margin.left}" - font-size="&hsize4;" - font-family="{$title.fontset}" - font-weight="bold"/> - <subtitle - font-family="{$title.fontset}"/> - </t:titlepage-content> - - <t:titlepage-content t:side="verso"> - </t:titlepage-content> - - <t:titlepage-separator> - </t:titlepage-separator> - - <t:titlepage-before t:side="recto"> - </t:titlepage-before> - - <t:titlepage-before t:side="verso"> - </t:titlepage-before> - </t:titlepage> - -<!-- ==================================================================== --> - - <t:titlepage t:element="glossary" t:wrapper="fo:block"> - <t:titlepage-content t:side="recto"> - <title - t:force="1" - t:named-template="component.title" - param:node="ancestor-or-self::glossary[1]" - margin-left="{$title.margin.left}" - font-size="&hsize5;" - font-family="{$title.fontset}" - font-weight="bold"/> - <subtitle - font-family="{$title.fontset}"/> - </t:titlepage-content> - - <t:titlepage-content t:side="verso"> - </t:titlepage-content> - - <t:titlepage-separator> - </t:titlepage-separator> - - <t:titlepage-before t:side="recto"> - </t:titlepage-before> - - <t:titlepage-before t:side="verso"> - </t:titlepage-before> - </t:titlepage> - -<!-- ==================================================================== --> - - <t:titlepage t:element="glossdiv" t:wrapper="fo:block"> - <t:titlepage-content t:side="recto"> - <title t:named-template="component.title" - param:node="ancestor-or-self::glossdiv[1]" - margin-left="{$title.margin.left}" - font-size="&hsize4;" - font-family="{$title.fontset}" - font-weight="bold"/> - <subtitle - font-family="{$title.fontset}"/> - </t:titlepage-content> - - <t:titlepage-content t:side="verso"> - </t:titlepage-content> - - <t:titlepage-separator> - </t:titlepage-separator> - - <t:titlepage-before t:side="recto"> - </t:titlepage-before> - - <t:titlepage-before t:side="verso"> - </t:titlepage-before> - </t:titlepage> - -<!-- ==================================================================== --> - - <t:titlepage t:element="index" t:wrapper="fo:block"> - <t:titlepage-content t:side="recto"> - <title - t:force="1" - t:named-template="component.title" - param:node="ancestor-or-self::index[1]" - param:pagewide="1" - margin-left="0pt" - font-size="&hsize5;" - font-family="{$title.fontset}" - font-weight="bold"/> - <subtitle - font-family="{$title.fontset}"/> - </t:titlepage-content> - - <t:titlepage-content t:side="verso"> - </t:titlepage-content> - - <t:titlepage-separator> - </t:titlepage-separator> - - <t:titlepage-before t:side="recto"> - </t:titlepage-before> - - <t:titlepage-before t:side="verso"> - </t:titlepage-before> - </t:titlepage> - -<!-- ==================================================================== --> - - <!-- The indexdiv.title template is used so that manual and --> - <!-- automatically generated indexdiv titles get the same --> - <!-- formatting. --> - - <t:titlepage t:element="indexdiv" t:wrapper="fo:block"> - <t:titlepage-content t:side="recto"> - <title t:force="1" - t:named-template="indexdiv.title" - param:title="title"/> - <subtitle - font-family="{$title.fontset}"/> - </t:titlepage-content> - - <t:titlepage-content t:side="verso"> - </t:titlepage-content> - - <t:titlepage-separator> - </t:titlepage-separator> - - <t:titlepage-before t:side="recto"> - </t:titlepage-before> - - <t:titlepage-before t:side="verso"> - </t:titlepage-before> - </t:titlepage> - -<!-- ==================================================================== --> - - <t:titlepage t:element="setindex" t:wrapper="fo:block"> - <t:titlepage-content t:side="recto"> - <title - t:force="1" - t:named-template="component.title" - param:node="ancestor-or-self::setindex[1]" - param:pagewide="1" - margin-left="0pt" - font-size="&hsize5;" - font-family="{$title.fontset}" - font-weight="bold"/> - <subtitle - font-family="{$title.fontset}"/> - </t:titlepage-content> - - <t:titlepage-content t:side="verso"> - </t:titlepage-content> - - <t:titlepage-separator> - </t:titlepage-separator> - - <t:titlepage-before t:side="recto"> - </t:titlepage-before> - - <t:titlepage-before t:side="verso"> - </t:titlepage-before> - </t:titlepage> - -<!-- ==================================================================== --> - - <t:titlepage t:element="colophon" t:wrapper="fo:block"> - <t:titlepage-content t:side="recto"> - <title - t:force="1" - t:named-template="component.title" - param:node="ancestor-or-self::colophon[1]" - margin-left="{$title.margin.left}" - font-size="&hsize5;" - font-family="{$title.fontset}" - font-weight="bold"/> - <subtitle - font-family="{$title.fontset}"/> - </t:titlepage-content> - - <t:titlepage-content t:side="verso"> - </t:titlepage-content> - - <t:titlepage-separator> - </t:titlepage-separator> - - <t:titlepage-before t:side="recto"> - </t:titlepage-before> - - <t:titlepage-before t:side="verso"> - </t:titlepage-before> -</t:titlepage> - -<!-- ==================================================================== --> - - <t:titlepage t:element="sidebar" t:wrapper="fo:block"> - <t:titlepage-content t:side="recto"> - <title - font-family="{$title.fontset}" - font-weight="bold"/> - <subtitle - font-family="{$title.fontset}"/> - </t:titlepage-content> - - <t:titlepage-content t:side="verso"> - </t:titlepage-content> - - <t:titlepage-separator> - </t:titlepage-separator> - - <t:titlepage-before t:side="recto"> - </t:titlepage-before> - - <t:titlepage-before t:side="verso"> - </t:titlepage-before> - </t:titlepage> - -<!-- ==================================================================== --> -<t:titlepage t:element="qandaset" t:wrapper="fo:block" - font-family="{$title.fontset}"> - - <t:titlepage-content t:side="recto" - start-indent="0pt" - text-align="center"> - - <title t:named-template="component.title" - param:node="ancestor-or-self::qandaset[1]" - keep-with-next.within-column="always" - font-size="&hsize5;" - font-weight="bold"/> - - <subtitle/> - - <corpauthor space-before="0.5em" - font-size="&hsize2;"/> - <authorgroup space-before="0.5em" - font-size="&hsize2;"/> - <author space-before="0.5em" - font-size="&hsize2;"/> - - <othercredit space-before="0.5em"/> - <releaseinfo space-before="0.5em"/> - <copyright space-before="0.5em"/> - <legalnotice text-align="start" - margin-left="0.5in" - margin-right="0.5in" - font-family="{$body.fontset}"/> - <pubdate space-before="0.5em"/> - <revision space-before="0.5em"/> - <revhistory space-before="0.5em"/> - <abstract space-before="0.5em" - text-align="start" - margin-left="0.5in" - margin-right="0.5in" - font-family="{$body.fontset}"/> - </t:titlepage-content> - - <t:titlepage-content t:side="verso"> - </t:titlepage-content> - - <t:titlepage-separator> - </t:titlepage-separator> - - <t:titlepage-before t:side="recto"> - </t:titlepage-before> - - <t:titlepage-before t:side="verso"> - </t:titlepage-before> -</t:titlepage> - -<!-- ==================================================================== --> - - <t:titlepage t:element="table.of.contents" t:wrapper="fo:block"> - <t:titlepage-content t:side="recto"> - <title - t:force="1" - t:named-template="gentext" - param:key="'TableofContents'" - space-before.minimum="1em" - space-before.optimum="1.5em" - space-before.maximum="2em" - space-after="0.5em" - margin-left="{$title.margin.left}" - start-indent="0pt" - font-size="&hsize3;" - font-weight="bold" - font-family="{$title.fontset}"/> - </t:titlepage-content> - - <t:titlepage-content t:side="verso"> - </t:titlepage-content> - - <t:titlepage-separator> - </t:titlepage-separator> - - <t:titlepage-before t:side="recto"> - </t:titlepage-before> - - <t:titlepage-before t:side="verso"> - </t:titlepage-before> - </t:titlepage> - - <t:titlepage t:element="list.of.tables" t:wrapper="fo:block"> - <t:titlepage-content t:side="recto"> - <title - t:force="1" - t:named-template="gentext" - param:key="'ListofTables'" - space-before.minimum="1em" - space-before.optimum="1.5em" - space-before.maximum="2em" - space-after="0.5em" - margin-left="{$title.margin.left}" - start-indent="0pt" - font-size="&hsize3;" - font-weight="bold" - font-family="{$title.fontset}"/> - </t:titlepage-content> - - <t:titlepage-content t:side="verso"> - </t:titlepage-content> - - <t:titlepage-separator> - </t:titlepage-separator> - - <t:titlepage-before t:side="recto"> - </t:titlepage-before> - - <t:titlepage-before t:side="verso"> - </t:titlepage-before> - </t:titlepage> - - <t:titlepage t:element="list.of.figures" t:wrapper="fo:block"> - <t:titlepage-content t:side="recto"> - <title - t:force="1" - t:named-template="gentext" - param:key="'ListofFigures'" - space-before.minimum="1em" - space-before.optimum="1.5em" - space-before.maximum="2em" - space-after="0.5em" - margin-left="{$title.margin.left}" - start-indent="0pt" - font-size="&hsize3;" - font-weight="bold" - font-family="{$title.fontset}"/> - </t:titlepage-content> - - <t:titlepage-content t:side="verso"> - </t:titlepage-content> - - <t:titlepage-separator> - </t:titlepage-separator> - - <t:titlepage-before t:side="recto"> - </t:titlepage-before> - - <t:titlepage-before t:side="verso"> - </t:titlepage-before> - </t:titlepage> - - <t:titlepage t:element="list.of.examples" t:wrapper="fo:block"> - <t:titlepage-content t:side="recto"> - <title - t:force="1" - t:named-template="gentext" - param:key="'ListofExamples'" - space-before.minimum="1em" - space-before.optimum="1.5em" - space-before.maximum="2em" - space-after="0.5em" - margin-left="{$title.margin.left}" - start-indent="0pt" - font-size="&hsize3;" - font-weight="bold" - font-family="{$title.fontset}"/> - </t:titlepage-content> - - <t:titlepage-content t:side="verso"> - </t:titlepage-content> - - <t:titlepage-separator> - </t:titlepage-separator> - - <t:titlepage-before t:side="recto"> - </t:titlepage-before> - - <t:titlepage-before t:side="verso"> - </t:titlepage-before> - </t:titlepage> - - <t:titlepage t:element="list.of.equations" t:wrapper="fo:block"> - <t:titlepage-content t:side="recto"> - <title - t:force="1" - t:named-template="gentext" - param:key="'ListofEquations'" - space-before.minimum="1em" - space-before.optimum="1.5em" - space-before.maximum="2em" - space-after="0.5em" - margin-left="{$title.margin.left}" - start-indent="0pt" - font-size="&hsize3;" - font-weight="bold" - font-family="{$title.fontset}"/> - </t:titlepage-content> - - <t:titlepage-content t:side="verso"> - </t:titlepage-content> - - <t:titlepage-separator> - </t:titlepage-separator> - - <t:titlepage-before t:side="recto"> - </t:titlepage-before> - - <t:titlepage-before t:side="verso"> - </t:titlepage-before> - </t:titlepage> - - <t:titlepage t:element="list.of.procedures" t:wrapper="fo:block"> - <t:titlepage-content t:side="recto"> - <title - t:force="1" - t:named-template="gentext" - param:key="'ListofProcedures'" - space-before.minimum="1em" - space-before.optimum="1.5em" - space-before.maximum="2em" - space-after="0.5em" - margin-left="{$title.margin.left}" - start-indent="0pt" - font-size="&hsize3;" - font-weight="bold" - font-family="{$title.fontset}"/> - </t:titlepage-content> - - <t:titlepage-content t:side="verso"> - </t:titlepage-content> - - <t:titlepage-separator> - </t:titlepage-separator> - - <t:titlepage-before t:side="recto"> - </t:titlepage-before> - - <t:titlepage-before t:side="verso"> - </t:titlepage-before> - </t:titlepage> - - <t:titlepage t:element="list.of.unknowns" t:wrapper="fo:block"> - <t:titlepage-content t:side="recto"> - <title - t:force="1" - t:named-template="gentext" - param:key="'ListofUnknown'" - space-before.minimum="1em" - space-before.optimum="1.5em" - space-before.maximum="2em" - space-after="0.5em" - margin-left="{$title.margin.left}" - start-indent="0pt" - font-size="&hsize3;" - font-weight="bold" - font-family="{$title.fontset}"/> - </t:titlepage-content> - - <t:titlepage-content t:side="verso"> - </t:titlepage-content> - - <t:titlepage-separator> - </t:titlepage-separator> - - <t:titlepage-before t:side="recto"> - </t:titlepage-before> - - <t:titlepage-before t:side="verso"> - </t:titlepage-before> - </t:titlepage> - -<!-- ==================================================================== --> - -</t:templates> diff --git a/docbook-xsl-1.75.2/fo/titlepage.templates.xsl b/docbook-xsl-1.75.2/fo/titlepage.templates.xsl deleted file mode 100644 index 0b9cafa..0000000 --- a/docbook-xsl-1.75.2/fo/titlepage.templates.xsl +++ /dev/null @@ -1,5182 +0,0 @@ -<?xml version="1.0"?> - -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:exsl="http://exslt.org/common" version="1.0" exclude-result-prefixes="exsl"> - -<!-- This stylesheet was created by template/titlepage.xsl--> - -<xsl:template name="article.titlepage.recto"> - <xsl:choose> - <xsl:when test="articleinfo/title"> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="articleinfo/title"/> - </xsl:when> - <xsl:when test="artheader/title"> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="artheader/title"/> - </xsl:when> - <xsl:when test="info/title"> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="info/title"/> - </xsl:when> - <xsl:when test="title"> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="title"/> - </xsl:when> - </xsl:choose> - - <xsl:choose> - <xsl:when test="articleinfo/subtitle"> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="articleinfo/subtitle"/> - </xsl:when> - <xsl:when test="artheader/subtitle"> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="artheader/subtitle"/> - </xsl:when> - <xsl:when test="info/subtitle"> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="info/subtitle"/> - </xsl:when> - <xsl:when test="subtitle"> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="subtitle"/> - </xsl:when> - </xsl:choose> - - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="articleinfo/corpauthor"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="artheader/corpauthor"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="info/corpauthor"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="articleinfo/authorgroup"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="artheader/authorgroup"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="info/authorgroup"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="articleinfo/author"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="artheader/author"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="info/author"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="articleinfo/othercredit"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="artheader/othercredit"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="info/othercredit"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="articleinfo/releaseinfo"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="artheader/releaseinfo"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="info/releaseinfo"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="articleinfo/copyright"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="artheader/copyright"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="info/copyright"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="articleinfo/legalnotice"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="artheader/legalnotice"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="info/legalnotice"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="articleinfo/pubdate"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="artheader/pubdate"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="info/pubdate"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="articleinfo/revision"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="artheader/revision"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="info/revision"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="articleinfo/revhistory"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="artheader/revhistory"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="info/revhistory"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="articleinfo/abstract"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="artheader/abstract"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="info/abstract"/> -</xsl:template> - -<xsl:template name="article.titlepage.verso"> -</xsl:template> - -<xsl:template name="article.titlepage.separator"> -</xsl:template> - -<xsl:template name="article.titlepage.before.recto"> -</xsl:template> - -<xsl:template name="article.titlepage.before.verso"> -</xsl:template> - -<xsl:template name="article.titlepage"> - <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" font-family="{$title.fontset}"> - <xsl:variable name="recto.content"> - <xsl:call-template name="article.titlepage.before.recto"/> - <xsl:call-template name="article.titlepage.recto"/> - </xsl:variable> - <xsl:variable name="recto.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> - <fo:block start-indent="0pt" text-align="center"><xsl:copy-of select="$recto.content"/></fo:block> - </xsl:if> - <xsl:variable name="verso.content"> - <xsl:call-template name="article.titlepage.before.verso"/> - <xsl:call-template name="article.titlepage.verso"/> - </xsl:variable> - <xsl:variable name="verso.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> - <fo:block><xsl:copy-of select="$verso.content"/></fo:block> - </xsl:if> - <xsl:call-template name="article.titlepage.separator"/> - </fo:block> -</xsl:template> - -<xsl:template match="*" mode="article.titlepage.recto.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="*" mode="article.titlepage.verso.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="title" mode="article.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="article.titlepage.recto.style" keep-with-next.within-column="always" font-size="24.8832pt" font-weight="bold"> -<xsl:call-template name="component.title"> -<xsl:with-param name="node" select="ancestor-or-self::article[1]"/> -</xsl:call-template> -</fo:block> -</xsl:template> - -<xsl:template match="subtitle" mode="article.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="article.titlepage.recto.style"> -<xsl:apply-templates select="." mode="article.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="corpauthor" mode="article.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="article.titlepage.recto.style" space-before="0.5em" font-size="14.4pt"> -<xsl:apply-templates select="." mode="article.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="authorgroup" mode="article.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="article.titlepage.recto.style" space-before="0.5em" font-size="14.4pt"> -<xsl:apply-templates select="." mode="article.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="author" mode="article.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="article.titlepage.recto.style" space-before="0.5em" font-size="14.4pt"> -<xsl:apply-templates select="." mode="article.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="othercredit" mode="article.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="article.titlepage.recto.style" space-before="0.5em"> -<xsl:apply-templates select="." mode="article.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="releaseinfo" mode="article.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="article.titlepage.recto.style" space-before="0.5em"> -<xsl:apply-templates select="." mode="article.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="copyright" mode="article.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="article.titlepage.recto.style" space-before="0.5em"> -<xsl:apply-templates select="." mode="article.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="legalnotice" mode="article.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="article.titlepage.recto.style" text-align="start" margin-left="0.5in" margin-right="0.5in" font-family="{$body.fontset}"> -<xsl:apply-templates select="." mode="article.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="pubdate" mode="article.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="article.titlepage.recto.style" space-before="0.5em"> -<xsl:apply-templates select="." mode="article.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="revision" mode="article.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="article.titlepage.recto.style" space-before="0.5em"> -<xsl:apply-templates select="." mode="article.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="revhistory" mode="article.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="article.titlepage.recto.style" space-before="0.5em"> -<xsl:apply-templates select="." mode="article.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="abstract" mode="article.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="article.titlepage.recto.style" space-before="0.5em" text-align="start" margin-left="0.5in" margin-right="0.5in" font-family="{$body.fontset}"> -<xsl:apply-templates select="." mode="article.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template name="set.titlepage.recto"> - <xsl:choose> - <xsl:when test="setinfo/title"> - <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="setinfo/title"/> - </xsl:when> - <xsl:when test="info/title"> - <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="info/title"/> - </xsl:when> - <xsl:when test="title"> - <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="title"/> - </xsl:when> - </xsl:choose> - - <xsl:choose> - <xsl:when test="setinfo/subtitle"> - <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="setinfo/subtitle"/> - </xsl:when> - <xsl:when test="info/subtitle"> - <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="info/subtitle"/> - </xsl:when> - <xsl:when test="subtitle"> - <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="subtitle"/> - </xsl:when> - </xsl:choose> - - <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="setinfo/corpauthor"/> - <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="info/corpauthor"/> - <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="setinfo/authorgroup"/> - <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="info/authorgroup"/> - <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="setinfo/author"/> - <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="info/author"/> - <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="setinfo/othercredit"/> - <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="info/othercredit"/> - <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="setinfo/releaseinfo"/> - <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="info/releaseinfo"/> - <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="setinfo/copyright"/> - <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="info/copyright"/> - <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="setinfo/legalnotice"/> - <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="info/legalnotice"/> - <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="setinfo/pubdate"/> - <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="info/pubdate"/> - <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="setinfo/revision"/> - <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="info/revision"/> - <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="setinfo/revhistory"/> - <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="info/revhistory"/> - <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="setinfo/abstract"/> - <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="info/abstract"/> -</xsl:template> - -<xsl:template name="set.titlepage.verso"> -</xsl:template> - -<xsl:template name="set.titlepage.separator"> -</xsl:template> - -<xsl:template name="set.titlepage.before.recto"> -</xsl:template> - -<xsl:template name="set.titlepage.before.verso"> -</xsl:template> - -<xsl:template name="set.titlepage"> - <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> - <xsl:variable name="recto.content"> - <xsl:call-template name="set.titlepage.before.recto"/> - <xsl:call-template name="set.titlepage.recto"/> - </xsl:variable> - <xsl:variable name="recto.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> - <fo:block><xsl:copy-of select="$recto.content"/></fo:block> - </xsl:if> - <xsl:variable name="verso.content"> - <xsl:call-template name="set.titlepage.before.verso"/> - <xsl:call-template name="set.titlepage.verso"/> - </xsl:variable> - <xsl:variable name="verso.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> - <fo:block><xsl:copy-of select="$verso.content"/></fo:block> - </xsl:if> - <xsl:call-template name="set.titlepage.separator"/> - </fo:block> -</xsl:template> - -<xsl:template match="*" mode="set.titlepage.recto.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="*" mode="set.titlepage.verso.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="title" mode="set.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="set.titlepage.recto.style" text-align="center" font-size="24.8832pt" space-before="18.6624pt" font-weight="bold" font-family="{$title.fontset}"> -<xsl:call-template name="division.title"> -<xsl:with-param name="node" select="ancestor-or-self::set[1]"/> -</xsl:call-template> -</fo:block> -</xsl:template> - -<xsl:template match="subtitle" mode="set.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="set.titlepage.recto.style" font-family="{$title.fontset}" text-align="center"> -<xsl:apply-templates select="." mode="set.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="corpauthor" mode="set.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="set.titlepage.recto.style"> -<xsl:apply-templates select="." mode="set.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="authorgroup" mode="set.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="set.titlepage.recto.style"> -<xsl:apply-templates select="." mode="set.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="author" mode="set.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="set.titlepage.recto.style"> -<xsl:apply-templates select="." mode="set.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="othercredit" mode="set.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="set.titlepage.recto.style"> -<xsl:apply-templates select="." mode="set.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="releaseinfo" mode="set.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="set.titlepage.recto.style"> -<xsl:apply-templates select="." mode="set.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="copyright" mode="set.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="set.titlepage.recto.style"> -<xsl:apply-templates select="." mode="set.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="legalnotice" mode="set.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="set.titlepage.recto.style"> -<xsl:apply-templates select="." mode="set.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="pubdate" mode="set.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="set.titlepage.recto.style"> -<xsl:apply-templates select="." mode="set.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="revision" mode="set.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="set.titlepage.recto.style"> -<xsl:apply-templates select="." mode="set.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="revhistory" mode="set.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="set.titlepage.recto.style"> -<xsl:apply-templates select="." mode="set.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="abstract" mode="set.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="set.titlepage.recto.style"> -<xsl:apply-templates select="." mode="set.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template name="book.titlepage.recto"> - <xsl:choose> - <xsl:when test="bookinfo/title"> - <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/title"/> - </xsl:when> - <xsl:when test="info/title"> - <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/title"/> - </xsl:when> - <xsl:when test="title"> - <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="title"/> - </xsl:when> - </xsl:choose> - - <xsl:choose> - <xsl:when test="bookinfo/subtitle"> - <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/subtitle"/> - </xsl:when> - <xsl:when test="info/subtitle"> - <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/subtitle"/> - </xsl:when> - <xsl:when test="subtitle"> - <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="subtitle"/> - </xsl:when> - </xsl:choose> - - <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/corpauthor"/> - <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/corpauthor"/> - <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/authorgroup"/> - <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/authorgroup"/> - <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/author"/> - <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/author"/> -</xsl:template> - -<xsl:template name="book.titlepage.verso"> - <xsl:choose> - <xsl:when test="bookinfo/title"> - <xsl:apply-templates mode="book.titlepage.verso.auto.mode" select="bookinfo/title"/> - </xsl:when> - <xsl:when test="info/title"> - <xsl:apply-templates mode="book.titlepage.verso.auto.mode" select="info/title"/> - </xsl:when> - <xsl:when test="title"> - <xsl:apply-templates mode="book.titlepage.verso.auto.mode" select="title"/> - </xsl:when> - </xsl:choose> - - <xsl:apply-templates mode="book.titlepage.verso.auto.mode" select="bookinfo/corpauthor"/> - <xsl:apply-templates mode="book.titlepage.verso.auto.mode" select="info/corpauthor"/> - <xsl:apply-templates mode="book.titlepage.verso.auto.mode" select="bookinfo/authorgroup"/> - <xsl:apply-templates mode="book.titlepage.verso.auto.mode" select="info/authorgroup"/> - <xsl:apply-templates mode="book.titlepage.verso.auto.mode" select="bookinfo/author"/> - <xsl:apply-templates mode="book.titlepage.verso.auto.mode" select="info/author"/> - <xsl:apply-templates mode="book.titlepage.verso.auto.mode" select="bookinfo/othercredit"/> - <xsl:apply-templates mode="book.titlepage.verso.auto.mode" select="info/othercredit"/> - <xsl:apply-templates mode="book.titlepage.verso.auto.mode" select="bookinfo/releaseinfo"/> - <xsl:apply-templates mode="book.titlepage.verso.auto.mode" select="info/releaseinfo"/> - <xsl:apply-templates mode="book.titlepage.verso.auto.mode" select="bookinfo/pubdate"/> - <xsl:apply-templates mode="book.titlepage.verso.auto.mode" select="info/pubdate"/> - <xsl:apply-templates mode="book.titlepage.verso.auto.mode" select="bookinfo/copyright"/> - <xsl:apply-templates mode="book.titlepage.verso.auto.mode" select="info/copyright"/> - <xsl:apply-templates mode="book.titlepage.verso.auto.mode" select="bookinfo/abstract"/> - <xsl:apply-templates mode="book.titlepage.verso.auto.mode" select="info/abstract"/> - <xsl:apply-templates mode="book.titlepage.verso.auto.mode" select="bookinfo/legalnotice"/> - <xsl:apply-templates mode="book.titlepage.verso.auto.mode" select="info/legalnotice"/> -</xsl:template> - -<xsl:template name="book.titlepage.separator"><fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" break-after="page"/> -</xsl:template> - -<xsl:template name="book.titlepage.before.recto"> -</xsl:template> - -<xsl:template name="book.titlepage.before.verso"><fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" break-after="page"/> -</xsl:template> - -<xsl:template name="book.titlepage"> - <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> - <xsl:variable name="recto.content"> - <xsl:call-template name="book.titlepage.before.recto"/> - <xsl:call-template name="book.titlepage.recto"/> - </xsl:variable> - <xsl:variable name="recto.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> - <fo:block><xsl:copy-of select="$recto.content"/></fo:block> - </xsl:if> - <xsl:variable name="verso.content"> - <xsl:call-template name="book.titlepage.before.verso"/> - <xsl:call-template name="book.titlepage.verso"/> - </xsl:variable> - <xsl:variable name="verso.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> - <fo:block><xsl:copy-of select="$verso.content"/></fo:block> - </xsl:if> - <xsl:call-template name="book.titlepage.separator"/> - </fo:block> -</xsl:template> - -<xsl:template match="*" mode="book.titlepage.recto.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="*" mode="book.titlepage.verso.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="title" mode="book.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="book.titlepage.recto.style" text-align="center" font-size="24.8832pt" space-before="18.6624pt" font-weight="bold" font-family="{$title.fontset}"> -<xsl:call-template name="division.title"> -<xsl:with-param name="node" select="ancestor-or-self::book[1]"/> -</xsl:call-template> -</fo:block> -</xsl:template> - -<xsl:template match="subtitle" mode="book.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="book.titlepage.recto.style" text-align="center" font-size="20.736pt" space-before="15.552pt" font-family="{$title.fontset}"> -<xsl:apply-templates select="." mode="book.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="corpauthor" mode="book.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="book.titlepage.recto.style" font-size="17.28pt" keep-with-next.within-column="always" space-before="2in"> -<xsl:apply-templates select="." mode="book.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="authorgroup" mode="book.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="book.titlepage.recto.style" space-before="2in"> -<xsl:apply-templates select="." mode="book.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="author" mode="book.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="book.titlepage.recto.style" font-size="17.28pt" space-before="10.8pt" keep-with-next.within-column="always"> -<xsl:apply-templates select="." mode="book.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="title" mode="book.titlepage.verso.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="book.titlepage.verso.style" font-size="14.4pt" font-weight="bold" font-family="{$title.fontset}"> -<xsl:call-template name="book.verso.title"> -</xsl:call-template> -</fo:block> -</xsl:template> - -<xsl:template match="corpauthor" mode="book.titlepage.verso.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="book.titlepage.verso.style"> -<xsl:apply-templates select="." mode="book.titlepage.verso.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="authorgroup" mode="book.titlepage.verso.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="book.titlepage.verso.style"> -<xsl:call-template name="verso.authorgroup"> -</xsl:call-template> -</fo:block> -</xsl:template> - -<xsl:template match="author" mode="book.titlepage.verso.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="book.titlepage.verso.style"> -<xsl:apply-templates select="." mode="book.titlepage.verso.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="othercredit" mode="book.titlepage.verso.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="book.titlepage.verso.style"> -<xsl:apply-templates select="." mode="book.titlepage.verso.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="releaseinfo" mode="book.titlepage.verso.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="book.titlepage.verso.style" space-before="0.5em"> -<xsl:apply-templates select="." mode="book.titlepage.verso.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="pubdate" mode="book.titlepage.verso.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="book.titlepage.verso.style" space-before="1em"> -<xsl:apply-templates select="." mode="book.titlepage.verso.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="copyright" mode="book.titlepage.verso.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="book.titlepage.verso.style"> -<xsl:apply-templates select="." mode="book.titlepage.verso.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="abstract" mode="book.titlepage.verso.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="book.titlepage.verso.style"> -<xsl:apply-templates select="." mode="book.titlepage.verso.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="legalnotice" mode="book.titlepage.verso.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="book.titlepage.verso.style" font-size="8pt"> -<xsl:apply-templates select="." mode="book.titlepage.verso.mode"/> -</fo:block> -</xsl:template> - -<xsl:template name="part.titlepage.recto"> - <xsl:choose> - <xsl:when test="partinfo/title"> - <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="partinfo/title"/> - </xsl:when> - <xsl:when test="docinfo/title"> - <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="docinfo/title"/> - </xsl:when> - <xsl:when test="info/title"> - <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="info/title"/> - </xsl:when> - <xsl:when test="title"> - <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="title"/> - </xsl:when> - </xsl:choose> - - <xsl:choose> - <xsl:when test="partinfo/subtitle"> - <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="partinfo/subtitle"/> - </xsl:when> - <xsl:when test="docinfo/subtitle"> - <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="docinfo/subtitle"/> - </xsl:when> - <xsl:when test="info/subtitle"> - <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="info/subtitle"/> - </xsl:when> - <xsl:when test="subtitle"> - <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="subtitle"/> - </xsl:when> - </xsl:choose> - -</xsl:template> - -<xsl:template name="part.titlepage.verso"> -</xsl:template> - -<xsl:template name="part.titlepage.separator"> -</xsl:template> - -<xsl:template name="part.titlepage.before.recto"> -</xsl:template> - -<xsl:template name="part.titlepage.before.verso"> -</xsl:template> - -<xsl:template name="part.titlepage"> - <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> - <xsl:variable name="recto.content"> - <xsl:call-template name="part.titlepage.before.recto"/> - <xsl:call-template name="part.titlepage.recto"/> - </xsl:variable> - <xsl:variable name="recto.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> - <fo:block><xsl:copy-of select="$recto.content"/></fo:block> - </xsl:if> - <xsl:variable name="verso.content"> - <xsl:call-template name="part.titlepage.before.verso"/> - <xsl:call-template name="part.titlepage.verso"/> - </xsl:variable> - <xsl:variable name="verso.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> - <fo:block><xsl:copy-of select="$verso.content"/></fo:block> - </xsl:if> - <xsl:call-template name="part.titlepage.separator"/> - </fo:block> -</xsl:template> - -<xsl:template match="*" mode="part.titlepage.recto.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="*" mode="part.titlepage.verso.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="title" mode="part.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="part.titlepage.recto.style" text-align="center" font-size="24.8832pt" space-before="18.6624pt" font-weight="bold" font-family="{$title.fontset}"> -<xsl:call-template name="division.title"> -<xsl:with-param name="node" select="ancestor-or-self::part[1]"/> -</xsl:call-template> -</fo:block> -</xsl:template> - -<xsl:template match="subtitle" mode="part.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="part.titlepage.recto.style" text-align="center" font-size="20.736pt" space-before="15.552pt" font-weight="bold" font-style="italic" font-family="{$title.fontset}"> -<xsl:apply-templates select="." mode="part.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template name="partintro.titlepage.recto"> - <xsl:choose> - <xsl:when test="partintroinfo/title"> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="partintroinfo/title"/> - </xsl:when> - <xsl:when test="docinfo/title"> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="docinfo/title"/> - </xsl:when> - <xsl:when test="info/title"> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="info/title"/> - </xsl:when> - <xsl:when test="title"> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="title"/> - </xsl:when> - </xsl:choose> - - <xsl:choose> - <xsl:when test="partintroinfo/subtitle"> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="partintroinfo/subtitle"/> - </xsl:when> - <xsl:when test="docinfo/subtitle"> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="docinfo/subtitle"/> - </xsl:when> - <xsl:when test="info/subtitle"> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="info/subtitle"/> - </xsl:when> - <xsl:when test="subtitle"> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="subtitle"/> - </xsl:when> - </xsl:choose> - - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="partintroinfo/corpauthor"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="docinfo/corpauthor"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="info/corpauthor"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="partintroinfo/authorgroup"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="docinfo/authorgroup"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="info/authorgroup"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="partintroinfo/author"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="docinfo/author"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="info/author"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="partintroinfo/othercredit"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="docinfo/othercredit"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="info/othercredit"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="partintroinfo/releaseinfo"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="docinfo/releaseinfo"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="info/releaseinfo"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="partintroinfo/copyright"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="docinfo/copyright"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="info/copyright"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="partintroinfo/legalnotice"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="docinfo/legalnotice"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="info/legalnotice"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="partintroinfo/pubdate"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="docinfo/pubdate"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="info/pubdate"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="partintroinfo/revision"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="docinfo/revision"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="info/revision"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="partintroinfo/revhistory"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="docinfo/revhistory"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="info/revhistory"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="partintroinfo/abstract"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="docinfo/abstract"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="info/abstract"/> -</xsl:template> - -<xsl:template name="partintro.titlepage.verso"> -</xsl:template> - -<xsl:template name="partintro.titlepage.separator"> -</xsl:template> - -<xsl:template name="partintro.titlepage.before.recto"> -</xsl:template> - -<xsl:template name="partintro.titlepage.before.verso"> -</xsl:template> - -<xsl:template name="partintro.titlepage"> - <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> - <xsl:variable name="recto.content"> - <xsl:call-template name="partintro.titlepage.before.recto"/> - <xsl:call-template name="partintro.titlepage.recto"/> - </xsl:variable> - <xsl:variable name="recto.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> - <fo:block><xsl:copy-of select="$recto.content"/></fo:block> - </xsl:if> - <xsl:variable name="verso.content"> - <xsl:call-template name="partintro.titlepage.before.verso"/> - <xsl:call-template name="partintro.titlepage.verso"/> - </xsl:variable> - <xsl:variable name="verso.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> - <fo:block><xsl:copy-of select="$verso.content"/></fo:block> - </xsl:if> - <xsl:call-template name="partintro.titlepage.separator"/> - </fo:block> -</xsl:template> - -<xsl:template match="*" mode="partintro.titlepage.recto.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="*" mode="partintro.titlepage.verso.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="title" mode="partintro.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="partintro.titlepage.recto.style" text-align="center" font-size="24.8832pt" font-weight="bold" space-before="1em" font-family="{$title.fontset}"> -<xsl:apply-templates select="." mode="partintro.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="subtitle" mode="partintro.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="partintro.titlepage.recto.style" text-align="center" font-size="14.4pt" font-weight="bold" font-style="italic" font-family="{$title.fontset}"> -<xsl:apply-templates select="." mode="partintro.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="corpauthor" mode="partintro.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="partintro.titlepage.recto.style"> -<xsl:apply-templates select="." mode="partintro.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="authorgroup" mode="partintro.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="partintro.titlepage.recto.style"> -<xsl:apply-templates select="." mode="partintro.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="author" mode="partintro.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="partintro.titlepage.recto.style"> -<xsl:apply-templates select="." mode="partintro.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="othercredit" mode="partintro.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="partintro.titlepage.recto.style"> -<xsl:apply-templates select="." mode="partintro.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="releaseinfo" mode="partintro.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="partintro.titlepage.recto.style"> -<xsl:apply-templates select="." mode="partintro.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="copyright" mode="partintro.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="partintro.titlepage.recto.style"> -<xsl:apply-templates select="." mode="partintro.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="legalnotice" mode="partintro.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="partintro.titlepage.recto.style"> -<xsl:apply-templates select="." mode="partintro.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="pubdate" mode="partintro.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="partintro.titlepage.recto.style"> -<xsl:apply-templates select="." mode="partintro.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="revision" mode="partintro.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="partintro.titlepage.recto.style"> -<xsl:apply-templates select="." mode="partintro.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="revhistory" mode="partintro.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="partintro.titlepage.recto.style"> -<xsl:apply-templates select="." mode="partintro.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="abstract" mode="partintro.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="partintro.titlepage.recto.style"> -<xsl:apply-templates select="." mode="partintro.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template name="reference.titlepage.recto"> - <xsl:choose> - <xsl:when test="referenceinfo/title"> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="referenceinfo/title"/> - </xsl:when> - <xsl:when test="docinfo/title"> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="docinfo/title"/> - </xsl:when> - <xsl:when test="info/title"> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="info/title"/> - </xsl:when> - <xsl:when test="title"> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="title"/> - </xsl:when> - </xsl:choose> - - <xsl:choose> - <xsl:when test="referenceinfo/subtitle"> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="referenceinfo/subtitle"/> - </xsl:when> - <xsl:when test="docinfo/subtitle"> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="docinfo/subtitle"/> - </xsl:when> - <xsl:when test="info/subtitle"> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="info/subtitle"/> - </xsl:when> - <xsl:when test="subtitle"> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="subtitle"/> - </xsl:when> - </xsl:choose> - - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="referenceinfo/corpauthor"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="docinfo/corpauthor"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="info/corpauthor"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="referenceinfo/authorgroup"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="docinfo/authorgroup"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="info/authorgroup"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="referenceinfo/author"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="docinfo/author"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="info/author"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="referenceinfo/othercredit"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="docinfo/othercredit"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="info/othercredit"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="referenceinfo/releaseinfo"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="docinfo/releaseinfo"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="info/releaseinfo"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="referenceinfo/copyright"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="docinfo/copyright"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="info/copyright"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="referenceinfo/legalnotice"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="docinfo/legalnotice"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="info/legalnotice"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="referenceinfo/pubdate"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="docinfo/pubdate"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="info/pubdate"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="referenceinfo/revision"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="docinfo/revision"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="info/revision"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="referenceinfo/revhistory"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="docinfo/revhistory"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="info/revhistory"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="referenceinfo/abstract"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="docinfo/abstract"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="info/abstract"/> -</xsl:template> - -<xsl:template name="reference.titlepage.verso"> -</xsl:template> - -<xsl:template name="reference.titlepage.separator"> -</xsl:template> - -<xsl:template name="reference.titlepage.before.recto"> -</xsl:template> - -<xsl:template name="reference.titlepage.before.verso"> -</xsl:template> - -<xsl:template name="reference.titlepage"> - <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> - <xsl:variable name="recto.content"> - <xsl:call-template name="reference.titlepage.before.recto"/> - <xsl:call-template name="reference.titlepage.recto"/> - </xsl:variable> - <xsl:variable name="recto.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> - <fo:block><xsl:copy-of select="$recto.content"/></fo:block> - </xsl:if> - <xsl:variable name="verso.content"> - <xsl:call-template name="reference.titlepage.before.verso"/> - <xsl:call-template name="reference.titlepage.verso"/> - </xsl:variable> - <xsl:variable name="verso.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> - <fo:block><xsl:copy-of select="$verso.content"/></fo:block> - </xsl:if> - <xsl:call-template name="reference.titlepage.separator"/> - </fo:block> -</xsl:template> - -<xsl:template match="*" mode="reference.titlepage.recto.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="*" mode="reference.titlepage.verso.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="title" mode="reference.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="reference.titlepage.recto.style" text-align="center" font-size="24.8832pt" space-before="18.6624pt" font-weight="bold" font-family="{$title.fontset}"> -<xsl:call-template name="division.title"> -<xsl:with-param name="node" select="ancestor-or-self::reference[1]"/> -</xsl:call-template> -</fo:block> -</xsl:template> - -<xsl:template match="subtitle" mode="reference.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="reference.titlepage.recto.style" font-family="{$title.fontset}" text-align="center"> -<xsl:apply-templates select="." mode="reference.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="corpauthor" mode="reference.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="reference.titlepage.recto.style"> -<xsl:apply-templates select="." mode="reference.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="authorgroup" mode="reference.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="reference.titlepage.recto.style"> -<xsl:apply-templates select="." mode="reference.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="author" mode="reference.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="reference.titlepage.recto.style"> -<xsl:apply-templates select="." mode="reference.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="othercredit" mode="reference.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="reference.titlepage.recto.style"> -<xsl:apply-templates select="." mode="reference.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="releaseinfo" mode="reference.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="reference.titlepage.recto.style"> -<xsl:apply-templates select="." mode="reference.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="copyright" mode="reference.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="reference.titlepage.recto.style"> -<xsl:apply-templates select="." mode="reference.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="legalnotice" mode="reference.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="reference.titlepage.recto.style"> -<xsl:apply-templates select="." mode="reference.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="pubdate" mode="reference.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="reference.titlepage.recto.style"> -<xsl:apply-templates select="." mode="reference.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="revision" mode="reference.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="reference.titlepage.recto.style"> -<xsl:apply-templates select="." mode="reference.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="revhistory" mode="reference.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="reference.titlepage.recto.style"> -<xsl:apply-templates select="." mode="reference.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="abstract" mode="reference.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="reference.titlepage.recto.style"> -<xsl:apply-templates select="." mode="reference.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template name="refsynopsisdiv.titlepage.recto"> - <xsl:choose> - <xsl:when test="refsynopsisdivinfo/title"> - <xsl:apply-templates mode="refsynopsisdiv.titlepage.recto.auto.mode" select="refsynopsisdivinfo/title"/> - </xsl:when> - <xsl:when test="docinfo/title"> - <xsl:apply-templates mode="refsynopsisdiv.titlepage.recto.auto.mode" select="docinfo/title"/> - </xsl:when> - <xsl:when test="info/title"> - <xsl:apply-templates mode="refsynopsisdiv.titlepage.recto.auto.mode" select="info/title"/> - </xsl:when> - <xsl:when test="title"> - <xsl:apply-templates mode="refsynopsisdiv.titlepage.recto.auto.mode" select="title"/> - </xsl:when> - </xsl:choose> - -</xsl:template> - -<xsl:template name="refsynopsisdiv.titlepage.verso"> -</xsl:template> - -<xsl:template name="refsynopsisdiv.titlepage.separator"> -</xsl:template> - -<xsl:template name="refsynopsisdiv.titlepage.before.recto"> -</xsl:template> - -<xsl:template name="refsynopsisdiv.titlepage.before.verso"> -</xsl:template> - -<xsl:template name="refsynopsisdiv.titlepage"> - <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> - <xsl:variable name="recto.content"> - <xsl:call-template name="refsynopsisdiv.titlepage.before.recto"/> - <xsl:call-template name="refsynopsisdiv.titlepage.recto"/> - </xsl:variable> - <xsl:variable name="recto.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> - <fo:block><xsl:copy-of select="$recto.content"/></fo:block> - </xsl:if> - <xsl:variable name="verso.content"> - <xsl:call-template name="refsynopsisdiv.titlepage.before.verso"/> - <xsl:call-template name="refsynopsisdiv.titlepage.verso"/> - </xsl:variable> - <xsl:variable name="verso.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> - <fo:block><xsl:copy-of select="$verso.content"/></fo:block> - </xsl:if> - <xsl:call-template name="refsynopsisdiv.titlepage.separator"/> - </fo:block> -</xsl:template> - -<xsl:template match="*" mode="refsynopsisdiv.titlepage.recto.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="*" mode="refsynopsisdiv.titlepage.verso.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="title" mode="refsynopsisdiv.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="refsynopsisdiv.titlepage.recto.style" font-family="{$title.fontset}"> -<xsl:apply-templates select="." mode="refsynopsisdiv.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template name="refsection.titlepage.recto"> - <xsl:choose> - <xsl:when test="refsectioninfo/title"> - <xsl:apply-templates mode="refsection.titlepage.recto.auto.mode" select="refsectioninfo/title"/> - </xsl:when> - <xsl:when test="docinfo/title"> - <xsl:apply-templates mode="refsection.titlepage.recto.auto.mode" select="docinfo/title"/> - </xsl:when> - <xsl:when test="info/title"> - <xsl:apply-templates mode="refsection.titlepage.recto.auto.mode" select="info/title"/> - </xsl:when> - <xsl:when test="title"> - <xsl:apply-templates mode="refsection.titlepage.recto.auto.mode" select="title"/> - </xsl:when> - </xsl:choose> - -</xsl:template> - -<xsl:template name="refsection.titlepage.verso"> -</xsl:template> - -<xsl:template name="refsection.titlepage.separator"> -</xsl:template> - -<xsl:template name="refsection.titlepage.before.recto"> -</xsl:template> - -<xsl:template name="refsection.titlepage.before.verso"> -</xsl:template> - -<xsl:template name="refsection.titlepage"> - <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> - <xsl:variable name="recto.content"> - <xsl:call-template name="refsection.titlepage.before.recto"/> - <xsl:call-template name="refsection.titlepage.recto"/> - </xsl:variable> - <xsl:variable name="recto.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> - <fo:block><xsl:copy-of select="$recto.content"/></fo:block> - </xsl:if> - <xsl:variable name="verso.content"> - <xsl:call-template name="refsection.titlepage.before.verso"/> - <xsl:call-template name="refsection.titlepage.verso"/> - </xsl:variable> - <xsl:variable name="verso.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> - <fo:block><xsl:copy-of select="$verso.content"/></fo:block> - </xsl:if> - <xsl:call-template name="refsection.titlepage.separator"/> - </fo:block> -</xsl:template> - -<xsl:template match="*" mode="refsection.titlepage.recto.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="*" mode="refsection.titlepage.verso.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="title" mode="refsection.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="refsection.titlepage.recto.style" font-family="{$title.fontset}"> -<xsl:apply-templates select="." mode="refsection.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template name="refsect1.titlepage.recto"> - <xsl:choose> - <xsl:when test="refsect1info/title"> - <xsl:apply-templates mode="refsect1.titlepage.recto.auto.mode" select="refsect1info/title"/> - </xsl:when> - <xsl:when test="docinfo/title"> - <xsl:apply-templates mode="refsect1.titlepage.recto.auto.mode" select="docinfo/title"/> - </xsl:when> - <xsl:when test="info/title"> - <xsl:apply-templates mode="refsect1.titlepage.recto.auto.mode" select="info/title"/> - </xsl:when> - <xsl:when test="title"> - <xsl:apply-templates mode="refsect1.titlepage.recto.auto.mode" select="title"/> - </xsl:when> - </xsl:choose> - -</xsl:template> - -<xsl:template name="refsect1.titlepage.verso"> -</xsl:template> - -<xsl:template name="refsect1.titlepage.separator"> -</xsl:template> - -<xsl:template name="refsect1.titlepage.before.recto"> -</xsl:template> - -<xsl:template name="refsect1.titlepage.before.verso"> -</xsl:template> - -<xsl:template name="refsect1.titlepage"> - <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> - <xsl:variable name="recto.content"> - <xsl:call-template name="refsect1.titlepage.before.recto"/> - <xsl:call-template name="refsect1.titlepage.recto"/> - </xsl:variable> - <xsl:variable name="recto.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> - <fo:block><xsl:copy-of select="$recto.content"/></fo:block> - </xsl:if> - <xsl:variable name="verso.content"> - <xsl:call-template name="refsect1.titlepage.before.verso"/> - <xsl:call-template name="refsect1.titlepage.verso"/> - </xsl:variable> - <xsl:variable name="verso.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> - <fo:block><xsl:copy-of select="$verso.content"/></fo:block> - </xsl:if> - <xsl:call-template name="refsect1.titlepage.separator"/> - </fo:block> -</xsl:template> - -<xsl:template match="*" mode="refsect1.titlepage.recto.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="*" mode="refsect1.titlepage.verso.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="title" mode="refsect1.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="refsect1.titlepage.recto.style" font-family="{$title.fontset}"> -<xsl:apply-templates select="." mode="refsect1.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template name="refsect2.titlepage.recto"> - <xsl:choose> - <xsl:when test="refsect2info/title"> - <xsl:apply-templates mode="refsect2.titlepage.recto.auto.mode" select="refsect2info/title"/> - </xsl:when> - <xsl:when test="docinfo/title"> - <xsl:apply-templates mode="refsect2.titlepage.recto.auto.mode" select="docinfo/title"/> - </xsl:when> - <xsl:when test="info/title"> - <xsl:apply-templates mode="refsect2.titlepage.recto.auto.mode" select="info/title"/> - </xsl:when> - <xsl:when test="title"> - <xsl:apply-templates mode="refsect2.titlepage.recto.auto.mode" select="title"/> - </xsl:when> - </xsl:choose> - -</xsl:template> - -<xsl:template name="refsect2.titlepage.verso"> -</xsl:template> - -<xsl:template name="refsect2.titlepage.separator"> -</xsl:template> - -<xsl:template name="refsect2.titlepage.before.recto"> -</xsl:template> - -<xsl:template name="refsect2.titlepage.before.verso"> -</xsl:template> - -<xsl:template name="refsect2.titlepage"> - <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> - <xsl:variable name="recto.content"> - <xsl:call-template name="refsect2.titlepage.before.recto"/> - <xsl:call-template name="refsect2.titlepage.recto"/> - </xsl:variable> - <xsl:variable name="recto.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> - <fo:block><xsl:copy-of select="$recto.content"/></fo:block> - </xsl:if> - <xsl:variable name="verso.content"> - <xsl:call-template name="refsect2.titlepage.before.verso"/> - <xsl:call-template name="refsect2.titlepage.verso"/> - </xsl:variable> - <xsl:variable name="verso.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> - <fo:block><xsl:copy-of select="$verso.content"/></fo:block> - </xsl:if> - <xsl:call-template name="refsect2.titlepage.separator"/> - </fo:block> -</xsl:template> - -<xsl:template match="*" mode="refsect2.titlepage.recto.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="*" mode="refsect2.titlepage.verso.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="title" mode="refsect2.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="refsect2.titlepage.recto.style" font-family="{$title.fontset}"> -<xsl:apply-templates select="." mode="refsect2.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template name="refsect3.titlepage.recto"> - <xsl:choose> - <xsl:when test="refsect3info/title"> - <xsl:apply-templates mode="refsect3.titlepage.recto.auto.mode" select="refsect3info/title"/> - </xsl:when> - <xsl:when test="docinfo/title"> - <xsl:apply-templates mode="refsect3.titlepage.recto.auto.mode" select="docinfo/title"/> - </xsl:when> - <xsl:when test="info/title"> - <xsl:apply-templates mode="refsect3.titlepage.recto.auto.mode" select="info/title"/> - </xsl:when> - <xsl:when test="title"> - <xsl:apply-templates mode="refsect3.titlepage.recto.auto.mode" select="title"/> - </xsl:when> - </xsl:choose> - -</xsl:template> - -<xsl:template name="refsect3.titlepage.verso"> -</xsl:template> - -<xsl:template name="refsect3.titlepage.separator"> -</xsl:template> - -<xsl:template name="refsect3.titlepage.before.recto"> -</xsl:template> - -<xsl:template name="refsect3.titlepage.before.verso"> -</xsl:template> - -<xsl:template name="refsect3.titlepage"> - <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> - <xsl:variable name="recto.content"> - <xsl:call-template name="refsect3.titlepage.before.recto"/> - <xsl:call-template name="refsect3.titlepage.recto"/> - </xsl:variable> - <xsl:variable name="recto.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> - <fo:block><xsl:copy-of select="$recto.content"/></fo:block> - </xsl:if> - <xsl:variable name="verso.content"> - <xsl:call-template name="refsect3.titlepage.before.verso"/> - <xsl:call-template name="refsect3.titlepage.verso"/> - </xsl:variable> - <xsl:variable name="verso.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> - <fo:block><xsl:copy-of select="$verso.content"/></fo:block> - </xsl:if> - <xsl:call-template name="refsect3.titlepage.separator"/> - </fo:block> -</xsl:template> - -<xsl:template match="*" mode="refsect3.titlepage.recto.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="*" mode="refsect3.titlepage.verso.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="title" mode="refsect3.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="refsect3.titlepage.recto.style" font-family="{$title.fontset}"> -<xsl:apply-templates select="." mode="refsect3.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template name="dedication.titlepage.recto"> - <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="dedication.titlepage.recto.style" margin-left="{$title.margin.left}" font-size="24.8832pt" font-family="{$title.fontset}" font-weight="bold"> -<xsl:call-template name="component.title"> -<xsl:with-param name="node" select="ancestor-or-self::dedication[1]"/> -</xsl:call-template></fo:block> - <xsl:choose> - <xsl:when test="dedicationinfo/subtitle"> - <xsl:apply-templates mode="dedication.titlepage.recto.auto.mode" select="dedicationinfo/subtitle"/> - </xsl:when> - <xsl:when test="docinfo/subtitle"> - <xsl:apply-templates mode="dedication.titlepage.recto.auto.mode" select="docinfo/subtitle"/> - </xsl:when> - <xsl:when test="info/subtitle"> - <xsl:apply-templates mode="dedication.titlepage.recto.auto.mode" select="info/subtitle"/> - </xsl:when> - <xsl:when test="subtitle"> - <xsl:apply-templates mode="dedication.titlepage.recto.auto.mode" select="subtitle"/> - </xsl:when> - </xsl:choose> - -</xsl:template> - -<xsl:template name="dedication.titlepage.verso"> -</xsl:template> - -<xsl:template name="dedication.titlepage.separator"> -</xsl:template> - -<xsl:template name="dedication.titlepage.before.recto"> -</xsl:template> - -<xsl:template name="dedication.titlepage.before.verso"> -</xsl:template> - -<xsl:template name="dedication.titlepage"> - <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> - <xsl:variable name="recto.content"> - <xsl:call-template name="dedication.titlepage.before.recto"/> - <xsl:call-template name="dedication.titlepage.recto"/> - </xsl:variable> - <xsl:variable name="recto.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> - <fo:block><xsl:copy-of select="$recto.content"/></fo:block> - </xsl:if> - <xsl:variable name="verso.content"> - <xsl:call-template name="dedication.titlepage.before.verso"/> - <xsl:call-template name="dedication.titlepage.verso"/> - </xsl:variable> - <xsl:variable name="verso.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> - <fo:block><xsl:copy-of select="$verso.content"/></fo:block> - </xsl:if> - <xsl:call-template name="dedication.titlepage.separator"/> - </fo:block> -</xsl:template> - -<xsl:template match="*" mode="dedication.titlepage.recto.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="*" mode="dedication.titlepage.verso.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="subtitle" mode="dedication.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="dedication.titlepage.recto.style" font-family="{$title.fontset}"> -<xsl:apply-templates select="." mode="dedication.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template name="acknowledgements.titlepage.recto"> - <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="acknowledgements.titlepage.recto.style" margin-left="{$title.margin.left}" font-size="24.8832pt" font-family="{$title.fontset}" font-weight="bold"> -<xsl:call-template name="component.title"> -<xsl:with-param name="node" select="ancestor-or-self::acknowledgements[1]"/> -</xsl:call-template></fo:block> - <xsl:choose> - <xsl:when test="acknowledgementsinfo/subtitle"> - <xsl:apply-templates mode="acknowledgements.titlepage.recto.auto.mode" select="acknowledgementsinfo/subtitle"/> - </xsl:when> - <xsl:when test="docinfo/subtitle"> - <xsl:apply-templates mode="acknowledgements.titlepage.recto.auto.mode" select="docinfo/subtitle"/> - </xsl:when> - <xsl:when test="info/subtitle"> - <xsl:apply-templates mode="acknowledgements.titlepage.recto.auto.mode" select="info/subtitle"/> - </xsl:when> - <xsl:when test="subtitle"> - <xsl:apply-templates mode="acknowledgements.titlepage.recto.auto.mode" select="subtitle"/> - </xsl:when> - </xsl:choose> - -</xsl:template> - -<xsl:template name="acknowledgements.titlepage.verso"> -</xsl:template> - -<xsl:template name="acknowledgements.titlepage.separator"> -</xsl:template> - -<xsl:template name="acknowledgements.titlepage.before.recto"> -</xsl:template> - -<xsl:template name="acknowledgements.titlepage.before.verso"> -</xsl:template> - -<xsl:template name="acknowledgements.titlepage"> - <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> - <xsl:variable name="recto.content"> - <xsl:call-template name="acknowledgements.titlepage.before.recto"/> - <xsl:call-template name="acknowledgements.titlepage.recto"/> - </xsl:variable> - <xsl:variable name="recto.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> - <fo:block><xsl:copy-of select="$recto.content"/></fo:block> - </xsl:if> - <xsl:variable name="verso.content"> - <xsl:call-template name="acknowledgements.titlepage.before.verso"/> - <xsl:call-template name="acknowledgements.titlepage.verso"/> - </xsl:variable> - <xsl:variable name="verso.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> - <fo:block><xsl:copy-of select="$verso.content"/></fo:block> - </xsl:if> - <xsl:call-template name="acknowledgements.titlepage.separator"/> - </fo:block> -</xsl:template> - -<xsl:template match="*" mode="acknowledgements.titlepage.recto.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="*" mode="acknowledgements.titlepage.verso.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="subtitle" mode="acknowledgements.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="acknowledgements.titlepage.recto.style" font-family="{$title.fontset}"> -<xsl:apply-templates select="." mode="acknowledgements.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template name="preface.titlepage.recto"> - <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="preface.titlepage.recto.style" margin-left="{$title.margin.left}" font-size="24.8832pt" font-family="{$title.fontset}" font-weight="bold"> -<xsl:call-template name="component.title"> -<xsl:with-param name="node" select="ancestor-or-self::preface[1]"/> -</xsl:call-template></fo:block> - <xsl:choose> - <xsl:when test="prefaceinfo/subtitle"> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="prefaceinfo/subtitle"/> - </xsl:when> - <xsl:when test="docinfo/subtitle"> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="docinfo/subtitle"/> - </xsl:when> - <xsl:when test="info/subtitle"> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="info/subtitle"/> - </xsl:when> - <xsl:when test="subtitle"> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="subtitle"/> - </xsl:when> - </xsl:choose> - - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="prefaceinfo/corpauthor"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="docinfo/corpauthor"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="info/corpauthor"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="prefaceinfo/authorgroup"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="docinfo/authorgroup"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="info/authorgroup"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="prefaceinfo/author"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="docinfo/author"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="info/author"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="prefaceinfo/othercredit"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="docinfo/othercredit"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="info/othercredit"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="prefaceinfo/releaseinfo"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="docinfo/releaseinfo"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="info/releaseinfo"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="prefaceinfo/copyright"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="docinfo/copyright"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="info/copyright"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="prefaceinfo/legalnotice"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="docinfo/legalnotice"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="info/legalnotice"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="prefaceinfo/pubdate"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="docinfo/pubdate"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="info/pubdate"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="prefaceinfo/revision"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="docinfo/revision"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="info/revision"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="prefaceinfo/revhistory"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="docinfo/revhistory"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="info/revhistory"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="prefaceinfo/abstract"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="docinfo/abstract"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="info/abstract"/> -</xsl:template> - -<xsl:template name="preface.titlepage.verso"> -</xsl:template> - -<xsl:template name="preface.titlepage.separator"> -</xsl:template> - -<xsl:template name="preface.titlepage.before.recto"> -</xsl:template> - -<xsl:template name="preface.titlepage.before.verso"> -</xsl:template> - -<xsl:template name="preface.titlepage"> - <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> - <xsl:variable name="recto.content"> - <xsl:call-template name="preface.titlepage.before.recto"/> - <xsl:call-template name="preface.titlepage.recto"/> - </xsl:variable> - <xsl:variable name="recto.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> - <fo:block><xsl:copy-of select="$recto.content"/></fo:block> - </xsl:if> - <xsl:variable name="verso.content"> - <xsl:call-template name="preface.titlepage.before.verso"/> - <xsl:call-template name="preface.titlepage.verso"/> - </xsl:variable> - <xsl:variable name="verso.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> - <fo:block><xsl:copy-of select="$verso.content"/></fo:block> - </xsl:if> - <xsl:call-template name="preface.titlepage.separator"/> - </fo:block> -</xsl:template> - -<xsl:template match="*" mode="preface.titlepage.recto.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="*" mode="preface.titlepage.verso.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="subtitle" mode="preface.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="preface.titlepage.recto.style" font-family="{$title.fontset}"> -<xsl:apply-templates select="." mode="preface.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="corpauthor" mode="preface.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="preface.titlepage.recto.style"> -<xsl:apply-templates select="." mode="preface.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="authorgroup" mode="preface.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="preface.titlepage.recto.style"> -<xsl:apply-templates select="." mode="preface.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="author" mode="preface.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="preface.titlepage.recto.style"> -<xsl:apply-templates select="." mode="preface.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="othercredit" mode="preface.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="preface.titlepage.recto.style"> -<xsl:apply-templates select="." mode="preface.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="releaseinfo" mode="preface.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="preface.titlepage.recto.style"> -<xsl:apply-templates select="." mode="preface.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="copyright" mode="preface.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="preface.titlepage.recto.style"> -<xsl:apply-templates select="." mode="preface.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="legalnotice" mode="preface.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="preface.titlepage.recto.style"> -<xsl:apply-templates select="." mode="preface.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="pubdate" mode="preface.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="preface.titlepage.recto.style"> -<xsl:apply-templates select="." mode="preface.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="revision" mode="preface.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="preface.titlepage.recto.style"> -<xsl:apply-templates select="." mode="preface.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="revhistory" mode="preface.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="preface.titlepage.recto.style"> -<xsl:apply-templates select="." mode="preface.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="abstract" mode="preface.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="preface.titlepage.recto.style"> -<xsl:apply-templates select="." mode="preface.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template name="chapter.titlepage.recto"> - <xsl:choose> - <xsl:when test="chapterinfo/title"> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="chapterinfo/title"/> - </xsl:when> - <xsl:when test="docinfo/title"> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="docinfo/title"/> - </xsl:when> - <xsl:when test="info/title"> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="info/title"/> - </xsl:when> - <xsl:when test="title"> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="title"/> - </xsl:when> - </xsl:choose> - - <xsl:choose> - <xsl:when test="chapterinfo/subtitle"> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="chapterinfo/subtitle"/> - </xsl:when> - <xsl:when test="docinfo/subtitle"> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="docinfo/subtitle"/> - </xsl:when> - <xsl:when test="info/subtitle"> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="info/subtitle"/> - </xsl:when> - <xsl:when test="subtitle"> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="subtitle"/> - </xsl:when> - </xsl:choose> - - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="chapterinfo/corpauthor"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="docinfo/corpauthor"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="info/corpauthor"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="chapterinfo/authorgroup"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="docinfo/authorgroup"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="info/authorgroup"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="chapterinfo/author"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="docinfo/author"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="info/author"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="chapterinfo/othercredit"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="docinfo/othercredit"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="info/othercredit"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="chapterinfo/releaseinfo"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="docinfo/releaseinfo"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="info/releaseinfo"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="chapterinfo/copyright"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="docinfo/copyright"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="info/copyright"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="chapterinfo/legalnotice"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="docinfo/legalnotice"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="info/legalnotice"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="chapterinfo/pubdate"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="docinfo/pubdate"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="info/pubdate"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="chapterinfo/revision"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="docinfo/revision"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="info/revision"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="chapterinfo/revhistory"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="docinfo/revhistory"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="info/revhistory"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="chapterinfo/abstract"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="docinfo/abstract"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="info/abstract"/> -</xsl:template> - -<xsl:template name="chapter.titlepage.verso"> -</xsl:template> - -<xsl:template name="chapter.titlepage.separator"> -</xsl:template> - -<xsl:template name="chapter.titlepage.before.recto"> -</xsl:template> - -<xsl:template name="chapter.titlepage.before.verso"> -</xsl:template> - -<xsl:template name="chapter.titlepage"> - <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" font-family="{$title.fontset}"> - <xsl:variable name="recto.content"> - <xsl:call-template name="chapter.titlepage.before.recto"/> - <xsl:call-template name="chapter.titlepage.recto"/> - </xsl:variable> - <xsl:variable name="recto.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> - <fo:block margin-left="{$title.margin.left}"><xsl:copy-of select="$recto.content"/></fo:block> - </xsl:if> - <xsl:variable name="verso.content"> - <xsl:call-template name="chapter.titlepage.before.verso"/> - <xsl:call-template name="chapter.titlepage.verso"/> - </xsl:variable> - <xsl:variable name="verso.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> - <fo:block><xsl:copy-of select="$verso.content"/></fo:block> - </xsl:if> - <xsl:call-template name="chapter.titlepage.separator"/> - </fo:block> -</xsl:template> - -<xsl:template match="*" mode="chapter.titlepage.recto.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="*" mode="chapter.titlepage.verso.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="title" mode="chapter.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="chapter.titlepage.recto.style" font-size="24.8832pt" font-weight="bold"> -<xsl:call-template name="component.title"> -<xsl:with-param name="node" select="ancestor-or-self::chapter[1]"/> -</xsl:call-template> -</fo:block> -</xsl:template> - -<xsl:template match="subtitle" mode="chapter.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="chapter.titlepage.recto.style" space-before="0.5em" font-style="italic" font-size="14.4pt" font-weight="bold"> -<xsl:apply-templates select="." mode="chapter.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="corpauthor" mode="chapter.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="chapter.titlepage.recto.style" space-before="0.5em" space-after="0.5em" font-size="14.4pt"> -<xsl:apply-templates select="." mode="chapter.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="authorgroup" mode="chapter.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="chapter.titlepage.recto.style" space-before="0.5em" space-after="0.5em" font-size="14.4pt"> -<xsl:apply-templates select="." mode="chapter.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="author" mode="chapter.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="chapter.titlepage.recto.style" space-before="0.5em" space-after="0.5em" font-size="14.4pt"> -<xsl:apply-templates select="." mode="chapter.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="othercredit" mode="chapter.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="chapter.titlepage.recto.style"> -<xsl:apply-templates select="." mode="chapter.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="releaseinfo" mode="chapter.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="chapter.titlepage.recto.style"> -<xsl:apply-templates select="." mode="chapter.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="copyright" mode="chapter.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="chapter.titlepage.recto.style"> -<xsl:apply-templates select="." mode="chapter.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="legalnotice" mode="chapter.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="chapter.titlepage.recto.style"> -<xsl:apply-templates select="." mode="chapter.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="pubdate" mode="chapter.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="chapter.titlepage.recto.style"> -<xsl:apply-templates select="." mode="chapter.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="revision" mode="chapter.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="chapter.titlepage.recto.style"> -<xsl:apply-templates select="." mode="chapter.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="revhistory" mode="chapter.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="chapter.titlepage.recto.style"> -<xsl:apply-templates select="." mode="chapter.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="abstract" mode="chapter.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="chapter.titlepage.recto.style"> -<xsl:apply-templates select="." mode="chapter.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template name="appendix.titlepage.recto"> - <xsl:choose> - <xsl:when test="appendixinfo/title"> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="appendixinfo/title"/> - </xsl:when> - <xsl:when test="docinfo/title"> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="docinfo/title"/> - </xsl:when> - <xsl:when test="info/title"> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="info/title"/> - </xsl:when> - <xsl:when test="title"> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="title"/> - </xsl:when> - </xsl:choose> - - <xsl:choose> - <xsl:when test="appendixinfo/subtitle"> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="appendixinfo/subtitle"/> - </xsl:when> - <xsl:when test="docinfo/subtitle"> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="docinfo/subtitle"/> - </xsl:when> - <xsl:when test="info/subtitle"> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="info/subtitle"/> - </xsl:when> - <xsl:when test="subtitle"> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="subtitle"/> - </xsl:when> - </xsl:choose> - - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="appendixinfo/corpauthor"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="docinfo/corpauthor"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="info/corpauthor"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="appendixinfo/authorgroup"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="docinfo/authorgroup"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="info/authorgroup"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="appendixinfo/author"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="docinfo/author"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="info/author"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="appendixinfo/othercredit"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="docinfo/othercredit"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="info/othercredit"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="appendixinfo/releaseinfo"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="docinfo/releaseinfo"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="info/releaseinfo"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="appendixinfo/copyright"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="docinfo/copyright"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="info/copyright"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="appendixinfo/legalnotice"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="docinfo/legalnotice"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="info/legalnotice"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="appendixinfo/pubdate"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="docinfo/pubdate"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="info/pubdate"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="appendixinfo/revision"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="docinfo/revision"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="info/revision"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="appendixinfo/revhistory"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="docinfo/revhistory"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="info/revhistory"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="appendixinfo/abstract"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="docinfo/abstract"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="info/abstract"/> -</xsl:template> - -<xsl:template name="appendix.titlepage.verso"> -</xsl:template> - -<xsl:template name="appendix.titlepage.separator"> -</xsl:template> - -<xsl:template name="appendix.titlepage.before.recto"> -</xsl:template> - -<xsl:template name="appendix.titlepage.before.verso"> -</xsl:template> - -<xsl:template name="appendix.titlepage"> - <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> - <xsl:variable name="recto.content"> - <xsl:call-template name="appendix.titlepage.before.recto"/> - <xsl:call-template name="appendix.titlepage.recto"/> - </xsl:variable> - <xsl:variable name="recto.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> - <fo:block><xsl:copy-of select="$recto.content"/></fo:block> - </xsl:if> - <xsl:variable name="verso.content"> - <xsl:call-template name="appendix.titlepage.before.verso"/> - <xsl:call-template name="appendix.titlepage.verso"/> - </xsl:variable> - <xsl:variable name="verso.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> - <fo:block><xsl:copy-of select="$verso.content"/></fo:block> - </xsl:if> - <xsl:call-template name="appendix.titlepage.separator"/> - </fo:block> -</xsl:template> - -<xsl:template match="*" mode="appendix.titlepage.recto.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="*" mode="appendix.titlepage.verso.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="title" mode="appendix.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="appendix.titlepage.recto.style" margin-left="{$title.margin.left}" font-size="24.8832pt" font-weight="bold" font-family="{$title.fontset}"> -<xsl:call-template name="component.title"> -<xsl:with-param name="node" select="ancestor-or-self::appendix[1]"/> -</xsl:call-template> -</fo:block> -</xsl:template> - -<xsl:template match="subtitle" mode="appendix.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="appendix.titlepage.recto.style" font-family="{$title.fontset}"> -<xsl:apply-templates select="." mode="appendix.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="corpauthor" mode="appendix.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="appendix.titlepage.recto.style"> -<xsl:apply-templates select="." mode="appendix.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="authorgroup" mode="appendix.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="appendix.titlepage.recto.style"> -<xsl:apply-templates select="." mode="appendix.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="author" mode="appendix.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="appendix.titlepage.recto.style"> -<xsl:apply-templates select="." mode="appendix.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="othercredit" mode="appendix.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="appendix.titlepage.recto.style"> -<xsl:apply-templates select="." mode="appendix.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="releaseinfo" mode="appendix.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="appendix.titlepage.recto.style"> -<xsl:apply-templates select="." mode="appendix.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="copyright" mode="appendix.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="appendix.titlepage.recto.style"> -<xsl:apply-templates select="." mode="appendix.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="legalnotice" mode="appendix.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="appendix.titlepage.recto.style"> -<xsl:apply-templates select="." mode="appendix.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="pubdate" mode="appendix.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="appendix.titlepage.recto.style"> -<xsl:apply-templates select="." mode="appendix.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="revision" mode="appendix.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="appendix.titlepage.recto.style"> -<xsl:apply-templates select="." mode="appendix.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="revhistory" mode="appendix.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="appendix.titlepage.recto.style"> -<xsl:apply-templates select="." mode="appendix.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="abstract" mode="appendix.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="appendix.titlepage.recto.style"> -<xsl:apply-templates select="." mode="appendix.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template name="section.titlepage.recto"> - <xsl:choose> - <xsl:when test="sectioninfo/title"> - <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="sectioninfo/title"/> - </xsl:when> - <xsl:when test="info/title"> - <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="info/title"/> - </xsl:when> - <xsl:when test="title"> - <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="title"/> - </xsl:when> - </xsl:choose> - - <xsl:choose> - <xsl:when test="sectioninfo/subtitle"> - <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="sectioninfo/subtitle"/> - </xsl:when> - <xsl:when test="info/subtitle"> - <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="info/subtitle"/> - </xsl:when> - <xsl:when test="subtitle"> - <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="subtitle"/> - </xsl:when> - </xsl:choose> - - <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="sectioninfo/corpauthor"/> - <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="info/corpauthor"/> - <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="sectioninfo/authorgroup"/> - <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="info/authorgroup"/> - <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="sectioninfo/author"/> - <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="info/author"/> - <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="sectioninfo/othercredit"/> - <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="info/othercredit"/> - <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="sectioninfo/releaseinfo"/> - <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="info/releaseinfo"/> - <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="sectioninfo/copyright"/> - <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="info/copyright"/> - <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="sectioninfo/legalnotice"/> - <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="info/legalnotice"/> - <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="sectioninfo/pubdate"/> - <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="info/pubdate"/> - <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="sectioninfo/revision"/> - <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="info/revision"/> - <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="sectioninfo/revhistory"/> - <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="info/revhistory"/> - <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="sectioninfo/abstract"/> - <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="info/abstract"/> -</xsl:template> - -<xsl:template name="section.titlepage.verso"> -</xsl:template> - -<xsl:template name="section.titlepage.separator"> -</xsl:template> - -<xsl:template name="section.titlepage.before.recto"> -</xsl:template> - -<xsl:template name="section.titlepage.before.verso"> -</xsl:template> - -<xsl:template name="section.titlepage"> - <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> - <xsl:variable name="recto.content"> - <xsl:call-template name="section.titlepage.before.recto"/> - <xsl:call-template name="section.titlepage.recto"/> - </xsl:variable> - <xsl:variable name="recto.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> - <fo:block><xsl:copy-of select="$recto.content"/></fo:block> - </xsl:if> - <xsl:variable name="verso.content"> - <xsl:call-template name="section.titlepage.before.verso"/> - <xsl:call-template name="section.titlepage.verso"/> - </xsl:variable> - <xsl:variable name="verso.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> - <fo:block><xsl:copy-of select="$verso.content"/></fo:block> - </xsl:if> - <xsl:call-template name="section.titlepage.separator"/> - </fo:block> -</xsl:template> - -<xsl:template match="*" mode="section.titlepage.recto.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="*" mode="section.titlepage.verso.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="title" mode="section.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="section.titlepage.recto.style" margin-left="{$title.margin.left}" font-family="{$title.fontset}"> -<xsl:apply-templates select="." mode="section.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="subtitle" mode="section.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="section.titlepage.recto.style" font-family="{$title.fontset}"> -<xsl:apply-templates select="." mode="section.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="corpauthor" mode="section.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="section.titlepage.recto.style"> -<xsl:apply-templates select="." mode="section.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="authorgroup" mode="section.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="section.titlepage.recto.style"> -<xsl:apply-templates select="." mode="section.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="author" mode="section.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="section.titlepage.recto.style"> -<xsl:apply-templates select="." mode="section.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="othercredit" mode="section.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="section.titlepage.recto.style"> -<xsl:apply-templates select="." mode="section.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="releaseinfo" mode="section.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="section.titlepage.recto.style"> -<xsl:apply-templates select="." mode="section.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="copyright" mode="section.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="section.titlepage.recto.style"> -<xsl:apply-templates select="." mode="section.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="legalnotice" mode="section.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="section.titlepage.recto.style"> -<xsl:apply-templates select="." mode="section.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="pubdate" mode="section.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="section.titlepage.recto.style"> -<xsl:apply-templates select="." mode="section.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="revision" mode="section.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="section.titlepage.recto.style"> -<xsl:apply-templates select="." mode="section.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="revhistory" mode="section.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="section.titlepage.recto.style"> -<xsl:apply-templates select="." mode="section.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="abstract" mode="section.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="section.titlepage.recto.style"> -<xsl:apply-templates select="." mode="section.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template name="sect1.titlepage.recto"> - <xsl:choose> - <xsl:when test="sect1info/title"> - <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="sect1info/title"/> - </xsl:when> - <xsl:when test="info/title"> - <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="info/title"/> - </xsl:when> - <xsl:when test="title"> - <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="title"/> - </xsl:when> - </xsl:choose> - - <xsl:choose> - <xsl:when test="sect1info/subtitle"> - <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="sect1info/subtitle"/> - </xsl:when> - <xsl:when test="info/subtitle"> - <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="info/subtitle"/> - </xsl:when> - <xsl:when test="subtitle"> - <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="subtitle"/> - </xsl:when> - </xsl:choose> - - <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="sect1info/corpauthor"/> - <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="info/corpauthor"/> - <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="sect1info/authorgroup"/> - <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="info/authorgroup"/> - <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="sect1info/author"/> - <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="info/author"/> - <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="sect1info/othercredit"/> - <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="info/othercredit"/> - <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="sect1info/releaseinfo"/> - <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="info/releaseinfo"/> - <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="sect1info/copyright"/> - <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="info/copyright"/> - <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="sect1info/legalnotice"/> - <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="info/legalnotice"/> - <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="sect1info/pubdate"/> - <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="info/pubdate"/> - <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="sect1info/revision"/> - <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="info/revision"/> - <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="sect1info/revhistory"/> - <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="info/revhistory"/> - <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="sect1info/abstract"/> - <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="info/abstract"/> -</xsl:template> - -<xsl:template name="sect1.titlepage.verso"> -</xsl:template> - -<xsl:template name="sect1.titlepage.separator"> -</xsl:template> - -<xsl:template name="sect1.titlepage.before.recto"> -</xsl:template> - -<xsl:template name="sect1.titlepage.before.verso"> -</xsl:template> - -<xsl:template name="sect1.titlepage"> - <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> - <xsl:variable name="recto.content"> - <xsl:call-template name="sect1.titlepage.before.recto"/> - <xsl:call-template name="sect1.titlepage.recto"/> - </xsl:variable> - <xsl:variable name="recto.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> - <fo:block><xsl:copy-of select="$recto.content"/></fo:block> - </xsl:if> - <xsl:variable name="verso.content"> - <xsl:call-template name="sect1.titlepage.before.verso"/> - <xsl:call-template name="sect1.titlepage.verso"/> - </xsl:variable> - <xsl:variable name="verso.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> - <fo:block><xsl:copy-of select="$verso.content"/></fo:block> - </xsl:if> - <xsl:call-template name="sect1.titlepage.separator"/> - </fo:block> -</xsl:template> - -<xsl:template match="*" mode="sect1.titlepage.recto.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="*" mode="sect1.titlepage.verso.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="title" mode="sect1.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect1.titlepage.recto.style" margin-left="{$title.margin.left}" font-family="{$title.fontset}"> -<xsl:apply-templates select="." mode="sect1.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="subtitle" mode="sect1.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect1.titlepage.recto.style" font-family="{$title.fontset}"> -<xsl:apply-templates select="." mode="sect1.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="corpauthor" mode="sect1.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect1.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect1.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="authorgroup" mode="sect1.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect1.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect1.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="author" mode="sect1.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect1.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect1.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="othercredit" mode="sect1.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect1.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect1.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="releaseinfo" mode="sect1.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect1.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect1.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="copyright" mode="sect1.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect1.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect1.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="legalnotice" mode="sect1.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect1.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect1.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="pubdate" mode="sect1.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect1.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect1.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="revision" mode="sect1.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect1.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect1.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="revhistory" mode="sect1.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect1.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect1.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="abstract" mode="sect1.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect1.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect1.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template name="sect2.titlepage.recto"> - <xsl:choose> - <xsl:when test="sect2info/title"> - <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="sect2info/title"/> - </xsl:when> - <xsl:when test="info/title"> - <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="info/title"/> - </xsl:when> - <xsl:when test="title"> - <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="title"/> - </xsl:when> - </xsl:choose> - - <xsl:choose> - <xsl:when test="sect2info/subtitle"> - <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="sect2info/subtitle"/> - </xsl:when> - <xsl:when test="info/subtitle"> - <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="info/subtitle"/> - </xsl:when> - <xsl:when test="subtitle"> - <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="subtitle"/> - </xsl:when> - </xsl:choose> - - <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="sect2info/corpauthor"/> - <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="info/corpauthor"/> - <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="sect2info/authorgroup"/> - <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="info/authorgroup"/> - <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="sect2info/author"/> - <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="info/author"/> - <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="sect2info/othercredit"/> - <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="info/othercredit"/> - <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="sect2info/releaseinfo"/> - <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="info/releaseinfo"/> - <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="sect2info/copyright"/> - <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="info/copyright"/> - <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="sect2info/legalnotice"/> - <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="info/legalnotice"/> - <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="sect2info/pubdate"/> - <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="info/pubdate"/> - <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="sect2info/revision"/> - <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="info/revision"/> - <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="sect2info/revhistory"/> - <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="info/revhistory"/> - <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="sect2info/abstract"/> - <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="info/abstract"/> -</xsl:template> - -<xsl:template name="sect2.titlepage.verso"> -</xsl:template> - -<xsl:template name="sect2.titlepage.separator"> -</xsl:template> - -<xsl:template name="sect2.titlepage.before.recto"> -</xsl:template> - -<xsl:template name="sect2.titlepage.before.verso"> -</xsl:template> - -<xsl:template name="sect2.titlepage"> - <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> - <xsl:variable name="recto.content"> - <xsl:call-template name="sect2.titlepage.before.recto"/> - <xsl:call-template name="sect2.titlepage.recto"/> - </xsl:variable> - <xsl:variable name="recto.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> - <fo:block><xsl:copy-of select="$recto.content"/></fo:block> - </xsl:if> - <xsl:variable name="verso.content"> - <xsl:call-template name="sect2.titlepage.before.verso"/> - <xsl:call-template name="sect2.titlepage.verso"/> - </xsl:variable> - <xsl:variable name="verso.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> - <fo:block><xsl:copy-of select="$verso.content"/></fo:block> - </xsl:if> - <xsl:call-template name="sect2.titlepage.separator"/> - </fo:block> -</xsl:template> - -<xsl:template match="*" mode="sect2.titlepage.recto.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="*" mode="sect2.titlepage.verso.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="title" mode="sect2.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect2.titlepage.recto.style" margin-left="{$title.margin.left}" font-family="{$title.fontset}"> -<xsl:apply-templates select="." mode="sect2.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="subtitle" mode="sect2.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect2.titlepage.recto.style" font-family="{$title.fontset}"> -<xsl:apply-templates select="." mode="sect2.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="corpauthor" mode="sect2.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect2.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect2.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="authorgroup" mode="sect2.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect2.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect2.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="author" mode="sect2.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect2.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect2.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="othercredit" mode="sect2.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect2.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect2.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="releaseinfo" mode="sect2.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect2.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect2.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="copyright" mode="sect2.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect2.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect2.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="legalnotice" mode="sect2.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect2.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect2.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="pubdate" mode="sect2.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect2.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect2.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="revision" mode="sect2.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect2.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect2.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="revhistory" mode="sect2.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect2.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect2.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="abstract" mode="sect2.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect2.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect2.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template name="sect3.titlepage.recto"> - <xsl:choose> - <xsl:when test="sect3info/title"> - <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="sect3info/title"/> - </xsl:when> - <xsl:when test="info/title"> - <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="info/title"/> - </xsl:when> - <xsl:when test="title"> - <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="title"/> - </xsl:when> - </xsl:choose> - - <xsl:choose> - <xsl:when test="sect3info/subtitle"> - <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="sect3info/subtitle"/> - </xsl:when> - <xsl:when test="info/subtitle"> - <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="info/subtitle"/> - </xsl:when> - <xsl:when test="subtitle"> - <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="subtitle"/> - </xsl:when> - </xsl:choose> - - <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="sect3info/corpauthor"/> - <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="info/corpauthor"/> - <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="sect3info/authorgroup"/> - <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="info/authorgroup"/> - <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="sect3info/author"/> - <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="info/author"/> - <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="sect3info/othercredit"/> - <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="info/othercredit"/> - <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="sect3info/releaseinfo"/> - <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="info/releaseinfo"/> - <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="sect3info/copyright"/> - <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="info/copyright"/> - <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="sect3info/legalnotice"/> - <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="info/legalnotice"/> - <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="sect3info/pubdate"/> - <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="info/pubdate"/> - <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="sect3info/revision"/> - <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="info/revision"/> - <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="sect3info/revhistory"/> - <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="info/revhistory"/> - <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="sect3info/abstract"/> - <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="info/abstract"/> -</xsl:template> - -<xsl:template name="sect3.titlepage.verso"> -</xsl:template> - -<xsl:template name="sect3.titlepage.separator"> -</xsl:template> - -<xsl:template name="sect3.titlepage.before.recto"> -</xsl:template> - -<xsl:template name="sect3.titlepage.before.verso"> -</xsl:template> - -<xsl:template name="sect3.titlepage"> - <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> - <xsl:variable name="recto.content"> - <xsl:call-template name="sect3.titlepage.before.recto"/> - <xsl:call-template name="sect3.titlepage.recto"/> - </xsl:variable> - <xsl:variable name="recto.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> - <fo:block><xsl:copy-of select="$recto.content"/></fo:block> - </xsl:if> - <xsl:variable name="verso.content"> - <xsl:call-template name="sect3.titlepage.before.verso"/> - <xsl:call-template name="sect3.titlepage.verso"/> - </xsl:variable> - <xsl:variable name="verso.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> - <fo:block><xsl:copy-of select="$verso.content"/></fo:block> - </xsl:if> - <xsl:call-template name="sect3.titlepage.separator"/> - </fo:block> -</xsl:template> - -<xsl:template match="*" mode="sect3.titlepage.recto.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="*" mode="sect3.titlepage.verso.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="title" mode="sect3.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect3.titlepage.recto.style" margin-left="{$title.margin.left}" font-family="{$title.fontset}"> -<xsl:apply-templates select="." mode="sect3.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="subtitle" mode="sect3.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect3.titlepage.recto.style" font-family="{$title.fontset}"> -<xsl:apply-templates select="." mode="sect3.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="corpauthor" mode="sect3.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect3.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect3.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="authorgroup" mode="sect3.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect3.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect3.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="author" mode="sect3.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect3.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect3.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="othercredit" mode="sect3.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect3.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect3.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="releaseinfo" mode="sect3.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect3.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect3.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="copyright" mode="sect3.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect3.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect3.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="legalnotice" mode="sect3.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect3.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect3.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="pubdate" mode="sect3.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect3.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect3.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="revision" mode="sect3.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect3.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect3.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="revhistory" mode="sect3.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect3.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect3.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="abstract" mode="sect3.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect3.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect3.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template name="sect4.titlepage.recto"> - <xsl:choose> - <xsl:when test="sect4info/title"> - <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="sect4info/title"/> - </xsl:when> - <xsl:when test="info/title"> - <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="info/title"/> - </xsl:when> - <xsl:when test="title"> - <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="title"/> - </xsl:when> - </xsl:choose> - - <xsl:choose> - <xsl:when test="sect4info/subtitle"> - <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="sect4info/subtitle"/> - </xsl:when> - <xsl:when test="info/subtitle"> - <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="info/subtitle"/> - </xsl:when> - <xsl:when test="subtitle"> - <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="subtitle"/> - </xsl:when> - </xsl:choose> - - <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="sect4info/corpauthor"/> - <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="info/corpauthor"/> - <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="sect4info/authorgroup"/> - <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="info/authorgroup"/> - <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="sect4info/author"/> - <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="info/author"/> - <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="sect4info/othercredit"/> - <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="info/othercredit"/> - <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="sect4info/releaseinfo"/> - <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="info/releaseinfo"/> - <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="sect4info/copyright"/> - <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="info/copyright"/> - <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="sect4info/legalnotice"/> - <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="info/legalnotice"/> - <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="sect4info/pubdate"/> - <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="info/pubdate"/> - <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="sect4info/revision"/> - <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="info/revision"/> - <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="sect4info/revhistory"/> - <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="info/revhistory"/> - <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="sect4info/abstract"/> - <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="info/abstract"/> -</xsl:template> - -<xsl:template name="sect4.titlepage.verso"> -</xsl:template> - -<xsl:template name="sect4.titlepage.separator"> -</xsl:template> - -<xsl:template name="sect4.titlepage.before.recto"> -</xsl:template> - -<xsl:template name="sect4.titlepage.before.verso"> -</xsl:template> - -<xsl:template name="sect4.titlepage"> - <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> - <xsl:variable name="recto.content"> - <xsl:call-template name="sect4.titlepage.before.recto"/> - <xsl:call-template name="sect4.titlepage.recto"/> - </xsl:variable> - <xsl:variable name="recto.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> - <fo:block><xsl:copy-of select="$recto.content"/></fo:block> - </xsl:if> - <xsl:variable name="verso.content"> - <xsl:call-template name="sect4.titlepage.before.verso"/> - <xsl:call-template name="sect4.titlepage.verso"/> - </xsl:variable> - <xsl:variable name="verso.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> - <fo:block><xsl:copy-of select="$verso.content"/></fo:block> - </xsl:if> - <xsl:call-template name="sect4.titlepage.separator"/> - </fo:block> -</xsl:template> - -<xsl:template match="*" mode="sect4.titlepage.recto.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="*" mode="sect4.titlepage.verso.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="title" mode="sect4.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect4.titlepage.recto.style" margin-left="{$title.margin.left}" font-family="{$title.fontset}"> -<xsl:apply-templates select="." mode="sect4.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="subtitle" mode="sect4.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect4.titlepage.recto.style" font-family="{$title.fontset}"> -<xsl:apply-templates select="." mode="sect4.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="corpauthor" mode="sect4.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect4.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect4.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="authorgroup" mode="sect4.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect4.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect4.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="author" mode="sect4.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect4.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect4.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="othercredit" mode="sect4.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect4.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect4.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="releaseinfo" mode="sect4.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect4.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect4.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="copyright" mode="sect4.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect4.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect4.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="legalnotice" mode="sect4.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect4.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect4.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="pubdate" mode="sect4.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect4.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect4.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="revision" mode="sect4.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect4.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect4.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="revhistory" mode="sect4.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect4.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect4.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="abstract" mode="sect4.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect4.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect4.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template name="sect5.titlepage.recto"> - <xsl:choose> - <xsl:when test="sect5info/title"> - <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="sect5info/title"/> - </xsl:when> - <xsl:when test="info/title"> - <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="info/title"/> - </xsl:when> - <xsl:when test="title"> - <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="title"/> - </xsl:when> - </xsl:choose> - - <xsl:choose> - <xsl:when test="sect5info/subtitle"> - <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="sect5info/subtitle"/> - </xsl:when> - <xsl:when test="info/subtitle"> - <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="info/subtitle"/> - </xsl:when> - <xsl:when test="subtitle"> - <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="subtitle"/> - </xsl:when> - </xsl:choose> - - <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="sect5info/corpauthor"/> - <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="info/corpauthor"/> - <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="sect5info/authorgroup"/> - <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="info/authorgroup"/> - <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="sect5info/author"/> - <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="info/author"/> - <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="sect5info/othercredit"/> - <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="info/othercredit"/> - <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="sect5info/releaseinfo"/> - <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="info/releaseinfo"/> - <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="sect5info/copyright"/> - <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="info/copyright"/> - <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="sect5info/legalnotice"/> - <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="info/legalnotice"/> - <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="sect5info/pubdate"/> - <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="info/pubdate"/> - <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="sect5info/revision"/> - <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="info/revision"/> - <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="sect5info/revhistory"/> - <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="info/revhistory"/> - <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="sect5info/abstract"/> - <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="info/abstract"/> -</xsl:template> - -<xsl:template name="sect5.titlepage.verso"> -</xsl:template> - -<xsl:template name="sect5.titlepage.separator"> -</xsl:template> - -<xsl:template name="sect5.titlepage.before.recto"> -</xsl:template> - -<xsl:template name="sect5.titlepage.before.verso"> -</xsl:template> - -<xsl:template name="sect5.titlepage"> - <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> - <xsl:variable name="recto.content"> - <xsl:call-template name="sect5.titlepage.before.recto"/> - <xsl:call-template name="sect5.titlepage.recto"/> - </xsl:variable> - <xsl:variable name="recto.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> - <fo:block><xsl:copy-of select="$recto.content"/></fo:block> - </xsl:if> - <xsl:variable name="verso.content"> - <xsl:call-template name="sect5.titlepage.before.verso"/> - <xsl:call-template name="sect5.titlepage.verso"/> - </xsl:variable> - <xsl:variable name="verso.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> - <fo:block><xsl:copy-of select="$verso.content"/></fo:block> - </xsl:if> - <xsl:call-template name="sect5.titlepage.separator"/> - </fo:block> -</xsl:template> - -<xsl:template match="*" mode="sect5.titlepage.recto.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="*" mode="sect5.titlepage.verso.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="title" mode="sect5.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect5.titlepage.recto.style" margin-left="{$title.margin.left}" font-family="{$title.fontset}"> -<xsl:apply-templates select="." mode="sect5.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="subtitle" mode="sect5.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect5.titlepage.recto.style" font-family="{$title.fontset}"> -<xsl:apply-templates select="." mode="sect5.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="corpauthor" mode="sect5.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect5.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect5.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="authorgroup" mode="sect5.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect5.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect5.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="author" mode="sect5.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect5.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect5.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="othercredit" mode="sect5.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect5.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect5.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="releaseinfo" mode="sect5.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect5.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect5.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="copyright" mode="sect5.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect5.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect5.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="legalnotice" mode="sect5.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect5.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect5.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="pubdate" mode="sect5.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect5.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect5.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="revision" mode="sect5.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect5.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect5.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="revhistory" mode="sect5.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect5.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect5.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="abstract" mode="sect5.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect5.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect5.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template name="simplesect.titlepage.recto"> - <xsl:choose> - <xsl:when test="simplesectinfo/title"> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="simplesectinfo/title"/> - </xsl:when> - <xsl:when test="docinfo/title"> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="docinfo/title"/> - </xsl:when> - <xsl:when test="info/title"> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="info/title"/> - </xsl:when> - <xsl:when test="title"> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="title"/> - </xsl:when> - </xsl:choose> - - <xsl:choose> - <xsl:when test="simplesectinfo/subtitle"> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="simplesectinfo/subtitle"/> - </xsl:when> - <xsl:when test="docinfo/subtitle"> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="docinfo/subtitle"/> - </xsl:when> - <xsl:when test="info/subtitle"> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="info/subtitle"/> - </xsl:when> - <xsl:when test="subtitle"> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="subtitle"/> - </xsl:when> - </xsl:choose> - - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="simplesectinfo/corpauthor"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="docinfo/corpauthor"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="info/corpauthor"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="simplesectinfo/authorgroup"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="docinfo/authorgroup"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="info/authorgroup"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="simplesectinfo/author"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="docinfo/author"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="info/author"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="simplesectinfo/othercredit"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="docinfo/othercredit"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="info/othercredit"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="simplesectinfo/releaseinfo"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="docinfo/releaseinfo"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="info/releaseinfo"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="simplesectinfo/copyright"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="docinfo/copyright"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="info/copyright"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="simplesectinfo/legalnotice"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="docinfo/legalnotice"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="info/legalnotice"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="simplesectinfo/pubdate"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="docinfo/pubdate"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="info/pubdate"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="simplesectinfo/revision"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="docinfo/revision"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="info/revision"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="simplesectinfo/revhistory"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="docinfo/revhistory"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="info/revhistory"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="simplesectinfo/abstract"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="docinfo/abstract"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="info/abstract"/> -</xsl:template> - -<xsl:template name="simplesect.titlepage.verso"> -</xsl:template> - -<xsl:template name="simplesect.titlepage.separator"> -</xsl:template> - -<xsl:template name="simplesect.titlepage.before.recto"> -</xsl:template> - -<xsl:template name="simplesect.titlepage.before.verso"> -</xsl:template> - -<xsl:template name="simplesect.titlepage"> - <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> - <xsl:variable name="recto.content"> - <xsl:call-template name="simplesect.titlepage.before.recto"/> - <xsl:call-template name="simplesect.titlepage.recto"/> - </xsl:variable> - <xsl:variable name="recto.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> - <fo:block><xsl:copy-of select="$recto.content"/></fo:block> - </xsl:if> - <xsl:variable name="verso.content"> - <xsl:call-template name="simplesect.titlepage.before.verso"/> - <xsl:call-template name="simplesect.titlepage.verso"/> - </xsl:variable> - <xsl:variable name="verso.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> - <fo:block><xsl:copy-of select="$verso.content"/></fo:block> - </xsl:if> - <xsl:call-template name="simplesect.titlepage.separator"/> - </fo:block> -</xsl:template> - -<xsl:template match="*" mode="simplesect.titlepage.recto.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="*" mode="simplesect.titlepage.verso.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="title" mode="simplesect.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="simplesect.titlepage.recto.style" margin-left="{$title.margin.left}" font-family="{$title.fontset}"> -<xsl:apply-templates select="." mode="simplesect.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="subtitle" mode="simplesect.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="simplesect.titlepage.recto.style" font-family="{$title.fontset}"> -<xsl:apply-templates select="." mode="simplesect.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="corpauthor" mode="simplesect.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="simplesect.titlepage.recto.style"> -<xsl:apply-templates select="." mode="simplesect.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="authorgroup" mode="simplesect.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="simplesect.titlepage.recto.style"> -<xsl:apply-templates select="." mode="simplesect.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="author" mode="simplesect.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="simplesect.titlepage.recto.style"> -<xsl:apply-templates select="." mode="simplesect.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="othercredit" mode="simplesect.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="simplesect.titlepage.recto.style"> -<xsl:apply-templates select="." mode="simplesect.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="releaseinfo" mode="simplesect.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="simplesect.titlepage.recto.style"> -<xsl:apply-templates select="." mode="simplesect.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="copyright" mode="simplesect.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="simplesect.titlepage.recto.style"> -<xsl:apply-templates select="." mode="simplesect.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="legalnotice" mode="simplesect.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="simplesect.titlepage.recto.style"> -<xsl:apply-templates select="." mode="simplesect.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="pubdate" mode="simplesect.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="simplesect.titlepage.recto.style"> -<xsl:apply-templates select="." mode="simplesect.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="revision" mode="simplesect.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="simplesect.titlepage.recto.style"> -<xsl:apply-templates select="." mode="simplesect.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="revhistory" mode="simplesect.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="simplesect.titlepage.recto.style"> -<xsl:apply-templates select="." mode="simplesect.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="abstract" mode="simplesect.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="simplesect.titlepage.recto.style"> -<xsl:apply-templates select="." mode="simplesect.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template name="bibliography.titlepage.recto"> - <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="bibliography.titlepage.recto.style" margin-left="{$title.margin.left}" font-size="24.8832pt" font-family="{$title.fontset}" font-weight="bold"> -<xsl:call-template name="component.title"> -<xsl:with-param name="node" select="ancestor-or-self::bibliography[1]"/> -</xsl:call-template></fo:block> - <xsl:choose> - <xsl:when test="bibliographyinfo/subtitle"> - <xsl:apply-templates mode="bibliography.titlepage.recto.auto.mode" select="bibliographyinfo/subtitle"/> - </xsl:when> - <xsl:when test="docinfo/subtitle"> - <xsl:apply-templates mode="bibliography.titlepage.recto.auto.mode" select="docinfo/subtitle"/> - </xsl:when> - <xsl:when test="info/subtitle"> - <xsl:apply-templates mode="bibliography.titlepage.recto.auto.mode" select="info/subtitle"/> - </xsl:when> - <xsl:when test="subtitle"> - <xsl:apply-templates mode="bibliography.titlepage.recto.auto.mode" select="subtitle"/> - </xsl:when> - </xsl:choose> - -</xsl:template> - -<xsl:template name="bibliography.titlepage.verso"> -</xsl:template> - -<xsl:template name="bibliography.titlepage.separator"> -</xsl:template> - -<xsl:template name="bibliography.titlepage.before.recto"> -</xsl:template> - -<xsl:template name="bibliography.titlepage.before.verso"> -</xsl:template> - -<xsl:template name="bibliography.titlepage"> - <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> - <xsl:variable name="recto.content"> - <xsl:call-template name="bibliography.titlepage.before.recto"/> - <xsl:call-template name="bibliography.titlepage.recto"/> - </xsl:variable> - <xsl:variable name="recto.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> - <fo:block><xsl:copy-of select="$recto.content"/></fo:block> - </xsl:if> - <xsl:variable name="verso.content"> - <xsl:call-template name="bibliography.titlepage.before.verso"/> - <xsl:call-template name="bibliography.titlepage.verso"/> - </xsl:variable> - <xsl:variable name="verso.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> - <fo:block><xsl:copy-of select="$verso.content"/></fo:block> - </xsl:if> - <xsl:call-template name="bibliography.titlepage.separator"/> - </fo:block> -</xsl:template> - -<xsl:template match="*" mode="bibliography.titlepage.recto.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="*" mode="bibliography.titlepage.verso.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="subtitle" mode="bibliography.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="bibliography.titlepage.recto.style" font-family="{$title.fontset}"> -<xsl:apply-templates select="." mode="bibliography.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template name="bibliodiv.titlepage.recto"> - <xsl:choose> - <xsl:when test="bibliodivinfo/title"> - <xsl:apply-templates mode="bibliodiv.titlepage.recto.auto.mode" select="bibliodivinfo/title"/> - </xsl:when> - <xsl:when test="docinfo/title"> - <xsl:apply-templates mode="bibliodiv.titlepage.recto.auto.mode" select="docinfo/title"/> - </xsl:when> - <xsl:when test="info/title"> - <xsl:apply-templates mode="bibliodiv.titlepage.recto.auto.mode" select="info/title"/> - </xsl:when> - <xsl:when test="title"> - <xsl:apply-templates mode="bibliodiv.titlepage.recto.auto.mode" select="title"/> - </xsl:when> - </xsl:choose> - - <xsl:choose> - <xsl:when test="bibliodivinfo/subtitle"> - <xsl:apply-templates mode="bibliodiv.titlepage.recto.auto.mode" select="bibliodivinfo/subtitle"/> - </xsl:when> - <xsl:when test="docinfo/subtitle"> - <xsl:apply-templates mode="bibliodiv.titlepage.recto.auto.mode" select="docinfo/subtitle"/> - </xsl:when> - <xsl:when test="info/subtitle"> - <xsl:apply-templates mode="bibliodiv.titlepage.recto.auto.mode" select="info/subtitle"/> - </xsl:when> - <xsl:when test="subtitle"> - <xsl:apply-templates mode="bibliodiv.titlepage.recto.auto.mode" select="subtitle"/> - </xsl:when> - </xsl:choose> - -</xsl:template> - -<xsl:template name="bibliodiv.titlepage.verso"> -</xsl:template> - -<xsl:template name="bibliodiv.titlepage.separator"> -</xsl:template> - -<xsl:template name="bibliodiv.titlepage.before.recto"> -</xsl:template> - -<xsl:template name="bibliodiv.titlepage.before.verso"> -</xsl:template> - -<xsl:template name="bibliodiv.titlepage"> - <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> - <xsl:variable name="recto.content"> - <xsl:call-template name="bibliodiv.titlepage.before.recto"/> - <xsl:call-template name="bibliodiv.titlepage.recto"/> - </xsl:variable> - <xsl:variable name="recto.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> - <fo:block><xsl:copy-of select="$recto.content"/></fo:block> - </xsl:if> - <xsl:variable name="verso.content"> - <xsl:call-template name="bibliodiv.titlepage.before.verso"/> - <xsl:call-template name="bibliodiv.titlepage.verso"/> - </xsl:variable> - <xsl:variable name="verso.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> - <fo:block><xsl:copy-of select="$verso.content"/></fo:block> - </xsl:if> - <xsl:call-template name="bibliodiv.titlepage.separator"/> - </fo:block> -</xsl:template> - -<xsl:template match="*" mode="bibliodiv.titlepage.recto.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="*" mode="bibliodiv.titlepage.verso.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="title" mode="bibliodiv.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="bibliodiv.titlepage.recto.style" margin-left="{$title.margin.left}" font-size="20.736pt" font-family="{$title.fontset}" font-weight="bold"> -<xsl:call-template name="component.title"> -<xsl:with-param name="node" select="ancestor-or-self::bibliodiv[1]"/> -</xsl:call-template> -</fo:block> -</xsl:template> - -<xsl:template match="subtitle" mode="bibliodiv.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="bibliodiv.titlepage.recto.style" font-family="{$title.fontset}"> -<xsl:apply-templates select="." mode="bibliodiv.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template name="glossary.titlepage.recto"> - <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="glossary.titlepage.recto.style" margin-left="{$title.margin.left}" font-size="24.8832pt" font-family="{$title.fontset}" font-weight="bold"> -<xsl:call-template name="component.title"> -<xsl:with-param name="node" select="ancestor-or-self::glossary[1]"/> -</xsl:call-template></fo:block> - <xsl:choose> - <xsl:when test="glossaryinfo/subtitle"> - <xsl:apply-templates mode="glossary.titlepage.recto.auto.mode" select="glossaryinfo/subtitle"/> - </xsl:when> - <xsl:when test="docinfo/subtitle"> - <xsl:apply-templates mode="glossary.titlepage.recto.auto.mode" select="docinfo/subtitle"/> - </xsl:when> - <xsl:when test="info/subtitle"> - <xsl:apply-templates mode="glossary.titlepage.recto.auto.mode" select="info/subtitle"/> - </xsl:when> - <xsl:when test="subtitle"> - <xsl:apply-templates mode="glossary.titlepage.recto.auto.mode" select="subtitle"/> - </xsl:when> - </xsl:choose> - -</xsl:template> - -<xsl:template name="glossary.titlepage.verso"> -</xsl:template> - -<xsl:template name="glossary.titlepage.separator"> -</xsl:template> - -<xsl:template name="glossary.titlepage.before.recto"> -</xsl:template> - -<xsl:template name="glossary.titlepage.before.verso"> -</xsl:template> - -<xsl:template name="glossary.titlepage"> - <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> - <xsl:variable name="recto.content"> - <xsl:call-template name="glossary.titlepage.before.recto"/> - <xsl:call-template name="glossary.titlepage.recto"/> - </xsl:variable> - <xsl:variable name="recto.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> - <fo:block><xsl:copy-of select="$recto.content"/></fo:block> - </xsl:if> - <xsl:variable name="verso.content"> - <xsl:call-template name="glossary.titlepage.before.verso"/> - <xsl:call-template name="glossary.titlepage.verso"/> - </xsl:variable> - <xsl:variable name="verso.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> - <fo:block><xsl:copy-of select="$verso.content"/></fo:block> - </xsl:if> - <xsl:call-template name="glossary.titlepage.separator"/> - </fo:block> -</xsl:template> - -<xsl:template match="*" mode="glossary.titlepage.recto.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="*" mode="glossary.titlepage.verso.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="subtitle" mode="glossary.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="glossary.titlepage.recto.style" font-family="{$title.fontset}"> -<xsl:apply-templates select="." mode="glossary.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template name="glossdiv.titlepage.recto"> - <xsl:choose> - <xsl:when test="glossdivinfo/title"> - <xsl:apply-templates mode="glossdiv.titlepage.recto.auto.mode" select="glossdivinfo/title"/> - </xsl:when> - <xsl:when test="docinfo/title"> - <xsl:apply-templates mode="glossdiv.titlepage.recto.auto.mode" select="docinfo/title"/> - </xsl:when> - <xsl:when test="info/title"> - <xsl:apply-templates mode="glossdiv.titlepage.recto.auto.mode" select="info/title"/> - </xsl:when> - <xsl:when test="title"> - <xsl:apply-templates mode="glossdiv.titlepage.recto.auto.mode" select="title"/> - </xsl:when> - </xsl:choose> - - <xsl:choose> - <xsl:when test="glossdivinfo/subtitle"> - <xsl:apply-templates mode="glossdiv.titlepage.recto.auto.mode" select="glossdivinfo/subtitle"/> - </xsl:when> - <xsl:when test="docinfo/subtitle"> - <xsl:apply-templates mode="glossdiv.titlepage.recto.auto.mode" select="docinfo/subtitle"/> - </xsl:when> - <xsl:when test="info/subtitle"> - <xsl:apply-templates mode="glossdiv.titlepage.recto.auto.mode" select="info/subtitle"/> - </xsl:when> - <xsl:when test="subtitle"> - <xsl:apply-templates mode="glossdiv.titlepage.recto.auto.mode" select="subtitle"/> - </xsl:when> - </xsl:choose> - -</xsl:template> - -<xsl:template name="glossdiv.titlepage.verso"> -</xsl:template> - -<xsl:template name="glossdiv.titlepage.separator"> -</xsl:template> - -<xsl:template name="glossdiv.titlepage.before.recto"> -</xsl:template> - -<xsl:template name="glossdiv.titlepage.before.verso"> -</xsl:template> - -<xsl:template name="glossdiv.titlepage"> - <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> - <xsl:variable name="recto.content"> - <xsl:call-template name="glossdiv.titlepage.before.recto"/> - <xsl:call-template name="glossdiv.titlepage.recto"/> - </xsl:variable> - <xsl:variable name="recto.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> - <fo:block><xsl:copy-of select="$recto.content"/></fo:block> - </xsl:if> - <xsl:variable name="verso.content"> - <xsl:call-template name="glossdiv.titlepage.before.verso"/> - <xsl:call-template name="glossdiv.titlepage.verso"/> - </xsl:variable> - <xsl:variable name="verso.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> - <fo:block><xsl:copy-of select="$verso.content"/></fo:block> - </xsl:if> - <xsl:call-template name="glossdiv.titlepage.separator"/> - </fo:block> -</xsl:template> - -<xsl:template match="*" mode="glossdiv.titlepage.recto.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="*" mode="glossdiv.titlepage.verso.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="title" mode="glossdiv.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="glossdiv.titlepage.recto.style" margin-left="{$title.margin.left}" font-size="20.736pt" font-family="{$title.fontset}" font-weight="bold"> -<xsl:call-template name="component.title"> -<xsl:with-param name="node" select="ancestor-or-self::glossdiv[1]"/> -</xsl:call-template> -</fo:block> -</xsl:template> - -<xsl:template match="subtitle" mode="glossdiv.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="glossdiv.titlepage.recto.style" font-family="{$title.fontset}"> -<xsl:apply-templates select="." mode="glossdiv.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template name="index.titlepage.recto"> - <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="index.titlepage.recto.style" margin-left="0pt" font-size="24.8832pt" font-family="{$title.fontset}" font-weight="bold"> -<xsl:call-template name="component.title"> -<xsl:with-param name="node" select="ancestor-or-self::index[1]"/> -<xsl:with-param name="pagewide" select="1"/> -</xsl:call-template></fo:block> - <xsl:choose> - <xsl:when test="indexinfo/subtitle"> - <xsl:apply-templates mode="index.titlepage.recto.auto.mode" select="indexinfo/subtitle"/> - </xsl:when> - <xsl:when test="docinfo/subtitle"> - <xsl:apply-templates mode="index.titlepage.recto.auto.mode" select="docinfo/subtitle"/> - </xsl:when> - <xsl:when test="info/subtitle"> - <xsl:apply-templates mode="index.titlepage.recto.auto.mode" select="info/subtitle"/> - </xsl:when> - <xsl:when test="subtitle"> - <xsl:apply-templates mode="index.titlepage.recto.auto.mode" select="subtitle"/> - </xsl:when> - </xsl:choose> - -</xsl:template> - -<xsl:template name="index.titlepage.verso"> -</xsl:template> - -<xsl:template name="index.titlepage.separator"> -</xsl:template> - -<xsl:template name="index.titlepage.before.recto"> -</xsl:template> - -<xsl:template name="index.titlepage.before.verso"> -</xsl:template> - -<xsl:template name="index.titlepage"> - <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> - <xsl:variable name="recto.content"> - <xsl:call-template name="index.titlepage.before.recto"/> - <xsl:call-template name="index.titlepage.recto"/> - </xsl:variable> - <xsl:variable name="recto.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> - <fo:block><xsl:copy-of select="$recto.content"/></fo:block> - </xsl:if> - <xsl:variable name="verso.content"> - <xsl:call-template name="index.titlepage.before.verso"/> - <xsl:call-template name="index.titlepage.verso"/> - </xsl:variable> - <xsl:variable name="verso.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> - <fo:block><xsl:copy-of select="$verso.content"/></fo:block> - </xsl:if> - <xsl:call-template name="index.titlepage.separator"/> - </fo:block> -</xsl:template> - -<xsl:template match="*" mode="index.titlepage.recto.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="*" mode="index.titlepage.verso.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="subtitle" mode="index.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="index.titlepage.recto.style" font-family="{$title.fontset}"> -<xsl:apply-templates select="." mode="index.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template name="indexdiv.titlepage.recto"> - <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="indexdiv.titlepage.recto.style"> -<xsl:call-template name="indexdiv.title"> -<xsl:with-param name="title" select="title"/> -</xsl:call-template></fo:block> - <xsl:choose> - <xsl:when test="indexdivinfo/subtitle"> - <xsl:apply-templates mode="indexdiv.titlepage.recto.auto.mode" select="indexdivinfo/subtitle"/> - </xsl:when> - <xsl:when test="docinfo/subtitle"> - <xsl:apply-templates mode="indexdiv.titlepage.recto.auto.mode" select="docinfo/subtitle"/> - </xsl:when> - <xsl:when test="info/subtitle"> - <xsl:apply-templates mode="indexdiv.titlepage.recto.auto.mode" select="info/subtitle"/> - </xsl:when> - <xsl:when test="subtitle"> - <xsl:apply-templates mode="indexdiv.titlepage.recto.auto.mode" select="subtitle"/> - </xsl:when> - </xsl:choose> - -</xsl:template> - -<xsl:template name="indexdiv.titlepage.verso"> -</xsl:template> - -<xsl:template name="indexdiv.titlepage.separator"> -</xsl:template> - -<xsl:template name="indexdiv.titlepage.before.recto"> -</xsl:template> - -<xsl:template name="indexdiv.titlepage.before.verso"> -</xsl:template> - -<xsl:template name="indexdiv.titlepage"> - <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> - <xsl:variable name="recto.content"> - <xsl:call-template name="indexdiv.titlepage.before.recto"/> - <xsl:call-template name="indexdiv.titlepage.recto"/> - </xsl:variable> - <xsl:variable name="recto.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> - <fo:block><xsl:copy-of select="$recto.content"/></fo:block> - </xsl:if> - <xsl:variable name="verso.content"> - <xsl:call-template name="indexdiv.titlepage.before.verso"/> - <xsl:call-template name="indexdiv.titlepage.verso"/> - </xsl:variable> - <xsl:variable name="verso.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> - <fo:block><xsl:copy-of select="$verso.content"/></fo:block> - </xsl:if> - <xsl:call-template name="indexdiv.titlepage.separator"/> - </fo:block> -</xsl:template> - -<xsl:template match="*" mode="indexdiv.titlepage.recto.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="*" mode="indexdiv.titlepage.verso.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="subtitle" mode="indexdiv.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="indexdiv.titlepage.recto.style" font-family="{$title.fontset}"> -<xsl:apply-templates select="." mode="indexdiv.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template name="setindex.titlepage.recto"> - <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="setindex.titlepage.recto.style" margin-left="0pt" font-size="24.8832pt" font-family="{$title.fontset}" font-weight="bold"> -<xsl:call-template name="component.title"> -<xsl:with-param name="node" select="ancestor-or-self::setindex[1]"/> -<xsl:with-param name="pagewide" select="1"/> -</xsl:call-template></fo:block> - <xsl:choose> - <xsl:when test="setindexinfo/subtitle"> - <xsl:apply-templates mode="setindex.titlepage.recto.auto.mode" select="setindexinfo/subtitle"/> - </xsl:when> - <xsl:when test="docinfo/subtitle"> - <xsl:apply-templates mode="setindex.titlepage.recto.auto.mode" select="docinfo/subtitle"/> - </xsl:when> - <xsl:when test="info/subtitle"> - <xsl:apply-templates mode="setindex.titlepage.recto.auto.mode" select="info/subtitle"/> - </xsl:when> - <xsl:when test="subtitle"> - <xsl:apply-templates mode="setindex.titlepage.recto.auto.mode" select="subtitle"/> - </xsl:when> - </xsl:choose> - -</xsl:template> - -<xsl:template name="setindex.titlepage.verso"> -</xsl:template> - -<xsl:template name="setindex.titlepage.separator"> -</xsl:template> - -<xsl:template name="setindex.titlepage.before.recto"> -</xsl:template> - -<xsl:template name="setindex.titlepage.before.verso"> -</xsl:template> - -<xsl:template name="setindex.titlepage"> - <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> - <xsl:variable name="recto.content"> - <xsl:call-template name="setindex.titlepage.before.recto"/> - <xsl:call-template name="setindex.titlepage.recto"/> - </xsl:variable> - <xsl:variable name="recto.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> - <fo:block><xsl:copy-of select="$recto.content"/></fo:block> - </xsl:if> - <xsl:variable name="verso.content"> - <xsl:call-template name="setindex.titlepage.before.verso"/> - <xsl:call-template name="setindex.titlepage.verso"/> - </xsl:variable> - <xsl:variable name="verso.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> - <fo:block><xsl:copy-of select="$verso.content"/></fo:block> - </xsl:if> - <xsl:call-template name="setindex.titlepage.separator"/> - </fo:block> -</xsl:template> - -<xsl:template match="*" mode="setindex.titlepage.recto.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="*" mode="setindex.titlepage.verso.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="subtitle" mode="setindex.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="setindex.titlepage.recto.style" font-family="{$title.fontset}"> -<xsl:apply-templates select="." mode="setindex.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template name="colophon.titlepage.recto"> - <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="colophon.titlepage.recto.style" margin-left="{$title.margin.left}" font-size="24.8832pt" font-family="{$title.fontset}" font-weight="bold"> -<xsl:call-template name="component.title"> -<xsl:with-param name="node" select="ancestor-or-self::colophon[1]"/> -</xsl:call-template></fo:block> - <xsl:choose> - <xsl:when test="colophoninfo/subtitle"> - <xsl:apply-templates mode="colophon.titlepage.recto.auto.mode" select="colophoninfo/subtitle"/> - </xsl:when> - <xsl:when test="docinfo/subtitle"> - <xsl:apply-templates mode="colophon.titlepage.recto.auto.mode" select="docinfo/subtitle"/> - </xsl:when> - <xsl:when test="info/subtitle"> - <xsl:apply-templates mode="colophon.titlepage.recto.auto.mode" select="info/subtitle"/> - </xsl:when> - <xsl:when test="subtitle"> - <xsl:apply-templates mode="colophon.titlepage.recto.auto.mode" select="subtitle"/> - </xsl:when> - </xsl:choose> - -</xsl:template> - -<xsl:template name="colophon.titlepage.verso"> -</xsl:template> - -<xsl:template name="colophon.titlepage.separator"> -</xsl:template> - -<xsl:template name="colophon.titlepage.before.recto"> -</xsl:template> - -<xsl:template name="colophon.titlepage.before.verso"> -</xsl:template> - -<xsl:template name="colophon.titlepage"> - <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> - <xsl:variable name="recto.content"> - <xsl:call-template name="colophon.titlepage.before.recto"/> - <xsl:call-template name="colophon.titlepage.recto"/> - </xsl:variable> - <xsl:variable name="recto.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> - <fo:block><xsl:copy-of select="$recto.content"/></fo:block> - </xsl:if> - <xsl:variable name="verso.content"> - <xsl:call-template name="colophon.titlepage.before.verso"/> - <xsl:call-template name="colophon.titlepage.verso"/> - </xsl:variable> - <xsl:variable name="verso.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> - <fo:block><xsl:copy-of select="$verso.content"/></fo:block> - </xsl:if> - <xsl:call-template name="colophon.titlepage.separator"/> - </fo:block> -</xsl:template> - -<xsl:template match="*" mode="colophon.titlepage.recto.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="*" mode="colophon.titlepage.verso.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="subtitle" mode="colophon.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="colophon.titlepage.recto.style" font-family="{$title.fontset}"> -<xsl:apply-templates select="." mode="colophon.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template name="sidebar.titlepage.recto"> - <xsl:choose> - <xsl:when test="sidebarinfo/title"> - <xsl:apply-templates mode="sidebar.titlepage.recto.auto.mode" select="sidebarinfo/title"/> - </xsl:when> - <xsl:when test="docinfo/title"> - <xsl:apply-templates mode="sidebar.titlepage.recto.auto.mode" select="docinfo/title"/> - </xsl:when> - <xsl:when test="info/title"> - <xsl:apply-templates mode="sidebar.titlepage.recto.auto.mode" select="info/title"/> - </xsl:when> - <xsl:when test="title"> - <xsl:apply-templates mode="sidebar.titlepage.recto.auto.mode" select="title"/> - </xsl:when> - </xsl:choose> - - <xsl:choose> - <xsl:when test="sidebarinfo/subtitle"> - <xsl:apply-templates mode="sidebar.titlepage.recto.auto.mode" select="sidebarinfo/subtitle"/> - </xsl:when> - <xsl:when test="docinfo/subtitle"> - <xsl:apply-templates mode="sidebar.titlepage.recto.auto.mode" select="docinfo/subtitle"/> - </xsl:when> - <xsl:when test="info/subtitle"> - <xsl:apply-templates mode="sidebar.titlepage.recto.auto.mode" select="info/subtitle"/> - </xsl:when> - <xsl:when test="subtitle"> - <xsl:apply-templates mode="sidebar.titlepage.recto.auto.mode" select="subtitle"/> - </xsl:when> - </xsl:choose> - -</xsl:template> - -<xsl:template name="sidebar.titlepage.verso"> -</xsl:template> - -<xsl:template name="sidebar.titlepage.separator"> -</xsl:template> - -<xsl:template name="sidebar.titlepage.before.recto"> -</xsl:template> - -<xsl:template name="sidebar.titlepage.before.verso"> -</xsl:template> - -<xsl:template name="sidebar.titlepage"> - <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> - <xsl:variable name="recto.content"> - <xsl:call-template name="sidebar.titlepage.before.recto"/> - <xsl:call-template name="sidebar.titlepage.recto"/> - </xsl:variable> - <xsl:variable name="recto.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> - <fo:block><xsl:copy-of select="$recto.content"/></fo:block> - </xsl:if> - <xsl:variable name="verso.content"> - <xsl:call-template name="sidebar.titlepage.before.verso"/> - <xsl:call-template name="sidebar.titlepage.verso"/> - </xsl:variable> - <xsl:variable name="verso.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> - <fo:block><xsl:copy-of select="$verso.content"/></fo:block> - </xsl:if> - <xsl:call-template name="sidebar.titlepage.separator"/> - </fo:block> -</xsl:template> - -<xsl:template match="*" mode="sidebar.titlepage.recto.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="*" mode="sidebar.titlepage.verso.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="title" mode="sidebar.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sidebar.titlepage.recto.style" font-family="{$title.fontset}" font-weight="bold"> -<xsl:apply-templates select="." mode="sidebar.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="subtitle" mode="sidebar.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sidebar.titlepage.recto.style" font-family="{$title.fontset}"> -<xsl:apply-templates select="." mode="sidebar.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template name="qandaset.titlepage.recto"> - <xsl:choose> - <xsl:when test="qandasetinfo/title"> - <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="qandasetinfo/title"/> - </xsl:when> - <xsl:when test="blockinfo/title"> - <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="blockinfo/title"/> - </xsl:when> - <xsl:when test="info/title"> - <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="info/title"/> - </xsl:when> - <xsl:when test="title"> - <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="title"/> - </xsl:when> - </xsl:choose> - - <xsl:choose> - <xsl:when test="qandasetinfo/subtitle"> - <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="qandasetinfo/subtitle"/> - </xsl:when> - <xsl:when test="blockinfo/subtitle"> - <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="blockinfo/subtitle"/> - </xsl:when> - <xsl:when test="info/subtitle"> - <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="info/subtitle"/> - </xsl:when> - <xsl:when test="subtitle"> - <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="subtitle"/> - </xsl:when> - </xsl:choose> - - <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="qandasetinfo/corpauthor"/> - <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="blockinfo/corpauthor"/> - <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="info/corpauthor"/> - <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="qandasetinfo/authorgroup"/> - <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="blockinfo/authorgroup"/> - <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="info/authorgroup"/> - <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="qandasetinfo/author"/> - <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="blockinfo/author"/> - <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="info/author"/> - <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="qandasetinfo/othercredit"/> - <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="blockinfo/othercredit"/> - <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="info/othercredit"/> - <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="qandasetinfo/releaseinfo"/> - <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="blockinfo/releaseinfo"/> - <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="info/releaseinfo"/> - <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="qandasetinfo/copyright"/> - <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="blockinfo/copyright"/> - <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="info/copyright"/> - <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="qandasetinfo/legalnotice"/> - <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="blockinfo/legalnotice"/> - <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="info/legalnotice"/> - <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="qandasetinfo/pubdate"/> - <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="blockinfo/pubdate"/> - <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="info/pubdate"/> - <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="qandasetinfo/revision"/> - <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="blockinfo/revision"/> - <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="info/revision"/> - <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="qandasetinfo/revhistory"/> - <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="blockinfo/revhistory"/> - <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="info/revhistory"/> - <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="qandasetinfo/abstract"/> - <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="blockinfo/abstract"/> - <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="info/abstract"/> -</xsl:template> - -<xsl:template name="qandaset.titlepage.verso"> -</xsl:template> - -<xsl:template name="qandaset.titlepage.separator"> -</xsl:template> - -<xsl:template name="qandaset.titlepage.before.recto"> -</xsl:template> - -<xsl:template name="qandaset.titlepage.before.verso"> -</xsl:template> - -<xsl:template name="qandaset.titlepage"> - <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" font-family="{$title.fontset}"> - <xsl:variable name="recto.content"> - <xsl:call-template name="qandaset.titlepage.before.recto"/> - <xsl:call-template name="qandaset.titlepage.recto"/> - </xsl:variable> - <xsl:variable name="recto.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> - <fo:block start-indent="0pt" text-align="center"><xsl:copy-of select="$recto.content"/></fo:block> - </xsl:if> - <xsl:variable name="verso.content"> - <xsl:call-template name="qandaset.titlepage.before.verso"/> - <xsl:call-template name="qandaset.titlepage.verso"/> - </xsl:variable> - <xsl:variable name="verso.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> - <fo:block><xsl:copy-of select="$verso.content"/></fo:block> - </xsl:if> - <xsl:call-template name="qandaset.titlepage.separator"/> - </fo:block> -</xsl:template> - -<xsl:template match="*" mode="qandaset.titlepage.recto.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="*" mode="qandaset.titlepage.verso.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="title" mode="qandaset.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="qandaset.titlepage.recto.style" keep-with-next.within-column="always" font-size="24.8832pt" font-weight="bold"> -<xsl:call-template name="component.title"> -<xsl:with-param name="node" select="ancestor-or-self::qandaset[1]"/> -</xsl:call-template> -</fo:block> -</xsl:template> - -<xsl:template match="subtitle" mode="qandaset.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="qandaset.titlepage.recto.style"> -<xsl:apply-templates select="." mode="qandaset.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="corpauthor" mode="qandaset.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="qandaset.titlepage.recto.style" space-before="0.5em" font-size="14.4pt"> -<xsl:apply-templates select="." mode="qandaset.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="authorgroup" mode="qandaset.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="qandaset.titlepage.recto.style" space-before="0.5em" font-size="14.4pt"> -<xsl:apply-templates select="." mode="qandaset.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="author" mode="qandaset.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="qandaset.titlepage.recto.style" space-before="0.5em" font-size="14.4pt"> -<xsl:apply-templates select="." mode="qandaset.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="othercredit" mode="qandaset.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="qandaset.titlepage.recto.style" space-before="0.5em"> -<xsl:apply-templates select="." mode="qandaset.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="releaseinfo" mode="qandaset.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="qandaset.titlepage.recto.style" space-before="0.5em"> -<xsl:apply-templates select="." mode="qandaset.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="copyright" mode="qandaset.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="qandaset.titlepage.recto.style" space-before="0.5em"> -<xsl:apply-templates select="." mode="qandaset.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="legalnotice" mode="qandaset.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="qandaset.titlepage.recto.style" text-align="start" margin-left="0.5in" margin-right="0.5in" font-family="{$body.fontset}"> -<xsl:apply-templates select="." mode="qandaset.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="pubdate" mode="qandaset.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="qandaset.titlepage.recto.style" space-before="0.5em"> -<xsl:apply-templates select="." mode="qandaset.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="revision" mode="qandaset.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="qandaset.titlepage.recto.style" space-before="0.5em"> -<xsl:apply-templates select="." mode="qandaset.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="revhistory" mode="qandaset.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="qandaset.titlepage.recto.style" space-before="0.5em"> -<xsl:apply-templates select="." mode="qandaset.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template match="abstract" mode="qandaset.titlepage.recto.auto.mode"> -<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="qandaset.titlepage.recto.style" space-before="0.5em" text-align="start" margin-left="0.5in" margin-right="0.5in" font-family="{$body.fontset}"> -<xsl:apply-templates select="." mode="qandaset.titlepage.recto.mode"/> -</fo:block> -</xsl:template> - -<xsl:template name="table.of.contents.titlepage.recto"> - <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="table.of.contents.titlepage.recto.style" space-before.minimum="1em" space-before.optimum="1.5em" space-before.maximum="2em" space-after="0.5em" margin-left="{$title.margin.left}" start-indent="0pt" font-size="17.28pt" font-weight="bold" font-family="{$title.fontset}"> -<xsl:call-template name="gentext"> -<xsl:with-param name="key" select="'TableofContents'"/> -</xsl:call-template></fo:block> -</xsl:template> - -<xsl:template name="table.of.contents.titlepage.verso"> -</xsl:template> - -<xsl:template name="table.of.contents.titlepage.separator"> -</xsl:template> - -<xsl:template name="table.of.contents.titlepage.before.recto"> -</xsl:template> - -<xsl:template name="table.of.contents.titlepage.before.verso"> -</xsl:template> - -<xsl:template name="table.of.contents.titlepage"> - <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> - <xsl:variable name="recto.content"> - <xsl:call-template name="table.of.contents.titlepage.before.recto"/> - <xsl:call-template name="table.of.contents.titlepage.recto"/> - </xsl:variable> - <xsl:variable name="recto.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> - <fo:block><xsl:copy-of select="$recto.content"/></fo:block> - </xsl:if> - <xsl:variable name="verso.content"> - <xsl:call-template name="table.of.contents.titlepage.before.verso"/> - <xsl:call-template name="table.of.contents.titlepage.verso"/> - </xsl:variable> - <xsl:variable name="verso.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> - <fo:block><xsl:copy-of select="$verso.content"/></fo:block> - </xsl:if> - <xsl:call-template name="table.of.contents.titlepage.separator"/> - </fo:block> -</xsl:template> - -<xsl:template match="*" mode="table.of.contents.titlepage.recto.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="*" mode="table.of.contents.titlepage.verso.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template name="list.of.tables.titlepage.recto"> - <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="list.of.tables.titlepage.recto.style" space-before.minimum="1em" space-before.optimum="1.5em" space-before.maximum="2em" space-after="0.5em" margin-left="{$title.margin.left}" start-indent="0pt" font-size="17.28pt" font-weight="bold" font-family="{$title.fontset}"> -<xsl:call-template name="gentext"> -<xsl:with-param name="key" select="'ListofTables'"/> -</xsl:call-template></fo:block> -</xsl:template> - -<xsl:template name="list.of.tables.titlepage.verso"> -</xsl:template> - -<xsl:template name="list.of.tables.titlepage.separator"> -</xsl:template> - -<xsl:template name="list.of.tables.titlepage.before.recto"> -</xsl:template> - -<xsl:template name="list.of.tables.titlepage.before.verso"> -</xsl:template> - -<xsl:template name="list.of.tables.titlepage"> - <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> - <xsl:variable name="recto.content"> - <xsl:call-template name="list.of.tables.titlepage.before.recto"/> - <xsl:call-template name="list.of.tables.titlepage.recto"/> - </xsl:variable> - <xsl:variable name="recto.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> - <fo:block><xsl:copy-of select="$recto.content"/></fo:block> - </xsl:if> - <xsl:variable name="verso.content"> - <xsl:call-template name="list.of.tables.titlepage.before.verso"/> - <xsl:call-template name="list.of.tables.titlepage.verso"/> - </xsl:variable> - <xsl:variable name="verso.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> - <fo:block><xsl:copy-of select="$verso.content"/></fo:block> - </xsl:if> - <xsl:call-template name="list.of.tables.titlepage.separator"/> - </fo:block> -</xsl:template> - -<xsl:template match="*" mode="list.of.tables.titlepage.recto.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="*" mode="list.of.tables.titlepage.verso.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template name="list.of.figures.titlepage.recto"> - <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="list.of.figures.titlepage.recto.style" space-before.minimum="1em" space-before.optimum="1.5em" space-before.maximum="2em" space-after="0.5em" margin-left="{$title.margin.left}" start-indent="0pt" font-size="17.28pt" font-weight="bold" font-family="{$title.fontset}"> -<xsl:call-template name="gentext"> -<xsl:with-param name="key" select="'ListofFigures'"/> -</xsl:call-template></fo:block> -</xsl:template> - -<xsl:template name="list.of.figures.titlepage.verso"> -</xsl:template> - -<xsl:template name="list.of.figures.titlepage.separator"> -</xsl:template> - -<xsl:template name="list.of.figures.titlepage.before.recto"> -</xsl:template> - -<xsl:template name="list.of.figures.titlepage.before.verso"> -</xsl:template> - -<xsl:template name="list.of.figures.titlepage"> - <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> - <xsl:variable name="recto.content"> - <xsl:call-template name="list.of.figures.titlepage.before.recto"/> - <xsl:call-template name="list.of.figures.titlepage.recto"/> - </xsl:variable> - <xsl:variable name="recto.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> - <fo:block><xsl:copy-of select="$recto.content"/></fo:block> - </xsl:if> - <xsl:variable name="verso.content"> - <xsl:call-template name="list.of.figures.titlepage.before.verso"/> - <xsl:call-template name="list.of.figures.titlepage.verso"/> - </xsl:variable> - <xsl:variable name="verso.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> - <fo:block><xsl:copy-of select="$verso.content"/></fo:block> - </xsl:if> - <xsl:call-template name="list.of.figures.titlepage.separator"/> - </fo:block> -</xsl:template> - -<xsl:template match="*" mode="list.of.figures.titlepage.recto.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="*" mode="list.of.figures.titlepage.verso.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template name="list.of.examples.titlepage.recto"> - <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="list.of.examples.titlepage.recto.style" space-before.minimum="1em" space-before.optimum="1.5em" space-before.maximum="2em" space-after="0.5em" margin-left="{$title.margin.left}" start-indent="0pt" font-size="17.28pt" font-weight="bold" font-family="{$title.fontset}"> -<xsl:call-template name="gentext"> -<xsl:with-param name="key" select="'ListofExamples'"/> -</xsl:call-template></fo:block> -</xsl:template> - -<xsl:template name="list.of.examples.titlepage.verso"> -</xsl:template> - -<xsl:template name="list.of.examples.titlepage.separator"> -</xsl:template> - -<xsl:template name="list.of.examples.titlepage.before.recto"> -</xsl:template> - -<xsl:template name="list.of.examples.titlepage.before.verso"> -</xsl:template> - -<xsl:template name="list.of.examples.titlepage"> - <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> - <xsl:variable name="recto.content"> - <xsl:call-template name="list.of.examples.titlepage.before.recto"/> - <xsl:call-template name="list.of.examples.titlepage.recto"/> - </xsl:variable> - <xsl:variable name="recto.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> - <fo:block><xsl:copy-of select="$recto.content"/></fo:block> - </xsl:if> - <xsl:variable name="verso.content"> - <xsl:call-template name="list.of.examples.titlepage.before.verso"/> - <xsl:call-template name="list.of.examples.titlepage.verso"/> - </xsl:variable> - <xsl:variable name="verso.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> - <fo:block><xsl:copy-of select="$verso.content"/></fo:block> - </xsl:if> - <xsl:call-template name="list.of.examples.titlepage.separator"/> - </fo:block> -</xsl:template> - -<xsl:template match="*" mode="list.of.examples.titlepage.recto.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="*" mode="list.of.examples.titlepage.verso.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template name="list.of.equations.titlepage.recto"> - <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="list.of.equations.titlepage.recto.style" space-before.minimum="1em" space-before.optimum="1.5em" space-before.maximum="2em" space-after="0.5em" margin-left="{$title.margin.left}" start-indent="0pt" font-size="17.28pt" font-weight="bold" font-family="{$title.fontset}"> -<xsl:call-template name="gentext"> -<xsl:with-param name="key" select="'ListofEquations'"/> -</xsl:call-template></fo:block> -</xsl:template> - -<xsl:template name="list.of.equations.titlepage.verso"> -</xsl:template> - -<xsl:template name="list.of.equations.titlepage.separator"> -</xsl:template> - -<xsl:template name="list.of.equations.titlepage.before.recto"> -</xsl:template> - -<xsl:template name="list.of.equations.titlepage.before.verso"> -</xsl:template> - -<xsl:template name="list.of.equations.titlepage"> - <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> - <xsl:variable name="recto.content"> - <xsl:call-template name="list.of.equations.titlepage.before.recto"/> - <xsl:call-template name="list.of.equations.titlepage.recto"/> - </xsl:variable> - <xsl:variable name="recto.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> - <fo:block><xsl:copy-of select="$recto.content"/></fo:block> - </xsl:if> - <xsl:variable name="verso.content"> - <xsl:call-template name="list.of.equations.titlepage.before.verso"/> - <xsl:call-template name="list.of.equations.titlepage.verso"/> - </xsl:variable> - <xsl:variable name="verso.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> - <fo:block><xsl:copy-of select="$verso.content"/></fo:block> - </xsl:if> - <xsl:call-template name="list.of.equations.titlepage.separator"/> - </fo:block> -</xsl:template> - -<xsl:template match="*" mode="list.of.equations.titlepage.recto.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="*" mode="list.of.equations.titlepage.verso.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template name="list.of.procedures.titlepage.recto"> - <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="list.of.procedures.titlepage.recto.style" space-before.minimum="1em" space-before.optimum="1.5em" space-before.maximum="2em" space-after="0.5em" margin-left="{$title.margin.left}" start-indent="0pt" font-size="17.28pt" font-weight="bold" font-family="{$title.fontset}"> -<xsl:call-template name="gentext"> -<xsl:with-param name="key" select="'ListofProcedures'"/> -</xsl:call-template></fo:block> -</xsl:template> - -<xsl:template name="list.of.procedures.titlepage.verso"> -</xsl:template> - -<xsl:template name="list.of.procedures.titlepage.separator"> -</xsl:template> - -<xsl:template name="list.of.procedures.titlepage.before.recto"> -</xsl:template> - -<xsl:template name="list.of.procedures.titlepage.before.verso"> -</xsl:template> - -<xsl:template name="list.of.procedures.titlepage"> - <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> - <xsl:variable name="recto.content"> - <xsl:call-template name="list.of.procedures.titlepage.before.recto"/> - <xsl:call-template name="list.of.procedures.titlepage.recto"/> - </xsl:variable> - <xsl:variable name="recto.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> - <fo:block><xsl:copy-of select="$recto.content"/></fo:block> - </xsl:if> - <xsl:variable name="verso.content"> - <xsl:call-template name="list.of.procedures.titlepage.before.verso"/> - <xsl:call-template name="list.of.procedures.titlepage.verso"/> - </xsl:variable> - <xsl:variable name="verso.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> - <fo:block><xsl:copy-of select="$verso.content"/></fo:block> - </xsl:if> - <xsl:call-template name="list.of.procedures.titlepage.separator"/> - </fo:block> -</xsl:template> - -<xsl:template match="*" mode="list.of.procedures.titlepage.recto.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="*" mode="list.of.procedures.titlepage.verso.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template name="list.of.unknowns.titlepage.recto"> - <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="list.of.unknowns.titlepage.recto.style" space-before.minimum="1em" space-before.optimum="1.5em" space-before.maximum="2em" space-after="0.5em" margin-left="{$title.margin.left}" start-indent="0pt" font-size="17.28pt" font-weight="bold" font-family="{$title.fontset}"> -<xsl:call-template name="gentext"> -<xsl:with-param name="key" select="'ListofUnknown'"/> -</xsl:call-template></fo:block> -</xsl:template> - -<xsl:template name="list.of.unknowns.titlepage.verso"> -</xsl:template> - -<xsl:template name="list.of.unknowns.titlepage.separator"> -</xsl:template> - -<xsl:template name="list.of.unknowns.titlepage.before.recto"> -</xsl:template> - -<xsl:template name="list.of.unknowns.titlepage.before.verso"> -</xsl:template> - -<xsl:template name="list.of.unknowns.titlepage"> - <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> - <xsl:variable name="recto.content"> - <xsl:call-template name="list.of.unknowns.titlepage.before.recto"/> - <xsl:call-template name="list.of.unknowns.titlepage.recto"/> - </xsl:variable> - <xsl:variable name="recto.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> - <fo:block><xsl:copy-of select="$recto.content"/></fo:block> - </xsl:if> - <xsl:variable name="verso.content"> - <xsl:call-template name="list.of.unknowns.titlepage.before.verso"/> - <xsl:call-template name="list.of.unknowns.titlepage.verso"/> - </xsl:variable> - <xsl:variable name="verso.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> - <fo:block><xsl:copy-of select="$verso.content"/></fo:block> - </xsl:if> - <xsl:call-template name="list.of.unknowns.titlepage.separator"/> - </fo:block> -</xsl:template> - -<xsl:template match="*" mode="list.of.unknowns.titlepage.recto.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="*" mode="list.of.unknowns.titlepage.verso.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -</xsl:stylesheet> - diff --git a/docbook-xsl-1.75.2/fo/titlepage.xsl b/docbook-xsl-1.75.2/fo/titlepage.xsl deleted file mode 100644 index 188efee..0000000 --- a/docbook-xsl-1.75.2/fo/titlepage.xsl +++ /dev/null @@ -1,760 +0,0 @@ -<?xml version='1.0'?> -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" - xmlns:fo="http://www.w3.org/1999/XSL/Format" - version='1.0'> - -<!-- ******************************************************************** - $Id: titlepage.xsl 8346 2009-03-16 07:09:41Z bobstayton $ - ******************************************************************** - - This file is part of the XSL DocBook Stylesheet distribution. - See ../README or http://docbook.sf.net/release/xsl/current/ for - copyright and other information. - - ******************************************************************** --> - -<!-- ==================================================================== --> - -<xsl:attribute-set name="book.titlepage.recto.style"> - <xsl:attribute name="font-family"> - <xsl:value-of select="$title.fontset"/> - </xsl:attribute> - <xsl:attribute name="font-weight">bold</xsl:attribute> - <xsl:attribute name="font-size">12pt</xsl:attribute> - <xsl:attribute name="text-align">center</xsl:attribute> -</xsl:attribute-set> - -<xsl:attribute-set name="book.titlepage.verso.style"> - <xsl:attribute name="font-size">10pt</xsl:attribute> -</xsl:attribute-set> - -<xsl:attribute-set name="article.titlepage.recto.style"/> -<xsl:attribute-set name="article.titlepage.verso.style"/> - -<xsl:attribute-set name="set.titlepage.recto.style"/> -<xsl:attribute-set name="set.titlepage.verso.style"/> - -<xsl:attribute-set name="part.titlepage.recto.style"> - <xsl:attribute name="text-align">center</xsl:attribute> -</xsl:attribute-set> - -<xsl:attribute-set name="part.titlepage.verso.style"/> - -<xsl:attribute-set name="partintro.titlepage.recto.style"/> -<xsl:attribute-set name="partintro.titlepage.verso.style"/> - -<xsl:attribute-set name="reference.titlepage.recto.style"/> -<xsl:attribute-set name="reference.titlepage.verso.style"/> - -<xsl:attribute-set name="dedication.titlepage.recto.style"/> -<xsl:attribute-set name="dedication.titlepage.verso.style"/> - -<xsl:attribute-set name="acknowledgements.titlepage.recto.style"/> -<xsl:attribute-set name="acknowledgements.titlepage.verso.style"/> - -<xsl:attribute-set name="preface.titlepage.recto.style"/> -<xsl:attribute-set name="preface.titlepage.verso.style"/> - -<xsl:attribute-set name="chapter.titlepage.recto.style"/> -<xsl:attribute-set name="chapter.titlepage.verso.style"/> - -<xsl:attribute-set name="appendix.titlepage.recto.style"/> -<xsl:attribute-set name="appendix.titlepage.verso.style"/> - -<xsl:attribute-set name="bibliography.titlepage.recto.style"/> -<xsl:attribute-set name="bibliography.titlepage.verso.style"/> - -<xsl:attribute-set name="bibliodiv.titlepage.recto.style"/> -<xsl:attribute-set name="bibliodiv.titlepage.verso.style"/> - -<xsl:attribute-set name="glossary.titlepage.recto.style"/> -<xsl:attribute-set name="glossary.titlepage.verso.style"/> - -<xsl:attribute-set name="glossdiv.titlepage.recto.style"/> -<xsl:attribute-set name="glossdiv.titlepage.verso.style"/> - -<xsl:attribute-set name="index.titlepage.recto.style"/> -<xsl:attribute-set name="index.titlepage.verso.style"/> - -<xsl:attribute-set name="setindex.titlepage.recto.style"/> -<xsl:attribute-set name="setindex.titlepage.verso.style"/> - -<xsl:attribute-set name="indexdiv.titlepage.recto.style"/> -<xsl:attribute-set name="indexdiv.titlepage.verso.style"/> - -<xsl:attribute-set name="colophon.titlepage.recto.style"/> -<xsl:attribute-set name="colophon.titlepage.verso.style"/> - -<xsl:attribute-set name="sidebar.titlepage.recto.style"/> -<xsl:attribute-set name="sidebar.titlepage.verso.style"/> - -<xsl:attribute-set name="qandaset.titlepage.recto.style"/> -<xsl:attribute-set name="qandaset.titlepage.verso.style"/> - -<xsl:attribute-set name="section.titlepage.recto.style"> - <xsl:attribute name="keep-together.within-column">always</xsl:attribute> -</xsl:attribute-set> - -<xsl:attribute-set name="section.titlepage.verso.style"> - <xsl:attribute name="keep-together.within-column">always</xsl:attribute> - <xsl:attribute name="keep-with-next.within-column">always</xsl:attribute> -</xsl:attribute-set> - -<xsl:attribute-set name="sect1.titlepage.recto.style" - use-attribute-sets="section.titlepage.recto.style"/> -<xsl:attribute-set name="sect1.titlepage.verso.style" - use-attribute-sets="section.titlepage.verso.style"/> - -<xsl:attribute-set name="sect2.titlepage.recto.style" - use-attribute-sets="section.titlepage.recto.style"/> -<xsl:attribute-set name="sect2.titlepage.verso.style" - use-attribute-sets="section.titlepage.verso.style"/> - -<xsl:attribute-set name="sect3.titlepage.recto.style" - use-attribute-sets="section.titlepage.recto.style"/> -<xsl:attribute-set name="sect3.titlepage.verso.style" - use-attribute-sets="section.titlepage.verso.style"/> - -<xsl:attribute-set name="sect4.titlepage.recto.style" - use-attribute-sets="section.titlepage.recto.style"/> -<xsl:attribute-set name="sect4.titlepage.verso.style" - use-attribute-sets="section.titlepage.verso.style"/> - -<xsl:attribute-set name="sect5.titlepage.recto.style" - use-attribute-sets="section.titlepage.recto.style"/> -<xsl:attribute-set name="sect5.titlepage.verso.style" - use-attribute-sets="section.titlepage.verso.style"/> - -<xsl:attribute-set name="simplesect.titlepage.recto.style" - use-attribute-sets="section.titlepage.recto.style"/> -<xsl:attribute-set name="simplesect.titlepage.verso.style" - use-attribute-sets="section.titlepage.verso.style"/> - -<xsl:attribute-set name="refnamediv.titlepage.recto.style" - use-attribute-sets="section.titlepage.recto.style"/> -<xsl:attribute-set name="refnamediv.titlepage.verso.style" - use-attribute-sets="section.titlepage.verso.style"/> - -<xsl:attribute-set name="refsynopsisdiv.titlepage.recto.style" - use-attribute-sets="section.titlepage.recto.style"/> -<xsl:attribute-set name="refsynopsisdiv.titlepage.verso.style" - use-attribute-sets="section.titlepage.verso.style"/> - -<xsl:attribute-set name="refsection.titlepage.recto.style" - use-attribute-sets="section.titlepage.recto.style"/> -<xsl:attribute-set name="refsection.titlepage.verso.style" - use-attribute-sets="section.titlepage.verso.style"/> - -<xsl:attribute-set name="refsect1.titlepage.recto.style" - use-attribute-sets="section.titlepage.recto.style"/> -<xsl:attribute-set name="refsect1.titlepage.verso.style" - use-attribute-sets="section.titlepage.verso.style"/> - -<xsl:attribute-set name="refsect2.titlepage.recto.style" - use-attribute-sets="section.titlepage.recto.style"/> -<xsl:attribute-set name="refsect2.titlepage.verso.style" - use-attribute-sets="section.titlepage.verso.style"/> - -<xsl:attribute-set name="refsect3.titlepage.recto.style" - use-attribute-sets="section.titlepage.recto.style"/> -<xsl:attribute-set name="refsect3.titlepage.verso.style" - use-attribute-sets="section.titlepage.verso.style"/> - -<xsl:attribute-set name="table.of.contents.titlepage.recto.style"/> -<xsl:attribute-set name="table.of.contents.titlepage.verso.style"/> - -<xsl:attribute-set name="list.of.tables.titlepage.recto.style"/> -<xsl:attribute-set name="list.of.tables.contents.titlepage.verso.style"/> - -<xsl:attribute-set name="list.of.figures.titlepage.recto.style"/> -<xsl:attribute-set name="list.of.figures.contents.titlepage.verso.style"/> - -<xsl:attribute-set name="list.of.equations.titlepage.recto.style"/> -<xsl:attribute-set name="list.of.equations.contents.titlepage.verso.style"/> - -<xsl:attribute-set name="list.of.examples.titlepage.recto.style"/> -<xsl:attribute-set name="list.of.examples.contents.titlepage.verso.style"/> - -<xsl:attribute-set name="list.of.procedures.titlepage.recto.style"/> -<xsl:attribute-set name="list.of.procedures.contents.titlepage.verso.style"/> - -<xsl:attribute-set name="list.of.unknowns.titlepage.recto.style"/> -<xsl:attribute-set name="list.of.unknowns.contents.titlepage.verso.style"/> - -<!-- ==================================================================== --> - -<xsl:template match="*" mode="titlepage.mode"> - <!-- if an element isn't found in this mode, try the default mode --> - <xsl:apply-templates select="."/> -</xsl:template> - -<xsl:template match="abbrev" mode="titlepage.mode"> - <xsl:apply-templates mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="abstract" mode="titlepage.mode"> - <fo:block xsl:use-attribute-sets="abstract.properties"> - <fo:block xsl:use-attribute-sets="abstract.title.properties"> - <xsl:choose> - <xsl:when test="title|info/title"> - <xsl:apply-templates select="title|info/title"/> - </xsl:when> - <xsl:otherwise> - <xsl:call-template name="gentext"> - <xsl:with-param name="key" select="'Abstract'"/> - </xsl:call-template> - </xsl:otherwise> - </xsl:choose> - </fo:block> - <xsl:apply-templates select="*[not(self::title)]" mode="titlepage.mode"/> - </fo:block> -</xsl:template> - -<xsl:template match="abstract/title" mode="titlepage.mode"/> - -<xsl:template match="abstract/title" mode="titlepage.abstract.title.mode"> - <xsl:apply-templates mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="address" mode="titlepage.mode"> - <!-- use the normal address handling code --> - <xsl:apply-templates select="."/> -</xsl:template> - -<xsl:template match="affiliation" mode="titlepage.mode"> - <fo:block> - <xsl:apply-templates mode="titlepage.mode"/> - </fo:block> -</xsl:template> - -<xsl:template match="artpagenums" mode="titlepage.mode"> - <xsl:apply-templates mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="author" mode="titlepage.mode"> - <fo:block> - <xsl:call-template name="anchor"/> - <xsl:call-template name="person.name"/> - <xsl:if test="affiliation/orgname"> - <xsl:text>, </xsl:text> - <xsl:apply-templates select="affiliation/orgname" mode="titlepage.mode"/> - </xsl:if> - <xsl:if test="email|affiliation/address/email"> - <xsl:text> </xsl:text> - <xsl:apply-templates select="(email|affiliation/address/email)[1]"/> - </xsl:if> - </fo:block> -</xsl:template> - -<xsl:template match="authorblurb" mode="titlepage.mode"> - <xsl:apply-templates mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="authorgroup" mode="titlepage.mode"> - <fo:wrapper> - <xsl:call-template name="anchor"/> - <xsl:apply-templates mode="titlepage.mode"/> - </fo:wrapper> -</xsl:template> - -<xsl:template match="authorinitials" mode="titlepage.mode"> - <xsl:apply-templates mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="bibliomisc" mode="titlepage.mode"> - <xsl:apply-templates mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="bibliomset" mode="titlepage.mode"> - <xsl:apply-templates mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="collab" mode="titlepage.mode"> - <xsl:apply-templates mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="confgroup" mode="titlepage.mode"> - <fo:block> - <xsl:apply-templates mode="titlepage.mode"/> - </fo:block> -</xsl:template> - -<xsl:template match="confdates" mode="titlepage.mode"> - <fo:block> - <xsl:apply-templates mode="titlepage.mode"/> - </fo:block> -</xsl:template> - -<xsl:template match="conftitle" mode="titlepage.mode"> - <fo:block> - <xsl:apply-templates mode="titlepage.mode"/> - </fo:block> -</xsl:template> - -<xsl:template match="confnum" mode="titlepage.mode"> - <!-- suppress --> -</xsl:template> - -<xsl:template match="contractnum" mode="titlepage.mode"> - <xsl:apply-templates mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="contractsponsor" mode="titlepage.mode"> - <xsl:apply-templates mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="contrib" mode="titlepage.mode"> - <xsl:apply-templates mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="copyright" mode="titlepage.mode"> - <xsl:call-template name="gentext"> - <xsl:with-param name="key" select="'Copyright'"/> - </xsl:call-template> - <xsl:call-template name="gentext.space"/> - <xsl:call-template name="dingbat"> - <xsl:with-param name="dingbat">copyright</xsl:with-param> - </xsl:call-template> - <xsl:call-template name="gentext.space"/> - <xsl:call-template name="copyright.years"> - <xsl:with-param name="years" select="year"/> - <xsl:with-param name="print.ranges" select="$make.year.ranges"/> - <xsl:with-param name="single.year.ranges" - select="$make.single.year.ranges"/> - </xsl:call-template> - <xsl:call-template name="gentext.space"/> - <xsl:apply-templates select="holder" mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="year" mode="titlepage.mode"> - <xsl:apply-templates/> -</xsl:template> - -<xsl:template match="holder" mode="titlepage.mode"> - <xsl:apply-templates/> - <xsl:if test="position() < last()"> - <xsl:text>, </xsl:text> - </xsl:if> -</xsl:template> - -<xsl:template match="corpauthor" mode="titlepage.mode"> - <xsl:apply-templates mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="corpcredit" mode="titlepage.mode"> - <xsl:apply-templates mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="corpname" mode="titlepage.mode"> - <xsl:apply-templates mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="date" mode="titlepage.mode"> - <xsl:apply-templates mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="edition" mode="titlepage.mode"> - <xsl:apply-templates mode="titlepage.mode"/> - <xsl:call-template name="gentext.space"/> - <xsl:call-template name="gentext"> - <xsl:with-param name="key" select="'Edition'"/> - </xsl:call-template> -</xsl:template> - -<xsl:template match="editor" mode="titlepage.mode"> - <!-- The first editor is dealt with in the following template, - which in turn displays all editors of the same mode. --> -</xsl:template> - -<xsl:template match="editor[1]" priority="2" mode="titlepage.mode"> - <xsl:call-template name="gentext.edited.by"/> - <xsl:call-template name="gentext.space"/> - <xsl:call-template name="person.name.list"> - <xsl:with-param name="person.list" select="../editor"/> - </xsl:call-template> -</xsl:template> - -<xsl:template match="firstname" mode="titlepage.mode"> - <xsl:apply-templates mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="graphic" mode="titlepage.mode"> - <!-- use the normal graphic handling code --> - <xsl:apply-templates select="."/> -</xsl:template> - -<xsl:template match="honorific" mode="titlepage.mode"> - <xsl:apply-templates mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="isbn" mode="titlepage.mode"> - <xsl:apply-templates mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="issn" mode="titlepage.mode"> - <xsl:apply-templates mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="biblioid" mode="titlepage.mode"> - <xsl:apply-templates mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="itermset" mode="titlepage.mode"> - <!-- discard --> -</xsl:template> - -<xsl:template match="invpartnumber" mode="titlepage.mode"> - <xsl:apply-templates mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="issuenum" mode="titlepage.mode"> - <xsl:apply-templates mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="jobtitle" mode="titlepage.mode"> - <fo:block> - <xsl:apply-templates mode="titlepage.mode"/> - </fo:block> -</xsl:template> - -<xsl:template match="keywordset" mode="titlepage.mode"> -</xsl:template> - -<xsl:template match="legalnotice" mode="titlepage.mode"> - - <xsl:variable name="id"> - <xsl:call-template name="object.id"/> - </xsl:variable> - - <fo:block id="{$id}"> - <xsl:if test="title"> <!-- FIXME: add param for using default title? --> - <xsl:call-template name="formal.object.heading"/> - </xsl:if> - <xsl:apply-templates mode="titlepage.mode"/> - </fo:block> -</xsl:template> - -<xsl:template match="legalnotice/title" mode="titlepage.mode"> -</xsl:template> - -<xsl:template match="lineage" mode="titlepage.mode"> - <xsl:apply-templates mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="modespec" mode="titlepage.mode"> - <!-- discard --> -</xsl:template> - -<xsl:template match="orgdiv" mode="titlepage.mode"> - <xsl:if test="preceding-sibling::*[1][self::orgname]"> - <xsl:text> </xsl:text> - </xsl:if> - <xsl:apply-templates mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="orgname" mode="titlepage.mode"> - <xsl:apply-templates mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="othercredit" mode="titlepage.mode"> - <xsl:variable name="contrib" select="string(contrib)"/> - <xsl:choose> - <xsl:when test="contrib"> - <xsl:if test="not(preceding-sibling::othercredit[string(contrib)=$contrib])"> - <fo:block> - <xsl:apply-templates mode="titlepage.mode" select="contrib"/> - <xsl:text>: </xsl:text> - <xsl:call-template name="person.name"/> - <xsl:apply-templates mode="titlepage.mode" select="affiliation"/> - <xsl:apply-templates select="following-sibling::othercredit[string(contrib)=$contrib]" mode="titlepage.othercredits"/> - </fo:block> - </xsl:if> - </xsl:when> - <xsl:otherwise> - <fo:block><xsl:call-template name="person.name"/></fo:block> - <xsl:apply-templates mode="titlepage.mode" select="./affiliation"/> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template match="othercredit" mode="titlepage.othercredits"> - <xsl:text>, </xsl:text> - <xsl:call-template name="person.name"/> -</xsl:template> - -<xsl:template match="othername" mode="titlepage.mode"> - <xsl:apply-templates mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="pagenums" mode="titlepage.mode"> - <xsl:apply-templates mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="printhistory" mode="titlepage.mode"> - <xsl:apply-templates mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="productname" mode="titlepage.mode"> - <xsl:apply-templates mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="productnumber" mode="titlepage.mode"> - <xsl:apply-templates mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="pubdate" mode="titlepage.mode"> - <xsl:apply-templates mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="publisher" mode="titlepage.mode"> - <fo:block> - <xsl:apply-templates mode="titlepage.mode"/> - </fo:block> -</xsl:template> - -<xsl:template match="publishername" mode="titlepage.mode"> - <xsl:apply-templates mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="pubsnumber" mode="titlepage.mode"> - <xsl:apply-templates mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="releaseinfo" mode="titlepage.mode"> - <xsl:apply-templates mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="revhistory" mode="titlepage.mode"> - - <xsl:variable name="explicit.table.width"> - <xsl:call-template name="pi.dbfo_table-width"/> - </xsl:variable> - - <xsl:variable name="table.width"> - <xsl:choose> - <xsl:when test="$explicit.table.width != ''"> - <xsl:value-of select="$explicit.table.width"/> - </xsl:when> - <xsl:when test="$default.table.width = ''"> - <xsl:text>100%</xsl:text> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="$default.table.width"/> - </xsl:otherwise> - </xsl:choose> - </xsl:variable> - - <fo:table table-layout="fixed" width="{$table.width}" xsl:use-attribute-sets="revhistory.table.properties"> - <fo:table-column column-number="1" column-width="proportional-column-width(1)"/> - <fo:table-column column-number="2" column-width="proportional-column-width(1)"/> - <fo:table-column column-number="3" column-width="proportional-column-width(1)"/> - <fo:table-body start-indent="0pt" end-indent="0pt"> - <fo:table-row> - <fo:table-cell number-columns-spanned="3" xsl:use-attribute-sets="revhistory.table.cell.properties"> - <fo:block xsl:use-attribute-sets="revhistory.title.properties"> - <xsl:choose> - <xsl:when test="title|info/title"> - <xsl:apply-templates select="title|info/title" mode="titlepage.mode"/> - </xsl:when> - <xsl:otherwise> - <xsl:call-template name="gentext"> - <xsl:with-param name="key" select="'RevHistory'"/> - </xsl:call-template> - </xsl:otherwise> - </xsl:choose> - </fo:block> - </fo:table-cell> - </fo:table-row> - <xsl:apply-templates select="*[not(self::title)]" mode="titlepage.mode"/> - </fo:table-body> - </fo:table> - -</xsl:template> - - -<xsl:template match="revhistory/revision" mode="titlepage.mode"> - <xsl:variable name="revnumber" select="revnumber"/> - <xsl:variable name="revdate" select="date"/> - <xsl:variable name="revauthor" select="authorinitials|author"/> - <xsl:variable name="revremark" select="revremark|revdescription"/> - <fo:table-row> - <fo:table-cell xsl:use-attribute-sets="revhistory.table.cell.properties"> - <fo:block> - <xsl:if test="$revnumber"> - <xsl:call-template name="gentext"> - <xsl:with-param name="key" select="'Revision'"/> - </xsl:call-template> - <xsl:call-template name="gentext.space"/> - <xsl:apply-templates select="$revnumber[1]" mode="titlepage.mode"/> - </xsl:if> - </fo:block> - </fo:table-cell> - <fo:table-cell xsl:use-attribute-sets="revhistory.table.cell.properties"> - <fo:block> - <xsl:apply-templates select="$revdate[1]" mode="titlepage.mode"/> - </fo:block> - </fo:table-cell> - <fo:table-cell xsl:use-attribute-sets="revhistory.table.cell.properties"> - <fo:block> - <xsl:for-each select="$revauthor"> - <xsl:apply-templates select="." mode="titlepage.mode"/> - <xsl:if test="position() != last()"> - <xsl:text>, </xsl:text> - </xsl:if> - </xsl:for-each> - </fo:block> - </fo:table-cell> - </fo:table-row> - <xsl:if test="$revremark"> - <fo:table-row> - <fo:table-cell number-columns-spanned="3" xsl:use-attribute-sets="revhistory.table.cell.properties"> - <fo:block> - <xsl:apply-templates select="$revremark[1]" mode="titlepage.mode"/> - </fo:block> - </fo:table-cell> - </fo:table-row> - </xsl:if> -</xsl:template> - -<xsl:template match="revision/revnumber" mode="titlepage.mode"> - <xsl:apply-templates mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="revision/date" mode="titlepage.mode"> - <xsl:apply-templates mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="revision/authorinitials" mode="titlepage.mode"> - <xsl:apply-templates mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="revision/author" mode="titlepage.mode"> - <xsl:apply-templates mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="revision/revremark" mode="titlepage.mode"> - <xsl:apply-templates mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="revision/revdescription" mode="titlepage.mode"> - <xsl:apply-templates mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="seriesvolnums" mode="titlepage.mode"> - <xsl:apply-templates mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="shortaffil" mode="titlepage.mode"> - <xsl:apply-templates mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="subjectset" mode="titlepage.mode"> - <!-- discard --> -</xsl:template> - -<xsl:template match="subtitle" mode="titlepage.mode"> - <xsl:apply-templates mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="surname" mode="titlepage.mode"> - <xsl:apply-templates mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="title" mode="titlepage.mode"> - <xsl:apply-templates mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="titleabbrev" mode="titlepage.mode"> - <xsl:apply-templates mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="volumenum" mode="titlepage.mode"> - <xsl:apply-templates mode="titlepage.mode"/> -</xsl:template> - -<!-- ==================================================================== --> -<!-- Book templates --> - -<!-- Note: these templates cannot use *.titlepage.recto.mode or - *.titlepage.verso.mode. If they do then subsequent use of a custom - titlepage.templates.xml file will not work correctly. --> - -<!-- book recto --> - -<xsl:template match="bookinfo/authorgroup|book/info/authorgroup" - mode="titlepage.mode" priority="2"> - <fo:block> - <xsl:call-template name="anchor"/> - <xsl:apply-templates mode="titlepage.mode"/> - </fo:block> -</xsl:template> - -<!-- book verso --> - -<xsl:template name="book.verso.title"> - <fo:block> - <xsl:apply-templates mode="titlepage.mode"/> - - <xsl:if test="following-sibling::subtitle - |following-sibling::info/subtitle - |following-sibling::bookinfo/subtitle"> - <xsl:text>: </xsl:text> - - <xsl:apply-templates select="(following-sibling::subtitle - |following-sibling::info/subtitle - |following-sibling::bookinfo/subtitle)[1]" - mode="book.verso.subtitle.mode"/> - </xsl:if> - </fo:block> -</xsl:template> - -<xsl:template match="subtitle" mode="book.verso.subtitle.mode"> - <xsl:apply-templates mode="titlepage.mode"/> - <xsl:if test="following-sibling::subtitle"> - <xsl:text>: </xsl:text> - <xsl:apply-templates select="following-sibling::subtitle[1]" - mode="book.verso.subtitle.mode"/> - </xsl:if> -</xsl:template> - -<xsl:template name="verso.authorgroup"> - <fo:block> - <xsl:call-template name="gentext"> - <xsl:with-param name="key" select="'by'"/> - </xsl:call-template> - <xsl:text> </xsl:text> - <xsl:call-template name="person.name.list"> - <xsl:with-param name="person.list" select="author|corpauthor|editor"/> - </xsl:call-template> - </fo:block> - <xsl:apply-templates select="othercredit" mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="bookinfo/author|book/info/author" - mode="titlepage.mode" priority="2"> - <fo:block> - <xsl:call-template name="person.name"/> - </fo:block> -</xsl:template> - -<xsl:template match="bookinfo/corpauthor|book/info/corpauthor" - mode="titlepage.mode" priority="2"> - <fo:block> - <xsl:apply-templates/> - </fo:block> -</xsl:template> - -<xsl:template match="bookinfo/pubdate|book/info/pubdate" - mode="titlepage.mode" priority="2"> - <fo:block> - <xsl:call-template name="gentext"> - <xsl:with-param name="key" select="'pubdate'"/> - </xsl:call-template> - <xsl:text> </xsl:text> - <xsl:apply-templates mode="titlepage.mode"/> - </fo:block> -</xsl:template> - -<!-- ==================================================================== --> - -</xsl:stylesheet> diff --git a/docbook-xsl-1.75.2/fo/toc.xsl b/docbook-xsl-1.75.2/fo/toc.xsl deleted file mode 100644 index cf32724..0000000 --- a/docbook-xsl-1.75.2/fo/toc.xsl +++ /dev/null @@ -1,332 +0,0 @@ -<?xml version='1.0'?> -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" - xmlns:fo="http://www.w3.org/1999/XSL/Format" - version='1.0'> - -<!-- ******************************************************************** - $Id: toc.xsl 8323 2009-03-12 22:52:17Z bobstayton $ - ******************************************************************** - - This file is part of the XSL DocBook Stylesheet distribution. - See ../README or http://docbook.sf.net/release/xsl/current/ for - copyright and other information. - - ******************************************************************** --> - -<!-- ==================================================================== --> - -<!-- only set, book and part puts toc in its own page sequence --> - -<xsl:template match="set/toc | book/toc | part/toc"> - <xsl:variable name="toc.params"> - <xsl:call-template name="find.path.params"> - <xsl:with-param name="node" select="parent::*"/> - <xsl:with-param name="table" select="normalize-space($generate.toc)"/> - </xsl:call-template> - </xsl:variable> - - <!-- Do not output the toc element if one is already generated - by the use of $generate.toc parameter, or if - generating a source toc is turned off --> - <xsl:if test="not(contains($toc.params, 'toc')) and - ($process.source.toc != 0 or $process.empty.source.toc != 0)"> - <!-- Don't generate a page sequence unless there is content --> - <xsl:variable name="content"> - <xsl:choose> - <xsl:when test="* and $process.source.toc != 0"> - <xsl:apply-templates /> - </xsl:when> - <xsl:when test="count(*) = 0 and $process.empty.source.toc != 0"> - <!-- trick to switch context node to parent element --> - <xsl:for-each select="parent::*"> - <xsl:choose> - <xsl:when test="self::set"> - <xsl:call-template name="set.toc"> - <xsl:with-param name="toc.title.p" - select="contains($toc.params, 'title')"/> - </xsl:call-template> - </xsl:when> - <xsl:when test="self::book"> - <xsl:call-template name="division.toc"> - <xsl:with-param name="toc.title.p" - select="contains($toc.params, 'title')"/> - </xsl:call-template> - </xsl:when> - <xsl:when test="self::part"> - <xsl:call-template name="division.toc"> - <xsl:with-param name="toc.title.p" - select="contains($toc.params, 'title')"/> - </xsl:call-template> - </xsl:when> - </xsl:choose> - </xsl:for-each> - </xsl:when> - </xsl:choose> - </xsl:variable> - - <xsl:if test="string-length(normalize-space($content)) != 0"> - <xsl:variable name="lot-master-reference"> - <xsl:call-template name="select.pagemaster"> - <xsl:with-param name="pageclass" select="'lot'"/> - </xsl:call-template> - </xsl:variable> - - <xsl:call-template name="page.sequence"> - <xsl:with-param name="master-reference" - select="$lot-master-reference"/> - <xsl:with-param name="element" select="'toc'"/> - <xsl:with-param name="gentext-key" select="'TableofContents'"/> - <xsl:with-param name="content" select="$content"/> - </xsl:call-template> - </xsl:if> - </xsl:if> -</xsl:template> - -<xsl:template match="chapter/toc | appendix/toc | preface/toc | article/toc"> - <xsl:variable name="toc.params"> - <xsl:call-template name="find.path.params"> - <xsl:with-param name="node" select="parent::*"/> - <xsl:with-param name="table" select="normalize-space($generate.toc)"/> - </xsl:call-template> - </xsl:variable> - - <!-- Do not output the toc element if one is already generated - by the use of $generate.toc parameter, or if - generating a source toc is turned off --> - <xsl:if test="not(contains($toc.params, 'toc')) and - ($process.source.toc != 0 or $process.empty.source.toc != 0)"> - <xsl:choose> - <xsl:when test="* and $process.source.toc != 0"> - <fo:block> - <xsl:apply-templates/> - </fo:block> - </xsl:when> - <xsl:when test="count(*) = 0 and $process.empty.source.toc != 0"> - <!-- trick to switch context node to section element --> - <xsl:for-each select="parent::*"> - <xsl:call-template name="component.toc"> - <xsl:with-param name="toc.title.p" - select="contains($toc.params, 'title')"/> - </xsl:call-template> - </xsl:for-each> - </xsl:when> - </xsl:choose> - <xsl:call-template name="component.toc.separator"/> - </xsl:if> -</xsl:template> - -<xsl:template match="section/toc - |sect1/toc - |sect2/toc - |sect3/toc - |sect4/toc - |sect5/toc"> - - <xsl:variable name="toc.params"> - <xsl:call-template name="find.path.params"> - <xsl:with-param name="node" select="parent::*"/> - <xsl:with-param name="table" select="normalize-space($generate.toc)"/> - </xsl:call-template> - </xsl:variable> - - <!-- Do not output the toc element if one is already generated - by the use of $generate.toc parameter, or if - generating a source toc is turned off --> - <xsl:if test="not(contains($toc.params, 'toc')) and - ($process.source.toc != 0 or $process.empty.source.toc != 0)"> - <xsl:choose> - <xsl:when test="* and $process.source.toc != 0"> - <fo:block> - <xsl:apply-templates/> - </fo:block> - </xsl:when> - <xsl:when test="count(*) = 0 and $process.empty.source.toc != 0"> - <!-- trick to switch context node to section element --> - <xsl:for-each select="parent::*"> - <xsl:call-template name="section.toc"> - <xsl:with-param name="toc.title.p" - select="contains($toc.params, 'title')"/> - </xsl:call-template> - </xsl:for-each> - </xsl:when> - </xsl:choose> - <xsl:call-template name="section.toc.separator"/> - </xsl:if> -</xsl:template> - -<!-- ==================================================================== --> - -<xsl:template match="tocpart|tocchap - |toclevel1|toclevel2|toclevel3|toclevel4|toclevel5"> - <xsl:apply-templates select="tocentry"/> - <xsl:if test="tocchap|toclevel1|toclevel2|toclevel3|toclevel4|toclevel5"> - <fo:block start-indent="{count(ancestor::*)*2}pc"> - <xsl:apply-templates select="tocchap|toclevel1|toclevel2|toclevel3|toclevel4|toclevel5"/> - </fo:block> - </xsl:if> -</xsl:template> - -<xsl:template match="tocentry|lotentry|tocdiv|tocfront|tocback"> - <fo:block text-align-last="justify" - end-indent="2pc" - last-line-end-indent="-2pc"> - <fo:inline keep-with-next.within-line="always"> - <xsl:choose> - <xsl:when test="@linkend"> - <fo:basic-link internal-destination="{@linkend}"> - <xsl:apply-templates/> - </fo:basic-link> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates/> - </xsl:otherwise> - </xsl:choose> - </fo:inline> - - <xsl:choose> - <xsl:when test="@linkend"> - <fo:inline keep-together.within-line="always"> - <xsl:text> </xsl:text> - <fo:leader leader-pattern="dots" - keep-with-next.within-line="always"/> - <xsl:text> </xsl:text> - <fo:basic-link internal-destination="{@linkend}"> - <xsl:choose> - <xsl:when test="@pagenum"> - <xsl:value-of select="@pagenum"/> - </xsl:when> - <xsl:otherwise> - <fo:page-number-citation ref-id="{@linkend}"/> - </xsl:otherwise> - </xsl:choose> - </fo:basic-link> - </fo:inline> - </xsl:when> - <xsl:when test="@pagenum"> - <fo:inline keep-together.within-line="always"> - <xsl:text> </xsl:text> - <fo:leader leader-pattern="dots" - keep-with-next.within-line="always"/> - <xsl:text> </xsl:text> - <xsl:value-of select="@pagenum"/> - </fo:inline> - </xsl:when> - <xsl:otherwise> - <!-- just the leaders, what else can I do? --> - <fo:inline keep-together.within-line="always"> - <xsl:text> </xsl:text> - <fo:leader leader-pattern="space" - keep-with-next.within-line="always"/> - </fo:inline> - </xsl:otherwise> - </xsl:choose> - </fo:block> -</xsl:template> - -<xsl:template match="toc/title"> - <fo:block font-weight="bold"> - <xsl:apply-templates/> - </fo:block> -</xsl:template> - -<xsl:template match="toc/subtitle"> - <fo:block font-weight="bold"> - <xsl:apply-templates/> - </fo:block> -</xsl:template> - -<xsl:template match="toc/titleabbrev"> -</xsl:template> - -<!-- ==================================================================== --> - -<!-- A lot element must have content, because there is no attribute - to select what kind of list should be generated --> -<xsl:template match="book/lot | part/lot"> - <!-- Don't generate a page sequence unless there is content --> - <xsl:variable name="content"> - <xsl:choose> - <xsl:when test="* and $process.source.toc != 0"> - <xsl:apply-templates /> - </xsl:when> - <xsl:when test="not(child::*) and $process.empty.source.toc != 0"> - <xsl:call-template name="process.empty.lot"/> - </xsl:when> - </xsl:choose> - </xsl:variable> - - <xsl:if test="string-length(normalize-space($content)) != 0"> - <xsl:variable name="lot-master-reference"> - <xsl:call-template name="select.pagemaster"> - <xsl:with-param name="pageclass" select="'lot'"/> - </xsl:call-template> - </xsl:variable> - - <xsl:call-template name="page.sequence"> - <xsl:with-param name="master-reference" - select="$lot-master-reference"/> - <xsl:with-param name="element" select="'toc'"/> - <xsl:with-param name="content" select="$content"/> - </xsl:call-template> - </xsl:if> -</xsl:template> - -<xsl:template match="chapter/lot | appendix/lot | preface/lot | article/lot"> - <xsl:choose> - <xsl:when test="* and $process.source.toc != 0"> - <fo:block> - <xsl:apply-templates/> - </fo:block> - <xsl:call-template name="component.toc.separator"/> - </xsl:when> - <xsl:when test="not(child::*) and $process.empty.source.toc != 0"> - <xsl:call-template name="process.empty.lot"/> - </xsl:when> - </xsl:choose> -</xsl:template> - -<xsl:template match="section/lot - |sect1/lot - |sect2/lot - |sect3/lot - |sect4/lot - |sect5/lot"> - <xsl:choose> - <xsl:when test="* and $process.source.toc != 0"> - <fo:block> - <xsl:apply-templates/> - </fo:block> - <xsl:call-template name="section.toc.separator"/> - </xsl:when> - <xsl:when test="not(child::*) and $process.empty.source.toc != 0"> - <xsl:call-template name="process.empty.lot"/> - </xsl:when> - </xsl:choose> -</xsl:template> - -<xsl:template name="process.empty.lot"> - <!-- An empty lot element does not provide any information to indicate - what should be included in it. You can customize this - template to generate a lot based on @role or something --> - <xsl:message> - <xsl:text>Warning: don't know what to generate for </xsl:text> - <xsl:text>lot that has no children.</xsl:text> - </xsl:message> -</xsl:template> - -<xsl:template match="lot/title"> - <fo:block font-weight="bold"> - <xsl:apply-templates/> - </fo:block> -</xsl:template> - -<xsl:template match="lot/subtitle"> - <fo:block font-weight="bold"> - <xsl:apply-templates/> - </fo:block> -</xsl:template> - -<xsl:template match="lot/titleabbrev"> -</xsl:template> - -</xsl:stylesheet> diff --git a/docbook-xsl-1.75.2/fo/verbatim.xsl b/docbook-xsl-1.75.2/fo/verbatim.xsl deleted file mode 100644 index 098489a..0000000 --- a/docbook-xsl-1.75.2/fo/verbatim.xsl +++ /dev/null @@ -1,465 +0,0 @@ -<?xml version='1.0'?> -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" - xmlns:fo="http://www.w3.org/1999/XSL/Format" - xmlns:sverb="http://nwalsh.com/xslt/ext/com.nwalsh.saxon.Verbatim" - xmlns:xverb="com.nwalsh.xalan.Verbatim" - xmlns:lxslt="http://xml.apache.org/xslt" - xmlns:exsl="http://exslt.org/common" - exclude-result-prefixes="sverb xverb lxslt exsl" - version='1.0'> - -<!-- ******************************************************************** - $Id: verbatim.xsl 8344 2009-03-16 06:35:43Z bobstayton $ - ******************************************************************** - - This file is part of the XSL DocBook Stylesheet distribution. - See ../README or http://docbook.sf.net/release/xsl/current/ for - copyright and other information. - - ******************************************************************** --> - -<!-- XSLTHL highlighting is turned off by default. See highlighting/README - for instructions on how to turn on XSLTHL --> -<xsl:template name="apply-highlighting"> - <xsl:apply-templates/> -</xsl:template> - -<lxslt:component prefix="xverb" - functions="numberLines"/> - -<xsl:template match="programlisting|screen|synopsis"> - <xsl:param name="suppress-numbers" select="'0'"/> - <xsl:variable name="id"><xsl:call-template name="object.id"/></xsl:variable> - - <xsl:variable name="content"> - <xsl:choose> - <xsl:when test="$suppress-numbers = '0' - and @linenumbering = 'numbered' - and $use.extensions != '0' - and $linenumbering.extension != '0'"> - <xsl:call-template name="number.rtf.lines"> - <xsl:with-param name="rtf"> - <xsl:choose> - <xsl:when test="$highlight.source != 0"> - <xsl:call-template name="apply-highlighting"/> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates/> - </xsl:otherwise> - </xsl:choose> - </xsl:with-param> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <xsl:choose> - <xsl:when test="$highlight.source != 0"> - <xsl:call-template name="apply-highlighting"/> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates/> - </xsl:otherwise> - </xsl:choose> - </xsl:otherwise> - </xsl:choose> - </xsl:variable> - - <xsl:variable name="block.content"> - <xsl:choose> - <xsl:when test="$shade.verbatim != 0"> - <fo:block id="{$id}" - xsl:use-attribute-sets="monospace.verbatim.properties shade.verbatim.style"> - <xsl:choose> - <xsl:when test="$hyphenate.verbatim != 0 and - $exsl.node.set.available != 0"> - <xsl:apply-templates select="exsl:node-set($content)" - mode="hyphenate.verbatim"/> - </xsl:when> - <xsl:otherwise> - <xsl:copy-of select="$content"/> - </xsl:otherwise> - </xsl:choose> - </fo:block> - </xsl:when> - <xsl:otherwise> - <fo:block id="{$id}" - xsl:use-attribute-sets="monospace.verbatim.properties"> - <xsl:choose> - <xsl:when test="$hyphenate.verbatim != 0 and - $exsl.node.set.available != 0"> - <xsl:apply-templates select="exsl:node-set($content)" - mode="hyphenate.verbatim"/> - </xsl:when> - <xsl:otherwise> - <xsl:copy-of select="$content"/> - </xsl:otherwise> - </xsl:choose> - </fo:block> - </xsl:otherwise> - </xsl:choose> - </xsl:variable> - - <xsl:choose> - <!-- Need a block-container for these features --> - <xsl:when test="@width != '' or - (self::programlisting and - starts-with($writing.mode, 'rl'))"> - <fo:block-container start-indent="0pt" end-indent="0pt"> - <xsl:if test="@width != ''"> - <xsl:attribute name="width"> - <xsl:value-of select="concat(@width, '*', $monospace.verbatim.font.width)"/> - </xsl:attribute> - </xsl:if> - <!-- All known program code is left-to-right --> - <xsl:if test="self::programlisting and - starts-with($writing.mode, 'rl')"> - <xsl:attribute name="writing-mode">lr-tb</xsl:attribute> - </xsl:if> - <xsl:copy-of select="$block.content"/> - </fo:block-container> - </xsl:when> - <xsl:otherwise> - <xsl:copy-of select="$block.content"/> - </xsl:otherwise> - </xsl:choose> - -</xsl:template> - -<xsl:template match="literallayout"> - <xsl:param name="suppress-numbers" select="'0'"/> - - <xsl:variable name="id"><xsl:call-template name="object.id"/></xsl:variable> - - <xsl:variable name="content"> - <xsl:choose> - <xsl:when test="$suppress-numbers = '0' - and @linenumbering = 'numbered' - and $use.extensions != '0' - and $linenumbering.extension != '0'"> - <xsl:call-template name="number.rtf.lines"> - <xsl:with-param name="rtf"> - <xsl:apply-templates/> - </xsl:with-param> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates/> - </xsl:otherwise> - </xsl:choose> - </xsl:variable> - - <xsl:choose> - <xsl:when test="@class='monospaced'"> - <xsl:choose> - <xsl:when test="$shade.verbatim != 0"> - <fo:block id="{$id}" - xsl:use-attribute-sets="monospace.verbatim.properties shade.verbatim.style"> - - <xsl:copy-of select="$content"/> - </fo:block> - </xsl:when> - <xsl:otherwise> - <fo:block id="{$id}" - xsl:use-attribute-sets="monospace.verbatim.properties"> - <xsl:copy-of select="$content"/> - </fo:block> - </xsl:otherwise> - </xsl:choose> - </xsl:when> - <xsl:otherwise> - <xsl:choose> - <xsl:when test="$shade.verbatim != 0"> - <fo:block id="{$id}" - xsl:use-attribute-sets="verbatim.properties shade.verbatim.style"> - <xsl:copy-of select="$content"/> - </fo:block> - </xsl:when> - <xsl:otherwise> - <fo:block id="{$id}" - xsl:use-attribute-sets="verbatim.properties"> - <xsl:copy-of select="$content"/> - </fo:block> - </xsl:otherwise> - </xsl:choose> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template match="address"> - <xsl:param name="suppress-numbers" select="'0'"/> - - <xsl:variable name="content"> - <xsl:choose> - <xsl:when test="$suppress-numbers = '0' - and @linenumbering = 'numbered' - and $use.extensions != '0' - and $linenumbering.extension != '0'"> - <xsl:call-template name="number.rtf.lines"> - <xsl:with-param name="rtf"> - <xsl:apply-templates/> - </xsl:with-param> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates/> - </xsl:otherwise> - </xsl:choose> - </xsl:variable> - - <fo:block xsl:use-attribute-sets="verbatim.properties"> - <xsl:copy-of select="$content"/> - </fo:block> -</xsl:template> - -<xsl:template name="number.rtf.lines"> - <xsl:param name="rtf" select="''"/> - <xsl:param name="pi.context" select="."/> - - <!-- Save the global values --> - <xsl:variable name="global.linenumbering.everyNth" - select="$linenumbering.everyNth"/> - - <xsl:variable name="global.linenumbering.separator" - select="$linenumbering.separator"/> - - <xsl:variable name="global.linenumbering.width" - select="$linenumbering.width"/> - - <!-- Extract the <?dbfo linenumbering.*?> PI values --> - <xsl:variable name="pi.linenumbering.everyNth"> - <xsl:call-template name="pi.dbfo_linenumbering.everyNth"> - <xsl:with-param name="node" select="$pi.context"/> - </xsl:call-template> - </xsl:variable> - - <xsl:variable name="pi.linenumbering.separator"> - <xsl:call-template name="pi.dbfo_linenumbering.separator"> - <xsl:with-param name="node" select="$pi.context"/> - </xsl:call-template> - </xsl:variable> - - <xsl:variable name="pi.linenumbering.width"> - <xsl:call-template name="pi.dbfo_linenumbering.width"> - <xsl:with-param name="node" select="$pi.context"/> - </xsl:call-template> - </xsl:variable> - - <!-- Construct the 'in-context' values --> - <xsl:variable name="linenumbering.everyNth"> - <xsl:choose> - <xsl:when test="$pi.linenumbering.everyNth != ''"> - <xsl:value-of select="$pi.linenumbering.everyNth"/> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="$global.linenumbering.everyNth"/> - </xsl:otherwise> - </xsl:choose> - </xsl:variable> - - <xsl:variable name="linenumbering.separator"> - <xsl:choose> - <xsl:when test="$pi.linenumbering.separator != ''"> - <xsl:value-of select="$pi.linenumbering.separator"/> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="$global.linenumbering.separator"/> - </xsl:otherwise> - </xsl:choose> - </xsl:variable> - - <xsl:variable name="linenumbering.width"> - <xsl:choose> - <xsl:when test="$pi.linenumbering.width != ''"> - <xsl:value-of select="$pi.linenumbering.width"/> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="$global.linenumbering.width"/> - </xsl:otherwise> - </xsl:choose> - </xsl:variable> - - <xsl:variable name="linenumbering.startinglinenumber"> - <xsl:choose> - <xsl:when test="$pi.context/@startinglinenumber"> - <xsl:value-of select="$pi.context/@startinglinenumber"/> - </xsl:when> - <xsl:when test="$pi.context/@continuation='continues'"> - <xsl:variable name="lastLine"> - <xsl:choose> - <xsl:when test="$pi.context/self::programlisting"> - <xsl:call-template name="lastLineNumber"> - <xsl:with-param name="listings" - select="preceding::programlisting[@linenumbering='numbered']"/> - </xsl:call-template> - </xsl:when> - <xsl:when test="$pi.context/self::screen"> - <xsl:call-template name="lastLineNumber"> - <xsl:with-param name="listings" - select="preceding::screen[@linenumbering='numbered']"/> - </xsl:call-template> - </xsl:when> - <xsl:when test="$pi.context/self::literallayout"> - <xsl:call-template name="lastLineNumber"> - <xsl:with-param name="listings" - select="preceding::literallayout[@linenumbering='numbered']"/> - </xsl:call-template> - </xsl:when> - <xsl:when test="$pi.context/self::address"> - <xsl:call-template name="lastLineNumber"> - <xsl:with-param name="listings" - select="preceding::address[@linenumbering='numbered']"/> - </xsl:call-template> - </xsl:when> - <xsl:when test="$pi.context/self::synopsis"> - <xsl:call-template name="lastLineNumber"> - <xsl:with-param name="listings" - select="preceding::synopsis[@linenumbering='numbered']"/> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <xsl:message> - <xsl:text>Unexpected verbatim environment: </xsl:text> - <xsl:value-of select="local-name(.)"/> - </xsl:message> - <xsl:value-of select="0"/> - </xsl:otherwise> - </xsl:choose> - </xsl:variable> - - <xsl:value-of select="$lastLine + 1"/> - </xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - - <xsl:choose> - <xsl:when test="function-available('sverb:numberLines')"> - <xsl:copy-of select="sverb:numberLines($rtf)"/> - </xsl:when> - <xsl:when test="function-available('xverb:numberLines')"> - <xsl:copy-of select="xverb:numberLines($rtf)"/> - </xsl:when> - <xsl:otherwise> - <xsl:message terminate="yes"> - <xsl:text>No numberLines function available.</xsl:text> - </xsl:message> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<!-- ======================================================================== --> - -<xsl:template name="lastLineNumber"> - <xsl:param name="listings"/> - <xsl:param name="number" select="0"/> - - <xsl:variable name="lines"> - <xsl:call-template name="countLines"> - <xsl:with-param name="listing" select="string($listings[1])"/> - </xsl:call-template> - </xsl:variable> - - <xsl:choose> - <xsl:when test="not($listings)"> - <xsl:value-of select="$number"/> - </xsl:when> - <xsl:when test="$listings[1]/@startinglinenumber"> - <xsl:value-of select="$number + $listings[1]/@startinglinenumber + $lines - 1"/> - </xsl:when> - <xsl:when test="$listings[1]/@continuation='continues'"> - <xsl:call-template name="lastLineNumber"> - <xsl:with-param name="listings" select="listings[position() > 1]"/> - <xsl:with-param name="number" select="$number + $lines"/> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="$lines"/> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template name="countLines"> - <xsl:param name="listing"/> - <xsl:param name="count" select="1"/> - - <xsl:choose> - <xsl:when test="contains($listing, ' ')"> - <xsl:call-template name="countLines"> - <xsl:with-param name="listing" select="substring-after($listing, ' ')"/> - <xsl:with-param name="count" select="$count + 1"/> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="$count"/> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<!-- ======================================================================== --> - -<xsl:template match="node()|@*" mode="hyphenate.verbatim"> - <xsl:copy> - <xsl:copy-of select="@*"/> - <xsl:apply-templates mode="hyphenate.verbatim"/> - </xsl:copy> -</xsl:template> - -<xsl:template match="text()" mode="hyphenate.verbatim" priority="2"> - <xsl:call-template name="hyphenate.verbatim.block"> - <xsl:with-param name="content" select="."/> - </xsl:call-template> -</xsl:template> - -<xsl:template name="hyphenate.verbatim.block"> - <xsl:param name="content" select="''"/> - <xsl:param name="count" select="1"/> - - <!-- recurse on lines first to keep recursion depth reasonable --> - <xsl:choose> - <xsl:when test="contains($content, ' ')"> - <xsl:variable name="line" select="substring-before($content, ' ')"/> - <xsl:variable name="rest" select="substring-after($content, ' ')"/> - <xsl:call-template name="hyphenate.verbatim"> - <xsl:with-param name="content" select="concat($line, ' ')"/> - </xsl:call-template> - <xsl:call-template name="hyphenate.verbatim.block"> - <xsl:with-param name="content" select="$rest"/> - <xsl:with-param name="count" select="$count + 1"/> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <xsl:call-template name="hyphenate.verbatim"> - <xsl:with-param name="content" select="$content"/> - </xsl:call-template> - </xsl:otherwise> - </xsl:choose> - -</xsl:template> - -<xsl:template name="hyphenate.verbatim"> - <xsl:param name="content"/> - <xsl:variable name="head" select="substring($content, 1, 1)"/> - <xsl:variable name="tail" select="substring($content, 2)"/> - <xsl:choose> - <!-- Place soft-hyphen after space or non-breakable space. --> - <xsl:when test="$head = ' ' or $head = ' '"> - <xsl:text> </xsl:text> - <xsl:text>­</xsl:text> - </xsl:when> - <xsl:when test="$hyphenate.verbatim.characters != '' and - translate($head, $hyphenate.verbatim.characters, '') = '' and not($tail = '')"> - <xsl:value-of select="$head"/> - <xsl:text>­</xsl:text> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="$head"/> - </xsl:otherwise> - </xsl:choose> - <xsl:if test="$tail"> - <xsl:call-template name="hyphenate.verbatim"> - <xsl:with-param name="content" select="$tail"/> - </xsl:call-template> - </xsl:if> -</xsl:template> - - -</xsl:stylesheet> diff --git a/docbook-xsl-1.75.2/fo/xep.xsl b/docbook-xsl-1.75.2/fo/xep.xsl deleted file mode 100644 index 14ce59f..0000000 --- a/docbook-xsl-1.75.2/fo/xep.xsl +++ /dev/null @@ -1,180 +0,0 @@ -<?xml version='1.0'?> -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" - xmlns:fo="http://www.w3.org/1999/XSL/Format" - xmlns:rx="http://www.renderx.com/XSL/Extensions" - version='1.0'> - -<!-- ******************************************************************** - $Id: xep.xsl 7531 2007-10-17 18:06:49Z dcramer $ - ******************************************************************** - (c) Stephane Bline Peregrine Systems 2001 - Implementation of xep extensions: - * Pdf bookmarks (based on the XEP 2.5 implementation) - * Document information (XEP 2.5 meta information extensions) - ******************************************************************** --> - -<!-- FIXME: Norm, I changed things so that the top-level element (book or set) - does not appear in the TOC. Is this the right thing? --> - -<xsl:template name="xep-document-information"> - <rx:meta-info> - <xsl:variable name="authors" - select="(//author|//editor|//corpauthor|//authorgroup)[1]"/> - <xsl:if test="$authors"> - <xsl:variable name="author"> - <xsl:choose> - <xsl:when test="$authors[self::authorgroup]"> - <xsl:call-template name="person.name.list"> - <xsl:with-param name="person.list" - select="$authors/*[self::author|self::corpauthor| - self::othercredit|self::editor]"/> - </xsl:call-template> - </xsl:when> - <xsl:when test="$authors[self::corpauthor]"> - <xsl:value-of select="$authors"/> - </xsl:when> - <xsl:otherwise> - <xsl:call-template name="person.name"> - <xsl:with-param name="node" select="$authors"/> - </xsl:call-template> - </xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:element name="rx:meta-field"> - <xsl:attribute name="name">author</xsl:attribute> - <xsl:attribute name="value"> - <xsl:value-of select="normalize-space($author)"/> - </xsl:attribute> - </xsl:element> - </xsl:if> - - <xsl:variable name="title"> - <xsl:apply-templates select="/*[1]" mode="label.markup"/> - <xsl:apply-templates select="/*[1]" mode="title.markup"/> - </xsl:variable> - - <xsl:element name="rx:meta-field"> - <xsl:attribute name="name">creator</xsl:attribute> - <xsl:attribute name="value"> - <xsl:text>DocBook </xsl:text> - <xsl:value-of select="$DistroTitle"/> - <xsl:text> V</xsl:text> - <xsl:value-of select="$VERSION"/> - </xsl:attribute> - </xsl:element> - - <xsl:element name="rx:meta-field"> - <xsl:attribute name="name">title</xsl:attribute> - <xsl:attribute name="value"> - <xsl:value-of select="normalize-space($title)"/> - </xsl:attribute> - </xsl:element> - - <xsl:if test="//keyword"> - <xsl:element name="rx:meta-field"> - <xsl:attribute name="name">keywords</xsl:attribute> - <xsl:attribute name="value"> - <xsl:for-each select="//keyword"> - <xsl:value-of select="normalize-space(.)"/> - <xsl:if test="position() != last()"> - <xsl:text>, </xsl:text> - </xsl:if> - </xsl:for-each> - </xsl:attribute> - </xsl:element> - </xsl:if> - - <xsl:if test="//subjectterm"> - <xsl:element name="rx:meta-field"> - <xsl:attribute name="name">subject</xsl:attribute> - <xsl:attribute name="value"> - <xsl:for-each select="//subjectterm"> - <xsl:value-of select="normalize-space(.)"/> - <xsl:if test="position() != last()"> - <xsl:text>, </xsl:text> - </xsl:if> - </xsl:for-each> - </xsl:attribute> - </xsl:element> - </xsl:if> - </rx:meta-info> -</xsl:template> - -<!-- ******************************************************************** - Pdf bookmarks - ******************************************************************** --> - -<xsl:template match="*" mode="xep.outline"> - <xsl:apply-templates select="*" mode="xep.outline"/> -</xsl:template> - -<xsl:template match="set|book|part|reference|preface|chapter|appendix|article - |glossary|bibliography|index|setindex - |refentry|refsynopsisdiv - |refsect1|refsect2|refsect3|refsection - |sect1|sect2|sect3|sect4|sect5|section" - mode="xep.outline"> - <xsl:variable name="id"> - <xsl:call-template name="object.id"/> - </xsl:variable> - <xsl:variable name="bookmark-label"> - <xsl:apply-templates select="." mode="object.title.markup"/> - </xsl:variable> - - <!-- Put the root element bookmark at the same level as its children --> - <!-- If the object is a set or book, generate a bookmark for the toc --> - <xsl:choose> - <xsl:when test="self::index and $generate.index = 0"/> - <xsl:when test="parent::*"> - <rx:bookmark internal-destination="{$id}"> - <rx:bookmark-label> - <xsl:value-of select="normalize-space($bookmark-label)"/> - </rx:bookmark-label> - <xsl:apply-templates select="*" mode="xep.outline"/> - </rx:bookmark> - </xsl:when> - <xsl:otherwise> - <xsl:if test="$bookmark-label != ''"> - <rx:bookmark internal-destination="{$id}"> - <rx:bookmark-label> - <xsl:value-of select="normalize-space($bookmark-label)"/> - </rx:bookmark-label> - </rx:bookmark> - </xsl:if> - - <xsl:variable name="toc.params"> - <xsl:call-template name="find.path.params"> - <xsl:with-param name="table" select="normalize-space($generate.toc)"/> - </xsl:call-template> - </xsl:variable> - <xsl:if test="contains($toc.params, 'toc') - and set|book|part|reference|section|sect1|refentry - |article|bibliography|glossary|chapter - |appendix"> - <rx:bookmark internal-destination="toc...{$id}"> - <rx:bookmark-label> - <xsl:call-template name="gentext"> - <xsl:with-param name="key" select="'TableofContents'"/> - </xsl:call-template> - </rx:bookmark-label> - </rx:bookmark> - </xsl:if> - <xsl:apply-templates select="*" mode="xep.outline"/> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template name="xep-pis"> - <xsl:if test="$crop.marks != 0"> - <xsl:processing-instruction name="xep-pdf-crop-mark-width"><xsl:value-of select="$crop.mark.width"/></xsl:processing-instruction> - <xsl:processing-instruction name="xep-pdf-crop-offset"><xsl:value-of select="$crop.mark.offset"/></xsl:processing-instruction> - <xsl:processing-instruction name="xep-pdf-bleed"><xsl:value-of select="$crop.mark.bleed"/></xsl:processing-instruction> - </xsl:if> - - <xsl:call-template name="user-xep-pis"/> -</xsl:template> - -<!-- Placeholder for user defined PIs --> -<xsl:template name="user-xep-pis"/> - -</xsl:stylesheet> diff --git a/docbook-xsl-1.75.2/fo/xref.xsl b/docbook-xsl-1.75.2/fo/xref.xsl deleted file mode 100644 index 518fce9..0000000 --- a/docbook-xsl-1.75.2/fo/xref.xsl +++ /dev/null @@ -1,1519 +0,0 @@ -<?xml version='1.0'?> -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" - xmlns:fo="http://www.w3.org/1999/XSL/Format" - xmlns:exsl="http://exslt.org/common" - xmlns:xlink='http://www.w3.org/1999/xlink' - exclude-result-prefixes="exsl xlink" - version='1.0'> - -<!-- ******************************************************************** - $Id: xref.xsl 8398 2009-04-07 14:40:25Z dcramer $ - ******************************************************************** - - This file is part of the XSL DocBook Stylesheet distribution. - See ../README or http://docbook.sf.net/release/xsl/current/ for - copyright and other information. - - ******************************************************************** --> - -<!-- Use internal variable for olink xlink role for consistency --> -<xsl:variable - name="xolink.role">http://docbook.org/xlink/role/olink</xsl:variable> - -<!-- ==================================================================== --> - -<xsl:template match="anchor"> - <xsl:variable name="id"> - <xsl:call-template name="object.id"/> - </xsl:variable> - <fo:inline id="{$id}"/> -</xsl:template> - -<!-- ==================================================================== --> - -<xsl:template match="xref" name="xref"> - <xsl:param name="xhref" select="@xlink:href"/> - <!-- is the @xlink:href a local idref link? --> - <xsl:param name="xlink.idref"> - <xsl:if test="starts-with($xhref,'#') - and (not(contains($xhref,'(')) - or starts-with($xhref, '#xpointer(id('))"> - <xsl:call-template name="xpointer.idref"> - <xsl:with-param name="xpointer" select="$xhref"/> - </xsl:call-template> - </xsl:if> - </xsl:param> - <xsl:param name="xlink.targets" select="key('id',$xlink.idref)"/> - <xsl:param name="linkend.targets" select="key('id',@linkend)"/> - <xsl:param name="target" select="($xlink.targets | $linkend.targets)[1]"/> - <xsl:param name="refelem" select="local-name($target)"/> - - <xsl:variable name="xrefstyle"> - <xsl:choose> - <xsl:when test="@role and not(@xrefstyle) - and $use.role.as.xrefstyle != 0"> - <xsl:value-of select="@role"/> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="@xrefstyle"/> - </xsl:otherwise> - </xsl:choose> - </xsl:variable> - - <xsl:variable name="content"> - <fo:inline xsl:use-attribute-sets="xref.properties"> - <xsl:choose> - <xsl:when test="@endterm"> - <xsl:variable name="etargets" select="key('id',@endterm)"/> - <xsl:variable name="etarget" select="$etargets[1]"/> - <xsl:choose> - <xsl:when test="count($etarget) = 0"> - <xsl:message> - <xsl:value-of select="count($etargets)"/> - <xsl:text>Endterm points to nonexistent ID: </xsl:text> - <xsl:value-of select="@endterm"/> - </xsl:message> - <xsl:text>???</xsl:text> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates select="$etarget" mode="endterm"/> - </xsl:otherwise> - </xsl:choose> - </xsl:when> - - <xsl:when test="$target/@xreflabel"> - <xsl:call-template name="xref.xreflabel"> - <xsl:with-param name="target" select="$target"/> - </xsl:call-template> - </xsl:when> - - <xsl:when test="$target"> - <xsl:if test="not(parent::citation)"> - <xsl:apply-templates select="$target" mode="xref-to-prefix"/> - </xsl:if> - - <xsl:apply-templates select="$target" mode="xref-to"> - <xsl:with-param name="referrer" select="."/> - <xsl:with-param name="xrefstyle" select="$xrefstyle"/> - </xsl:apply-templates> - - <xsl:if test="not(parent::citation)"> - <xsl:apply-templates select="$target" mode="xref-to-suffix"/> - </xsl:if> - </xsl:when> - <xsl:otherwise> - <xsl:message> - <xsl:text>ERROR: xref linking to </xsl:text> - <xsl:value-of select="@linkend|@xlink:href"/> - <xsl:text> has no generated link text.</xsl:text> - </xsl:message> - <xsl:text>???</xsl:text> - </xsl:otherwise> - </xsl:choose> - </fo:inline> - </xsl:variable> - - <!-- Convert it into an active link --> - <xsl:call-template name="simple.xlink"> - <xsl:with-param name="content" select="$content"/> - </xsl:call-template> - - <!-- Add standard page reference? --> - <xsl:choose> - <xsl:when test="not($target)"> - <!-- page numbers only for local targets --> - </xsl:when> - <xsl:when test="starts-with(normalize-space($xrefstyle), 'select:') - and contains($xrefstyle, 'nopage')"> - <!-- negative xrefstyle in instance turns it off --> - </xsl:when> - <!-- positive xrefstyle already handles it --> - <xsl:when test="not(starts-with(normalize-space($xrefstyle), 'select:') - and (contains($xrefstyle, 'page') - or contains($xrefstyle, 'Page'))) - and ( $insert.xref.page.number = 'yes' - or $insert.xref.page.number = '1') - or (local-name($target) = 'para' and - $xrefstyle = '')"> - <xsl:apply-templates select="$target" mode="page.citation"> - <xsl:with-param name="id" select="$target/@id|$target/@xml:id"/> - </xsl:apply-templates> - </xsl:when> - </xsl:choose> -</xsl:template> - -<!-- ==================================================================== --> - -<!-- Handled largely like an xref --> -<!-- To be done: add support for begin, end, and units attributes --> -<xsl:template match="biblioref" name="biblioref"> - <xsl:variable name="targets" select="key('id',@linkend)"/> - <xsl:variable name="target" select="$targets[1]"/> - <xsl:variable name="refelem" select="local-name($target)"/> - - <xsl:call-template name="check.id.unique"> - <xsl:with-param name="linkend" select="@linkend"/> - </xsl:call-template> - - <xsl:choose> - <xsl:when test="$refelem=''"> - <xsl:message> - <xsl:text>XRef to nonexistent id: </xsl:text> - <xsl:value-of select="@linkend"/> - </xsl:message> - <xsl:text>???</xsl:text> - </xsl:when> - - <xsl:when test="@endterm"> - <fo:basic-link internal-destination="{@linkend}" - xsl:use-attribute-sets="xref.properties"> - <xsl:variable name="etargets" select="key('id',@endterm)"/> - <xsl:variable name="etarget" select="$etargets[1]"/> - <xsl:choose> - <xsl:when test="count($etarget) = 0"> - <xsl:message> - <xsl:value-of select="count($etargets)"/> - <xsl:text>Endterm points to nonexistent ID: </xsl:text> - <xsl:value-of select="@endterm"/> - </xsl:message> - <xsl:text>???</xsl:text> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates select="$etarget" mode="endterm"/> - </xsl:otherwise> - </xsl:choose> - </fo:basic-link> - </xsl:when> - - <xsl:when test="$target/@xreflabel"> - <fo:basic-link internal-destination="{@linkend}" - xsl:use-attribute-sets="xref.properties"> - <xsl:call-template name="xref.xreflabel"> - <xsl:with-param name="target" select="$target"/> - </xsl:call-template> - </fo:basic-link> - </xsl:when> - - <xsl:otherwise> - <xsl:if test="not(parent::citation)"> - <xsl:apply-templates select="$target" mode="xref-to-prefix"/> - </xsl:if> - - <fo:basic-link internal-destination="{@linkend}" - xsl:use-attribute-sets="xref.properties"> - <xsl:apply-templates select="$target" mode="xref-to"> - <xsl:with-param name="referrer" select="."/> - <xsl:with-param name="xrefstyle"> - <xsl:choose> - <xsl:when test="@role and not(@xrefstyle) and $use.role.as.xrefstyle != 0"> - <xsl:value-of select="@role"/> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="@xrefstyle"/> - </xsl:otherwise> - </xsl:choose> - </xsl:with-param> - </xsl:apply-templates> - </fo:basic-link> - - <xsl:if test="not(parent::citation)"> - <xsl:apply-templates select="$target" mode="xref-to-suffix"/> - </xsl:if> - </xsl:otherwise> - </xsl:choose> - -</xsl:template> - -<!-- ==================================================================== --> - -<xsl:template match="*" mode="endterm"> - <!-- Process the children of the endterm element --> - <xsl:variable name="endterm"> - <xsl:apply-templates select="child::node()"/> - </xsl:variable> - - <xsl:choose> - <xsl:when test="$exsl.node.set.available != 0"> - <xsl:apply-templates select="exsl:node-set($endterm)" mode="remove-ids"/> - </xsl:when> - <xsl:otherwise> - <xsl:copy-of select="$endterm"/> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template match="*" mode="remove-ids"> - <xsl:copy> - <xsl:for-each select="@*"> - <xsl:choose> - <xsl:when test="name(.) != 'id'"> - <xsl:copy/> - </xsl:when> - <xsl:otherwise> - <xsl:message>removing <xsl:value-of select="name(.)"/></xsl:message> - </xsl:otherwise> - </xsl:choose> - </xsl:for-each> - <xsl:apply-templates mode="remove-ids"/> - </xsl:copy> -</xsl:template> - -<!--- ==================================================================== --> - -<xsl:template match="*" mode="xref-to-prefix"/> -<xsl:template match="*" mode="xref-to-suffix"/> - -<xsl:template match="*" mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="verbose" select="1"/> - - - <xsl:if test="$verbose != 0"> - <xsl:message> - <xsl:text>Don't know what gentext to create for xref to: "</xsl:text> - <xsl:value-of select="name(.)"/> - <xsl:text>"</xsl:text> - </xsl:message> - <xsl:text>???</xsl:text> - </xsl:if> -</xsl:template> - -<xsl:template match="title" mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="verbose" select="1"/> - - <!-- if you xref to a title, xref to the parent... --> - <xsl:choose> - <!-- FIXME: how reliable is this? --> - <xsl:when test="contains(local-name(parent::*), 'info')"> - <xsl:apply-templates select="parent::*[2]" mode="xref-to"> - <xsl:with-param name="referrer" select="$referrer"/> - <xsl:with-param name="xrefstyle" select="$xrefstyle"/> - <xsl:with-param name="verbose" select="$verbose"/> - </xsl:apply-templates> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates select="parent::*" mode="xref-to"> - <xsl:with-param name="referrer" select="$referrer"/> - <xsl:with-param name="xrefstyle" select="$xrefstyle"/> - <xsl:with-param name="verbose" select="$verbose"/> - </xsl:apply-templates> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template match="abstract|article|authorblurb|bibliodiv|bibliomset - |biblioset|blockquote|calloutlist|caution|colophon - |constraintdef|formalpara|glossdiv|important|indexdiv - |itemizedlist|legalnotice|lot|msg|msgexplan|msgmain - |msgrel|msgset|msgsub|note|orderedlist|partintro - |productionset|qandadiv|refsynopsisdiv|segmentedlist - |set|setindex|sidebar|tip|toc|variablelist|warning" - mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="verbose" select="1"/> - - <!-- catch-all for things with (possibly optional) titles --> - <xsl:apply-templates select="." mode="object.xref.markup"> - <xsl:with-param name="purpose" select="'xref'"/> - <xsl:with-param name="xrefstyle" select="$xrefstyle"/> - <xsl:with-param name="referrer" select="$referrer"/> - <xsl:with-param name="verbose" select="$verbose"/> - </xsl:apply-templates> -</xsl:template> - -<xsl:template match="author|editor|othercredit|personname" mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="verbose" select="1"/> - - <xsl:call-template name="person.name"/> -</xsl:template> - -<xsl:template match="authorgroup" mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="verbose" select="1"/> - - <xsl:call-template name="person.name.list"/> -</xsl:template> - -<xsl:template match="figure|example|table|equation" mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="verbose" select="1"/> - - <xsl:apply-templates select="." mode="object.xref.markup"> - <xsl:with-param name="purpose" select="'xref'"/> - <xsl:with-param name="xrefstyle" select="$xrefstyle"/> - <xsl:with-param name="referrer" select="$referrer"/> - <xsl:with-param name="verbose" select="$verbose"/> - </xsl:apply-templates> -</xsl:template> - -<xsl:template match="procedure" mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="verbose"/> - - <xsl:apply-templates select="." mode="object.xref.markup"> - <xsl:with-param name="purpose" select="'xref'"/> - <xsl:with-param name="xrefstyle" select="$xrefstyle"/> - <xsl:with-param name="referrer" select="$referrer"/> - <xsl:with-param name="verbose" select="$verbose"/> - </xsl:apply-templates> -</xsl:template> - -<xsl:template match="task" mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="verbose"/> - - <xsl:apply-templates select="." mode="object.xref.markup"> - <xsl:with-param name="purpose" select="'xref'"/> - <xsl:with-param name="xrefstyle" select="$xrefstyle"/> - <xsl:with-param name="referrer" select="$referrer"/> - <xsl:with-param name="verbose" select="$verbose"/> - </xsl:apply-templates> -</xsl:template> - -<xsl:template match="cmdsynopsis" mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="verbose" select="1"/> - - <xsl:apply-templates select="(.//command)[1]" mode="xref"/> -</xsl:template> - -<xsl:template match="funcsynopsis" mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="verbose" select="1"/> - - <xsl:apply-templates select="(.//function)[1]" mode="xref"/> -</xsl:template> - -<xsl:template match="dedication|acknowledgements|preface|chapter|appendix" mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="verbose" select="1"/> - - <xsl:apply-templates select="." mode="object.xref.markup"> - <xsl:with-param name="purpose" select="'xref'"/> - <xsl:with-param name="xrefstyle" select="$xrefstyle"/> - <xsl:with-param name="referrer" select="$referrer"/> - <xsl:with-param name="verbose" select="$verbose"/> - </xsl:apply-templates> -</xsl:template> - -<xsl:template match="bibliography" mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="verbose" select="1"/> - - <xsl:apply-templates select="." mode="object.xref.markup"> - <xsl:with-param name="purpose" select="'xref'"/> - <xsl:with-param name="xrefstyle" select="$xrefstyle"/> - <xsl:with-param name="referrer" select="$referrer"/> - <xsl:with-param name="verbose" select="$verbose"/> - </xsl:apply-templates> -</xsl:template> - -<xsl:template match="biblioentry|bibliomixed" mode="xref-to-prefix"> - <xsl:text>[</xsl:text> -</xsl:template> - -<xsl:template match="biblioentry|bibliomixed" mode="xref-to-suffix"> - <xsl:text>]</xsl:text> -</xsl:template> - -<xsl:template match="biblioentry|bibliomixed" mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="verbose" select="1"/> - - <!-- handles both biblioentry and bibliomixed --> - <xsl:choose> - <xsl:when test="string(.) = ''"> - <xsl:variable name="bib" select="document($bibliography.collection,.)"/> - <xsl:variable name="id" select="(@id|@xml:id)[1]"/> - <xsl:variable name="entry" select="$bib/bibliography/ - *[@id=$id or @xml:id=$id][1]"/> - <xsl:choose> - <xsl:when test="$entry"> - <xsl:choose> - <xsl:when test="$bibliography.numbered != 0"> - <xsl:number from="bibliography" count="biblioentry|bibliomixed" - level="any" format="1"/> - </xsl:when> - <xsl:when test="local-name($entry/*[1]) = 'abbrev'"> - <xsl:apply-templates select="$entry/*[1]"/> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="(@id|@xml:id)[1]"/> - </xsl:otherwise> - </xsl:choose> - </xsl:when> - <xsl:otherwise> - <xsl:message> - <xsl:text>No bibliography entry: </xsl:text> - <xsl:value-of select="$id"/> - <xsl:text> found in </xsl:text> - <xsl:value-of select="$bibliography.collection"/> - </xsl:message> - <xsl:value-of select="(@id|@xml:id)[1]"/> - </xsl:otherwise> - </xsl:choose> - </xsl:when> - <xsl:otherwise> - <xsl:choose> - <xsl:when test="$bibliography.numbered != 0"> - <xsl:number from="bibliography" count="biblioentry|bibliomixed" - level="any" format="1"/> - </xsl:when> - <xsl:when test="local-name(*[1]) = 'abbrev'"> - <xsl:apply-templates select="*[1]"/> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="(@id|@xml:id)[1]"/> - </xsl:otherwise> - </xsl:choose> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template match="glossary" mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="verbose" select="1"/> - - <xsl:apply-templates select="." mode="object.xref.markup"> - <xsl:with-param name="purpose" select="'xref'"/> - <xsl:with-param name="xrefstyle" select="$xrefstyle"/> - <xsl:with-param name="referrer" select="$referrer"/> - <xsl:with-param name="verbose" select="$verbose"/> - </xsl:apply-templates> -</xsl:template> - -<xsl:template match="glossentry" mode="xref-to"> - <xsl:choose> - <xsl:when test="$glossentry.show.acronym = 'primary'"> - <xsl:choose> - <xsl:when test="acronym|abbrev"> - <xsl:apply-templates select="(acronym|abbrev)[1]"/> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates select="glossterm[1]" mode="xref-to"/> - </xsl:otherwise> - </xsl:choose> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates select="glossterm[1]" mode="xref-to"/> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template match="glossterm|firstterm" mode="xref-to"> - <xsl:apply-templates/> -</xsl:template> - -<xsl:template match="index" mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="verbose" select="1"/> - - <xsl:apply-templates select="." mode="object.xref.markup"> - <xsl:with-param name="purpose" select="'xref'"/> - <xsl:with-param name="xrefstyle" select="$xrefstyle"/> - <xsl:with-param name="referrer" select="$referrer"/> - <xsl:with-param name="verbose" select="$verbose"/> - </xsl:apply-templates> -</xsl:template> - -<xsl:template match="listitem" mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="verbose" select="1"/> - - <xsl:apply-templates select="." mode="object.xref.markup"> - <xsl:with-param name="purpose" select="'xref'"/> - <xsl:with-param name="xrefstyle" select="$xrefstyle"/> - <xsl:with-param name="referrer" select="$referrer"/> - <xsl:with-param name="verbose" select="$verbose"/> - </xsl:apply-templates> -</xsl:template> - -<xsl:template match="section|simplesect - |sect1|sect2|sect3|sect4|sect5 - |refsect1|refsect2|refsect3|refsection" mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="verbose" select="1"/> - - <xsl:apply-templates select="." mode="object.xref.markup"> - <xsl:with-param name="purpose" select="'xref'"/> - <xsl:with-param name="xrefstyle" select="$xrefstyle"/> - <xsl:with-param name="referrer" select="$referrer"/> - <xsl:with-param name="verbose" select="$verbose"/> - </xsl:apply-templates> - <!-- What about "in Chapter X"? --> -</xsl:template> - -<xsl:template match="bridgehead" mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="verbose" select="1"/> - - <xsl:apply-templates select="." mode="object.xref.markup"> - <xsl:with-param name="purpose" select="'xref'"/> - <xsl:with-param name="xrefstyle" select="$xrefstyle"/> - <xsl:with-param name="referrer" select="$referrer"/> - <xsl:with-param name="verbose" select="$verbose"/> - </xsl:apply-templates> - <!-- What about "in Chapter X"? --> -</xsl:template> - -<xsl:template match="qandaset" mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="verbose" select="1"/> - - <xsl:apply-templates select="." mode="object.xref.markup"> - <xsl:with-param name="purpose" select="'xref'"/> - <xsl:with-param name="xrefstyle" select="$xrefstyle"/> - <xsl:with-param name="referrer" select="$referrer"/> - <xsl:with-param name="verbose" select="$verbose"/> - </xsl:apply-templates> -</xsl:template> - -<xsl:template match="qandadiv" mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="verbose" select="1"/> - - <xsl:apply-templates select="." mode="object.xref.markup"> - <xsl:with-param name="purpose" select="'xref'"/> - <xsl:with-param name="xrefstyle" select="$xrefstyle"/> - <xsl:with-param name="referrer" select="$referrer"/> - <xsl:with-param name="verbose" select="$verbose"/> - </xsl:apply-templates> -</xsl:template> - -<xsl:template match="qandaentry" mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="verbose" select="1"/> - - <xsl:apply-templates select="question[1]" mode="xref-to"> - <xsl:with-param name="xrefstyle" select="$xrefstyle"/> - <xsl:with-param name="referrer" select="$referrer"/> - <xsl:with-param name="verbose" select="$verbose"/> - </xsl:apply-templates> -</xsl:template> - -<xsl:template match="question|answer" mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="verbose" select="1"/> - - <xsl:choose> - <xsl:when test="string-length(label) != 0"> - <xsl:apply-templates select="." mode="label.markup"/> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates select="." mode="object.xref.markup"> - <xsl:with-param name="purpose" select="'xref'"/> - <xsl:with-param name="xrefstyle" select="$xrefstyle"/> - <xsl:with-param name="referrer" select="$referrer"/> - <xsl:with-param name="verbose" select="$verbose"/> - </xsl:apply-templates> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template match="part|reference" mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="verbose" select="1"/> - - <xsl:apply-templates select="." mode="object.xref.markup"> - <xsl:with-param name="purpose" select="'xref'"/> - <xsl:with-param name="xrefstyle" select="$xrefstyle"/> - <xsl:with-param name="referrer" select="$referrer"/> - <xsl:with-param name="verbose" select="$verbose"/> - </xsl:apply-templates> -</xsl:template> - -<xsl:template match="refentry" mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="verbose" select="1"/> - - <xsl:choose> - <xsl:when test="refmeta/refentrytitle"> - <xsl:apply-templates select="refmeta/refentrytitle"/> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates select="refnamediv/refname[1]"/> - </xsl:otherwise> - </xsl:choose> - <xsl:apply-templates select="refmeta/manvolnum"/> -</xsl:template> - -<xsl:template match="refnamediv" mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="verbose" select="1"/> - - <xsl:apply-templates select="refname[1]" mode="xref-to"> - <xsl:with-param name="xrefstyle" select="$xrefstyle"/> - <xsl:with-param name="referrer" select="$referrer"/> - <xsl:with-param name="verbose" select="$verbose"/> - </xsl:apply-templates> -</xsl:template> - -<xsl:template match="refname" mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="verbose" select="1"/> - - <xsl:apply-templates mode="xref-to"> - <xsl:with-param name="xrefstyle" select="$xrefstyle"/> - <xsl:with-param name="referrer" select="$referrer"/> - <xsl:with-param name="verbose" select="$verbose"/> - </xsl:apply-templates> -</xsl:template> - -<xsl:template match="step" mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="verbose" select="1"/> - - <xsl:call-template name="gentext"> - <xsl:with-param name="key" select="'Step'"/> - </xsl:call-template> - <xsl:text> </xsl:text> - <xsl:apply-templates select="." mode="number"/> -</xsl:template> - -<xsl:template match="varlistentry" mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="verbose" select="1"/> - - <xsl:apply-templates select="term[1]" mode="xref-to"> - <xsl:with-param name="xrefstyle" select="$xrefstyle"/> - <xsl:with-param name="referrer" select="$referrer"/> - <xsl:with-param name="verbose" select="$verbose"/> - </xsl:apply-templates> -</xsl:template> - -<xsl:template match="varlistentry/term" mode="xref-to"> - <xsl:param name="verbose" select="1"/> - <!-- to avoid the comma that will be generated if there are several terms --> - <xsl:apply-templates/> -</xsl:template> - -<xsl:template match="co" mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="verbose" select="1"/> - - <xsl:apply-templates select="." mode="callout-bug"/> -</xsl:template> - -<xsl:template match="area|areaset" mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - - <xsl:call-template name="callout-bug"> - <xsl:with-param name="conum"> - <xsl:apply-templates select="." mode="conumber"/> - </xsl:with-param> - </xsl:call-template> -</xsl:template> - -<xsl:template match="book" mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="verbose" select="1"/> - - <xsl:apply-templates select="." mode="object.xref.markup"> - <xsl:with-param name="purpose" select="'xref'"/> - <xsl:with-param name="xrefstyle" select="$xrefstyle"/> - <xsl:with-param name="referrer" select="$referrer"/> - <xsl:with-param name="verbose" select="$verbose"/> - </xsl:apply-templates> -</xsl:template> - -<!-- These are elements for which no link text exists, so an xref to one - uses the xrefstyle attribute if specified, or if not it falls back - to the container element's link text --> -<xsl:template match="para|phrase|simpara|anchor|quote" mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="verbose"/> - - <xsl:variable name="context" select="(ancestor::simplesect - |ancestor::section - |ancestor::sect1 - |ancestor::sect2 - |ancestor::sect3 - |ancestor::sect4 - |ancestor::sect5 - |ancestor::refsection - |ancestor::refsect1 - |ancestor::refsect2 - |ancestor::refsect3 - |ancestor::chapter - |ancestor::appendix - |ancestor::preface - |ancestor::partintro - |ancestor::dedication - |ancestor::acknowledgements - |ancestor::colophon - |ancestor::bibliography - |ancestor::index - |ancestor::glossary - |ancestor::glossentry - |ancestor::listitem - |ancestor::varlistentry)[last()]"/> - - <xsl:choose> - <xsl:when test="$xrefstyle != ''"> - <xsl:apply-templates select="." mode="object.xref.markup"> - <xsl:with-param name="xrefstyle" select="$xrefstyle"/> - <xsl:with-param name="referrer" select="$referrer"/> - <xsl:with-param name="verbose" select="$verbose"/> - </xsl:apply-templates> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates select="$context" mode="xref-to"> - <xsl:with-param name="xrefstyle" select="$xrefstyle"/> - <xsl:with-param name="referrer" select="$referrer"/> - <xsl:with-param name="verbose" select="$verbose"/> - </xsl:apply-templates> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template match="indexterm" mode="xref-to"> - <xsl:value-of select="primary"/> -</xsl:template> - -<xsl:template match="primary|secondary|tertiary" mode="xref-to"> - <xsl:value-of select="."/> -</xsl:template> - -<!-- ==================================================================== --> - -<xsl:template match="link" name="link"> - <xsl:param name="linkend" select="@linkend"/> - <xsl:param name="targets" select="key('id',$linkend)"/> - <xsl:param name="target" select="$targets[1]"/> - - <xsl:variable name="xrefstyle"> - <xsl:choose> - <xsl:when test="@role and not(@xrefstyle) - and $use.role.as.xrefstyle != 0"> - <xsl:value-of select="@role"/> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="@xrefstyle"/> - </xsl:otherwise> - </xsl:choose> - </xsl:variable> - - <xsl:variable name="content"> - <fo:inline xsl:use-attribute-sets="xref.properties"> - <xsl:choose> - <xsl:when test="count(child::node()) > 0"> - <!-- If it has content, use it --> - <xsl:apply-templates/> - </xsl:when> - <!-- look for an endterm --> - <xsl:when test="@endterm"> - <xsl:variable name="etargets" select="key('id',@endterm)"/> - <xsl:variable name="etarget" select="$etargets[1]"/> - <xsl:choose> - <xsl:when test="count($etarget) = 0"> - <xsl:message> - <xsl:value-of select="count($etargets)"/> - <xsl:text>Endterm points to nonexistent ID: </xsl:text> - <xsl:value-of select="@endterm"/> - </xsl:message> - <xsl:text>???</xsl:text> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates select="$etarget" mode="endterm"/> - </xsl:otherwise> - </xsl:choose> - </xsl:when> - <!-- Use the xlink:href if no other text --> - <xsl:when test="@xlink:href"> - <xsl:call-template name="hyphenate-url"> - <xsl:with-param name="url" select="@xlink:href"/> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <xsl:message> - <xsl:text>Link element has no content and no Endterm. </xsl:text> - <xsl:text>Nothing to show in the link to </xsl:text> - <xsl:value-of select="$target"/> - </xsl:message> - <xsl:text>???</xsl:text> - </xsl:otherwise> - </xsl:choose> - </fo:inline> - </xsl:variable> - - <xsl:call-template name="simple.xlink"> - <xsl:with-param name="node" select="."/> - <xsl:with-param name="linkend" select="$linkend"/> - <xsl:with-param name="content" select="$content"/> - </xsl:call-template> - - <!-- Add standard page reference? --> - <xsl:choose> - <!-- page numbering on link only enabled for @linkend --> - <!-- There is no link element in DB5 with xlink:href --> - <xsl:when test="not($linkend)"> - </xsl:when> - <!-- negative xrefstyle in instance turns it off --> - <xsl:when test="starts-with(normalize-space($xrefstyle), 'select:') - and contains($xrefstyle, 'nopage')"> - </xsl:when> - <xsl:when test="(starts-with(normalize-space($xrefstyle), 'select:') - and $insert.link.page.number = 'maybe' - and (contains($xrefstyle, 'page') - or contains($xrefstyle, 'Page'))) - or ( $insert.link.page.number = 'yes' - or $insert.link.page.number = '1') - or local-name($target) = 'para'"> - <xsl:apply-templates select="$target" mode="page.citation"> - <xsl:with-param name="id" select="$linkend"/> - </xsl:apply-templates> - </xsl:when> - </xsl:choose> -</xsl:template> - -<xsl:template match="ulink" name="ulink"> - <xsl:param name="url" select="@url"/> - - <xsl:variable name ="ulink.url"> - <xsl:call-template name="fo-external-image"> - <xsl:with-param name="filename" select="$url"/> - </xsl:call-template> - </xsl:variable> - - <fo:basic-link xsl:use-attribute-sets="xref.properties" - external-destination="{$ulink.url}"> - <xsl:choose> - <xsl:when test="count(child::node())=0"> - <xsl:call-template name="hyphenate-url"> - <xsl:with-param name="url" select="$url"/> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates/> - </xsl:otherwise> - </xsl:choose> - </fo:basic-link> - <!-- * Call the template for determining whether the URL for this --> - <!-- * hyperlink is displayed, and how to display it (either inline or --> - <!-- * as a numbered footnote). --> - <xsl:call-template name="hyperlink.url.display"> - <xsl:with-param name="url" select="$url"/> - <xsl:with-param name="ulink.url" select="$ulink.url"/> - </xsl:call-template> -</xsl:template> - -<xsl:template name="hyperlink.url.display"> - <!-- * This template is called for all external hyperlinks (ulinks and --> - <!-- * for all simple xlinks); it determines whether the URL for the --> - <!-- * hyperlink is displayed, and how to display it (either inline or --> - <!-- * as a numbered footnote). --> - <xsl:param name="url"/> - <xsl:param name="ulink.url"> - <!-- * ulink.url is just the value of the URL wrapped in 'url(...)' --> - <xsl:call-template name="fo-external-image"> - <xsl:with-param name="filename" select="$url"/> - </xsl:call-template> - </xsl:param> - - <xsl:if test="count(child::node()) != 0 - and string(.) != $url - and $ulink.show != 0"> - <!-- * Display the URL for this hyperlink only if it is non-empty, --> - <!-- * and the value of its content is not a URL that is the same as --> - <!-- * URL it links to, and if ulink.show is non-zero. --> - <xsl:choose> - <xsl:when test="$ulink.footnotes != 0 and not(ancestor::footnote)"> - <!-- * ulink.show and ulink.footnote are both non-zero; that --> - <!-- * means we display the URL as a footnote (instead of inline) --> - <fo:footnote> - <xsl:call-template name="ulink.footnote.number"/> - <fo:footnote-body xsl:use-attribute-sets="footnote.properties"> - <fo:block> - <xsl:call-template name="ulink.footnote.number"/> - <xsl:text> </xsl:text> - <fo:basic-link external-destination="{$ulink.url}"> - <xsl:value-of select="$url"/> - </fo:basic-link> - </fo:block> - </fo:footnote-body> - </fo:footnote> - </xsl:when> - <xsl:otherwise> - <!-- * ulink.show is non-zero, but ulink.footnote is not; that --> - <!-- * means we display the URL inline --> - <fo:inline hyphenate="false"> - <!-- * put square brackets around the URL --> - <xsl:text> [</xsl:text> - <fo:basic-link external-destination="{$ulink.url}"> - <xsl:call-template name="hyphenate-url"> - <xsl:with-param name="url" select="$url"/> - </xsl:call-template> - </fo:basic-link> - <xsl:text>]</xsl:text> - </fo:inline> - </xsl:otherwise> - </xsl:choose> - </xsl:if> - -</xsl:template> - -<xsl:template name="ulink.footnote.number"> - <fo:inline xsl:use-attribute-sets="footnote.mark.properties"> - <xsl:choose> - <xsl:when test="$fop.extensions != 0"> - <xsl:attribute name="vertical-align">super</xsl:attribute> - </xsl:when> - <xsl:otherwise> - <xsl:attribute name="baseline-shift">super</xsl:attribute> - </xsl:otherwise> - </xsl:choose> - <xsl:variable name="fnum"> - <!-- * Determine the footnote number to display for this hyperlink, --> - <!-- * by counting all foonotes, ulinks, and any elements that have --> - <!-- * an xlink:href attribute that meets the following criteria: --> - <!-- * --> - <!-- * - the content of the element is not a URI that is the same --> - <!-- * URI as the value of the href attribute --> - <!-- * - the href attribute is not an internal ID reference (does --> - <!-- * not start with a hash sign) --> - <!-- * - the href is not part of an olink reference (the element --> - <!-- * - does not have an xlink:role attribute that indicates it is --> - <!-- * an olink, and the href does not contain a hash sign) --> - <!-- * - the element either has no xlink:type attribute or has --> - <!-- * an xlink:type attribute whose value is 'simple' --> - <!-- FIXME: list in @from is probably not complete --> - <xsl:number level="any" - from="chapter|appendix|preface|article|refentry|bibliography[not(parent::article)]" - count="footnote[not(@label)][not(ancestor::tgroup)] - |ulink[node()][@url != .][not(ancestor::footnote)] - |*[node()][@xlink:href][not(@xlink:href = .)][not(starts-with(@xlink:href,'#'))] - [not(contains(@xlink:href,'#') and @xlink:role = $xolink.role)] - [not(@xlink:type) or @xlink:type='simple'] - [not(ancestor::footnote)]" - format="1"/> - </xsl:variable> - <xsl:choose> - <xsl:when test="string-length($footnote.number.symbols) >= $fnum"> - <xsl:value-of select="substring($footnote.number.symbols, $fnum, 1)"/> - </xsl:when> - <xsl:otherwise> - <xsl:number value="$fnum" format="{$footnote.number.format}"/> - </xsl:otherwise> - </xsl:choose> - </fo:inline> -</xsl:template> - -<xsl:template name="hyphenate-url"> - <xsl:param name="url" select="''"/> - <xsl:choose> - <xsl:when test="$ulink.hyphenate = ''"> - <xsl:value-of select="$url"/> - </xsl:when> - <xsl:when test="string-length($url) > 1"> - <xsl:variable name="char" select="substring($url, 1, 1)"/> - <xsl:value-of select="$char"/> - <xsl:if test="contains($ulink.hyphenate.chars, $char)"> - <!-- Do not hyphen in-between // --> - <xsl:if test="not($char = '/' and substring($url,2,1) = '/')"> - <xsl:copy-of select="$ulink.hyphenate"/> - </xsl:if> - </xsl:if> - <!-- recurse to the next character --> - <xsl:call-template name="hyphenate-url"> - <xsl:with-param name="url" select="substring($url, 2)"/> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="$url"/> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template match="olink" name="olink"> - <!-- olink content may be passed in from xlink olink --> - <xsl:param name="content" select="NOTANELEMENT"/> - - <xsl:call-template name="anchor"/> - - <xsl:variable name="localinfo" select="@localinfo"/> - - <xsl:choose> - <!-- olinks resolved by stylesheet and target database --> - <xsl:when test="@targetdoc or @targetptr or - (@xlink:role=$xolink.role and - contains(@xlink:href, '#') )" > - - <xsl:variable name="targetdoc.att"> - <xsl:choose> - <xsl:when test="@targetdoc != ''"> - <xsl:value-of select="@targetdoc"/> - </xsl:when> - <xsl:when test="@xlink:role=$xolink.role and - contains(@xlink:href, '#')" > - <xsl:value-of select="substring-before(@xlink:href, '#')"/> - </xsl:when> - </xsl:choose> - </xsl:variable> - - <xsl:variable name="targetptr.att"> - <xsl:choose> - <xsl:when test="@targetptr != ''"> - <xsl:value-of select="@targetptr"/> - </xsl:when> - <xsl:when test="@xlink:role=$xolink.role and - contains(@xlink:href, '#')" > - <xsl:value-of select="substring-after(@xlink:href, '#')"/> - </xsl:when> - </xsl:choose> - </xsl:variable> - - <xsl:variable name="olink.lang"> - <xsl:call-template name="l10n.language"> - <xsl:with-param name="xref-context" select="true()"/> - </xsl:call-template> - </xsl:variable> - - <xsl:variable name="target.database.filename"> - <xsl:call-template name="select.target.database"> - <xsl:with-param name="targetdoc.att" select="$targetdoc.att"/> - <xsl:with-param name="targetptr.att" select="$targetptr.att"/> - <xsl:with-param name="olink.lang" select="$olink.lang"/> - </xsl:call-template> - </xsl:variable> - - <xsl:variable name="target.database" - select="document($target.database.filename, /)"/> - - <xsl:if test="$olink.debug != 0"> - <xsl:message> - <xsl:text>Olink debug: root element of target.database is '</xsl:text> - <xsl:value-of select="local-name($target.database/*[1])"/> - <xsl:text>'.</xsl:text> - </xsl:message> - </xsl:if> - - <xsl:variable name="olink.key"> - <xsl:call-template name="select.olink.key"> - <xsl:with-param name="targetdoc.att" select="$targetdoc.att"/> - <xsl:with-param name="targetptr.att" select="$targetptr.att"/> - <xsl:with-param name="olink.lang" select="$olink.lang"/> - <xsl:with-param name="target.database" select="$target.database"/> - </xsl:call-template> - </xsl:variable> - - <xsl:if test="string-length($olink.key) = 0"> - <xsl:message> - <xsl:text>Error: unresolved olink: </xsl:text> - <xsl:text>targetdoc/targetptr = '</xsl:text> - <xsl:value-of select="$targetdoc.att"/> - <xsl:text>/</xsl:text> - <xsl:value-of select="$targetptr.att"/> - <xsl:text>'.</xsl:text> - </xsl:message> - </xsl:if> - - <xsl:variable name="href"> - <xsl:call-template name="make.olink.href"> - <xsl:with-param name="olink.key" select="$olink.key"/> - <xsl:with-param name="target.database" select="$target.database"/> - </xsl:call-template> - </xsl:variable> - - <!-- Olink that points to internal id can be a link --> - <xsl:variable name="linkend"> - <xsl:call-template name="olink.as.linkend"> - <xsl:with-param name="olink.key" select="$olink.key"/> - <xsl:with-param name="olink.lang" select="$olink.lang"/> - <xsl:with-param name="target.database" select="$target.database"/> - </xsl:call-template> - </xsl:variable> - - <xsl:variable name="hottext"> - <xsl:choose> - <xsl:when test="string-length($content) != 0"> - <xsl:copy-of select="$content"/> - </xsl:when> - <xsl:otherwise> - <xsl:call-template name="olink.hottext"> - <xsl:with-param name="olink.key" select="$olink.key"/> - <xsl:with-param name="olink.lang" select="$olink.lang"/> - <xsl:with-param name="target.database" select="$target.database"/> - </xsl:call-template> - </xsl:otherwise> - </xsl:choose> - </xsl:variable> - - <xsl:variable name="olink.docname.citation"> - <xsl:call-template name="olink.document.citation"> - <xsl:with-param name="olink.key" select="$olink.key"/> - <xsl:with-param name="target.database" select="$target.database"/> - <xsl:with-param name="olink.lang" select="$olink.lang"/> - </xsl:call-template> - </xsl:variable> - - <xsl:variable name="olink.page.citation"> - <xsl:call-template name="olink.page.citation"> - <xsl:with-param name="olink.key" select="$olink.key"/> - <xsl:with-param name="target.database" select="$target.database"/> - <xsl:with-param name="olink.lang" select="$olink.lang"/> - <xsl:with-param name="linkend" select="$linkend"/> - </xsl:call-template> - </xsl:variable> - - <xsl:choose> - <xsl:when test="$linkend != ''"> - <fo:basic-link internal-destination="{$linkend}" - xsl:use-attribute-sets="xref.properties"> - <xsl:copy-of select="$hottext"/> - <xsl:copy-of select="$olink.page.citation"/> - </fo:basic-link> - </xsl:when> - <xsl:when test="$href != ''"> - <xsl:choose> - <xsl:when test="$xep.extensions != 0"> - <fo:basic-link external-destination="url({$href})" - xsl:use-attribute-sets="olink.properties"> - <xsl:copy-of select="$hottext"/> - </fo:basic-link> - <xsl:copy-of select="$olink.page.citation"/> - <xsl:copy-of select="$olink.docname.citation"/> - </xsl:when> - <xsl:when test="$axf.extensions != 0"> - <fo:basic-link external-destination="{$href}" - xsl:use-attribute-sets="olink.properties"> - <xsl:copy-of select="$hottext"/> - </fo:basic-link> - <xsl:copy-of select="$olink.page.citation"/> - <xsl:copy-of select="$olink.docname.citation"/> - </xsl:when> - <xsl:otherwise> - <fo:basic-link external-destination="{$href}" - xsl:use-attribute-sets="olink.properties"> - <xsl:copy-of select="$hottext"/> - </fo:basic-link> - <xsl:copy-of select="$olink.page.citation"/> - <xsl:copy-of select="$olink.docname.citation"/> - </xsl:otherwise> - </xsl:choose> - </xsl:when> - <xsl:otherwise> - <xsl:copy-of select="$hottext"/> - <xsl:copy-of select="$olink.page.citation"/> - <xsl:copy-of select="$olink.docname.citation"/> - </xsl:otherwise> - </xsl:choose> - </xsl:when> - - <!-- olink never implemented in FO for old olink entity syntax --> - <xsl:otherwise> - <xsl:apply-templates/> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template match="*" mode="insert.olink.docname.markup"> - <xsl:param name="docname" select="''"/> - - <fo:inline font-style="italic"> - <xsl:value-of select="$docname"/> - </fo:inline> - -</xsl:template> - -<!-- This prevents error message when processing olinks with xrefstyle --> -<xsl:template match="olink" mode="object.xref.template"/> - - -<xsl:template name="olink.as.linkend"> - <xsl:param name="olink.key" select="''"/> - <xsl:param name="olink.lang" select="''"/> - <xsl:param name="target.database" select="NotANode"/> - - <xsl:variable name="targetdoc"> - <xsl:value-of select="substring-before($olink.key, '/')"/> - </xsl:variable> - - <xsl:variable name="targetptr"> - <xsl:value-of - select="substring-before(substring-after($olink.key, '/'), '/')"/> - </xsl:variable> - - <xsl:variable name="target.lang"> - <xsl:variable name="candidate"> - <xsl:for-each select="$target.database" > - <xsl:value-of - select="key('targetptr-key', $olink.key)[1]/@lang" /> - </xsl:for-each> - </xsl:variable> - <xsl:choose> - <xsl:when test="$candidate != ''"> - <xsl:value-of select="$candidate"/> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="$olink.lang"/> - </xsl:otherwise> - </xsl:choose> - </xsl:variable> - - <xsl:if test="$current.docid = $targetdoc and - $olink.lang = $target.lang"> - <xsl:variable name="targets" select="key('id',$targetptr)"/> - <xsl:variable name="target" select="$targets[1]"/> - <xsl:if test="$target"> - <xsl:value-of select="$targetptr"/> - </xsl:if> - </xsl:if> - -</xsl:template> - - -<xsl:template name="olink.outline"> - <xsl:param name="outline.base.uri"/> - <xsl:param name="localinfo"/> - <xsl:param name="return" select="href"/> - - <xsl:message terminate="yes">Fatal error: olink.outline template: what is this supposed to do?</xsl:message> -</xsl:template> - -<!-- ==================================================================== --> - -<xsl:template name="title.xref"> - <xsl:param name="target" select="."/> - <xsl:choose> - <xsl:when test="local-name($target) = 'figure' - or local-name($target) = 'example' - or local-name($target) = 'equation' - or local-name($target) = 'table' - or local-name($target) = 'dedication' - or local-name($target) = 'acknowledgements' - or local-name($target) = 'preface' - or local-name($target) = 'bibliography' - or local-name($target) = 'glossary' - or local-name($target) = 'index' - or local-name($target) = 'setindex' - or local-name($target) = 'colophon'"> - <xsl:call-template name="gentext.startquote"/> - <xsl:apply-templates select="$target" mode="title.markup"/> - <xsl:call-template name="gentext.endquote"/> - </xsl:when> - <xsl:otherwise> - <fo:inline font-style="italic"> - <xsl:apply-templates select="$target" mode="title.markup"/> - </fo:inline> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template name="number.xref"> - <xsl:param name="target" select="."/> - <xsl:apply-templates select="$target" mode="label.markup"/> -</xsl:template> - -<!-- ==================================================================== --> - -<xsl:template name="xref.xreflabel"> - <!-- called to process an xreflabel...you might use this to make --> - <!-- xreflabels come out in the right font for different targets, --> - <!-- for example. --> - <xsl:param name="target" select="."/> - <xsl:value-of select="$target/@xreflabel"/> -</xsl:template> - -<!-- ==================================================================== --> - -<xsl:template match="title" mode="xref"> - <xsl:apply-templates/> -</xsl:template> - -<xsl:template match="command" mode="xref"> - <xsl:call-template name="inline.boldseq"/> -</xsl:template> - -<xsl:template match="function" mode="xref"> - <xsl:call-template name="inline.monoseq"/> -</xsl:template> - -<xsl:template match="*" mode="page.citation"> - <xsl:param name="id" select="'???'"/> - - <fo:basic-link internal-destination="{$id}" - xsl:use-attribute-sets="xref.properties"> - <fo:inline keep-together.within-line="always"> - <xsl:call-template name="substitute-markup"> - <xsl:with-param name="template"> - <xsl:call-template name="gentext.template"> - <xsl:with-param name="name" select="'page.citation'"/> - <xsl:with-param name="context" select="'xref'"/> - </xsl:call-template> - </xsl:with-param> - </xsl:call-template> - </fo:inline> - </fo:basic-link> -</xsl:template> - -<xsl:template match="*" mode="pagenumber.markup"> - <xsl:variable name="id"> - <xsl:call-template name="object.id"/> - </xsl:variable> - <fo:page-number-citation ref-id="{$id}"/> -</xsl:template> - -<!-- ==================================================================== --> - -<xsl:template match="*" mode="insert.title.markup"> - <xsl:param name="purpose"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="title"/> - - <xsl:choose> - <!-- FIXME: what about the case where titleabbrev is inside the info? --> - <xsl:when test="$purpose = 'xref' and titleabbrev"> - <xsl:apply-templates select="." mode="titleabbrev.markup"/> - </xsl:when> - <xsl:otherwise> - <xsl:copy-of select="$title"/> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template match="chapter|appendix" mode="insert.title.markup"> - <xsl:param name="purpose"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="title"/> - - <xsl:choose> - <xsl:when test="$purpose = 'xref'"> - <fo:inline font-style="italic"> - <xsl:copy-of select="$title"/> - </fo:inline> - </xsl:when> - <xsl:otherwise> - <xsl:copy-of select="$title"/> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template match="*" mode="insert.subtitle.markup"> - <xsl:param name="purpose"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="subtitle"/> - - <xsl:copy-of select="$subtitle"/> -</xsl:template> - -<xsl:template match="*" mode="insert.label.markup"> - <xsl:param name="purpose"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="label"/> - - <xsl:copy-of select="$label"/> -</xsl:template> - -<xsl:template match="*" mode="insert.pagenumber.markup"> - <xsl:param name="purpose"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="pagenumber"/> - - <xsl:copy-of select="$pagenumber"/> -</xsl:template> - -<xsl:template match="*" mode="insert.direction.markup"> - <xsl:param name="purpose"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="direction"/> - - <xsl:copy-of select="$direction"/> -</xsl:template> - -<xsl:template match="olink" mode="pagenumber.markup"> - <!-- Local olinks can use page-citation --> - <xsl:variable name="targetdoc.att" select="@targetdoc"/> - <xsl:variable name="targetptr.att" select="@targetptr"/> - - <xsl:variable name="olink.lang"> - <xsl:call-template name="l10n.language"> - <xsl:with-param name="xref-context" select="true()"/> - </xsl:call-template> - </xsl:variable> - - <xsl:variable name="target.database.filename"> - <xsl:call-template name="select.target.database"> - <xsl:with-param name="targetdoc.att" select="$targetdoc.att"/> - <xsl:with-param name="targetptr.att" select="$targetptr.att"/> - <xsl:with-param name="olink.lang" select="$olink.lang"/> - </xsl:call-template> - </xsl:variable> - - <xsl:variable name="target.database" - select="document($target.database.filename, /)"/> - - <xsl:if test="$olink.debug != 0"> - <xsl:message> - <xsl:text>Olink debug: root element of target.database is '</xsl:text> - <xsl:value-of select="local-name($target.database/*[1])"/> - <xsl:text>'.</xsl:text> - </xsl:message> - </xsl:if> - - <xsl:variable name="olink.key"> - <xsl:call-template name="select.olink.key"> - <xsl:with-param name="targetdoc.att" select="$targetdoc.att"/> - <xsl:with-param name="targetptr.att" select="$targetptr.att"/> - <xsl:with-param name="olink.lang" select="$olink.lang"/> - <xsl:with-param name="target.database" select="$target.database"/> - </xsl:call-template> - </xsl:variable> - - <!-- Olink that points to internal id can be a link --> - <xsl:variable name="linkend"> - <xsl:call-template name="olink.as.linkend"> - <xsl:with-param name="olink.key" select="$olink.key"/> - <xsl:with-param name="olink.lang" select="$olink.lang"/> - <xsl:with-param name="target.database" select="$target.database"/> - </xsl:call-template> - </xsl:variable> - - <xsl:choose> - <xsl:when test="$linkend != ''"> - <fo:page-number-citation ref-id="{$linkend}"/> - </xsl:when> - <xsl:otherwise> - <xsl:message> - <xsl:text>Olink error: no page number linkend for local olink '</xsl:text> - <xsl:value-of select="$olink.key"/> - <xsl:text>'</xsl:text> - </xsl:message> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -</xsl:stylesheet> diff --git a/docbook-xsl-1.75.2/highlighting/README b/docbook-xsl-1.75.2/highlighting/README deleted file mode 100644 index 0b31d32..0000000 --- a/docbook-xsl-1.75.2/highlighting/README +++ /dev/null @@ -1,16 +0,0 @@ -To use the syntax higlighting extension with DocBook-XSL 1.74.3+, you must: -1. Use a processor that works with the extension: Saxon 6 or Xalan-J. -2. Add the latest version of xslthl-2.X.X.jar to your classpath. -3. Set the highlight.source parameter to 1. -4. Import into your customization one of the following stylesheet module: - * html/highlight.xsl - * xhtml/highlight.xsl - * xhtml-1_1/highlight.xsl - * fo/highlight.xsl -5. Use that customiztion layer. - - -Note: Saxon 8.5 or later is also supported, but since it is an XSLT 2.0 -processor it is not guaranteed to work with DocBook-XSL in all -circumstances. - diff --git a/docbook-xsl-1.75.2/highlighting/c-hl.xml b/docbook-xsl-1.75.2/highlighting/c-hl.xml deleted file mode 100644 index 1503dd1..0000000 --- a/docbook-xsl-1.75.2/highlighting/c-hl.xml +++ /dev/null @@ -1,101 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> - <!-- - Syntax highlighting definition for C xslthl - XSLT Syntax Highlighting http://sourceforge.net/projects/xslthl/ - Copyright (C) 2005-2008 Michal Molhanec, Jirka Kosek, Michiel Hendriks This software is provided 'as-is', without any - express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this - software. Permission is granted to anyone to use this software for any purpose, including commercial applications, and - to alter it and redistribute it freely, subject to the following restrictions: 1. The origin of this software must not - be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an - acknowledgment in the product documentation would be appreciated but is not required. 2. Altered source versions must - be plainly marked as such, and must not be misrepresented as being the original software. 3. This notice may not be - removed or altered from any source distribution. Michal Molhanec <mol1111 at users.sourceforge.net> Jirka Kosek <kosek - at users.sourceforge.net> Michiel Hendriks <elmuerte at users.sourceforge.net> - --> -<highlighters> - <highlighter type="multiline-comment"> - <start>/**</start> - <end>*/</end> - <style>doccomment</style> - </highlighter> - <highlighter type="oneline-comment"> - <start>///</start> - <style>doccomment</style> - </highlighter> - <highlighter type="multiline-comment"> - <start>/*</start> - <end>*/</end> - </highlighter> - <highlighter type="oneline-comment">//</highlighter> - <highlighter type="oneline-comment"> - <!-- use the online-comment highlighter to detect directives --> - <start>#</start> - <lineBreakEscape>\</lineBreakEscape> - <style>directive</style> - </highlighter> - <highlighter type="string"> - <string>"</string> - <escape>\</escape> - </highlighter> - <highlighter type="string"> - <string>'</string> - <escape>\</escape> - </highlighter> - <highlighter type="hexnumber"> - <prefix>0x</prefix> - <suffix>ul</suffix> - <suffix>lu</suffix> - <suffix>u</suffix> - <suffix>l</suffix> - <ignoreCase /> - </highlighter> - <highlighter type="number"> - <point>.</point> - <pointStarts /> - <exponent>e</exponent> - <suffix>ul</suffix> - <suffix>lu</suffix> - <suffix>u</suffix> - <suffix>f</suffix> - <suffix>l</suffix> - <ignoreCase /> - </highlighter> - <highlighter type="keywords"> - <keyword>auto</keyword> - <keyword>_Bool</keyword> - <keyword>break</keyword> - <keyword>case</keyword> - <keyword>char</keyword> - <keyword>_Complex</keyword> - <keyword>const</keyword> - <keyword>continue</keyword> - <keyword>default</keyword> - <keyword>do</keyword> - <keyword>double</keyword> - <keyword>else</keyword> - <keyword>enum</keyword> - <keyword>extern</keyword> - <keyword>float</keyword> - <keyword>for</keyword> - <keyword>goto</keyword> - <keyword>if</keyword> - <keyword>_Imaginary</keyword> - <keyword>inline</keyword> - <keyword>int</keyword> - <keyword>long</keyword> - <keyword>register</keyword> - <keyword>restrict</keyword> - <keyword>return</keyword> - <keyword>short</keyword> - <keyword>signed</keyword> - <keyword>sizeof</keyword> - <keyword>static</keyword> - <keyword>struct</keyword> - <keyword>switch</keyword> - <keyword>typedef</keyword> - <keyword>union</keyword> - <keyword>unsigned</keyword> - <keyword>void</keyword> - <keyword>volatile</keyword> - <keyword>while</keyword> - </highlighter> -</highlighters> \ No newline at end of file diff --git a/docbook-xsl-1.75.2/highlighting/common.xsl b/docbook-xsl-1.75.2/highlighting/common.xsl deleted file mode 100644 index e9b5650..0000000 --- a/docbook-xsl-1.75.2/highlighting/common.xsl +++ /dev/null @@ -1,120 +0,0 @@ -<?xml version='1.0'?> -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" - - xmlns:s6hl="http://net.sf.xslthl/ConnectorSaxon6" - xmlns:sbhl="http://net.sf.xslthl/ConnectorSaxonB" - xmlns:xhl="http://net.sf.xslthl/ConnectorXalan" - xmlns:saxon6="http://icl.com/saxon" - xmlns:saxonb="http://saxon.sf.net/" - xmlns:xalan="http://xml.apache.org/xalan" - - xmlns:exsl="http://exslt.org/common" - xmlns:xslthl="http://xslthl.sf.net" - exclude-result-prefixes="exsl xslthl s6hl sbhl xhl" - version='1.0'> - -<!-- ******************************************************************** - $Id: common.xsl 8257 2009-02-20 04:40:16Z abdelazer $ - ******************************************************************** - - This file is part of the XSL DocBook Stylesheet distribution. - See ../README or http://docbook.sf.net/release/xsl/current/ for - and other information. - - ******************************************************************** --> - -<!-- this construction is needed to have the saxon and xalan connectors working alongside each other --> -<xalan:component prefix="xhl" functions="highlight"> - <xalan:script lang="javaclass" src="xalan://net.sf.xslthl.ConnectorXalan" /> -</xalan:component> - -<!-- for saxon 6 --> -<saxon6:script implements-prefix="s6hl" language="java" src="java:net.sf.xslthl.ConnectorSaxon6" /> - -<!-- for saxon 8.5 and later --> -<saxonb:script implements-prefix="sbhl" language="java" src="java:net.sf.xslthl.ConnectorSaxonB" /> - - -<!-- You can override this template to do more complex mapping of - language attribute to highlighter language ID (see xslthl-config.xml) --> -<xsl:template name="language.to.xslthl"> - <xsl:param name="context"/> - - <xsl:choose> - <xsl:when test="$context/@language != ''"> - <xsl:value-of select="$context/@language"/> - </xsl:when> - <xsl:when test="$highlight.default.language != ''"> - <xsl:value-of select="$highlight.default.language"/> - </xsl:when> - </xsl:choose> -</xsl:template> - -<xsl:template name="apply-highlighting"> - <xsl:choose> - <!-- Do we want syntax highlighting --> - <xsl:when test="$highlight.source != 0"> - <xsl:variable name="language"> - <xsl:call-template name="language.to.xslthl"> - <xsl:with-param name="context" select="."/> - </xsl:call-template> - </xsl:variable> - <xsl:choose> - <xsl:when test="$language != ''"> - <xsl:variable name="content"> - <xsl:apply-templates/> - </xsl:variable> - <xsl:choose> - <xsl:when test="function-available('s6hl:highlight')"> - <xsl:apply-templates select="s6hl:highlight($language, exsl:node-set($content), $highlight.xslthl.config)" - mode="xslthl"/> - </xsl:when> - <xsl:when test="function-available('sbhl:highlight')"> - <xsl:apply-templates select="sbhl:highlight($language, exsl:node-set($content), $highlight.xslthl.config)" - mode="xslthl"/> - </xsl:when> - <xsl:when test="function-available('xhl:highlight')"> - <xsl:apply-templates select="xhl:highlight($language, exsl:node-set($content), $highlight.xslthl.config)" - mode="xslthl"/> - </xsl:when> - <xsl:otherwise> - <xsl:copy-of select="$content"/> - </xsl:otherwise> - </xsl:choose> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates/> - </xsl:otherwise> - </xsl:choose> - </xsl:when> - <!-- No syntax highlighting --> - <xsl:otherwise> - <xsl:apply-templates/> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<!-- A fallback when the specific style isn't recognized --> -<xsl:template match="xslthl:*" mode="xslthl"> - <xsl:message> - <xsl:text>unprocessed xslthl style: </xsl:text> - <xsl:value-of select="local-name(.)" /> - </xsl:message> - <xsl:apply-templates mode="xslthl"/> -</xsl:template> - -<!-- Copy over already produced markup (FO/HTML) --> -<xsl:template match="node()" mode="xslthl" priority="-1"> - <xsl:copy> - <xsl:apply-templates select="node()" mode="xslthl"/> - </xsl:copy> -</xsl:template> - -<xsl:template match="*" mode="xslthl"> - <xsl:copy> - <xsl:copy-of select="@*"/> - <xsl:apply-templates select="node()" mode="xslthl"/> - </xsl:copy> -</xsl:template> - -</xsl:stylesheet> diff --git a/docbook-xsl-1.75.2/highlighting/cpp-hl.xml b/docbook-xsl-1.75.2/highlighting/cpp-hl.xml deleted file mode 100644 index db57d5e..0000000 --- a/docbook-xsl-1.75.2/highlighting/cpp-hl.xml +++ /dev/null @@ -1,150 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- - -Syntax highlighting definition for C++ - -xslthl - XSLT Syntax Highlighting -http://sourceforge.net/projects/xslthl/ -Copyright (C) 2005-2008 Michal Molhanec, Jirka Kosek, Michiel Hendriks - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. - -Michal Molhanec <mol1111 at users.sourceforge.net> -Jirka Kosek <kosek at users.sourceforge.net> -Michiel Hendriks <elmuerte at users.sourceforge.net> - ---> -<highlighters> - <highlighter type="multiline-comment"> - <start>/**</start> - <end>*/</end> - <style>doccomment</style> - </highlighter> - <highlighter type="oneline-comment"> - <start>///</start> - <style>doccomment</style> - </highlighter> - <highlighter type="multiline-comment"> - <start>/*</start> - <end>*/</end> - </highlighter> - <highlighter type="oneline-comment">//</highlighter> - <highlighter type="oneline-comment"> - <!-- use the online-comment highlighter to detect directives --> - <start>#</start> - <lineBreakEscape>\</lineBreakEscape> - <style>directive</style> - </highlighter> - <highlighter type="string"> - <string>"</string> - <escape>\</escape> - </highlighter> - <highlighter type="string"> - <string>'</string> - <escape>\</escape> - </highlighter> - <highlighter type="hexnumber"> - <prefix>0x</prefix> - <suffix>ul</suffix> - <suffix>lu</suffix> - <suffix>u</suffix> - <suffix>l</suffix> - <ignoreCase /> - </highlighter> - <highlighter type="number"> - <point>.</point> - <pointStarts /> - <exponent>e</exponent> - <suffix>ul</suffix> - <suffix>lu</suffix> - <suffix>u</suffix> - <suffix>f</suffix> - <suffix>l</suffix> - <ignoreCase /> - </highlighter> - <highlighter type="keywords"> - <!-- C keywords --> - <keyword>auto</keyword> - <keyword>_Bool</keyword> - <keyword>break</keyword> - <keyword>case</keyword> - <keyword>char</keyword> - <keyword>_Complex</keyword> - <keyword>const</keyword> - <keyword>continue</keyword> - <keyword>default</keyword> - <keyword>do</keyword> - <keyword>double</keyword> - <keyword>else</keyword> - <keyword>enum</keyword> - <keyword>extern</keyword> - <keyword>float</keyword> - <keyword>for</keyword> - <keyword>goto</keyword> - <keyword>if</keyword> - <keyword>_Imaginary</keyword> - <keyword>inline</keyword> - <keyword>int</keyword> - <keyword>long</keyword> - <keyword>register</keyword> - <keyword>restrict</keyword> - <keyword>return</keyword> - <keyword>short</keyword> - <keyword>signed</keyword> - <keyword>sizeof</keyword> - <keyword>static</keyword> - <keyword>struct</keyword> - <keyword>switch</keyword> - <keyword>typedef</keyword> - <keyword>union</keyword> - <keyword>unsigned</keyword> - <keyword>void</keyword> - <keyword>volatile</keyword> - <keyword>while</keyword> - <!-- C++ keywords --> - <keyword>asm</keyword> - <keyword>dynamic_cast</keyword> - <keyword>namespace</keyword> - <keyword>reinterpret_cast</keyword> - <keyword>try</keyword> - <keyword>bool</keyword> - <keyword>explicit</keyword> - <keyword>new</keyword> - <keyword>static_cast</keyword> - <keyword>typeid</keyword> - <keyword>catch</keyword> - <keyword>false</keyword> - <keyword>operator</keyword> - <keyword>template</keyword> - <keyword>typename</keyword> - <keyword>class</keyword> - <keyword>friend</keyword> - <keyword>private</keyword> - <keyword>this</keyword> - <keyword>using</keyword> - <keyword>const_cast</keyword> - <keyword>inline</keyword> - <keyword>public</keyword> - <keyword>throw</keyword> - <keyword>virtual</keyword> - <keyword>delete</keyword> - <keyword>mutable</keyword> - <keyword>protected</keyword> - <keyword>true</keyword> - <keyword>wchar_t</keyword> - </highlighter> -</highlighters> \ No newline at end of file diff --git a/docbook-xsl-1.75.2/highlighting/csharp-hl.xml b/docbook-xsl-1.75.2/highlighting/csharp-hl.xml deleted file mode 100644 index 99c2e3e..0000000 --- a/docbook-xsl-1.75.2/highlighting/csharp-hl.xml +++ /dev/null @@ -1,187 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- - -Syntax highlighting definition for C# - -xslthl - XSLT Syntax Highlighting -http://sourceforge.net/projects/xslthl/ -Copyright (C) 2005-2008 Michal Molhanec, Jirka Kosek, Michiel Hendriks - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. - -Michal Molhanec <mol1111 at users.sourceforge.net> -Jirka Kosek <kosek at users.sourceforge.net> -Michiel Hendriks <elmuerte at users.sourceforge.net> - ---> -<highlighters> - <highlighter type="multiline-comment"> - <start>/**</start> - <end>*/</end> - <style>doccomment</style> - </highlighter> - <highlighter type="oneline-comment"> - <start>///</start> - <style>doccomment</style> - </highlighter> - <highlighter type="multiline-comment"> - <start>/*</start> - <end>*/</end> - </highlighter> - <highlighter type="oneline-comment">//</highlighter> - <highlighter type="annotation"> - <!-- annotations are called (custom) "attributes" in .NET --> - <start>[</start> - <end>]</end> - <valueStart>(</valueStart> - <valueEnd>)</valueEnd> - </highlighter> - <highlighter type="oneline-comment"> - <!-- C# supports a couple of directives --> - <start>#</start> - <lineBreakEscape>\</lineBreakEscape> - <style>directive</style> - </highlighter> - <highlighter type="string"> - <!-- strings starting with an "@" can span multiple lines --> - <string>@"</string> - <endString>"</endString> - <escape>\</escape> - <spanNewLines /> - </highlighter> - <highlighter type="string"> - <string>"</string> - <escape>\</escape> - </highlighter> - <highlighter type="string"> - <string>'</string> - <escape>\</escape> - </highlighter> - <highlighter type="hexnumber"> - <prefix>0x</prefix> - <suffix>ul</suffix> - <suffix>lu</suffix> - <suffix>u</suffix> - <suffix>l</suffix> - <ignoreCase /> - </highlighter> - <highlighter type="number"> - <point>.</point> - <pointStarts /> - <exponent>e</exponent> - <suffix>ul</suffix> - <suffix>lu</suffix> - <suffix>u</suffix> - <suffix>f</suffix> - <suffix>d</suffix> - <suffix>m</suffix> - <suffix>l</suffix> - <ignoreCase /> - </highlighter> - <highlighter type="keywords"> - <keyword>abstract</keyword> - <keyword>as</keyword> - <keyword>base</keyword> - <keyword>bool</keyword> - <keyword>break</keyword> - <keyword>byte</keyword> - <keyword>case</keyword> - <keyword>catch</keyword> - <keyword>char</keyword> - <keyword>checked</keyword> - <keyword>class</keyword> - <keyword>const</keyword> - <keyword>continue</keyword> - <keyword>decimal</keyword> - <keyword>default</keyword> - <keyword>delegate</keyword> - <keyword>do</keyword> - <keyword>double</keyword> - <keyword>else</keyword> - <keyword>enum</keyword> - <keyword>event</keyword> - <keyword>explicit</keyword> - <keyword>extern</keyword> - <keyword>false</keyword> - <keyword>finally</keyword> - <keyword>fixed</keyword> - <keyword>float</keyword> - <keyword>for</keyword> - <keyword>foreach</keyword> - <keyword>goto</keyword> - <keyword>if</keyword> - <keyword>implicit</keyword> - <keyword>in</keyword> - <keyword>int</keyword> - <keyword>interface</keyword> - <keyword>internal</keyword> - <keyword>is</keyword> - <keyword>lock</keyword> - <keyword>long</keyword> - <keyword>namespace</keyword> - <keyword>new</keyword> - <keyword>null</keyword> - <keyword>object</keyword> - <keyword>operator</keyword> - <keyword>out</keyword> - <keyword>override</keyword> - <keyword>params</keyword> - <keyword>private</keyword> - <keyword>protected</keyword> - <keyword>public</keyword> - <keyword>readonly</keyword> - <keyword>ref</keyword> - <keyword>return</keyword> - <keyword>sbyte</keyword> - <keyword>sealed</keyword> - <keyword>short</keyword> - <keyword>sizeof</keyword> - <keyword>stackalloc</keyword> - <keyword>static</keyword> - <keyword>string</keyword> - <keyword>struct</keyword> - <keyword>switch</keyword> - <keyword>this</keyword> - <keyword>throw</keyword> - <keyword>true</keyword> - <keyword>try</keyword> - <keyword>typeof</keyword> - <keyword>uint</keyword> - <keyword>ulong</keyword> - <keyword>unchecked</keyword> - <keyword>unsafe</keyword> - <keyword>ushort</keyword> - <keyword>using</keyword> - <keyword>virtual</keyword> - <keyword>void</keyword> - <keyword>volatile</keyword> - <keyword>while</keyword> - </highlighter> - <highlighter type="keywords"> - <!-- special words, not really keywords --> - <keyword>add</keyword> - <keyword>alias</keyword> - <keyword>get</keyword> - <keyword>global</keyword> - <keyword>partial</keyword> - <keyword>remove</keyword> - <keyword>set</keyword> - <keyword>value</keyword> - <keyword>where</keyword> - <keyword>yield</keyword> - </highlighter> -</highlighters> \ No newline at end of file diff --git a/docbook-xsl-1.75.2/highlighting/delphi-hl.xml b/docbook-xsl-1.75.2/highlighting/delphi-hl.xml deleted file mode 100644 index d5b4d1a..0000000 --- a/docbook-xsl-1.75.2/highlighting/delphi-hl.xml +++ /dev/null @@ -1,200 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- - -Syntax highlighting definition for Delphi (also suitable for Pascal) - -xslthl - XSLT Syntax Highlighting -http://sourceforge.net/projects/xslthl/ -Copyright (C) 2005-2008 Michal Molhanec, Jirka Kosek, Michiel Hendriks - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. - -Michal Molhanec <mol1111 at users.sourceforge.net> -Jirka Kosek <kosek at users.sourceforge.net> -Michiel Hendriks <elmuerte at users.sourceforge.net> - ---> -<highlighters> - <highlighter type="multiline-comment"> - <!-- multiline comments starting with an $ are directives --> - <start>{$</start> - <end>}</end> - <style>directive</style> - </highlighter> - <highlighter type="multiline-comment"> - <!-- multiline comments starting with an $ are directives --> - <start>(*$</start> - <end>)</end> - <style>directive</style> - </highlighter> - <highlighter type="multiline-comment"> - <start>{</start> - <end>}</end> - </highlighter> - <highlighter type="multiline-comment"> - <start>(*</start> - <end>*)</end> - </highlighter> - <highlighter type="oneline-comment">//</highlighter> - <highlighter type="string"> - <string>'</string> - <doubleEscapes /> - </highlighter> - <highlighter type="hexnumber"> - <prefix>#$</prefix> - <ignoreCase /> - <style>string</style> - </highlighter> - <highlighter type="number"> - <prefix>#</prefix> - <ignoreCase /> - <style>string</style> - </highlighter> - <highlighter type="hexnumber"> - <prefix>$</prefix> - <ignoreCase /> - </highlighter> - <highlighter type="number"> - <point>.</point> - <exponent>e</exponent> - <ignoreCase /> - </highlighter> - <highlighter type="keywords"> - <!-- Reserved words --> - <keyword>and</keyword> - <keyword>else</keyword> - <keyword>inherited</keyword> - <keyword>packed</keyword> - <keyword>then</keyword> - <keyword>array</keyword> - <keyword>end</keyword> - <keyword>initialization</keyword> - <keyword>procedure</keyword> - <keyword>threadvar</keyword> - <keyword>as</keyword> - <keyword>except</keyword> - <keyword>inline</keyword> - <keyword>program</keyword> - <keyword>to</keyword> - <keyword>asm</keyword> - <keyword>exports</keyword> - <keyword>interface</keyword> - <keyword>property</keyword> - <keyword>try</keyword> - <keyword>begin</keyword> - <keyword>file</keyword> - <keyword>is</keyword> - <keyword>raise</keyword> - <keyword>type</keyword> - <keyword>case</keyword> - <keyword>final</keyword> - <keyword>label</keyword> - <keyword>record</keyword> - <keyword>unit</keyword> - <keyword>class</keyword> - <keyword>finalization</keyword> - <keyword>library</keyword> - <keyword>repeat</keyword> - <keyword>unsafe</keyword> - <keyword>const</keyword> - <keyword>finally</keyword> - <keyword>mod</keyword> - <keyword>resourcestring</keyword> - <keyword>until</keyword> - <keyword>constructor</keyword> - <keyword>for</keyword> - <keyword>nil</keyword> - <keyword>sealed</keyword> - <keyword>uses</keyword> - <keyword>destructor</keyword> - <keyword>function</keyword> - <keyword>not</keyword> - <keyword>set</keyword> - <keyword>var</keyword> - <keyword>dispinterface</keyword> - <keyword>goto</keyword> - <keyword>object</keyword> - <keyword>shl</keyword> - <keyword>while</keyword> - <keyword>div</keyword> - <keyword>if</keyword> - <keyword>of</keyword> - <keyword>shr</keyword> - <keyword>with</keyword> - <keyword>do</keyword> - <keyword>implementation</keyword> - <keyword>or</keyword> - <keyword>static</keyword> - <keyword>xor</keyword> - <keyword>downto</keyword> - <keyword>in</keyword> - <keyword>out</keyword> - <keyword>string</keyword> - - <!-- Special meaning --> - <keyword>at</keyword> - <keyword>on</keyword> - - <!-- Directives --> - <keyword>absolute</keyword> - <keyword>dynamic</keyword> - <keyword>local</keyword> - <keyword>platform</keyword> - <keyword>requires</keyword> - <keyword>abstract</keyword> - <keyword>export</keyword> - <keyword>message</keyword> - <keyword>private</keyword> - <keyword>resident</keyword> - <keyword>assembler</keyword> - <keyword>external</keyword> - <keyword>name</keyword> - <keyword>protected</keyword> - <keyword>safecall</keyword> - <keyword>automated</keyword> - <keyword>far</keyword> - <keyword>near</keyword> - <keyword>public</keyword> - <keyword>stdcall</keyword> - <keyword>cdecl</keyword> - <keyword>forward</keyword> - <keyword>nodefault</keyword> - <keyword>published</keyword> - <keyword>stored</keyword> - <keyword>contains</keyword> - <keyword>implements</keyword> - <keyword>overload</keyword> - <keyword>read</keyword> - <keyword>varargs</keyword> - <keyword>default</keyword> - <keyword>index</keyword> - <keyword>override</keyword> - <keyword>readonly</keyword> - <keyword>virtual</keyword> - <keyword>deprecated</keyword> - <keyword>inline</keyword> - <keyword>package</keyword> - <keyword>register</keyword> - <keyword>write</keyword> - <keyword>dispid</keyword> - <keyword>library</keyword> - <keyword>pascal</keyword> - <keyword>reintroduce</keyword> - <keyword>writeonly</keyword> - <ignoreCase /> - </highlighter> -</highlighters> \ No newline at end of file diff --git a/docbook-xsl-1.75.2/highlighting/ini-hl.xml b/docbook-xsl-1.75.2/highlighting/ini-hl.xml deleted file mode 100644 index 8a938f3..0000000 --- a/docbook-xsl-1.75.2/highlighting/ini-hl.xml +++ /dev/null @@ -1,45 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- - -Syntax highlighting definition for ini files - -xslthl - XSLT Syntax Highlighting -http://sourceforge.net/projects/xslthl/ -Copyright (C) 2005-2008 Michal Molhanec, Jirka Kosek, Michiel Hendriks - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. - -Michal Molhanec <mol1111 at users.sourceforge.net> -Jirka Kosek <kosek at users.sourceforge.net> -Michiel Hendriks <elmuerte at users.sourceforge.net> - ---> -<highlighters> - <highlighter type="oneline-comment">;</highlighter> - <highlighter type="regex"> - <!-- ini sections --> - <pattern>^(\[.+\]\s*)$</pattern> - <style>keyword</style> - <flags>MULTILINE</flags> - </highlighter> - <highlighter type="regex"> - <!-- the keys in an ini section --> - <pattern>^(.+)(?==)</pattern> - <style>attribute</style> - <flags>MULTILINE</flags> - </highlighter> -</highlighters> \ No newline at end of file diff --git a/docbook-xsl-1.75.2/highlighting/java-hl.xml b/docbook-xsl-1.75.2/highlighting/java-hl.xml deleted file mode 100644 index 672d518..0000000 --- a/docbook-xsl-1.75.2/highlighting/java-hl.xml +++ /dev/null @@ -1,117 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- - -Syntax highlighting definition for Java - -xslthl - XSLT Syntax Highlighting -http://sourceforge.net/projects/xslthl/ -Copyright (C) 2005-2008 Michal Molhanec, Jirka Kosek, Michiel Hendriks - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. - -Michal Molhanec <mol1111 at users.sourceforge.net> -Jirka Kosek <kosek at users.sourceforge.net> -Michiel Hendriks <elmuerte at users.sourceforge.net> - ---> -<highlighters> - <highlighter type="multiline-comment"> - <start>/**</start> - <end>*/</end> - <style>doccomment</style> - </highlighter> - <highlighter type="multiline-comment"> - <start>/*</start> - <end>*/</end> - </highlighter> - <highlighter type="oneline-comment">//</highlighter> - <highlighter type="string"> - <string>"</string> - <escape>\</escape> - </highlighter> - <highlighter type="string"> - <string>'</string> - <escape>\</escape> - </highlighter> - <highlighter type="annotation"> - <start>@</start> - <valueStart>(</valueStart> - <valueEnd>)</valueEnd> - </highlighter> - <highlighter type="hexnumber"> - <prefix>0x</prefix> - <ignoreCase /> - </highlighter> - <highlighter type="number"> - <point>.</point> - <exponent>e</exponent> - <suffix>f</suffix> - <suffix>d</suffix> - <suffix>l</suffix> - <ignoreCase /> - </highlighter> - <highlighter type="keywords"> - <keyword>abstract</keyword> - <keyword>boolean</keyword> - <keyword>break</keyword> - <keyword>byte</keyword> - <keyword>case</keyword> - <keyword>catch</keyword> - <keyword>char</keyword> - <keyword>class</keyword> - <keyword>const</keyword> - <keyword>continue</keyword> - <keyword>default</keyword> - <keyword>do</keyword> - <keyword>double</keyword> - <keyword>else</keyword> - <keyword>extends</keyword> - <keyword>final</keyword> - <keyword>finally</keyword> - <keyword>float</keyword> - <keyword>for</keyword> - <keyword>goto</keyword> - <keyword>if</keyword> - <keyword>implements</keyword> - <keyword>import</keyword> - <keyword>instanceof</keyword> - <keyword>int</keyword> - <keyword>interface</keyword> - <keyword>long</keyword> - <keyword>native</keyword> - <keyword>new</keyword> - <keyword>package</keyword> - <keyword>private</keyword> - <keyword>protected</keyword> - <keyword>public</keyword> - <keyword>return</keyword> - <keyword>short</keyword> - <keyword>static</keyword> - <keyword>strictfp</keyword> - <keyword>super</keyword> - <keyword>switch</keyword> - <keyword>synchronized</keyword> - <keyword>this</keyword> - <keyword>throw</keyword> - <keyword>throws</keyword> - <keyword>transient</keyword> - <keyword>try</keyword> - <keyword>void</keyword> - <keyword>volatile</keyword> - <keyword>while</keyword> - </highlighter> -</highlighters> \ No newline at end of file diff --git a/docbook-xsl-1.75.2/highlighting/javascript-hl.xml b/docbook-xsl-1.75.2/highlighting/javascript-hl.xml deleted file mode 100644 index 08c90ba..0000000 --- a/docbook-xsl-1.75.2/highlighting/javascript-hl.xml +++ /dev/null @@ -1,147 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- - -Syntax highlighting definition for JavaScript - -xslthl - XSLT Syntax Highlighting -http://sourceforge.net/projects/xslthl/ -Copyright (C) 2005-2008 Michal Molhanec, Jirka Kosek, Michiel Hendriks - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. - -Michal Molhanec <mol1111 at users.sourceforge.net> -Jirka Kosek <kosek at users.sourceforge.net> -Michiel Hendriks <elmuerte at users.sourceforge.net> - ---> -<highlighters> - <highlighter type="multiline-comment"> - <start>/*</start> - <end>*/</end> - </highlighter> - <highlighter type="oneline-comment">//</highlighter> - <highlighter type="string"> - <string>"</string> - <escape>\</escape> - </highlighter> - <highlighter type="string"> - <string>'</string> - <escape>\</escape> - </highlighter> - <highlighter type="hexnumber"> - <prefix>0x</prefix> - <ignoreCase /> - </highlighter> - <highlighter type="number"> - <point>.</point> - <exponent>e</exponent> - <ignoreCase /> - </highlighter> - <highlighter type="keywords"> - <keyword>break</keyword> - <keyword>case</keyword> - <keyword>catch</keyword> - <keyword>continue</keyword> - <keyword>default</keyword> - <keyword>delete</keyword> - <keyword>do</keyword> - <keyword>else</keyword> - <keyword>finally</keyword> - <keyword>for</keyword> - <keyword>function</keyword> - <keyword>if</keyword> - <keyword>in</keyword> - <keyword>instanceof</keyword> - <keyword>new</keyword> - <keyword>return</keyword> - <keyword>switch</keyword> - <keyword>this</keyword> - <keyword>throw</keyword> - <keyword>try</keyword> - <keyword>typeof</keyword> - <keyword>var</keyword> - <keyword>void</keyword> - <keyword>while</keyword> - <keyword>with</keyword> - <!-- future keywords --> - <keyword>abstract</keyword> - <keyword>boolean</keyword> - <keyword>byte</keyword> - <keyword>char</keyword> - <keyword>class</keyword> - <keyword>const</keyword> - <keyword>debugger</keyword> - <keyword>double</keyword> - <keyword>enum</keyword> - <keyword>export</keyword> - <keyword>extends</keyword> - <keyword>final</keyword> - <keyword>float</keyword> - <keyword>goto</keyword> - <keyword>implements</keyword> - <keyword>import</keyword> - <keyword>int</keyword> - <keyword>interface</keyword> - <keyword>long</keyword> - <keyword>native</keyword> - <keyword>package</keyword> - <keyword>private</keyword> - <keyword>protected</keyword> - <keyword>public</keyword> - <keyword>short</keyword> - <keyword>static</keyword> - <keyword>super</keyword> - <keyword>synchronized</keyword> - <keyword>throws</keyword> - <keyword>transient</keyword> - <keyword>volatile</keyword> - </highlighter> - <highlighter type="keywords"> - <keyword>prototype</keyword> - <!-- Global Objects --> - <keyword>Array</keyword> - <keyword>Boolean</keyword> - <keyword>Date</keyword> - <keyword>Error</keyword> - <keyword>EvalError</keyword> - <keyword>Function</keyword> - <keyword>Math</keyword> - <keyword>Number</keyword> - <keyword>Object</keyword> - <keyword>RangeError</keyword> - <keyword>ReferenceError</keyword> - <keyword>RegExp</keyword> - <keyword>String</keyword> - <keyword>SyntaxError</keyword> - <keyword>TypeError</keyword> - <keyword>URIError</keyword> - <!-- Global functions --> - <keyword>decodeURI</keyword> - <keyword>decodeURIComponent</keyword> - <keyword>encodeURI</keyword> - <keyword>encodeURIComponent</keyword> - <keyword>eval</keyword> - <keyword>isFinite</keyword> - <keyword>isNaN</keyword> - <keyword>parseFloat</keyword> - <keyword>parseInt</keyword> - <!-- Global properties --> - <keyword>Infinity</keyword> - <keyword>NaN</keyword> - <keyword>undefined</keyword> - </highlighter> -</highlighters> \ No newline at end of file diff --git a/docbook-xsl-1.75.2/highlighting/m2-hl.xml b/docbook-xsl-1.75.2/highlighting/m2-hl.xml deleted file mode 100644 index b145f74..0000000 --- a/docbook-xsl-1.75.2/highlighting/m2-hl.xml +++ /dev/null @@ -1,90 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- - -Syntax highlighting definition for Modulo-2 - -xslthl - XSLT Syntax Highlighting -http://sourceforge.net/projects/xslthl/ -Copyright (C) 2005-2008 Michal Molhanec, Jirka Kosek, Michiel Hendriks - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. - -Michal Molhanec <mol1111 at users.sourceforge.net> -Jirka Kosek <kosek at users.sourceforge.net> -Michiel Hendriks <elmuerte at users.sourceforge.net> - ---> -<highlighters> - <highlighter type="nested-multiline-comment"> - <start>(*</start> - <end>*)</end> - </highlighter> - <highlighter type="string"> - <string>"</string> - </highlighter> - <highlighter type="string"> - <string>'</string> - </highlighter> - <highlighter type="number"> - <point>.</point> - <exponent>e</exponent> - <ignoreCase /> - </highlighter> - <highlighter type="keywords"> - <keyword>and</keyword> - <keyword>array</keyword> - <keyword>begin</keyword> - <keyword>by</keyword> - <keyword>case</keyword> - <keyword>const</keyword> - <keyword>definition</keyword> - <keyword>div</keyword> - <keyword>do</keyword> - <keyword>else</keyword> - <keyword>elsif</keyword> - <keyword>end</keyword> - <keyword>exit</keyword> - <keyword>export</keyword> - <keyword>for</keyword> - <keyword>from</keyword> - <keyword>if</keyword> - <keyword>implementation</keyword> - <keyword>import</keyword> - <keyword>in</keyword> - <keyword>loop</keyword> - <keyword>mod</keyword> - <keyword>module</keyword> - <keyword>not</keyword> - <keyword>of</keyword> - <keyword>or</keyword> - <keyword>pointer</keyword> - <keyword>procedure</keyword> - <keyword>qualified</keyword> - <keyword>record</keyword> - <keyword>repeat</keyword> - <keyword>return</keyword> - <keyword>set</keyword> - <keyword>then</keyword> - <keyword>to</keyword> - <keyword>type</keyword> - <keyword>until</keyword> - <keyword>var</keyword> - <keyword>while</keyword> - <keyword>with</keyword> - <ignoreCase /> - </highlighter> -</highlighters> \ No newline at end of file diff --git a/docbook-xsl-1.75.2/highlighting/myxml-hl.xml b/docbook-xsl-1.75.2/highlighting/myxml-hl.xml deleted file mode 100644 index afa4be7..0000000 --- a/docbook-xsl-1.75.2/highlighting/myxml-hl.xml +++ /dev/null @@ -1,116 +0,0 @@ -<?xml version='1.0'?> -<!-- - - Bakalarska prace: Zvyraznovani syntaxe v XSLT - Michal Molhanec 2005 - - myxml-hl.xml - konfigurace zvyraznovace XML, ktera zvlast zvyrazni - HTML elementy a XSL elementy - ---> -<highlighters> - -<wholehighlighter type='xml'> - <elementSet> - <style>html</style> - <element>A</element> - <element>ABBR</element> - <element>ACRONYM</element> - <element>ADDRESS</element> - <element>APPLET</element> - <element>AREA</element> - <element>B</element> - <element>BASE</element> - <element>BASEFONT</element> - <element>BDO</element> - <element>BIG</element> - <element>BLOCKQUOTE</element> - <element>BODY</element> - <element>BR</element> - <element>BUTTON</element> - <element>CAPTION</element> - <element>CENTER</element> - <element>CITE</element> - <element>CODE</element> - <element>COL</element> - <element>COLGROUP</element> - <element>DD</element> - <element>DEL</element> - <element>DFN</element> - <element>DIR</element> - <element>DIV</element> - <element>DL</element> - <element>DT</element> - <element>EM</element> - <element>FIELDSET</element> - <element>FONT</element> - <element>FORM</element> - <element>FRAME</element> - <element>FRAMESET</element> - <element>H1</element> - <element>H2</element> - <element>H3</element> - <element>H4</element> - <element>H5</element> - <element>H6</element> - <element>HEAD</element> - <element>HR</element> - <element>HTML</element> - <element>I</element> - <element>IFRAME</element> - <element>IMG</element> - <element>INPUT</element> - <element>INS</element> - <element>ISINDEX</element> - <element>KBD</element> - <element>LABEL</element> - <element>LEGEND</element> - <element>LI</element> - <element>LINK</element> - <element>MAP</element> - <element>MENU</element> - <element>META</element> - <element>NOFRAMES</element> - <element>NOSCRIPT</element> - <element>OBJECT</element> - <element>OL</element> - <element>OPTGROUP</element> - <element>OPTION</element> - <element>P</element> - <element>PARAM</element> - <element>PRE</element> - <element>Q</element> - <element>S</element> - <element>SAMP</element> - <element>SCRIPT</element> - <element>SELECT</element> - <element>SMALL</element> - <element>SPAN</element> - <element>STRIKE</element> - <element>STRONG</element> - <element>STYLE</element> - <element>SUB</element> - <element>SUP</element> - <element>TABLE</element> - <element>TBODY</element> - <element>TD</element> - <element>TEXTAREA</element> - <element>TFOOT</element> - <element>TH</element> - <element>THEAD</element> - <element>TITLE</element> - <element>TR</element> - <element>TT</element> - <element>U</element> - <element>UL</element> - <element>VAR</element> - <element>XMP</element> - <ignoreCase/> - </elementSet> - <elementPrefix> - <style>xslt</style> - <prefix>xsl:</prefix> - </elementPrefix> -</wholehighlighter> - -</highlighters> \ No newline at end of file diff --git a/docbook-xsl-1.75.2/highlighting/perl-hl.xml b/docbook-xsl-1.75.2/highlighting/perl-hl.xml deleted file mode 100644 index da1924a..0000000 --- a/docbook-xsl-1.75.2/highlighting/perl-hl.xml +++ /dev/null @@ -1,120 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- - -Syntax highlighting definition for Perl - -xslthl - XSLT Syntax Highlighting -http://sourceforge.net/projects/xslthl/ -Copyright (C) 2005-2008 Michal Molhanec, Jirka Kosek, Michiel Hendriks - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. - -Michal Molhanec <mol1111 at users.sourceforge.net> -Jirka Kosek <kosek at users.sourceforge.net> -Michiel Hendriks <elmuerte at users.sourceforge.net> - ---> -<highlighters> - <highlighter type="oneline-comment">#</highlighter> - <highlighter type="heredoc"> - <start><<</start> - <quote>'</quote> - <quote>"</quote> - <noWhiteSpace/> - </highlighter> - <highlighter type="string"> - <string>"</string> - <escape>\</escape> - </highlighter> - <highlighter type="string"> - <string>'</string> - <escape>\</escape> - <spanNewLines/> - </highlighter> - <highlighter type="hexnumber"> - <prefix>0x</prefix> - <ignoreCase /> - </highlighter> - <highlighter type="number"> - <point>.</point> - <pointStarts /> - <ignoreCase /> - </highlighter> - <highlighter type="keywords"> - <keyword>if</keyword> - <keyword>unless</keyword> - <keyword>while</keyword> - <keyword>until</keyword> - <keyword>foreach</keyword> - <keyword>else</keyword> - <keyword>elsif</keyword> - <keyword>for</keyword> - <keyword>when</keyword> - <keyword>default</keyword> - <keyword>given</keyword> - <!-- Keywords related to the control flow of your perl program --> - <keyword>caller</keyword> - <keyword>continue</keyword> - <keyword>die</keyword> - <keyword>do</keyword> - <keyword>dump</keyword> - <keyword>eval</keyword> - <keyword>exit</keyword> - <keyword>goto</keyword> - <keyword>last</keyword> - <keyword>next</keyword> - <keyword>redo</keyword> - <keyword>return</keyword> - <keyword>sub</keyword> - <keyword>wantarray</keyword> - <!-- Keywords related to scoping --> - <keyword>caller</keyword> - <keyword>import</keyword> - <keyword>local</keyword> - <keyword>my</keyword> - <keyword>package</keyword> - <keyword>use</keyword> - <!-- Keywords related to perl modules --> - <keyword>do</keyword> - <keyword>import</keyword> - <keyword>no</keyword> - <keyword>package</keyword> - <keyword>require</keyword> - <keyword>use</keyword> - <!-- Keywords related to classes and object-orientedness --> - <keyword>bless</keyword> - <keyword>dbmclose</keyword> - <keyword>dbmopen</keyword> - <keyword>package</keyword> - <keyword>ref</keyword> - <keyword>tie</keyword> - <keyword>tied</keyword> - <keyword>untie</keyword> - <keyword>use</keyword> - <!-- operators --> - <keyword>and</keyword> - <keyword>or</keyword> - <keyword>not</keyword> - <keyword>eq</keyword> - <keyword>ne</keyword> - <keyword>lt</keyword> - <keyword>gt</keyword> - <keyword>le</keyword> - <keyword>ge</keyword> - <keyword>cmp</keyword> - </highlighter> -</highlighters> \ No newline at end of file diff --git a/docbook-xsl-1.75.2/highlighting/php-hl.xml b/docbook-xsl-1.75.2/highlighting/php-hl.xml deleted file mode 100644 index 4a70225..0000000 --- a/docbook-xsl-1.75.2/highlighting/php-hl.xml +++ /dev/null @@ -1,149 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- - -Syntax highlighting definition for PHP - -xslthl - XSLT Syntax Highlighting -http://sourceforge.net/projects/xslthl/ -Copyright (C) 2005-2008 Michal Molhanec, Jirka Kosek, Michiel Hendriks - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. - -Michal Molhanec <mol1111 at users.sourceforge.net> -Jirka Kosek <kosek at users.sourceforge.net> -Michiel Hendriks <elmuerte at users.sourceforge.net> - ---> -<highlighters> - <highlighter type="multiline-comment"> - <start>/**</start> - <end>*/</end> - <style>doccomment</style> - </highlighter> - <highlighter type="oneline-comment"> - <start>///</start> - <style>doccomment</style> - </highlighter> - <highlighter type="multiline-comment"> - <start>/*</start> - <end>*/</end> - </highlighter> - <highlighter type="oneline-comment">//</highlighter> - <highlighter type="oneline-comment">#</highlighter> - <highlighter type="string"> - <string>"</string> - <escape>\</escape> - <spanNewLines /> - </highlighter> - <highlighter type="string"> - <string>'</string> - <escape>\</escape> - <spanNewLines /> - </highlighter> - <highlighter type="heredoc"> - <start><<<</start> - </highlighter> - <highlighter type="hexnumber"> - <prefix>0x</prefix> - <ignoreCase /> - </highlighter> - <highlighter type="number"> - <point>.</point> - <exponent>e</exponent> - <ignoreCase /> - </highlighter> - <highlighter type="keywords"> - <keyword>and</keyword> - <keyword>or</keyword> - <keyword>xor</keyword> - <keyword>__FILE__</keyword> - <keyword>exception</keyword> - <keyword>__LINE__</keyword> - <keyword>array</keyword> - <keyword>as</keyword> - <keyword>break</keyword> - <keyword>case</keyword> - <keyword>class</keyword> - <keyword>const</keyword> - <keyword>continue</keyword> - <keyword>declare</keyword> - <keyword>default</keyword> - <keyword>die</keyword> - <keyword>do</keyword> - <keyword>echo</keyword> - <keyword>else</keyword> - <keyword>elseif</keyword> - <keyword>empty</keyword> - <keyword>enddeclare</keyword> - <keyword>endfor</keyword> - <keyword>endforeach</keyword> - <keyword>endif</keyword> - <keyword>endswitch</keyword> - <keyword>endwhile</keyword> - <keyword>eval</keyword> - <keyword>exit</keyword> - <keyword>extends</keyword> - <keyword>for</keyword> - <keyword>foreach</keyword> - <keyword>function</keyword> - <keyword>global</keyword> - <keyword>if</keyword> - <keyword>include</keyword> - <keyword>include_once</keyword> - <keyword>isset</keyword> - <keyword>list</keyword> - <keyword>new</keyword> - <keyword>print</keyword> - <keyword>require</keyword> - <keyword>require_once</keyword> - <keyword>return</keyword> - <keyword>static</keyword> - <keyword>switch</keyword> - <keyword>unset</keyword> - <keyword>use</keyword> - <keyword>var</keyword> - <keyword>while</keyword> - <keyword>__FUNCTION__</keyword> - <keyword>__CLASS__</keyword> - <keyword>__METHOD__</keyword> - <keyword>final</keyword> - <keyword>php_user_filter</keyword> - <keyword>interface</keyword> - <keyword>implements</keyword> - <keyword>extends</keyword> - <keyword>public</keyword> - <keyword>private</keyword> - <keyword>protected</keyword> - <keyword>abstract</keyword> - <keyword>clone</keyword> - <keyword>try</keyword> - <keyword>catch</keyword> - <keyword>throw</keyword> - <keyword>cfunction</keyword> - <keyword>old_function</keyword> - <keyword>true</keyword> - <keyword>false</keyword> - <ignoreCase /> - </highlighter> - <highlighter type="word"> - <!-- highlight the php open and close tags as directives --> - <word>?></word> - <word><?php</word> - <word><?=</word> - <style>directive</style> - </highlighter> -</highlighters> \ No newline at end of file diff --git a/docbook-xsl-1.75.2/highlighting/python-hl.xml b/docbook-xsl-1.75.2/highlighting/python-hl.xml deleted file mode 100644 index 791bc7a..0000000 --- a/docbook-xsl-1.75.2/highlighting/python-hl.xml +++ /dev/null @@ -1,100 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- - -Syntax highlighting definition for Python - -xslthl - XSLT Syntax Highlighting -http://sourceforge.net/projects/xslthl/ -Copyright (C) 2005-2008 Michal Molhanec, Jirka Kosek, Michiel Hendriks - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. - -Michal Molhanec <mol1111 at users.sourceforge.net> -Jirka Kosek <kosek at users.sourceforge.net> -Michiel Hendriks <elmuerte at users.sourceforge.net> - ---> -<highlighters> - <highlighter type="annotation"> - <!-- these are actually called decorators --> - <start>@</start> - <valueStart>(</valueStart> - <valueEnd>)</valueEnd> - </highlighter> - <highlighter type="oneline-comment">#</highlighter> - <highlighter type="string"> - <string>"""</string> - <spanNewLines /> - </highlighter> - <highlighter type="string"> - <string>'''</string> - <spanNewLines /> - </highlighter> - <highlighter type="string"> - <string>"</string> - <escape>\</escape> - </highlighter> - <highlighter type="string"> - <string>'</string> - <escape>\</escape> - </highlighter> - <highlighter type="hexnumber"> - <prefix>0x</prefix> - <suffix>l</suffix> - <ignoreCase /> - </highlighter> - <highlighter type="number"> - <point>.</point> - <pointStarts /> - <exponent>e</exponent> - <suffix>l</suffix> - <ignoreCase /> - </highlighter> - <highlighter type="keywords"> - <keyword>and</keyword> - <keyword>del</keyword> - <keyword>from</keyword> - <keyword>not</keyword> - <keyword>while</keyword> - <keyword>as</keyword> - <keyword>elif</keyword> - <keyword>global</keyword> - <keyword>or</keyword> - <keyword>with</keyword> - <keyword>assert</keyword> - <keyword>else</keyword> - <keyword>if</keyword> - <keyword>pass</keyword> - <keyword>yield</keyword> - <keyword>break</keyword> - <keyword>except</keyword> - <keyword>import</keyword> - <keyword>print</keyword> - <keyword>class</keyword> - <keyword>exec</keyword> - <keyword>in</keyword> - <keyword>raise</keyword> - <keyword>continue</keyword> - <keyword>finally</keyword> - <keyword>is</keyword> - <keyword>return</keyword> - <keyword>def</keyword> - <keyword>for</keyword> - <keyword>lambda</keyword> - <keyword>try</keyword> - </highlighter> -</highlighters> \ No newline at end of file diff --git a/docbook-xsl-1.75.2/highlighting/ruby-hl.xml b/docbook-xsl-1.75.2/highlighting/ruby-hl.xml deleted file mode 100644 index 78189b0..0000000 --- a/docbook-xsl-1.75.2/highlighting/ruby-hl.xml +++ /dev/null @@ -1,109 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- - -Syntax highlighting definition for Ruby - -xslthl - XSLT Syntax Highlighting -http://sourceforge.net/projects/xslthl/ -Copyright (C) 2005-2008 Michal Molhanec, Jirka Kosek, Michiel Hendriks - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. - -Michal Molhanec <mol1111 at users.sourceforge.net> -Jirka Kosek <kosek at users.sourceforge.net> -Michiel Hendriks <elmuerte at users.sourceforge.net> - ---> -<highlighters> - <highlighter type="oneline-comment">#</highlighter> - <highlighter type="heredoc"> - <start><<</start> - <noWhiteSpace/> - </highlighter> - <highlighter type="string"> - <string>"</string> - <escape>\</escape> - </highlighter> - <highlighter type="string"> - <string>%Q{</string> - <endString>}</endString> - <escape>\</escape> - </highlighter> - <highlighter type="string"> - <string>%/</string> - <endString>/</endString> - <escape>\</escape> - </highlighter> - <highlighter type="string"> - <string>'</string> - <escape>\</escape> - </highlighter> - <highlighter type="string"> - <string>%q{</string> - <endString>}</endString> - <escape>\</escape> - </highlighter> - <highlighter type="hexnumber"> - <prefix>0x</prefix> - <ignoreCase /> - </highlighter> - <highlighter type="number"> - <point>.</point> - <exponent>e</exponent> - <ignoreCase /> - </highlighter> - <highlighter type="keywords"> - <keyword>alias</keyword> - <keyword>and</keyword> - <keyword>BEGIN</keyword> - <keyword>begin</keyword> - <keyword>break</keyword> - <keyword>case</keyword> - <keyword>class</keyword> - <keyword>def</keyword> - <keyword>defined</keyword> - <keyword>do</keyword> - <keyword>else</keyword> - <keyword>elsif</keyword> - <keyword>END</keyword> - <keyword>end</keyword> - <keyword>ensure</keyword> - <keyword>false</keyword> - <keyword>for</keyword> - <keyword>if</keyword> - <keyword>in</keyword> - <keyword>module</keyword> - <keyword>next</keyword> - <keyword>nil</keyword> - <keyword>not</keyword> - <keyword>or</keyword> - <keyword>redo</keyword> - <keyword>rescue</keyword> - <keyword>retry</keyword> - <keyword>return</keyword> - <keyword>self</keyword> - <keyword>super</keyword> - <keyword>then</keyword> - <keyword>true</keyword> - <keyword>undef</keyword> - <keyword>unless</keyword> - <keyword>until</keyword> - <keyword>when</keyword> - <keyword>while</keyword> - <keyword>yield</keyword> - </highlighter> -</highlighters> \ No newline at end of file diff --git a/docbook-xsl-1.75.2/highlighting/tcl-hl.xml b/docbook-xsl-1.75.2/highlighting/tcl-hl.xml deleted file mode 100644 index 7a8fa9f..0000000 --- a/docbook-xsl-1.75.2/highlighting/tcl-hl.xml +++ /dev/null @@ -1,180 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- - -xslthl highlighter definition fof Tcl/Tk. -written by Arndt Roger Schneider - -Copyright 2008 Arndt Roger Schneider -License: xlib/libpng - -This software is provided "as-is", without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must - not claim that you wrote the original software. If you use this - software in a product, an acknowledgment in the product - documentation would be appreciated but is not required. - -2. Altered source versions must be plainly marked as such, and must - not be misrepresented as being the original software. - -3. This notice may not be removed or altered from any source - distribution. - ---> -<highlighters> - <highlighter type="oneline-comment">#</highlighter> - <highlighter type="string"> - <string>"</string> - <escape>\</escape> - </highlighter> - <highlighter type="regex"> - <pattern>-[\p{javaJavaIdentifierStart}][\p{javaJavaIdentifierPart}]+ - </pattern> - <style>none</style> - </highlighter> - <highlighter type="number"> - <point>.</point> - <ignoreCase /> - </highlighter> - <highlighter type="keywords"> - <!-- Tcl and itcl / structural --> - <keyword>if</keyword> - <keyword>then</keyword> - <keyword>else</keyword> - <keyword>elseif</keyword> - <keyword>for</keyword> - <keyword>foreach</keyword> - <keyword>break</keyword> - <keyword>continue</keyword> - <keyword>while</keyword> - <keyword>eval</keyword> - <keyword>case</keyword> - <keyword>in</keyword> - <keyword>switch</keyword> - <keyword>default</keyword> - <keyword>exit</keyword> - <keyword>error</keyword> - <keyword>proc</keyword> - <keyword>rename</keyword> - <keyword>exec</keyword> - <keyword>return</keyword> - <keyword>uplevel</keyword> - <keyword>upvar</keyword> - <keyword>constructor</keyword> - <keyword>destructor</keyword> - <keyword>itcl_class</keyword> - <keyword>loop</keyword> - <keyword>for_array_keys</keyword> - <keyword>for_recursive_glob</keyword> - <keyword>for_file</keyword> - <keyword>method</keyword> - <keyword>body</keyword> - <keyword>configbody</keyword> - <keyword>catch</keyword> - <keyword>namespace</keyword> - <keyword>class</keyword> - <keyword>array</keyword> - <keyword>set</keyword> - <keyword>unset</keyword> - <keyword>package</keyword> - <keyword>source</keyword> - - <!-- Additional commands --> - <keyword>subst</keyword> - <keyword>list</keyword> - <keyword>format</keyword> - <keyword>lappend</keyword> - <keyword>option</keyword> - <keyword>expr</keyword> - <keyword>puts</keyword> - <keyword>winfo</keyword> - <keyword>lindex</keyword> - <keyword>string</keyword> - - - <!-- Runtime Library / structural --> - <keyword>verified</keyword> - <keyword>seteach</keyword> - <keyword>fixme</keyword> - <keyword>debug</keyword> - <keyword>rtl::debug</keyword> - <keyword>rtl::verified</keyword> - <keyword>rtl::template</keyword> - <keyword>rtl::seteach</keyword> - - <!-- Runtime Library / Additional --> - <keyword>mkProc</keyword> - <keyword>getCreator</keyword> - <keyword>properties</keyword> - <keyword>lappendunique</keyword> - <keyword>rtl::lappendunique</keyword> - - <!-- geometry managers from Tk --> - <keyword>place</keyword> - <keyword>pack</keyword> - <keyword>grid</keyword> - - - <!-- Additional Tk stuff --> - <keyword>image</keyword> - <keyword>font</keyword> - <keyword>focus</keyword> - <keyword>tk</keyword> - <keyword>bind</keyword> - <keyword>after</keyword> - - <!-- Window classes from Tk, ... --> - <keyword>toplevel</keyword> - <keyword>frame</keyword> - <keyword>entry</keyword> - <keyword>listbox</keyword> - <keyword>button</keyword> - <keyword>radiobutton</keyword> - <keyword>checkbutton</keyword> - <keyword>canvas</keyword> - <keyword>menu</keyword> - <keyword>menubutton</keyword> - <keyword>text</keyword> - <keyword>label</keyword> - <keyword>message</keyword> - <!-- - The rest of Tk's windows is omitted: scrollbar, scale, panedwindow, labelframe, spinbox ... - --> - - <!-- ... from tkZinc, ... --> - <keyword>zinc</keyword> - - <!-- ... from tkpath, ... --> - <keyword>tkpath::gradient</keyword> - - <!-- ... from Runtime Library, ... --> - <keyword>rtl_combobox</keyword> - <keyword>rtl_tree</keyword> - <keyword>rtl_tabset</keyword> - <keyword>rtl_mlistbox</keyword> - <keyword>rtl_gridwin</keyword> - <keyword>rtlysizer</keyword> - <keyword>rtlxsizer</keyword> - <!-- - The rest of RTL's windows is omitted: spinbox, decoratedframe, symbolbar, symbolbarcustomize, question ... - --> - - <!-- ... from GEI, ... --> - <keyword>goolbar</keyword> - <keyword>gstripes</keyword> - <keyword>zoolbar</keyword> - <keyword>gistbox</keyword> - <keyword>gooleditor</keyword> - <keyword>galette</keyword> - </highlighter> -</highlighters> - <!-- - Local Variables: mode: sgml coding: utf-8-unix sgml-indent-step: 2 sgml-indent-data: t sgml-set-face: t - sgml-insert-missing-element-comment: nil End: - --> \ No newline at end of file diff --git a/docbook-xsl-1.75.2/highlighting/xslthl-config.xml b/docbook-xsl-1.75.2/highlighting/xslthl-config.xml deleted file mode 100644 index b24e469..0000000 --- a/docbook-xsl-1.75.2/highlighting/xslthl-config.xml +++ /dev/null @@ -1,46 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- - -xslthl - XSLT Syntax Highlighting -http://sourceforge.net/projects/xslthl/ -Copyright (C) 2005-2008 Michal Molhanec, Jirka Kosek, Michiel Hendriks - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. - -Michal Molhanec <mol1111 at users.sourceforge.net> -Jirka Kosek <kosek at users.sourceforge.net> -Michiel Hendriks <elmuerte at users.sourceforge.net> - ---> -<xslthl-config> - <highlighter id="java" file="java-hl.xml" /> - <highlighter id="delphi" file="delphi-hl.xml" /> - <highlighter id="pascal" file="delphi-hl.xml" /> - <highlighter id="ini" file="ini-hl.xml" /> - <highlighter id="php" file="php-hl.xml" /> - <highlighter id="myxml" file="myxml-hl.xml" /> - <highlighter id="m2" file="m2-hl.xml" /> - <highlighter id="tcl" file="tcl-hl.xml" /> - <highlighter id="c" file="c-hl.xml" /> - <highlighter id="cpp" file="cpp-hl.xml" /> - <highlighter id="csharp" file="csharp-hl.xml" /> - <highlighter id="python" file="python-hl.xml" /> - <highlighter id="ruby" file="ruby-hl.xml" /> - <highlighter id="perl" file="perl-hl.xml" /> - <highlighter id="javascript" file="javascript-hl.xml" /> - <namespace prefix="xslthl" uri="http://xslthl.sf.net" /> -</xslthl-config> \ No newline at end of file diff --git a/docbook-xsl-1.75.2/html/admon.xsl b/docbook-xsl-1.75.2/html/admon.xsl deleted file mode 100644 index 3d1462d..0000000 --- a/docbook-xsl-1.75.2/html/admon.xsl +++ /dev/null @@ -1,134 +0,0 @@ -<?xml version='1.0'?> -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" - version='1.0'> - -<!-- ******************************************************************** - $Id: admon.xsl 8421 2009-05-04 07:49:49Z bobstayton $ - ******************************************************************** - - This file is part of the XSL DocBook Stylesheet distribution. - See ../README or http://docbook.sf.net/release/xsl/current/ for - copyright and other information. - - ******************************************************************** --> - -<xsl:template match="*" mode="admon.graphic.width"> - <xsl:param name="node" select="."/> - <xsl:text>25</xsl:text> -</xsl:template> - -<xsl:template match="note|important|warning|caution|tip"> - <xsl:choose> - <xsl:when test="$admon.graphics != 0"> - <xsl:call-template name="graphical.admonition"/> - </xsl:when> - <xsl:otherwise> - <xsl:call-template name="nongraphical.admonition"/> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template name="admon.graphic"> - <xsl:param name="node" select="."/> - <xsl:value-of select="$admon.graphics.path"/> - <xsl:choose> - <xsl:when test="local-name($node)='note'">note</xsl:when> - <xsl:when test="local-name($node)='warning'">warning</xsl:when> - <xsl:when test="local-name($node)='caution'">caution</xsl:when> - <xsl:when test="local-name($node)='tip'">tip</xsl:when> - <xsl:when test="local-name($node)='important'">important</xsl:when> - <xsl:otherwise>note</xsl:otherwise> - </xsl:choose> - <xsl:value-of select="$admon.graphics.extension"/> -</xsl:template> - -<xsl:template name="graphical.admonition"> - <xsl:variable name="admon.type"> - <xsl:choose> - <xsl:when test="local-name(.)='note'">Note</xsl:when> - <xsl:when test="local-name(.)='warning'">Warning</xsl:when> - <xsl:when test="local-name(.)='caution'">Caution</xsl:when> - <xsl:when test="local-name(.)='tip'">Tip</xsl:when> - <xsl:when test="local-name(.)='important'">Important</xsl:when> - <xsl:otherwise>Note</xsl:otherwise> - </xsl:choose> - </xsl:variable> - - <xsl:variable name="alt"> - <xsl:call-template name="gentext"> - <xsl:with-param name="key" select="$admon.type"/> - </xsl:call-template> - </xsl:variable> - - <div> - <xsl:call-template name="common.html.attributes"/> - <xsl:if test="$admon.style != ''"> - <xsl:attribute name="style"> - <xsl:value-of select="$admon.style"/> - </xsl:attribute> - </xsl:if> - - <table border="0"> - <xsl:attribute name="summary"> - <xsl:value-of select="$admon.type"/> - <xsl:if test="title|info/title"> - <xsl:text>: </xsl:text> - <xsl:value-of select="(title|info/title)[1]"/> - </xsl:if> - </xsl:attribute> - <tr> - <td rowspan="2" align="center" valign="top"> - <xsl:attribute name="width"> - <xsl:apply-templates select="." mode="admon.graphic.width"/> - </xsl:attribute> - <img alt="[{$alt}]"> - <xsl:attribute name="src"> - <xsl:call-template name="admon.graphic"/> - </xsl:attribute> - </img> - </td> - <th align="{$direction.align.start}"> - <xsl:call-template name="anchor"/> - <xsl:if test="$admon.textlabel != 0 or title or info/title"> - <xsl:apply-templates select="." mode="object.title.markup"/> - </xsl:if> - </th> - </tr> - <tr> - <td align="{$direction.align.start}" valign="top"> - <xsl:apply-templates/> - </td> - </tr> - </table> - </div> -</xsl:template> - -<xsl:template name="nongraphical.admonition"> - <div> - <xsl:call-template name="common.html.attributes"> - <xsl:with-param name="inherit" select="1"/> - </xsl:call-template> - <xsl:if test="$admon.style"> - <xsl:attribute name="style"> - <xsl:value-of select="$admon.style"/> - </xsl:attribute> - </xsl:if> - - <xsl:if test="$admon.textlabel != 0 or title or info/title"> - <h3 class="title"> - <xsl:call-template name="anchor"/> - <xsl:apply-templates select="." mode="object.title.markup"/> - </h3> - </xsl:if> - - <xsl:apply-templates/> - </div> -</xsl:template> - -<xsl:template match="note/title"></xsl:template> -<xsl:template match="important/title"></xsl:template> -<xsl:template match="warning/title"></xsl:template> -<xsl:template match="caution/title"></xsl:template> -<xsl:template match="tip/title"></xsl:template> - -</xsl:stylesheet> diff --git a/docbook-xsl-1.75.2/html/annotations.xsl b/docbook-xsl-1.75.2/html/annotations.xsl deleted file mode 100644 index f010632..0000000 --- a/docbook-xsl-1.75.2/html/annotations.xsl +++ /dev/null @@ -1,169 +0,0 @@ -<?xml version='1.0'?> -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" - version='1.0'> - -<xsl:template name="add.annotation.links"> - <xsl:param name="scripts" select="normalize-space($annotation.js)"/> - <xsl:choose> - <xsl:when test="contains($scripts, ' ')"> - <script type="text/javascript" src="{substring-before($scripts, ' ')}"/> - <xsl:call-template name="add.annotation.links"> - <xsl:with-param name="scripts" select="substring-after($scripts, ' ')"/> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <script type="text/javascript" src="{$scripts}"/> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template match="annotation"/> - -<xsl:template name="apply-annotations"> - <xsl:if test="$annotation.support != 0"> - <!-- do any annotations apply to the context node? --> - <xsl:variable name="id" select="(@id|@xml:id)[1]"/> - - <xsl:variable name="aids"> - <xsl:for-each select="//annotation"> - <xsl:if test="@annotates=$id - or starts-with(@annotates, concat($id, ' ')) - or contains(@annotates, concat(' ', $id, ' ')) - or substring(@annotates, string-length(@annotates)-3) - = concat(' ', $id)"> - <xsl:value-of select="generate-id()"/> - <xsl:text> </xsl:text> - </xsl:if> - </xsl:for-each> - <xsl:if test="normalize-space(@annotations) != ''"> - <xsl:call-template name="annotations-pointed-to"> - <xsl:with-param name="annotations" - select="normalize-space(@annotations)"/> - </xsl:call-template> - </xsl:if> - </xsl:variable> - - <xsl:if test="$aids != ''"> - <xsl:call-template name="apply-annotations-by-gid"> - <xsl:with-param name="gids" select="normalize-space($aids)"/> - </xsl:call-template> - </xsl:if> - </xsl:if> -</xsl:template> - -<xsl:template name="annotations-pointed-to"> - <xsl:param name="annotations"/> - <xsl:choose> - <xsl:when test="contains($annotations, ' ')"> - <xsl:variable name='a' - select="key('id', substring-before($annotations, ' '))"/> - <xsl:if test="$a"> - <xsl:value-of select="generate-id($a)"/> - <xsl:text> </xsl:text> - </xsl:if> - <xsl:call-template name="annotations-pointed-to"> - <xsl:with-param name="annotations" - select="substring-after($annotations, ' ')"/> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <xsl:variable name='a' - select="key('id', $annotations)"/> - <xsl:if test="$a"> - <xsl:value-of select="generate-id($a)"/> - <xsl:text> </xsl:text> - </xsl:if> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template name="apply-annotations-by-gid"> - <xsl:param name="gids"/> - - <xsl:choose> - <xsl:when test="contains($gids, ' ')"> - <xsl:variable name="gid" select="substring-before($gids, ' ')"/> - <xsl:apply-templates select="key('gid', $gid)" - mode="annotation-inline"/> - <xsl:call-template name="apply-annotations-by-gid"> - <xsl:with-param name="gids" - select="substring-after($gids, ' ')"/> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates select="key('gid', $gids)" - mode="annotation-inline"/> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template match="annotation" mode="annotation-inline"> - <xsl:variable name="title"> - <xsl:choose> - <xsl:when test="title"> - <xsl:value-of select="title"/> - </xsl:when> - <xsl:otherwise> - <xsl:text>[Annotation #</xsl:text> - <xsl:number count="annotation" level="any" format="1"/> - <xsl:text>]</xsl:text> - </xsl:otherwise> - </xsl:choose> - </xsl:variable> - - <a href="#annot-{generate-id(.)}" title="{$title}" - name="anch-{generate-id(.)}" id="anch-{generate-id(.)}"> - <xsl:apply-templates select="." mode="class.attribute"/> - <xsl:attribute name="onClick"> - <xsl:text>popup_</xsl:text> - <xsl:value-of select="generate-id(.)"/> - <xsl:text>.showPopup('anch-</xsl:text> - <xsl:value-of select="generate-id(.)"/> - <xsl:text>'); return false;</xsl:text> - </xsl:attribute> - <img src="{$annotation.graphic.open}" border="0" alt="{$title}"/> - </a> -</xsl:template> - -<xsl:template match="annotation" mode="annotation-popup"> - <div class="annotation-nocss"> - <p> - <a name="annot-{generate-id(.)}"/> - <xsl:text>Annotation #</xsl:text> - <xsl:number count="annotation" level="any" format="1"/> - <xsl:text>:</xsl:text> - </p> - </div> - - <div id="popup-{generate-id(.)}" class="annotation-popup"> - <xsl:if test="string-length(.) > 300"> - <xsl:attribute name="style">width:400px</xsl:attribute> - </xsl:if> - - <xsl:call-template name="annotation-title"/> - <div class="annotation-body"> - <xsl:apply-templates select="*[local-name(.) != 'title']"/> - </div> - <div class="annotation-close"> - <a href="#" onclick="popup_{generate-id(.)}.hidePopup();return false;"> - <xsl:apply-templates select="." mode="class.attribute"/> - <img src="{$annotation.graphic.close}" alt="X" border="0"/> - </a> - </div> - </div> -</xsl:template> - -<xsl:template name="annotation-title"> - <div class="annotation-title"> - <xsl:choose> - <xsl:when test="title"> - <xsl:apply-templates select="title/node()"/> - </xsl:when> - <xsl:otherwise> - <xsl:text>Annotation</xsl:text> - </xsl:otherwise> - </xsl:choose> - </div> -</xsl:template> - -</xsl:stylesheet> diff --git a/docbook-xsl-1.75.2/html/autoidx-kimber.xsl b/docbook-xsl-1.75.2/html/autoidx-kimber.xsl deleted file mode 100644 index f8d9e3f..0000000 --- a/docbook-xsl-1.75.2/html/autoidx-kimber.xsl +++ /dev/null @@ -1,168 +0,0 @@ -<?xml version="1.0"?> -<!DOCTYPE xsl:stylesheet [ - -<!ENTITY primary 'normalize-space(concat(primary/@sortas, primary[not(@sortas) or @sortas = ""]))'> -<!ENTITY secondary 'normalize-space(concat(secondary/@sortas, secondary[not(@sortas) or @sortas = ""]))'> -<!ENTITY tertiary 'normalize-space(concat(tertiary/@sortas, tertiary[not(@sortas) or @sortas = ""]))'> - -<!-- Documents using the kimber index method must have a lang attribute --> -<!-- Only one of these should be present in the entity --> -<!ENTITY lang 'concat(/*/@lang, /*/@xml:lang)'> - -<!ENTITY scope 'count(ancestor::node()|$scope) = count(ancestor::node()) and ($role = @role or $type = @type or (string-length($role) = 0 and string-length($type) = 0))'> -]> -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" - xmlns:k="http://www.isogen.com/functions/com.isogen.saxoni18n.Saxoni18nService" - exclude-result-prefixes="k" - version="1.0"> - -<!-- ******************************************************************** - $Id: autoidx-kimber.xsl 6910 2007-06-28 23:23:30Z xmldoc $ - ******************************************************************** - - This file is part of the XSL DocBook Stylesheet distribution. - See ../README or http://docbook.sf.net/release/xsl/current/ for - copyright and other information. - - ******************************************************************** --> - -<!-- ==================================================================== --> -<!-- The "kimber" method contributed by Eliot Kimber of Innodata Isogen. --> -<!-- ==================================================================== --> -<!-- *** THIS MODULE ONLY WORKS WITH SAXON 6 OR SAXON 8 *** --> -<!-- ==================================================================== --> - - -<xsl:include href="../common/autoidx-kimber.xsl"/> - -<!-- Java sort apparently works only on lang part, not country --> -<xsl:param name="sort.lang"> - <xsl:choose> - <xsl:when test="contains(⟨, '-')"> - <xsl:value-of select="substring-before(⟨, '-')"/> - </xsl:when> - <xsl:when test="contains(⟨, '_')"> - <xsl:value-of select="substring-before(⟨, '_')"/> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="⟨"/> - </xsl:otherwise> - </xsl:choose> -</xsl:param> - -<xsl:template name="generate-kimber-index"> - <xsl:param name="scope" select="NOTANODE"/> - - <xsl:variable name="vendor" select="system-property('xsl:vendor')"/> - <xsl:if test="not(contains($vendor, 'SAXON '))"> - <xsl:message terminate="yes"> - <xsl:text>ERROR: the 'kimber' index method requires the </xsl:text> - <xsl:text>Saxon version 6 or 8 XSLT processor.</xsl:text> - </xsl:message> - </xsl:if> - - <xsl:if test="not(function-available('k:getIndexGroupKey'))"> - <xsl:message terminate="yes"> - <xsl:text>ERROR: the 'kimber' index method requires the </xsl:text> - <xsl:text>Innodata Isogen Java extensions for </xsl:text> - <xsl:text>internationalized indexes. Install those </xsl:text> - <xsl:text>extensions, or use a different index method. </xsl:text> - <xsl:text>For more information, see: </xsl:text> - <xsl:text>http://www.innodata-isogen.com/knowledge_center/tools_downloads/i18nsupport</xsl:text> - </xsl:message> - </xsl:if> - - <xsl:variable name="role"> - <xsl:if test="$index.on.role != 0"> - <xsl:value-of select="@role"/> - </xsl:if> - </xsl:variable> - - <xsl:variable name="type"> - <xsl:if test="$index.on.type != 0"> - <xsl:value-of select="@type"/> - </xsl:if> - </xsl:variable> - - <xsl:variable name="terms" - select="//indexterm[count(.|key('k-group', k:getIndexGroupKey(⟨, &primary;))[&scope;][1]) = 1 and not(@class = 'endofrange')]"/> - - <xsl:variable name="alphabetical" - select="$terms[not(starts-with( - k:getIndexGroupKey(⟨, &primary;), - '#NUMERIC' - ))]"/> - - <xsl:variable name="others" - select="$terms[starts-with( - k:getIndexGroupKey(⟨, &primary;), - '#NUMERIC' - )]"/> - - <div class="index"> - <xsl:if test="$others"> - <div class="indexdev"> - <h3> - <xsl:call-template name="gentext"> - <xsl:with-param name="key" select="'index symbols'"/> - </xsl:call-template> - </h3> - <dl> - <xsl:apply-templates select="$others" - mode="index-symbol-div"> - <xsl:with-param name="scope" select="$scope"/> - <xsl:with-param name="role" select="$role"/> - <xsl:with-param name="type" select="$type"/> - <xsl:sort lang="{$sort.lang}" - select="k:getIndexGroupSortKey(⟨, - k:getIndexGroupKey(⟨, &primary;))"/> - </xsl:apply-templates> - </dl> - </div> - </xsl:if> - - <xsl:apply-templates select="$alphabetical" - mode="index-div-kimber"> - <xsl:with-param name="scope" select="$scope"/> - <xsl:with-param name="role" select="$role"/> - <xsl:with-param name="type" select="$type"/> - <xsl:sort lang="{$sort.lang}" - select="k:getIndexGroupSortKey(⟨, - k:getIndexGroupKey(⟨, &primary;))"/> - </xsl:apply-templates> - </div> - -</xsl:template> - -<xsl:template match="indexterm" mode="index-div-kimber"> - <xsl:param name="scope" select="."/> - <xsl:param name="role" select="''"/> - <xsl:param name="type" select="''"/> - - <xsl:variable name="key" - select="k:getIndexGroupKey(⟨, &primary;)"/> - - <xsl:variable name="label" - select="k:getIndexGroupLabel(⟨, $key)"/> - - <xsl:if test="key('k-group', $label)[&scope;][count(.|key('primary', &primary;)[&scope;][1]) = 1]"> - <div class="indexdiv"> - <h3> - <xsl:value-of select="$label"/> - </h3> - <dl> - <xsl:apply-templates select="key('k-group', $key)[&scope;] - [count(.|key('primary', &primary;)[&scope;] - [1])=1]" - mode="index-primary"> - <xsl:sort select="&primary;" lang="{$sort.lang}"/> - <xsl:with-param name="scope" select="$scope"/> - <xsl:with-param name="role" select="$role"/> - <xsl:with-param name="type" select="$type"/> - </xsl:apply-templates> - </dl> - </div> - </xsl:if> -</xsl:template> - -</xsl:stylesheet> diff --git a/docbook-xsl-1.75.2/html/autoidx-kosek.xsl b/docbook-xsl-1.75.2/html/autoidx-kosek.xsl deleted file mode 100644 index 808c343..0000000 --- a/docbook-xsl-1.75.2/html/autoidx-kosek.xsl +++ /dev/null @@ -1,124 +0,0 @@ -<?xml version="1.0"?> -<!DOCTYPE xsl:stylesheet [ - -<!ENTITY primary 'normalize-space(concat(primary/@sortas, primary[not(@sortas) or @sortas = ""]))'> -<!ENTITY secondary 'normalize-space(concat(secondary/@sortas, secondary[not(@sortas) or @sortas = ""]))'> -<!ENTITY tertiary 'normalize-space(concat(tertiary/@sortas, tertiary[not(@sortas) or @sortas = ""]))'> - -<!ENTITY scope 'count(ancestor::node()|$scope) = count(ancestor::node()) and ($role = @role or $type = @type or (string-length($role) = 0 and string-length($type) = 0))'> -]> -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" - xmlns:i="urn:cz-kosek:functions:index" - xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0" - xmlns:func="http://exslt.org/functions" - xmlns:k="http://www.isogen.com/functions/com.isogen.saxoni18n.Saxoni18nService" - xmlns:exslt="http://exslt.org/common" - extension-element-prefixes="func exslt" - exclude-result-prefixes="func exslt i l k" - version="1.0"> - -<!-- ******************************************************************** - $Id: autoidx-kosek.xsl 8399 2009-04-08 07:37:42Z bobstayton $ - ******************************************************************** - - This file is part of the XSL DocBook Stylesheet distribution. - See ../README or http://docbook.sf.net/release/xsl/current/ for - copyright and other information. - - ******************************************************************** --> - -<!-- ==================================================================== --> -<!-- The "kosek" method contributed by Jirka Kosek. --> - -<xsl:include href="../common/autoidx-kosek.xsl"/> - -<xsl:template name="generate-kosek-index"> - <xsl:param name="scope" select="(ancestor::book|/)[last()]"/> - - <xsl:variable name="vendor" select="system-property('xsl:vendor')"/> - <xsl:if test="contains($vendor, 'libxslt')"> - <xsl:message terminate="yes"> - <xsl:text>ERROR: the 'kosek' index method does not </xsl:text> - <xsl:text>work with the xsltproc XSLT processor.</xsl:text> - </xsl:message> - </xsl:if> - - <xsl:if test="contains($vendor, 'Saxonica')"> - <xsl:message terminate="yes"> - <xsl:text>ERROR: the 'kosek' index method does not </xsl:text> - <xsl:text>work with the Saxon 8 XSLT processor.</xsl:text> - </xsl:message> - </xsl:if> - - <xsl:if test="$exsl.node.set.available = 0"> - <xsl:message terminate="yes"> - <xsl:text>ERROR: the 'kosek' index method requires the </xsl:text> - <xsl:text>exslt:node-set() function. Use a processor that </xsl:text> - <xsl:text>has it, or use a different index method.</xsl:text> - </xsl:message> - </xsl:if> - - <xsl:if test="not(function-available('i:group-index'))"> - <xsl:message terminate="yes"> - <xsl:text>ERROR: the 'kosek' index method requires the </xsl:text> - <xsl:text>index extension functions be imported: </xsl:text> - <xsl:text> xsl:import href="common/autoidx-kosek.xsl"</xsl:text> - </xsl:message> - </xsl:if> - - <xsl:variable name="role"> - <xsl:if test="$index.on.role != 0"> - <xsl:value-of select="@role"/> - </xsl:if> - </xsl:variable> - - <xsl:variable name="type"> - <xsl:if test="$index.on.type != 0"> - <xsl:value-of select="@type"/> - </xsl:if> - </xsl:variable> - - <xsl:variable name="terms" - select="//indexterm[count(.|key('group-code', i:group-index(&primary;))[&scope;][1]) = 1 and not(@class = 'endofrange')]"/> - - <div class="index"> - <xsl:apply-templates select="$terms" mode="index-div-kosek"> - <xsl:with-param name="scope" select="$scope"/> - <xsl:with-param name="role" select="$role"/> - <xsl:with-param name="type" select="$type"/> - <xsl:sort select="i:group-index(&primary;)" data-type="number"/> - </xsl:apply-templates> - </div> -</xsl:template> - -<xsl:template match="indexterm" mode="index-div-kosek"> - <xsl:param name="scope" select="."/> - <xsl:param name="role" select="''"/> - <xsl:param name="type" select="''"/> - - <xsl:variable name="key" - select="i:group-index(&primary;)"/> - - <xsl:variable name="lang"> - <xsl:call-template name="l10n.language"/> - </xsl:variable> - - <xsl:if test="key('group-code', $key)[&scope;][count(.|key('primary', &primary;)[&scope;][1]) = 1]"> - <div class="indexdiv"> - <h3> - <xsl:value-of select="i:group-letter($key)"/> - </h3> - <dl> - <xsl:apply-templates select="key('group-code', $key)[&scope;][count(.|key('primary', &primary;)[&scope;][1])=1]" - mode="index-primary"> - <xsl:sort select="&primary;" lang="{$lang}"/> - <xsl:with-param name="scope" select="$scope"/> - <xsl:with-param name="role" select="$role"/> - <xsl:with-param name="type" select="$type"/> - </xsl:apply-templates> - </dl> - </div> - </xsl:if> -</xsl:template> - -</xsl:stylesheet> diff --git a/docbook-xsl-1.75.2/html/autoidx-ng.xsl b/docbook-xsl-1.75.2/html/autoidx-ng.xsl deleted file mode 100644 index 9407b5c..0000000 --- a/docbook-xsl-1.75.2/html/autoidx-ng.xsl +++ /dev/null @@ -1,20 +0,0 @@ -<?xml version="1.0"?> -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" - version="1.0"> - -<!-- ******************************************************************** - $Id: autoidx-ng.xsl 6910 2007-06-28 23:23:30Z xmldoc $ - ******************************************************************** - - This file is part of the DocBook XSL Stylesheet distribution. - See ../README or http://docbook.sf.net/ for copyright - copyright and other information. - - ******************************************************************** --> - -<!-- You should have this directly in your customization file. --> -<!-- This file is there only to retain backward compatibility. --> -<xsl:import href="autoidx-kosek.xsl"/> -<xsl:param name="index.method">kosek</xsl:param> - -</xsl:stylesheet> diff --git a/docbook-xsl-1.75.2/html/autoidx.xsl b/docbook-xsl-1.75.2/html/autoidx.xsl deleted file mode 100644 index 8d2160f..0000000 --- a/docbook-xsl-1.75.2/html/autoidx.xsl +++ /dev/null @@ -1,712 +0,0 @@ -<?xml version="1.0"?> -<!DOCTYPE xsl:stylesheet [ -<!ENTITY % common.entities SYSTEM "../common/entities.ent"> -%common.entities; -]> -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" - xmlns:exslt="http://exslt.org/common" - extension-element-prefixes="exslt" - exclude-result-prefixes="exslt" - version="1.0"> - -<!-- ******************************************************************** - $Id: autoidx.xsl 8399 2009-04-08 07:37:42Z bobstayton $ - ******************************************************************** - - This file is part of the XSL DocBook Stylesheet distribution. - See ../README or http://docbook.sf.net/release/xsl/current/ for - copyright and other information. - - ******************************************************************** --> - -<!-- ==================================================================== --> -<!-- The "basic" method derived from Jeni Tennison's work. --> -<!-- The "kosek" method contributed by Jirka Kosek. --> -<!-- The "kimber" method contributed by Eliot Kimber of Innodata Isogen. --> - -<xsl:variable name="kimber.imported" select="0"/> -<xsl:variable name="kosek.imported" select="0"/> - -<xsl:key name="letter" - match="indexterm" - use="translate(substring(&primary;, 1, 1),&lowercase;,&uppercase;)"/> - -<xsl:key name="primary" - match="indexterm" - use="&primary;"/> - -<xsl:key name="secondary" - match="indexterm" - use="concat(&primary;, &sep;, &secondary;)"/> - -<xsl:key name="tertiary" - match="indexterm" - use="concat(&primary;, &sep;, &secondary;, &sep;, &tertiary;)"/> - -<xsl:key name="endofrange" - match="indexterm[@class='endofrange']" - use="@startref"/> - -<xsl:key name="primary-section" - match="indexterm[not(secondary) and not(see)]" - use="concat(&primary;, &sep;, §ion.id;)"/> - -<xsl:key name="secondary-section" - match="indexterm[not(tertiary) and not(see)]" - use="concat(&primary;, &sep;, &secondary;, &sep;, §ion.id;)"/> - -<xsl:key name="tertiary-section" - match="indexterm[not(see)]" - use="concat(&primary;, &sep;, &secondary;, &sep;, &tertiary;, &sep;, §ion.id;)"/> - -<xsl:key name="see-also" - match="indexterm[seealso]" - use="concat(&primary;, &sep;, &secondary;, &sep;, &tertiary;, &sep;, seealso)"/> - -<xsl:key name="see" - match="indexterm[see]" - use="concat(&primary;, &sep;, &secondary;, &sep;, &tertiary;, &sep;, see)"/> - -<xsl:key name="sections" match="*[@id or @xml:id]" use="@id|@xml:id"/> - - -<xsl:template name="generate-index"> - <xsl:param name="scope" select="(ancestor::book|/)[last()]"/> - - <xsl:choose> - <xsl:when test="$index.method = 'kosek'"> - <xsl:call-template name="generate-kosek-index"> - <xsl:with-param name="scope" select="$scope"/> - </xsl:call-template> - </xsl:when> - <xsl:when test="$index.method = 'kimber'"> - <xsl:call-template name="generate-kimber-index"> - <xsl:with-param name="scope" select="$scope"/> - </xsl:call-template> - </xsl:when> - - <xsl:otherwise> - <xsl:call-template name="generate-basic-index"> - <xsl:with-param name="scope" select="$scope"/> - </xsl:call-template> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template name="generate-basic-index"> - <xsl:param name="scope" select="NOTANODE"/> - - <xsl:variable name="role"> - <xsl:if test="$index.on.role != 0"> - <xsl:value-of select="@role"/> - </xsl:if> - </xsl:variable> - - <xsl:variable name="type"> - <xsl:if test="$index.on.type != 0"> - <xsl:value-of select="@type"/> - </xsl:if> - </xsl:variable> - - <xsl:variable name="terms" - select="//indexterm - [count(.|key('letter', - translate(substring(&primary;, 1, 1), - &lowercase;, - &uppercase;)) - [&scope;][1]) = 1 - and not(@class = 'endofrange')]"/> - - <xsl:variable name="alphabetical" - select="$terms[contains(concat(&lowercase;, &uppercase;), - substring(&primary;, 1, 1))]"/> - - <xsl:variable name="others" select="$terms[not(contains(concat(&lowercase;, - &uppercase;), - substring(&primary;, 1, 1)))]"/> - <div class="index"> - <xsl:if test="$others"> - <div class="indexdiv"> - <h3> - <xsl:call-template name="gentext"> - <xsl:with-param name="key" select="'index symbols'"/> - </xsl:call-template> - </h3> - <dl> - <xsl:apply-templates select="$others[count(.|key('primary', - &primary;)[&scope;][1]) = 1]" - mode="index-symbol-div"> - <xsl:with-param name="position" select="position()"/> - <xsl:with-param name="scope" select="$scope"/> - <xsl:with-param name="role" select="$role"/> - <xsl:with-param name="type" select="$type"/> - <xsl:sort select="translate(&primary;, &lowercase;, &uppercase;)"/> - </xsl:apply-templates> - </dl> - </div> - </xsl:if> - - <xsl:apply-templates select="$alphabetical[count(.|key('letter', - translate(substring(&primary;, 1, 1), - &lowercase;,&uppercase;))[&scope;][1]) = 1]" - mode="index-div-basic"> - <xsl:with-param name="position" select="position()"/> - <xsl:with-param name="scope" select="$scope"/> - <xsl:with-param name="role" select="$role"/> - <xsl:with-param name="type" select="$type"/> - <xsl:sort select="translate(&primary;, &lowercase;, &uppercase;)"/> - </xsl:apply-templates> - </div> -</xsl:template> - -<!-- This template not used if html/autoidx-kosek.xsl is imported --> -<xsl:template name="generate-kosek-index"> - <xsl:param name="scope" select="NOTANODE"/> - - <xsl:variable name="vendor" select="system-property('xsl:vendor')"/> - <xsl:if test="contains($vendor, 'libxslt')"> - <xsl:message terminate="yes"> - <xsl:text>ERROR: the 'kosek' index method does not </xsl:text> - <xsl:text>work with the xsltproc XSLT processor.</xsl:text> - </xsl:message> - </xsl:if> - - - <xsl:if test="$exsl.node.set.available = 0"> - <xsl:message terminate="yes"> - <xsl:text>ERROR: the 'kosek' index method requires the </xsl:text> - <xsl:text>exslt:node-set() function. Use a processor that </xsl:text> - <xsl:text>has it, or use a different index method.</xsl:text> - </xsl:message> - </xsl:if> - - <xsl:if test="$kosek.imported = 0"> - <xsl:message terminate="yes"> - <xsl:text>ERROR: the 'kosek' index method requires the </xsl:text> - <xsl:text>kosek index extensions be imported: </xsl:text> - <xsl:text> xsl:import href="html/autoidx-kosek.xsl"</xsl:text> - </xsl:message> - </xsl:if> - -</xsl:template> - -<!-- This template not used if html/autoidx-kimber.xsl is imported --> -<xsl:template name="generate-kimber-index"> - <xsl:param name="scope" select="NOTANODE"/> - - <xsl:variable name="vendor" select="system-property('xsl:vendor')"/> - <xsl:if test="not(contains($vendor, 'SAXON '))"> - <xsl:message terminate="yes"> - <xsl:text>ERROR: the 'kimber' index method requires the </xsl:text> - <xsl:text>Saxon version 6 or 8 XSLT processor.</xsl:text> - </xsl:message> - </xsl:if> - - <xsl:if test="$kimber.imported = 0"> - <xsl:message terminate="yes"> - <xsl:text>ERROR: the 'kimber' index method requires the </xsl:text> - <xsl:text>kimber index extensions be imported: </xsl:text> - <xsl:text> xsl:import href="html/autoidx-kimber.xsl"</xsl:text> - </xsl:message> - </xsl:if> - -</xsl:template> - -<xsl:template match="indexterm" mode="index-div-basic"> - <xsl:param name="scope" select="."/> - <xsl:param name="role" select="''"/> - <xsl:param name="type" select="''"/> - - <xsl:variable name="key" - select="translate(substring(&primary;, 1, 1), - &lowercase;,&uppercase;)"/> - - <xsl:if test="key('letter', $key)[&scope;] - [count(.|key('primary', &primary;)[&scope;][1]) = 1]"> - <div class="indexdiv"> - <xsl:if test="contains(concat(&lowercase;, &uppercase;), $key)"> - <h3> - <xsl:value-of select="translate($key, &lowercase;, &uppercase;)"/> - </h3> - </xsl:if> - <dl> - <xsl:apply-templates select="key('letter', $key)[&scope;] - [count(.|key('primary', &primary;) - [&scope;][1])=1]" - mode="index-primary"> - <xsl:with-param name="position" select="position()"/> - <xsl:with-param name="scope" select="$scope"/> - <xsl:with-param name="role" select="$role"/> - <xsl:with-param name="type" select="$type"/> - <xsl:sort select="translate(&primary;, &lowercase;, &uppercase;)"/> - </xsl:apply-templates> - </dl> - </div> - </xsl:if> -</xsl:template> - -<xsl:template match="indexterm" mode="index-symbol-div"> - <xsl:param name="scope" select="/"/> - <xsl:param name="role" select="''"/> - <xsl:param name="type" select="''"/> - - <xsl:variable name="key" select="translate(substring(&primary;, 1, 1), - &lowercase;,&uppercase;)"/> - - <xsl:apply-templates select="key('letter', $key) - [&scope;][count(.|key('primary', &primary;)[1]) = 1]" - mode="index-primary"> - <xsl:with-param name="position" select="position()"/> - <xsl:with-param name="scope" select="$scope"/> - <xsl:with-param name="role" select="$role"/> - <xsl:with-param name="type" select="$type"/> - <xsl:sort select="translate(&primary;, &lowercase;, &uppercase;)"/> - </xsl:apply-templates> -</xsl:template> - -<xsl:template match="indexterm" mode="index-primary"> - <xsl:param name="scope" select="."/> - <xsl:param name="role" select="''"/> - <xsl:param name="type" select="''"/> - - <xsl:variable name="key" select="&primary;"/> - <xsl:variable name="refs" select="key('primary', $key)[&scope;]"/> - <dt> - <xsl:for-each select="$refs/primary"> - <xsl:if test="@id or @xml:id"> - <a name="{(@id|@xml:id)[1]}"/> - </xsl:if> - </xsl:for-each> - <xsl:value-of select="primary"/> - <xsl:choose> - <xsl:when test="$index.links.to.section = 1"> - <xsl:for-each select="$refs[generate-id() = generate-id(key('primary-section', concat($key, &sep;, §ion.id;))[&scope;][1])]"> - <xsl:apply-templates select="." mode="reference"> - <xsl:with-param name="position" select="position()"/> - <xsl:with-param name="scope" select="$scope"/> - <xsl:with-param name="role" select="$role"/> - <xsl:with-param name="type" select="$type"/> - </xsl:apply-templates> - </xsl:for-each> - </xsl:when> - <xsl:otherwise> - <xsl:for-each select="$refs[&scope;]"> - <xsl:apply-templates select="." mode="reference"> - <xsl:with-param name="position" select="position()"/> - <xsl:with-param name="scope" select="$scope"/> - <xsl:with-param name="role" select="$role"/> - <xsl:with-param name="type" select="$type"/> - </xsl:apply-templates> - </xsl:for-each> - </xsl:otherwise> - </xsl:choose> - - <xsl:if test="$refs[not(secondary)]/*[self::see]"> - <xsl:apply-templates select="$refs[generate-id() = generate-id(key('see', concat(&primary;, &sep;, &sep;, &sep;, see))[&scope;][1])]" - mode="index-see"> - <xsl:with-param name="position" select="position()"/> - <xsl:with-param name="scope" select="$scope"/> - <xsl:with-param name="role" select="$role"/> - <xsl:with-param name="type" select="$type"/> - <xsl:sort select="translate(see, &lowercase;, &uppercase;)"/> - </xsl:apply-templates> - </xsl:if> - </dt> - <xsl:if test="$refs/secondary or $refs[not(secondary)]/*[self::seealso]"> - <dd> - <dl> - <xsl:apply-templates select="$refs[generate-id() = generate-id(key('see-also', concat(&primary;, &sep;, &sep;, &sep;, seealso))[&scope;][1])]" - mode="index-seealso"> - <xsl:with-param name="position" select="position()"/> - <xsl:with-param name="scope" select="$scope"/> - <xsl:with-param name="role" select="$role"/> - <xsl:with-param name="type" select="$type"/> - <xsl:sort select="translate(seealso, &lowercase;, &uppercase;)"/> - </xsl:apply-templates> - <xsl:apply-templates select="$refs[secondary and count(.|key('secondary', concat($key, &sep;, &secondary;))[&scope;][1]) = 1]" - mode="index-secondary"> - <xsl:with-param name="position" select="position()"/> - <xsl:with-param name="scope" select="$scope"/> - <xsl:with-param name="role" select="$role"/> - <xsl:with-param name="type" select="$type"/> - <xsl:sort select="translate(&secondary;, &lowercase;, &uppercase;)"/> - </xsl:apply-templates> - </dl> - </dd> - </xsl:if> -</xsl:template> - -<xsl:template match="indexterm" mode="index-secondary"> - <xsl:param name="scope" select="."/> - <xsl:param name="role" select="''"/> - <xsl:param name="type" select="''"/> - - <xsl:variable name="key" select="concat(&primary;, &sep;, &secondary;)"/> - <xsl:variable name="refs" select="key('secondary', $key)[&scope;]"/> - <dt> - <xsl:for-each select="$refs/secondary"> - <xsl:if test="@id or @xml:id"> - <a name="{(@id|@xml:id)[1]}"/> - </xsl:if> - </xsl:for-each> - <xsl:value-of select="secondary"/> - <xsl:choose> - <xsl:when test="$index.links.to.section = 1"> - <xsl:for-each select="$refs[generate-id() = generate-id(key('secondary-section', concat($key, &sep;, §ion.id;))[&scope;][1])]"> - <xsl:apply-templates select="." mode="reference"> - <xsl:with-param name="position" select="position()"/> - <xsl:with-param name="scope" select="$scope"/> - <xsl:with-param name="role" select="$role"/> - <xsl:with-param name="type" select="$type"/> - </xsl:apply-templates> - </xsl:for-each> - </xsl:when> - <xsl:otherwise> - <xsl:for-each select="$refs[&scope;]"> - <xsl:apply-templates select="." mode="reference"> - <xsl:with-param name="position" select="position()"/> - <xsl:with-param name="scope" select="$scope"/> - <xsl:with-param name="role" select="$role"/> - <xsl:with-param name="type" select="$type"/> - </xsl:apply-templates> - </xsl:for-each> - </xsl:otherwise> - </xsl:choose> - - <xsl:if test="$refs[not(tertiary)]/*[self::see]"> - <xsl:apply-templates select="$refs[generate-id() = generate-id(key('see', concat(&primary;, &sep;, &secondary;, &sep;, &sep;, see))[&scope;][1])]" - mode="index-see"> - <xsl:with-param name="position" select="position()"/> - <xsl:with-param name="scope" select="$scope"/> - <xsl:with-param name="role" select="$role"/> - <xsl:with-param name="type" select="$type"/> - <xsl:sort select="translate(see, &lowercase;, &uppercase;)"/> - </xsl:apply-templates> - </xsl:if> - </dt> - <xsl:if test="$refs/tertiary or $refs[not(tertiary)]/*[self::seealso]"> - <dd> - <dl> - <xsl:apply-templates select="$refs[generate-id() = generate-id(key('see-also', concat(&primary;, &sep;, &secondary;, &sep;, &sep;, seealso))[&scope;][1])]" - mode="index-seealso"> - <xsl:with-param name="position" select="position()"/> - <xsl:with-param name="scope" select="$scope"/> - <xsl:with-param name="role" select="$role"/> - <xsl:with-param name="type" select="$type"/> - <xsl:sort select="translate(seealso, &lowercase;, &uppercase;)"/> - </xsl:apply-templates> - <xsl:apply-templates select="$refs[tertiary and count(.|key('tertiary', concat($key, &sep;, &tertiary;))[&scope;][1]) = 1]" - mode="index-tertiary"> - <xsl:with-param name="position" select="position()"/> - <xsl:with-param name="scope" select="$scope"/> - <xsl:with-param name="role" select="$role"/> - <xsl:with-param name="type" select="$type"/> - <xsl:sort select="translate(&tertiary;, &lowercase;, &uppercase;)"/> - </xsl:apply-templates> - </dl> - </dd> - </xsl:if> -</xsl:template> - -<xsl:template match="indexterm" mode="index-tertiary"> - <xsl:param name="scope" select="."/> - <xsl:param name="role" select="''"/> - <xsl:param name="type" select="''"/> - - <xsl:variable name="key" select="concat(&primary;, &sep;, &secondary;, &sep;, &tertiary;)"/> - <xsl:variable name="refs" select="key('tertiary', $key)[&scope;]"/> - <dt> - <xsl:for-each select="$refs/tertiary"> - <xsl:if test="@id or @xml:id"> - <a name="{(@id|@xml:id)[1]}"/> - </xsl:if> - </xsl:for-each> - <xsl:value-of select="tertiary"/> - <xsl:choose> - <xsl:when test="$index.links.to.section = 1"> - <xsl:for-each select="$refs[generate-id() = generate-id(key('tertiary-section', concat($key, &sep;, §ion.id;))[&scope;][1])]"> - <xsl:apply-templates select="." mode="reference"> - <xsl:with-param name="position" select="position()"/> - <xsl:with-param name="scope" select="$scope"/> - <xsl:with-param name="role" select="$role"/> - <xsl:with-param name="type" select="$type"/> - </xsl:apply-templates> - </xsl:for-each> - </xsl:when> - <xsl:otherwise> - <xsl:for-each select="$refs[&scope;]"> - <xsl:apply-templates select="." mode="reference"> - <xsl:with-param name="position" select="position()"/> - <xsl:with-param name="scope" select="$scope"/> - <xsl:with-param name="role" select="$role"/> - <xsl:with-param name="type" select="$type"/> - </xsl:apply-templates> - </xsl:for-each> - </xsl:otherwise> - </xsl:choose> - - <xsl:if test="$refs/see"> - <xsl:apply-templates select="$refs[generate-id() = generate-id(key('see', concat(&primary;, &sep;, &secondary;, &sep;, &tertiary;, &sep;, see))[&scope;][1])]" - mode="index-see"> - <xsl:with-param name="position" select="position()"/> - <xsl:with-param name="scope" select="$scope"/> - <xsl:with-param name="role" select="$role"/> - <xsl:with-param name="type" select="$type"/> - <xsl:sort select="translate(see, &lowercase;, &uppercase;)"/> - </xsl:apply-templates> - </xsl:if> - </dt> - <xsl:if test="$refs/seealso"> - <dd> - <dl> - <xsl:apply-templates select="$refs[generate-id() = generate-id(key('see-also', concat(&primary;, &sep;, &secondary;, &sep;, &tertiary;, &sep;, seealso))[&scope;][1])]" - mode="index-seealso"> - <xsl:with-param name="position" select="position()"/> - <xsl:with-param name="scope" select="$scope"/> - <xsl:with-param name="role" select="$role"/> - <xsl:with-param name="type" select="$type"/> - <xsl:sort select="translate(seealso, &lowercase;, &uppercase;)"/> - </xsl:apply-templates> - </dl> - </dd> - </xsl:if> -</xsl:template> - -<xsl:template match="indexterm" mode="reference"> - <xsl:param name="scope" select="."/> - <xsl:param name="role" select="''"/> - <xsl:param name="type" select="''"/> - <xsl:param name="position"/> - - <xsl:variable name="term.separator"> - <xsl:call-template name="index.separator"> - <xsl:with-param name="key" select="'index.term.separator'"/> - </xsl:call-template> - </xsl:variable> - - <xsl:variable name="number.separator"> - <xsl:call-template name="index.separator"> - <xsl:with-param name="key" select="'index.number.separator'"/> - </xsl:call-template> - </xsl:variable> - - <xsl:variable name="range.separator"> - <xsl:call-template name="index.separator"> - <xsl:with-param name="key" select="'index.range.separator'"/> - </xsl:call-template> - </xsl:variable> - - <xsl:choose> - <xsl:when test="$position = 1"> - <xsl:value-of select="$term.separator"/> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="$number.separator"/> - </xsl:otherwise> - </xsl:choose> - - <xsl:choose> - <xsl:when test="@zone and string(@zone)"> - <xsl:call-template name="reference"> - <xsl:with-param name="zones" select="normalize-space(@zone)"/> - <xsl:with-param name="position" select="position()"/> - <xsl:with-param name="scope" select="$scope"/> - <xsl:with-param name="role" select="$role"/> - <xsl:with-param name="type" select="$type"/> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <a> - <xsl:apply-templates select="." mode="class.attribute"/> - <xsl:variable name="title"> - <xsl:choose> - <xsl:when test="§ion;/titleabbrev and $index.prefer.titleabbrev != 0"> - <xsl:apply-templates select="§ion;" mode="titleabbrev.markup"/> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates select="§ion;" mode="title.markup"/> - </xsl:otherwise> - </xsl:choose> - </xsl:variable> - - <xsl:attribute name="href"> - <xsl:choose> - <xsl:when test="$index.links.to.section = 1"> - <xsl:call-template name="href.target"> - <xsl:with-param name="object" select="§ion;"/> - <xsl:with-param name="context" select="//index[&scope;][1]"/> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <xsl:call-template name="href.target"> - <xsl:with-param name="object" select="."/> - <xsl:with-param name="context" select="//index[&scope;][1]"/> - </xsl:call-template> - </xsl:otherwise> - </xsl:choose> - - </xsl:attribute> - - <xsl:value-of select="$title"/> <!-- text only --> - </a> - - <xsl:variable name="id" select="(@id|@xml:id)[1]"/> - <xsl:if test="key('endofrange', $id)[&scope;]"> - <xsl:apply-templates select="key('endofrange', $id)[&scope;][last()]" - mode="reference"> - <xsl:with-param name="position" select="position()"/> - <xsl:with-param name="scope" select="$scope"/> - <xsl:with-param name="role" select="$role"/> - <xsl:with-param name="type" select="$type"/> - <xsl:with-param name="separator" select="$range.separator"/> - </xsl:apply-templates> - </xsl:if> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template name="reference"> - <xsl:param name="scope" select="."/> - <xsl:param name="role" select="''"/> - <xsl:param name="type" select="''"/> - <xsl:param name="zones"/> - - <xsl:choose> - <xsl:when test="contains($zones, ' ')"> - <xsl:variable name="zone" select="substring-before($zones, ' ')"/> - <xsl:variable name="target" select="key('sections', $zone)"/> - - <a> - <xsl:apply-templates select="." mode="class.attribute"/> - <xsl:attribute name="href"> - <xsl:call-template name="href.target"> - <xsl:with-param name="object" select="$target[1]"/> - <xsl:with-param name="context" select="//index[&scope;][1]"/> - </xsl:call-template> - </xsl:attribute> - <xsl:apply-templates select="$target[1]" mode="index-title-content"/> - </a> - <xsl:text>, </xsl:text> - <xsl:call-template name="reference"> - <xsl:with-param name="zones" select="substring-after($zones, ' ')"/> - <xsl:with-param name="position" select="position()"/> - <xsl:with-param name="scope" select="$scope"/> - <xsl:with-param name="role" select="$role"/> - <xsl:with-param name="type" select="$type"/> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <xsl:variable name="zone" select="$zones"/> - <xsl:variable name="target" select="key('sections', $zone)"/> - - <a> - <xsl:apply-templates select="." mode="class.attribute"/> - <xsl:attribute name="href"> - <xsl:call-template name="href.target"> - <xsl:with-param name="object" select="$target[1]"/> - <xsl:with-param name="context" select="//index[&scope;][1]"/> - </xsl:call-template> - </xsl:attribute> - <xsl:apply-templates select="$target[1]" mode="index-title-content"/> - </a> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template match="indexterm" mode="index-see"> - <xsl:param name="scope" select="."/> - <xsl:param name="role" select="''"/> - <xsl:param name="type" select="''"/> - - <xsl:text> (</xsl:text> - <xsl:call-template name="gentext"> - <xsl:with-param name="key" select="'see'"/> - </xsl:call-template> - <xsl:text> </xsl:text> - <xsl:value-of select="see"/> - <xsl:text>)</xsl:text> -</xsl:template> - -<xsl:template match="indexterm" mode="index-seealso"> - <xsl:param name="scope" select="."/> - <xsl:param name="role" select="''"/> - <xsl:param name="type" select="''"/> - - <xsl:for-each select="seealso"> - <xsl:sort select="translate(., &lowercase;, &uppercase;)"/> - <dt> - <xsl:text>(</xsl:text> - <xsl:call-template name="gentext"> - <xsl:with-param name="key" select="'seealso'"/> - </xsl:call-template> - <xsl:text> </xsl:text> - <xsl:value-of select="."/> - <xsl:text>)</xsl:text> - </dt> - </xsl:for-each> -</xsl:template> - -<xsl:template match="*" mode="index-title-content"> - <xsl:variable name="title"> - <xsl:apply-templates select="§ion;" mode="title.markup"/> - </xsl:variable> - - <xsl:value-of select="$title"/> -</xsl:template> - -<xsl:template name="index.separator"> - <xsl:param name="key" select="''"/> - <xsl:param name="lang"> - <xsl:call-template name="l10n.language"/> - </xsl:param> - - <xsl:choose> - <xsl:when test="$key = 'index.term.separator'"> - <xsl:choose> - <!-- Use the override if not blank --> - <xsl:when test="$index.term.separator != ''"> - <xsl:copy-of select="$index.term.separator"/> - </xsl:when> - <xsl:otherwise> - <xsl:call-template name="gentext.template"> - <xsl:with-param name="lang" select="$lang"/> - <xsl:with-param name="context">index</xsl:with-param> - <xsl:with-param name="name">term-separator</xsl:with-param> - </xsl:call-template> - </xsl:otherwise> - </xsl:choose> - </xsl:when> - <xsl:when test="$key = 'index.number.separator'"> - <xsl:choose> - <!-- Use the override if not blank --> - <xsl:when test="$index.number.separator != ''"> - <xsl:copy-of select="$index.number.separator"/> - </xsl:when> - <xsl:otherwise> - <xsl:call-template name="gentext.template"> - <xsl:with-param name="lang" select="$lang"/> - <xsl:with-param name="context">index</xsl:with-param> - <xsl:with-param name="name">number-separator</xsl:with-param> - </xsl:call-template> - </xsl:otherwise> - </xsl:choose> - </xsl:when> - <xsl:when test="$key = 'index.range.separator'"> - <xsl:choose> - <!-- Use the override if not blank --> - <xsl:when test="$index.range.separator != ''"> - <xsl:copy-of select="$index.range.separator"/> - </xsl:when> - <xsl:otherwise> - <xsl:call-template name="gentext.template"> - <xsl:with-param name="lang" select="$lang"/> - <xsl:with-param name="context">index</xsl:with-param> - <xsl:with-param name="name">range-separator</xsl:with-param> - </xsl:call-template> - </xsl:otherwise> - </xsl:choose> - </xsl:when> - </xsl:choose> -</xsl:template> - -</xsl:stylesheet> diff --git a/docbook-xsl-1.75.2/html/autotoc.xsl b/docbook-xsl-1.75.2/html/autotoc.xsl deleted file mode 100644 index c949922..0000000 --- a/docbook-xsl-1.75.2/html/autotoc.xsl +++ /dev/null @@ -1,676 +0,0 @@ -<?xml version='1.0'?> -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" - version='1.0'> - -<!-- ******************************************************************** - $Id: autotoc.xsl 8315 2009-03-11 21:33:31Z bobstayton $ - ******************************************************************** - - This file is part of the XSL DocBook Stylesheet distribution. - See ../README or http://docbook.sf.net/release/xsl/current/ for - copyright and other information. - - ******************************************************************** --> - -<xsl:variable name="toc.listitem.type"> - <xsl:choose> - <xsl:when test="$toc.list.type = 'dl'">dt</xsl:when> - <xsl:otherwise>li</xsl:otherwise> - </xsl:choose> -</xsl:variable> - -<!-- this is just hack because dl and ul aren't completely isomorphic --> -<xsl:variable name="toc.dd.type"> - <xsl:choose> - <xsl:when test="$toc.list.type = 'dl'">dd</xsl:when> - <xsl:otherwise></xsl:otherwise> - </xsl:choose> -</xsl:variable> - -<xsl:template name="make.toc"> - <xsl:param name="toc-context" select="."/> - <xsl:param name="toc.title.p" select="true()"/> - <xsl:param name="nodes" select="/NOT-AN-ELEMENT"/> - - <xsl:variable name="nodes.plus" select="$nodes | qandaset"/> - - <xsl:variable name="toc.title"> - <xsl:if test="$toc.title.p"> - <p> - <b> - <xsl:call-template name="gentext"> - <xsl:with-param name="key">TableofContents</xsl:with-param> - </xsl:call-template> - </b> - </p> - </xsl:if> - </xsl:variable> - - <xsl:choose> - <xsl:when test="$manual.toc != ''"> - <xsl:variable name="id"> - <xsl:call-template name="object.id"/> - </xsl:variable> - <xsl:variable name="toc" select="document($manual.toc, .)"/> - <xsl:variable name="tocentry" select="$toc//tocentry[@linkend=$id]"/> - <xsl:if test="$tocentry and $tocentry/*"> - <div class="toc"> - <xsl:copy-of select="$toc.title"/> - <xsl:element name="{$toc.list.type}"> - <xsl:call-template name="manual-toc"> - <xsl:with-param name="tocentry" select="$tocentry/*[1]"/> - </xsl:call-template> - </xsl:element> - </div> - </xsl:if> - </xsl:when> - <xsl:otherwise> - <xsl:choose> - <xsl:when test="$qanda.in.toc != 0"> - <xsl:if test="$nodes.plus"> - <div class="toc"> - <xsl:copy-of select="$toc.title"/> - <xsl:element name="{$toc.list.type}"> - <xsl:apply-templates select="$nodes.plus" mode="toc"> - <xsl:with-param name="toc-context" select="$toc-context"/> - </xsl:apply-templates> - </xsl:element> - </div> - </xsl:if> - </xsl:when> - <xsl:otherwise> - <xsl:if test="$nodes"> - <div class="toc"> - <xsl:copy-of select="$toc.title"/> - <xsl:element name="{$toc.list.type}"> - <xsl:apply-templates select="$nodes" mode="toc"> - <xsl:with-param name="toc-context" select="$toc-context"/> - </xsl:apply-templates> - </xsl:element> - </div> - </xsl:if> - </xsl:otherwise> - </xsl:choose> - - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template name="make.lots"> - <xsl:param name="toc.params" select="''"/> - <xsl:param name="toc"/> - - <xsl:if test="contains($toc.params, 'toc')"> - <xsl:copy-of select="$toc"/> - </xsl:if> - - <xsl:if test="contains($toc.params, 'figure')"> - <xsl:call-template name="list.of.titles"> - <xsl:with-param name="titles" select="'figure'"/> - <xsl:with-param name="nodes" select=".//figure"/> - </xsl:call-template> - </xsl:if> - - <xsl:if test="contains($toc.params, 'table')"> - <xsl:call-template name="list.of.titles"> - <xsl:with-param name="titles" select="'table'"/> - <xsl:with-param name="nodes" select=".//table"/> - </xsl:call-template> - </xsl:if> - - <xsl:if test="contains($toc.params, 'example')"> - <xsl:call-template name="list.of.titles"> - <xsl:with-param name="titles" select="'example'"/> - <xsl:with-param name="nodes" select=".//example"/> - </xsl:call-template> - </xsl:if> - - <xsl:if test="contains($toc.params, 'equation')"> - <xsl:call-template name="list.of.titles"> - <xsl:with-param name="titles" select="'equation'"/> - <xsl:with-param name="nodes" select=".//equation[title or info/title]"/> - </xsl:call-template> - </xsl:if> - - <xsl:if test="contains($toc.params, 'procedure')"> - <xsl:call-template name="list.of.titles"> - <xsl:with-param name="titles" select="'procedure'"/> - <xsl:with-param name="nodes" select=".//procedure[title]"/> - </xsl:call-template> - </xsl:if> -</xsl:template> - -<!-- ====================================================================== --> - -<xsl:template name="set.toc"> - <xsl:param name="toc-context" select="."/> - <xsl:param name="toc.title.p" select="true()"/> - - <xsl:call-template name="make.toc"> - <xsl:with-param name="toc-context" select="$toc-context"/> - <xsl:with-param name="toc.title.p" select="$toc.title.p"/> - <xsl:with-param name="nodes" select="book|setindex"/> - </xsl:call-template> -</xsl:template> - -<xsl:template name="division.toc"> - <xsl:param name="toc-context" select="."/> - <xsl:param name="toc.title.p" select="true()"/> - - <xsl:call-template name="make.toc"> - <xsl:with-param name="toc-context" select="$toc-context"/> - <xsl:with-param name="toc.title.p" select="$toc.title.p"/> - <xsl:with-param name="nodes" select="part|reference - |preface|chapter|appendix - |article - |bibliography|glossary|index - |refentry - |bridgehead[$bridgehead.in.toc != 0]"/> - - </xsl:call-template> -</xsl:template> - -<xsl:template name="component.toc"> - <xsl:param name="toc-context" select="."/> - <xsl:param name="toc.title.p" select="true()"/> - - <xsl:call-template name="make.toc"> - <xsl:with-param name="toc-context" select="$toc-context"/> - <xsl:with-param name="toc.title.p" select="$toc.title.p"/> - <xsl:with-param name="nodes" select="section|sect1 - |simplesect[$simplesect.in.toc != 0] - |refentry - |article|bibliography|glossary - |appendix|index - |bridgehead[not(@renderas) - and $bridgehead.in.toc != 0] - |.//bridgehead[@renderas='sect1' - and $bridgehead.in.toc != 0]"/> - </xsl:call-template> -</xsl:template> - -<xsl:template name="component.toc.separator"> - <!-- Customize to output something between - component.toc and first output --> -</xsl:template> - -<xsl:template name="section.toc"> - <xsl:param name="toc-context" select="."/> - <xsl:param name="toc.title.p" select="true()"/> - - <xsl:call-template name="make.toc"> - <xsl:with-param name="toc-context" select="$toc-context"/> - <xsl:with-param name="toc.title.p" select="$toc.title.p"/> - <xsl:with-param name="nodes" - select="section|sect1|sect2|sect3|sect4|sect5|refentry - |bridgehead[$bridgehead.in.toc != 0]"/> - - </xsl:call-template> -</xsl:template> - -<xsl:template name="section.toc.separator"> - <!-- Customize to output something between - section.toc and first output --> -</xsl:template> -<!-- ==================================================================== --> - -<xsl:template name="subtoc"> - <xsl:param name="toc-context" select="."/> - <xsl:param name="nodes" select="NOT-AN-ELEMENT"/> - - <xsl:variable name="nodes.plus" select="$nodes | qandaset"/> - - <xsl:variable name="subtoc"> - <xsl:element name="{$toc.list.type}"> - <xsl:choose> - <xsl:when test="$qanda.in.toc != 0"> - <xsl:apply-templates mode="toc" select="$nodes.plus"> - <xsl:with-param name="toc-context" select="$toc-context"/> - </xsl:apply-templates> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates mode="toc" select="$nodes"> - <xsl:with-param name="toc-context" select="$toc-context"/> - </xsl:apply-templates> - </xsl:otherwise> - </xsl:choose> - </xsl:element> - </xsl:variable> - - <xsl:variable name="depth"> - <xsl:choose> - <xsl:when test="local-name(.) = 'section'"> - <xsl:value-of select="count(ancestor::section) + 1"/> - </xsl:when> - <xsl:when test="local-name(.) = 'sect1'">1</xsl:when> - <xsl:when test="local-name(.) = 'sect2'">2</xsl:when> - <xsl:when test="local-name(.) = 'sect3'">3</xsl:when> - <xsl:when test="local-name(.) = 'sect4'">4</xsl:when> - <xsl:when test="local-name(.) = 'sect5'">5</xsl:when> - <xsl:when test="local-name(.) = 'refsect1'">1</xsl:when> - <xsl:when test="local-name(.) = 'refsect2'">2</xsl:when> - <xsl:when test="local-name(.) = 'refsect3'">3</xsl:when> - <xsl:when test="local-name(.) = 'simplesect'"> - <!-- sigh... --> - <xsl:choose> - <xsl:when test="local-name(..) = 'section'"> - <xsl:value-of select="count(ancestor::section)"/> - </xsl:when> - <xsl:when test="local-name(..) = 'sect1'">2</xsl:when> - <xsl:when test="local-name(..) = 'sect2'">3</xsl:when> - <xsl:when test="local-name(..) = 'sect3'">4</xsl:when> - <xsl:when test="local-name(..) = 'sect4'">5</xsl:when> - <xsl:when test="local-name(..) = 'sect5'">6</xsl:when> - <xsl:when test="local-name(..) = 'refsect1'">2</xsl:when> - <xsl:when test="local-name(..) = 'refsect2'">3</xsl:when> - <xsl:when test="local-name(..) = 'refsect3'">4</xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:when> - <xsl:otherwise>0</xsl:otherwise> - </xsl:choose> - </xsl:variable> - - <xsl:variable name="depth.from.context" select="count(ancestor::*)-count($toc-context/ancestor::*)"/> - - <xsl:variable name="subtoc.list"> - <xsl:choose> - <xsl:when test="$toc.dd.type = ''"> - <xsl:copy-of select="$subtoc"/> - </xsl:when> - <xsl:otherwise> - <xsl:element name="{$toc.dd.type}"> - <xsl:copy-of select="$subtoc"/> - </xsl:element> - </xsl:otherwise> - </xsl:choose> - </xsl:variable> - - <xsl:element name="{$toc.listitem.type}"> - <xsl:call-template name="toc.line"> - <xsl:with-param name="toc-context" select="$toc-context"/> - </xsl:call-template> - <xsl:if test="$toc.listitem.type = 'li' - and $toc.section.depth > $depth and - ( ($qanda.in.toc = 0 and count($nodes)>0) or - ($qanda.in.toc != 0 and count($nodes.plus)>0) ) - and $toc.max.depth > $depth.from.context"> - <xsl:copy-of select="$subtoc.list"/> - </xsl:if> - </xsl:element> - <xsl:if test="$toc.listitem.type != 'li' - and $toc.section.depth > $depth and - ( ($qanda.in.toc = 0 and count($nodes)>0) or - ($qanda.in.toc != 0 and count($nodes.plus)>0) ) - and $toc.max.depth > $depth.from.context"> - <xsl:copy-of select="$subtoc.list"/> - </xsl:if> -</xsl:template> - -<xsl:template name="toc.line"> - <xsl:param name="toc-context" select="."/> - <xsl:param name="depth" select="1"/> - <xsl:param name="depth.from.context" select="8"/> - - <span> - <xsl:attribute name="class"><xsl:value-of select="local-name(.)"/></xsl:attribute> - - <!-- * if $autotoc.label.in.hyperlink is zero, then output the label --> - <!-- * before the hyperlinked title (as the DSSSL stylesheet does) --> - <xsl:if test="$autotoc.label.in.hyperlink = 0"> - <xsl:variable name="label"> - <xsl:apply-templates select="." mode="label.markup"/> - </xsl:variable> - <xsl:copy-of select="$label"/> - <xsl:if test="$label != ''"> - <xsl:value-of select="$autotoc.label.separator"/> - </xsl:if> - </xsl:if> - - <a> - <xsl:attribute name="href"> - <xsl:call-template name="href.target"> - <xsl:with-param name="context" select="$toc-context"/> - <xsl:with-param name="toc-context" select="$toc-context"/> - </xsl:call-template> - </xsl:attribute> - - <!-- * if $autotoc.label.in.hyperlink is non-zero, then output the label --> - <!-- * as part of the hyperlinked title --> - <xsl:if test="not($autotoc.label.in.hyperlink = 0)"> - <xsl:variable name="label"> - <xsl:apply-templates select="." mode="label.markup"/> - </xsl:variable> - <xsl:copy-of select="$label"/> - <xsl:if test="$label != ''"> - <xsl:value-of select="$autotoc.label.separator"/> - </xsl:if> - </xsl:if> - - <xsl:apply-templates select="." mode="titleabbrev.markup"/> - </a> - </span> -</xsl:template> - -<xsl:template match="book" mode="toc"> - <xsl:param name="toc-context" select="."/> - - <xsl:call-template name="subtoc"> - <xsl:with-param name="toc-context" select="$toc-context"/> - <xsl:with-param name="nodes" select="part|reference - |preface|chapter|appendix - |article - |bibliography|glossary|index - |refentry - |bridgehead[$bridgehead.in.toc != 0]"/> - </xsl:call-template> -</xsl:template> - -<xsl:template match="setindex" mode="toc"> - <xsl:param name="toc-context" select="."/> - - <!-- If the setindex tag is not empty, it should be it in the TOC --> - <xsl:if test="* or $generate.index != 0"> - <xsl:call-template name="subtoc"> - <xsl:with-param name="toc-context" select="$toc-context"/> - </xsl:call-template> - </xsl:if> -</xsl:template> - -<xsl:template match="part|reference" mode="toc"> - <xsl:param name="toc-context" select="."/> - - <xsl:call-template name="subtoc"> - <xsl:with-param name="toc-context" select="$toc-context"/> - <xsl:with-param name="nodes" select="appendix|chapter|article - |index|glossary|bibliography - |preface|reference|refentry - |bridgehead[$bridgehead.in.toc != 0]"/> - </xsl:call-template> -</xsl:template> - -<xsl:template match="preface|chapter|appendix|article" mode="toc"> - <xsl:param name="toc-context" select="."/> - - <xsl:call-template name="subtoc"> - <xsl:with-param name="toc-context" select="$toc-context"/> - <xsl:with-param name="nodes" select="section|sect1 - |simplesect[$simplesect.in.toc != 0] - |refentry - |glossary|bibliography|index - |bridgehead[$bridgehead.in.toc != 0]"/> - </xsl:call-template> -</xsl:template> - -<xsl:template match="sect1" mode="toc"> - <xsl:param name="toc-context" select="."/> - <xsl:call-template name="subtoc"> - <xsl:with-param name="toc-context" select="$toc-context"/> - <xsl:with-param name="nodes" select="sect2 - |bridgehead[$bridgehead.in.toc != 0]"/> - </xsl:call-template> -</xsl:template> - -<xsl:template match="sect2" mode="toc"> - <xsl:param name="toc-context" select="."/> - - <xsl:call-template name="subtoc"> - <xsl:with-param name="toc-context" select="$toc-context"/> - <xsl:with-param name="nodes" select="sect3 - |bridgehead[$bridgehead.in.toc != 0]"/> - </xsl:call-template> -</xsl:template> - -<xsl:template match="sect3" mode="toc"> - <xsl:param name="toc-context" select="."/> - - <xsl:call-template name="subtoc"> - <xsl:with-param name="toc-context" select="$toc-context"/> - <xsl:with-param name="nodes" select="sect4 - |bridgehead[$bridgehead.in.toc != 0]"/> - </xsl:call-template> -</xsl:template> - -<xsl:template match="sect4" mode="toc"> - <xsl:param name="toc-context" select="."/> - - <xsl:call-template name="subtoc"> - <xsl:with-param name="toc-context" select="$toc-context"/> - <xsl:with-param name="nodes" select="sect5 - |bridgehead[$bridgehead.in.toc != 0]"/> - </xsl:call-template> -</xsl:template> - -<xsl:template match="sect5" mode="toc"> - <xsl:param name="toc-context" select="."/> - - <xsl:call-template name="subtoc"> - <xsl:with-param name="toc-context" select="$toc-context"/> - </xsl:call-template> -</xsl:template> - -<xsl:template match="simplesect" mode="toc"> - <xsl:param name="toc-context" select="."/> - - <xsl:call-template name="subtoc"> - <xsl:with-param name="toc-context" select="$toc-context"/> - </xsl:call-template> -</xsl:template> - -<xsl:template match="section" mode="toc"> - <xsl:param name="toc-context" select="."/> - - <xsl:call-template name="subtoc"> - <xsl:with-param name="toc-context" select="$toc-context"/> - <xsl:with-param name="nodes" select="section|refentry - |simplesect[$simplesect.in.toc != 0] - |bridgehead[$bridgehead.in.toc != 0]"/> - </xsl:call-template> -</xsl:template> - -<xsl:template match="bridgehead" mode="toc"> - <xsl:param name="toc-context" select="."/> - - <xsl:if test="$bridgehead.in.toc != 0"> - <xsl:call-template name="subtoc"> - <xsl:with-param name="toc-context" select="$toc-context"/> - </xsl:call-template> - </xsl:if> -</xsl:template> - -<xsl:template match="bibliography|glossary" mode="toc"> - <xsl:param name="toc-context" select="."/> - - <xsl:call-template name="subtoc"> - <xsl:with-param name="toc-context" select="$toc-context"/> - </xsl:call-template> -</xsl:template> - -<xsl:template match="index" mode="toc"> - <xsl:param name="toc-context" select="."/> - - <!-- If the index tag is not empty, it should be it in the TOC --> - <xsl:if test="* or $generate.index != 0"> - <xsl:call-template name="subtoc"> - <xsl:with-param name="toc-context" select="$toc-context"/> - </xsl:call-template> - </xsl:if> -</xsl:template> - -<xsl:template match="refentry" mode="toc"> - <xsl:param name="toc-context" select="."/> - - <xsl:variable name="refmeta" select=".//refmeta"/> - <xsl:variable name="refentrytitle" select="$refmeta//refentrytitle"/> - <xsl:variable name="refnamediv" select=".//refnamediv"/> - <xsl:variable name="refname" select="$refnamediv//refname"/> - <xsl:variable name="refdesc" select="$refnamediv//refdescriptor"/> - <xsl:variable name="title"> - <xsl:choose> - <xsl:when test="$refentrytitle"> - <xsl:apply-templates select="$refentrytitle[1]" - mode="titleabbrev.markup"/> - </xsl:when> - <xsl:when test="$refdesc"> - <xsl:apply-templates select="$refdesc" - mode="titleabbrev.markup"/> - </xsl:when> - <xsl:when test="$refname"> - <xsl:apply-templates select="$refname[1]" - mode="titleabbrev.markup"/> - </xsl:when> - </xsl:choose> - </xsl:variable> - - <xsl:element name="{$toc.listitem.type}"> - <span class='refentrytitle'> - <a> - <xsl:attribute name="href"> - <xsl:call-template name="href.target"> - <xsl:with-param name="toc-context" select="$toc-context"/> - </xsl:call-template> - </xsl:attribute> - <xsl:copy-of select="$title"/> - </a> - </span> - <span class='refpurpose'> - <xsl:if test="$annotate.toc != 0"> - <!-- * DocBook 5 says inlinemediaobject (among other things) --> - <!-- * is allowed in refpurpose; so we need to run --> - <!-- * apply-templates on refpurpose here, instead of value-of --> - <xsl:apply-templates select="refnamediv/refpurpose"/> - </xsl:if> - </span> - </xsl:element> -</xsl:template> - -<xsl:template match="title" mode="toc"> - <xsl:param name="toc-context" select="."/> - - <a> - <xsl:attribute name="href"> - <xsl:call-template name="href.target"> - <xsl:with-param name="object" select=".."/> - <xsl:with-param name="toc-context" select="$toc-context"/> - </xsl:call-template> - </xsl:attribute> - <xsl:apply-templates/> - </a> -</xsl:template> - -<xsl:template name="manual-toc"> - <xsl:param name="toc-context" select="."/> - <xsl:param name="tocentry"/> - - <!-- be careful, we don't want to change the current document to the other tree! --> - - <xsl:if test="$tocentry"> - <xsl:variable name="node" select="key('id', $tocentry/@linkend)"/> - - <xsl:element name="{$toc.listitem.type}"> - <xsl:variable name="label"> - <xsl:apply-templates select="$node" mode="label.markup"/> - </xsl:variable> - <xsl:copy-of select="$label"/> - <xsl:if test="$label != ''"> - <xsl:value-of select="$autotoc.label.separator"/> - </xsl:if> - <a> - <xsl:attribute name="href"> - <xsl:call-template name="href.target"> - <xsl:with-param name="object" select="$node"/> - <xsl:with-param name="toc-context" select="$toc-context"/> - </xsl:call-template> - </xsl:attribute> - <xsl:apply-templates select="$node" mode="titleabbrev.markup"/> - </a> - </xsl:element> - - <xsl:if test="$tocentry/*"> - <xsl:element name="{$toc.list.type}"> - <xsl:call-template name="manual-toc"> - <xsl:with-param name="tocentry" select="$tocentry/*[1]"/> - </xsl:call-template> - </xsl:element> - </xsl:if> - - <xsl:if test="$tocentry/following-sibling::*"> - <xsl:call-template name="manual-toc"> - <xsl:with-param name="tocentry" select="$tocentry/following-sibling::*[1]"/> - </xsl:call-template> - </xsl:if> - </xsl:if> -</xsl:template> - -<!-- ==================================================================== --> - -<xsl:template name="list.of.titles"> - <xsl:param name="toc-context" select="."/> - <xsl:param name="titles" select="'table'"/> - <xsl:param name="nodes" select=".//table"/> - - <xsl:if test="$nodes"> - <div class="list-of-{$titles}s"> - <p> - <b> - <xsl:call-template name="gentext"> - <xsl:with-param name="key"> - <xsl:choose> - <xsl:when test="$titles='table'">ListofTables</xsl:when> - <xsl:when test="$titles='figure'">ListofFigures</xsl:when> - <xsl:when test="$titles='equation'">ListofEquations</xsl:when> - <xsl:when test="$titles='example'">ListofExamples</xsl:when> - <xsl:when test="$titles='procedure'">ListofProcedures</xsl:when> - <xsl:otherwise>ListofUnknown</xsl:otherwise> - </xsl:choose> - </xsl:with-param> - </xsl:call-template> - </b> - </p> - - <xsl:element name="{$toc.list.type}"> - <xsl:apply-templates select="$nodes" mode="toc"> - <xsl:with-param name="toc-context" select="$toc-context"/> - </xsl:apply-templates> - </xsl:element> - </div> - </xsl:if> -</xsl:template> - -<xsl:template match="figure|table|example|equation|procedure" mode="toc"> - <xsl:param name="toc-context" select="."/> - - <xsl:element name="{$toc.listitem.type}"> - <xsl:variable name="label"> - <xsl:apply-templates select="." mode="label.markup"/> - </xsl:variable> - <xsl:copy-of select="$label"/> - <xsl:if test="$label != ''"> - <xsl:value-of select="$autotoc.label.separator"/> - </xsl:if> - <a> - <xsl:attribute name="href"> - <xsl:call-template name="href.target"> - <xsl:with-param name="toc-context" select="$toc-context"/> - </xsl:call-template> - </xsl:attribute> - <xsl:apply-templates select="." mode="titleabbrev.markup"/> - </a> - </xsl:element> -</xsl:template> - -<!-- Used only if qanda.in.toc parameter is non-zero --> -<xsl:template match="qandaset" mode="toc"> - <xsl:param name="toc-context" select="."/> - <xsl:call-template name="subtoc"> - <xsl:with-param name="toc-context" select="$toc-context"/> - <xsl:with-param name="nodes" select="qandadiv | qandaentry"/> - </xsl:call-template> -</xsl:template> - -<xsl:template match="qandadiv|qandaentry" mode="toc"> - <xsl:apply-templates select="." mode="qandatoc.mode"/> -</xsl:template> - -</xsl:stylesheet> - diff --git a/docbook-xsl-1.75.2/html/biblio-iso690.xsl b/docbook-xsl-1.75.2/html/biblio-iso690.xsl deleted file mode 100644 index d420bec..0000000 --- a/docbook-xsl-1.75.2/html/biblio-iso690.xsl +++ /dev/null @@ -1,1300 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" - version='1.0'> - - -<!-- ******************************************************************** - $Id: biblio.xsl 6402 2006-11-12 08:23:21Z bobstayton $ - ******************************************************************** - - This file is part of the XSL DocBook Stylesheet distribution. - See ../README or http://docbook.sf.net/release/xsl/current/ for - copyright and other information. - - The original code for processing bibliography in ISO690 style - was provided by Jana Dvorakova <jana4u@seznam.cz> - - ******************************************************************** --> - -<!-- ==================================================================== --> - -<!-- if biblioentry.alt.primary.seps is set to nonzero value then use alternative separators for primary responsibility - $alt.person.two.sep, $alt.person.last.sep, $alt.person.more.sep --> -<xsl:param name="biblioentry.alt.primary.seps" select="0"/> - -<!-- how many authors will be printed if there is more than three authors - set to number 1 (default value), 2 or 3 --> -<xsl:param name="biblioentry.primary.count" select="1"/> - -<!-- ==================================================================== --> - -<xsl:template name="iso690.makecitation"> -<!-- Types of resources --> - <xsl:choose> - - <!-- SYSTEMS OF ELECTRONIC COMMUNICATION : ENTIRE MESSAGE SYSTEM --> - <!-- same as Monographs --> - <xsl:when test="./@role='messagesystem'"> - <xsl:call-template name="iso690.monogr"/> - </xsl:when> - - <!-- SYSTEMS OF ELECTRONIC COMMUNICATION : ELECTRONIC MESSAGES --> - <!-- same as Contributions to Monographs --> - <xsl:when test="./@role='message'"> - <xsl:call-template name="iso690.paper.mon"/> - </xsl:when> - - <!-- SERIALS --> - <xsl:when test="./@role='serial' or ./biblioid/@class='issn' or ./issn"> - <xsl:call-template name="iso690.serial"/> - </xsl:when> - - <!-- PARTS OF MONOGRAPHS --> - <xsl:when test="./@role='part' or (./bibliomisc[@role='secnum']|./bibliomisc[@role='sectitle'])"> - <xsl:call-template name="iso690.monogr.part"/> - </xsl:when> - - <!-- CONTRIBUTIONS TO MONOGRAPHS --> - <xsl:when test="./@role='contribution' or (./biblioset/@relation='part' and ./biblioset/@relation='book')"> - <xsl:call-template name="iso690.paper.mon"/> - </xsl:when> - - <!-- ARTICLES, ETC., IN SERIALS --> - <xsl:when test="./@role='article' or (./biblioset/@relation='journal' and ./biblioset/@relation='article')"> - <xsl:call-template name="iso690.article"/> - </xsl:when> - - <!-- PATENT DOCUMENTS --> - <xsl:when test="./@role='patent' or (./bibliomisc[@role='patenttype'] and ./bibliomisc[@role='patentnum'])"> - <xsl:call-template name="iso690.patent"/> - </xsl:when> - - <!-- MONOGRAPHS --> - <xsl:otherwise> - <xsl:call-template name="iso690.monogr"/> - </xsl:otherwise> - - </xsl:choose> -</xsl:template> - -<!-- ==================================================================== --> - -<!-- MONOGRAPHS --> -<xsl:template name="iso690.monogr"> - <!-- Primary responsibility --> - <xsl:call-template name="iso690.primary"/> - <!-- Title and Type of medium --> - <xsl:call-template name="iso690.title"/> - <!-- Subordinate responsibility --> - <xsl:call-template name="iso690.secondary"/> - <!-- Edition --> - <xsl:call-template name="iso690.edition"/> - <!-- Place of publication, Publisher, Year/Date of publication, Date of update/revision, Date of citation --> - <xsl:call-template name="iso690.pub"/> - <!-- Extent --> - <xsl:call-template name="iso690.extent"/> - <!-- Series --> - <xsl:call-template name="iso690.serie"/> - <!-- Notes --> - <xsl:call-template name="iso690.notice"/> - <!-- Avaibility and access --> - <xsl:call-template name="iso690.access"/> - <!-- Standard number --> - <xsl:call-template name="iso690.isbn"/> -</xsl:template> - -<!-- SERIALS --> -<xsl:template name="iso690.serial"> - <!-- Title and Type of medium --> - <xsl:call-template name="iso690.title"/> - <!-- Responsibility [nonEL] --> - <xsl:if test="not(./bibliomisc[@role='medium'])"> - <xsl:call-template name="iso690.secondary"/> - </xsl:if> - <!-- Edition --> - <xsl:call-template name="iso690.edition"> - <xsl:with-param name="after" select="./bibliomisc[@role='issuing']"/> - </xsl:call-template> - <!-- Issue designation (date and/or num) [nonEL] --> - <xsl:if test="not(./bibliomisc[@role='medium'])"> - <xsl:call-template name="iso690.issuing"/> - </xsl:if> - <!-- Place of publication, Publisher, Year/Date of publication, Date of update/revision, Date of citation --> - <xsl:call-template name="iso690.pub"/> - <!-- Series --> - <xsl:call-template name="iso690.serie"/> - <!-- Notes --> - <xsl:call-template name="iso690.notice"/> - <!-- Avaibility and access --> - <xsl:call-template name="iso690.access"/> - <!-- Standard number --> - <xsl:call-template name="iso690.issn"/> -</xsl:template> - -<!-- PARTS OF MONOGRAPHS --> -<xsl:template name="iso690.monogr.part"> - <!-- Primary responsibility of host document --> - <xsl:call-template name="iso690.primary"/> - <!-- Title and Type of medium of host document --> - <xsl:call-template name="iso690.title"/> - <!-- Subordinate responsibility of host document [EL] --> - <xsl:if test="./bibliomisc[@role='medium']"> - <xsl:call-template name="iso690.secondary"/> - </xsl:if> - <!-- Edition --> - <xsl:call-template name="iso690.edition"> - <xsl:with-param name="after" select="./volumenum"/> - </xsl:call-template> - <!-- Numeration of the part [nonEL]--> - <xsl:if test="not(./bibliomisc[@role='medium'])"> - <xsl:call-template name="iso690.partnr"/> - <!-- Subordinate responsibility [nonEL] --> - <xsl:call-template name="iso690.secondary"/> - </xsl:if> - <!-- Place of publication, Publisher, Year/Date of publication, Date of update/revision, Date of citation --> - <xsl:call-template name="iso690.pub"/> - <!-- Location within host --> - <xsl:call-template name="iso690.part.location"/> - <xsl:if test="./bibliomisc[@role='medium']"> - <!-- Numeration within host document [EL] --> - <!-- Notes [EL] --> - <xsl:call-template name="iso690.notice"/> - <!-- Avaibility and access [EL] --> - <xsl:call-template name="iso690.access"/> - <!-- Standard number [EL] --> - <xsl:call-template name="iso690.isbn"/> - </xsl:if> -</xsl:template> - -<!-- CONTRIBUTIONS TO MONOGRAPHS --> -<xsl:template name="iso690.paper.mon"> -<!-- Contribution --> - <xsl:apply-templates mode="iso690.paper.part" select="./biblioset[@relation='part']"/> -<!-- In --> - <xsl:text>In </xsl:text> -<!-- Host --> - <xsl:apply-templates mode="iso690.paper.book" select="./biblioset[@relation='book']"/> -</xsl:template> - -<xsl:template match="biblioset" mode="iso690.paper.part"> -<!-- Contribution --> - <!-- Primary responsibility --> - <xsl:call-template name="iso690.primary"/> - <!-- Title --> - <xsl:call-template name="iso690.title"> - <xsl:with-param name="italic" select="0"/> - </xsl:call-template> -</xsl:template> - -<xsl:template match="biblioset" mode="iso690.paper.book"> -<!-- Host --> - <!-- Primary responsibility --> - <xsl:call-template name="iso690.primary"/> - <!-- Title and Type of medium --> - <xsl:call-template name="iso690.title"/> - <!-- Subordinate responsibility [EL] --> - <xsl:if test="./bibliomisc[@role='medium']"> - <xsl:call-template name="iso690.secondary"/> - </xsl:if> - <!-- Edition --> - <xsl:call-template name="iso690.edition"/> - <!-- Place of publication, Publisher, Year/Date of publication, Date of update/revision, Date of citation --> - <xsl:call-template name="iso690.paper.pub"/> - <!-- Numeration within host document [EL] --> - <!-- Location within host --> - <xsl:call-template name="iso690.location"/> - <xsl:if test="./bibliomisc[@role='medium']"> - <!-- Notes [EL] --> - <xsl:call-template name="iso690.notice"/> - <!-- Avaibility and access [EL] --> - <xsl:call-template name="iso690.access"/> - <!-- Standard number [EL] --> - <xsl:call-template name="iso690.isbn"/> - </xsl:if> -</xsl:template> - -<!-- ARTICLES, ETC., IN SERIALS --> -<xsl:template name="iso690.article"> -<!-- Article --> - <xsl:apply-templates mode="iso690.article.art" select="./biblioset[@relation='article']"/> -<!-- Serial --> - <xsl:apply-templates mode="iso690.article.jour" select="./biblioset[@relation='journal']"/> -</xsl:template> - -<xsl:template match="biblioset" mode="iso690.article.art"> -<!-- Article --> - <!-- Primary responsibility --> - <xsl:call-template name="iso690.primary"/> - <!-- Title --> - <xsl:call-template name="iso690.title"> - <xsl:with-param name="italic" select="0"/> - </xsl:call-template> - <!-- Subordinate responsibility [nonEL] --> - <xsl:if test="not(../*/bibliomisc[@role='medium'])"> - <xsl:call-template name="iso690.secondary"/> - </xsl:if> -</xsl:template> - -<xsl:template match="biblioset" mode="iso690.article.jour"> -<!-- Serial --> - <!-- Title and Type of medium --> - <xsl:call-template name="iso690.title"/> - <!-- Edition --> - <xsl:call-template name="iso690.edition"> - <xsl:with-param name="after" select="./pubdate[not(@role='issuing')]|./volumenum|./issuenum|./pagenums"/> - </xsl:call-template> - <!-- Number designation [EL] --> - <!-- Location within host --> - <xsl:call-template name="iso690.article.location"/> - <xsl:if test="./bibliomisc[@role='medium']"> - <!-- Notes [EL] --> - <xsl:call-template name="iso690.notice"/> - <!-- Avaibility and access [EL] --> - <xsl:call-template name="iso690.access"/> - <!-- Standard number [EL] --> - <xsl:call-template name="iso690.issn"/> - </xsl:if> -</xsl:template> - -<!-- PATENT DOCUMENTS --> -<xsl:template name="iso690.patent"> - <!-- Primary responsibility (applicant) --> - <xsl:call-template name="iso690.primary"/> - <!-- Title of the invention --> - <xsl:call-template name="iso690.title"/> - <!-- Subordinate responsibility --> - <xsl:call-template name="iso690.secondary"/> - <!-- Notes --> - <xsl:call-template name="iso690.notice"/> - <!-- Identification --> - <xsl:call-template name="iso690.pat.ident"/> -</xsl:template> - -<!-- ==================================================================== --> -<!-- Elements --> - -<!-- Primary responsibility --> -<xsl:template name="iso690.primary"> - <xsl:param name="primary.sep"> - <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'primary.sep'"/></xsl:call-template> - </xsl:param> - <xsl:choose> - <xsl:when test="./authorgroup/author|./author"> - <xsl:call-template name="iso690.author.list"> - <xsl:with-param name="person.list" select=".//authorgroup/author|.//author"/> - </xsl:call-template> - </xsl:when> - <xsl:when test="./authorgroup/editor|./editor"> - <xsl:call-template name="iso690.author.list"> - <xsl:with-param name="person.list" select=".//authorgroup/editor|.//editor"/> - </xsl:call-template> - </xsl:when> - <xsl:when test="./authorgroup/corpauthor|./corpauthor"> - <xsl:call-template name="iso690.author.list"> - <xsl:with-param name="person.list" select=".//authorgroup/corpauthor|.//corpauthor"/> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <xsl:if test="(./firstname)and(./surname)"> - <xsl:call-template name="iso690.author"/> - <xsl:call-template name="iso690.endsep"> - <xsl:with-param name="text" select="string(./firstname[1])"/> - <xsl:with-param name="sep" select="$primary.sep"/> - </xsl:call-template> - </xsl:if> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template name="iso690.author.list"> - <xsl:param name="person.list" - select="author|corpauthor|editor"/> - <xsl:param name="person.count" select="count($person.list)"/> - <xsl:param name="count" select="1"/> - <xsl:param name="group" select="./authorgroup[@role='many']"/> - <xsl:param name="many" select="0"/> - - <xsl:param name="primary.many"> - <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'primary.many'"/></xsl:call-template> - </xsl:param> - <xsl:param name="primary.editor"> - <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'primary.editor'"/></xsl:call-template> - </xsl:param> - <xsl:param name="primary.sep"> - <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'primary.sep'"/></xsl:call-template> - </xsl:param> - - <xsl:choose> - <xsl:when test="$count > $person.count"></xsl:when> - <xsl:otherwise> - <xsl:choose> - <xsl:when test="$person.count < 4 and not($group)"> - <xsl:call-template name="iso690.author"> - <xsl:with-param name="node" select="$person.list[position()=$count]"/> - </xsl:call-template> - <xsl:choose> - <xsl:when test="$person.count = 2 and $count = 1 and $biblioentry.alt.primary.seps != 0"> - <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'alt.person.two.sep'"/></xsl:call-template> - </xsl:when> - <xsl:when test="$person.count = 2 and $count = 1"> - <xsl:call-template name="gentext.template"> - <xsl:with-param name="context" select="'authorgroup'"/> - <xsl:with-param name="name" select="'sep2'"/> - </xsl:call-template> - </xsl:when> - <xsl:when test="$person.count > 2 and $count+1 = $person.count and $biblioentry.alt.primary.seps != 0"> - <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'alt.person.last.sep'"/></xsl:call-template> - </xsl:when> - <xsl:when test="$person.count > 2 and $count+1 = $person.count"> - <xsl:call-template name="gentext.template"> - <xsl:with-param name="context" select="'authorgroup'"/> - <xsl:with-param name="name" select="'seplast'"/> - </xsl:call-template> - </xsl:when> - <xsl:when test="$count < $person.count and $biblioentry.alt.primary.seps != 0"> - <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'alt.person.more.sep'"/></xsl:call-template> - </xsl:when> - <xsl:when test="$count < $person.count"> - <xsl:call-template name="gentext.template"> - <xsl:with-param name="context" select="'authorgroup'"/> - <xsl:with-param name="name" select="'sep'"/> - </xsl:call-template> - </xsl:when> - <xsl:when test="($count = $person.count)"> - <xsl:choose> - <xsl:when test="$many!=0"> - <xsl:if test="name($person.list[position()=$count])='editor'"> - <xsl:value-of select="$primary.editor"/> - </xsl:if> - <xsl:value-of select="$primary.many"/> - <xsl:call-template name="iso690.endsep"> - <xsl:with-param name="text" select="$primary.many"/> - <xsl:with-param name="sep" select="$primary.sep"/> - </xsl:call-template> - </xsl:when> - <xsl:when test="name($person.list[position()=$count])='editor'"> - <xsl:value-of select="$primary.editor"/> - <xsl:value-of select="$primary.sep"/> - </xsl:when> - <xsl:when test="name($person.list[position()=$count])='corpauthor'"> - <xsl:call-template name="iso690.endsep"> - <xsl:with-param name="text" select="string($person.list[position()=$count])"/> - <xsl:with-param name="sep" select="$primary.sep"/> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <xsl:call-template name="iso690.endsep"> - <xsl:with-param name="text" select="string($person.list[position()=$count]//firstname[1])"/> - <xsl:with-param name="sep" select="$primary.sep"/> - </xsl:call-template> - </xsl:otherwise> - </xsl:choose> - </xsl:when> - </xsl:choose> - - <xsl:call-template name="iso690.author.list"> - <xsl:with-param name="person.list" select="$person.list"/> - <xsl:with-param name="person.count" select="$person.count"/> - <xsl:with-param name="count" select="$count+1"/> - <xsl:with-param name="many" select="$many"/> - <xsl:with-param name="group"/> - </xsl:call-template> - </xsl:when> - - <xsl:otherwise> - <xsl:choose> - <xsl:when test="($biblioentry.primary.count>=3) and ($person.count>=3)"> - <xsl:call-template name="iso690.author.list"> - <xsl:with-param name="person.list" select="$person.list[1]|$person.list[2]|$person.list[3]"/> - <xsl:with-param name="person.count" select="3"/> - <xsl:with-param name="count" select="1"/> - <xsl:with-param name="many" select="1"/> - <xsl:with-param name="group"/> - </xsl:call-template> - </xsl:when> - <xsl:when test="($biblioentry.primary.count>1) and ($person.count>1)"> - <xsl:call-template name="iso690.author.list"> - <xsl:with-param name="person.list" select="$person.list[1]|$person.list[2]"/> - <xsl:with-param name="person.count" select="2"/> - <xsl:with-param name="count" select="1"/> - <xsl:with-param name="many" select="1"/> - <xsl:with-param name="group"/> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <xsl:call-template name="iso690.author.list"> - <xsl:with-param name="person.list" select="$person.list[1]"/> - <xsl:with-param name="person.count" select="1"/> - <xsl:with-param name="count" select="1"/> - <xsl:with-param name="many" select="1"/> - <xsl:with-param name="group"/> - </xsl:call-template> - </xsl:otherwise> - </xsl:choose> - </xsl:otherwise> - </xsl:choose> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template name="iso690.author"> - <xsl:param name="node" select="."/> - <xsl:param name="lastfirst.sep"> - <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'lastfirst.sep'"/></xsl:call-template> - </xsl:param> - <xsl:choose> - <xsl:when test="name($node)!='corpauthor'"> - <span style="text-transform:uppercase"> - <xsl:apply-templates mode="iso690.mode" select="$node//surname[1]"/> - </span> - <xsl:if test="$node//surname and $node//firstname"> - <xsl:value-of select="$lastfirst.sep"/> - </xsl:if> - <xsl:apply-templates mode="iso690.mode" select="$node//firstname[1]"/> - </xsl:when> - <xsl:otherwise> - <span style="text-transform:uppercase"> - <xsl:apply-templates mode="iso690.mode" select="$node"/> - </span> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template match="corpauthor|firstname|surname" mode="iso690.mode"> - <xsl:apply-templates mode="iso690.mode"/> -</xsl:template> - -<!-- Title and Type of medium --> -<xsl:template name="iso690.title"> - <xsl:param name="medium" select="./bibliomisc[@role='medium']"/> - <xsl:param name="italic" select="1"/> - <xsl:param name="sep"> - <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'title.sep'"/></xsl:call-template> - </xsl:param> - - <xsl:apply-templates mode="iso690.mode" select="./title"> - <xsl:with-param name="medium" select="$medium"/> - <xsl:with-param name="italic" select="$italic"/> - <xsl:with-param name="sep" select="$sep"/> - </xsl:apply-templates> -</xsl:template> - -<xsl:template match="title" mode="iso690.mode"> - <xsl:param name="medium"/> - <xsl:param name="italic" select="1"/> - <xsl:param name="sep"> - <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'title.sep'"/></xsl:call-template> - </xsl:param> - <xsl:param name="medium1"> - <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'medium1'"/></xsl:call-template> - </xsl:param> - <xsl:param name="medium2"> - <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'medium2'"/></xsl:call-template> - </xsl:param> - <xsl:choose> - <xsl:when test="$italic=1"> - <xsl:call-template name="iso690.italic.title"/> - </xsl:when> - <xsl:otherwise> - <xsl:call-template name="iso690.make.title"/> - </xsl:otherwise> - </xsl:choose> - <xsl:if test="$medium"> - <xsl:value-of select="$medium1"/> - <xsl:apply-templates mode="iso690.mode" select="$medium"/> - <xsl:value-of select="$medium2"/> - </xsl:if> - <xsl:call-template name="iso690.endsep"> - <xsl:with-param name="text" select="concat(string(.),string(../subtitle))"/> - <xsl:with-param name="sep" select="$sep"/> - </xsl:call-template> -</xsl:template> - -<xsl:template name="iso690.italic.title"> - <i> - <xsl:call-template name="iso690.make.title"/> - </i> -</xsl:template> - -<xsl:template name="iso690.make.title"> - <xsl:param name="submaintitle.sep"> - <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'submaintitle.sep'"/></xsl:call-template> - </xsl:param> - <xsl:apply-templates mode="iso690.mode"/> - <xsl:if test="../subtitle"> - <xsl:value-of select="$submaintitle.sep"/> - <xsl:apply-templates mode="iso690.mode" select="../subtitle"/> - </xsl:if> -</xsl:template> - -<xsl:template match="subtitle" mode="iso690.mode"> - <xsl:apply-templates mode="iso690.mode"/> -</xsl:template> - -<xsl:template match="bibliomisc[@role='medium']" mode="iso690.mode"> - <xsl:apply-templates mode="iso690.mode"/> -</xsl:template> - -<!-- Subordinate responsibility --> -<xsl:template name="iso690.secondary"> - <xsl:param name="secondary.sep"> - <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'secondary.sep'"/></xsl:call-template> - </xsl:param> - <xsl:param name="secondary.person.sep"> - <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'secondary.person.sep'"/></xsl:call-template> - </xsl:param> - <xsl:for-each select="./bibliomisc[@role='secondary']"> - <xsl:apply-templates mode="iso690.mode" select="."/> - <xsl:choose> - <xsl:when test="position()=count(../bibliomisc[@role='secondary'])"> - <xsl:call-template name="iso690.endsep"> - <xsl:with-param name="text" select="string(.)"/> - <xsl:with-param name="sep" select="$secondary.sep"/> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="$secondary.person.sep"/> - </xsl:otherwise> - </xsl:choose> - </xsl:for-each> -</xsl:template> - -<xsl:template match="bibliomisc[@role='secondary']" mode="iso690.mode"> - <xsl:apply-templates mode="iso690.mode"/> -</xsl:template> - -<!-- Edition --> -<xsl:template name="iso690.edition"> - <xsl:param name="after"/> - <xsl:param name="edition.serial.sep"> - <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'edition.serial.sep'"/></xsl:call-template> - </xsl:param> - <xsl:choose> - <xsl:when test="string($after)!=''"> - <xsl:apply-templates mode="iso690.mode" select="./edition"> - <xsl:with-param name="sep" select="$edition.serial.sep"/> - </xsl:apply-templates> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates mode="iso690.mode" select="./edition"/> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template match="edition" mode="iso690.mode"> - <xsl:param name="sep"> - <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'edition.sep'"/></xsl:call-template> - </xsl:param> - <xsl:apply-templates mode="iso690.mode"/> - <xsl:call-template name="iso690.endsep"> - <xsl:with-param name="text" select="string(.)"/> - <xsl:with-param name="sep" select="$sep"/> - </xsl:call-template> -</xsl:template> - -<!-- Issue designation (date and/or num) --> -<xsl:template name="iso690.issuing"> - <xsl:param name="issuing.div"> - <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'issuing.div'"/></xsl:call-template> - </xsl:param> - <xsl:param name="issuing.range"> - <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'issuing.range'"/></xsl:call-template> - </xsl:param> - <xsl:param name="issuing.sep"> - <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'issuing.sep'"/></xsl:call-template> - </xsl:param> - <xsl:choose> - <xsl:when test="./pubdate[@role='issuing'] and ./volumenum[2] and ./issuenum[2]"> - <xsl:call-template name="iso690.issuedate"/> - <xsl:apply-templates mode="iso690.mode" select="./volumenum[1]"> - <xsl:with-param name="sep" select="$issuing.div"/> - </xsl:apply-templates> - <xsl:apply-templates mode="iso690.mode" select="./issuenum[1]"> - <xsl:with-param name="sep" select="$issuing.range"/> - </xsl:apply-templates> - <xsl:apply-templates mode="iso690.mode" select="./volumenum[2]"> - <xsl:with-param name="sep" select="$issuing.div"/> - </xsl:apply-templates> - <xsl:apply-templates mode="iso690.mode" select="./issuenum[2]"> - <xsl:with-param name="sep" select="$issuing.sep"/> - </xsl:apply-templates> - </xsl:when> - <xsl:when test="./pubdate[@role='issuing'] and ./volumenum[2]"> - <xsl:call-template name="iso690.issuedate"/> - <xsl:apply-templates mode="iso690.mode" select="./volumenum[1]"> - <xsl:with-param name="sep" select="$issuing.range"/> - </xsl:apply-templates> - <xsl:apply-templates mode="iso690.mode" select="./volumenum[2]"> - <xsl:with-param name="sep" select="$issuing.sep"/> - </xsl:apply-templates> - </xsl:when> - <xsl:when test="./pubdate[@role='issuing'] and ./volumenum and ./issuenum"> - <xsl:apply-templates mode="iso690.mode" select="./pubdate[@role='issuing']"> - <xsl:with-param name="sep" select="$issuing.div"/> - </xsl:apply-templates> - <xsl:apply-templates mode="iso690.mode" select="./volumenum"> - <xsl:with-param name="sep" select="$issuing.div"/> - </xsl:apply-templates> - <xsl:apply-templates mode="iso690.mode" select="./issuenum"> - <xsl:with-param name="sep" select="$issuing.sep"/> - </xsl:apply-templates> - </xsl:when> - <xsl:when test="./pubdate[@role='issuing']"> - <xsl:apply-templates mode="iso690.mode" select="./pubdate[@role='issuing']"> - <xsl:with-param name="sep" select="$issuing.sep"/> - </xsl:apply-templates> - </xsl:when> - <xsl:when test="./volumenum"> - <xsl:apply-templates mode="iso690.mode" select="./volumenum"> - <xsl:with-param name="sep" select="$issuing.sep"/> - </xsl:apply-templates> - </xsl:when> - <xsl:when test="./issuenum"> - <xsl:apply-templates mode="iso690.mode" select="./issuenum"> - <xsl:with-param name="sep" select="$issuing.sep"/> - </xsl:apply-templates> - </xsl:when> - </xsl:choose> -</xsl:template> - -<xsl:template name="iso690.issuedate"> - <xsl:param name="issuing.div"> - <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'issuing.div'"/></xsl:call-template> - </xsl:param> - <xsl:param name="issuing.range"> - <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'issuing.range'"/></xsl:call-template> - </xsl:param> - <xsl:param name="issuing.sep"> - <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'issuing.sep'"/></xsl:call-template> - </xsl:param> - <xsl:choose> - <xsl:when test="./pubdate[@role='issuing'][2]"> - <xsl:apply-templates mode="iso690.mode" select="./pubdate[@role='issuing'][1]"> - <xsl:with-param name="sep" select="$issuing.range"/> - </xsl:apply-templates> - <xsl:apply-templates mode="iso690.mode" select="./pubdate[@role='issuing'][2]"> - <xsl:with-param name="sep" select="$issuing.div"/> - </xsl:apply-templates> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates mode="iso690.mode" select="./pubdate[@role='issuing']"> - <xsl:with-param name="sep" select="$issuing.div"/> - </xsl:apply-templates> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template match="pubdate[@role='issuing']" mode="iso690.mode"> - <xsl:param name="sep"/> - <xsl:variable name="substr" select="substring(string(.),string-length(string(.)))"/> - <xsl:apply-templates mode="iso690.mode"/> - <xsl:call-template name="iso690.space"> - <xsl:with-param name="text" select="$substr"/> - </xsl:call-template> - <xsl:choose> - <xsl:when test="$substr='-'"> - <xsl:call-template name="iso690.endsep"> - <xsl:with-param name="text" select="' '"/> - <xsl:with-param name="sep" select="$sep"/> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <xsl:call-template name="iso690.endsep"> - <xsl:with-param name="text" select="string(.)"/> - <xsl:with-param name="sep" select="$sep"/> - </xsl:call-template> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<!-- Numeration of the part --> -<xsl:template name="iso690.partnr"> - <xsl:param name="partnr.sep"> - <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'partnr.sep'"/></xsl:call-template> - </xsl:param> - <xsl:apply-templates mode="iso690.mode" select="./volumenum"> - <xsl:with-param name="sep" select="$partnr.sep"/> - </xsl:apply-templates> -</xsl:template> - -<!-- Place of publication, Publisher, Year/Date of publication, Date of update/revision, Date of citation --> -<xsl:template name="iso690.pub"> - <xsl:param name="onlydate" select="0"/> - <xsl:param name="placesep"> - <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'placepubl.sep'"/></xsl:call-template> - </xsl:param> - <xsl:param name="pubsep"> - <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'publyear.sep'"/></xsl:call-template> - </xsl:param> - <xsl:param name="endsep"> - <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'pubinfo.sep'"/></xsl:call-template> - </xsl:param> - <xsl:choose> - <xsl:when test="(./publisher/publishername|./publishername|./publisher/address/city)and($onlydate=0)and(./pubdate[not(@role='issuing')]|./copyright/year|./date[@role='upd']|./date[@role='upd'])"> - <xsl:apply-templates mode="iso690.mode" select="./publisher/address/city"> - <xsl:with-param name="sep" select="$placesep"/> - </xsl:apply-templates> - <xsl:apply-templates mode="iso690.mode" select="./publisher/publishername|./publishername"> - <xsl:with-param name="sep" select="$pubsep"/> - </xsl:apply-templates> - <xsl:apply-templates mode="iso690.mode" select="./pubdate[not(@role='issuing')]|./copyright/year"> - <xsl:with-param name="sep" select="$endsep"/> - </xsl:apply-templates> - <xsl:if test="not(./pubdate[not(@role='issuing')]|./copyright/year)"> - <xsl:call-template name="iso690.data"> - <xsl:with-param name="sep" select="$endsep"/> - </xsl:call-template> - </xsl:if> - </xsl:when> - <xsl:when test="(./publisher/publishername|./publishername)and(./publisher/address/city)and($onlydate=0)"> - <xsl:apply-templates mode="iso690.mode" select="./publisher/address/city"> - <xsl:with-param name="sep" select="$placesep"/> - </xsl:apply-templates> - <xsl:apply-templates mode="iso690.mode" select="./publisher/publishername|./publishername"> - <xsl:with-param name="sep" select="$endsep"/> - </xsl:apply-templates> - </xsl:when> - <xsl:when test="($onlydate=1)or(./pubdate[not(@role='issuing')]|./copyright/year)"> - <xsl:apply-templates mode="iso690.mode" select="./pubdate[not(@role='issuing')]|./copyright/year"> - <xsl:with-param name="sep" select="$endsep"/> - </xsl:apply-templates> - <xsl:if test="$onlydate=1"> - <xsl:call-template name="iso690.location"> - <xsl:with-param name="onlypages" select="1"/> - </xsl:call-template> - </xsl:if> - </xsl:when> - <xsl:when test="not(./pubdate[not(@role='issuing')]|./copyright/year)"> - <xsl:call-template name="iso690.data"> - <xsl:with-param name="sep" select="$endsep"/> - </xsl:call-template> - </xsl:when> - </xsl:choose> -</xsl:template> - -<xsl:template name="iso690.paper.pub"> - <xsl:param name="spec.pubinfo.sep"> - <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'spec.pubinfo.sep'"/></xsl:call-template> - </xsl:param> - <xsl:choose> - <xsl:when test="./volumnum|./issuenum|./pagenums"> - <xsl:call-template name="iso690.pub"> - <xsl:with-param name="endsep" select="$spec.pubinfo.sep"/> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <xsl:call-template name="iso690.pub"/> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template name="iso690.data"> - <xsl:param name="sep"/> - <xsl:param name="datecit2"> - <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'datecit2'"/></xsl:call-template> - </xsl:param> - <xsl:apply-templates mode="iso690.mode" select="./date[@role='upd']"> - <xsl:with-param name="sep"/> - </xsl:apply-templates> - <xsl:apply-templates mode="iso690.mode" select="./date[@role='cit']"/> - <xsl:choose> - <xsl:when test="./date[@role='cit']"> - <xsl:call-template name="iso690.endsep"> - <xsl:with-param name="text" select="$datecit2"/> - <xsl:with-param name="sep" select="$sep"/> - </xsl:call-template> - </xsl:when> - <xsl:when test="./date[@role='upd']"> - <xsl:call-template name="iso690.endsep"> - <xsl:with-param name="text" select="string(./date[@role='upd'])"/> - <xsl:with-param name="sep" select="$sep"/> - </xsl:call-template> - </xsl:when> - </xsl:choose> -</xsl:template> - -<xsl:template match="publisher/address/city|publishername" mode="iso690.mode"> - <xsl:param name="sep"/> - <xsl:param name="upd" select="0"/> - <xsl:apply-templates mode="iso690.mode"/> - <xsl:call-template name="iso690.endsep"> - <xsl:with-param name="text" select="string(.)"/> - <xsl:with-param name="sep" select="$sep"/> - </xsl:call-template> -</xsl:template> - -<xsl:template match="pubdate|copyright/year" mode="iso690.mode"> - <xsl:param name="sep"/> - <xsl:param name="upd" select="1"/> - <xsl:param name="datecit2"> - <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'datecit2'"/></xsl:call-template> - </xsl:param> - <xsl:variable name="substr" select="substring(string(.),string-length(string(.)))"/> - <xsl:if test="name(.)!='pubdate'"> - <xsl:value-of select="'©'"/><!-- copyright --> - </xsl:if> - <xsl:apply-templates mode="iso690.mode"/> - <xsl:call-template name="iso690.space"> - <xsl:with-param name="text" select="$substr"/> - </xsl:call-template> - <xsl:if test="$upd!=0"> - <xsl:choose> - <xsl:when test="name(.)='pubdate'"> - <xsl:apply-templates mode="iso690.mode" select="../date[@role='upd']"/> - <xsl:apply-templates mode="iso690.mode" select="../date[@role='cit']"/> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates mode="iso690.mode" select="../../date[@role='upd']"/> - <xsl:apply-templates mode="iso690.mode" select="../../date[@role='cit']"/> - </xsl:otherwise> - </xsl:choose> - </xsl:if> - <xsl:choose> - <xsl:when test="../date[@role='cit']|../../date[@role='cit'] and $upd!=0"> - <xsl:call-template name="iso690.endsep"> - <xsl:with-param name="text" select="$datecit2"/> - <xsl:with-param name="sep" select="$sep"/> - </xsl:call-template> - </xsl:when> - <xsl:when test="../date[@role='upd']|../../date[@role='upd'] and $upd!=0"> - <xsl:call-template name="iso690.endsep"> - <xsl:with-param name="text" select="string(../date[@role='upd'])"/> - <xsl:with-param name="sep" select="$sep"/> - </xsl:call-template> - </xsl:when> - <xsl:when test="$substr='-'"> - <xsl:call-template name="iso690.endsep"> - <xsl:with-param name="text" select="' '"/> - <xsl:with-param name="sep" select="$sep"/> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <xsl:call-template name="iso690.endsep"> - <xsl:with-param name="text" select="string(.)"/> - <xsl:with-param name="sep" select="$sep"/> - </xsl:call-template> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template name="iso690.space"> - <xsl:param name="text" select="substring(string(.),string-length(string(.)))"/> - <xsl:if test="$text='-'"> - <xsl:value-of select="' '"/> - </xsl:if> -</xsl:template> - -<!-- Date of update/revision --> -<xsl:template match="date[@role='upd']" mode="iso690.mode"> - <xsl:param name="sep"> - <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'upd.sep'"/></xsl:call-template> - </xsl:param> - <xsl:value-of select="$sep"/> - <xsl:apply-templates mode="iso690.mode"/> -</xsl:template> - -<!-- Date of citation --> -<xsl:template match="date[@role='cit']" mode="iso690.mode"> - <xsl:param name="datecit1"> - <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'datecit1'"/></xsl:call-template> - </xsl:param> - <xsl:param name="datecit2"> - <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'datecit2'"/></xsl:call-template> - </xsl:param> - <xsl:value-of select="$datecit1"/> - <xsl:apply-templates mode="iso690.mode"/> - <xsl:value-of select="$datecit2"/> -</xsl:template> - -<!-- Extent --> -<xsl:template name="iso690.extent"> - <xsl:param name="extent.sep"> - <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'extent.sep'"/></xsl:call-template> - </xsl:param> - <xsl:apply-templates mode="iso690.mode" select="./pagenums"> - <xsl:with-param name="sep" select="$extent.sep"/> - </xsl:apply-templates> -</xsl:template> - -<!-- Location within host --> -<xsl:template name="iso690.part.location"> - <xsl:param name="location.sep"> - <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'location.sep'"/></xsl:call-template> - </xsl:param> - <xsl:choose> - <xsl:when test="./pagenums"> - <xsl:apply-templates mode="iso690.mode" select="./bibliomisc[@role='secnum']"/> - <xsl:apply-templates mode="iso690.mode" select="./bibliomisc[@role='sectitle']"/> - <xsl:apply-templates mode="iso690.mode" select="./pagenums"/> - </xsl:when> - <xsl:when test="./bibliomisc[@role='sectitle']"> - <xsl:apply-templates mode="iso690.mode" select="./bibliomisc[@role='secnum']"/> - <xsl:apply-templates mode="iso690.mode" select="./bibliomisc[@role='sectitle']"> - <xsl:with-param name="sep" select="$location.sep"/> - </xsl:apply-templates> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates mode="iso690.mode" select="./bibliomisc[@role='secnum']"> - <xsl:with-param name="sep" select="$location.sep"/> - </xsl:apply-templates> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template name="iso690.article.location"> - <xsl:param name="location.sep"> - <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'location.sep'"/></xsl:call-template> - </xsl:param> - <xsl:param name="locs.sep"> - <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'locs.sep'"/></xsl:call-template> - </xsl:param> - <xsl:choose> - <xsl:when test="not(./date[@role='upd']|./date[@role='cit'])"> - <xsl:choose> - <xsl:when test="./volumenum|./issuenum|./pagenums"> - <xsl:apply-templates mode="iso690.mode" select="./pubdate[not(@role='issuing')]"> - <xsl:with-param name="upd" select="0"/> - <xsl:with-param name="sep" select="$locs.sep"/> - </xsl:apply-templates> - <xsl:call-template name="iso690.location"/> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates mode="iso690.mode" select="./pubdate[not(@role='issuing')]"> - <xsl:with-param name="sep" select="$location.sep"/> - </xsl:apply-templates> - </xsl:otherwise> - </xsl:choose> - </xsl:when> - <xsl:otherwise> - <xsl:choose> - <xsl:when test="./volumenum|./issuenum|./pagenums"> - <xsl:apply-templates mode="iso690.mode" select="./pubdate[not(@role='issuing')]"> - <xsl:with-param name="upd" select="0"/> - <xsl:with-param name="sep" select="$locs.sep"/> - </xsl:apply-templates> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates mode="iso690.mode" select="./pubdate[not(@role='issuing')]"> - <xsl:with-param name="upd" select="0"/> - <xsl:with-param name="sep" select="$location.sep"/> - </xsl:apply-templates> - </xsl:otherwise> - </xsl:choose> - <xsl:choose> - <xsl:when test="./issuenum"> - <xsl:apply-templates mode="iso690.mode" select="./volumenum"/> - <xsl:apply-templates mode="iso690.mode" select="./issuenum"> - <xsl:with-param name="sep"/> - </xsl:apply-templates> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates mode="iso690.mode" select="./volumenum"> - <xsl:with-param name="sep"/> - </xsl:apply-templates> - </xsl:otherwise> - </xsl:choose> - <xsl:choose> - <xsl:when test="./pagenums"> - <xsl:call-template name="iso690.data"> - <xsl:with-param name="sep" select="$locs.sep"/> - </xsl:call-template> - <xsl:apply-templates mode="iso690.mode" select="./pagenums"/> - </xsl:when> - <xsl:otherwise> - <xsl:call-template name="iso690.data"> - <xsl:with-param name="sep" select="$location.sep"/> - </xsl:call-template> - </xsl:otherwise> - </xsl:choose> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template name="iso690.location"> - <xsl:param name="location.sep"> - <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'location.sep'"/></xsl:call-template> - </xsl:param> - <xsl:choose> - <xsl:when test="./volumenum and not(./issuenum) and not(./pagenums)"> - <xsl:apply-templates mode="iso690.mode" select="./volumenum"> - <xsl:with-param name="sep" select="$location.sep"/> - </xsl:apply-templates> - </xsl:when> - <xsl:when test="./issuenum and not(./pagenums)"> - <xsl:apply-templates mode="iso690.mode" select="./volumenum"/> - <xsl:apply-templates mode="iso690.mode" select="./issuenum"> - <xsl:with-param name="sep" select="$location.sep"/> - </xsl:apply-templates> - </xsl:when> - <xsl:when test="./pagenums"> - <xsl:apply-templates mode="iso690.mode" select="./volumenum"/> - <xsl:apply-templates mode="iso690.mode" select="./issuenum"/> - <xsl:apply-templates mode="iso690.mode" select="./pagenums"/> - </xsl:when> - </xsl:choose> -</xsl:template> - -<xsl:template match="bibliomisc[@role='secnum']|bibliomisc[@role='sectitle']" mode="iso690.mode"> - <xsl:param name="sep"> - <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'locs.sep'"/></xsl:call-template> - </xsl:param> - <xsl:apply-templates mode="iso690.mode"/> - <xsl:call-template name="iso690.endsep"> - <xsl:with-param name="text" select="string(.)"/> - <xsl:with-param name="sep" select="$sep"/> - </xsl:call-template> -</xsl:template> - -<xsl:template match="volumenum|issuenum" mode="iso690.mode"> - <xsl:param name="sep"> - <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'locs.sep'"/></xsl:call-template> - </xsl:param> - <xsl:apply-templates mode="iso690.mode"/> - <xsl:call-template name="iso690.endsep"> - <xsl:with-param name="text" select="string(.)"/> - <xsl:with-param name="sep" select="$sep"/> - </xsl:call-template> -</xsl:template> - -<xsl:template match="pagenums" mode="iso690.mode"> - <xsl:param name="sep"> - <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'location.sep'"/></xsl:call-template> - </xsl:param> - <xsl:apply-templates mode="iso690.mode"/> - <xsl:call-template name="iso690.endsep"> - <xsl:with-param name="text" select="string(.)"/> - <xsl:with-param name="sep" select="$sep"/> - </xsl:call-template> -</xsl:template> - -<!-- Series --> -<xsl:template name="iso690.serie"> - <xsl:apply-templates mode="iso690.mode" select=".//bibliomisc[@role='serie']"/> -</xsl:template> - -<!-- Notes --> -<xsl:template name="iso690.notice"> - <xsl:apply-templates mode="iso690.mode" select=".//bibliomisc[not(@role)]"/> -</xsl:template> - -<xsl:template match="bibliomisc[not(@role)]|bibliomisc[@role='serie']" mode="iso690.mode"> - <xsl:param name="notice.sep"> - <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'notice.sep'"/></xsl:call-template> - </xsl:param> - <xsl:apply-templates mode="iso690.mode"/> - <xsl:call-template name="iso690.endsep"> - <xsl:with-param name="text" select="string(.)"/> - <xsl:with-param name="sep" select="$notice.sep"/> - </xsl:call-template> -</xsl:template> - -<!-- Avaibility and access --> -<xsl:template name="iso690.access"> - <xsl:for-each select="./biblioid[@class='uri']|./bibliomisc[@role='access']"> - <xsl:choose> - <xsl:when test="position()=1"> - <xsl:apply-templates mode="iso690.mode" select="."/> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates mode="iso690.mode" select="."> - <xsl:with-param name="firstacc" select="0"/> - </xsl:apply-templates> - </xsl:otherwise> - </xsl:choose> - </xsl:for-each> -</xsl:template> - -<xsl:template match="biblioid[@class='uri']/ulink|bibliomisc[@role='access']/ulink" mode="iso690.mode"> - <xsl:param name="link1"> - <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'link1'"/></xsl:call-template> - </xsl:param> - <xsl:param name="link2"> - <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'link2'"/></xsl:call-template> - </xsl:param> - <xsl:value-of select="$link1"/> - <xsl:call-template name="ulink"/> - <xsl:value-of select="$link2"/> -</xsl:template> - -<xsl:template match="biblioid[@class='uri']|bibliomisc[@role='access']" mode="iso690.mode"> - <xsl:param name="firstacc" select="1"/> - <xsl:param name="access"> - <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'access'"/></xsl:call-template> - </xsl:param> - <xsl:param name="acctoo"> - <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'acctoo'"/></xsl:call-template> - </xsl:param> - <xsl:param name="onwww"> - <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'onwww'"/></xsl:call-template> - </xsl:param> - <xsl:param name="oninet"> - <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'oninet'"/></xsl:call-template> - </xsl:param> - <xsl:param name="access.end"> - <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'access.end'"/></xsl:call-template> - </xsl:param> - <xsl:param name="access.sep"> - <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'access.sep'"/></xsl:call-template> - </xsl:param> - <xsl:choose> - <xsl:when test="$firstacc=1"> - <xsl:value-of select="$access"/> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="$acctoo"/> - </xsl:otherwise> - </xsl:choose> - <xsl:choose> - <xsl:when test="(./ulink)and(string(./ulink)=string(.))"> - <xsl:choose> - <xsl:when test="(starts-with(./ulink/@url,'http://')or(starts-with(./ulink/@url,'https://')))"> - <xsl:value-of select="$onwww"/> - <xsl:value-of select="$access.end"/> - <xsl:apply-templates mode="iso690.mode" select="./ulink"/> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="$oninet"/> - <xsl:value-of select="$access.end"/> - <xsl:apply-templates mode="iso690.mode" select="./ulink"/> - </xsl:otherwise> - </xsl:choose> - </xsl:when> - <xsl:when test="(./ulink)and(string(./ulink)!=string(.))"> - <xsl:value-of select="text()[1]"/> - <xsl:call-template name="iso690.endsep"> - <xsl:with-param name="text" select="text()[1]"/> - <xsl:with-param name="sep" select="$access.end"/> - </xsl:call-template> - <xsl:apply-templates mode="iso690.mode" select="./ulink"/> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates mode="iso690.mode"/> - </xsl:otherwise> - </xsl:choose> - <xsl:value-of select="$access.sep"/> -</xsl:template> - -<!-- Standard number - ISBN --> -<xsl:template name="iso690.isbn"> - <xsl:choose> - <xsl:when test="./biblioid/@class='isbn'"> - <xsl:apply-templates mode="iso690.mode" select="./biblioid[@class='isbn']"/> - </xsl:when> - <xsl:when test="./isbn"> - <xsl:apply-templates mode="iso690.mode" select="./isbn"/> - </xsl:when> - </xsl:choose> -</xsl:template> - -<xsl:template match="isbn|biblioid[@class='isbn']" mode="iso690.mode"> - <xsl:param name="isbn"> - <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'isbn'"/></xsl:call-template> - </xsl:param> - <xsl:param name="stdnum.sep"> - <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'stdnum.sep'"/></xsl:call-template> - </xsl:param> - <xsl:value-of select="$isbn"/> - <xsl:apply-templates mode="iso690.mode"/> - <xsl:value-of select="$stdnum.sep"/> -</xsl:template> - -<!-- Standard number - ISSN --> -<xsl:template name="iso690.issn"> - <xsl:choose> - <xsl:when test="./biblioid/@class='issn'"> - <xsl:apply-templates mode="iso690.mode" select="./biblioid[@class='issn']"/> - </xsl:when> - <xsl:when test="./issn"> - <xsl:apply-templates mode="iso690.mode" select="./issn"/> - </xsl:when> - </xsl:choose> -</xsl:template> - -<xsl:template match="issn|biblioid[@class='issn']" mode="iso690.mode"> - <xsl:param name="issn"> - <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'issn'"/></xsl:call-template> - </xsl:param> - <xsl:param name="stdnum.sep"> - <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'stdnum.sep'"/></xsl:call-template> - </xsl:param> - <xsl:value-of select="$issn"/> - <xsl:apply-templates mode="iso690.mode"/> - <xsl:value-of select="$stdnum.sep"/> -</xsl:template> - -<!-- Identification of patent document --> -<xsl:template name="iso690.pat.ident"> - <xsl:param name="patdate.sep"> - <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'patdate.sep'"/></xsl:call-template> - </xsl:param> - <xsl:apply-templates mode="iso690.mode" select="./address/country"/> - <xsl:apply-templates mode="iso690.mode" select="./bibliomisc[@role='patenttype']"/> - <xsl:choose> - <xsl:when test="./biblioid[@class='other' and @otherclass='patentnum']"> - <xsl:apply-templates mode="iso690.mode" select="./biblioid[@class='other' and @otherclass='patentnum']"/> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates mode="iso690.mode" select="./bibliomisc[@role='patentnum']"/> - </xsl:otherwise> - </xsl:choose> - <xsl:apply-templates mode="iso690.mode" select="./pubdate[not(@role='issuing')]"> - <xsl:with-param name="sep" select="$patdate.sep"/> - </xsl:apply-templates> -</xsl:template> - -<!-- Country or issuing office --> -<xsl:template match="address/country" mode="iso690.mode"> - <xsl:param name="patcountry.sep"> - <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'patcountry.sep'"/></xsl:call-template> - </xsl:param> - <i> - <xsl:apply-templates mode="iso690.mode"/> - </i> - <xsl:value-of select="$patcountry.sep"/> -</xsl:template> - -<!-- Kind of patent document --> -<xsl:template match="bibliomisc[@role='patenttype']" mode="iso690.mode"> - <xsl:param name="pattype.sep"> - <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'pattype.sep'"/></xsl:call-template> - </xsl:param> - <i> - <xsl:apply-templates mode="iso690.mode"/> - </i> - <xsl:value-of select="$pattype.sep"/> -</xsl:template> - -<!-- Number --> -<xsl:template match="biblioid[@class='other' and @otherclass='patentnum']|bibliomisc[@role='patentnum']" mode="iso690.mode"> - <xsl:param name="patnum.sep"> - <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'patnum.sep'"/></xsl:call-template> - </xsl:param> - <xsl:apply-templates mode="iso690.mode"/> - <xsl:value-of select="$patnum.sep"/> -</xsl:template> - -<!-- ==================================================================== --> -<!-- Supplementary templates --> - -<xsl:template name="iso690.endsep"> - <xsl:param name="text"/> - <xsl:param name="sep" select=". "/> - <xsl:choose> - <xsl:when test="substring($text,string-length($text))!=substring($sep,1,1)"> - <xsl:value-of select="$sep"/> - </xsl:when> - <xsl:when test="substring($text,string-length($text))=' '"> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="' '"/> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<!-- ==================================================================== --> - -<xsl:template match="*" mode="iso690.mode"> - <xsl:apply-templates select="."/><!-- try the default mode --> -</xsl:template> - -<!-- ==================================================================== --> - -</xsl:stylesheet> diff --git a/docbook-xsl-1.75.2/html/biblio.xsl b/docbook-xsl-1.75.2/html/biblio.xsl deleted file mode 100644 index f145bb9..0000000 --- a/docbook-xsl-1.75.2/html/biblio.xsl +++ /dev/null @@ -1,1253 +0,0 @@ -<?xml version='1.0'?> -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" - version='1.0'> - -<!-- ******************************************************************** - $Id: biblio.xsl 8421 2009-05-04 07:49:49Z bobstayton $ - ******************************************************************** - - This file is part of the XSL DocBook Stylesheet distribution. - See ../README or http://docbook.sf.net/release/xsl/current/ for - copyright and other information. - - ******************************************************************** --> - -<!-- ==================================================================== --> - -<xsl:template match="bibliography"> - <xsl:call-template name="id.warning"/> - - <div> - <xsl:call-template name="common.html.attributes"> - <xsl:with-param name="inherit" select="1"/> - </xsl:call-template> - <xsl:if test="$generate.id.attributes != 0"> - <xsl:attribute name="id"> - <xsl:call-template name="object.id"/> - </xsl:attribute> - </xsl:if> - - <xsl:call-template name="bibliography.titlepage"/> - - <xsl:apply-templates/> - - <xsl:if test="not(parent::article)"> - <xsl:call-template name="process.footnotes"/> - </xsl:if> - </div> -</xsl:template> - -<xsl:template match="bibliography/bibliographyinfo"></xsl:template> -<xsl:template match="bibliography/info"></xsl:template> -<xsl:template match="bibliography/title"></xsl:template> -<xsl:template match="bibliography/subtitle"></xsl:template> -<xsl:template match="bibliography/titleabbrev"></xsl:template> - -<!-- ==================================================================== --> - -<xsl:template match="bibliodiv"> - <xsl:call-template name="id.warning"/> - - <div> - <xsl:call-template name="common.html.attributes"> - <xsl:with-param name="inherit" select="0"/> - </xsl:call-template> - <xsl:apply-templates/> - </div> -</xsl:template> - -<xsl:template match="bibliodiv/title"> - <h3> - <xsl:call-template name="common.html.attributes"/> - <xsl:call-template name="anchor"> - <xsl:with-param name="node" select=".."/> - <xsl:with-param name="conditional" select="0"/> - </xsl:call-template> - <xsl:apply-templates/> - </h3> -</xsl:template> - -<!-- ==================================================================== --> - -<xsl:template match="bibliolist"> - <div> - <xsl:call-template name="common.html.attributes"> - <xsl:with-param name="inherit" select="0"/> - </xsl:call-template> - <xsl:call-template name="anchor"/> - <xsl:if test="blockinfo/title|info/title|title"> - <xsl:call-template name="formal.object.heading"/> - </xsl:if> - <xsl:apply-templates select="*[not(self::blockinfo) - and not(self::info) - and not(self::title) - and not(self::titleabbrev) - and not(self::biblioentry) - and not(self::bibliomixed)]"/> - <xsl:apply-templates select="biblioentry|bibliomixed"/> - </div> -</xsl:template> - -<!-- ==================================================================== --> - -<xsl:template match="biblioentry"> - <xsl:param name="label"> - <xsl:call-template name="biblioentry.label"/> - </xsl:param> - - <xsl:variable name="id"> - <xsl:call-template name="object.id"/> - </xsl:variable> - - <xsl:choose> - <xsl:when test="string(.) = ''"> - <xsl:variable name="bib" select="document($bibliography.collection,.)"/> - <xsl:variable name="entry" select="$bib/bibliography// - *[@id=$id or @xml:id=$id][1]"/> - <xsl:choose> - <xsl:when test="$entry"> - <xsl:choose> - <xsl:when test="$bibliography.numbered != 0"> - <xsl:apply-templates select="$entry"> - <xsl:with-param name="label" select="$label"/> - </xsl:apply-templates> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates select="$entry"/> - </xsl:otherwise> - </xsl:choose> - </xsl:when> - <xsl:otherwise> - <xsl:message> - <xsl:text>No bibliography entry: </xsl:text> - <xsl:value-of select="$id"/> - <xsl:text> found in </xsl:text> - <xsl:value-of select="$bibliography.collection"/> - </xsl:message> - <div> - <xsl:call-template name="common.html.attributes"/> - <xsl:call-template name="anchor"/> - <p> - <xsl:copy-of select="$label"/> - <xsl:text>Error: no bibliography entry: </xsl:text> - <xsl:value-of select="$id"/> - <xsl:text> found in </xsl:text> - <xsl:value-of select="$bibliography.collection"/> - </p> - </div> - </xsl:otherwise> - </xsl:choose> - </xsl:when> - <xsl:otherwise> - <div> - <xsl:call-template name="common.html.attributes"/> - <xsl:call-template name="anchor"> - <xsl:with-param name="conditional" select="0"/> - </xsl:call-template> - <p> - <xsl:copy-of select="$label"/> - <xsl:choose> - <xsl:when test="$bibliography.style = 'iso690'"> - <xsl:call-template name="iso690.makecitation"/> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates mode="bibliography.mode"/> - </xsl:otherwise> - </xsl:choose> - </p> - </div> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template match="bibliomixed"> - <xsl:param name="label"> - <xsl:call-template name="biblioentry.label"/> - </xsl:param> - - <xsl:variable name="id"> - <xsl:call-template name="object.id"/> - </xsl:variable> - - <xsl:choose> - <xsl:when test="string(.) = ''"> - <xsl:variable name="bib" select="document($bibliography.collection,.)"/> - <xsl:variable name="entry" select="$bib/bibliography// - *[@id=$id or @xml:id=$id][1]"/> - <xsl:choose> - <xsl:when test="$entry"> - <xsl:choose> - <xsl:when test="$bibliography.numbered != 0"> - <xsl:apply-templates select="$entry"> - <xsl:with-param name="label" select="$label"/> - </xsl:apply-templates> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates select="$entry"/> - </xsl:otherwise> - </xsl:choose> - </xsl:when> - <xsl:otherwise> - <xsl:message> - <xsl:text>No bibliography entry: </xsl:text> - <xsl:value-of select="$id"/> - <xsl:text> found in </xsl:text> - <xsl:value-of select="$bibliography.collection"/> - </xsl:message> - <div> - <xsl:call-template name="common.html.attributes"/> - <xsl:call-template name="anchor"/> - <p> - <xsl:copy-of select="$label"/> - <xsl:text>Error: no bibliography entry: </xsl:text> - <xsl:value-of select="$id"/> - <xsl:text> found in </xsl:text> - <xsl:value-of select="$bibliography.collection"/> - </p> - </div> - </xsl:otherwise> - </xsl:choose> - </xsl:when> - <xsl:otherwise> - <div> - <xsl:call-template name="common.html.attributes"/> - <xsl:call-template name="anchor"> - <xsl:with-param name="conditional" select="0"/> - </xsl:call-template> - <p> - <xsl:call-template name="common.html.attributes"/> - <xsl:copy-of select="$label"/> - <xsl:apply-templates mode="bibliomixed.mode"/> - </p> - </div> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template name="biblioentry.label"> - <xsl:param name="node" select="."/> - - <xsl:choose> - <xsl:when test="$bibliography.numbered != 0"> - <xsl:text>[</xsl:text> - <xsl:number from="bibliography" count="biblioentry|bibliomixed" - level="any" format="1"/> - <xsl:text>] </xsl:text> - </xsl:when> - <xsl:when test="local-name($node/child::*[1]) = 'abbrev'"> - <xsl:text>[</xsl:text> - <xsl:apply-templates select="$node/abbrev[1]"/> - <xsl:text>] </xsl:text> - </xsl:when> - <xsl:when test="$node/@xreflabel"> - <xsl:text>[</xsl:text> - <xsl:value-of select="$node/@xreflabel"/> - <xsl:text>] </xsl:text> - </xsl:when> - <xsl:when test="$node/@id"> - <xsl:text>[</xsl:text> - <xsl:value-of select="$node/@id"/> - <xsl:text>] </xsl:text> - </xsl:when> - <xsl:when test="$node/@xml:id"> - <xsl:text>[</xsl:text> - <xsl:value-of select="$node/@xml:id"/> - <xsl:text>] </xsl:text> - </xsl:when> - <xsl:otherwise><!-- nop --></xsl:otherwise> - </xsl:choose> -</xsl:template> - -<!-- ==================================================================== --> - -<xsl:template match="*" mode="bibliography.mode"> - <xsl:apply-templates select="."/><!-- try the default mode --> -</xsl:template> - -<xsl:template match="abbrev" mode="bibliography.mode"> - <xsl:if test="preceding-sibling::*"> - <xsl:apply-templates mode="bibliography.mode"/> - </xsl:if> -</xsl:template> - -<xsl:template match="abstract" mode="bibliography.mode"> - <!-- suppressed --> -</xsl:template> - -<xsl:template match="address" mode="bibliography.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliography.mode"/> - <xsl:copy-of select="$biblioentry.item.separator"/> - </span> -</xsl:template> - -<xsl:template match="affiliation" mode="bibliography.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliography.mode"/> - <xsl:copy-of select="$biblioentry.item.separator"/> - </span> -</xsl:template> - -<xsl:template match="shortaffil" mode="bibliography.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliography.mode"/> - <xsl:copy-of select="$biblioentry.item.separator"/> - </span> -</xsl:template> - -<xsl:template match="jobtitle" mode="bibliography.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliography.mode"/> - <xsl:copy-of select="$biblioentry.item.separator"/> - </span> -</xsl:template> - -<xsl:template match="artheader|articleinfo|info" mode="bibliography.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliography.mode"/> - <xsl:copy-of select="$biblioentry.item.separator"/> - </span> -</xsl:template> - -<xsl:template match="artpagenums" mode="bibliography.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliography.mode"/> - <xsl:copy-of select="$biblioentry.item.separator"/> - </span> -</xsl:template> - -<xsl:template match="author" mode="bibliography.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:call-template name="person.name"/> - <xsl:copy-of select="$biblioentry.item.separator"/> - </span> -</xsl:template> - -<xsl:template match="authorblurb|personblurb" mode="bibliography.mode"> - <!-- suppressed --> -</xsl:template> - -<xsl:template match="authorgroup" mode="bibliography.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:call-template name="person.name.list"/> - <xsl:copy-of select="$biblioentry.item.separator"/> - </span> -</xsl:template> - -<xsl:template match="authorinitials" mode="bibliography.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliography.mode"/> - <xsl:copy-of select="$biblioentry.item.separator"/> - </span> -</xsl:template> - -<xsl:template match="bibliomisc" mode="bibliography.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliography.mode"/> - <xsl:copy-of select="$biblioentry.item.separator"/> - </span> -</xsl:template> - -<xsl:template match="bibliomset" mode="bibliography.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliography.mode"/> - <xsl:copy-of select="$biblioentry.item.separator"/> - </span> -</xsl:template> - -<!-- ================================================== --> - -<xsl:template match="biblioset" mode="bibliography.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliography.mode"/> - </span> -</xsl:template> - -<xsl:template match="biblioset/title|biblioset/citetitle" - mode="bibliography.mode"> - <xsl:variable name="relation" select="../@relation"/> - <xsl:choose> - <xsl:when test="$relation='article' or @pubwork='article'"> - <xsl:call-template name="gentext.startquote"/> - <xsl:apply-templates/> - <xsl:call-template name="gentext.endquote"/> - </xsl:when> - <xsl:otherwise> - <i><xsl:apply-templates/></i> - </xsl:otherwise> - </xsl:choose> - <xsl:copy-of select="$biblioentry.item.separator"/> -</xsl:template> - -<!-- ================================================== --> - -<xsl:template match="bookbiblio" mode="bibliography.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliography.mode"/> - <xsl:copy-of select="$biblioentry.item.separator"/> - </span> -</xsl:template> - -<xsl:template match="citetitle" mode="bibliography.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:choose> - <xsl:when test="@pubwork = 'article'"> - <xsl:call-template name="gentext.startquote"/> - <xsl:call-template name="inline.charseq"/> - <xsl:call-template name="gentext.endquote"/> - </xsl:when> - <xsl:otherwise> - <xsl:call-template name="inline.italicseq"/> - </xsl:otherwise> - </xsl:choose> - <xsl:copy-of select="$biblioentry.item.separator"/> - </span> -</xsl:template> - -<xsl:template match="collab" mode="bibliography.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliography.mode"/> - <xsl:copy-of select="$biblioentry.item.separator"/> - </span> -</xsl:template> - -<xsl:template match="collabname" mode="bibliography.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliography.mode"/> - <xsl:copy-of select="$biblioentry.item.separator"/> - </span> -</xsl:template> - -<xsl:template match="confgroup" mode="bibliography.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliography.mode"/> - <xsl:copy-of select="$biblioentry.item.separator"/> - </span> -</xsl:template> - -<xsl:template match="confdates" mode="bibliography.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliography.mode"/> - <xsl:copy-of select="$biblioentry.item.separator"/> - </span> -</xsl:template> - -<xsl:template match="conftitle" mode="bibliography.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliography.mode"/> - <xsl:copy-of select="$biblioentry.item.separator"/> - </span> -</xsl:template> - -<xsl:template match="confnum" mode="bibliography.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliography.mode"/> - <xsl:copy-of select="$biblioentry.item.separator"/> - </span> -</xsl:template> - -<xsl:template match="confsponsor" mode="bibliography.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliography.mode"/> - <xsl:copy-of select="$biblioentry.item.separator"/> - </span> -</xsl:template> - -<xsl:template match="contractnum" mode="bibliography.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliography.mode"/> - <xsl:copy-of select="$biblioentry.item.separator"/> - </span> -</xsl:template> - -<xsl:template match="contractsponsor" mode="bibliography.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliography.mode"/> - <xsl:copy-of select="$biblioentry.item.separator"/> - </span> -</xsl:template> - -<xsl:template match="contrib" mode="bibliography.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliography.mode"/> - <xsl:copy-of select="$biblioentry.item.separator"/> - </span> -</xsl:template> - -<!-- ================================================== --> - -<xsl:template match="copyright" mode="bibliography.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:call-template name="gentext"> - <xsl:with-param name="key" select="'Copyright'"/> - </xsl:call-template> - <xsl:call-template name="gentext.space"/> - <xsl:call-template name="dingbat"> - <xsl:with-param name="dingbat">copyright</xsl:with-param> - </xsl:call-template> - <xsl:call-template name="gentext.space"/> - <xsl:apply-templates select="year" mode="bibliography.mode"/> - <xsl:if test="holder"> - <xsl:call-template name="gentext.space"/> - <xsl:apply-templates select="holder" mode="bibliography.mode"/> - </xsl:if> - <xsl:copy-of select="$biblioentry.item.separator"/> - </span> -</xsl:template> - -<xsl:template match="year" mode="bibliography.mode"> - <xsl:apply-templates/><xsl:text>, </xsl:text> -</xsl:template> - -<xsl:template match="year[position()=last()]" mode="bibliography.mode"> - <xsl:apply-templates/> -</xsl:template> - -<xsl:template match="holder" mode="bibliography.mode"> - <xsl:apply-templates/> -</xsl:template> - -<!-- ================================================== --> - -<xsl:template match="corpauthor" mode="bibliography.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliography.mode"/> - <xsl:copy-of select="$biblioentry.item.separator"/> - </span> -</xsl:template> - -<xsl:template match="corpcredit" mode="bibliography.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliography.mode"/> - <xsl:copy-of select="$biblioentry.item.separator"/> - </span> -</xsl:template> - -<xsl:template match="corpname" mode="bibliography.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliography.mode"/> - <xsl:copy-of select="$biblioentry.item.separator"/> - </span> -</xsl:template> - -<xsl:template match="date" mode="bibliography.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliography.mode"/> - <xsl:copy-of select="$biblioentry.item.separator"/> - </span> -</xsl:template> - -<xsl:template match="edition" mode="bibliography.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliography.mode"/> - <xsl:copy-of select="$biblioentry.item.separator"/> - </span> -</xsl:template> - -<xsl:template match="editor" mode="bibliography.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:call-template name="person.name"/> - <xsl:copy-of select="$biblioentry.item.separator"/> - </span> -</xsl:template> - -<xsl:template match="firstname" mode="bibliography.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliography.mode"/> - <xsl:copy-of select="$biblioentry.item.separator"/> - </span> -</xsl:template> - -<xsl:template match="honorific" mode="bibliography.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliography.mode"/> - <xsl:copy-of select="$biblioentry.item.separator"/> - </span> -</xsl:template> - -<xsl:template match="indexterm" mode="bibliography.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliography.mode"/> - <xsl:copy-of select="$biblioentry.item.separator"/> - </span> -</xsl:template> - -<xsl:template match="invpartnumber" mode="bibliography.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliography.mode"/> - <xsl:copy-of select="$biblioentry.item.separator"/> - </span> -</xsl:template> - -<xsl:template match="isbn" mode="bibliography.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliography.mode"/> - <xsl:copy-of select="$biblioentry.item.separator"/> - </span> -</xsl:template> - -<xsl:template match="issn" mode="bibliography.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliography.mode"/> - <xsl:copy-of select="$biblioentry.item.separator"/> - </span> -</xsl:template> - -<xsl:template match="issuenum" mode="bibliography.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliography.mode"/> - <xsl:copy-of select="$biblioentry.item.separator"/> - </span> -</xsl:template> - -<xsl:template match="lineage" mode="bibliography.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliography.mode"/> - <xsl:copy-of select="$biblioentry.item.separator"/> - </span> -</xsl:template> - -<xsl:template match="orgname" mode="bibliography.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliography.mode"/> - <xsl:copy-of select="$biblioentry.item.separator"/> - </span> -</xsl:template> - -<xsl:template match="orgdiv" mode="bibliography.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliography.mode"/> - <xsl:copy-of select="$biblioentry.item.separator"/> - </span> -</xsl:template> - -<xsl:template match="othercredit" mode="bibliography.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliography.mode"/> - <xsl:copy-of select="$biblioentry.item.separator"/> - </span> -</xsl:template> - -<xsl:template match="othername" mode="bibliography.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliography.mode"/> - <xsl:copy-of select="$biblioentry.item.separator"/> - </span> -</xsl:template> - -<xsl:template match="pagenums" mode="bibliography.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliography.mode"/> - <xsl:copy-of select="$biblioentry.item.separator"/> - </span> -</xsl:template> - -<xsl:template match="printhistory" mode="bibliography.mode"> - <!-- suppressed --> -</xsl:template> - -<xsl:template match="productname" mode="bibliography.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliography.mode"/> - <xsl:copy-of select="$biblioentry.item.separator"/> - </span> -</xsl:template> - -<xsl:template match="productnumber" mode="bibliography.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliography.mode"/> - <xsl:copy-of select="$biblioentry.item.separator"/> - </span> -</xsl:template> - -<xsl:template match="pubdate" mode="bibliography.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliography.mode"/> - <xsl:copy-of select="$biblioentry.item.separator"/> - </span> -</xsl:template> - -<xsl:template match="publisher" mode="bibliography.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliography.mode"/> - </span> -</xsl:template> - -<xsl:template match="publishername" mode="bibliography.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliography.mode"/> - <xsl:copy-of select="$biblioentry.item.separator"/> - </span> -</xsl:template> - -<xsl:template match="pubsnumber" mode="bibliography.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliography.mode"/> - <xsl:copy-of select="$biblioentry.item.separator"/> - </span> -</xsl:template> - -<xsl:template match="releaseinfo" mode="bibliography.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliography.mode"/> - <xsl:copy-of select="$biblioentry.item.separator"/> - </span> -</xsl:template> - -<xsl:template match="revhistory" mode="bibliography.mode"> - <!-- suppressed; how could this be represented? --> -</xsl:template> - -<xsl:template match="seriesinfo" mode="bibliography.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliography.mode"/> - </span> -</xsl:template> - -<xsl:template match="seriesvolnums" mode="bibliography.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliography.mode"/> - <xsl:copy-of select="$biblioentry.item.separator"/> - </span> -</xsl:template> - -<xsl:template match="subtitle" mode="bibliography.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliography.mode"/> - <xsl:copy-of select="$biblioentry.item.separator"/> - </span> -</xsl:template> - -<xsl:template match="surname" mode="bibliography.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliography.mode"/> - <xsl:copy-of select="$biblioentry.item.separator"/> - </span> -</xsl:template> - -<xsl:template match="title" mode="bibliography.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <i><xsl:apply-templates mode="bibliography.mode"/></i> - <xsl:copy-of select="$biblioentry.item.separator"/> - </span> -</xsl:template> - -<xsl:template match="titleabbrev" mode="bibliography.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliography.mode"/> - <xsl:copy-of select="$biblioentry.item.separator"/> - </span> -</xsl:template> - -<xsl:template match="volumenum" mode="bibliography.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliography.mode"/> - <xsl:copy-of select="$biblioentry.item.separator"/> - </span> -</xsl:template> - -<xsl:template match="bibliocoverage|biblioid|bibliorelation|bibliosource" - mode="bibliography.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliography.mode"/> - <xsl:copy-of select="$biblioentry.item.separator"/> - </span> -</xsl:template> - -<!-- See FR #1934434 and http://doi.org --> -<xsl:template match="biblioid[@class='doi']" - mode="bibliography.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <a href="{concat('http://dx.doi.org/', .)}">doi:<xsl:value-of select="."/></a> - </span> -</xsl:template> - -<!-- ==================================================================== --> - -<xsl:template match="*" mode="bibliomixed.mode"> - <xsl:apply-templates select="."/><!-- try the default mode --> -</xsl:template> - -<xsl:template match="abbrev" mode="bibliomixed.mode"> - <xsl:if test="preceding-sibling::*"> - <xsl:apply-templates mode="bibliomixed.mode"/> - </xsl:if> -</xsl:template> - -<xsl:template match="abstract" mode="bibliomixed.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliomixed.mode"/> - </span> -</xsl:template> - -<xsl:template match="address" mode="bibliomixed.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliomixed.mode"/> - </span> -</xsl:template> - -<xsl:template match="affiliation" mode="bibliomixed.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliomixed.mode"/> - </span> -</xsl:template> - -<xsl:template match="shortaffil" mode="bibliomixed.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliomixed.mode"/> - </span> -</xsl:template> - -<xsl:template match="jobtitle" mode="bibliomixed.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliomixed.mode"/> - </span> -</xsl:template> - -<xsl:template match="artpagenums" mode="bibliomixed.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliomixed.mode"/> - </span> -</xsl:template> - -<xsl:template match="author" mode="bibliomixed.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliomixed.mode"/> - </span> -</xsl:template> - -<xsl:template match="authorblurb|personblurb" mode="bibliomixed.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliomixed.mode"/> - </span> -</xsl:template> - -<xsl:template match="authorgroup" mode="bibliomixed.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliomixed.mode"/> - </span> -</xsl:template> - -<xsl:template match="authorinitials" mode="bibliomixed.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliomixed.mode"/> - </span> -</xsl:template> - -<xsl:template match="bibliomisc" mode="bibliomixed.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliomixed.mode"/> - </span> -</xsl:template> - -<!-- ================================================== --> - -<xsl:template match="bibliomset" mode="bibliomixed.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliomixed.mode"/> - </span> -</xsl:template> - -<xsl:template match="bibliomset/title|bibliomset/citetitle" - mode="bibliomixed.mode"> - <xsl:variable name="relation" select="../@relation"/> - <xsl:choose> - <xsl:when test="$relation='article' or @pubwork='article'"> - <xsl:call-template name="gentext.startquote"/> - <xsl:apply-templates/> - <xsl:call-template name="gentext.endquote"/> - </xsl:when> - <xsl:otherwise> - <i><xsl:apply-templates/></i> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<!-- ================================================== --> - -<xsl:template match="biblioset" mode="bibliomixed.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliomixed.mode"/> - </span> -</xsl:template> - -<xsl:template match="citetitle" mode="bibliomixed.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:choose> - <xsl:when test="@pubwork = 'article'"> - <xsl:call-template name="gentext.startquote"/> - <xsl:call-template name="inline.charseq"/> - <xsl:call-template name="gentext.endquote"/> - </xsl:when> - <xsl:otherwise> - <xsl:call-template name="inline.italicseq"/> - </xsl:otherwise> - </xsl:choose> - </span> -</xsl:template> - - -<xsl:template match="collab" mode="bibliomixed.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliomixed.mode"/> - </span> -</xsl:template> - -<xsl:template match="confgroup" mode="bibliomixed.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliomixed.mode"/> - </span> -</xsl:template> - -<xsl:template match="contractnum" mode="bibliomixed.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliomixed.mode"/> - </span> -</xsl:template> - -<xsl:template match="contractsponsor" mode="bibliomixed.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliomixed.mode"/> - </span> -</xsl:template> - -<xsl:template match="contrib" mode="bibliomixed.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliomixed.mode"/> - </span> -</xsl:template> - -<xsl:template match="copyright" mode="bibliomixed.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliomixed.mode"/> - </span> -</xsl:template> - -<xsl:template match="corpauthor" mode="bibliomixed.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliomixed.mode"/> - </span> -</xsl:template> - -<xsl:template match="corpcredit" mode="bibliomixed.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliomixed.mode"/> - </span> -</xsl:template> - -<xsl:template match="corpname" mode="bibliomixed.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliomixed.mode"/> - </span> -</xsl:template> - -<xsl:template match="date" mode="bibliomixed.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliomixed.mode"/> - </span> -</xsl:template> - -<xsl:template match="edition" mode="bibliomixed.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliomixed.mode"/> - </span> -</xsl:template> - -<xsl:template match="editor" mode="bibliomixed.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliomixed.mode"/> - </span> -</xsl:template> - -<xsl:template match="firstname" mode="bibliomixed.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliomixed.mode"/> - </span> -</xsl:template> - -<xsl:template match="honorific" mode="bibliomixed.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliomixed.mode"/> - </span> -</xsl:template> - -<xsl:template match="indexterm" mode="bibliomixed.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliomixed.mode"/> - </span> -</xsl:template> - -<xsl:template match="invpartnumber" mode="bibliomixed.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliomixed.mode"/> - </span> -</xsl:template> - -<xsl:template match="isbn" mode="bibliomixed.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliomixed.mode"/> - </span> -</xsl:template> - -<xsl:template match="issn" mode="bibliomixed.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliomixed.mode"/> - </span> -</xsl:template> - -<xsl:template match="issuenum" mode="bibliomixed.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliomixed.mode"/> - </span> -</xsl:template> - -<xsl:template match="lineage" mode="bibliomixed.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliomixed.mode"/> - </span> -</xsl:template> - -<xsl:template match="orgname" mode="bibliomixed.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliomixed.mode"/> - </span> -</xsl:template> - -<xsl:template match="othercredit" mode="bibliomixed.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliomixed.mode"/> - </span> -</xsl:template> - -<xsl:template match="othername" mode="bibliomixed.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliomixed.mode"/> - </span> -</xsl:template> - -<xsl:template match="pagenums" mode="bibliomixed.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliomixed.mode"/> - </span> -</xsl:template> - -<xsl:template match="printhistory" mode="bibliomixed.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliomixed.mode"/> - </span> -</xsl:template> - -<xsl:template match="productname" mode="bibliomixed.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliomixed.mode"/> - </span> -</xsl:template> - -<xsl:template match="productnumber" mode="bibliomixed.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliomixed.mode"/> - </span> -</xsl:template> - -<xsl:template match="pubdate" mode="bibliomixed.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliomixed.mode"/> - </span> -</xsl:template> - -<xsl:template match="publisher" mode="bibliomixed.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliomixed.mode"/> - </span> -</xsl:template> - -<xsl:template match="publishername" mode="bibliomixed.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliomixed.mode"/> - </span> -</xsl:template> - -<xsl:template match="pubsnumber" mode="bibliomixed.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliomixed.mode"/> - </span> -</xsl:template> - -<xsl:template match="releaseinfo" mode="bibliomixed.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliomixed.mode"/> - </span> -</xsl:template> - -<xsl:template match="revhistory" mode="bibliomixed.mode"> - <!-- suppressed; how could this be represented? --> -</xsl:template> - -<xsl:template match="seriesvolnums" mode="bibliomixed.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliomixed.mode"/> - </span> -</xsl:template> - -<xsl:template match="subtitle" mode="bibliomixed.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliomixed.mode"/> - </span> -</xsl:template> - -<xsl:template match="surname" mode="bibliomixed.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliomixed.mode"/> - </span> -</xsl:template> - -<xsl:template match="title" mode="bibliomixed.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliomixed.mode"/> - </span> -</xsl:template> - -<xsl:template match="titleabbrev" mode="bibliomixed.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliomixed.mode"/> - </span> -</xsl:template> - -<xsl:template match="volumenum" mode="bibliomixed.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliomixed.mode"/> - </span> -</xsl:template> - -<xsl:template match="bibliocoverage|biblioid|bibliorelation|bibliosource" - mode="bibliomixed.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates mode="bibliomixed.mode"/> - </span> -</xsl:template> - -<!-- See FR #1934434 and http://doi.org --> -<xsl:template match="biblioid[@class='doi']" - mode="bibliomixed.mode"> - <span> - <xsl:call-template name="common.html.attributes"/> - <a href="{concat('http://dx.doi.org/', .)}">doi:<xsl:value-of select="."/></a> - </span> -</xsl:template> - -<!-- ==================================================================== --> - -</xsl:stylesheet> diff --git a/docbook-xsl-1.75.2/html/block.xsl b/docbook-xsl-1.75.2/html/block.xsl deleted file mode 100644 index e2937c2..0000000 --- a/docbook-xsl-1.75.2/html/block.xsl +++ /dev/null @@ -1,437 +0,0 @@ -<?xml version='1.0'?> -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" - version='1.0'> - -<!-- ******************************************************************** - $Id: block.xsl 8441 2009-05-24 02:14:56Z abdelazer $ - ******************************************************************** - - This file is part of the XSL DocBook Stylesheet distribution. - See ../README or http://docbook.sf.net/release/xsl/current/ for - copyright and other information. - - ******************************************************************** --> - -<!-- ==================================================================== --> -<!-- What should we do about styling blockinfo? --> - -<xsl:template match="blockinfo|info"> - <!-- suppress --> -</xsl:template> - -<!-- ==================================================================== --> - -<xsl:template name="block.object"> - <div> - <xsl:call-template name="common.html.attributes"/> - <xsl:call-template name="anchor"/> - <xsl:apply-templates/> - </div> -</xsl:template> - -<!-- ==================================================================== --> - -<xsl:template match="para"> - <xsl:call-template name="paragraph"> - <xsl:with-param name="class"> - <xsl:if test="@role and $para.propagates.style != 0"> - <xsl:value-of select="@role"/> - </xsl:if> - </xsl:with-param> - <xsl:with-param name="content"> - <xsl:if test="position() = 1 and parent::listitem"> - <xsl:call-template name="anchor"> - <xsl:with-param name="node" select="parent::listitem"/> - </xsl:call-template> - </xsl:if> - - <xsl:call-template name="anchor"/> - <xsl:apply-templates/> - </xsl:with-param> - </xsl:call-template> -</xsl:template> - -<xsl:template name="paragraph"> - <xsl:param name="class" select="''"/> - <xsl:param name="content"/> - - <xsl:variable name="p"> - <p> - <xsl:choose> - <xsl:when test="$class != ''"> - <xsl:call-template name="common.html.attributes"> - <xsl:with-param name="class" select="$class"/> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <xsl:call-template name="locale.html.attributes"/> - </xsl:otherwise> - </xsl:choose> - <xsl:copy-of select="$content"/> - </p> - </xsl:variable> - - <xsl:choose> - <xsl:when test="$html.cleanup != 0"> - <xsl:call-template name="unwrap.p"> - <xsl:with-param name="p" select="$p"/> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <xsl:copy-of select="$p"/> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template match="simpara"> - <!-- see also listitem/simpara in lists.xsl --> - <p> - <xsl:call-template name="locale.html.attributes"/> - <xsl:if test="@role and $para.propagates.style != 0"> - <xsl:apply-templates select="." mode="class.attribute"> - <xsl:with-param name="class" select="@role"/> - </xsl:apply-templates> - </xsl:if> - - <xsl:call-template name="anchor"/> - <xsl:apply-templates/> - </p> -</xsl:template> - -<xsl:template match="formalpara"> - <xsl:call-template name="paragraph"> - <xsl:with-param name="class"> - <xsl:if test="@role and $para.propagates.style != 0"> - <xsl:value-of select="@role"/> - </xsl:if> - </xsl:with-param> - <xsl:with-param name="content"> - <xsl:call-template name="anchor"/> - <xsl:apply-templates/> - </xsl:with-param> - </xsl:call-template> -</xsl:template> - -<!-- Only use title from info --> -<xsl:template match="formalpara/info"> - <xsl:apply-templates select="title"/> -</xsl:template> - -<xsl:template match="formalpara/title|formalpara/info/title"> - <xsl:variable name="titleStr"> - <xsl:apply-templates/> - </xsl:variable> - <xsl:variable name="lastChar"> - <xsl:if test="$titleStr != ''"> - <xsl:value-of select="substring($titleStr,string-length($titleStr),1)"/> - </xsl:if> - </xsl:variable> - - <b> - <xsl:copy-of select="$titleStr"/> - <xsl:if test="$lastChar != '' - and not(contains($runinhead.title.end.punct, $lastChar))"> - <xsl:value-of select="$runinhead.default.title.end.punct"/> - </xsl:if> - <xsl:text> </xsl:text> - </b> -</xsl:template> - -<xsl:template match="formalpara/para"> - <xsl:apply-templates/> -</xsl:template> - -<!-- ==================================================================== --> - -<xsl:template match="blockquote"> - <div> - <xsl:call-template name="common.html.attributes"/> - <xsl:call-template name="anchor"/> - - <xsl:choose> - <xsl:when test="attribution"> - <table border="0" width="100%" - cellspacing="0" cellpadding="0" class="blockquote" - summary="Block quote"> - <tr> - <td width="10%" valign="top"> </td> - <td width="80%" valign="top"> - <xsl:apply-templates select="child::*[local-name(.)!='attribution']"/> - </td> - <td width="10%" valign="top"> </td> - </tr> - <tr> - <td width="10%" valign="top"> </td> - <td colspan="2" align="{$direction.align.end}" valign="top"> - <xsl:text>--</xsl:text> - <xsl:apply-templates select="attribution"/> - </td> - </tr> - </table> - </xsl:when> - <xsl:otherwise> - <blockquote> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates/> - </blockquote> - </xsl:otherwise> - </xsl:choose> - </div> -</xsl:template> - -<xsl:template match="blockquote/title|blockquote/info/title"> - <div class="blockquote-title"> - <p> - <b> - <xsl:apply-templates/> - </b> - </p> - </div> -</xsl:template> - -<!-- Use an em dash per Chicago Manual of Style and https://sourceforge.net/tracker/index.php?func=detail&aid=2793878&group_id=21935&atid=373747 --> -<xsl:template match="epigraph"> - <div> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates select="para|simpara|formalpara|literallayout"/> - <xsl:if test="attribution"> - <div class="attribution"> - <span>—<xsl:apply-templates select="attribution"/></span> - </div> - </xsl:if> - </div> -</xsl:template> - -<xsl:template match="attribution"> - <span> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates/> - </span> -</xsl:template> - -<!-- ==================================================================== --> - -<xsl:template match="abstract|sidebar"> - <div> - <xsl:call-template name="common.html.attributes"/> - <xsl:call-template name="anchor"/> - <xsl:call-template name="formal.object.heading"> - <xsl:with-param name="title"> - <xsl:apply-templates select="." mode="title.markup"> - <xsl:with-param name="allow-anchors" select="'1'"/> - </xsl:apply-templates> - </xsl:with-param> - </xsl:call-template> - <xsl:apply-templates/> - </div> -</xsl:template> - -<xsl:template match="abstract/title|sidebar/title"> -</xsl:template> - -<xsl:template match="sidebar/sidebarinfo|sidebar/info"/> - -<!-- ==================================================================== --> - -<xsl:template match="msgset"> - <xsl:apply-templates/> -</xsl:template> - -<xsl:template match="msgentry"> - <xsl:call-template name="block.object"/> -</xsl:template> - -<xsl:template match="simplemsgentry"> - <xsl:call-template name="block.object"/> -</xsl:template> - -<xsl:template match="msg"> - <xsl:call-template name="block.object"/> -</xsl:template> - -<xsl:template match="msgmain"> - <xsl:apply-templates/> -</xsl:template> - -<xsl:template match="msgmain/title"> - <b><xsl:apply-templates/></b> -</xsl:template> - -<xsl:template match="msgsub"> - <xsl:apply-templates/> -</xsl:template> - -<xsl:template match="msgsub/title"> - <b><xsl:apply-templates/></b> -</xsl:template> - -<xsl:template match="msgrel"> - <xsl:apply-templates/> -</xsl:template> - -<xsl:template match="msgrel/title"> - <b><xsl:apply-templates/></b> -</xsl:template> - -<xsl:template match="msgtext"> - <xsl:apply-templates/> -</xsl:template> - -<xsl:template match="msginfo"> - <xsl:call-template name="block.object"/> -</xsl:template> - -<xsl:template match="msglevel"> - <p> - <b> - <xsl:call-template name="gentext.template"> - <xsl:with-param name="context" select="'msgset'"/> - <xsl:with-param name="name" select="'MsgLevel'"/> - </xsl:call-template> - </b> - <xsl:apply-templates/> - </p> -</xsl:template> - -<xsl:template match="msgorig"> - <p> - <b> - <xsl:call-template name="gentext.template"> - <xsl:with-param name="context" select="'msgset'"/> - <xsl:with-param name="name" select="'MsgOrig'"/> - </xsl:call-template> - </b> - <xsl:apply-templates/> - </p> -</xsl:template> - -<xsl:template match="msgaud"> - <p> - <b> - <xsl:call-template name="gentext.template"> - <xsl:with-param name="context" select="'msgset'"/> - <xsl:with-param name="name" select="'MsgAud'"/> - </xsl:call-template> - </b> - <xsl:apply-templates/> - </p> -</xsl:template> - -<xsl:template match="msgexplan"> - <xsl:call-template name="block.object"/> -</xsl:template> - -<xsl:template match="msgexplan/title"> - <p><b><xsl:apply-templates/></b></p> -</xsl:template> - -<!-- ==================================================================== --> - -<xsl:template match="revhistory"> - <div> - <xsl:call-template name="common.html.attributes"/> - <table border="0" width="100%" summary="Revision history"> - <tr> - <th align="{$direction.align.start}" valign="top" colspan="3"> - <b> - <xsl:call-template name="gentext"> - <xsl:with-param name="key" select="'RevHistory'"/> - </xsl:call-template> - </b> - </th> - </tr> - <xsl:apply-templates/> - </table> - </div> -</xsl:template> - -<xsl:template match="revhistory/revision"> - <xsl:variable name="revnumber" select="revnumber"/> - <xsl:variable name="revdate" select="date"/> - <xsl:variable name="revauthor" select="authorinitials|author"/> - <xsl:variable name="revremark" select="revremark|revdescription"/> - <tr> - <td align="{$direction.align.start}"> - <xsl:if test="$revnumber"> - <xsl:call-template name="gentext"> - <xsl:with-param name="key" select="'Revision'"/> - </xsl:call-template> - <xsl:call-template name="gentext.space"/> - <xsl:apply-templates select="$revnumber"/> - </xsl:if> - </td> - <td align="{$direction.align.start}"> - <xsl:apply-templates select="$revdate"/> - </td> - <xsl:choose> - <xsl:when test="count($revauthor)=0"> - <td align="{$direction.align.start}"> - <xsl:call-template name="dingbat"> - <xsl:with-param name="dingbat">nbsp</xsl:with-param> - </xsl:call-template> - </td> - </xsl:when> - <xsl:otherwise> - <td align="{$direction.align.start}"> - <xsl:for-each select="$revauthor"> - <xsl:apply-templates select="."/> - <xsl:if test="position() != last()"> - <xsl:text>, </xsl:text> - </xsl:if> - </xsl:for-each> - </td> - </xsl:otherwise> - </xsl:choose> - </tr> - <xsl:if test="$revremark"> - <tr> - <td align="{$direction.align.start}" colspan="3"> - <xsl:apply-templates select="$revremark"/> - </td> - </tr> - </xsl:if> -</xsl:template> - -<xsl:template match="revision/revnumber"> - <xsl:apply-templates/> -</xsl:template> - -<xsl:template match="revision/date"> - <xsl:apply-templates/> -</xsl:template> - -<xsl:template match="revision/authorinitials"> - <xsl:text>, </xsl:text> - <xsl:apply-templates/> -</xsl:template> - -<xsl:template match="revision/authorinitials[1]" priority="2"> - <xsl:apply-templates/> -</xsl:template> - -<xsl:template match="revision/revremark"> - <xsl:apply-templates/> -</xsl:template> - -<xsl:template match="revision/revdescription"> - <xsl:apply-templates/> -</xsl:template> - -<!-- ==================================================================== --> - -<xsl:template match="ackno|acknowledgements[parent::article]"> - <p> - <xsl:call-template name="common.html.attributes"/> - <xsl:apply-templates/> - </p> -</xsl:template> - -<!-- ==================================================================== --> - -<xsl:template match="highlights"> - <xsl:call-template name="block.object"/> -</xsl:template> - -<!-- ==================================================================== --> - -</xsl:stylesheet> diff --git a/docbook-xsl-1.75.2/html/callout.xsl b/docbook-xsl-1.75.2/html/callout.xsl deleted file mode 100644 index 88a9bd0..0000000 --- a/docbook-xsl-1.75.2/html/callout.xsl +++ /dev/null @@ -1,201 +0,0 @@ -<?xml version='1.0'?> -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" - xmlns:sverb="http://nwalsh.com/xslt/ext/com.nwalsh.saxon.Verbatim" - xmlns:xverb="xalan://com.nwalsh.xalan.Verbatim" - xmlns:lxslt="http://xml.apache.org/xslt" - exclude-result-prefixes="sverb xverb lxslt" - version='1.0'> - -<!-- ******************************************************************** - $Id: callout.xsl 8421 2009-05-04 07:49:49Z bobstayton $ - ******************************************************************** - - This file is part of the XSL DocBook Stylesheet distribution. - See ../README or http://docbook.sf.net/release/xsl/current/ for - copyright and other information. - - ******************************************************************** --> - -<lxslt:component prefix="xverb" - functions="insertCallouts"/> - -<xsl:template match="programlistingco|screenco"> - <xsl:variable name="verbatim" select="programlisting|screen"/> - - <xsl:choose> - <xsl:when test="$use.extensions != '0' - and $callouts.extension != '0'"> - <xsl:variable name="rtf"> - <xsl:apply-templates select="$verbatim"> - <xsl:with-param name="suppress-numbers" select="'1'"/> - </xsl:apply-templates> - </xsl:variable> - - <xsl:variable name="rtf-with-callouts"> - <xsl:choose> - <xsl:when test="function-available('sverb:insertCallouts')"> - <xsl:copy-of select="sverb:insertCallouts(areaspec,$rtf)"/> - </xsl:when> - <xsl:when test="function-available('xverb:insertCallouts')"> - <xsl:copy-of select="xverb:insertCallouts(areaspec,$rtf)"/> - </xsl:when> - <xsl:otherwise> - <xsl:message terminate="yes"> - <xsl:text>No insertCallouts function is available.</xsl:text> - </xsl:message> - </xsl:otherwise> - </xsl:choose> - </xsl:variable> - - <xsl:choose> - <xsl:when test="$verbatim/@linenumbering = 'numbered' - and $linenumbering.extension != '0'"> - <div> - <xsl:call-template name="common.html.attributes"/> - <xsl:call-template name="number.rtf.lines"> - <xsl:with-param name="rtf" select="$rtf-with-callouts"/> - <xsl:with-param name="pi.context" - select="programlisting|screen"/> - </xsl:call-template> - <xsl:apply-templates select="calloutlist"/> - </div> - </xsl:when> - <xsl:otherwise> - <div> - <xsl:call-template name="common.html.attributes"/> - <xsl:copy-of select="$rtf-with-callouts"/> - <xsl:apply-templates select="calloutlist"/> - </div> - </xsl:otherwise> - </xsl:choose> - </xsl:when> - <xsl:otherwise> - <div> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:apply-templates/> - </div> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template match="areaspec|areaset|area"> -</xsl:template> - -<xsl:template match="areaset" mode="conumber"> - <xsl:number count="area|areaset" format="1"/> -</xsl:template> - -<xsl:template match="area" mode="conumber"> - <xsl:number count="area|areaset" format="1"/> -</xsl:template> - -<xsl:template match="co" name="co"> - <!-- Support a single linkend in HTML --> - <xsl:variable name="targets" select="key('id', @linkends)"/> - <xsl:variable name="target" select="$targets[1]"/> - <xsl:choose> - <xsl:when test="$target"> - <a> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:if test="@id or @xml:id"> - <xsl:attribute name="name"> - <xsl:value-of select="(@id|@xml:id)[1]"/> - </xsl:attribute> - </xsl:if> - <xsl:attribute name="href"> - <xsl:call-template name="href.target"> - <xsl:with-param name="object" select="$target"/> - </xsl:call-template> - </xsl:attribute> - <xsl:apply-templates select="." mode="callout-bug"/> - </a> - </xsl:when> - <xsl:otherwise> - <xsl:call-template name="anchor"/> - <xsl:apply-templates select="." mode="callout-bug"/> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template match="coref"> - <!-- tricky; this relies on the fact that we can process the "co" that's --> - <!-- "over there" as if it were "right here" --> - - <xsl:variable name="co" select="key('id', @linkend)"/> - <xsl:choose> - <xsl:when test="not($co)"> - <xsl:message> - <xsl:text>Error: coref link is broken: </xsl:text> - <xsl:value-of select="@linkend"/> - </xsl:message> - </xsl:when> - <xsl:when test="local-name($co) != 'co'"> - <xsl:message> - <xsl:text>Error: coref doesn't point to a co: </xsl:text> - <xsl:value-of select="@linkend"/> - </xsl:message> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates select="$co"/> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template match="co" mode="callout-bug"> - <xsl:call-template name="callout-bug"> - <xsl:with-param name="conum"> - <xsl:number count="co" - level="any" - from="programlisting|screen|literallayout|synopsis" - format="1"/> - </xsl:with-param> - </xsl:call-template> -</xsl:template> - -<xsl:template name="callout-bug"> - <xsl:param name="conum" select='1'/> - - <xsl:choose> - <xsl:when test="$callout.graphics != 0 - and $conum <= $callout.graphics.number.limit"> - <img src="{$callout.graphics.path}{$conum}{$callout.graphics.extension}" - alt="{$conum}" border="0"/> - </xsl:when> - <xsl:when test="$callout.unicode != 0 - and $conum <= $callout.unicode.number.limit"> - <xsl:choose> - <xsl:when test="$callout.unicode.start.character = 10102"> - <xsl:choose> - <xsl:when test="$conum = 1">❶</xsl:when> - <xsl:when test="$conum = 2">❷</xsl:when> - <xsl:when test="$conum = 3">❸</xsl:when> - <xsl:when test="$conum = 4">❹</xsl:when> - <xsl:when test="$conum = 5">❺</xsl:when> - <xsl:when test="$conum = 6">❻</xsl:when> - <xsl:when test="$conum = 7">❼</xsl:when> - <xsl:when test="$conum = 8">❽</xsl:when> - <xsl:when test="$conum = 9">❾</xsl:when> - <xsl:when test="$conum = 10">❿</xsl:when> - </xsl:choose> - </xsl:when> - <xsl:otherwise> - <xsl:message> - <xsl:text>Don't know how to generate Unicode callouts </xsl:text> - <xsl:text>when $callout.unicode.start.character is </xsl:text> - <xsl:value-of select="$callout.unicode.start.character"/> - </xsl:message> - <xsl:text>(</xsl:text> - <xsl:value-of select="$conum"/> - <xsl:text>)</xsl:text> - </xsl:otherwise> - </xsl:choose> - </xsl:when> - <xsl:otherwise> - <xsl:text>(</xsl:text> - <xsl:value-of select="$conum"/> - <xsl:text>)</xsl:text> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -</xsl:stylesheet> diff --git a/docbook-xsl-1.75.2/html/changebars.xsl b/docbook-xsl-1.75.2/html/changebars.xsl deleted file mode 100644 index dae1cc3..0000000 --- a/docbook-xsl-1.75.2/html/changebars.xsl +++ /dev/null @@ -1,121 +0,0 @@ -<?xml version="1.0"?> -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" - version="1.0"> - -<!-- ******************************************************************** - $Id: changebars.xsl 8128 2008-09-29 17:16:10Z mzjn $ - ******************************************************************** - - This file is part of the XSL DocBook Stylesheet distribution. - See ../README or http://docbook.sf.net/release/xsl/current/ for - copyright and other information. - - ******************************************************************** --> - -<!-- ==================================================================== --> -<xsl:import href="docbook.xsl"/> - -<xsl:param name="show.revisionflag" select="'1'"/> - -<xsl:template name="system.head.content"> -<xsl:param name="node" select="."/> - -<style type="text/css"> -<xsl:text> -div.added { background-color: #ffff99; - text-decoration: underline; } -div.deleted { text-decoration: line-through; - background-color: #FF7F7F; } -div.changed { background-color: #99ff99; } -div.off { } - -span.added { background-color: #ffff99; - text-decoration: underline; } -span.deleted { text-decoration: line-through; - background-color: #FF7F7F; } -span.changed { background-color: #99ff99; } -span.off { } -</xsl:text> -</style> -</xsl:template> - -<xsl:template match="*[@revisionflag]"> - <xsl:call-template name="block.or.inline.revision"/> -</xsl:template> - -<xsl:template name="block.or.inline.revision"> - <xsl:param name="revisionflag" select="@revisionflag"/> - - <xsl:choose> - <xsl:when test="local-name(.) = 'para' - or local-name(.) = 'formalpara' - or local-name(.) = 'simpara' - or local-name(.) = 'simplesect' - or local-name(.) = 'section' - or local-name(.) = 'sect1' - or local-name(.) = 'sect2' - or local-name(.) = 'sect3' - or local-name(.) = 'sect4' - or local-name(.) = 'sect5' - or local-name(.) = 'chapter' - or local-name(.) = 'preface' - or local-name(.) = 'itemizedlist' - or local-name(.) = 'orderedlist' - or local-name(.) = 'variablelist' - or local-name(.) = 'varlistentry' - or local-name(.) = 'informaltable' - or local-name(.) = 'informalexample' - or local-name(.) = 'note' - or local-name(.) = 'example' - or local-name(.) = 'mediaobject' - or local-name(.) = 'sidebar' - or local-name(.) = 'glossary' - or local-name(.) = 'glossentry' - or local-name(.) = 'bibliography' - or local-name(.) = 'index' - or local-name(.) = 'appendix'"> - <div class='{$revisionflag}'> - <xsl:apply-imports/> - </div> - </xsl:when> - <xsl:when test="local-name(.) = 'phrase' - or local-name(.) = 'ulink' - or local-name(.) = 'link' - or local-name(.) = 'olink' - or local-name(.) = 'inlinemediaobject' - or local-name(.) = 'filename' - or local-name(.) = 'literal' - or local-name(.) = 'member' - or local-name(.) = 'term' - or local-name(.) = 'guilabel' - or local-name(.) = 'glossterm' - or local-name(.) = 'sgmltag' - or local-name(.) = 'tag' - or local-name(.) = 'quote' - or local-name(.) = 'emphasis' - or local-name(.) = 'command' - or local-name(.) = 'xref'"> - <span class='{$revisionflag}'> - <xsl:apply-imports/> - </span> - </xsl:when> - <xsl:when test="local-name(.) = 'listitem' - or local-name(.) = 'entry' - or local-name(.) = 'title'"> - <!-- nop; these are handled directly in the stylesheet --> - <xsl:apply-imports/> - </xsl:when> - <xsl:otherwise> - <xsl:message> - <xsl:text>Revisionflag on unexpected element: </xsl:text> - <xsl:value-of select="local-name(.)"/> - <xsl:text> (Assuming block)</xsl:text> - </xsl:message> - <div class='{$revisionflag}'> - <xsl:apply-imports/> - </div> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -</xsl:stylesheet> diff --git a/docbook-xsl-1.75.2/html/chunk-changebars.xsl b/docbook-xsl-1.75.2/html/chunk-changebars.xsl deleted file mode 100644 index 6bfd3c0..0000000 --- a/docbook-xsl-1.75.2/html/chunk-changebars.xsl +++ /dev/null @@ -1,99 +0,0 @@ -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" - xmlns:exsl="http://exslt.org/common" - xmlns:cf="http://docbook.sourceforge.net/xmlns/chunkfast/1.0" - version="1.0" - exclude-result-prefixes="exsl cf"> - -<!-- ******************************************************************** - $Id: chunk-changebars.xsl 8399 2009-04-08 07:37:42Z bobstayton $ - ******************************************************************** - - This file is part of the XSL DocBook Stylesheet distribution. - See ../README or http://docbook.sf.net/release/xsl/current/ for - copyright and other information. - - ******************************************************************** --> - -<!-- ==================================================================== --> - -<!-- This file is a variant of chunk.xsl, to be used for generating chunked - output with highlighting based on change markup. --> - -<xsl:import href="changebars.xsl"/> -<xsl:import href="chunk-common.xsl"/> - -<!-- This customization of "process-chunk-element" is needed in order to make change - highlighting be inherited by chunked children of an element with change markup. --> -<xsl:template name="process-chunk-element"> - <xsl:param name="content"> - <xsl:choose> - - <xsl:when test="ancestor-or-self::*[@revisionflag] and $show.revisionflag != 0"> - <xsl:variable name="revisionflag" select="ancestor-or-self::*[@revisionflag][1]/@revisionflag" /> - <xsl:call-template name="block.or.inline.revision"> - <xsl:with-param name="revisionflag" select="$revisionflag"/> - </xsl:call-template> - </xsl:when> - - <xsl:otherwise> - <xsl:apply-imports/> - </xsl:otherwise> - </xsl:choose> - </xsl:param> - - <xsl:choose> - <xsl:when test="$chunk.fast != 0 and $exsl.node.set.available != 0"> - <xsl:variable name="chunks" select="exsl:node-set($chunk.hierarchy)//cf:div"/> - <xsl:variable name="genid" select="generate-id()"/> - - <xsl:variable name="div" select="$chunks[@id=$genid or @xml:id=$genid]"/> - - <xsl:variable name="prevdiv" - select="($div/preceding-sibling::cf:div|$div/preceding::cf:div|$div/parent::cf:div)[last()]"/> - <xsl:variable name="prev" select="key('genid', ($prevdiv/@id|$prevdiv/@xml:id)[1])"/> - - <xsl:variable name="nextdiv" - select="($div/following-sibling::cf:div|$div/following::cf:div|$div/cf:div)[1]"/> - <xsl:variable name="next" select="key('genid', ($nextdiv/@id|$nextdiv/@xml:id)[1])"/> - - <xsl:choose> - <xsl:when test="$onechunk != 0 and parent::*"> - <xsl:copy-of select="$content"/> - </xsl:when> - <xsl:otherwise> - <xsl:call-template name="process-chunk"> - <xsl:with-param name="prev" select="$prev"/> - <xsl:with-param name="next" select="$next"/> - <xsl:with-param name="content" select="$content"/> - </xsl:call-template> - </xsl:otherwise> - </xsl:choose> - </xsl:when> - <xsl:otherwise> - <xsl:choose> - <xsl:when test="$onechunk != 0 and not(parent::*)"> - <xsl:call-template name="chunk-all-sections"> - <xsl:with-param name="content" select="$content"/> - </xsl:call-template> - </xsl:when> - <xsl:when test="$onechunk != 0"> - <xsl:copy-of select="$content"/> - </xsl:when> - <xsl:when test="$chunk.first.sections = 0"> - <xsl:call-template name="chunk-first-section-with-parent"> - <xsl:with-param name="content" select="$content"/> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <xsl:call-template name="chunk-all-sections"> - <xsl:with-param name="content" select="$content"/> - </xsl:call-template> - </xsl:otherwise> - </xsl:choose> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:include href="chunk-code.xsl"/> - -</xsl:stylesheet> diff --git a/docbook-xsl-1.75.2/html/chunk-code.xsl b/docbook-xsl-1.75.2/html/chunk-code.xsl deleted file mode 100644 index 49cb153..0000000 --- a/docbook-xsl-1.75.2/html/chunk-code.xsl +++ /dev/null @@ -1,667 +0,0 @@ -<?xml version="1.0"?> -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" - xmlns:exsl="http://exslt.org/common" - xmlns:cf="http://docbook.sourceforge.net/xmlns/chunkfast/1.0" - xmlns:ng="http://docbook.org/docbook-ng" - xmlns:db="http://docbook.org/ns/docbook" - exclude-result-prefixes="exsl cf ng db" - version="1.0"> - -<!-- ******************************************************************** - $Id: chunk-code.xsl 8345 2009-03-16 06:44:07Z bobstayton $ - ******************************************************************** - - This file is part of the XSL DocBook Stylesheet distribution. - See ../README or http://docbook.sf.net/release/xsl/current/ for - copyright and other information. - - ******************************************************************** --> - -<!-- ==================================================================== --> - - -<xsl:template match="*" mode="chunk-filename"> - <!-- returns the filename of a chunk --> - <xsl:variable name="ischunk"> - <xsl:call-template name="chunk"/> - </xsl:variable> - - <xsl:variable name="fn"> - <xsl:apply-templates select="." mode="recursive-chunk-filename"/> - </xsl:variable> - - <!-- - <xsl:message> - <xsl:value-of select="$ischunk"/> - <xsl:text> (</xsl:text> - <xsl:value-of select="local-name(.)"/> - <xsl:text>) </xsl:text> - <xsl:value-of select="$fn"/> - <xsl:text>, </xsl:text> - <xsl:call-template name="dbhtml-dir"/> - </xsl:message> - --> - - <!-- 2003-11-25 by ndw: - The following test used to read test="$ischunk != 0 and $fn != ''" - I've removed the ischunk part of the test so that href.to.uri and - href.from.uri will be fully qualified even if the source or target - isn't a chunk. I *think* that if $fn != '' then it's appropriate - to put the directory on the front, even if the element isn't a - chunk. I could be wrong. --> - - <xsl:if test="$fn != ''"> - <xsl:call-template name="dbhtml-dir"/> - </xsl:if> - - <xsl:value-of select="$fn"/> - <!-- You can't add the html.ext here because dbhtml filename= may already --> - <!-- have added it. It really does have to be handled in the recursive template --> -</xsl:template> - -<xsl:template match="*" mode="recursive-chunk-filename"> - <xsl:param name="recursive" select="false()"/> - - <!-- returns the filename of a chunk --> - <xsl:variable name="ischunk"> - <xsl:call-template name="chunk"/> - </xsl:variable> - - <xsl:variable name="dbhtml-filename"> - <xsl:call-template name="pi.dbhtml_filename"/> - </xsl:variable> - - <xsl:variable name="filename"> - <xsl:choose> - <xsl:when test="$dbhtml-filename != ''"> - <xsl:value-of select="$dbhtml-filename"/> - </xsl:when> - <!-- if this is the root element, use the root.filename --> - <xsl:when test="not(parent::*) and $root.filename != ''"> - <xsl:value-of select="$root.filename"/> - <xsl:value-of select="$html.ext"/> - </xsl:when> - <!-- Special case --> - <xsl:when test="self::legalnotice and not($generate.legalnotice.link = 0)"> - <xsl:choose> - <xsl:when test="(@id or @xml:id) and not($use.id.as.filename = 0)"> - <!-- * if this legalnotice has an ID, then go ahead and use --> - <!-- * just the value of that ID as the basename for the file --> - <!-- * (that is, without prepending an "ln-" too it) --> - <xsl:value-of select="(@id|@xml:id)[1]"/> - <xsl:value-of select="$html.ext"/> - </xsl:when> - <xsl:otherwise> - <!-- * otherwise, if this legalnotice does not have an ID, --> - <!-- * then we generate an ID... --> - <xsl:variable name="id"> - <xsl:call-template name="object.id"/> - </xsl:variable> - <!-- * ...and then we take that generated ID, prepend an --> - <!-- * "ln-" to it, and use that as the basename for the file --> - <xsl:value-of select="concat('ln-',$id,$html.ext)"/> - </xsl:otherwise> - </xsl:choose> - </xsl:when> - <!-- if there's no dbhtml filename, and if we're to use IDs as --> - <!-- filenames, then use the ID to generate the filename. --> - <xsl:when test="(@id or @xml:id) and $use.id.as.filename != 0"> - <xsl:value-of select="(@id|@xml:id)[1]"/> - <xsl:value-of select="$html.ext"/> - </xsl:when> - <xsl:otherwise></xsl:otherwise> - </xsl:choose> - </xsl:variable> - - <xsl:choose> - <xsl:when test="$ischunk='0'"> - <!-- if called on something that isn't a chunk, walk up... --> - <xsl:choose> - <xsl:when test="count(parent::*)>0"> - <xsl:apply-templates mode="recursive-chunk-filename" select="parent::*"> - <xsl:with-param name="recursive" select="$recursive"/> - </xsl:apply-templates> - </xsl:when> - <!-- unless there is no up, in which case return "" --> - <xsl:otherwise></xsl:otherwise> - </xsl:choose> - </xsl:when> - - <xsl:when test="not($recursive) and $filename != ''"> - <!-- if this chunk has an explicit name, use it --> - <xsl:value-of select="$filename"/> - </xsl:when> - - <xsl:when test="self::set"> - <xsl:value-of select="$root.filename"/> - <xsl:if test="not($recursive)"> - <xsl:value-of select="$html.ext"/> - </xsl:if> - </xsl:when> - - <xsl:when test="self::book"> - <xsl:text>bk</xsl:text> - <xsl:number level="any" format="01"/> - <xsl:if test="not($recursive)"> - <xsl:value-of select="$html.ext"/> - </xsl:if> - </xsl:when> - - <xsl:when test="self::article"> - <xsl:if test="/set"> - <!-- in a set, make sure we inherit the right book info... --> - <xsl:apply-templates mode="recursive-chunk-filename" select="parent::*"> - <xsl:with-param name="recursive" select="true()"/> - </xsl:apply-templates> - </xsl:if> - - <xsl:text>ar</xsl:text> - <xsl:number level="any" format="01" from="book"/> - <xsl:if test="not($recursive)"> - <xsl:value-of select="$html.ext"/> - </xsl:if> - </xsl:when> - - <xsl:when test="self::preface"> - <xsl:if test="/set"> - <!-- in a set, make sure we inherit the right book info... --> - <xsl:apply-templates mode="recursive-chunk-filename" select="parent::*"> - <xsl:with-param name="recursive" select="true()"/> - </xsl:apply-templates> - </xsl:if> - - <xsl:text>pr</xsl:text> - <xsl:number level="any" format="01" from="book"/> - <xsl:if test="not($recursive)"> - <xsl:value-of select="$html.ext"/> - </xsl:if> - </xsl:when> - - <xsl:when test="self::chapter"> - <xsl:if test="/set"> - <!-- in a set, make sure we inherit the right book info... --> - <xsl:apply-templates mode="recursive-chunk-filename" select="parent::*"> - <xsl:with-param name="recursive" select="true()"/> - </xsl:apply-templates> - </xsl:if> - - <xsl:text>ch</xsl:text> - <xsl:number level="any" format="01" from="book"/> - <xsl:if test="not($recursive)"> - <xsl:value-of select="$html.ext"/> - </xsl:if> - </xsl:when> - - <xsl:when test="self::appendix"> - <xsl:if test="/set"> - <!-- in a set, make sure we inherit the right book info... --> - <xsl:apply-templates mode="recursive-chunk-filename" select="parent::*"> - <xsl:with-param name="recursive" select="true()"/> - </xsl:apply-templates> - </xsl:if> - - <xsl:text>ap</xsl:text> - <xsl:number level="any" format="a" from="book"/> - <xsl:if test="not($recursive)"> - <xsl:value-of select="$html.ext"/> - </xsl:if> - </xsl:when> - - <xsl:when test="self::part"> - <xsl:choose> - <xsl:when test="/set"> - <!-- in a set, make sure we inherit the right book info... --> - <xsl:apply-templates mode="recursive-chunk-filename" select="parent::*"> - <xsl:with-param name="recursive" select="true()"/> - </xsl:apply-templates> - </xsl:when> - <xsl:otherwise> - </xsl:otherwise> - </xsl:choose> - - <xsl:text>pt</xsl:text> - <xsl:number level="any" format="01" from="book"/> - <xsl:if test="not($recursive)"> - <xsl:value-of select="$html.ext"/> - </xsl:if> - </xsl:when> - - <xsl:when test="self::reference"> - <xsl:choose> - <xsl:when test="/set"> - <!-- in a set, make sure we inherit the right book info... --> - <xsl:apply-templates mode="recursive-chunk-filename" select="parent::*"> - <xsl:with-param name="recursive" select="true()"/> - </xsl:apply-templates> - </xsl:when> - <xsl:otherwise> - </xsl:otherwise> - </xsl:choose> - - <xsl:text>rn</xsl:text> - <xsl:number level="any" format="01" from="book"/> - <xsl:if test="not($recursive)"> - <xsl:value-of select="$html.ext"/> - </xsl:if> - </xsl:when> - - <xsl:when test="self::refentry"> - <xsl:choose> - <xsl:when test="parent::reference"> - <xsl:apply-templates mode="recursive-chunk-filename" select="parent::*"> - <xsl:with-param name="recursive" select="true()"/> - </xsl:apply-templates> - </xsl:when> - <xsl:otherwise> - </xsl:otherwise> - </xsl:choose> - - <xsl:text>re</xsl:text> - <xsl:number level="any" format="01" from="book"/> - <xsl:if test="not($recursive)"> - <xsl:value-of select="$html.ext"/> - </xsl:if> - </xsl:when> - - <xsl:when test="self::colophon"> - <xsl:choose> - <xsl:when test="/set"> - <!-- in a set, make sure we inherit the right book info... --> - <xsl:apply-templates mode="recursive-chunk-filename" select="parent::*"> - <xsl:with-param name="recursive" select="true()"/> - </xsl:apply-templates> - </xsl:when> - <xsl:otherwise> - </xsl:otherwise> - </xsl:choose> - - <xsl:text>co</xsl:text> - <xsl:number level="any" format="01" from="book"/> - <xsl:if test="not($recursive)"> - <xsl:value-of select="$html.ext"/> - </xsl:if> - </xsl:when> - - <xsl:when test="self::sect1 - or self::sect2 - or self::sect3 - or self::sect4 - or self::sect5 - or self::section"> - <xsl:apply-templates mode="recursive-chunk-filename" select="parent::*"> - <xsl:with-param name="recursive" select="true()"/> - </xsl:apply-templates> - <xsl:text>s</xsl:text> - <xsl:number format="01"/> - <xsl:if test="not($recursive)"> - <xsl:value-of select="$html.ext"/> - </xsl:if> - </xsl:when> - - <xsl:when test="self::bibliography"> - <xsl:choose> - <xsl:when test="/set"> - <!-- in a set, make sure we inherit the right book info... --> - <xsl:apply-templates mode="recursive-chunk-filename" select="parent::*"> - <xsl:with-param name="recursive" select="true()"/> - </xsl:apply-templates> - </xsl:when> - <xsl:otherwise> - </xsl:otherwise> - </xsl:choose> - - <xsl:text>bi</xsl:text> - <xsl:number level="any" format="01" from="book"/> - <xsl:if test="not($recursive)"> - <xsl:value-of select="$html.ext"/> - </xsl:if> - </xsl:when> - - <xsl:when test="self::glossary"> - <xsl:choose> - <xsl:when test="/set"> - <!-- in a set, make sure we inherit the right book info... --> - <xsl:apply-templates mode="recursive-chunk-filename" select="parent::*"> - <xsl:with-param name="recursive" select="true()"/> - </xsl:apply-templates> - </xsl:when> - <xsl:otherwise> - </xsl:otherwise> - </xsl:choose> - - <xsl:text>go</xsl:text> - <xsl:number level="any" format="01" from="book"/> - <xsl:if test="not($recursive)"> - <xsl:value-of select="$html.ext"/> - </xsl:if> - </xsl:when> - - <xsl:when test="self::index"> - <xsl:choose> - <xsl:when test="/set"> - <!-- in a set, make sure we inherit the right book info... --> - <xsl:apply-templates mode="recursive-chunk-filename" select="parent::*"> - <xsl:with-param name="recursive" select="true()"/> - </xsl:apply-templates> - </xsl:when> - <xsl:otherwise> - </xsl:otherwise> - </xsl:choose> - - <xsl:text>ix</xsl:text> - <xsl:number level="any" format="01" from="book"/> - <xsl:if test="not($recursive)"> - <xsl:value-of select="$html.ext"/> - </xsl:if> - </xsl:when> - - <xsl:when test="self::setindex"> - <xsl:text>si</xsl:text> - <xsl:number level="any" format="01" from="set"/> - <xsl:if test="not($recursive)"> - <xsl:value-of select="$html.ext"/> - </xsl:if> - </xsl:when> - - <xsl:otherwise> - <xsl:text>chunk-filename-error-</xsl:text> - <xsl:value-of select="name(.)"/> - <xsl:number level="any" format="01" from="set"/> - <xsl:if test="not($recursive)"> - <xsl:value-of select="$html.ext"/> - </xsl:if> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<!-- ==================================================================== --> - - - -<xsl:template match="processing-instruction('dbhtml')"> - <!-- nop --> -</xsl:template> - -<!-- ==================================================================== --> - - -<xsl:template match="*" mode="find.chunks"> - <xsl:variable name="chunk"> - <xsl:call-template name="chunk"/> - </xsl:variable> - - <xsl:choose> - <xsl:when test="$chunk != 0"> - <cf:div id="{generate-id()}"> - <xsl:apply-templates select="." mode="class.attribute"/> - <xsl:apply-templates select="*" mode="find.chunks"/> - </cf:div> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates select="*" mode="find.chunks"/> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template match="/"> - <!-- * Get a title for current doc so that we let the user --> - <!-- * know what document we are processing at this point. --> - <xsl:variable name="doc.title"> - <xsl:call-template name="get.doc.title"/> - </xsl:variable> - <xsl:choose> - <!-- Hack! If someone hands us a DocBook V5.x or DocBook NG document, - toss the namespace and continue. Use the docbook5 namespaced - stylesheets for DocBook5 if you don't want to use this feature.--> - <xsl:when test="$exsl.node.set.available != 0 - and (*/self::ng:* or */self::db:*)"> - <xsl:call-template name="log.message"> - <xsl:with-param name="level">Note</xsl:with-param> - <xsl:with-param name="source" select="$doc.title"/> - <xsl:with-param name="context-desc"> - <xsl:text>namesp. cut</xsl:text> - </xsl:with-param> - <xsl:with-param name="message"> - <xsl:text>stripped namespace before processing</xsl:text> - </xsl:with-param> - </xsl:call-template> - <xsl:variable name="nons"> - <xsl:apply-templates mode="stripNS"/> - </xsl:variable> - <xsl:call-template name="log.message"> - <xsl:with-param name="level">Note</xsl:with-param> - <xsl:with-param name="source" select="$doc.title"/> - <xsl:with-param name="context-desc"> - <xsl:text>namesp. cut</xsl:text> - </xsl:with-param> - <xsl:with-param name="message"> - <xsl:text>processing stripped document</xsl:text> - </xsl:with-param> - </xsl:call-template> - <xsl:apply-templates select="exsl:node-set($nons)"/> - </xsl:when> - <!-- Can't process unless namespace removed --> - <xsl:when test="*/self::ng:* or */self::db:*"> - <xsl:message terminate="yes"> - <xsl:text>Unable to strip the namespace from DB5 document,</xsl:text> - <xsl:text> cannot proceed.</xsl:text> - </xsl:message> - </xsl:when> - <xsl:otherwise> - <xsl:choose> - <xsl:when test="$rootid != ''"> - <xsl:choose> - <xsl:when test="count(key('id',$rootid)) = 0"> - <xsl:message terminate="yes"> - <xsl:text>ID '</xsl:text> - <xsl:value-of select="$rootid"/> - <xsl:text>' not found in document.</xsl:text> - </xsl:message> - </xsl:when> - <xsl:otherwise> - <xsl:if test="$collect.xref.targets = 'yes' or - $collect.xref.targets = 'only'"> - <xsl:apply-templates select="key('id', $rootid)" - mode="collect.targets"/> - </xsl:if> - <xsl:if test="$collect.xref.targets != 'only'"> - <xsl:apply-templates select="key('id',$rootid)" - mode="process.root"/> - <xsl:if test="$tex.math.in.alt != ''"> - <xsl:apply-templates select="key('id',$rootid)" - mode="collect.tex.math"/> - </xsl:if> - <xsl:if test="$generate.manifest != 0"> - <xsl:call-template name="generate.manifest"> - <xsl:with-param name="node" select="key('id',$rootid)"/> - </xsl:call-template> - </xsl:if> - </xsl:if> - </xsl:otherwise> - </xsl:choose> - </xsl:when> - <xsl:otherwise> - <xsl:if test="$collect.xref.targets = 'yes' or - $collect.xref.targets = 'only'"> - <xsl:apply-templates select="/" mode="collect.targets"/> - </xsl:if> - <xsl:if test="$collect.xref.targets != 'only'"> - <xsl:apply-templates select="/" mode="process.root"/> - <xsl:if test="$tex.math.in.alt != ''"> - <xsl:apply-templates select="/" mode="collect.tex.math"/> - </xsl:if> - <xsl:if test="$generate.manifest != 0"> - <xsl:call-template name="generate.manifest"> - <xsl:with-param name="node" select="/"/> - </xsl:call-template> - </xsl:if> - </xsl:if> - </xsl:otherwise> - </xsl:choose> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template match="*" mode="process.root"> - <xsl:apply-templates select="."/> -</xsl:template> - -<!-- ====================================================================== --> - -<xsl:template match="set|book|part|preface|chapter|appendix - |article - |reference|refentry - |book/glossary|article/glossary|part/glossary - |book/bibliography|article/bibliography|part/bibliography - |colophon"> - <xsl:choose> - <xsl:when test="$onechunk != 0 and parent::*"> - <xsl:apply-imports/> - </xsl:when> - <xsl:otherwise> - <xsl:call-template name="process-chunk-element"/> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template match="sect1|sect2|sect3|sect4|sect5|section"> - <xsl:variable name="ischunk"> - <xsl:call-template name="chunk"/> - </xsl:variable> - - <xsl:choose> - <xsl:when test="not(parent::*)"> - <xsl:call-template name="process-chunk-element"/> - </xsl:when> - <xsl:when test="$ischunk = 0"> - <xsl:apply-imports/> - </xsl:when> - <xsl:otherwise> - <xsl:call-template name="process-chunk-element"/> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template match="setindex - |book/index - |article/index - |part/index"> - <!-- some implementations use completely empty index tags to indicate --> - <!-- where an automatically generated index should be inserted. so --> - <!-- if the index is completely empty, skip it. --> - <xsl:if test="count(*)>0 or $generate.index != '0'"> - <xsl:call-template name="process-chunk-element"/> - </xsl:if> -</xsl:template> - -<!-- Resolve xml:base attributes --> -<xsl:template match="@fileref"> - <!-- need a check for absolute urls --> - <xsl:choose> - <xsl:when test="contains(., ':')"> - <!-- it has a uri scheme so it is an absolute uri --> - <xsl:value-of select="."/> - </xsl:when> - <xsl:when test="$keep.relative.image.uris != 0"> - <!-- leave it alone --> - <xsl:value-of select="."/> - </xsl:when> - <xsl:otherwise> - <!-- its a relative uri --> - <xsl:call-template name="relative-uri"> - <xsl:with-param name="destdir"> - <xsl:call-template name="dbhtml-dir"> - <xsl:with-param name="context" select=".."/> - </xsl:call-template> - </xsl:with-param> - </xsl:call-template> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<!-- ==================================================================== --> -<xsl:template match="set|book|part|preface|chapter|appendix - |article - |reference|refentry - |sect1|sect2|sect3|sect4|sect5 - |section - |book/glossary|article/glossary|part/glossary - |book/bibliography|article/bibliography|part/bibliography - |colophon" - mode="enumerate-files"> - <xsl:variable name="ischunk"><xsl:call-template name="chunk"/></xsl:variable> - <xsl:if test="$ischunk='1'"> - <xsl:call-template name="make-relative-filename"> - <xsl:with-param name="base.dir"> - <xsl:if test="$manifest.in.base.dir = 0"> - <xsl:value-of select="$base.dir"/> - </xsl:if> - </xsl:with-param> - <xsl:with-param name="base.name"> - <xsl:apply-templates mode="chunk-filename" select="."/> - </xsl:with-param> - </xsl:call-template> - <xsl:text> </xsl:text> - </xsl:if> - <xsl:apply-templates select="*" mode="enumerate-files"/> -</xsl:template> - -<xsl:template match="book/index|article/index|part/index" - mode="enumerate-files"> - <xsl:if test="$htmlhelp.output != 1"> - <xsl:variable name="ischunk"><xsl:call-template name="chunk"/></xsl:variable> - <xsl:if test="$ischunk='1'"> - <xsl:call-template name="make-relative-filename"> - <xsl:with-param name="base.dir"> - <xsl:if test="$manifest.in.base.dir = 0"> - <xsl:value-of select="$base.dir"/> - </xsl:if> - </xsl:with-param> - <xsl:with-param name="base.name"> - <xsl:apply-templates mode="chunk-filename" select="."/> - </xsl:with-param> - </xsl:call-template> - <xsl:text> </xsl:text> - </xsl:if> - <xsl:apply-templates select="*" mode="enumerate-files"/> - </xsl:if> -</xsl:template> - -<xsl:template match="legalnotice" mode="enumerate-files"> - <xsl:variable name="id"><xsl:call-template name="object.id"/></xsl:variable> - <xsl:if test="$generate.legalnotice.link != 0"> - <xsl:call-template name="make-relative-filename"> - <xsl:with-param name="base.dir"> - <xsl:if test="$manifest.in.base.dir = 0"> - <xsl:value-of select="$base.dir"/> - </xsl:if> - </xsl:with-param> - <xsl:with-param name="base.name"> - <xsl:apply-templates mode="chunk-filename" select="."/> - </xsl:with-param> - </xsl:call-template> - <xsl:text> </xsl:text> - </xsl:if> -</xsl:template> - -<xsl:template match="mediaobject[imageobject] | inlinemediaobject[imageobject]" mode="enumerate-files"> - <xsl:variable name="longdesc.uri"> - <xsl:call-template name="longdesc.uri"> - <xsl:with-param name="mediaobject" - select="."/> - </xsl:call-template> - </xsl:variable> - <xsl:variable name="mediaobject" select="."/> - - <xsl:if test="$html.longdesc != 0 and $mediaobject/textobject[not(phrase)]"> - <xsl:call-template name="longdesc.uri"> - <xsl:with-param name="mediaobject" select="$mediaobject"/> - </xsl:call-template> - <xsl:text> </xsl:text> - </xsl:if> -</xsl:template> - -<xsl:template match="text()" mode="enumerate-files"> -</xsl:template> - -</xsl:stylesheet> diff --git a/docbook-xsl-1.75.2/html/chunk-common.xsl b/docbook-xsl-1.75.2/html/chunk-common.xsl deleted file mode 100644 index 1077305..0000000 --- a/docbook-xsl-1.75.2/html/chunk-common.xsl +++ /dev/null @@ -1,1920 +0,0 @@ -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" - xmlns:exsl="http://exslt.org/common" - xmlns:cf="http://docbook.sourceforge.net/xmlns/chunkfast/1.0" - xmlns:ng="http://docbook.org/docbook-ng" - xmlns:db="http://docbook.org/ns/docbook" - version="1.0" - exclude-result-prefixes="exsl cf ng db"> - -<!-- ******************************************************************** - $Id: chunk-common.xsl 8420 2009-05-04 02:17:33Z bobstayton $ - ******************************************************************** - - This file is part of the XSL DocBook Stylesheet distribution. - See ../README or http://docbook.sf.net/release/xsl/current/ for - copyright and other information. - - ******************************************************************** --> - -<!-- ==================================================================== --> - -<xsl:param name="onechunk" select="0"/> -<xsl:param name="refentry.separator" select="0"/> -<xsl:param name="chunk.fast" select="0"/> - -<xsl:key name="genid" match="*" use="generate-id()"/> - -<!-- ==================================================================== --> - -<xsl:variable name="chunk.hierarchy"> - <xsl:if test="$chunk.fast != 0"> - <xsl:choose> - <xsl:when test="$exsl.node.set.available != 0"> - <xsl:message>Computing chunks...</xsl:message> - <xsl:apply-templates select="/*" mode="find.chunks"/> - </xsl:when> - <xsl:otherwise> - <xsl:message> - <xsl:text>Fast chunking requires exsl:node-set(). </xsl:text> - <xsl:text>Using "slow" chunking.</xsl:text> - </xsl:message> - </xsl:otherwise> - </xsl:choose> - </xsl:if> -</xsl:variable> - -<!-- ==================================================================== --> - -<xsl:template name="process-chunk-element"> - <xsl:param name="content"> - <xsl:apply-imports/> - </xsl:param> - - <xsl:choose> - <xsl:when test="$chunk.fast != 0 and $exsl.node.set.available != 0"> - <xsl:variable name="chunks" select="exsl:node-set($chunk.hierarchy)//cf:div"/> - <xsl:variable name="genid" select="generate-id()"/> - - <xsl:variable name="div" select="$chunks[@id=$genid or @xml:id=$genid]"/> - - <xsl:variable name="prevdiv" - select="($div/preceding-sibling::cf:div|$div/preceding::cf:div|$div/parent::cf:div)[last()]"/> - <xsl:variable name="prev" select="key('genid', ($prevdiv/@id|$prevdiv/@xml:id)[1])"/> - - <xsl:variable name="nextdiv" - select="($div/following-sibling::cf:div|$div/following::cf:div|$div/cf:div)[1]"/> - <xsl:variable name="next" select="key('genid', ($nextdiv/@id|$nextdiv/@xml:id)[1])"/> - - <xsl:choose> - <xsl:when test="$onechunk != 0 and parent::*"> - <xsl:copy-of select="$content"/> - </xsl:when> - <xsl:otherwise> - <xsl:call-template name="process-chunk"> - <xsl:with-param name="prev" select="$prev"/> - <xsl:with-param name="next" select="$next"/> - <xsl:with-param name="content" select="$content"/> - </xsl:call-template> - </xsl:otherwise> - </xsl:choose> - </xsl:when> - <xsl:otherwise> - <xsl:choose> - <xsl:when test="$onechunk != 0 and not(parent::*)"> - <xsl:call-template name="chunk-all-sections"> - <xsl:with-param name="content" select="$content"/> - </xsl:call-template> - </xsl:when> - <xsl:when test="$onechunk != 0"> - <xsl:copy-of select="$content"/> - </xsl:when> - <xsl:when test="$chunk.first.sections = 0"> - <xsl:call-template name="chunk-first-section-with-parent"> - <xsl:with-param name="content" select="$content"/> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <xsl:call-template name="chunk-all-sections"> - <xsl:with-param name="content" select="$content"/> - </xsl:call-template> - </xsl:otherwise> - </xsl:choose> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template name="process-chunk"> - <xsl:param name="prev" select="."/> - <xsl:param name="next" select="."/> - <xsl:param name="content"> - <xsl:apply-imports/> - </xsl:param> - - <xsl:variable name="ischunk"> - <xsl:call-template name="chunk"/> - </xsl:variable> - - <xsl:variable name="chunkfn"> - <xsl:if test="$ischunk='1'"> - <xsl:apply-templates mode="chunk-filename" select="."/> - </xsl:if> - </xsl:variable> - - <xsl:if test="$ischunk='0'"> - <xsl:message> - <xsl:text>Error </xsl:text> - <xsl:value-of select="name(.)"/> - <xsl:text> is not a chunk!</xsl:text> - </xsl:message> - </xsl:if> - - <xsl:variable name="filename"> - <xsl:call-template name="make-relative-filename"> - <xsl:with-param name="base.dir" select="$base.dir"/> - <xsl:with-param name="base.name" select="$chunkfn"/> - </xsl:call-template> - </xsl:variable> - - <xsl:call-template name="write.chunk"> - <xsl:with-param name="filename" select="$filename"/> - <xsl:with-param name="content"> - <xsl:call-template name="chunk-element-content"> - <xsl:with-param name="prev" select="$prev"/> - <xsl:with-param name="next" select="$next"/> - <xsl:with-param name="content" select="$content"/> - </xsl:call-template> - </xsl:with-param> - <xsl:with-param name="quiet" select="$chunk.quietly"/> - </xsl:call-template> -</xsl:template> - -<xsl:template name="chunk-first-section-with-parent"> - <xsl:param name="content"> - <xsl:apply-imports/> - </xsl:param> - - <!-- These xpath expressions are really hairy. The trick is to pick sections --> - <!-- that are not first children and are not the children of first children --> - - <!-- Break these variables into pieces to work around - http://nagoya.apache.org/bugzilla/show_bug.cgi?id=6063 --> - - <xsl:variable name="prev-v1" - select="(ancestor::sect1[$chunk.section.depth > 0 - and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking']) - and preceding-sibling::sect1][1] - - |ancestor::sect2[$chunk.section.depth > 1 - and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking']) - and preceding-sibling::sect2 - and parent::sect1[preceding-sibling::sect1]][1] - - |ancestor::sect3[$chunk.section.depth > 2 - and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking']) - and preceding-sibling::sect3 - and parent::sect2[preceding-sibling::sect2] - and ancestor::sect1[preceding-sibling::sect1]][1] - - |ancestor::sect4[$chunk.section.depth > 3 - and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking']) - and preceding-sibling::sect4 - and parent::sect3[preceding-sibling::sect3] - and ancestor::sect2[preceding-sibling::sect2] - and ancestor::sect1[preceding-sibling::sect1]][1] - - |ancestor::sect5[$chunk.section.depth > 4 - and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking']) - and preceding-sibling::sect5 - and parent::sect4[preceding-sibling::sect4] - and ancestor::sect3[preceding-sibling::sect3] - and ancestor::sect2[preceding-sibling::sect2] - and ancestor::sect1[preceding-sibling::sect1]][1] - - |ancestor::section[$chunk.section.depth > count(ancestor::section) - and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking']) - and not(ancestor::section[not(preceding-sibling::section)])][1])[last()]"/> - - <xsl:variable name="prev-v2" - select="(preceding::sect1[$chunk.section.depth > 0 - and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking']) - and preceding-sibling::sect1][1] - - |preceding::sect2[$chunk.section.depth > 1 - and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking']) - and preceding-sibling::sect2 - and parent::sect1[preceding-sibling::sect1]][1] - - |preceding::sect3[$chunk.section.depth > 2 - and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking']) - and preceding-sibling::sect3 - and parent::sect2[preceding-sibling::sect2] - and ancestor::sect1[preceding-sibling::sect1]][1] - - |preceding::sect4[$chunk.section.depth > 3 - and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking']) - and preceding-sibling::sect4 - and parent::sect3[preceding-sibling::sect3] - and ancestor::sect2[preceding-sibling::sect2] - and ancestor::sect1[preceding-sibling::sect1]][1] - - |preceding::sect5[$chunk.section.depth > 4 - and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking']) - and preceding-sibling::sect5 - and parent::sect4[preceding-sibling::sect4] - and ancestor::sect3[preceding-sibling::sect3] - and ancestor::sect2[preceding-sibling::sect2] - and ancestor::sect1[preceding-sibling::sect1]][1] - - |preceding::section[$chunk.section.depth > count(ancestor::section) - and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking']) - and preceding-sibling::section - and not(ancestor::section[not(preceding-sibling::section)])][1])[last()]"/> - - <xsl:variable name="prev" - select="(preceding::book[1] - |preceding::preface[1] - |preceding::chapter[1] - |preceding::appendix[1] - |preceding::part[1] - |preceding::reference[1] - |preceding::refentry[1] - |preceding::colophon[1] - |preceding::article[1] - |preceding::bibliography[parent::article or parent::book or parent::part][1] - |preceding::glossary[parent::article or parent::book or parent::part][1] - |preceding::index[$generate.index != 0] - [parent::article or parent::book or parent::part][1] - |preceding::setindex[$generate.index != 0][1] - |ancestor::set - |ancestor::book[1] - |ancestor::preface[1] - |ancestor::chapter[1] - |ancestor::appendix[1] - |ancestor::part[1] - |ancestor::reference[1] - |ancestor::article[1] - |$prev-v1 - |$prev-v2)[last()]"/> - - <xsl:variable name="next-v1" - select="(following::sect1[$chunk.section.depth > 0 - and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking']) - and preceding-sibling::sect1][1] - - |following::sect2[$chunk.section.depth > 1 - and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking']) - and preceding-sibling::sect2 - and parent::sect1[preceding-sibling::sect1]][1] - - |following::sect3[$chunk.section.depth > 2 - and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking']) - and preceding-sibling::sect3 - and parent::sect2[preceding-sibling::sect2] - and ancestor::sect1[preceding-sibling::sect1]][1] - - |following::sect4[$chunk.section.depth > 3 - and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking']) - and preceding-sibling::sect4 - and parent::sect3[preceding-sibling::sect3] - and ancestor::sect2[preceding-sibling::sect2] - and ancestor::sect1[preceding-sibling::sect1]][1] - - |following::sect5[$chunk.section.depth > 4 - and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking']) - and preceding-sibling::sect5 - and parent::sect4[preceding-sibling::sect4] - and ancestor::sect3[preceding-sibling::sect3] - and ancestor::sect2[preceding-sibling::sect2] - and ancestor::sect1[preceding-sibling::sect1]][1] - - |following::section[$chunk.section.depth > count(ancestor::section) - and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking']) - and preceding-sibling::section - and not(ancestor::section[not(preceding-sibling::section)])][1])[1]"/> - - <xsl:variable name="next-v2" - select="(descendant::sect1[$chunk.section.depth > 0 - and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking']) - and preceding-sibling::sect1][1] - - |descendant::sect2[$chunk.section.depth > 1 - and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking']) - and preceding-sibling::sect2 - and parent::sect1[preceding-sibling::sect1]][1] - - |descendant::sect3[$chunk.section.depth > 2 - and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking']) - and preceding-sibling::sect3 - and parent::sect2[preceding-sibling::sect2] - and ancestor::sect1[preceding-sibling::sect1]][1] - - |descendant::sect4[$chunk.section.depth > 3 - and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking']) - and preceding-sibling::sect4 - and parent::sect3[preceding-sibling::sect3] - and ancestor::sect2[preceding-sibling::sect2] - and ancestor::sect1[preceding-sibling::sect1]][1] - - |descendant::sect5[$chunk.section.depth > 4 - and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking']) - and preceding-sibling::sect5 - and parent::sect4[preceding-sibling::sect4] - and ancestor::sect3[preceding-sibling::sect3] - and ancestor::sect2[preceding-sibling::sect2] - and ancestor::sect1[preceding-sibling::sect1]][1] - - |descendant::section[$chunk.section.depth > count(ancestor::section) - and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking']) - and preceding-sibling::section - and not(ancestor::section[not(preceding-sibling::section)])])[1]"/> - - <xsl:variable name="next" - select="(following::book[1] - |following::preface[1] - |following::chapter[1] - |following::appendix[1] - |following::part[1] - |following::reference[1] - |following::refentry[1] - |following::colophon[1] - |following::bibliography[parent::article or parent::book or parent::part][1] - |following::glossary[parent::article or parent::book or parent::part][1] - |following::index[$generate.index != 0] - [parent::article or parent::book or parent::part][1] - |following::article[1] - |following::setindex[$generate.index != 0][1] - |descendant::book[1] - |descendant::preface[1] - |descendant::chapter[1] - |descendant::appendix[1] - |descendant::article[1] - |descendant::bibliography[parent::article or parent::book or parent::part][1] - |descendant::glossary[parent::article or parent::book or parent::part][1] - |descendant::index[$generate.index != 0] - [parent::article or parent::book or parent::part][1] - |descendant::colophon[1] - |descendant::setindex[$generate.index != 0][1] - |descendant::part[1] - |descendant::reference[1] - |descendant::refentry[1] - |$next-v1 - |$next-v2)[1]"/> - - <xsl:call-template name="process-chunk"> - <xsl:with-param name="prev" select="$prev"/> - <xsl:with-param name="next" select="$next"/> - <xsl:with-param name="content" select="$content"/> - </xsl:call-template> -</xsl:template> - -<xsl:template name="chunk-all-sections"> - <xsl:param name="content"> - <xsl:apply-imports/> - </xsl:param> - - <xsl:variable name="prev-v1" - select="(preceding::sect1[$chunk.section.depth > 0 and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking'])][1] - |preceding::sect2[$chunk.section.depth > 1 and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking'])][1] - |preceding::sect3[$chunk.section.depth > 2 and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking'])][1] - |preceding::sect4[$chunk.section.depth > 3 and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking'])][1] - |preceding::sect5[$chunk.section.depth > 4 and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking'])][1] - |preceding::section[$chunk.section.depth > count(ancestor::section) and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking'])][1])[last()]"/> - - <xsl:variable name="prev-v2" - select="(ancestor::sect1[$chunk.section.depth > 0 and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking'])][1] - |ancestor::sect2[$chunk.section.depth > 1 and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking'])][1] - |ancestor::sect3[$chunk.section.depth > 2 and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking'])][1] - |ancestor::sect4[$chunk.section.depth > 3 and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking'])][1] - |ancestor::sect5[$chunk.section.depth > 4 and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking'])][1] - |ancestor::section[$chunk.section.depth > count(ancestor::section) and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking'])][1])[last()]"/> - - <xsl:variable name="prev" - select="(preceding::book[1] - |preceding::preface[1] - |preceding::chapter[1] - |preceding::appendix[1] - |preceding::part[1] - |preceding::reference[1] - |preceding::refentry[1] - |preceding::colophon[1] - |preceding::article[1] - |preceding::bibliography[parent::article or parent::book or parent::part][1] - |preceding::glossary[parent::article or parent::book or parent::part][1] - |preceding::index[$generate.index != 0] - [parent::article or parent::book or parent::part][1] - |preceding::setindex[$generate.index != 0][1] - |ancestor::set - |ancestor::book[1] - |ancestor::preface[1] - |ancestor::chapter[1] - |ancestor::appendix[1] - |ancestor::part[1] - |ancestor::reference[1] - |ancestor::article[1] - |$prev-v1 - |$prev-v2)[last()]"/> - - <xsl:variable name="next-v1" - select="(following::sect1[$chunk.section.depth > 0 and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking'])][1] - |following::sect2[$chunk.section.depth > 1 and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking'])][1] - |following::sect3[$chunk.section.depth > 2 and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking'])][1] - |following::sect4[$chunk.section.depth > 3 and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking'])][1] - |following::sect5[$chunk.section.depth > 4 and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking'])][1] - |following::section[$chunk.section.depth > count(ancestor::section) and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking'])][1])[1]"/> - - <xsl:variable name="next-v2" - select="(descendant::sect1[$chunk.section.depth > 0 and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking'])][1] - |descendant::sect2[$chunk.section.depth > 1 and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking'])][1] - |descendant::sect3[$chunk.section.depth > 2 and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking'])][1] - |descendant::sect4[$chunk.section.depth > 3 and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking'])][1] - |descendant::sect5[$chunk.section.depth > 4 and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking'])][1] - |descendant::section[$chunk.section.depth - > count(ancestor::section) and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking'])][1])[1]"/> - - <xsl:variable name="next" - select="(following::book[1] - |following::preface[1] - |following::chapter[1] - |following::appendix[1] - |following::part[1] - |following::reference[1] - |following::refentry[1] - |following::colophon[1] - |following::bibliography[parent::article or parent::book or parent::part][1] - |following::glossary[parent::article or parent::book or parent::part][1] - |following::index[$generate.index != 0] - [parent::article or parent::book][1] - |following::article[1] - |following::setindex[$generate.index != 0][1] - |descendant::book[1] - |descendant::preface[1] - |descendant::chapter[1] - |descendant::appendix[1] - |descendant::article[1] - |descendant::bibliography[parent::article or parent::book][1] - |descendant::glossary[parent::article or parent::book or parent::part][1] - |descendant::index[$generate.index != 0] - [parent::article or parent::book][1] - |descendant::colophon[1] - |descendant::setindex[$generate.index != 0][1] - |descendant::part[1] - |descendant::reference[1] - |descendant::refentry[1] - |$next-v1 - |$next-v2)[1]"/> - - <xsl:call-template name="process-chunk"> - <xsl:with-param name="prev" select="$prev"/> - <xsl:with-param name="next" select="$next"/> - <xsl:with-param name="content" select="$content"/> - </xsl:call-template> -</xsl:template> - -<!-- ==================================================================== --> - -<!-- ==================================================================== --> - -<xsl:template name="make.lots"> - <xsl:param name="toc.params" select="''"/> - <xsl:param name="toc"/> - - <xsl:variable name="lots"> - <xsl:if test="contains($toc.params, 'toc')"> - <xsl:copy-of select="$toc"/> - </xsl:if> - - <xsl:if test="contains($toc.params, 'figure')"> - <xsl:choose> - <xsl:when test="$chunk.separate.lots != '0'"> - <xsl:call-template name="make.lot.chunk"> - <xsl:with-param name="type" select="'figure'"/> - <xsl:with-param name="lot"> - <xsl:call-template name="list.of.titles"> - <xsl:with-param name="titles" select="'figure'"/> - <xsl:with-param name="nodes" select=".//figure"/> - </xsl:call-template> - </xsl:with-param> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <xsl:call-template name="list.of.titles"> - <xsl:with-param name="titles" select="'figure'"/> - <xsl:with-param name="nodes" select=".//figure"/> - </xsl:call-template> - </xsl:otherwise> - </xsl:choose> - </xsl:if> - - <xsl:if test="contains($toc.params, 'table')"> - <xsl:choose> - <xsl:when test="$chunk.separate.lots != '0'"> - <xsl:call-template name="make.lot.chunk"> - <xsl:with-param name="type" select="'table'"/> - <xsl:with-param name="lot"> - <xsl:call-template name="list.of.titles"> - <xsl:with-param name="titles" select="'table'"/> - <xsl:with-param name="nodes" select=".//table"/> - </xsl:call-template> - </xsl:with-param> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <xsl:call-template name="list.of.titles"> - <xsl:with-param name="titles" select="'table'"/> - <xsl:with-param name="nodes" select=".//table"/> - </xsl:call-template> - </xsl:otherwise> - </xsl:choose> - </xsl:if> - - <xsl:if test="contains($toc.params, 'example')"> - <xsl:choose> - <xsl:when test="$chunk.separate.lots != '0'"> - <xsl:call-template name="make.lot.chunk"> - <xsl:with-param name="type" select="'example'"/> - <xsl:with-param name="lot"> - <xsl:call-template name="list.of.titles"> - <xsl:with-param name="titles" select="'example'"/> - <xsl:with-param name="nodes" select=".//example"/> - </xsl:call-template> - </xsl:with-param> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <xsl:call-template name="list.of.titles"> - <xsl:with-param name="titles" select="'example'"/> - <xsl:with-param name="nodes" select=".//example"/> - </xsl:call-template> - </xsl:otherwise> - </xsl:choose> - </xsl:if> - - <xsl:if test="contains($toc.params, 'equation')"> - <xsl:choose> - <xsl:when test="$chunk.separate.lots != '0'"> - <xsl:call-template name="make.lot.chunk"> - <xsl:with-param name="type" select="'equation'"/> - <xsl:with-param name="lot"> - <xsl:call-template name="list.of.titles"> - <xsl:with-param name="titles" select="'equation'"/> - <xsl:with-param name="nodes" select=".//equation"/> - </xsl:call-template> - </xsl:with-param> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <xsl:call-template name="list.of.titles"> - <xsl:with-param name="titles" select="'equation'"/> - <xsl:with-param name="nodes" select=".//equation"/> - </xsl:call-template> - </xsl:otherwise> - </xsl:choose> - </xsl:if> - - <xsl:if test="contains($toc.params, 'procedure')"> - <xsl:choose> - <xsl:when test="$chunk.separate.lots != '0'"> - <xsl:call-template name="make.lot.chunk"> - <xsl:with-param name="type" select="'procedure'"/> - <xsl:with-param name="lot"> - <xsl:call-template name="list.of.titles"> - <xsl:with-param name="titles" select="'procedure'"/> - <xsl:with-param name="nodes" select=".//procedure[title]"/> - </xsl:call-template> - </xsl:with-param> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <xsl:call-template name="list.of.titles"> - <xsl:with-param name="titles" select="'procedure'"/> - <xsl:with-param name="nodes" select=".//procedure[title]"/> - </xsl:call-template> - </xsl:otherwise> - </xsl:choose> - </xsl:if> - </xsl:variable> - - <xsl:if test="string($lots) != ''"> - <xsl:choose> - <xsl:when test="$chunk.tocs.and.lots != 0 and not(parent::*)"> - <xsl:call-template name="write.chunk"> - <xsl:with-param name="filename"> - <xsl:call-template name="make-relative-filename"> - <xsl:with-param name="base.dir" select="$base.dir"/> - <xsl:with-param name="base.name"> - <xsl:call-template name="dbhtml-dir"/> - <xsl:apply-templates select="." mode="recursive-chunk-filename"> - <xsl:with-param name="recursive" select="true()"/> - </xsl:apply-templates> - <xsl:text>-toc</xsl:text> - <xsl:value-of select="$html.ext"/> - </xsl:with-param> - </xsl:call-template> - </xsl:with-param> - <xsl:with-param name="content"> - <xsl:call-template name="chunk-element-content"> - <xsl:with-param name="prev" select="/foo"/> - <xsl:with-param name="next" select="/foo"/> - <xsl:with-param name="nav.context" select="'toc'"/> - <xsl:with-param name="content"> - <xsl:if test="$chunk.tocs.and.lots.has.title != 0"> - <h1> - <xsl:apply-templates select="." mode="object.title.markup"/> - </h1> - </xsl:if> - <xsl:copy-of select="$lots"/> - </xsl:with-param> - </xsl:call-template> - </xsl:with-param> - <xsl:with-param name="quiet" select="$chunk.quietly"/> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <xsl:copy-of select="$lots"/> - </xsl:otherwise> - </xsl:choose> - </xsl:if> -</xsl:template> - -<xsl:template name="make.lot.chunk"> - <xsl:param name="type" select="''"/> - <xsl:param name="lot"/> - - <xsl:if test="string($lot) != ''"> - <xsl:variable name="filename"> - <xsl:call-template name="make-relative-filename"> - <xsl:with-param name="base.dir" select="$base.dir"/> - <xsl:with-param name="base.name"> - <xsl:call-template name="dbhtml-dir"/> - <xsl:value-of select="$type"/> - <xsl:text>-toc</xsl:text> - <xsl:value-of select="$html.ext"/> - </xsl:with-param> - </xsl:call-template> - </xsl:variable> - - <xsl:variable name="href"> - <xsl:call-template name="make-relative-filename"> - <xsl:with-param name="base.name"> - <xsl:call-template name="dbhtml-dir"/> - <xsl:value-of select="$type"/> - <xsl:text>-toc</xsl:text> - <xsl:value-of select="$html.ext"/> - </xsl:with-param> - </xsl:call-template> - </xsl:variable> - - <xsl:call-template name="write.chunk"> - <xsl:with-param name="filename" select="$filename"/> - <xsl:with-param name="content"> - <xsl:call-template name="chunk-element-content"> - <xsl:with-param name="prev" select="/foo"/> - <xsl:with-param name="next" select="/foo"/> - <xsl:with-param name="nav.context" select="'toc'"/> - <xsl:with-param name="content"> - <xsl:copy-of select="$lot"/> - </xsl:with-param> - </xsl:call-template> - </xsl:with-param> - <xsl:with-param name="quiet" select="$chunk.quietly"/> - </xsl:call-template> - <!-- And output a link to this file --> - <div> - <xsl:attribute name="class"> - <xsl:text>ListofTitles</xsl:text> - </xsl:attribute> - <a href="{$href}"> - <xsl:call-template name="gentext"> - <xsl:with-param name="key"> - <xsl:choose> - <xsl:when test="$type='table'">ListofTables</xsl:when> - <xsl:when test="$type='figure'">ListofFigures</xsl:when> - <xsl:when test="$type='equation'">ListofEquations</xsl:when> - <xsl:when test="$type='example'">ListofExamples</xsl:when> - <xsl:when test="$type='procedure'">ListofProcedures</xsl:when> - <xsl:otherwise>ListofUnknown</xsl:otherwise> - </xsl:choose> - </xsl:with-param> - </xsl:call-template> - </a> - </div> - </xsl:if> -</xsl:template> - -<!-- ==================================================================== --> - -<xsl:template name="in.other.chunk"> - <xsl:param name="chunk" select="."/> - <xsl:param name="node" select="."/> - - <xsl:variable name="is.chunk"> - <xsl:call-template name="chunk"> - <xsl:with-param name="node" select="$node"/> - </xsl:call-template> - </xsl:variable> - -<!-- - <xsl:message> - <xsl:text>in.other.chunk: </xsl:text> - <xsl:value-of select="name($chunk)"/> - <xsl:text> </xsl:text> - <xsl:value-of select="name($node)"/> - <xsl:text> </xsl:text> - <xsl:value-of select="$chunk = $node"/> - <xsl:text> </xsl:text> - <xsl:value-of select="$is.chunk"/> - </xsl:message> ---> - - <xsl:choose> - <xsl:when test="$chunk = $node">0</xsl:when> - <xsl:when test="$is.chunk = 1">1</xsl:when> - <xsl:when test="count($node) = 0">0</xsl:when> - <xsl:otherwise> - <xsl:call-template name="in.other.chunk"> - <xsl:with-param name="chunk" select="$chunk"/> - <xsl:with-param name="node" select="$node/parent::*"/> - </xsl:call-template> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template name="count.footnotes.in.this.chunk"> - <xsl:param name="node" select="."/> - <xsl:param name="footnotes" select="$node//footnote"/> - <xsl:param name="count" select="0"/> - -<!-- - <xsl:message> - <xsl:text>count.footnotes.in.this.chunk: </xsl:text> - <xsl:value-of select="name($node)"/> - </xsl:message> ---> - - <xsl:variable name="in.other.chunk"> - <xsl:call-template name="in.other.chunk"> - <xsl:with-param name="chunk" select="$node"/> - <xsl:with-param name="node" select="$footnotes[1]"/> - </xsl:call-template> - </xsl:variable> - - <xsl:choose> - <xsl:when test="count($footnotes) = 0"> - <xsl:value-of select="$count"/> - </xsl:when> - <xsl:otherwise> - <xsl:choose> - <xsl:when test="$in.other.chunk != 0"> - <xsl:call-template name="count.footnotes.in.this.chunk"> - <xsl:with-param name="node" select="$node"/> - <xsl:with-param name="footnotes" - select="$footnotes[position() > 1]"/> - <xsl:with-param name="count" select="$count"/> - </xsl:call-template> - </xsl:when> - <xsl:when test="$footnotes[1]/ancestor::table - |$footnotes[1]/ancestor::informaltable"> - <xsl:call-template name="count.footnotes.in.this.chunk"> - <xsl:with-param name="node" select="$node"/> - <xsl:with-param name="footnotes" - select="$footnotes[position() > 1]"/> - <xsl:with-param name="count" select="$count"/> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <xsl:call-template name="count.footnotes.in.this.chunk"> - <xsl:with-param name="node" select="$node"/> - <xsl:with-param name="footnotes" - select="$footnotes[position() > 1]"/> - <xsl:with-param name="count" select="$count + 1"/> - </xsl:call-template> - </xsl:otherwise> - </xsl:choose> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template name="process.footnotes.in.this.chunk"> - <xsl:param name="node" select="."/> - <xsl:param name="footnotes" select="$node//footnote"/> - -<!-- - <xsl:message>process.footnotes.in.this.chunk</xsl:message> ---> - - <xsl:variable name="in.other.chunk"> - <xsl:call-template name="in.other.chunk"> - <xsl:with-param name="chunk" select="$node"/> - <xsl:with-param name="node" select="$footnotes[1]"/> - </xsl:call-template> - </xsl:variable> - - <xsl:choose> - <xsl:when test="count($footnotes) = 0"> - <!-- nop --> - </xsl:when> - <xsl:otherwise> - <xsl:choose> - <xsl:when test="$in.other.chunk != 0"> - <xsl:call-template name="process.footnotes.in.this.chunk"> - <xsl:with-param name="node" select="$node"/> - <xsl:with-param name="footnotes" - select="$footnotes[position() > 1]"/> - </xsl:call-template> - </xsl:when> - <xsl:when test="$footnotes[1]/ancestor::table - |$footnotes[1]/ancestor::informaltable"> - <xsl:call-template name="process.footnotes.in.this.chunk"> - <xsl:with-param name="node" select="$node"/> - <xsl:with-param name="footnotes" - select="$footnotes[position() > 1]"/> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates select="$footnotes[1]" - mode="process.footnote.mode"/> - <xsl:call-template name="process.footnotes.in.this.chunk"> - <xsl:with-param name="node" select="$node"/> - <xsl:with-param name="footnotes" - select="$footnotes[position() > 1]"/> - </xsl:call-template> - </xsl:otherwise> - </xsl:choose> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template name="process.footnotes"> - <xsl:variable name="footnotes" select=".//footnote"/> - <xsl:variable name="fcount"> - <xsl:call-template name="count.footnotes.in.this.chunk"> - <xsl:with-param name="node" select="."/> - <xsl:with-param name="footnotes" select="$footnotes"/> - </xsl:call-template> - </xsl:variable> - -<!-- - <xsl:message> - <xsl:value-of select="name(.)"/> - <xsl:text> fcount: </xsl:text> - <xsl:value-of select="$fcount"/> - </xsl:message> ---> - - <!-- Only bother to do this if there's at least one non-table footnote --> - <xsl:if test="$fcount > 0"> - <div class="footnotes"> - <br/> - <hr width="100" align="{$direction.align.start}"/> - <xsl:call-template name="process.footnotes.in.this.chunk"> - <xsl:with-param name="node" select="."/> - <xsl:with-param name="footnotes" select="$footnotes"/> - </xsl:call-template> - </div> - </xsl:if> - - <!-- FIXME: When chunking, only the annotations actually used - in this chunk should be referenced. I don't think it - does any harm to reference them all, but it adds - unnecessary bloat to each chunk. --> - <xsl:if test="$annotation.support != 0 and //annotation"> - <div class="annotation-list"> - <div class="annotation-nocss"> - <p>The following annotations are from this essay. You are seeing - them here because your browser doesn’t support the user-interface - techniques used to make them appear as ‘popups’ on modern browsers.</p> - </div> - - <xsl:apply-templates select="//annotation" - mode="annotation-popup"/> - </div> - </xsl:if> -</xsl:template> - -<xsl:template name="process.chunk.footnotes"> - <xsl:variable name="is.chunk"> - <xsl:call-template name="chunk"/> - </xsl:variable> - <xsl:if test="$is.chunk = 1"> - <xsl:call-template name="process.footnotes"/> - </xsl:if> -</xsl:template> - -<!-- ====================================================================== --> - -<xsl:template name="chunk"> - <xsl:param name="node" select="."/> - <!-- returns 1 if $node is a chunk --> - - <!-- ==================================================================== --> - <!-- What's a chunk? - - The root element - appendix - article - bibliography in article or part or book - book - chapter - colophon - glossary in article or part or book - index in article or part or book - part - preface - refentry - reference - sect{1,2,3,4,5} if position()>1 && depth < chunk.section.depth - section if position()>1 && depth < chunk.section.depth - set - setindex - --> - <!-- ==================================================================== --> - -<!-- - <xsl:message> - <xsl:text>chunk: </xsl:text> - <xsl:value-of select="name($node)"/> - <xsl:text>(</xsl:text> - <xsl:value-of select="$node/@id"/> - <xsl:text>)</xsl:text> - <xsl:text> csd: </xsl:text> - <xsl:value-of select="$chunk.section.depth"/> - <xsl:text> cfs: </xsl:text> - <xsl:value-of select="$chunk.first.sections"/> - <xsl:text> ps: </xsl:text> - <xsl:value-of select="count($node/parent::section)"/> - <xsl:text> prs: </xsl:text> - <xsl:value-of select="count($node/preceding-sibling::section)"/> - </xsl:message> ---> - - <xsl:choose> - <xsl:when test="$node/parent::*/processing-instruction('dbhtml')[normalize-space(.) = 'stop-chunking']">0</xsl:when> - <xsl:when test="not($node/parent::*)">1</xsl:when> - - <xsl:when test="local-name($node) = 'sect1' - and $chunk.section.depth >= 1 - and ($chunk.first.sections != 0 - or count($node/preceding-sibling::sect1) > 0)"> - <xsl:text>1</xsl:text> - </xsl:when> - <xsl:when test="local-name($node) = 'sect2' - and $chunk.section.depth >= 2 - and ($chunk.first.sections != 0 - or count($node/preceding-sibling::sect2) > 0)"> - <xsl:call-template name="chunk"> - <xsl:with-param name="node" select="$node/parent::*"/> - </xsl:call-template> - </xsl:when> - <xsl:when test="local-name($node) = 'sect3' - and $chunk.section.depth >= 3 - and ($chunk.first.sections != 0 - or count($node/preceding-sibling::sect3) > 0)"> - <xsl:call-template name="chunk"> - <xsl:with-param name="node" select="$node/parent::*"/> - </xsl:call-template> - </xsl:when> - <xsl:when test="local-name($node) = 'sect4' - and $chunk.section.depth >= 4 - and ($chunk.first.sections != 0 - or count($node/preceding-sibling::sect4) > 0)"> - <xsl:call-template name="chunk"> - <xsl:with-param name="node" select="$node/parent::*"/> - </xsl:call-template> - </xsl:when> - <xsl:when test="local-name($node) = 'sect5' - and $chunk.section.depth >= 5 - and ($chunk.first.sections != 0 - or count($node/preceding-sibling::sect5) > 0)"> - <xsl:call-template name="chunk"> - <xsl:with-param name="node" select="$node/parent::*"/> - </xsl:call-template> - </xsl:when> - <xsl:when test="local-name($node) = 'section' - and $chunk.section.depth >= count($node/ancestor::section)+1 - and ($chunk.first.sections != 0 - or count($node/preceding-sibling::section) > 0)"> - <xsl:call-template name="chunk"> - <xsl:with-param name="node" select="$node/parent::*"/> - </xsl:call-template> - </xsl:when> - - <xsl:when test="local-name($node)='preface'">1</xsl:when> - <xsl:when test="local-name($node)='chapter'">1</xsl:when> - <xsl:when test="local-name($node)='appendix'">1</xsl:when> - <xsl:when test="local-name($node)='article'">1</xsl:when> - <xsl:when test="local-name($node)='part'">1</xsl:when> - <xsl:when test="local-name($node)='reference'">1</xsl:when> - <xsl:when test="local-name($node)='refentry'">1</xsl:when> - <xsl:when test="local-name($node)='index' and ($generate.index != 0 or count($node/*) > 0) - and (local-name($node/parent::*) = 'article' - or local-name($node/parent::*) = 'book' - or local-name($node/parent::*) = 'part' - )">1</xsl:when> - <xsl:when test="local-name($node)='bibliography' - and (local-name($node/parent::*) = 'article' - or local-name($node/parent::*) = 'book' - or local-name($node/parent::*) = 'part' - )">1</xsl:when> - <xsl:when test="local-name($node)='glossary' - and (local-name($node/parent::*) = 'article' - or local-name($node/parent::*) = 'book' - or local-name($node/parent::*) = 'part' - )">1</xsl:when> - <xsl:when test="local-name($node)='colophon'">1</xsl:when> - <xsl:when test="local-name($node)='book'">1</xsl:when> - <xsl:when test="local-name($node)='set'">1</xsl:when> - <xsl:when test="local-name($node)='setindex'">1</xsl:when> - <xsl:when test="local-name($node)='legalnotice' - and $generate.legalnotice.link != 0">1</xsl:when> - <xsl:otherwise>0</xsl:otherwise> - </xsl:choose> -</xsl:template> - -<!-- ==================================================================== --> -<xsl:template name="href.target.uri"> - <xsl:param name="object" select="."/> - <xsl:variable name="ischunk"> - <xsl:call-template name="chunk"> - <xsl:with-param name="node" select="$object"/> - </xsl:call-template> - </xsl:variable> - - <xsl:apply-templates mode="chunk-filename" select="$object"/> - - <xsl:if test="$ischunk='0'"> - <xsl:text>#</xsl:text> - <xsl:call-template name="object.id"> - <xsl:with-param name="object" select="$object"/> - </xsl:call-template> - </xsl:if> -</xsl:template> - -<xsl:template name="href.target"> - <xsl:param name="context" select="."/> - <xsl:param name="object" select="."/> - <xsl:param name="toc-context" select="."/> - <!-- * If $toc-context contains some node other than the current node, --> - <!-- * it means we're processing a link in a TOC. In that case, to --> - <!-- * ensure the link will work correctly, we need to take a look at --> - <!-- * where the file containing the TOC will get written, and where --> - <!-- * the file that's being linked to will get written. --> - <xsl:variable name="toc-output-dir"> - <xsl:if test="not($toc-context = .)"> - <!-- * Get the $toc-context node and all its ancestors, look down --> - <!-- * through them to find the last/closest node to the --> - <!-- * toc-context node that has a "dbhtml dir" PI, and get the --> - <!-- * directory name from that. That's the name of the directory --> - <!-- * to which the current toc output file will get written. --> - <xsl:call-template name="dbhtml-dir"> - <xsl:with-param name="context" - select="$toc-context/ancestor-or-self::*[processing-instruction('dbhtml')[contains(.,'dir')]][last()]"/> - </xsl:call-template> - </xsl:if> - </xsl:variable> - <xsl:variable name="linked-file-output-dir"> - <xsl:if test="not($toc-context = .)"> - <!-- * Get the current node and all its ancestors, look down --> - <!-- * through them to find the last/closest node to the current --> - <!-- * node that has a "dbhtml dir" PI, and get the directory name --> - <!-- * from that. That's the name of the directory to which the --> - <!-- * file that's being linked to will get written. --> - <xsl:call-template name="dbhtml-dir"> - <xsl:with-param name="context" - select="ancestor-or-self::*[processing-instruction('dbhtml')[contains(.,'dir')]][last()]"/> - </xsl:call-template> - </xsl:if> - </xsl:variable> - <xsl:variable name="href.to.uri"> - <xsl:call-template name="href.target.uri"> - <xsl:with-param name="object" select="$object"/> - </xsl:call-template> - </xsl:variable> - <xsl:variable name="href.from.uri"> - <xsl:choose> - <xsl:when test="not($toc-context = .)"> - <xsl:call-template name="href.target.uri"> - <xsl:with-param name="object" select="$toc-context"/> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <xsl:call-template name="href.target.uri"> - <xsl:with-param name="object" select="$context"/> - </xsl:call-template> - </xsl:otherwise> - </xsl:choose> - </xsl:variable> - <!-- * <xsl:message>toc-context: <xsl:value-of select="local-name($toc-context)"/></xsl:message> --> - <!-- * <xsl:message>node: <xsl:value-of select="local-name(.)"/></xsl:message> --> - <!-- * <xsl:message>context: <xsl:value-of select="local-name($context)"/></xsl:message> --> - <!-- * <xsl:message>object: <xsl:value-of select="local-name($object)"/></xsl:message> --> - <!-- * <xsl:message>toc-output-dir: <xsl:value-of select="$toc-output-dir"/></xsl:message> --> - <!-- * <xsl:message>linked-file-output-dir: <xsl:value-of select="$linked-file-output-dir"/></xsl:message> --> - <!-- * <xsl:message>href.to.uri: <xsl:value-of select="$href.to.uri"/></xsl:message> --> - <!-- * <xsl:message>href.from.uri: <xsl:value-of select="$href.from.uri"/></xsl:message> --> - <xsl:variable name="href.to"> - <xsl:choose> - <!-- * 2007-07-19, MikeSmith: Added the following conditional to --> - <!-- * deal with a problem case for links in TOCs. It checks to see --> - <!-- * if the output dir that a TOC will get written to is --> - <!-- * different from the output dir of the file being linked to. --> - <!-- * If it is different, we do not call trim.common.uri.paths. --> - <!-- * --> - <!-- * Reason why I added that conditional is: I ran into a bug for --> - <!-- * this case: --> - <!-- * --> - <!-- * 1. we are chunking into separate dirs --> - <!-- * --> - <!-- * 2. output for the TOC is written to current dir, but the file --> - <!-- * being linked to is written to some subdir "foo". --> - <!-- * --> - <!-- * For that case, links to that file in that TOC did not show --> - <!-- * the correct path - they omitted the "foo". --> - <!-- * --> - <!-- * The cause of that problem was that the trim.common.uri.paths --> - <!-- * template[1] was being called under all conditions. But it's --> - <!-- * apparent that we don't want to call trim.common.uri.paths in --> - <!-- * the case where a linked file is being written to a different --> - <!-- * directory than the TOC that contains the link, because doing --> - <!-- * so will cause a necessary (not redundant) directory-name --> - <!-- * part of the link to get inadvertently trimmed, resulting in --> - <!-- * a broken link to that file. Thus, added the conditional. --> - <!-- * --> - <!-- * [1] The purpose of the trim.common.uri.paths template is to --> - <!-- * prevent cases where, if we didn't call it, we end up with --> - <!-- * unnecessary, redundant directory names getting output; for --> - <!-- * example, "foo/foo/refname.html". --> - <xsl:when test="not($toc-output-dir = $linked-file-output-dir)"> - <xsl:value-of select="$href.to.uri"/> - </xsl:when> - <xsl:otherwise> - <xsl:call-template name="trim.common.uri.paths"> - <xsl:with-param name="uriA" select="$href.to.uri"/> - <xsl:with-param name="uriB" select="$href.from.uri"/> - <xsl:with-param name="return" select="'A'"/> - </xsl:call-template> - </xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:variable name="href.from"> - <xsl:call-template name="trim.common.uri.paths"> - <xsl:with-param name="uriA" select="$href.to.uri"/> - <xsl:with-param name="uriB" select="$href.from.uri"/> - <xsl:with-param name="return" select="'B'"/> - </xsl:call-template> - </xsl:variable> - <xsl:variable name="depth"> - <xsl:call-template name="count.uri.path.depth"> - <xsl:with-param name="filename" select="$href.from"/> - </xsl:call-template> - </xsl:variable> - <xsl:variable name="href"> - <xsl:call-template name="copy-string"> - <xsl:with-param name="string" select="'../'"/> - <xsl:with-param name="count" select="$depth"/> - </xsl:call-template> - <xsl:value-of select="$href.to"/> - </xsl:variable> - <!-- - <xsl:message> - <xsl:text>In </xsl:text> - <xsl:value-of select="name(.)"/> - <xsl:text> (</xsl:text> - <xsl:value-of select="$href.from"/> - <xsl:text>,</xsl:text> - <xsl:value-of select="$depth"/> - <xsl:text>) </xsl:text> - <xsl:value-of select="name($object)"/> - <xsl:text> href=</xsl:text> - <xsl:value-of select="$href"/> - </xsl:message> - --> - <xsl:value-of select="$href"/> -</xsl:template> - -<!-- Returns the complete olink href value if found --> -<!-- Must take into account any dbhtml dir of the chunk containing the olink --> -<xsl:template name="make.olink.href"> - <xsl:param name="olink.key" select="''"/> - <xsl:param name="target.database"/> - - <xsl:if test="$olink.key != ''"> - <xsl:variable name="target.href" > - <xsl:for-each select="$target.database" > - <xsl:value-of select="key('targetptr-key', $olink.key)[1]/@href" /> - </xsl:for-each> - </xsl:variable> - - <!-- an olink starting point may be in a subdirectory, so need - the "from" reference point to compute a relative path --> - - <xsl:variable name="from.href"> - <xsl:call-template name="olink.from.uri"> - <xsl:with-param name="target.database" select="$target.database"/> - <xsl:with-param name="object" select="."/> - <xsl:with-param name="object.targetdoc" select="$current.docid"/> - </xsl:call-template> - </xsl:variable> - - <!-- If the from.href has directory path, then must "../" upward - to document level --> - <xsl:variable name="upward.from.path"> - <xsl:call-template name="upward.path"> - <xsl:with-param name="path" select="$from.href"/> - </xsl:call-template> - </xsl:variable> - - <xsl:variable name="targetdoc"> - <xsl:value-of select="substring-before($olink.key, '/')"/> - </xsl:variable> - - <!-- Does the target database use a sitemap? --> - <xsl:variable name="use.sitemap"> - <xsl:choose> - <xsl:when test="$target.database//sitemap">1</xsl:when> - <xsl:otherwise>0</xsl:otherwise> - </xsl:choose> - </xsl:variable> - - - <!-- Get the baseuri for this targetptr --> - <xsl:variable name="baseuri" > - <xsl:choose> - <!-- Does the database use a sitemap? --> - <xsl:when test="$use.sitemap != 0" > - <xsl:choose> - <!-- Was current.docid parameter set? --> - <xsl:when test="$current.docid != ''"> - <!-- Was it found in the database? --> - <xsl:variable name="currentdoc.key" > - <xsl:for-each select="$target.database" > - <xsl:value-of select="key('targetdoc-key', - $current.docid)/@targetdoc" /> - </xsl:for-each> - </xsl:variable> - <xsl:choose> - <xsl:when test="$currentdoc.key != ''"> - <xsl:for-each select="$target.database" > - <xsl:call-template name="targetpath" > - <xsl:with-param name="dirnode" - select="key('targetdoc-key', $current.docid)/parent::dir"/> - <xsl:with-param name="targetdoc" select="$targetdoc"/> - </xsl:call-template> - </xsl:for-each > - </xsl:when> - <xsl:otherwise> - <xsl:message> - <xsl:text>Olink error: cannot compute relative </xsl:text> - <xsl:text>sitemap path because $current.docid '</xsl:text> - <xsl:value-of select="$current.docid"/> - <xsl:text>' not found in target database.</xsl:text> - </xsl:message> - </xsl:otherwise> - </xsl:choose> - </xsl:when> - <xsl:otherwise> - <xsl:message> - <xsl:text>Olink warning: cannot compute relative </xsl:text> - <xsl:text>sitemap path without $current.docid parameter</xsl:text> - </xsl:message> - </xsl:otherwise> - </xsl:choose> - <!-- In either case, add baseuri from its document entry--> - <xsl:variable name="docbaseuri"> - <xsl:for-each select="$target.database" > - <xsl:value-of select="key('targetdoc-key', $targetdoc)/@baseuri" /> - </xsl:for-each> - </xsl:variable> - <xsl:if test="$docbaseuri != ''" > - <xsl:value-of select="$docbaseuri"/> - </xsl:if> - </xsl:when> - <!-- No database sitemap in use --> - <xsl:otherwise> - <!-- Just use any baseuri from its document entry --> - <xsl:variable name="docbaseuri"> - <xsl:for-each select="$target.database" > - <xsl:value-of select="key('targetdoc-key', $targetdoc)/@baseuri" /> - </xsl:for-each> - </xsl:variable> - <xsl:if test="$docbaseuri != ''" > - <xsl:value-of select="$docbaseuri"/> - </xsl:if> - </xsl:otherwise> - </xsl:choose> - </xsl:variable> - - <!-- Form the href information --> - <xsl:if test="not(contains($baseuri, ':'))"> - <!-- if not an absolute uri, add upward path from olink chunk --> - <xsl:value-of select="$upward.from.path"/> - </xsl:if> - - <xsl:if test="$baseuri != ''"> - <xsl:value-of select="$baseuri"/> - <xsl:if test="substring($target.href,1,1) != '#'"> - <!--xsl:text>/</xsl:text--> - </xsl:if> - </xsl:if> - <!-- optionally turn off frag for PDF references --> - <xsl:if test="not($insert.olink.pdf.frag = 0 and - translate(substring($baseuri, string-length($baseuri) - 3), - 'PDF', 'pdf') = '.pdf' - and starts-with($target.href, '#') )"> - <xsl:value-of select="$target.href"/> - </xsl:if> - </xsl:if> -</xsl:template> - -<!-- Computes "../" to reach top --> -<xsl:template name="upward.path"> - <xsl:param name="path" select="''"/> - <xsl:choose> - <!-- Don't bother with absolute uris --> - <xsl:when test="contains($path, ':')"/> - <xsl:when test="starts-with($path, '/')"/> - <xsl:when test="contains($path, '/')"> - <xsl:text>../</xsl:text> - <xsl:call-template name="upward.path"> - <xsl:with-param name="path" select="substring-after($path, '/')"/> - </xsl:call-template> - </xsl:when> - </xsl:choose> - -</xsl:template> - -<!-- ==================================================================== --> - -<xsl:template name="html.head"> - <xsl:param name="prev" select="/foo"/> - <xsl:param name="next" select="/foo"/> - <xsl:variable name="this" select="."/> - <xsl:variable name="home" select="/*[1]"/> - <xsl:variable name="up" select="parent::*"/> - - <head> - <xsl:call-template name="system.head.content"/> - <xsl:call-template name="head.content"/> - - <xsl:if test="$home"> - <link rel="home"> - <xsl:attribute name="href"> - <xsl:call-template name="href.target"> - <xsl:with-param name="object" select="$home"/> - </xsl:call-template> - </xsl:attribute> - <xsl:attribute name="title"> - <xsl:apply-templates select="$home" - mode="object.title.markup.textonly"/> - </xsl:attribute> - </link> - </xsl:if> - - <xsl:if test="$up"> - <link rel="up"> - <xsl:attribute name="href"> - <xsl:call-template name="href.target"> - <xsl:with-param name="object" select="$up"/> - </xsl:call-template> - </xsl:attribute> - <xsl:attribute name="title"> - <xsl:apply-templates select="$up" mode="object.title.markup.textonly"/> - </xsl:attribute> - </link> - </xsl:if> - - <xsl:if test="$prev"> - <link rel="prev"> - <xsl:attribute name="href"> - <xsl:call-template name="href.target"> - <xsl:with-param name="object" select="$prev"/> - </xsl:call-template> - </xsl:attribute> - <xsl:attribute name="title"> - <xsl:apply-templates select="$prev" mode="object.title.markup.textonly"/> - </xsl:attribute> - </link> - </xsl:if> - - <xsl:if test="$next"> - <link rel="next"> - <xsl:attribute name="href"> - <xsl:call-template name="href.target"> - <xsl:with-param name="object" select="$next"/> - </xsl:call-template> - </xsl:attribute> - <xsl:attribute name="title"> - <xsl:apply-templates select="$next" mode="object.title.markup.textonly"/> - </xsl:attribute> - </link> - </xsl:if> - - <xsl:if test="$html.extra.head.links != 0"> - <xsl:for-each select="//part - |//reference - |//preface - |//chapter - |//article - |//refentry - |//appendix[not(parent::article)]|appendix - |//glossary[not(parent::article)]|glossary - |//index[not(parent::article)]|index"> - <link rel="{local-name(.)}"> - <xsl:attribute name="href"> - <xsl:call-template name="href.target"> - <xsl:with-param name="context" select="$this"/> - <xsl:with-param name="object" select="."/> - </xsl:call-template> - </xsl:attribute> - <xsl:attribute name="title"> - <xsl:apply-templates select="." mode="object.title.markup.textonly"/> - </xsl:attribute> - </link> - </xsl:for-each> - - <xsl:for-each select="section|sect1|refsection|refsect1"> - <link> - <xsl:attribute name="rel"> - <xsl:choose> - <xsl:when test="local-name($this) = 'section' - or local-name($this) = 'refsection'"> - <xsl:value-of select="'subsection'"/> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="'section'"/> - </xsl:otherwise> - </xsl:choose> - </xsl:attribute> - <xsl:attribute name="href"> - <xsl:call-template name="href.target"> - <xsl:with-param name="context" select="$this"/> - <xsl:with-param name="object" select="."/> - </xsl:call-template> - </xsl:attribute> - <xsl:attribute name="title"> - <xsl:apply-templates select="." mode="object.title.markup.textonly"/> - </xsl:attribute> - </link> - </xsl:for-each> - - <xsl:for-each select="sect2|sect3|sect4|sect5|refsect2|refsect3"> - <link rel="subsection"> - <xsl:attribute name="href"> - <xsl:call-template name="href.target"> - <xsl:with-param name="context" select="$this"/> - <xsl:with-param name="object" select="."/> - </xsl:call-template> - </xsl:attribute> - <xsl:attribute name="title"> - <xsl:apply-templates select="." mode="object.title.markup.textonly"/> - </xsl:attribute> - </link> - </xsl:for-each> - </xsl:if> - - <!-- * if we have a legalnotice and user wants it output as a --> - <!-- * separate page and $html.head.legalnotice.link.types is --> - <!-- * non-empty, we generate a link or links for each value in --> - <!-- * $html.head.legalnotice.link.types --> - <xsl:if test="//legalnotice - and not($generate.legalnotice.link = 0) - and not($html.head.legalnotice.link.types = '')"> - <xsl:call-template name="make.legalnotice.head.links"/> - </xsl:if> - - <xsl:call-template name="user.head.content"/> - </head> -</xsl:template> - -<!-- ==================================================================== --> - -<xsl:template name="header.navigation"> - <xsl:param name="prev" select="/foo"/> - <xsl:param name="next" select="/foo"/> - <xsl:param name="nav.context"/> - - <xsl:variable name="home" select="/*[1]"/> - <xsl:variable name="up" select="parent::*"/> - - <xsl:variable name="row1" select="$navig.showtitles != 0"/> - <xsl:variable name="row2" select="count($prev) > 0 - or (count($up) > 0 - and generate-id($up) != generate-id($home) - and $navig.showtitles != 0) - or count($next) > 0"/> - - <xsl:if test="$suppress.navigation = '0' and $suppress.header.navigation = '0'"> - <div class="navheader"> - <xsl:if test="$row1 or $row2"> - <table width="100%" summary="Navigation header"> - <xsl:if test="$row1"> - <tr> - <th colspan="3" align="center"> - <xsl:apply-templates select="." mode="object.title.markup"/> - </th> - </tr> - </xsl:if> - - <xsl:if test="$row2"> - <tr> - <td width="20%" align="{$direction.align.start}"> - <xsl:if test="count($prev)>0"> - <a accesskey="p"> - <xsl:attribute name="href"> - <xsl:call-template name="href.target"> - <xsl:with-param name="object" select="$prev"/> - </xsl:call-template> - </xsl:attribute> - <xsl:call-template name="navig.content"> - <xsl:with-param name="direction" select="'prev'"/> - </xsl:call-template> - </a> - </xsl:if> - <xsl:text> </xsl:text> - </td> - <th width="60%" align="center"> - <xsl:choose> - <xsl:when test="count($up) > 0 - and generate-id($up) != generate-id($home) - and $navig.showtitles != 0"> - <xsl:apply-templates select="$up" mode="object.title.markup"/> - </xsl:when> - <xsl:otherwise> </xsl:otherwise> - </xsl:choose> - </th> - <td width="20%" align="{$direction.align.end}"> - <xsl:text> </xsl:text> - <xsl:if test="count($next)>0"> - <a accesskey="n"> - <xsl:attribute name="href"> - <xsl:call-template name="href.target"> - <xsl:with-param name="object" select="$next"/> - </xsl:call-template> - </xsl:attribute> - <xsl:call-template name="navig.content"> - <xsl:with-param name="direction" select="'next'"/> - </xsl:call-template> - </a> - </xsl:if> - </td> - </tr> - </xsl:if> - </table> - </xsl:if> - <xsl:if test="$header.rule != 0"> - <hr/> - </xsl:if> - </div> - </xsl:if> -</xsl:template> - -<!-- ==================================================================== --> - -<xsl:template name="footer.navigation"> - <xsl:param name="prev" select="/foo"/> - <xsl:param name="next" select="/foo"/> - <xsl:param name="nav.context"/> - - <xsl:variable name="home" select="/*[1]"/> - <xsl:variable name="up" select="parent::*"/> - - <xsl:variable name="row1" select="count($prev) > 0 - or count($up) > 0 - or count($next) > 0"/> - - <xsl:variable name="row2" select="($prev and $navig.showtitles != 0) - or (generate-id($home) != generate-id(.) - or $nav.context = 'toc') - or ($chunk.tocs.and.lots != 0 - and $nav.context != 'toc') - or ($next and $navig.showtitles != 0)"/> - - <xsl:if test="$suppress.navigation = '0' and $suppress.footer.navigation = '0'"> - <div class="navfooter"> - <xsl:if test="$footer.rule != 0"> - <hr/> - </xsl:if> - - <xsl:if test="$row1 or $row2"> - <table width="100%" summary="Navigation footer"> - <xsl:if test="$row1"> - <tr> - <td width="40%" align="{$direction.align.start}"> - <xsl:if test="count($prev)>0"> - <a accesskey="p"> - <xsl:attribute name="href"> - <xsl:call-template name="href.target"> - <xsl:with-param name="object" select="$prev"/> - </xsl:call-template> - </xsl:attribute> - <xsl:call-template name="navig.content"> - <xsl:with-param name="direction" select="'prev'"/> - </xsl:call-template> - </a> - </xsl:if> - <xsl:text> </xsl:text> - </td> - <td width="20%" align="center"> - <xsl:choose> - <xsl:when test="count($up)>0 - and generate-id($up) != generate-id($home)"> - <a accesskey="u"> - <xsl:attribute name="href"> - <xsl:call-template name="href.target"> - <xsl:with-param name="object" select="$up"/> - </xsl:call-template> - </xsl:attribute> - <xsl:call-template name="navig.content"> - <xsl:with-param name="direction" select="'up'"/> - </xsl:call-template> - </a> - </xsl:when> - <xsl:otherwise> </xsl:otherwise> - </xsl:choose> - </td> - <td width="40%" align="{$direction.align.end}"> - <xsl:text> </xsl:text> - <xsl:if test="count($next)>0"> - <a accesskey="n"> - <xsl:attribute name="href"> - <xsl:call-template name="href.target"> - <xsl:with-param name="object" select="$next"/> - </xsl:call-template> - </xsl:attribute> - <xsl:call-template name="navig.content"> - <xsl:with-param name="direction" select="'next'"/> - </xsl:call-template> - </a> - </xsl:if> - </td> - </tr> - </xsl:if> - - <xsl:if test="$row2"> - <tr> - <td width="40%" align="{$direction.align.start}" valign="top"> - <xsl:if test="$navig.showtitles != 0"> - <xsl:apply-templates select="$prev" mode="object.title.markup"/> - </xsl:if> - <xsl:text> </xsl:text> - </td> - <td width="20%" align="center"> - <xsl:choose> - <xsl:when test="$home != . or $nav.context = 'toc'"> - <a accesskey="h"> - <xsl:attribute name="href"> - <xsl:call-template name="href.target"> - <xsl:with-param name="object" select="$home"/> - </xsl:call-template> - </xsl:attribute> - <xsl:call-template name="navig.content"> - <xsl:with-param name="direction" select="'home'"/> - </xsl:call-template> - </a> - <xsl:if test="$chunk.tocs.and.lots != 0 and $nav.context != 'toc'"> - <xsl:text> | </xsl:text> - </xsl:if> - </xsl:when> - <xsl:otherwise> </xsl:otherwise> - </xsl:choose> - - <xsl:if test="$chunk.tocs.and.lots != 0 and $nav.context != 'toc'"> - <a accesskey="t"> - <xsl:attribute name="href"> - <xsl:apply-templates select="/*[1]" - mode="recursive-chunk-filename"> - <xsl:with-param name="recursive" select="true()"/> - </xsl:apply-templates> - <xsl:text>-toc</xsl:text> - <xsl:value-of select="$html.ext"/> - </xsl:attribute> - <xsl:call-template name="gentext"> - <xsl:with-param name="key" select="'nav-toc'"/> - </xsl:call-template> - </a> - </xsl:if> - </td> - <td width="40%" align="{$direction.align.end}" valign="top"> - <xsl:text> </xsl:text> - <xsl:if test="$navig.showtitles != 0"> - <xsl:apply-templates select="$next" mode="object.title.markup"/> - </xsl:if> - </td> - </tr> - </xsl:if> - </table> - </xsl:if> - </div> - </xsl:if> -</xsl:template> - -<!-- ==================================================================== --> - -<xsl:template name="navig.content"> - <xsl:param name="direction" select="next"/> - <xsl:variable name="navtext"> - <xsl:choose> - <xsl:when test="$direction = 'prev'"> - <xsl:call-template name="gentext.nav.prev"/> - </xsl:when> - <xsl:when test="$direction = 'next'"> - <xsl:call-template name="gentext.nav.next"/> - </xsl:when> - <xsl:when test="$direction = 'up'"> - <xsl:call-template name="gentext.nav.up"/> - </xsl:when> - <xsl:when test="$direction = 'home'"> - <xsl:call-template name="gentext.nav.home"/> - </xsl:when> - <xsl:otherwise> - <xsl:text>xxx</xsl:text> - </xsl:otherwise> - </xsl:choose> - </xsl:variable> - - <xsl:choose> - <xsl:when test="$navig.graphics != 0"> - <img> - <xsl:attribute name="src"> - <xsl:value-of select="$navig.graphics.path"/> - <xsl:value-of select="$direction"/> - <xsl:value-of select="$navig.graphics.extension"/> - </xsl:attribute> - <xsl:attribute name="alt"> - <xsl:value-of select="$navtext"/> - </xsl:attribute> - </img> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="$navtext"/> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<!-- ==================================================================== --> - -<!-- * The following template assumes that the first legalnotice --> -<!-- * instance found in a document applies to the contents of the --> -<!-- * entire document. It generates an HTML link in each chunk, back --> -<!-- * to the file containing the contents of the first legalnotice. --> -<!-- * --> -<!-- * Actually, it may generate multiple link instances in each chunk, --> -<!-- * because it walks through the space-separated list of link --> -<!-- * types specified in the $html.head.legalnotice.link.types param, --> -<!-- * popping off link types and generating links for them until it --> -<!-- * depletes the list. --> - -<xsl:template name="make.legalnotice.head.links"> - <!-- * the following ID is used as part of the legalnotice filename; --> - <!-- * we need it in order to construct the filename for use in the --> - <!-- * value of the href attribute on the link --> - - <xsl:param name="ln-node" select="(//legalnotice)[1]"/> - - <xsl:param name="linktype"> - <xsl:choose> - <xsl:when test="contains($html.head.legalnotice.link.types, ' ')"> - <xsl:value-of - select="normalize-space( - substring-before($html.head.legalnotice.link.types, ' '))"/> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="$html.head.legalnotice.link.types"/> - </xsl:otherwise> - </xsl:choose> - </xsl:param> - <xsl:param - name="remaining.linktypes" - select="concat( - normalize-space( - substring-after($html.head.legalnotice.link.types, ' ')),' ')"/> - <xsl:if test="not($linktype = '')"> - - <!-- Compute name of legalnotice file (see titlepage.xsl) --> - <xsl:variable name="file"> - <xsl:call-template name="ln.or.rh.filename"> - <xsl:with-param name="node" select="$ln-node"/> - </xsl:call-template> - </xsl:variable> - - <link rel="{$linktype}"> - <xsl:attribute name="href"> - <xsl:value-of select="$file"/> - </xsl:attribute> - <xsl:attribute name="title"> - <xsl:apply-templates select="(//legalnotice)[1]" - mode="object.title.markup.textonly"/> - </xsl:attribute> - </link> - <xsl:call-template name="make.legalnotice.head.links"> - <!-- * pop the next value off the list of link types --> - <xsl:with-param - name="linktype" - select="substring-before($remaining.linktypes, ' ')"/> - <!-- * remove the link type from the list of remaining link types --> - <xsl:with-param - name="remaining.linktypes" - select="substring-after($remaining.linktypes, ' ')"/> - </xsl:call-template> - </xsl:if> -</xsl:template> - -<!-- ==================================================================== --> -<xsl:template name="chunk-element-content"> - <xsl:param name="prev"/> - <xsl:param name="next"/> - <xsl:param name="nav.context"/> - <xsl:param name="content"> - <xsl:apply-imports/> - </xsl:param> - - <xsl:call-template name="user.preroot"/> - - <html> - <xsl:call-template name="html.head"> - <xsl:with-param name="prev" select="$prev"/> - <xsl:with-param name="next" select="$next"/> - </xsl:call-template> - - <body> - <xsl:call-template name="body.attributes"/> - <xsl:call-template name="user.header.navigation"/> - - <xsl:call-template name="header.navigation"> - <xsl:with-param name="prev" select="$prev"/> - <xsl:with-param name="next" select="$next"/> - <xsl:with-param name="nav.context" select="$nav.context"/> - </xsl:call-template> - - <xsl:call-template name="user.header.content"/> - - <xsl:copy-of select="$content"/> - - <xsl:call-template name="user.footer.content"/> - - <xsl:call-template name="footer.navigation"> - <xsl:with-param name="prev" select="$prev"/> - <xsl:with-param name="next" select="$next"/> - <xsl:with-param name="nav.context" select="$nav.context"/> - </xsl:call-template> - - <xsl:call-template name="user.footer.navigation"/> - </body> - </html> - <xsl:value-of select="$chunk.append"/> -</xsl:template> - -<!-- ==================================================================== --> -<xsl:template name="generate.manifest"> - <xsl:param name="node" select="/"/> - <xsl:call-template name="write.text.chunk"> - <xsl:with-param name="filename"> - <xsl:if test="$manifest.in.base.dir != 0"> - <xsl:value-of select="$base.dir"/> - </xsl:if> - <xsl:value-of select="$manifest"/> - </xsl:with-param> - <xsl:with-param name="method" select="'text'"/> - <xsl:with-param name="content"> - <xsl:apply-templates select="$node" mode="enumerate-files"/> - </xsl:with-param> - <xsl:with-param name="encoding" select="$chunker.output.encoding"/> - </xsl:call-template> -</xsl:template> - -<!-- ==================================================================== --> - -<xsl:template name="dbhtml-dir"> - <xsl:param name="context" select="."/> - <!-- directories are now inherited from previous levels --> - <xsl:variable name="ppath"> - <xsl:if test="$context/parent::*"> - <xsl:call-template name="dbhtml-dir"> - <xsl:with-param name="context" select="$context/parent::*"/> - </xsl:call-template> - </xsl:if> - </xsl:variable> - <xsl:variable name="path"> - <xsl:call-template name="pi.dbhtml_dir"> - <xsl:with-param name="node" select="$context"/> - </xsl:call-template> - </xsl:variable> - <xsl:choose> - <xsl:when test="$path = ''"> - <xsl:if test="$ppath != ''"> - <xsl:value-of select="$ppath"/> - </xsl:if> - </xsl:when> - <xsl:otherwise> - <xsl:if test="$ppath != ''"> - <xsl:value-of select="$ppath"/> - <xsl:if test="substring($ppath, string-length($ppath), 1) != '/'"> - <xsl:text>/</xsl:text> - </xsl:if> - </xsl:if> - <xsl:value-of select="$path"/> - <xsl:text>/</xsl:text> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -</xsl:stylesheet> diff --git a/docbook-xsl-1.75.2/html/chunk.xsl b/docbook-xsl-1.75.2/html/chunk.xsl deleted file mode 100644 index a89e242..0000000 --- a/docbook-xsl-1.75.2/html/chunk.xsl +++ /dev/null @@ -1,52 +0,0 @@ -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" - xmlns:exsl="http://exslt.org/common" - version="1.0" - exclude-result-prefixes="exsl"> - -<!-- ******************************************************************** - $Id: chunk.xsl 6910 2007-06-28 23:23:30Z xmldoc $ - ******************************************************************** - - This file is part of the XSL DocBook Stylesheet distribution. - See ../README or http://docbook.sf.net/release/xsl/current/ for - copyright and other information. - - ******************************************************************** --> - -<!-- ==================================================================== --> - -<!-- First import the non-chunking templates that format elements - within each chunk file. In a customization, you should - create a separate non-chunking customization layer such - as mydocbook.xsl that imports the original docbook.xsl and - customizes any presentation templates. Then your chunking - customization should import mydocbook.xsl instead of - docbook.xsl. --> -<xsl:import href="docbook.xsl"/> - -<!-- chunk-common.xsl contains all the named templates for chunking. - In a customization file, you import chunk-common.xsl, then - add any customized chunking templates of the same name. - They will have import precedence over the original - chunking templates in chunk-common.xsl. --> -<xsl:import href="chunk-common.xsl"/> - -<!-- The manifest.xsl module is no longer imported because its - templates were moved into chunk-common and chunk-code --> - -<!-- chunk-code.xsl contains all the chunking templates that use - a match attribute. In a customization it should be referenced - using <xsl:include> instead of <xsl:import>, and then add - any customized chunking templates with match attributes. But be sure - to add a priority="1" to such customized templates to resolve - its conflict with the original, since they have the - same import precedence. - - Using xsl:include prevents adding another layer - of import precedence, which would cause any - customizations that use xsl:apply-imports to wrongly - apply the chunking version instead of the original - non-chunking version to format an element. --> -<xsl:include href="chunk-code.xsl"/> - -</xsl:stylesheet> diff --git a/docbook-xsl-1.75.2/html/chunker.xsl b/docbook-xsl-1.75.2/html/chunker.xsl deleted file mode 100644 index a66d104..0000000 --- a/docbook-xsl-1.75.2/html/chunker.xsl +++ /dev/null @@ -1,439 +0,0 @@ -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" - xmlns:saxon="http://icl.com/saxon" - xmlns:lxslt="http://xml.apache.org/xslt" - xmlns:redirect="http://xml.apache.org/xalan/redirect" - xmlns:exsl="http://exslt.org/common" - xmlns:doc="http://nwalsh.com/xsl/documentation/1.0" - version="1.0" - exclude-result-prefixes="doc" - extension-element-prefixes="saxon redirect lxslt exsl"> - -<!-- ******************************************************************** - $Id: chunker.xsl 6910 2007-06-28 23:23:30Z xmldoc $ - ******************************************************************** - - This file is part of the XSL DocBook Stylesheet distribution. - See ../README or http://docbook.sf.net/release/xsl/current/ for - copyright and other information. - - ******************************************************************** --> - -<!-- ==================================================================== --> - -<!-- This stylesheet works with XSLT implementations that support --> -<!-- exsl:document, saxon:output, or Xalan's redirect:write --> -<!-- Note: Only Saxon 6.4.2 or later is supported. --> - -<xsl:param name="chunker.output.method" select="'html'"/> -<xsl:param name="chunker.output.encoding" select="'ISO-8859-1'"/> -<xsl:param name="chunker.output.indent" select="'no'"/> -<xsl:param name="chunker.output.omit-xml-declaration" select="'no'"/> -<xsl:param name="chunker.output.standalone" select="'no'"/> -<xsl:param name="chunker.output.doctype-public" select="''"/> -<xsl:param name="chunker.output.doctype-system" select="''"/> -<xsl:param name="chunker.output.media-type" select="''"/> -<xsl:param name="chunker.output.cdata-section-elements" select="''"/> -<xsl:param name="chunker.output.quiet" select="0"/> - -<xsl:param name="saxon.character.representation" select="'entity;decimal'"/> - -<!-- ==================================================================== --> - -<xsl:template name="make-relative-filename"> - <xsl:param name="base.dir" select="'./'"/> - <xsl:param name="base.name" select="''"/> - - <xsl:choose> - <!-- put Saxon first to work around a bug in libxslt --> - <xsl:when test="element-available('saxon:output')"> - <!-- Saxon doesn't make the chunks relative --> - <xsl:value-of select="concat($base.dir,$base.name)"/> - </xsl:when> - <xsl:when test="element-available('exsl:document')"> - <!-- EXSL document does make the chunks relative, I think --> - <xsl:choose> - <xsl:when test="count(parent::*) = 0"> - <xsl:value-of select="concat($base.dir,$base.name)"/> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="$base.name"/> - </xsl:otherwise> - </xsl:choose> - </xsl:when> - <xsl:when test="element-available('redirect:write')"> - <!-- Xalan doesn't make the chunks relative --> - <xsl:value-of select="concat($base.dir,$base.name)"/> - </xsl:when> - <xsl:otherwise> - <xsl:message terminate="yes"> - <xsl:text>Don't know how to chunk with </xsl:text> - <xsl:value-of select="system-property('xsl:vendor')"/> - </xsl:message> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template name="write.chunk"> - <xsl:param name="filename" select="''"/> - <xsl:param name="quiet" select="$chunker.output.quiet"/> - <xsl:param name="suppress-context-node-name" select="0"/> - <xsl:param name="message-prolog"/> - <xsl:param name="message-epilog"/> - - <xsl:param name="method" select="$chunker.output.method"/> - <xsl:param name="encoding" select="$chunker.output.encoding"/> - <xsl:param name="indent" select="$chunker.output.indent"/> - <xsl:param name="omit-xml-declaration" - select="$chunker.output.omit-xml-declaration"/> - <xsl:param name="standalone" select="$chunker.output.standalone"/> - <xsl:param name="doctype-public" select="$chunker.output.doctype-public"/> - <xsl:param name="doctype-system" select="$chunker.output.doctype-system"/> - <xsl:param name="media-type" select="$chunker.output.media-type"/> - <xsl:param name="cdata-section-elements" - select="$chunker.output.cdata-section-elements"/> - - <xsl:param name="content"/> - - <xsl:if test="$quiet = 0"> - <xsl:message> - <xsl:if test="not($message-prolog = '')"> - <xsl:value-of select="$message-prolog"/> - </xsl:if> - <xsl:text>Writing </xsl:text> - <xsl:value-of select="$filename"/> - <xsl:if test="name(.) != '' and $suppress-context-node-name = 0"> - <xsl:text> for </xsl:text> - <xsl:value-of select="name(.)"/> - <xsl:if test="@id or @xml:id"> - <xsl:text>(</xsl:text> - <xsl:value-of select="(@id|@xml:id)[1]"/> - <xsl:text>)</xsl:text> - </xsl:if> - </xsl:if> - <xsl:if test="not($message-epilog = '')"> - <xsl:value-of select="$message-epilog"/> - </xsl:if> - </xsl:message> - </xsl:if> - - <xsl:choose> - <xsl:when test="element-available('exsl:document')"> - <xsl:choose> - <!-- Handle the permutations ... --> - <xsl:when test="$media-type != ''"> - <xsl:choose> - <xsl:when test="$doctype-public != '' and $doctype-system != ''"> - <exsl:document href="{$filename}" - method="{$method}" - encoding="{$encoding}" - indent="{$indent}" - omit-xml-declaration="{$omit-xml-declaration}" - cdata-section-elements="{$cdata-section-elements}" - media-type="{$media-type}" - doctype-public="{$doctype-public}" - doctype-system="{$doctype-system}" - standalone="{$standalone}"> - <xsl:copy-of select="$content"/> - </exsl:document> - </xsl:when> - <xsl:when test="$doctype-public != '' and $doctype-system = ''"> - <exsl:document href="{$filename}" - method="{$method}" - encoding="{$encoding}" - indent="{$indent}" - omit-xml-declaration="{$omit-xml-declaration}" - cdata-section-elements="{$cdata-section-elements}" - media-type="{$media-type}" - doctype-public="{$doctype-public}" - standalone="{$standalone}"> - <xsl:copy-of select="$content"/> - </exsl:document> - </xsl:when> - <xsl:when test="$doctype-public = '' and $doctype-system != ''"> - <exsl:document href="{$filename}" - method="{$method}" - encoding="{$encoding}" - indent="{$indent}" - omit-xml-declaration="{$omit-xml-declaration}" - cdata-section-elements="{$cdata-section-elements}" - media-type="{$media-type}" - doctype-system="{$doctype-system}" - standalone="{$standalone}"> - <xsl:copy-of select="$content"/> - </exsl:document> - </xsl:when> - <xsl:otherwise><!-- $doctype-public = '' and $doctype-system = ''"> --> - <exsl:document href="{$filename}" - method="{$method}" - encoding="{$encoding}" - indent="{$indent}" - omit-xml-declaration="{$omit-xml-declaration}" - cdata-section-elements="{$cdata-section-elements}" - media-type="{$media-type}" - standalone="{$standalone}"> - <xsl:copy-of select="$content"/> - </exsl:document> - </xsl:otherwise> - </xsl:choose> - </xsl:when> - <xsl:otherwise> - <xsl:choose> - <xsl:when test="$doctype-public != '' and $doctype-system != ''"> - <exsl:document href="{$filename}" - method="{$method}" - encoding="{$encoding}" - indent="{$indent}" - omit-xml-declaration="{$omit-xml-declaration}" - cdata-section-elements="{$cdata-section-elements}" - doctype-public="{$doctype-public}" - doctype-system="{$doctype-system}" - standalone="{$standalone}"> - <xsl:copy-of select="$content"/> - </exsl:document> - </xsl:when> - <xsl:when test="$doctype-public != '' and $doctype-system = ''"> - <exsl:document href="{$filename}" - method="{$method}" - encoding="{$encoding}" - indent="{$indent}" - omit-xml-declaration="{$omit-xml-declaration}" - cdata-section-elements="{$cdata-section-elements}" - doctype-public="{$doctype-public}" - standalone="{$standalone}"> - <xsl:copy-of select="$content"/> - </exsl:document> - </xsl:when> - <xsl:when test="$doctype-public = '' and $doctype-system != ''"> - <exsl:document href="{$filename}" - method="{$method}" - encoding="{$encoding}" - indent="{$indent}" - omit-xml-declaration="{$omit-xml-declaration}" - cdata-section-elements="{$cdata-section-elements}" - doctype-system="{$doctype-system}" - standalone="{$standalone}"> - <xsl:copy-of select="$content"/> - </exsl:document> - </xsl:when> - <xsl:otherwise><!-- $doctype-public = '' and $doctype-system = ''"> --> - <exsl:document href="{$filename}" - method="{$method}" - encoding="{$encoding}" - indent="{$indent}" - omit-xml-declaration="{$omit-xml-declaration}" - cdata-section-elements="{$cdata-section-elements}" - standalone="{$standalone}"> - <xsl:copy-of select="$content"/> - </exsl:document> - </xsl:otherwise> - </xsl:choose> - </xsl:otherwise> - </xsl:choose> - </xsl:when> - - <xsl:when test="element-available('saxon:output')"> - <xsl:choose> - <!-- Handle the permutations ... --> - <xsl:when test="$media-type != ''"> - <xsl:choose> - <xsl:when test="$doctype-public != '' and $doctype-system != ''"> - <saxon:output saxon:character-representation="{$saxon.character.representation}" - href="{$filename}" - method="{$method}" - encoding="{$encoding}" - indent="{$indent}" - omit-xml-declaration="{$omit-xml-declaration}" - cdata-section-elements="{$cdata-section-elements}" - media-type="{$media-type}" - doctype-public="{$doctype-public}" - doctype-system="{$doctype-system}" - standalone="{$standalone}"> - <xsl:copy-of select="$content"/> - </saxon:output> - </xsl:when> - <xsl:when test="$doctype-public != '' and $doctype-system = ''"> - <saxon:output saxon:character-representation="{$saxon.character.representation}" - href="{$filename}" - method="{$method}" - encoding="{$encoding}" - indent="{$indent}" - omit-xml-declaration="{$omit-xml-declaration}" - cdata-section-elements="{$cdata-section-elements}" - media-type="{$media-type}" - doctype-public="{$doctype-public}" - standalone="{$standalone}"> - <xsl:copy-of select="$content"/> - </saxon:output> - </xsl:when> - <xsl:when test="$doctype-public = '' and $doctype-system != ''"> - <saxon:output saxon:character-representation="{$saxon.character.representation}" - href="{$filename}" - method="{$method}" - encoding="{$encoding}" - indent="{$indent}" - omit-xml-declaration="{$omit-xml-declaration}" - cdata-section-elements="{$cdata-section-elements}" - media-type="{$media-type}" - doctype-system="{$doctype-system}" - standalone="{$standalone}"> - <xsl:copy-of select="$content"/> - </saxon:output> - </xsl:when> - <xsl:otherwise><!-- $doctype-public = '' and $doctype-system = ''"> --> - <saxon:output saxon:character-representation="{$saxon.character.representation}" - href="{$filename}" - method="{$method}" - encoding="{$encoding}" - indent="{$indent}" - omit-xml-declaration="{$omit-xml-declaration}" - cdata-section-elements="{$cdata-section-elements}" - media-type="{$media-type}" - standalone="{$standalone}"> - <xsl:copy-of select="$content"/> - </saxon:output> - </xsl:otherwise> - </xsl:choose> - </xsl:when> - <xsl:otherwise> - <xsl:choose> - <xsl:when test="$doctype-public != '' and $doctype-system != ''"> - <saxon:output saxon:character-representation="{$saxon.character.representation}" - href="{$filename}" - method="{$method}" - encoding="{$encoding}" - indent="{$indent}" - omit-xml-declaration="{$omit-xml-declaration}" - cdata-section-elements="{$cdata-section-elements}" - doctype-public="{$doctype-public}" - doctype-system="{$doctype-system}" - standalone="{$standalone}"> - <xsl:copy-of select="$content"/> - </saxon:output> - </xsl:when> - <xsl:when test="$doctype-public != '' and $doctype-system = ''"> - <saxon:output saxon:character-representation="{$saxon.character.representation}" - href="{$filename}" - method="{$method}" - encoding="{$encoding}" - indent="{$indent}" - omit-xml-declaration="{$omit-xml-declaration}" - cdata-section-elements="{$cdata-section-elements}" - doctype-public="{$doctype-public}" - standalone="{$standalone}"> - <xsl:copy-of select="$content"/> - </saxon:output> - </xsl:when> - <xsl:when test="$doctype-public = '' and $doctype-system != ''"> - <saxon:output saxon:character-representation="{$saxon.character.representation}" - href="{$filename}" - method="{$method}" - encoding="{$encoding}" - indent="{$indent}" - omit-xml-declaration="{$omit-xml-declaration}" - cdata-section-elements="{$cdata-section-elements}" - doctype-system="{$doctype-system}" - standalone="{$standalone}"> - <xsl:copy-of select="$content"/> - </saxon:output> - </xsl:when> - <xsl:otherwise><!-- $doctype-public = '' and $doctype-system = ''"> --> - <saxon:output saxon:character-representation="{$saxon.character.representation}" - href="{$filename}" - method="{$method}" - encoding="{$encoding}" - indent="{$indent}" - omit-xml-declaration="{$omit-xml-declaration}" - cdata-section-elements="{$cdata-section-elements}" - standalone="{$standalone}"> - <xsl:copy-of select="$content"/> - </saxon:output> - </xsl:otherwise> - </xsl:choose> - </xsl:otherwise> - </xsl:choose> - </xsl:when> - - <xsl:when test="element-available('redirect:write')"> - <!-- Xalan uses redirect --> - <redirect:write file="{$filename}"> - <xsl:copy-of select="$content"/> - </redirect:write> - </xsl:when> - - <xsl:otherwise> - <!-- it doesn't matter since we won't be making chunks... --> - <xsl:message terminate="yes"> - <xsl:text>Can't make chunks with </xsl:text> - <xsl:value-of select="system-property('xsl:vendor')"/> - <xsl:text>'s processor.</xsl:text> - </xsl:message> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template name="write.chunk.with.doctype"> - <xsl:param name="filename" select="''"/> - <xsl:param name="quiet" select="$chunker.output.quiet"/> - - <xsl:param name="method" select="$chunker.output.method"/> - <xsl:param name="encoding" select="$chunker.output.encoding"/> - <xsl:param name="indent" select="$chunker.output.indent"/> - <xsl:param name="omit-xml-declaration" - select="$chunker.output.omit-xml-declaration"/> - <xsl:param name="standalone" select="$chunker.output.standalone"/> - <xsl:param name="doctype-public" select="$chunker.output.doctype-public"/> - <xsl:param name="doctype-system" select="$chunker.output.doctype-system"/> - <xsl:param name="media-type" select="$chunker.output.media-type"/> - <xsl:param name="cdata-section-elements" - select="$chunker.output.cdata-section-elements"/> - - <xsl:param name="content"/> - - <xsl:call-template name="write.chunk"> - <xsl:with-param name="filename" select="$filename"/> - <xsl:with-param name="quiet" select="$quiet"/> - <xsl:with-param name="method" select="$method"/> - <xsl:with-param name="encoding" select="$encoding"/> - <xsl:with-param name="indent" select="$indent"/> - <xsl:with-param name="omit-xml-declaration" select="$omit-xml-declaration"/> - <xsl:with-param name="standalone" select="$standalone"/> - <xsl:with-param name="doctype-public" select="$doctype-public"/> - <xsl:with-param name="doctype-system" select="$doctype-system"/> - <xsl:with-param name="media-type" select="$media-type"/> - <xsl:with-param name="cdata-section-elements" select="$cdata-section-elements"/> - <xsl:with-param name="content" select="$content"/> - </xsl:call-template> -</xsl:template> - -<xsl:template name="write.text.chunk"> - <xsl:param name="filename" select="''"/> - <xsl:param name="quiet" select="$chunker.output.quiet"/> - <xsl:param name="suppress-context-node-name" select="0"/> - <xsl:param name="message-prolog"/> - <xsl:param name="message-epilog"/> - <xsl:param name="method" select="'text'"/> - <xsl:param name="encoding" select="$chunker.output.encoding"/> - <xsl:param name="media-type" select="$chunker.output.media-type"/> - <xsl:param name="content"/> - - <xsl:call-template name="write.chunk"> - <xsl:with-param name="filename" select="$filename"/> - <xsl:with-param name="quiet" select="$quiet"/> - <xsl:with-param name="suppress-context-node-name" select="$suppress-context-node-name"/> - <xsl:with-param name="message-prolog" select="$message-prolog"/> - <xsl:with-param name="message-epilog" select="$message-epilog"/> - <xsl:with-param name="method" select="$method"/> - <xsl:with-param name="encoding" select="$encoding"/> - <xsl:with-param name="indent" select="'no'"/> - <xsl:with-param name="omit-xml-declaration" select="'no'"/> - <xsl:with-param name="standalone" select="'no'"/> - <xsl:with-param name="doctype-public"/> - <xsl:with-param name="doctype-system"/> - <xsl:with-param name="media-type" select="$media-type"/> - <xsl:with-param name="cdata-section-elements"/> - <xsl:with-param name="content" select="$content"/> - </xsl:call-template> -</xsl:template> - - -</xsl:stylesheet> diff --git a/docbook-xsl-1.75.2/html/chunkfast.xsl b/docbook-xsl-1.75.2/html/chunkfast.xsl deleted file mode 100644 index 35a4631..0000000 --- a/docbook-xsl-1.75.2/html/chunkfast.xsl +++ /dev/null @@ -1,72 +0,0 @@ -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" - xmlns:exsl="http://exslt.org/common" - xmlns:cf="http://docbook.sourceforge.net/xmlns/chunkfast/1.0" - version="1.0" - exclude-result-prefixes="cf exsl"> - -<!-- ******************************************************************** - $Id: chunkfast.xsl 8345 2009-03-16 06:44:07Z bobstayton $ - ******************************************************************** - - This file is part of the XSL DocBook Stylesheet distribution. - See ../README or http://docbook.sf.net/release/xsl/current/ for - copyright and other information. - - ******************************************************************** --> - -<!-- ==================================================================== --> - -<xsl:import href="chunk.xsl"/> -<xsl:param name="chunk.fast" select="1"/> - -<xsl:variable name="chunks" select="exsl:node-set($chunk.hierarchy)//cf:div"/> - -<!-- ==================================================================== --> - -<xsl:template name="process-chunk-element"> - <xsl:choose> - <xsl:when test="$chunk.fast != 0 and $exsl.node.set.available != 0"> - <xsl:variable name="genid" select="generate-id()"/> - - <xsl:variable name="div" select="$chunks[@id=$genid or @xml:id=$genid]"/> - - <xsl:variable name="prevdiv" - select="($div/preceding-sibling::cf:div|$div/preceding::cf:div|$div/parent::cf:div)[last()]"/> - <xsl:variable name="prev" select="key('genid', ($prevdiv/@id|$prevdiv/@xml:id)[1])"/> - - <xsl:variable name="nextdiv" - select="($div/following-sibling::cf:div|$div/following::cf:div|$div/cf:div)[1]"/> - <xsl:variable name="next" select="key('genid', ($nextdiv/@id|$nextdiv/@xml:id)[1])"/> - - <xsl:choose> - <xsl:when test="$onechunk != 0 and parent::*"> - <xsl:apply-imports/> - </xsl:when> - <xsl:otherwise> - <xsl:call-template name="process-chunk"> - <xsl:with-param name="prev" select="$prev"/> - <xsl:with-param name="next" select="$next"/> - </xsl:call-template> - </xsl:otherwise> - </xsl:choose> - </xsl:when> - <xsl:otherwise> - <xsl:choose> - <xsl:when test="$onechunk != 0 and not(parent::*)"> - <xsl:call-template name="chunk-all-sections"/> - </xsl:when> - <xsl:when test="$onechunk != 0"> - <xsl:apply-imports/> - </xsl:when> - <xsl:when test="$chunk.first.sections = 0"> - <xsl:call-template name="chunk-first-section-with-parent"/> - </xsl:when> - <xsl:otherwise> - <xsl:call-template name="chunk-all-sections"/> - </xsl:otherwise> - </xsl:choose> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -</xsl:stylesheet> diff --git a/docbook-xsl-1.75.2/html/chunktoc.xsl b/docbook-xsl-1.75.2/html/chunktoc.xsl deleted file mode 100644 index 9289937..0000000 --- a/docbook-xsl-1.75.2/html/chunktoc.xsl +++ /dev/null @@ -1,544 +0,0 @@ -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" - xmlns:doc="http://nwalsh.com/xsl/documentation/1.0" - version="1.0" - exclude-result-prefixes="doc"> - -<!-- ******************************************************************** - $Id: chunktoc.xsl 8399 2009-04-08 07:37:42Z bobstayton $ - ******************************************************************** - - This file is part of the XSL DocBook Stylesheet distribution. - See ../README or http://docbook.sf.net/release/xsl/current/ for - copyright and other information. - - ******************************************************************** --> - -<!-- ==================================================================== --> - -<xsl:import href="docbook.xsl"/> -<xsl:import href="chunk-common.xsl"/> - -<xsl:template name="chunk"> - <xsl:param name="node" select="."/> - <!-- returns 1 if $node is a chunk --> - - <xsl:variable name="id"> - <xsl:call-template name="object.id"> - <xsl:with-param name="object" select="$node"/> - </xsl:call-template> - </xsl:variable> - - <xsl:variable name="chunks" select="document($chunk.toc,/)"/> - - <xsl:choose> - <xsl:when test="$chunks//tocentry[@linkend=$id]">1</xsl:when> - <xsl:otherwise>0</xsl:otherwise> - </xsl:choose> -</xsl:template> - -<!-- ==================================================================== --> - -<xsl:template match="*" mode="chunk-filename"> - <!-- returns the filename of a chunk --> - - <xsl:variable name="id"> - <xsl:call-template name="object.id"/> - </xsl:variable> - - <xsl:variable name="chunks" select="document($chunk.toc,/)"/> - - <xsl:variable name="chunk" select="$chunks//tocentry[@linkend=$id]"/> - <xsl:variable name="filename"> - <xsl:call-template name="pi.dbhtml_filename"> - <xsl:with-param name="node" select="$chunk"/> - </xsl:call-template> - </xsl:variable> - - <xsl:choose> - <xsl:when test="$chunk"> - <xsl:value-of select="$filename"/> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates select="parent::*" mode="chunk-filename"/> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<!-- ==================================================================== --> - -<xsl:template name="process-chunk"> - <xsl:variable name="id"> - <xsl:call-template name="object.id"/> - </xsl:variable> - - <xsl:variable name="chunks" select="document($chunk.toc,/)"/> - - <xsl:variable name="chunk" select="$chunks//tocentry[@linkend=$id]"/> - <xsl:variable name="prev-id" - select="($chunk/preceding::tocentry - |$chunk/ancestor::tocentry)[last()]/@linkend"/> - <xsl:variable name="next-id" - select="($chunk/following::tocentry - |$chunk/child::tocentry)[1]/@linkend"/> - - <xsl:variable name="prev" select="key('id',$prev-id)"/> - <xsl:variable name="next" select="key('id',$next-id)"/> - - <xsl:variable name="ischunk"> - <xsl:call-template name="chunk"/> - </xsl:variable> - - <xsl:variable name="chunkfn"> - <xsl:if test="$ischunk='1'"> - <xsl:apply-templates mode="chunk-filename" select="."/> - </xsl:if> - </xsl:variable> - - <xsl:variable name="filename"> - <xsl:call-template name="make-relative-filename"> - <xsl:with-param name="base.dir" select="$base.dir"/> - <xsl:with-param name="base.name" select="$chunkfn"/> - </xsl:call-template> - </xsl:variable> - - <xsl:choose> - <xsl:when test="$ischunk = 0"> - <xsl:apply-imports/> - </xsl:when> - - <xsl:otherwise> - <xsl:call-template name="write.chunk"> - <xsl:with-param name="filename" select="$filename"/> - <xsl:with-param name="content"> - <xsl:call-template name="chunk-element-content"> - <xsl:with-param name="prev" select="$prev"/> - <xsl:with-param name="next" select="$next"/> - </xsl:call-template> - </xsl:with-param> - <xsl:with-param name="quiet" select="$chunk.quietly"/> - </xsl:call-template> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<!-- ==================================================================== --> - -<xsl:template match="set"> - <xsl:call-template name="process-chunk"/> -</xsl:template> - -<xsl:template match="book"> - <xsl:call-template name="process-chunk"/> -</xsl:template> - -<xsl:template match="book/appendix"> - <xsl:call-template name="process-chunk"/> -</xsl:template> - -<xsl:template match="book/glossary"> - <xsl:call-template name="process-chunk"/> -</xsl:template> - -<xsl:template match="book/bibliography"> - <xsl:call-template name="process-chunk"/> -</xsl:template> - -<xsl:template match="dedication" mode="dedication"> - <xsl:call-template name="process-chunk"/> -</xsl:template> - -<xsl:template match="preface|chapter"> - <xsl:call-template name="process-chunk"/> -</xsl:template> - -<xsl:template match="part|reference"> - <xsl:call-template name="process-chunk"/> -</xsl:template> - -<xsl:template match="refentry"> - <xsl:call-template name="process-chunk"/> -</xsl:template> - -<xsl:template match="colophon"> - <xsl:call-template name="process-chunk"/> -</xsl:template> - -<xsl:template match="article"> - <xsl:call-template name="process-chunk"/> -</xsl:template> - -<xsl:template match="article/appendix"> - <xsl:call-template name="process-chunk"/> -</xsl:template> - -<xsl:template match="article/glossary"> - <xsl:call-template name="process-chunk"/> -</xsl:template> - -<xsl:template match="article/bibliography"> - <xsl:call-template name="process-chunk"/> -</xsl:template> - -<xsl:template match="sect1|sect2|sect3|sect4|sect5|section"> - <xsl:variable name="ischunk"> - <xsl:call-template name="chunk"/> - </xsl:variable> - - <xsl:choose> - <xsl:when test="$ischunk != 0"> - <xsl:call-template name="process-chunk"/> - </xsl:when> - <xsl:otherwise> - <xsl:apply-imports/> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template match="setindex - |book/index - |article/index"> - <!-- some implementations use completely empty index tags to indicate --> - <!-- where an automatically generated index should be inserted. so --> - <!-- if the index is completely empty, skip it. --> - <xsl:if test="count(*)>0 or $generate.index != '0'"> - <xsl:call-template name="process-chunk"/> - </xsl:if> -</xsl:template> - -<!-- ==================================================================== --> - -<xsl:template match="/"> - <!-- * Get a title for current doc so that we let the user --> - <!-- * know what document we are processing at this point. --> - <xsl:variable name="doc.title"> - <xsl:call-template name="get.doc.title"/> - </xsl:variable> - <xsl:choose> - <xsl:when test="$chunk.toc = ''"> - <xsl:message terminate="yes"> - <xsl:text>The chunk.toc file is not set.</xsl:text> - </xsl:message> - </xsl:when> - <!-- Hack! If someone hands us a DocBook V5.x or DocBook NG document, - toss the namespace and continue. Use the docbook5 namespaced - stylesheets for DocBook5 if you don't want to use this feature.--> - <!-- include extra test for Xalan quirk --> - <xsl:when test="$exsl.node.set.available != 0 - and (*/self::ng:* or */self::db:*)"> - <xsl:call-template name="log.message"> - <xsl:with-param name="level">Note</xsl:with-param> - <xsl:with-param name="source" select="$doc.title"/> - <xsl:with-param name="context-desc"> - <xsl:text>namesp. cut</xsl:text> - </xsl:with-param> - <xsl:with-param name="message"> - <xsl:text>stripped namespace before processing</xsl:text> - </xsl:with-param> - </xsl:call-template> - <xsl:variable name="nons"> - <xsl:apply-templates mode="stripNS"/> - </xsl:variable> - <xsl:call-template name="log.message"> - <xsl:with-param name="level">Note</xsl:with-param> - <xsl:with-param name="source" select="$doc.title"/> - <xsl:with-param name="context-desc"> - <xsl:text>namesp. cut</xsl:text> - </xsl:with-param> - <xsl:with-param name="message"> - <xsl:text>processing stripped document</xsl:text> - </xsl:with-param> - </xsl:call-template> - <xsl:apply-templates select="exsl:node-set($nons)"/> - </xsl:when> - <!-- Can't process unless namespace removed --> - <xsl:when test="*/self::ng:* or */self::db:*"> - <xsl:message terminate="yes"> - <xsl:text>Unable to strip the namespace from DB5 document,</xsl:text> - <xsl:text> cannot proceed.</xsl:text> - </xsl:message> - </xsl:when> - <xsl:otherwise> - <xsl:choose> - <xsl:when test="$rootid != ''"> - <xsl:choose> - <xsl:when test="count(key('id',$rootid)) = 0"> - <xsl:message terminate="yes"> - <xsl:text>ID '</xsl:text> - <xsl:value-of select="$rootid"/> - <xsl:text>' not found in document.</xsl:text> - </xsl:message> - </xsl:when> - <xsl:otherwise> - <xsl:if test="$collect.xref.targets = 'yes' or - $collect.xref.targets = 'only'"> - <xsl:apply-templates select="key('id', $rootid)" - mode="collect.targets"/> - </xsl:if> - <xsl:if test="$collect.xref.targets != 'only'"> - <xsl:apply-templates select="key('id',$rootid)" - mode="process.root"/> - <xsl:if test="$tex.math.in.alt != ''"> - <xsl:apply-templates select="key('id',$rootid)" - mode="collect.tex.math"/> - </xsl:if> - <xsl:if test="$generate.manifest != 0"> - <xsl:call-template name="generate.manifest"> - <xsl:with-param name="node" select="key('id',$rootid)"/> - </xsl:call-template> - </xsl:if> - </xsl:if> - </xsl:otherwise> - </xsl:choose> - </xsl:when> - <xsl:otherwise> - <xsl:if test="$collect.xref.targets = 'yes' or - $collect.xref.targets = 'only'"> - <xsl:apply-templates select="/" mode="collect.targets"/> - </xsl:if> - <xsl:if test="$collect.xref.targets != 'only'"> - <xsl:apply-templates select="/" mode="process.root"/> - <xsl:if test="$tex.math.in.alt != ''"> - <xsl:apply-templates select="/" mode="collect.tex.math"/> - </xsl:if> - <xsl:if test="$generate.manifest != 0"> - <xsl:call-template name="generate.manifest"> - <xsl:with-param name="node" select="/"/> - </xsl:call-template> - </xsl:if> - </xsl:if> - </xsl:otherwise> - </xsl:choose> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template match="*" mode="process.root"> - <xsl:apply-templates select="."/> -</xsl:template> - -<xsl:template name="make.lots"> - <xsl:param name="toc.params" select="''"/> - <xsl:param name="toc"/> - - <xsl:variable name="lots"> - <xsl:if test="contains($toc.params, 'toc')"> - <xsl:copy-of select="$toc"/> - </xsl:if> - - <xsl:if test="contains($toc.params, 'figure')"> - <xsl:choose> - <xsl:when test="$chunk.separate.lots != '0'"> - <xsl:call-template name="make.lot.chunk"> - <xsl:with-param name="type" select="'figure'"/> - <xsl:with-param name="lot"> - <xsl:call-template name="list.of.titles"> - <xsl:with-param name="titles" select="'figure'"/> - <xsl:with-param name="nodes" select=".//figure"/> - </xsl:call-template> - </xsl:with-param> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <xsl:call-template name="list.of.titles"> - <xsl:with-param name="titles" select="'figure'"/> - <xsl:with-param name="nodes" select=".//figure"/> - </xsl:call-template> - </xsl:otherwise> - </xsl:choose> - </xsl:if> - - <xsl:if test="contains($toc.params, 'table')"> - <xsl:choose> - <xsl:when test="$chunk.separate.lots != '0'"> - <xsl:call-template name="make.lot.chunk"> - <xsl:with-param name="type" select="'table'"/> - <xsl:with-param name="lot"> - <xsl:call-template name="list.of.titles"> - <xsl:with-param name="titles" select="'table'"/> - <xsl:with-param name="nodes" select=".//table"/> - </xsl:call-template> - </xsl:with-param> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <xsl:call-template name="list.of.titles"> - <xsl:with-param name="titles" select="'table'"/> - <xsl:with-param name="nodes" select=".//table"/> - </xsl:call-template> - </xsl:otherwise> - </xsl:choose> - </xsl:if> - - <xsl:if test="contains($toc.params, 'example')"> - <xsl:choose> - <xsl:when test="$chunk.separate.lots != '0'"> - <xsl:call-template name="make.lot.chunk"> - <xsl:with-param name="type" select="'example'"/> - <xsl:with-param name="lot"> - <xsl:call-template name="list.of.titles"> - <xsl:with-param name="titles" select="'example'"/> - <xsl:with-param name="nodes" select=".//example"/> - </xsl:call-template> - </xsl:with-param> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <xsl:call-template name="list.of.titles"> - <xsl:with-param name="titles" select="'example'"/> - <xsl:with-param name="nodes" select=".//example"/> - </xsl:call-template> - </xsl:otherwise> - </xsl:choose> - </xsl:if> - - <xsl:if test="contains($toc.params, 'equation')"> - <xsl:choose> - <xsl:when test="$chunk.separate.lots != '0'"> - <xsl:call-template name="make.lot.chunk"> - <xsl:with-param name="type" select="'equation'"/> - <xsl:with-param name="lot"> - <xsl:call-template name="list.of.titles"> - <xsl:with-param name="titles" select="'equation'"/> - <xsl:with-param name="nodes" select=".//equation"/> - </xsl:call-template> - </xsl:with-param> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <xsl:call-template name="list.of.titles"> - <xsl:with-param name="titles" select="'equation'"/> - <xsl:with-param name="nodes" select=".//equation"/> - </xsl:call-template> - </xsl:otherwise> - </xsl:choose> - </xsl:if> - - <xsl:if test="contains($toc.params, 'procedure')"> - <xsl:choose> - <xsl:when test="$chunk.separate.lots != '0'"> - <xsl:call-template name="make.lot.chunk"> - <xsl:with-param name="type" select="'procedure'"/> - <xsl:with-param name="lot"> - <xsl:call-template name="list.of.titles"> - <xsl:with-param name="titles" select="'procedure'"/> - <xsl:with-param name="nodes" select=".//procedure[title]"/> - </xsl:call-template> - </xsl:with-param> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <xsl:call-template name="list.of.titles"> - <xsl:with-param name="titles" select="'procedure'"/> - <xsl:with-param name="nodes" select=".//procedure[title]"/> - </xsl:call-template> - </xsl:otherwise> - </xsl:choose> - </xsl:if> - </xsl:variable> - - <xsl:if test="string($lots) != ''"> - <xsl:choose> - <xsl:when test="$chunk.tocs.and.lots != 0 and not(parent::*)"> - <xsl:call-template name="write.chunk"> - <xsl:with-param name="filename"> - <xsl:call-template name="make-relative-filename"> - <xsl:with-param name="base.dir" select="$base.dir"/> - <xsl:with-param name="base.name"> - <xsl:call-template name="dbhtml-dir"/> - <xsl:apply-templates select="." mode="recursive-chunk-filename"> - <xsl:with-param name="recursive" select="true()"/> - </xsl:apply-templates> - <xsl:text>-toc</xsl:text> - <xsl:value-of select="$html.ext"/> - </xsl:with-param> - </xsl:call-template> - </xsl:with-param> - <xsl:with-param name="content"> - <xsl:call-template name="chunk-element-content"> - <xsl:with-param name="prev" select="/foo"/> - <xsl:with-param name="next" select="/foo"/> - <xsl:with-param name="nav.context" select="'toc'"/> - <xsl:with-param name="content"> - <h1> - <xsl:apply-templates select="." mode="object.title.markup"/> - </h1> - <xsl:copy-of select="$lots"/> - </xsl:with-param> - </xsl:call-template> - </xsl:with-param> - <xsl:with-param name="quiet" select="$chunk.quietly"/> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <xsl:copy-of select="$lots"/> - </xsl:otherwise> - </xsl:choose> - </xsl:if> -</xsl:template> - -<xsl:template name="make.lot.chunk"> - <xsl:param name="type" select="''"/> - <xsl:param name="lot"/> - - <xsl:if test="string($lot) != ''"> - <xsl:variable name="filename"> - <xsl:call-template name="make-relative-filename"> - <xsl:with-param name="base.dir" select="$base.dir"/> - <xsl:with-param name="base.name"> - <xsl:call-template name="dbhtml-dir"/> - <xsl:value-of select="$type"/> - <xsl:text>-toc</xsl:text> - <xsl:value-of select="$html.ext"/> - </xsl:with-param> - </xsl:call-template> - </xsl:variable> - - <xsl:variable name="href"> - <xsl:call-template name="make-relative-filename"> - <xsl:with-param name="base.name"> - <xsl:call-template name="dbhtml-dir"/> - <xsl:value-of select="$type"/> - <xsl:text>-toc</xsl:text> - <xsl:value-of select="$html.ext"/> - </xsl:with-param> - </xsl:call-template> - </xsl:variable> - - <xsl:call-template name="write.chunk"> - <xsl:with-param name="filename" select="$filename"/> - <xsl:with-param name="content"> - <xsl:call-template name="chunk-element-content"> - <xsl:with-param name="prev" select="/foo"/> - <xsl:with-param name="next" select="/foo"/> - <xsl:with-param name="nav.context" select="'toc'"/> - <xsl:with-param name="content"> - <xsl:copy-of select="$lot"/> - </xsl:with-param> - </xsl:call-template> - </xsl:with-param> - <xsl:with-param name="quiet" select="$chunk.quietly"/> - </xsl:call-template> - <!-- And output a link to this file --> - <div> - <xsl:attribute name="class"> - <xsl:text>ListofTitles</xsl:text> - </xsl:attribute> - <a href="{$href}"> - <xsl:call-template name="gentext"> - <xsl:with-param name="key"> - <xsl:choose> - <xsl:when test="$type='table'">ListofTables</xsl:when> - <xsl:when test="$type='figure'">ListofFigures</xsl:when> - <xsl:when test="$type='equation'">ListofEquations</xsl:when> - <xsl:when test="$type='example'">ListofExamples</xsl:when> - <xsl:when test="$type='procedure'">ListofProcedures</xsl:when> - <xsl:otherwise>ListofUnknown</xsl:otherwise> - </xsl:choose> - </xsl:with-param> - </xsl:call-template> - </a> - </div> - </xsl:if> -</xsl:template> - -</xsl:stylesheet> diff --git a/docbook-xsl-1.75.2/html/component.xsl b/docbook-xsl-1.75.2/html/component.xsl deleted file mode 100644 index 5a4dd70..0000000 --- a/docbook-xsl-1.75.2/html/component.xsl +++ /dev/null @@ -1,425 +0,0 @@ -<?xml version='1.0'?> -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" - version='1.0'> - -<!-- ******************************************************************** - $Id: component.xsl 8421 2009-05-04 07:49:49Z bobstayton $ - ******************************************************************** - - This file is part of the XSL DocBook Stylesheet distribution. - See ../README or http://docbook.sf.net/release/xsl/current/ for - copyright and other information. - - ******************************************************************** --> - -<!-- ==================================================================== --> - -<xsl:template name="component.title"> - <xsl:param name="node" select="."/> - - <xsl:variable name="level"> - <xsl:choose> - <xsl:when test="ancestor::section"> - <xsl:value-of select="count(ancestor::section)+1"/> - </xsl:when> - <xsl:when test="ancestor::sect5">6</xsl:when> - <xsl:when test="ancestor::sect4">5</xsl:when> - <xsl:when test="ancestor::sect3">4</xsl:when> - <xsl:when test="ancestor::sect2">3</xsl:when> - <xsl:when test="ancestor::sect1">2</xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - - <!-- Let's handle the case where a component (bibliography, for example) - occurs inside a section; will we need parameters for this? --> - - <xsl:element name="h{$level+1}"> - <xsl:attribute name="class">title</xsl:attribute> - <xsl:if test="$generate.id.attributes = 0"> - <xsl:call-template name="anchor"> - <xsl:with-param name="node" select="$node"/> - <xsl:with-param name="conditional" select="0"/> - </xsl:call-template> - </xsl:if> - <xsl:apply-templates select="$node" mode="object.title.markup"> - <xsl:with-param name="allow-anchors" select="1"/> - </xsl:apply-templates> - </xsl:element> -</xsl:template> - -<xsl:template name="component.subtitle"> - <xsl:param name="node" select="."/> - <xsl:variable name="subtitle" - select="($node/docinfo/subtitle - |$node/info/subtitle - |$node/prefaceinfo/subtitle - |$node/chapterinfo/subtitle - |$node/appendixinfo/subtitle - |$node/articleinfo/subtitle - |$node/artheader/subtitle - |$node/subtitle)[1]"/> - - <xsl:if test="$subtitle"> - <h3 class="subtitle"> - <i> - <xsl:apply-templates select="$node" mode="object.subtitle.markup"/> - </i> - </h3> - </xsl:if> -</xsl:template> - -<xsl:template name="component.separator"> -</xsl:template> - -<!-- ==================================================================== --> - -<xsl:template match="dedication" mode="dedication"> - <xsl:call-template name="id.warning"/> - - <div> - <xsl:call-template name="common.html.attributes"> - <xsl:with-param name="inherit" select="1"/> - </xsl:call-template> - <xsl:call-template name="dedication.titlepage"/> - <xsl:apply-templates/> - <xsl:call-template name="process.footnotes"/> - </div> -</xsl:template> - -<xsl:template match="dedication/title|dedication/info/title" - mode="titlepage.mode" priority="2"> - <xsl:call-template name="component.title"> - <xsl:with-param name="node" select="ancestor::dedication[1]"/> - </xsl:call-template> -</xsl:template> - -<xsl:template match="dedication/subtitle|dedication/info/subtitle" - mode="titlepage.mode" priority="2"> - <xsl:call-template name="component.subtitle"> - <xsl:with-param name="node" select="ancestor::dedication[1]"/> - </xsl:call-template> -</xsl:template> - -<xsl:template match="dedication"></xsl:template> <!-- see mode="dedication" --> -<xsl:template match="dedication/title"></xsl:template> -<xsl:template match="dedication/subtitle"></xsl:template> -<xsl:template match="dedication/titleabbrev"></xsl:template> - -<!-- ==================================================================== --> - -<xsl:template match="acknowledgements" mode="acknowledgements"> - <xsl:call-template name="id.warning"/> - - <div> - <xsl:call-template name="common.html.attributes"> - <xsl:with-param name="inherit" select="1"/> - </xsl:call-template> - <xsl:call-template name="acknowledgements.titlepage"/> - <xsl:apply-templates/> - <xsl:call-template name="process.footnotes"/> - </div> -</xsl:template> - -<xsl:template match="acknowledgements/title|acknowledgements/info/title" - mode="titlepage.mode" priority="2"> - <xsl:call-template name="component.title"> - <xsl:with-param name="node" select="ancestor::acknowledgements[1]"/> - </xsl:call-template> -</xsl:template> - -<xsl:template match="acknowledgements/subtitle|acknowledgements/info/subtitle" - mode="titlepage.mode" priority="2"> - <xsl:call-template name="component.subtitle"> - <xsl:with-param name="node" select="ancestor::acknowledgements[1]"/> - </xsl:call-template> -</xsl:template> - -<xsl:template match="acknowledgements"></xsl:template> <!-- see mode="acknowledgements" --> -<xsl:template match="acknowledgements/title"></xsl:template> -<xsl:template match="acknowledgements/subtitle"></xsl:template> -<xsl:template match="acknowledgements/titleabbrev"></xsl:template> - -<!-- ==================================================================== --> - -<xsl:template match="colophon"> - <xsl:call-template name="id.warning"/> - - <div> - <xsl:call-template name="common.html.attributes"> - <xsl:with-param name="inherit" select="1"/> - </xsl:call-template> - <xsl:if test="$generate.id.attributes != 0"> - <xsl:attribute name="id"> - <xsl:call-template name="object.id"/> - </xsl:attribute> - </xsl:if> - - <xsl:call-template name="component.separator"/> - <xsl:call-template name="component.title"/> - <xsl:call-template name="component.subtitle"/> - - <xsl:apply-templates/> - <xsl:call-template name="process.footnotes"/> - </div> -</xsl:template> - -<xsl:template match="colophon/title"></xsl:template> -<xsl:template match="colophon/subtitle"></xsl:template> -<xsl:template match="colophon/titleabbrev"></xsl:template> - -<!-- ==================================================================== --> - -<xsl:template match="preface"> - <xsl:call-template name="id.warning"/> - - <div> - <xsl:call-template name="common.html.attributes"> - <xsl:with-param name="inherit" select="1"/> - </xsl:call-template> - <xsl:if test="$generate.id.attributes != 0"> - <xsl:attribute name="id"> - <xsl:call-template name="object.id"/> - </xsl:attribute> - </xsl:if> - - <xsl:call-template name="component.separator"/> - <xsl:call-template name="preface.titlepage"/> - - <xsl:variable name="toc.params"> - <xsl:call-template name="find.path.params"> - <xsl:with-param name="table" select="normalize-space($generate.toc)"/> - </xsl:call-template> - </xsl:variable> - - <xsl:if test="contains($toc.params, 'toc')"> - <xsl:call-template name="component.toc"> - <xsl:with-param name="toc.title.p" select="contains($toc.params, 'title')"/> - </xsl:call-template> - <xsl:call-template name="component.toc.separator"/> - </xsl:if> - <xsl:apply-templates/> - <xsl:call-template name="process.footnotes"/> - </div> -</xsl:template> - -<xsl:template match="preface/title" mode="titlepage.mode" priority="2"> - <xsl:call-template name="component.title"> - <xsl:with-param name="node" select="ancestor::preface[1]"/> - </xsl:call-template> -</xsl:template> - -<xsl:template match="preface/subtitle - |preface/prefaceinfo/subtitle - |preface/info/subtitle - |preface/docinfo/subtitle" - mode="titlepage.mode" priority="2"> - <xsl:call-template name="component.subtitle"> - <xsl:with-param name="node" select="ancestor::preface[1]"/> - </xsl:call-template> -</xsl:template> - -<xsl:template match="preface/docinfo|prefaceinfo"></xsl:template> -<xsl:template match="preface/info"></xsl:template> -<xsl:template match="preface/title"></xsl:template> -<xsl:template match="preface/titleabbrev"></xsl:template> -<xsl:template match="preface/subtitle"></xsl:template> - -<!-- ==================================================================== --> - -<xsl:template match="chapter"> - <xsl:call-template name="id.warning"/> - - <div> - <xsl:call-template name="common.html.attributes"> - <xsl:with-param name="inherit" select="1"/> - </xsl:call-template> - <xsl:if test="$generate.id.attributes != 0"> - <xsl:attribute name="id"> - <xsl:call-template name="object.id"/> - </xsl:attribute> - </xsl:if> - - <xsl:call-template name="component.separator"/> - <xsl:call-template name="chapter.titlepage"/> - - <xsl:variable name="toc.params"> - <xsl:call-template name="find.path.params"> - <xsl:with-param name="table" select="normalize-space($generate.toc)"/> - </xsl:call-template> - </xsl:variable> - <xsl:if test="contains($toc.params, 'toc')"> - <xsl:call-template name="component.toc"> - <xsl:with-param name="toc.title.p" select="contains($toc.params, 'title')"/> - </xsl:call-template> - <xsl:call-template name="component.toc.separator"/> - </xsl:if> - <xsl:apply-templates/> - <xsl:call-template name="process.footnotes"/> - </div> -</xsl:template> - -<xsl:template match="chapter/title|chapter/chapterinfo/title" - mode="titlepage.mode" priority="2"> - <xsl:call-template name="component.title"> - <xsl:with-param name="node" select="ancestor::chapter[1]"/> - </xsl:call-template> -</xsl:template> - -<xsl:template match="chapter/subtitle - |chapter/chapterinfo/subtitle - |chapter/info/subtitle - |chapter/docinfo/subtitle" - mode="titlepage.mode" priority="2"> - <xsl:call-template name="component.subtitle"> - <xsl:with-param name="node" select="ancestor::chapter[1]"/> - </xsl:call-template> -</xsl:template> - -<xsl:template match="chapter/docinfo|chapterinfo"></xsl:template> -<xsl:template match="chapter/info"></xsl:template> -<xsl:template match="chapter/title"></xsl:template> -<xsl:template match="chapter/titleabbrev"></xsl:template> -<xsl:template match="chapter/subtitle"></xsl:template> - -<!-- ==================================================================== --> - -<xsl:template match="appendix"> - <xsl:variable name="ischunk"> - <xsl:call-template name="chunk"/> - </xsl:variable> - - <xsl:call-template name="id.warning"/> - - <div> - <xsl:call-template name="common.html.attributes"> - <xsl:with-param name="inherit" select="1"/> - </xsl:call-template> - <xsl:if test="$generate.id.attributes != 0"> - <xsl:attribute name="id"> - <xsl:call-template name="object.id"/> - </xsl:attribute> - </xsl:if> - - <xsl:choose> - <xsl:when test="parent::article and $ischunk = 0"> - <xsl:call-template name="section.heading"> - <xsl:with-param name="level" select="1"/> - <xsl:with-param name="title"> - <xsl:apply-templates select="." mode="object.title.markup"/> - </xsl:with-param> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <xsl:call-template name="component.separator"/> - <xsl:call-template name="appendix.titlepage"/> - </xsl:otherwise> - </xsl:choose> - - <xsl:variable name="toc.params"> - <xsl:call-template name="find.path.params"> - <xsl:with-param name="table" select="normalize-space($generate.toc)"/> - </xsl:call-template> - </xsl:variable> - - <xsl:if test="contains($toc.params, 'toc')"> - <xsl:call-template name="component.toc"> - <xsl:with-param name="toc.title.p" select="contains($toc.params, 'title')"/> - </xsl:call-template> - <xsl:call-template name="component.toc.separator"/> - </xsl:if> - - <xsl:apply-templates/> - - <xsl:if test="not(parent::article) or $ischunk != 0"> - <xsl:call-template name="process.footnotes"/> - </xsl:if> - </div> -</xsl:template> - -<xsl:template match="appendix/title|appendix/appendixinfo/title" - mode="titlepage.mode" priority="2"> - <xsl:call-template name="component.title"> - <xsl:with-param name="node" select="ancestor::appendix[1]"/> - </xsl:call-template> -</xsl:template> - -<xsl:template match="appendix/subtitle - |appendix/appendixinfo/subtitle - |appendix/info/subtitle - |appendix/docinfo/subtitle" - mode="titlepage.mode" priority="2"> - <xsl:call-template name="component.subtitle"> - <xsl:with-param name="node" select="ancestor::appendix[1]"/> - </xsl:call-template> -</xsl:template> - -<xsl:template match="appendix/docinfo|appendixinfo"></xsl:template> -<xsl:template match="appendix/info"></xsl:template> -<xsl:template match="appendix/title"></xsl:template> -<xsl:template match="appendix/titleabbrev"></xsl:template> -<xsl:template match="appendix/subtitle"></xsl:template> - -<!-- ==================================================================== --> - -<xsl:template match="article"> - <xsl:call-template name="id.warning"/> - - <div> - <xsl:call-template name="common.html.attributes"> - <xsl:with-param name="inherit" select="1"/> - </xsl:call-template> - <xsl:if test="$generate.id.attributes != 0"> - <xsl:attribute name="id"> - <xsl:call-template name="object.id"/> - </xsl:attribute> - </xsl:if> - - <xsl:call-template name="article.titlepage"/> - - <xsl:variable name="toc.params"> - <xsl:call-template name="find.path.params"> - <xsl:with-param name="table" select="normalize-space($generate.toc)"/> - </xsl:call-template> - </xsl:variable> - - <xsl:call-template name="make.lots"> - <xsl:with-param name="toc.params" select="$toc.params"/> - <xsl:with-param name="toc"> - <xsl:call-template name="component.toc"> - <xsl:with-param name="toc.title.p" select="contains($toc.params, 'title')"/> - </xsl:call-template> - </xsl:with-param> - </xsl:call-template> - - <xsl:apply-templates/> - <xsl:call-template name="process.footnotes"/> - </div> -</xsl:template> - -<xsl:template match="article/title|article/articleinfo/title" mode="titlepage.mode" priority="2"> - <xsl:call-template name="component.title"> - <xsl:with-param name="node" select="ancestor::article[1]"/> - </xsl:call-template> -</xsl:template> - -<xsl:template match="article/subtitle - |article/articleinfo/subtitle - |article/info/subtitle - |article/artheader/subtitle" - mode="titlepage.mode" priority="2"> - <xsl:call-template name="component.subtitle"> - <xsl:with-param name="node" select="ancestor::article[1]"/> - </xsl:call-template> -</xsl:template> - -<xsl:template match="article/artheader|article/articleinfo"></xsl:template> -<xsl:template match="article/info"></xsl:template> -<xsl:template match="article/title"></xsl:template> -<xsl:template match="article/titleabbrev"></xsl:template> -<xsl:template match="article/subtitle"></xsl:template> - -<!-- ==================================================================== --> - -</xsl:stylesheet> - diff --git a/docbook-xsl-1.75.2/html/division.xsl b/docbook-xsl-1.75.2/html/division.xsl deleted file mode 100644 index e910fdd..0000000 --- a/docbook-xsl-1.75.2/html/division.xsl +++ /dev/null @@ -1,217 +0,0 @@ -<?xml version='1.0'?> -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" - version='1.0'> - -<!-- ******************************************************************** - $Id: division.xsl 8421 2009-05-04 07:49:49Z bobstayton $ - ******************************************************************** - - This file is part of the XSL DocBook Stylesheet distribution. - See ../README or http://docbook.sf.net/release/xsl/current/ for - copyright and other information. - - ******************************************************************** --> - -<!-- ==================================================================== --> - -<xsl:template match="set"> - <xsl:call-template name="id.warning"/> - - <div> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:call-template name="dir"> - <xsl:with-param name="inherit" select="1"/> - </xsl:call-template> - <xsl:call-template name="language.attribute"/> - <xsl:if test="$generate.id.attributes != 0"> - <xsl:attribute name="id"> - <xsl:call-template name="object.id"/> - </xsl:attribute> - </xsl:if> - - <xsl:call-template name="set.titlepage"/> - - <xsl:variable name="toc.params"> - <xsl:call-template name="find.path.params"> - <xsl:with-param name="table" select="normalize-space($generate.toc)"/> - </xsl:call-template> - </xsl:variable> - - <xsl:call-template name="make.lots"> - <xsl:with-param name="toc.params" select="$toc.params"/> - <xsl:with-param name="toc"> - <xsl:call-template name="set.toc"> - <xsl:with-param name="toc.title.p" select="contains($toc.params, 'title')"/> - </xsl:call-template> - </xsl:with-param> - </xsl:call-template> - - <xsl:apply-templates/> - </div> -</xsl:template> - -<xsl:template match="set/setinfo"></xsl:template> -<xsl:template match="set/title"></xsl:template> -<xsl:template match="set/titleabbrev"></xsl:template> -<xsl:template match="set/subtitle"></xsl:template> - -<!-- ==================================================================== --> - -<xsl:template match="book"> - <xsl:call-template name="id.warning"/> - - <div> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:if test="$generate.id.attributes != 0"> - <xsl:attribute name="id"> - <xsl:call-template name="object.id"/> - </xsl:attribute> - </xsl:if> - - <xsl:call-template name="book.titlepage"/> - - <xsl:apply-templates select="dedication" mode="dedication"/> - <xsl:apply-templates select="acknowledgements" mode="acknowledgements"/> - - <xsl:variable name="toc.params"> - <xsl:call-template name="find.path.params"> - <xsl:with-param name="table" select="normalize-space($generate.toc)"/> - </xsl:call-template> - </xsl:variable> - - <xsl:call-template name="make.lots"> - <xsl:with-param name="toc.params" select="$toc.params"/> - <xsl:with-param name="toc"> - <xsl:call-template name="division.toc"> - <xsl:with-param name="toc.title.p" select="contains($toc.params, 'title')"/> - </xsl:call-template> - </xsl:with-param> - </xsl:call-template> - - <xsl:apply-templates/> - </div> -</xsl:template> - -<xsl:template match="book/bookinfo"></xsl:template> -<xsl:template match="book/info"></xsl:template> -<xsl:template match="book/title"></xsl:template> -<xsl:template match="book/titleabbrev"></xsl:template> -<xsl:template match="book/subtitle"></xsl:template> - -<!-- ==================================================================== --> - -<xsl:template match="part"> - <xsl:call-template name="id.warning"/> - - <div> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:if test="$generate.id.attributes != 0"> - <xsl:attribute name="id"> - <xsl:call-template name="object.id"/> - </xsl:attribute> - </xsl:if> - - <xsl:call-template name="part.titlepage"/> - - <xsl:variable name="toc.params"> - <xsl:call-template name="find.path.params"> - <xsl:with-param name="table" select="normalize-space($generate.toc)"/> - </xsl:call-template> - </xsl:variable> - <xsl:if test="not(partintro) and contains($toc.params, 'toc')"> - <xsl:call-template name="division.toc"/> - </xsl:if> - <xsl:apply-templates/> - </div> -</xsl:template> - -<xsl:template match="part" mode="make.part.toc"> - <xsl:call-template name="division.toc"/> -</xsl:template> - -<xsl:template match="reference" mode="make.part.toc"> - <xsl:call-template name="division.toc"/> -</xsl:template> - -<xsl:template match="part/docinfo"></xsl:template> -<xsl:template match="part/partinfo"></xsl:template> -<xsl:template match="part/info"></xsl:template> -<xsl:template match="part/title"></xsl:template> -<xsl:template match="part/titleabbrev"></xsl:template> -<xsl:template match="part/subtitle"></xsl:template> - -<xsl:template match="partintro"> - <xsl:call-template name="id.warning"/> - - <div> - <xsl:call-template name="common.html.attributes"/> - <xsl:if test="$generate.id.attributes != 0"> - <xsl:attribute name="id"> - <xsl:call-template name="object.id"/> - </xsl:attribute> - </xsl:if> - - <xsl:call-template name="partintro.titlepage"/> - <xsl:apply-templates/> - - <xsl:variable name="toc.params"> - <xsl:call-template name="find.path.params"> - <xsl:with-param name="node" select="parent::*"/> - <xsl:with-param name="table" select="normalize-space($generate.toc)"/> - </xsl:call-template> - </xsl:variable> - <xsl:if test="contains($toc.params, 'toc')"> - <!-- not ancestor::part because partintro appears in reference --> - <xsl:apply-templates select="parent::*" mode="make.part.toc"/> - </xsl:if> - <xsl:call-template name="process.footnotes"/> - </div> -</xsl:template> - -<xsl:template match="partintro/title"></xsl:template> -<xsl:template match="partintro/titleabbrev"></xsl:template> -<xsl:template match="partintro/subtitle"></xsl:template> - -<xsl:template match="partintro/title" mode="partintro.title.mode"> - <h2> - <xsl:apply-templates/> - </h2> -</xsl:template> - -<xsl:template match="partintro/subtitle" mode="partintro.title.mode"> - <h3> - <i><xsl:apply-templates/></i> - </h3> -</xsl:template> - -<!-- ==================================================================== --> - -<xsl:template match="book" mode="division.number"> - <xsl:number from="set" count="book" format="1."/> -</xsl:template> - -<xsl:template match="part" mode="division.number"> - <xsl:number from="book" count="part" format="I."/> -</xsl:template> - -<!-- ==================================================================== --> - -<xsl:template name="division.title"> - <xsl:param name="node" select="."/> - - <h1> - <xsl:attribute name="class">title</xsl:attribute> - <xsl:if test="$generate.id.attributes = 0"> - <xsl:call-template name="anchor"> - <xsl:with-param name="node" select="$node"/> - <xsl:with-param name="conditional" select="0"/> - </xsl:call-template> - </xsl:if> - <xsl:apply-templates select="$node" mode="object.title.markup"> - <xsl:with-param name="allow-anchors" select="1"/> - </xsl:apply-templates> - </h1> -</xsl:template> - -</xsl:stylesheet> - diff --git a/docbook-xsl-1.75.2/html/docbook.xsl b/docbook-xsl-1.75.2/html/docbook.xsl deleted file mode 100644 index c7058da..0000000 --- a/docbook-xsl-1.75.2/html/docbook.xsl +++ /dev/null @@ -1,481 +0,0 @@ -<?xml version='1.0'?> -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" - xmlns:ng="http://docbook.org/docbook-ng" - xmlns:db="http://docbook.org/ns/docbook" - xmlns:exsl="http://exslt.org/common" - xmlns:exslt="http://exslt.org/common" - exclude-result-prefixes="db ng exsl exslt" - version='1.0'> - -<xsl:output method="html" - encoding="ISO-8859-1" - indent="no"/> - -<!-- ******************************************************************** - $Id: docbook.xsl 8399 2009-04-08 07:37:42Z bobstayton $ - ******************************************************************** - - This file is part of the XSL DocBook Stylesheet distribution. - See ../README or http://docbook.sf.net/release/xsl/current/ for - copyright and other information. - - ******************************************************************** --> - -<!-- ==================================================================== --> - -<xsl:include href="../VERSION"/> -<xsl:include href="param.xsl"/> -<xsl:include href="../lib/lib.xsl"/> -<xsl:include href="../common/l10n.xsl"/> -<xsl:include href="../common/common.xsl"/> -<xsl:include href="../common/utility.xsl"/> -<xsl:include href="../common/labels.xsl"/> -<xsl:include href="../common/titles.xsl"/> -<xsl:include href="../common/subtitles.xsl"/> -<xsl:include href="../common/gentext.xsl"/> -<xsl:include href="../common/targets.xsl"/> -<xsl:include href="../common/olink.xsl"/> -<xsl:include href="../common/pi.xsl"/> -<xsl:include href="autotoc.xsl"/> -<xsl:include href="autoidx.xsl"/> -<xsl:include href="lists.xsl"/> -<xsl:include href="callout.xsl"/> -<xsl:include href="verbatim.xsl"/> -<xsl:include href="graphics.xsl"/> -<xsl:include href="xref.xsl"/> -<xsl:include href="formal.xsl"/> -<xsl:include href="table.xsl"/> -<xsl:include href="htmltbl.xsl"/> -<xsl:include href="sections.xsl"/> -<xsl:include href="inline.xsl"/> -<xsl:include href="footnote.xsl"/> -<xsl:include href="html.xsl"/> -<xsl:include href="info.xsl"/> -<xsl:include href="keywords.xsl"/> -<xsl:include href="division.xsl"/> -<xsl:include href="toc.xsl"/> -<xsl:include href="index.xsl"/> -<xsl:include href="refentry.xsl"/> -<xsl:include href="math.xsl"/> -<xsl:include href="admon.xsl"/> -<xsl:include href="component.xsl"/> -<xsl:include href="biblio.xsl"/> -<xsl:include href="biblio-iso690.xsl"/> -<xsl:include href="glossary.xsl"/> -<xsl:include href="block.xsl"/> -<xsl:include href="task.xsl"/> -<xsl:include href="qandaset.xsl"/> -<xsl:include href="synop.xsl"/> -<xsl:include href="titlepage.xsl"/> -<xsl:include href="titlepage.templates.xsl"/> -<xsl:include href="pi.xsl"/> -<xsl:include href="ebnf.xsl"/> -<xsl:include href="chunker.xsl"/> -<xsl:include href="html-rtf.xsl"/> -<xsl:include href="annotations.xsl"/> -<xsl:include href="../common/stripns.xsl"/> - -<xsl:param name="stylesheet.result.type" select="'html'"/> -<xsl:param name="htmlhelp.output" select="0"/> - -<!-- ==================================================================== --> - -<xsl:key name="id" match="*" use="@id|@xml:id"/> -<xsl:key name="gid" match="*" use="generate-id()"/> - -<!-- ==================================================================== --> - -<xsl:template match="*"> - <xsl:message> - <xsl:text>Element </xsl:text> - <xsl:value-of select="local-name(.)"/> - <xsl:text> in namespace '</xsl:text> - <xsl:value-of select="namespace-uri(.)"/> - <xsl:text>' encountered</xsl:text> - <xsl:if test="parent::*"> - <xsl:text> in </xsl:text> - <xsl:value-of select="name(parent::*)"/> - </xsl:if> - <xsl:text>, but no template matches.</xsl:text> - </xsl:message> - - <span style="color: red"> - <xsl:text><</xsl:text> - <xsl:value-of select="name(.)"/> - <xsl:text>></xsl:text> - <xsl:apply-templates/> - <xsl:text></</xsl:text> - <xsl:value-of select="name(.)"/> - <xsl:text>></xsl:text> - </span> -</xsl:template> - -<xsl:template match="text()"> - <xsl:value-of select="."/> -</xsl:template> - -<xsl:template name="body.attributes"> - <xsl:attribute name="bgcolor">white</xsl:attribute> - <xsl:attribute name="text">black</xsl:attribute> - <xsl:attribute name="link">#0000FF</xsl:attribute> - <xsl:attribute name="vlink">#840084</xsl:attribute> - <xsl:attribute name="alink">#0000FF</xsl:attribute> - <xsl:if test="starts-with($writing.mode, 'rl')"> - <xsl:attribute name="dir">rtl</xsl:attribute> - </xsl:if> -</xsl:template> - -<xsl:template name="head.content"> - <xsl:param name="node" select="."/> - <xsl:param name="title"> - <xsl:apply-templates select="$node" mode="object.title.markup.textonly"/> - </xsl:param> - - <title> - <xsl:copy-of select="$title"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Note - - - namesp. cut - - - stripped namespace before processing - - - - - - - - Note - - - namesp. cut - - - processing stripped document - - - - - - - - Unable to strip the namespace from DB5 document, - cannot proceed. - - - - - - - - - ID ' - - ' not found in document. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - - - - - diff --git a/docbook-xsl-1.75.2/html/ebnf.xsl b/docbook-xsl-1.75.2/html/ebnf.xsl deleted file mode 100644 index b2ab23a..0000000 --- a/docbook-xsl-1.75.2/html/ebnf.xsl +++ /dev/null @@ -1,329 +0,0 @@ - - - - - - - - -$Id: ebnf.xsl 8178 2008-12-15 22:26:38Z bobstayton $ - -Walsh -Norman -19992000 -Norman Walsh - - -HTML EBNF Reference - - -
Introduction - -This is technical reference documentation for the DocBook XSL -Stylesheets; it documents (some of) the parameters, templates, and -other elements of the stylesheets. - -This reference describes the templates and parameters relevant -to formatting EBNF markup. - -This is not intended to be user documentation. -It is provided for developers writing customization layers for the -stylesheets, and for anyone who's interested in how it -works. - -Although I am trying to be thorough, this documentation is known -to be incomplete. Don't forget to read the source, too :-) -
-
-
- - - - - - - - - - - - 1 - - - - - - EBNF - - for - - - - - - - - - - - - -
- - -
- - - - - - - - - - EBNF productions - -
-
-
- - - - - - - - - - [ - - ] - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - -   - - - - - - - - - - - - - Error: no ID for productionrecap linkend: - - . - - - - - - Warning: multiple "IDs" for productionrecap linkend: - - . - - - - - - - - - - - - - - - - | -
-
-
- - - - - - - - - - - - - - - production - - - - - - - - - Non-terminals with no content must point to - production elements in the current document. - - - Invalid xpointer for empty nt: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ??? - - - - - - - - - - - - - /*  - -  */ -
-
- - - - - - - - - constraintdef - - - - - - - - - - - - - - - - : - - - - - - - : - - - - - - - - - -  ] - -
-
-
- - -
- - - -
-
- - -

-
- - - - diff --git a/docbook-xsl-1.75.2/html/footnote.xsl b/docbook-xsl-1.75.2/html/footnote.xsl deleted file mode 100644 index b10ab9d..0000000 --- a/docbook-xsl-1.75.2/html/footnote.xsl +++ /dev/null @@ -1,310 +0,0 @@ - - - - - - - - - - - #ftn. - - - - - - - [ - - - - - ] - - - - - [ - - - - - ] - - - - - - - - - - - -ERROR: A footnoteref element has a linkend that points to an element that is not a footnote. -Typically this happens when an id attribute is accidentally applied to the child of a footnote element. -target element: -linkend/id: - - - - - - - - - - - - #ftn. - - - - - [ - - - - - ] - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ftn. - - - - - - # - - - - -

- - - - - - - - [ - - - - - ] - - -

-
- - - - - - ftn. - - - - - - # - - - - - - - [ - - - - - ] - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
-
- -
-
- - -
-
-

The following annotations are from this essay. You are seeing - them here because your browser doesn’t support the user-interface - techniques used to make them appear as ‘popups’ on modern browsers.

-
- - -
-
-
- - - - - - - - -
- - -
-
- - -
- - - -
-
- - - - Warning: footnote number may not be generated - correctly; - - unexpected as first child of footnote. - -
- - -
-
-
-
- - - - - - - - -
diff --git a/docbook-xsl-1.75.2/html/formal.xsl b/docbook-xsl-1.75.2/html/formal.xsl deleted file mode 100644 index 2bd854b..0000000 --- a/docbook-xsl-1.75.2/html/formal.xsl +++ /dev/null @@ -1,404 +0,0 @@ - - - - - -1 - - - - - - - - - - -
- - - - - - - -
- -
- - - - - -

- - -

-

- - - - - - - -
-
- -
-
-
- - - - - - - - - -float - - - - - - - - - -
- - - - - - - - - -

- - - -

-
- - - - - -
-

- - - - - - - - -

-

-
- - - - - - - - - -float - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - before - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Broken table: tr descendent of CALS Table. - - - - - - - - - - before - - - - - - - - - - - - - - - - - - - - - - - - - Broken table: row descendent of HTML table. - - - - - - - - - - - - - - before - - - - - - - - - - - - - - - - - - - - - before - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - float: - - ; - - - -
-
- -
diff --git a/docbook-xsl-1.75.2/html/glossary.xsl b/docbook-xsl-1.75.2/html/glossary.xsl deleted file mode 100644 index f98ddbc..0000000 --- a/docbook-xsl-1.75.2/html/glossary.xsl +++ /dev/null @@ -1,492 +0,0 @@ - - -%common.entities; -]> - - - - - - - - &setup-language-variable; - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - -
-
- - - -
- - - - -
-
- - - - - - - - - - - &setup-language-variable; -
- - - - - -
- - - - - - - - - - -
-
-
- - - - - &setup-language-variable; - - -
- - - -
- - - - - - - - - - -
-
-
- - -

- - -

-
- - - - - - - - -
- - - - 0 - 1 - - - - - - - - ( - - ) - - - - - -
-
- -
- - - - 0 - 1 - - - - - - - - ( - - ) - -
-
- -
- - - - 0 - 1 - - - - - -
-
-
- - -
- - - - , - - - - - , - - - - - , - - - - - - - - - - - -
-

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Warning: glosssee @otherterm reference not found: - - - - - - - - - - - - - - -

-
-
- - -
- - -

- - - - - - - - - - - - - -

-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - Warning: glossseealso @otherterm reference not found: - - - - - - - - - - - - - - - - - - - - - - - - - - &setup-language-variable; - - - - - - - - Warning: processing automatic glossary - without a glossary.collection file. - - - - - - Warning: processing automatic glossary but unable to - open glossary.collection file ' - - ' - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
-
-
- - - - -
-
- - - - - - - - - - &setup-language-variable; - -
- - - -
- - - - ! - - - - - - - - - - - - - - - -
-
-
- - - -
diff --git a/docbook-xsl-1.75.2/html/graphics.xsl b/docbook-xsl-1.75.2/html/graphics.xsl deleted file mode 100644 index 93ea95f..0000000 --- a/docbook-xsl-1.75.2/html/graphics.xsl +++ /dev/null @@ -1,1515 +0,0 @@ - - - - - - - - - - - - - - 1 - - - - - - 1 - - - - - -
- - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - 0 - 0 - - 1 - 0 - - - - - - 1.0 - 1.0 - - - - 1.0 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - px - - - - - - - - - - - px - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - px - - - - - - - - - - - px - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - 0 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - middle - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Warning: imagemaps not supported - on scaled images - - - - 0 - - - - - - - - - - - - - - - - - - - - middle - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - height: - - px - - - - - - - - - - - -
- - - - - background-color: - - - - - - - - - - - - - - - - - - - - - -
-
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - calspair - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - , - - , - - , - - - - - - - - - - - - Warning: only calspair or - otherunits='imagemap' supported - in imageobjectco - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - middle - - - - - - - - - - - - - - - - - -
- - - - - - - -
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - No insertfile extension available. - - - - - - - Cannot insert - . Check use.extensions and textinsert.extension parameters. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No insertfile extension available. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No insertfile extension available. - - - - - - - Cannot insert - . Check use.extensions and textinsert.extension parameters. - - - - - - - - -
- - - - - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff --git a/docbook-xsl-1.75.2/html/highlight.xsl b/docbook-xsl-1.75.2/html/highlight.xsl deleted file mode 100644 index 6fc5923..0000000 --- a/docbook-xsl-1.75.2/html/highlight.xsl +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docbook-xsl-1.75.2/html/html-rtf.xsl b/docbook-xsl-1.75.2/html/html-rtf.xsl deleted file mode 100644 index 8de6bb3..0000000 --- a/docbook-xsl-1.75.2/html/html-rtf.xsl +++ /dev/null @@ -1,336 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- - - - - - - - - - -
-
-
-
- - - - - - - - - - - - - - -
-
- - - - - - - - - - -
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff --git a/docbook-xsl-1.75.2/html/html.xsl b/docbook-xsl-1.75.2/html/html.xsl deleted file mode 100644 index 42f78d7..0000000 --- a/docbook-xsl-1.75.2/html/html.xsl +++ /dev/null @@ -1,370 +0,0 @@ - - - - - - - - - - left - right - left - - - - - - right - left - right - - - - - - ltr - rtl - ltr - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - # - - - - - - - - - # - - - - - - - - - - - - - - - - - - - bullet - - - - - - - - - bullet - - - © - - - ® - (SM) -   - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ID recommended on - - - : - - - - ... - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/html/htmltbl.xsl b/docbook-xsl-1.75.2/html/htmltbl.xsl deleted file mode 100644 index 1fb5d6f..0000000 --- a/docbook-xsl-1.75.2/html/htmltbl.xsl +++ /dev/null @@ -1,135 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - float: - - left - right - - - - - - - - - - - - - none - none - - ; - - - - diff --git a/docbook-xsl-1.75.2/html/index.xsl b/docbook-xsl-1.75.2/html/index.xsl deleted file mode 100644 index 1837020..0000000 --- a/docbook-xsl-1.75.2/html/index.xsl +++ /dev/null @@ -1,288 +0,0 @@ - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - -
- -
-
-
-
- - - - - - - - - - -
-
-
- - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
-
-
- - - - - - - - - - - - -
- - - - - - - - - -
- -
-
-
- - -

- - -

-
- - - - - - - - - -
- - - - - - - - - - - - -
- -
-
- - - -
-
- - - - - - - - - - -
-
- -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - -
-
-
- - -
-
- -
-
- - - - - - - - - - - - - - -
-
-
- - -
- ( - - - - - - ) -
-
- - -
- ( - - - - - - ) -
-
- - diff --git a/docbook-xsl-1.75.2/html/info.xsl b/docbook-xsl-1.75.2/html/info.xsl deleted file mode 100644 index 404ac13..0000000 --- a/docbook-xsl-1.75.2/html/info.xsl +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/html/inline.xsl b/docbook-xsl-1.75.2/html/inline.xsl deleted file mode 100644 index 5eec079..0000000 --- a/docbook-xsl-1.75.2/html/inline.xsl +++ /dev/null @@ -1,1485 +0,0 @@ - - -%common.entities; -]> - - - - - - - - - - - - - - - _blank - _top - - - - - - - - - - - - - - 1 - 0 - - - - - - - - - 1 - 0 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - XLink to nonexistent id: - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - span - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ( - - ) - - - - - - - - - - - , - - - - - - - , - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - abbr - - - - - - acronym - - - - - - - - - - - - - - - - - - - - - - - - - - http://example.com/cgi-bin/man.cgi? - - ( - - ) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - SM - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Warning: glossary.collection specified, but there are - - automatic glossaries - - - - - - - - - - - - - - - - - - - - - - - - There's no entry for - - in - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Error: no glossentry for glossterm: - - . - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - element - - - - - - - - - - - - - - - - </ - - > - - - & - - ; - - - &# - - ; - - - % - - ; - - - <? - - > - - - <? - - ?> - - - < - - > - - - < - - /> - - - <!-- - - --> - - - - - - - - - - - - - - - - - - - - - - < - - - - - mailto: - - - - - - > - - - - - - - - - - - + - - - - - - - - + - - - - - - - - - - - - - - - - - - - ( - - ) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - [ - - - - - - - - - - - - - - - - - - - ] - - - [ - - ] - - - - - - - - - - - - - [ - - - - - - - - - - - - ] - - - [ - - ] - - - - - - - - - - - - -

-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/html/keywords.xsl b/docbook-xsl-1.75.2/html/keywords.xsl deleted file mode 100644 index c12e39f..0000000 --- a/docbook-xsl-1.75.2/html/keywords.xsl +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - , - - - - - diff --git a/docbook-xsl-1.75.2/html/lists.xsl b/docbook-xsl-1.75.2/html/lists.xsl deleted file mode 100644 index 424e2bb..0000000 --- a/docbook-xsl-1.75.2/html/lists.xsl +++ /dev/null @@ -1,1183 +0,0 @@ - - - - - - - - -
- - - - - - - - - -
    - - - - - - - - - - - - - -
-
-
- - - - - - - - - - - - - - - - - - - - - - - circle - disc - square - - - - - - -
  • - - - - list-style-type: - - - - - - - - - - - -
    - -
    -
    - - - -
    -
  • -
    - - - - - - - - - - - - - 1 - a - i - A - I - - - - Unexpected numeration: - - - - - - - -
    - - - - - - - - - - - - - - - - - - -
    -
    - -
      - - - - - - - - - - - - - - - - - -
    -
    -
    -
    -
    - - - - - - -
  • - - - - - - - - - - - - - - -
    - -
    -
    - - - -
    -
  • -
    - - - - - - - - - - - - - -
    - -
    -
    - - - -
    - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    - - - -
    - -
    -
    -
    -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - -

    - - - - - - - - - - - - - -

    -
    -
    -
    - - -
    - - -
    -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - -

    - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    - - - - - -
    - - - - - - - - - - - - - - - - - - -
    -
    -
    -
    -
    -
    - - - - - - - - - -
    - -
    -
    - - - -
    -
    - - - - - - - - - - - - - - - 1 - - - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - , - - - - - - - - - - - - - - - - - - - - - - - 1 - - - -
    -
    - - - - - - - - - - - - 1 - - - -
    -
    - - - 1 - 1 - - - - - - - - - - - - - - - - - - - - - - - - - 1 - 1 - - 1 - - - - - - - - -   - - - - - - - - - - - - - - 1 - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - 1 - 1 - - 1 - - - - - - - - -   - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - before - - - - - - - - - -
    - - - - - 0 - 1 - - - - - - - - - - - - -
      - - -
    -
    - -
      - - - - - -
    -
    -
    - - - - -
    -
    - - - - - - - - - - - - -
      - - -
    -
    - - -
  • - - - -
  • -
    - - - -
      - - -
    -
    - - -

    - - - - -

    -
    - - - - - - - - -
    - - - - - - - - - - - - - - - - - -
    -
    - - -
    - - - - - - - -
    -
    - - - - - - - - - -
    - - - -
    -
    - - - - - - - - -
    - - - - - : - - - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - -
    -
    - -
    - -
    -
    -
    -
    -
    - - - - - - - - - - - - - - - -

    - - - - -

    - - - - - -
    - -
    - - - - -
    -
    -
    -
    -
    - - - - - - - - - -

    - - - - - - - - - - - - - - - -

    -
    -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ??? - - - - - # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ??? - - - - - - - - - - - - - - - - - - - -
    diff --git a/docbook-xsl-1.75.2/html/maketoc.xsl b/docbook-xsl-1.75.2/html/maketoc.xsl deleted file mode 100644 index 1ba3931..0000000 --- a/docbook-xsl-1.75.2/html/maketoc.xsl +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - filename=" - - " - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/html/manifest.xsl b/docbook-xsl-1.75.2/html/manifest.xsl deleted file mode 100644 index 01faacc..0000000 --- a/docbook-xsl-1.75.2/html/manifest.xsl +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/html/math.xsl b/docbook-xsl-1.75.2/html/math.xsl deleted file mode 100644 index 801b106..0000000 --- a/docbook-xsl-1.75.2/html/math.xsl +++ /dev/null @@ -1,270 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Unsupported TeX math notation: - - - - - - - - - - - - - \nopagenumbers - - - - \bye - - - - - - - - - - - - - - - - - - - - - - - \special{dvi2bitmap outputfile - - } - - $ - - - - $ - - \vfill\eject - - - - - - - - - - - - - - - - - - - - - - - - \special{dvi2bitmap outputfile - - } - - $$ - - - - $$ - - \vfill\eject - - - - - - - - - \documentclass{article} - \pagestyle{empty} - \begin{document} - - - - \end{document} - - - - - - - - - - - - - - - - - - - - - - - \special{dvi2bitmap outputfile - - } - - $ - - - - $ - - \newpage - - - - - - - - - - - - - - - - - - - - - - - - \special{dvi2bitmap outputfile - - } - - $$ - - - - $$ - - \newpage - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - 0 - 1 - - - - - - diff --git a/docbook-xsl-1.75.2/html/oldchunker.xsl b/docbook-xsl-1.75.2/html/oldchunker.xsl deleted file mode 100644 index fe6b17c..0000000 --- a/docbook-xsl-1.75.2/html/oldchunker.xsl +++ /dev/null @@ -1,202 +0,0 @@ - - - - - - - - - - - - - -Encoding used in generated HTML pages - -This encoding is used in files generated by chunking stylesheet. Currently -only Saxon is able to change output encoding. - - - - - - - - - -Saxon character representation used in generated HTML pages - -This character representation is used in files generated by chunking stylesheet. If -you want to suppress entity references for characters with direct representation -in default.encoding, set this parameter to value native. - - - - - - - - - - - - - - - - - - - - - - - - Chunking isn't supported with - - - - - - - - - - - - - - - Writing - - - for - - - ( - - ) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Can't make chunks with - - 's processor. - - - - - - - - - - - - - - - - Writing - - - for - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Can't make chunks with - - 's processor. - - - - - - diff --git a/docbook-xsl-1.75.2/html/onechunk.xsl b/docbook-xsl-1.75.2/html/onechunk.xsl deleted file mode 100644 index 527dccf..0000000 --- a/docbook-xsl-1.75.2/html/onechunk.xsl +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - -1 - - - - # - - - - - - diff --git a/docbook-xsl-1.75.2/html/param.xml b/docbook-xsl-1.75.2/html/param.xml deleted file mode 100644 index 55b4943..0000000 --- a/docbook-xsl-1.75.2/html/param.xml +++ /dev/null @@ -1,10584 +0,0 @@ - - - -HTML Parameter Reference - -$Id: param.xweb 8345 2009-03-16 06:44:07Z bobstayton $ - - - - Walsh - Norman - - - - 1999 - 2000 - 2001 - 2002 - 2003 - 2004 - 2005 - 2006 - 2007 - Norman Walsh - - - This is reference documentation for all user-configurable - parameters in the DocBook XSL HTML stylesheets (for generating - HTML output). - - -Admonitions - - -admon.graphics.extension -string - - -admon.graphics.extension -Filename extension for admonition graphics - - - - -<xsl:param name="admon.graphics.extension">.png</xsl:param> - - - -Description - -Sets the filename extension to use on admonition graphics. - - - - - - -admon.graphics.path -string - - -admon.graphics.path -Path to admonition graphics - - - -<xsl:param name="admon.graphics.path">images/</xsl:param> - - -Description - -Sets the path to the directory containing the admonition graphics -(caution.png, important.png etc). This location is normally relative -to the output html directory. See base.dir - - - - - - -admon.graphics -boolean - - -admon.graphics -Use graphics in admonitions? - - - - -<xsl:param name="admon.graphics" select="0"></xsl:param> - - - -Description - -If true (non-zero), admonitions are presented in an alternate style that uses -a graphic. Default graphics are provided in the distribution. - - - - - - - -admon.textlabel -boolean - - -admon.textlabel -Use text label in admonitions? - - - - -<xsl:param name="admon.textlabel" select="1"></xsl:param> - - - -Description - -If true (non-zero), admonitions are presented with a generated -text label such as Note or Warning in the appropriate language. -If zero, such labels are turned off, but any title child -of the admonition element are still output. -The default value is 1. - - - - - - - -admon.style -string - - -admon.style -Specifies the CSS style attribute that should be added to -admonitions. - - - -<xsl:param name="admon.style"> - <xsl:value-of select="concat('margin-', $direction.align.start, ': 0.5in; margin-', $direction.align.end, ': 0.5in;')"></xsl:value-of> -</xsl:param> - - -Description - -Specifies the value of the CSS style -attribute that should be added to admonitions. - - - - - - -Callouts - - -callout.defaultcolumn -integer - - -callout.defaultcolumn -Indicates what column callouts appear in by default - - - - -<xsl:param name="callout.defaultcolumn">60</xsl:param> - - - -Description - -If a callout does not identify a column (for example, if it uses -the linerange unit), -it will appear in the default column. - - - - - - - -callout.graphics.extension -string - - -callout.graphics.extension -Filename extension for callout graphics - - - - -<xsl:param name="callout.graphics.extension">.png</xsl:param> - - - - -Description -Sets the filename extension to use on callout graphics. - - -The Docbook XSL distribution provides callout graphics in the following formats: -SVG (extension: .svg) -PNG (extension: .png) -GIF (extension: .gif) - - - - - - -callout.graphics.number.limit -integer - - -callout.graphics.number.limit -Number of the largest callout graphic - - - - -<xsl:param name="callout.graphics.number.limit">15</xsl:param> - - - - -Description - -If callout.graphics is non-zero, graphics -are used to represent callout numbers instead of plain text. The value -of callout.graphics.number.limit is the largest -number for which a graphic exists. If the callout number exceeds this -limit, the default presentation "(plain text instead of a graphic)" -will be used. - - - - - - - -callout.graphics.path -string - - -callout.graphics.path -Path to callout graphics - - - - -<xsl:param name="callout.graphics.path">images/callouts/</xsl:param> - - - -Description - -Sets the path to the directory holding the callout graphics. his -location is normally relative to the output html directory. see -base.dir. Always terminate the directory with / since the graphic file -is appended to this string, hence needs the separator. - - - - - - - -callout.graphics -boolean - - -callout.graphics -Use graphics for callouts? - - - - -<xsl:param name="callout.graphics" select="1"></xsl:param> - - - -Description - -If non-zero, callouts are presented with graphics (e.g., reverse-video -circled numbers instead of "(1)", "(2)", etc.). -Default graphics are provided in the distribution. - - - - - - - -callout.list.table -boolean - - -callout.list.table -Present callout lists using a table? - - - - -<xsl:param name="callout.list.table" select="1"></xsl:param> - - - -Description - -The default presentation of calloutlists uses -an HTML DL element. Some browsers don't align DLs very well -if callout.graphics is used. With this option -turned on, calloutlists are presented in an HTML -TABLE, which usually results in better alignment -of the callout number with the callout description. - - - - - - -callout.unicode.number.limit -integer - - -callout.unicode.number.limit -Number of the largest unicode callout character - - - - -<xsl:param name="callout.unicode.number.limit">10</xsl:param> - - - -Description - -If callout.unicode -is non-zero, unicode characters are used to represent -callout numbers. The value of -callout.unicode.number.limit -is -the largest number for which a unicode character exists. If the callout number -exceeds this limit, the default presentation "(nnn)" will always -be used. - - - - - - - -callout.unicode.start.character -integer - - -callout.unicode.start.character -First Unicode character to use, decimal value. - - - - -<xsl:param name="callout.unicode.start.character">10102</xsl:param> - - - -Description - -If callout.graphics is zero and callout.unicode -is non-zero, unicode characters are used to represent -callout numbers. The value of -callout.unicode.start.character -is the decimal unicode value used for callout number one. Currently, -only 10102 is supported in the stylesheets for this parameter. - - - - - - - -callout.unicode -boolean - - -callout.unicode -Use Unicode characters rather than images for callouts. - - - -<xsl:param name="callout.unicode" select="0"></xsl:param> - - -Description - -The stylesheets can use either an image of the numbers one to ten, or the single Unicode character which represents the numeral, in white on a black background. Use this to select the Unicode character option. - - - - - - - -callouts.extension -boolean - - -callouts.extension -Enable the callout extension - - - - -<xsl:param name="callouts.extension" select="1"></xsl:param> - - - -Description - -The callouts extension processes areaset -elements in ProgramListingCO and other text-based -callout elements. - - - - - - -EBNF - - -ebnf.table.bgcolor -color - - -ebnf.table.bgcolor -Background color for EBNF tables - - - - -<xsl:param name="ebnf.table.bgcolor">#F5DCB3</xsl:param> - - - -Description - -Sets the background color for EBNF tables (a pale brown). No -bgcolor attribute is output if -ebnf.table.bgcolor is set to the null string. - - - - - - - -ebnf.table.border -boolean - - -ebnf.table.border -Selects border on EBNF tables - - - -<xsl:param name="ebnf.table.border" select="1"></xsl:param> - - -Description - -Selects the border on EBNF tables. If non-zero, the tables have -borders, otherwise they don't. - - - - - - -ebnf.assignment -rtf - - -ebnf.assignment -The EBNF production assignment operator - - - - -<xsl:param name="ebnf.assignment"> -<code>::=</code> -</xsl:param> - - - - -Description - -The ebnf.assignment parameter determines what -text is used to show assignment in productions -in productionsets. - -While ::= is common, so are several -other operators. - - - - - - -ebnf.statement.terminator -rtf - - -ebnf.statement.terminator -Punctuation that ends an EBNF statement. - - - - -<xsl:param name="ebnf.statement.terminator"></xsl:param> - - - - -Description - -The ebnf.statement.terminator parameter determines what -text is used to terminate each production -in productionset. - -Some notations end each statement with a period. - - - - - -ToC/LoT/Index Generation - - -annotate.toc -boolean - - -annotate.toc -Annotate the Table of Contents? - - - -<xsl:param name="annotate.toc" select="1"></xsl:param> - - -Description - -If true, TOCs will be annotated. At present, this just means -that the refpurpose of refentry -TOC entries will be displayed. - - - - - - - -autotoc.label.separator -string - - -autotoc.label.separator -Separator between labels and titles in the ToC - - - - -<xsl:param name="autotoc.label.separator">. </xsl:param> - - - -Description - -String used to separate labels and titles in a table of contents. - - - - - - -autotoc.label.in.hyperlink -boolean - - -autotoc.label.in.hyperlink -Include label in hyperlinked titles in TOC? - - - -<xsl:param name="autotoc.label.in.hyperlink" select="1"></xsl:param> - - -Description - -If the value of -autotoc.label.in.hyperlink is non-zero, labels -are included in hyperlinked titles in the TOC. If it is instead zero, -labels are still displayed prior to the hyperlinked titles, but -are not hyperlinked along with the titles. - - - - - - -process.source.toc -boolean - - -process.source.toc -Process a non-empty toc element if it occurs in a source document? - - - -<xsl:param name="process.source.toc" select="0"></xsl:param> - - -Description - -Specifies that the contents of a non-empty "hard-coded" -toc element in a source document are processed to -generate a TOC in output. - - This parameter has no effect on automated generation of - TOCs. An automated TOC may still be generated along with the - "hard-coded" TOC. To suppress automated TOC generation, adjust the - value of the generate.toc paramameter. - - The process.source.toc parameter also has - no effect if the toc element is empty; handling - for empty toc is controlled by the - process.empty.source.toc parameter. - - - - - - - - -process.empty.source.toc -boolean - - -process.empty.source.toc -Generate automated TOC if toc element occurs in a source document? - - - -<xsl:param name="process.empty.source.toc" select="0"></xsl:param> - - -Description - -Specifies that if an empty toc element is found in a -source document, an automated TOC is generated at this point in the -document. - - Depending on what the value of the - generate.toc parameter is, setting this - parameter to 1 could result in generation of - duplicate automated TOCs. So the - process.empty.source.toc is primarily useful - as an "override": by placing an empty toc in your - document and setting this parameter to 1, you can - force a TOC to be generated even if generate.toc - says not to. - - - - - - - - -bridgehead.in.toc -boolean - - -bridgehead.in.toc -Should bridgehead elements appear in the TOC? - - - -<xsl:param name="bridgehead.in.toc" select="0"></xsl:param> - - -Description - -If non-zero, bridgeheads appear in the TOC. Note that -this option is not fully supported and may be removed in a future -version of the stylesheets. - - - - - - - -simplesect.in.toc -boolean - - -simplesect.in.toc -Should simplesect elements appear in the TOC? - - - -<xsl:param name="simplesect.in.toc" select="0"></xsl:param> - - -Description - -If non-zero, simplesects will be included in the TOC. - - - - - - - -manual.toc -string - - -manual.toc -An explicit TOC to be used for the TOC - - - - -<xsl:param name="manual.toc"></xsl:param> - - - -Description - -The manual.toc identifies an explicit TOC that -will be used for building the printed TOC. - - - - - - - -toc.list.type -list -dl -ul -ol - - -toc.list.type -Type of HTML list element to use for Tables of Contents - - - -<xsl:param name="toc.list.type">dl</xsl:param> - - -Description - -When an automatically generated Table of Contents (or List of Titles) -is produced, this HTML element will be used to make the list. - - - - - - - -toc.section.depth -integer - - -toc.section.depth -How deep should recursive sections appear -in the TOC? - - - -<xsl:param name="toc.section.depth">2</xsl:param> - - -Description - -Specifies the depth to which recursive sections should appear in the -TOC. - - - - - - - -toc.max.depth -integer - - -toc.max.depth -How many levels should be created for each TOC? - - - -<xsl:param name="toc.max.depth">8</xsl:param> - - -Description - -Specifies the maximal depth of TOC on all levels. - - - - - - -generate.toc -table - - -generate.toc -Control generation of ToCs and LoTs - - - - -<xsl:param name="generate.toc"> -appendix toc,title -article/appendix nop -article toc,title -book toc,title,figure,table,example,equation -chapter toc,title -part toc,title -preface toc,title -qandadiv toc -qandaset toc -reference toc,title -sect1 toc -sect2 toc -sect3 toc -sect4 toc -sect5 toc -section toc -set toc,title -</xsl:param> - - - - -Description - -This parameter has a structured value. It is a table of space-delimited -path/value pairs. Each path identifies some element in the source document -using a restricted subset of XPath (only the implicit child axis, no wildcards, -no predicates). Paths can be either relative or absolute. - -When processing a particular element, the stylesheets consult this table to -determine if a ToC (or LoT(s)) should be generated. - -For example, consider the entry: - -book toc,figure - -This indicates that whenever a book is formatted, a -Table Of Contents and a List of Figures should be generated. Similarly, - -/chapter toc - -indicates that whenever a document that has a root -of chapter is formatted, a Table of -Contents should be generated. The entry chapter would match -all chapters, but /chapter matches only chapter -document elements. - -Generally, the longest match wins. So, for example, if you want to distinguish -articles in books from articles in parts, you could use these two entries: - -book/article toc,figure -part/article toc - -Note that an article in a part can never match a book/article, -so if you want nothing to be generated for articles in parts, you can simply leave -that rule out. - -If you want to leave the rule in, to make it explicit that you're turning -something off, use the value nop. For example, the following -entry disables ToCs and LoTs for articles: - -article nop - -Do not simply leave the word article in the file -without a matching value. That'd be just begging the silly little -path/value parser to get confused. - -Section ToCs are further controlled by the -generate.section.toc.level parameter. -For a given section level to have a ToC, it must have both an entry in -generate.toc and be within the range enabled by -generate.section.toc.level. - - - - - -generate.section.toc.level -integer - - -generate.section.toc.level -Control depth of TOC generation in sections - - - - -<xsl:param name="generate.section.toc.level" select="0"></xsl:param> - - - -Description - -The generate.section.toc.level parameter -controls the depth of section in which TOCs will be generated. Note -that this is related to, but not the same as -toc.section.depth, which controls the depth to -which TOC entries will be generated in a given TOC. -If, for example, generate.section.toc.level -is 3, TOCs will be generated in first, second, and third -level sections, but not in fourth level sections. - - - - - - - -generate.index -boolean - - -generate.index -Do you want an index? - - - -<xsl:param name="generate.index" select="1"></xsl:param> - - -Description - -Specify if an index should be generated. - - - - - - -index.method -list -basic -kosek -kimber - - -index.method -Select method used to group index entries in an index - - - - -<xsl:param name="index.method">basic</xsl:param> - - - -Description - -This parameter lets you select which method to use for sorting and grouping - index entries in an index. -Indexes in Latin-based languages that have accented characters typically -sort together accented words and unaccented words. -Thus Á (U+00C1 LATIN CAPITAL LETTER A WITH ACUTE) would sort together -with A (U+0041 LATIN CAPITAL LETTER A), so both would appear in the A -section of the index. -Languages using other alphabets (such as Russian, which is written in the Cyrillic alphabet) -and languages using ideographic chararacters (such as Japanese) -require grouping specific to the languages and alphabets. - - -The default indexing method is limited. -It can group accented characters in Latin-based languages only. -It cannot handle non-Latin alphabets or ideographic languages. -The other indexing methods require extensions of one type or -another, and do not work with -all XSLT processors, which is why they are not used by default. - -The three choices for indexing method are: - - -basic - - -(default) Sort and groups words based only on the Latin alphabet. -Words with accented Latin letters will group and sort with -their respective primary letter, but -words in non-Latin alphabets will be -put in the Symbols section of the index. - - - - -kosek - - -This method sorts and groups words based on letter groups configured in -the DocBook locale file for the given language. -See, for example, the French locale file common/fr.xml. -This method requires that the XSLT processor -supports the EXSLT extensions (most do). -It also requires support for using -user-defined functions in xsl:key (xsltproc does not). - -This method is suitable for any language for which you can -list all the individual characters that should appear -in each letter group in an index. -It is probably not practical to use it for ideographic languages -such as Chinese that have hundreds or thousands of characters. - - -To use the kosek method, you must: - - - -Use a processor that supports its extensions, such as -Saxon 6 or Xalan (xsltproc and Saxon 8 do not). - - - -Set the index.method parameter's value to kosek. - - - -Import the appropriate index extensions stylesheet module -fo/autoidx-kosek.xsl or -html/autoidx-kosek.xsl into your -customization. - - - - - - - -kimber - - -This method uses extensions to the Saxon processor to implement -sophisticated indexing processes. It uses its own -configuration file, which can include information for any number of -languages. Each language's configuration can group -words using one of two processes. In the -enumerated process similar to that used in the kosek method, -you indicate the groupings character-by-character. -In the between-key process, you specify the -break-points in the sort order that should start a new group. -The latter configuration is useful for ideographic languages -such as Chinese, Japanese, and Korean. -You can also define your own collation algorithms and how you -want mixed Latin-alphabet words sorted. - - -For a whitepaper describing the extensions, see: -http://www.innodata-isogen.com/knowledge_center/white_papers/back_of_book_for_xsl_fo.pdf. - - - -To download the extension library, see -http://www.innodata-isogen.com/knowledge_center/tools_downloads/i18nsupport. - - - - -To use the kimber method, you must: - - - -Use Saxon (version 6 or 8) as your XSLT processor. - - - -Install and configure the Innodata Isogen library, using -the documentation that comes with it. - - - -Set the index.method parameter's value to kimber. - - - -Import the appropriate index extensions stylesheet module -fo/autoidx-kimber.xsl or -html/autoidx-kimber.xsl into your -customization. - - - - - - - - - - - - - -index.on.type -boolean - - -index.on.type -Select indexterms based on type -attribute value - - - - -<xsl:param name="index.on.type" select="0"></xsl:param> - - - -Description - - -If non-zero, -then an index element that has a -type attribute -value will contain only those indexterm -elements with a matching type attribute value. -If an index has no type -attribute or it is blank, then the index will contain -all indexterms in the current scope. - - - -If index.on.type is zero, then the -type attribute has no effect -on selecting indexterms for an index. - - -For those using DocBook version 4.2 or earlier, -the type attribute is not available -for index terms. However, you can achieve the same -effect by using the role attribute -in the same manner on indexterm -and index, and setting the stylesheet parameter -index.on.role to a nonzero value. - - - - - - - -index.on.role -boolean - - -index.on.role -Select indexterms based on role value - - - - -<xsl:param name="index.on.role" select="0"></xsl:param> - - - -Description - - -If non-zero, -then an index element that has a -role attribute -value will contain only those indexterm -elements with a matching role value. -If an index has no role -attribute or it is blank, then the index will contain -all indexterms in the current scope. - - -If index.on.role is zero, then the -role attribute has no effect -on selecting indexterms for an index. - - -If you are using DocBook version 4.3 or later, you should -use the type attribute instead of role -on indexterm and index, -and set the index.on.type to a nonzero -value. - - - - - - - -index.links.to.section -boolean - - -index.links.to.section -HTML index entries link to container section title - - - - -<xsl:param name="index.links.to.section" select="1"></xsl:param> - - - -Description - -If zero, then an index entry in an index links -directly to the location of the -generated anchor that is output -for the indexterm. If two identical indexterm elements -exist in the same section, then both entries appear -in the index with the same title but link to different -locations. - -If non-zero, then an index entry in an index links to the -section title containing the indexterm, rather than -directly to the anchor output for the indexterm. -Duplicate indexterm entries in the same section are dropped. - - -The default value is 1, so index entries link to -section titles by default. - -In both cases, the link text in an index entry is the -title of the section containing the indexterm. -That is because HTML does not have numbered pages. -It also provides the reader with context information -for each link. - -This parameter lets you choose which style of -index linking you want. - - - -When set to 0, an index entry takes you -to the precise location of its corresponding indexterm. -However, if you have a lot of duplicate -entries in sections, then you have a lot of duplicate -titles in the index, which makes it more cluttered. -The reader may not recognize why duplicate titles -appear until they follow the links. Also, the links -may land the reader in the middle of a section where the -section title is not visible, which may also be -confusing to the reader. - - -When set to 1, an index entry link is -less precise, but duplicate titles in the -index entries are eliminated. -Landing on the section title location may confirm the reader's -expectation that a link that -shows a section title will take them to that section title, -not a location within the section. - - - - - - - - - -index.prefer.titleabbrev -boolean - - -index.prefer.titleabbrev -Should abbreviated titles be used as back references? - - - - -<xsl:param name="index.prefer.titleabbrev" select="0"></xsl:param> - - - -Description - -If non-zero, and if a titleabbrev is defined, the abbreviated title -is used as the link text of a back reference in the index. - - - - - - - -index.term.separator -string - - -index.term.separator -Override for punctuation separating an index term -from its list of page references in an index - - - - -<xsl:param name="index.term.separator"></xsl:param> - - - -Description - -This parameter permits you to override -the text to insert between -the end of an index term and its list of page references. -Typically that might be a comma and a space. - - -Because this text may be locale dependent, -this parameter's value is normally taken from a gentext -template named 'term-separator' in the -context 'index' in the stylesheet -locale file for the language -of the current document. -This parameter can be used to override the gentext string, -and would typically be used on the command line. -This parameter would apply to all languages. - - -So this text string can be customized in two ways. -You can reset the default gentext string using -the local.l10n.xml parameter, or you can -fill in the content for this normally empty -override parameter. -The content can be a simple string, or it can be -something more complex such as a call-template. -For fo output, it could be an fo:leader -element to provide space of a specific length, or a dot leader. - - - - - - - -index.number.separator -string - - -index.number.separator -Override for punctuation separating page numbers in index - - - - -<xsl:param name="index.number.separator"></xsl:param> - - - -Description - -This parameter permits you to override the text to insert between -page references in a formatted index entry. Typically -that would be a comma and a space. - - -Because this text may be locale dependent, -this parameter's value is normally taken from a gentext -template named 'number-separator' in the -context 'index' in the stylesheet -locale file for the language -of the current document. -This parameter can be used to override the gentext string, -and would typically be used on the command line. -This parameter would apply to all languages. - - -So this text string can be customized in two ways. -You can reset the default gentext string using -the local.l10n.xml parameter, or you can -override the gentext with the content of this parameter. -The content can be a simple string, or it can be -something more complex such as a call-template. - - -In HTML index output, section title references are used instead of -page number references. This punctuation appears between -such section titles in an HTML index. - - - - - - - -index.range.separator -string - - -index.range.separator -Override for punctuation separating the two numbers -in a page range in index - - - - -<xsl:param name="index.range.separator"></xsl:param> - - - -Description - -This parameter permits you -to override the text to insert between -the two numbers of a page range in an index. -This parameter is only used by those XSL-FO processors -that support an extension for generating such page ranges -(such as XEP). - -Because this text may be locale dependent, -this parameter's value is normally taken from a gentext -template named 'range-separator' in the -context 'index' in the stylesheet -locale file for the language -of the current document. -This parameter can be used to override the gentext string, -and would typically be used on the command line. -This parameter would apply to all languages. - - -So this text string can be customized in two ways. -You can reset the default gentext string using -the local.l10n.xml parameter, or you can -override the gentext with the content of this parameter. -The content can be a simple string, or it can be -something more complex such as a call-template. - - -In HTML index output, section title references are used instead of -page number references. So there are no page ranges -and this parameter has no effect. - - - - - - -Stylesheet Extensions - - -linenumbering.everyNth -integer - - -linenumbering.everyNth -Indicate which lines should be numbered - - - - -<xsl:param name="linenumbering.everyNth">5</xsl:param> - - - -Description - -If line numbering is enabled, everyNth line will be -numbered. Note that numbering is one based, not zero based. - - - - - - - -linenumbering.extension -boolean - - -linenumbering.extension -Enable the line numbering extension - - - - -<xsl:param name="linenumbering.extension" select="1"></xsl:param> - - - -Description - -If non-zero, verbatim environments (address, literallayout, -programlisting, screen, synopsis) that specify line numbering will -have line numbers. - - - - - - - -linenumbering.separator -string - - -linenumbering.separator -Specify a separator between line numbers and lines - - - - -<xsl:param name="linenumbering.separator"><xsl:text> </xsl:text></xsl:param> - - - -Description - -The separator is inserted between line numbers and lines in the -verbatim environment. The default value is a single white space. - Note the interaction with linenumbering.width - - - - - - - -linenumbering.width -integer - - -linenumbering.width -Indicates the width of line numbers - - - - -<xsl:param name="linenumbering.width">3</xsl:param> - - - -Description - -If line numbering is enabled, line numbers will appear right -justified in a field "width" characters wide. - - - - - - - -tablecolumns.extension -boolean - - -tablecolumns.extension -Enable the table columns extension function - - - - -<xsl:param name="tablecolumns.extension" select="1"></xsl:param> - - - -Description - -The table columns extension function adjusts the widths of table -columns in the HTML result to more accurately reflect the specifications -in the CALS table. - - - - - - - - textinsert.extension - boolean - - - textinsert.extension - Enables the textinsert extension element - - - - <xsl:param name="textinsert.extension" select="1"></xsl:param> - - - Description - The textinsert extension element inserts the contents of - a file into the result tree (as text). - - To use the textinsert extension element, you must use - either Saxon or Xalan as your XSLT processor (it doesn’t - work with xsltproc), along with either the DocBook Saxon - extensions or DocBook Xalan extensions (for more - information about those extensions, see DocBook Saxon Extensions and DocBook Xalan Extensions), and you must set both - the use.extensions and - textinsert.extension parameters to - 1. - As an alternative to using the textinsert element, - consider using an Xinclude element with the - parse="text" attribute and value - specified, as detailed in Using XInclude for text inclusions. - - - See Also - You can also use the dbhtml-include href processing - instruction to insert external files — both files containing - plain text and files with markup content (including HTML - content). - - More information - For how-to documentation on inserting contents of - external code files and other text files into output, see - External code files. - For guidelines on inserting contents of - HTML files into output, see Inserting external HTML code. - - - - - -textdata.default.encoding -string - - -textdata.default.encoding -Default encoding of external text files which are included -using textdata element - - - - -<xsl:param name="textdata.default.encoding"></xsl:param> - - - -Description - -Specifies the encoding of any external text files included using -textdata element. This value is used only when you do -not specify encoding by the appropriate attribute -directly on textdata. An empty string is interpreted as the system -default encoding. - - - - - - -graphicsize.extension -boolean - - -graphicsize.extension -Enable the getWidth()/getDepth() extension functions - - - - -<xsl:param name="graphicsize.extension" select="1"></xsl:param> - - - -Description - -If non-zero (and if use.extensions is non-zero -and if you're using a processor that supports extension functions), the -getWidth and getDepth functions -will be used to extract image sizes from graphics. - - - - - - -graphicsize.use.img.src.path -boolean - - -graphicsize.use.img.src.path -Prepend img.src.path before -filenames passed to extension functions - - - - -<xsl:param name="graphicsize.use.img.src.path" select="0"></xsl:param> - - - -Description - -If non-zero img.src.path parameter will -be appended before filenames passed to extension functions for -measuring image dimensions. - - - - - - -use.extensions -boolean - - -use.extensions -Enable extensions - - - - -<xsl:param name="use.extensions" select="0"></xsl:param> - - - -Description - -If non-zero, extensions may be used. Each extension is -further controlled by its own parameter. But if -use.extensions is zero, no extensions will -be used. - - - - - - -Automatic labelling - - -chapter.autolabel -list -0none -11,2,3... -AA,B,C... -aa,b,c... -ii,ii,iii... -II,II,III... - - -chapter.autolabel -Specifies the labeling format for Chapter titles - - - - -<xsl:param name="chapter.autolabel" select="1"></xsl:param> - - -Description - -If non-zero, then chapters will be numbered using the parameter -value as the number format if the value matches one of the following: - - - - - 1 or arabic - - Arabic numeration (1, 2, 3 ...). - - - - A or upperalpha - - Uppercase letter numeration (A, B, C ...). - - - - a or loweralpha - - Lowercase letter numeration (a, b, c ...). - - - - I or upperroman - - Uppercase roman numeration (I, II, III ...). - - - - i or lowerroman - - Lowercase roman letter numeration (i, ii, iii ...). - - - - -Any nonzero value other than the above will generate -the default number format (arabic). - - - - - - - -appendix.autolabel -list -0none -11,2,3... -AA,B,C... -aa,b,c... -ii,ii,iii... -II,II,III... - - -appendix.autolabel -Specifies the labeling format for Appendix titles - - - - -<xsl:param name="appendix.autolabel">A</xsl:param> - - - -Description - -If non-zero, then appendices will be numbered using the -parameter value as the number format if the value matches one of the -following: - - - - - 1 or arabic - - Arabic numeration (1, 2, 3 ...). - - - - A or upperalpha - - Uppercase letter numeration (A, B, C ...). - - - - a or loweralpha - - Lowercase letter numeration (a, b, c ...). - - - - I or upperroman - - Uppercase roman numeration (I, II, III ...). - - - - i or lowerroman - - Lowercase roman letter numeration (i, ii, iii ...). - - - - -Any nonzero value other than the above will generate -the default number format (upperalpha). - - - - - - - -part.autolabel -list -0none -11,2,3... -AA,B,C... -aa,b,c... -ii,ii,iii... -II,II,III... - - -part.autolabel -Specifies the labeling format for Part titles - - - - -<xsl:param name="part.autolabel">I</xsl:param> - - - -Description - -If non-zero, then parts will be numbered using the parameter -value as the number format if the value matches one of the following: - - - - - 1 or arabic - - Arabic numeration (1, 2, 3 ...). - - - - A or upperalpha - - Uppercase letter numeration (A, B, C ...). - - - - a or loweralpha - - Lowercase letter numeration (a, b, c ...). - - - - I or upperroman - - Uppercase roman numeration (I, II, III ...). - - - - i or lowerroman - - Lowercase roman letter numeration (i, ii, iii ...). - - - - -Any nonzero value other than the above will generate -the default number format (upperroman). - - - - - - - - -reference.autolabel -list -0none -11,2,3... -AA,B,C... -aa,b,c... -ii,ii,iii... -II,II,III... - - -reference.autolabel -Specifies the labeling format for Reference titles - - - - <xsl:param name="reference.autolabel">I</xsl:param> - - -Description -If non-zero, references will be numbered using the parameter - value as the number format if the value matches one of the - following: - - - - 1 or arabic - - Arabic numeration (1, 2, 3 ...). - - - - A or upperalpha - - Uppercase letter numeration (A, B, C ...). - - - - a or loweralpha - - Lowercase letter numeration (a, b, c ...). - - - - I or upperroman - - Uppercase roman numeration (I, II, III ...). - - - - i or lowerroman - - Lowercase roman letter numeration (i, ii, iii ...). - - - -Any non-zero value other than the above will generate -the default number format (upperroman). - - - - - - -preface.autolabel -list -0none -11,2,3... -AA,B,C... -aa,b,c... -ii,ii,iii... -II,II,III... - - -preface.autolabel -Specifices the labeling format for Preface titles - - - -<xsl:param name="preface.autolabel" select="0"></xsl:param> - - -Description - -If non-zero then prefaces will be numbered using the parameter -value as the number format if the value matches one of the following: - - - - - 1 or arabic - - Arabic numeration (1, 2, 3 ...). - - - - A or upperalpha - - Uppercase letter numeration (A, B, C ...). - - - - a or loweralpha - - Lowercase letter numeration (a, b, c ...). - - - - I or upperroman - - Uppercase roman numeration (I, II, III ...). - - - - i or lowerroman - - Lowercase roman letter numeration (i, ii, iii ...). - - - - -Any nonzero value other than the above will generate -the default number format (arabic). - - - - - - - - -qandadiv.autolabel -boolean - - -qandadiv.autolabel -Are divisions in QAndASets enumerated? - - - -<xsl:param name="qandadiv.autolabel" select="1"></xsl:param> - - -Description - -If non-zero, unlabeled qandadivs will be enumerated. - - - - - - - -section.autolabel -boolean - - -section.autolabel -Are sections enumerated? - - - -<xsl:param name="section.autolabel" select="0"></xsl:param> - - -Description - -If true (non-zero), unlabeled sections will be enumerated. - - - - - - - -section.autolabel.max.depth -integer - - -section.autolabel.max.depth -The deepest level of sections that are numbered. - - - - -<xsl:param name="section.autolabel.max.depth">8</xsl:param> - - - -Description - -When section numbering is turned on by the -section.autolabel parameter, then this -parameter controls the depth of section nesting that is -numbered. Sections nested to a level deeper than this value will not -be numbered. - - - - - - - -section.label.includes.component.label -boolean - - -section.label.includes.component.label -Do section labels include the component label? - - - -<xsl:param name="section.label.includes.component.label" select="0"></xsl:param> - - -Description - -If non-zero, section labels are prefixed with the label of the -component that contains them. - - - - - - - -label.from.part -boolean - - -label.from.part -Renumber components in each part? - - - - -<xsl:param name="label.from.part" select="0"></xsl:param> - - - -Description - -If label.from.part is non-zero, then - numbering of components — preface, - chapter, appendix, and - reference (when reference occurs at the - component level) — is re-started within each - part. -If label.from.part is zero (the - default), numbering of components is not - re-started within each part; instead, components are - numbered sequentially throughout each book, - regardless of whether or not they occur within part - instances. - - - - - - -component.label.includes.part.label -boolean - - -component.label.includes.part.label -Do component labels include the part label? - - - -<xsl:param name="component.label.includes.part.label" select="0"></xsl:param> - - -Description - -If non-zero, number labels for chapter, -appendix, and other component elements are prefixed with -the label of the part element that contains them. So you might see -Chapter II.3 instead of Chapter 3. Also, the labels for formal -elements such as table and figure will include -the part label. If there is no part element container, then no prefix -is generated. - - -This feature is most useful when the -label.from.part parameter is turned on. -In that case, there would be more than one chapter -1, and the extra part label prefix will identify -each chapter unambiguously. - - - - - - - -HTML - - -html.base -uri - - -html.base -An HTML base URI - - - - -<xsl:param name="html.base"></xsl:param> - - -Description - -If html.base is set, it is used for the base element -in the head of the html documents. The parameter specifies -the base URL for all relative URLs in the document. This is useful -for dynamically served html where the base URI needs to be -shifted. - - - - - - -html.stylesheet.type -string - - -html.stylesheet.type -The type of the stylesheet used in the generated HTML - - - -<xsl:param name="html.stylesheet.type">text/css</xsl:param> - - -Description - -The type of the stylesheet to place in the HTML link tag. - - - - - - - -html.stylesheet -string - - -html.stylesheet -Name of the stylesheet(s) to use in the generated HTML - - - - -<xsl:param name="html.stylesheet"></xsl:param> - - - -Description - -The html.stylesheet parameter is either -empty, indicating that no stylesheet link tag should be -generated in the html output, or it is a list of one or more -stylesheet files. - -Multiple stylesheets are space-delimited. If you need to -reference a stylesheet URI that includes a space, encode it with -%20. A separate html link element will -be generated for each stylesheet in the order they are listed in the -parameter. - - - - - - -css.decoration -boolean - - -css.decoration -Enable CSS decoration of elements - - - - -<xsl:param name="css.decoration" select="1"></xsl:param> - - - -Description - - -If non-zero, then html elements produced by the stylesheet may be -decorated with style attributes. For example, the -li tags produced for list items may include a -fragment of CSS in the style attribute which sets -the CSS property "list-style-type". - - - - - - - -spacing.paras -boolean - - -spacing.paras -Insert additional <p> elements for spacing? - - - - -<xsl:param name="spacing.paras" select="0"></xsl:param> - - - -Description - -When non-zero, additional, empty paragraphs are inserted in -several contexts (for example, around informal figures), to create a -more pleasing visual appearance in many browsers. - - - - - - - -emphasis.propagates.style -boolean - - -emphasis.propagates.style -Pass emphasis role attribute through to HTML? - - - -<xsl:param name="emphasis.propagates.style" select="1"></xsl:param> - - -Description -If non-zero, the role attribute of -emphasis elements will be passed through to the HTML as a -class attribute on a span that surrounds the -emphasis. - - - - - -para.propagates.style -boolean - - -para.propagates.style -Pass para role attribute through to HTML? - - - - -<xsl:param name="para.propagates.style" select="1"></xsl:param> - - - -Description - -If true, the role attribute of para elements -will be passed through to the HTML as a class attribute on the -p generated for the paragraph. - - - - - - -phrase.propagates.style -boolean - - -phrase.propagates.style -Pass phrase role attribute through to HTML? - - - - -<xsl:param name="phrase.propagates.style" select="1"></xsl:param> - - -Description - -If non-zero, the role attribute of phrase elements -will be passed through to the HTML as a class -attribute on a span that surrounds the -phrase. - - - - - - -entry.propagates.style -boolean - - -entry.propagates.style -Pass entry role attribute through to HTML? - - - - -<xsl:param name="entry.propagates.style" select="1"></xsl:param> - - - -Description - -If true, the role attribute of entry elements -will be passed through to the HTML as a class attribute on the -td or th generated for the table -cell. - - - - - - -html.longdesc -boolean - - -html.longdesc -Should longdesc URIs be created? - - - -<xsl:param name="html.longdesc" select="1"></xsl:param> - - -Description -If non-zero, HTML files will be created for the -longdesc attribute. These files -are created from the textobjects in -mediaobjects and -inlinemediaobject. - - - - - - -html.longdesc.link -boolean - - -html.longdesc.link -Should a link to the longdesc be included in the HTML? - - - - -<xsl:param name="html.longdesc.link" select="$html.longdesc"></xsl:param> - - - -Description - -If non-zero, links will be created to the -HTML files created for the -longdesc attribute. It makes no -sense to enable this option without also enabling the -html.longdesc parameter. - - - - - - - - -make.valid.html -boolean - - -make.valid.html -Attempt to make sure the HTML output is valid HTML - - - - -<xsl:param name="make.valid.html" select="0"></xsl:param> - - - -Description - -If make.valid.html is true, the stylesheets take -extra effort to ensure that the resulting HTML is valid. This may mean that some -para tags are translated into HTML divs or -that other substitutions occur. - -This parameter is different from html.cleanup -because it changes the resulting markup; it does not use extension functions -to manipulate result-tree-fragments and is therefore applicable to any -XSLT processor. - - - - - - -html.cleanup -boolean - - -html.cleanup -Attempt to clean up the resulting HTML? - - - - -<xsl:param name="html.cleanup" select="1"></xsl:param> - - - -Description - -If non-zero, and if the EXSLT -extensions are supported by your processor, the resulting HTML will be -cleaned up. This improves the chances that the -resulting HTML will be valid. It may also improve the formatting of -some elements. - -This parameter is different from make.valid.html -because it uses extension functions to manipulate result-tree-fragments. - - - - - - -html.append -string - - -html.append -Specifies content to append to HTML output - - - -<xsl:param name="html.append"></xsl:param> - - -Description - -Specifies content to append to the end of HTML files output by -the html/docbook.xsl stylesheet, after the -closing <html> tag. You probably don’t want to set any -value for this parameter; but if you do, the only value it should ever -be set to is a newline character: &#x0a; or -&#10; - - - - - - -draft.mode -list -no -yes -maybe - - -draft.mode -Select draft mode - - - - -<xsl:param name="draft.mode">maybe</xsl:param> - - - -Description - -Selects draft mode. If draft.mode is -yes, the entire document will be treated -as a draft. If it is no, the entire document -will be treated as a final copy. If it is maybe, -individual sections will be treated as draft or final independently, depending -on how their status attribute is set. - - - - - - - -draft.watermark.image -uri - - -draft.watermark.image -The URI of the image to be used for draft watermarks - - - - -<xsl:param name="draft.watermark.image">http://docbook.sourceforge.net/release/images/draft.png</xsl:param> - - - -Description - -The image to be used for draft watermarks. - - - - - - -generate.id.attributes -boolean - - -generate.id.attributes -Generate ID attributes on container elements? - - - - -<xsl:param name="generate.id.attributes" select="0"></xsl:param> - - - -Description - -If non-zero, the HTML stylesheet will generate ID attributes on -containers. For example, the markup: - -<section id="foo"><title>Some Title</title> -<para>Some para.</para> -</section> - -might produce: - -<div class="section" id="foo"> -<h2>Some Title</h2> -<p>Some para.</p> -</div> - -The alternative is to generate anchors: - -<div class="section"> -<h2><a name="foo"></a>Some Title</h2> -<p>Some para.</p> -</div> - -Because the name attribute of -the a element and the id -attribute of other tags are both of type ID, producing both -generates invalid documents. - -As of version 1.50, you can use this switch to control which type of -identifier is generated. For backwards-compatibility, generating -a anchors is preferred. - -Note: at present, this switch is incompletely implemented. -Disabling ID attributes will suppress them, but enabling ID attributes -will not suppress the anchors. - - - - - - -generate.meta.abstract -boolean - - -generate.meta.abstract -Generate HTML META element from abstract? - - - - -<xsl:param name="generate.meta.abstract" select="1"></xsl:param> - - - -Description - -If non-zero, document abstracts will be reproduced in the HTML -head, with >meta name="description" content="..." - - - - - - -XSLT Processing - - -rootid -string - - -rootid -Specify the root element to format - - - - -<xsl:param name="rootid"></xsl:param> - - -Description - -If rootid is not empty, it must be the -value of an ID that occurs in the document being formatted. The entire -document will be loaded and parsed, but formatting will begin at the -element identified, rather than at the root. For example, this allows -you to process only chapter 4 of a book. -Because the entire document is available to the processor, automatic -numbering, cross references, and other dependencies are correctly -resolved. - - - - - - -suppress.navigation -boolean - - -suppress.navigation -Disable header and footer navigation - - - - -<xsl:param name="suppress.navigation" select="0"></xsl:param> - - - -Description - - -If non-zero, header and footer navigation will be suppressed. - - - - - - -suppress.header.navigation -boolean - - -suppress.header.navigation -Disable header navigation - - - - -<xsl:param name="suppress.header.navigation" select="0"></xsl:param> - - - -Description - -If non-zero, header navigation will be suppressed. - - - - - - -suppress.footer.navigation -boolean - - -suppress.footer.navigation -Disable footer navigation - - - -<xsl:param name="suppress.footer.navigation">0</xsl:param> - - -Description - - -If non-zero, footer navigation will be suppressed. - - - - - - -header.rule -boolean - - -header.rule -Rule under headers? - - - - -<xsl:param name="header.rule" select="1"></xsl:param> - - - -Description - -If non-zero, a rule will be drawn below the page headers. - - - - - - -footer.rule -boolean - - -footer.rule -Rule over footers? - - - - -<xsl:param name="footer.rule" select="1"></xsl:param> - - - -Description - -If non-zero, a rule will be drawn above the page footers. - - - - - - -id.warnings -boolean - - -id.warnings -Should warnings be generated for titled elements without IDs? - - - -<xsl:param name="id.warnings" select="0"></xsl:param> - - -Description -If non-zero, the stylesheet will issue a warning for any element -(other than the root element) which has a title but does not have an -ID. - - - - -Meta/*Info and Titlepages - - -inherit.keywords -boolean - - -inherit.keywords -Inherit keywords from ancestor elements? - - - - -<xsl:param name="inherit.keywords" select="1"></xsl:param> - - -Description - -If inherit.keywords -is non-zero, the keyword meta for each HTML -head element will include all of the keywords from -ancestor elements. Otherwise, only the keywords from the current section -will be used. - - - - - - - -make.single.year.ranges -boolean - - -make.single.year.ranges -Print single-year ranges (e.g., 1998-1999) - - - - -<xsl:param name="make.single.year.ranges" select="0"></xsl:param> - - -Description - -If non-zero, year ranges that span a single year will be printed -in range notation (1998-1999) instead of discrete notation -(1998, 1999). - - - - - - -make.year.ranges -boolean - - -make.year.ranges -Collate copyright years into ranges? - - - -<xsl:param name="make.year.ranges" select="0"></xsl:param> - - -Description - -If non-zero, multiple copyright year elements will be -collated into ranges. -This works only if each year number is put into a separate -year element. The copyright element permits multiple -year elements. If a year element contains a dash or -a comma, then that year element will not be merged into -any range. - - - - - - - -author.othername.in.middle -boolean - - -author.othername.in.middle -Is othername in author a -middle name? - - - - -<xsl:param name="author.othername.in.middle" select="1"></xsl:param> - - -Description - -If non-zero, the othername of an author -appears between the firstname and -surname. Otherwise, othername -is suppressed. - - - - - - - -blurb.on.titlepage.enabled -boolean - - -blurb.on.titlepage.enabled -Display personblurb and authorblurb on title pages? - - - - -<xsl:param name="blurb.on.titlepage.enabled" select="0"></xsl:param> - - - -Description - -If non-zero, output from authorblurb and -personblurb elements is displayed on title pages. If zero -(the default), output from those elements is suppressed on title pages -(unless you are using a titlepage customization -that causes them to be included). - - - - - - -contrib.inline.enabled -boolean - - -contrib.inline.enabled -Display contrib output inline? - - - -<xsl:param name="contrib.inline.enabled">1</xsl:param> - - -Description - -If non-zero (the default), output of the contrib element is -displayed as inline content rather than as block content. - - - - - - -editedby.enabled -boolean - - -editedby.enabled -Display “Edited by” heading above editor name? - - - -<xsl:param name="editedby.enabled">1</xsl:param> - - -Description - -If non-zero, a localized Edited -by heading is displayed above editor names in output of the -editor element. - - - - - - -abstract.notitle.enabled -boolean - - -abstract.notitle.enabled -Suppress display of abstract titles? - - - <xsl:param name="abstract.notitle.enabled" select="0"></xsl:param> - -Description -If non-zero, in output of the abstract element on titlepages, -display of the abstract title is suppressed. - - - - - -othercredit.like.author.enabled -boolean - - -othercredit.like.author.enabled -Display othercredit in same style as author? - - - -<xsl:param name="othercredit.like.author.enabled">0</xsl:param> - - -Description - -If non-zero, output of the -othercredit element on titlepages is displayed in -the same style as author and -editor output. If zero then -othercredit output is displayed using a style -different than that of author and -editor. - - - - - - -generate.legalnotice.link -boolean - - -generate.legalnotice.link -Write legalnotice to separate chunk and generate link? - - - -<xsl:param name="generate.legalnotice.link" select="0"></xsl:param> - - -Description - -If the value of generate.legalnotice.link -is non-zero, the stylesheet: - - - - writes the contents of legalnotice to a separate - HTML file - - - inserts a hyperlink to the legalnotice file - - - adds (in the HTML head) either a single - link or element or multiple - link elements (depending on the value of the - html.head.legalnotice.link.multiple - parameter), with the value or values derived from the - html.head.legalnotice.link.types - parameter - - - - Otherwise, if generate.legalnotice.link is - zero, legalnotice contents are rendered on the title - page. - -The name of the separate HTML file is computed as follows: - - - - If a filename is given by the dbhtml filename -processing instruction, that filename is used. - - - If the legalnotice has an id/xml:id -attribute, and if use.id.as.filename != 0, the filename -is the concatenation of the id value and the value of the html.ext -parameter. - - - If the legalnotice does not have an id/xml:id - attribute, or if use.id.as.filename = 0, the filename is the concatenation of "ln-", -auto-generated id value, and html.ext value. - - - - - - - - - - - -generate.revhistory.link -boolean - - -generate.revhistory.link -Write revhistory to separate chunk and generate link? - - - -<xsl:param name="generate.revhistory.link" select="0"></xsl:param> - - -Description - -If non-zero, the contents of revhistory are written -to a separate HTML file and a link to the file is -generated. Otherwise, revhistory contents are rendered on -the title page. - -The name of the separate HTML file is computed as follows: - - - - If a filename is given by the dbhtml filename processing instruction, -that filename is used. - - - If the revhistory has an id/xml:id -attribute, and if use.id.as.filename != 0, the filename is the concatenation of -the id value and the value of the html.ext parameter. - - - If the revhistory does not have an id/xml:id -attribute, or if use.id.as.filename = 0, the filename is the concatenation of "rh-", -auto-generated id value, and html.ext value. - - - - - - - - - - - -html.head.legalnotice.link.types -string - - -html.head.legalnotice.link.types -Specifies link types for legalnotice link in html head - - - - -<xsl:param name="html.head.legalnotice.link.types">copyright</xsl:param> - - - -Description - -The value of -html.head.legalnotice.link.types is a -space-separated list of link types, as described in Section 6.12 -of the HTML 4.01 specification. If the value of the -generate.legalnotice.link parameter is -non-zero, then the stylesheet generates (in the -head section of the HTML source) either a single -HTML link element or, if the value of the -html.head.legalnotice.link.multiple is -non-zero, one link element for each link type -specified. Each link has the following attributes: - - - - a rel attribute whose - value is derived from the value of - html.head.legalnotice.link.types - - - an href attribute whose - value is set to the URL of the file containing the - legalnotice - - - a title attribute whose - value is set to the title of the corresponding - legalnotice (or a title programatically - determined by the stylesheet) - - - -For example: - - <link rel="license" href="ln-id2524073.html" title="Legal Notice"> - - -About the default value - - In an ideal world, the default value of - html.head.legalnotice.link.types would - probably be “license”, since the content of the - DocBook legalnotice is typically license - information, not copyright information. However, the default value - is “copyright” for pragmatic reasons: because - that’s among the set of “recognized link types” listed in Section - 6.12 of the HTML 4.01 specification, and because certain - browsers and browser extensions are preconfigured to recognize that - value. - - - - - - - -html.head.legalnotice.link.multiple -boolean - - -html.head.legalnotice.link.multiple -Generate multiple link instances in html head for legalnotice? - - - - -<xsl:param name="html.head.legalnotice.link.multiple" select="1"></xsl:param> - - - -Description - -If html.head.legalnotice.link.multiple is -non-zero and the value of -html.head.legalnotice.link.types contains -multiple link types, then the stylesheet generates (in the -head section of the HTML source) one -link element for each link type specified. For -example, if the value of -html.head.legalnotice.link.types is -“copyright license”: - - <link rel="copyright" href="ln-id2524073.html" title="Legal Notice"> - <link rel="license" href="ln-id2524073.html" title="Legal Notice"> - - Otherwise, the stylesheet generates generates a single - link instance; for example: - - <link rel="copyright license" href="ln-id2524073.html" title="Legal Notice"> - - - - - - -Reference Pages - - -funcsynopsis.decoration -boolean - - -funcsynopsis.decoration -Decorate elements of a funcsynopsis? - - - - -<xsl:param name="funcsynopsis.decoration" select="1"></xsl:param> - - - -Description - -If non-zero, elements of the funcsynopsis will be -decorated (e.g. rendered as bold or italic text). The decoration is controlled by -templates that can be redefined in a customization layer. - - - - - - - -funcsynopsis.style -list -ansi -kr - - -funcsynopsis.style -What style of funcsynopsis should be generated? - - - -<xsl:param name="funcsynopsis.style">kr</xsl:param> - - -Description - -If funcsynopsis.style is ansi, -ANSI-style function synopses are generated for a -funcsynopsis, otherwise K&R-style -function synopses are generated. - - - - - - - -function.parens -boolean - - -function.parens -Generate parens after a function? - - - - -<xsl:param name="function.parens" select="0"></xsl:param> - - - -Description - -If non-zero, the formatting of a function element -will include generated parentheses. - - - - - - - -refentry.generate.name -boolean - - -refentry.generate.name -Output NAME header before refnames? - - - - -<xsl:param name="refentry.generate.name" select="1"></xsl:param> - - - -Description - -If non-zero, a "NAME" section title is output before the list -of refnames. This parameter and -refentry.generate.title are mutually -exclusive. This means that if you change this parameter to zero, you -should set refentry.generate.title to non-zero unless -you want get quite strange output. - - - - - - - -refentry.generate.title -boolean - - -refentry.generate.title -Output title before refnames? - - - - -<xsl:param name="refentry.generate.title" select="0"></xsl:param> - - - -Description - -If non-zero, the reference page title or first name is -output before the list of refnames. This parameter and -refentry.generate.name are mutually exclusive. -This means that if you change this parameter to non-zero, you -should set refentry.generate.name to zero unless -you want get quite strange output. - - - - - - - -refentry.xref.manvolnum -boolean - - -refentry.xref.manvolnum -Output manvolnum as part of -refentry cross-reference? - - - - -<xsl:param name="refentry.xref.manvolnum" select="1"></xsl:param> - - - -Description - -if non-zero, the manvolnum is used when cross-referencing -refentrys, either with xref -or citerefentry. - - - - - - - -citerefentry.link -boolean - - -citerefentry.link -Generate URL links when cross-referencing RefEntrys? - - - - -<xsl:param name="citerefentry.link" select="0"></xsl:param> - - -Description - -If non-zero, a web link will be generated, presumably -to an online man->HTML gateway. The text of the link is -generated by the generate.citerefentry.link template. - - - - - - - -refentry.separator -boolean - - -refentry.separator -Generate a separator between consecutive RefEntry elements? - - - - -<xsl:param name="refentry.separator" select="1"></xsl:param> - - - -Description - -If true, a separator will be generated between consecutive -reference pages. - - - - - - - -refclass.suppress -boolean - - -refclass.suppress -Suppress display of refclass contents? - - - - -<xsl:param name="refclass.suppress" select="0"></xsl:param> - - -Description - -If the value of refclass.suppress is -non-zero, then display of refclass contents is -suppressed in output. - - - - - -Tables - - -default.table.width -length - - -default.table.width -The default width of tables - - - -<xsl:param name="default.table.width"></xsl:param> - - -Description -If non-zero, this value will be used for the -width attribute on tables that do not specify an -alternate width (with the dbhtml table-width or -dbfo table-width processing instruction). - - - - - -nominal.table.width -length - - -nominal.table.width -The (absolute) nominal width of tables - - - - -<xsl:param name="nominal.table.width">6in</xsl:param> - - - -Description - -In order to convert CALS column widths into HTML column widths, it -is sometimes necessary to have an absolute table width to use for conversion -of mixed absolute and relative widths. This value must be an absolute -length (not a percentage). - - - - - - -table.borders.with.css -boolean - - -table.borders.with.css -Use CSS to specify table, row, and cell borders? - - - - -<xsl:param name="table.borders.with.css" select="0"></xsl:param> - - - -Description - -If non-zero, CSS will be used to draw table borders. - - - - - - - -table.cell.border.style -list -none -solid -dotted -dashed -double -groove -ridge -inset -outset -solid - - -table.cell.border.style -Specifies the border style of table cells - - - - -<xsl:param name="table.cell.border.style">solid</xsl:param> - - - -Description - -Specifies the border style of table cells. - - - To control properties of cell borders in HTML output, you must also turn on the - table.borders.with.css parameter. - - - - - - - -table.cell.border.thickness -length - - -table.cell.border.thickness -Specifies the thickness of table cell borders - - - - -<xsl:param name="table.cell.border.thickness">0.5pt</xsl:param> - - - -Description - -If non-zero, specifies the thickness of borders on table -cells. The units are points. See -CSS - - - To control properties of cell borders in HTML output, you must also turn on the - table.borders.with.css parameter. - - - - - - - -table.cell.border.color -color - - -table.cell.border.color -Specifies the border color of table cells - - - - -<xsl:param name="table.cell.border.color"></xsl:param> - - - - -Description - -Set the color of table cell borders. If non-zero, the value is used -for the border coloration. See CSS. A -color is either a keyword or a numerical RGB specification. -Keywords are aqua, black, blue, fuchsia, gray, green, lime, maroon, -navy, olive, orange, purple, red, silver, teal, white, and -yellow. - - - To control properties of cell borders in HTML output, you must also turn on the - table.borders.with.css parameter. - - - - - - - -table.frame.border.style -list -none -solid -dotted -dashed -double -groove -ridge -inset -outset -solid - - -table.frame.border.style -Specifies the border style of table frames - - - - -<xsl:param name="table.frame.border.style">solid</xsl:param> - - - -Description - -Specifies the border style of table frames. - - - - - - -table.frame.border.thickness -length - - -table.frame.border.thickness -Specifies the thickness of the frame border - - - - -<xsl:param name="table.frame.border.thickness">0.5pt</xsl:param> - - - -Description - -Specifies the thickness of the border on the table's frame. - - - - - - -table.frame.border.color -color - - -table.frame.border.color -Specifies the border color of table frames - - - - -<xsl:param name="table.frame.border.color"></xsl:param> - - - - -Description - -Specifies the border color of table frames. - - - - - - -default.table.frame -string - - -default.table.frame -The default framing of tables - - - - -<xsl:param name="default.table.frame">all</xsl:param> - - - -Description - -This value will be used when there is no frame attribute on the -table. - - - - - - -html.cellspacing -integer - - -html.cellspacing -Default value for cellspacing in HTML tables - - - - -<xsl:param name="html.cellspacing"></xsl:param> - - - -Description - -If non-zero, this value will be used as the default cellspacing -value in HTML tables. nn for pixels or nn% for percentage -length. E.g. 5 or 5% - - - - - - -html.cellpadding -integer - - -html.cellpadding -Default value for cellpadding in HTML tables - - - - -<xsl:param name="html.cellpadding"></xsl:param> - - - -Description - -If non-zero, this value will be used as the default cellpadding value -in HTML tables. nn for pixels or nn% for percentage length. E.g. 5 or -5% - - - - - -QAndASet - - -qanda.defaultlabel -list -number -qanda -none - - -qanda.defaultlabel -Sets the default for defaultlabel on QandASet. - - - - -<xsl:param name="qanda.defaultlabel">number</xsl:param> - - - -Description - -If no defaultlabel attribute is specified on -a qandaset, this value is used. It is generally one of the legal -values for the defaultlabel attribute (none, -number or -qanda), or one of the additional stylesheet-specific values -(qnumber or qnumberanda). -The default value is 'number'. - -The values are rendered as follows: - -qanda - -questions are labeled "Q:" and -answers are labeled "A:". - - - -number - -The questions are enumerated and the answers -are not labeled. - - - -qnumber - -The questions are labeled "Q:" followed by a number, and answers are not -labeled. -When sections are numbered, adding a label -to the number distinguishes the question numbers -from the section numbers. -This value is not allowed in the -defaultlabel attribute -of a qandaset element. - - - -qnumberanda - -The questions are labeled "Q:" followed by a number, and -the answers are labeled "A:". -When sections are numbered, adding a label -to the number distinguishes the question numbers -from the section numbers. -This value is not allowed in the -defaultlabel attribute -of a qandaset element. - - - -none - -No distinguishing label precedes Questions or Answers. - - - - - - - - - - -qanda.inherit.numeration -boolean - - -qanda.inherit.numeration -Does enumeration of QandASet components inherit the numeration of parent elements? - - - - -<xsl:param name="qanda.inherit.numeration" select="1"></xsl:param> - - - -Description - -If non-zero, numbered qandadiv elements and -question and answer inherit the enumeration of -the ancestors of the qandaset. - - - - - - - -qanda.in.toc -boolean - - -qanda.in.toc -Should qandaentry questions appear in -the document table of contents? - - - -<xsl:param name="qanda.in.toc" select="0"></xsl:param> - - -Description - -If true (non-zero), then the generated table of contents -for a document will include qandaset titles, -qandadiv titles, -and question elements. The default value (zero) excludes -them from the TOC. - -This parameter does not affect any tables of contents -that may be generated inside a qandaset or qandadiv. - - - - - - - -qanda.nested.in.toc -boolean - - -qanda.nested.in.toc -Should nested answer/qandaentry instances appear in TOC? - - - - -<xsl:param name="qanda.nested.in.toc" select="0"></xsl:param> - - - -Description - -If non-zero, instances of qandaentry -that are children of answer elements are shown in -the TOC. - - - - - -Linking - - -target.database.document -uri - - -target.database.document -Name of master database file for resolving -olinks - - - - <xsl:param name="target.database.document">olinkdb.xml</xsl:param> - - -Description - - -To resolve olinks between documents, the stylesheets use a master -database document that identifies the target datafiles for all the -documents within the scope of the olinks. This parameter value is the -URI of the master document to be read during processing to resolve -olinks. The default value is olinkdb.xml. - -The data structure of the file is defined in the -targetdatabase.dtd DTD. The database file -provides the high level elements to record the identifiers, locations, -and relationships of documents. The cross reference data for -individual documents is generally pulled into the database using -system entity references or XIncludes. See also -targets.filename. - - - - -targets.filename -string - - -targets.filename -Name of cross reference targets data file - - -<xsl:param name="targets.filename">target.db</xsl:param> - - -Description - - -In order to resolve olinks efficiently, the stylesheets can -generate an external data file containing information about -all potential cross reference endpoints in a document. -This parameter lets you change the name of the generated -file from the default name target.db. -The name must agree with that used in the target database -used to resolve olinks during processing. -See also target.database.document. - - - - - - -olink.base.uri -uri - - -olink.base.uri -Base URI used in olink hrefs - - -<xsl:param name="olink.base.uri"></xsl:param> - - -Description - -When cross reference data is collected for resolving olinks, it -may be necessary to prepend a base URI to each target's href. This -parameter lets you set that base URI when cross reference data is -collected. This feature is needed when you want to link to a document -that is processed without chunking. The output filename for such a -document is not known to the XSL stylesheet; the only target -information consists of fragment identifiers such as -#idref. To enable the resolution of olinks between -documents, you should pass the name of the HTML output file as the -value of this parameter. Then the hrefs recorded in the cross -reference data collection look like -outfile.html#idref, which can be reached as links -from other documents. - - - - - -use.local.olink.style -boolean - - -use.local.olink.style -Process olinks using xref style of current -document - - -<xsl:param name="use.local.olink.style" select="0"></xsl:param> - -Description - -When cross reference data is collected for use by olinks, the data for each potential target includes one field containing a completely assembled cross reference string, as if it were an xref generated in that document. Other fields record the separate title, number, and element name of each target. When an olink is formed to a target from another document, the olink resolves to that preassembled string by default. If the use.local.olink.style parameter is set to non-zero, then instead the cross -reference string is formed again from the target title, number, and -element name, using the stylesheet processing the targeting document. -Then olinks will match the xref style in the targeting document -rather than in the target document. If both documents are processed -with the same stylesheet, then the results will be the same. - - - - - -current.docid -string - - -current.docid -targetdoc identifier for the document being -processed - - -<xsl:param name="current.docid"></xsl:param> - - -Description - -When olinks between documents are resolved for HTML output, the stylesheet can compute the relative path between the current document and the target document. The stylesheet needs to know the targetdoc identifiers for both documents, as they appear in the target.database.document database file. This parameter passes to the stylesheet -the targetdoc identifier of the current document, since that -identifier does not appear in the document itself. -This parameter can also be used for print output. If an olink's targetdoc id differs from the current.docid, then the stylesheet can append the target document's title to the generated olink text. That identifies to the reader that the link is to a different document, not the current document. See also olink.doctitle to enable that feature. - - - - - -olink.doctitle -list -no -yes -maybe - - -olink.doctitle -show the document title for external olinks? - - - -<xsl:param name="olink.doctitle">no</xsl:param> - - -Description - -When olinks between documents are resolved, the generated text -may not make it clear that the reference is to another document. -It is possible for the stylesheets to append the other document's -title to external olinks. For this to happen, two parameters must -be set. - - -This olink.doctitle parameter -should be set to either yes or maybe -to enable this feature. - - - -And you should also set the current.docid -parameter to the document id for the document currently -being processed for output. - - - - - -Then if an olink's targetdoc id differs from -the current.docid value, the stylesheet knows -that it is a reference to another document and can -append the target document's -title to the generated olink text. - -The text for the target document's title is copied from the -olink database from the ttl element -of the top-level div for that document. -If that ttl element is missing or empty, -no title is output. - - -The supported values for olink.doctitle are: - - - -yes - - -Always insert the title to the target document if it is not -the current document. - - - - -no - - -Never insert the title to the target document, even if requested -in an xrefstyle attribute. - - - - -maybe - - -Only insert the title to the target document, if requested -in an xrefstyle attribute. - - - - -An xrefstyle attribute -may override the global setting for individual olinks. -The following values are supported in an -xrefstyle -attribute using the select: syntax: - - - - -docname - - -Insert the target document name for this olink using the -docname gentext template, but only -if the value of olink.doctitle -is not no. - - - - -docnamelong - - -Insert the target document name for this olink using the -docnamelong gentext template, but only -if the value of olink.doctitle -is not no. - - - - -nodocname - - -Omit the target document name even if -the value of olink.doctitle -is yes. - - - - -Another way of inserting the target document name -for a single olink is to employ an -xrefstyle -attribute using the template: syntax. -The %o placeholder (the letter o, not zero) -in such a template -will be filled in with the target document's title when it is processed. -This will occur regardless of -the value of olink.doctitle. - -Note that prior to version 1.66 of the XSL stylesheets, -the allowed values for this parameter were 0 and 1. Those -values are still supported and mapped to 'no' and 'yes', respectively. - - - - - - -olink.debug -boolean - - -olink.debug -Turn on debugging messages for olinks - - - - -<xsl:param name="olink.debug" select="0"></xsl:param> - - - -Description - -If non-zero, then each olink will generate several -messages about how it is being resolved during processing. -This is useful when an olink does not resolve properly -and the standard error messages are not sufficient to -find the problem. - - -You may need to read through the olink XSL templates -to understand the context for some of the debug messages. - - - - - - - -olink.properties -attribute set - - -olink.properties -Properties associated with the cross-reference -text of an olink. - - - - -<xsl:attribute-set name="olink.properties"> - <xsl:attribute name="show-destination">replace</xsl:attribute> -</xsl:attribute-set> - - - -Description - -This attribute set is applied to the -fo:basic-link element of an olink. It is not applied to the -optional page number or optional title of the external -document. - - - - - - -olink.lang.fallback.sequence -string - - -olink.lang.fallback.sequence -look up translated documents if olink not found? - - - -<xsl:param name="olink.lang.fallback.sequence"></xsl:param> - - -Description - - -This parameter defines a list of lang values -to search among to resolve olinks. - - -Normally an olink tries to resolve to a document in the same -language as the olink itself. The language of an olink -is determined by its nearest ancestor element with a -lang attribute, otherwise the -value of the l10n.gentext.default.lang -parameter. - - -An olink database can contain target data for the same -document in multiple languages. Each set of data has the -same value for the targetdoc attribute in -the document element in the database, but with a -different lang attribute value. - - -When an olink is being resolved, the target is first -sought in the document with the same language as the olink. -If no match is found there, then this parameter is consulted -for additional languages to try. - -The olink.lang.fallback.sequence -must be a whitespace separated list of lang values to -try. The first one with a match in the olink database is used. -The default value is empty. - -For example, a document might be written in German -and contain an olink with -targetdoc="adminguide". -When the document is processed, the processor -first looks for a target dataset in the -olink database starting with: - -<document targetdoc="adminguide" lang="de">. - - -If there is no such element, then the -olink.lang.fallback.sequence -parameter is consulted. -If its value is, for example, fr en, then the processor next -looks for targetdoc="adminguide" lang="fr", and -then for targetdoc="adminguide" lang="en". -If there is still no match, it looks for -targetdoc="adminguide" with no -lang attribute. - - -This parameter is useful when a set of documents is only -partially translated, or is in the process of being translated. -If a target of an olink has not yet been translated, then this -parameter permits the processor to look for the document in -other languages. This assumes the reader would rather have -a link to a document in a different language than to have -a broken link. - - - - - - - -insert.olink.page.number -list -no -yes -maybe - - -insert.olink.page.number -Turns page numbers in olinks on and off - - - - -<xsl:param name="insert.olink.page.number">no</xsl:param> - - - -Description - -The value of this parameter determines if -cross references made between documents with -olink will -include page number citations. -In most cases this is only applicable to references in printed output. - -The parameter has three possible values. - - - -no -No page number references will be generated for olinks. - - - -yes -Page number references will be generated -for all olink references. -The style of page reference may be changed -if an xrefstyle -attribute is used. - - - -maybe -Page number references will not be generated -for an olink element unless -it has an -xrefstyle -attribute whose value specifies a page reference. - - - -Olinks that point to targets within the same document -are treated as xrefs, and controlled by -the insert.xref.page.number parameter. - - -Page number references for olinks to -external documents can only be inserted if the -information exists in the olink database. -This means each olink target element -(div or obj) -must have a page attribute -whose value is its page number in the target document. -The XSL stylesheets are not able to extract that information -during processing because pages have not yet been created in -XSLT transformation. Only the XSL-FO processor knows what -page each element is placed on. -Therefore some postprocessing must take place to populate -page numbers in the olink database. - - - - - - - - - -insert.olink.pdf.frag -boolean - - -insert.olink.pdf.frag -Add fragment identifiers for links into PDF files - - - - -<xsl:param name="insert.olink.pdf.frag" select="0"></xsl:param> - - - -Description - -The value of this parameter determines whether -the cross reference URIs to PDF documents made with -olink will -include fragment identifiers. - - -When forming a URI to link to a PDF document, -a fragment identifier (typically a '#' followed by an -id value) appended to the PDF filename can be used by -the PDF viewer to open -the PDF file to a location within the document instead of -the first page. -However, not all PDF files have id -values embedded in them, and not all PDF viewers can -handle fragment identifiers. - - -If insert.olink.pdf.frag is set -to a non-zero value, then any olink targeting a -PDF file will have the fragment identifier appended to the URI. -The URI is formed by concatenating the value of the -olink.base.uri parameter, the -value of the baseuri -attribute from the document -element in the olink database with the matching -targetdoc value, -and the value of the href -attribute for the targeted element in the olink database. -The href attribute -contains the fragment identifier. - - -If insert.olink.pdf.frag is set -to zero (the default value), then -the href attribute -from the olink database -is not appended to PDF olinks, so the fragment identifier is left off. -A PDF olink is any olink for which the -baseuri attribute -from the matching document -element in the olink database ends with '.pdf'. -Any other olinks will still have the fragment identifier added. - - - - - - -prefer.internal.olink -boolean - - -prefer.internal.olink -Prefer a local olink reference to an external reference - - - - -<xsl:param name="prefer.internal.olink" select="0"></xsl:param> - - - -Description - -If you are re-using XML content modules in multiple documents, -you may want to redirect some of your olinks. This parameter -permits you to redirect an olink to the current document. - - -For example: you are writing documentation for a product, -which includes 3 manuals: a little installation -booklet (booklet.xml), a user -guide (user.xml), and a reference manual (reference.xml). -All 3 documents begin with the same introduction section (intro.xml) that -contains a reference to the customization section (custom.xml) which is -included in both user.xml and reference.xml documents. - - -How do you write the link to custom.xml in intro.xml -so that it is interpreted correctly in all 3 documents? - -If you use xref, it will fail in user.xml. - -If you use olink (pointing to reference.xml), -the reference in user.xml -will point to the customization section of the reference manual, while it is -actually available in user.xml. - - - -If you set the prefer.internal.olink -parameter to a non-zero value, then the processor will -first look in the olink database -for the olink's targetptr attribute value -in document matching the current.docid -parameter value. If it isn't found there, then -it tries the document in the database -with the targetdoc -value that matches the olink's targetdoc -attribute. - - -This feature permits an olink reference to resolve to -the current document if there is an element -with an id matching the olink's targetptr -value. The current document's olink data must be -included in the target database for this to work. - - -There is a potential for incorrect links if -the same id attribute value is used for different -content in different documents. -Some of your olinks may be redirected to the current document -when they shouldn't be. It is not possible to control -individual olink instances. - - - - - - - -link.mailto.url -string - - -link.mailto.url -Mailto URL for the LINK REL=made HTML HEAD element - - - - -<xsl:param name="link.mailto.url"></xsl:param> - - - -Description - -If not the empty string, this address will be used for the -rel=made link element in the html head - - - - - - - -ulink.target -string - - -ulink.target -The HTML anchor target for ULinks - - - - -<xsl:param name="ulink.target">_top</xsl:param> - - - -Description - -If ulink.target is non-zero, its value will -be used for the target attribute -on anchors generated for ulinks. - - - - - - -olink.fragid -string - - -olink.fragid -Names the fragment identifier portion of an OLink resolver query - - - -<xsl:param name="olink.fragid">fragid=</xsl:param> - - -Description -The fragment identifier portion of an olink target. - - - - - -olink.outline.ext -string - - -olink.outline.ext -The extension of OLink outline files - - - - -<xsl:param name="olink.outline.ext">.olink</xsl:param> - - - -Description - -The extension to be expected for OLink outline files -Bob has this parameter as dead. Please don't use - - - - - - -olink.pubid -string - - -olink.pubid -Names the public identifier portion of an OLink resolver query - - - - -<xsl:param name="olink.pubid">pubid</xsl:param> - - - -Description - - - - - - - - -olink.sysid -string - - -olink.sysid -Names the system identifier portion of an OLink resolver query - - - - -<xsl:param name="olink.sysid">sysid</xsl:param> - - - -Description - -FIXME - - - - - - -olink.resolver -string - - -olink.resolver -The root name of the OLink resolver (usually a script) - - - - <xsl:param name="olink.resolver">/cgi-bin/olink</xsl:param> - - -Description -FIXME: - - - - -Cross References - - -collect.xref.targets -list -no -yes -only - - -collect.xref.targets -Controls whether cross reference data is -collected - - -<xsl:param name="collect.xref.targets">no</xsl:param> - - -Description - - -In order to resolve olinks efficiently, the stylesheets can -generate an external data file containing information about -all potential cross reference endpoints in a document. -This parameter determines whether the collection process is run when the document is processed by the stylesheet. The default value is no, which means the data file is not generated during processing. The other choices are yes, which means the data file is created and the document is processed for output, and only, which means the data file is created but the document is not processed for output. -See also targets.filename. - - - - - - -insert.xref.page.number -list -no -yes -maybe - - -insert.xref.page.number -Turns page numbers in xrefs on and off - - - - -<xsl:param name="insert.xref.page.number">no</xsl:param> - - - -Description - -The value of this parameter determines if -cross references (xrefs) in -printed output will -include page number citations. -It has three possible values. - - - -no -No page number references will be generated. - - - -yes -Page number references will be generated -for all xref elements. -The style of page reference may be changed -if an xrefstyle -attribute is used. - - - -maybe -Page number references will not be generated -for an xref element unless -it has an -xrefstyle -attribute whose value specifies a page reference. - - - - - - - - - -use.role.as.xrefstyle -boolean - - -use.role.as.xrefstyle -Use role attribute for -xrefstyle on xref? - - - - -<xsl:param name="use.role.as.xrefstyle" select="1"></xsl:param> - - - -Description - -In DocBook documents that conform to a schema older than V4.3, this parameter allows -role to serve the purpose of specifying the cross reference style. - -If non-zero, the role attribute on -xref will be used to select the cross reference style. -In DocBook V4.3, the xrefstyle attribute was added for this purpose. -If the xrefstyle attribute is present, -role will be ignored, regardless of the setting -of this parameter. - - - -Example - -The following small stylesheet shows how to configure the -stylesheets to make use of the cross reference style: - -<?xml version="1.0"?> -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" - version="1.0"> - -<xsl:import href="../xsl/html/docbook.xsl"/> - -<xsl:output method="html"/> - -<xsl:param name="local.l10n.xml" select="document('')"/> -<l:i18n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0"> - <l:l10n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0" language="en"> - <l:context name="xref"> - <l:template name="chapter" style="title" text="Chapter %n, %t"/> - <l:template name="chapter" text="Chapter %n"/> - </l:context> - </l:l10n> -</l:i18n> - -</xsl:stylesheet> - -With this stylesheet, the cross references in the following document: - -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN" - "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd"> -<book id="book"><title>Book</title> - -<preface> -<title>Preface</title> - -<para>Normal: <xref linkend="ch1"/>.</para> -<para>Title: <xref xrefstyle="title" linkend="ch1"/>.</para> - -</preface> - -<chapter id="ch1"> -<title>First Chapter</title> - -<para>Irrelevant.</para> - -</chapter> -</book> - -will appear as: - - -Normal: Chapter 1. -Title: Chapter 1, First Chapter. - - - - - - - -xref.with.number.and.title -boolean - - -xref.with.number.and.title -Use number and title in cross references - - - - -<xsl:param name="xref.with.number.and.title" select="1"></xsl:param> - - - -Description - -A cross reference may include the number (for example, the number of -an example or figure) and the title which is a required child of some -targets. This parameter inserts both the relevant number as well as -the title into the link. - - - - - - -xref.label-page.separator -string - - -xref.label-page.separator -Punctuation or space separating label from page number in xref - - - -<xsl:param name="xref.label-page.separator"><xsl:text> </xsl:text></xsl:param> - - -Description - - -This parameter allows you to control the punctuation of certain -types of generated cross reference text. -When cross reference text is generated for an -xref or -olink element -using an xrefstyle attribute -that makes use of the select: feature, -and the selected components include both label and page -but no title, -then the value of this parameter is inserted between -label and page number in the output. -If a title is included, then other separators are used. - - - - - - - -xref.label-title.separator -string - - -xref.label-title.separator -Punctuation or space separating label from title in xref - - - -<xsl:param name="xref.label-title.separator">: </xsl:param> - - -Description - - -This parameter allows you to control the punctuation of certain -types of generated cross reference text. -When cross reference text is generated for an -xref or -olink element -using an xrefstyle attribute -that makes use of the select: feature, -and the selected components include both label and title, -then the value of this parameter is inserted between -label and title in the output. - - - - - - - -xref.title-page.separator -string - - -xref.title-page.separator -Punctuation or space separating title from page number in xref - - - -<xsl:param name="xref.title-page.separator"><xsl:text> </xsl:text></xsl:param> - - -Description - - -This parameter allows you to control the punctuation of certain -types of generated cross reference text. -When cross reference text is generated for an -xref or -olink element -using an xrefstyle attribute -that makes use of the select: feature, -and the selected components include both title and page number, -then the value of this parameter is inserted between -title and page number in the output. - - - - - - -Lists - - -segmentedlist.as.table -boolean - - -segmentedlist.as.table -Format segmented lists as tables? - - - - -<xsl:param name="segmentedlist.as.table" select="0"></xsl:param> - - - -Description - -If non-zero, segmentedlists will be formatted as -tables. - - - - - - -variablelist.as.table -boolean - - -variablelist.as.table -Format variablelists as tables? - - - - -<xsl:param name="variablelist.as.table" select="0"></xsl:param> - - - -Description - -If non-zero, variablelists will be formatted as -tables. A processing instruction exists to specify a particular width for the -column containing the terms: -dbhtml term-width=".25in" - -You can override this setting with a processing instruction as the -child of variablelist: dbhtml -list-presentation="table" or dbhtml -list-presentation="list". - -This parameter only applies to the HTML transformations. In the -FO case, proper list markup is robust enough to handle the formatting. -But see also variablelist.as.blocks. - - <variablelist> - <?dbhtml list-presentation="table"?> - <?dbhtml term-width="1.5in"?> - <?dbfo list-presentation="list"?> - <?dbfo term-width="1in"?> - <varlistentry> - <term>list</term> - <listitem> - <para> - Formatted as a table even if variablelist.as.table is set to 0. - </para> - </listitem> - </varlistentry> - </variablelist> - - - - - - -variablelist.term.separator -string - - -variablelist.term.separator -Text to separate terms within a multi-term -varlistentry - - - - -<xsl:param name="variablelist.term.separator">, </xsl:param> - - -Description - -When a varlistentry contains multiple term -elements, the string specified in the value of the -variablelist.term.separator parameter is placed -after each term except the last. - - - To generate a line break between multiple terms in - a varlistentry, set a non-zero value for the - variablelist.term.break.after parameter. If - you do so, you may also want to set the value of the - variablelist.term.separator parameter to an - empty string (to suppress rendering of the default comma and space - after each term). - - - - - - - -variablelist.term.break.after -boolean - - -variablelist.term.break.after -Generate line break after each term within a -multi-term varlistentry? - - - - -<xsl:param name="variablelist.term.break.after">0</xsl:param> - - -Description - -Set a non-zero value for the -variablelist.term.break.after parameter to -generate a line break between terms in a -multi-term varlistentry. - - -If you set a non-zero value for -variablelist.term.break.after, you may also -want to set the value of the -variablelist.term.separator parameter to an -empty string (to suppress rendering of the default comma and space -after each term). - - - - - - -Bibliography - - -bibliography.style -list -normal -iso690 - - -bibliography.style -Style used for formatting of biblioentries. - - - - -<xsl:param name="bibliography.style">normal</xsl:param> - - - -Description - -Currently only normal and -iso690 styles are supported. - -In order to use ISO690 style to the full extent you might need -to use additional markup described on the -following WiKi page. - - - - - - -biblioentry.item.separator -string - - -biblioentry.item.separator -Text to separate bibliography entries - - - -<xsl:param name="biblioentry.item.separator">. </xsl:param> - - -Description - -Text to separate bibliography entries - - - - - - - -bibliography.collection -string - - -bibliography.collection -Name of the bibliography collection file - - - - -<xsl:param name="bibliography.collection">http://docbook.sourceforge.net/release/bibliography/bibliography.xml</xsl:param> - - - - -Description - -Maintaining bibliography entries across a set of documents is tedious, time -consuming, and error prone. It makes much more sense, usually, to store all of -the bibliography entries in a single place and simply extract -the ones you need in each document. - -That's the purpose of the -bibliography.collection parameter. To setup a global -bibliography database, follow these steps: - -First, create a stand-alone bibliography document that contains all of -the documents that you wish to reference. Make sure that each bibliography -entry (whether you use biblioentry or bibliomixed) -has an ID. - -My global bibliography, ~/bibliography.xml begins -like this: - - -<!DOCTYPE bibliography - PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN" - "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd"> -<bibliography><title>References</title> - -<bibliomixed id="xml-rec"><abbrev>XML 1.0</abbrev>Tim Bray, -Jean Paoli, C. M. Sperberg-McQueen, and Eve Maler, editors. -<citetitle><ulink url="http://www.w3.org/TR/REC-xml">Extensible Markup -Language (XML) 1.0 Second Edition</ulink></citetitle>. -World Wide Web Consortium, 2000. -</bibliomixed> - -<bibliomixed id="xml-names"><abbrev>Namespaces</abbrev>Tim Bray, -Dave Hollander, -and Andrew Layman, editors. -<citetitle><ulink url="http://www.w3.org/TR/REC-xml-names/">Namespaces in -XML</ulink></citetitle>. -World Wide Web Consortium, 1999. -</bibliomixed> - -<!-- ... --> -</bibliography> - - - -When you create a bibliography in your document, simply -provide empty bibliomixed -entries for each document that you wish to cite. Make sure that these -elements have the same ID as the corresponding real -entry in your global bibliography. - -For example: - - -<bibliography><title>Bibliography</title> - -<bibliomixed id="xml-rec"/> -<bibliomixed id="xml-names"/> -<bibliomixed id="DKnuth86">Donald E. Knuth. <citetitle>Computers and -Typesetting: Volume B, TeX: The Program</citetitle>. Addison-Wesley, -1986. ISBN 0-201-13437-3. -</bibliomixed> -<bibliomixed id="relaxng"/> - -</bibliography> - - -Note that it's perfectly acceptable to mix entries from your -global bibliography with normal entries. You can use -xref or other elements to cross-reference your -bibliography entries in exactly the same way you do now. - -Finally, when you are ready to format your document, simply set the -bibliography.collection parameter (in either a -customization layer or directly through your processor's interface) to -point to your global bibliography. - -The stylesheets will format the bibliography in your document as if -all of the entries referenced appeared there literally. - - - - - - -bibliography.numbered -boolean - - -bibliography.numbered -Should bibliography entries be numbered? - - - - -<xsl:param name="bibliography.numbered" select="0"></xsl:param> - - - -Description - -If non-zero bibliography entries will be numbered - - - - - -Glossary - - -glossterm.auto.link -boolean - - -glossterm.auto.link -Generate links from glossterm to glossentry automatically? - - - - -<xsl:param name="glossterm.auto.link" select="0"></xsl:param> - - - -Description - -If non-zero, links from inline glossterms to the corresponding -glossentry elements in a glossary or glosslist -will be automatically generated. This is useful when your glossterms are consistent -and you don't want to add links manually. - -The automatic link generation feature is not used on glossterm elements -that have a linkend attribute. - - - - - - -firstterm.only.link -boolean - - -firstterm.only.link -Does automatic glossterm linking only apply to firstterms? - - - - -<xsl:param name="firstterm.only.link" select="0"></xsl:param> - - - -Description - -If non-zero, only firstterms will be automatically linked -to the glossary. If glossary linking is not enabled, this parameter -has no effect. - - - - - - -glossary.collection -string - - -glossary.collection -Name of the glossary collection file - - - - -<xsl:param name="glossary.collection"></xsl:param> - - - -Description - -Glossaries maintained independently across a set of documents -are likely to become inconsistent unless considerable effort is -expended to keep them in sync. It makes much more sense, usually, to -store all of the glossary entries in a single place and simply -extract the ones you need in each document. - -That's the purpose of the -glossary.collection parameter. To setup a global -glossary database, follow these steps: - -Setting Up the Glossary Database - -First, create a stand-alone glossary document that contains all of -the entries that you wish to reference. Make sure that each glossary -entry has an ID. - -Here's an example glossary: - - - -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE glossary - PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN" - "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd"> -<glossary> -<glossaryinfo> -<editor><firstname>Eric</firstname><surname>Raymond</surname></editor> -<title>Jargon File 4.2.3 (abridged)</title> -<releaseinfo>Just some test data</releaseinfo> -</glossaryinfo> - -<glossdiv><title>0</title> - -<glossentry> -<glossterm>0</glossterm> -<glossdef> -<para>Numeric zero, as opposed to the letter `O' (the 15th letter of -the English alphabet). In their unmodified forms they look a lot -alike, and various kluges invented to make them visually distinct have -compounded the confusion. If your zero is center-dotted and letter-O -is not, or if letter-O looks almost rectangular but zero looks more -like an American football stood on end (or the reverse), you're -probably looking at a modern character display (though the dotted zero -seems to have originated as an option on IBM 3270 controllers). If -your zero is slashed but letter-O is not, you're probably looking at -an old-style ASCII graphic set descended from the default typewheel on -the venerable ASR-33 Teletype (Scandinavians, for whom /O is a letter, -curse this arrangement). (Interestingly, the slashed zero long -predates computers; Florian Cajori's monumental "A History of -Mathematical Notations" notes that it was used in the twelfth and -thirteenth centuries.) If letter-O has a slash across it and the zero -does not, your display is tuned for a very old convention used at IBM -and a few other early mainframe makers (Scandinavians curse <emphasis>this</emphasis> -arrangement even more, because it means two of their letters collide). -Some Burroughs/Unisys equipment displays a zero with a <emphasis>reversed</emphasis> -slash. Old CDC computers rendered letter O as an unbroken oval and 0 -as an oval broken at upper right and lower left. And yet another -convention common on early line printers left zero unornamented but -added a tail or hook to the letter-O so that it resembled an inverted -Q or cursive capital letter-O (this was endorsed by a draft ANSI -standard for how to draw ASCII characters, but the final standard -changed the distinguisher to a tick-mark in the upper-left corner). -Are we sufficiently confused yet?</para> -</glossdef> -</glossentry> - -<glossentry> -<glossterm>1TBS</glossterm> -<glossdef> -<para role="accidence"> -<phrase role="pronounce"></phrase> -<phrase role="partsofspeach">n</phrase> -</para> -<para>The "One True Brace Style"</para> -<glossseealso>indent style</glossseealso> -</glossdef> -</glossentry> - -<!-- ... --> - -</glossdiv> - -<!-- ... --> - -</glossary> - - - - -Marking Up Glossary Terms - -That takes care of the glossary database, now you have to get the entries -into your document. Unlike bibliography entries, which can be empty, creating -placeholder glossary entries would be very tedious. So instead, -support for glossary.collection relies on implicit linking. - -In your source document, simply use firstterm and -glossterm to identify the terms you wish to have included -in the glossary. The stylesheets assume that you will either set the -baseform attribute correctly, or that the -content of the element exactly matches a term in your glossary. - -If you're using a glossary.collection, don't -make explicit links on the terms in your document. - -So, in your document, you might write things like this: - - -<para>This is dummy text, without any real meaning. -The point is simply to reference glossary terms like <glossterm>0</glossterm> -and the <firstterm baseform="1TBS">One True Brace Style (1TBS)</firstterm>. -The <glossterm>1TBS</glossterm>, as you can probably imagine, is a nearly -religious issue.</para> - - -If you set the firstterm.only.link parameter, -only the terms marked with firstterm will be links. -Otherwise, all the terms will be linked. - - - -Marking Up the Glossary - -The glossary itself has to be identified for the stylesheets. For lack -of a better choice, the role is used. -To identify the glossary as the target for automatic processing, set -the role to auto. The title of this -glossary (and any other information from the glossaryinfo -that's rendered by your stylesheet) will be displayed, but the entries will -come from the database. - - -Unfortunately, the glossary can't be empty, so you must put in -at least one glossentry. The content of this entry -is irrelevant, it will not be rendered: - - -<glossary role="auto"> -<glossentry> -<glossterm>Irrelevant</glossterm> -<glossdef> -<para>If you can see this, the document was processed incorrectly. Use -the <parameter>glossary.collection</parameter> parameter.</para> -</glossdef> -</glossentry> -</glossary> - - -What about glossary divisions? If your glossary database has glossary -divisions and your automatic glossary contains at least -one glossdiv, the automic glossary will have divisions. -If the glossdiv is missing from either location, no divisions -will be rendered. - -Glossary entries (and divisions, if appropriate) in the glossary will -occur in precisely the order they occur in your database. - - - -Formatting the Document - -Finally, when you are ready to format your document, simply set the -glossary.collection parameter (in either a -customization layer or directly through your processor's interface) to -point to your global glossary. - -The stylesheets will format the glossary in your document as if -all of the entries implicilty referenced appeared there literally. - - -Limitations - -Glossary cross-references within the glossary are -not supported. For example, this will not work: - - -<glossentry> -<glossterm>gloss-1</glossterm> -<glossdef><para>A description that references <glossterm>gloss-2</glossterm>.</para> -<glossseealso>gloss-2</glossseealso> -</glossdef> -</glossentry> - - -If you put glossary cross-references in your glossary that way, -you'll get the cryptic error: Warning: -glossary.collection specified, but there are 0 automatic -glossaries. - -Instead, you must do two things: - - - -Markup your glossary using glossseealso: - - -<glossentry> -<glossterm>gloss-1</glossterm> -<glossdef><para>A description that references <glossterm>gloss-2</glossterm>.</para> -<glossseealso>gloss-2</glossseealso> -</glossdef> -</glossentry> - - - - -Make sure there is at least one glossterm reference to -gloss-2 in your document. The -easiest way to do that is probably within a remark in your -automatic glossary: - - -<glossary role="auto"> -<remark>Make sure there's a reference to <glossterm>gloss-2</glossterm>.</remark> -<glossentry> -<glossterm>Irrelevant</glossterm> -<glossdef> -<para>If you can see this, the document was processed incorrectly. Use -the <parameter>glossary.collection</parameter> parameter.</para> -</glossdef> -</glossentry> -</glossary> - - - - - - - - - - -glossary.sort -boolean - - -glossary.sort -Sort glossentry elements? - - - - -<xsl:param name="glossary.sort" select="0"></xsl:param> - - - -Description - -If non-zero, then the glossentry elements within a -glossary, glossdiv, or glosslist are sorted on the glossterm, using -the current lang setting. If zero (the default), then -glossentry elements are not sorted and are presented -in document order. - - - - - - - -glossentry.show.acronym -list -no -yes -primary - - -glossentry.show.acronym -Display glossentry acronyms? - - - - -<xsl:param name="glossentry.show.acronym">no</xsl:param> - - - -Description - -A setting of yes means they should be displayed; -no means they shouldn't. If primary is used, -then they are shown as the primary text for the entry. - - -This setting controls both acronym and -abbrev elements in the glossentry. - - - - - - -Miscellaneous - - -formal.procedures -boolean - - -formal.procedures -Selects formal or informal procedures - - - - -<xsl:param name="formal.procedures" select="1"></xsl:param> - - - -Description - -Formal procedures are numbered and always have a title. - - - - - - - -formal.title.placement -table - - -formal.title.placement -Specifies where formal object titles should occur - - - - -<xsl:param name="formal.title.placement"> -figure before -example before -equation before -table before -procedure before -task before -</xsl:param> - - - -Description - -Specifies where formal object titles should occur. For each formal object -type (figure, -example, -equation, -table, and procedure) -you can specify either the keyword -before or -after. - - - - - - -runinhead.default.title.end.punct -string - - -runinhead.default.title.end.punct -Default punctuation character on a run-in-head - - - -<xsl:param name="runinhead.default.title.end.punct">.</xsl:param> - - - -Description - -If non-zero, For a formalpara, use the specified -string as the separator between the title and following text. The period is the default value. - - - - - - -runinhead.title.end.punct -string - - -runinhead.title.end.punct -Characters that count as punctuation on a run-in-head - - - - -<xsl:param name="runinhead.title.end.punct">.!?:</xsl:param> - - - -Description - -Specify which characters are to be counted as punctuation. These -characters are checked for a match with the last character of the -title. If no match is found, the -runinhead.default.title.end.punct contents are -inserted. This is to avoid duplicated punctuation in the output. - - - - - - - -show.comments -boolean - - -show.comments -Display remark elements? - - - - -<xsl:param name="show.comments" select="1"></xsl:param> - - - -Description - -If non-zero, comments will be displayed, otherwise they -are suppressed. Comments here refers to the remark element -(which was called comment prior to DocBook -4.0), not XML comments (<-- like this -->) which are -unavailable. - - - - - - - -show.revisionflag -boolean - - -show.revisionflag -Enable decoration of elements that have a revisionflag - - - - -<xsl:param name="show.revisionflag" select="0"></xsl:param> - - - -Description - - -If show.revisionflag is turned on, then the stylesheets -may produce additional markup designed to allow a CSS stylesheet to -highlight elements that have specific revisionflag settings. - -The markup inserted will be usually be either a <span> or -<div> with an appropriate class -attribute. (The value of the class attribute will be the same as the -value of the revisionflag attribute). In some contexts, for example -tables, where extra markup would be structurally illegal, the class -attribute will be added to the appropriate container element. - -In general, the stylesheets only test for revisionflag in contexts -where an importing stylesheet would have to redefine whole templates. -Most of the revisionflag processing is expected to be done by another -stylesheet, for example changebars.xsl. - - - - - - -shade.verbatim -boolean - - -shade.verbatim -Should verbatim environments be shaded? - - - -<xsl:param name="shade.verbatim" select="0"></xsl:param> - - -Description - -In the FO stylesheet, if this parameter is non-zero then the -shade.verbatim.style properties will be applied -to verbatim environments. - -In the HTML stylesheet, this parameter is now deprecated. Use -CSS instead. - - - - - - -shade.verbatim.style -attribute set - - -shade.verbatim.style -Properties that specify the style of shaded verbatim listings - - - - -<xsl:attribute-set name="shade.verbatim.style"> - <xsl:attribute name="border">0</xsl:attribute> - <xsl:attribute name="bgcolor">#E0E0E0</xsl:attribute> -</xsl:attribute-set> - - - - -Description - -Properties that specify the style of shaded verbatim listings. The -parameters specified (the border and background color) are added to -the styling of the xsl-fo output. A border might be specified as "thin -black solid" for example. See xsl-fo - - - - - - -punct.honorific -string - - -punct.honorific -Punctuation after an honorific in a personal name. - - - - -<xsl:param name="punct.honorific">.</xsl:param> - - - -Description - -This parameter specifies the punctuation that should be added after an -honorific in a personal name. - - - - - - -tex.math.in.alt -list -plain -latex - - -tex.math.in.alt -TeX notation used for equations - - - - -<xsl:param name="tex.math.in.alt"></xsl:param> - - - -Description - -If you want type math directly in TeX notation in equations, -this parameter specifies notation used. Currently are supported two -values -- plain and latex. Empty -value means that you are not using TeX math at all. - -Preferred way for including TeX alternative of math is inside of -textobject element. Eg.: - -<inlineequation> -<inlinemediaobject> -<imageobject> -<imagedata fileref="eq1.gif"/> -</imageobject> -<textobject><phrase>E=mc squared</phrase></textobject> -<textobject role="tex"><phrase>E=mc^2</phrase></textobject> -</inlinemediaobject> -</inlineequation> - -If you are using graphic element, you can -store TeX inside alt element: - -<inlineequation> -<alt role="tex">a^2+b^2=c^2</alt> -<graphic fileref="a2b2c2.gif"/> -</inlineequation> - -If you want use this feature, you should process your FO with -PassiveTeX, which only supports TeX math notation. When calling -stylsheet, don't forget to specify also -passivetex.extensions=1. - -If you want equations in HTML, just process generated file -tex-math-equations.tex by TeX or LaTeX. Then run -dvi2bitmap program on result DVI file. You will get images for -equations in your document. - - - This feature is useful for print/PDF output only if you - use the obsolete and now unsupported PassiveTeX XSL-FO - engine. - - - - -Related Parameters - tex.math.delims, - passivetex.extensions, - tex.math.file - -More information - For how-to documentation on embedding TeX equations and - generating output from them, see - DBTeXMath. - - - - - -tex.math.file -string - - -tex.math.file -Name of temporary file for generating images from equations - - - - -<xsl:param name="tex.math.file">tex-math-equations.tex</xsl:param> - - - -Description - -Name of auxiliary file for TeX equations. This file can be -processed by dvi2bitmap to get bitmap versions of equations for HTML -output. - - -Related Parameters - tex.math.in.alt, - tex.math.delims, - - -More information - For how-to documentation on embedding TeX equations and - generating output from them, see - DBTeXMath. - - - - - -tex.math.delims -boolean - - -tex.math.delims -Should equations output for processing by TeX be -surrounded by math mode delimiters? - - - - -<xsl:param name="tex.math.delims" select="1"></xsl:param> - - - -Description - -For compatibility with DSSSL based DBTeXMath from Allin Cottrell -you should set this parameter to 0. - - -Related Parameters - tex.math.in.alt, - passivetex.extensions - - -See Also - You can also use the dbtex delims processing - instruction to control whether delimiters are output. - -More information - For how-to documentation on embedding TeX equations and - generating output from them, see - DBTeXMath. - - - - - -pixels.per.inch -integer - - -pixels.per.inch -How many pixels are there per inch? - - - - -<xsl:param name="pixels.per.inch">90</xsl:param> - - - -Description - -When lengths are converted to pixels, this value is used to -determine the size of a pixel. The default value is taken from the -XSL -Recommendation. - - - - - - - -points.per.em -number - - -points.per.em -Specify the nominal size of an em-space in points - - - - -<xsl:param name="points.per.em">10</xsl:param> - - - -Description - -The fixed value used for calculations based upon the size of a -character. The assumption made is that ten point font is in use. This -assumption may not be valid. - - - - - - -use.svg -boolean - - -use.svg -Allow SVG in the result tree? - - - - -<xsl:param name="use.svg" select="1"></xsl:param> - - - -Description - -If non-zero, SVG will be considered an acceptable image format. SVG -is passed through to the result tree, so correct rendering of the resulting -diagram depends on the formatter (FO processor or web browser) that is used -to process the output from the stylesheet. - - - - - - -menuchoice.separator -string - - -menuchoice.separator -Separator between items of a menuchoice -other than guimenuitem and -guisubmenu - - - - -<xsl:param name="menuchoice.separator">+</xsl:param> - - - -Description - -Separator used to connect items of a menuchoice other -than guimenuitem and guisubmenu. The latter -elements are linked with menuchoice.menu.separator. - - - - - - - -menuchoice.menu.separator -string - - -menuchoice.menu.separator -Separator between items of a menuchoice -with guimenuitem or -guisubmenu - - - - -<xsl:param name="menuchoice.menu.separator"> → </xsl:param> - - - -Description - -Separator used to connect items of a menuchoice with -guimenuitem or guisubmenu. Other elements -are linked with menuchoice.separator. - -The default value is &#x2192;, which is the -&rarr; (right arrow) character entity. -The current FOP (0.20.5) requires setting the font-family -explicitly. - -The default value also includes spaces around the arrow, -which will allow a line to break. Replace the spaces with -&#xA0; (nonbreaking space) if you don't want those -spaces to break. - - - - - - - -default.float.class -string - - -default.float.class -Specifies the default float class - - - - -<xsl:param name="default.float.class"> - <xsl:choose> - <xsl:when test="contains($stylesheet.result.type,'html')">left</xsl:when> - <xsl:otherwise>before</xsl:otherwise> - </xsl:choose> -</xsl:param> - - - -Description - -Selects the direction in which a float should be placed. for -xsl-fo this is before, for html it is left. For Western texts, the -before direction is the top of the page. - - - - - - -footnote.number.format -list -11,2,3... -AA,B,C... -aa,b,c... -ii,ii,iii... -II,II,III... - - -footnote.number.format -Identifies the format used for footnote numbers - - - - -<xsl:param name="footnote.number.format">1</xsl:param> - - - -Description - -The footnote.number.format specifies the format -to use for footnote numeration (1, i, I, a, or A). - - - - - - -table.footnote.number.format -list -11,2,3... -AA,B,C... -aa,b,c... -ii,ii,iii... -II,II,III... - - -table.footnote.number.format -Identifies the format used for footnote numbers in tables - - - - -<xsl:param name="table.footnote.number.format">a</xsl:param> - - - -Description - -The table.footnote.number.format specifies the format -to use for footnote numeration (1, i, I, a, or A) in tables. - - - - - - -footnote.number.symbols - - - -footnote.number.symbols -Special characters to use as footnote markers - - - - -<xsl:param name="footnote.number.symbols"></xsl:param> - - - -Description - -If footnote.number.symbols is not the empty string, -footnotes will use the characters it contains as footnote symbols. For example, -*&#x2020;&#x2021;&#x25CA;&#x2720; will identify -footnotes with *, , , -, and . If there are more footnotes -than symbols, the stylesheets will fall back to numbered footnotes using -footnote.number.format. - -The use of symbols for footnotes depends on the ability of your -processor (or browser) to render the symbols you select. Not all systems are -capable of displaying the full range of Unicode characters. If the quoted characters -in the preceding paragraph are not displayed properly, that's a good indicator -that you may have trouble using those symbols for footnotes. - - - - - - -table.footnote.number.symbols -string - - -table.footnote.number.symbols -Special characters to use a footnote markers in tables - - - - -<xsl:param name="table.footnote.number.symbols"></xsl:param> - - - -Description - -If table.footnote.number.symbols is not the empty string, -table footnotes will use the characters it contains as footnote symbols. For example, -*&#x2020;&#x2021;&#x25CA;&#x2720; will identify -footnotes with *, , , -, and . If there are more footnotes -than symbols, the stylesheets will fall back to numbered footnotes using -table.footnote.number.format. - -The use of symbols for footnotes depends on the ability of your -processor (or browser) to render the symbols you select. Not all systems are -capable of displaying the full range of Unicode characters. If the quoted characters -in the preceding paragraph are not displayed properly, that's a good indicator -that you may have trouble using those symbols for footnotes. - - - - - - -highlight.source -boolean - - -highlight.source -Should the content of programlisting -be syntactically highlighted? - - - - -<xsl:param name="highlight.source" select="0"></xsl:param> - - - -Description - -When this parameter is non-zero, the stylesheets will try to do syntax highlighting of the -content of programlisting elements. You specify the language for each programlisting -by using the language attribute. The highlight.default.language -parameter can be used to specify the language for programlistings without a language -attribute. Syntax highlighting also works for screen and synopsis elements. - -The actual highlighting work is done by the XSLTHL extension module. This is an external Java library that has to be -downloaded separately (see below). - - -In order to use this extension, you must - -add xslthl-2.x.x.jar to your Java classpath. The latest version is available -from the XSLT syntax highlighting project -at SourceForge. - - -use a customization layer in which you import one of the following stylesheet modules: - - - html/highlight.xsl - - - - xhtml/highlight.xsl - - - - xhtml-1_1/highlight.xsl - - - - fo/highlight.xsl - - - - - -let either the xslthl.config Java system property or the -highlight.xslthl.config parameter point to the configuration file for syntax -highlighting (using URL syntax). DocBook XSL comes with a ready-to-use configuration file, -highlighting/xslthl-config.xml. - - - -The extension works with Saxon 6.5.x and Xalan-J. (Saxon 8.5 or later is also supported, but since it is -an XSLT 2.0 processor it is not guaranteed to work with DocBook XSL in all circumstances.) - -The following is an example of a Saxon 6 command adapted for syntax highlighting, to be used on Windows: - - -java -cp c:/Java/saxon.jar;c:/Java/xslthl-2.0.1.jar --Dxslthl.config=file:///c:/docbook-xsl/highlighting/xslthl-config.xml com.icl.saxon.StyleSheet --o test.html test.xml myhtml.xsl - - - - - - - -highlight.xslthl.config -uri - - -highlight.xslthl.config -Location of XSLTHL configuration file - - - - -<xsl:param name="highlight.xslthl.config"></xsl:param> - - - -Description - -This location has precedence over the corresponding Java property. - - - - - - -highlight.default.language -string - - -highlight.default.language -Default language of programlisting - - - - -<xsl:param name="highlight.default.language"></xsl:param> - - - -Description - -This language is used when there is no language attribute on programlisting. - - - - - - -email.delimiters.enabled -boolean - - -email.delimiters.enabled -Generate delimiters around email addresses? - - - - -<xsl:param name="email.delimiters.enabled" select="1"></xsl:param> - - - -Description - -If non-zero, delimiters - -For delimiters, the -stylesheets are currently hard-coded to output angle -brackets. - -are generated around e-mail addresses -(the output of the email element). - - - - - - -exsl.node.set.available -boolean - - -exsl.node.set.available -Is the test function-available('exsl:node-set') true? - - - -<xsl:param name="exsl.node.set.available"> - <xsl:choose> - <xsl:when exsl:foo="" test="function-available('exsl:node-set') or contains(system-property('xsl:vendor'), 'Apache Software Foundation')">1</xsl:when> - <xsl:otherwise>0</xsl:otherwise> - </xsl:choose> -</xsl:param> - - - -Description - -If non-zero, -then the exsl:node-set() function is available to be used in -the stylesheet. -If zero, then the function is not available. -This param automatically detects the presence of -the function and does not normally need to be set manually. - -This param was created to handle a long-standing -bug in the Xalan processor that fails to detect the -function even though it is available. - - - - - -Annotations - - -annotation.support -boolean - - -annotation.support -Enable annotations? - - - - -<xsl:param name="annotation.support" select="0"></xsl:param> - - - -Description - -If non-zero, the stylesheets will attempt to support annotation -elements in HTML by including some JavaScript (see -annotation.js). - - - - - - -annotation.js -string - - -annotation.js -URIs identifying JavaScript files with support for annotation popups - - - - - -<xsl:param name="annotation.js"> -<xsl:text>http://docbook.sourceforge.net/release/script/AnchorPosition.js http://docbook.sourceforge.net/release/script/PopupWindow.js</xsl:text></xsl:param> - - - - -Description - -If annotation.support is enabled and the -document contains annotations, then the URIs listed -in this parameter will be included. These JavaScript files are required -for popup annotation support. - - - - - - -annotation.css -string - - -annotation.css -CSS rules for annotations - - - - -<xsl:param name="annotation.css"> -/* ====================================================================== - Annotations -*/ - -div.annotation-list { visibility: hidden; - } - -div.annotation-nocss { position: absolute; - visibility: hidden; - } - -div.annotation-popup { position: absolute; - z-index: 4; - visibility: hidden; - padding: 0px; - margin: 2px; - border-style: solid; - border-width: 1px; - width: 200px; - background-color: white; - } - -div.annotation-title { padding: 1px; - font-weight: bold; - border-bottom-style: solid; - border-bottom-width: 1px; - color: white; - background-color: black; - } - -div.annotation-body { padding: 2px; - } - -div.annotation-body p { margin-top: 0px; - padding-top: 0px; - } - -div.annotation-close { position: absolute; - top: 2px; - right: 2px; - } -</xsl:param> - - - -Description - -If annotation.support is enabled and the -document contains annotations, then the CSS in this -parameter will be included in the document. - - - - - - -annotation.graphic.open -uri - - -annotation.graphic.open -Image for identifying a link that opens an annotation popup - - - - -<xsl:param name="annotation.graphic.open">http://docbook.sourceforge.net/release/images/annot-open.png</xsl:param> - - - -Description - -This image is used inline to identify the location of -annotations. It may be replaced by a user provided graphic. The size should be approximately 10x10 pixels. - - - - - - -annotation.graphic.close -uri - - -annotation.graphic.close -Image for identifying a link that closes an annotation popup - - - - -<xsl:param name="annotation.graphic.close"> -http://docbook.sourceforge.net/release/images/annot-close.png</xsl:param> - - - -Description - -This image is used on popup annotations as the “x” that the -user can click to dismiss the popup. -This image is used on popup annotations as the “x” that the user can -click to dismiss the popup. It may be replaced by a user provided graphic. The size should be approximately 10x10 pixels. - - - - - -Graphics - - -img.src.path -string - - -img.src.path -Path to HTML/FO image files - - - -<xsl:param name="img.src.path"></xsl:param> - - -Description - -Add a path prefix to the value of the fileref -attribute of graphic, inlinegraphic, and imagedata elements. The resulting -compound path is used in the output as the value of the src -attribute of img (HTML) or external-graphic (FO). - - - -The path given by img.src.path could be relative to the directory where the HTML/FO -files are created, or it could be an absolute URI. -The default value is empty. -Be sure to include a trailing slash if needed. - - -This prefix is not applied to any filerefs that start -with "/" or contain "//:". - - - - - - - -keep.relative.image.uris -boolean - - -keep.relative.image.uris -Should image URIs be resolved against xml:base? - - - - -<xsl:param name="keep.relative.image.uris" select="1"></xsl:param> - - - - -Description - -If non-zero, relative URIs (in, for example -fileref attributes) will be used in the generated -output. Otherwise, the URIs will be made absolute with respect to the -base URI. - -Note that the stylesheets calculate (and use) the absolute form -for some purposes, this only applies to the resulting output. - - - - - - -graphic.default.extension -string - - -graphic.default.extension -Default extension for graphic filenames - - - -<xsl:param name="graphic.default.extension"></xsl:param> - - -Description - -If a graphic or mediaobject -includes a reference to a filename that does not include an extension, -and the format attribute is -unspecified, the default extension will be used. - - - - - - - -default.image.width -length - - -default.image.width -The default width of images - - - - -<xsl:param name="default.image.width"></xsl:param> - - - -Description - -If specified, this value will be used for the -width attribute on -images that do not specify any -viewport -dimensions. - - - - - - -nominal.image.width -length - - -nominal.image.width -The nominal image width - - - - -<xsl:param name="nominal.image.width" select="6 * $pixels.per.inch"></xsl:param> - - - -Description - -Graphic widths expressed as a percentage are problematic. In the -following discussion, we speak of width and contentwidth, but -the same issues apply to depth and contentdepth. - -A width of 50% means "half of the available space for the image." -That's fine. But note that in HTML, this is a dynamic property and -the image size will vary if the browser window is resized. - -A contentwidth of 50% means "half of the actual image width". -But what does that mean if the stylesheets cannot assess the image's -actual size? Treating this as a width of 50% is one possibility, but -it produces behavior (dynamic scaling) that seems entirely out of -character with the meaning. - -Instead, the stylesheets define a -nominal.image.width and convert percentages to -actual values based on that nominal size. - - - - - - -nominal.image.depth -length - - -nominal.image.depth -Nominal image depth - - - - -<xsl:param name="nominal.image.depth" select="4 * $pixels.per.inch"></xsl:param> - - - -Description - -See nominal.image.width. - - - - - - -use.embed.for.svg -boolean - - -use.embed.for.svg -Use HTML embed for SVG? - - - - -<xsl:param name="use.embed.for.svg" select="0"></xsl:param> - - - -Description - -If non-zero, an embed element will be created for -SVG figures. An object is always created, -this parameter merely controls whether or not an additional embed -is generated inside the object. - -On the plus side, this may be more portable among browsers and plug-ins. -On the minus side, it isn't valid HTML. - - - - - - -make.graphic.viewport -boolean - - -make.graphic.viewport -Use tables in HTML to make viewports for graphics - - - - -<xsl:param name="make.graphic.viewport" select="1"></xsl:param> - - - -Description - -The HTML img element only supports the notion -of content-area scaling; it doesn't support the distinction between a -content-area and a viewport-area, so we have to make some compromises. - -If make.graphic.viewport is non-zero, a table -will be used to frame the image. This creates an effective viewport-area. - - -Tables and alignment don't work together, so this parameter is ignored -if alignment is specified on an image. - - - - - -preferred.mediaobject.role -string - - -preferred.mediaobject.role -Select which mediaobject to use based on -this value of an object's role attribute. - - - - - -<xsl:param name="preferred.mediaobject.role"></xsl:param> - - - -Description - -A mediaobject may contain several objects such as imageobjects. -If the parameter use.role.for.mediaobject is -non-zero, then the role attribute on -imageobjects and other objects within a -mediaobject container will be used to select which object -will be used. If one of the objects has a role value that matches the -preferred.mediaobject.role parameter, then it -has first priority for selection. If more than one has such a role -value, the first one is used. - - -See the use.role.for.mediaobject parameter -for the sequence of selection. - - - - - -use.role.for.mediaobject -boolean - - -use.role.for.mediaobject -Use role attribute -value for selecting which of several objects within a mediaobject to use. - - - - - -<xsl:param name="use.role.for.mediaobject" select="1"></xsl:param> - - - -Description - -If non-zero, the role attribute on -imageobjects or other objects within a mediaobject container will be used to select which object will be -used. - - -The order of selection when then parameter is non-zero is: - - - - If the stylesheet parameter preferred.mediaobject.role has a value, then the object whose role equals that value is selected. - - -Else if an object's role attribute has a value of -html for HTML processing or -fo for FO output, then the first -of such objects is selected. - - - -Else the first suitable object is selected. - - - -If the value of -use.role.for.mediaobject -is zero, then role attributes are not considered -and the first suitable object -with or without a role value is used. - - - - - - -ignore.image.scaling -boolean - - -ignore.image.scaling -Tell the stylesheets to ignore the author's image scaling attributes - - - - -<xsl:param name="ignore.image.scaling" select="0"></xsl:param> - - - -Description - -If non-zero, the scaling attributes on graphics and media objects are -ignored. - - - - - -Chunking - - -chunker.output.cdata-section-elements -string - - -chunker.output.cdata-section-elements -List of elements to escape with CDATA sections - - - -<xsl:param name="chunker.output.cdata-section-elements"></xsl:param> - - -Description -This parameter specifies the list of elements that should be escaped -as CDATA sections by the chunking stylesheet. Not all processors support -specification of this parameter. - - -This parameter is documented here, but the declaration is actually -in the chunker.xsl stylesheet module. - - - - - - -chunker.output.doctype-public -string - - -chunker.output.doctype-public -Public identifer to use in the document type of generated pages - - - -<xsl:param name="chunker.output.doctype-public"></xsl:param> - - -Description -This parameter specifies the public identifier that should be used by -the chunking stylesheet in the document type declaration of chunked pages. -Not all processors support specification of -this parameter. - - -This parameter is documented here, but the declaration is actually -in the chunker.xsl stylesheet module. - - - - - - -chunker.output.doctype-system -uri - - -chunker.output.doctype-system -System identifier to use for the document type in generated pages - - - -<xsl:param name="chunker.output.doctype-system"></xsl:param> - - -Description -This parameter specifies the system identifier that should be used by -the chunking stylesheet in the document type declaration of chunked pages. -Not all processors support specification of -this parameter. - - -This parameter is documented here, but the declaration is actually -in the chunker.xsl stylesheet module. - - - - - - -chunker.output.encoding -string - - -chunker.output.encoding -Encoding used in generated pages - - - -<xsl:param name="chunker.output.encoding">ISO-8859-1</xsl:param> - - -Description -This parameter specifies the encoding to be used in files -generated by the chunking stylesheet. Not all processors support -specification of this parameter. - -This parameter used to be named default.encoding. - -This parameter is documented here, but the declaration is actually -in the chunker.xsl stylesheet module. - - - - - - -chunker.output.indent -string - - -chunker.output.indent -Specification of indentation on generated pages - - - -<xsl:param name="chunker.output.indent">no</xsl:param> - - -Description -This parameter specifies the value of the indent -specification for generated pages. Not all processors support -specification of this parameter. - - -This parameter is documented here, but the declaration is actually -in the chunker.xsl stylesheet module. - - - - - - -chunker.output.media-type -string - - -chunker.output.media-type -Media type to use in generated pages - - - -<xsl:param name="chunker.output.media-type"></xsl:param> - - -Description -This parameter specifies the media type that should be used by -the chunking stylesheet. Not all processors support specification of -this parameter. - -This parameter specifies the media type that should be used by the -chunking stylesheet. This should be one from those defined in -[RFC2045] and - [RFC2046] - -This parameter is documented here, but the declaration is actually -in the chunker.xsl stylesheet module. -It must be one from html, xml or text - - - - - - -chunker.output.method -list -html -xml - - -chunker.output.method -Method used in generated pages - - - -<xsl:param name="chunker.output.method">html</xsl:param> - - -Description -This parameter specifies the output method to be used in files -generated by the chunking stylesheet. - -This parameter used to be named output.method. - -This parameter is documented here, but the declaration is actually -in the chunker.xsl stylesheet module. - - - - - - -chunker.output.omit-xml-declaration -string - - -chunker.output.omit-xml-declaration -Omit-xml-declaration for generated pages - - - -<xsl:param name="chunker.output.omit-xml-declaration">no</xsl:param> - - -Description -This parameter specifies the value of the omit-xml-declaration -specification for generated pages. Not all processors support -specification of this parameter. - - -This parameter is documented here, but the declaration is actually -in the chunker.xsl stylesheet module. - - - - - - -chunker.output.standalone -string - - -chunker.output.standalone -Standalone declaration for generated pages - - - -<xsl:param name="chunker.output.standalone">no</xsl:param> - - -Description -This parameter specifies the value of the standalone - specification for generated pages. It must be either - yes or no. Not all - processors support specification of this parameter. - - -This parameter is documented here, but the declaration is actually -in the chunker.xsl stylesheet module. - - - - - - -saxon.character.representation -string - - -saxon.character.representation -Saxon character representation used in generated HTML pages - - - - <xsl:param name="saxon.character.representation" select="'entity;decimal'"></xsl:param> - - -Description - -This parameter has effect only when Saxon 6 is used (version 6.4.2 or later). -It sets the character representation in files generated by the chunking stylesheets. -If you want to suppress entity references for characters with direct representations in -chunker.output.encoding, set the parameter value to native. - - - For more information, see Saxon output character representation. - - -This parameter is documented here, but the declaration is actually -in the chunker.xsl stylesheet module. - - - - - - - - -html.ext -string - - -html.ext -Identifies the extension of generated HTML files - - - - -<xsl:param name="html.ext">.html</xsl:param> - - - -Description - -The extension identified by html.ext will -be used as the filename extension for chunks created by this -stylesheet. - - - - - - -use.id.as.filename -boolean - - -use.id.as.filename -Use ID value of chunk elements as the filename? - - - - -<xsl:param name="use.id.as.filename" select="0"></xsl:param> - - - -Description - -If use.id.as.filename -is non-zero, the filename of chunk elements that have IDs will be -derived from the ID value. - - - - - - - -html.extra.head.links -boolean - - -html.extra.head.links -Toggle extra HTML head link information - - - - -<xsl:param name="html.extra.head.links" select="0"></xsl:param> - - - -Description - -If non-zero, extra link elements will be -generated in the head of chunked HTML files. These -extra links point to chapters, appendixes, sections, etc. as supported -by the Site Navigation Bar in Mozilla 1.0 (as of CR1, at least). - - - - - - - -root.filename -uri - - -root.filename -Identifies the name of the root HTML file when chunking - - - - -<xsl:param name="root.filename">index</xsl:param> - - - -Description - -The root.filename is the base filename for -the chunk created for the root of each document processed. - - - - - - - -base.dir -uri - - -base.dir -The base directory of chunks - - - - -<xsl:param name="base.dir"></xsl:param> - - - -Description - -If specified, the base.dir identifies -the output directory for chunks. (If not specified, the output directory -is system dependent.) - - - - - - - generate.manifest - boolean - - - generate.manifest - Generate a manifest file? - - - - <xsl:param name="generate.manifest" select="0"></xsl:param> - - - Description - - If non-zero, a list of HTML files generated by the - stylesheet transformation is written to the file named by - the manifest parameter. - - - - - - - manifest - string - - - manifest - Name of manifest file - - - - - <xsl:param name="manifest">HTML.manifest</xsl:param> - - - - Description - - The name of the file to which a manifest is written (if the - value of the generate.manifest parameter - is non-zero). - - - - - - -manifest.in.base.dir -boolean - - -manifest.in.base.dir -Should the manifest file be written into base.dir? - - - - -<xsl:param name="manifest.in.base.dir" select="0"></xsl:param> - - - -Description - -If non-zero, the manifest file as well as project files for HTML Help and -Eclipse Help are written into base.dir instead -of the current directory. - - - - - - -chunk.toc -string - - -chunk.toc -An explicit TOC to be used for chunking - - - - -<xsl:param name="chunk.toc"></xsl:param> - - - -Description - -The chunk.toc identifies an explicit TOC that -will be used for chunking. This parameter is only used by the -chunktoc.xsl stylesheet (and customization layers built -from it). - - - - - - -chunk.tocs.and.lots -boolean - - -chunk.tocs.and.lots -Should ToC and LoTs be in separate chunks? - - - - -<xsl:param name="chunk.tocs.and.lots" select="0"></xsl:param> - - - -Description - -If non-zero, ToC and LoT (List of Examples, List of Figures, etc.) -will be put in a separate chunk. At the moment, this chunk is not in the -normal forward/backward navigation list. Instead, a new link is added to the -navigation footer. - -This feature is still somewhat experimental. Feedback welcome. - - - - - - -chunk.separate.lots -boolean - - -chunk.separate.lots -Should each LoT be in its own separate chunk? - - - - -<xsl:param name="chunk.separate.lots" select="0"></xsl:param> - - - -Description - -If non-zero, each of the ToC and LoTs -(List of Examples, List of Figures, etc.) -will be put in its own separate chunk. -The title page includes generated links to each of the separate files. - - -This feature depends on the -chunk.tocs.and.lots -parameter also being non-zero. - - - - - - - -chunk.tocs.and.lots.has.title -boolean - - -chunk.tocs.and.lots.has.title -Should ToC and LoTs in a separate chunks have title? - - - - -<xsl:param name="chunk.tocs.and.lots.has.title" select="1"></xsl:param> - - - -Description - -If non-zero title of document is shown before ToC/LoT in -separate chunk. - - - - - - -chunk.section.depth -integer - - -chunk.section.depth -Depth to which sections should be chunked - - - - -<xsl:param name="chunk.section.depth" select="1"></xsl:param> - - - -Description - -This parameter sets the depth of section chunking. - - - - - - -chunk.first.sections -boolean - - -chunk.first.sections -Chunk the first top-level section? - - - - -<xsl:param name="chunk.first.sections" select="0"></xsl:param> - - - -Description - -If non-zero, a chunk will be created for the first top-level -sect1 or section elements in -each component. Otherwise, that section will be part of the chunk for -its parent. - - - - - - - -chunk.quietly -boolean - - -chunk.quietly -Omit the chunked filename messages. - - - - -<xsl:param name="chunk.quietly" select="0"></xsl:param> - - - -Description - -If zero (the default), the XSL processor emits a message naming -each separate chunk filename as it is being output. -If nonzero, then the messages are suppressed. - - - - - - - -chunk.append -string - - -chunk.append -Specifies content to append to chunked HTML output - - - -<xsl:param name="chunk.append"></xsl:param> - - -Description - -Specifies content to append to the end of HTML files output by -the html/chunk.xsl stylesheet, after the closing -<html> tag. You probably don’t want to set any value -for this parameter; but if you do, the only value it should ever be -set to is a newline character: &#x0a; or -&#10; - - - - - - -navig.graphics -boolean - - -navig.graphics -Use graphics in navigational headers and footers? - - - - -<xsl:param name="navig.graphics" select="0"></xsl:param> - - - -Description - -If non-zero, the navigational headers and footers in chunked -HTML are presented in an alternate style that uses graphical icons for -Next, Previous, Up, and Home. Default graphics are provided in the -distribution. If zero, text is used instead of graphics. - - - - - - - -navig.graphics.extension -string - - -navig.graphics.extension -Extension for navigational graphics - - - - -<xsl:param name="navig.graphics.extension">.gif</xsl:param> - - - -Description - -Sets the filename extension to use on navigational graphics used -in the headers and footers of chunked HTML. - - - - - - -navig.graphics.path -string - - -navig.graphics.path -Path to navigational graphics - - - - -<xsl:param name="navig.graphics.path">images/</xsl:param> - - - -Description - -Sets the path, probably relative to the directory where the HTML -files are created, to the navigational graphics used in the -headers and footers of chunked HTML. - - - - - - - -navig.showtitles -boolean - - -navig.showtitles -Display titles in HTML headers and footers? - - - -<xsl:param name="navig.showtitles">1</xsl:param> - - -Description - -If non-zero, -the headers and footers of chunked HTML -display the titles of the next and previous chunks, -along with the words 'Next' and 'Previous' (or the -equivalent graphical icons if navig.graphics is true). -If false (zero), then only the words 'Next' and 'Previous' -(or the icons) are displayed. - - - - - - -Profiling - -The following parameters can be used for attribute-based -profiling of your document. For more information about profiling, see -Profiling (conditional text). - - - -profile.arch -string - - -profile.arch -Target profile for arch -attribute - - - - -<xsl:param name="profile.arch"></xsl:param> - - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - - - - -profile.audience -string - - -profile.audience -Target profile for audience -attribute - - - - -<xsl:param name="profile.audience"></xsl:param> - - - -Description - -Value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - - - - -profile.condition -string - - -profile.condition -Target profile for condition -attribute - - - - -<xsl:param name="profile.condition"></xsl:param> - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - - - - -profile.conformance -string - - -profile.conformance -Target profile for conformance -attribute - - - - -<xsl:param name="profile.conformance"></xsl:param> - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - - - - -profile.lang -string - - -profile.lang -Target profile for lang -attribute - - - - -<xsl:param name="profile.lang"></xsl:param> - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - - - - -profile.os -string - - -profile.os -Target profile for os -attribute - - - - -<xsl:param name="profile.os"></xsl:param> - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - - - - -profile.revision -string - - -profile.revision -Target profile for revision -attribute - - - - -<xsl:param name="profile.revision"></xsl:param> - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - - - - -profile.revisionflag -string - - -profile.revisionflag -Target profile for revisionflag -attribute - - - - -<xsl:param name="profile.revisionflag"></xsl:param> - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - - - - -profile.role -string - - -profile.role -Target profile for role -attribute - - - - -<xsl:param name="profile.role"></xsl:param> - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - -Note that role is often -used for other purposes than profiling. For example it is commonly -used to get emphasize in bold font: - -<emphasis role="bold">very important</emphasis> - -If you are using role for -these purposes do not forget to add values like bold to -value of this parameter. If you forgot you will get document with -small pieces missing which are very hard to track. - -For this reason it is not recommended to use role attribute for profiling. You should -rather use profiling specific attributes like userlevel, os, arch, condition, etc. - - - - - - - -profile.security -string - - -profile.security -Target profile for security -attribute - - - - -<xsl:param name="profile.security"></xsl:param> - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - - - - -profile.status -string - - -profile.status -Target profile for status -attribute - - - - -<xsl:param name="profile.status"></xsl:param> - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - - - - -profile.userlevel -string - - -profile.userlevel -Target profile for userlevel -attribute - - - - -<xsl:param name="profile.userlevel"></xsl:param> - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - - - - -profile.vendor -string - - -profile.vendor -Target profile for vendor -attribute - - - - -<xsl:param name="profile.vendor"></xsl:param> - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - - - - -profile.wordsize -string - - -profile.wordsize -Target profile for wordsize -attribute - - - - -<xsl:param name="profile.wordsize"></xsl:param> - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - - - - -profile.attribute -string - - -profile.attribute -Name of user-specified profiling attribute - - - - -<xsl:param name="profile.attribute"></xsl:param> - - - -Description - -This parameter is used in conjuction with -profile.value. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - - - - -profile.value -string - - -profile.value -Target profile for user-specified attribute - - - - -<xsl:param name="profile.value"></xsl:param> - - - -Description - -When you are using this parameter you must also specify name of -profiling attribute with parameter -profile.attribute. - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - - - - -profile.separator -string - - -profile.separator -Separator character for compound profile values - - - - -<xsl:param name="profile.separator">;</xsl:param> - - - -Description - -Separator character used for compound profile values. See profile.arch - - - - - -HTML Help - - -htmlhelp.encoding -string - - -htmlhelp.encoding -Character encoding to use in files for HTML Help compiler. - - - - -<xsl:param name="htmlhelp.encoding">iso-8859-1</xsl:param> - - - -Description - -HTML Help Compiler is not UTF-8 aware, so you should always use an -appropriate single-byte encoding here. Use one from iana, the registered charset values. - - - - - - -htmlhelp.autolabel -boolean - - -htmlhelp.autolabel -Should tree-like ToC use autonumbering feature? - - - - -<xsl:param name="htmlhelp.autolabel" select="0"></xsl:param> - - - -Description - -Set this to non-zero to include chapter and section numbers into ToC -in the left panel. - - - - - - -htmlhelp.chm -string - - -htmlhelp.chm -Filename of output HTML Help file. - - - - -<xsl:param name="htmlhelp.chm">htmlhelp.chm</xsl:param> - - - -Description - -Set the name of resulting CHM file - - - - - - -htmlhelp.default.topic -string - - -htmlhelp.default.topic -Name of file with default topic - - - - -<xsl:param name="htmlhelp.default.topic"></xsl:param> - - - -Description - -Normally first chunk of document is displayed when you open HTML -Help file. If you want to display another topic, simply set its -filename by this parameter. - -This is useful especially if you don't generate ToC in front of -your document and you also hide root element in ToC. E.g.: - -<xsl:param name="generate.book.toc" select="0"/> -<xsl:param name="htmlhelp.hhc.show.root" select="0"/> -<xsl:param name="htmlhelp.default.topic">pr01.html</xsl:param> - - - - - - - -htmlhelp.display.progress -boolean - - -htmlhelp.display.progress -Display compile progress? - - - - -<xsl:param name="htmlhelp.display.progress" select="1"></xsl:param> - - - -Description - -Set to non-zero to to display compile progress - - - - - - - -htmlhelp.hhp -string - - -htmlhelp.hhp -Filename of project file. - - - - -<xsl:param name="htmlhelp.hhp">htmlhelp.hhp</xsl:param> - - - -Description - -Change this parameter if you want different name of project -file than htmlhelp.hhp. - - - - - - -htmlhelp.hhc -string - - -htmlhelp.hhc -Filename of TOC file. - - - - -<xsl:param name="htmlhelp.hhc">toc.hhc</xsl:param> - - - -Description - -Set the name of the TOC file. The default is toc.hhc. - - - - - - -htmlhelp.hhk -string - - -htmlhelp.hhk -Filename of index file. - - - - -<xsl:param name="htmlhelp.hhk">index.hhk</xsl:param> - - - -Description - -set the name of the index file. The default is index.hhk. - - - - - - -htmlhelp.hhp.tail -string - - -htmlhelp.hhp.tail -Additional content for project file. - - - - -<xsl:param name="htmlhelp.hhp.tail"></xsl:param> - - - -Description - -If you want to include some additional parameters into project file, -store appropriate part of project file into this parameter. - - - - - - -htmlhelp.hhp.window -string - - -htmlhelp.hhp.window -Name of default window. - - - - -<xsl:param name="htmlhelp.hhp.window">Main</xsl:param> - - - -Description - -Name of default window. If empty no [WINDOWS] section will be -added to project file. - - - - - - -htmlhelp.hhp.windows -string - - -htmlhelp.hhp.windows -Definition of additional windows - - - - -<xsl:param name="htmlhelp.hhp.windows"></xsl:param> - - - -Description - -Content of this parameter is placed at the end of [WINDOWS] -section of project file. You can use it for defining your own -addtional windows. - - - - - - -htmlhelp.enhanced.decompilation -boolean - - -htmlhelp.enhanced.decompilation -Allow enhanced decompilation of CHM? - - - - -<xsl:param name="htmlhelp.enhanced.decompilation" select="0"></xsl:param> - - - -Description - -When non-zero this parameter enables enhanced decompilation of CHM. - - - - - - -htmlhelp.enumerate.images -boolean - - -htmlhelp.enumerate.images -Should the paths to all used images be added to the project file? - - - - -<xsl:param name="htmlhelp.enumerate.images" select="0"></xsl:param> - - - -Description - -Set to non-zero if you insert images into your documents as -external binary entities or if you are using absolute image paths. - - - - - - -htmlhelp.force.map.and.alias -boolean - - -htmlhelp.force.map.and.alias -Should [MAP] and [ALIAS] sections be added to the project file unconditionally? - - - -<xsl:param name="htmlhelp.force.map.and.alias" select="0"></xsl:param> - - -Description - Set to non-zero if you have your own - alias.h and context.h - files and you want to include references to them in the project - file. - - - - - -htmlhelp.map.file -string - - -htmlhelp.map.file -Filename of map file. - - - -<xsl:param name="htmlhelp.map.file">context.h</xsl:param> - - -Description -Set the name of map file. The default is - context.h. (used for context-sensitive - help). - - - - - -htmlhelp.alias.file -string - - -htmlhelp.alias.file -Filename of alias file. - - - - -<xsl:param name="htmlhelp.alias.file">alias.h</xsl:param> - - - -Description - -Specifies the filename of the alias file (used for context-sensitive help). - - - - - - -htmlhelp.hhc.section.depth -integer - - -htmlhelp.hhc.section.depth -Depth of TOC for sections in a left pane. - - - - -<xsl:param name="htmlhelp.hhc.section.depth">5</xsl:param> - - - -Description - -Set the section depth in the left pane of HTML Help viewer. - - - - - - -htmlhelp.hhc.show.root -boolean - - -htmlhelp.hhc.show.root -Should there be an entry for the root element in the ToC? - - - - -<xsl:param name="htmlhelp.hhc.show.root" select="1"></xsl:param> - - - -Description - -If set to zero, there will be no entry for the root element in the -ToC. This is useful when you want to provide the user with an expanded -ToC as a default. - - - - - - -htmlhelp.hhc.folders.instead.books -boolean - - -htmlhelp.hhc.folders.instead.books -Use folder icons in ToC (instead of book icons)? - - - - -<xsl:param name="htmlhelp.hhc.folders.instead.books" select="1"></xsl:param> - - - -Description - -Set non-zero for folder-like icons or zero for book-like icons in the TOC -ToC. If you want to use folder-like icons you must swith off binary -ToC using (xref) htmlhelp.hhc.binary. - - - - - - - - - - -htmlhelp.hhc.binary -boolean - - -htmlhelp.hhc.binary -Generate binary ToC? - - - - -<xsl:param name="htmlhelp.hhc.binary" select="1"></xsl:param> - - - -Description - -Set to non-zero to generate a binary TOC. You must create a binary TOC -if you want to add Prev/Next buttons to toolbar (which is default -behaviour). Files with binary TOC can't be merged. - - - - - - -htmlhelp.hhc.width -integer - - -htmlhelp.hhc.width -Width of navigation pane - - - - -<xsl:param name="htmlhelp.hhc.width"></xsl:param> - - - -Description - -This parameter specifies the width of the navigation pane (containing TOC and -other navigation tabs) in pixels. - - - - - - -htmlhelp.title -string - - -htmlhelp.title -Title of HTML Help - - - - -<xsl:param name="htmlhelp.title"></xsl:param> - - - -Description - -Content of this parameter will be used as a title for generated -HTML Help. If empty, title will be automatically taken from document. - - - - - - -htmlhelp.show.menu -boolean - - -htmlhelp.show.menu -Should the menu bar be shown? - - - - -<xsl:param name="htmlhelp.show.menu" select="0"></xsl:param> - - - -Description - -Set to non-zero to have an application menu bar in your HTML Help window. - - - - - - - -htmlhelp.show.toolbar.text -boolean - - -htmlhelp.show.toolbar.text -Show text under toolbar buttons? - - - - -<xsl:param name="htmlhelp.show.toolbar.text" select="1"></xsl:param> - - - -Description - -Set to non-zero to display texts under toolbar buttons, zero to switch -off displays. - - - - - - -htmlhelp.show.advanced.search -boolean - - -htmlhelp.show.advanced.search -Should advanced search features be available? - - - - -<xsl:param name="htmlhelp.show.advanced.search" select="0"></xsl:param> - - - -Description - -If you want advanced search features in your help, turn this -parameter to 1. - - - - - - -htmlhelp.show.favorities -boolean - - -htmlhelp.show.favorities -Should the Favorites tab be shown? - - - - -<xsl:param name="htmlhelp.show.favorities" select="0"></xsl:param> - - - -Description - -Set to non-zero to include a Favorites tab in the navigation pane -of the help window. - - - - - - -htmlhelp.button.hideshow -boolean - - -htmlhelp.button.hideshow -Should the Hide/Show button be shown? - - - - -<xsl:param name="htmlhelp.button.hideshow" select="1"></xsl:param> - - - -Description - -Set to non-zero to include the Hide/Show button shown on toolbar - - - - - - -htmlhelp.button.back -boolean - - -htmlhelp.button.back -Should the Back button be shown? - - - - -<xsl:param name="htmlhelp.button.back" select="1"></xsl:param> - - - -Description - -Set to non-zero to include the Hide/Show button shown on toolbar - - - - - - -htmlhelp.button.forward -boolean - - -htmlhelp.button.forward -Should the Forward button be shown? - - - - -<xsl:param name="htmlhelp.button.forward" select="0"></xsl:param> - - - -Description - -Set to non-zero to include the Forward button on the toolbar. - - - - - - -htmlhelp.button.stop -boolean - - -htmlhelp.button.stop -Should the Stop button be shown? - - - - -<xsl:param name="htmlhelp.button.stop" select="0"></xsl:param> - - - -Description - -If you want Stop button shown on toolbar, turn this -parameter to 1. - - - - - - -htmlhelp.button.refresh -boolean - - -htmlhelp.button.refresh -Should the Refresh button be shown? - - - - -<xsl:param name="htmlhelp.button.refresh" select="0"></xsl:param> - - - -Description - -Set to non-zero to include the Stop button on the toolbar. - - - - - - -htmlhelp.button.home -boolean - - -htmlhelp.button.home -Should the Home button be shown? - - - - -<xsl:param name="htmlhelp.button.home" select="0"></xsl:param> - - - -Description - -Set to non-zero to include the Home button on the toolbar. - - - - - - -htmlhelp.button.home.url -string - - -htmlhelp.button.home.url -URL address of page accessible by Home button - - - - -<xsl:param name="htmlhelp.button.home.url"></xsl:param> - - - -Description - -URL address of page accessible by Home button. - - - - - - -htmlhelp.button.options -boolean - - -htmlhelp.button.options -Should the Options button be shown? - - - - -<xsl:param name="htmlhelp.button.options" select="1"></xsl:param> - - - -Description - -If you want Options button shown on toolbar, turn this -parameter to 1. - - - - - - -htmlhelp.button.print -boolean - - -htmlhelp.button.print -Should the Print button be shown? - - - - -<xsl:param name="htmlhelp.button.print" select="1"></xsl:param> - - - -Description - -Set to non-zero to include the Print button on the toolbar. - - - - - - - -htmlhelp.button.locate -boolean - - -htmlhelp.button.locate -Should the Locate button be shown? - - - - -<xsl:param name="htmlhelp.button.locate" select="0"></xsl:param> - - - -Description - -If you want Locate button shown on toolbar, turn this -parameter to 1. - - - - - - -htmlhelp.button.jump1 -boolean - - -htmlhelp.button.jump1 -Should the Jump1 button be shown? - - - -<xsl:param name="htmlhelp.button.jump1" select="0"></xsl:param> - - -Description - Set to non-zero to include the Jump1 button on the toolbar. - - - - - -htmlhelp.button.jump1.url -string - - -htmlhelp.button.jump1.url -URL address of page accessible by Jump1 button - - - - -<xsl:param name="htmlhelp.button.jump1.url"></xsl:param> - - - -Description - -URL address of page accessible by Jump1 button. - - - - - - -htmlhelp.button.jump1.title -string - - -htmlhelp.button.jump1.title -Title of Jump1 button - - - - -<xsl:param name="htmlhelp.button.jump1.title">User1</xsl:param> - - - -Description - -Title of Jump1 button. - - - - - - -htmlhelp.button.jump2 -boolean - - -htmlhelp.button.jump2 -Should the Jump2 button be shown? - - - - -<xsl:param name="htmlhelp.button.jump2" select="0"></xsl:param> - - - -Description - -Set to non-zero to include the Jump2 button on the toolbar. - - - - - - -htmlhelp.button.jump2.url -string - - -htmlhelp.button.jump2.url -URL address of page accessible by Jump2 button - - - - -<xsl:param name="htmlhelp.button.jump2.url"></xsl:param> - - - -Description - -URL address of page accessible by Jump2 button. - - - - - - -htmlhelp.button.jump2.title -string - - -htmlhelp.button.jump2.title -Title of Jump2 button - - - - -<xsl:param name="htmlhelp.button.jump2.title">User2</xsl:param> - - - -Description - -Title of Jump2 button. - - - - - - -htmlhelp.button.next -boolean - - -htmlhelp.button.next -Should the Next button be shown? - - - - -<xsl:param name="htmlhelp.button.next" select="1"></xsl:param> - - - -Description - -Set to non-zero to include the Next button on the toolbar. - - - - - - -htmlhelp.button.prev -boolean - - -htmlhelp.button.prev -Should the Prev button be shown? - - - - -<xsl:param name="htmlhelp.button.prev" select="1"></xsl:param> - - - -Description - -Set to non-zero to include the Prev button on the toolbar. - - - - - - - -htmlhelp.button.zoom -boolean - - -htmlhelp.button.zoom -Should the Zoom button be shown? - - - - -<xsl:param name="htmlhelp.button.zoom" select="0"></xsl:param> - - - -Description - -Set to non-zero to include the Zoom button on the toolbar. - - - - - - - -htmlhelp.remember.window.position -boolean - - -htmlhelp.remember.window.position -Remember help window position? - - - - -<xsl:param name="htmlhelp.remember.window.position" select="0"></xsl:param> - - - -Description - -Set to non-zero to remember help window position between starts. - - - - - - -htmlhelp.window.geometry -string - - -htmlhelp.window.geometry -Set initial geometry of help window - - - - -<xsl:param name="htmlhelp.window.geometry"></xsl:param> - - - -Description - -This parameter specifies initial position of help -window. E.g. - -<xsl:param name="htmlhelp.window.geometry">[160,64,992,704]</xsl:param> - - - - - - -htmlhelp.use.hhk -boolean - - -htmlhelp.use.hhk -Should the index be built using the HHK file? - - - - -<xsl:param name="htmlhelp.use.hhk" select="0"></xsl:param> - - - -Description - -If non-zero, the index is created using the HHK file (instead of using object -elements in the HTML files). For more information, see Generating an index. - - - - - -htmlhelp.only -boolean - - -htmlhelp.only -Should only project files be generated? - - - - -<xsl:param name="htmlhelp.only" select="0"></xsl:param> - - - -Description - - -Set to non-zero if you want to play with various HTML Help parameters -and you don't need to regenerate all HTML files. This setting will not -process whole document, only project files (hhp, hhc, hhk,...) will be -generated. - - - - - - -Eclipse Help Platform - - -eclipse.autolabel -boolean - - -eclipse.autolabel -Should tree-like ToC use autonumbering feature? - - - - -<xsl:param name="eclipse.autolabel" select="0"></xsl:param> - - - -Description - -If you want to include chapter and section numbers into ToC in -the left panel, set this parameter to 1. - - - - - - -eclipse.plugin.name -string - - -eclipse.plugin.name -Eclipse Help plugin name - - - - -<xsl:param name="eclipse.plugin.name">DocBook Online Help Sample</xsl:param> - - - -Description - -Eclipse Help plugin name. - - - - - - -eclipse.plugin.id -string - - -eclipse.plugin.id -Eclipse Help plugin id - - - - -<xsl:param name="eclipse.plugin.id">com.example.help</xsl:param> - - - -Description - -Eclipse Help plugin id. You should change this id to something -unique for each help. - - - - - - -eclipse.plugin.provider -string - - -eclipse.plugin.provider -Eclipse Help plugin provider name - - - - -<xsl:param name="eclipse.plugin.provider">Example provider</xsl:param> - - - -Description - -Eclipse Help plugin provider name. - - - - - -JavaHelp - - -javahelp.encoding -string - - -javahelp.encoding -Character encoding to use in control files for JavaHelp. - - - - -<xsl:param name="javahelp.encoding">iso-8859-1</xsl:param> - - - -Description - -JavaHelp crashes on some characters when written as character -references. In that case you can use this parameter to select an appropriate encoding. - - - - - - - - -Localization - - -l10n.gentext.language -string - - -l10n.gentext.language -Sets the gentext language - - - - -<xsl:param name="l10n.gentext.language"></xsl:param> - - - -Description - -If this parameter is set to any value other than the empty string, its -value will be used as the value for the language when generating text. Setting -l10n.gentext.language overrides any settings within the -document being formatted. - -It's much more likely that you might want to set the -l10n.gentext.default.language parameter. - - - - - - - l10n.gentext.default.language - string - - - l10n.gentext.default.language - Sets the default language for generated text - - - - -<xsl:param name="l10n.gentext.default.language">en</xsl:param> - - - -Description - -The value of the l10n.gentext.default.language -parameter is used as the language for generated text if no setting is provided -in the source document. - - - - - - -l10n.gentext.use.xref.language -boolean - - -l10n.gentext.use.xref.language -Use the language of target when generating cross-reference text? - - - - -<xsl:param name="l10n.gentext.use.xref.language" select="0"></xsl:param> - - - -Description - -If non-zero, the language of the target will be used when -generating cross reference text. Usually, the current -language is used when generating text (that is, the language of the -element that contains the cross-reference element). But setting this parameter -allows the language of the element pointed to to control -the generated text. - -Consider the following example: - - -<para lang="en">See also <xref linkend="chap3"/>.</para> - - - -Suppose that Chapter 3 happens to be written in German. -If l10n.gentext.use.xref.language is non-zero, the -resulting text will be something like this: - -
    -See also Kapital 3. -
    - -Where the more traditional rendering would be: - -
    -See also Chapter 3. -
    - -
    -
    - - - -l10n.lang.value.rfc.compliant -boolean - - -l10n.lang.value.rfc.compliant -Make value of lang attribute RFC compliant? - - - - -<xsl:param name="l10n.lang.value.rfc.compliant" select="1"></xsl:param> - - - -Description - -If non-zero, ensure that the values for all lang attributes in HTML output are RFC -compliantSection 8.1.1, Language Codes, in the HTML 4.0 Recommendation states that: - -
    [RFC1766] defines and explains the language codes -that must be used in HTML documents. -Briefly, language codes consist of a primary code and a possibly -empty series of subcodes: - -language-code = primary-code ( "-" subcode )* - -And in RFC 1766, Tags for the Identification -of Languages, the EBNF for "language tag" is given as: - -Language-Tag = Primary-tag *( "-" Subtag ) -Primary-tag = 1*8ALPHA -Subtag = 1*8ALPHA - -
    -
    . - -by taking any underscore characters in any lang values found in source documents, and -replacing them with hyphen characters in output HTML files. For -example, zh_CN in a source document becomes -zh-CN in the HTML output form that source. - - -This parameter does not cause any case change in lang values, because RFC 1766 -explicitly states that all "language tags" (as it calls them) "are -to be treated as case insensitive". - -
    - -
    -
    - - - -writing.mode -string - - -writing.mode -Direction of text flow based on locale - - - - -<xsl:param name="writing.mode"> - <xsl:call-template name="gentext"> - <xsl:with-param name="key">writing-mode</xsl:with-param> - <xsl:with-param name="lang"> - <xsl:call-template name="l10n.language"> - <xsl:with-param name="target" select="/*[1]"></xsl:with-param> - </xsl:call-template> - </xsl:with-param> - </xsl:call-template> -</xsl:param> - - - -Description - -Sets direction of text flow and text alignment based on locale. -The value is normally taken from the gentext file for the -lang attribute of the document's root element, using the -key name 'writing-mode' to look it up in the gentext file. -But the param can also be -set on the command line to override that gentext value. - -Accepted values are: - - - lr-tb - - Left-to-right text flow in each line, lines stack top to bottom. - - - - rl-tb - - Right-to-left text flow in each line, lines stack top to bottom. - - - - tb-rl - - Top-to-bottom text flow in each vertical line, lines stack right to left. - Supported by only a few XSL-FO processors. Not supported in HTML output. - - - - lr - - Shorthand for lr-tb. - - - - rl - - Shorthand for rl-tb. - - - - tb - - Shorthand for tb-rl. - - - - - - - - -
    -The Stylesheet - -The param.xsl stylesheet is just a wrapper -around all these parameters. - - - -<!-- This file is generated from param.xweb --> - -<xsl:stylesheet exclude-result-prefixes="src" version="1.0"> - -<!-- ******************************************************************** - $Id: param.xweb 8345 2009-03-16 06:44:07Z bobstayton $ - ******************************************************************** - - This file is part of the XSL DocBook Stylesheet distribution. - See ../README or http://docbook.sf.net/release/xsl/current/ for - copyright and other information. - - ******************************************************************** --> - -<src:fragref linkend="admon.graphics.extension.frag"></src:fragref> -<src:fragref linkend="admon.graphics.frag"></src:fragref> -<src:fragref linkend="admon.graphics.path.frag"></src:fragref> -<src:fragref linkend="admon.style.frag"></src:fragref> -<src:fragref linkend="admon.textlabel.frag"></src:fragref> -<src:fragref linkend="annotate.toc.frag"></src:fragref> -<src:fragref linkend="annotation.css.frag"></src:fragref> -<src:fragref linkend="annotation.js.frag"></src:fragref> -<src:fragref linkend="annotation.graphic.open.frag"></src:fragref> -<src:fragref linkend="annotation.graphic.close.frag"></src:fragref> -<src:fragref linkend="annotation.support.frag"></src:fragref> -<src:fragref linkend="appendix.autolabel.frag"></src:fragref> -<src:fragref linkend="author.othername.in.middle.frag"></src:fragref> -<src:fragref linkend="autotoc.label.separator.frag"></src:fragref> -<src:fragref linkend="autotoc.label.in.hyperlink.frag"></src:fragref> -<src:fragref linkend="base.dir.frag"></src:fragref> -<src:fragref linkend="biblioentry.item.separator.frag"></src:fragref> -<src:fragref linkend="bibliography.collection.frag"></src:fragref> -<src:fragref linkend="bibliography.numbered.frag"></src:fragref> -<src:fragref linkend="bibliography.style.frag"></src:fragref> -<src:fragref linkend="blurb.on.titlepage.enabled.frag"></src:fragref> -<src:fragref linkend="bridgehead.in.toc.frag"></src:fragref> -<src:fragref linkend="callout.defaultcolumn.frag"></src:fragref> -<src:fragref linkend="callout.graphics.extension.frag"></src:fragref> -<src:fragref linkend="callout.graphics.frag"></src:fragref> -<src:fragref linkend="callout.graphics.number.limit.frag"></src:fragref> -<src:fragref linkend="callout.graphics.path.frag"></src:fragref> -<src:fragref linkend="callout.list.table.frag"></src:fragref> -<src:fragref linkend="callout.unicode.frag"></src:fragref> -<src:fragref linkend="callout.unicode.number.limit.frag"></src:fragref> -<src:fragref linkend="callout.unicode.start.character.frag"></src:fragref> -<src:fragref linkend="callouts.extension.frag"></src:fragref> -<src:fragref linkend="chapter.autolabel.frag"></src:fragref> -<src:fragref linkend="chunk.append.frag"></src:fragref> -<src:fragref linkend="chunk.first.sections.frag"></src:fragref> -<src:fragref linkend="chunk.quietly.frag"></src:fragref> -<src:fragref linkend="chunk.section.depth.frag"></src:fragref> -<src:fragref linkend="chunk.toc.frag"></src:fragref> -<src:fragref linkend="chunk.tocs.and.lots.frag"></src:fragref> -<src:fragref linkend="chunk.tocs.and.lots.has.title.frag"></src:fragref> -<src:fragref linkend="chunk.separate.lots.frag"></src:fragref> -<src:fragref linkend="citerefentry.link.frag"></src:fragref> -<src:fragref linkend="collect.xref.targets.frag"></src:fragref> -<src:fragref linkend="component.label.includes.part.label.frag"></src:fragref> -<src:fragref linkend="contrib.inline.enabled.frag"></src:fragref> -<src:fragref linkend="css.decoration.frag"></src:fragref> -<src:fragref linkend="current.docid.frag"></src:fragref> -<src:fragref linkend="default.float.class.frag"></src:fragref> -<src:fragref linkend="default.image.width.frag"></src:fragref> -<src:fragref linkend="default.table.width.frag"></src:fragref> -<src:fragref linkend="default.table.frame.frag"></src:fragref> -<src:fragref linkend="draft.mode.frag"></src:fragref> -<src:fragref linkend="draft.watermark.image.frag"></src:fragref> -<src:fragref linkend="ebnf.table.bgcolor.frag"></src:fragref> -<src:fragref linkend="ebnf.table.border.frag"></src:fragref> -<src:fragref linkend="ebnf.assignment.frag"></src:fragref> -<src:fragref linkend="ebnf.statement.terminator.frag"></src:fragref> -<src:fragref linkend="eclipse.autolabel.frag"></src:fragref> -<src:fragref linkend="eclipse.plugin.name.frag"></src:fragref> -<src:fragref linkend="eclipse.plugin.id.frag"></src:fragref> -<src:fragref linkend="eclipse.plugin.provider.frag"></src:fragref> -<src:fragref linkend="editedby.enabled.frag"></src:fragref> -<src:fragref linkend="email.delimiters.enabled.frag"></src:fragref> -<src:fragref linkend="emphasis.propagates.style.frag"></src:fragref> -<src:fragref linkend="entry.propagates.style.frag"></src:fragref> -<src:fragref linkend="exsl.node.set.available.frag"></src:fragref> -<src:fragref linkend="firstterm.only.link.frag"></src:fragref> -<src:fragref linkend="footer.rule.frag"></src:fragref> -<src:fragref linkend="footnote.number.format.frag"></src:fragref> -<src:fragref linkend="footnote.number.symbols.frag"></src:fragref> -<src:fragref linkend="formal.procedures.frag"></src:fragref> -<src:fragref linkend="formal.title.placement.frag"></src:fragref> -<src:fragref linkend="funcsynopsis.decoration.frag"></src:fragref> -<src:fragref linkend="funcsynopsis.style.frag"></src:fragref> -<src:fragref linkend="function.parens.frag"></src:fragref> -<src:fragref linkend="generate.id.attributes.frag"></src:fragref> -<src:fragref linkend="generate.index.frag"></src:fragref> -<src:fragref linkend="generate.legalnotice.link.frag"></src:fragref> -<src:fragref linkend="generate.revhistory.link.frag"></src:fragref> -<src:fragref linkend="generate.manifest.frag"></src:fragref> -<src:fragref linkend="generate.meta.abstract.frag"></src:fragref> -<src:fragref linkend="generate.section.toc.level.frag"></src:fragref> -<src:fragref linkend="generate.toc.frag"></src:fragref> -<src:fragref linkend="glossary.collection.frag"></src:fragref> -<src:fragref linkend="glossary.sort.frag"></src:fragref> -<src:fragref linkend="glossentry.show.acronym.frag"></src:fragref> -<src:fragref linkend="glossterm.auto.link.frag"></src:fragref> -<src:fragref linkend="graphic.default.extension.frag"></src:fragref> -<src:fragref linkend="graphicsize.extension.frag"></src:fragref> -<src:fragref linkend="graphicsize.use.img.src.path.frag"></src:fragref> -<src:fragref linkend="header.rule.frag"></src:fragref> -<src:fragref linkend="highlight.default.language.frag"></src:fragref> -<src:fragref linkend="highlight.source.frag"></src:fragref> -<src:fragref linkend="highlight.xslthl.config.frag"></src:fragref> -<src:fragref linkend="html.append.frag"></src:fragref> -<src:fragref linkend="html.base.frag"></src:fragref> -<src:fragref linkend="html.cellpadding.frag"></src:fragref> -<src:fragref linkend="html.cellspacing.frag"></src:fragref> -<src:fragref linkend="html.cleanup.frag"></src:fragref> -<src:fragref linkend="html.ext.frag"></src:fragref> -<src:fragref linkend="html.extra.head.links.frag"></src:fragref> -<src:fragref linkend="html.head.legalnotice.link.types.frag"></src:fragref> -<src:fragref linkend="html.head.legalnotice.link.multiple.frag"></src:fragref> -<src:fragref linkend="html.longdesc.frag"></src:fragref> -<src:fragref linkend="html.longdesc.link.frag"></src:fragref> -<src:fragref linkend="html.stylesheet.frag"></src:fragref> -<src:fragref linkend="html.stylesheet.type.frag"></src:fragref> -<src:fragref linkend="htmlhelp.alias.file.frag"></src:fragref> -<src:fragref linkend="htmlhelp.autolabel.frag"></src:fragref> -<src:fragref linkend="htmlhelp.button.back.frag"></src:fragref> -<src:fragref linkend="htmlhelp.button.forward.frag"></src:fragref> -<src:fragref linkend="htmlhelp.button.hideshow.frag"></src:fragref> -<src:fragref linkend="htmlhelp.button.home.frag"></src:fragref> -<src:fragref linkend="htmlhelp.button.home.url.frag"></src:fragref> -<src:fragref linkend="htmlhelp.button.jump1.frag"></src:fragref> -<src:fragref linkend="htmlhelp.button.jump1.title.frag"></src:fragref> -<src:fragref linkend="htmlhelp.button.jump1.url.frag"></src:fragref> -<src:fragref linkend="htmlhelp.button.jump2.frag"></src:fragref> -<src:fragref linkend="htmlhelp.button.jump2.title.frag"></src:fragref> -<src:fragref linkend="htmlhelp.button.jump2.url.frag"></src:fragref> -<src:fragref linkend="htmlhelp.button.locate.frag"></src:fragref> -<src:fragref linkend="htmlhelp.button.next.frag"></src:fragref> -<src:fragref linkend="htmlhelp.button.options.frag"></src:fragref> -<src:fragref linkend="htmlhelp.button.prev.frag"></src:fragref> -<src:fragref linkend="htmlhelp.button.print.frag"></src:fragref> -<src:fragref linkend="htmlhelp.button.refresh.frag"></src:fragref> -<src:fragref linkend="htmlhelp.button.stop.frag"></src:fragref> -<src:fragref linkend="htmlhelp.button.zoom.frag"></src:fragref> -<src:fragref linkend="htmlhelp.chm.frag"></src:fragref> -<src:fragref linkend="htmlhelp.default.topic.frag"></src:fragref> -<src:fragref linkend="htmlhelp.display.progress.frag"></src:fragref> -<src:fragref linkend="htmlhelp.encoding.frag"></src:fragref> -<src:fragref linkend="htmlhelp.enhanced.decompilation.frag"></src:fragref> -<src:fragref linkend="htmlhelp.enumerate.images.frag"></src:fragref> -<src:fragref linkend="htmlhelp.force.map.and.alias.frag"></src:fragref> -<src:fragref linkend="htmlhelp.hhc.binary.frag"></src:fragref> -<src:fragref linkend="htmlhelp.hhc.folders.instead.books.frag"></src:fragref> -<src:fragref linkend="htmlhelp.hhc.frag"></src:fragref> -<src:fragref linkend="htmlhelp.hhc.section.depth.frag"></src:fragref> -<src:fragref linkend="htmlhelp.hhc.show.root.frag"></src:fragref> -<src:fragref linkend="htmlhelp.hhc.width.frag"></src:fragref> -<src:fragref linkend="htmlhelp.hhk.frag"></src:fragref> -<src:fragref linkend="htmlhelp.hhp.frag"></src:fragref> -<src:fragref linkend="htmlhelp.hhp.tail.frag"></src:fragref> -<src:fragref linkend="htmlhelp.hhp.window.frag"></src:fragref> -<src:fragref linkend="htmlhelp.hhp.windows.frag"></src:fragref> -<src:fragref linkend="htmlhelp.map.file.frag"></src:fragref> -<src:fragref linkend="htmlhelp.only.frag"></src:fragref> -<src:fragref linkend="htmlhelp.remember.window.position.frag"></src:fragref> -<src:fragref linkend="htmlhelp.show.advanced.search.frag"></src:fragref> -<src:fragref linkend="htmlhelp.show.favorities.frag"></src:fragref> -<src:fragref linkend="htmlhelp.show.menu.frag"></src:fragref> -<src:fragref linkend="htmlhelp.show.toolbar.text.frag"></src:fragref> -<src:fragref linkend="htmlhelp.title.frag"></src:fragref> -<src:fragref linkend="htmlhelp.use.hhk.frag"></src:fragref> -<src:fragref linkend="htmlhelp.window.geometry.frag"></src:fragref> -<src:fragref linkend="img.src.path.frag"></src:fragref> -<src:fragref linkend="id.warnings.frag"></src:fragref> -<src:fragref linkend="index.method.frag"></src:fragref> -<src:fragref linkend="index.on.role.frag"></src:fragref> -<src:fragref linkend="index.links.to.section.frag"></src:fragref> -<src:fragref linkend="index.on.type.frag"></src:fragref> -<src:fragref linkend="index.number.separator.frag"></src:fragref> -<src:fragref linkend="index.term.separator.frag"></src:fragref> -<src:fragref linkend="index.range.separator.frag"></src:fragref> -<src:fragref linkend="index.prefer.titleabbrev.frag"></src:fragref> -<src:fragref linkend="ignore.image.scaling.frag"></src:fragref> -<src:fragref linkend="inherit.keywords.frag"></src:fragref> -<src:fragref linkend="insert.xref.page.number.frag"></src:fragref> -<src:fragref linkend="javahelp.encoding.frag"></src:fragref> -<src:fragref linkend="keep.relative.image.uris.frag"></src:fragref> -<src:fragref linkend="l10n.gentext.default.language.frag"></src:fragref> -<src:fragref linkend="l10n.gentext.language.frag"></src:fragref> -<src:fragref linkend="l10n.gentext.use.xref.language.frag"></src:fragref> -<src:fragref linkend="l10n.lang.value.rfc.compliant.frag"></src:fragref> -<src:fragref linkend="label.from.part.frag"></src:fragref> -<src:fragref linkend="linenumbering.everyNth.frag"></src:fragref> -<src:fragref linkend="linenumbering.extension.frag"></src:fragref> -<src:fragref linkend="linenumbering.separator.frag"></src:fragref> -<src:fragref linkend="linenumbering.width.frag"></src:fragref> -<src:fragref linkend="link.mailto.url.frag"></src:fragref> -<src:fragref linkend="make.graphic.viewport.frag"></src:fragref> -<src:fragref linkend="make.single.year.ranges.frag"></src:fragref> -<src:fragref linkend="make.valid.html.frag"></src:fragref> -<src:fragref linkend="make.year.ranges.frag"></src:fragref> -<src:fragref linkend="manifest.frag"></src:fragref> -<src:fragref linkend="manifest.in.base.dir.frag"></src:fragref> -<src:fragref linkend="manual.toc.frag"></src:fragref> -<src:fragref linkend="menuchoice.menu.separator.frag"></src:fragref> -<src:fragref linkend="menuchoice.separator.frag"></src:fragref> -<src:fragref linkend="navig.graphics.extension.frag"></src:fragref> -<src:fragref linkend="navig.graphics.frag"></src:fragref> -<src:fragref linkend="navig.graphics.path.frag"></src:fragref> -<src:fragref linkend="navig.showtitles.frag"></src:fragref> -<src:fragref linkend="nominal.image.depth.frag"></src:fragref> -<src:fragref linkend="nominal.image.width.frag"></src:fragref> -<src:fragref linkend="nominal.table.width.frag"></src:fragref> -<src:fragref linkend="olink.base.uri.frag"></src:fragref> -<src:fragref linkend="olink.debug.frag"></src:fragref> -<src:fragref linkend="olink.properties.frag"></src:fragref> -<src:fragref linkend="insert.olink.page.number.frag"></src:fragref> -<src:fragref linkend="insert.olink.pdf.frag.frag"></src:fragref> -<src:fragref linkend="prefer.internal.olink.frag"></src:fragref> -<src:fragref linkend="olink.lang.fallback.sequence.frag"></src:fragref> -<src:fragref linkend="olink.doctitle.frag"></src:fragref> -<src:fragref linkend="olink.fragid.frag"></src:fragref> -<src:fragref linkend="olink.outline.ext.frag"></src:fragref> -<src:fragref linkend="olink.pubid.frag"></src:fragref> -<src:fragref linkend="olink.resolver.frag"></src:fragref> -<src:fragref linkend="olink.sysid.frag"></src:fragref> -<src:fragref linkend="abstract.notitle.enabled.frag"></src:fragref> -<src:fragref linkend="othercredit.like.author.enabled.frag"></src:fragref> -<src:fragref linkend="para.propagates.style.frag"></src:fragref> -<src:fragref linkend="part.autolabel.frag"></src:fragref> -<src:fragref linkend="phrase.propagates.style.frag"></src:fragref> -<src:fragref linkend="pixels.per.inch.frag"></src:fragref> -<src:fragref linkend="points.per.em.frag"></src:fragref> -<src:fragref linkend="preface.autolabel.frag"></src:fragref> -<src:fragref linkend="preferred.mediaobject.role.frag"></src:fragref> -<src:fragref linkend="process.empty.source.toc.frag"></src:fragref> -<src:fragref linkend="process.source.toc.frag"></src:fragref> -<src:fragref linkend="profile.arch.frag"></src:fragref> -<src:fragref linkend="profile.audience.frag"></src:fragref> -<src:fragref linkend="profile.attribute.frag"></src:fragref> -<src:fragref linkend="profile.condition.frag"></src:fragref> -<src:fragref linkend="profile.conformance.frag"></src:fragref> -<src:fragref linkend="profile.lang.frag"></src:fragref> -<src:fragref linkend="profile.os.frag"></src:fragref> -<src:fragref linkend="profile.revision.frag"></src:fragref> -<src:fragref linkend="profile.revisionflag.frag"></src:fragref> -<src:fragref linkend="profile.role.frag"></src:fragref> -<src:fragref linkend="profile.security.frag"></src:fragref> -<src:fragref linkend="profile.separator.frag"></src:fragref> -<src:fragref linkend="profile.status.frag"></src:fragref> -<src:fragref linkend="profile.userlevel.frag"></src:fragref> -<src:fragref linkend="profile.value.frag"></src:fragref> -<src:fragref linkend="profile.vendor.frag"></src:fragref> -<src:fragref linkend="profile.wordsize.frag"></src:fragref> -<src:fragref linkend="punct.honorific.frag"></src:fragref> -<src:fragref linkend="qanda.defaultlabel.frag"></src:fragref> -<src:fragref linkend="qanda.inherit.numeration.frag"></src:fragref> -<src:fragref linkend="qanda.in.toc.frag"></src:fragref> -<src:fragref linkend="qanda.nested.in.toc.frag"></src:fragref> -<src:fragref linkend="qandadiv.autolabel.frag"></src:fragref> -<src:fragref linkend="refentry.generate.name.frag"></src:fragref> -<src:fragref linkend="refentry.generate.title.frag"></src:fragref> -<src:fragref linkend="refentry.separator.frag"></src:fragref> -<src:fragref linkend="refentry.xref.manvolnum.frag"></src:fragref> -<src:fragref linkend="reference.autolabel.frag"></src:fragref> -<src:fragref linkend="refclass.suppress.frag"></src:fragref> -<src:fragref linkend="root.filename.frag"></src:fragref> -<src:fragref linkend="rootid.frag"></src:fragref> -<src:fragref linkend="runinhead.default.title.end.punct.frag"></src:fragref> -<src:fragref linkend="runinhead.title.end.punct.frag"></src:fragref> -<src:fragref linkend="section.autolabel.frag"></src:fragref> -<src:fragref linkend="section.autolabel.max.depth.frag"></src:fragref> -<src:fragref linkend="section.label.includes.component.label.frag"></src:fragref> -<src:fragref linkend="segmentedlist.as.table.frag"></src:fragref> -<src:fragref linkend="shade.verbatim.frag"></src:fragref> -<src:fragref linkend="shade.verbatim.style.frag"></src:fragref> -<src:fragref linkend="show.comments.frag"></src:fragref> -<src:fragref linkend="show.revisionflag.frag"></src:fragref> -<src:fragref linkend="simplesect.in.toc.frag"></src:fragref> -<src:fragref linkend="spacing.paras.frag"></src:fragref> -<src:fragref linkend="suppress.footer.navigation.frag"></src:fragref> -<src:fragref linkend="suppress.header.navigation.frag"></src:fragref> -<src:fragref linkend="suppress.navigation.frag"></src:fragref> -<src:fragref linkend="table.borders.with.css.frag"></src:fragref> -<src:fragref linkend="table.cell.border.color.frag"></src:fragref> -<src:fragref linkend="table.cell.border.style.frag"></src:fragref> -<src:fragref linkend="table.cell.border.thickness.frag"></src:fragref> -<src:fragref linkend="table.footnote.number.format.frag"></src:fragref> -<src:fragref linkend="table.footnote.number.symbols.frag"></src:fragref> -<src:fragref linkend="table.frame.border.color.frag"></src:fragref> -<src:fragref linkend="table.frame.border.style.frag"></src:fragref> -<src:fragref linkend="table.frame.border.thickness.frag"></src:fragref> -<src:fragref linkend="tablecolumns.extension.frag"></src:fragref> -<src:fragref linkend="target.database.document.frag"></src:fragref> -<src:fragref linkend="targets.filename.frag"></src:fragref> -<src:fragref linkend="textdata.default.encoding.frag"></src:fragref> -<src:fragref linkend="tex.math.delims.frag"></src:fragref> -<src:fragref linkend="tex.math.file.frag"></src:fragref> -<src:fragref linkend="tex.math.in.alt.frag"></src:fragref> -<src:fragref linkend="textinsert.extension.frag"></src:fragref> -<src:fragref linkend="toc.list.type.frag"></src:fragref> -<src:fragref linkend="toc.section.depth.frag"></src:fragref> -<src:fragref linkend="toc.max.depth.frag"></src:fragref> -<src:fragref linkend="ulink.target.frag"></src:fragref> -<src:fragref linkend="use.embed.for.svg.frag"></src:fragref> -<src:fragref linkend="use.extensions.frag"></src:fragref> -<src:fragref linkend="use.id.as.filename.frag"></src:fragref> -<src:fragref linkend="use.local.olink.style.frag"></src:fragref> -<src:fragref linkend="use.role.as.xrefstyle.frag"></src:fragref> -<src:fragref linkend="use.role.for.mediaobject.frag"></src:fragref> -<src:fragref linkend="use.svg.frag"></src:fragref> -<src:fragref linkend="variablelist.as.table.frag"></src:fragref> -<src:fragref linkend="variablelist.term.separator.frag"></src:fragref> -<src:fragref linkend="variablelist.term.break.after.frag"></src:fragref> -<src:fragref linkend="writing.mode.frag"></src:fragref> -<src:fragref linkend="xref.with.number.and.title.frag"></src:fragref> -<src:fragref linkend="xref.label-title.separator.frag"></src:fragref> -<src:fragref linkend="xref.label-page.separator.frag"></src:fragref> -<src:fragref linkend="xref.title-page.separator.frag"></src:fragref> - -</xsl:stylesheet> - - - -
    diff --git a/docbook-xsl-1.75.2/html/param.xsl b/docbook-xsl-1.75.2/html/param.xsl deleted file mode 100644 index d53948c..0000000 --- a/docbook-xsl-1.75.2/html/param.xsl +++ /dev/null @@ -1,429 +0,0 @@ - - - - - - -.png - -images/ - - - - - - -/* ====================================================================== - Annotations -*/ - -div.annotation-list { visibility: hidden; - } - -div.annotation-nocss { position: absolute; - visibility: hidden; - } - -div.annotation-popup { position: absolute; - z-index: 4; - visibility: hidden; - padding: 0px; - margin: 2px; - border-style: solid; - border-width: 1px; - width: 200px; - background-color: white; - } - -div.annotation-title { padding: 1px; - font-weight: bold; - border-bottom-style: solid; - border-bottom-width: 1px; - color: white; - background-color: black; - } - -div.annotation-body { padding: 2px; - } - -div.annotation-body p { margin-top: 0px; - padding-top: 0px; - } - -div.annotation-close { position: absolute; - top: 2px; - right: 2px; - } - - - -http://docbook.sourceforge.net/release/script/AnchorPosition.js http://docbook.sourceforge.net/release/script/PopupWindow.js - -http://docbook.sourceforge.net/release/images/annot-open.png - -http://docbook.sourceforge.net/release/images/annot-close.png - -A - -. - - -. -http://docbook.sourceforge.net/release/bibliography/bibliography.xml - - -normal - - -60 -.png - - -15 - -images/callouts/ - - -10 -10102 - - - - - - - - - - - -no - -1 - - - - - left - before - - - - -all -maybe -http://docbook.sourceforge.net/release/images/draft.png -#F5DCB3 - - -::= - - - - - -DocBook Online Help Sample -com.example.help -Example provider -1 - - - - - - 1 - 0 - - - - -1 - - - -figure before -example before -equation before -table before -procedure before -task before - - -kr - - - - - - - - - -appendix toc,title -article/appendix nop -article toc,title -book toc,title,figure,table,example,equation -chapter toc,title -part toc,title -preface toc,title -qandadiv toc -qandaset toc -reference toc,title -sect1 toc -sect2 toc -sect3 toc -sect4 toc -sect5 toc -section toc -set toc,title - - - - -no - - - - - - - - - - - - - -.html - -copyright - - - - -text/css -alias.h - - - - - - - -User1 - - -User2 - - - - - - - - - -htmlhelp.chm - - -iso-8859-1 - - - - - -toc.hhc -5 - - -index.hhk -htmlhelp.hhp - -Main - -context.h - - - - - - - - - - - -basic - - - - - - - - - -no -iso-8859-1 - - -en - - - - -5 - - -3 - - - - - - HTML.manifest - - - - -+ -.gif - -images/ -1 - - -6in - - - - replace - -no - - - -no -fragid= -.olink -pubid - /cgi-bin/olink -sysid - -0 - -I - -90 -10 - - - - - - - - - - - - - - - -; - - - - - -. -number - - - - - - - - - I - -index - -. -.!?: - -8 - - - - - 0 - #E0E0E0 - - - - - - -0 - - - - - -solid -0.5pt -a - - - -solid -0.5pt - - olinkdb.xml -target.db - - -tex-math-equations.tex - - -dl -2 -8 -_top - - - - - - - - -, -0 - - - writing-mode - - - - - - - - -: - - - - diff --git a/docbook-xsl-1.75.2/html/pi.xml b/docbook-xsl-1.75.2/html/pi.xml deleted file mode 100644 index a8f357e..0000000 --- a/docbook-xsl-1.75.2/html/pi.xml +++ /dev/null @@ -1,1113 +0,0 @@ - - -HTML Processing Instruction Reference - - $Id: pi.xsl 8394 2009-04-02 20:31:30Z mzjn $ - - - - Introduction - -This is generated reference documentation for all - user-specifiable processing instructions (PIs) in the DocBook - XSL stylesheets for HTML output. - - -You add these PIs at particular points in a document to - cause specific “exceptions†to formatting/output behavior. To - make global changes in formatting/output behavior across an - entire document, it’s better to do it by setting an - appropriate stylesheet parameter (if there is one). - - - - - - - - -dbhtml_background-color -Sets background color for an image - - - - dbhtml background-color="color" - - -Description - -Use the dbhtml background-color PI before or - after an image (graphic, inlinegraphic, - imagedata, or videodata element) as a - sibling to the element, to set a background color for the - image. - - Parameters - - - background-color="color" - - -An HTML color value - - - - - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Background color - - - - - -dbhtml_bgcolor -Sets background color on a CALS table row or table cell - - - - dbhtml bgcolor="color" - - -Description - -Use the dbhtml bgcolor PI as child of a CALS table row - or cell to set a background color for that table row or cell. - - Parameters - - - bgcolor="color" - - -An HTML color value - - - - - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Cell background color - - - - - -dbhtml_cellpadding -Specifies cellpadding in CALS table or qandaset output - - - - dbhtml cellpadding="number" - - -Description - -Use the dbhtml cellpadding PI as a child of a - CALS table or qandaset to specify the value - for the HTML cellpadding attribute in the - output HTML table. - - Parameters - - - cellpadding="number" - - -Specifies the cellpadding - - - - - - Related Global Parameters - -html.cellpadding - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Cell spacing and cell padding, - Q and A formatting - - - - - -dbhtml_cellspacing -Specifies cellspacing in CALS table or qandaset output - - - - dbhtml cellspacing="number" - - -Description - -Use the dbhtml cellspacing PI as a child of a - CALS table or qandaset to specify the value - for the HTML cellspacing attribute in the - output HTML table. - - Parameters - - - cellspacing="number" - - -Specifies the cellspacing - - - - - - Related Global Parameters - -html.cellspacing - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Cell spacing and cell padding, - Q and A formatting - - - - - -dbhtml_class -Set value of the class attribute for a CALS table row - - - - dbhtml class="name" - - -Description - -Use the dbhtml class PI as a child of a - row to specify a class - attribute and value in the HTML output for that row. - - Parameters - - - class="name" - - -Specifies the class name - - - - - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Table styles in HTML output - - - - - -dbhtml_dir -Specifies a directory name in which to write files - - - - dbhtml dir="path" - - -Description - -When chunking output, use the dbhtml dir PI - as a child of a chunk source to cause the output of that - chunk to be written to the specified directory; also, use it - as a child of a mediaobject to specify a - directory into which any long-description files for that - mediaobject will be written. - - Parameters - - - dir="path" - - -Specifies the pathname for the directory - - - - - - Related Global Parameters - -base.dir - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -dbhtml dir processing instruction - - - - - -dbhtml_filename -Specifies a filename for a chunk - - - - dbhtml filename="filename" - - -Description - -When chunking output, use the dbhtml filename - PI as a child of a chunk source to specify a filename for - the output file for that chunk. - - Parameters - - - filename="path" - - -Specifies the filename for the file - - - - - - Related Global Parameters - -use.id.as.filename - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -dbhtml filenames - - - - - -dbhtml_funcsynopsis-style -Specifies presentation style for a funcsynopsis - - - - dbhtml funcsynopsis-style="kr"|"ansi" - - -Description - -Use the dbhtml funcsynopsis-style PI as a child of - a funcsynopsis or anywhere within a funcsynopsis - to control the presentation style for output of all - funcprototype instances within that funcsynopsis. - - Parameters - - - funcsynopsis-style="kr" - - -Displays funcprototype output in K&R style - - - - funcsynopsis-style="ansi" - - -Displays funcprototype output in ANSI style - - - - - - Related Global Parameters - -funcsynopsis.style - - - - - -dbhtml_img.src.path -Specifies a path to the location of an image file - - - - dbhtml img.src.path="path" - - -Description - -Use the dbhtml img.src.path PI before or - after an image (graphic, - inlinegraphic, imagedata, or - videodata element) as a sibling to the element, - to specify a path to the location of the image; in HTML - output, the value specified for the - img.src.path attribute is prepended to the - filename. - - Parameters - - - img.src.path="path" - - -Specifies the pathname to prepend to the name of the image file - - - - - - Related Global Parameters - -img.src.path - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Using fileref - - - - - -dbhtml_label-width -Specifies the label width for a qandaset - - - - dbhtml label-width="width" - - -Description - -Use the dbhtml label-width PI as a child of a - qandaset to specify the width of labels. - - Parameters - - - label-width="width" - - -Specifies the label width (including units) - - - - - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Q and A formatting - - - - - -dbhtml_linenumbering.everyNth -Specifies interval for line numbers in verbatims - - - - dbhtml linenumbering.everyNth="N" - - -Description - -Use the dbhtml linenumbering.everyNth PI as a child - of a “verbatim†element – programlisting, - screen, synopsis — to specify - the interval at which lines are numbered. - - Parameters - - - linenumbering.everyNth="N" - - -Specifies numbering interval; a number is output - before every Nth line - - - - - - Related Global Parameters - -linenumbering.everyNth - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Line numbering - - - - - -dbhtml_linenumbering.separator -Specifies separator text for line numbers in verbatims - - - - dbhtml linenumbering.separator="text" - - -Description - -Use the dbhtml linenumbering.separator PI as a child - of a “verbatim†element – programlisting, - screen, synopsis — to specify - the separator text output between the line numbers and content. - - Parameters - - - linenumbering.separator="text" - - -Specifies the text (zero or more characters) - - - - - - Related Global Parameters - -linenumbering.separator - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Line numbering - - - - - -dbhtml_linenumbering.width -Specifies width for line numbers in verbatims - - - - dbhtml linenumbering.width="width" - - -Description - -Use the dbhtml linenumbering.width PI as a child - of a “verbatim†element – programlisting, - screen, synopsis — to specify - the width set aside for line numbers. - - Parameters - - - linenumbering.width="width" - - -Specifies the width (inluding units) - - - - - - Related Global Parameters - -linenumbering.width - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Line numbering - - - - - -dbhtml_list-presentation -Specifies presentation style for a variablelist or - segmentedlist - - - - dbhtml list-presentation="list"|"table" - - -Description - -Use the dbhtml list-presentation PI as a child of - a variablelist or segmentedlist to - control the presentation style for the list (to cause it, for - example, to be displayed as a table). - - Parameters - - - list-presentation="list" - - -Displays the list as a list - - - - list-presentation="table" - - -Displays the list as a table - - - - - - Related Global Parameters - - - - -variablelist.as.table - - - - -segmentedlist.as.table - - - - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Variable list formatting in HTML - - - - - -dbhtml_list-width -Specifies the width of a variablelist or simplelist - - - - dbhtml list-width="width" - - -Description - -Use the dbhtml list-width PI as a child of a - variablelist or a simplelist presented - as a table, to specify the output width. - - Parameters - - - list-width="width" - - -Specifies the output width (including units) - - - - - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Variable list formatting in HTML - - - - - -dbhtml_row-height -Specifies the height for a CALS table row - - - - dbhtml row-height="height" - - -Description - -Use the dbhtml row-height PI as a child of a - row to specify the height of the row. - - Parameters - - - row-height="height" - - -Specifies the row height (including units) - - - - - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Row height - - - - - -dbhtml_start -(obsolete) Sets the starting number on an ordered list - - - - dbhtml start="character" - - -Description - -This PI is obsolete. The intent of - this PI was to provide a means for setting a specific starting - number for an ordered list. Instead of this PI, set a value - for the override attribute on the first - listitem in the list; that will have the same - effect as what this PI was intended for. - - Parameters - - - start="character" - - -Specifies the character to use as the starting - number; use 0-9, a-z, A-Z, or lowercase or uppercase - Roman numerals - - - - - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -List starting number - - - - - -dbhtml_stop-chunking -Do not chunk any descendants of this element. - - - - dbhtml stop-chunking - - -Description - -When generating chunked HTML output, adding this PI as the child of an element that contains elements that would normally be generated on separate pages if generating chunked output causes chunking to stop at this point. No descendants of the current element will be split into new HTML pages: -<section> -<title>Configuring pencil</title> -<?dbhtml stop-chunking?> - -... - -</section> - - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Chunking into multiple HTML files - - - - - -dbhtml_table-summary -Specifies summary for CALS table, variablelist, segmentedlist, or qandaset output - - - - dbhtml table-summary="text" - - -Description - -Use the dbhtml table-summary PI as a child of - a CALS table, variablelist, - segmentedlist, or qandaset to specify - the text for the HTML summary attribute - in the output HTML table. - - Parameters - - - table-summary="text" - - -Specifies the summary text (zero or more characters) - - - - - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Variable list formatting in HTML, - Table summary text - - - - - -dbhtml_table-width -Specifies the width for a CALS table - - - - dbhtml table-width="width" - - -Description - -Use the dbhtml table-width PI as a child of a - CALS table to specify the width of the table in - output. - - Parameters - - - table-width="width" - - -Specifies the table width (including units or as a percentage) - - - - - - Related Global Parameters - -default.table.width - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Table width - - - - - -dbhtml_term-presentation -Sets character formatting for terms in a variablelist - - - - dbhtml term-presentation="bold"|"italic"|"bold-italic" - - -Description - -Use the dbhtml term-presentation PI as a child - of a variablelist to set character formatting for - the term output of the list. - - Parameters - - - term-presentation="bold" - - -Specifies that terms are displayed in bold - - - - term-presentation="italic" - - -Specifies that terms are displayed in italic - - - - term-presentation="bold-italic" - - -Specifies that terms are displayed in bold-italic - - - - - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Variable list formatting in HTML - - - - - -dbhtml_term-separator -Specifies separator text among terms in a varlistentry - - - - dbhtml term-separator="text" - - -Description - -Use the dbhtml term-separator PI as a child - of a variablelist to specify the separator text - among term instances. - - Parameters - - - term-separator="text" - - -Specifies the text (zero or more characters) - - - - - - Related Global Parameters - -variablelist.term.separator - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Variable list formatting in HTML - - - - - -dbhtml_term-width -Specifies the term width for a variablelist - - - - dbhtml term-width="width" - - -Description - -Use the dbhtml term-width PI as a child of a - variablelist to specify the width for - term output. - - Parameters - - - term-width="width" - - -Specifies the term width (including units) - - - - - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Variable list formatting in HTML - - - - - -dbhtml_toc -Specifies whether a TOC should be generated for a qandaset - - - - dbhtml toc="0"|"1" - - -Description - -Use the dbhtml toc PI as a child of a - qandaset to specify whether a table of contents - (TOC) is generated for the qandaset. - - Parameters - - - toc="0" - - -If zero, no TOC is generated - - - - toc="1" - - -If 1 (or any non-zero value), - a TOC is generated - - - - - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Q and A list of questions, - Q and A formatting - - - - - -dbcmdlist -Generates a hyperlinked list of commands - - - - dbcmdlist - - -Description - -Use the dbcmdlist PI as the child of any - element (for example, refsynopsisdiv) containing multiple - cmdsynopsis instances; a hyperlinked navigational - “command list†will be generated at the top of output for that - element, enabling users to quickly jump - to each command synopsis. - - Parameters - -[No parameters] - - - - - -dbfunclist -Generates a hyperlinked list of functions - - - - dbfunclist - - -Description - -Use the dbfunclist PI as the child of any - element (for example, refsynopsisdiv) containing multiple - funcsynopsis instances; a hyperlinked - navigational “function list†will be generated at the top of - output for that element, enabling users to quickly - jump to to each function synopsis. - - Parameters - -[No parameters] - - - - - -dbhtml-include_href -Copies an external well-formed HTML/XML file into current doc - - - - dbhtml-include href="URI" - - -Description - -Use the dbhtml-include href PI anywhere in a - document to cause the contents of the file referenced by the - href pseudo-attribute to be copied/inserted “as - is†into your HTML output at the point in document order - where the PI occurs in the source. - - - -The referenced file may contain plain text (as long as - it is “wrapped†in an html element — see the - note below) or markup in any arbitrary vocabulary, - including HTML — but it must conform to XML - well-formedness constraints (because the feature in XSLT - 1.0 for opening external files, the - document() function, can only handle - files that meet XML well-formedness constraints). - - -Among other things, XML well-formedness constraints - require a document to have a single root - element. So if the content you want to - include is plain text or is markup that does - not have a single root element, - wrap the content in an - html element. The stylesheets will - strip out that surrounding html “wrapper†when - they find it, leaving just the content you want to - insert. - - - Parameters - - - href="URI" - - -Specifies the URI for the file to include; the URI - can be, for example, a remote http: - URI, or a local filesystem file: - URI - - - - - - Related Global Parameters - -textinsert.extension - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Inserting external HTML code, - External code files - - - - - -dbhh -Sets topic name and topic id for context-sensitive HTML Help - - - - dbhh topicname="name" topicid="id" - - -Description - -Use the dbhh PI as a child of components - that should be used as targets for context-sensitive help requests. - - Parameters - - - topicname="name" - - -Specifies a unique string constant that identifies a help topic - - - - topicid="id" - - -Specifies a unique integer value for the topicname string - - - - - - Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> - -Context-sensitive help - - - - diff --git a/docbook-xsl-1.75.2/html/pi.xsl b/docbook-xsl-1.75.2/html/pi.xsl deleted file mode 100644 index ac1345f..0000000 --- a/docbook-xsl-1.75.2/html/pi.xsl +++ /dev/null @@ -1,1263 +0,0 @@ - - - - - -HTML Processing Instruction Reference - - $Id: pi.xsl 8394 2009-04-02 20:31:30Z mzjn $ - - - - Introduction - This is generated reference documentation for all - user-specifiable processing instructions (PIs) in the DocBook - XSL stylesheets for HTML output. - - You add these PIs at particular points in a document to - cause specific “exceptions†to formatting/output behavior. To - make global changes in formatting/output behavior across an - entire document, it’s better to do it by setting an - appropriate stylesheet parameter (if there is one). - - - - - - - - - Sets background color for an image - - Use the dbhtml background-color PI before or - after an image (graphic, inlinegraphic, - imagedata, or videodata element) as a - sibling to the element, to set a background color for the - image. - - - dbhtml background-color="color" - - - - background-color="color" - - An HTML color value - - - - - - Background color - - - - - - - - - - - - Sets background color on a CALS table row or table cell - - Use the dbhtml bgcolor PI as child of a CALS table row - or cell to set a background color for that table row or cell. - - - dbhtml bgcolor="color" - - - - bgcolor="color" - - An HTML color value - - - - - - Cell background color - - - - - - - - - - - - Specifies cellpadding in CALS table or qandaset output - - Use the dbhtml cellpadding PI as a child of a - CALS table or qandaset to specify the value - for the HTML cellpadding attribute in the - output HTML table. - - - dbhtml cellpadding="number" - - - - cellpadding="number" - - Specifies the cellpadding - - - - - - html.cellpadding - - - Cell spacing and cell padding, - Q and A formatting - - - - - - - - - - - - Specifies cellspacing in CALS table or qandaset output - - Use the dbhtml cellspacing PI as a child of a - CALS table or qandaset to specify the value - for the HTML cellspacing attribute in the - output HTML table. - - - dbhtml cellspacing="number" - - - - cellspacing="number" - - Specifies the cellspacing - - - - - - html.cellspacing - - - Cell spacing and cell padding, - Q and A formatting - - - - - - - - - - - - Set value of the class attribute for a CALS table row - - Use the dbhtml class PI as a child of a - row to specify a class - attribute and value in the HTML output for that row. - - - dbhtml class="name" - - - - class="name" - - Specifies the class name - - - - - - Table styles in HTML output - - - - - - - - - - - - Specifies a directory name in which to write files - - When chunking output, use the dbhtml dir PI - as a child of a chunk source to cause the output of that - chunk to be written to the specified directory; also, use it - as a child of a mediaobject to specify a - directory into which any long-description files for that - mediaobject will be written. - - - dbhtml dir="path" - - - - dir="path" - - Specifies the pathname for the directory - - - - - - base.dir - - - dbhtml dir processing instruction - - - - - - - - - - - - Specifies a filename for a chunk - - When chunking output, use the dbhtml filename - PI as a child of a chunk source to specify a filename for - the output file for that chunk. - - - dbhtml filename="filename" - - - - filename="path" - - Specifies the filename for the file - - - - - - use.id.as.filename - - - dbhtml filenames - - - - - - - - - - - - Specifies presentation style for a funcsynopsis - - Use the dbhtml funcsynopsis-style PI as a child of - a funcsynopsis or anywhere within a funcsynopsis - to control the presentation style for output of all - funcprototype instances within that funcsynopsis. - - - dbhtml funcsynopsis-style="kr"|"ansi" - - - - funcsynopsis-style="kr" - - Displays funcprototype output in K&R style - - - funcsynopsis-style="ansi" - - Displays funcprototype output in ANSI style - - - - - - funcsynopsis.style - - - - - - - - - - - - Specifies a path to the location of an image file - - Use the dbhtml img.src.path PI before or - after an image (graphic, - inlinegraphic, imagedata, or - videodata element) as a sibling to the element, - to specify a path to the location of the image; in HTML - output, the value specified for the - img.src.path attribute is prepended to the - filename. - - - dbhtml img.src.path="path" - - - - img.src.path="path" - - Specifies the pathname to prepend to the name of the image file - - - - - - img.src.path - - - Using fileref - - - - - - - - - - - - Specifies the label width for a qandaset - - Use the dbhtml label-width PI as a child of a - qandaset to specify the width of labels. - - - dbhtml label-width="width" - - - - label-width="width" - - Specifies the label width (including units) - - - - - - Q and A formatting - - - - - - - - - - - - Specifies interval for line numbers in verbatims - - Use the dbhtml linenumbering.everyNth PI as a child - of a “verbatim†element – programlisting, - screen, synopsis — to specify - the interval at which lines are numbered. - - - dbhtml linenumbering.everyNth="N" - - - - linenumbering.everyNth="N" - - Specifies numbering interval; a number is output - before every Nth line - - - - - - linenumbering.everyNth - - - Line numbering - - - - - - - - - - - - Specifies separator text for line numbers in verbatims - - Use the dbhtml linenumbering.separator PI as a child - of a “verbatim†element – programlisting, - screen, synopsis — to specify - the separator text output between the line numbers and content. - - - dbhtml linenumbering.separator="text" - - - - linenumbering.separator="text" - - Specifies the text (zero or more characters) - - - - - - linenumbering.separator - - - Line numbering - - - - - - - - - - - - Specifies width for line numbers in verbatims - - Use the dbhtml linenumbering.width PI as a child - of a “verbatim†element – programlisting, - screen, synopsis — to specify - the width set aside for line numbers. - - - dbhtml linenumbering.width="width" - - - - linenumbering.width="width" - - Specifies the width (inluding units) - - - - - - linenumbering.width - - - Line numbering - - - - - - - - - - - - Specifies presentation style for a variablelist or - segmentedlist - - Use the dbhtml list-presentation PI as a child of - a variablelist or segmentedlist to - control the presentation style for the list (to cause it, for - example, to be displayed as a table). - - - dbhtml list-presentation="list"|"table" - - - - list-presentation="list" - - Displays the list as a list - - - list-presentation="table" - - Displays the list as a table - - - - - - - - variablelist.as.table - - - segmentedlist.as.table - - - - - Variable list formatting in HTML - - - - - - - - - - - - Specifies the width of a variablelist or simplelist - - Use the dbhtml list-width PI as a child of a - variablelist or a simplelist presented - as a table, to specify the output width. - - - dbhtml list-width="width" - - - - list-width="width" - - Specifies the output width (including units) - - - - - - Variable list formatting in HTML - - - - - - - - - - - - Specifies the height for a CALS table row - - Use the dbhtml row-height PI as a child of a - row to specify the height of the row. - - - dbhtml row-height="height" - - - - row-height="height" - - Specifies the row height (including units) - - - - - - Row height - - - - - - - - - - - - (obsolete) Sets the starting number on an ordered list - - This PI is obsolete. The intent of - this PI was to provide a means for setting a specific starting - number for an ordered list. Instead of this PI, set a value - for the override attribute on the first - listitem in the list; that will have the same - effect as what this PI was intended for. - - - dbhtml start="character" - - - - start="character" - - Specifies the character to use as the starting - number; use 0-9, a-z, A-Z, or lowercase or uppercase - Roman numerals - - - - - - List starting number - - - - - - - - - - - - Do not chunk any descendants of this element. - - When generating chunked HTML output, adding this PI as the child of an element that contains elements that would normally be generated on separate pages if generating chunked output causes chunking to stop at this point. No descendants of the current element will be split into new HTML pages: - -Configuring pencil - - -... - -]]> - - - - dbhtml stop-chunking - - - Chunking into multiple HTML files - - - - - - Specifies summary for CALS table, variablelist, segmentedlist, or qandaset output - - Use the dbhtml table-summary PI as a child of - a CALS table, variablelist, - segmentedlist, or qandaset to specify - the text for the HTML summary attribute - in the output HTML table. - - - dbhtml table-summary="text" - - - - table-summary="text" - - Specifies the summary text (zero or more characters) - - - - - - Variable list formatting in HTML, - Table summary text - - - - - - - - - - - - Specifies the width for a CALS table - - Use the dbhtml table-width PI as a child of a - CALS table to specify the width of the table in - output. - - - dbhtml table-width="width" - - - - table-width="width" - - Specifies the table width (including units or as a percentage) - - - - - - default.table.width - - - Table width - - - - - - - - - - - - Sets character formatting for terms in a variablelist - - Use the dbhtml term-presentation PI as a child - of a variablelist to set character formatting for - the term output of the list. - - - dbhtml term-presentation="bold"|"italic"|"bold-italic" - - - - term-presentation="bold" - - Specifies that terms are displayed in bold - - - term-presentation="italic" - - Specifies that terms are displayed in italic - - - term-presentation="bold-italic" - - Specifies that terms are displayed in bold-italic - - - - - - Variable list formatting in HTML - - - - - - - - - - - - Specifies separator text among terms in a varlistentry - - Use the dbhtml term-separator PI as a child - of a variablelist to specify the separator text - among term instances. - - - dbhtml term-separator="text" - - - - term-separator="text" - - Specifies the text (zero or more characters) - - - - - - variablelist.term.separator - - - Variable list formatting in HTML - - - - - - - - - - - - Specifies the term width for a variablelist - - Use the dbhtml term-width PI as a child of a - variablelist to specify the width for - term output. - - - dbhtml term-width="width" - - - - term-width="width" - - Specifies the term width (including units) - - - - - - Variable list formatting in HTML - - - - - - - - - - - - Specifies whether a TOC should be generated for a qandaset - - Use the dbhtml toc PI as a child of a - qandaset to specify whether a table of contents - (TOC) is generated for the qandaset. - - - dbhtml toc="0"|"1" - - - - toc="0" - - If zero, no TOC is generated - - - toc="1" - - If 1 (or any non-zero value), - a TOC is generated - - - - - - Q and A list of questions, - Q and A formatting - - - - - - - - - - - - Generates a hyperlinked list of commands - - Use the dbcmdlist PI as the child of any - element (for example, refsynopsisdiv) containing multiple - cmdsynopsis instances; a hyperlinked navigational - “command list†will be generated at the top of output for that - element, enabling users to quickly jump - to each command synopsis. - - - dbcmdlist - - - [No parameters] - - - - - - No cmdsynopsis elements matched dbcmdlist PI, perhaps it's nested too deep? - - -
    - - - -
    -
    - - - Generates a hyperlinked list of functions - - Use the dbfunclist PI as the child of any - element (for example, refsynopsisdiv) containing multiple - funcsynopsis instances; a hyperlinked - navigational “function list†will be generated at the top of - output for that element, enabling users to quickly - jump to to each function synopsis. - - - dbfunclist - - - [No parameters] - - - - - - No funcsynopsis elements matched dbfunclist PI, perhaps it's nested too deep? - - -
    - - - -
    -
    - - - Copies an external well-formed HTML/XML file into current doc - - Use the dbhtml-include href PI anywhere in a - document to cause the contents of the file referenced by the - href pseudo-attribute to be copied/inserted “as - is†into your HTML output at the point in document order - where the PI occurs in the source. - - The referenced file may contain plain text (as long as - it is “wrapped†in an html element — see the - note below) or markup in any arbitrary vocabulary, - including HTML — but it must conform to XML - well-formedness constraints (because the feature in XSLT - 1.0 for opening external files, the - document() function, can only handle - files that meet XML well-formedness constraints). - Among other things, XML well-formedness constraints - require a document to have a single root - element. So if the content you want to - include is plain text or is markup that does - not have a single root element, - wrap the content in an - html element. The stylesheets will - strip out that surrounding html “wrapper†when - they find it, leaving just the content you want to - insert. - - - - dbhtml-include href="URI" - - - - href="URI" - - Specifies the URI for the file to include; the URI - can be, for example, a remote http: - URI, or a local filesystem file: - URI - - - - - - textinsert.extension - - - Inserting external HTML code, - External code files - - - - - - - href - - - - - - - - - - - - - - - - - - - - ERROR: dbhtml-include processing instruction - href has no content. - - - - - - - ERROR: dbhtml-include processing instruction has - missing or empty href value. - - - - - - - - Sets topic name and topic id for context-sensitive HTML Help - - Use the dbhh PI as a child of components - that should be used as targets for context-sensitive help requests. - - - dbhh topicname="name" topicid="id" - - - - topicname="name" - - Specifies a unique string constant that identifies a help topic - - - topicid="id" - - Specifies a unique integer value for the topicname string - - - - - - Context-sensitive help - - - - - - - - - - filename - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - # - - - - - - - - - - - - - - - - - - -
    - - - - - -
    -
    -
    - - - - - - - - - - - - - - - -
    - - - # - - - - - - - - - - - - - - - - - - -
    - - - - - -
    -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - / - - - - / - - - - -
    diff --git a/docbook-xsl-1.75.2/html/profile-chunk-code.xsl b/docbook-xsl-1.75.2/html/profile-chunk-code.xsl deleted file mode 100644 index 1995021..0000000 --- a/docbook-xsl-1.75.2/html/profile-chunk-code.xsl +++ /dev/null @@ -1,608 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - bk - - - - - - - - - - - - - - - ar - - - - - - - - - - - - - - - pr - - - - - - - - - - - - - - - ch - - - - - - - - - - - - - - - ap - - - - - - - - - - - - - - - - - - - pt - - - - - - - - - - - - - - - - - - - rn - - - - - - - - - - - - - - - - - - re - - - - - - - - - - - - - - - - - - - co - - - - - - - - - - - s - - - - - - - - - - - - - - - - - - - bi - - - - - - - - - - - - - - - - - - - go - - - - - - - - - - - - - - - - - - - ix - - - - - - - - si - - - - - - - - chunk-filename-error- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Note: namesp. cut : stripped namespace before processingNote: namesp. cut : processing stripped document - - - - - - - - - - - - - - - - - ID ' - - ' not found in document. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/html/profile-chunk.xsl b/docbook-xsl-1.75.2/html/profile-chunk.xsl deleted file mode 100644 index 02920b1..0000000 --- a/docbook-xsl-1.75.2/html/profile-chunk.xsl +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/html/profile-docbook.xsl b/docbook-xsl-1.75.2/html/profile-docbook.xsl deleted file mode 100644 index 7fd1cfc..0000000 --- a/docbook-xsl-1.75.2/html/profile-docbook.xsl +++ /dev/null @@ -1,414 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Element - - in namespace ' - - ' encountered - - in - - - , but no template matches. - - - - < - - > - - </ - - > - - - - - - - - - white - black - #0000FF - #840084 - #0000FF - - rtl - - - - - - - - - - - <xsl:copy-of select="$title"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Note: namesp. cut : stripped namespace before processingNote: namesp. cut : processing stripped document - - - - - - - - - - - - - - - - - - ID ' - - ' not found in document. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - - - - - diff --git a/docbook-xsl-1.75.2/html/profile-onechunk.xsl b/docbook-xsl-1.75.2/html/profile-onechunk.xsl deleted file mode 100644 index 325b8b1..0000000 --- a/docbook-xsl-1.75.2/html/profile-onechunk.xsl +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - -1 - - - - # - - - - - - diff --git a/docbook-xsl-1.75.2/html/qandaset.xsl b/docbook-xsl-1.75.2/html/qandaset.xsl deleted file mode 100644 index 3bf35e8..0000000 --- a/docbook-xsl-1.75.2/html/qandaset.xsl +++ /dev/null @@ -1,437 +0,0 @@ - - - - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    - -

    -
    - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    - -

    -
    - - - - - - - - - - -
    - - - - - - - - - - - - - - -
    - - -
    -
    - - -
    -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - -
    - - - - -
    - - - -
    - -
    -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1% - - - - - - - - -
    -
    - - - - - - - - - -
    diff --git a/docbook-xsl-1.75.2/html/refentry.xsl b/docbook-xsl-1.75.2/html/refentry.xsl deleted file mode 100644 index 8eaf768..0000000 --- a/docbook-xsl-1.75.2/html/refentry.xsl +++ /dev/null @@ -1,299 +0,0 @@ - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - - - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    - -

    -
    - - - - -
    - - - - -
    -
    -
    -
    - - - - - - -
    -
    - - - - - - - - - - - - - - ( - - ) - - - - - - - - - - - -
    - - - - - - - - - - -

    - - - -

    -
    - -

    - - - - - - - - -

    -
    -
    - -

    - -

    -
    -
    - - - - - - , - - - - - - - - - em-dash - - - - - - - - - - - - - - - - : - - - - - - - -
    - - - - -

    - - - - - - - - - - -

    - -
    -
    - - - - - - - - - - - -
    - - - - - - - - - -
    -
    - - - - - - 0 - 1 - - - - 6 - - - - - - - - - - - - -

    - -

    -
    - - - -

    - -

    -
    - - - -

    - -

    -
    - - - - - - - - - -
    diff --git a/docbook-xsl-1.75.2/html/sections.xsl b/docbook-xsl-1.75.2/html/sections.xsl deleted file mode 100644 index 4278d2f..0000000 --- a/docbook-xsl-1.75.2/html/sections.xsl +++ /dev/null @@ -1,615 +0,0 @@ - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -
    -
    - - - - - - - - 1 - 2 - 3 - 4 - 5 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    - - - - - - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 6 - - - - - - - - - - clear: both - - - - - - - - - - - - - - - - - - - - - - - 1 - - - - - - - - - - - - 1 - - - - - - - 2 - 3 - 4 - 5 - 6 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - diff --git a/docbook-xsl-1.75.2/html/synop.xsl b/docbook-xsl-1.75.2/html/synop.xsl deleted file mode 100644 index be19756..0000000 --- a/docbook-xsl-1.75.2/html/synop.xsl +++ /dev/null @@ -1,1554 +0,0 @@ - - -]> - - - - - - - - - - - -
    - -

    - - - - - - - - - - - - -

    -
    -
    - - -
    - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    - - - - - - - - - - - ( - - ) - -   - - - - - - - - - - - - - - - - - - - ( - - ) - - - - - - - - - - - - - - - - - - - - - - -
    -    
    -    
    -  
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    - - -
    - -
    -

    -
    - - - - - - ( - - - - - - - - - - - - - - - - ) - ; - - - - ... - ) - ; - - - - - - - , - - - ) - ; - - - - - - - - - - - - - - - - - - - - -
    - - - - ; -
    - - - - - - - - - - - - - - - - - - ( - - ) - - - - - - - - - - - - - - - - - -
    - -
     
    - -
    - -
    -
    -
     
    -
    - - - - - - ( - - - - - - - - - - - - - - - - - ) - ; - -   - - - - - ... - ) - ; - -   - - - - - - - - , - - - ) - ; - - - -   - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -   - - - - - - - - - - - - - - - - - - - - - - - - - - - - -   - - - - - - ; - - - - - - - - - - - - - - - - - - - - - - - - ( - - ) - ; - - - - - - -

    - -

    -
    - - - - - - ( - - - - - - - - - - - - - - - - void) - ; - - - - ... - ) - ; - - - - - - - , - - - ) - ; - - - - - - - - - - - - - - - - - - - - - ( - - ) - - - - - - - - - - - - - - - - - -
    - -
     
    -
     
    -
    - - - - - - ( - - - - - - - - - - - - - - - - - void) - ; - -   - - - - - ... - ) - ; - -   - - - - - - - - , - - - ) - ; - - - - - - - - - - - - - - - - - - - - - - ( - - ) - - - - -java - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Unrecognized language on - - : - - - - - - - - - - - -
    -
    -
    - - - - - -
    -    
    -    
    -    
    -       extends
    -      
    -      
    -        
    -      -
    -
    - - implements - - -
    -      -
    -
    - - throws - - -  { -
    - - } -
    -
    - - - - - - - - - , - - - - - - - - - - - - - - - - -   - - - - - - - , - - - - - - - - - - , - - - - - - - - - - , - - - - - - - - - - - -    - - - ; - - - - - - - - -   - - - - - - - -   - - - - - - - - - - - - - - - void  - - - - - - - - - - - - 0 - - , -
    - - -   - - - -
    - - - - -
    - - - - - - - - - - - - - - -    - - - - - - - - - - - - - - - ( - - - - ) - -
    -     throws  - -
    - - - - - ; -
    - -
    - - - - -
    -    
    -    
    -    
    -      : 
    -      
    -      
    -        
    -      -
    -
    - - implements - - -
    -      -
    -
    - - throws - - -  { -
    - - } -
    -
    - - - - - - - - , - - - - - - - - - - - - -   - - - - - - - , - - - - - - - - - - , - - - - - - - - - - , - - - - - - - - - - - -    - - - ; - - - - - - - - -   - - - - - - - -   - - - - - - - - - - - - - - - void  - - - - - - - - - - - - - , - - - - - - - - - - - - - - - - - - - - - - -    - - - - - - - - - - ( - - ) - -
    -     throws  - -
    - - - - - ; -
    - -
    - - - - -
    -    
    -    interface 
    -    
    -    
    -      : 
    -      
    -      
    -        
    -      -
    -
    - - implements - - -
    -      -
    -
    - - throws - - -  { -
    - - } -
    -
    - - - - - - - - , - - - - - - - - - - - - -   - - - - - - - , - - - - - - - - - - , - - - - - - - - - - , - - - - - - - - - - - -    - - - ; - - - - - - - - -   - - - - - - - -   - - - - - - - - - - - - - - - void  - - - - - - - - - - - - - , - - - - - - - - - - - - - - - - - - - - - -    - - - - - - - - - - ( - - ) - -
    -     raises( - - ) -
    - - - - - ; -
    - -
    - - - - -
    -    
    -    package 
    -    
    -    ;
    -    
    - - - @ISA = ( - - ); -
    -
    - - -
    -
    - - - - - - - - , - - - - - - - - - - - - -   - - - - - - - , - - - - - - - - - - , - - - - - - - - - - , - - - - - - - - - - - -    - - - ; - - - - - - - - -   - - - - - - - -   - - - - - - - - - - - - - - - void  - - - - - - - - - - - - - , - - - - - - - - - - - - - - - - - - - - - - sub - - - { ... }; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    diff --git a/docbook-xsl-1.75.2/html/table.xsl b/docbook-xsl-1.75.2/html/table.xsl deleted file mode 100644 index 69fa81d..0000000 --- a/docbook-xsl-1.75.2/html/table.xsl +++ /dev/null @@ -1,1147 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - - - - - - - - - - - - - - - - - - - - - - - - - - -   - - - - - - - - - - - - - - - - - - - border- - - : - - - - - - ; - - - - - border- - - -width: - - ; - - - - border- - - -style: - - ; - - - - border- - - -color: - - ; - - - - - - - - - - - Error: CALS tables must specify the number of columns. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 100% - - - - - - - - border-collapse: collapse; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - border-collapse: collapse; - - - - - - - - - - - - - - - - - border-collapse: collapse; - - - - - - - - - - - border-collapse: collapse; - - - - - - - - - - - border-collapse: collapse; - - - - - - - - - - - - - - - - - border: none; - - - - - border-collapse: collapse; - - - - - - - 0 - - - 1 - - - - - - - - - - - - - - - - - - - - - - - - 100% - - - - - - - - - - - - - - - - - - - - - - - - No convertLength function available. - - - - - - - - - - - - - - - - - - - - - - - - - - No adjustColumnWidths function available. - - - - - - - - - - - - - - - - - - - - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Warning: overlapped row contains content! - - - This row intentionally left blank - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - - - - - - - - th - th - td - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -   - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - - - - - - - - - - - - - - : - - - - - - - - 0: - - - - - - - - - - - - - - - 0 - - : - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - - 1 - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - diff --git a/docbook-xsl-1.75.2/html/task.xsl b/docbook-xsl-1.75.2/html/task.xsl deleted file mode 100644 index 01da940..0000000 --- a/docbook-xsl-1.75.2/html/task.xsl +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - - - - - - - - - before - - - - - - - - -
    - - - - - - - - - - - - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - -
    diff --git a/docbook-xsl-1.75.2/html/titlepage.templates.xml b/docbook-xsl-1.75.2/html/titlepage.templates.xml deleted file mode 100644 index 926b3c3..0000000 --- a/docbook-xsl-1.75.2/html/titlepage.templates.xml +++ /dev/null @@ -1,686 +0,0 @@ - - - - - - - - <subtitle/> - <corpauthor/> - <authorgroup/> - <author/> - <othercredit/> - <releaseinfo/> - <copyright/> - <legalnotice/> - <pubdate/> - <revision/> - <revhistory/> - <abstract/> - </t:titlepage-content> - - <t:titlepage-content t:side="verso"> - </t:titlepage-content> - - <t:titlepage-separator> - <hr/> - </t:titlepage-separator> - - <t:titlepage-before t:side="recto"> - </t:titlepage-before> - - <t:titlepage-before t:side="verso"> - </t:titlepage-before> -</t:titlepage> - -<!-- ==================================================================== --> - -<t:titlepage t:element="set" t:wrapper="div" class="titlepage"> - <t:titlepage-content t:side="recto"> - <title/> - <subtitle/> - <corpauthor/> - <authorgroup/> - <author/> - <othercredit/> - <releaseinfo/> - <copyright/> - <legalnotice/> - <pubdate/> - <revision/> - <revhistory/> - <abstract/> - </t:titlepage-content> - - <t:titlepage-content t:side="verso"> - </t:titlepage-content> - - <t:titlepage-separator> - <hr/> - </t:titlepage-separator> - - <t:titlepage-before t:side="recto"> - </t:titlepage-before> - - <t:titlepage-before t:side="verso"> - </t:titlepage-before> -</t:titlepage> - -<!-- ==================================================================== --> - -<t:titlepage t:element="book" t:wrapper="div" class="titlepage"> - <t:titlepage-content t:side="recto"> - <title/> - <subtitle/> - <corpauthor/> - <authorgroup/> - <author/> - <othercredit/> - <releaseinfo/> - <copyright/> - <legalnotice/> - <pubdate/> - <revision/> - <revhistory/> - <abstract/> - </t:titlepage-content> - - <t:titlepage-content t:side="verso"> - </t:titlepage-content> - - <t:titlepage-separator> - <hr/> - </t:titlepage-separator> - - <t:titlepage-before t:side="recto"> - </t:titlepage-before> - - <t:titlepage-before t:side="verso"> - </t:titlepage-before> -</t:titlepage> - -<!-- ==================================================================== --> - -<t:titlepage t:element="part" t:wrapper="div" class="titlepage"> - <t:titlepage-content t:side="recto"> - <title - t:force="1" - t:named-template="division.title" - param:node="ancestor-or-self::part[1]"/> - <subtitle/> - <corpauthor/> - <authorgroup/> - <author/> - <othercredit/> - <releaseinfo/> - <copyright/> - <legalnotice/> - <pubdate/> - <revision/> - <revhistory/> - <abstract/> - </t:titlepage-content> - - <t:titlepage-content t:side="verso"> - </t:titlepage-content> - - <t:titlepage-separator> - </t:titlepage-separator> - - <t:titlepage-before t:side="recto"> - </t:titlepage-before> - - <t:titlepage-before t:side="verso"> - </t:titlepage-before> -</t:titlepage> - -<t:titlepage t:element="partintro" t:wrapper="div"> - <t:titlepage-content t:side="recto"> - <title/> - <subtitle/> - <corpauthor/> - <authorgroup/> - <author/> - <othercredit/> - <releaseinfo/> - <copyright/> - <legalnotice/> - <pubdate/> - <revision/> - <revhistory/> - <abstract/> - </t:titlepage-content> - - <t:titlepage-content t:side="verso"> - </t:titlepage-content> - - <t:titlepage-separator> - </t:titlepage-separator> - - <t:titlepage-before t:side="recto"> - </t:titlepage-before> - - <t:titlepage-before t:side="verso"> - </t:titlepage-before> -</t:titlepage> - -<!-- ==================================================================== --> - -<t:titlepage t:element="reference" t:wrapper="div" class="titlepage"> - <t:titlepage-content t:side="recto"> - <title/> - <subtitle/> - <corpauthor/> - <authorgroup/> - <author/> - <othercredit/> - <releaseinfo/> - <copyright/> - <legalnotice/> - <pubdate/> - <revision/> - <revhistory/> - <abstract/> - </t:titlepage-content> - - <t:titlepage-content t:side="verso"> - </t:titlepage-content> - - <t:titlepage-separator> - <hr/> - </t:titlepage-separator> - - <t:titlepage-before t:side="recto"> - </t:titlepage-before> - - <t:titlepage-before t:side="verso"> - </t:titlepage-before> -</t:titlepage> - -<!-- ==================================================================== --> - -<t:titlepage t:element="refentry" t:wrapper="div" class="titlepage"> - <t:titlepage-content t:side="recto"> -<!-- uncomment this if you want refentry titlepages - <title t:force="1" - t:named-template="refentry.title" - param:node="ancestor-or-self::refentry[1]"/> ---> - </t:titlepage-content> - - <t:titlepage-content t:side="verso"> - </t:titlepage-content> - - <t:titlepage-separator/> - - <t:titlepage-before t:side="recto"> - </t:titlepage-before> - - <t:titlepage-before t:side="verso"> - </t:titlepage-before> -</t:titlepage> - -<!-- ==================================================================== --> - - <t:titlepage t:element="dedication" t:wrapper="div" class="titlepage"> - <t:titlepage-content t:side="recto"> - <title - t:force="1" - t:named-template="component.title" - param:node="ancestor-or-self::dedication[1]"/> - <subtitle/> - </t:titlepage-content> - - <t:titlepage-content t:side="verso"> - </t:titlepage-content> - - <t:titlepage-separator> - </t:titlepage-separator> - - <t:titlepage-before t:side="recto"> - </t:titlepage-before> - - <t:titlepage-before t:side="verso"> - </t:titlepage-before> -</t:titlepage> - -<!-- ==================================================================== --> - -<t:titlepage t:element="acknowledgements" t:wrapper="div" class="titlepage"> - <t:titlepage-content t:side="recto"> - <title - t:force="1" - t:named-template="component.title" - param:node="ancestor-or-self::acknowledgements[1]"/> - <subtitle/> - </t:titlepage-content> - - <t:titlepage-content t:side="verso"> - </t:titlepage-content> - - <t:titlepage-separator> - </t:titlepage-separator> - - <t:titlepage-before t:side="recto"> - </t:titlepage-before> - - <t:titlepage-before t:side="verso"> - </t:titlepage-before> -</t:titlepage> - -<!-- ==================================================================== --> - -<t:titlepage t:element="preface" t:wrapper="div" class="titlepage"> - <t:titlepage-content t:side="recto"> - <title/> - <subtitle/> - <corpauthor/> - <authorgroup/> - <author/> - <othercredit/> - <releaseinfo/> - <copyright/> - <legalnotice/> - <pubdate/> - <revision/> - <revhistory/> - <abstract/> - </t:titlepage-content> - - <t:titlepage-content t:side="verso"> - </t:titlepage-content> - - <t:titlepage-separator> - </t:titlepage-separator> - - <t:titlepage-before t:side="recto"> - </t:titlepage-before> - - <t:titlepage-before t:side="verso"> - </t:titlepage-before> -</t:titlepage> - -<!-- ==================================================================== --> - -<t:titlepage t:element="chapter" t:wrapper="div" class="titlepage"> - <t:titlepage-content t:side="recto"> - <title/> - <subtitle/> - <corpauthor/> - <authorgroup/> - <author/> - <othercredit/> - <releaseinfo/> - <copyright/> - <legalnotice/> - <pubdate/> - <revision/> - <revhistory/> - <abstract/> - </t:titlepage-content> - - <t:titlepage-content t:side="verso"> - </t:titlepage-content> - - <t:titlepage-separator> - </t:titlepage-separator> - - <t:titlepage-before t:side="recto"> - </t:titlepage-before> - - <t:titlepage-before t:side="verso"> - </t:titlepage-before> -</t:titlepage> - -<!-- ==================================================================== --> - -<t:titlepage t:element="appendix" t:wrapper="div" class="titlepage"> - <t:titlepage-content t:side="recto"> - <title/> - <subtitle/> - <corpauthor/> - <authorgroup/> - <author/> - <othercredit/> - <releaseinfo/> - <copyright/> - <legalnotice/> - <pubdate/> - <revision/> - <revhistory/> - <abstract/> - </t:titlepage-content> - - <t:titlepage-content t:side="verso"> - </t:titlepage-content> - - <t:titlepage-separator> - </t:titlepage-separator> - - <t:titlepage-before t:side="recto"> - </t:titlepage-before> - - <t:titlepage-before t:side="verso"> - </t:titlepage-before> -</t:titlepage> - -<!-- ==================================================================== --> - -<t:titlepage t:element="section" t:wrapper="div" class="titlepage"> - <t:titlepage-content t:side="recto"> - <title/> - <subtitle/> - <corpauthor/> - <authorgroup/> - <author/> - <othercredit/> - <releaseinfo/> - <copyright/> - <legalnotice/> - <pubdate/> - <revision/> - <revhistory/> - <abstract/> - </t:titlepage-content> - - <t:titlepage-content t:side="verso"> - </t:titlepage-content> - - <t:titlepage-separator> - <xsl:if test="count(parent::*)='0'"><hr/></xsl:if> - </t:titlepage-separator> - - <t:titlepage-before t:side="recto"> - </t:titlepage-before> - - <t:titlepage-before t:side="verso"> - </t:titlepage-before> -</t:titlepage> - -<t:titlepage t:element="sect1" t:wrapper="div" class="titlepage"> - <t:titlepage-content t:side="recto"> - <title/> - <subtitle/> - <corpauthor/> - <authorgroup/> - <author/> - <othercredit/> - <releaseinfo/> - <copyright/> - <legalnotice/> - <pubdate/> - <revision/> - <revhistory/> - <abstract/> - </t:titlepage-content> - - <t:titlepage-content t:side="verso"> - </t:titlepage-content> - - <t:titlepage-separator> - <xsl:if test="count(parent::*)='0'"><hr/></xsl:if> - </t:titlepage-separator> - - <t:titlepage-before t:side="recto"> - </t:titlepage-before> - - <t:titlepage-before t:side="verso"> - </t:titlepage-before> -</t:titlepage> - -<t:titlepage t:element="sect2" t:wrapper="div" class="titlepage"> - <t:titlepage-content t:side="recto"> - <title/> - <subtitle/> - <corpauthor/> - <authorgroup/> - <author/> - <othercredit/> - <releaseinfo/> - <copyright/> - <legalnotice/> - <pubdate/> - <revision/> - <revhistory/> - <abstract/> - </t:titlepage-content> - - <t:titlepage-content t:side="verso"> - </t:titlepage-content> - - <t:titlepage-separator> - <xsl:if test="count(parent::*)='0'"><hr/></xsl:if> - </t:titlepage-separator> - - <t:titlepage-before t:side="recto"> - </t:titlepage-before> - - <t:titlepage-before t:side="verso"> - </t:titlepage-before> -</t:titlepage> - -<t:titlepage t:element="sect3" t:wrapper="div" class="titlepage"> - <t:titlepage-content t:side="recto"> - <title/> - <subtitle/> - <corpauthor/> - <authorgroup/> - <author/> - <othercredit/> - <releaseinfo/> - <copyright/> - <legalnotice/> - <pubdate/> - <revision/> - <revhistory/> - <abstract/> - </t:titlepage-content> - - <t:titlepage-content t:side="verso"> - </t:titlepage-content> - - <t:titlepage-separator> - <xsl:if test="count(parent::*)='0'"><hr/></xsl:if> - </t:titlepage-separator> - - <t:titlepage-before t:side="recto"> - </t:titlepage-before> - - <t:titlepage-before t:side="verso"> - </t:titlepage-before> -</t:titlepage> - -<t:titlepage t:element="sect4" t:wrapper="div" class="titlepage"> - <t:titlepage-content t:side="recto"> - <title/> - <subtitle/> - <corpauthor/> - <authorgroup/> - <author/> - <othercredit/> - <releaseinfo/> - <copyright/> - <legalnotice/> - <pubdate/> - <revision/> - <revhistory/> - <abstract/> - </t:titlepage-content> - - <t:titlepage-content t:side="verso"> - </t:titlepage-content> - - <t:titlepage-separator> - <xsl:if test="count(parent::*)='0'"><hr/></xsl:if> - </t:titlepage-separator> - - <t:titlepage-before t:side="recto"> - </t:titlepage-before> - - <t:titlepage-before t:side="verso"> - </t:titlepage-before> -</t:titlepage> - -<t:titlepage t:element="sect5" t:wrapper="div" class="titlepage"> - <t:titlepage-content t:side="recto"> - <title/> - <subtitle/> - <corpauthor/> - <authorgroup/> - <author/> - <othercredit/> - <releaseinfo/> - <copyright/> - <legalnotice/> - <pubdate/> - <revision/> - <revhistory/> - <abstract/> - </t:titlepage-content> - - <t:titlepage-content t:side="verso"> - </t:titlepage-content> - - <t:titlepage-separator> - <xsl:if test="count(parent::*)='0'"><hr/></xsl:if> - </t:titlepage-separator> - - <t:titlepage-before t:side="recto"> - </t:titlepage-before> - - <t:titlepage-before t:side="verso"> - </t:titlepage-before> -</t:titlepage> - -<t:titlepage t:element="simplesect" t:wrapper="div" class="titlepage"> - <t:titlepage-content t:side="recto"> - <title/> - <subtitle/> - <corpauthor/> - <authorgroup/> - <author/> - <othercredit/> - <releaseinfo/> - <copyright/> - <legalnotice/> - <pubdate/> - <revision/> - <revhistory/> - <abstract/> - </t:titlepage-content> - - <t:titlepage-content t:side="verso"> - </t:titlepage-content> - - <t:titlepage-separator> - <xsl:if test="count(parent::*)='0'"><hr/></xsl:if> - </t:titlepage-separator> - - <t:titlepage-before t:side="recto"> - </t:titlepage-before> - - <t:titlepage-before t:side="verso"> - </t:titlepage-before> -</t:titlepage> - -<!-- ==================================================================== --> - -<t:titlepage t:element="bibliography" t:wrapper="div" class="titlepage"> - <t:titlepage-content t:side="recto"> - <title - t:force="1" - t:named-template="component.title" - param:node="ancestor-or-self::bibliography[1]"/> - <subtitle/> - </t:titlepage-content> - - <t:titlepage-content t:side="verso"> - </t:titlepage-content> - - <t:titlepage-separator> - </t:titlepage-separator> - - <t:titlepage-before t:side="recto"> - </t:titlepage-before> - - <t:titlepage-before t:side="verso"> - </t:titlepage-before> -</t:titlepage> - -<!-- ==================================================================== --> - -<t:titlepage t:element="glossary" t:wrapper="div" class="titlepage"> - <t:titlepage-content t:side="recto"> - <title - t:force="1" - t:named-template="component.title" - param:node="ancestor-or-self::glossary[1]"/> - <subtitle/> - </t:titlepage-content> - - <t:titlepage-content t:side="verso"> - </t:titlepage-content> - - <t:titlepage-separator> - </t:titlepage-separator> - - <t:titlepage-before t:side="recto"> - </t:titlepage-before> - - <t:titlepage-before t:side="verso"> - </t:titlepage-before> -</t:titlepage> - -<!-- ==================================================================== --> - -<t:titlepage t:element="index" t:wrapper="div" class="titlepage"> - <t:titlepage-content t:side="recto"> - <title - t:force="1" - t:named-template="component.title" - param:node="ancestor-or-self::index[1]"/> - <subtitle/> - </t:titlepage-content> - - <t:titlepage-content t:side="verso"> - </t:titlepage-content> - - <t:titlepage-separator> - </t:titlepage-separator> - - <t:titlepage-before t:side="recto"> - </t:titlepage-before> - - <t:titlepage-before t:side="verso"> - </t:titlepage-before> -</t:titlepage> - -<!-- ==================================================================== --> - -<t:titlepage t:element="setindex" t:wrapper="div" class="titlepage"> - <t:titlepage-content t:side="recto"> - <title - t:force="1" - t:named-template="component.title" - param:node="ancestor-or-self::setindex[1]"/> - <subtitle/> - </t:titlepage-content> - - <t:titlepage-content t:side="verso"> - </t:titlepage-content> - - <t:titlepage-separator> - </t:titlepage-separator> - - <t:titlepage-before t:side="recto"> - </t:titlepage-before> - - <t:titlepage-before t:side="verso"> - </t:titlepage-before> -</t:titlepage> - -<!-- ==================================================================== --> - -</t:templates> diff --git a/docbook-xsl-1.75.2/html/titlepage.templates.xsl b/docbook-xsl-1.75.2/html/titlepage.templates.xsl deleted file mode 100644 index 73938a8..0000000 --- a/docbook-xsl-1.75.2/html/titlepage.templates.xsl +++ /dev/null @@ -1,3710 +0,0 @@ -<?xml version="1.0"?> - -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:exsl="http://exslt.org/common" version="1.0" exclude-result-prefixes="exsl"> - -<!-- This stylesheet was created by template/titlepage.xsl--> - -<xsl:template name="article.titlepage.recto"> - <xsl:choose> - <xsl:when test="articleinfo/title"> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="articleinfo/title"/> - </xsl:when> - <xsl:when test="artheader/title"> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="artheader/title"/> - </xsl:when> - <xsl:when test="info/title"> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="info/title"/> - </xsl:when> - <xsl:when test="title"> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="title"/> - </xsl:when> - </xsl:choose> - - <xsl:choose> - <xsl:when test="articleinfo/subtitle"> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="articleinfo/subtitle"/> - </xsl:when> - <xsl:when test="artheader/subtitle"> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="artheader/subtitle"/> - </xsl:when> - <xsl:when test="info/subtitle"> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="info/subtitle"/> - </xsl:when> - <xsl:when test="subtitle"> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="subtitle"/> - </xsl:when> - </xsl:choose> - - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="articleinfo/corpauthor"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="artheader/corpauthor"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="info/corpauthor"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="articleinfo/authorgroup"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="artheader/authorgroup"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="info/authorgroup"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="articleinfo/author"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="artheader/author"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="info/author"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="articleinfo/othercredit"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="artheader/othercredit"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="info/othercredit"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="articleinfo/releaseinfo"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="artheader/releaseinfo"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="info/releaseinfo"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="articleinfo/copyright"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="artheader/copyright"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="info/copyright"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="articleinfo/legalnotice"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="artheader/legalnotice"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="info/legalnotice"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="articleinfo/pubdate"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="artheader/pubdate"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="info/pubdate"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="articleinfo/revision"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="artheader/revision"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="info/revision"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="articleinfo/revhistory"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="artheader/revhistory"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="info/revhistory"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="articleinfo/abstract"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="artheader/abstract"/> - <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="info/abstract"/> -</xsl:template> - -<xsl:template name="article.titlepage.verso"> -</xsl:template> - -<xsl:template name="article.titlepage.separator"><hr/> -</xsl:template> - -<xsl:template name="article.titlepage.before.recto"> -</xsl:template> - -<xsl:template name="article.titlepage.before.verso"> -</xsl:template> - -<xsl:template name="article.titlepage"> - <div class="titlepage"> - <xsl:variable name="recto.content"> - <xsl:call-template name="article.titlepage.before.recto"/> - <xsl:call-template name="article.titlepage.recto"/> - </xsl:variable> - <xsl:variable name="recto.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> - <div><xsl:copy-of select="$recto.content"/></div> - </xsl:if> - <xsl:variable name="verso.content"> - <xsl:call-template name="article.titlepage.before.verso"/> - <xsl:call-template name="article.titlepage.verso"/> - </xsl:variable> - <xsl:variable name="verso.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> - <div><xsl:copy-of select="$verso.content"/></div> - </xsl:if> - <xsl:call-template name="article.titlepage.separator"/> - </div> -</xsl:template> - -<xsl:template match="*" mode="article.titlepage.recto.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="*" mode="article.titlepage.verso.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="title" mode="article.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="article.titlepage.recto.style"> -<xsl:apply-templates select="." mode="article.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="subtitle" mode="article.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="article.titlepage.recto.style"> -<xsl:apply-templates select="." mode="article.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="corpauthor" mode="article.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="article.titlepage.recto.style"> -<xsl:apply-templates select="." mode="article.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="authorgroup" mode="article.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="article.titlepage.recto.style"> -<xsl:apply-templates select="." mode="article.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="author" mode="article.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="article.titlepage.recto.style"> -<xsl:apply-templates select="." mode="article.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="othercredit" mode="article.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="article.titlepage.recto.style"> -<xsl:apply-templates select="." mode="article.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="releaseinfo" mode="article.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="article.titlepage.recto.style"> -<xsl:apply-templates select="." mode="article.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="copyright" mode="article.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="article.titlepage.recto.style"> -<xsl:apply-templates select="." mode="article.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="legalnotice" mode="article.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="article.titlepage.recto.style"> -<xsl:apply-templates select="." mode="article.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="pubdate" mode="article.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="article.titlepage.recto.style"> -<xsl:apply-templates select="." mode="article.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="revision" mode="article.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="article.titlepage.recto.style"> -<xsl:apply-templates select="." mode="article.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="revhistory" mode="article.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="article.titlepage.recto.style"> -<xsl:apply-templates select="." mode="article.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="abstract" mode="article.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="article.titlepage.recto.style"> -<xsl:apply-templates select="." mode="article.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template name="set.titlepage.recto"> - <xsl:choose> - <xsl:when test="setinfo/title"> - <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="setinfo/title"/> - </xsl:when> - <xsl:when test="info/title"> - <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="info/title"/> - </xsl:when> - <xsl:when test="title"> - <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="title"/> - </xsl:when> - </xsl:choose> - - <xsl:choose> - <xsl:when test="setinfo/subtitle"> - <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="setinfo/subtitle"/> - </xsl:when> - <xsl:when test="info/subtitle"> - <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="info/subtitle"/> - </xsl:when> - <xsl:when test="subtitle"> - <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="subtitle"/> - </xsl:when> - </xsl:choose> - - <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="setinfo/corpauthor"/> - <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="info/corpauthor"/> - <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="setinfo/authorgroup"/> - <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="info/authorgroup"/> - <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="setinfo/author"/> - <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="info/author"/> - <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="setinfo/othercredit"/> - <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="info/othercredit"/> - <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="setinfo/releaseinfo"/> - <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="info/releaseinfo"/> - <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="setinfo/copyright"/> - <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="info/copyright"/> - <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="setinfo/legalnotice"/> - <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="info/legalnotice"/> - <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="setinfo/pubdate"/> - <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="info/pubdate"/> - <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="setinfo/revision"/> - <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="info/revision"/> - <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="setinfo/revhistory"/> - <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="info/revhistory"/> - <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="setinfo/abstract"/> - <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="info/abstract"/> -</xsl:template> - -<xsl:template name="set.titlepage.verso"> -</xsl:template> - -<xsl:template name="set.titlepage.separator"><hr/> -</xsl:template> - -<xsl:template name="set.titlepage.before.recto"> -</xsl:template> - -<xsl:template name="set.titlepage.before.verso"> -</xsl:template> - -<xsl:template name="set.titlepage"> - <div class="titlepage"> - <xsl:variable name="recto.content"> - <xsl:call-template name="set.titlepage.before.recto"/> - <xsl:call-template name="set.titlepage.recto"/> - </xsl:variable> - <xsl:variable name="recto.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> - <div><xsl:copy-of select="$recto.content"/></div> - </xsl:if> - <xsl:variable name="verso.content"> - <xsl:call-template name="set.titlepage.before.verso"/> - <xsl:call-template name="set.titlepage.verso"/> - </xsl:variable> - <xsl:variable name="verso.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> - <div><xsl:copy-of select="$verso.content"/></div> - </xsl:if> - <xsl:call-template name="set.titlepage.separator"/> - </div> -</xsl:template> - -<xsl:template match="*" mode="set.titlepage.recto.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="*" mode="set.titlepage.verso.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="title" mode="set.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="set.titlepage.recto.style"> -<xsl:apply-templates select="." mode="set.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="subtitle" mode="set.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="set.titlepage.recto.style"> -<xsl:apply-templates select="." mode="set.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="corpauthor" mode="set.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="set.titlepage.recto.style"> -<xsl:apply-templates select="." mode="set.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="authorgroup" mode="set.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="set.titlepage.recto.style"> -<xsl:apply-templates select="." mode="set.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="author" mode="set.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="set.titlepage.recto.style"> -<xsl:apply-templates select="." mode="set.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="othercredit" mode="set.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="set.titlepage.recto.style"> -<xsl:apply-templates select="." mode="set.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="releaseinfo" mode="set.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="set.titlepage.recto.style"> -<xsl:apply-templates select="." mode="set.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="copyright" mode="set.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="set.titlepage.recto.style"> -<xsl:apply-templates select="." mode="set.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="legalnotice" mode="set.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="set.titlepage.recto.style"> -<xsl:apply-templates select="." mode="set.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="pubdate" mode="set.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="set.titlepage.recto.style"> -<xsl:apply-templates select="." mode="set.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="revision" mode="set.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="set.titlepage.recto.style"> -<xsl:apply-templates select="." mode="set.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="revhistory" mode="set.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="set.titlepage.recto.style"> -<xsl:apply-templates select="." mode="set.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="abstract" mode="set.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="set.titlepage.recto.style"> -<xsl:apply-templates select="." mode="set.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template name="book.titlepage.recto"> - <xsl:choose> - <xsl:when test="bookinfo/title"> - <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/title"/> - </xsl:when> - <xsl:when test="info/title"> - <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/title"/> - </xsl:when> - <xsl:when test="title"> - <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="title"/> - </xsl:when> - </xsl:choose> - - <xsl:choose> - <xsl:when test="bookinfo/subtitle"> - <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/subtitle"/> - </xsl:when> - <xsl:when test="info/subtitle"> - <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/subtitle"/> - </xsl:when> - <xsl:when test="subtitle"> - <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="subtitle"/> - </xsl:when> - </xsl:choose> - - <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/corpauthor"/> - <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/corpauthor"/> - <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/authorgroup"/> - <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/authorgroup"/> - <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/author"/> - <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/author"/> - <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/othercredit"/> - <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/othercredit"/> - <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/releaseinfo"/> - <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/releaseinfo"/> - <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/copyright"/> - <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/copyright"/> - <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/legalnotice"/> - <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/legalnotice"/> - <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/pubdate"/> - <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/pubdate"/> - <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/revision"/> - <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/revision"/> - <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/revhistory"/> - <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/revhistory"/> - <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/abstract"/> - <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/abstract"/> -</xsl:template> - -<xsl:template name="book.titlepage.verso"> -</xsl:template> - -<xsl:template name="book.titlepage.separator"><hr/> -</xsl:template> - -<xsl:template name="book.titlepage.before.recto"> -</xsl:template> - -<xsl:template name="book.titlepage.before.verso"> -</xsl:template> - -<xsl:template name="book.titlepage"> - <div class="titlepage"> - <xsl:variable name="recto.content"> - <xsl:call-template name="book.titlepage.before.recto"/> - <xsl:call-template name="book.titlepage.recto"/> - </xsl:variable> - <xsl:variable name="recto.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> - <div><xsl:copy-of select="$recto.content"/></div> - </xsl:if> - <xsl:variable name="verso.content"> - <xsl:call-template name="book.titlepage.before.verso"/> - <xsl:call-template name="book.titlepage.verso"/> - </xsl:variable> - <xsl:variable name="verso.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> - <div><xsl:copy-of select="$verso.content"/></div> - </xsl:if> - <xsl:call-template name="book.titlepage.separator"/> - </div> -</xsl:template> - -<xsl:template match="*" mode="book.titlepage.recto.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="*" mode="book.titlepage.verso.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="title" mode="book.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="book.titlepage.recto.style"> -<xsl:apply-templates select="." mode="book.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="subtitle" mode="book.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="book.titlepage.recto.style"> -<xsl:apply-templates select="." mode="book.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="corpauthor" mode="book.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="book.titlepage.recto.style"> -<xsl:apply-templates select="." mode="book.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="authorgroup" mode="book.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="book.titlepage.recto.style"> -<xsl:apply-templates select="." mode="book.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="author" mode="book.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="book.titlepage.recto.style"> -<xsl:apply-templates select="." mode="book.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="othercredit" mode="book.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="book.titlepage.recto.style"> -<xsl:apply-templates select="." mode="book.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="releaseinfo" mode="book.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="book.titlepage.recto.style"> -<xsl:apply-templates select="." mode="book.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="copyright" mode="book.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="book.titlepage.recto.style"> -<xsl:apply-templates select="." mode="book.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="legalnotice" mode="book.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="book.titlepage.recto.style"> -<xsl:apply-templates select="." mode="book.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="pubdate" mode="book.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="book.titlepage.recto.style"> -<xsl:apply-templates select="." mode="book.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="revision" mode="book.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="book.titlepage.recto.style"> -<xsl:apply-templates select="." mode="book.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="revhistory" mode="book.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="book.titlepage.recto.style"> -<xsl:apply-templates select="." mode="book.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="abstract" mode="book.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="book.titlepage.recto.style"> -<xsl:apply-templates select="." mode="book.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template name="part.titlepage.recto"> - <div xsl:use-attribute-sets="part.titlepage.recto.style"> -<xsl:call-template name="division.title"> -<xsl:with-param name="node" select="ancestor-or-self::part[1]"/> -</xsl:call-template></div> - <xsl:choose> - <xsl:when test="partinfo/subtitle"> - <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="partinfo/subtitle"/> - </xsl:when> - <xsl:when test="docinfo/subtitle"> - <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="docinfo/subtitle"/> - </xsl:when> - <xsl:when test="info/subtitle"> - <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="info/subtitle"/> - </xsl:when> - <xsl:when test="subtitle"> - <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="subtitle"/> - </xsl:when> - </xsl:choose> - - <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="partinfo/corpauthor"/> - <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="docinfo/corpauthor"/> - <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="info/corpauthor"/> - <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="partinfo/authorgroup"/> - <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="docinfo/authorgroup"/> - <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="info/authorgroup"/> - <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="partinfo/author"/> - <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="docinfo/author"/> - <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="info/author"/> - <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="partinfo/othercredit"/> - <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="docinfo/othercredit"/> - <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="info/othercredit"/> - <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="partinfo/releaseinfo"/> - <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="docinfo/releaseinfo"/> - <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="info/releaseinfo"/> - <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="partinfo/copyright"/> - <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="docinfo/copyright"/> - <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="info/copyright"/> - <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="partinfo/legalnotice"/> - <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="docinfo/legalnotice"/> - <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="info/legalnotice"/> - <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="partinfo/pubdate"/> - <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="docinfo/pubdate"/> - <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="info/pubdate"/> - <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="partinfo/revision"/> - <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="docinfo/revision"/> - <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="info/revision"/> - <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="partinfo/revhistory"/> - <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="docinfo/revhistory"/> - <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="info/revhistory"/> - <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="partinfo/abstract"/> - <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="docinfo/abstract"/> - <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="info/abstract"/> -</xsl:template> - -<xsl:template name="part.titlepage.verso"> -</xsl:template> - -<xsl:template name="part.titlepage.separator"> -</xsl:template> - -<xsl:template name="part.titlepage.before.recto"> -</xsl:template> - -<xsl:template name="part.titlepage.before.verso"> -</xsl:template> - -<xsl:template name="part.titlepage"> - <div class="titlepage"> - <xsl:variable name="recto.content"> - <xsl:call-template name="part.titlepage.before.recto"/> - <xsl:call-template name="part.titlepage.recto"/> - </xsl:variable> - <xsl:variable name="recto.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> - <div><xsl:copy-of select="$recto.content"/></div> - </xsl:if> - <xsl:variable name="verso.content"> - <xsl:call-template name="part.titlepage.before.verso"/> - <xsl:call-template name="part.titlepage.verso"/> - </xsl:variable> - <xsl:variable name="verso.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> - <div><xsl:copy-of select="$verso.content"/></div> - </xsl:if> - <xsl:call-template name="part.titlepage.separator"/> - </div> -</xsl:template> - -<xsl:template match="*" mode="part.titlepage.recto.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="*" mode="part.titlepage.verso.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="subtitle" mode="part.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="part.titlepage.recto.style"> -<xsl:apply-templates select="." mode="part.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="corpauthor" mode="part.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="part.titlepage.recto.style"> -<xsl:apply-templates select="." mode="part.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="authorgroup" mode="part.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="part.titlepage.recto.style"> -<xsl:apply-templates select="." mode="part.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="author" mode="part.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="part.titlepage.recto.style"> -<xsl:apply-templates select="." mode="part.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="othercredit" mode="part.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="part.titlepage.recto.style"> -<xsl:apply-templates select="." mode="part.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="releaseinfo" mode="part.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="part.titlepage.recto.style"> -<xsl:apply-templates select="." mode="part.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="copyright" mode="part.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="part.titlepage.recto.style"> -<xsl:apply-templates select="." mode="part.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="legalnotice" mode="part.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="part.titlepage.recto.style"> -<xsl:apply-templates select="." mode="part.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="pubdate" mode="part.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="part.titlepage.recto.style"> -<xsl:apply-templates select="." mode="part.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="revision" mode="part.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="part.titlepage.recto.style"> -<xsl:apply-templates select="." mode="part.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="revhistory" mode="part.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="part.titlepage.recto.style"> -<xsl:apply-templates select="." mode="part.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="abstract" mode="part.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="part.titlepage.recto.style"> -<xsl:apply-templates select="." mode="part.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template name="partintro.titlepage.recto"> - <xsl:choose> - <xsl:when test="partintroinfo/title"> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="partintroinfo/title"/> - </xsl:when> - <xsl:when test="docinfo/title"> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="docinfo/title"/> - </xsl:when> - <xsl:when test="info/title"> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="info/title"/> - </xsl:when> - <xsl:when test="title"> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="title"/> - </xsl:when> - </xsl:choose> - - <xsl:choose> - <xsl:when test="partintroinfo/subtitle"> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="partintroinfo/subtitle"/> - </xsl:when> - <xsl:when test="docinfo/subtitle"> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="docinfo/subtitle"/> - </xsl:when> - <xsl:when test="info/subtitle"> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="info/subtitle"/> - </xsl:when> - <xsl:when test="subtitle"> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="subtitle"/> - </xsl:when> - </xsl:choose> - - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="partintroinfo/corpauthor"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="docinfo/corpauthor"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="info/corpauthor"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="partintroinfo/authorgroup"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="docinfo/authorgroup"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="info/authorgroup"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="partintroinfo/author"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="docinfo/author"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="info/author"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="partintroinfo/othercredit"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="docinfo/othercredit"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="info/othercredit"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="partintroinfo/releaseinfo"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="docinfo/releaseinfo"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="info/releaseinfo"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="partintroinfo/copyright"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="docinfo/copyright"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="info/copyright"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="partintroinfo/legalnotice"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="docinfo/legalnotice"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="info/legalnotice"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="partintroinfo/pubdate"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="docinfo/pubdate"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="info/pubdate"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="partintroinfo/revision"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="docinfo/revision"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="info/revision"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="partintroinfo/revhistory"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="docinfo/revhistory"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="info/revhistory"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="partintroinfo/abstract"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="docinfo/abstract"/> - <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="info/abstract"/> -</xsl:template> - -<xsl:template name="partintro.titlepage.verso"> -</xsl:template> - -<xsl:template name="partintro.titlepage.separator"> -</xsl:template> - -<xsl:template name="partintro.titlepage.before.recto"> -</xsl:template> - -<xsl:template name="partintro.titlepage.before.verso"> -</xsl:template> - -<xsl:template name="partintro.titlepage"> - <div> - <xsl:variable name="recto.content"> - <xsl:call-template name="partintro.titlepage.before.recto"/> - <xsl:call-template name="partintro.titlepage.recto"/> - </xsl:variable> - <xsl:variable name="recto.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> - <div><xsl:copy-of select="$recto.content"/></div> - </xsl:if> - <xsl:variable name="verso.content"> - <xsl:call-template name="partintro.titlepage.before.verso"/> - <xsl:call-template name="partintro.titlepage.verso"/> - </xsl:variable> - <xsl:variable name="verso.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> - <div><xsl:copy-of select="$verso.content"/></div> - </xsl:if> - <xsl:call-template name="partintro.titlepage.separator"/> - </div> -</xsl:template> - -<xsl:template match="*" mode="partintro.titlepage.recto.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="*" mode="partintro.titlepage.verso.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="title" mode="partintro.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="partintro.titlepage.recto.style"> -<xsl:apply-templates select="." mode="partintro.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="subtitle" mode="partintro.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="partintro.titlepage.recto.style"> -<xsl:apply-templates select="." mode="partintro.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="corpauthor" mode="partintro.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="partintro.titlepage.recto.style"> -<xsl:apply-templates select="." mode="partintro.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="authorgroup" mode="partintro.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="partintro.titlepage.recto.style"> -<xsl:apply-templates select="." mode="partintro.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="author" mode="partintro.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="partintro.titlepage.recto.style"> -<xsl:apply-templates select="." mode="partintro.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="othercredit" mode="partintro.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="partintro.titlepage.recto.style"> -<xsl:apply-templates select="." mode="partintro.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="releaseinfo" mode="partintro.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="partintro.titlepage.recto.style"> -<xsl:apply-templates select="." mode="partintro.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="copyright" mode="partintro.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="partintro.titlepage.recto.style"> -<xsl:apply-templates select="." mode="partintro.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="legalnotice" mode="partintro.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="partintro.titlepage.recto.style"> -<xsl:apply-templates select="." mode="partintro.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="pubdate" mode="partintro.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="partintro.titlepage.recto.style"> -<xsl:apply-templates select="." mode="partintro.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="revision" mode="partintro.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="partintro.titlepage.recto.style"> -<xsl:apply-templates select="." mode="partintro.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="revhistory" mode="partintro.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="partintro.titlepage.recto.style"> -<xsl:apply-templates select="." mode="partintro.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="abstract" mode="partintro.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="partintro.titlepage.recto.style"> -<xsl:apply-templates select="." mode="partintro.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template name="reference.titlepage.recto"> - <xsl:choose> - <xsl:when test="referenceinfo/title"> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="referenceinfo/title"/> - </xsl:when> - <xsl:when test="docinfo/title"> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="docinfo/title"/> - </xsl:when> - <xsl:when test="info/title"> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="info/title"/> - </xsl:when> - <xsl:when test="title"> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="title"/> - </xsl:when> - </xsl:choose> - - <xsl:choose> - <xsl:when test="referenceinfo/subtitle"> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="referenceinfo/subtitle"/> - </xsl:when> - <xsl:when test="docinfo/subtitle"> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="docinfo/subtitle"/> - </xsl:when> - <xsl:when test="info/subtitle"> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="info/subtitle"/> - </xsl:when> - <xsl:when test="subtitle"> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="subtitle"/> - </xsl:when> - </xsl:choose> - - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="referenceinfo/corpauthor"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="docinfo/corpauthor"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="info/corpauthor"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="referenceinfo/authorgroup"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="docinfo/authorgroup"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="info/authorgroup"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="referenceinfo/author"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="docinfo/author"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="info/author"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="referenceinfo/othercredit"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="docinfo/othercredit"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="info/othercredit"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="referenceinfo/releaseinfo"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="docinfo/releaseinfo"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="info/releaseinfo"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="referenceinfo/copyright"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="docinfo/copyright"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="info/copyright"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="referenceinfo/legalnotice"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="docinfo/legalnotice"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="info/legalnotice"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="referenceinfo/pubdate"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="docinfo/pubdate"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="info/pubdate"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="referenceinfo/revision"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="docinfo/revision"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="info/revision"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="referenceinfo/revhistory"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="docinfo/revhistory"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="info/revhistory"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="referenceinfo/abstract"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="docinfo/abstract"/> - <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="info/abstract"/> -</xsl:template> - -<xsl:template name="reference.titlepage.verso"> -</xsl:template> - -<xsl:template name="reference.titlepage.separator"><hr/> -</xsl:template> - -<xsl:template name="reference.titlepage.before.recto"> -</xsl:template> - -<xsl:template name="reference.titlepage.before.verso"> -</xsl:template> - -<xsl:template name="reference.titlepage"> - <div class="titlepage"> - <xsl:variable name="recto.content"> - <xsl:call-template name="reference.titlepage.before.recto"/> - <xsl:call-template name="reference.titlepage.recto"/> - </xsl:variable> - <xsl:variable name="recto.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> - <div><xsl:copy-of select="$recto.content"/></div> - </xsl:if> - <xsl:variable name="verso.content"> - <xsl:call-template name="reference.titlepage.before.verso"/> - <xsl:call-template name="reference.titlepage.verso"/> - </xsl:variable> - <xsl:variable name="verso.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> - <div><xsl:copy-of select="$verso.content"/></div> - </xsl:if> - <xsl:call-template name="reference.titlepage.separator"/> - </div> -</xsl:template> - -<xsl:template match="*" mode="reference.titlepage.recto.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="*" mode="reference.titlepage.verso.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="title" mode="reference.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="reference.titlepage.recto.style"> -<xsl:apply-templates select="." mode="reference.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="subtitle" mode="reference.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="reference.titlepage.recto.style"> -<xsl:apply-templates select="." mode="reference.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="corpauthor" mode="reference.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="reference.titlepage.recto.style"> -<xsl:apply-templates select="." mode="reference.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="authorgroup" mode="reference.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="reference.titlepage.recto.style"> -<xsl:apply-templates select="." mode="reference.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="author" mode="reference.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="reference.titlepage.recto.style"> -<xsl:apply-templates select="." mode="reference.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="othercredit" mode="reference.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="reference.titlepage.recto.style"> -<xsl:apply-templates select="." mode="reference.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="releaseinfo" mode="reference.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="reference.titlepage.recto.style"> -<xsl:apply-templates select="." mode="reference.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="copyright" mode="reference.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="reference.titlepage.recto.style"> -<xsl:apply-templates select="." mode="reference.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="legalnotice" mode="reference.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="reference.titlepage.recto.style"> -<xsl:apply-templates select="." mode="reference.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="pubdate" mode="reference.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="reference.titlepage.recto.style"> -<xsl:apply-templates select="." mode="reference.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="revision" mode="reference.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="reference.titlepage.recto.style"> -<xsl:apply-templates select="." mode="reference.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="revhistory" mode="reference.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="reference.titlepage.recto.style"> -<xsl:apply-templates select="." mode="reference.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="abstract" mode="reference.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="reference.titlepage.recto.style"> -<xsl:apply-templates select="." mode="reference.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template name="refentry.titlepage.recto"> -</xsl:template> - -<xsl:template name="refentry.titlepage.verso"> -</xsl:template> - -<xsl:template name="refentry.titlepage.separator"> -</xsl:template> - -<xsl:template name="refentry.titlepage.before.recto"> -</xsl:template> - -<xsl:template name="refentry.titlepage.before.verso"> -</xsl:template> - -<xsl:template name="refentry.titlepage"> - <div class="titlepage"> - <xsl:variable name="recto.content"> - <xsl:call-template name="refentry.titlepage.before.recto"/> - <xsl:call-template name="refentry.titlepage.recto"/> - </xsl:variable> - <xsl:variable name="recto.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> - <div><xsl:copy-of select="$recto.content"/></div> - </xsl:if> - <xsl:variable name="verso.content"> - <xsl:call-template name="refentry.titlepage.before.verso"/> - <xsl:call-template name="refentry.titlepage.verso"/> - </xsl:variable> - <xsl:variable name="verso.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> - <div><xsl:copy-of select="$verso.content"/></div> - </xsl:if> - <xsl:call-template name="refentry.titlepage.separator"/> - </div> -</xsl:template> - -<xsl:template match="*" mode="refentry.titlepage.recto.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="*" mode="refentry.titlepage.verso.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template name="dedication.titlepage.recto"> - <div xsl:use-attribute-sets="dedication.titlepage.recto.style"> -<xsl:call-template name="component.title"> -<xsl:with-param name="node" select="ancestor-or-self::dedication[1]"/> -</xsl:call-template></div> - <xsl:choose> - <xsl:when test="dedicationinfo/subtitle"> - <xsl:apply-templates mode="dedication.titlepage.recto.auto.mode" select="dedicationinfo/subtitle"/> - </xsl:when> - <xsl:when test="docinfo/subtitle"> - <xsl:apply-templates mode="dedication.titlepage.recto.auto.mode" select="docinfo/subtitle"/> - </xsl:when> - <xsl:when test="info/subtitle"> - <xsl:apply-templates mode="dedication.titlepage.recto.auto.mode" select="info/subtitle"/> - </xsl:when> - <xsl:when test="subtitle"> - <xsl:apply-templates mode="dedication.titlepage.recto.auto.mode" select="subtitle"/> - </xsl:when> - </xsl:choose> - -</xsl:template> - -<xsl:template name="dedication.titlepage.verso"> -</xsl:template> - -<xsl:template name="dedication.titlepage.separator"> -</xsl:template> - -<xsl:template name="dedication.titlepage.before.recto"> -</xsl:template> - -<xsl:template name="dedication.titlepage.before.verso"> -</xsl:template> - -<xsl:template name="dedication.titlepage"> - <div class="titlepage"> - <xsl:variable name="recto.content"> - <xsl:call-template name="dedication.titlepage.before.recto"/> - <xsl:call-template name="dedication.titlepage.recto"/> - </xsl:variable> - <xsl:variable name="recto.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> - <div><xsl:copy-of select="$recto.content"/></div> - </xsl:if> - <xsl:variable name="verso.content"> - <xsl:call-template name="dedication.titlepage.before.verso"/> - <xsl:call-template name="dedication.titlepage.verso"/> - </xsl:variable> - <xsl:variable name="verso.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> - <div><xsl:copy-of select="$verso.content"/></div> - </xsl:if> - <xsl:call-template name="dedication.titlepage.separator"/> - </div> -</xsl:template> - -<xsl:template match="*" mode="dedication.titlepage.recto.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="*" mode="dedication.titlepage.verso.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="subtitle" mode="dedication.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="dedication.titlepage.recto.style"> -<xsl:apply-templates select="." mode="dedication.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template name="acknowledgements.titlepage.recto"> - <div xsl:use-attribute-sets="acknowledgements.titlepage.recto.style"> -<xsl:call-template name="component.title"> -<xsl:with-param name="node" select="ancestor-or-self::acknowledgements[1]"/> -</xsl:call-template></div> - <xsl:choose> - <xsl:when test="acknowledgementsinfo/subtitle"> - <xsl:apply-templates mode="acknowledgements.titlepage.recto.auto.mode" select="acknowledgementsinfo/subtitle"/> - </xsl:when> - <xsl:when test="docinfo/subtitle"> - <xsl:apply-templates mode="acknowledgements.titlepage.recto.auto.mode" select="docinfo/subtitle"/> - </xsl:when> - <xsl:when test="info/subtitle"> - <xsl:apply-templates mode="acknowledgements.titlepage.recto.auto.mode" select="info/subtitle"/> - </xsl:when> - <xsl:when test="subtitle"> - <xsl:apply-templates mode="acknowledgements.titlepage.recto.auto.mode" select="subtitle"/> - </xsl:when> - </xsl:choose> - -</xsl:template> - -<xsl:template name="acknowledgements.titlepage.verso"> -</xsl:template> - -<xsl:template name="acknowledgements.titlepage.separator"> -</xsl:template> - -<xsl:template name="acknowledgements.titlepage.before.recto"> -</xsl:template> - -<xsl:template name="acknowledgements.titlepage.before.verso"> -</xsl:template> - -<xsl:template name="acknowledgements.titlepage"> - <div class="titlepage"> - <xsl:variable name="recto.content"> - <xsl:call-template name="acknowledgements.titlepage.before.recto"/> - <xsl:call-template name="acknowledgements.titlepage.recto"/> - </xsl:variable> - <xsl:variable name="recto.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> - <div><xsl:copy-of select="$recto.content"/></div> - </xsl:if> - <xsl:variable name="verso.content"> - <xsl:call-template name="acknowledgements.titlepage.before.verso"/> - <xsl:call-template name="acknowledgements.titlepage.verso"/> - </xsl:variable> - <xsl:variable name="verso.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> - <div><xsl:copy-of select="$verso.content"/></div> - </xsl:if> - <xsl:call-template name="acknowledgements.titlepage.separator"/> - </div> -</xsl:template> - -<xsl:template match="*" mode="acknowledgements.titlepage.recto.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="*" mode="acknowledgements.titlepage.verso.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="subtitle" mode="acknowledgements.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="acknowledgements.titlepage.recto.style"> -<xsl:apply-templates select="." mode="acknowledgements.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template name="preface.titlepage.recto"> - <xsl:choose> - <xsl:when test="prefaceinfo/title"> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="prefaceinfo/title"/> - </xsl:when> - <xsl:when test="docinfo/title"> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="docinfo/title"/> - </xsl:when> - <xsl:when test="info/title"> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="info/title"/> - </xsl:when> - <xsl:when test="title"> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="title"/> - </xsl:when> - </xsl:choose> - - <xsl:choose> - <xsl:when test="prefaceinfo/subtitle"> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="prefaceinfo/subtitle"/> - </xsl:when> - <xsl:when test="docinfo/subtitle"> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="docinfo/subtitle"/> - </xsl:when> - <xsl:when test="info/subtitle"> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="info/subtitle"/> - </xsl:when> - <xsl:when test="subtitle"> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="subtitle"/> - </xsl:when> - </xsl:choose> - - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="prefaceinfo/corpauthor"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="docinfo/corpauthor"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="info/corpauthor"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="prefaceinfo/authorgroup"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="docinfo/authorgroup"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="info/authorgroup"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="prefaceinfo/author"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="docinfo/author"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="info/author"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="prefaceinfo/othercredit"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="docinfo/othercredit"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="info/othercredit"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="prefaceinfo/releaseinfo"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="docinfo/releaseinfo"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="info/releaseinfo"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="prefaceinfo/copyright"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="docinfo/copyright"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="info/copyright"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="prefaceinfo/legalnotice"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="docinfo/legalnotice"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="info/legalnotice"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="prefaceinfo/pubdate"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="docinfo/pubdate"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="info/pubdate"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="prefaceinfo/revision"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="docinfo/revision"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="info/revision"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="prefaceinfo/revhistory"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="docinfo/revhistory"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="info/revhistory"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="prefaceinfo/abstract"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="docinfo/abstract"/> - <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="info/abstract"/> -</xsl:template> - -<xsl:template name="preface.titlepage.verso"> -</xsl:template> - -<xsl:template name="preface.titlepage.separator"> -</xsl:template> - -<xsl:template name="preface.titlepage.before.recto"> -</xsl:template> - -<xsl:template name="preface.titlepage.before.verso"> -</xsl:template> - -<xsl:template name="preface.titlepage"> - <div class="titlepage"> - <xsl:variable name="recto.content"> - <xsl:call-template name="preface.titlepage.before.recto"/> - <xsl:call-template name="preface.titlepage.recto"/> - </xsl:variable> - <xsl:variable name="recto.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> - <div><xsl:copy-of select="$recto.content"/></div> - </xsl:if> - <xsl:variable name="verso.content"> - <xsl:call-template name="preface.titlepage.before.verso"/> - <xsl:call-template name="preface.titlepage.verso"/> - </xsl:variable> - <xsl:variable name="verso.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> - <div><xsl:copy-of select="$verso.content"/></div> - </xsl:if> - <xsl:call-template name="preface.titlepage.separator"/> - </div> -</xsl:template> - -<xsl:template match="*" mode="preface.titlepage.recto.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="*" mode="preface.titlepage.verso.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="title" mode="preface.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="preface.titlepage.recto.style"> -<xsl:apply-templates select="." mode="preface.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="subtitle" mode="preface.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="preface.titlepage.recto.style"> -<xsl:apply-templates select="." mode="preface.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="corpauthor" mode="preface.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="preface.titlepage.recto.style"> -<xsl:apply-templates select="." mode="preface.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="authorgroup" mode="preface.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="preface.titlepage.recto.style"> -<xsl:apply-templates select="." mode="preface.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="author" mode="preface.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="preface.titlepage.recto.style"> -<xsl:apply-templates select="." mode="preface.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="othercredit" mode="preface.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="preface.titlepage.recto.style"> -<xsl:apply-templates select="." mode="preface.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="releaseinfo" mode="preface.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="preface.titlepage.recto.style"> -<xsl:apply-templates select="." mode="preface.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="copyright" mode="preface.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="preface.titlepage.recto.style"> -<xsl:apply-templates select="." mode="preface.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="legalnotice" mode="preface.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="preface.titlepage.recto.style"> -<xsl:apply-templates select="." mode="preface.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="pubdate" mode="preface.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="preface.titlepage.recto.style"> -<xsl:apply-templates select="." mode="preface.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="revision" mode="preface.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="preface.titlepage.recto.style"> -<xsl:apply-templates select="." mode="preface.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="revhistory" mode="preface.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="preface.titlepage.recto.style"> -<xsl:apply-templates select="." mode="preface.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="abstract" mode="preface.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="preface.titlepage.recto.style"> -<xsl:apply-templates select="." mode="preface.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template name="chapter.titlepage.recto"> - <xsl:choose> - <xsl:when test="chapterinfo/title"> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="chapterinfo/title"/> - </xsl:when> - <xsl:when test="docinfo/title"> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="docinfo/title"/> - </xsl:when> - <xsl:when test="info/title"> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="info/title"/> - </xsl:when> - <xsl:when test="title"> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="title"/> - </xsl:when> - </xsl:choose> - - <xsl:choose> - <xsl:when test="chapterinfo/subtitle"> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="chapterinfo/subtitle"/> - </xsl:when> - <xsl:when test="docinfo/subtitle"> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="docinfo/subtitle"/> - </xsl:when> - <xsl:when test="info/subtitle"> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="info/subtitle"/> - </xsl:when> - <xsl:when test="subtitle"> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="subtitle"/> - </xsl:when> - </xsl:choose> - - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="chapterinfo/corpauthor"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="docinfo/corpauthor"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="info/corpauthor"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="chapterinfo/authorgroup"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="docinfo/authorgroup"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="info/authorgroup"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="chapterinfo/author"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="docinfo/author"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="info/author"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="chapterinfo/othercredit"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="docinfo/othercredit"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="info/othercredit"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="chapterinfo/releaseinfo"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="docinfo/releaseinfo"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="info/releaseinfo"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="chapterinfo/copyright"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="docinfo/copyright"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="info/copyright"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="chapterinfo/legalnotice"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="docinfo/legalnotice"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="info/legalnotice"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="chapterinfo/pubdate"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="docinfo/pubdate"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="info/pubdate"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="chapterinfo/revision"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="docinfo/revision"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="info/revision"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="chapterinfo/revhistory"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="docinfo/revhistory"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="info/revhistory"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="chapterinfo/abstract"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="docinfo/abstract"/> - <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="info/abstract"/> -</xsl:template> - -<xsl:template name="chapter.titlepage.verso"> -</xsl:template> - -<xsl:template name="chapter.titlepage.separator"> -</xsl:template> - -<xsl:template name="chapter.titlepage.before.recto"> -</xsl:template> - -<xsl:template name="chapter.titlepage.before.verso"> -</xsl:template> - -<xsl:template name="chapter.titlepage"> - <div class="titlepage"> - <xsl:variable name="recto.content"> - <xsl:call-template name="chapter.titlepage.before.recto"/> - <xsl:call-template name="chapter.titlepage.recto"/> - </xsl:variable> - <xsl:variable name="recto.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> - <div><xsl:copy-of select="$recto.content"/></div> - </xsl:if> - <xsl:variable name="verso.content"> - <xsl:call-template name="chapter.titlepage.before.verso"/> - <xsl:call-template name="chapter.titlepage.verso"/> - </xsl:variable> - <xsl:variable name="verso.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> - <div><xsl:copy-of select="$verso.content"/></div> - </xsl:if> - <xsl:call-template name="chapter.titlepage.separator"/> - </div> -</xsl:template> - -<xsl:template match="*" mode="chapter.titlepage.recto.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="*" mode="chapter.titlepage.verso.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="title" mode="chapter.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="chapter.titlepage.recto.style"> -<xsl:apply-templates select="." mode="chapter.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="subtitle" mode="chapter.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="chapter.titlepage.recto.style"> -<xsl:apply-templates select="." mode="chapter.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="corpauthor" mode="chapter.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="chapter.titlepage.recto.style"> -<xsl:apply-templates select="." mode="chapter.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="authorgroup" mode="chapter.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="chapter.titlepage.recto.style"> -<xsl:apply-templates select="." mode="chapter.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="author" mode="chapter.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="chapter.titlepage.recto.style"> -<xsl:apply-templates select="." mode="chapter.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="othercredit" mode="chapter.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="chapter.titlepage.recto.style"> -<xsl:apply-templates select="." mode="chapter.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="releaseinfo" mode="chapter.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="chapter.titlepage.recto.style"> -<xsl:apply-templates select="." mode="chapter.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="copyright" mode="chapter.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="chapter.titlepage.recto.style"> -<xsl:apply-templates select="." mode="chapter.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="legalnotice" mode="chapter.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="chapter.titlepage.recto.style"> -<xsl:apply-templates select="." mode="chapter.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="pubdate" mode="chapter.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="chapter.titlepage.recto.style"> -<xsl:apply-templates select="." mode="chapter.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="revision" mode="chapter.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="chapter.titlepage.recto.style"> -<xsl:apply-templates select="." mode="chapter.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="revhistory" mode="chapter.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="chapter.titlepage.recto.style"> -<xsl:apply-templates select="." mode="chapter.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="abstract" mode="chapter.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="chapter.titlepage.recto.style"> -<xsl:apply-templates select="." mode="chapter.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template name="appendix.titlepage.recto"> - <xsl:choose> - <xsl:when test="appendixinfo/title"> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="appendixinfo/title"/> - </xsl:when> - <xsl:when test="docinfo/title"> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="docinfo/title"/> - </xsl:when> - <xsl:when test="info/title"> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="info/title"/> - </xsl:when> - <xsl:when test="title"> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="title"/> - </xsl:when> - </xsl:choose> - - <xsl:choose> - <xsl:when test="appendixinfo/subtitle"> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="appendixinfo/subtitle"/> - </xsl:when> - <xsl:when test="docinfo/subtitle"> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="docinfo/subtitle"/> - </xsl:when> - <xsl:when test="info/subtitle"> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="info/subtitle"/> - </xsl:when> - <xsl:when test="subtitle"> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="subtitle"/> - </xsl:when> - </xsl:choose> - - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="appendixinfo/corpauthor"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="docinfo/corpauthor"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="info/corpauthor"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="appendixinfo/authorgroup"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="docinfo/authorgroup"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="info/authorgroup"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="appendixinfo/author"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="docinfo/author"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="info/author"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="appendixinfo/othercredit"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="docinfo/othercredit"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="info/othercredit"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="appendixinfo/releaseinfo"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="docinfo/releaseinfo"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="info/releaseinfo"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="appendixinfo/copyright"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="docinfo/copyright"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="info/copyright"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="appendixinfo/legalnotice"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="docinfo/legalnotice"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="info/legalnotice"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="appendixinfo/pubdate"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="docinfo/pubdate"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="info/pubdate"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="appendixinfo/revision"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="docinfo/revision"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="info/revision"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="appendixinfo/revhistory"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="docinfo/revhistory"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="info/revhistory"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="appendixinfo/abstract"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="docinfo/abstract"/> - <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="info/abstract"/> -</xsl:template> - -<xsl:template name="appendix.titlepage.verso"> -</xsl:template> - -<xsl:template name="appendix.titlepage.separator"> -</xsl:template> - -<xsl:template name="appendix.titlepage.before.recto"> -</xsl:template> - -<xsl:template name="appendix.titlepage.before.verso"> -</xsl:template> - -<xsl:template name="appendix.titlepage"> - <div class="titlepage"> - <xsl:variable name="recto.content"> - <xsl:call-template name="appendix.titlepage.before.recto"/> - <xsl:call-template name="appendix.titlepage.recto"/> - </xsl:variable> - <xsl:variable name="recto.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> - <div><xsl:copy-of select="$recto.content"/></div> - </xsl:if> - <xsl:variable name="verso.content"> - <xsl:call-template name="appendix.titlepage.before.verso"/> - <xsl:call-template name="appendix.titlepage.verso"/> - </xsl:variable> - <xsl:variable name="verso.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> - <div><xsl:copy-of select="$verso.content"/></div> - </xsl:if> - <xsl:call-template name="appendix.titlepage.separator"/> - </div> -</xsl:template> - -<xsl:template match="*" mode="appendix.titlepage.recto.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="*" mode="appendix.titlepage.verso.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="title" mode="appendix.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="appendix.titlepage.recto.style"> -<xsl:apply-templates select="." mode="appendix.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="subtitle" mode="appendix.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="appendix.titlepage.recto.style"> -<xsl:apply-templates select="." mode="appendix.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="corpauthor" mode="appendix.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="appendix.titlepage.recto.style"> -<xsl:apply-templates select="." mode="appendix.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="authorgroup" mode="appendix.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="appendix.titlepage.recto.style"> -<xsl:apply-templates select="." mode="appendix.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="author" mode="appendix.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="appendix.titlepage.recto.style"> -<xsl:apply-templates select="." mode="appendix.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="othercredit" mode="appendix.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="appendix.titlepage.recto.style"> -<xsl:apply-templates select="." mode="appendix.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="releaseinfo" mode="appendix.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="appendix.titlepage.recto.style"> -<xsl:apply-templates select="." mode="appendix.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="copyright" mode="appendix.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="appendix.titlepage.recto.style"> -<xsl:apply-templates select="." mode="appendix.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="legalnotice" mode="appendix.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="appendix.titlepage.recto.style"> -<xsl:apply-templates select="." mode="appendix.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="pubdate" mode="appendix.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="appendix.titlepage.recto.style"> -<xsl:apply-templates select="." mode="appendix.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="revision" mode="appendix.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="appendix.titlepage.recto.style"> -<xsl:apply-templates select="." mode="appendix.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="revhistory" mode="appendix.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="appendix.titlepage.recto.style"> -<xsl:apply-templates select="." mode="appendix.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="abstract" mode="appendix.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="appendix.titlepage.recto.style"> -<xsl:apply-templates select="." mode="appendix.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template name="section.titlepage.recto"> - <xsl:choose> - <xsl:when test="sectioninfo/title"> - <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="sectioninfo/title"/> - </xsl:when> - <xsl:when test="info/title"> - <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="info/title"/> - </xsl:when> - <xsl:when test="title"> - <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="title"/> - </xsl:when> - </xsl:choose> - - <xsl:choose> - <xsl:when test="sectioninfo/subtitle"> - <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="sectioninfo/subtitle"/> - </xsl:when> - <xsl:when test="info/subtitle"> - <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="info/subtitle"/> - </xsl:when> - <xsl:when test="subtitle"> - <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="subtitle"/> - </xsl:when> - </xsl:choose> - - <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="sectioninfo/corpauthor"/> - <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="info/corpauthor"/> - <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="sectioninfo/authorgroup"/> - <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="info/authorgroup"/> - <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="sectioninfo/author"/> - <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="info/author"/> - <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="sectioninfo/othercredit"/> - <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="info/othercredit"/> - <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="sectioninfo/releaseinfo"/> - <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="info/releaseinfo"/> - <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="sectioninfo/copyright"/> - <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="info/copyright"/> - <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="sectioninfo/legalnotice"/> - <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="info/legalnotice"/> - <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="sectioninfo/pubdate"/> - <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="info/pubdate"/> - <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="sectioninfo/revision"/> - <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="info/revision"/> - <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="sectioninfo/revhistory"/> - <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="info/revhistory"/> - <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="sectioninfo/abstract"/> - <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="info/abstract"/> -</xsl:template> - -<xsl:template name="section.titlepage.verso"> -</xsl:template> - -<xsl:template name="section.titlepage.separator"><xsl:if test="count(parent::*)='0'"><hr/></xsl:if> -</xsl:template> - -<xsl:template name="section.titlepage.before.recto"> -</xsl:template> - -<xsl:template name="section.titlepage.before.verso"> -</xsl:template> - -<xsl:template name="section.titlepage"> - <div class="titlepage"> - <xsl:variable name="recto.content"> - <xsl:call-template name="section.titlepage.before.recto"/> - <xsl:call-template name="section.titlepage.recto"/> - </xsl:variable> - <xsl:variable name="recto.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> - <div><xsl:copy-of select="$recto.content"/></div> - </xsl:if> - <xsl:variable name="verso.content"> - <xsl:call-template name="section.titlepage.before.verso"/> - <xsl:call-template name="section.titlepage.verso"/> - </xsl:variable> - <xsl:variable name="verso.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> - <div><xsl:copy-of select="$verso.content"/></div> - </xsl:if> - <xsl:call-template name="section.titlepage.separator"/> - </div> -</xsl:template> - -<xsl:template match="*" mode="section.titlepage.recto.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="*" mode="section.titlepage.verso.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="title" mode="section.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="section.titlepage.recto.style"> -<xsl:apply-templates select="." mode="section.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="subtitle" mode="section.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="section.titlepage.recto.style"> -<xsl:apply-templates select="." mode="section.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="corpauthor" mode="section.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="section.titlepage.recto.style"> -<xsl:apply-templates select="." mode="section.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="authorgroup" mode="section.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="section.titlepage.recto.style"> -<xsl:apply-templates select="." mode="section.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="author" mode="section.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="section.titlepage.recto.style"> -<xsl:apply-templates select="." mode="section.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="othercredit" mode="section.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="section.titlepage.recto.style"> -<xsl:apply-templates select="." mode="section.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="releaseinfo" mode="section.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="section.titlepage.recto.style"> -<xsl:apply-templates select="." mode="section.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="copyright" mode="section.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="section.titlepage.recto.style"> -<xsl:apply-templates select="." mode="section.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="legalnotice" mode="section.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="section.titlepage.recto.style"> -<xsl:apply-templates select="." mode="section.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="pubdate" mode="section.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="section.titlepage.recto.style"> -<xsl:apply-templates select="." mode="section.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="revision" mode="section.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="section.titlepage.recto.style"> -<xsl:apply-templates select="." mode="section.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="revhistory" mode="section.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="section.titlepage.recto.style"> -<xsl:apply-templates select="." mode="section.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="abstract" mode="section.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="section.titlepage.recto.style"> -<xsl:apply-templates select="." mode="section.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template name="sect1.titlepage.recto"> - <xsl:choose> - <xsl:when test="sect1info/title"> - <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="sect1info/title"/> - </xsl:when> - <xsl:when test="info/title"> - <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="info/title"/> - </xsl:when> - <xsl:when test="title"> - <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="title"/> - </xsl:when> - </xsl:choose> - - <xsl:choose> - <xsl:when test="sect1info/subtitle"> - <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="sect1info/subtitle"/> - </xsl:when> - <xsl:when test="info/subtitle"> - <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="info/subtitle"/> - </xsl:when> - <xsl:when test="subtitle"> - <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="subtitle"/> - </xsl:when> - </xsl:choose> - - <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="sect1info/corpauthor"/> - <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="info/corpauthor"/> - <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="sect1info/authorgroup"/> - <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="info/authorgroup"/> - <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="sect1info/author"/> - <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="info/author"/> - <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="sect1info/othercredit"/> - <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="info/othercredit"/> - <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="sect1info/releaseinfo"/> - <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="info/releaseinfo"/> - <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="sect1info/copyright"/> - <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="info/copyright"/> - <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="sect1info/legalnotice"/> - <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="info/legalnotice"/> - <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="sect1info/pubdate"/> - <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="info/pubdate"/> - <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="sect1info/revision"/> - <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="info/revision"/> - <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="sect1info/revhistory"/> - <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="info/revhistory"/> - <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="sect1info/abstract"/> - <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="info/abstract"/> -</xsl:template> - -<xsl:template name="sect1.titlepage.verso"> -</xsl:template> - -<xsl:template name="sect1.titlepage.separator"><xsl:if test="count(parent::*)='0'"><hr/></xsl:if> -</xsl:template> - -<xsl:template name="sect1.titlepage.before.recto"> -</xsl:template> - -<xsl:template name="sect1.titlepage.before.verso"> -</xsl:template> - -<xsl:template name="sect1.titlepage"> - <div class="titlepage"> - <xsl:variable name="recto.content"> - <xsl:call-template name="sect1.titlepage.before.recto"/> - <xsl:call-template name="sect1.titlepage.recto"/> - </xsl:variable> - <xsl:variable name="recto.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> - <div><xsl:copy-of select="$recto.content"/></div> - </xsl:if> - <xsl:variable name="verso.content"> - <xsl:call-template name="sect1.titlepage.before.verso"/> - <xsl:call-template name="sect1.titlepage.verso"/> - </xsl:variable> - <xsl:variable name="verso.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> - <div><xsl:copy-of select="$verso.content"/></div> - </xsl:if> - <xsl:call-template name="sect1.titlepage.separator"/> - </div> -</xsl:template> - -<xsl:template match="*" mode="sect1.titlepage.recto.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="*" mode="sect1.titlepage.verso.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="title" mode="sect1.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect1.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect1.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="subtitle" mode="sect1.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect1.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect1.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="corpauthor" mode="sect1.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect1.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect1.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="authorgroup" mode="sect1.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect1.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect1.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="author" mode="sect1.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect1.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect1.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="othercredit" mode="sect1.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect1.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect1.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="releaseinfo" mode="sect1.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect1.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect1.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="copyright" mode="sect1.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect1.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect1.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="legalnotice" mode="sect1.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect1.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect1.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="pubdate" mode="sect1.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect1.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect1.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="revision" mode="sect1.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect1.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect1.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="revhistory" mode="sect1.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect1.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect1.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="abstract" mode="sect1.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect1.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect1.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template name="sect2.titlepage.recto"> - <xsl:choose> - <xsl:when test="sect2info/title"> - <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="sect2info/title"/> - </xsl:when> - <xsl:when test="info/title"> - <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="info/title"/> - </xsl:when> - <xsl:when test="title"> - <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="title"/> - </xsl:when> - </xsl:choose> - - <xsl:choose> - <xsl:when test="sect2info/subtitle"> - <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="sect2info/subtitle"/> - </xsl:when> - <xsl:when test="info/subtitle"> - <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="info/subtitle"/> - </xsl:when> - <xsl:when test="subtitle"> - <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="subtitle"/> - </xsl:when> - </xsl:choose> - - <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="sect2info/corpauthor"/> - <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="info/corpauthor"/> - <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="sect2info/authorgroup"/> - <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="info/authorgroup"/> - <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="sect2info/author"/> - <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="info/author"/> - <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="sect2info/othercredit"/> - <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="info/othercredit"/> - <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="sect2info/releaseinfo"/> - <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="info/releaseinfo"/> - <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="sect2info/copyright"/> - <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="info/copyright"/> - <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="sect2info/legalnotice"/> - <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="info/legalnotice"/> - <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="sect2info/pubdate"/> - <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="info/pubdate"/> - <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="sect2info/revision"/> - <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="info/revision"/> - <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="sect2info/revhistory"/> - <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="info/revhistory"/> - <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="sect2info/abstract"/> - <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="info/abstract"/> -</xsl:template> - -<xsl:template name="sect2.titlepage.verso"> -</xsl:template> - -<xsl:template name="sect2.titlepage.separator"><xsl:if test="count(parent::*)='0'"><hr/></xsl:if> -</xsl:template> - -<xsl:template name="sect2.titlepage.before.recto"> -</xsl:template> - -<xsl:template name="sect2.titlepage.before.verso"> -</xsl:template> - -<xsl:template name="sect2.titlepage"> - <div class="titlepage"> - <xsl:variable name="recto.content"> - <xsl:call-template name="sect2.titlepage.before.recto"/> - <xsl:call-template name="sect2.titlepage.recto"/> - </xsl:variable> - <xsl:variable name="recto.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> - <div><xsl:copy-of select="$recto.content"/></div> - </xsl:if> - <xsl:variable name="verso.content"> - <xsl:call-template name="sect2.titlepage.before.verso"/> - <xsl:call-template name="sect2.titlepage.verso"/> - </xsl:variable> - <xsl:variable name="verso.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> - <div><xsl:copy-of select="$verso.content"/></div> - </xsl:if> - <xsl:call-template name="sect2.titlepage.separator"/> - </div> -</xsl:template> - -<xsl:template match="*" mode="sect2.titlepage.recto.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="*" mode="sect2.titlepage.verso.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="title" mode="sect2.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect2.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect2.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="subtitle" mode="sect2.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect2.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect2.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="corpauthor" mode="sect2.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect2.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect2.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="authorgroup" mode="sect2.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect2.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect2.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="author" mode="sect2.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect2.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect2.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="othercredit" mode="sect2.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect2.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect2.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="releaseinfo" mode="sect2.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect2.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect2.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="copyright" mode="sect2.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect2.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect2.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="legalnotice" mode="sect2.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect2.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect2.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="pubdate" mode="sect2.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect2.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect2.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="revision" mode="sect2.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect2.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect2.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="revhistory" mode="sect2.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect2.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect2.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="abstract" mode="sect2.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect2.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect2.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template name="sect3.titlepage.recto"> - <xsl:choose> - <xsl:when test="sect3info/title"> - <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="sect3info/title"/> - </xsl:when> - <xsl:when test="info/title"> - <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="info/title"/> - </xsl:when> - <xsl:when test="title"> - <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="title"/> - </xsl:when> - </xsl:choose> - - <xsl:choose> - <xsl:when test="sect3info/subtitle"> - <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="sect3info/subtitle"/> - </xsl:when> - <xsl:when test="info/subtitle"> - <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="info/subtitle"/> - </xsl:when> - <xsl:when test="subtitle"> - <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="subtitle"/> - </xsl:when> - </xsl:choose> - - <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="sect3info/corpauthor"/> - <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="info/corpauthor"/> - <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="sect3info/authorgroup"/> - <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="info/authorgroup"/> - <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="sect3info/author"/> - <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="info/author"/> - <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="sect3info/othercredit"/> - <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="info/othercredit"/> - <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="sect3info/releaseinfo"/> - <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="info/releaseinfo"/> - <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="sect3info/copyright"/> - <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="info/copyright"/> - <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="sect3info/legalnotice"/> - <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="info/legalnotice"/> - <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="sect3info/pubdate"/> - <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="info/pubdate"/> - <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="sect3info/revision"/> - <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="info/revision"/> - <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="sect3info/revhistory"/> - <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="info/revhistory"/> - <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="sect3info/abstract"/> - <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="info/abstract"/> -</xsl:template> - -<xsl:template name="sect3.titlepage.verso"> -</xsl:template> - -<xsl:template name="sect3.titlepage.separator"><xsl:if test="count(parent::*)='0'"><hr/></xsl:if> -</xsl:template> - -<xsl:template name="sect3.titlepage.before.recto"> -</xsl:template> - -<xsl:template name="sect3.titlepage.before.verso"> -</xsl:template> - -<xsl:template name="sect3.titlepage"> - <div class="titlepage"> - <xsl:variable name="recto.content"> - <xsl:call-template name="sect3.titlepage.before.recto"/> - <xsl:call-template name="sect3.titlepage.recto"/> - </xsl:variable> - <xsl:variable name="recto.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> - <div><xsl:copy-of select="$recto.content"/></div> - </xsl:if> - <xsl:variable name="verso.content"> - <xsl:call-template name="sect3.titlepage.before.verso"/> - <xsl:call-template name="sect3.titlepage.verso"/> - </xsl:variable> - <xsl:variable name="verso.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> - <div><xsl:copy-of select="$verso.content"/></div> - </xsl:if> - <xsl:call-template name="sect3.titlepage.separator"/> - </div> -</xsl:template> - -<xsl:template match="*" mode="sect3.titlepage.recto.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="*" mode="sect3.titlepage.verso.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="title" mode="sect3.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect3.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect3.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="subtitle" mode="sect3.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect3.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect3.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="corpauthor" mode="sect3.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect3.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect3.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="authorgroup" mode="sect3.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect3.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect3.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="author" mode="sect3.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect3.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect3.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="othercredit" mode="sect3.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect3.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect3.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="releaseinfo" mode="sect3.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect3.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect3.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="copyright" mode="sect3.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect3.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect3.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="legalnotice" mode="sect3.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect3.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect3.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="pubdate" mode="sect3.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect3.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect3.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="revision" mode="sect3.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect3.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect3.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="revhistory" mode="sect3.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect3.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect3.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="abstract" mode="sect3.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect3.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect3.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template name="sect4.titlepage.recto"> - <xsl:choose> - <xsl:when test="sect4info/title"> - <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="sect4info/title"/> - </xsl:when> - <xsl:when test="info/title"> - <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="info/title"/> - </xsl:when> - <xsl:when test="title"> - <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="title"/> - </xsl:when> - </xsl:choose> - - <xsl:choose> - <xsl:when test="sect4info/subtitle"> - <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="sect4info/subtitle"/> - </xsl:when> - <xsl:when test="info/subtitle"> - <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="info/subtitle"/> - </xsl:when> - <xsl:when test="subtitle"> - <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="subtitle"/> - </xsl:when> - </xsl:choose> - - <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="sect4info/corpauthor"/> - <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="info/corpauthor"/> - <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="sect4info/authorgroup"/> - <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="info/authorgroup"/> - <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="sect4info/author"/> - <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="info/author"/> - <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="sect4info/othercredit"/> - <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="info/othercredit"/> - <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="sect4info/releaseinfo"/> - <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="info/releaseinfo"/> - <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="sect4info/copyright"/> - <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="info/copyright"/> - <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="sect4info/legalnotice"/> - <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="info/legalnotice"/> - <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="sect4info/pubdate"/> - <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="info/pubdate"/> - <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="sect4info/revision"/> - <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="info/revision"/> - <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="sect4info/revhistory"/> - <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="info/revhistory"/> - <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="sect4info/abstract"/> - <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="info/abstract"/> -</xsl:template> - -<xsl:template name="sect4.titlepage.verso"> -</xsl:template> - -<xsl:template name="sect4.titlepage.separator"><xsl:if test="count(parent::*)='0'"><hr/></xsl:if> -</xsl:template> - -<xsl:template name="sect4.titlepage.before.recto"> -</xsl:template> - -<xsl:template name="sect4.titlepage.before.verso"> -</xsl:template> - -<xsl:template name="sect4.titlepage"> - <div class="titlepage"> - <xsl:variable name="recto.content"> - <xsl:call-template name="sect4.titlepage.before.recto"/> - <xsl:call-template name="sect4.titlepage.recto"/> - </xsl:variable> - <xsl:variable name="recto.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> - <div><xsl:copy-of select="$recto.content"/></div> - </xsl:if> - <xsl:variable name="verso.content"> - <xsl:call-template name="sect4.titlepage.before.verso"/> - <xsl:call-template name="sect4.titlepage.verso"/> - </xsl:variable> - <xsl:variable name="verso.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> - <div><xsl:copy-of select="$verso.content"/></div> - </xsl:if> - <xsl:call-template name="sect4.titlepage.separator"/> - </div> -</xsl:template> - -<xsl:template match="*" mode="sect4.titlepage.recto.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="*" mode="sect4.titlepage.verso.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="title" mode="sect4.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect4.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect4.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="subtitle" mode="sect4.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect4.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect4.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="corpauthor" mode="sect4.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect4.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect4.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="authorgroup" mode="sect4.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect4.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect4.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="author" mode="sect4.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect4.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect4.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="othercredit" mode="sect4.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect4.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect4.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="releaseinfo" mode="sect4.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect4.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect4.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="copyright" mode="sect4.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect4.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect4.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="legalnotice" mode="sect4.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect4.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect4.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="pubdate" mode="sect4.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect4.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect4.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="revision" mode="sect4.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect4.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect4.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="revhistory" mode="sect4.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect4.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect4.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="abstract" mode="sect4.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect4.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect4.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template name="sect5.titlepage.recto"> - <xsl:choose> - <xsl:when test="sect5info/title"> - <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="sect5info/title"/> - </xsl:when> - <xsl:when test="info/title"> - <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="info/title"/> - </xsl:when> - <xsl:when test="title"> - <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="title"/> - </xsl:when> - </xsl:choose> - - <xsl:choose> - <xsl:when test="sect5info/subtitle"> - <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="sect5info/subtitle"/> - </xsl:when> - <xsl:when test="info/subtitle"> - <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="info/subtitle"/> - </xsl:when> - <xsl:when test="subtitle"> - <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="subtitle"/> - </xsl:when> - </xsl:choose> - - <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="sect5info/corpauthor"/> - <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="info/corpauthor"/> - <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="sect5info/authorgroup"/> - <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="info/authorgroup"/> - <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="sect5info/author"/> - <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="info/author"/> - <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="sect5info/othercredit"/> - <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="info/othercredit"/> - <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="sect5info/releaseinfo"/> - <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="info/releaseinfo"/> - <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="sect5info/copyright"/> - <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="info/copyright"/> - <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="sect5info/legalnotice"/> - <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="info/legalnotice"/> - <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="sect5info/pubdate"/> - <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="info/pubdate"/> - <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="sect5info/revision"/> - <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="info/revision"/> - <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="sect5info/revhistory"/> - <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="info/revhistory"/> - <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="sect5info/abstract"/> - <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="info/abstract"/> -</xsl:template> - -<xsl:template name="sect5.titlepage.verso"> -</xsl:template> - -<xsl:template name="sect5.titlepage.separator"><xsl:if test="count(parent::*)='0'"><hr/></xsl:if> -</xsl:template> - -<xsl:template name="sect5.titlepage.before.recto"> -</xsl:template> - -<xsl:template name="sect5.titlepage.before.verso"> -</xsl:template> - -<xsl:template name="sect5.titlepage"> - <div class="titlepage"> - <xsl:variable name="recto.content"> - <xsl:call-template name="sect5.titlepage.before.recto"/> - <xsl:call-template name="sect5.titlepage.recto"/> - </xsl:variable> - <xsl:variable name="recto.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> - <div><xsl:copy-of select="$recto.content"/></div> - </xsl:if> - <xsl:variable name="verso.content"> - <xsl:call-template name="sect5.titlepage.before.verso"/> - <xsl:call-template name="sect5.titlepage.verso"/> - </xsl:variable> - <xsl:variable name="verso.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> - <div><xsl:copy-of select="$verso.content"/></div> - </xsl:if> - <xsl:call-template name="sect5.titlepage.separator"/> - </div> -</xsl:template> - -<xsl:template match="*" mode="sect5.titlepage.recto.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="*" mode="sect5.titlepage.verso.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="title" mode="sect5.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect5.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect5.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="subtitle" mode="sect5.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect5.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect5.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="corpauthor" mode="sect5.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect5.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect5.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="authorgroup" mode="sect5.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect5.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect5.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="author" mode="sect5.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect5.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect5.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="othercredit" mode="sect5.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect5.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect5.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="releaseinfo" mode="sect5.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect5.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect5.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="copyright" mode="sect5.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect5.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect5.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="legalnotice" mode="sect5.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect5.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect5.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="pubdate" mode="sect5.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect5.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect5.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="revision" mode="sect5.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect5.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect5.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="revhistory" mode="sect5.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect5.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect5.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="abstract" mode="sect5.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="sect5.titlepage.recto.style"> -<xsl:apply-templates select="." mode="sect5.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template name="simplesect.titlepage.recto"> - <xsl:choose> - <xsl:when test="simplesectinfo/title"> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="simplesectinfo/title"/> - </xsl:when> - <xsl:when test="docinfo/title"> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="docinfo/title"/> - </xsl:when> - <xsl:when test="info/title"> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="info/title"/> - </xsl:when> - <xsl:when test="title"> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="title"/> - </xsl:when> - </xsl:choose> - - <xsl:choose> - <xsl:when test="simplesectinfo/subtitle"> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="simplesectinfo/subtitle"/> - </xsl:when> - <xsl:when test="docinfo/subtitle"> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="docinfo/subtitle"/> - </xsl:when> - <xsl:when test="info/subtitle"> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="info/subtitle"/> - </xsl:when> - <xsl:when test="subtitle"> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="subtitle"/> - </xsl:when> - </xsl:choose> - - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="simplesectinfo/corpauthor"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="docinfo/corpauthor"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="info/corpauthor"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="simplesectinfo/authorgroup"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="docinfo/authorgroup"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="info/authorgroup"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="simplesectinfo/author"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="docinfo/author"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="info/author"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="simplesectinfo/othercredit"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="docinfo/othercredit"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="info/othercredit"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="simplesectinfo/releaseinfo"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="docinfo/releaseinfo"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="info/releaseinfo"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="simplesectinfo/copyright"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="docinfo/copyright"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="info/copyright"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="simplesectinfo/legalnotice"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="docinfo/legalnotice"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="info/legalnotice"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="simplesectinfo/pubdate"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="docinfo/pubdate"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="info/pubdate"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="simplesectinfo/revision"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="docinfo/revision"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="info/revision"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="simplesectinfo/revhistory"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="docinfo/revhistory"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="info/revhistory"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="simplesectinfo/abstract"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="docinfo/abstract"/> - <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="info/abstract"/> -</xsl:template> - -<xsl:template name="simplesect.titlepage.verso"> -</xsl:template> - -<xsl:template name="simplesect.titlepage.separator"><xsl:if test="count(parent::*)='0'"><hr/></xsl:if> -</xsl:template> - -<xsl:template name="simplesect.titlepage.before.recto"> -</xsl:template> - -<xsl:template name="simplesect.titlepage.before.verso"> -</xsl:template> - -<xsl:template name="simplesect.titlepage"> - <div class="titlepage"> - <xsl:variable name="recto.content"> - <xsl:call-template name="simplesect.titlepage.before.recto"/> - <xsl:call-template name="simplesect.titlepage.recto"/> - </xsl:variable> - <xsl:variable name="recto.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> - <div><xsl:copy-of select="$recto.content"/></div> - </xsl:if> - <xsl:variable name="verso.content"> - <xsl:call-template name="simplesect.titlepage.before.verso"/> - <xsl:call-template name="simplesect.titlepage.verso"/> - </xsl:variable> - <xsl:variable name="verso.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> - <div><xsl:copy-of select="$verso.content"/></div> - </xsl:if> - <xsl:call-template name="simplesect.titlepage.separator"/> - </div> -</xsl:template> - -<xsl:template match="*" mode="simplesect.titlepage.recto.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="*" mode="simplesect.titlepage.verso.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="title" mode="simplesect.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="simplesect.titlepage.recto.style"> -<xsl:apply-templates select="." mode="simplesect.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="subtitle" mode="simplesect.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="simplesect.titlepage.recto.style"> -<xsl:apply-templates select="." mode="simplesect.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="corpauthor" mode="simplesect.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="simplesect.titlepage.recto.style"> -<xsl:apply-templates select="." mode="simplesect.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="authorgroup" mode="simplesect.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="simplesect.titlepage.recto.style"> -<xsl:apply-templates select="." mode="simplesect.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="author" mode="simplesect.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="simplesect.titlepage.recto.style"> -<xsl:apply-templates select="." mode="simplesect.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="othercredit" mode="simplesect.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="simplesect.titlepage.recto.style"> -<xsl:apply-templates select="." mode="simplesect.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="releaseinfo" mode="simplesect.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="simplesect.titlepage.recto.style"> -<xsl:apply-templates select="." mode="simplesect.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="copyright" mode="simplesect.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="simplesect.titlepage.recto.style"> -<xsl:apply-templates select="." mode="simplesect.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="legalnotice" mode="simplesect.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="simplesect.titlepage.recto.style"> -<xsl:apply-templates select="." mode="simplesect.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="pubdate" mode="simplesect.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="simplesect.titlepage.recto.style"> -<xsl:apply-templates select="." mode="simplesect.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="revision" mode="simplesect.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="simplesect.titlepage.recto.style"> -<xsl:apply-templates select="." mode="simplesect.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="revhistory" mode="simplesect.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="simplesect.titlepage.recto.style"> -<xsl:apply-templates select="." mode="simplesect.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template match="abstract" mode="simplesect.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="simplesect.titlepage.recto.style"> -<xsl:apply-templates select="." mode="simplesect.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template name="bibliography.titlepage.recto"> - <div xsl:use-attribute-sets="bibliography.titlepage.recto.style"> -<xsl:call-template name="component.title"> -<xsl:with-param name="node" select="ancestor-or-self::bibliography[1]"/> -</xsl:call-template></div> - <xsl:choose> - <xsl:when test="bibliographyinfo/subtitle"> - <xsl:apply-templates mode="bibliography.titlepage.recto.auto.mode" select="bibliographyinfo/subtitle"/> - </xsl:when> - <xsl:when test="docinfo/subtitle"> - <xsl:apply-templates mode="bibliography.titlepage.recto.auto.mode" select="docinfo/subtitle"/> - </xsl:when> - <xsl:when test="info/subtitle"> - <xsl:apply-templates mode="bibliography.titlepage.recto.auto.mode" select="info/subtitle"/> - </xsl:when> - <xsl:when test="subtitle"> - <xsl:apply-templates mode="bibliography.titlepage.recto.auto.mode" select="subtitle"/> - </xsl:when> - </xsl:choose> - -</xsl:template> - -<xsl:template name="bibliography.titlepage.verso"> -</xsl:template> - -<xsl:template name="bibliography.titlepage.separator"> -</xsl:template> - -<xsl:template name="bibliography.titlepage.before.recto"> -</xsl:template> - -<xsl:template name="bibliography.titlepage.before.verso"> -</xsl:template> - -<xsl:template name="bibliography.titlepage"> - <div class="titlepage"> - <xsl:variable name="recto.content"> - <xsl:call-template name="bibliography.titlepage.before.recto"/> - <xsl:call-template name="bibliography.titlepage.recto"/> - </xsl:variable> - <xsl:variable name="recto.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> - <div><xsl:copy-of select="$recto.content"/></div> - </xsl:if> - <xsl:variable name="verso.content"> - <xsl:call-template name="bibliography.titlepage.before.verso"/> - <xsl:call-template name="bibliography.titlepage.verso"/> - </xsl:variable> - <xsl:variable name="verso.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> - <div><xsl:copy-of select="$verso.content"/></div> - </xsl:if> - <xsl:call-template name="bibliography.titlepage.separator"/> - </div> -</xsl:template> - -<xsl:template match="*" mode="bibliography.titlepage.recto.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="*" mode="bibliography.titlepage.verso.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="subtitle" mode="bibliography.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="bibliography.titlepage.recto.style"> -<xsl:apply-templates select="." mode="bibliography.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template name="glossary.titlepage.recto"> - <div xsl:use-attribute-sets="glossary.titlepage.recto.style"> -<xsl:call-template name="component.title"> -<xsl:with-param name="node" select="ancestor-or-self::glossary[1]"/> -</xsl:call-template></div> - <xsl:choose> - <xsl:when test="glossaryinfo/subtitle"> - <xsl:apply-templates mode="glossary.titlepage.recto.auto.mode" select="glossaryinfo/subtitle"/> - </xsl:when> - <xsl:when test="docinfo/subtitle"> - <xsl:apply-templates mode="glossary.titlepage.recto.auto.mode" select="docinfo/subtitle"/> - </xsl:when> - <xsl:when test="info/subtitle"> - <xsl:apply-templates mode="glossary.titlepage.recto.auto.mode" select="info/subtitle"/> - </xsl:when> - <xsl:when test="subtitle"> - <xsl:apply-templates mode="glossary.titlepage.recto.auto.mode" select="subtitle"/> - </xsl:when> - </xsl:choose> - -</xsl:template> - -<xsl:template name="glossary.titlepage.verso"> -</xsl:template> - -<xsl:template name="glossary.titlepage.separator"> -</xsl:template> - -<xsl:template name="glossary.titlepage.before.recto"> -</xsl:template> - -<xsl:template name="glossary.titlepage.before.verso"> -</xsl:template> - -<xsl:template name="glossary.titlepage"> - <div class="titlepage"> - <xsl:variable name="recto.content"> - <xsl:call-template name="glossary.titlepage.before.recto"/> - <xsl:call-template name="glossary.titlepage.recto"/> - </xsl:variable> - <xsl:variable name="recto.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> - <div><xsl:copy-of select="$recto.content"/></div> - </xsl:if> - <xsl:variable name="verso.content"> - <xsl:call-template name="glossary.titlepage.before.verso"/> - <xsl:call-template name="glossary.titlepage.verso"/> - </xsl:variable> - <xsl:variable name="verso.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> - <div><xsl:copy-of select="$verso.content"/></div> - </xsl:if> - <xsl:call-template name="glossary.titlepage.separator"/> - </div> -</xsl:template> - -<xsl:template match="*" mode="glossary.titlepage.recto.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="*" mode="glossary.titlepage.verso.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="subtitle" mode="glossary.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="glossary.titlepage.recto.style"> -<xsl:apply-templates select="." mode="glossary.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template name="index.titlepage.recto"> - <div xsl:use-attribute-sets="index.titlepage.recto.style"> -<xsl:call-template name="component.title"> -<xsl:with-param name="node" select="ancestor-or-self::index[1]"/> -</xsl:call-template></div> - <xsl:choose> - <xsl:when test="indexinfo/subtitle"> - <xsl:apply-templates mode="index.titlepage.recto.auto.mode" select="indexinfo/subtitle"/> - </xsl:when> - <xsl:when test="docinfo/subtitle"> - <xsl:apply-templates mode="index.titlepage.recto.auto.mode" select="docinfo/subtitle"/> - </xsl:when> - <xsl:when test="info/subtitle"> - <xsl:apply-templates mode="index.titlepage.recto.auto.mode" select="info/subtitle"/> - </xsl:when> - <xsl:when test="subtitle"> - <xsl:apply-templates mode="index.titlepage.recto.auto.mode" select="subtitle"/> - </xsl:when> - </xsl:choose> - -</xsl:template> - -<xsl:template name="index.titlepage.verso"> -</xsl:template> - -<xsl:template name="index.titlepage.separator"> -</xsl:template> - -<xsl:template name="index.titlepage.before.recto"> -</xsl:template> - -<xsl:template name="index.titlepage.before.verso"> -</xsl:template> - -<xsl:template name="index.titlepage"> - <div class="titlepage"> - <xsl:variable name="recto.content"> - <xsl:call-template name="index.titlepage.before.recto"/> - <xsl:call-template name="index.titlepage.recto"/> - </xsl:variable> - <xsl:variable name="recto.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> - <div><xsl:copy-of select="$recto.content"/></div> - </xsl:if> - <xsl:variable name="verso.content"> - <xsl:call-template name="index.titlepage.before.verso"/> - <xsl:call-template name="index.titlepage.verso"/> - </xsl:variable> - <xsl:variable name="verso.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> - <div><xsl:copy-of select="$verso.content"/></div> - </xsl:if> - <xsl:call-template name="index.titlepage.separator"/> - </div> -</xsl:template> - -<xsl:template match="*" mode="index.titlepage.recto.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="*" mode="index.titlepage.verso.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="subtitle" mode="index.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="index.titlepage.recto.style"> -<xsl:apply-templates select="." mode="index.titlepage.recto.mode"/> -</div> -</xsl:template> - -<xsl:template name="setindex.titlepage.recto"> - <div xsl:use-attribute-sets="setindex.titlepage.recto.style"> -<xsl:call-template name="component.title"> -<xsl:with-param name="node" select="ancestor-or-self::setindex[1]"/> -</xsl:call-template></div> - <xsl:choose> - <xsl:when test="setindexinfo/subtitle"> - <xsl:apply-templates mode="setindex.titlepage.recto.auto.mode" select="setindexinfo/subtitle"/> - </xsl:when> - <xsl:when test="docinfo/subtitle"> - <xsl:apply-templates mode="setindex.titlepage.recto.auto.mode" select="docinfo/subtitle"/> - </xsl:when> - <xsl:when test="info/subtitle"> - <xsl:apply-templates mode="setindex.titlepage.recto.auto.mode" select="info/subtitle"/> - </xsl:when> - <xsl:when test="subtitle"> - <xsl:apply-templates mode="setindex.titlepage.recto.auto.mode" select="subtitle"/> - </xsl:when> - </xsl:choose> - -</xsl:template> - -<xsl:template name="setindex.titlepage.verso"> -</xsl:template> - -<xsl:template name="setindex.titlepage.separator"> -</xsl:template> - -<xsl:template name="setindex.titlepage.before.recto"> -</xsl:template> - -<xsl:template name="setindex.titlepage.before.verso"> -</xsl:template> - -<xsl:template name="setindex.titlepage"> - <div class="titlepage"> - <xsl:variable name="recto.content"> - <xsl:call-template name="setindex.titlepage.before.recto"/> - <xsl:call-template name="setindex.titlepage.recto"/> - </xsl:variable> - <xsl:variable name="recto.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> - <div><xsl:copy-of select="$recto.content"/></div> - </xsl:if> - <xsl:variable name="verso.content"> - <xsl:call-template name="setindex.titlepage.before.verso"/> - <xsl:call-template name="setindex.titlepage.verso"/> - </xsl:variable> - <xsl:variable name="verso.elements.count"> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> - <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> - <div><xsl:copy-of select="$verso.content"/></div> - </xsl:if> - <xsl:call-template name="setindex.titlepage.separator"/> - </div> -</xsl:template> - -<xsl:template match="*" mode="setindex.titlepage.recto.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="*" mode="setindex.titlepage.verso.mode"> - <!-- if an element isn't found in this mode, --> - <!-- try the generic titlepage.mode --> - <xsl:apply-templates select="." mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="subtitle" mode="setindex.titlepage.recto.auto.mode"> -<div xsl:use-attribute-sets="setindex.titlepage.recto.style"> -<xsl:apply-templates select="." mode="setindex.titlepage.recto.mode"/> -</div> -</xsl:template> - -</xsl:stylesheet> - diff --git a/docbook-xsl-1.75.2/html/titlepage.xsl b/docbook-xsl-1.75.2/html/titlepage.xsl deleted file mode 100644 index 761183b..0000000 --- a/docbook-xsl-1.75.2/html/titlepage.xsl +++ /dev/null @@ -1,1044 +0,0 @@ -<?xml version='1.0'?> -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" - version='1.0'> - -<!-- ******************************************************************** - $Id: titlepage.xsl 8491 2009-07-19 10:02:57Z mzjn $ - ******************************************************************** - - This file is part of the XSL DocBook Stylesheet distribution. - See ../README or http://docbook.sf.net/release/xsl/current/ for - copyright and other information. - - ******************************************************************** --> - -<!-- ==================================================================== --> - -<xsl:attribute-set name="book.titlepage.recto.style"/> -<xsl:attribute-set name="book.titlepage.verso.style"/> - -<xsl:attribute-set name="article.titlepage.recto.style"/> -<xsl:attribute-set name="article.titlepage.verso.style"/> - -<xsl:attribute-set name="set.titlepage.recto.style"/> -<xsl:attribute-set name="set.titlepage.verso.style"/> - -<xsl:attribute-set name="part.titlepage.recto.style"/> -<xsl:attribute-set name="part.titlepage.verso.style"/> - -<xsl:attribute-set name="partintro.titlepage.recto.style"/> -<xsl:attribute-set name="partintro.titlepage.verso.style"/> - -<xsl:attribute-set name="reference.titlepage.recto.style"/> -<xsl:attribute-set name="reference.titlepage.verso.style"/> - -<xsl:attribute-set name="refentry.titlepage.recto.style"/> -<xsl:attribute-set name="refentry.titlepage.verso.style"/> - -<xsl:attribute-set name="dedication.titlepage.recto.style"/> -<xsl:attribute-set name="dedication.titlepage.verso.style"/> - -<xsl:attribute-set name="acknowledgements.titlepage.recto.style"/> -<xsl:attribute-set name="acknowledgements.titlepage.verso.style"/> - -<xsl:attribute-set name="preface.titlepage.recto.style"/> -<xsl:attribute-set name="preface.titlepage.verso.style"/> - -<xsl:attribute-set name="chapter.titlepage.recto.style"/> -<xsl:attribute-set name="chapter.titlepage.verso.style"/> - -<xsl:attribute-set name="appendix.titlepage.recto.style"/> -<xsl:attribute-set name="appendix.titlepage.verso.style"/> - -<xsl:attribute-set name="bibliography.titlepage.recto.style"/> -<xsl:attribute-set name="bibliography.titlepage.verso.style"/> - -<xsl:attribute-set name="glossary.titlepage.recto.style"/> -<xsl:attribute-set name="glossary.titlepage.verso.style"/> - -<xsl:attribute-set name="index.titlepage.recto.style"/> -<xsl:attribute-set name="index.titlepage.verso.style"/> - -<xsl:attribute-set name="setindex.titlepage.recto.style"/> -<xsl:attribute-set name="setindex.titlepage.verso.style"/> - -<xsl:attribute-set name="section.titlepage.recto.style"/> -<xsl:attribute-set name="section.titlepage.verso.style"/> - -<xsl:attribute-set name="sect1.titlepage.recto.style" - use-attribute-sets="section.titlepage.recto.style"/> -<xsl:attribute-set name="sect1.titlepage.verso.style" - use-attribute-sets="section.titlepage.verso.style"/> - -<xsl:attribute-set name="sect2.titlepage.recto.style" - use-attribute-sets="section.titlepage.recto.style"/> -<xsl:attribute-set name="sect2.titlepage.verso.style" - use-attribute-sets="section.titlepage.verso.style"/> - -<xsl:attribute-set name="sect3.titlepage.recto.style" - use-attribute-sets="section.titlepage.recto.style"/> -<xsl:attribute-set name="sect3.titlepage.verso.style" - use-attribute-sets="section.titlepage.verso.style"/> - -<xsl:attribute-set name="sect4.titlepage.recto.style" - use-attribute-sets="section.titlepage.recto.style"/> -<xsl:attribute-set name="sect4.titlepage.verso.style" - use-attribute-sets="section.titlepage.verso.style"/> - -<xsl:attribute-set name="sect5.titlepage.recto.style" - use-attribute-sets="section.titlepage.recto.style"/> -<xsl:attribute-set name="sect5.titlepage.verso.style" - use-attribute-sets="section.titlepage.verso.style"/> - -<xsl:attribute-set name="simplesect.titlepage.recto.style" - use-attribute-sets="section.titlepage.recto.style"/> -<xsl:attribute-set name="simplesect.titlepage.verso.style" - use-attribute-sets="section.titlepage.verso.style"/> - -<xsl:attribute-set name="table.of.contents.titlepage.recto.style"/> -<xsl:attribute-set name="table.of.contents.titlepage.verso.style"/> - -<xsl:attribute-set name="list.of.tables.titlepage.recto.style"/> -<xsl:attribute-set name="list.of.tables.contents.titlepage.verso.style"/> - -<xsl:attribute-set name="list.of.figures.titlepage.recto.style"/> -<xsl:attribute-set name="list.of.figures.contents.titlepage.verso.style"/> - -<xsl:attribute-set name="list.of.equations.titlepage.recto.style"/> -<xsl:attribute-set name="list.of.equations.contents.titlepage.verso.style"/> - -<xsl:attribute-set name="list.of.examples.titlepage.recto.style"/> -<xsl:attribute-set name="list.of.examples.contents.titlepage.verso.style"/> - -<xsl:attribute-set name="list.of.unknowns.titlepage.recto.style"/> -<xsl:attribute-set name="list.of.unknowns.contents.titlepage.verso.style"/> - -<!-- ==================================================================== --> - -<xsl:template match="*" mode="titlepage.mode"> - <!-- if an element isn't found in this mode, try the default mode --> - <xsl:apply-templates select="."/> -</xsl:template> - -<xsl:template match="abbrev" mode="titlepage.mode"> - <span> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:apply-templates mode="titlepage.mode"/> - <br/> - </span> -</xsl:template> - -<xsl:template match="abstract" mode="titlepage.mode"> - <div> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:call-template name="anchor"/> - <xsl:if test="$abstract.notitle.enabled = 0"> - <xsl:call-template name="formal.object.heading"> - <xsl:with-param name="title"> - <xsl:apply-templates select="." mode="title.markup"/> - </xsl:with-param> - </xsl:call-template> - </xsl:if> - <xsl:apply-templates mode="titlepage.mode"/> - <xsl:call-template name="process.footnotes"/> - </div> -</xsl:template> - -<xsl:template match="abstract/title" mode="titlepage.mode"> -</xsl:template> - -<xsl:template match="address" mode="titlepage.mode"> - <xsl:param name="suppress-numbers" select="'0'"/> - - <xsl:variable name="rtf"> - <xsl:apply-templates mode="titlepage.mode"/> - </xsl:variable> - - <xsl:choose> - <xsl:when test="$suppress-numbers = '0' - and @linenumbering = 'numbered' - and $use.extensions != '0' - and $linenumbering.extension != '0'"> - <div> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:call-template name="paragraph"> - <xsl:with-param name="content"> - <xsl:call-template name="number.rtf.lines"> - <xsl:with-param name="rtf" select="$rtf"/> - </xsl:call-template> - </xsl:with-param> - </xsl:call-template> - </div> - </xsl:when> - - <xsl:otherwise> - <div> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:call-template name="paragraph"> - <xsl:with-param name="content"> - <xsl:call-template name="make-verbatim"> - <xsl:with-param name="rtf" select="$rtf"/> - </xsl:call-template> - </xsl:with-param> - </xsl:call-template> - </div> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template match="affiliation" mode="titlepage.mode"> - <div> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:apply-templates mode="titlepage.mode"/> - </div> -</xsl:template> - -<xsl:template match="artpagenums" mode="titlepage.mode"> - <span> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:apply-templates mode="titlepage.mode"/> - <br/> - </span> -</xsl:template> - -<xsl:template match="author|editor" mode="titlepage.mode"> - <xsl:call-template name="credits.div"/> -</xsl:template> - -<xsl:template name="credits.div"> - <div> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:if test="self::editor[position()=1] and not($editedby.enabled = 0)"> - <h4 class="editedby"><xsl:call-template name="gentext.edited.by"/></h4> - </xsl:if> - <h3> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:choose> - <xsl:when test="orgname"> - <xsl:apply-templates/> - </xsl:when> - <xsl:otherwise> - <xsl:call-template name="person.name"/> - </xsl:otherwise> - </xsl:choose> - </h3> - <xsl:if test="not($contrib.inline.enabled = 0)"> - <xsl:apply-templates mode="titlepage.mode" select="contrib"/> - </xsl:if> - <xsl:apply-templates mode="titlepage.mode" select="affiliation"/> - <xsl:apply-templates mode="titlepage.mode" select="email"/> - <xsl:if test="not($blurb.on.titlepage.enabled = 0)"> - <xsl:choose> - <xsl:when test="$contrib.inline.enabled = 0"> - <xsl:apply-templates mode="titlepage.mode" - select="contrib|authorblurb|personblurb"/> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates mode="titlepage.mode" - select="authorblurb|personblurb"/> - </xsl:otherwise> - </xsl:choose> - </xsl:if> - </div> -</xsl:template> - -<xsl:template match="authorblurb|personblurb" mode="titlepage.mode"> - <div> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:apply-templates mode="titlepage.mode"/> - </div> -</xsl:template> - -<xsl:template match="authorgroup" mode="titlepage.mode"> - <div> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:if test="parent::refentryinfo"> - <h2>Authors</h2> - </xsl:if> - - <xsl:call-template name="anchor"/> - <xsl:apply-templates mode="titlepage.mode"/> - </div> -</xsl:template> - -<xsl:template match="authorinitials" mode="titlepage.mode"> - <span> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:apply-templates mode="titlepage.mode"/> - <br/> - </span> -</xsl:template> - -<xsl:template match="bibliomisc" mode="titlepage.mode"> - <xsl:apply-templates mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="bibliomset" mode="titlepage.mode"> - <xsl:apply-templates mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="collab" mode="titlepage.mode"> - <span> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:apply-templates mode="titlepage.mode"/> - <br/> - </span> -</xsl:template> - -<xsl:template match="collabname" mode="titlepage.mode"> - <span> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:apply-templates mode="titlepage.mode"/> - </span> -</xsl:template> - -<xsl:template match="confgroup" mode="titlepage.mode"> - <div> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:apply-templates mode="titlepage.mode"/> - </div> -</xsl:template> - -<xsl:template match="confdates" mode="titlepage.mode"> - <span> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:apply-templates mode="titlepage.mode"/> - <br/> - </span> -</xsl:template> - -<xsl:template match="confsponsor" mode="titlepage.mode"> - <span> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:apply-templates mode="titlepage.mode"/> - <br/> - </span> -</xsl:template> - -<xsl:template match="conftitle" mode="titlepage.mode"> - <span> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:apply-templates mode="titlepage.mode"/> - <br/> - </span> -</xsl:template> - -<xsl:template match="confnum" mode="titlepage.mode"> - <!-- suppress --> -</xsl:template> - -<xsl:template match="contractnum" mode="titlepage.mode"> - <span> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:apply-templates mode="titlepage.mode"/> - <br/> - </span> -</xsl:template> - -<xsl:template match="contractsponsor" mode="titlepage.mode"> - <span> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:apply-templates mode="titlepage.mode"/> - <br/> - </span> -</xsl:template> - -<xsl:template match="contrib" mode="titlepage.mode"> - <xsl:choose> - <xsl:when test="not($contrib.inline.enabled = 0)"> - <span> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:apply-templates mode="titlepage.mode"/> - </span><xsl:text> </xsl:text> - </xsl:when> - <xsl:otherwise> - <div> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <p><xsl:apply-templates mode="titlepage.mode"/></p> - </div> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template match="copyright" mode="titlepage.mode"> - - <xsl:if test="generate-id() = generate-id(//refentryinfo/copyright[1]) - and ($stylesheet.result.type = 'html' or $stylesheet.result.type = 'xhtml')"> - <h2>Copyright</h2> - </xsl:if> - - <p> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:call-template name="gentext"> - <xsl:with-param name="key" select="'Copyright'"/> - </xsl:call-template> - <xsl:call-template name="gentext.space"/> - <xsl:call-template name="dingbat"> - <xsl:with-param name="dingbat">copyright</xsl:with-param> - </xsl:call-template> - <xsl:call-template name="gentext.space"/> - <xsl:call-template name="copyright.years"> - <xsl:with-param name="years" select="year"/> - <xsl:with-param name="print.ranges" select="$make.year.ranges"/> - <xsl:with-param name="single.year.ranges" - select="$make.single.year.ranges"/> - </xsl:call-template> - <xsl:call-template name="gentext.space"/> - <xsl:apply-templates select="holder" mode="titlepage.mode"/> - </p> -</xsl:template> - -<xsl:template match="year" mode="titlepage.mode"> - <xsl:choose> - <xsl:when test="$show.revisionflag != 0 and @revisionflag"> - <span class="{@revisionflag}"> - <xsl:apply-templates mode="titlepage.mode"/> - </span> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates mode="titlepage.mode"/> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template match="holder" mode="titlepage.mode"> - <xsl:choose> - <xsl:when test="$show.revisionflag != 0 and @revisionflag"> - <span class="{@revisionflag}"> - <xsl:apply-templates mode="titlepage.mode"/> - </span> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates mode="titlepage.mode"/> - </xsl:otherwise> - </xsl:choose> - <xsl:if test="position() < last()"> - <xsl:text>, </xsl:text> - </xsl:if> -</xsl:template> - -<xsl:template match="corpauthor" mode="titlepage.mode"> - <h3> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:apply-templates mode="titlepage.mode"/> - </h3> -</xsl:template> - -<xsl:template match="corpcredit" mode="titlepage.mode"> - <span> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:apply-templates mode="titlepage.mode"/> - <br/> - </span> -</xsl:template> - -<xsl:template match="corpname" mode="titlepage.mode"> - <span> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:apply-templates mode="titlepage.mode"/> - <br/> - </span> -</xsl:template> - -<xsl:template match="date" mode="titlepage.mode"> - <span> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:apply-templates mode="titlepage.mode"/> - <br/> - </span> -</xsl:template> - -<xsl:template match="edition" mode="titlepage.mode"> - <p> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:apply-templates mode="titlepage.mode"/> - <xsl:call-template name="gentext.space"/> - <xsl:call-template name="gentext"> - <xsl:with-param name="key" select="'Edition'"/> - </xsl:call-template> - </p> -</xsl:template> - -<xsl:template match="email" mode="titlepage.mode"> - <!-- use the normal e-mail handling code --> - <xsl:apply-templates select="."/> -</xsl:template> - -<xsl:template match="firstname" mode="titlepage.mode"> - <span> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:apply-templates mode="titlepage.mode"/> - <br/> - </span> -</xsl:template> - -<xsl:template match="graphic" mode="titlepage.mode"> - <!-- use the normal graphic handling code --> - <xsl:apply-templates select="."/> -</xsl:template> - -<xsl:template match="honorific" mode="titlepage.mode"> - <span> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:apply-templates mode="titlepage.mode"/> - <br/> - </span> -</xsl:template> - -<xsl:template match="isbn" mode="titlepage.mode"> - <span> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:apply-templates mode="titlepage.mode"/> - <br/> - </span> -</xsl:template> - -<xsl:template match="issn" mode="titlepage.mode"> - <span> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:apply-templates mode="titlepage.mode"/> - <br/> - </span> -</xsl:template> - -<xsl:template match="biblioid" mode="titlepage.mode"> - <span> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:apply-templates mode="titlepage.mode"/> - <br/> - </span> -</xsl:template> - -<xsl:template match="itermset" mode="titlepage.mode"> -</xsl:template> - -<xsl:template match="invpartnumber" mode="titlepage.mode"> - <span> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:apply-templates mode="titlepage.mode"/> - <br/> - </span> -</xsl:template> - -<xsl:template match="issuenum" mode="titlepage.mode"> - <span> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:apply-templates mode="titlepage.mode"/> - <br/> - </span> -</xsl:template> - -<xsl:template match="jobtitle" mode="titlepage.mode"> - <span> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:apply-templates mode="titlepage.mode"/> - <br/> - </span> -</xsl:template> - -<xsl:template match="keywordset" mode="titlepage.mode"> -</xsl:template> - -<xsl:template match="legalnotice" mode="titlepage.mode"> - <xsl:variable name="id"><xsl:call-template name="object.id"/></xsl:variable> - - <xsl:choose> - <xsl:when test="$generate.legalnotice.link != 0"> - - <!-- Compute name of legalnotice file --> - <xsl:variable name="file"> - <xsl:call-template name="ln.or.rh.filename"/> - </xsl:variable> - - <xsl:variable name="filename"> - <xsl:call-template name="make-relative-filename"> - <xsl:with-param name="base.dir" select="$base.dir"/> - <xsl:with-param name="base.name" select="$file"/> - </xsl:call-template> - </xsl:variable> - - <xsl:variable name="title"> - <xsl:apply-templates select="." mode="title.markup"/> - </xsl:variable> - - <a href="{$file}"> - <xsl:copy-of select="$title"/> - </a> - - <xsl:call-template name="write.chunk"> - <xsl:with-param name="filename" select="$filename"/> - <xsl:with-param name="quiet" select="$chunk.quietly"/> - <xsl:with-param name="content"> - <xsl:call-template name="user.preroot"/> - <html> - <head> - <xsl:call-template name="system.head.content"/> - <xsl:call-template name="head.content"/> - <xsl:call-template name="user.head.content"/> - </head> - <body> - <xsl:call-template name="body.attributes"/> - <div> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:apply-templates mode="titlepage.mode"/> - </div> - </body> - </html> - <xsl:value-of select="$chunk.append"/> - </xsl:with-param> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <div> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <a name="{$id}"/> - <xsl:apply-templates mode="titlepage.mode"/> - </div> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template match="legalnotice/title" mode="titlepage.mode"> - <p class="legalnotice-title"><b><xsl:apply-templates/></b></p> -</xsl:template> - -<xsl:template match="lineage" mode="titlepage.mode"> - <span> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:apply-templates mode="titlepage.mode"/> - <br/> - </span> -</xsl:template> - -<xsl:template match="modespec" mode="titlepage.mode"> -</xsl:template> - -<xsl:template match="orgdiv" mode="titlepage.mode"> - <xsl:if test="preceding-sibling::*[1][self::orgname]"> - <xsl:text> </xsl:text> - </xsl:if> - <span> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:apply-templates mode="titlepage.mode"/> - <br/> - </span> -</xsl:template> - -<xsl:template match="orgname" mode="titlepage.mode"> - <span> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:apply-templates mode="titlepage.mode"/> - <br/> - </span> -</xsl:template> - -<xsl:template match="othercredit" mode="titlepage.mode"> -<xsl:choose> - <xsl:when test="not($othercredit.like.author.enabled = 0)"> - <xsl:variable name="contrib" select="string(contrib)"/> - <xsl:choose> - <xsl:when test="contrib"> - <xsl:if test="not(preceding-sibling::othercredit[string(contrib)=$contrib])"> - <xsl:call-template name="paragraph"> - <xsl:with-param name="class" select="local-name(.)"/> - <xsl:with-param name="content"> - <xsl:apply-templates mode="titlepage.mode" select="contrib"/> - <xsl:text>: </xsl:text> - <xsl:call-template name="person.name"/> - <xsl:apply-templates mode="titlepage.mode" select="affiliation"/> - <xsl:apply-templates select="following-sibling::othercredit[string(contrib)=$contrib]" mode="titlepage.othercredits"/> - </xsl:with-param> - </xsl:call-template> - </xsl:if> - </xsl:when> - <xsl:otherwise> - <xsl:call-template name="paragraph"> - <xsl:with-param name="class" select="local-name(.)"/> - <xsl:with-param name="content"> - <xsl:call-template name="person.name"/> - </xsl:with-param> - </xsl:call-template> - <xsl:apply-templates mode="titlepage.mode" select="affiliation"/> - </xsl:otherwise> - </xsl:choose> - </xsl:when> - <xsl:otherwise> - <xsl:call-template name="credits.div"/> - </xsl:otherwise> -</xsl:choose> -</xsl:template> - -<xsl:template match="othercredit" mode="titlepage.othercredits"> - <xsl:text>, </xsl:text> - <xsl:call-template name="person.name"/> -</xsl:template> - -<xsl:template match="othername" mode="titlepage.mode"> - <span> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:apply-templates mode="titlepage.mode"/> - <br/> - </span> -</xsl:template> - -<xsl:template match="pagenums" mode="titlepage.mode"> - <span> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:apply-templates mode="titlepage.mode"/> - <br/> - </span> -</xsl:template> - -<xsl:template match="printhistory" mode="titlepage.mode"> - <div> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:apply-templates mode="titlepage.mode"/> - </div> -</xsl:template> - -<xsl:template match="productname" mode="titlepage.mode"> - <span> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:apply-templates mode="titlepage.mode"/> - <br/> - </span> -</xsl:template> - -<xsl:template match="productnumber" mode="titlepage.mode"> - <span> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:apply-templates mode="titlepage.mode"/> - <br/> - </span> -</xsl:template> - -<xsl:template match="pubdate" mode="titlepage.mode"> - <xsl:call-template name="paragraph"> - <xsl:with-param name="class" select="local-name(.)"/> - <xsl:with-param name="content"> - <xsl:apply-templates mode="titlepage.mode"/> - </xsl:with-param> - </xsl:call-template> -</xsl:template> - -<xsl:template match="publisher" mode="titlepage.mode"> - <xsl:call-template name="paragraph"> - <xsl:with-param name="class" select="local-name(.)"/> - <xsl:with-param name="content"> - <xsl:apply-templates mode="titlepage.mode"/> - </xsl:with-param> - </xsl:call-template> -</xsl:template> - -<xsl:template match="publishername" mode="titlepage.mode"> - <span> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:apply-templates mode="titlepage.mode"/> - <br/> - </span> -</xsl:template> - -<xsl:template match="pubsnumber" mode="titlepage.mode"> - <span> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:apply-templates mode="titlepage.mode"/> - <br/> - </span> -</xsl:template> - -<xsl:template match="releaseinfo" mode="titlepage.mode"> - <xsl:call-template name="paragraph"> - <xsl:with-param name="class" select="local-name(.)"/> - <xsl:with-param name="content"> - <xsl:apply-templates mode="titlepage.mode"/> - </xsl:with-param> - </xsl:call-template> -</xsl:template> - -<xsl:template match="revhistory" mode="titlepage.mode"> - <xsl:variable name="numcols"> - <xsl:choose> - <xsl:when test=".//authorinitials|.//author">3</xsl:when> - <xsl:otherwise>2</xsl:otherwise> - </xsl:choose> - </xsl:variable> - - <xsl:variable name="id"><xsl:call-template name="object.id"/></xsl:variable> - - <xsl:variable name="title"> - <xsl:call-template name="gentext"> - <xsl:with-param name="key">RevHistory</xsl:with-param> - </xsl:call-template> - </xsl:variable> - - <xsl:variable name="contents"> - <div> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <table border="1" width="100%" summary="Revision history"> - <tr> - <th align="{$direction.align.start}" valign="top" colspan="{$numcols}"> - <b> - <xsl:call-template name="gentext"> - <xsl:with-param name="key" select="'RevHistory'"/> - </xsl:call-template> - </b> - </th> - </tr> - <xsl:apply-templates mode="titlepage.mode"> - <xsl:with-param name="numcols" select="$numcols"/> - </xsl:apply-templates> - </table> - </div> - </xsl:variable> - - <xsl:choose> - <xsl:when test="$generate.revhistory.link != 0"> - - <!-- Compute name of revhistory file --> - <xsl:variable name="file"> - <xsl:call-template name="ln.or.rh.filename"> - <xsl:with-param name="is.ln" select="false()"/> - </xsl:call-template> - </xsl:variable> - - <xsl:variable name="filename"> - <xsl:call-template name="make-relative-filename"> - <xsl:with-param name="base.dir" select="$base.dir"/> - <xsl:with-param name="base.name" select="$file"/> - </xsl:call-template> - </xsl:variable> - - <a href="{$file}"> - <xsl:copy-of select="$title"/> - </a> - - <xsl:call-template name="write.chunk"> - <xsl:with-param name="filename" select="$filename"/> - <xsl:with-param name="quiet" select="$chunk.quietly"/> - <xsl:with-param name="content"> - <xsl:call-template name="user.preroot"/> - <html> - <head> - <xsl:call-template name="system.head.content"/> - <xsl:call-template name="head.content"> - <xsl:with-param name="title"> - <xsl:value-of select="$title"/> - <xsl:if test="../../title"> - <xsl:value-of select="concat(' (', ../../title, ')')"/> - </xsl:if> - </xsl:with-param> - </xsl:call-template> - <xsl:call-template name="user.head.content"/> - </head> - <body> - <xsl:call-template name="body.attributes"/> - <xsl:copy-of select="$contents"/> - </body> - </html> - <xsl:text> </xsl:text> - </xsl:with-param> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <xsl:copy-of select="$contents"/> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template match="revhistory/revision" mode="titlepage.mode"> - <xsl:param name="numcols" select="'3'"/> - <xsl:variable name="revnumber" select="revnumber"/> - <xsl:variable name="revdate" select="date"/> - <xsl:variable name="revauthor" select="authorinitials|author"/> - <xsl:variable name="revremark" select="revremark|revdescription"/> - <tr> - <td align="{$direction.align.start}"> - <xsl:if test="$revnumber"> - <xsl:call-template name="gentext"> - <xsl:with-param name="key" select="'Revision'"/> - </xsl:call-template> - <xsl:call-template name="gentext.space"/> - <xsl:apply-templates select="$revnumber[1]" mode="titlepage.mode"/> - </xsl:if> - </td> - <td align="{$direction.align.start}"> - <xsl:apply-templates select="$revdate[1]" mode="titlepage.mode"/> - </td> - <xsl:choose> - <xsl:when test="$revauthor"> - <td align="{$direction.align.start}"> - <xsl:for-each select="$revauthor"> - <xsl:apply-templates select="." mode="titlepage.mode"/> - <xsl:if test="position() != last()"> - <xsl:text>, </xsl:text> - </xsl:if> - </xsl:for-each> - </td> - </xsl:when> - <xsl:when test="$numcols > 2"> - <td> </td> - </xsl:when> - <xsl:otherwise></xsl:otherwise> - </xsl:choose> - </tr> - <xsl:if test="$revremark"> - <tr> - <td align="{$direction.align.start}" colspan="{$numcols}"> - <xsl:apply-templates select="$revremark[1]" mode="titlepage.mode"/> - </td> - </tr> - </xsl:if> -</xsl:template> - -<xsl:template match="revision/revnumber" mode="titlepage.mode"> - <xsl:apply-templates mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="revision/date" mode="titlepage.mode"> - <xsl:apply-templates mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="revision/authorinitials" mode="titlepage.mode"> - <xsl:apply-templates mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="revision/author" mode="titlepage.mode"> - <xsl:apply-templates mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="revision/revremark" mode="titlepage.mode"> - <xsl:apply-templates mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="revision/revdescription" mode="titlepage.mode"> - <xsl:apply-templates mode="titlepage.mode"/> -</xsl:template> - -<xsl:template match="seriesvolnums" mode="titlepage.mode"> - <span> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:apply-templates mode="titlepage.mode"/> - <br/> - </span> -</xsl:template> - -<xsl:template match="shortaffil" mode="titlepage.mode"> - <span> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:apply-templates mode="titlepage.mode"/> - <br/> - </span> -</xsl:template> - -<xsl:template match="subjectset" mode="titlepage.mode"> -</xsl:template> - -<xsl:template match="subtitle" mode="titlepage.mode"> - <h2> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:apply-templates mode="titlepage.mode"/> - </h2> -</xsl:template> - -<xsl:template match="surname" mode="titlepage.mode"> - <span> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:apply-templates mode="titlepage.mode"/> - <br/> - </span> -</xsl:template> - -<xsl:template match="title" mode="titlepage.mode"> - <xsl:variable name="id"> - <xsl:choose> - <!-- if title is in an *info wrapper, get the grandparent --> - <xsl:when test="contains(local-name(..), 'info')"> - <xsl:call-template name="object.id"> - <xsl:with-param name="object" select="../.."/> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <xsl:call-template name="object.id"> - <xsl:with-param name="object" select=".."/> - </xsl:call-template> - </xsl:otherwise> - </xsl:choose> - </xsl:variable> - - <h1> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:if test="$generate.id.attributes = 0"> - <a name="{$id}"/> - </xsl:if> - <xsl:choose> - <xsl:when test="$show.revisionflag != 0 and @revisionflag"> - <span class="{@revisionflag}"> - <xsl:apply-templates mode="titlepage.mode"/> - </span> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates mode="titlepage.mode"/> - </xsl:otherwise> - </xsl:choose> - </h1> -</xsl:template> - -<xsl:template match="titleabbrev" mode="titlepage.mode"> - <!-- nop; title abbreviations don't belong on the title page! --> -</xsl:template> - -<xsl:template match="volumenum" mode="titlepage.mode"> - <span> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:apply-templates mode="titlepage.mode"/> - <br/> - </span> -</xsl:template> - -<!-- This template computes the filename for legalnotice and revhistory chunks --> -<xsl:template name="ln.or.rh.filename"> - <xsl:param name="node" select="."/> - <xsl:param name="is.ln" select="true()"/> - - <xsl:variable name="dbhtml-filename"> - <xsl:call-template name="pi.dbhtml_filename"> - <xsl:with-param name="node" select="$node"/> - </xsl:call-template> - </xsl:variable> - - <xsl:choose> - <!-- 1. If there is a dbhtml_filename PI, use that --> - <xsl:when test="$dbhtml-filename != ''"> - <xsl:value-of select="$dbhtml-filename"/> - </xsl:when> - <xsl:when test="($node/@id or $node/@xml:id) and not($use.id.as.filename = 0)"> - <!-- * 2. If this legalnotice/revhistory has an ID, then go ahead and use --> - <!-- * just the value of that ID as the basename for the file --> - <!-- * (that is, without prepending an "ln-" or "rh-" to it) --> - <xsl:value-of select="($node/@id|$node/@xml:id)[1]"/> - <xsl:value-of select="$html.ext"/> - </xsl:when> - <xsl:when test="not ($node/@id or $node/@xml:id) or $use.id.as.filename = 0"> - <!-- * 3. Otherwise, if this legalnotice/revhistory does not have an ID, or --> - <!-- * if $use.id.as.filename = 0 --> - <!-- * then we generate an ID... --> - <xsl:variable name="id"> - <xsl:value-of select="generate-id($node)"/> - </xsl:variable> - <!-- * ...and then we take that generated ID, prepend a --> - <!-- * prefix to it, and use that as the basename for the file --> - <xsl:choose> - <xsl:when test="$is.ln"> - <xsl:value-of select="concat('ln-',$id,$html.ext)"/> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="concat('rh-',$id,$html.ext)"/> - </xsl:otherwise> - </xsl:choose> - </xsl:when> - </xsl:choose> -</xsl:template> - -<!-- ==================================================================== --> - -</xsl:stylesheet> diff --git a/docbook-xsl-1.75.2/html/toc.xsl b/docbook-xsl-1.75.2/html/toc.xsl deleted file mode 100644 index d8c1be5..0000000 --- a/docbook-xsl-1.75.2/html/toc.xsl +++ /dev/null @@ -1,350 +0,0 @@ -<?xml version='1.0'?> -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" - version='1.0'> - -<!-- ******************************************************************** - $Id: toc.xsl 8421 2009-05-04 07:49:49Z bobstayton $ - ******************************************************************** - - This file is part of the XSL DocBook Stylesheet distribution. - See ../README or http://docbook.sf.net/release/xsl/current/ for - copyright and other information. - - ******************************************************************** --> - -<!-- ==================================================================== --> - -<xsl:template match="set/toc | book/toc | part/toc"> - <xsl:variable name="toc.params"> - <xsl:call-template name="find.path.params"> - <xsl:with-param name="node" select="parent::*"/> - <xsl:with-param name="table" select="normalize-space($generate.toc)"/> - </xsl:call-template> - </xsl:variable> - - <!-- Do not output the toc element if one is already generated - by the use of $generate.toc parameter, or if - generating a source toc is turned off --> - <xsl:if test="not(contains($toc.params, 'toc')) and - ($process.source.toc != 0 or $process.empty.source.toc != 0)"> - <xsl:variable name="content"> - <xsl:choose> - <xsl:when test="* and $process.source.toc != 0"> - <xsl:apply-templates /> - </xsl:when> - <xsl:when test="count(*) = 0 and $process.empty.source.toc != 0"> - <!-- trick to switch context node to parent element --> - <xsl:for-each select="parent::*"> - <xsl:choose> - <xsl:when test="self::set"> - <xsl:call-template name="set.toc"> - <xsl:with-param name="toc.title.p" - select="contains($toc.params, 'title')"/> - </xsl:call-template> - </xsl:when> - <xsl:when test="self::book"> - <xsl:call-template name="division.toc"> - <xsl:with-param name="toc.title.p" - select="contains($toc.params, 'title')"/> - </xsl:call-template> - </xsl:when> - <xsl:when test="self::part"> - <xsl:call-template name="division.toc"> - <xsl:with-param name="toc.title.p" - select="contains($toc.params, 'title')"/> - </xsl:call-template> - </xsl:when> - </xsl:choose> - </xsl:for-each> - </xsl:when> - </xsl:choose> - </xsl:variable> - - <xsl:if test="string-length(normalize-space($content)) != 0"> - <xsl:copy-of select="$content"/> - </xsl:if> - </xsl:if> -</xsl:template> - -<xsl:template match="chapter/toc | appendix/toc | preface/toc | article/toc"> - <xsl:variable name="toc.params"> - <xsl:call-template name="find.path.params"> - <xsl:with-param name="node" select="parent::*"/> - <xsl:with-param name="table" select="normalize-space($generate.toc)"/> - </xsl:call-template> - </xsl:variable> - - <!-- Do not output the toc element if one is already generated - by the use of $generate.toc parameter, or if - generating a source toc is turned off --> - <xsl:if test="not(contains($toc.params, 'toc')) and - ($process.source.toc != 0 or $process.empty.source.toc != 0)"> - <xsl:choose> - <xsl:when test="* and $process.source.toc != 0"> - <div> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:apply-templates select="title"/> - <dl> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:apply-templates select="*[not(self::title)]"/> - </dl> - </div> - <xsl:call-template name="component.toc.separator"/> - </xsl:when> - <xsl:when test="count(*) = 0 and $process.empty.source.toc != 0"> - <!-- trick to switch context node to section element --> - <xsl:for-each select="parent::*"> - <xsl:call-template name="component.toc"> - <xsl:with-param name="toc.title.p" - select="contains($toc.params, 'title')"/> - </xsl:call-template> - </xsl:for-each> - <xsl:call-template name="component.toc.separator"/> - </xsl:when> - </xsl:choose> - </xsl:if> -</xsl:template> - -<xsl:template match="section/toc - |sect1/toc - |sect2/toc - |sect3/toc - |sect4/toc - |sect5/toc"> - - <xsl:variable name="toc.params"> - <xsl:call-template name="find.path.params"> - <xsl:with-param name="node" select="parent::*"/> - <xsl:with-param name="table" select="normalize-space($generate.toc)"/> - </xsl:call-template> - </xsl:variable> - - <!-- Do not output the toc element if one is already generated - by the use of $generate.toc parameter, or if - generating a source toc is turned off --> - <xsl:if test="not(contains($toc.params, 'toc')) and - ($process.source.toc != 0 or $process.empty.source.toc != 0)"> - <xsl:choose> - <xsl:when test="* and $process.source.toc != 0"> - <div> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:apply-templates select="title"/> - <dl> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:apply-templates select="*[not(self::title)]"/> - </dl> - </div> - <xsl:call-template name="section.toc.separator"/> - </xsl:when> - <xsl:when test="count(*) = 0 and $process.empty.source.toc != 0"> - <!-- trick to switch context node to section element --> - <xsl:for-each select="parent::*"> - <xsl:call-template name="section.toc"> - <xsl:with-param name="toc.title.p" - select="contains($toc.params, 'title')"/> - </xsl:call-template> - </xsl:for-each> - <xsl:call-template name="section.toc.separator"/> - </xsl:when> - </xsl:choose> - </xsl:if> -</xsl:template> - -<!-- ==================================================================== --> - -<xsl:template match="tocpart|tocchap - |toclevel1|toclevel2|toclevel3|toclevel4|toclevel5"> - <xsl:variable name="sub-toc"> - <xsl:if test="tocchap|toclevel1|toclevel2|toclevel3|toclevel4|toclevel5"> - <xsl:choose> - <xsl:when test="$toc.list.type = 'dl'"> - <dd> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:element name="{$toc.list.type}"> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:apply-templates select="tocchap|toclevel1|toclevel2| - toclevel3|toclevel4|toclevel5"/> - </xsl:element> - </dd> - </xsl:when> - <xsl:otherwise> - <xsl:element name="{$toc.list.type}"> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:apply-templates select="tocchap|toclevel1|toclevel2| - toclevel3|toclevel4|toclevel5"/> - </xsl:element> - </xsl:otherwise> - </xsl:choose> - </xsl:if> - </xsl:variable> - - <xsl:apply-templates select="tocentry[position() != last()]"/> - - <xsl:choose> - <xsl:when test="$toc.list.type = 'dl'"> - <dt> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:apply-templates select="tocentry[position() = last()]"/> - </dt> - <xsl:copy-of select="$sub-toc"/> - </xsl:when> - <xsl:otherwise> - <li> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:apply-templates select="tocentry[position() = last()]"/> - <xsl:copy-of select="$sub-toc"/> - </li> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template match="tocentry|tocdiv|lotentry|tocfront|tocback"> - <xsl:choose> - <xsl:when test="$toc.list.type = 'dl'"> - <dt> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:call-template name="tocentry-content"/> - </dt> - </xsl:when> - <xsl:otherwise> - <li> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:call-template name="tocentry-content"/> - </li> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template match="tocentry[position() = last()]" priority="2"> - <xsl:call-template name="tocentry-content"/> -</xsl:template> - -<xsl:template name="tocentry-content"> - <xsl:variable name="targets" select="key('id',@linkend)"/> - <xsl:variable name="target" select="$targets[1]"/> - - <xsl:choose> - <xsl:when test="@linkend"> - <xsl:call-template name="check.id.unique"> - <xsl:with-param name="linkend" select="@linkend"/> - </xsl:call-template> - <a> - <xsl:attribute name="href"> - <xsl:call-template name="href.target"> - <xsl:with-param name="object" select="$target"/> - </xsl:call-template> - </xsl:attribute> - <xsl:apply-templates/> - </a> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates/> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template match="toc/title"> - <div> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:apply-templates/> - </div> -</xsl:template> - -<xsl:template match="toc/subtitle"> - <div> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:apply-templates/> - </div> -</xsl:template> - -<xsl:template match="toc/titleabbrev"> -</xsl:template> - -<!-- ==================================================================== --> - -<!-- A lot element must have content, because there is no attribute - to select what kind of list should be generated --> -<xsl:template match="book/lot | part/lot"> - <!-- Don't generate a page sequence unless there is content --> - <xsl:variable name="content"> - <xsl:choose> - <xsl:when test="* and $process.source.toc != 0"> - <div> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:apply-templates /> - </div> - </xsl:when> - <xsl:when test="not(child::*) and $process.empty.source.toc != 0"> - <xsl:call-template name="process.empty.lot"/> - </xsl:when> - </xsl:choose> - </xsl:variable> - - <xsl:if test="string-length(normalize-space($content)) != 0"> - <xsl:copy-of select="$content"/> - </xsl:if> -</xsl:template> - -<xsl:template match="chapter/lot | appendix/lot | preface/lot | article/lot"> - <xsl:choose> - <xsl:when test="* and $process.source.toc != 0"> - <div> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:apply-templates /> - </div> - <xsl:call-template name="component.toc.separator"/> - </xsl:when> - <xsl:when test="not(child::*) and $process.empty.source.toc != 0"> - <xsl:call-template name="process.empty.lot"/> - </xsl:when> - </xsl:choose> -</xsl:template> - -<xsl:template match="section/lot - |sect1/lot - |sect2/lot - |sect3/lot - |sect4/lot - |sect5/lot"> - <xsl:choose> - <xsl:when test="* and $process.source.toc != 0"> - <div> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:apply-templates/> - </div> - <xsl:call-template name="section.toc.separator"/> - </xsl:when> - <xsl:when test="not(child::*) and $process.empty.source.toc != 0"> - <xsl:call-template name="process.empty.lot"/> - </xsl:when> - </xsl:choose> -</xsl:template> - -<xsl:template name="process.empty.lot"> - <!-- An empty lot element does not provide any information to indicate - what should be included in it. You can customize this - template to generate a lot based on @role or something --> - <xsl:message> - <xsl:text>Warning: don't know what to generate for </xsl:text> - <xsl:text>lot that has no children.</xsl:text> - </xsl:message> -</xsl:template> - -<xsl:template match="lot/title"> - <div> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:apply-templates/> - </div> -</xsl:template> - -<xsl:template match="lot/subtitle"> - <div> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:apply-templates/> - </div> -</xsl:template> - -<xsl:template match="lot/titleabbrev"> -</xsl:template> - -</xsl:stylesheet> diff --git a/docbook-xsl-1.75.2/html/verbatim.xsl b/docbook-xsl-1.75.2/html/verbatim.xsl deleted file mode 100644 index e7644e8..0000000 --- a/docbook-xsl-1.75.2/html/verbatim.xsl +++ /dev/null @@ -1,403 +0,0 @@ -<?xml version='1.0'?> -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" - xmlns:sverb="http://nwalsh.com/xslt/ext/com.nwalsh.saxon.Verbatim" - xmlns:xverb="xalan://com.nwalsh.xalan.Verbatim" - xmlns:lxslt="http://xml.apache.org/xslt" - xmlns:exsl="http://exslt.org/common" - exclude-result-prefixes="sverb xverb lxslt exsl" - version='1.0'> - -<!-- ******************************************************************** - $Id: verbatim.xsl 8421 2009-05-04 07:49:49Z bobstayton $ - ******************************************************************** - - This file is part of the XSL DocBook Stylesheet distribution. - See ../README or http://docbook.sf.net/release/xsl/current/ for - copyright and other information. - - ******************************************************************** --> - -<!-- XSLTHL highlighting is turned off by default. See highlighting/README - for instructions on how to turn on XSLTHL --> -<xsl:template name="apply-highlighting"> - <xsl:apply-templates/> -</xsl:template> - -<lxslt:component prefix="xverb" - functions="numberLines"/> - -<xsl:template match="programlisting|screen|synopsis"> - <xsl:param name="suppress-numbers" select="'0'"/> - <xsl:variable name="id"> - <xsl:call-template name="object.id"/> - </xsl:variable> - - <xsl:call-template name="anchor"/> - - <xsl:if test="$shade.verbatim != 0"> - <xsl:message> - <xsl:text>The shade.verbatim parameter is deprecated. </xsl:text> - <xsl:text>Use CSS instead,</xsl:text> - </xsl:message> - <xsl:message> - <xsl:text>for example: pre.</xsl:text> - <xsl:value-of select="local-name(.)"/> - <xsl:text> { background-color: #E0E0E0; }</xsl:text> - </xsl:message> - </xsl:if> - - <xsl:choose> - <xsl:when test="$suppress-numbers = '0' - and @linenumbering = 'numbered' - and $use.extensions != '0' - and $linenumbering.extension != '0'"> - <xsl:variable name="rtf"> - <xsl:choose> - <xsl:when test="$highlight.source != 0"> - <xsl:call-template name="apply-highlighting"/> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates/> - </xsl:otherwise> - </xsl:choose> - </xsl:variable> - <pre> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:if test="@width != ''"> - <xsl:attribute name="width"> - <xsl:value-of select="@width"/> - </xsl:attribute> - </xsl:if> - <xsl:call-template name="number.rtf.lines"> - <xsl:with-param name="rtf" select="$rtf"/> - </xsl:call-template> - </pre> - </xsl:when> - <xsl:otherwise> - <pre> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:if test="@width != ''"> - <xsl:attribute name="width"> - <xsl:value-of select="@width"/> - </xsl:attribute> - </xsl:if> - <xsl:choose> - <xsl:when test="$highlight.source != 0"> - <xsl:call-template name="apply-highlighting"/> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates/> - </xsl:otherwise> - </xsl:choose> - </pre> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template match="literallayout"> - <xsl:param name="suppress-numbers" select="'0'"/> - - <xsl:variable name="rtf"> - <xsl:apply-templates/> - </xsl:variable> - - <xsl:if test="$shade.verbatim != 0 and @class='monospaced'"> - <xsl:message> - <xsl:text>The shade.verbatim parameter is deprecated. </xsl:text> - <xsl:text>Use CSS instead,</xsl:text> - </xsl:message> - <xsl:message> - <xsl:text>for example: pre.</xsl:text> - <xsl:value-of select="local-name(.)"/> - <xsl:text> { background-color: #E0E0E0; }</xsl:text> - </xsl:message> - </xsl:if> - - <xsl:choose> - <xsl:when test="$suppress-numbers = '0' - and @linenumbering = 'numbered' - and $use.extensions != '0' - and $linenumbering.extension != '0'"> - <xsl:choose> - <xsl:when test="@class='monospaced'"> - <pre> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:call-template name="number.rtf.lines"> - <xsl:with-param name="rtf" select="$rtf"/> - </xsl:call-template> - </pre> - </xsl:when> - <xsl:otherwise> - <div> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <p> - <xsl:call-template name="number.rtf.lines"> - <xsl:with-param name="rtf" select="$rtf"/> - </xsl:call-template> - </p> - </div> - </xsl:otherwise> - </xsl:choose> - </xsl:when> - <xsl:otherwise> - <xsl:choose> - <xsl:when test="@class='monospaced'"> - <pre> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:copy-of select="$rtf"/> - </pre> - </xsl:when> - <xsl:otherwise> - <div> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <p> - <xsl:call-template name="make-verbatim"> - <xsl:with-param name="rtf" select="$rtf"/> - </xsl:call-template> - </p> - </div> - </xsl:otherwise> - </xsl:choose> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template match="address"> - <xsl:param name="suppress-numbers" select="'0'"/> - - <xsl:variable name="rtf"> - <xsl:apply-templates/> - </xsl:variable> - - <xsl:choose> - <xsl:when test="$suppress-numbers = '0' - and @linenumbering = 'numbered' - and $use.extensions != '0' - and $linenumbering.extension != '0'"> - <div> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <p> - <xsl:call-template name="number.rtf.lines"> - <xsl:with-param name="rtf" select="$rtf"/> - </xsl:call-template> - </p> - </div> - </xsl:when> - - <xsl:otherwise> - <div> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <p> - <xsl:call-template name="make-verbatim"> - <xsl:with-param name="rtf" select="$rtf"/> - </xsl:call-template> - </p> - </div> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template name="number.rtf.lines"> - <xsl:param name="rtf" select="''"/> - <xsl:param name="pi.context" select="."/> - - <!-- Save the global values --> - <xsl:variable name="global.linenumbering.everyNth" - select="$linenumbering.everyNth"/> - - <xsl:variable name="global.linenumbering.separator" - select="$linenumbering.separator"/> - - <xsl:variable name="global.linenumbering.width" - select="$linenumbering.width"/> - - <!-- Extract the <?dbhtml linenumbering.*?> PI values --> - <xsl:variable name="pi.linenumbering.everyNth"> - <xsl:call-template name="pi.dbhtml_linenumbering.everyNth"> - <xsl:with-param name="node" select="$pi.context"/> - </xsl:call-template> - </xsl:variable> - - <xsl:variable name="pi.linenumbering.separator"> - <xsl:call-template name="pi.dbhtml_linenumbering.separator"> - <xsl:with-param name="node" select="$pi.context"/> - </xsl:call-template> - </xsl:variable> - - <xsl:variable name="pi.linenumbering.width"> - <xsl:call-template name="pi.dbhtml_linenumbering.width"> - <xsl:with-param name="node" select="$pi.context"/> - </xsl:call-template> - </xsl:variable> - - <!-- Construct the 'in-context' values --> - <xsl:variable name="linenumbering.everyNth"> - <xsl:choose> - <xsl:when test="$pi.linenumbering.everyNth != ''"> - <xsl:value-of select="$pi.linenumbering.everyNth"/> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="$global.linenumbering.everyNth"/> - </xsl:otherwise> - </xsl:choose> - </xsl:variable> - - <xsl:variable name="linenumbering.separator"> - <xsl:choose> - <xsl:when test="$pi.linenumbering.separator != ''"> - <xsl:value-of select="$pi.linenumbering.separator"/> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="$global.linenumbering.separator"/> - </xsl:otherwise> - </xsl:choose> - </xsl:variable> - - <xsl:variable name="linenumbering.width"> - <xsl:choose> - <xsl:when test="$pi.linenumbering.width != ''"> - <xsl:value-of select="$pi.linenumbering.width"/> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="$global.linenumbering.width"/> - </xsl:otherwise> - </xsl:choose> - </xsl:variable> - - <xsl:variable name="linenumbering.startinglinenumber"> - <xsl:choose> - <xsl:when test="$pi.context/@startinglinenumber"> - <xsl:value-of select="$pi.context/@startinglinenumber"/> - </xsl:when> - <xsl:when test="$pi.context/@continuation='continues'"> - <xsl:variable name="lastLine"> - <xsl:choose> - <xsl:when test="$pi.context/self::programlisting"> - <xsl:call-template name="lastLineNumber"> - <xsl:with-param name="listings" - select="preceding::programlisting[@linenumbering='numbered']"/> - </xsl:call-template> - </xsl:when> - <xsl:when test="$pi.context/self::screen"> - <xsl:call-template name="lastLineNumber"> - <xsl:with-param name="listings" - select="preceding::screen[@linenumbering='numbered']"/> - </xsl:call-template> - </xsl:when> - <xsl:when test="$pi.context/self::literallayout"> - <xsl:call-template name="lastLineNumber"> - <xsl:with-param name="listings" - select="preceding::literallayout[@linenumbering='numbered']"/> - </xsl:call-template> - </xsl:when> - <xsl:when test="$pi.context/self::address"> - <xsl:call-template name="lastLineNumber"> - <xsl:with-param name="listings" - select="preceding::address[@linenumbering='numbered']"/> - </xsl:call-template> - </xsl:when> - <xsl:when test="$pi.context/self::synopsis"> - <xsl:call-template name="lastLineNumber"> - <xsl:with-param name="listings" - select="preceding::synopsis[@linenumbering='numbered']"/> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <xsl:message> - <xsl:text>Unexpected verbatim environment: </xsl:text> - <xsl:value-of select="local-name($pi.context)"/> - </xsl:message> - <xsl:value-of select="0"/> - </xsl:otherwise> - </xsl:choose> - </xsl:variable> - - <xsl:value-of select="$lastLine + 1"/> - </xsl:when> - <xsl:otherwise>1</xsl:otherwise> - </xsl:choose> - </xsl:variable> - - <xsl:choose> - <xsl:when test="function-available('sverb:numberLines')"> - <xsl:copy-of select="sverb:numberLines($rtf)"/> - </xsl:when> - <xsl:when test="function-available('xverb:numberLines')"> - <xsl:copy-of select="xverb:numberLines($rtf)"/> - </xsl:when> - <xsl:otherwise> - <xsl:message terminate="yes"> - <xsl:text>No numberLines function available.</xsl:text> - </xsl:message> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template name="make-verbatim"> - <xsl:param name="rtf"/> - - <!-- I want to make this RTF verbatim. There are two possibilities: either - I have access to the exsl:node-set extension function and I can "do it right" - or I have to rely on CSS. --> - - <xsl:choose> - <xsl:when test="$exsl.node.set.available != 0"> - <xsl:apply-templates select="exsl:node-set($rtf)" mode="make.verbatim.mode"/> - </xsl:when> - <xsl:otherwise> - <span style="white-space: pre;"> - <xsl:copy-of select="$rtf"/> - </span> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<!-- ======================================================================== --> - -<xsl:template name="lastLineNumber"> - <xsl:param name="listings"/> - <xsl:param name="number" select="0"/> - - <xsl:variable name="lines"> - <xsl:call-template name="countLines"> - <xsl:with-param name="listing" select="string($listings[1])"/> - </xsl:call-template> - </xsl:variable> - - <xsl:choose> - <xsl:when test="not($listings)"> - <xsl:value-of select="$number"/> - </xsl:when> - <xsl:when test="$listings[1]/@startinglinenumber"> - <xsl:value-of select="$number + $listings[1]/@startinglinenumber + $lines - 1"/> - </xsl:when> - <xsl:when test="$listings[1]/@continuation='continues'"> - <xsl:call-template name="lastLineNumber"> - <xsl:with-param name="listings" select="listings[position() > 1]"/> - <xsl:with-param name="number" select="$number + $lines"/> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="$lines"/> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template name="countLines"> - <xsl:param name="listing"/> - <xsl:param name="count" select="1"/> - - <xsl:choose> - <xsl:when test="contains($listing, ' ')"> - <xsl:call-template name="countLines"> - <xsl:with-param name="listing" select="substring-after($listing, ' ')"/> - <xsl:with-param name="count" select="$count + 1"/> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="$count"/> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -</xsl:stylesheet> diff --git a/docbook-xsl-1.75.2/html/xref.xsl b/docbook-xsl-1.75.2/html/xref.xsl deleted file mode 100644 index 771bca5..0000000 --- a/docbook-xsl-1.75.2/html/xref.xsl +++ /dev/null @@ -1,1377 +0,0 @@ -<?xml version='1.0'?> -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" - xmlns:suwl="http://nwalsh.com/xslt/ext/com.nwalsh.saxon.UnwrapLinks" - xmlns:exsl="http://exslt.org/common" - xmlns:xlink='http://www.w3.org/1999/xlink' - exclude-result-prefixes="suwl exsl xlink" - version='1.0'> - -<!-- ******************************************************************** - $Id: xref.xsl 8421 2009-05-04 07:49:49Z bobstayton $ - ******************************************************************** - - This file is part of the XSL DocBook Stylesheet distribution. - See ../README or http://docbook.sf.net/release/xsl/current/ for - copyright and other information. - - ******************************************************************** --> - -<!-- Use internal variable for olink xlink role for consistency --> -<xsl:variable - name="xolink.role">http://docbook.org/xlink/role/olink</xsl:variable> - -<!-- ==================================================================== --> - -<xsl:template match="anchor"> - <xsl:call-template name="anchor"/> -</xsl:template> - -<!-- ==================================================================== --> - -<xsl:template match="xref" name="xref"> - <xsl:param name="xhref" select="@xlink:href"/> - <!-- is the @xlink:href a local idref link? --> - <xsl:param name="xlink.idref"> - <xsl:if test="starts-with($xhref,'#') - and (not(contains($xhref,'(')) - or starts-with($xhref, '#xpointer(id('))"> - <xsl:call-template name="xpointer.idref"> - <xsl:with-param name="xpointer" select="$xhref"/> - </xsl:call-template> - </xsl:if> - </xsl:param> - <xsl:param name="xlink.targets" select="key('id',$xlink.idref)"/> - <xsl:param name="linkend.targets" select="key('id',@linkend)"/> - <xsl:param name="target" select="($xlink.targets | $linkend.targets)[1]"/> - - <xsl:variable name="xrefstyle"> - <xsl:choose> - <xsl:when test="@role and not(@xrefstyle) - and $use.role.as.xrefstyle != 0"> - <xsl:value-of select="@role"/> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="@xrefstyle"/> - </xsl:otherwise> - </xsl:choose> - </xsl:variable> - - <xsl:call-template name="anchor"/> - - <xsl:variable name="content"> - <xsl:choose> - - <xsl:when test="@endterm"> - <xsl:variable name="etargets" select="key('id',@endterm)"/> - <xsl:variable name="etarget" select="$etargets[1]"/> - <xsl:choose> - <xsl:when test="count($etarget) = 0"> - <xsl:message> - <xsl:value-of select="count($etargets)"/> - <xsl:text>Endterm points to nonexistent ID: </xsl:text> - <xsl:value-of select="@endterm"/> - </xsl:message> - <xsl:text>???</xsl:text> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates select="$etarget" mode="endterm"/> - </xsl:otherwise> - </xsl:choose> - </xsl:when> - - <xsl:when test="$target/@xreflabel"> - <xsl:call-template name="xref.xreflabel"> - <xsl:with-param name="target" select="$target"/> - </xsl:call-template> - </xsl:when> - - <xsl:when test="$target"> - <xsl:if test="not(parent::citation)"> - <xsl:apply-templates select="$target" mode="xref-to-prefix"/> - </xsl:if> - - <xsl:apply-templates select="$target" mode="xref-to"> - <xsl:with-param name="referrer" select="."/> - <xsl:with-param name="xrefstyle" select="$xrefstyle"/> - </xsl:apply-templates> - - <xsl:if test="not(parent::citation)"> - <xsl:apply-templates select="$target" mode="xref-to-suffix"/> - </xsl:if> - </xsl:when> - - <xsl:otherwise> - <xsl:message> - <xsl:text>ERROR: xref linking to </xsl:text> - <xsl:value-of select="@linkend|@xlink:href"/> - <xsl:text> has no generated link text.</xsl:text> - </xsl:message> - <xsl:text>???</xsl:text> - </xsl:otherwise> - </xsl:choose> - </xsl:variable> - - <xsl:call-template name="simple.xlink"> - <xsl:with-param name="content" select="$content"/> - </xsl:call-template> - -</xsl:template> - -<!-- ==================================================================== --> - -<!-- biblioref handled largely like an xref --> -<!-- To be done: add support for begin, end, and units attributes --> -<xsl:template match="biblioref"> - <xsl:variable name="targets" select="key('id',@linkend)"/> - <xsl:variable name="target" select="$targets[1]"/> - <xsl:variable name="refelem" select="local-name($target)"/> - - <xsl:call-template name="check.id.unique"> - <xsl:with-param name="linkend" select="@linkend"/> - </xsl:call-template> - - <xsl:call-template name="anchor"/> - - <xsl:choose> - <xsl:when test="count($target) = 0"> - <xsl:message> - <xsl:text>XRef to nonexistent id: </xsl:text> - <xsl:value-of select="@linkend"/> - </xsl:message> - <xsl:text>???</xsl:text> - </xsl:when> - - <xsl:when test="@endterm"> - <xsl:variable name="href"> - <xsl:call-template name="href.target"> - <xsl:with-param name="object" select="$target"/> - </xsl:call-template> - </xsl:variable> - - <xsl:variable name="etargets" select="key('id',@endterm)"/> - <xsl:variable name="etarget" select="$etargets[1]"/> - <xsl:choose> - <xsl:when test="count($etarget) = 0"> - <xsl:message> - <xsl:value-of select="count($etargets)"/> - <xsl:text>Endterm points to nonexistent ID: </xsl:text> - <xsl:value-of select="@endterm"/> - </xsl:message> - <a href="{$href}"> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:text>???</xsl:text> - </a> - </xsl:when> - <xsl:otherwise> - <a href="{$href}"> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:apply-templates select="$etarget" mode="endterm"/> - </a> - </xsl:otherwise> - </xsl:choose> - </xsl:when> - - <xsl:when test="$target/@xreflabel"> - <a> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:attribute name="href"> - <xsl:call-template name="href.target"> - <xsl:with-param name="object" select="$target"/> - </xsl:call-template> - </xsl:attribute> - <xsl:call-template name="xref.xreflabel"> - <xsl:with-param name="target" select="$target"/> - </xsl:call-template> - </a> - </xsl:when> - - <xsl:otherwise> - <xsl:variable name="href"> - <xsl:call-template name="href.target"> - <xsl:with-param name="object" select="$target"/> - </xsl:call-template> - </xsl:variable> - - <xsl:if test="not(parent::citation)"> - <xsl:apply-templates select="$target" mode="xref-to-prefix"/> - </xsl:if> - - <a href="{$href}"> - <xsl:apply-templates select="." mode="class.attribute"/> - <xsl:if test="$target/title or $target/*/title"> - <xsl:attribute name="title"> - <xsl:apply-templates select="$target" mode="xref-title"/> - </xsl:attribute> - </xsl:if> - <xsl:apply-templates select="$target" mode="xref-to"> - <xsl:with-param name="referrer" select="."/> - <xsl:with-param name="xrefstyle"> - <xsl:choose> - <xsl:when test="@role and not(@xrefstyle) and $use.role.as.xrefstyle != 0"> - <xsl:value-of select="@role"/> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="@xrefstyle"/> - </xsl:otherwise> - </xsl:choose> - </xsl:with-param> - </xsl:apply-templates> - </a> - - <xsl:if test="not(parent::citation)"> - <xsl:apply-templates select="$target" mode="xref-to-suffix"/> - </xsl:if> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<!-- ==================================================================== --> - -<xsl:template match="*" mode="endterm"> - <!-- Process the children of the endterm element --> - <xsl:variable name="endterm"> - <xsl:apply-templates select="child::node()"/> - </xsl:variable> - - <xsl:choose> - <xsl:when test="$exsl.node.set.available != 0"> - <xsl:apply-templates select="exsl:node-set($endterm)" mode="remove-ids"/> - </xsl:when> - <xsl:otherwise> - <xsl:copy-of select="$endterm"/> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template match="*" mode="remove-ids"> - <xsl:choose> - <!-- handle html or xhtml --> - <xsl:when test="local-name(.) = 'a' - and (namespace-uri(.) = '' - or namespace-uri(.) = 'http://www.w3.org/1999/xhtml')"> - <xsl:choose> - <xsl:when test="(@name and count(@*) = 1) - or (@id and count(@*) = 1) - or (@xml:id and count(@*) = 1) - or (@xml:id and @name and count(@*) = 2) - or (@id and @name and count(@*) = 2)"> - <xsl:message>suppress anchor</xsl:message> - <!-- suppress the whole thing --> - </xsl:when> - <xsl:otherwise> - <xsl:copy> - <xsl:for-each select="@*"> - <xsl:choose> - <xsl:when test="local-name(.) != 'name' and local-name(.) != 'id'"> - <xsl:copy/> - </xsl:when> - <xsl:otherwise> - <xsl:message>removing <xsl:value-of - select="local-name(.)"/></xsl:message> - </xsl:otherwise> - </xsl:choose> - </xsl:for-each> - </xsl:copy> - <xsl:apply-templates mode="remove-ids"/> - </xsl:otherwise> - </xsl:choose> - </xsl:when> - <xsl:otherwise> - <xsl:copy> - <xsl:for-each select="@*"> - <xsl:choose> - <xsl:when test="local-name(.) != 'id'"> - <xsl:copy/> - </xsl:when> - <xsl:otherwise> - <xsl:message>removing <xsl:value-of - select="local-name(.)"/></xsl:message> - </xsl:otherwise> - </xsl:choose> - </xsl:for-each> - <xsl:apply-templates mode="remove-ids"/> - </xsl:copy> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<!-- ==================================================================== --> - -<xsl:template match="*" mode="xref-to-prefix"/> -<xsl:template match="*" mode="xref-to-suffix"/> - -<xsl:template match="*" mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="verbose" select="1"/> - - <xsl:if test="$verbose"> - <xsl:message> - <xsl:text>Don't know what gentext to create for xref to: "</xsl:text> - <xsl:value-of select="name(.)"/> - <xsl:text>", ("</xsl:text> - <xsl:value-of select="(@id|@xml:id)[1]"/> - <xsl:text>")</xsl:text> - </xsl:message> - </xsl:if> - <xsl:text>???</xsl:text> -</xsl:template> - -<xsl:template match="title" mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="verbose" select="1"/> - - <!-- if you xref to a title, xref to the parent... --> - <xsl:choose> - <!-- FIXME: how reliable is this? --> - <xsl:when test="contains(local-name(parent::*), 'info')"> - <xsl:apply-templates select="parent::*[2]" mode="xref-to"> - <xsl:with-param name="referrer" select="$referrer"/> - <xsl:with-param name="xrefstyle" select="$xrefstyle"/> - <xsl:with-param name="verbose" select="$verbose"/> - </xsl:apply-templates> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates select="parent::*" mode="xref-to"> - <xsl:with-param name="referrer" select="$referrer"/> - <xsl:with-param name="xrefstyle" select="$xrefstyle"/> - <xsl:with-param name="verbose" select="$verbose"/> - </xsl:apply-templates> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template match="abstract|authorblurb|personblurb|bibliodiv|bibliomset - |biblioset|blockquote|calloutlist|caution|colophon - |constraintdef|formalpara|glossdiv|important|indexdiv - |itemizedlist|legalnotice|lot|msg|msgexplan|msgmain - |msgrel|msgset|msgsub|note|orderedlist|partintro - |productionset|qandadiv|refsynopsisdiv|segmentedlist - |set|setindex|sidebar|tip|toc|variablelist|warning" - mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="verbose" select="1"/> - - <!-- catch-all for things with (possibly optional) titles --> - <xsl:apply-templates select="." mode="object.xref.markup"> - <xsl:with-param name="purpose" select="'xref'"/> - <xsl:with-param name="xrefstyle" select="$xrefstyle"/> - <xsl:with-param name="referrer" select="$referrer"/> - <xsl:with-param name="verbose" select="$verbose"/> - </xsl:apply-templates> -</xsl:template> - -<xsl:template match="author|editor|othercredit|personname" mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - - <xsl:call-template name="person.name"/> -</xsl:template> - -<xsl:template match="authorgroup" mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - - <xsl:call-template name="person.name.list"/> -</xsl:template> - -<xsl:template match="figure|example|table|equation" mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="verbose" select="1"/> - - <xsl:apply-templates select="." mode="object.xref.markup"> - <xsl:with-param name="purpose" select="'xref'"/> - <xsl:with-param name="xrefstyle" select="$xrefstyle"/> - <xsl:with-param name="referrer" select="$referrer"/> - <xsl:with-param name="verbose" select="$verbose"/> - </xsl:apply-templates> -</xsl:template> - -<xsl:template match="procedure" mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="verbose"/> - - <xsl:apply-templates select="." mode="object.xref.markup"> - <xsl:with-param name="purpose" select="'xref'"/> - <xsl:with-param name="xrefstyle" select="$xrefstyle"/> - <xsl:with-param name="referrer" select="$referrer"/> - <xsl:with-param name="verbose" select="$verbose"/> - </xsl:apply-templates> -</xsl:template> - -<xsl:template match="task" mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="verbose"/> - - <xsl:apply-templates select="." mode="object.xref.markup"> - <xsl:with-param name="purpose" select="'xref'"/> - <xsl:with-param name="xrefstyle" select="$xrefstyle"/> - <xsl:with-param name="referrer" select="$referrer"/> - <xsl:with-param name="verbose" select="$verbose"/> - </xsl:apply-templates> -</xsl:template> - -<xsl:template match="cmdsynopsis" mode="xref-to"> - <xsl:apply-templates select="(.//command)[1]" mode="xref"/> -</xsl:template> - -<xsl:template match="funcsynopsis" mode="xref-to"> - <xsl:apply-templates select="(.//function)[1]" mode="xref"/> -</xsl:template> - -<xsl:template match="dedication|acknowledgements|preface|chapter|appendix|article" mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="verbose" select="1"/> - - <xsl:apply-templates select="." mode="object.xref.markup"> - <xsl:with-param name="purpose" select="'xref'"/> - <xsl:with-param name="xrefstyle" select="$xrefstyle"/> - <xsl:with-param name="referrer" select="$referrer"/> - <xsl:with-param name="verbose" select="$verbose"/> - </xsl:apply-templates> -</xsl:template> - -<xsl:template match="bibliography" mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="verbose" select="1"/> - - <xsl:apply-templates select="." mode="object.xref.markup"> - <xsl:with-param name="purpose" select="'xref'"/> - <xsl:with-param name="xrefstyle" select="$xrefstyle"/> - <xsl:with-param name="referrer" select="$referrer"/> - <xsl:with-param name="verbose" select="$verbose"/> - </xsl:apply-templates> -</xsl:template> - -<xsl:template match="biblioentry|bibliomixed" mode="xref-to-prefix"> - <xsl:text>[</xsl:text> -</xsl:template> - -<xsl:template match="biblioentry|bibliomixed" mode="xref-to-suffix"> - <xsl:text>]</xsl:text> -</xsl:template> - -<xsl:template match="biblioentry|bibliomixed" mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="verbose" select="1"/> - - <!-- handles both biblioentry and bibliomixed --> - <xsl:choose> - <xsl:when test="string(.) = ''"> - <xsl:variable name="bib" select="document($bibliography.collection,.)"/> - <xsl:variable name="id" select="(@id|@xml:id)[1]"/> - <xsl:variable name="entry" select="$bib/bibliography/ - *[@id=$id or @xml:id=$id][1]"/> - <xsl:choose> - <xsl:when test="$entry"> - <xsl:choose> - <xsl:when test="$bibliography.numbered != 0"> - <xsl:number from="bibliography" count="biblioentry|bibliomixed" - level="any" format="1"/> - </xsl:when> - <xsl:when test="local-name($entry/*[1]) = 'abbrev'"> - <xsl:apply-templates select="$entry/*[1]"/> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="(@id|@xml:id)[1]"/> - </xsl:otherwise> - </xsl:choose> - </xsl:when> - <xsl:otherwise> - <xsl:message> - <xsl:text>No bibliography entry: </xsl:text> - <xsl:value-of select="$id"/> - <xsl:text> found in </xsl:text> - <xsl:value-of select="$bibliography.collection"/> - </xsl:message> - <xsl:value-of select="(@id|@xml:id)[1]"/> - </xsl:otherwise> - </xsl:choose> - </xsl:when> - <xsl:otherwise> - <xsl:choose> - <xsl:when test="$bibliography.numbered != 0"> - <xsl:number from="bibliography" count="biblioentry|bibliomixed" - level="any" format="1"/> - </xsl:when> - <xsl:when test="local-name(*[1]) = 'abbrev'"> - <xsl:apply-templates select="*[1]"/> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="(@id|@xml:id)[1]"/> - </xsl:otherwise> - </xsl:choose> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template match="glossary" mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="verbose" select="1"/> - - <xsl:apply-templates select="." mode="object.xref.markup"> - <xsl:with-param name="purpose" select="'xref'"/> - <xsl:with-param name="xrefstyle" select="$xrefstyle"/> - <xsl:with-param name="referrer" select="$referrer"/> - <xsl:with-param name="verbose" select="$verbose"/> - </xsl:apply-templates> -</xsl:template> - -<xsl:template match="glossentry" mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="verbose" select="1"/> - <xsl:choose> - <xsl:when test="$glossentry.show.acronym = 'primary'"> - <xsl:choose> - <xsl:when test="acronym|abbrev"> - <xsl:apply-templates select="(acronym|abbrev)[1]"/> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates select="glossterm[1]" mode="xref-to"> - <xsl:with-param name="xrefstyle" select="$xrefstyle"/> - <xsl:with-param name="referrer" select="$referrer"/> - <xsl:with-param name="verbose" select="$verbose"/> - </xsl:apply-templates> - </xsl:otherwise> - </xsl:choose> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates select="glossterm[1]" mode="xref-to"> - <xsl:with-param name="xrefstyle" select="$xrefstyle"/> - <xsl:with-param name="referrer" select="$referrer"/> - <xsl:with-param name="verbose" select="$verbose"/> - </xsl:apply-templates> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template match="glossterm|firstterm" mode="xref-to"> - <xsl:apply-templates/> -</xsl:template> - -<xsl:template match="index" mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="verbose" select="1"/> - - <xsl:apply-templates select="." mode="object.xref.markup"> - <xsl:with-param name="purpose" select="'xref'"/> - <xsl:with-param name="xrefstyle" select="$xrefstyle"/> - <xsl:with-param name="referrer" select="$referrer"/> - <xsl:with-param name="verbose" select="$verbose"/> - </xsl:apply-templates> -</xsl:template> - -<xsl:template match="listitem" mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="verbose"/> - - <xsl:apply-templates select="." mode="object.xref.markup"> - <xsl:with-param name="purpose" select="'xref'"/> - <xsl:with-param name="xrefstyle" select="$xrefstyle"/> - <xsl:with-param name="referrer" select="$referrer"/> - <xsl:with-param name="verbose" select="$verbose"/> - </xsl:apply-templates> -</xsl:template> - -<xsl:template match="section|simplesect - |sect1|sect2|sect3|sect4|sect5 - |refsect1|refsect2|refsect3|refsection" mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="verbose" select="1"/> - - <xsl:apply-templates select="." mode="object.xref.markup"> - <xsl:with-param name="purpose" select="'xref'"/> - <xsl:with-param name="xrefstyle" select="$xrefstyle"/> - <xsl:with-param name="referrer" select="$referrer"/> - <xsl:with-param name="verbose" select="$verbose"/> - </xsl:apply-templates> - <!-- FIXME: What about "in Chapter X"? --> -</xsl:template> - -<xsl:template match="bridgehead" mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="verbose" select="1"/> - - <xsl:apply-templates select="." mode="object.xref.markup"> - <xsl:with-param name="purpose" select="'xref'"/> - <xsl:with-param name="xrefstyle" select="$xrefstyle"/> - <xsl:with-param name="referrer" select="$referrer"/> - <xsl:with-param name="verbose" select="$verbose"/> - </xsl:apply-templates> - <!-- FIXME: What about "in Chapter X"? --> -</xsl:template> - -<xsl:template match="qandaset" mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="verbose" select="1"/> - - <xsl:apply-templates select="." mode="object.xref.markup"> - <xsl:with-param name="purpose" select="'xref'"/> - <xsl:with-param name="xrefstyle" select="$xrefstyle"/> - <xsl:with-param name="referrer" select="$referrer"/> - <xsl:with-param name="verbose" select="$verbose"/> - </xsl:apply-templates> -</xsl:template> - -<xsl:template match="qandadiv" mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="verbose" select="1"/> - - <xsl:apply-templates select="." mode="object.xref.markup"> - <xsl:with-param name="purpose" select="'xref'"/> - <xsl:with-param name="xrefstyle" select="$xrefstyle"/> - <xsl:with-param name="referrer" select="$referrer"/> - <xsl:with-param name="verbose" select="$verbose"/> - </xsl:apply-templates> -</xsl:template> - -<xsl:template match="qandaentry" mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="verbose" select="1"/> - - <xsl:apply-templates select="question[1]" mode="xref-to"> - <xsl:with-param name="xrefstyle" select="$xrefstyle"/> - <xsl:with-param name="referrer" select="$referrer"/> - <xsl:with-param name="verbose" select="$verbose"/> - </xsl:apply-templates> -</xsl:template> - -<xsl:template match="question|answer" mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="verbose" select="1"/> - - <xsl:choose> - <xsl:when test="string-length(label) != 0"> - <xsl:apply-templates select="." mode="label.markup"/> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates select="." mode="object.xref.markup"> - <xsl:with-param name="purpose" select="'xref'"/> - <xsl:with-param name="xrefstyle" select="$xrefstyle"/> - <xsl:with-param name="referrer" select="$referrer"/> - <xsl:with-param name="verbose" select="$verbose"/> - </xsl:apply-templates> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template match="part|reference" mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="verbose" select="1"/> - - <xsl:apply-templates select="." mode="object.xref.markup"> - <xsl:with-param name="purpose" select="'xref'"/> - <xsl:with-param name="xrefstyle" select="$xrefstyle"/> - <xsl:with-param name="referrer" select="$referrer"/> - <xsl:with-param name="verbose" select="$verbose"/> - </xsl:apply-templates> -</xsl:template> - -<xsl:template match="refentry" mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - - <xsl:choose> - <xsl:when test="refmeta/refentrytitle"> - <xsl:apply-templates select="refmeta/refentrytitle"/> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates select="refnamediv/refname[1]"/> - </xsl:otherwise> - </xsl:choose> - <xsl:apply-templates select="refmeta/manvolnum"/> -</xsl:template> - -<xsl:template match="refnamediv" mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="verbose" select="1"/> - - <xsl:apply-templates select="refname[1]" mode="xref-to"> - <xsl:with-param name="xrefstyle" select="$xrefstyle"/> - <xsl:with-param name="referrer" select="$referrer"/> - <xsl:with-param name="verbose" select="$verbose"/> - </xsl:apply-templates> -</xsl:template> - -<xsl:template match="refname" mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="verbose" select="1"/> - - <xsl:apply-templates mode="xref-to"/> -</xsl:template> - -<xsl:template match="step" mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - - <xsl:call-template name="gentext"> - <xsl:with-param name="key" select="'Step'"/> - </xsl:call-template> - <xsl:text> </xsl:text> - <xsl:apply-templates select="." mode="number"/> -</xsl:template> - -<xsl:template match="varlistentry" mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="verbose" select="1"/> - - <xsl:apply-templates select="term[1]" mode="xref-to"> - <xsl:with-param name="xrefstyle" select="$xrefstyle"/> - <xsl:with-param name="referrer" select="$referrer"/> - <xsl:with-param name="verbose" select="$verbose"/> - </xsl:apply-templates> -</xsl:template> - -<xsl:template match="primary|secondary|tertiary" mode="xref-to"> - <xsl:value-of select="."/> -</xsl:template> - -<xsl:template match="indexterm" mode="xref-to"> - <xsl:value-of select="primary"/> -</xsl:template> - -<xsl:template match="varlistentry/term" mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - - <!-- to avoid the comma that will be generated if there are several terms --> - <xsl:apply-templates/> -</xsl:template> - -<xsl:template match="co" mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - - <xsl:apply-templates select="." mode="callout-bug"/> -</xsl:template> - -<xsl:template match="area|areaset" mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - - <xsl:call-template name="callout-bug"> - <xsl:with-param name="conum"> - <xsl:apply-templates select="." mode="conumber"/> - </xsl:with-param> - </xsl:call-template> -</xsl:template> - -<xsl:template match="book" mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="verbose" select="1"/> - - <xsl:apply-templates select="." mode="object.xref.markup"> - <xsl:with-param name="purpose" select="'xref'"/> - <xsl:with-param name="xrefstyle" select="$xrefstyle"/> - <xsl:with-param name="referrer" select="$referrer"/> - <xsl:with-param name="verbose" select="$verbose"/> - </xsl:apply-templates> -</xsl:template> - -<!-- These are elements for which no link text exists, so an xref to one - uses the xrefstyle attribute if specified, or if not it falls back - to the container element's link text --> -<xsl:template match="para|phrase|simpara|anchor|quote" mode="xref-to"> - <xsl:param name="referrer"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="verbose" select="1"/> - - <xsl:variable name="context" select="(ancestor::simplesect - |ancestor::section - |ancestor::sect1 - |ancestor::sect2 - |ancestor::sect3 - |ancestor::sect4 - |ancestor::sect5 - |ancestor::refsection - |ancestor::refsect1 - |ancestor::refsect2 - |ancestor::refsect3 - |ancestor::chapter - |ancestor::appendix - |ancestor::preface - |ancestor::partintro - |ancestor::dedication - |ancestor::acknowledgements - |ancestor::colophon - |ancestor::bibliography - |ancestor::index - |ancestor::glossary - |ancestor::glossentry - |ancestor::listitem - |ancestor::varlistentry)[last()]"/> - - <xsl:choose> - <xsl:when test="$xrefstyle != ''"> - <xsl:apply-templates select="." mode="object.xref.markup"> - <xsl:with-param name="xrefstyle" select="$xrefstyle"/> - <xsl:with-param name="referrer" select="$referrer"/> - <xsl:with-param name="verbose" select="$verbose"/> - </xsl:apply-templates> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates select="$context" mode="xref-to"> - <xsl:with-param name="purpose" select="'xref'"/> - <xsl:with-param name="xrefstyle" select="$xrefstyle"/> - <xsl:with-param name="referrer" select="$referrer"/> - <xsl:with-param name="verbose" select="$verbose"/> - </xsl:apply-templates> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<!-- ==================================================================== --> - -<xsl:template match="*" mode="xref-title"> - <xsl:variable name="title"> - <xsl:apply-templates select="." mode="object.title.markup"/> - </xsl:variable> - - <xsl:value-of select="$title"/> -</xsl:template> - -<xsl:template match="author" mode="xref-title"> - <xsl:variable name="title"> - <xsl:call-template name="person.name"/> - </xsl:variable> - - <xsl:value-of select="$title"/> -</xsl:template> - -<xsl:template match="authorgroup" mode="xref-title"> - <xsl:variable name="title"> - <xsl:call-template name="person.name.list"/> - </xsl:variable> - - <xsl:value-of select="$title"/> -</xsl:template> - -<xsl:template match="cmdsynopsis" mode="xref-title"> - <xsl:variable name="title"> - <xsl:apply-templates select="(.//command)[1]" mode="xref"/> - </xsl:variable> - - <xsl:value-of select="$title"/> -</xsl:template> - -<xsl:template match="funcsynopsis" mode="xref-title"> - <xsl:variable name="title"> - <xsl:apply-templates select="(.//function)[1]" mode="xref"/> - </xsl:variable> - - <xsl:value-of select="$title"/> -</xsl:template> - -<xsl:template match="biblioentry|bibliomixed" mode="xref-title"> - <!-- handles both biblioentry and bibliomixed --> - <xsl:variable name="title"> - <xsl:text>[</xsl:text> - <xsl:choose> - <xsl:when test="local-name(*[1]) = 'abbrev'"> - <xsl:apply-templates select="*[1]"/> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="(@id|@xml:id)[1]"/> - </xsl:otherwise> - </xsl:choose> - <xsl:text>]</xsl:text> - </xsl:variable> - - <xsl:value-of select="$title"/> -</xsl:template> - -<xsl:template match="step" mode="xref-title"> - <xsl:call-template name="gentext"> - <xsl:with-param name="key" select="'Step'"/> - </xsl:call-template> - <xsl:text> </xsl:text> - <xsl:apply-templates select="." mode="number"/> -</xsl:template> - -<xsl:template match="step[not(./title)]" mode="title.markup"> - <xsl:call-template name="gentext"> - <xsl:with-param name="key" select="'Step'"/> - </xsl:call-template> - <xsl:text> </xsl:text> - <xsl:apply-templates select="." mode="number"/> -</xsl:template> - -<xsl:template match="co" mode="xref-title"> - <xsl:variable name="title"> - <xsl:apply-templates select="." mode="callout-bug"/> - </xsl:variable> - - <xsl:value-of select="$title"/> -</xsl:template> - -<!-- ==================================================================== --> - -<xsl:template match="link" name="link"> - <xsl:param name="linkend" select="@linkend"/> - <xsl:param name="a.target"/> - <xsl:param name="xhref" select="@xlink:href"/> - - <xsl:variable name="content"> - <xsl:call-template name="anchor"/> - <xsl:choose> - <xsl:when test="count(child::node()) > 0"> - <!-- If it has content, use it --> - <xsl:apply-templates/> - </xsl:when> - <!-- else look for an endterm --> - <xsl:when test="@endterm"> - <xsl:variable name="etargets" select="key('id',@endterm)"/> - <xsl:variable name="etarget" select="$etargets[1]"/> - <xsl:choose> - <xsl:when test="count($etarget) = 0"> - <xsl:message> - <xsl:value-of select="count($etargets)"/> - <xsl:text>Endterm points to nonexistent ID: </xsl:text> - <xsl:value-of select="@endterm"/> - </xsl:message> - <xsl:text>???</xsl:text> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates select="$etarget" mode="endterm"/> - </xsl:otherwise> - </xsl:choose> - </xsl:when> - <!-- Use the xlink:href if no other text --> - <xsl:when test="@xlink:href"> - <xsl:value-of select="@xlink:href"/> - </xsl:when> - <xsl:otherwise> - <xsl:message> - <xsl:text>Link element has no content and no Endterm. </xsl:text> - <xsl:text>Nothing to show in the link to </xsl:text> - <xsl:value-of select="(@xlink:href|@linkend)[1]"/> - </xsl:message> - <xsl:text>???</xsl:text> - </xsl:otherwise> - </xsl:choose> - </xsl:variable> - - <xsl:call-template name="simple.xlink"> - <xsl:with-param name="node" select="."/> - <xsl:with-param name="linkend" select="$linkend"/> - <xsl:with-param name="content" select="$content"/> - <xsl:with-param name="a.target" select="$a.target"/> - <xsl:with-param name="xhref" select="$xhref"/> - </xsl:call-template> - -</xsl:template> - -<xsl:template match="ulink" name="ulink"> - <xsl:param name="url" select="@url"/> - <xsl:variable name="link"> - <a> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:if test="@id or @xml:id"> - <xsl:attribute name="name"> - <xsl:value-of select="(@id|@xml:id)[1]"/> - </xsl:attribute> - </xsl:if> - <xsl:attribute name="href"><xsl:value-of select="$url"/></xsl:attribute> - <xsl:if test="$ulink.target != ''"> - <xsl:attribute name="target"> - <xsl:value-of select="$ulink.target"/> - </xsl:attribute> - </xsl:if> - <xsl:choose> - <xsl:when test="count(child::node())=0"> - <xsl:value-of select="$url"/> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates/> - </xsl:otherwise> - </xsl:choose> - </a> - </xsl:variable> - - <xsl:choose> - <xsl:when test="function-available('suwl:unwrapLinks')"> - <xsl:copy-of select="suwl:unwrapLinks($link)"/> - </xsl:when> - <xsl:otherwise> - <xsl:copy-of select="$link"/> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template match="olink" name="olink"> - <!-- olink content may be passed in from xlink olink --> - <xsl:param name="content" select="NOTANELEMENT"/> - - <xsl:call-template name="anchor"/> - - <xsl:variable name="localinfo" select="@localinfo"/> - - <xsl:choose> - <!-- olinks resolved by stylesheet and target database --> - <xsl:when test="@targetdoc or @targetptr or - (@xlink:role=$xolink.role and - contains(@xlink:href, '#') )" > - - <xsl:variable name="targetdoc.att"> - <xsl:choose> - <xsl:when test="@targetdoc != ''"> - <xsl:value-of select="@targetdoc"/> - </xsl:when> - <xsl:when test="@xlink:role=$xolink.role and - contains(@xlink:href, '#')" > - <xsl:value-of select="substring-before(@xlink:href, '#')"/> - </xsl:when> - </xsl:choose> - </xsl:variable> - - <xsl:variable name="targetptr.att"> - <xsl:choose> - <xsl:when test="@targetptr != ''"> - <xsl:value-of select="@targetptr"/> - </xsl:when> - <xsl:when test="@xlink:role=$xolink.role and - contains(@xlink:href, '#')" > - <xsl:value-of select="substring-after(@xlink:href, '#')"/> - </xsl:when> - </xsl:choose> - </xsl:variable> - - <xsl:variable name="olink.lang"> - <xsl:call-template name="l10n.language"> - <xsl:with-param name="xref-context" select="true()"/> - </xsl:call-template> - </xsl:variable> - - <xsl:variable name="target.database.filename"> - <xsl:call-template name="select.target.database"> - <xsl:with-param name="targetdoc.att" select="$targetdoc.att"/> - <xsl:with-param name="targetptr.att" select="$targetptr.att"/> - <xsl:with-param name="olink.lang" select="$olink.lang"/> - </xsl:call-template> - </xsl:variable> - - <xsl:variable name="target.database" - select="document($target.database.filename,/)"/> - - <xsl:if test="$olink.debug != 0"> - <xsl:message> - <xsl:text>Olink debug: root element of target.database '</xsl:text> - <xsl:value-of select="$target.database.filename"/> - <xsl:text>' is '</xsl:text> - <xsl:value-of select="local-name($target.database/*[1])"/> - <xsl:text>'.</xsl:text> - </xsl:message> - </xsl:if> - - <xsl:variable name="olink.key"> - <xsl:call-template name="select.olink.key"> - <xsl:with-param name="targetdoc.att" select="$targetdoc.att"/> - <xsl:with-param name="targetptr.att" select="$targetptr.att"/> - <xsl:with-param name="olink.lang" select="$olink.lang"/> - <xsl:with-param name="target.database" select="$target.database"/> - </xsl:call-template> - </xsl:variable> - - <xsl:if test="string-length($olink.key) = 0"> - <xsl:message> - <xsl:text>Error: unresolved olink: </xsl:text> - <xsl:text>targetdoc/targetptr = '</xsl:text> - <xsl:value-of select="$targetdoc.att"/> - <xsl:text>/</xsl:text> - <xsl:value-of select="$targetptr.att"/> - <xsl:text>'.</xsl:text> - </xsl:message> - </xsl:if> - - <xsl:variable name="href"> - <xsl:call-template name="make.olink.href"> - <xsl:with-param name="olink.key" select="$olink.key"/> - <xsl:with-param name="target.database" select="$target.database"/> - </xsl:call-template> - </xsl:variable> - - <xsl:variable name="hottext"> - <xsl:choose> - <xsl:when test="string-length($content) != 0"> - <xsl:copy-of select="$content"/> - </xsl:when> - <xsl:otherwise> - <xsl:call-template name="olink.hottext"> - <xsl:with-param name="olink.key" select="$olink.key"/> - <xsl:with-param name="olink.lang" select="$olink.lang"/> - <xsl:with-param name="target.database" select="$target.database"/> - </xsl:call-template> - </xsl:otherwise> - </xsl:choose> - </xsl:variable> - - <xsl:variable name="olink.docname.citation"> - <xsl:call-template name="olink.document.citation"> - <xsl:with-param name="olink.key" select="$olink.key"/> - <xsl:with-param name="target.database" select="$target.database"/> - <xsl:with-param name="olink.lang" select="$olink.lang"/> - </xsl:call-template> - </xsl:variable> - - <xsl:variable name="olink.page.citation"> - <xsl:call-template name="olink.page.citation"> - <xsl:with-param name="olink.key" select="$olink.key"/> - <xsl:with-param name="target.database" select="$target.database"/> - <xsl:with-param name="olink.lang" select="$olink.lang"/> - </xsl:call-template> - </xsl:variable> - - <xsl:choose> - <xsl:when test="$href != ''"> - <a href="{$href}"> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:copy-of select="$hottext"/> - </a> - <xsl:copy-of select="$olink.page.citation"/> - <xsl:copy-of select="$olink.docname.citation"/> - </xsl:when> - <xsl:otherwise> - <span class="olink"><xsl:copy-of select="$hottext"/></span> - <xsl:copy-of select="$olink.page.citation"/> - <xsl:copy-of select="$olink.docname.citation"/> - </xsl:otherwise> - </xsl:choose> - - </xsl:when> - - <!-- Or use old olink mechanism --> - <xsl:otherwise> - <xsl:variable name="href"> - <xsl:choose> - <xsl:when test="@linkmode"> - <!-- use the linkmode to get the base URI, use localinfo as fragid --> - <xsl:variable name="modespec" select="key('id',@linkmode)"/> - <xsl:if test="count($modespec) != 1 - or local-name($modespec) != 'modespec'"> - <xsl:message>Warning: olink linkmode pointer is wrong.</xsl:message> - </xsl:if> - <xsl:value-of select="$modespec"/> - <xsl:if test="@localinfo"> - <xsl:text>#</xsl:text> - <xsl:value-of select="@localinfo"/> - </xsl:if> - </xsl:when> - <xsl:when test="@type = 'href'"> - <xsl:call-template name="olink.outline"> - <xsl:with-param name="outline.base.uri" - select="unparsed-entity-uri(@targetdocent)"/> - <xsl:with-param name="localinfo" select="@localinfo"/> - <xsl:with-param name="return" select="'href'"/> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="$olink.resolver"/> - <xsl:text>?</xsl:text> - <xsl:value-of select="$olink.sysid"/> - <xsl:value-of select="unparsed-entity-uri(@targetdocent)"/> - <!-- XSL gives no access to the public identifier (grumble...) --> - <xsl:if test="@localinfo"> - <xsl:text>&</xsl:text> - <xsl:value-of select="$olink.fragid"/> - <xsl:value-of select="@localinfo"/> - </xsl:if> - </xsl:otherwise> - </xsl:choose> - </xsl:variable> - - <xsl:choose> - <xsl:when test="$href != ''"> - <a href="{$href}"> - <xsl:apply-templates select="." mode="common.html.attributes"/> - <xsl:call-template name="olink.hottext"/> - </a> - </xsl:when> - <xsl:otherwise> - <xsl:call-template name="olink.hottext"/> - </xsl:otherwise> - </xsl:choose> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template match="*" mode="pagenumber.markup"> - <!-- no-op in HTML --> -</xsl:template> - - -<xsl:template name="olink.outline"> - <xsl:param name="outline.base.uri"/> - <xsl:param name="localinfo"/> - <xsl:param name="return" select="href"/> - - <xsl:variable name="outline-file" - select="concat($outline.base.uri, - $olink.outline.ext)"/> - - <xsl:variable name="outline" select="document($outline-file,.)/div"/> - - <xsl:variable name="node-href"> - <xsl:choose> - <xsl:when test="$localinfo != ''"> - <xsl:variable name="node" select="$outline// - *[@id=$localinfo or @xml:id=$localinfo]"/> - <xsl:value-of select="$node/@href"/> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="$outline/@href"/> - </xsl:otherwise> - </xsl:choose> - </xsl:variable> - - <xsl:variable name="node-xref"> - <xsl:choose> - <xsl:when test="$localinfo != ''"> - <xsl:variable name="node" select="$outline// - *[@id=$localinfo or @xml:id=$localinfo]"/> - <xsl:copy-of select="$node/xref"/> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="$outline/xref"/> - </xsl:otherwise> - </xsl:choose> - </xsl:variable> - - <xsl:choose> - <xsl:when test="$return = 'href'"> - <xsl:value-of select="$node-href"/> - </xsl:when> - <xsl:when test="$return = 'xref'"> - <xsl:value-of select="$node-xref"/> - </xsl:when> - <xsl:otherwise> - <xsl:copy-of select="$node-xref"/> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<!-- ==================================================================== --> - -<xsl:template name="xref.xreflabel"> - <!-- called to process an xreflabel...you might use this to make --> - <!-- xreflabels come out in the right font for different targets, --> - <!-- for example. --> - <xsl:param name="target" select="."/> - <xsl:value-of select="$target/@xreflabel"/> -</xsl:template> - -<!-- ==================================================================== --> - -<xsl:template match="title" mode="xref"> - <xsl:apply-templates/> -</xsl:template> - -<xsl:template match="command" mode="xref"> - <xsl:call-template name="inline.boldseq"/> -</xsl:template> - -<xsl:template match="function" mode="xref"> - <xsl:call-template name="inline.monoseq"/> -</xsl:template> - -<!-- ==================================================================== --> - -<xsl:template match="*" mode="insert.title.markup"> - <xsl:param name="purpose"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="title"/> - - <xsl:choose> - <!-- FIXME: what about the case where titleabbrev is inside the info? --> - <xsl:when test="$purpose = 'xref' and titleabbrev"> - <xsl:apply-templates select="." mode="titleabbrev.markup"/> - </xsl:when> - <xsl:otherwise> - <xsl:copy-of select="$title"/> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template match="chapter|appendix" mode="insert.title.markup"> - <xsl:param name="purpose"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="title"/> - - <xsl:choose> - <xsl:when test="$purpose = 'xref'"> - <i> - <xsl:copy-of select="$title"/> - </i> - </xsl:when> - <xsl:otherwise> - <xsl:copy-of select="$title"/> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<xsl:template match="*" mode="insert.subtitle.markup"> - <xsl:param name="purpose"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="subtitle"/> - - <xsl:copy-of select="$subtitle"/> -</xsl:template> - -<xsl:template match="*" mode="insert.label.markup"> - <xsl:param name="purpose"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="label"/> - - <xsl:copy-of select="$label"/> -</xsl:template> - -<xsl:template match="*" mode="insert.pagenumber.markup"> - <xsl:param name="purpose"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="pagenumber"/> - - <xsl:copy-of select="$pagenumber"/> -</xsl:template> - -<xsl:template match="*" mode="insert.direction.markup"> - <xsl:param name="purpose"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="direction"/> - - <xsl:copy-of select="$direction"/> -</xsl:template> - -<xsl:template match="*" mode="insert.olink.docname.markup"> - <xsl:param name="purpose"/> - <xsl:param name="xrefstyle"/> - <xsl:param name="docname"/> - - <span class="olinkdocname"> - <xsl:copy-of select="$docname"/> - </span> - -</xsl:template> - -</xsl:stylesheet> diff --git a/docbook-xsl-1.75.2/htmlhelp/htmlhelp-common.xsl b/docbook-xsl-1.75.2/htmlhelp/htmlhelp-common.xsl deleted file mode 100644 index 303b81e..0000000 --- a/docbook-xsl-1.75.2/htmlhelp/htmlhelp-common.xsl +++ /dev/null @@ -1,1120 +0,0 @@ -<?xml version="1.0"?> -<!DOCTYPE xsl:stylesheet [ -<!ENTITY lf '<xsl:text xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> </xsl:text>'> -]> -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" - xmlns:doc="http://nwalsh.com/xsl/documentation/1.0" - xmlns:exsl="http://exslt.org/common" - xmlns:set="http://exslt.org/sets" - xmlns:h="urn:x-hex" - xmlns:ng="http://docbook.org/docbook-ng" - xmlns:db="http://docbook.org/ns/docbook" - version="1.0" - exclude-result-prefixes="doc exsl set h db ng"> - -<!-- ******************************************************************** - $Id: htmlhelp-common.xsl 8400 2009-04-08 07:44:54Z bobstayton $ - ******************************************************************** --> - -<!-- ==================================================================== --> -<!-- Customizations of standard HTML stylesheet parameters --> - -<!-- no navigation on pages by default, HTML Help provides its own navigation controls --> -<xsl:param name="suppress.navigation" select="1"/> - -<!-- no separate HTML page with index, index is built inside CHM index pane --> -<xsl:param name="generate.index" select="0"/> - -<!-- ==================================================================== --> - -<xsl:param name="htmlhelp.generate.index" select="//indexterm[1]|//db:indexterm[1]|//ng:indexterm[1]"/> - -<!-- Set up HTML Help flag --> -<xsl:variable name="htmlhelp.output" select="1"/> - -<!-- ==================================================================== --> - -<xsl:template match="/"> - - <!-- * Get a title for current doc so that we let the user --> - <!-- * know what document we are processing at this point. --> - <xsl:variable name="doc.title"> - <xsl:call-template name="get.doc.title"/> - </xsl:variable> - <xsl:choose> - <!-- Hack! If someone hands us a DocBook V5.x or DocBook NG document, - toss the namespace and continue. Use the docbook5 namespaced - stylesheets for DocBook5 if you don't want to use this feature.--> - <xsl:when test="$exsl.node.set.available != 0 - and (*/self::ng:* or */self::db:*)"> - <xsl:call-template name="log.message"> - <xsl:with-param name="level">Note</xsl:with-param> - <xsl:with-param name="source" select="$doc.title"/> - <xsl:with-param name="context-desc"> - <xsl:text>namesp. cut</xsl:text> - </xsl:with-param> - <xsl:with-param name="message"> - <xsl:text>stripped namespace before processing</xsl:text> - </xsl:with-param> - </xsl:call-template> - <xsl:variable name="nons"> - <xsl:apply-templates mode="stripNS"/> - </xsl:variable> - <xsl:call-template name="log.message"> - <xsl:with-param name="level">Note</xsl:with-param> - <xsl:with-param name="source" select="$doc.title"/> - <xsl:with-param name="context-desc"> - <xsl:text>namesp. cut</xsl:text> - </xsl:with-param> - <xsl:with-param name="message"> - <xsl:text>processing stripped document</xsl:text> - </xsl:with-param> - </xsl:call-template> - <xsl:apply-templates select="exsl:node-set($nons)"/> - </xsl:when> - <xsl:otherwise> - <xsl:if test="$htmlhelp.only != 1"> - <xsl:choose> - <xsl:when test="$rootid != ''"> - <xsl:choose> - <xsl:when test="count(key('id',$rootid)) = 0"> - <xsl:message terminate="yes"> - <xsl:text>ID '</xsl:text> - <xsl:value-of select="$rootid"/> - <xsl:text>' not found in document.</xsl:text> - </xsl:message> - </xsl:when> - <xsl:otherwise> - <xsl:message>Formatting from <xsl:value-of select="$rootid"/></xsl:message> - <xsl:apply-templates select="key('id',$rootid)" mode="process.root"/> - </xsl:otherwise> - </xsl:choose> - </xsl:when> - <xsl:otherwise> - <xsl:if test="$collect.xref.targets = 'yes' or - $collect.xref.targets = 'only'"> - <xsl:apply-templates select="/" mode="collect.targets"/> - </xsl:if> - <xsl:if test="$collect.xref.targets != 'only'"> - <xsl:apply-templates select="/" mode="process.root"/> - </xsl:if> - </xsl:otherwise> - </xsl:choose> - </xsl:if> - - - <xsl:if test="$collect.xref.targets != 'only'"> - <xsl:call-template name="hhp"/> - <xsl:call-template name="hhc"/> - <xsl:if test="($rootid = '' and //processing-instruction('dbhh')) or - ($rootid != '' and key('id',$rootid)//processing-instruction('dbhh'))"> - <xsl:call-template name="hh-map"/> - <xsl:call-template name="hh-alias"/> - </xsl:if> - <xsl:if test="$htmlhelp.generate.index"> - <xsl:call-template name="hhk"/> - </xsl:if> - </xsl:if> -</xsl:otherwise> -</xsl:choose> -</xsl:template> - -<!-- ==================================================================== --> - -<xsl:template name="hhp"> - <xsl:call-template name="write.text.chunk"> - <xsl:with-param name="filename"> - <xsl:if test="$manifest.in.base.dir != 0"> - <xsl:value-of select="$base.dir"/> - </xsl:if> - <xsl:value-of select="$htmlhelp.hhp"/> - </xsl:with-param> - <xsl:with-param name="method" select="'text'"/> - <xsl:with-param name="content"> - <xsl:call-template name="hhp-main"/> - </xsl:with-param> - <xsl:with-param name="encoding" select="$htmlhelp.encoding"/> - <xsl:with-param name="quiet" select="$chunk.quietly"/> - </xsl:call-template> -</xsl:template> - -<!-- ==================================================================== --> -<xsl:template name="hhp-main"> - - <xsl:variable name="raw.help.title"> - <xsl:choose> - <xsl:when test="$htmlhelp.title = ''"> - <xsl:choose> - <xsl:when test="$rootid != ''"> - <xsl:apply-templates select="key('id',$rootid)" mode="title.markup"/> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates select="/*" mode="title.markup"/> - </xsl:otherwise> - </xsl:choose> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="$htmlhelp.title"/> - </xsl:otherwise> - </xsl:choose> - </xsl:variable> - - <xsl:variable name="help.title" select="normalize-space($raw.help.title)"/> - -<xsl:variable name="default.topic"> - <xsl:choose> - <xsl:when test="$htmlhelp.default.topic != ''"> - <xsl:value-of select="$htmlhelp.default.topic"/> - </xsl:when> - <xsl:otherwise> - <xsl:call-template name="make-relative-filename"> - <xsl:with-param name="base.dir"> - <xsl:if test="$manifest.in.base.dir = 0"> - <xsl:value-of select="$base.dir"/> - </xsl:if> - </xsl:with-param> - <xsl:with-param name="base.name"> - <xsl:choose> - <xsl:when test="$rootid != ''"> - <xsl:apply-templates select="key('id',$rootid)" mode="chunk-filename"/> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates select="/" mode="chunk-filename"/> - </xsl:otherwise> - </xsl:choose> - </xsl:with-param> - </xsl:call-template> - </xsl:otherwise> - </xsl:choose> -</xsl:variable> -<xsl:variable name="xnavigation"> - <xsl:text>0x</xsl:text> - <xsl:call-template name="toHex"> - <xsl:with-param name="n" select="9504 + $htmlhelp.show.menu * 65536 - + $htmlhelp.show.advanced.search * 131072 - + $htmlhelp.show.favorities * 4096 - + (1 - $htmlhelp.show.toolbar.text) * 64 - + $htmlhelp.remember.window.position * 262144"/> - </xsl:call-template> -</xsl:variable> -<xsl:variable name="xbuttons"> - <xsl:text>0x</xsl:text> - <xsl:call-template name="toHex"> - <xsl:with-param name="n" select="0 + $htmlhelp.button.hideshow * 2 - + $htmlhelp.button.back * 4 - + $htmlhelp.button.forward * 8 - + $htmlhelp.button.stop * 16 - + $htmlhelp.button.refresh * 32 - + $htmlhelp.button.home * 64 - + $htmlhelp.button.options * 4096 - + $htmlhelp.button.print * 8192 - + $htmlhelp.button.locate * 2048 - + $htmlhelp.button.jump1 * 262144 - + $htmlhelp.button.jump2 * 524288 - + $htmlhelp.button.next * 2097152 - + $htmlhelp.button.prev * 4194304 - + $htmlhelp.button.zoom * 1048576"/> - </xsl:call-template> -</xsl:variable> -<xsl:text>[OPTIONS] -</xsl:text> -<xsl:if test="$htmlhelp.generate.index"> -<xsl:text>Auto Index=Yes -</xsl:text></xsl:if> -<xsl:if test="$htmlhelp.hhc.binary != 0"> -<xsl:text>Binary TOC=Yes -</xsl:text></xsl:if> -<xsl:text>Compatibility=1.1 or later -Compiled file=</xsl:text><xsl:value-of select="$htmlhelp.chm"/><xsl:text> -Contents file=</xsl:text><xsl:value-of select="$htmlhelp.hhc"/><xsl:text> -</xsl:text> -<xsl:if test="$htmlhelp.hhp.window != ''"> -<xsl:text>Default Window=</xsl:text><xsl:value-of select="$htmlhelp.hhp.window"/><xsl:text> -</xsl:text></xsl:if> -<xsl:text>Default topic=</xsl:text><xsl:value-of select="$default.topic"/> -<xsl:text> -Display compile progress=</xsl:text> - <xsl:choose> - <xsl:when test="$htmlhelp.display.progress != 1"> - <xsl:text>No</xsl:text> - </xsl:when> - <xsl:otherwise> - <xsl:text>Yes</xsl:text> - </xsl:otherwise> - </xsl:choose> -<xsl:text> -Full-text search=Yes -</xsl:text> -<xsl:if test="$htmlhelp.generate.index"> -<xsl:text>Index file=</xsl:text><xsl:value-of select="$htmlhelp.hhk"/><xsl:text> -</xsl:text></xsl:if> -<xsl:text>Language=</xsl:text> -<xsl:for-each select="*"> <!-- Change context from / to root element --> - <xsl:call-template name="gentext.template"> - <xsl:with-param name="context" select="'htmlhelp'"/> - <xsl:with-param name="name" select="'langcode'"/> - </xsl:call-template> -</xsl:for-each> -<xsl:text> -Title=</xsl:text> - <xsl:value-of select="$help.title"/> -<xsl:text> -Enhanced decompilation=</xsl:text> - <xsl:choose> - <xsl:when test="$htmlhelp.enhanced.decompilation != 0"> - <xsl:text>Yes</xsl:text> - </xsl:when> - <xsl:otherwise> - <xsl:text>No</xsl:text> - </xsl:otherwise> - </xsl:choose> - -<xsl:if test="$htmlhelp.hhp.window != ''"> - <xsl:text> - -[WINDOWS] -</xsl:text> -<xsl:value-of select="$htmlhelp.hhp.window"/> -<xsl:text>="</xsl:text> -<xsl:value-of select="$help.title"/> -<xsl:text>","</xsl:text><xsl:value-of select="$htmlhelp.hhc"/> -<xsl:text>",</xsl:text> -<xsl:if test="$htmlhelp.generate.index"> - <xsl:text>"</xsl:text> - <xsl:value-of select="$htmlhelp.hhk"/> - <xsl:text>"</xsl:text> -</xsl:if> -<xsl:text>,"</xsl:text> -<xsl:value-of select="$default.topic"/> -<xsl:text>",</xsl:text> -<xsl:text>"</xsl:text> -<xsl:choose> - <xsl:when test="$htmlhelp.button.home != 0"> - <xsl:value-of select="$htmlhelp.button.home.url"/> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="$default.topic"/> - </xsl:otherwise> -</xsl:choose> -<xsl:text>"</xsl:text> -<xsl:text>,</xsl:text> -<xsl:if test="$htmlhelp.button.jump1 != 0"> - <xsl:text>"</xsl:text> - <xsl:value-of select="$htmlhelp.button.jump1.url"/> - <xsl:text>"</xsl:text> -</xsl:if> -<xsl:text>,</xsl:text> -<xsl:if test="$htmlhelp.button.jump1 != 0"> - <xsl:text>"</xsl:text> - <xsl:value-of select="$htmlhelp.button.jump1.title"/> - <xsl:text>"</xsl:text> -</xsl:if> -<xsl:text>,</xsl:text> -<xsl:if test="$htmlhelp.button.jump2 != 0"> - <xsl:text>"</xsl:text> - <xsl:value-of select="$htmlhelp.button.jump2.url"/> - <xsl:text>"</xsl:text> -</xsl:if> -<xsl:text>,</xsl:text> -<xsl:if test="$htmlhelp.button.jump2 != 0"> - <xsl:text>"</xsl:text> - <xsl:value-of select="$htmlhelp.button.jump2.title"/> - <xsl:text>"</xsl:text> -</xsl:if> -<xsl:text>,</xsl:text> -<xsl:value-of select="$xnavigation"/> -<xsl:text>,</xsl:text><xsl:value-of select="$htmlhelp.hhc.width"/><xsl:text>,</xsl:text> -<xsl:value-of select="$xbuttons"/> -<xsl:text>,</xsl:text><xsl:value-of select="$htmlhelp.window.geometry"/><xsl:text>,,,,,,,0 -</xsl:text> -</xsl:if> - -<!-- - Needs more investigation to generate propetly all fields -<xsl:text>search="</xsl:text> -<xsl:value-of select="normalize-space(//title[1])"/> -<xsl:text>","toc.hhc","index.hhk","</xsl:text> -<xsl:value-of select="$root.filename"/> -<xsl:text>.html","</xsl:text> -<xsl:value-of select="$root.filename"/> -<xsl:text>.html",,,,,</xsl:text> -<xsl:value-of select="$xnavigation"/> -<xsl:text>,</xsl:text> -<xsl:value-of select="$htmlhelp.hhc.width"/> -<xsl:text>,</xsl:text> -<xsl:value-of select="$xbuttons"/> -<xsl:text>,</xsl:text> -<xsl:value-of select="$htmlhelp.window.geometry"/> -<xsl:text>,,,,,2,,0 -</xsl:text> ---> - -<xsl:if test="$htmlhelp.hhp.windows"> - <xsl:value-of select="$htmlhelp.hhp.windows"/> -</xsl:if> -<xsl:text> - -[FILES] -</xsl:text> - -<xsl:choose> - <xsl:when test="$rootid != ''"> - <xsl:apply-templates select="key('id',$rootid)" mode="enumerate-files"/> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates select="/" mode="enumerate-files"/> - </xsl:otherwise> -</xsl:choose> - -<xsl:if test="$htmlhelp.enumerate.images"> - <xsl:variable name="imagelist"> - <xsl:choose> - <xsl:when test="$rootid != ''"> - <xsl:apply-templates select="key('id',$rootid)" mode="enumerate-images"/> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates select="/" mode="enumerate-images"/> - </xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:choose> - <xsl:when test="$exsl.node.set.available != 0 - and function-available('set:distinct')"> - <xsl:for-each select="set:distinct(exsl:node-set($imagelist)/filename)"> - <xsl:value-of select="."/> - <xsl:text> </xsl:text> - </xsl:for-each> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="$imagelist"/> - </xsl:otherwise> - </xsl:choose> -</xsl:if> - -<xsl:if test="($htmlhelp.force.map.and.alias != 0) or - ($rootid = '' and //processing-instruction('dbhh')) or - ($rootid != '' and key('id',$rootid)//processing-instruction('dbhh'))"> - <xsl:text> -[ALIAS] -#include </xsl:text><xsl:value-of select="$htmlhelp.alias.file"/><xsl:text> - -[MAP] -#include </xsl:text><xsl:value-of select="$htmlhelp.map.file"/><xsl:text> -</xsl:text> -</xsl:if> - -<xsl:value-of select="$htmlhelp.hhp.tail"/> -</xsl:template> - -<!-- ==================================================================== --> - -<xsl:template match="graphic|inlinegraphic[@format!='linespecific']" mode="enumerate-images"> - <xsl:call-template name="write.filename.enumerate-images"> - <xsl:with-param name="filename"> - <xsl:call-template name="mediaobject.filename.enumerate-images"> - <xsl:with-param name="object" select="."/> - </xsl:call-template> - </xsl:with-param> - </xsl:call-template> -</xsl:template> - -<xsl:template match="mediaobject|inlinemediaobject" mode="enumerate-images"> - <xsl:call-template name="select.mediaobject.enumerate-images"/> -</xsl:template> - -<xsl:template name="select.mediaobject.enumerate-images"> - <xsl:param name="olist" - select="imageobject|imageobjectco - |videoobject|audioobject|textobject"/> - <xsl:param name="count">1</xsl:param> - - <xsl:if test="$count <= count($olist)"> - <xsl:variable name="object" select="$olist[position()=$count]"/> - - <xsl:variable name="useobject"> - <xsl:choose> - <!-- The phrase is never used --> - <xsl:when test="name($object)='textobject' and $object/phrase"> - <xsl:text>0</xsl:text> - </xsl:when> - <!-- The first textobject is a reasonable fallback (but not for image in HH) --> - <xsl:when test="name($object)='textobject'"> - <xsl:text>0</xsl:text> - </xsl:when> - <!-- If there's only one object, use it --> - <xsl:when test="$count = 1 and count($olist) = 1"> - <xsl:text>1</xsl:text> - </xsl:when> - <!-- Otherwise, see if this one is a useable graphic --> - <xsl:otherwise> - <xsl:choose> - <!-- peek inside imageobjectco to simplify the test --> - <xsl:when test="local-name($object) = 'imageobjectco'"> - <xsl:call-template name="is.acceptable.mediaobject"> - <xsl:with-param name="object" select="$object/imageobject"/> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <xsl:call-template name="is.acceptable.mediaobject"> - <xsl:with-param name="object" select="$object"/> - </xsl:call-template> - </xsl:otherwise> - </xsl:choose> - </xsl:otherwise> - </xsl:choose> - </xsl:variable> - - <xsl:choose> - <xsl:when test="$useobject='1' and $object[not(*/@format='linespecific')]"> - <xsl:call-template name="write.filename.enumerate-images"> - <xsl:with-param name="filename"> - <xsl:call-template name="mediaobject.filename.enumerate-images"> - <xsl:with-param name="object" select="$object"/> - </xsl:call-template> - </xsl:with-param> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <xsl:call-template name="select.mediaobject.enumerate-images"> - <xsl:with-param name="olist" select="$olist"/> - <xsl:with-param name="count" select="$count + 1"/> - </xsl:call-template> - </xsl:otherwise> - </xsl:choose> - </xsl:if> -</xsl:template> - -<xsl:template name="mediaobject.filename.enumerate-images"> - <xsl:param name="object"/> - - <xsl:variable name="urifilename"> - <xsl:call-template name="mediaobject.filename"> - <xsl:with-param name="object" select="$object"/> - </xsl:call-template> - </xsl:variable> - - <xsl:variable name="filename"> - <xsl:choose> - <xsl:when test="starts-with($urifilename, 'file:/')"> - <xsl:value-of select="substring-after($urifilename, 'file:/')"/> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="$urifilename"/> - </xsl:otherwise> - </xsl:choose> - </xsl:variable> - - <xsl:value-of select="translate($filename, '/', '\')"/> - -</xsl:template> - -<xsl:template match="text()" mode="enumerate-images"> -</xsl:template> - -<xsl:template name="write.filename.enumerate-images"> - <xsl:param name="filename"/> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set') and function-available('set:distinct')"> - <filename><xsl:value-of select="$filename"/></filename> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="$filename"/> - <xsl:text> </xsl:text> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<!-- ==================================================================== --> - -<!-- HHC and HHK files are processed by compiler line by line - and therefore are very sensitive to whitespaces (linefeeds for sure). --> - -<xsl:template name="hhc"> - <xsl:call-template name="write.chunk"> - <xsl:with-param name="filename"> - <xsl:if test="$manifest.in.base.dir != 0"> - <xsl:value-of select="$base.dir"/> - </xsl:if> - <xsl:value-of select="$htmlhelp.hhc"/> - </xsl:with-param> - <xsl:with-param name="indent" select="'no'"/> - <xsl:with-param name="content"> - <xsl:call-template name="hhc-main"/> - </xsl:with-param> - <xsl:with-param name="encoding" select="$htmlhelp.encoding"/> - <xsl:with-param name="quiet" select="$chunk.quietly"/> - </xsl:call-template> -</xsl:template> - -<xsl:template name="hhc-main"> -<HTML>&lf; - <HEAD></HEAD>&lf; - <BODY>&lf; - <xsl:if test="$htmlhelp.hhc.folders.instead.books != 0"> - <OBJECT type="text/site properties">&lf; - <param name="ImageType" value="Folder"/>&lf; - </OBJECT>&lf; - </xsl:if> - <xsl:variable name="content"> - <xsl:choose> - <xsl:when test="$rootid != ''"> - <xsl:apply-templates select="key('id',$rootid)" mode="hhc"/> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates select="/" mode="hhc"/> - </xsl:otherwise> - </xsl:choose> - </xsl:variable> - - <xsl:choose> - <xsl:when test="$htmlhelp.hhc.show.root != 0"> - <UL>&lf; - <xsl:copy-of select="$content"/> - </UL>&lf; - </xsl:when> - <xsl:otherwise> - <xsl:copy-of select="$content"/> - </xsl:otherwise> - </xsl:choose> - - </BODY> -</HTML> -</xsl:template> - -<xsl:template name="hhc.entry"> - <xsl:param name="title"> - <xsl:if test="$htmlhelp.autolabel=1"> - <xsl:variable name="label.markup"> - <xsl:apply-templates select="." mode="label.markup"/> - </xsl:variable> - <xsl:if test="normalize-space($label.markup)"> - <xsl:value-of select="concat($label.markup,$autotoc.label.separator)"/> - </xsl:if> - </xsl:if> - <xsl:apply-templates select="." mode="title.markup"/> - </xsl:param> - - <LI><OBJECT type="text/sitemap">&lf; - <param name="Name"> - <xsl:attribute name="value"> - <xsl:value-of select="normalize-space($title)"/> - </xsl:attribute> - </param>&lf; - <param name="Local"> - <xsl:attribute name="value"> - <xsl:call-template name="href.target.with.base.dir"/> - </xsl:attribute> - </param> - </OBJECT></LI>&lf; -</xsl:template> - -<xsl:template match="set" mode="hhc"> - <xsl:if test="$htmlhelp.hhc.show.root != 0"> - <xsl:call-template name="hhc.entry"/> - </xsl:if> - <xsl:if test="book"> - <xsl:variable name="toc.params"> - <xsl:call-template name="find.path.params"> - <xsl:with-param name="table" select="normalize-space($generate.toc)"/> - </xsl:call-template> - </xsl:variable> - <UL> - <xsl:if test="contains($toc.params, 'toc') and $htmlhelp.hhc.show.root = 0"> - <LI><OBJECT type="text/sitemap">&lf; - <param name="Name"> - <xsl:attribute name="value"> - <xsl:call-template name="gentext"> - <xsl:with-param name="key" select="'TableofContents'"/> - </xsl:call-template> - </xsl:attribute> - </param>&lf; - <param name="Local"> - <xsl:attribute name="value"> - <xsl:choose> - <xsl:when test="$chunk.tocs.and.lots != 0"> - <xsl:apply-templates select="." mode="recursive-chunk-filename"> - <xsl:with-param name="recursive" select="true()"/> - </xsl:apply-templates> - <xsl:text>-toc</xsl:text> - <xsl:value-of select="$html.ext"/> - </xsl:when> - <xsl:otherwise> - <xsl:call-template name="href.target.with.base.dir"/> - </xsl:otherwise> - </xsl:choose> - </xsl:attribute> - </param> - </OBJECT></LI>&lf; - </xsl:if> - <xsl:apply-templates select="book" mode="hhc"/> - </UL>&lf; - </xsl:if> -</xsl:template> - -<xsl:template match="book" mode="hhc"> - <xsl:if test="$htmlhelp.hhc.show.root != 0 or parent::*"> - <xsl:call-template name="hhc.entry"/> - </xsl:if> - <xsl:if test="part|reference|preface|chapter|appendix|bibliography|article|colophon|glossary"> - <xsl:variable name="toc.params"> - <xsl:call-template name="find.path.params"> - <xsl:with-param name="table" select="normalize-space($generate.toc)"/> - </xsl:call-template> - </xsl:variable> - <UL> - <xsl:if test="contains($toc.params, 'toc') and $htmlhelp.hhc.show.root = 0 and not(parent::*)"> - <LI><OBJECT type="text/sitemap">&lf; - <param name="Name"> - <xsl:attribute name="value"> - <xsl:call-template name="gentext"> - <xsl:with-param name="key" select="'TableofContents'"/> - </xsl:call-template> - </xsl:attribute> - </param>&lf; - <param name="Local"> - <xsl:attribute name="value"> - <xsl:choose> - <xsl:when test="$chunk.tocs.and.lots != 0"> - <xsl:apply-templates select="." mode="recursive-chunk-filename"> - <xsl:with-param name="recursive" select="true()"/> - </xsl:apply-templates> - <xsl:text>-toc</xsl:text> - <xsl:value-of select="$html.ext"/> - </xsl:when> - <xsl:otherwise> - <xsl:call-template name="href.target.with.base.dir"/> - </xsl:otherwise> - </xsl:choose> - </xsl:attribute> - </param> - </OBJECT></LI>&lf; - </xsl:if> - <xsl:apply-templates select="part|reference|preface|chapter|bibliography|appendix|article|colophon|glossary" - mode="hhc"/> - </UL>&lf; - </xsl:if> -</xsl:template> - -<xsl:template match="part|reference|preface|chapter|bibliography|appendix|article|glossary" - mode="hhc"> - <xsl:if test="$htmlhelp.hhc.show.root != 0 or parent::*"> - <xsl:call-template name="hhc.entry"/> - </xsl:if> - <xsl:if test="article|reference|preface|chapter|appendix|refentry|section|sect1|bibliodiv"> - <UL>&lf; - <xsl:apply-templates - select="article|reference|preface|chapter|appendix|refentry|section|sect1|bibliodiv" - mode="hhc"/> - </UL> - </xsl:if> -</xsl:template> - -<xsl:template match="section" mode="hhc"> - <xsl:if test="$htmlhelp.hhc.show.root != 0 or parent::*"> - <xsl:call-template name="hhc.entry"/> - </xsl:if> - <xsl:if test="section[count(ancestor::section) < $htmlhelp.hhc.section.depth]|refentry"> - <UL>&lf; - <xsl:apply-templates select="section|refentry" mode="hhc"/> - </UL> - </xsl:if> -</xsl:template> - -<xsl:template match="sect1" mode="hhc"> - <xsl:if test="$htmlhelp.hhc.show.root != 0 or parent::*"> - <xsl:call-template name="hhc.entry"/> - </xsl:if> - <xsl:if test="sect2[$htmlhelp.hhc.section.depth > 1]|refentry"> - <UL>&lf; - <xsl:apply-templates select="sect2|refentry" - mode="hhc"/> - </UL> - </xsl:if> -</xsl:template> - -<xsl:template match="sect2" mode="hhc"> - <xsl:if test="$htmlhelp.hhc.show.root != 0 or parent::*"> - <xsl:call-template name="hhc.entry"/> - </xsl:if> - <xsl:if test="sect3[$htmlhelp.hhc.section.depth > 2]|refentry"> - <UL>&lf; - <xsl:apply-templates select="sect3|refentry" - mode="hhc"/> - </UL> - </xsl:if> -</xsl:template> - -<xsl:template match="sect3" mode="hhc"> - <xsl:if test="$htmlhelp.hhc.show.root != 0 or parent::*"> - <xsl:call-template name="hhc.entry"/> - </xsl:if> - <xsl:if test="sect4[$htmlhelp.hhc.section.depth > 3]|refentry"> - <UL>&lf; - <xsl:apply-templates select="sect4|refentry" - mode="hhc"/> - </UL> - </xsl:if> -</xsl:template> - -<xsl:template match="sect4" mode="hhc"> - <xsl:if test="$htmlhelp.hhc.show.root != 0 or parent::*"> - <xsl:call-template name="hhc.entry"/> - </xsl:if> - <xsl:if test="sect5[$htmlhelp.hhc.section.depth > 4]|refentry"> - <UL>&lf; - <xsl:apply-templates select="sect5|refentry" - mode="hhc"/> - </UL> - </xsl:if> -</xsl:template> - -<xsl:template match="sect5|refentry|colophon|bibliodiv" mode="hhc"> - <xsl:if test="$htmlhelp.hhc.show.root != 0 or parent::*"> - <xsl:call-template name="hhc.entry"/> - </xsl:if> - <xsl:if test="refentry"> - <UL>&lf; - <xsl:apply-templates select="refentry" - mode="hhc"/> - </UL> - </xsl:if> -</xsl:template> - -<!-- ==================================================================== --> - -<xsl:template match="indexterm"> - <xsl:choose> - <xsl:when test="$htmlhelp.use.hhk = 0"> - - <xsl:variable name="primary" select="normalize-space(primary)"/> - <xsl:variable name="secondary" select="normalize-space(secondary)"/> - <xsl:variable name="tertiary" select="normalize-space(tertiary)"/> - - <xsl:variable name="text"> - <xsl:value-of select="$primary"/> - <xsl:if test="secondary"> - <xsl:text>, </xsl:text> - <xsl:value-of select="$secondary"/> - </xsl:if> - <xsl:if test="tertiary"> - <xsl:text>, </xsl:text> - <xsl:value-of select="$tertiary"/> - </xsl:if> - </xsl:variable> - - <xsl:if test="secondary"> - <xsl:if test="not(//indexterm[normalize-space(primary)=$primary and not(secondary)])"> - <xsl:call-template name="write.indexterm"> - <xsl:with-param name="text" select="$primary"/> - </xsl:call-template> - </xsl:if> - </xsl:if> - - <xsl:if test="tertiary"> - <xsl:if test="not(//indexterm[normalize-space(primary)=$primary and - normalize-space(secondary)=$secondary and not(tertiary)])"> - <xsl:call-template name="write.indexterm"> - <xsl:with-param name="text" select="concat($primary, ', ', $secondary)"/> - </xsl:call-template> - </xsl:if> - </xsl:if> - - <xsl:call-template name="write.indexterm"> - <xsl:with-param name="text" select="$text"/> - </xsl:call-template> - - </xsl:when> - <xsl:otherwise> - <a> - <xsl:attribute name="name"> - <xsl:call-template name="object.id"/> - </xsl:attribute> - </a> - </xsl:otherwise> - - </xsl:choose> -</xsl:template> - -<xsl:template name="write.indexterm"> - <xsl:param name="text"/> - <OBJECT type="application/x-oleobject" - classid="clsid:1e2a7bd0-dab9-11d0-b93a-00c04fc99f9e"> - <param name="Keyword" value="{$text}"/> - </OBJECT> -</xsl:template> - -<!-- ==================================================================== --> - -<xsl:template name="hhk"> - <xsl:call-template name="write.chunk"> - <xsl:with-param name="filename"> - <xsl:if test="$manifest.in.base.dir != 0"> - <xsl:value-of select="$base.dir"/> - </xsl:if> - <xsl:value-of select="$htmlhelp.hhk"/> - </xsl:with-param> - <xsl:with-param name="indent" select="'no'"/> - <xsl:with-param name="content"><xsl:text disable-output-escaping="yes"><![CDATA[<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<HTML> -<HEAD> -<meta name="GENERATOR" content="Microsoft® HTML Help Workshop 4.1"> -<!-- Sitemap 1.0 --> -</HEAD><BODY> -<OBJECT type="text/site properties"> -</OBJECT> -<UL>]]> -</xsl:text> -<xsl:if test="($htmlhelp.use.hhk != 0) and $htmlhelp.generate.index"> - <xsl:choose> - <xsl:when test="$rootid != ''"> - <xsl:apply-templates select="key('id',$rootid)" mode="hhk"/> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates select="/" mode="hhk"/> - </xsl:otherwise> - </xsl:choose> -</xsl:if> -<xsl:text disable-output-escaping="yes"><![CDATA[</UL> -</BODY></HTML>]]> -</xsl:text></xsl:with-param> - <xsl:with-param name="encoding" select="$htmlhelp.encoding"/> - <xsl:with-param name="quiet" select="$chunk.quietly"/> - </xsl:call-template> -</xsl:template> - -<xsl:template match="indexterm[@class='endofrange']" mode="hhk"/> - -<xsl:template match="indexterm" mode="hhk"> - <xsl:variable name="primary" select="normalize-space(primary)"/> - <xsl:variable name="secondary" select="normalize-space(secondary)"/> - <xsl:variable name="tertiary" select="normalize-space(tertiary)"/> - - <xsl:call-template name="write.indexterm.hhk"> - <xsl:with-param name="text" select="$primary"/> - <xsl:with-param name="seealso" select="seealso"/> - </xsl:call-template> - - <xsl:if test="secondary"> - <xsl:if test="not(//indexterm[normalize-space(primary)=$primary and not(secondary)])"> - <xsl:call-template name="write.indexterm.hhk"> - <!-- We must create fake entry when there is secondary without primary --> - <xsl:with-param name="text" select="$primary"/> - <xsl:with-param name="seealso" select="$primary"/> - </xsl:call-template> - </xsl:if> - <UL> - <xsl:call-template name="write.indexterm.hhk"> - <xsl:with-param name="text" select="$secondary"/> - <xsl:with-param name="seealso" select="secondary/seealso"/> - </xsl:call-template> - <xsl:if test="tertiary"> - <UL>&lf; - <xsl:call-template name="write.indexterm.hhk"> - <xsl:with-param name="text" select="$tertiary"/> - <xsl:with-param name="seealso" select="tertiary/seealso"/> - </xsl:call-template> - </UL> - </xsl:if> - </UL> - </xsl:if> - -</xsl:template> - -<xsl:template name="write.indexterm.hhk"> - <xsl:param name="text"/> - <xsl:param name="seealso"/> - - <LI> <OBJECT type="text/sitemap">&lf; - <param name="Name"> - <xsl:attribute name="value"> - <xsl:value-of select="$text"/> - </xsl:attribute> - </param>&lf; - - <xsl:if test="not(seealso)"> - <xsl:variable name="href"> - <xsl:call-template name="href.target.with.base.dir"/> - </xsl:variable> - <xsl:variable name="title"> - <xsl:call-template name="nearest.title"> - <xsl:with-param name="object" select=".."/> - </xsl:call-template> - </xsl:variable> - - <param name="Name"> - <xsl:attribute name="value"> - <xsl:value-of select="$title"/> - </xsl:attribute> - </param>&lf; - <param name="Local"> - <xsl:attribute name="value"> - <xsl:value-of select="$href"/> - </xsl:attribute> - </param>&lf; - </xsl:if> - - <xsl:if test="seealso"> - <param name="See Also"> - <xsl:attribute name="value"> - <xsl:value-of select="$seealso"/> - </xsl:attribute> - </param>&lf; - </xsl:if> - </OBJECT></LI> -</xsl:template> - -<xsl:template match="text()" mode="hhk"/> - -<xsl:template name="nearest.title"> - <xsl:param name="object"/> - <xsl:apply-templates select="$object/ancestor-or-self::*[title][1]" mode="title.markup"/> -</xsl:template> - -<!-- ==================================================================== --> - -<xsl:template name="hh-map"> - <xsl:call-template name="write.text.chunk"> - <xsl:with-param name="filename"> - <xsl:if test="$manifest.in.base.dir != 0"> - <xsl:value-of select="$base.dir"/> - </xsl:if> - <xsl:value-of select="$htmlhelp.map.file"/> - </xsl:with-param> - <xsl:with-param name="method" select="'text'"/> - <xsl:with-param name="content"> - <xsl:choose> - <xsl:when test="$rootid != ''"> - <xsl:apply-templates select="key('id',$rootid)" mode="hh-map"/> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates select="/" mode="hh-map"/> - </xsl:otherwise> - </xsl:choose> - </xsl:with-param> - <xsl:with-param name="encoding" select="$htmlhelp.encoding"/> - <xsl:with-param name="quiet" select="$chunk.quietly"/> - </xsl:call-template> -</xsl:template> - -<xsl:template match="processing-instruction('dbhh')" mode="hh-map"> - <xsl:variable name="topicname"> - <xsl:call-template name="pi-attribute"> - <xsl:with-param name="pis" - select="."/> - <xsl:with-param name="attribute" select="'topicname'"/> - </xsl:call-template> - </xsl:variable> - <xsl:variable name="topicid"> - <xsl:call-template name="pi-attribute"> - <xsl:with-param name="pis" - select="."/> - <xsl:with-param name="attribute" select="'topicid'"/> - </xsl:call-template> - </xsl:variable> - <xsl:text>#define </xsl:text> - <xsl:value-of select="$topicname"/> - <xsl:text> </xsl:text> - <xsl:value-of select="$topicid"/> - <xsl:text> </xsl:text> -</xsl:template> - -<xsl:template match="text()" mode="hh-map"/> - -<!-- ==================================================================== --> - -<xsl:template name="hh-alias"> - <xsl:call-template name="write.text.chunk"> - <xsl:with-param name="filename"> - <xsl:if test="$manifest.in.base.dir != 0"> - <xsl:value-of select="$base.dir"/> - </xsl:if> - <xsl:value-of select="$htmlhelp.alias.file"/> - </xsl:with-param> - <xsl:with-param name="method" select="'text'"/> - <xsl:with-param name="content"> - <xsl:choose> - <xsl:when test="$rootid != ''"> - <xsl:apply-templates select="key('id',$rootid)" mode="hh-alias"/> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates select="/" mode="hh-alias"/> - </xsl:otherwise> - </xsl:choose> - </xsl:with-param> - <xsl:with-param name="encoding" select="$htmlhelp.encoding"/> - <xsl:with-param name="quiet" select="$chunk.quietly"/> - </xsl:call-template> -</xsl:template> - -<xsl:template match="processing-instruction('dbhh')" mode="hh-alias"> - <xsl:variable name="topicname"> - <xsl:call-template name="pi-attribute"> - <xsl:with-param name="pis" - select="."/> - <xsl:with-param name="attribute" select="'topicname'"/> - </xsl:call-template> - </xsl:variable> - <xsl:variable name="href"> - <xsl:call-template name="href.target.with.base.dir"> - <xsl:with-param name="object" select=".."/> - </xsl:call-template> - </xsl:variable> - <xsl:value-of select="$topicname"/> - <xsl:text>=</xsl:text> - <!-- Some versions of HH doesn't like fragment identifires, but some does. --> - <!-- <xsl:value-of select="substring-before(concat($href, '#'), '#')"/> --> - <xsl:value-of select="$href"/> - <xsl:text> </xsl:text> -</xsl:template> - -<xsl:template match="text()" mode="hh-alias"/> - -<!-- ==================================================================== --> -<!-- This code can be used to convert any number to hexadecimal format --> - - <h:hex> - <d>0</d> - <d>1</d> - <d>2</d> - <d>3</d> - <d>4</d> - <d>5</d> - <d>6</d> - <d>7</d> - <d>8</d> - <d>9</d> - <d>A</d> - <d>B</d> - <d>C</d> - <d>D</d> - <d>E</d> - <d>F</d> - </h:hex> - - <xsl:template name="toHex"> - <xsl:param name="n" select="0"/> - <xsl:param name="digit" select="$n mod 16"/> - <xsl:param name="rest" select="floor($n div 16)"/> - <xsl:if test="$rest > 0"> - <xsl:call-template name="toHex"> - <xsl:with-param name="n" select="$rest"/> - </xsl:call-template> - </xsl:if> - <xsl:value-of select="document('')//h:hex/d[$digit+1]"/> - </xsl:template> - -<!-- ==================================================================== --> -<!-- Modification to standard HTML stylesheets --> - -<!-- There are links from ToC pane to bibliodivs, so there must be anchor --> -<xsl:template match="bibliodiv/title"> - <h3 class="{name(.)}"> - <xsl:call-template name="anchor"> - <xsl:with-param name="node" select=".."/> - <xsl:with-param name="conditional" select="0"/> - </xsl:call-template> - <xsl:apply-templates/> - </h3> -</xsl:template> - -</xsl:stylesheet> diff --git a/docbook-xsl-1.75.2/htmlhelp/htmlhelp.xsl b/docbook-xsl-1.75.2/htmlhelp/htmlhelp.xsl deleted file mode 100644 index 8e8ee95..0000000 --- a/docbook-xsl-1.75.2/htmlhelp/htmlhelp.xsl +++ /dev/null @@ -1,22 +0,0 @@ -<?xml version="1.0"?> -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" - xmlns:doc="http://nwalsh.com/xsl/documentation/1.0" - xmlns:exsl="http://exslt.org/common" - xmlns:set="http://exslt.org/sets" - version="1.0" - exclude-result-prefixes="doc exsl set"> - -<!-- ******************************************************************** - $Id: htmlhelp.xsl 1676 2002-06-12 13:21:54Z kosek $ - ******************************************************************** - - This file is used by htmlhelp.xsl if you want to generate source - files for HTML Help. It is based on the XSL DocBook Stylesheet - distribution (especially on JavaHelp code) from Norman Walsh. - - ******************************************************************** --> - -<xsl:import href="../html/chunk.xsl"/> -<xsl:include href="htmlhelp-common.xsl"/> - -</xsl:stylesheet> diff --git a/docbook-xsl-1.75.2/htmlhelp/profile-htmlhelp-common.xsl b/docbook-xsl-1.75.2/htmlhelp/profile-htmlhelp-common.xsl deleted file mode 100644 index d2ab70e..0000000 --- a/docbook-xsl-1.75.2/htmlhelp/profile-htmlhelp-common.xsl +++ /dev/null @@ -1,1083 +0,0 @@ -<?xml version="1.0" encoding="US-ASCII"?> -<!--This file was created automatically by xsl2profile--> -<!--from the DocBook XSL stylesheets.--> -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:doc="http://nwalsh.com/xsl/documentation/1.0" xmlns:exsl="http://exslt.org/common" xmlns:set="http://exslt.org/sets" xmlns:h="urn:x-hex" xmlns:ng="http://docbook.org/docbook-ng" xmlns:db="http://docbook.org/ns/docbook" xmlns:exslt="http://exslt.org/common" exslt:dummy="dummy" ng:dummy="dummy" db:dummy="dummy" extension-element-prefixes="exslt" version="1.0" exclude-result-prefixes="doc exsl set h db ng exslt"> - -<!-- ******************************************************************** - $Id: htmlhelp-common.xsl 8400 2009-04-08 07:44:54Z bobstayton $ - ******************************************************************** --> - -<!-- ==================================================================== --> -<!-- Customizations of standard HTML stylesheet parameters --> - -<!-- no navigation on pages by default, HTML Help provides its own navigation controls --> -<xsl:param name="suppress.navigation" select="1"/> - -<!-- no separate HTML page with index, index is built inside CHM index pane --> -<xsl:param name="generate.index" select="0"/> - -<!-- ==================================================================== --> - -<xsl:param name="htmlhelp.generate.index" select="//indexterm[1]|//db:indexterm[1]|//ng:indexterm[1]"/> - -<!-- Set up HTML Help flag --> -<xsl:variable name="htmlhelp.output" select="1"/> - -<!-- ==================================================================== --> - -<xslo:include xmlns:xslo="http://www.w3.org/1999/XSL/Transform" href="../profiling/profile-mode.xsl"/><xslo:variable xmlns:xslo="http://www.w3.org/1999/XSL/Transform" name="profiled-content"><xslo:choose><xslo:when test="*/self::ng:* or */self::db:*"><xslo:message>Note: namesp. cut : stripped namespace before processing</xslo:message><xslo:variable name="stripped-content"><xslo:apply-templates select="/" mode="stripNS"/></xslo:variable><xslo:message>Note: namesp. cut : processing stripped document</xslo:message><xslo:apply-templates select="exslt:node-set($stripped-content)" mode="profile"/></xslo:when><xslo:otherwise><xslo:apply-templates select="/" mode="profile"/></xslo:otherwise></xslo:choose></xslo:variable><xslo:variable xmlns:xslo="http://www.w3.org/1999/XSL/Transform" name="profiled-nodes" select="exslt:node-set($profiled-content)"/><xsl:template match="/"> - - <!-- * Get a title for current doc so that we let the user --> - <!-- * know what document we are processing at this point. --> - <xsl:variable name="doc.title"> - <xsl:call-template name="get.doc.title"/> - </xsl:variable> - <xsl:choose> - <!-- Hack! If someone hands us a DocBook V5.x or DocBook NG document, - toss the namespace and continue. Use the docbook5 namespaced - stylesheets for DocBook5 if you don't want to use this feature.--> - <xsl:when test="false()"/> - <xsl:otherwise> - <xsl:if test="$htmlhelp.only != 1"> - <xsl:choose> - <xsl:when test="$rootid != ''"> - <xsl:choose> - <xsl:when test="count($profiled-nodes//*[@id=$rootid]) = 0"> - <xsl:message terminate="yes"> - <xsl:text>ID '</xsl:text> - <xsl:value-of select="$rootid"/> - <xsl:text>' not found in document.</xsl:text> - </xsl:message> - </xsl:when> - <xsl:otherwise> - <xsl:message>Formatting from <xsl:value-of select="$rootid"/></xsl:message> - <xsl:apply-templates select="$profiled-nodes//*[@id=$rootid]" mode="process.root"/> - </xsl:otherwise> - </xsl:choose> - </xsl:when> - <xsl:otherwise> - <xsl:if test="$collect.xref.targets = 'yes' or $collect.xref.targets = 'only'"> - <xsl:apply-templates select="$profiled-nodes" mode="collect.targets"/> - </xsl:if> - <xsl:if test="$collect.xref.targets != 'only'"> - <xsl:apply-templates select="$profiled-nodes" mode="process.root"/> - </xsl:if> - </xsl:otherwise> - </xsl:choose> - </xsl:if> - - - <xsl:if test="$collect.xref.targets != 'only'"> - <xsl:call-template name="hhp"/> - <xsl:call-template name="hhc"/> - <xsl:if test="($rootid = '' and //processing-instruction('dbhh')) or ($rootid != '' and $profiled-nodes//*[@id=$rootid]//processing-instruction('dbhh'))"> - <xsl:call-template name="hh-map"/> - <xsl:call-template name="hh-alias"/> - </xsl:if> - <xsl:if test="$htmlhelp.generate.index"> - <xsl:call-template name="hhk"/> - </xsl:if> - </xsl:if> -</xsl:otherwise> -</xsl:choose> -</xsl:template> - -<!-- ==================================================================== --> - -<xsl:template name="hhp"> - <xsl:call-template name="write.text.chunk"> - <xsl:with-param name="filename"> - <xsl:if test="$manifest.in.base.dir != 0"> - <xsl:value-of select="$base.dir"/> - </xsl:if> - <xsl:value-of select="$htmlhelp.hhp"/> - </xsl:with-param> - <xsl:with-param name="method" select="'text'"/> - <xsl:with-param name="content"> - <xsl:call-template name="hhp-main"/> - </xsl:with-param> - <xsl:with-param name="encoding" select="$htmlhelp.encoding"/> - <xsl:with-param name="quiet" select="$chunk.quietly"/> - </xsl:call-template> -</xsl:template> - -<!-- ==================================================================== --> -<xsl:template name="hhp-main"> - - <xsl:variable name="raw.help.title"> - <xsl:choose> - <xsl:when test="$htmlhelp.title = ''"> - <xsl:choose> - <xsl:when test="$rootid != ''"> - <xsl:apply-templates select="$profiled-nodes//*[@id=$rootid]" mode="title.markup"/> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates select="$profiled-nodes/*" mode="title.markup"/> - </xsl:otherwise> - </xsl:choose> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="$htmlhelp.title"/> - </xsl:otherwise> - </xsl:choose> - </xsl:variable> - - <xsl:variable name="help.title" select="normalize-space($raw.help.title)"/> - -<xsl:variable name="default.topic"> - <xsl:choose> - <xsl:when test="$htmlhelp.default.topic != ''"> - <xsl:value-of select="$htmlhelp.default.topic"/> - </xsl:when> - <xsl:otherwise> - <xsl:call-template name="make-relative-filename"> - <xsl:with-param name="base.dir"> - <xsl:if test="$manifest.in.base.dir = 0"> - <xsl:value-of select="$base.dir"/> - </xsl:if> - </xsl:with-param> - <xsl:with-param name="base.name"> - <xsl:choose> - <xsl:when test="$rootid != ''"> - <xsl:apply-templates select="$profiled-nodes//*[@id=$rootid]" mode="chunk-filename"/> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates select="$profiled-nodes" mode="chunk-filename"/> - </xsl:otherwise> - </xsl:choose> - </xsl:with-param> - </xsl:call-template> - </xsl:otherwise> - </xsl:choose> -</xsl:variable> -<xsl:variable name="xnavigation"> - <xsl:text>0x</xsl:text> - <xsl:call-template name="toHex"> - <xsl:with-param name="n" select="9504 + $htmlhelp.show.menu * 65536 + $htmlhelp.show.advanced.search * 131072 + $htmlhelp.show.favorities * 4096 + (1 - $htmlhelp.show.toolbar.text) * 64 + $htmlhelp.remember.window.position * 262144"/> - </xsl:call-template> -</xsl:variable> -<xsl:variable name="xbuttons"> - <xsl:text>0x</xsl:text> - <xsl:call-template name="toHex"> - <xsl:with-param name="n" select="0 + $htmlhelp.button.hideshow * 2 + $htmlhelp.button.back * 4 + $htmlhelp.button.forward * 8 + $htmlhelp.button.stop * 16 + $htmlhelp.button.refresh * 32 + $htmlhelp.button.home * 64 + $htmlhelp.button.options * 4096 + $htmlhelp.button.print * 8192 + $htmlhelp.button.locate * 2048 + $htmlhelp.button.jump1 * 262144 + $htmlhelp.button.jump2 * 524288 + $htmlhelp.button.next * 2097152 + $htmlhelp.button.prev * 4194304 + $htmlhelp.button.zoom * 1048576"/> - </xsl:call-template> -</xsl:variable> -<xsl:text>[OPTIONS] -</xsl:text> -<xsl:if test="$htmlhelp.generate.index"> -<xsl:text>Auto Index=Yes -</xsl:text></xsl:if> -<xsl:if test="$htmlhelp.hhc.binary != 0"> -<xsl:text>Binary TOC=Yes -</xsl:text></xsl:if> -<xsl:text>Compatibility=1.1 or later -Compiled file=</xsl:text><xsl:value-of select="$htmlhelp.chm"/><xsl:text> -Contents file=</xsl:text><xsl:value-of select="$htmlhelp.hhc"/><xsl:text> -</xsl:text> -<xsl:if test="$htmlhelp.hhp.window != ''"> -<xsl:text>Default Window=</xsl:text><xsl:value-of select="$htmlhelp.hhp.window"/><xsl:text> -</xsl:text></xsl:if> -<xsl:text>Default topic=</xsl:text><xsl:value-of select="$default.topic"/> -<xsl:text> -Display compile progress=</xsl:text> - <xsl:choose> - <xsl:when test="$htmlhelp.display.progress != 1"> - <xsl:text>No</xsl:text> - </xsl:when> - <xsl:otherwise> - <xsl:text>Yes</xsl:text> - </xsl:otherwise> - </xsl:choose> -<xsl:text> -Full-text search=Yes -</xsl:text> -<xsl:if test="$htmlhelp.generate.index"> -<xsl:text>Index file=</xsl:text><xsl:value-of select="$htmlhelp.hhk"/><xsl:text> -</xsl:text></xsl:if> -<xsl:text>Language=</xsl:text> -<xsl:for-each select="*"> <!-- Change context from / to root element --> - <xsl:call-template name="gentext.template"> - <xsl:with-param name="context" select="'htmlhelp'"/> - <xsl:with-param name="name" select="'langcode'"/> - </xsl:call-template> -</xsl:for-each> -<xsl:text> -Title=</xsl:text> - <xsl:value-of select="$help.title"/> -<xsl:text> -Enhanced decompilation=</xsl:text> - <xsl:choose> - <xsl:when test="$htmlhelp.enhanced.decompilation != 0"> - <xsl:text>Yes</xsl:text> - </xsl:when> - <xsl:otherwise> - <xsl:text>No</xsl:text> - </xsl:otherwise> - </xsl:choose> - -<xsl:if test="$htmlhelp.hhp.window != ''"> - <xsl:text> - -[WINDOWS] -</xsl:text> -<xsl:value-of select="$htmlhelp.hhp.window"/> -<xsl:text>="</xsl:text> -<xsl:value-of select="$help.title"/> -<xsl:text>","</xsl:text><xsl:value-of select="$htmlhelp.hhc"/> -<xsl:text>",</xsl:text> -<xsl:if test="$htmlhelp.generate.index"> - <xsl:text>"</xsl:text> - <xsl:value-of select="$htmlhelp.hhk"/> - <xsl:text>"</xsl:text> -</xsl:if> -<xsl:text>,"</xsl:text> -<xsl:value-of select="$default.topic"/> -<xsl:text>",</xsl:text> -<xsl:text>"</xsl:text> -<xsl:choose> - <xsl:when test="$htmlhelp.button.home != 0"> - <xsl:value-of select="$htmlhelp.button.home.url"/> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="$default.topic"/> - </xsl:otherwise> -</xsl:choose> -<xsl:text>"</xsl:text> -<xsl:text>,</xsl:text> -<xsl:if test="$htmlhelp.button.jump1 != 0"> - <xsl:text>"</xsl:text> - <xsl:value-of select="$htmlhelp.button.jump1.url"/> - <xsl:text>"</xsl:text> -</xsl:if> -<xsl:text>,</xsl:text> -<xsl:if test="$htmlhelp.button.jump1 != 0"> - <xsl:text>"</xsl:text> - <xsl:value-of select="$htmlhelp.button.jump1.title"/> - <xsl:text>"</xsl:text> -</xsl:if> -<xsl:text>,</xsl:text> -<xsl:if test="$htmlhelp.button.jump2 != 0"> - <xsl:text>"</xsl:text> - <xsl:value-of select="$htmlhelp.button.jump2.url"/> - <xsl:text>"</xsl:text> -</xsl:if> -<xsl:text>,</xsl:text> -<xsl:if test="$htmlhelp.button.jump2 != 0"> - <xsl:text>"</xsl:text> - <xsl:value-of select="$htmlhelp.button.jump2.title"/> - <xsl:text>"</xsl:text> -</xsl:if> -<xsl:text>,</xsl:text> -<xsl:value-of select="$xnavigation"/> -<xsl:text>,</xsl:text><xsl:value-of select="$htmlhelp.hhc.width"/><xsl:text>,</xsl:text> -<xsl:value-of select="$xbuttons"/> -<xsl:text>,</xsl:text><xsl:value-of select="$htmlhelp.window.geometry"/><xsl:text>,,,,,,,0 -</xsl:text> -</xsl:if> - -<!-- - Needs more investigation to generate propetly all fields -<xsl:text>search="</xsl:text> -<xsl:value-of select="normalize-space(//title[1])"/> -<xsl:text>","toc.hhc","index.hhk","</xsl:text> -<xsl:value-of select="$root.filename"/> -<xsl:text>.html","</xsl:text> -<xsl:value-of select="$root.filename"/> -<xsl:text>.html",,,,,</xsl:text> -<xsl:value-of select="$xnavigation"/> -<xsl:text>,</xsl:text> -<xsl:value-of select="$htmlhelp.hhc.width"/> -<xsl:text>,</xsl:text> -<xsl:value-of select="$xbuttons"/> -<xsl:text>,</xsl:text> -<xsl:value-of select="$htmlhelp.window.geometry"/> -<xsl:text>,,,,,2,,0 -</xsl:text> ---> - -<xsl:if test="$htmlhelp.hhp.windows"> - <xsl:value-of select="$htmlhelp.hhp.windows"/> -</xsl:if> -<xsl:text> - -[FILES] -</xsl:text> - -<xsl:choose> - <xsl:when test="$rootid != ''"> - <xsl:apply-templates select="$profiled-nodes//*[@id=$rootid]" mode="enumerate-files"/> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates select="$profiled-nodes" mode="enumerate-files"/> - </xsl:otherwise> -</xsl:choose> - -<xsl:if test="$htmlhelp.enumerate.images"> - <xsl:variable name="imagelist"> - <xsl:choose> - <xsl:when test="$rootid != ''"> - <xsl:apply-templates select="$profiled-nodes//*[@id=$rootid]" mode="enumerate-images"/> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates select="$profiled-nodes" mode="enumerate-images"/> - </xsl:otherwise> - </xsl:choose> - </xsl:variable> - <xsl:choose> - <xsl:when test="$exsl.node.set.available != 0 and function-available('set:distinct')"> - <xsl:for-each select="set:distinct(exsl:node-set($imagelist)/filename)"> - <xsl:value-of select="."/> - <xsl:text> -</xsl:text> - </xsl:for-each> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="$imagelist"/> - </xsl:otherwise> - </xsl:choose> -</xsl:if> - -<xsl:if test="($htmlhelp.force.map.and.alias != 0) or ($rootid = '' and //processing-instruction('dbhh')) or ($rootid != '' and $profiled-nodes//*[@id=$rootid]//processing-instruction('dbhh'))"> - <xsl:text> -[ALIAS] -#include </xsl:text><xsl:value-of select="$htmlhelp.alias.file"/><xsl:text> - -[MAP] -#include </xsl:text><xsl:value-of select="$htmlhelp.map.file"/><xsl:text> -</xsl:text> -</xsl:if> - -<xsl:value-of select="$htmlhelp.hhp.tail"/> -</xsl:template> - -<!-- ==================================================================== --> - -<xsl:template match="graphic|inlinegraphic[@format!='linespecific']" mode="enumerate-images"> - <xsl:call-template name="write.filename.enumerate-images"> - <xsl:with-param name="filename"> - <xsl:call-template name="mediaobject.filename.enumerate-images"> - <xsl:with-param name="object" select="."/> - </xsl:call-template> - </xsl:with-param> - </xsl:call-template> -</xsl:template> - -<xsl:template match="mediaobject|inlinemediaobject" mode="enumerate-images"> - <xsl:call-template name="select.mediaobject.enumerate-images"/> -</xsl:template> - -<xsl:template name="select.mediaobject.enumerate-images"> - <xsl:param name="olist" select="imageobject|imageobjectco |videoobject|audioobject|textobject"/> - <xsl:param name="count">1</xsl:param> - - <xsl:if test="$count <= count($olist)"> - <xsl:variable name="object" select="$olist[position()=$count]"/> - - <xsl:variable name="useobject"> - <xsl:choose> - <!-- The phrase is never used --> - <xsl:when test="name($object)='textobject' and $object/phrase"> - <xsl:text>0</xsl:text> - </xsl:when> - <!-- The first textobject is a reasonable fallback (but not for image in HH) --> - <xsl:when test="name($object)='textobject'"> - <xsl:text>0</xsl:text> - </xsl:when> - <!-- If there's only one object, use it --> - <xsl:when test="$count = 1 and count($olist) = 1"> - <xsl:text>1</xsl:text> - </xsl:when> - <!-- Otherwise, see if this one is a useable graphic --> - <xsl:otherwise> - <xsl:choose> - <!-- peek inside imageobjectco to simplify the test --> - <xsl:when test="local-name($object) = 'imageobjectco'"> - <xsl:call-template name="is.acceptable.mediaobject"> - <xsl:with-param name="object" select="$object/imageobject"/> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <xsl:call-template name="is.acceptable.mediaobject"> - <xsl:with-param name="object" select="$object"/> - </xsl:call-template> - </xsl:otherwise> - </xsl:choose> - </xsl:otherwise> - </xsl:choose> - </xsl:variable> - - <xsl:choose> - <xsl:when test="$useobject='1' and $object[not(*/@format='linespecific')]"> - <xsl:call-template name="write.filename.enumerate-images"> - <xsl:with-param name="filename"> - <xsl:call-template name="mediaobject.filename.enumerate-images"> - <xsl:with-param name="object" select="$object"/> - </xsl:call-template> - </xsl:with-param> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <xsl:call-template name="select.mediaobject.enumerate-images"> - <xsl:with-param name="olist" select="$olist"/> - <xsl:with-param name="count" select="$count + 1"/> - </xsl:call-template> - </xsl:otherwise> - </xsl:choose> - </xsl:if> -</xsl:template> - -<xsl:template name="mediaobject.filename.enumerate-images"> - <xsl:param name="object"/> - - <xsl:variable name="urifilename"> - <xsl:call-template name="mediaobject.filename"> - <xsl:with-param name="object" select="$object"/> - </xsl:call-template> - </xsl:variable> - - <xsl:variable name="filename"> - <xsl:choose> - <xsl:when test="starts-with($urifilename, 'file:/')"> - <xsl:value-of select="substring-after($urifilename, 'file:/')"/> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="$urifilename"/> - </xsl:otherwise> - </xsl:choose> - </xsl:variable> - - <xsl:value-of select="translate($filename, '/', '\')"/> - -</xsl:template> - -<xsl:template match="text()" mode="enumerate-images"> -</xsl:template> - -<xsl:template name="write.filename.enumerate-images"> - <xsl:param name="filename"/> - <xsl:choose> - <xsl:when test="function-available('exsl:node-set') and function-available('set:distinct')"> - <filename><xsl:value-of select="$filename"/></filename> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="$filename"/> - <xsl:text> -</xsl:text> - </xsl:otherwise> - </xsl:choose> -</xsl:template> - -<!-- ==================================================================== --> - -<!-- HHC and HHK files are processed by compiler line by line - and therefore are very sensitive to whitespaces (linefeeds for sure). --> - -<xsl:template name="hhc"> - <xsl:call-template name="write.chunk"> - <xsl:with-param name="filename"> - <xsl:if test="$manifest.in.base.dir != 0"> - <xsl:value-of select="$base.dir"/> - </xsl:if> - <xsl:value-of select="$htmlhelp.hhc"/> - </xsl:with-param> - <xsl:with-param name="indent" select="'no'"/> - <xsl:with-param name="content"> - <xsl:call-template name="hhc-main"/> - </xsl:with-param> - <xsl:with-param name="encoding" select="$htmlhelp.encoding"/> - <xsl:with-param name="quiet" select="$chunk.quietly"/> - </xsl:call-template> -</xsl:template> - -<xsl:template name="hhc-main"> -<HTML><xsl:text> -</xsl:text> - <HEAD/><xsl:text> -</xsl:text> - <BODY><xsl:text> -</xsl:text> - <xsl:if test="$htmlhelp.hhc.folders.instead.books != 0"> - <OBJECT type="text/site properties"><xsl:text> -</xsl:text> - <param name="ImageType" value="Folder"/><xsl:text> -</xsl:text> - </OBJECT><xsl:text> -</xsl:text> - </xsl:if> - <xsl:variable name="content"> - <xsl:choose> - <xsl:when test="$rootid != ''"> - <xsl:apply-templates select="$profiled-nodes//*[@id=$rootid]" mode="hhc"/> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates select="$profiled-nodes" mode="hhc"/> - </xsl:otherwise> - </xsl:choose> - </xsl:variable> - - <xsl:choose> - <xsl:when test="$htmlhelp.hhc.show.root != 0"> - <UL><xsl:text> -</xsl:text> - <xsl:copy-of select="$content"/> - </UL><xsl:text> -</xsl:text> - </xsl:when> - <xsl:otherwise> - <xsl:copy-of select="$content"/> - </xsl:otherwise> - </xsl:choose> - - </BODY> -</HTML> -</xsl:template> - -<xsl:template name="hhc.entry"> - <xsl:param name="title"> - <xsl:if test="$htmlhelp.autolabel=1"> - <xsl:variable name="label.markup"> - <xsl:apply-templates select="." mode="label.markup"/> - </xsl:variable> - <xsl:if test="normalize-space($label.markup)"> - <xsl:value-of select="concat($label.markup,$autotoc.label.separator)"/> - </xsl:if> - </xsl:if> - <xsl:apply-templates select="." mode="title.markup"/> - </xsl:param> - - <LI><OBJECT type="text/sitemap"><xsl:text> -</xsl:text> - <param name="Name"> - <xsl:attribute name="value"> - <xsl:value-of select="normalize-space($title)"/> - </xsl:attribute> - </param><xsl:text> -</xsl:text> - <param name="Local"> - <xsl:attribute name="value"> - <xsl:call-template name="href.target.with.base.dir"/> - </xsl:attribute> - </param> - </OBJECT></LI><xsl:text> -</xsl:text> -</xsl:template> - -<xsl:template match="set" mode="hhc"> - <xsl:if test="$htmlhelp.hhc.show.root != 0"> - <xsl:call-template name="hhc.entry"/> - </xsl:if> - <xsl:if test="book"> - <xsl:variable name="toc.params"> - <xsl:call-template name="find.path.params"> - <xsl:with-param name="table" select="normalize-space($generate.toc)"/> - </xsl:call-template> - </xsl:variable> - <UL> - <xsl:if test="contains($toc.params, 'toc') and $htmlhelp.hhc.show.root = 0"> - <LI><OBJECT type="text/sitemap"><xsl:text> -</xsl:text> - <param name="Name"> - <xsl:attribute name="value"> - <xsl:call-template name="gentext"> - <xsl:with-param name="key" select="'TableofContents'"/> - </xsl:call-template> - </xsl:attribute> - </param><xsl:text> -</xsl:text> - <param name="Local"> - <xsl:attribute name="value"> - <xsl:choose> - <xsl:when test="$chunk.tocs.and.lots != 0"> - <xsl:apply-templates select="." mode="recursive-chunk-filename"> - <xsl:with-param name="recursive" select="true()"/> - </xsl:apply-templates> - <xsl:text>-toc</xsl:text> - <xsl:value-of select="$html.ext"/> - </xsl:when> - <xsl:otherwise> - <xsl:call-template name="href.target.with.base.dir"/> - </xsl:otherwise> - </xsl:choose> - </xsl:attribute> - </param> - </OBJECT></LI><xsl:text> -</xsl:text> - </xsl:if> - <xsl:apply-templates select="book" mode="hhc"/> - </UL><xsl:text> -</xsl:text> - </xsl:if> -</xsl:template> - -<xsl:template match="book" mode="hhc"> - <xsl:if test="$htmlhelp.hhc.show.root != 0 or parent::*"> - <xsl:call-template name="hhc.entry"/> - </xsl:if> - <xsl:if test="part|reference|preface|chapter|appendix|bibliography|article|colophon|glossary"> - <xsl:variable name="toc.params"> - <xsl:call-template name="find.path.params"> - <xsl:with-param name="table" select="normalize-space($generate.toc)"/> - </xsl:call-template> - </xsl:variable> - <UL> - <xsl:if test="contains($toc.params, 'toc') and $htmlhelp.hhc.show.root = 0 and not(parent::*)"> - <LI><OBJECT type="text/sitemap"><xsl:text> -</xsl:text> - <param name="Name"> - <xsl:attribute name="value"> - <xsl:call-template name="gentext"> - <xsl:with-param name="key" select="'TableofContents'"/> - </xsl:call-template> - </xsl:attribute> - </param><xsl:text> -</xsl:text> - <param name="Local"> - <xsl:attribute name="value"> - <xsl:choose> - <xsl:when test="$chunk.tocs.and.lots != 0"> - <xsl:apply-templates select="." mode="recursive-chunk-filename"> - <xsl:with-param name="recursive" select="true()"/> - </xsl:apply-templates> - <xsl:text>-toc</xsl:text> - <xsl:value-of select="$html.ext"/> - </xsl:when> - <xsl:otherwise> - <xsl:call-template name="href.target.with.base.dir"/> - </xsl:otherwise> - </xsl:choose> - </xsl:attribute> - </param> - </OBJECT></LI><xsl:text> -</xsl:text> - </xsl:if> - <xsl:apply-templates select="part|reference|preface|chapter|bibliography|appendix|article|colophon|glossary" mode="hhc"/> - </UL><xsl:text> -</xsl:text> - </xsl:if> -</xsl:template> - -<xsl:template match="part|reference|preface|chapter|bibliography|appendix|article|glossary" mode="hhc"> - <xsl:if test="$htmlhelp.hhc.show.root != 0 or parent::*"> - <xsl:call-template name="hhc.entry"/> - </xsl:if> - <xsl:if test="article|reference|preface|chapter|appendix|refentry|section|sect1|bibliodiv"> - <UL><xsl:text> -</xsl:text> - <xsl:apply-templates select="article|reference|preface|chapter|appendix|refentry|section|sect1|bibliodiv" mode="hhc"/> - </UL> - </xsl:if> -</xsl:template> - -<xsl:template match="section" mode="hhc"> - <xsl:if test="$htmlhelp.hhc.show.root != 0 or parent::*"> - <xsl:call-template name="hhc.entry"/> - </xsl:if> - <xsl:if test="section[count(ancestor::section) < $htmlhelp.hhc.section.depth]|refentry"> - <UL><xsl:text> -</xsl:text> - <xsl:apply-templates select="section|refentry" mode="hhc"/> - </UL> - </xsl:if> -</xsl:template> - -<xsl:template match="sect1" mode="hhc"> - <xsl:if test="$htmlhelp.hhc.show.root != 0 or parent::*"> - <xsl:call-template name="hhc.entry"/> - </xsl:if> - <xsl:if test="sect2[$htmlhelp.hhc.section.depth > 1]|refentry"> - <UL><xsl:text> -</xsl:text> - <xsl:apply-templates select="sect2|refentry" mode="hhc"/> - </UL> - </xsl:if> -</xsl:template> - -<xsl:template match="sect2" mode="hhc"> - <xsl:if test="$htmlhelp.hhc.show.root != 0 or parent::*"> - <xsl:call-template name="hhc.entry"/> - </xsl:if> - <xsl:if test="sect3[$htmlhelp.hhc.section.depth > 2]|refentry"> - <UL><xsl:text> -</xsl:text> - <xsl:apply-templates select="sect3|refentry" mode="hhc"/> - </UL> - </xsl:if> -</xsl:template> - -<xsl:template match="sect3" mode="hhc"> - <xsl:if test="$htmlhelp.hhc.show.root != 0 or parent::*"> - <xsl:call-template name="hhc.entry"/> - </xsl:if> - <xsl:if test="sect4[$htmlhelp.hhc.section.depth > 3]|refentry"> - <UL><xsl:text> -</xsl:text> - <xsl:apply-templates select="sect4|refentry" mode="hhc"/> - </UL> - </xsl:if> -</xsl:template> - -<xsl:template match="sect4" mode="hhc"> - <xsl:if test="$htmlhelp.hhc.show.root != 0 or parent::*"> - <xsl:call-template name="hhc.entry"/> - </xsl:if> - <xsl:if test="sect5[$htmlhelp.hhc.section.depth > 4]|refentry"> - <UL><xsl:text> -</xsl:text> - <xsl:apply-templates select="sect5|refentry" mode="hhc"/> - </UL> - </xsl:if> -</xsl:template> - -<xsl:template match="sect5|refentry|colophon|bibliodiv" mode="hhc"> - <xsl:if test="$htmlhelp.hhc.show.root != 0 or parent::*"> - <xsl:call-template name="hhc.entry"/> - </xsl:if> - <xsl:if test="refentry"> - <UL><xsl:text> -</xsl:text> - <xsl:apply-templates select="refentry" mode="hhc"/> - </UL> - </xsl:if> -</xsl:template> - -<!-- ==================================================================== --> - -<xsl:template match="indexterm"> - <xsl:choose> - <xsl:when test="$htmlhelp.use.hhk = 0"> - - <xsl:variable name="primary" select="normalize-space(primary)"/> - <xsl:variable name="secondary" select="normalize-space(secondary)"/> - <xsl:variable name="tertiary" select="normalize-space(tertiary)"/> - - <xsl:variable name="text"> - <xsl:value-of select="$primary"/> - <xsl:if test="secondary"> - <xsl:text>, </xsl:text> - <xsl:value-of select="$secondary"/> - </xsl:if> - <xsl:if test="tertiary"> - <xsl:text>, </xsl:text> - <xsl:value-of select="$tertiary"/> - </xsl:if> - </xsl:variable> - - <xsl:if test="secondary"> - <xsl:if test="not(//indexterm[normalize-space(primary)=$primary and not(secondary)])"> - <xsl:call-template name="write.indexterm"> - <xsl:with-param name="text" select="$primary"/> - </xsl:call-template> - </xsl:if> - </xsl:if> - - <xsl:if test="tertiary"> - <xsl:if test="not(//indexterm[normalize-space(primary)=$primary and normalize-space(secondary)=$secondary and not(tertiary)])"> - <xsl:call-template name="write.indexterm"> - <xsl:with-param name="text" select="concat($primary, ', ', $secondary)"/> - </xsl:call-template> - </xsl:if> - </xsl:if> - - <xsl:call-template name="write.indexterm"> - <xsl:with-param name="text" select="$text"/> - </xsl:call-template> - - </xsl:when> - <xsl:otherwise> - <a> - <xsl:attribute name="name"> - <xsl:call-template name="object.id"/> - </xsl:attribute> - </a> - </xsl:otherwise> - - </xsl:choose> -</xsl:template> - -<xsl:template name="write.indexterm"> - <xsl:param name="text"/> - <OBJECT type="application/x-oleobject" classid="clsid:1e2a7bd0-dab9-11d0-b93a-00c04fc99f9e"> - <param name="Keyword" value="{$text}"/> - </OBJECT> -</xsl:template> - -<!-- ==================================================================== --> - -<xsl:template name="hhk"> - <xsl:call-template name="write.chunk"> - <xsl:with-param name="filename"> - <xsl:if test="$manifest.in.base.dir != 0"> - <xsl:value-of select="$base.dir"/> - </xsl:if> - <xsl:value-of select="$htmlhelp.hhk"/> - </xsl:with-param> - <xsl:with-param name="indent" select="'no'"/> - <xsl:with-param name="content"><xsl:text disable-output-escaping="yes"><!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<HTML> -<HEAD> -<meta name="GENERATOR" content="Microsoft&reg; HTML Help Workshop 4.1"> -<!-- Sitemap 1.0 --> -</HEAD><BODY> -<OBJECT type="text/site properties"> -</OBJECT> -<UL> -</xsl:text> -<xsl:if test="($htmlhelp.use.hhk != 0) and $htmlhelp.generate.index"> - <xsl:choose> - <xsl:when test="$rootid != ''"> - <xsl:apply-templates select="$profiled-nodes//*[@id=$rootid]" mode="hhk"/> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates select="$profiled-nodes" mode="hhk"/> - </xsl:otherwise> - </xsl:choose> -</xsl:if> -<xsl:text disable-output-escaping="yes"></UL> -</BODY></HTML> -</xsl:text></xsl:with-param> - <xsl:with-param name="encoding" select="$htmlhelp.encoding"/> - <xsl:with-param name="quiet" select="$chunk.quietly"/> - </xsl:call-template> -</xsl:template> - -<xsl:template match="indexterm[@class='endofrange']" mode="hhk"/> - -<xsl:template match="indexterm" mode="hhk"> - <xsl:variable name="primary" select="normalize-space(primary)"/> - <xsl:variable name="secondary" select="normalize-space(secondary)"/> - <xsl:variable name="tertiary" select="normalize-space(tertiary)"/> - - <xsl:call-template name="write.indexterm.hhk"> - <xsl:with-param name="text" select="$primary"/> - <xsl:with-param name="seealso" select="seealso"/> - </xsl:call-template> - - <xsl:if test="secondary"> - <xsl:if test="not(//indexterm[normalize-space(primary)=$primary and not(secondary)])"> - <xsl:call-template name="write.indexterm.hhk"> - <!-- We must create fake entry when there is secondary without primary --> - <xsl:with-param name="text" select="$primary"/> - <xsl:with-param name="seealso" select="$primary"/> - </xsl:call-template> - </xsl:if> - <UL> - <xsl:call-template name="write.indexterm.hhk"> - <xsl:with-param name="text" select="$secondary"/> - <xsl:with-param name="seealso" select="secondary/seealso"/> - </xsl:call-template> - <xsl:if test="tertiary"> - <UL><xsl:text> -</xsl:text> - <xsl:call-template name="write.indexterm.hhk"> - <xsl:with-param name="text" select="$tertiary"/> - <xsl:with-param name="seealso" select="tertiary/seealso"/> - </xsl:call-template> - </UL> - </xsl:if> - </UL> - </xsl:if> - -</xsl:template> - -<xsl:template name="write.indexterm.hhk"> - <xsl:param name="text"/> - <xsl:param name="seealso"/> - - <LI> <OBJECT type="text/sitemap"><xsl:text> -</xsl:text> - <param name="Name"> - <xsl:attribute name="value"> - <xsl:value-of select="$text"/> - </xsl:attribute> - </param><xsl:text> -</xsl:text> - - <xsl:if test="not(seealso)"> - <xsl:variable name="href"> - <xsl:call-template name="href.target.with.base.dir"/> - </xsl:variable> - <xsl:variable name="title"> - <xsl:call-template name="nearest.title"> - <xsl:with-param name="object" select=".."/> - </xsl:call-template> - </xsl:variable> - - <param name="Name"> - <xsl:attribute name="value"> - <xsl:value-of select="$title"/> - </xsl:attribute> - </param><xsl:text> -</xsl:text> - <param name="Local"> - <xsl:attribute name="value"> - <xsl:value-of select="$href"/> - </xsl:attribute> - </param><xsl:text> -</xsl:text> - </xsl:if> - - <xsl:if test="seealso"> - <param name="See Also"> - <xsl:attribute name="value"> - <xsl:value-of select="$seealso"/> - </xsl:attribute> - </param><xsl:text> -</xsl:text> - </xsl:if> - </OBJECT></LI> -</xsl:template> - -<xsl:template match="text()" mode="hhk"/> - -<xsl:template name="nearest.title"> - <xsl:param name="object"/> - <xsl:apply-templates select="$object/ancestor-or-self::*[title][1]" mode="title.markup"/> -</xsl:template> - -<!-- ==================================================================== --> - -<xsl:template name="hh-map"> - <xsl:call-template name="write.text.chunk"> - <xsl:with-param name="filename"> - <xsl:if test="$manifest.in.base.dir != 0"> - <xsl:value-of select="$base.dir"/> - </xsl:if> - <xsl:value-of select="$htmlhelp.map.file"/> - </xsl:with-param> - <xsl:with-param name="method" select="'text'"/> - <xsl:with-param name="content"> - <xsl:choose> - <xsl:when test="$rootid != ''"> - <xsl:apply-templates select="$profiled-nodes//*[@id=$rootid]" mode="hh-map"/> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates select="$profiled-nodes" mode="hh-map"/> - </xsl:otherwise> - </xsl:choose> - </xsl:with-param> - <xsl:with-param name="encoding" select="$htmlhelp.encoding"/> - <xsl:with-param name="quiet" select="$chunk.quietly"/> - </xsl:call-template> -</xsl:template> - -<xsl:template match="processing-instruction('dbhh')" mode="hh-map"> - <xsl:variable name="topicname"> - <xsl:call-template name="pi-attribute"> - <xsl:with-param name="pis" select="."/> - <xsl:with-param name="attribute" select="'topicname'"/> - </xsl:call-template> - </xsl:variable> - <xsl:variable name="topicid"> - <xsl:call-template name="pi-attribute"> - <xsl:with-param name="pis" select="."/> - <xsl:with-param name="attribute" select="'topicid'"/> - </xsl:call-template> - </xsl:variable> - <xsl:text>#define </xsl:text> - <xsl:value-of select="$topicname"/> - <xsl:text> </xsl:text> - <xsl:value-of select="$topicid"/> - <xsl:text> -</xsl:text> -</xsl:template> - -<xsl:template match="text()" mode="hh-map"/> - -<!-- ==================================================================== --> - -<xsl:template name="hh-alias"> - <xsl:call-template name="write.text.chunk"> - <xsl:with-param name="filename"> - <xsl:if test="$manifest.in.base.dir != 0"> - <xsl:value-of select="$base.dir"/> - </xsl:if> - <xsl:value-of select="$htmlhelp.alias.file"/> - </xsl:with-param> - <xsl:with-param name="method" select="'text'"/> - <xsl:with-param name="content"> - <xsl:choose> - <xsl:when test="$rootid != ''"> - <xsl:apply-templates select="$profiled-nodes//*[@id=$rootid]" mode="hh-alias"/> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates select="$profiled-nodes" mode="hh-alias"/> - </xsl:otherwise> - </xsl:choose> - </xsl:with-param> - <xsl:with-param name="encoding" select="$htmlhelp.encoding"/> - <xsl:with-param name="quiet" select="$chunk.quietly"/> - </xsl:call-template> -</xsl:template> - -<xsl:template match="processing-instruction('dbhh')" mode="hh-alias"> - <xsl:variable name="topicname"> - <xsl:call-template name="pi-attribute"> - <xsl:with-param name="pis" select="."/> - <xsl:with-param name="attribute" select="'topicname'"/> - </xsl:call-template> - </xsl:variable> - <xsl:variable name="href"> - <xsl:call-template name="href.target.with.base.dir"> - <xsl:with-param name="object" select=".."/> - </xsl:call-template> - </xsl:variable> - <xsl:value-of select="$topicname"/> - <xsl:text>=</xsl:text> - <!-- Some versions of HH doesn't like fragment identifires, but some does. --> - <!-- <xsl:value-of select="substring-before(concat($href, '#'), '#')"/> --> - <xsl:value-of select="$href"/> - <xsl:text> -</xsl:text> -</xsl:template> - -<xsl:template match="text()" mode="hh-alias"/> - -<!-- ==================================================================== --> -<!-- This code can be used to convert any number to hexadecimal format --> - - <h:hex> - <d>0</d> - <d>1</d> - <d>2</d> - <d>3</d> - <d>4</d> - <d>5</d> - <d>6</d> - <d>7</d> - <d>8</d> - <d>9</d> - <d>A</d> - <d>B</d> - <d>C</d> - <d>D</d> - <d>E</d> - <d>F</d> - </h:hex> - - <xsl:template name="toHex"> - <xsl:param name="n" select="0"/> - <xsl:param name="digit" select="$n mod 16"/> - <xsl:param name="rest" select="floor($n div 16)"/> - <xsl:if test="$rest > 0"> - <xsl:call-template name="toHex"> - <xsl:with-param name="n" select="$rest"/> - </xsl:call-template> - </xsl:if> - <xsl:value-of select="document('')//h:hex/d[$digit+1]"/> - </xsl:template> - -<!-- ==================================================================== --> -<!-- Modification to standard HTML stylesheets --> - -<!-- There are links from ToC pane to bibliodivs, so there must be anchor --> -<xsl:template match="bibliodiv/title"> - <h3 class="{name(.)}"> - <xsl:call-template name="anchor"> - <xsl:with-param name="node" select=".."/> - <xsl:with-param name="conditional" select="0"/> - </xsl:call-template> - <xsl:apply-templates/> - </h3> -</xsl:template> - -</xsl:stylesheet> diff --git a/docbook-xsl-1.75.2/htmlhelp/profile-htmlhelp.xsl b/docbook-xsl-1.75.2/htmlhelp/profile-htmlhelp.xsl deleted file mode 100644 index eddde3b..0000000 --- a/docbook-xsl-1.75.2/htmlhelp/profile-htmlhelp.xsl +++ /dev/null @@ -1,22 +0,0 @@ -<?xml version="1.0"?> -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" - xmlns:doc="http://nwalsh.com/xsl/documentation/1.0" - xmlns:exsl="http://exslt.org/common" - xmlns:set="http://exslt.org/sets" - version="1.0" - exclude-result-prefixes="doc exsl set"> - -<!-- ******************************************************************** - $Id: profile-htmlhelp.xsl 1676 2002-06-12 13:21:54Z kosek $ - ******************************************************************** - - This file is used by htmlhelp.xsl if you want to generate source - files for HTML Help. It is based on the XSL DocBook Stylesheet - distribution (especially on JavaHelp code) from Norman Walsh. - - ******************************************************************** --> - -<xsl:import href="../html/chunk.xsl"/> -<xsl:include href="profile-htmlhelp-common.xsl"/> - -</xsl:stylesheet> diff --git a/docbook-xsl-1.75.2/images/annot-close.png b/docbook-xsl-1.75.2/images/annot-close.png deleted file mode 100644 index b9e1a0d..0000000 Binary files a/docbook-xsl-1.75.2/images/annot-close.png and /dev/null differ diff --git a/docbook-xsl-1.75.2/images/annot-open.png b/docbook-xsl-1.75.2/images/annot-open.png deleted file mode 100644 index 71040ec..0000000 Binary files a/docbook-xsl-1.75.2/images/annot-open.png and /dev/null differ diff --git a/docbook-xsl-1.75.2/images/blank.png b/docbook-xsl-1.75.2/images/blank.png deleted file mode 100644 index 764bf4f..0000000 Binary files a/docbook-xsl-1.75.2/images/blank.png and /dev/null differ diff --git a/docbook-xsl-1.75.2/images/callouts/1.gif b/docbook-xsl-1.75.2/images/callouts/1.gif deleted file mode 100644 index 9e7a87f..0000000 Binary files a/docbook-xsl-1.75.2/images/callouts/1.gif and /dev/null differ diff --git a/docbook-xsl-1.75.2/images/callouts/1.png b/docbook-xsl-1.75.2/images/callouts/1.png deleted file mode 100644 index 7d47343..0000000 Binary files a/docbook-xsl-1.75.2/images/callouts/1.png and /dev/null differ diff --git a/docbook-xsl-1.75.2/images/callouts/1.svg b/docbook-xsl-1.75.2/images/callouts/1.svg deleted file mode 100644 index e2e87dc..0000000 --- a/docbook-xsl-1.75.2/images/callouts/1.svg +++ /dev/null @@ -1,15 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> -<!DOCTYPE svg [ - <!ENTITY ns_svg "http://www.w3.org/2000/svg"> - <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> -]> -<svg version="1.0" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="33" height="33" viewBox="0 0 33 33" - style="overflow:visible;enable-background:new 0 0 33 33;" xml:space="preserve"> -<circle style="stroke:#000000;" cx="16.5" cy="16.5" r="16"/> -<g> - <g style="enable-background:new ;"> - <path style="fill:#FFFFFF;" d="M10.428,10.411h0.56c3.78,0,4.788-1.96,4.872-3.444h3.22v19.88h-3.92V13.154h-4.732V10.411z"/> - </g> -</g> -</svg> diff --git a/docbook-xsl-1.75.2/images/callouts/10.gif b/docbook-xsl-1.75.2/images/callouts/10.gif deleted file mode 100644 index e80f7f8..0000000 Binary files a/docbook-xsl-1.75.2/images/callouts/10.gif and /dev/null differ diff --git a/docbook-xsl-1.75.2/images/callouts/10.png b/docbook-xsl-1.75.2/images/callouts/10.png deleted file mode 100644 index 997bbc8..0000000 Binary files a/docbook-xsl-1.75.2/images/callouts/10.png and /dev/null differ diff --git a/docbook-xsl-1.75.2/images/callouts/10.svg b/docbook-xsl-1.75.2/images/callouts/10.svg deleted file mode 100644 index 4740f58..0000000 --- a/docbook-xsl-1.75.2/images/callouts/10.svg +++ /dev/null @@ -1,18 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> -<!DOCTYPE svg [ - <!ENTITY ns_svg "http://www.w3.org/2000/svg"> - <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> -]> -<svg version="1.0" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="33" height="33" viewBox="0 0 33 33" - style="overflow:visible;enable-background:new 0 0 33 33;" xml:space="preserve"> -<circle style="stroke:#000000;" cx="16.5" cy="16.5" r="16"/> -<g> - <g style="enable-background:new ;"> - <path style="fill:#FFFFFF;" d="M3.815,10.758h0.48c3.24,0,4.104-1.681,4.176-2.952h2.76v17.04h-3.36V13.11H3.815V10.758z"/> - <path style="fill:#FFFFFF;" d="M22.175,7.806c4.009,0,5.904,2.76,5.904,8.736c0,5.975-1.896,8.76-5.904,8.76 - c-4.008,0-5.904-2.785-5.904-8.76C16.271,10.566,18.167,7.806,22.175,7.806z M22.175,22.613c1.921,0,2.448-1.68,2.448-6.071 - c0-4.393-0.527-6.049-2.448-6.049c-1.92,0-2.448,1.656-2.448,6.049C19.727,20.934,20.255,22.613,22.175,22.613z"/> - </g> -</g> -</svg> diff --git a/docbook-xsl-1.75.2/images/callouts/11.gif b/docbook-xsl-1.75.2/images/callouts/11.gif deleted file mode 100644 index 67f91a2..0000000 Binary files a/docbook-xsl-1.75.2/images/callouts/11.gif and /dev/null differ diff --git a/docbook-xsl-1.75.2/images/callouts/11.png b/docbook-xsl-1.75.2/images/callouts/11.png deleted file mode 100644 index ce47dac..0000000 Binary files a/docbook-xsl-1.75.2/images/callouts/11.png and /dev/null differ diff --git a/docbook-xsl-1.75.2/images/callouts/11.svg b/docbook-xsl-1.75.2/images/callouts/11.svg deleted file mode 100644 index 09a0b2c..0000000 --- a/docbook-xsl-1.75.2/images/callouts/11.svg +++ /dev/null @@ -1,16 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> -<!DOCTYPE svg [ - <!ENTITY ns_svg "http://www.w3.org/2000/svg"> - <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> -]> -<svg version="1.0" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="33" height="33" viewBox="0 0 33 33" - style="overflow:visible;enable-background:new 0 0 33 33;" xml:space="preserve"> -<circle style="stroke:#000000;" cx="16.5" cy="16.5" r="16"/> -<g> - <g style="enable-background:new ;"> - <path style="fill:#FFFFFF;" d="M5.209,10.412h0.48c3.24,0,4.104-1.681,4.176-2.952h2.76V24.5h-3.36V12.764H5.209V10.412z"/> - <path style="fill:#FFFFFF;" d="M18.553,10.412h0.48c3.24,0,4.104-1.681,4.176-2.952h2.76V24.5h-3.359V12.764h-4.056V10.412z"/> - </g> -</g> -</svg> diff --git a/docbook-xsl-1.75.2/images/callouts/12.gif b/docbook-xsl-1.75.2/images/callouts/12.gif deleted file mode 100644 index 54c4b42..0000000 Binary files a/docbook-xsl-1.75.2/images/callouts/12.gif and /dev/null differ diff --git a/docbook-xsl-1.75.2/images/callouts/12.png b/docbook-xsl-1.75.2/images/callouts/12.png deleted file mode 100644 index 31daf4e..0000000 Binary files a/docbook-xsl-1.75.2/images/callouts/12.png and /dev/null differ diff --git a/docbook-xsl-1.75.2/images/callouts/12.svg b/docbook-xsl-1.75.2/images/callouts/12.svg deleted file mode 100644 index 9794044..0000000 --- a/docbook-xsl-1.75.2/images/callouts/12.svg +++ /dev/null @@ -1,18 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> -<!DOCTYPE svg [ - <!ENTITY ns_svg "http://www.w3.org/2000/svg"> - <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> -]> -<svg version="1.0" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="33" height="33" viewBox="0 0 33 33" - style="overflow:visible;enable-background:new 0 0 33 33;" xml:space="preserve"> -<circle style="stroke:#000000;" cx="16.5" cy="16.5" r="16"/> -<g> - <g style="enable-background:new ;"> - <path style="fill:#FFFFFF;" d="M4.813,10.412h0.48c3.24,0,4.104-1.681,4.176-2.952h2.76V24.5h-3.36V12.764H4.813V10.412z"/> - <path style="fill:#FFFFFF;" d="M17.316,13.484c0-5.545,4.056-6.024,5.568-6.024c3.265,0,5.856,1.92,5.856,5.376 - c0,2.928-1.896,4.416-3.553,5.544c-2.256,1.584-3.432,2.353-3.815,3.145h7.392V24.5h-11.64c0.12-1.992,0.264-4.08,3.96-6.768 - c3.072-2.232,4.296-3.097,4.296-5.017c0-1.128-0.72-2.424-2.353-2.424c-2.352,0-2.423,1.944-2.447,3.192H17.316z"/> - </g> -</g> -</svg> diff --git a/docbook-xsl-1.75.2/images/callouts/13.gif b/docbook-xsl-1.75.2/images/callouts/13.gif deleted file mode 100644 index dd5d7d9..0000000 Binary files a/docbook-xsl-1.75.2/images/callouts/13.gif and /dev/null differ diff --git a/docbook-xsl-1.75.2/images/callouts/13.png b/docbook-xsl-1.75.2/images/callouts/13.png deleted file mode 100644 index 14021a8..0000000 Binary files a/docbook-xsl-1.75.2/images/callouts/13.png and /dev/null differ diff --git a/docbook-xsl-1.75.2/images/callouts/13.svg b/docbook-xsl-1.75.2/images/callouts/13.svg deleted file mode 100644 index 64268bb..0000000 --- a/docbook-xsl-1.75.2/images/callouts/13.svg +++ /dev/null @@ -1,20 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> -<!DOCTYPE svg [ - <!ENTITY ns_svg "http://www.w3.org/2000/svg"> - <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> -]> -<svg version="1.0" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="33" height="33" viewBox="0 0 33 33" - style="overflow:visible;enable-background:new 0 0 33 33;" xml:space="preserve"> -<circle style="stroke:#000000;" cx="16.5" cy="16.5" r="16"/> -<g> - <g style="enable-background:new ;"> - <path style="fill:#FFFFFF;" d="M3.813,10.412h0.48c3.24,0,4.104-1.681,4.176-2.952h2.76V24.5h-3.36V12.764H3.813V10.412z"/> - <path style="fill:#FFFFFF;" d="M20.611,14.636h0.529c1.008,0,2.855-0.096,2.855-2.304c0-0.624-0.288-2.185-2.137-2.185 - c-2.303,0-2.303,2.185-2.303,2.784h-3.12c0-3.191,1.8-5.472,5.64-5.472c2.279,0,5.279,1.152,5.279,4.752 - c0,1.728-1.08,2.808-2.039,3.24V15.5c0.6,0.168,2.568,1.056,2.568,3.96c0,3.216-2.377,5.496-5.809,5.496 - c-1.607,0-5.928-0.36-5.928-5.688h3.288l-0.024,0.024c0,0.912,0.24,2.976,2.496,2.976c1.344,0,2.52-0.911,2.52-2.808 - c0-2.328-2.256-2.424-3.816-2.424V14.636z"/> - </g> -</g> -</svg> diff --git a/docbook-xsl-1.75.2/images/callouts/14.gif b/docbook-xsl-1.75.2/images/callouts/14.gif deleted file mode 100644 index 3d7a952..0000000 Binary files a/docbook-xsl-1.75.2/images/callouts/14.gif and /dev/null differ diff --git a/docbook-xsl-1.75.2/images/callouts/14.png b/docbook-xsl-1.75.2/images/callouts/14.png deleted file mode 100644 index 64014b7..0000000 Binary files a/docbook-xsl-1.75.2/images/callouts/14.png and /dev/null differ diff --git a/docbook-xsl-1.75.2/images/callouts/14.svg b/docbook-xsl-1.75.2/images/callouts/14.svg deleted file mode 100644 index 469aa97..0000000 --- a/docbook-xsl-1.75.2/images/callouts/14.svg +++ /dev/null @@ -1,17 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> -<!DOCTYPE svg [ - <!ENTITY ns_svg "http://www.w3.org/2000/svg"> - <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> -]> -<svg version="1.0" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="33" height="33" viewBox="0 0 33 33" - style="overflow:visible;enable-background:new 0 0 33 33;" xml:space="preserve"> -<circle style="stroke:#000000;" cx="16.5" cy="16.5" r="16"/> -<g> - <g style="enable-background:new ;"> - <path style="fill:#FFFFFF;" d="M4.146,10.412h0.48c3.24,0,4.104-1.681,4.176-2.952h2.76V24.5h-3.36V12.764H4.146V10.412z"/> - <path style="fill:#FFFFFF;" d="M28.457,20.732h-1.896V24.5h-3.36v-3.768h-6.72v-2.904L22.746,7.46h3.815v10.656h1.896V20.732z - M23.201,18.116c0-4.128,0.072-6.792,0.072-7.32h-0.048l-4.272,7.32H23.201z"/> - </g> -</g> -</svg> diff --git a/docbook-xsl-1.75.2/images/callouts/15.gif b/docbook-xsl-1.75.2/images/callouts/15.gif deleted file mode 100644 index 1c9183d..0000000 Binary files a/docbook-xsl-1.75.2/images/callouts/15.gif and /dev/null differ diff --git a/docbook-xsl-1.75.2/images/callouts/15.png b/docbook-xsl-1.75.2/images/callouts/15.png deleted file mode 100644 index 0d65765..0000000 Binary files a/docbook-xsl-1.75.2/images/callouts/15.png and /dev/null differ diff --git a/docbook-xsl-1.75.2/images/callouts/15.svg b/docbook-xsl-1.75.2/images/callouts/15.svg deleted file mode 100644 index 8202233..0000000 --- a/docbook-xsl-1.75.2/images/callouts/15.svg +++ /dev/null @@ -1,19 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> -<!DOCTYPE svg [ - <!ENTITY ns_svg "http://www.w3.org/2000/svg"> - <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> -]> -<svg version="1.0" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="33" height="33" viewBox="0 0 33 33" - style="overflow:visible;enable-background:new 0 0 33 33;" xml:space="preserve"> -<circle style="stroke:#000000;" cx="16.5" cy="16.5" r="16"/> -<g> - <g style="enable-background:new ;"> - <path style="fill:#FFFFFF;" d="M3.479,11.079h0.48c3.24,0,4.104-1.681,4.176-2.952h2.76v17.04h-3.36V13.43H3.479V11.079z"/> - <path style="fill:#FFFFFF;" d="M19.342,14.943c0.625-0.433,1.392-0.937,3.048-0.937c2.279,0,5.16,1.584,5.16,5.496 - c0,2.328-1.176,6.121-6.192,6.121c-2.664,0-5.376-1.584-5.544-5.016h3.36c0.144,1.391,0.888,2.326,2.376,2.326 - c1.607,0,2.544-1.367,2.544-3.191c0-1.512-0.72-3.047-2.496-3.047c-0.456,0-1.608,0.023-2.256,1.223l-3-0.143l1.176-9.361h9.36 - v2.832h-6.937L19.342,14.943z"/> - </g> -</g> -</svg> diff --git a/docbook-xsl-1.75.2/images/callouts/16.svg b/docbook-xsl-1.75.2/images/callouts/16.svg deleted file mode 100644 index 01d6bf8..0000000 --- a/docbook-xsl-1.75.2/images/callouts/16.svg +++ /dev/null @@ -1,20 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> -<!DOCTYPE svg [ - <!ENTITY ns_svg "http://www.w3.org/2000/svg"> - <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> -]> -<svg version="1.0" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="33" height="33" viewBox="0 0 33 33" - style="overflow:visible;enable-background:new 0 0 33 33;" xml:space="preserve"> -<circle style="stroke:#000000;" cx="16.5" cy="16.5" r="16"/> -<g> - <g style="enable-background:new ;"> - <path style="fill:#FFFFFF;" d="M3.813,10.412h0.48c3.24,0,4.104-1.681,4.176-2.952h2.76V24.5h-3.36V12.764H3.813V10.412z"/> - <path style="fill:#FFFFFF;" d="M24.309,11.78c-0.097-0.96-0.721-1.633-1.969-1.633c-2.184,0-2.688,2.496-2.808,4.704L19.58,14.9 - c0.456-0.624,1.296-1.416,3.191-1.416c3.529,0,5.209,2.712,5.209,5.256c0,3.72-2.28,6.216-5.568,6.216 - c-5.16,0-6.168-4.32-6.168-8.568c0-3.24,0.432-8.928,6.336-8.928c0.695,0,2.641,0.264,3.48,1.104 - c0.936,0.912,1.271,1.416,1.584,3.217H24.309z M22.172,16.172c-1.271,0-2.568,0.792-2.568,2.928c0,1.849,1.056,3.168,2.664,3.168 - c1.225,0,2.353-0.936,2.353-3.239C24.62,16.868,23.229,16.172,22.172,16.172z"/> - </g> -</g> -</svg> diff --git a/docbook-xsl-1.75.2/images/callouts/17.svg b/docbook-xsl-1.75.2/images/callouts/17.svg deleted file mode 100644 index 0a04c55..0000000 --- a/docbook-xsl-1.75.2/images/callouts/17.svg +++ /dev/null @@ -1,17 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> -<!DOCTYPE svg [ - <!ENTITY ns_svg "http://www.w3.org/2000/svg"> - <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> -]> -<svg version="1.0" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="33" height="33" viewBox="0 0 33 33" - style="overflow:visible;enable-background:new 0 0 33 33;" xml:space="preserve"> -<circle style="stroke:#000000;" cx="16.5" cy="16.5" r="16"/> -<g> - <g style="enable-background:new ;"> - <path style="fill:#FFFFFF;" d="M3.479,11.079h0.48c3.24,0,4.104-1.681,4.176-2.952h2.76v17.04h-3.36V13.43H3.479V11.079z"/> - <path style="fill:#FFFFFF;" d="M27.838,11.006c-1.631,1.776-5.807,6.816-6.215,14.16h-3.457c0.36-6.816,4.632-12.24,6.072-13.776 - h-8.472l0.072-2.976h12V11.006z"/> - </g> -</g> -</svg> diff --git a/docbook-xsl-1.75.2/images/callouts/18.svg b/docbook-xsl-1.75.2/images/callouts/18.svg deleted file mode 100644 index 1cb891b..0000000 --- a/docbook-xsl-1.75.2/images/callouts/18.svg +++ /dev/null @@ -1,21 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> -<!DOCTYPE svg [ - <!ENTITY ns_svg "http://www.w3.org/2000/svg"> - <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> -]> -<svg version="1.0" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="33" height="33" viewBox="0 0 33 33" - style="overflow:visible;enable-background:new 0 0 33 33;" xml:space="preserve"> -<circle style="stroke:#000000;" cx="16.5" cy="16.5" r="16"/> -<g> - <g style="enable-background:new ;"> - <path style="fill:#FFFFFF;" d="M4.813,10.412h0.48c3.24,0,4.104-1.681,4.176-2.952h2.76V24.5h-3.36V12.764H4.813V10.412z"/> - <path style="fill:#FFFFFF;" d="M23.172,24.956c-4.392,0-5.904-2.856-5.904-5.185c0-0.863,0-3.119,2.592-4.319 - c-1.344-0.672-2.064-1.752-2.064-3.336c0-2.904,2.328-4.656,5.304-4.656c3.528,0,5.4,2.088,5.4,4.44 - c0,1.464-0.6,2.712-1.968,3.432c1.632,0.815,2.544,1.896,2.544,4.104C29.076,21.596,27.684,24.956,23.172,24.956z M23.124,16.916 - c-1.224,0-2.4,0.792-2.4,2.64c0,1.632,0.936,2.712,2.472,2.712c1.752,0,2.424-1.512,2.424-2.688 - C25.62,18.38,24.996,16.916,23.124,16.916z M25.284,12.26c0-1.296-0.888-2.112-1.968-2.112c-1.512,0-2.305,0.864-2.305,2.112 - c0,1.008,0.744,2.112,2.185,2.112C24.516,14.372,25.284,13.484,25.284,12.26z"/> - </g> -</g> -</svg> diff --git a/docbook-xsl-1.75.2/images/callouts/19.svg b/docbook-xsl-1.75.2/images/callouts/19.svg deleted file mode 100644 index e6fbb17..0000000 --- a/docbook-xsl-1.75.2/images/callouts/19.svg +++ /dev/null @@ -1,20 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> -<!DOCTYPE svg [ - <!ENTITY ns_svg "http://www.w3.org/2000/svg"> - <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> -]> -<svg version="1.0" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="33" height="33" viewBox="0 0 33 33" - style="overflow:visible;enable-background:new 0 0 33 33;" xml:space="preserve"> -<circle style="stroke:#000000;" cx="16.5" cy="16.5" r="16"/> -<g> - <g style="enable-background:new ;"> - <path style="fill:#FFFFFF;" d="M4.146,10.746h0.48c3.24,0,4.104-1.681,4.176-2.952h2.76v17.041h-3.36V13.097H4.146V10.746z"/> - <path style="fill:#FFFFFF;" d="M20.225,20.898v0.023c0.192,1.176,0.936,1.68,1.968,1.68c1.392,0,2.783-1.176,2.808-4.752 - l-0.048-0.049c-0.768,1.152-2.088,1.441-3.24,1.441c-3.264,0-5.16-2.473-5.16-5.329c0-4.176,2.472-6.12,5.808-6.12 - c5.904,0,6,6.36,6,8.76c0,6.601-3.12,8.736-6.192,8.736c-2.904,0-4.992-1.68-5.28-4.391H20.225z M22.434,16.553 - c1.176,0,2.472-0.84,2.472-2.855c0-1.944-0.841-3.145-2.568-3.145c-0.864,0-2.424,0.433-2.424,2.88 - C19.913,16.001,21.161,16.553,22.434,16.553z"/> - </g> -</g> -</svg> diff --git a/docbook-xsl-1.75.2/images/callouts/2.gif b/docbook-xsl-1.75.2/images/callouts/2.gif deleted file mode 100644 index 94d42a3..0000000 Binary files a/docbook-xsl-1.75.2/images/callouts/2.gif and /dev/null differ diff --git a/docbook-xsl-1.75.2/images/callouts/2.png b/docbook-xsl-1.75.2/images/callouts/2.png deleted file mode 100644 index 5d09341..0000000 Binary files a/docbook-xsl-1.75.2/images/callouts/2.png and /dev/null differ diff --git a/docbook-xsl-1.75.2/images/callouts/2.svg b/docbook-xsl-1.75.2/images/callouts/2.svg deleted file mode 100644 index 07d0339..0000000 --- a/docbook-xsl-1.75.2/images/callouts/2.svg +++ /dev/null @@ -1,17 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> -<!DOCTYPE svg [ - <!ENTITY ns_svg "http://www.w3.org/2000/svg"> - <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> -]> -<svg version="1.0" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="33" height="33" viewBox="0 0 33 33" - style="overflow:visible;enable-background:new 0 0 33 33;" xml:space="preserve"> -<circle style="stroke:#000000;" cx="16.5" cy="16.5" r="16"/> -<g> - <g style="enable-background:new ;"> - <path style="fill:#FFFFFF;" d="M9.668,12.328c0-6.469,4.732-7.028,6.496-7.028c3.808,0,6.833,2.24,6.833,6.271 - c0,3.416-2.213,5.152-4.145,6.469c-2.632,1.848-4.004,2.744-4.452,3.668h8.624v3.472H9.444c0.14-2.324,0.308-4.76,4.62-7.896 - c3.584-2.604,5.012-3.612,5.012-5.853c0-1.315-0.84-2.828-2.744-2.828c-2.744,0-2.828,2.269-2.856,3.725H9.668z"/> - </g> -</g> -</svg> diff --git a/docbook-xsl-1.75.2/images/callouts/20.svg b/docbook-xsl-1.75.2/images/callouts/20.svg deleted file mode 100644 index ccbfd40..0000000 --- a/docbook-xsl-1.75.2/images/callouts/20.svg +++ /dev/null @@ -1,20 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> -<!DOCTYPE svg [ - <!ENTITY ns_svg "http://www.w3.org/2000/svg"> - <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> -]> -<svg version="1.0" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="33" height="33" viewBox="0 0 33 33" - style="overflow:visible;enable-background:new 0 0 33 33;" xml:space="preserve"> -<circle style="stroke:#000000;" cx="16.5" cy="16.5" r="16"/> -<g> - <g style="enable-background:new ;"> - <path style="fill:#FFFFFF;" d="M3.972,13.484c0-5.545,4.056-6.024,5.568-6.024c3.264,0,5.856,1.92,5.856,5.376 - c0,2.928-1.896,4.416-3.552,5.544c-2.256,1.584-3.432,2.353-3.816,3.145h7.392V24.5H3.78c0.12-1.992,0.264-4.08,3.96-6.768 - c3.072-2.232,4.296-3.097,4.296-5.017c0-1.128-0.72-2.424-2.352-2.424c-2.352,0-2.424,1.944-2.448,3.192H3.972z"/> - <path style="fill:#FFFFFF;" d="M23.172,7.46c4.008,0,5.904,2.76,5.904,8.736c0,5.976-1.896,8.76-5.904,8.76 - s-5.904-2.784-5.904-8.76C17.268,10.22,19.164,7.46,23.172,7.46z M23.172,22.268c1.92,0,2.448-1.68,2.448-6.071 - c0-4.393-0.528-6.049-2.448-6.049s-2.448,1.656-2.448,6.049C20.724,20.588,21.252,22.268,23.172,22.268z"/> - </g> -</g> -</svg> diff --git a/docbook-xsl-1.75.2/images/callouts/21.svg b/docbook-xsl-1.75.2/images/callouts/21.svg deleted file mode 100644 index 93ec53f..0000000 --- a/docbook-xsl-1.75.2/images/callouts/21.svg +++ /dev/null @@ -1,18 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> -<!DOCTYPE svg [ - <!ENTITY ns_svg "http://www.w3.org/2000/svg"> - <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> -]> -<svg version="1.0" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="33" height="33" viewBox="0 0 33 33" - style="overflow:visible;enable-background:new 0 0 33 33;" xml:space="preserve"> -<circle style="stroke:#000000;" cx="16.5" cy="16.5" r="16"/> -<g> - <g style="enable-background:new ;"> - <path style="fill:#FFFFFF;" d="M5.306,13.151c0-5.545,4.056-6.024,5.568-6.024c3.264,0,5.856,1.92,5.856,5.376 - c0,2.928-1.896,4.416-3.552,5.544c-2.256,1.584-3.432,2.353-3.816,3.145h7.392v2.976H5.114c0.12-1.992,0.264-4.08,3.96-6.768 - c3.072-2.232,4.296-3.097,4.296-5.017c0-1.128-0.72-2.424-2.352-2.424c-2.352,0-2.424,1.944-2.448,3.192H5.306z"/> - <path style="fill:#FFFFFF;" d="M19.49,10.079h0.48c3.239,0,4.104-1.681,4.176-2.952h2.761v17.04h-3.361V12.431H19.49V10.079z"/> - </g> -</g> -</svg> diff --git a/docbook-xsl-1.75.2/images/callouts/22.svg b/docbook-xsl-1.75.2/images/callouts/22.svg deleted file mode 100644 index f48c5f3..0000000 --- a/docbook-xsl-1.75.2/images/callouts/22.svg +++ /dev/null @@ -1,20 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> -<!DOCTYPE svg [ - <!ENTITY ns_svg "http://www.w3.org/2000/svg"> - <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> -]> -<svg version="1.0" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="33" height="33" viewBox="0 0 33 33" - style="overflow:visible;enable-background:new 0 0 33 33;" xml:space="preserve"> -<circle style="stroke:#000000;" cx="16.5" cy="16.5" r="16"/> -<g> - <g style="enable-background:new ;"> - <path style="fill:#FFFFFF;" d="M3.972,13.484c0-5.545,4.056-6.024,5.568-6.024c3.264,0,5.856,1.92,5.856,5.376 - c0,2.928-1.896,4.416-3.552,5.544c-2.256,1.584-3.432,2.353-3.816,3.145h7.392V24.5H3.78c0.12-1.992,0.264-4.08,3.96-6.768 - c3.072-2.232,4.296-3.097,4.296-5.017c0-1.128-0.72-2.424-2.352-2.424c-2.352,0-2.424,1.944-2.448,3.192H3.972z"/> - <path style="fill:#FFFFFF;" d="M17.316,13.484c0-5.545,4.056-6.024,5.568-6.024c3.265,0,5.856,1.92,5.856,5.376 - c0,2.928-1.896,4.416-3.553,5.544c-2.256,1.584-3.432,2.353-3.815,3.145h7.392V24.5h-11.64c0.12-1.992,0.264-4.08,3.96-6.768 - c3.072-2.232,4.296-3.097,4.296-5.017c0-1.128-0.72-2.424-2.353-2.424c-2.352,0-2.423,1.944-2.447,3.192H17.316z"/> - </g> -</g> -</svg> diff --git a/docbook-xsl-1.75.2/images/callouts/23.svg b/docbook-xsl-1.75.2/images/callouts/23.svg deleted file mode 100644 index 6624212..0000000 --- a/docbook-xsl-1.75.2/images/callouts/23.svg +++ /dev/null @@ -1,22 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> -<!DOCTYPE svg [ - <!ENTITY ns_svg "http://www.w3.org/2000/svg"> - <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> -]> -<svg version="1.0" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="33" height="33" viewBox="0 0 33 33" - style="overflow:visible;enable-background:new 0 0 33 33;" xml:space="preserve"> -<circle style="stroke:#000000;" cx="16.5" cy="16.5" r="16"/> -<g> - <g style="enable-background:new ;"> - <path style="fill:#FFFFFF;" d="M3.972,13.484c0-5.545,4.056-6.024,5.568-6.024c3.264,0,5.856,1.92,5.856,5.376 - c0,2.928-1.896,4.416-3.552,5.544c-2.256,1.584-3.432,2.353-3.816,3.145h7.392V24.5H3.78c0.12-1.992,0.264-4.08,3.96-6.768 - c3.072-2.232,4.296-3.097,4.296-5.017c0-1.128-0.72-2.424-2.352-2.424c-2.352,0-2.424,1.944-2.448,3.192H3.972z"/> - <path style="fill:#FFFFFF;" d="M21.612,14.636h0.528c1.008,0,2.855-0.096,2.855-2.304c0-0.624-0.287-2.185-2.136-2.185 - c-2.304,0-2.304,2.185-2.304,2.784h-3.12c0-3.191,1.8-5.472,5.64-5.472c2.28,0,5.28,1.152,5.28,4.752 - c0,1.728-1.08,2.808-2.04,3.24V15.5c0.6,0.168,2.568,1.056,2.568,3.96c0,3.216-2.377,5.496-5.809,5.496 - c-1.607,0-5.928-0.36-5.928-5.688h3.288l-0.024,0.024c0,0.912,0.24,2.976,2.496,2.976c1.344,0,2.521-0.911,2.521-2.808 - c0-2.328-2.257-2.424-3.816-2.424V14.636z"/> - </g> -</g> -</svg> diff --git a/docbook-xsl-1.75.2/images/callouts/24.svg b/docbook-xsl-1.75.2/images/callouts/24.svg deleted file mode 100644 index a3d5525..0000000 --- a/docbook-xsl-1.75.2/images/callouts/24.svg +++ /dev/null @@ -1,19 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> -<!DOCTYPE svg [ - <!ENTITY ns_svg "http://www.w3.org/2000/svg"> - <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> -]> -<svg version="1.0" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="33" height="33" viewBox="0 0 33 33" - style="overflow:visible;enable-background:new 0 0 33 33;" xml:space="preserve"> -<circle style="stroke:#000000;" cx="16.5" cy="16.5" r="16"/> -<g> - <g style="enable-background:new ;"> - <path style="fill:#FFFFFF;" d="M4.972,13.484c0-5.545,4.056-6.024,5.568-6.024c3.264,0,5.856,1.92,5.856,5.376 - c0,2.928-1.896,4.416-3.552,5.544c-2.256,1.584-3.432,2.353-3.816,3.145h7.392V24.5H4.78c0.12-1.992,0.264-4.08,3.96-6.768 - c3.072-2.232,4.296-3.097,4.296-5.017c0-1.128-0.72-2.424-2.352-2.424c-2.352,0-2.424,1.944-2.448,3.192H4.972z"/> - <path style="fill:#FFFFFF;" d="M30.124,20.732h-1.896V24.5h-3.36v-3.768h-6.72v-2.904L24.412,7.46h3.816v10.656h1.896V20.732z - M24.868,18.116c0-4.128,0.071-6.792,0.071-7.32h-0.047l-4.272,7.32H24.868z"/> - </g> -</g> -</svg> diff --git a/docbook-xsl-1.75.2/images/callouts/25.svg b/docbook-xsl-1.75.2/images/callouts/25.svg deleted file mode 100644 index 56614a9..0000000 --- a/docbook-xsl-1.75.2/images/callouts/25.svg +++ /dev/null @@ -1,21 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> -<!DOCTYPE svg [ - <!ENTITY ns_svg "http://www.w3.org/2000/svg"> - <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> -]> -<svg version="1.0" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="33" height="33" viewBox="0 0 33 33" - style="overflow:visible;enable-background:new 0 0 33 33;" xml:space="preserve"> -<circle style="stroke:#000000;" cx="16.5" cy="16.5" r="16"/> -<g> - <g style="enable-background:new ;"> - <path style="fill:#FFFFFF;" d="M3.972,13.484c0-5.545,4.056-6.024,5.568-6.024c3.264,0,5.856,1.92,5.856,5.376 - c0,2.928-1.896,4.416-3.552,5.544c-2.256,1.584-3.432,2.353-3.816,3.145h7.392V24.5H3.78c0.12-1.992,0.264-4.08,3.96-6.768 - c3.072-2.232,4.296-3.097,4.296-5.017c0-1.128-0.72-2.424-2.352-2.424c-2.352,0-2.424,1.944-2.448,3.192H3.972z"/> - <path style="fill:#FFFFFF;" d="M20.676,14.276c0.624-0.433,1.393-0.937,3.049-0.937c2.279,0,5.16,1.584,5.16,5.496 - c0,2.328-1.177,6.12-6.193,6.12c-2.664,0-5.375-1.584-5.543-5.016h3.36c0.144,1.392,0.889,2.327,2.376,2.327 - c1.608,0,2.544-1.367,2.544-3.191c0-1.513-0.72-3.048-2.496-3.048c-0.455,0-1.607,0.023-2.256,1.224l-3-0.144l1.176-9.36h9.36 - v2.832h-6.937L20.676,14.276z"/> - </g> -</g> -</svg> diff --git a/docbook-xsl-1.75.2/images/callouts/26.svg b/docbook-xsl-1.75.2/images/callouts/26.svg deleted file mode 100644 index 56faeac..0000000 --- a/docbook-xsl-1.75.2/images/callouts/26.svg +++ /dev/null @@ -1,22 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> -<!DOCTYPE svg [ - <!ENTITY ns_svg "http://www.w3.org/2000/svg"> - <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> -]> -<svg version="1.0" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="33" height="33" viewBox="0 0 33 33" - style="overflow:visible;enable-background:new 0 0 33 33;" xml:space="preserve"> -<circle style="stroke:#000000;" cx="16.5" cy="16.5" r="16"/> -<g> - <g style="enable-background:new ;"> - <path style="fill:#FFFFFF;" d="M3.972,13.484c0-5.545,4.056-6.024,5.568-6.024c3.264,0,5.856,1.92,5.856,5.376 - c0,2.928-1.896,4.416-3.552,5.544c-2.256,1.584-3.432,2.353-3.816,3.145h7.392V24.5H3.78c0.12-1.992,0.264-4.08,3.96-6.768 - c3.072-2.232,4.296-3.097,4.296-5.017c0-1.128-0.72-2.424-2.352-2.424c-2.352,0-2.424,1.944-2.448,3.192H3.972z"/> - <path style="fill:#FFFFFF;" d="M25.309,11.78c-0.097-0.96-0.721-1.633-1.969-1.633c-2.184,0-2.688,2.496-2.808,4.704L20.58,14.9 - c0.456-0.624,1.296-1.416,3.191-1.416c3.529,0,5.209,2.712,5.209,5.256c0,3.72-2.28,6.216-5.568,6.216 - c-5.16,0-6.168-4.32-6.168-8.568c0-3.24,0.432-8.928,6.336-8.928c0.695,0,2.641,0.264,3.48,1.104 - c0.936,0.912,1.271,1.416,1.584,3.217H25.309z M23.172,16.172c-1.271,0-2.568,0.792-2.568,2.928c0,1.849,1.056,3.168,2.664,3.168 - c1.225,0,2.353-0.936,2.353-3.239C25.62,16.868,24.229,16.172,23.172,16.172z"/> - </g> -</g> -</svg> diff --git a/docbook-xsl-1.75.2/images/callouts/27.svg b/docbook-xsl-1.75.2/images/callouts/27.svg deleted file mode 100644 index a75c812..0000000 --- a/docbook-xsl-1.75.2/images/callouts/27.svg +++ /dev/null @@ -1,19 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> -<!DOCTYPE svg [ - <!ENTITY ns_svg "http://www.w3.org/2000/svg"> - <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> -]> -<svg version="1.0" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="33" height="33" viewBox="0 0 33 33" - style="overflow:visible;enable-background:new 0 0 33 33;" xml:space="preserve"> -<circle style="stroke:#000000;" cx="16.5" cy="16.5" r="16"/> -<g> - <g style="enable-background:new ;"> - <path style="fill:#FFFFFF;" d="M3.972,13.484c0-5.545,4.056-6.024,5.568-6.024c3.264,0,5.856,1.92,5.856,5.376 - c0,2.928-1.896,4.416-3.552,5.544c-2.256,1.584-3.432,2.353-3.816,3.145h7.392V24.5H3.78c0.12-1.992,0.264-4.08,3.96-6.768 - c3.072-2.232,4.296-3.097,4.296-5.017c0-1.128-0.72-2.424-2.352-2.424c-2.352,0-2.424,1.944-2.448,3.192H3.972z"/> - <path style="fill:#FFFFFF;" d="M29.172,10.34c-1.632,1.776-5.808,6.816-6.216,14.16H19.5c0.36-6.816,4.632-12.24,6.072-13.776 - H17.1l0.072-2.976h12V10.34z"/> - </g> -</g> -</svg> diff --git a/docbook-xsl-1.75.2/images/callouts/28.svg b/docbook-xsl-1.75.2/images/callouts/28.svg deleted file mode 100644 index 7f8cf1a..0000000 --- a/docbook-xsl-1.75.2/images/callouts/28.svg +++ /dev/null @@ -1,23 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> -<!DOCTYPE svg [ - <!ENTITY ns_svg "http://www.w3.org/2000/svg"> - <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> -]> -<svg version="1.0" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="33" height="33" viewBox="0 0 33 33" - style="overflow:visible;enable-background:new 0 0 33 33;" xml:space="preserve"> -<circle style="stroke:#000000;" cx="16.5" cy="16.5" r="16"/> -<g> - <g style="enable-background:new ;"> - <path style="fill:#FFFFFF;" d="M3.972,13.484c0-5.545,4.056-6.024,5.568-6.024c3.264,0,5.856,1.92,5.856,5.376 - c0,2.928-1.896,4.416-3.552,5.544c-2.256,1.584-3.432,2.353-3.816,3.145h7.392V24.5H3.78c0.12-1.992,0.264-4.08,3.96-6.768 - c3.072-2.232,4.296-3.097,4.296-5.017c0-1.128-0.72-2.424-2.352-2.424c-2.352,0-2.424,1.944-2.448,3.192H3.972z"/> - <path style="fill:#FFFFFF;" d="M23.172,24.956c-4.392,0-5.904-2.856-5.904-5.185c0-0.863,0-3.119,2.592-4.319 - c-1.344-0.672-2.064-1.752-2.064-3.336c0-2.904,2.328-4.656,5.304-4.656c3.528,0,5.4,2.088,5.4,4.44 - c0,1.464-0.6,2.712-1.968,3.432c1.632,0.815,2.544,1.896,2.544,4.104C29.076,21.596,27.684,24.956,23.172,24.956z M23.124,16.916 - c-1.224,0-2.4,0.792-2.4,2.64c0,1.632,0.936,2.712,2.472,2.712c1.752,0,2.424-1.512,2.424-2.688 - C25.62,18.38,24.996,16.916,23.124,16.916z M25.284,12.26c0-1.296-0.888-2.112-1.968-2.112c-1.512,0-2.305,0.864-2.305,2.112 - c0,1.008,0.744,2.112,2.185,2.112C24.516,14.372,25.284,13.484,25.284,12.26z"/> - </g> -</g> -</svg> diff --git a/docbook-xsl-1.75.2/images/callouts/29.svg b/docbook-xsl-1.75.2/images/callouts/29.svg deleted file mode 100644 index cb63adf..0000000 --- a/docbook-xsl-1.75.2/images/callouts/29.svg +++ /dev/null @@ -1,22 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> -<!DOCTYPE svg [ - <!ENTITY ns_svg "http://www.w3.org/2000/svg"> - <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> -]> -<svg version="1.0" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="33" height="33" viewBox="0 0 33 33" - style="overflow:visible;enable-background:new 0 0 33 33;" xml:space="preserve"> -<circle style="stroke:#000000;" cx="16.5" cy="16.5" r="16"/> -<g> - <g style="enable-background:new ;"> - <path style="fill:#FFFFFF;" d="M3.972,13.484c0-5.545,4.056-6.024,5.568-6.024c3.264,0,5.856,1.92,5.856,5.376 - c0,2.928-1.896,4.416-3.552,5.544c-2.256,1.584-3.432,2.353-3.816,3.145h7.392V24.5H3.78c0.12-1.992,0.264-4.08,3.96-6.768 - c3.072-2.232,4.296-3.097,4.296-5.017c0-1.128-0.72-2.424-2.352-2.424c-2.352,0-2.424,1.944-2.448,3.192H3.972z"/> - <path style="fill:#FFFFFF;" d="M20.893,20.564v0.023c0.191,1.176,0.936,1.68,1.967,1.68c1.393,0,2.785-1.176,2.809-4.752 - l-0.048-0.048c-0.769,1.152-2.088,1.44-3.24,1.44c-3.264,0-5.16-2.473-5.16-5.328c0-4.176,2.472-6.12,5.807-6.12 - c5.904,0,6.001,6.36,6.001,8.76c0,6.601-3.12,8.736-6.192,8.736c-2.904,0-4.992-1.68-5.28-4.392H20.893z M23.1,16.22 - c1.176,0,2.473-0.84,2.473-2.855c0-1.944-0.84-3.145-2.568-3.145c-0.863,0-2.424,0.433-2.424,2.88 - C20.58,15.668,21.828,16.22,23.1,16.22z"/> - </g> -</g> -</svg> diff --git a/docbook-xsl-1.75.2/images/callouts/3.gif b/docbook-xsl-1.75.2/images/callouts/3.gif deleted file mode 100644 index dd3541a..0000000 Binary files a/docbook-xsl-1.75.2/images/callouts/3.gif and /dev/null differ diff --git a/docbook-xsl-1.75.2/images/callouts/3.png b/docbook-xsl-1.75.2/images/callouts/3.png deleted file mode 100644 index ef7b700..0000000 Binary files a/docbook-xsl-1.75.2/images/callouts/3.png and /dev/null differ diff --git a/docbook-xsl-1.75.2/images/callouts/3.svg b/docbook-xsl-1.75.2/images/callouts/3.svg deleted file mode 100644 index 918be80..0000000 --- a/docbook-xsl-1.75.2/images/callouts/3.svg +++ /dev/null @@ -1,19 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> -<!DOCTYPE svg [ - <!ENTITY ns_svg "http://www.w3.org/2000/svg"> - <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> -]> -<svg version="1.0" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="33" height="33" viewBox="0 0 33 33" - style="overflow:visible;enable-background:new 0 0 33 33;" xml:space="preserve"> -<circle style="stroke:#000000;" cx="16.5" cy="16.5" r="16"/> -<g> - <g style="enable-background:new ;"> - <path style="fill:#FFFFFF;" d="M15.127,14.005h0.616c1.176,0,3.332-0.112,3.332-2.688c0-0.728-0.336-2.548-2.492-2.548 - c-2.688,0-2.688,2.548-2.688,3.248h-3.64c0-3.724,2.1-6.384,6.58-6.384c2.66,0,6.16,1.344,6.16,5.544 - c0,2.016-1.261,3.276-2.38,3.78v0.056c0.699,0.196,2.996,1.232,2.996,4.62c0,3.752-2.772,6.412-6.776,6.412 - c-1.876,0-6.916-0.42-6.916-6.636h3.836l-0.028,0.027c0,1.064,0.28,3.473,2.912,3.473c1.568,0,2.94-1.064,2.94-3.276 - c0-2.716-2.632-2.828-4.452-2.828V14.005z"/> - </g> -</g> -</svg> diff --git a/docbook-xsl-1.75.2/images/callouts/30.svg b/docbook-xsl-1.75.2/images/callouts/30.svg deleted file mode 100644 index dc43ba1..0000000 --- a/docbook-xsl-1.75.2/images/callouts/30.svg +++ /dev/null @@ -1,22 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> -<!DOCTYPE svg [ - <!ENTITY ns_svg "http://www.w3.org/2000/svg"> - <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> -]> -<svg version="1.0" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="33" height="33" viewBox="0 0 33 33" - style="overflow:visible;enable-background:new 0 0 33 33;" xml:space="preserve"> -<circle style="stroke:#000000;" cx="16.5" cy="16.5" r="16"/> -<g> - <g style="enable-background:new ;"> - <path style="fill:#FFFFFF;" d="M8.268,14.636h0.528c1.008,0,2.856-0.096,2.856-2.304c0-0.624-0.288-2.185-2.136-2.185 - c-2.304,0-2.304,2.185-2.304,2.784h-3.12c0-3.191,1.8-5.472,5.64-5.472c2.28,0,5.28,1.152,5.28,4.752 - c0,1.728-1.08,2.808-2.04,3.24V15.5c0.6,0.168,2.568,1.056,2.568,3.96c0,3.216-2.376,5.496-5.808,5.496 - c-1.608,0-5.928-0.36-5.928-5.688h3.288l-0.024,0.024c0,0.912,0.24,2.976,2.496,2.976c1.344,0,2.52-0.911,2.52-2.808 - c0-2.328-2.256-2.424-3.816-2.424V14.636z"/> - <path style="fill:#FFFFFF;" d="M23.172,7.46c4.008,0,5.904,2.76,5.904,8.736c0,5.976-1.896,8.76-5.904,8.76 - s-5.904-2.784-5.904-8.76C17.268,10.22,19.164,7.46,23.172,7.46z M23.172,22.268c1.92,0,2.448-1.68,2.448-6.071 - c0-4.393-0.528-6.049-2.448-6.049s-2.448,1.656-2.448,6.049C20.724,20.588,21.252,22.268,23.172,22.268z"/> - </g> -</g> -</svg> diff --git a/docbook-xsl-1.75.2/images/callouts/4.gif b/docbook-xsl-1.75.2/images/callouts/4.gif deleted file mode 100644 index 4bcbf7e..0000000 Binary files a/docbook-xsl-1.75.2/images/callouts/4.gif and /dev/null differ diff --git a/docbook-xsl-1.75.2/images/callouts/4.png b/docbook-xsl-1.75.2/images/callouts/4.png deleted file mode 100644 index adb8364..0000000 Binary files a/docbook-xsl-1.75.2/images/callouts/4.png and /dev/null differ diff --git a/docbook-xsl-1.75.2/images/callouts/4.svg b/docbook-xsl-1.75.2/images/callouts/4.svg deleted file mode 100644 index 8eb6a53..0000000 --- a/docbook-xsl-1.75.2/images/callouts/4.svg +++ /dev/null @@ -1,16 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> -<!DOCTYPE svg [ - <!ENTITY ns_svg "http://www.w3.org/2000/svg"> - <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> -]> -<svg version="1.0" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="33" height="33" viewBox="0 0 33 33" - style="overflow:visible;enable-background:new 0 0 33 33;" xml:space="preserve"> -<circle style="stroke:#000000;" cx="16.5" cy="16.5" r="16"/> -<g> - <g style="enable-background:new ;"> - <path style="fill:#FFFFFF;" d="M21.891,20.784h-2.212v4.396h-3.92v-4.396h-7.84v-3.389L15.227,5.3h4.452v12.432h2.212V20.784z - M15.759,17.731c0-4.815,0.084-7.924,0.084-8.54h-0.056l-4.984,8.54H15.759z"/> - </g> -</g> -</svg> diff --git a/docbook-xsl-1.75.2/images/callouts/5.gif b/docbook-xsl-1.75.2/images/callouts/5.gif deleted file mode 100644 index 1c62b4f..0000000 Binary files a/docbook-xsl-1.75.2/images/callouts/5.gif and /dev/null differ diff --git a/docbook-xsl-1.75.2/images/callouts/5.png b/docbook-xsl-1.75.2/images/callouts/5.png deleted file mode 100644 index 4d7eb46..0000000 Binary files a/docbook-xsl-1.75.2/images/callouts/5.png and /dev/null differ diff --git a/docbook-xsl-1.75.2/images/callouts/5.svg b/docbook-xsl-1.75.2/images/callouts/5.svg deleted file mode 100644 index ca7a9f2..0000000 --- a/docbook-xsl-1.75.2/images/callouts/5.svg +++ /dev/null @@ -1,18 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> -<!DOCTYPE svg [ - <!ENTITY ns_svg "http://www.w3.org/2000/svg"> - <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> -]> -<svg version="1.0" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="33" height="33" viewBox="0 0 33 33" - style="overflow:visible;enable-background:new 0 0 33 33;" xml:space="preserve"> -<circle style="stroke:#000000;" cx="16.5" cy="16.5" r="16"/> -<g> - <g style="enable-background:new ;"> - <path style="fill:#FFFFFF;" d="M14.035,14.252c0.728-0.504,1.624-1.092,3.556-1.092c2.66,0,6.02,1.848,6.02,6.411 - c0,2.717-1.372,7.141-7.224,7.141c-3.108,0-6.272-1.849-6.468-5.853h3.92c0.168,1.624,1.036,2.717,2.772,2.717 - c1.876,0,2.968-1.597,2.968-3.725c0-1.764-0.839-3.556-2.912-3.556c-0.532,0-1.876,0.028-2.632,1.428l-3.5-0.168l1.372-10.92 - h10.919v3.304h-8.092L14.035,14.252z"/> - </g> -</g> -</svg> diff --git a/docbook-xsl-1.75.2/images/callouts/6.gif b/docbook-xsl-1.75.2/images/callouts/6.gif deleted file mode 100644 index 23bc555..0000000 Binary files a/docbook-xsl-1.75.2/images/callouts/6.gif and /dev/null differ diff --git a/docbook-xsl-1.75.2/images/callouts/6.png b/docbook-xsl-1.75.2/images/callouts/6.png deleted file mode 100644 index 0ba694a..0000000 Binary files a/docbook-xsl-1.75.2/images/callouts/6.png and /dev/null differ diff --git a/docbook-xsl-1.75.2/images/callouts/6.svg b/docbook-xsl-1.75.2/images/callouts/6.svg deleted file mode 100644 index 783a0b9..0000000 --- a/docbook-xsl-1.75.2/images/callouts/6.svg +++ /dev/null @@ -1,19 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> -<!DOCTYPE svg [ - <!ENTITY ns_svg "http://www.w3.org/2000/svg"> - <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> -]> -<svg version="1.0" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="33" height="33" viewBox="0 0 33 33" - style="overflow:visible;enable-background:new 0 0 33 33;" xml:space="preserve"> -<circle style="stroke:#000000;" cx="16.5" cy="16.5" r="16"/> -<g> - <g style="enable-background:new ;"> - <path style="fill:#FFFFFF;" d="M19.106,10.673c-0.112-1.12-0.84-1.904-2.296-1.904c-2.548,0-3.136,2.912-3.276,5.488l0.056,0.056 - c0.532-0.728,1.512-1.651,3.724-1.651c4.116,0,6.077,3.164,6.077,6.131c0,4.34-2.66,7.252-6.497,7.252 - c-6.02,0-7.196-5.039-7.196-9.996c0-3.78,0.504-10.416,7.392-10.416c0.812,0,3.08,0.308,4.061,1.288 - c1.092,1.063,1.483,1.652,1.848,3.752H19.106z M16.614,15.797c-1.484,0-2.996,0.924-2.996,3.416c0,2.156,1.232,3.697,3.108,3.697 - c1.428,0,2.745-1.094,2.745-3.781C19.471,16.609,17.846,15.797,16.614,15.797z"/> - </g> -</g> -</svg> diff --git a/docbook-xsl-1.75.2/images/callouts/7.gif b/docbook-xsl-1.75.2/images/callouts/7.gif deleted file mode 100644 index e55ce89..0000000 Binary files a/docbook-xsl-1.75.2/images/callouts/7.gif and /dev/null differ diff --git a/docbook-xsl-1.75.2/images/callouts/7.png b/docbook-xsl-1.75.2/images/callouts/7.png deleted file mode 100644 index 472e96f..0000000 Binary files a/docbook-xsl-1.75.2/images/callouts/7.png and /dev/null differ diff --git a/docbook-xsl-1.75.2/images/callouts/7.svg b/docbook-xsl-1.75.2/images/callouts/7.svg deleted file mode 100644 index 59b3714..0000000 --- a/docbook-xsl-1.75.2/images/callouts/7.svg +++ /dev/null @@ -1,16 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> -<!DOCTYPE svg [ - <!ENTITY ns_svg "http://www.w3.org/2000/svg"> - <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> -]> -<svg version="1.0" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="33" height="33" viewBox="0 0 33 33" - style="overflow:visible;enable-background:new 0 0 33 33;" xml:space="preserve"> -<circle style="stroke:#000000;" cx="16.5" cy="16.5" r="16"/> -<g> - <g style="enable-background:new ;"> - <path style="fill:#FFFFFF;" d="M24.28,9.66c-1.904,2.071-6.776,7.951-7.252,16.52h-4.032c0.42-7.952,5.404-14.28,7.084-16.072 - h-9.884l0.084-3.472h14V9.66z"/> - </g> -</g> -</svg> diff --git a/docbook-xsl-1.75.2/images/callouts/8.gif b/docbook-xsl-1.75.2/images/callouts/8.gif deleted file mode 100644 index 49375e0..0000000 Binary files a/docbook-xsl-1.75.2/images/callouts/8.gif and /dev/null differ diff --git a/docbook-xsl-1.75.2/images/callouts/8.png b/docbook-xsl-1.75.2/images/callouts/8.png deleted file mode 100644 index 5e60973..0000000 Binary files a/docbook-xsl-1.75.2/images/callouts/8.png and /dev/null differ diff --git a/docbook-xsl-1.75.2/images/callouts/8.svg b/docbook-xsl-1.75.2/images/callouts/8.svg deleted file mode 100644 index c1803a3..0000000 --- a/docbook-xsl-1.75.2/images/callouts/8.svg +++ /dev/null @@ -1,20 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> -<!DOCTYPE svg [ - <!ENTITY ns_svg "http://www.w3.org/2000/svg"> - <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> -]> -<svg version="1.0" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="33" height="33" viewBox="0 0 33 33" - style="overflow:visible;enable-background:new 0 0 33 33;" xml:space="preserve"> -<circle style="stroke:#000000;" cx="16.5" cy="16.5" r="16"/> -<g> - <g style="enable-background:new ;"> - <path style="fill:#FFFFFF;" d="M16.28,26.712c-5.124,0-6.888-3.332-6.888-6.048c0-1.009,0-3.641,3.024-5.04 - c-1.568-0.784-2.408-2.044-2.408-3.893c0-3.388,2.716-5.432,6.188-5.432c4.116,0,6.3,2.436,6.3,5.18 - c0,1.708-0.7,3.164-2.296,4.004c1.903,0.952,2.968,2.212,2.968,4.788C23.168,22.792,21.544,26.712,16.28,26.712z M16.224,17.332 - c-1.428,0-2.8,0.924-2.8,3.08c0,1.903,1.092,3.164,2.884,3.164c2.043,0,2.829-1.765,2.829-3.137 - C19.137,19.04,18.408,17.332,16.224,17.332z M18.744,11.899c0-1.512-1.036-2.464-2.296-2.464c-1.764,0-2.688,1.008-2.688,2.464 - c0,1.177,0.868,2.464,2.548,2.464C17.848,14.363,18.744,13.328,18.744,11.899z"/> - </g> -</g> -</svg> diff --git a/docbook-xsl-1.75.2/images/callouts/9.gif b/docbook-xsl-1.75.2/images/callouts/9.gif deleted file mode 100644 index da12a4f..0000000 Binary files a/docbook-xsl-1.75.2/images/callouts/9.gif and /dev/null differ diff --git a/docbook-xsl-1.75.2/images/callouts/9.png b/docbook-xsl-1.75.2/images/callouts/9.png deleted file mode 100644 index a0676d2..0000000 Binary files a/docbook-xsl-1.75.2/images/callouts/9.png and /dev/null differ diff --git a/docbook-xsl-1.75.2/images/callouts/9.svg b/docbook-xsl-1.75.2/images/callouts/9.svg deleted file mode 100644 index bc149d3..0000000 --- a/docbook-xsl-1.75.2/images/callouts/9.svg +++ /dev/null @@ -1,19 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> -<!DOCTYPE svg [ - <!ENTITY ns_svg "http://www.w3.org/2000/svg"> - <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> -]> -<svg version="1.0" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="33" height="33" viewBox="0 0 33 33" - style="overflow:visible;enable-background:new 0 0 33 33;" xml:space="preserve"> -<circle style="stroke:#000000;" cx="16.5" cy="16.5" r="16"/> -<g> - <g style="enable-background:new ;"> - <path style="fill:#FFFFFF;" d="M13.953,21.921v0.027c0.224,1.372,1.092,1.961,2.296,1.961c1.624,0,3.248-1.372,3.276-5.545 - l-0.057-0.056c-0.896,1.344-2.436,1.68-3.78,1.68c-3.808,0-6.02-2.884-6.02-6.216c0-4.872,2.884-7.14,6.776-7.14 - c6.888,0,7,7.42,7,10.22c0,7.7-3.641,10.192-7.224,10.192c-3.388,0-5.824-1.96-6.16-5.124H13.953z M16.529,16.853 - c1.372,0,2.884-0.979,2.884-3.332c0-2.268-0.98-3.668-2.996-3.668c-1.008,0-2.828,0.504-2.828,3.36 - C13.589,16.209,15.045,16.853,16.529,16.853z"/> - </g> -</g> -</svg> diff --git a/docbook-xsl-1.75.2/images/caution.gif b/docbook-xsl-1.75.2/images/caution.gif deleted file mode 100644 index d9f5e5b..0000000 Binary files a/docbook-xsl-1.75.2/images/caution.gif and /dev/null differ diff --git a/docbook-xsl-1.75.2/images/caution.png b/docbook-xsl-1.75.2/images/caution.png deleted file mode 100644 index 5b7809c..0000000 Binary files a/docbook-xsl-1.75.2/images/caution.png and /dev/null differ diff --git a/docbook-xsl-1.75.2/images/caution.svg b/docbook-xsl-1.75.2/images/caution.svg deleted file mode 100644 index dd84f3f..0000000 --- a/docbook-xsl-1.75.2/images/caution.svg +++ /dev/null @@ -1,25 +0,0 @@ -<?xml version="1.0" encoding="iso-8859-1"?> -<!-- Generator: Adobe Illustrator 9.0, SVG Export Plug-In --> -<!DOCTYPE svg [ - <!ENTITY st0 "fill:#FFFFFF;stroke:none;"> - <!ENTITY st1 "fill:#FFFFFF;stroke-width:6.6112;stroke-linecap:round;stroke-linejoin:round;"> - <!ENTITY st2 "stroke:#FFFFFF;stroke-width:6.6112;"> - <!ENTITY st3 "fill:none;stroke:none;"> - <!ENTITY st4 "fill-rule:nonzero;clip-rule:nonzero;stroke:#000000;stroke-miterlimit:4;"> - <!ENTITY st5 "stroke:none;"> -]> -<svg width="48pt" height="48pt" viewBox="0 0 48 48" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"> - <g id="Layer_x0020_3" style="&st4;"> - <g> - <path style="&st2;" d="M41.7,35.3L26.6,9.4c-0.6-1-1.7-1.7-2.9-1.6c-1.2,0-2.3,0.7-2.9,1.7L6.3,35.4c-0.6,1-0.6,2.3,0,3.3c0.6,1,1.7,1.6,2.9,1.6h29.6c1.2,0,2.3-0.6,2.9-1.7c0.6-1,0.6-2.3,0-3.3z"/> - <path style="&st1;" d="M23.7,11L9.2,37h29.6L23.7,11z"/> - <path style="&st0;" d="M23.7,11.9L10.3,36.1h27.5l-14-24.1z"/> - <g> - <path style="&st5;" d="M24.1,34c-1.1,0-1.8-0.8-1.8-1.8c0-1.1,0.7-1.8,1.8-1.8c1.1,0,1.8,0.7,1.8,1.8c0,1-0.7,1.8-1.8,1.8h0z M22.9,29.3l-0.4-9.1h3.2l-0.4,9.1h-2.3z"/> - </g> - </g> - </g> - <g id="crop_x0020_marks" style="&st4;"> - <path style="&st3;" d="M48,48H0V0h48v48z"/> - </g> -</svg> diff --git a/docbook-xsl-1.75.2/images/caution.tif b/docbook-xsl-1.75.2/images/caution.tif deleted file mode 100644 index 4a28294..0000000 Binary files a/docbook-xsl-1.75.2/images/caution.tif and /dev/null differ diff --git a/docbook-xsl-1.75.2/images/colorsvg/caution.svg b/docbook-xsl-1.75.2/images/colorsvg/caution.svg deleted file mode 100644 index 7a0db0b..0000000 --- a/docbook-xsl-1.75.2/images/colorsvg/caution.svg +++ /dev/null @@ -1,141 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [ - <!ENTITY ns_svg "http://www.w3.org/2000/svg"> - <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> -]> -<svg version="1.1" id="caution" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="48" height="48" viewBox="0 0 48 48" - overflow="visible" enable-background="new 0 0 48 48" xml:space="preserve"> -<g> - <g> - <g> - <path stroke="#FFFFFF" stroke-width="6.6112" d="M41.629,36.303L26.527,10.403c-0.602-1-1.698-1.7-2.898-1.6 - c-1.2,0-2.3,0.7-2.9,1.7l-14.5,25.899c-0.6,1-0.6,2.301,0,3.301s1.7,1.6,2.9,1.6h29.599c1.199,0,2.301-0.6,2.899-1.699 - C42.229,38.604,42.229,37.303,41.629,36.303L41.629,36.303z"/> - <g> - <path fill="#FFFFFF" stroke="#FFCC00" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" d="M23.581,12.003 - l-14.5,26H38.68L23.581,12.003z"/> - <polygon fill="#FFFFFF" stroke="#FFCD00" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 23.582,12.054 9.137,37.953 38.622,37.953 "/> - <polygon fill="#FFFFFF" stroke="#FFCE00" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 23.583,12.104 9.193,37.9 38.566,37.9 "/> - <polygon fill="#FFFFFF" stroke="#FFCF00" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 23.583,12.153 9.25,37.854 38.508,37.854 "/> - <polygon fill="#FFFFFF" stroke="#FFD000" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 23.584,12.205 9.309,37.805 38.451,37.805 "/> - <polygon fill="#FFFFFF" stroke="#FFD100" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 23.585,12.253 9.364,37.753 38.395,37.753 "/> - <polygon fill="#FFFFFF" stroke="#FFD200" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 23.586,12.304 9.421,37.703 38.337,37.703 "/> - <polygon fill="#FFFFFF" stroke="#FFD300" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 23.587,12.354 9.479,37.652 38.279,37.652 "/> - <polygon fill="#FFFFFF" stroke="#FFD400" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 23.588,12.403 9.537,37.604 38.223,37.604 "/> - <polygon fill="#FFFFFF" stroke="#FFD500" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 23.589,12.455 9.591,37.553 38.166,37.553 "/> - <polygon fill="#FFFFFF" stroke="#FFD600" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 23.591,12.503 9.649,37.503 38.109,37.503 "/> - <polygon fill="#FFFFFF" stroke="#FFD700" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 23.591,12.554 9.707,37.453 38.053,37.453 "/> - <polygon fill="#FFFFFF" stroke="#FFD800" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 23.593,12.604 9.764,37.402 37.996,37.402 "/> - <polygon fill="#FFFFFF" stroke="#FFD900" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 23.594,12.653 9.819,37.354 37.939,37.354 "/> - <polygon fill="#FFFFFF" stroke="#FFDA00" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 23.596,12.705 9.876,37.303 37.882,37.303 "/> - <polygon fill="#FFFFFF" stroke="#FFDB00" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 23.597,12.753 9.935,37.253 37.824,37.253 "/> - <polygon fill="#FFFFFF" stroke="#FFDC00" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 23.599,12.804 9.991,37.203 37.768,37.203 "/> - <polygon fill="#FFFFFF" stroke="#FFDD00" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 23.601,12.854 10.047,37.152 37.711,37.152 "/> - <polygon fill="#FFFFFF" stroke="#FFDE00" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 23.602,12.903 10.104,37.104 37.654,37.104 "/> - <polygon fill="#FFFFFF" stroke="#FFDF00" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 23.603,12.955 10.163,37.053 37.598,37.053 "/> - <polygon fill="#FFFFFF" stroke="#FFE000" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 23.604,13.003 10.218,37.003 37.54,37.003 "/> - <polygon fill="#FFFFFF" stroke="#FFE100" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 23.604,13.054 10.275,36.953 37.482,36.953 "/> - <polygon fill="#FFFFFF" stroke="#FFE200" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 23.605,13.104 10.333,36.902 37.427,36.902 "/> - <polygon fill="#FFFFFF" stroke="#FFE300" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 23.606,13.153 10.389,36.854 37.37,36.854 "/> - <polygon fill="#FFFFFF" stroke="#FFE400" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 23.607,13.205 10.445,36.805 37.312,36.805 "/> - <polygon fill="#FFFFFF" stroke="#FFE500" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 23.608,13.253 10.502,36.753 37.256,36.753 "/> - <polygon fill="#FFFFFF" stroke="#FFE600" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 23.609,13.304 10.561,36.703 37.197,36.703 "/> - <polygon fill="#FFFFFF" stroke="#FFE600" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 23.61,13.354 10.617,36.652 37.143,36.652 "/> - <polygon fill="#FFFFFF" stroke="#FFE700" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 23.611,13.403 10.673,36.604 37.085,36.604 "/> - <polygon fill="#FFFFFF" stroke="#FFE800" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 23.613,13.455 10.73,36.553 37.027,36.553 "/> - <polygon fill="#FFFFFF" stroke="#FFE900" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 23.614,13.503 10.789,36.503 36.971,36.503 "/> - <polygon fill="#FFFFFF" stroke="#FFEA00" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 23.616,13.554 10.844,36.453 36.914,36.453 "/> - <polygon fill="#FFFFFF" stroke="#FFEB00" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 23.617,13.604 10.901,36.402 36.857,36.402 "/> - <polygon fill="#FFFFFF" stroke="#FFEC00" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 23.618,13.653 10.958,36.354 36.8,36.354 "/> - <polygon fill="#FFFFFF" stroke="#FFED00" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 23.619,13.705 11.017,36.303 36.742,36.303 "/> - <polygon fill="#FFFFFF" stroke="#FFEE00" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 23.622,13.753 11.071,36.253 36.688,36.253 "/> - <polygon fill="#FFFFFF" stroke="#FFEF00" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 23.623,13.804 11.129,36.203 36.63,36.203 "/> - <polygon fill="#FFFFFF" stroke="#FFF000" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 23.624,13.854 11.188,36.152 36.572,36.152 "/> - <polygon fill="#FFFFFF" stroke="#FFF100" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 23.625,13.903 11.243,36.104 36.516,36.104 "/> - <polygon fill="#FFFFFF" stroke="#FFF200" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 23.625,13.955 11.299,36.053 36.459,36.053 "/> - <polygon fill="#FFFFFF" stroke="#FFF300" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 23.626,14.003 11.356,36.003 36.4,36.003 "/> - <polygon fill="#FFFFFF" stroke="#FFF400" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 23.627,14.054 11.415,35.953 36.346,35.953 "/> - <polygon fill="#FFFFFF" stroke="#FFF500" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 23.628,14.104 11.471,35.902 36.288,35.902 "/> - <polygon fill="#FFFFFF" stroke="#FFF600" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 23.629,14.153 11.527,35.854 36.232,35.854 "/> - <polygon fill="#FFFFFF" stroke="#FFF700" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 23.63,14.205 11.584,35.805 36.174,35.805 "/> - <polygon fill="#FFFFFF" stroke="#FFF800" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 23.631,14.253 11.643,35.753 36.117,35.753 "/> - <polygon fill="#FFFFFF" stroke="#FFF900" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 23.632,14.304 11.699,35.703 36.061,35.703 "/> - <polygon fill="#FFFFFF" stroke="#FFFA00" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 23.633,14.354 11.754,35.652 36.003,35.652 "/> - <polygon fill="#FFFFFF" stroke="#FFFB00" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 23.635,14.403 11.812,35.604 35.945,35.604 "/> - <polygon fill="#FFFFFF" stroke="#FFFC00" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 23.637,14.455 11.869,35.555 35.891,35.555 "/> - <polygon fill="#FFFFFF" stroke="#FFFD00" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 23.638,14.503 11.925,35.503 35.833,35.503 "/> - <polygon fill="#FFFFFF" stroke="#FFFE00" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 23.639,14.554 11.982,35.453 35.775,35.453 "/> - <path fill="#FFFFFF" stroke="#FFFF00" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" d="M23.64,14.604 - l-11.6,20.8h23.678L23.64,14.604z"/> - </g> - </g> - - <linearGradient id="XMLID_50_" gradientUnits="userSpaceOnUse" x1="395.8457" y1="758.1504" x2="395.8457" y2="785.7822" gradientTransform="matrix(1 0 0 1 -372 -747)"> - <stop offset="0" style="stop-color:#FFFFFF"/> - <stop offset="1" style="stop-color:#FFFF00"/> - </linearGradient> - <path fill="url(#XMLID_50_)" d="M38.891,34.532L26.055,12.519c-0.511-0.85-1.443-1.445-2.462-1.36 - c-1.02,0-1.955,0.595-2.465,1.445L8.8,34.617c-0.51,0.851-0.51,1.953,0,2.805c0.51,0.852,1.445,1.36,2.465,1.36h25.158 - c1.021,0,1.956-0.511,2.467-1.445C39.4,36.484,39.4,35.382,38.891,34.532L38.891,34.532z"/> - </g> - <g> - <path d="M23.929,33.948c-1.1,0-1.8-0.8-1.8-1.8c0-1.102,0.7-1.801,1.8-1.801c1.101,0,1.8,0.699,1.8,1.801 - C25.729,33.148,25.029,33.948,23.929,33.948L23.929,33.948z M22.729,29.248l-0.4-9.1h3.2l-0.399,9.1h-2.297H22.729z"/> - </g> -</g> -<g id="crop_x0020_marks"> - <path fill="none" d="M47.93,49.049H-0.071v-48H47.93V49.049z"/> -</g> -</svg> diff --git a/docbook-xsl-1.75.2/images/colorsvg/home.svg b/docbook-xsl-1.75.2/images/colorsvg/home.svg deleted file mode 100644 index d6dbc01..0000000 --- a/docbook-xsl-1.75.2/images/colorsvg/home.svg +++ /dev/null @@ -1,498 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [ - <!ENTITY ns_svg "http://www.w3.org/2000/svg"> - <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> -]> -<svg version="1.1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="48" height="48" viewBox="0 0 48 48" - overflow="visible" enable-background="new 0 0 48 48" xml:space="preserve"> -<g id="Home"> - <g> - <g id="Chimney"> - <g> - <path fill="#660000" d="M30.417,17.563c2.776,2.348,8.258,0.835,7.742,0.434c0-1.2,0-6.9,0-6.9c0-1.2-0.802-2-2-2h-4.802 - c-1,0-1.698,0.6-1.899,1.5C28.648,9.916,28.359,15.822,30.417,17.563z"/> - <path fill="#670000" d="M30.422,17.556c2.771,2.343,8.244,0.833,7.729,0.433c0-1.199,0-6.889,0-6.889 - c0-1.198-0.799-1.997-1.996-1.997h-4.793c-0.998,0-1.695,0.599-1.896,1.498C28.657,9.921,28.368,15.818,30.422,17.556z"/> - <path fill="#680000" d="M30.428,17.548c2.768,2.34,8.229,0.832,7.717,0.432c0-1.196,0-6.876,0-6.876 - c0-1.196-0.799-1.993-1.994-1.993h-4.783c-0.997,0-1.693,0.598-1.895,1.495C28.665,9.927,28.377,15.813,30.428,17.548z"/> - <path fill="#690000" d="M30.434,17.541c2.762,2.336,8.215,0.831,7.703,0.432c0-1.194,0-6.865,0-6.865 - c0-1.194-0.798-1.989-1.99-1.989H31.37c-0.994,0-1.69,0.596-1.892,1.492C28.674,9.932,28.387,15.809,30.434,17.541z"/> - <path fill="#6B0000" d="M30.438,17.533c2.758,2.332,8.203,0.829,7.69,0.431c0-1.192,0-6.853,0-6.853 - c0-1.192-0.796-1.987-1.987-1.987h-4.768c-0.993,0-1.688,0.596-1.889,1.49C28.682,9.937,28.395,15.804,30.438,17.533z"/> - <path fill="#6C0000" d="M30.443,17.525c2.752,2.328,8.188,0.828,7.677,0.43c0-1.19,0-6.841,0-6.841 - c0-1.19-0.795-1.983-1.983-1.983h-4.76c-0.99,0-1.686,0.595-1.885,1.487C28.689,9.943,28.402,15.799,30.443,17.525z"/> - <path fill="#6D0000" d="M30.448,17.518c2.747,2.323,8.174,0.826,7.663,0.429c0-1.188,0-6.829,0-6.829 - c0-1.188-0.793-1.979-1.979-1.979h-4.751c-0.99,0-1.682,0.593-1.881,1.485C28.698,9.949,28.412,15.795,30.448,17.518z"/> - <path fill="#6E0000" d="M30.454,17.51c2.743,2.32,8.159,0.825,7.649,0.429c0-1.187,0-6.818,0-6.818 - c0-1.186-0.791-1.976-1.977-1.976h-4.744c-0.986,0-1.679,0.592-1.877,1.482C28.707,9.954,28.421,15.791,30.454,17.51z"/> - <path fill="#6F0000" d="M30.46,17.503c2.738,2.315,8.146,0.824,7.636,0.427c0-1.184,0-6.806,0-6.806 - c0-1.184-0.789-1.973-1.972-1.973h-4.735c-0.986,0-1.677,0.592-1.875,1.479C28.715,9.96,28.43,15.786,30.46,17.503z"/> - <path fill="#700000" d="M30.465,17.495c2.733,2.312,8.131,0.822,7.623,0.427c0-1.182,0-6.794,0-6.794 - c0-1.182-0.789-1.969-1.969-1.969h-4.729c-0.983,0-1.673,0.59-1.871,1.477C28.725,9.965,28.438,15.781,30.465,17.495z"/> - <path fill="#720000" d="M30.471,17.487c2.729,2.308,8.116,0.821,7.609,0.426c0-1.18,0-6.782,0-6.782 - c0-1.179-0.787-1.966-1.967-1.966h-4.719c-0.982,0-1.67,0.589-1.867,1.475C28.73,9.97,28.447,15.776,30.471,17.487z"/> - <path fill="#730000" d="M30.477,17.48c2.724,2.304,8.103,0.819,7.597,0.426c0-1.178,0-6.771,0-6.771 - c0-1.177-0.786-1.962-1.962-1.962H31.4c-0.981,0-1.668,0.589-1.865,1.472C28.74,9.976,28.456,15.772,30.477,17.48z"/> - <path fill="#740000" d="M30.48,17.473c2.72,2.299,8.088,0.817,7.584,0.424c0-1.176,0-6.759,0-6.759 - c0-1.175-0.785-1.959-1.959-1.959h-4.703c-0.979,0-1.664,0.587-1.861,1.469C28.748,9.981,28.465,15.767,30.48,17.473z"/> - <path fill="#750000" d="M30.484,17.465c2.717,2.295,8.076,0.816,7.572,0.424c0-1.174,0-6.747,0-6.747 - c0-1.174-0.783-1.956-1.957-1.956h-4.693c-0.979,0-1.661,0.586-1.858,1.467C28.757,9.987,28.475,15.763,30.484,17.465z"/> - <path fill="#760000" d="M30.491,17.458c2.71,2.292,8.061,0.815,7.558,0.423c0-1.172,0-6.735,0-6.735 - c0-1.171-0.781-1.953-1.953-1.953H31.41c-0.977,0-1.658,0.585-1.854,1.465C28.766,9.993,28.482,15.758,30.491,17.458z"/> - <path fill="#770000" d="M30.496,17.45c2.706,2.288,8.047,0.813,7.545,0.422c0-1.17,0-6.724,0-6.724 - c0-1.169-0.781-1.949-1.949-1.949h-4.678c-0.975,0-1.656,0.584-1.854,1.461C28.773,9.998,28.491,15.754,30.496,17.45z"/> - <path fill="#790000" d="M30.502,17.442c2.701,2.284,8.032,0.812,7.531,0.422c0-1.167,0-6.712,0-6.712 - c0-1.167-0.779-1.945-1.945-1.945h-4.671c-0.972,0-1.651,0.583-1.849,1.458C28.781,10.004,28.5,15.749,30.502,17.442z"/> - <path fill="#7A0000" d="M30.507,17.435c2.696,2.28,8.019,0.811,7.519,0.421c0-1.166,0-6.7,0-6.7 - c0-1.166-0.777-1.942-1.942-1.942h-4.661c-0.971,0-1.648,0.583-1.845,1.457C28.79,10.009,28.509,15.745,30.507,17.435z"/> - <path fill="#7B0000" d="M30.514,17.427c2.689,2.276,8.004,0.81,7.504,0.42c0-1.164,0-6.688,0-6.688 - c0-1.163-0.776-1.938-1.938-1.938h-4.653c-0.97,0-1.646,0.582-1.842,1.454C28.798,10.014,28.518,15.74,30.514,17.427z"/> - <path fill="#7C0000" d="M30.518,17.42c2.688,2.271,7.99,0.808,7.491,0.419c0-1.162,0-6.677,0-6.677 - c0-1.161-0.774-1.935-1.935-1.935h-4.646c-0.968,0-1.645,0.58-1.839,1.451C28.807,10.02,28.525,15.736,30.518,17.42z"/> - <path fill="#7D0000" d="M30.521,17.412c2.683,2.268,7.978,0.806,7.479,0.418c0-1.159,0-6.665,0-6.665 - c0-1.159-0.774-1.932-1.933-1.932h-4.637c-0.967,0-1.642,0.58-1.836,1.449C28.814,10.025,28.535,15.73,30.521,17.412z"/> - <path fill="#7E0000" d="M30.527,17.404c2.678,2.264,7.963,0.805,7.466,0.418c0-1.157,0-6.652,0-6.652 - c0-1.158-0.772-1.929-1.929-1.929h-4.629c-0.965,0-1.639,0.578-1.832,1.446C28.823,10.031,28.544,15.726,30.527,17.404z"/> - <path fill="#800000" d="M30.533,17.397c2.673,2.26,7.947,0.804,7.451,0.417c0-1.155,0-6.641,0-6.641 - c0-1.155-0.771-1.925-1.924-1.925h-4.621c-0.963,0-1.635,0.577-1.83,1.443C28.831,10.037,28.553,15.722,30.533,17.397z"/> - <path fill="#810000" d="M30.538,17.39c2.668,2.255,7.935,0.802,7.438,0.417c0-1.153,0-6.629,0-6.629 - c0-1.153-0.77-1.922-1.922-1.922h-4.611c-0.961,0-1.633,0.576-1.826,1.442C28.84,10.042,28.562,15.717,30.538,17.39z"/> - <path fill="#820000" d="M30.544,17.382c2.663,2.252,7.92,0.801,7.427,0.416c0-1.151,0-6.618,0-6.618 - c0-1.151-0.77-1.918-1.92-1.918h-4.604c-0.961,0-1.631,0.575-1.823,1.438C28.85,10.047,28.57,15.713,30.544,17.382z"/> - <path fill="#830000" d="M30.549,17.375c2.659,2.248,7.906,0.799,7.413,0.415c0-1.149,0-6.606,0-6.606 - c0-1.149-0.769-1.915-1.915-1.915H31.45c-0.957,0-1.626,0.574-1.819,1.436C28.855,10.053,28.579,15.708,30.549,17.375z"/> - <path fill="#840000" d="M30.555,17.367c2.653,2.243,7.893,0.797,7.399,0.414c0-1.147,0-6.594,0-6.594 - c0-1.147-0.767-1.911-1.912-1.911h-4.588c-0.955,0-1.623,0.573-1.815,1.434C28.865,10.059,28.588,15.704,30.555,17.367z"/> - <path fill="#850000" d="M30.561,17.359c2.648,2.24,7.877,0.797,7.387,0.414c0-1.145,0-6.583,0-6.583 - c0-1.145-0.766-1.908-1.908-1.908h-4.58c-0.954,0-1.621,0.572-1.812,1.431C28.873,10.064,28.598,15.699,30.561,17.359z"/> - <path fill="#860000" d="M30.564,17.352c2.645,2.235,7.863,0.795,7.373,0.413c0-1.143,0-6.57,0-6.57 - c0-1.143-0.764-1.905-1.904-1.905h-4.571c-0.953,0-1.618,0.571-1.81,1.428C28.882,10.069,28.605,15.694,30.564,17.352z"/> - <path fill="#880000" d="M30.57,17.344c2.64,2.232,7.85,0.794,7.359,0.412c0-1.141,0-6.559,0-6.559 - c0-1.141-0.762-1.901-1.902-1.901h-4.562c-0.949,0-1.613,0.57-1.806,1.426C28.891,10.075,28.613,15.689,30.57,17.344z"/> - <path fill="#890000" d="M30.576,17.337c2.634,2.228,7.835,0.792,7.346,0.411c0-1.139,0-6.547,0-6.547 - c0-1.139-0.76-1.898-1.896-1.898h-4.557c-0.947,0-1.611,0.569-1.803,1.423C28.898,10.08,28.623,15.685,30.576,17.337z"/> - <path fill="#8A0000" d="M30.581,17.33c2.63,2.223,7.821,0.79,7.333,0.41c0-1.137,0-6.535,0-6.535 - c0-1.137-0.76-1.894-1.895-1.894h-4.547c-0.947,0-1.609,0.567-1.801,1.421C28.906,10.086,28.632,15.681,30.581,17.33z"/> - <path fill="#8B0000" d="M30.587,17.321c2.625,2.22,7.808,0.79,7.319,0.41c0-1.135,0-6.523,0-6.523 - c0-1.135-0.758-1.891-1.891-1.891h-4.539c-0.945,0-1.606,0.567-1.797,1.418C28.915,10.091,28.641,15.676,30.587,17.321z"/> - <path fill="#8C0000" d="M30.592,17.314c2.62,2.216,7.793,0.788,7.307,0.409c0-1.132,0-6.512,0-6.512 - c0-1.132-0.756-1.887-1.887-1.887H31.48c-0.943,0-1.604,0.566-1.793,1.416C28.923,10.097,28.648,15.671,30.592,17.314z"/> - <path fill="#8D0000" d="M30.598,17.307c2.614,2.211,7.778,0.787,7.293,0.409c0-1.131,0-6.5,0-6.5 - c0-1.13-0.754-1.884-1.884-1.884h-4.522c-0.941,0-1.601,0.564-1.791,1.413C28.932,10.103,28.658,15.667,30.598,17.307z"/> - <path fill="#8F0000" d="M30.604,17.299c2.609,2.208,7.765,0.785,7.279,0.408c0-1.128,0-6.488,0-6.488 - c0-1.128-0.753-1.881-1.881-1.881h-4.516c-0.939,0-1.598,0.564-1.786,1.411C28.939,10.107,28.668,15.662,30.604,17.299z"/> - <path fill="#900000" d="M30.607,17.292c2.605,2.204,7.75,0.784,7.268,0.407c0-1.127,0-6.477,0-6.477 - c0-1.127-0.753-1.877-1.878-1.877h-4.506c-0.938,0-1.595,0.563-1.783,1.408C28.948,10.113,28.676,15.658,30.607,17.292z"/> - <path fill="#910000" d="M30.611,17.284c2.604,2.199,7.738,0.782,7.256,0.406c0-1.124,0-6.464,0-6.464 - c0-1.125-0.751-1.874-1.874-1.874h-4.498c-0.938,0-1.593,0.562-1.781,1.405C28.956,10.119,28.686,15.653,30.611,17.284z"/> - <path fill="#920000" d="M30.618,17.276c2.597,2.196,7.723,0.781,7.241,0.406c0-1.123,0-6.453,0-6.453 - c0-1.123-0.75-1.871-1.871-1.871h-4.49c-0.936,0-1.588,0.561-1.775,1.403C28.965,10.124,28.693,15.649,30.618,17.276z"/> - <path fill="#930000" d="M30.623,17.269c2.592,2.191,7.709,0.779,7.229,0.404c0-1.12,0-6.441,0-6.441 - c0-1.121-0.748-1.867-1.867-1.867h-4.481c-0.935,0-1.586,0.56-1.772,1.4C28.973,10.13,28.703,15.644,30.623,17.269z"/> - <path fill="#940000" d="M30.629,17.261c2.587,2.188,7.694,0.778,7.214,0.404c0-1.119,0-6.43,0-6.43 - c0-1.119-0.745-1.863-1.862-1.863h-4.475c-0.932,0-1.583,0.559-1.771,1.397C28.98,10.135,28.711,15.64,30.629,17.261z"/> - <path fill="#960000" d="M30.634,17.254c2.583,2.184,7.681,0.776,7.201,0.403c0-1.116,0-6.417,0-6.417 - c0-1.116-0.745-1.86-1.86-1.86H31.51c-0.93,0-1.58,0.558-1.768,1.395C28.988,10.141,28.721,15.635,30.634,17.254z"/> - <path fill="#970000" d="M30.641,17.247c2.576,2.179,7.666,0.775,7.188,0.402c0-1.115,0-6.406,0-6.406 - c0-1.114-0.744-1.856-1.855-1.856h-4.459c-0.928,0-1.576,0.557-1.764,1.393C28.998,10.146,28.729,15.63,30.641,17.247z"/> - <path fill="#980000" d="M30.645,17.239c2.573,2.176,7.652,0.774,7.176,0.401c0-1.112,0-6.394,0-6.394 - c0-1.112-0.742-1.853-1.854-1.853h-4.448c-0.928,0-1.574,0.556-1.762,1.39C29.006,10.151,28.738,15.625,30.645,17.239z"/> - <path fill="#990000" d="M30.65,17.231c2.567,2.172,7.638,0.772,7.16,0.401c0-1.11,0-6.383,0-6.383c0-1.11-0.74-1.85-1.85-1.85 - H31.52c-0.924,0-1.57,0.555-1.758,1.387C29.016,10.157,28.747,15.621,30.65,17.231z"/> - <path fill="#9A0000" d="M30.654,17.224c2.563,2.167,7.625,0.771,7.148,0.4c0-1.108,0-6.371,0-6.371 - c0-1.108-0.74-1.846-1.847-1.846h-4.433c-0.924,0-1.568,0.554-1.756,1.385C29.021,10.163,28.755,15.616,30.654,17.224z"/> - <path fill="#9B0000" d="M30.66,17.216c2.561,2.164,7.609,0.769,7.136,0.399c0-1.106,0-6.359,0-6.359 - c0-1.106-0.737-1.843-1.844-1.843h-4.425c-0.922,0-1.564,0.553-1.752,1.382C29.031,10.168,28.766,15.612,30.66,17.216z"/> - <path fill="#9C0000" d="M30.666,17.209c2.555,2.16,7.596,0.768,7.122,0.399c0-1.104,0-6.347,0-6.347 - c0-1.104-0.737-1.84-1.84-1.84h-4.417c-0.92,0-1.562,0.552-1.748,1.38C29.039,10.174,28.771,15.607,30.666,17.209z"/> - <path fill="#9E0000" d="M30.671,17.201c2.55,2.155,7.582,0.767,7.108,0.398c0-1.102,0-6.335,0-6.335 - c0-1.102-0.735-1.836-1.836-1.836h-4.408c-0.918,0-1.561,0.551-1.745,1.377C29.048,10.179,28.782,15.603,30.671,17.201z"/> - <path fill="#9F0000" d="M30.677,17.193c2.544,2.152,7.567,0.765,7.097,0.397c0-1.1,0-6.324,0-6.324 - c0-1.1-0.735-1.833-1.834-1.833H31.54c-0.916,0-1.558,0.549-1.741,1.375C29.057,10.185,28.79,15.598,30.677,17.193z"/> - <path fill="#A00000" d="M30.682,17.186c2.541,2.147,7.555,0.764,7.082,0.396c0-1.098,0-6.312,0-6.312 - c0-1.098-0.731-1.829-1.828-1.829h-4.393c-0.915,0-1.555,0.548-1.738,1.372C29.064,10.19,28.8,15.594,30.682,17.186z"/> - <path fill="#A10000" d="M30.688,17.178c2.535,2.144,7.539,0.763,7.068,0.396c0-1.096,0-6.3,0-6.3 - c0-1.096-0.73-1.826-1.826-1.826h-4.384c-0.912,0-1.551,0.547-1.733,1.37C29.072,10.196,28.809,15.589,30.688,17.178z"/> - <path fill="#A20000" d="M30.691,17.171c2.531,2.14,7.525,0.761,7.057,0.395c0-1.094,0-6.289,0-6.289 - c0-1.093-0.73-1.822-1.822-1.822H31.55c-0.911,0-1.548,0.546-1.731,1.367C29.081,10.201,28.816,15.584,30.691,17.171z"/> - <path fill="#A30000" d="M30.697,17.163c2.525,2.136,7.512,0.76,7.043,0.395c0-1.092,0-6.277,0-6.277 - c0-1.091-0.729-1.819-1.819-1.819h-4.366c-0.91,0-1.546,0.545-1.729,1.365C29.089,10.207,28.825,15.58,30.697,17.163z"/> - <path fill="#A50000" d="M30.703,17.156c2.521,2.132,7.497,0.758,7.029,0.394c0-1.09,0-6.265,0-6.265 - c0-1.09-0.729-1.816-1.815-1.816h-4.358c-0.908,0-1.543,0.544-1.727,1.362C29.098,10.212,28.835,15.575,30.703,17.156z"/> - <path fill="#A60000" d="M30.708,17.148c2.517,2.127,7.483,0.756,7.017,0.393c0-1.087,0-6.253,0-6.253 - c0-1.088-0.727-1.812-1.812-1.812h-4.351c-0.906,0-1.541,0.543-1.724,1.359C29.105,10.218,28.844,15.571,30.708,17.148z"/> - <path fill="#A70000" d="M30.714,17.141c2.511,2.124,7.47,0.755,7.003,0.392c0-1.086,0-6.241,0-6.241 - c0-1.085-0.725-1.809-1.81-1.809h-4.343c-0.904,0-1.537,0.542-1.719,1.357C29.113,10.223,28.854,15.566,30.714,17.141z"/> - <path fill="#A80000" d="M30.719,17.133c2.508,2.12,7.455,0.753,6.99,0.391c0-1.083,0-6.229,0-6.229 - c0-1.083-0.725-1.806-1.807-1.806h-4.334c-0.902,0-1.533,0.542-1.717,1.354C29.122,10.229,28.861,15.562,30.719,17.133z"/> - <path fill="#A90000" d="M30.725,17.125c2.502,2.116,7.44,0.752,6.978,0.391c0-1.082,0-6.218,0-6.218 - c0-1.081-0.724-1.802-1.804-1.802h-4.325c-0.901,0-1.53,0.54-1.714,1.352C29.131,10.234,28.87,15.557,30.725,17.125z"/> - <path fill="#AA0000" d="M30.729,17.118c2.498,2.111,7.428,0.75,6.965,0.39c0-1.08,0-6.206,0-6.206 - c0-1.079-0.721-1.798-1.799-1.798h-4.318c-0.899,0-1.528,0.539-1.71,1.349C29.139,10.24,28.879,15.552,30.729,17.118z"/> - <path fill="#AC0000" d="M30.734,17.11c2.492,2.108,7.412,0.75,6.951,0.389c0-1.078,0-6.194,0-6.194 - c0-1.077-0.721-1.795-1.797-1.795h-4.311c-0.896,0-1.523,0.538-1.705,1.346C29.146,10.245,28.889,15.548,30.734,17.11z"/> - <path fill="#AD0000" d="M30.74,17.103c2.486,2.104,7.398,0.748,6.937,0.389c0-1.076,0-6.183,0-6.183 - c0-1.075-0.718-1.792-1.792-1.792h-4.302c-0.896,0-1.521,0.537-1.702,1.344C29.154,10.251,28.896,15.543,30.74,17.103z"/> - <path fill="#AE0000" d="M30.745,17.096c2.483,2.1,7.385,0.746,6.924,0.388c0-1.074,0-6.171,0-6.171 - c0-1.073-0.717-1.789-1.788-1.789h-4.294c-0.896,0-1.519,0.537-1.698,1.341C29.164,10.256,28.904,15.539,30.745,17.096z"/> - <path fill="#AF0000" d="M30.751,17.088c2.478,2.096,7.37,0.745,6.91,0.387c0-1.072,0-6.159,0-6.159 - c0-1.071-0.716-1.785-1.785-1.785h-4.285c-0.893,0-1.517,0.535-1.696,1.339C29.172,10.262,28.914,15.534,30.751,17.088z"/> - <path fill="#B00000" d="M30.756,17.08c2.475,2.092,7.355,0.744,6.896,0.387c0-1.07,0-6.147,0-6.147 - c0-1.069-0.713-1.782-1.781-1.782h-4.277c-0.891,0-1.513,0.535-1.691,1.336C29.182,10.267,28.923,15.53,30.756,17.08z"/> - <path fill="#B10000" d="M30.762,17.073c2.469,2.088,7.342,0.743,6.885,0.386c0-1.067,0-6.136,0-6.136 - c0-1.067-0.713-1.778-1.778-1.778h-4.271c-0.889,0-1.51,0.533-1.688,1.334C29.188,10.272,28.932,15.525,30.762,17.073z"/> - <path fill="#B30000" d="M30.768,17.065c2.463,2.083,7.328,0.741,6.871,0.385c0-1.065,0-6.124,0-6.124 - c0-1.065-0.712-1.775-1.775-1.775h-4.262c-0.887,0-1.506,0.532-1.687,1.332C29.197,10.278,28.939,15.521,30.768,17.065z"/> - <path fill="#B40000" d="M30.771,17.058c2.459,2.08,7.313,0.74,6.857,0.384c0-1.063,0-6.112,0-6.112 - c0-1.063-0.71-1.771-1.771-1.771h-4.252c-0.887,0-1.506,0.531-1.685,1.329C29.205,10.284,28.949,15.516,30.771,17.058z"/> - <path fill="#B50000" d="M30.777,17.05c2.453,2.076,7.3,0.738,6.845,0.383c0-1.062,0-6.101,0-6.101 - c0-1.061-0.709-1.768-1.769-1.768h-4.244c-0.885,0-1.502,0.53-1.682,1.326C29.214,10.289,28.958,15.511,30.777,17.05z"/> - <path fill="#B60000" d="M30.782,17.043c2.45,2.071,7.286,0.736,6.831,0.382c0-1.059,0-6.088,0-6.088 - c0-1.059-0.707-1.765-1.766-1.765h-4.236c-0.881,0-1.498,0.529-1.676,1.323C29.223,10.294,28.967,15.507,30.782,17.043z"/> - <path fill="#B70000" d="M30.787,17.035c2.445,2.067,7.271,0.735,6.818,0.382c0-1.057,0-6.077,0-6.077 - c0-1.057-0.705-1.761-1.762-1.761h-4.229c-0.881,0-1.495,0.528-1.674,1.321C29.23,10.3,28.977,15.502,30.787,17.035z"/> - <path fill="#B80000" d="M30.793,17.028c2.439,2.063,7.258,0.733,6.807,0.381c0-1.055,0-6.065,0-6.065 - c0-1.055-0.705-1.758-1.76-1.758h-4.22c-0.879,0-1.493,0.527-1.67,1.318C29.238,10.306,28.984,15.498,30.793,17.028z"/> - <path fill="#B90000" d="M30.798,17.02c2.437,2.06,7.244,0.732,6.792,0.38c0-1.053,0-6.053,0-6.053 - c0-1.053-0.703-1.754-1.754-1.754h-4.212c-0.877,0-1.49,0.526-1.667,1.316C29.247,10.311,28.993,15.493,30.798,17.02z"/> - <path fill="#BB0000" d="M30.805,17.013c2.43,2.056,7.229,0.731,6.777,0.379c0-1.051,0-6.042,0-6.042 - c0-1.051-0.701-1.751-1.751-1.751h-4.204c-0.875,0-1.486,0.525-1.663,1.313C29.255,10.316,29.002,15.488,30.805,17.013z"/> - <path fill="#BC0000" d="M30.809,17.005c2.428,2.052,7.217,0.729,6.767,0.379c0-1.049,0-6.03,0-6.03 - c0-1.048-0.7-1.748-1.748-1.748h-4.195c-0.873,0-1.483,0.524-1.659,1.311C29.264,10.322,29.012,15.484,30.809,17.005z"/> - <path fill="#BD0000" d="M30.814,16.998c2.42,2.047,7.201,0.728,6.752,0.378c0-1.047,0-6.018,0-6.018 - c0-1.046-0.699-1.744-1.744-1.744h-4.188c-0.872,0-1.481,0.523-1.657,1.309C29.271,10.328,29.02,15.48,30.814,16.998z"/> - <path fill="#BE0000" d="M30.818,16.99c2.418,2.044,7.188,0.727,6.74,0.377c0-1.045,0-6.006,0-6.006 - c0-1.044-0.699-1.74-1.742-1.74h-4.178c-0.871,0-1.479,0.522-1.654,1.305C29.279,10.333,29.027,15.475,30.818,16.99z"/> - <path fill="#BF0000" d="M30.824,16.982c2.412,2.04,7.174,0.725,6.727,0.376c0-1.043,0-5.994,0-5.994 - c0-1.043-0.695-1.737-1.736-1.737h-4.172c-0.869,0-1.476,0.521-1.65,1.303C29.288,10.338,29.037,15.47,30.824,16.982z"/> - <path fill="#C00000" d="M30.83,16.975c2.406,2.036,7.158,0.724,6.713,0.376c0-1.041,0-5.982,0-5.982 - c0-1.041-0.695-1.734-1.734-1.734h-4.162c-0.867,0-1.473,0.52-1.647,1.3C29.297,10.344,29.046,15.466,30.83,16.975z"/> - <path fill="#C20000" d="M30.835,16.967c2.403,2.032,7.146,0.722,6.7,0.375c0-1.039,0-5.971,0-5.971 - c0-1.039-0.694-1.73-1.73-1.73H31.65c-0.865,0-1.471,0.519-1.646,1.298C29.305,10.35,29.055,15.461,30.835,16.967z"/> - <path fill="#C30000" d="M30.841,16.96c2.397,2.027,7.132,0.721,6.687,0.375c0-1.037,0-5.959,0-5.959 - c0-1.037-0.691-1.727-1.728-1.727h-4.146c-0.863,0-1.467,0.518-1.643,1.295C29.312,10.355,29.062,15.457,30.841,16.96z"/> - <path fill="#C40000" d="M30.846,16.952c2.395,2.023,7.117,0.72,6.674,0.374c0-1.035,0-5.948,0-5.948 - c0-1.034-0.69-1.724-1.725-1.724h-4.138c-0.862,0-1.464,0.517-1.64,1.293C29.32,10.36,29.072,15.452,30.846,16.952z"/> - <path fill="#C50000" d="M30.852,16.945c2.39,2.02,7.104,0.718,6.66,0.373c0-1.033,0-5.936,0-5.936 - c0-1.032-0.689-1.72-1.721-1.72H31.66c-0.859,0-1.46,0.516-1.635,1.291C29.33,10.366,29.081,15.447,30.852,16.945z"/> - <path fill="#C60000" d="M30.855,16.937c2.385,2.016,7.09,0.717,6.646,0.373c0-1.031,0-5.924,0-5.924 - c0-1.03-0.688-1.717-1.717-1.717h-4.122c-0.858,0-1.458,0.515-1.631,1.288C29.338,10.372,29.09,15.443,30.855,16.937z"/> - <path fill="#C70000" d="M30.861,16.93c2.38,2.012,7.074,0.715,6.634,0.372c0-1.029,0-5.913,0-5.913 - c0-1.028-0.687-1.713-1.714-1.713h-4.113c-0.855,0-1.455,0.514-1.628,1.285C29.348,10.377,29.1,15.438,30.861,16.93z"/> - <path fill="#C90000" d="M30.867,16.922c2.374,2.008,7.061,0.714,6.619,0.371c0-1.027,0-5.9,0-5.9c0-1.026-0.686-1.71-1.709-1.71 - h-4.105c-0.855,0-1.451,0.513-1.625,1.282C29.354,10.382,29.107,15.434,30.867,16.922z"/> - <path fill="#CA0000" d="M30.872,16.915c2.37,2.003,7.047,0.712,6.606,0.37c0-1.024,0-5.889,0-5.889 - c0-1.024-0.685-1.707-1.707-1.707h-4.098c-0.854,0-1.447,0.512-1.621,1.28C29.363,10.388,29.116,15.429,30.872,16.915z"/> - <path fill="#CB0000" d="M30.878,16.907c2.364,2,7.032,0.711,6.595,0.37c0-1.022,0-5.877,0-5.877 - c0-1.022-0.684-1.703-1.703-1.703h-4.09c-0.853,0-1.447,0.511-1.619,1.277C29.371,10.394,29.125,15.424,30.878,16.907z"/> - <path fill="#CC0000" d="M30.883,16.899c2.36,1.996,7.02,0.709,6.581,0.369c0-1.021,0-5.865,0-5.865c0-1.02-0.682-1.7-1.7-1.7 - h-4.08c-0.851,0-1.443,0.51-1.615,1.275C29.38,10.399,29.134,15.42,30.883,16.899z"/> - </g> - - <linearGradient id="Chimney_Highlight_1_" gradientUnits="userSpaceOnUse" x1="219.5195" y1="-239.7031" x2="219.5195" y2="-247.9902" gradientTransform="matrix(1 0 0 -1 -186 -230)"> - <stop offset="0" style="stop-color:#FFFFFF"/> - <stop offset="1" style="stop-color:#CC0000"/> - </linearGradient> - <path id="Chimney_Highlight" fill="url(#Chimney_Highlight_1_)" d="M30.883,16.899c2.36,1.996,7.02,0.709,6.581,0.369 - c0-1.021,0-5.865,0-5.865c0-1.02-0.682-1.7-1.7-1.7h-4.08c-0.851,0-1.443,0.51-1.615,1.275 - C29.38,10.399,29.134,15.42,30.883,16.899z"/> - </g> - <g id="House"> - <g> - <path fill="#FFCC00" d="M8.5,24.788c0,2.4,0,14.2,0,14.2c0,1.101,0.8,1.9,1.8,1.9h27.4c1.1,0,1.899-0.9,1.899-2 - c0,0,0-11.8,0-14.2C40.6,24.688,7.4,24.788,8.5,24.788z"/> - <path fill="#FFCD00" d="M8.545,24.812c0,2.395,0,14.159,0,14.159c0,1.097,0.798,1.895,1.794,1.895h27.322 - c1.097,0,1.894-0.897,1.894-1.993c0,0,0-11.767,0-14.16C40.552,24.711,7.448,24.812,8.545,24.812z"/> - <path fill="#FFCE00" d="M8.589,24.835c0,2.387,0,14.119,0,14.119c0,1.094,0.795,1.889,1.79,1.889h27.242 - c1.094,0,1.889-0.896,1.889-1.988c0,0,0-11.73,0-14.118C40.504,24.735,7.496,24.835,8.589,24.835z"/> - <path fill="#FFCF00" d="M8.634,24.857c0,2.38,0,14.077,0,14.077c0,1.091,0.793,1.884,1.785,1.884h27.163 - c1.09,0,1.883-0.894,1.883-1.981c0,0,0-11.698,0-14.078C40.456,24.758,7.543,24.857,8.634,24.857z"/> - <path fill="#FFD000" d="M8.68,24.88c0,2.373,0,14.037,0,14.037c0,1.088,0.791,1.879,1.779,1.879h27.084 - c1.087,0,1.877-0.892,1.877-1.979c0,0,0-11.663,0-14.036C40.409,24.782,7.592,24.88,8.68,24.88z"/> - <path fill="#FFD100" d="M8.725,24.903c0,2.366,0,13.995,0,13.995c0,1.085,0.788,1.874,1.773,1.874h27.006 - c1.083,0,1.872-0.889,1.872-1.973c0,0,0-11.629,0-13.994C40.361,24.806,7.64,24.903,8.725,24.903z"/> - <path fill="#FFD200" d="M8.769,24.925c0,2.359,0,13.955,0,13.955c0,1.082,0.786,1.867,1.769,1.867h26.926 - c1.081,0,1.866-0.884,1.866-1.965c0,0,0-11.596,0-13.953C40.312,24.829,7.688,24.925,8.769,24.925z"/> - <path fill="#FFD300" d="M8.814,24.949c0,2.354,0,13.914,0,13.914c0,1.078,0.784,1.861,1.763,1.861h26.848 - c1.077,0,1.86-0.882,1.86-1.959c0,0,0-11.562,0-13.914C40.266,24.852,7.736,24.949,8.814,24.949z"/> - <path fill="#FFD400" d="M8.858,24.973c0,2.345,0,13.872,0,13.872c0,1.074,0.781,1.855,1.758,1.855h26.768 - c1.074,0,1.854-0.88,1.854-1.953c0,0,0-11.526,0-13.873C40.217,24.876,7.784,24.973,8.858,24.973z"/> - <path fill="#FFD500" d="M8.903,24.997c0,2.338,0,13.83,0,13.83c0,1.072,0.779,1.853,1.753,1.853h26.689 - c1.07,0,1.85-0.877,1.85-1.948c0,0,0-11.493,0-13.832C40.17,24.898,7.832,24.997,8.903,24.997z"/> - <path fill="#FFD600" d="M8.949,25.019c0,2.331,0,13.791,0,13.791c0,1.068,0.777,1.846,1.748,1.846h26.61 - c1.067,0,1.846-0.875,1.846-1.941c0,0,0-11.459,0-13.791C40.122,24.921,7.88,25.019,8.949,25.019z"/> - <path fill="#FFD700" d="M8.993,25.042c0,2.324,0,13.75,0,13.75c0,1.064,0.774,1.84,1.743,1.84h26.532 - c1.064,0,1.838-0.871,1.838-1.937c0,0,0-11.426,0-13.75C40.074,24.945,7.928,25.042,8.993,25.042z"/> - <path fill="#FFD800" d="M9.039,25.065c0,2.316,0,13.708,0,13.708c0,1.063,0.772,1.835,1.737,1.835h26.453 - c1.062,0,1.834-0.869,1.834-1.931c0,0,0-11.392,0-13.71C40.027,24.968,7.977,25.065,9.039,25.065z"/> - <path fill="#FFD900" d="M9.083,25.087c0,2.312,0,13.668,0,13.668c0,1.061,0.77,1.83,1.732,1.83h26.373 - c1.06,0,1.828-0.867,1.828-1.926c0,0,0-11.356,0-13.668C39.979,24.993,8.024,25.087,9.083,25.087z"/> - <path fill="#FFDA00" d="M9.128,25.111c0,2.304,0,13.626,0,13.626c0,1.057,0.767,1.824,1.727,1.824h26.293 - c1.056,0,1.822-0.864,1.822-1.919c0,0,0-11.323,0-13.627C39.932,25.016,8.072,25.111,9.128,25.111z"/> - <path fill="#FFDB00" d="M9.172,25.134c0,2.297,0,13.586,0,13.586c0,1.053,0.766,1.818,1.722,1.818h26.215 - c1.052,0,1.816-0.861,1.816-1.914c0,0,0-11.289,0-13.586C39.884,25.04,8.12,25.134,9.172,25.134z"/> - <path fill="#FFDC00" d="M9.217,25.157c0,2.29,0,13.545,0,13.545c0,1.051,0.763,1.812,1.717,1.812H37.07 - c1.049,0,1.812-0.858,1.812-1.907c0,0,0-11.256,0-13.545C39.836,25.062,8.168,25.157,9.217,25.157z"/> - <path fill="#FFDD00" d="M9.263,25.18c0,2.282,0,13.505,0,13.505c0,1.046,0.76,1.807,1.711,1.807h26.055 - c1.047,0,1.808-0.855,1.808-1.902c0,0,0-11.221,0-13.502C39.788,25.085,8.216,25.18,9.263,25.18z"/> - <path fill="#FFDE00" d="M9.307,25.204c0,2.275,0,13.463,0,13.463c0,1.043,0.758,1.801,1.707,1.801h25.978 - c1.043,0,1.801-0.854,1.801-1.896c0,0,0-11.188,0-13.463C39.74,25.109,8.265,25.204,9.307,25.204z"/> - <path fill="#FFDF00" d="M9.352,25.226c0,2.27,0,13.423,0,13.423c0,1.04,0.756,1.796,1.701,1.796h25.899 - c1.039,0,1.795-0.852,1.795-1.89c0,0,0-11.153,0-13.423C39.691,25.132,8.312,25.226,9.352,25.226z"/> - <path fill="#FFE000" d="M9.397,25.251c0,2.262,0,13.379,0,13.379c0,1.037,0.753,1.791,1.696,1.791h25.819 - c1.036,0,1.79-0.849,1.79-1.883c0,0,0-11.119,0-13.383C39.645,25.155,8.36,25.251,9.397,25.251z"/> - <path fill="#FFE100" d="M9.442,25.272c0,2.255,0,13.34,0,13.34c0,1.034,0.751,1.785,1.691,1.785h25.74 - c1.033,0,1.784-0.846,1.784-1.879c0,0,0-11.084,0-13.34C39.598,25.179,8.408,25.272,9.442,25.272z"/> - <path fill="#FFE200" d="M9.486,25.296c0,2.248,0,13.299,0,13.299c0,1.029,0.749,1.779,1.686,1.779h25.662 - c1.029,0,1.777-0.844,1.777-1.873c0,0,0-11.051,0-13.299C39.549,25.202,8.457,25.296,9.486,25.296z"/> - <path fill="#FFE300" d="M9.532,25.318c0,2.241,0,13.259,0,13.259c0,1.027,0.747,1.773,1.68,1.773h25.583 - c1.025,0,1.771-0.84,1.771-1.866c0,0,0-11.017,0-13.259C39.502,25.226,8.504,25.318,9.532,25.318z"/> - <path fill="#FFE400" d="M9.577,25.341c0,2.234,0,13.218,0,13.218c0,1.024,0.744,1.769,1.675,1.769h25.503 - c1.022,0,1.769-0.838,1.769-1.859c0,0,0-10.983,0-13.219C39.454,25.249,8.553,25.341,9.577,25.341z"/> - <path fill="#FFE500" d="M9.621,25.364c0,2.229,0,13.178,0,13.178c0,1.021,0.742,1.763,1.67,1.763h25.424 - c1.02,0,1.764-0.835,1.764-1.855c0,0,0-10.948,0-13.176C39.406,25.272,8.601,25.364,9.621,25.364z"/> - <path fill="#FFE600" d="M9.666,25.388c0,2.221,0,13.135,0,13.135c0,1.02,0.74,1.758,1.665,1.758h25.345 - c1.018,0,1.758-0.832,1.758-1.85c0,0,0-10.914,0-13.135C39.357,25.296,8.648,25.388,9.666,25.388z"/> - <path fill="#FFE600" d="M9.711,25.411c0,2.215,0,13.094,0,13.094c0,1.016,0.737,1.754,1.66,1.754h25.266 - c1.016,0,1.752-0.83,1.752-1.846c0,0,0-10.879,0-13.094C39.311,25.319,8.696,25.411,9.711,25.411z"/> - <path fill="#FFE700" d="M9.756,25.434c0,2.207,0,13.054,0,13.054c0,1.012,0.735,1.747,1.654,1.747h25.188 - c1.012,0,1.746-0.827,1.746-1.839c0,0,0-10.846,0-13.053C39.264,25.343,8.745,25.434,9.756,25.434z"/> - <path fill="#FFE800" d="M9.801,25.458c0,2.199,0,13.013,0,13.013c0,1.008,0.732,1.741,1.649,1.741h25.108 - c1.008,0,1.74-0.825,1.74-1.834c0,0,0-10.812,0-13.012C39.215,25.366,8.792,25.458,9.801,25.458z"/> - <path fill="#FFE900" d="M9.845,25.48c0,2.192,0,12.972,0,12.972c0,1.006,0.73,1.735,1.644,1.735h25.029 - c1.006,0,1.735-0.822,1.735-1.827c0,0,0-10.777,0-12.971C39.167,25.39,8.84,25.48,9.845,25.48z"/> - <path fill="#FFEA00" d="M9.89,25.503c0,2.187,0,12.931,0,12.931c0,1.002,0.729,1.729,1.639,1.729h24.95 - c1.002,0,1.729-0.818,1.729-1.82c0,0,0-10.744,0-12.93C39.12,25.413,8.889,25.503,9.89,25.503z"/> - <path fill="#FFEB00" d="M9.935,25.526c0,2.18,0,12.891,0,12.891c0,0.998,0.726,1.725,1.634,1.725h24.871 - c1,0,1.726-0.817,1.726-1.814c0,0,0-10.711,0-12.89C39.072,25.437,8.937,25.526,9.935,25.526z"/> - <path fill="#FFEC00" d="M9.98,25.548c0,2.174,0,12.85,0,12.85c0,0.996,0.724,1.721,1.628,1.721H36.4 - c0.994,0,1.719-0.814,1.719-1.811c0,0,0-10.676,0-12.85C39.023,25.46,8.985,25.548,9.98,25.548z"/> - <path fill="#FFED00" d="M10.025,25.572c0,2.165,0,12.808,0,12.808c0,0.992,0.721,1.715,1.623,1.715h24.713 - c0.99,0,1.713-0.812,1.713-1.805c0,0,0-10.642,0-12.808C38.977,25.482,9.033,25.572,10.025,25.572z"/> - <path fill="#FFEE00" d="M10.07,25.595c0,2.158,0,12.768,0,12.768c0,0.989,0.719,1.708,1.618,1.708h24.635 - c0.987,0,1.706-0.809,1.706-1.798c0,0,0-10.607,0-12.768C38.93,25.505,9.081,25.595,10.07,25.595z"/> - <path fill="#FFEF00" d="M10.114,25.618c0,2.151,0,12.727,0,12.727c0,0.986,0.717,1.703,1.613,1.703h24.555 - c0.985,0,1.702-0.808,1.702-1.793c0,0,0-10.573,0-12.726C38.881,25.529,9.129,25.618,10.114,25.618z"/> - <path fill="#FFF000" d="M10.159,25.642c0,2.145,0,12.686,0,12.686c0,0.982,0.714,1.696,1.608,1.696h24.476 - c0.981,0,1.696-0.804,1.696-1.786c0,0,0-10.54,0-12.685C38.833,25.553,9.177,25.642,10.159,25.642z"/> - <path fill="#FFF100" d="M10.204,25.665c0,2.138,0,12.644,0,12.644c0,0.979,0.712,1.692,1.603,1.692h24.397 - c0.979,0,1.69-0.802,1.69-1.78c0,0,0-10.507,0-12.644C38.785,25.577,9.225,25.665,10.204,25.665z"/> - <path fill="#FFF200" d="M10.249,25.688c0,2.131,0,12.603,0,12.603c0,0.978,0.71,1.688,1.597,1.688h24.318 - c0.977,0,1.686-0.799,1.686-1.773c0,0,0-10.473,0-12.604C38.736,25.6,9.273,25.688,10.249,25.688z"/> - <path fill="#FFF300" d="M10.294,25.71c0,2.125,0,12.562,0,12.562c0,0.975,0.708,1.682,1.592,1.682h24.239 - c0.973,0,1.68-0.797,1.68-1.77c0,0,0-10.438,0-12.562C38.689,25.624,9.321,25.71,10.294,25.71z"/> - <path fill="#FFF400" d="M10.339,25.733c0,2.117,0,12.521,0,12.521c0,0.97,0.705,1.675,1.587,1.675h24.16 - c0.969,0,1.674-0.793,1.674-1.763c0,0,0-10.403,0-12.521C38.643,25.646,9.369,25.733,10.339,25.733z"/> - <path fill="#FFF500" d="M10.384,25.757c0,2.109,0,12.479,0,12.479c0,0.969,0.703,1.67,1.582,1.67h24.081 - c0.967,0,1.669-0.79,1.669-1.757c0,0,0-10.369,0-12.479C38.596,25.669,9.417,25.757,10.384,25.757z"/> - <path fill="#FFF600" d="M10.428,25.779c0,2.104,0,12.438,0,12.438c0,0.965,0.701,1.664,1.577,1.664h24.002 - c0.964,0,1.663-0.787,1.663-1.75c0,0,0-10.336,0-12.438C38.547,25.693,9.465,25.779,10.428,25.779z"/> - <path fill="#FFF700" d="M10.473,25.803c0,2.097,0,12.397,0,12.397c0,0.961,0.698,1.659,1.571,1.659h23.923 - c0.96,0,1.658-0.786,1.658-1.746c0,0,0-10.302,0-12.397C38.499,25.716,9.513,25.803,10.473,25.803z"/> - <path fill="#FFF800" d="M10.518,25.827c0,2.088,0,12.355,0,12.355c0,0.958,0.696,1.654,1.566,1.654h23.844 - c0.957,0,1.653-0.783,1.653-1.74c0,0,0-10.268,0-12.356C38.451,25.74,9.561,25.827,10.518,25.827z"/> - <path fill="#FFF900" d="M10.563,25.849c0,2.083,0,12.316,0,12.316c0,0.953,0.693,1.647,1.561,1.647h23.765 - c0.953,0,1.647-0.78,1.647-1.733c0,0,0-10.233,0-12.316C38.402,25.763,9.609,25.849,10.563,25.849z"/> - <path fill="#FFFA00" d="M10.608,25.872c0,2.075,0,12.275,0,12.275c0,0.951,0.691,1.643,1.556,1.643H35.85 - c0.95,0,1.643-0.777,1.643-1.729c0,0,0-10.199,0-12.275C38.355,25.786,9.657,25.872,10.608,25.872z"/> - <path fill="#FFFB00" d="M10.653,25.896c0,2.068,0,12.232,0,12.232c0,0.949,0.689,1.639,1.55,1.639h23.607 - c0.946,0,1.637-0.775,1.637-1.723c0,0,0-10.166,0-12.234C38.309,25.81,9.705,25.896,10.653,25.896z"/> - <path fill="#FFFC00" d="M10.697,25.917c0,2.062,0,12.193,0,12.193c0,0.945,0.687,1.633,1.545,1.633H35.77 - c0.944,0,1.631-0.772,1.631-1.718c0,0,0-10.132,0-12.192C38.262,25.833,9.753,25.917,10.697,25.917z"/> - <path fill="#FFFD00" d="M10.742,25.941c0,2.056,0,12.151,0,12.151c0,0.941,0.685,1.627,1.541,1.627h23.449 - c0.939,0,1.625-0.771,1.625-1.711c0,0,0-10.098,0-12.152C38.213,25.856,9.801,25.941,10.742,25.941z"/> - <path fill="#FFFE00" d="M10.787,25.964c0,2.048,0,12.11,0,12.11c0,0.939,0.682,1.621,1.535,1.621h23.37 - c0.938,0,1.619-0.768,1.619-1.705c0,0,0-10.062,0-12.11C38.165,25.88,9.849,25.964,10.787,25.964z"/> - <path fill="#FFFF00" d="M10.832,25.987c0,2.041,0,12.07,0,12.07c0,0.936,0.68,1.615,1.53,1.615h23.291 - c0.936,0,1.615-0.766,1.615-1.699c0,0,0-10.029,0-12.07C38.117,25.903,9.897,25.987,10.832,25.987z"/> - </g> - - <linearGradient id="House_Highlight_1_" gradientUnits="userSpaceOnUse" x1="210.0469" y1="-255.9038" x2="210.0469" y2="-269.6733" gradientTransform="matrix(1 0 0 -1 -186 -230)"> - <stop offset="0" style="stop-color:#FFFFFF"/> - <stop offset="1" style="stop-color:#FFFF00"/> - </linearGradient> - <path id="House_Highlight" fill="url(#House_Highlight_1_)" d="M10.832,25.987c0,2.041,0,12.07,0,12.07 - c0,0.936,0.68,1.615,1.53,1.615h23.291c0.936,0,1.615-0.766,1.615-1.699c0,0,0-10.029,0-12.07 - C38.117,25.903,9.897,25.987,10.832,25.987z"/> - </g> - <g id="Roof"> - <g> - <path fill="#006600" d="M22.8,6.963l-17.7,15.1l0,0c-0.3,0.301-0.5,0.801-0.5,1.2c0,0.2,0,0.399,0.1,0.601c0.3,0.6,0.9,1,1.6,1 - l35.3-0.1c0.801,0,1.4-0.5,1.7-1.201c0.101-0.199,0.101-0.4,0.101-0.6c0-0.5-0.199-1-0.699-1.4L25.4,6.963l0.1,0.1 - C24.8,6.363,23.7,6.263,22.8,6.963L22.8,6.963z"/> - <path fill="#006700" d="M22.803,6.989L5.155,22.044l0,0c-0.299,0.3-0.499,0.799-0.499,1.197c0,0.2,0,0.398,0.1,0.599 - c0.299,0.598,0.897,0.997,1.595,0.997l35.198-0.1c0.799,0,1.396-0.5,1.695-1.197c0.102-0.198,0.102-0.399,0.102-0.598 - c0-0.498-0.199-0.997-0.699-1.396L25.396,6.989l0.1,0.099C24.798,6.391,23.701,6.291,22.803,6.989L22.803,6.989z"/> - <path fill="#006800" d="M22.807,7.014L5.209,22.026l0,0c-0.298,0.299-0.497,0.796-0.497,1.193c0,0.199,0,0.397,0.1,0.598 - c0.298,0.596,0.895,0.994,1.591,0.994l35.096-0.1c0.796,0,1.394-0.498,1.69-1.194c0.1-0.198,0.1-0.397,0.1-0.596 - c0-0.497-0.198-0.995-0.696-1.393l-17.2-14.514l0.099,0.099C24.795,6.417,23.702,6.317,22.807,7.014L22.807,7.014z"/> - <path fill="#006900" d="M22.81,7.039L5.264,22.008l0,0c-0.298,0.298-0.496,0.793-0.496,1.189c0,0.198,0,0.396,0.099,0.596 - c0.297,0.594,0.893,0.99,1.586,0.99l34.995-0.099c0.794,0,1.388-0.497,1.686-1.19c0.101-0.198,0.101-0.397,0.101-0.594 - c0-0.496-0.198-0.991-0.694-1.389L25.389,7.039l0.1,0.099C24.793,6.444,23.703,6.345,22.81,7.039L22.81,7.039z"/> - <path fill="#006A00" d="M22.814,7.064L5.318,21.989l0,0c-0.296,0.298-0.494,0.792-0.494,1.187c0,0.198,0,0.395,0.099,0.594 - c0.295,0.593,0.89,0.987,1.582,0.987l34.892-0.098c0.793,0,1.386-0.494,1.682-1.187c0.1-0.197,0.1-0.396,0.1-0.593 - c0-0.494-0.197-0.988-0.691-1.384l-17.1-14.431l0.098,0.099C24.791,6.471,23.704,6.372,22.814,7.064L22.814,7.064z"/> - <path fill="#006B00" d="M22.817,7.089L5.373,21.971l0,0C5.077,22.267,4.88,22.76,4.88,23.154c0,0.197,0,0.394,0.099,0.592 - c0.295,0.591,0.887,0.984,1.577,0.984l34.792-0.099c0.789,0,1.381-0.493,1.676-1.183c0.1-0.196,0.1-0.395,0.1-0.591 - c0-0.493-0.197-0.986-0.689-1.38L25.381,7.089l0.098,0.098C24.788,6.498,23.705,6.399,22.817,7.089L22.817,7.089z"/> - <path fill="#006C00" d="M22.821,7.114L5.427,21.953l0,0c-0.295,0.295-0.492,0.787-0.492,1.179c0,0.197,0,0.393,0.099,0.59 - c0.294,0.589,0.884,0.981,1.572,0.981l34.688-0.098c0.787,0,1.376-0.492,1.671-1.181c0.1-0.196,0.1-0.393,0.1-0.589 - c0-0.492-0.196-0.983-0.688-1.376l-17-14.347l0.099,0.098C24.786,6.524,23.706,6.426,22.821,7.114L22.821,7.114z"/> - <path fill="#006D00" d="M22.824,7.139L5.481,21.934l0,0c-0.294,0.295-0.49,0.785-0.49,1.176c0,0.196,0,0.391,0.098,0.589 - c0.293,0.587,0.882,0.98,1.567,0.98l34.587-0.099c0.784,0,1.372-0.49,1.666-1.176c0.099-0.195,0.099-0.393,0.099-0.588 - c0-0.49-0.195-0.979-0.688-1.372L25.372,7.139l0.099,0.098C24.783,6.551,23.706,6.453,22.824,7.139L22.824,7.139z"/> - <path fill="#006E00" d="M22.827,7.164L5.536,21.915l0,0c-0.293,0.294-0.488,0.783-0.488,1.173c0,0.195,0,0.39,0.098,0.587 - c0.293,0.585,0.879,0.977,1.563,0.977l34.484-0.097c0.783,0,1.369-0.49,1.662-1.173c0.098-0.194,0.098-0.391,0.098-0.586 - c0-0.489-0.195-0.977-0.684-1.368L25.367,7.164l0.098,0.098C24.781,6.578,23.707,6.48,22.827,7.164L22.827,7.164z"/> - <path fill="#006F00" d="M22.831,7.189L5.591,21.897l0,0c-0.292,0.292-0.487,0.78-0.487,1.168c0,0.195,0,0.39,0.097,0.585 - c0.292,0.584,0.876,0.973,1.558,0.973l34.384-0.097c0.779,0,1.363-0.487,1.655-1.169c0.099-0.194,0.099-0.39,0.099-0.584 - c0-0.487-0.194-0.974-0.683-1.364L25.363,7.189l0.099,0.098C24.779,6.605,23.708,6.507,22.831,7.189L22.831,7.189z"/> - <path fill="#007000" d="M22.834,7.215L5.646,21.879l0,0c-0.292,0.292-0.486,0.778-0.486,1.165c0,0.195,0,0.388,0.098,0.584 - c0.291,0.582,0.874,0.971,1.554,0.971l34.281-0.098c0.778,0,1.36-0.485,1.651-1.166c0.098-0.193,0.098-0.389,0.098-0.583 - c0-0.485-0.193-0.971-0.68-1.36L25.359,7.215l0.098,0.097C24.775,6.632,23.709,6.535,22.834,7.215L22.834,7.215z"/> - <path fill="#007100" d="M22.838,7.24L5.7,21.86l0,0c-0.291,0.292-0.484,0.775-0.484,1.162c0,0.194,0,0.387,0.097,0.582 - c0.29,0.58,0.871,0.967,1.549,0.967l34.18-0.096c0.774,0,1.354-0.484,1.646-1.162c0.1-0.193,0.1-0.388,0.1-0.581 - c0-0.484-0.194-0.968-0.68-1.356L25.355,7.24l0.097,0.097C24.773,6.659,23.709,6.562,22.838,7.24L22.838,7.24z"/> - <path fill="#007200" d="M22.842,7.265L5.755,21.842l0,0C5.465,22.133,5.272,22.615,5.272,23c0,0.194,0,0.386,0.097,0.581 - c0.289,0.578,0.868,0.964,1.544,0.964l34.077-0.096c0.773,0,1.353-0.483,1.642-1.159c0.097-0.192,0.097-0.387,0.097-0.579 - c0-0.483-0.191-0.965-0.676-1.352L25.352,7.265l0.098,0.096C24.771,6.686,23.711,6.589,22.842,7.265L22.842,7.265z"/> - <path fill="#007300" d="M22.845,7.29L5.809,21.824l0,0c-0.29,0.29-0.481,0.771-0.481,1.155c0,0.193,0,0.385,0.096,0.579 - c0.289,0.577,0.867,0.961,1.54,0.961l33.976-0.097c0.771,0,1.35-0.481,1.638-1.155c0.097-0.192,0.097-0.386,0.097-0.577 - c0-0.481-0.191-0.963-0.674-1.348L25.348,7.29l0.098,0.096C24.771,6.712,23.711,6.616,22.845,7.29L22.845,7.29z"/> - <path fill="#007400" d="M22.848,7.315L5.863,21.805l0,0c-0.288,0.289-0.48,0.769-0.48,1.152c0,0.192,0,0.383,0.096,0.576 - c0.288,0.575,0.864,0.959,1.535,0.959l33.875-0.096c0.769,0,1.344-0.479,1.631-1.152c0.098-0.191,0.098-0.384,0.098-0.575 - c0-0.479-0.192-0.959-0.672-1.344L25.344,7.315l0.096,0.096C24.768,6.739,23.712,6.643,22.848,7.315L22.848,7.315z"/> - <path fill="#007500" d="M22.852,7.34L5.918,21.787l0,0c-0.288,0.288-0.479,0.767-0.479,1.148c0,0.191,0,0.382,0.096,0.575 - c0.287,0.574,0.861,0.956,1.53,0.956l33.772-0.096c0.767,0,1.34-0.478,1.627-1.148c0.097-0.19,0.097-0.383,0.097-0.574 - c0-0.479-0.19-0.957-0.67-1.34L25.34,7.34l0.096,0.095C24.766,6.767,23.713,6.67,22.852,7.34L22.852,7.34z"/> - <path fill="#007600" d="M22.855,7.365L5.973,21.768l0,0c-0.287,0.287-0.477,0.764-0.477,1.145c0,0.191,0,0.381,0.095,0.573 - c0.286,0.572,0.858,0.953,1.526,0.953l33.67-0.095c0.764,0,1.336-0.477,1.622-1.146c0.096-0.19,0.096-0.382,0.096-0.572 - c0-0.477-0.19-0.954-0.668-1.336L25.336,7.365l0.096,0.095C24.764,6.793,23.714,6.697,22.855,7.365L22.855,7.365z"/> - <path fill="#007700" d="M22.858,7.391L6.027,21.75l0,0c-0.286,0.286-0.476,0.762-0.476,1.142c0,0.19,0,0.38,0.095,0.571 - c0.285,0.57,0.856,0.95,1.521,0.95l33.567-0.095c0.763,0,1.332-0.476,1.617-1.141c0.097-0.189,0.097-0.381,0.097-0.57 - c0-0.476-0.19-0.951-0.666-1.332L25.331,7.391l0.096,0.095C24.762,6.82,23.715,6.725,22.858,7.391L22.858,7.391z"/> - <path fill="#007800" d="M22.862,7.416L6.082,21.731l0,0c-0.285,0.285-0.475,0.759-0.475,1.138c0,0.19,0,0.379,0.095,0.57 - c0.284,0.568,0.854,0.947,1.517,0.947l33.467-0.095c0.76,0,1.328-0.474,1.61-1.138c0.097-0.189,0.097-0.379,0.097-0.568 - c0-0.474-0.189-0.948-0.664-1.328L25.327,7.416l0.095,0.095C24.758,6.847,23.716,6.751,22.862,7.416L22.862,7.416z"/> - <path fill="#007900" d="M22.865,7.441L6.136,21.713l0,0c-0.284,0.284-0.473,0.757-0.473,1.135c0,0.189,0,0.377,0.095,0.567 - c0.283,0.567,0.851,0.944,1.512,0.944l33.365-0.094c0.758,0,1.324-0.473,1.607-1.135c0.095-0.188,0.095-0.378,0.095-0.566 - c0-0.473-0.188-0.945-0.662-1.324L25.323,7.441l0.095,0.094C24.756,6.874,23.716,6.779,22.865,7.441L22.865,7.441z"/> - <path fill="#007A00" d="M22.869,7.466L6.19,21.694l0,0c-0.283,0.283-0.471,0.754-0.471,1.131c0,0.188,0,0.376,0.094,0.566 - c0.283,0.564,0.848,0.941,1.507,0.941l33.263-0.094c0.755,0,1.319-0.471,1.603-1.131c0.096-0.188,0.096-0.377,0.096-0.565 - c0-0.471-0.188-0.942-0.66-1.32L25.318,7.466l0.095,0.094C24.754,6.901,23.717,6.806,22.869,7.466L22.869,7.466z"/> - <path fill="#007B00" d="M22.872,7.491L6.245,21.676l0,0c-0.282,0.283-0.47,0.752-0.47,1.128c0,0.188,0,0.375,0.094,0.564 - c0.282,0.563,0.846,0.939,1.503,0.939l33.161-0.094c0.753,0,1.316-0.469,1.598-1.127c0.096-0.187,0.096-0.376,0.096-0.563 - c0-0.47-0.188-0.939-0.658-1.316L25.314,7.491l0.095,0.094C24.751,6.927,23.718,6.833,22.872,7.491L22.872,7.491z"/> - <path fill="#007C00" d="M22.876,7.516L6.299,21.658l0,0c-0.281,0.281-0.468,0.75-0.468,1.124c0,0.188,0,0.374,0.094,0.562 - c0.281,0.562,0.843,0.936,1.499,0.936l33.059-0.093c0.75,0,1.312-0.468,1.594-1.124c0.094-0.187,0.094-0.375,0.094-0.562 - c0-0.468-0.188-0.937-0.656-1.312L25.312,7.516l0.094,0.094C24.749,6.954,23.719,6.86,22.876,7.516L22.876,7.516z"/> - <path fill="#007D00" d="M22.879,7.542L6.354,21.639l0,0c-0.281,0.281-0.467,0.748-0.467,1.121c0,0.187,0,0.373,0.094,0.561 - c0.28,0.56,0.84,0.933,1.494,0.933l32.958-0.093c0.748,0,1.308-0.467,1.586-1.121c0.096-0.186,0.096-0.374,0.096-0.56 - c0-0.467-0.188-0.934-0.654-1.307L25.307,7.542L25.4,7.635C24.746,6.981,23.72,6.887,22.879,7.542L22.879,7.542z"/> - <path fill="#007E00" d="M22.883,7.566L6.408,21.621l0,0c-0.279,0.28-0.465,0.745-0.465,1.117c0,0.187,0,0.372,0.093,0.559 - c0.279,0.558,0.838,0.93,1.489,0.93l32.856-0.093c0.746,0,1.305-0.465,1.583-1.117c0.095-0.186,0.095-0.373,0.095-0.559 - c0-0.465-0.188-0.93-0.652-1.303L25.303,7.566l0.094,0.093C24.744,7.008,23.721,6.915,22.883,7.566L22.883,7.566z"/> - <path fill="#007F00" d="M22.886,7.592L6.463,21.603l0,0c-0.279,0.279-0.464,0.743-0.464,1.113c0,0.186,0,0.371,0.093,0.558 - c0.278,0.556,0.835,0.927,1.484,0.927l32.754-0.092c0.743,0,1.3-0.464,1.577-1.114c0.094-0.185,0.094-0.372,0.094-0.557 - c0-0.464-0.187-0.928-0.649-1.299L25.299,7.592l0.094,0.092C24.742,7.035,23.722,6.941,22.886,7.592L22.886,7.592z"/> - <path fill="#007F00" d="M22.89,7.617L6.518,21.584l0,0c-0.278,0.278-0.462,0.741-0.462,1.11c0,0.185,0,0.369,0.092,0.556 - c0.276,0.555,0.833,0.924,1.48,0.924l32.651-0.092c0.742,0,1.297-0.462,1.572-1.11c0.094-0.185,0.094-0.371,0.094-0.555 - c0-0.462-0.186-0.925-0.647-1.295L25.295,7.617l0.094,0.092C24.738,7.062,23.723,6.969,22.89,7.617L22.89,7.617z"/> - <path fill="#008000" d="M22.893,7.642L6.572,21.565l0,0c-0.277,0.277-0.461,0.739-0.461,1.107c0,0.185,0,0.368,0.092,0.554 - c0.276,0.553,0.83,0.921,1.475,0.921l32.55-0.092c0.738,0,1.291-0.461,1.566-1.106c0.094-0.184,0.094-0.369,0.094-0.553 - c0-0.461-0.185-0.922-0.646-1.292L25.291,7.642l0.093,0.092C24.736,7.088,23.724,6.996,22.893,7.642L22.893,7.642z"/> - <path fill="#008100" d="M22.896,7.667l-16.27,13.88l0,0c-0.276,0.277-0.459,0.736-0.459,1.104c0,0.184,0,0.367,0.092,0.552 - c0.275,0.551,0.827,0.918,1.471,0.918l32.448-0.091c0.736,0,1.288-0.459,1.562-1.104c0.093-0.183,0.093-0.368,0.093-0.551 - c0-0.459-0.185-0.919-0.644-1.287L25.287,7.667l0.092,0.092C24.734,7.116,23.725,7.023,22.896,7.667L22.896,7.667z"/> - <path fill="#008200" d="M22.9,7.692L6.681,21.529l0,0c-0.275,0.275-0.458,0.734-0.458,1.1c0,0.184,0,0.366,0.092,0.55 - c0.275,0.549,0.825,0.916,1.466,0.916l32.347-0.091c0.733,0,1.284-0.458,1.558-1.1c0.094-0.183,0.094-0.367,0.094-0.55 - c0-0.458-0.184-0.917-0.643-1.283L25.282,7.692l0.093,0.091C24.732,7.143,23.725,7.05,22.9,7.692L22.9,7.692z"/> - <path fill="#008300" d="M22.903,7.717L6.735,21.51l0,0c-0.274,0.275-0.457,0.731-0.457,1.096c0,0.183,0,0.365,0.091,0.549 - c0.274,0.547,0.822,0.913,1.461,0.913l32.245-0.091c0.731,0,1.28-0.457,1.554-1.096c0.092-0.182,0.092-0.366,0.092-0.548 - c0-0.457-0.183-0.914-0.64-1.279L25.277,7.717l0.093,0.091C24.73,7.169,23.726,7.078,22.903,7.717L22.903,7.717z"/> - <path fill="#008400" d="M22.907,7.742L6.79,21.492l0,0c-0.273,0.274-0.456,0.729-0.456,1.093c0,0.183,0,0.364,0.091,0.547 - c0.273,0.546,0.82,0.909,1.457,0.909l32.144-0.09c0.729,0,1.274-0.455,1.548-1.093c0.092-0.181,0.092-0.364,0.092-0.546 - c0-0.455-0.183-0.911-0.638-1.275L25.273,7.742l0.093,0.091C24.729,7.196,23.727,7.105,22.907,7.742L22.907,7.742z"/> - <path fill="#008500" d="M22.911,7.768L6.845,21.474l0,0c-0.272,0.273-0.454,0.727-0.454,1.089c0,0.182,0,0.363,0.091,0.546 - c0.272,0.543,0.817,0.906,1.452,0.906l32.041-0.09c0.729,0,1.271-0.454,1.543-1.089c0.092-0.181,0.092-0.363,0.092-0.544 - c0-0.454-0.182-0.908-0.635-1.271L25.271,7.768l0.09,0.09C24.727,7.223,23.728,7.132,22.911,7.768L22.911,7.768z"/> - <path fill="#008600" d="M22.914,7.792L6.899,21.455l0,0c-0.272,0.272-0.453,0.725-0.453,1.086c0,0.181,0,0.361,0.091,0.543 - c0.271,0.542,0.814,0.904,1.447,0.904l31.939-0.09c0.726,0,1.269-0.452,1.538-1.086c0.092-0.18,0.092-0.362,0.092-0.542 - c0-0.452-0.181-0.905-0.634-1.267L25.268,7.792l0.09,0.09C24.725,7.25,23.729,7.159,22.914,7.792L22.914,7.792z"/> - <path fill="#008700" d="M22.917,7.818L6.954,21.437l0,0c-0.271,0.271-0.451,0.722-0.451,1.083c0,0.181,0,0.36,0.09,0.542 - c0.271,0.54,0.812,0.901,1.443,0.901l31.837-0.09c0.723,0,1.264-0.451,1.533-1.082c0.092-0.18,0.092-0.361,0.092-0.541 - c0-0.451-0.182-0.902-0.633-1.263L25.264,7.818l0.09,0.09C24.723,7.277,23.729,7.186,22.917,7.818L22.917,7.818z"/> - <path fill="#008800" d="M22.921,7.843L7.008,21.418l0,0c-0.27,0.27-0.45,0.72-0.45,1.079c0,0.18,0,0.359,0.09,0.54 - c0.27,0.539,0.809,0.898,1.438,0.898l31.734-0.09c0.722,0,1.261-0.449,1.529-1.079c0.09-0.179,0.09-0.36,0.09-0.539 - c0-0.449-0.18-0.899-0.629-1.259L25.259,7.843l0.091,0.09C24.719,7.303,23.73,7.213,22.921,7.843L22.921,7.843z"/> - <path fill="#008900" d="M22.924,7.868L7.062,21.4l0,0c-0.269,0.269-0.448,0.717-0.448,1.075c0,0.18,0,0.358,0.09,0.539 - c0.269,0.537,0.807,0.895,1.434,0.895l31.633-0.089c0.72,0,1.256-0.448,1.523-1.075c0.092-0.179,0.092-0.359,0.092-0.538 - c0-0.448-0.181-0.896-0.629-1.255L25.255,7.868l0.091,0.089C24.717,7.331,23.731,7.241,22.924,7.868L22.924,7.868z"/> - <path fill="#008A00" d="M22.928,7.893L7.117,21.381l0,0C6.849,21.65,6.67,22.097,6.67,22.453c0,0.179,0,0.357,0.089,0.537 - c0.268,0.536,0.804,0.893,1.429,0.893l31.533-0.089c0.715,0,1.252-0.446,1.518-1.072c0.092-0.178,0.092-0.358,0.092-0.536 - c0-0.446-0.18-0.894-0.626-1.251L25.25,7.893l0.09,0.089C24.714,7.357,23.732,7.268,22.928,7.893L22.928,7.893z"/> - <path fill="#008B00" d="M22.931,7.918L7.172,21.363l0,0c-0.268,0.268-0.445,0.713-0.445,1.069c0,0.178,0,0.355,0.089,0.535 - c0.267,0.534,0.801,0.89,1.424,0.89l31.43-0.089c0.714,0,1.248-0.445,1.514-1.068c0.09-0.178,0.09-0.357,0.09-0.534 - c0-0.445-0.178-0.891-0.623-1.247L25.246,7.918l0.09,0.089C24.712,7.384,23.733,7.295,22.931,7.918L22.931,7.918z"/> - <path fill="#008C00" d="M22.935,7.943L7.227,21.345l0,0c-0.267,0.267-0.444,0.71-0.444,1.065c0,0.178,0,0.354,0.089,0.533 - c0.266,0.532,0.799,0.887,1.42,0.887l31.328-0.089c0.711,0,1.243-0.443,1.509-1.065c0.09-0.177,0.09-0.355,0.09-0.532 - c0-0.444-0.178-0.888-0.621-1.243L25.242,7.943l0.089,0.089C24.71,7.411,23.734,7.322,22.935,7.943L22.935,7.943z"/> - <path fill="#008D00" d="M22.938,7.968L7.281,21.326l0,0c-0.266,0.266-0.442,0.708-0.442,1.062c0,0.177,0,0.353,0.088,0.532 - c0.264,0.53,0.796,0.883,1.415,0.883l31.227-0.088c0.709,0,1.24-0.442,1.505-1.062c0.09-0.176,0.09-0.354,0.09-0.53 - c0-0.442-0.177-0.885-0.62-1.239L25.238,7.968l0.089,0.088C24.707,7.438,23.735,7.349,22.938,7.968L22.938,7.968z"/> - <path fill="#008E00" d="M22.941,7.994L7.335,21.308l0,0c-0.265,0.265-0.441,0.706-0.441,1.058c0,0.177,0,0.352,0.088,0.53 - c0.264,0.528,0.793,0.881,1.411,0.881l31.125-0.088c0.707,0,1.235-0.441,1.5-1.058c0.088-0.176,0.088-0.353,0.088-0.529 - c0-0.441-0.176-0.882-0.617-1.235L25.234,7.994l0.089,0.088C24.705,7.465,23.736,7.376,22.941,7.994L22.941,7.994z"/> - <path fill="#008F00" d="M22.945,8.019L7.39,21.289l0,0c-0.264,0.264-0.44,0.704-0.44,1.055c0,0.176,0,0.351,0.088,0.528 - c0.263,0.527,0.791,0.878,1.406,0.878l31.022-0.088c0.704,0,1.231-0.439,1.494-1.055c0.089-0.175,0.089-0.352,0.089-0.527 - c0-0.439-0.176-0.879-0.615-1.231L25.229,8.019l0.09,0.088C24.703,7.492,23.736,7.403,22.945,8.019L22.945,8.019z"/> - <path fill="#009000" d="M22.948,8.044L7.444,21.271l0,0c-0.263,0.263-0.438,0.701-0.438,1.051c0,0.175,0,0.35,0.087,0.526 - c0.263,0.525,0.789,0.875,1.401,0.875l30.921-0.088c0.702,0,1.228-0.438,1.489-1.051c0.089-0.174,0.089-0.351,0.089-0.525 - c0-0.438-0.177-0.876-0.614-1.227L25.227,8.044l0.088,0.087C24.7,7.519,23.737,7.431,22.948,8.044L22.948,8.044z"/> - <path fill="#009100" d="M22.952,8.069L7.499,21.252l0,0c-0.262,0.262-0.437,0.699-0.437,1.048c0,0.175,0,0.349,0.087,0.524 - c0.262,0.523,0.786,0.872,1.397,0.872l30.819-0.087c0.699,0,1.224-0.436,1.484-1.047c0.088-0.174,0.088-0.35,0.088-0.524 - c0-0.436-0.174-0.873-0.611-1.223L25.223,8.069l0.088,0.087C24.698,7.545,23.738,7.458,22.952,8.069L22.952,8.069z"/> - <path fill="#009200" d="M22.955,8.094L7.553,21.234l0,0c-0.261,0.262-0.435,0.697-0.435,1.044c0,0.174,0,0.347,0.087,0.523 - c0.259,0.521,0.783,0.869,1.392,0.869l30.717-0.087c0.697,0,1.22-0.435,1.479-1.044c0.088-0.173,0.088-0.348,0.088-0.522 - c0-0.435-0.174-0.87-0.609-1.218L25.218,8.094l0.089,0.087C24.695,7.572,23.739,7.485,22.955,8.094L22.955,8.094z"/> - <path fill="#009300" d="M22.959,8.119L7.608,21.215l0,0c-0.26,0.261-0.434,0.695-0.434,1.041c0,0.174,0,0.346,0.087,0.521 - c0.26,0.52,0.781,0.867,1.388,0.867l30.615-0.087c0.695,0,1.217-0.434,1.475-1.041c0.089-0.173,0.089-0.348,0.089-0.521 - c0-0.433-0.175-0.867-0.606-1.214L25.214,8.119l0.088,0.087C24.693,7.599,23.74,7.512,22.959,8.119L22.959,8.119z"/> - <path fill="#009400" d="M22.962,8.145l-15.3,13.053l0,0c-0.26,0.26-0.433,0.692-0.433,1.037c0,0.173,0,0.345,0.086,0.52 - c0.259,0.518,0.778,0.863,1.383,0.863l30.514-0.086c0.692,0,1.212-0.432,1.47-1.038c0.088-0.172,0.088-0.346,0.088-0.519 - c0-0.432-0.172-0.864-0.605-1.21L25.21,8.145l0.087,0.086C24.691,7.626,23.741,7.539,22.962,8.145L22.962,8.145z"/> - <path fill="#009500" d="M22.966,8.169L7.717,21.179l0,0c-0.259,0.259-0.431,0.69-0.431,1.034c0,0.173,0,0.344,0.086,0.518 - c0.257,0.517,0.775,0.86,1.378,0.86l30.412-0.086c0.689,0,1.207-0.431,1.465-1.034c0.087-0.171,0.087-0.345,0.087-0.517 - c0-0.431-0.172-0.861-0.604-1.207L25.206,8.169l0.087,0.086C24.688,7.653,23.742,7.566,22.966,8.169L22.966,8.169z"/> - <path fill="#009600" d="M22.969,8.195L7.771,21.16l0,0c-0.258,0.258-0.43,0.688-0.43,1.03c0,0.172,0,0.343,0.086,0.516 - c0.257,0.515,0.773,0.858,1.374,0.858l30.311-0.086c0.688,0,1.203-0.429,1.459-1.03c0.088-0.171,0.088-0.344,0.088-0.515 - c0-0.429-0.172-0.859-0.602-1.203L25.201,8.195l0.087,0.085C24.688,7.68,23.743,7.593,22.969,8.195L22.969,8.195z"/> - <path fill="#009700" d="M22.973,8.22L7.826,21.142l0,0c-0.257,0.257-0.428,0.686-0.428,1.027c0,0.171,0,0.341,0.085,0.514 - c0.255,0.513,0.771,0.855,1.369,0.855l30.208-0.086c0.687,0,1.198-0.428,1.455-1.027c0.086-0.17,0.086-0.343,0.086-0.513 - c0-0.428-0.172-0.856-0.6-1.198L25.197,8.22l0.087,0.085C24.686,7.707,23.743,7.621,22.973,8.22L22.973,8.22z"/> - <path fill="#009800" d="M22.976,8.245L7.88,21.124l0,0c-0.256,0.256-0.427,0.683-0.427,1.023c0,0.171,0,0.34,0.085,0.512 - c0.256,0.511,0.768,0.852,1.364,0.852l30.106-0.085c0.684,0,1.195-0.426,1.45-1.023c0.086-0.17,0.086-0.342,0.086-0.512 - c0-0.426-0.17-0.853-0.599-1.194L25.193,8.245l0.086,0.085C24.682,7.733,23.744,7.647,22.976,8.245L22.976,8.245z"/> - <path fill="#009900" d="M22.979,8.27L7.935,21.105l0,0C7.68,21.36,7.51,21.786,7.51,22.125c0,0.17,0,0.339,0.085,0.511 - c0.255,0.509,0.765,0.849,1.36,0.849L38.959,23.4c0.682,0,1.191-0.425,1.445-1.02c0.086-0.169,0.086-0.34,0.086-0.51 - c0-0.425-0.17-0.85-0.596-1.19L25.189,8.27l0.086,0.085C24.68,7.76,23.745,7.675,22.979,8.27L22.979,8.27z"/> - </g> - - <linearGradient id="Roof_Highlight_1_" gradientUnits="userSpaceOnUse" x1="210" y1="-237.8638" x2="210" y2="-253.4849" gradientTransform="matrix(1 0 0 -1 -186 -230)"> - <stop offset="0" style="stop-color:#FFFFFF"/> - <stop offset="1" style="stop-color:#009900"/> - </linearGradient> - <path id="Roof_Highlight" fill="url(#Roof_Highlight_1_)" d="M22.979,8.27L7.935,21.105l0,0C7.68,21.36,7.51,21.786,7.51,22.125 - c0,0.17,0,0.339,0.085,0.51c0.255,0.51,0.765,0.85,1.36,0.85L38.959,23.4c0.682,0,1.191-0.425,1.445-1.021 - c0.086-0.169,0.086-0.34,0.086-0.51c0-0.424-0.17-0.85-0.596-1.189L25.189,8.27l0.086,0.085C24.68,7.76,23.745,7.675,22.979,8.27 - L22.979,8.27z"/> - </g> - </g> -</g> -<g id="Layer_2"> - <g id="crop_x0020_marks"> - <path fill="none" d="M48,47.687H0v-48h48V47.687z"/> - </g> -</g> -</svg> diff --git a/docbook-xsl-1.75.2/images/colorsvg/important.svg b/docbook-xsl-1.75.2/images/colorsvg/important.svg deleted file mode 100644 index 803ad8d..0000000 --- a/docbook-xsl-1.75.2/images/colorsvg/important.svg +++ /dev/null @@ -1,239 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [ - <!ENTITY ns_svg "http://www.w3.org/2000/svg"> - <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> -]> -<svg version="1.1" id="Caution" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="48" height="48" viewBox="0 0 48 48" - overflow="visible" enable-background="new 0 0 48 48" xml:space="preserve"> -<g> - <path stroke="#FFFFFF" stroke-width="6.6112" d="M42.35,35.841L27.248,9.941c-0.602-1-1.699-1.7-2.899-1.6c-1.2,0-2.3,0.7-2.9,1.7 - l-14.5,25.901c-0.6,1-0.6,2.299,0,3.299c0.6,1,1.7,1.6,2.9,1.6h29.601c1.199,0,2.301-0.6,2.898-1.697 - C42.949,38.142,42.949,36.841,42.35,35.841L42.35,35.841z"/> - <g> - <path fill="#FFFFFF" stroke="#009900" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" d="M24.349,11.586 - l-14.5,26h29.601L24.349,11.586z"/> - <polygon fill="#FFFFFF" stroke="#009A00" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.35,11.611 9.877,37.562 39.42,37.562 "/> - <polygon fill="#FFFFFF" stroke="#009B01" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.35,11.637 9.907,37.536 39.391,37.536 "/> - <polygon fill="#FFFFFF" stroke="#009C01" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.351,11.662 9.935,37.511 39.361,37.511 "/> - <polygon fill="#FFFFFF" stroke="#009D02" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.352,11.688 9.963,37.485 39.334,37.485 "/> - <polygon fill="#FFFFFF" stroke="#009E02" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.352,11.712 9.993,37.46 39.305,37.46 "/> - <polygon fill="#FFFFFF" stroke="#009F03" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.353,11.738 10.021,37.435 39.275,37.435 "/> - <polygon fill="#FFFFFF" stroke="#00A003" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.353,11.763 10.049,37.409 39.248,37.409 "/> - <polygon fill="#FFFFFF" stroke="#00A104" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.354,11.789 10.079,37.386 39.219,37.386 "/> - <polygon fill="#FFFFFF" stroke="#00A204" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.354,11.813 10.106,37.36 39.189,37.36 "/> - <polygon fill="#FFFFFF" stroke="#00A305" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.354,11.838 10.135,37.335 39.16,37.335 "/> - <polygon fill="#FFFFFF" stroke="#00A405" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.355,11.864 10.166,37.31 39.133,37.31 "/> - <polygon fill="#FFFFFF" stroke="#00A506" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.355,11.89 10.193,37.284 39.104,37.284 "/> - <polygon fill="#FFFFFF" stroke="#00A606" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.355,11.915 10.223,37.259 39.074,37.259 "/> - <polygon fill="#FFFFFF" stroke="#00A707" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.356,11.939 10.25,37.233 39.047,37.233 "/> - <polygon fill="#FFFFFF" stroke="#00A807" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.357,11.965 10.279,37.21 39.018,37.21 "/> - <polygon fill="#FFFFFF" stroke="#00A908" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.357,11.99 10.309,37.183 38.988,37.183 "/> - <polygon fill="#FFFFFF" stroke="#00AA08" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.357,12.016 10.336,37.157 38.959,37.157 "/> - <polygon fill="#FFFFFF" stroke="#00AB09" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.358,12.041 10.367,37.132 38.932,37.132 "/> - <polygon fill="#FFFFFF" stroke="#00AC09" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.359,12.066 10.396,37.106 38.902,37.106 "/> - <polygon fill="#FFFFFF" stroke="#00AD0A" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.359,12.091 10.423,37.083 38.873,37.083 "/> - <polygon fill="#FFFFFF" stroke="#00AE0A" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.36,12.116 10.453,37.056 38.846,37.056 "/> - <polygon fill="#FFFFFF" stroke="#00AF0B" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.361,12.142 10.48,37.032 38.816,37.032 "/> - <polygon fill="#FFFFFF" stroke="#00B00B" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.362,12.167 10.509,37.007 38.789,37.007 "/> - <polygon fill="#FFFFFF" stroke="#00B10C" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.362,12.191 10.539,36.981 38.76,36.981 "/> - <polygon fill="#FFFFFF" stroke="#00B20C" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.362,12.217 10.566,36.956 38.729,36.956 "/> - <polygon fill="#FFFFFF" stroke="#00B30D" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.363,12.242 10.596,36.931 38.701,36.931 "/> - <polygon fill="#FFFFFF" stroke="#00B40D" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.364,12.269 10.625,36.905 38.674,36.905 "/> - <polygon fill="#FFFFFF" stroke="#00B50E" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.364,12.293 10.653,36.88 38.645,36.88 "/> - <polygon fill="#FFFFFF" stroke="#00B60E" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.366,12.317 10.682,36.854 38.613,36.854 "/> - <polygon fill="#FFFFFF" stroke="#00B70F" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.367,12.343 10.71,36.829 38.586,36.829 "/> - <polygon fill="#FFFFFF" stroke="#00B80F" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.367,12.37 10.739,36.804 38.559,36.804 "/> - <polygon fill="#FFFFFF" stroke="#00B910" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.368,12.395 10.769,36.778 38.527,36.778 "/> - <polygon fill="#FFFFFF" stroke="#00BA10" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.368,12.419 10.796,36.755 38.5,36.755 "/> - <polygon fill="#FFFFFF" stroke="#00BB11" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.369,12.444 10.826,36.728 38.471,36.728 "/> - <polygon fill="#FFFFFF" stroke="#00BC11" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.37,12.469 10.854,36.704 38.441,36.704 "/> - <polygon fill="#FFFFFF" stroke="#00BD12" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.37,12.496 10.883,36.677 38.414,36.677 "/> - <polygon fill="#FFFFFF" stroke="#00BE12" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.371,12.521 10.912,36.651 38.385,36.651 "/> - <polygon fill="#FFFFFF" stroke="#00BF13" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.371,12.545 10.94,36.628 38.355,36.628 "/> - <polygon fill="#FFFFFF" stroke="#00C013" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.372,12.57 10.969,36.603 38.328,36.603 "/> - <polygon fill="#FFFFFF" stroke="#00C114" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.372,12.595 10.999,36.577 38.299,36.577 "/> - <polygon fill="#FFFFFF" stroke="#00C214" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.373,12.622 11.026,36.552 38.27,36.552 "/> - <polygon fill="#FFFFFF" stroke="#00C315" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.373,12.646 11.056,36.526 38.242,36.526 "/> - <polygon fill="#FFFFFF" stroke="#00C415" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.374,12.672 11.084,36.503 38.213,36.503 "/> - <polygon fill="#FFFFFF" stroke="#00C516" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.375,12.696 11.113,36.476 38.184,36.476 "/> - <polygon fill="#FFFFFF" stroke="#00C616" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.375,12.721 11.142,36.45 38.154,36.45 "/> - <polygon fill="#FFFFFF" stroke="#00C717" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.375,12.748 11.17,36.425 38.127,36.425 "/> - <polygon fill="#FFFFFF" stroke="#00C817" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.375,12.773 11.2,36.401 38.098,36.401 "/> - <polygon fill="#FFFFFF" stroke="#00C918" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.376,12.797 11.229,36.376 38.068,36.376 "/> - <polygon fill="#FFFFFF" stroke="#00CA18" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.376,12.822 11.256,36.349 38.041,36.349 "/> - <polygon fill="#FFFFFF" stroke="#00CB19" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.377,12.849 11.286,36.325 38.012,36.325 "/> - <polygon fill="#FFFFFF" stroke="#00CC19" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.378,12.875 11.314,36.3 37.982,36.3 "/> - <polygon fill="#FFFFFF" stroke="#00CC1A" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.378,12.899 11.342,36.274 37.955,36.274 "/> - <polygon fill="#FFFFFF" stroke="#00CD1A" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.379,12.923 11.372,36.249 37.926,36.249 "/> - <polygon fill="#FFFFFF" stroke="#00CE1B" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.379,12.949 11.4,36.224 37.896,36.224 "/> - <polygon fill="#FFFFFF" stroke="#00CF1B" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.38,12.975 11.43,36.198 37.867,36.198 "/> - <polygon fill="#FFFFFF" stroke="#00D01C" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.381,13 11.458,36.173 37.84,36.173 "/> - <polygon fill="#FFFFFF" stroke="#00D11C" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.381,13.024 11.486,36.147 37.811,36.147 "/> - <polygon fill="#FFFFFF" stroke="#00D21D" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.381,13.05 11.516,36.124 37.781,36.124 "/> - <polygon fill="#FFFFFF" stroke="#00D31D" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.382,13.075 11.543,36.097 37.754,36.097 "/> - <polygon fill="#FFFFFF" stroke="#00D41E" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.383,13.102 11.572,36.071 37.725,36.071 "/> - <polygon fill="#FFFFFF" stroke="#00D51E" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.383,13.126 11.602,36.046 37.695,36.046 "/> - <polygon fill="#FFFFFF" stroke="#00D61F" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.384,13.151 11.63,36.022 37.666,36.022 "/> - <polygon fill="#FFFFFF" stroke="#00D71F" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.385,13.176 11.66,35.997 37.639,35.997 "/> - <polygon fill="#FFFFFF" stroke="#00D820" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.385,13.201 11.688,35.972 37.609,35.972 "/> - <polygon fill="#FFFFFF" stroke="#00D920" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.387,13.228 11.716,35.946 37.58,35.946 "/> - <polygon fill="#FFFFFF" stroke="#00DA21" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.387,13.252 11.746,35.921 37.553,35.921 "/> - <polygon fill="#FFFFFF" stroke="#00DB21" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.388,13.277 11.773,35.896 37.521,35.896 "/> - <polygon fill="#FFFFFF" stroke="#00DC22" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.389,13.302 11.802,35.872 37.494,35.872 "/> - <polygon fill="#FFFFFF" stroke="#00DD22" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.389,13.327 11.832,35.845 37.465,35.845 "/> - <polygon fill="#FFFFFF" stroke="#00DE23" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.39,13.354 11.86,35.819 37.438,35.819 "/> - <polygon fill="#FFFFFF" stroke="#00DF23" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.39,13.378 11.89,35.796 37.408,35.796 "/> - <polygon fill="#FFFFFF" stroke="#00E024" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.391,13.403 11.917,35.769 37.379,35.769 "/> - <polygon fill="#FFFFFF" stroke="#00E124" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.391,13.429 11.946,35.743 37.352,35.743 "/> - <polygon fill="#FFFFFF" stroke="#00E225" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.392,13.455 11.976,35.718 37.32,35.718 "/> - <polygon fill="#FFFFFF" stroke="#00E325" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.393,13.479 12.003,35.694 37.293,35.694 "/> - <polygon fill="#FFFFFF" stroke="#00E426" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.393,13.504 12.033,35.669 37.264,35.669 "/> - <polygon fill="#FFFFFF" stroke="#00E526" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.394,13.529 12.062,35.644 37.234,35.644 "/> - <polygon fill="#FFFFFF" stroke="#00E627" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.394,13.556 12.09,35.618 37.207,35.618 "/> - <polygon fill="#FFFFFF" stroke="#00E727" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.395,13.581 12.12,35.593 37.178,35.593 "/> - <polygon fill="#FFFFFF" stroke="#00E828" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.396,13.605 12.147,35.567 37.148,35.567 "/> - <polygon fill="#FFFFFF" stroke="#00E928" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.396,13.63 12.176,35.544 37.121,35.544 "/> - <polygon fill="#FFFFFF" stroke="#00EA29" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.396,13.655 12.206,35.517 37.092,35.517 "/> - <polygon fill="#FFFFFF" stroke="#00EB29" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.396,13.682 12.233,35.491 37.062,35.491 "/> - <polygon fill="#FFFFFF" stroke="#00EC2A" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.397,13.707 12.263,35.466 37.035,35.466 "/> - <polygon fill="#FFFFFF" stroke="#00ED2A" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.397,13.732 12.292,35.44 37.006,35.44 "/> - <polygon fill="#FFFFFF" stroke="#00EE2B" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.398,13.756 12.319,35.417 36.977,35.417 "/> - <polygon fill="#FFFFFF" stroke="#00EF2B" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.398,13.782 12.349,35.392 36.949,35.392 "/> - <polygon fill="#FFFFFF" stroke="#00F02C" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.399,13.808 12.377,35.366 36.92,35.366 "/> - <polygon fill="#FFFFFF" stroke="#00F12C" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.399,13.833 12.407,35.341 36.891,35.341 "/> - <polygon fill="#FFFFFF" stroke="#00F22D" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.4,13.858 12.436,35.315 36.861,35.315 "/> - <polygon fill="#FFFFFF" stroke="#00F32D" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.401,13.883 12.463,35.29 36.834,35.29 "/> - <polygon fill="#FFFFFF" stroke="#00F42E" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.401,13.908 12.493,35.265 36.805,35.265 "/> - <polygon fill="#FFFFFF" stroke="#00F52E" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.402,13.934 12.521,35.239 36.775,35.239 "/> - <polygon fill="#FFFFFF" stroke="#00F62F" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.402,13.959 12.549,35.214 36.748,35.214 "/> - <polygon fill="#FFFFFF" stroke="#00F72F" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.403,13.983 12.579,35.188 36.719,35.188 "/> - <polygon fill="#FFFFFF" stroke="#00F830" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.404,14.009 12.607,35.165 36.689,35.165 "/> - <polygon fill="#FFFFFF" stroke="#00F930" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.404,14.034 12.637,35.138 36.662,35.138 "/> - <polygon fill="#FFFFFF" stroke="#00FA31" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.405,14.061 12.666,35.112 36.633,35.112 "/> - <polygon fill="#FFFFFF" stroke="#00FB31" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.405,14.085 12.693,35.089 36.604,35.089 "/> - <polygon fill="#FFFFFF" stroke="#00FC32" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.407,14.11 12.723,35.063 36.574,35.063 "/> - <polygon fill="#FFFFFF" stroke="#00FD32" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.408,14.135 12.75,35.038 36.547,35.038 "/> - <polygon fill="#FFFFFF" stroke="#00FE33" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" - 24.408,14.16 12.779,35.013 36.518,35.013 "/> - <path fill="#FFFFFF" stroke="#00FF33" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" d="M24.409,14.187 - l-11.6,20.801h23.68L24.409,14.187z"/> - </g> - - <linearGradient id="XMLID_4_" gradientUnits="userSpaceOnUse" x1="582.6475" y1="-987.77" x2="582.6475" y2="-1015.4038" gradientTransform="matrix(1 0 0 -1 -558 -977)"> - <stop offset="0" style="stop-color:#FFFFFF"/> - <stop offset="1" style="stop-color:#00FF33"/> - </linearGradient> - <path fill="url(#XMLID_4_)" d="M39.693,34.153L26.857,12.138c-0.51-0.85-1.443-1.445-2.463-1.36c-1.021,0-1.955,0.595-2.465,1.445 - L9.604,34.239c-0.511,0.85-0.511,1.953,0,2.805c0.51,0.852,1.444,1.359,2.465,1.359h25.16c1.021,0,1.955-0.51,2.465-1.445 - C40.203,36.106,40.203,35.003,39.693,34.153L39.693,34.153z"/> - <g> - <path d="M24.648,33.487c-1.1,0-1.8-0.801-1.8-1.801c0-1.102,0.7-1.801,1.8-1.801c1.1,0,1.801,0.699,1.801,1.801 - C26.449,32.687,25.748,33.487,24.648,33.487L24.648,33.487z M23.449,28.786l-0.4-9.1h3.2l-0.4,9.1H23.55H23.449z"/> - </g> -</g> -<g id="crop_x0020_marks"> - <path fill="none" d="M48.648,48.586h-48v-48h48V48.586z"/> -</g> -</svg> diff --git a/docbook-xsl-1.75.2/images/colorsvg/next.svg b/docbook-xsl-1.75.2/images/colorsvg/next.svg deleted file mode 100644 index 52b73cf..0000000 --- a/docbook-xsl-1.75.2/images/colorsvg/next.svg +++ /dev/null @@ -1,338 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [ - <!ENTITY ns_svg "http://www.w3.org/2000/svg"> - <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> -]> -<svg version="1.1" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="48" height="48" viewBox="0 0 48 48" - overflow="visible" enable-background="new 0 0 48 48" xml:space="preserve"> -<g> - <path fill="#FFFFFF" stroke="#FFFFFF" stroke-width="7.5901" stroke-linejoin="round" d="M22.34,41.101c0,0.301,0.3,0.301,0.5,0.2 - l16.6-16.899c0.5-0.5,0.4-0.7,0-1l-16.6-16.7c-0.1-0.1-0.4-0.1-0.4,0.1v10H8.84c-0.3,0-0.5,0.2-0.5,0.4v13.299 - c0,0.4,0.2,0.5,0.6,0.5h13.5L22.34,41.101z"/> - <g> - <path fill="#0033CC" d="M22.34,41.101c0,0.301,0.3,0.301,0.5,0.2l16.6-16.899c0.5-0.5,0.4-0.7,0-1l-16.6-16.7 - c-0.1-0.1-0.4-0.1-0.4,0.1v10H8.84c-0.3,0-0.5,0.2-0.5,0.4v13.299c0,0.4,0.2,0.5,0.6,0.5h13.5L22.34,41.101z"/> - <path fill="#0134CC" d="M22.351,41.074c0,0.3,0.3,0.3,0.5,0.2L39.427,24.4c0.5-0.499,0.4-0.699,0-0.999L22.85,6.729 - c-0.1-0.1-0.399-0.1-0.399,0.099v9.984H8.87c-0.299,0-0.5,0.2-0.5,0.4v13.279c0,0.398,0.2,0.499,0.6,0.499H22.45L22.351,41.074z" - /> - <path fill="#0235CD" d="M22.359,41.047c0,0.3,0.299,0.3,0.499,0.2l16.553-16.848c0.5-0.498,0.399-0.697,0-0.997L22.858,6.755 - c-0.1-0.1-0.399-0.1-0.399,0.1v9.969H8.897c-0.299,0-0.499,0.199-0.499,0.399v13.258c0,0.398,0.2,0.498,0.598,0.498h13.462 - L22.359,41.047z"/> - <path fill="#0336CD" d="M22.369,41.021c0,0.301,0.299,0.301,0.498,0.199l16.53-16.82c0.498-0.498,0.397-0.696,0-0.995 - L22.866,6.783c-0.1-0.1-0.398-0.1-0.398,0.099v9.953H8.926c-0.299,0-0.498,0.199-0.498,0.398v13.239 - c0,0.397,0.199,0.496,0.598,0.496h13.442L22.369,41.021z"/> - <path fill="#0437CE" d="M22.378,40.994c0,0.299,0.298,0.299,0.497,0.198l16.506-16.794c0.496-0.497,0.397-0.695,0-0.994 - L22.876,6.81c-0.1-0.1-0.398-0.1-0.398,0.099v9.937H8.956c-0.298,0-0.498,0.199-0.498,0.398v13.217c0,0.397,0.2,0.496,0.597,0.496 - h13.423L22.378,40.994z"/> - <path fill="#0538CE" d="M22.389,40.968c0,0.299,0.298,0.299,0.496,0.198l16.483-16.769c0.496-0.496,0.397-0.694,0-0.992 - L22.884,6.836c-0.099-0.099-0.397-0.099-0.397,0.099v9.922H8.983c-0.297,0-0.496,0.199-0.496,0.397V30.45 - c0,0.396,0.199,0.496,0.596,0.496h13.404L22.389,40.968z"/> - <path fill="#0639CF" d="M22.398,40.94c0,0.299,0.298,0.299,0.496,0.199l16.46-16.742c0.495-0.496,0.396-0.694,0-0.991 - L22.894,6.863c-0.099-0.099-0.396-0.099-0.396,0.099v9.906H9.012c-0.297,0-0.496,0.198-0.496,0.396V30.44 - c0,0.396,0.199,0.494,0.595,0.494h13.386L22.398,40.94z"/> - <path fill="#073ACF" d="M22.407,40.914c0,0.298,0.298,0.298,0.495,0.198l16.437-16.716c0.494-0.495,0.396-0.692,0-0.989 - L22.902,6.891c-0.099-0.099-0.396-0.099-0.396,0.099v9.891H9.041c-0.296,0-0.495,0.198-0.495,0.396v13.154 - c0,0.396,0.198,0.493,0.594,0.493h13.367L22.407,40.914z"/> - <path fill="#083BD0" d="M22.417,40.888c0,0.297,0.297,0.297,0.495,0.198l16.413-16.689c0.494-0.494,0.396-0.691,0-0.987 - L22.912,6.917c-0.099-0.099-0.396-0.099-0.396,0.099v9.875H9.069c-0.296,0-0.494,0.198-0.494,0.396v13.133 - c0,0.395,0.198,0.493,0.594,0.493h13.347L22.417,40.888z"/> - <path fill="#093CD0" d="M22.426,40.86c0,0.297,0.296,0.297,0.493,0.197l16.39-16.662c0.492-0.494,0.395-0.69,0-0.986L22.919,6.943 - c-0.099-0.099-0.395-0.099-0.395,0.098v9.86H9.099c-0.296,0-0.494,0.197-0.494,0.395V30.41c0,0.396,0.198,0.493,0.593,0.493 - h13.328L22.426,40.86z"/> - <path fill="#0A3DD1" d="M22.437,40.834c0,0.297,0.296,0.297,0.493,0.196l16.367-16.636c0.492-0.493,0.395-0.689,0-0.984 - L22.928,6.97c-0.099-0.099-0.394-0.099-0.394,0.098v9.844H9.127c-0.296,0-0.493,0.197-0.493,0.394v13.093 - c0,0.395,0.197,0.492,0.592,0.492h13.309L22.437,40.834z"/> - <path fill="#0B3ED1" d="M22.445,40.808c0,0.297,0.296,0.297,0.492,0.197l16.343-16.61c0.492-0.492,0.395-0.688,0-0.982 - L22.938,6.999C22.84,6.9,22.544,6.9,22.544,7.097v9.829H9.155c-0.295,0-0.493,0.196-0.493,0.394v13.072 - c0,0.394,0.198,0.49,0.591,0.49h13.29L22.445,40.808z"/> - <path fill="#0C3FD2" d="M22.456,40.78c0,0.296,0.295,0.296,0.492,0.197l16.319-16.584c0.49-0.491,0.395-0.687,0-0.982 - L22.946,7.024c-0.098-0.098-0.393-0.098-0.393,0.098v9.813H9.185c-0.294,0-0.492,0.196-0.492,0.393v13.05 - c0,0.394,0.197,0.491,0.59,0.491h13.271L22.456,40.78z"/> - <path fill="#0D40D2" d="M22.464,40.754c0,0.295,0.294,0.295,0.491,0.196l16.295-16.558c0.489-0.49,0.393-0.686,0-0.98 - L22.956,7.051c-0.099-0.098-0.393-0.098-0.393,0.097v9.797H9.212c-0.294,0-0.49,0.197-0.49,0.393v13.031 - c0,0.393,0.196,0.489,0.588,0.489h13.252L22.464,40.754z"/> - <path fill="#0E41D3" d="M22.475,40.728c0,0.295,0.294,0.295,0.49,0.196l16.272-16.531c0.49-0.489,0.394-0.684,0-0.978L22.964,7.08 - c-0.098-0.098-0.392-0.098-0.392,0.097v9.782H9.241c-0.294,0-0.49,0.196-0.49,0.392v13.01c0,0.392,0.196,0.488,0.588,0.488h13.233 - L22.475,40.728z"/> - <path fill="#0F42D3" d="M22.483,40.701c0,0.294,0.294,0.294,0.49,0.194l16.248-16.504c0.488-0.488,0.393-0.683,0-0.977 - L22.974,7.105c-0.098-0.098-0.391-0.098-0.391,0.097v9.767H9.271c-0.293,0-0.489,0.195-0.489,0.391v12.988 - c0,0.392,0.196,0.487,0.587,0.487h13.214L22.483,40.701z"/> - <path fill="#1043D4" d="M22.494,40.675c0,0.293,0.294,0.293,0.489,0.194l16.226-16.478c0.487-0.488,0.392-0.683,0-0.975 - L22.982,7.132c-0.098-0.098-0.391-0.098-0.391,0.097v9.751H9.298c-0.293,0-0.489,0.195-0.489,0.39v12.967 - c0,0.392,0.196,0.487,0.586,0.487H22.59L22.494,40.675z"/> - <path fill="#1144D4" d="M22.502,40.647c0,0.293,0.293,0.293,0.488,0.194L39.191,24.39c0.487-0.487,0.392-0.682,0-0.974 - L22.991,7.16c-0.098-0.098-0.391-0.098-0.391,0.097v9.735H9.328c-0.293,0-0.488,0.195-0.488,0.39v12.948 - c0,0.39,0.195,0.486,0.585,0.486h13.176L22.502,40.647z"/> - <path fill="#1245D5" d="M22.514,40.621c0,0.292,0.292,0.292,0.487,0.194L39.177,24.39c0.488-0.486,0.392-0.68,0-0.972L23,7.188 - c-0.098-0.098-0.39-0.098-0.39,0.096v9.72H9.356c-0.292,0-0.487,0.195-0.487,0.39v12.926c0,0.39,0.195,0.486,0.585,0.486H22.61 - L22.514,40.621z"/> - <path fill="#1346D5" d="M22.522,40.595c0,0.292,0.292,0.292,0.487,0.194L39.165,24.39c0.485-0.485,0.389-0.679,0-0.97 - L23.009,7.213c-0.098-0.097-0.389-0.097-0.389,0.097v9.704H9.384c-0.292,0-0.486,0.194-0.486,0.389V30.31 - c0,0.389,0.195,0.484,0.584,0.484h13.138L22.522,40.595z"/> - <path fill="#1447D6" d="M22.531,40.567c0,0.291,0.292,0.291,0.486,0.193l16.132-16.372c0.484-0.484,0.389-0.678,0-0.969 - L23.018,7.241c-0.097-0.097-0.389-0.097-0.389,0.097v9.688H9.414c-0.292,0-0.486,0.194-0.486,0.388v12.885 - c0,0.388,0.195,0.483,0.583,0.483h13.118L22.531,40.567z"/> - <path fill="#1548D6" d="M22.542,40.541c0,0.291,0.292,0.291,0.485,0.192l16.107-16.346c0.484-0.484,0.389-0.677,0-0.968 - L23.026,7.268c-0.097-0.097-0.388-0.097-0.388,0.097v9.672H9.441c-0.291,0-0.485,0.194-0.485,0.388v12.865 - c0,0.388,0.194,0.483,0.582,0.483h13.099L22.542,40.541z"/> - <path fill="#1649D7" d="M22.551,40.515c0,0.291,0.291,0.291,0.484,0.193l16.083-16.321c0.485-0.483,0.389-0.676,0-0.966 - L23.036,7.294c-0.097-0.097-0.388-0.097-0.388,0.096v9.657H9.47c-0.291,0-0.484,0.193-0.484,0.387v12.844 - c0,0.387,0.194,0.481,0.582,0.481h13.08L22.551,40.515z"/> - <path fill="#174AD7" d="M22.561,40.487c0,0.291,0.291,0.291,0.484,0.193l16.061-16.294c0.483-0.482,0.388-0.674,0-0.964 - L23.044,7.321c-0.097-0.096-0.387-0.096-0.387,0.097v9.641H9.5c-0.29,0-0.483,0.193-0.483,0.386v12.823 - c0,0.387,0.193,0.481,0.58,0.481h13.062L22.561,40.487z"/> - <path fill="#184BD8" d="M22.57,40.462c0,0.289,0.29,0.289,0.483,0.191l16.038-16.267c0.481-0.481,0.387-0.673,0-0.962 - L23.053,7.349c-0.097-0.096-0.387-0.096-0.387,0.096v9.626H9.527c-0.29,0-0.483,0.193-0.483,0.385v12.802 - c0,0.386,0.193,0.481,0.58,0.481h13.042L22.57,40.462z"/> - <path fill="#194CD8" d="M22.58,40.435c0,0.289,0.29,0.289,0.482,0.192l16.014-16.242c0.481-0.481,0.387-0.672,0-0.961 - L23.062,7.375c-0.097-0.096-0.386-0.096-0.386,0.096v9.611H9.557c-0.289,0-0.482,0.192-0.482,0.385v12.782 - c0,0.384,0.193,0.479,0.579,0.479h13.023L22.58,40.435z"/> - <path fill="#1A4DD9" d="M22.589,40.408c0,0.288,0.289,0.288,0.482,0.192l15.99-16.216c0.48-0.48,0.386-0.672,0-0.959L23.071,7.402 - c-0.097-0.096-0.385-0.096-0.385,0.095v9.595H9.585c-0.289,0-0.482,0.192-0.482,0.384v12.761c0,0.385,0.193,0.479,0.578,0.479 - h13.004L22.589,40.408z"/> - <path fill="#1B4ED9" d="M22.6,40.382c0,0.288,0.289,0.288,0.481,0.192l15.967-16.19c0.48-0.479,0.385-0.67,0-0.958L23.081,7.43 - c-0.096-0.096-0.384-0.096-0.384,0.095v9.58H9.614c-0.288,0-0.481,0.192-0.481,0.384v12.741c0,0.383,0.193,0.478,0.577,0.478 - h12.985L22.6,40.382z"/> - <path fill="#1C4FDA" d="M22.608,40.354c0,0.289,0.289,0.289,0.48,0.192l15.943-16.164c0.479-0.478,0.386-0.669,0-0.957 - L23.088,7.457c-0.096-0.096-0.384-0.096-0.384,0.095v9.564H9.643c-0.288,0-0.48,0.191-0.48,0.383v12.719 - c0,0.383,0.192,0.479,0.577,0.479h12.966L22.608,40.354z"/> - <path fill="#1D50DA" d="M22.619,40.328c0,0.287,0.288,0.287,0.479,0.19l15.92-16.136c0.479-0.478,0.384-0.668,0-0.955 - L23.098,7.482c-0.096-0.096-0.384-0.096-0.384,0.095v9.548H9.67c-0.288,0-0.479,0.191-0.479,0.382v12.699 - c0,0.382,0.191,0.479,0.575,0.479h12.947L22.619,40.328z"/> - <path fill="#1E51DB" d="M22.628,40.302c0,0.287,0.288,0.287,0.479,0.191l15.896-16.111c0.479-0.477,0.385-0.667,0-0.954 - L23.106,7.51c-0.096-0.096-0.383-0.096-0.383,0.094v9.533H9.699c-0.287,0-0.479,0.191-0.479,0.382v12.679 - c0,0.382,0.191,0.477,0.575,0.477h12.928L22.628,40.302z"/> - <path fill="#1F52DB" d="M22.637,40.274c0,0.287,0.288,0.287,0.479,0.19L38.99,24.381c0.478-0.476,0.382-0.666,0-0.952 - L23.115,7.538c-0.095-0.096-0.382-0.096-0.382,0.094v9.517H9.729c-0.287,0-0.478,0.191-0.478,0.381v12.657 - c0,0.381,0.191,0.477,0.574,0.477h12.909L22.637,40.274z"/> - <path fill="#2053DC" d="M22.647,40.249c0,0.285,0.287,0.285,0.478,0.189l15.85-16.058c0.477-0.475,0.382-0.665,0-0.95 - L23.125,7.563c-0.096-0.095-0.382-0.095-0.382,0.095v9.501H9.757c-0.286,0-0.478,0.19-0.478,0.381v12.636 - c0,0.381,0.191,0.475,0.573,0.475h12.89L22.647,40.249z"/> - <path fill="#2154DC" d="M22.656,40.222c0,0.285,0.287,0.285,0.477,0.19L38.96,24.38c0.477-0.475,0.381-0.664,0-0.949L23.133,7.59 - c-0.096-0.095-0.382-0.095-0.382,0.095v9.486H9.786c-0.286,0-0.477,0.19-0.477,0.38v12.617c0,0.379,0.191,0.474,0.572,0.474 - h12.871L22.656,40.222z"/> - <path fill="#2255DD" d="M22.667,40.194c0,0.285,0.286,0.285,0.477,0.189l15.802-16.004c0.476-0.474,0.382-0.663,0-0.947 - L23.143,7.618c-0.096-0.095-0.381-0.095-0.381,0.094v9.471H9.814c-0.285,0-0.476,0.189-0.476,0.379v12.596 - c0,0.379,0.191,0.473,0.572,0.473h12.851L22.667,40.194z"/> - <path fill="#2356DD" d="M22.675,40.169c0,0.284,0.286,0.284,0.476,0.189l15.779-15.979c0.475-0.473,0.381-0.662,0-0.945 - L23.151,7.645c-0.095-0.094-0.38-0.094-0.38,0.094v9.455H9.843c-0.285,0-0.475,0.189-0.475,0.378v12.574 - c0,0.379,0.19,0.474,0.571,0.474h12.832L22.675,40.169z"/> - <path fill="#2457DE" d="M22.686,40.144c0,0.282,0.285,0.282,0.475,0.188l15.756-15.953c0.474-0.472,0.379-0.66,0-0.944 - L23.159,7.671c-0.095-0.094-0.379-0.094-0.379,0.094v9.439H9.873c-0.285,0-0.475,0.189-0.475,0.378v12.554 - c0,0.378,0.19,0.472,0.569,0.472H22.78L22.686,40.144z"/> - <path fill="#2558DE" d="M22.694,40.115c0,0.282,0.285,0.282,0.474,0.188l15.733-15.925c0.473-0.471,0.379-0.66,0-0.942 - L23.168,7.698c-0.095-0.094-0.379-0.094-0.379,0.094v9.424H9.9c-0.284,0-0.474,0.189-0.474,0.377v12.535 - c0,0.376,0.189,0.471,0.568,0.471h12.794L22.694,40.115z"/> - <path fill="#2659DF" d="M22.705,40.089c0,0.283,0.284,0.283,0.473,0.188l15.708-15.899c0.474-0.471,0.38-0.659,0-0.941 - L23.177,7.726c-0.095-0.094-0.379-0.094-0.379,0.094v9.408H9.929c-0.284,0-0.473,0.188-0.473,0.377v12.514 - c0,0.376,0.189,0.469,0.568,0.469h12.775L22.705,40.089z"/> - <path fill="#275ADF" d="M22.714,40.063c0,0.281,0.284,0.281,0.473,0.188l15.685-15.874c0.473-0.47,0.379-0.658,0-0.939 - L23.188,7.752c-0.095-0.094-0.378-0.094-0.378,0.094v9.392H9.958c-0.283,0-0.472,0.188-0.472,0.376v12.492 - c0,0.375,0.189,0.47,0.567,0.47H22.81L22.714,40.063z"/> - <path fill="#285BE0" d="M22.724,40.036c0,0.281,0.283,0.281,0.472,0.188l15.662-15.847c0.472-0.469,0.378-0.656,0-0.938 - L23.195,7.779c-0.095-0.094-0.377-0.094-0.377,0.094v9.376H9.986c-0.283,0-0.472,0.188-0.472,0.375v12.472 - c0,0.375,0.189,0.467,0.566,0.467h12.737L22.724,40.036z"/> - <path fill="#295CE0" d="M22.732,40.009c0,0.281,0.283,0.281,0.471,0.188l15.639-15.82c0.471-0.468,0.377-0.655,0-0.936 - L23.205,7.807c-0.094-0.094-0.377-0.094-0.377,0.093v9.361H10.016c-0.283,0-0.471,0.188-0.471,0.375v12.451 - c0,0.374,0.188,0.468,0.565,0.468h12.718L22.732,40.009z"/> - <path fill="#2A5DE1" d="M22.742,39.981c0,0.28,0.283,0.28,0.47,0.188l15.615-15.793c0.471-0.468,0.377-0.654,0-0.935L23.212,7.833 - c-0.094-0.094-0.376-0.094-0.376,0.093v9.345H10.044c-0.282,0-0.471,0.188-0.471,0.375v12.431c0,0.374,0.188,0.467,0.565,0.467 - h12.699L22.742,39.981z"/> - <path fill="#2B5EE1" d="M22.752,39.956c0,0.279,0.282,0.279,0.469,0.188l15.592-15.768c0.469-0.467,0.376-0.653,0-0.933 - L23.223,7.86c-0.094-0.093-0.375-0.093-0.375,0.093v9.331H10.072c-0.282,0-0.47,0.187-0.47,0.373v12.41 - c0,0.373,0.188,0.466,0.563,0.466h12.68L22.752,39.956z"/> - <path fill="#2C5FE2" d="M22.761,39.929c0,0.28,0.282,0.28,0.469,0.188l15.567-15.742c0.47-0.466,0.377-0.652,0-0.932L23.231,7.887 - c-0.094-0.093-0.375-0.093-0.375,0.092v9.315H10.102c-0.281,0-0.469,0.187-0.469,0.373v12.388c0,0.372,0.188,0.465,0.563,0.465 - h12.661L22.761,39.929z"/> - <path fill="#2D60E2" d="M22.771,39.901c0,0.279,0.281,0.279,0.469,0.187l15.544-15.714c0.469-0.465,0.375-0.65,0-0.93 - L23.239,7.914c-0.094-0.093-0.375-0.093-0.375,0.093v9.299H10.129c-0.28,0-0.468,0.186-0.468,0.373v12.367 - c0,0.372,0.188,0.465,0.562,0.465h12.642L22.771,39.901z"/> - <path fill="#2E61E3" d="M22.781,39.876c0,0.277,0.281,0.277,0.468,0.186l15.521-15.688c0.468-0.464,0.375-0.649,0-0.928 - L23.25,7.94c-0.094-0.093-0.375-0.093-0.375,0.092v9.284H10.158c-0.28,0-0.467,0.186-0.467,0.372v12.347 - c0,0.372,0.188,0.464,0.561,0.464h12.623L22.781,39.876z"/> - <path fill="#2F62E3" d="M22.792,39.851c0,0.277,0.28,0.277,0.467,0.186l15.499-15.663c0.466-0.464,0.373-0.649,0-0.927 - l-15.5-15.479c-0.093-0.092-0.374-0.092-0.374,0.092v9.268H10.188c-0.28,0-0.467,0.186-0.467,0.372v12.325 - c0,0.371,0.187,0.463,0.56,0.463h12.604L22.792,39.851z"/> - <path fill="#3063E4" d="M22.799,39.821c0,0.279,0.281,0.279,0.467,0.187l15.475-15.636c0.465-0.463,0.373-0.648,0-0.925 - L23.267,7.995c-0.093-0.092-0.373-0.092-0.373,0.092v9.252H10.215c-0.279,0-0.466,0.185-0.466,0.371v12.305 - c0,0.369,0.187,0.461,0.56,0.461h12.584L22.799,39.821z"/> - <path fill="#3164E4" d="M22.81,39.796c0,0.277,0.28,0.277,0.466,0.186l15.451-15.61c0.465-0.462,0.372-0.646,0-0.924L23.275,8.021 - c-0.094-0.092-0.373-0.092-0.373,0.092v9.237H10.245c-0.279,0-0.465,0.185-0.465,0.37v12.285c0,0.369,0.187,0.461,0.559,0.461 - h12.565L22.81,39.796z"/> - <path fill="#3265E5" d="M22.819,39.771c0,0.276,0.279,0.276,0.465,0.185l15.428-15.583c0.465-0.461,0.373-0.646,0-0.922 - L23.284,8.048c-0.093-0.092-0.372-0.092-0.372,0.092v9.221H10.273c-0.279,0-0.464,0.185-0.464,0.37v12.265 - c0,0.369,0.186,0.46,0.558,0.46h12.546L22.819,39.771z"/> - <path fill="#3366E5" d="M22.83,39.743c0,0.275,0.278,0.275,0.464,0.185l15.404-15.557c0.464-0.46,0.371-0.645,0-0.921 - L23.293,8.076c-0.093-0.092-0.372-0.092-0.372,0.092v9.206h-12.62c-0.278,0-0.464,0.184-0.464,0.369v12.243 - c0,0.369,0.186,0.461,0.557,0.461h12.527L22.83,39.743z"/> - <path fill="#3366E6" d="M22.838,39.716c0,0.276,0.278,0.276,0.464,0.186l15.38-15.532c0.463-0.459,0.371-0.643,0-0.918 - L23.302,8.103c-0.093-0.092-0.371-0.092-0.371,0.091v9.19H10.331c-0.278,0-0.463,0.185-0.463,0.368v12.222 - c0,0.368,0.186,0.459,0.556,0.459h12.508L22.838,39.716z"/> - <path fill="#3467E6" d="M22.849,39.688c0,0.275,0.278,0.275,0.463,0.185l15.357-15.504c0.461-0.458,0.369-0.642,0-0.917 - L23.312,8.129C23.217,8.038,22.94,8.038,22.94,8.22v9.174H10.358c-0.277,0-0.462,0.184-0.462,0.368v12.203 - c0,0.366,0.185,0.458,0.555,0.458H22.94L22.849,39.688z"/> - <path fill="#3568E7" d="M22.857,39.663c0,0.275,0.277,0.275,0.462,0.184l15.333-15.478c0.461-0.458,0.37-0.641,0-0.916 - L23.319,8.156c-0.093-0.092-0.37-0.092-0.37,0.091v9.159H10.387c-0.277,0-0.461,0.184-0.461,0.367v12.182 - c0,0.366,0.185,0.457,0.554,0.457h12.47L22.857,39.663z"/> - <path fill="#3669E7" d="M22.867,39.637c0,0.274,0.277,0.274,0.461,0.183l15.31-15.452c0.461-0.458,0.368-0.64,0-0.915 - l-15.31-15.27c-0.092-0.091-0.369-0.091-0.369,0.091v9.143H10.417c-0.277,0-0.461,0.184-0.461,0.366v12.16 - c0,0.365,0.184,0.457,0.553,0.457h12.451L22.867,39.637z"/> - <path fill="#376AE8" d="M22.877,39.608c0,0.274,0.276,0.274,0.46,0.184l15.287-15.425c0.461-0.457,0.369-0.639,0-0.913 - L23.337,8.21c-0.092-0.091-0.368-0.091-0.368,0.091v9.127H10.445c-0.276,0-0.46,0.183-0.46,0.366v12.14 - c0,0.365,0.184,0.455,0.552,0.455h12.432L22.877,39.608z"/> - <path fill="#386BE8" d="M22.886,39.583c0,0.273,0.276,0.273,0.46,0.184l15.263-15.4c0.459-0.456,0.368-0.638,0-0.911L23.347,8.237 - c-0.092-0.091-0.368-0.091-0.368,0.091v9.112H10.474c-0.275,0-0.459,0.183-0.459,0.365v12.119c0,0.363,0.184,0.454,0.552,0.454 - h12.413L22.886,39.583z"/> - <path fill="#396CE9" d="M22.896,39.558c0,0.272,0.276,0.272,0.459,0.182l15.239-15.374c0.459-0.455,0.367-0.637,0-0.91 - L23.355,8.265c-0.092-0.091-0.368-0.091-0.368,0.09v9.097H10.502c-0.275,0-0.459,0.183-0.459,0.364v12.099 - c0,0.364,0.184,0.454,0.551,0.454h12.394L22.896,39.558z"/> - <path fill="#3A6DE9" d="M22.905,39.528c0,0.273,0.276,0.273,0.459,0.184l15.217-15.348c0.457-0.454,0.366-0.635,0-0.908 - L23.364,8.292c-0.092-0.091-0.367-0.091-0.367,0.09v9.081H10.531c-0.275,0-0.458,0.182-0.458,0.364v12.079 - c0,0.361,0.184,0.453,0.55,0.453h12.374L22.905,39.528z"/> - <path fill="#3B6EEA" d="M22.916,39.503c0,0.271,0.275,0.271,0.458,0.182l15.193-15.32c0.456-0.453,0.366-0.634,0-0.906 - L23.374,8.318c-0.092-0.091-0.366-0.091-0.366,0.09v9.065H10.56c-0.274,0-0.458,0.182-0.458,0.363v12.057 - c0,0.362,0.183,0.453,0.549,0.453h12.355L22.916,39.503z"/> - <path fill="#3C6FEA" d="M22.924,39.478c0,0.271,0.274,0.271,0.457,0.181l15.17-15.294c0.455-0.453,0.365-0.633,0-0.905 - L23.381,8.344c-0.092-0.09-0.366-0.09-0.366,0.09v9.05H10.588c-0.274,0-0.457,0.181-0.457,0.363v12.036 - c0,0.361,0.183,0.451,0.548,0.451h12.336L22.924,39.478z"/> - <path fill="#3D70EB" d="M22.935,39.45c0,0.271,0.274,0.271,0.456,0.181l15.146-15.269c0.455-0.452,0.365-0.632,0-0.904 - L23.391,8.373c-0.091-0.09-0.365-0.09-0.365,0.09v9.034H10.617c-0.274,0-0.456,0.181-0.456,0.362v12.017 - c0,0.36,0.182,0.45,0.547,0.45h12.317L22.935,39.45z"/> - <path fill="#3E71EB" d="M22.943,39.424c0,0.271,0.274,0.271,0.456,0.181l15.123-15.243c0.455-0.451,0.363-0.631,0-0.902 - L23.399,8.398c-0.091-0.09-0.365-0.09-0.365,0.09v9.019h-12.39c-0.273,0-0.455,0.181-0.455,0.361v11.994 - c0,0.361,0.182,0.451,0.546,0.451h12.298L22.943,39.424z"/> - <path fill="#3F72EC" d="M22.954,39.397c0,0.271,0.273,0.271,0.455,0.181l15.099-15.217c0.455-0.45,0.365-0.63,0-0.9L23.408,8.425 - c-0.091-0.09-0.364-0.09-0.364,0.089v9.003h-12.37c-0.272,0-0.455,0.18-0.455,0.361v11.974c0,0.359,0.182,0.449,0.546,0.449 - h12.279L22.954,39.397z"/> - <path fill="#4073EC" d="M22.962,39.37c0,0.27,0.273,0.27,0.455,0.18l15.076-15.188c0.453-0.45,0.363-0.629,0-0.898L23.417,8.453 - c-0.091-0.09-0.363-0.09-0.363,0.089v8.988H10.704c-0.272,0-0.454,0.18-0.454,0.36v11.954c0,0.358,0.182,0.448,0.545,0.448h12.26 - L22.962,39.37z"/> - <path fill="#4174ED" d="M22.973,39.344c0,0.271,0.272,0.271,0.454,0.181L38.479,24.36c0.452-0.449,0.362-0.628,0-0.897 - L23.426,8.48c-0.091-0.09-0.363-0.09-0.363,0.089v8.972H10.731c-0.272,0-0.453,0.18-0.453,0.359v11.933 - c0,0.357,0.181,0.447,0.544,0.447h12.241L22.973,39.344z"/> - <path fill="#4275ED" d="M22.982,39.315c0,0.271,0.272,0.271,0.453,0.181l15.028-15.137c0.453-0.448,0.363-0.626,0-0.896 - L23.436,8.506c-0.091-0.09-0.362-0.09-0.362,0.089v8.957H10.76c-0.271,0-0.453,0.18-0.453,0.358v11.913 - c0,0.357,0.181,0.445,0.543,0.445h12.222L22.982,39.315z"/> - <path fill="#4376EE" d="M22.991,39.29c0,0.27,0.272,0.27,0.453,0.179l15.005-15.109c0.451-0.447,0.362-0.625,0-0.894L23.444,8.534 - c-0.091-0.089-0.362-0.089-0.362,0.089v8.94H10.79c-0.271,0-0.452,0.18-0.452,0.358v11.893c0,0.355,0.181,0.444,0.542,0.444 - h12.203L22.991,39.29z"/> - <path fill="#4477EE" d="M23.001,39.265c0,0.268,0.271,0.268,0.452,0.178l14.981-15.083c0.449-0.446,0.361-0.625,0-0.893 - L23.454,8.561c-0.091-0.089-0.361-0.089-0.361,0.089v8.925H10.817c-0.271,0-0.451,0.179-0.451,0.357v11.87 - c0,0.356,0.181,0.445,0.542,0.445h12.184L23.001,39.265z"/> - <path fill="#4578EF" d="M23.01,39.237c0,0.268,0.271,0.268,0.451,0.178l14.959-15.058c0.449-0.445,0.359-0.624,0-0.891 - L23.461,8.587c-0.09-0.089-0.361-0.089-0.361,0.089v8.91H10.847c-0.27,0-0.45,0.179-0.45,0.356v11.851 - c0,0.354,0.18,0.444,0.541,0.444h12.165L23.01,39.237z"/> - <path fill="#4679EF" d="M23.021,39.21c0,0.268,0.271,0.268,0.45,0.18l14.935-15.032c0.449-0.445,0.36-0.623,0-0.889L23.47,8.614 - c-0.09-0.089-0.36-0.089-0.36,0.089v8.894H10.875c-0.27,0-0.45,0.179-0.45,0.356v11.83c0,0.354,0.18,0.444,0.54,0.444H23.11 - L23.021,39.21z"/> - <path fill="#477AF0" d="M23.03,39.185c0,0.267,0.27,0.267,0.449,0.178l14.912-15.005c0.447-0.444,0.359-0.622,0-0.888 - L23.479,8.642c-0.09-0.089-0.359-0.089-0.359,0.088v8.878H10.903c-0.27,0-0.449,0.178-0.449,0.356v11.809 - c0,0.354,0.18,0.441,0.539,0.441h12.127L23.03,39.185z"/> - <path fill="#487BF0" d="M23.041,39.157c0,0.266,0.269,0.266,0.448,0.177l14.89-14.979c0.446-0.443,0.357-0.62,0-0.886 - L23.488,8.668c-0.09-0.089-0.359-0.089-0.359,0.088v8.863H10.933c-0.269,0-0.448,0.177-0.448,0.354v11.788 - c0,0.354,0.179,0.441,0.538,0.441h12.107L23.041,39.157z"/> - <path fill="#497CF1" d="M23.049,39.13c0,0.268,0.269,0.268,0.448,0.178l14.865-14.952c0.446-0.442,0.357-0.619,0-0.885 - L23.498,8.695c-0.09-0.088-0.358-0.088-0.358,0.088v8.848H10.961c-0.269,0-0.448,0.177-0.448,0.354v11.767 - c0,0.354,0.179,0.44,0.538,0.44H23.14L23.049,39.13z"/> - <path fill="#4A7DF1" d="M23.06,39.104c0,0.266,0.269,0.266,0.447,0.176l14.841-14.925c0.446-0.442,0.356-0.618,0-0.883 - L23.506,8.723c-0.09-0.088-0.358-0.088-0.358,0.088v8.832H10.989c-0.268,0-0.447,0.177-0.447,0.354v11.747 - c0,0.354,0.179,0.439,0.537,0.439h12.069L23.06,39.104z"/> - <path fill="#4B7EF2" d="M23.068,39.077c0,0.265,0.269,0.265,0.447,0.177l14.817-14.899c0.445-0.441,0.357-0.617,0-0.882 - L23.516,8.75c-0.09-0.088-0.357-0.088-0.357,0.088v8.816h-12.14c-0.268,0-0.446,0.177-0.446,0.354v11.726 - c0,0.353,0.179,0.439,0.536,0.439h12.05L23.068,39.077z"/> - <path fill="#4C7FF2" d="M23.079,39.051c0,0.265,0.268,0.265,0.446,0.177l14.794-14.874c0.444-0.44,0.356-0.616,0-0.88 - L23.523,8.775c-0.089-0.088-0.357-0.088-0.357,0.088v8.8h-12.12c-0.268,0-0.446,0.176-0.446,0.353v11.705 - c0,0.353,0.178,0.439,0.535,0.439h12.031L23.079,39.051z"/> - <path fill="#4D80F3" d="M23.087,39.024c0,0.264,0.268,0.264,0.445,0.176l14.771-14.848c0.443-0.439,0.355-0.615,0-0.878 - L23.532,8.803c-0.089-0.088-0.356-0.088-0.356,0.087v8.785H11.075c-0.267,0-0.445,0.176-0.445,0.352v11.685 - c0,0.352,0.178,0.438,0.534,0.438h12.012L23.087,39.024z"/> - <path fill="#4E81F3" d="M23.098,38.997c0,0.264,0.267,0.264,0.445,0.176l14.748-14.82c0.442-0.438,0.354-0.614,0-0.877 - L23.542,8.831c-0.089-0.088-0.356-0.088-0.356,0.087v8.769H11.104c-0.266,0-0.444,0.176-0.444,0.352v11.665 - c0,0.35,0.178,0.437,0.533,0.437h11.993L23.098,38.997z"/> - <path fill="#4F82F4" d="M23.107,38.972c0,0.262,0.267,0.262,0.444,0.174l14.723-14.794c0.441-0.438,0.355-0.613,0-0.875 - L23.55,8.856c-0.089-0.087-0.355-0.087-0.355,0.087v8.754H11.132c-0.266,0-0.443,0.176-0.443,0.351V29.69 - c0,0.351,0.177,0.438,0.532,0.438h11.974L23.107,38.972z"/> - <path fill="#5083F4" d="M23.116,38.944c0,0.262,0.266,0.262,0.443,0.175l14.699-14.769c0.443-0.437,0.354-0.611,0-0.874 - L23.56,8.883c-0.089-0.087-0.354-0.087-0.354,0.087v8.738H11.162c-0.266,0-0.443,0.175-0.443,0.35v11.622 - c0,0.35,0.177,0.437,0.531,0.437h11.955L23.116,38.944z"/> - <path fill="#5184F5" d="M23.126,38.918c0,0.263,0.266,0.263,0.442,0.174l14.677-14.741c0.441-0.436,0.354-0.61,0-0.872 - L23.568,8.911c-0.089-0.087-0.354-0.087-0.354,0.087v8.723H11.19c-0.265,0-0.442,0.175-0.442,0.35v11.603 - c0,0.348,0.177,0.436,0.531,0.436h11.936L23.126,38.918z"/> - <path fill="#5285F5" d="M23.135,38.892c0,0.262,0.266,0.262,0.442,0.174L38.23,24.35c0.44-0.436,0.354-0.609,0-0.871L23.578,8.938 - c-0.088-0.087-0.354-0.087-0.354,0.087v8.707H11.218c-0.265,0-0.441,0.175-0.441,0.349v11.581c0,0.348,0.177,0.434,0.53,0.434 - h11.917L23.135,38.892z"/> - <path fill="#5386F6" d="M23.146,38.864c0,0.261,0.265,0.261,0.441,0.174l14.629-14.689c0.44-0.435,0.354-0.608,0-0.869 - L23.586,8.964c-0.088-0.087-0.353-0.087-0.353,0.086v8.691H11.248c-0.264,0-0.441,0.174-0.441,0.348v11.562 - c0,0.347,0.177,0.433,0.529,0.433h11.898L23.146,38.864z"/> - <path fill="#5487F6" d="M23.154,38.838c0,0.261,0.264,0.261,0.44,0.174l14.608-14.663c0.438-0.434,0.352-0.607,0-0.867 - L23.595,8.992c-0.088-0.087-0.353-0.087-0.353,0.086v8.676H11.276c-0.264,0-0.44,0.174-0.44,0.348v11.54 - c0,0.346,0.176,0.433,0.528,0.433h11.878L23.154,38.838z"/> - <path fill="#5588F7" d="M23.165,38.812c0,0.26,0.264,0.26,0.44,0.174l14.583-14.637c0.438-0.433,0.353-0.606,0-0.866L23.604,9.019 - c-0.088-0.086-0.352-0.086-0.352,0.086v8.661H11.304c-0.263,0-0.439,0.173-0.439,0.347v11.52c0,0.346,0.176,0.432,0.527,0.432 - h11.859L23.165,38.812z"/> - <path fill="#5689F7" d="M23.173,38.784c0,0.26,0.264,0.26,0.439,0.173l14.561-14.609c0.438-0.433,0.351-0.605,0-0.865 - L23.612,9.045c-0.088-0.086-0.351-0.086-0.351,0.086v8.645H11.333c-0.263,0-0.438,0.173-0.438,0.346v11.499 - c0,0.345,0.175,0.431,0.526,0.431h11.84L23.173,38.784z"/> - <path fill="#578AF8" d="M23.184,38.758c0,0.259,0.263,0.259,0.438,0.173l14.537-14.584c0.437-0.432,0.351-0.604,0-0.863 - L23.622,9.072c-0.088-0.086-0.351-0.086-0.351,0.086v8.629H11.362c-0.263,0-0.438,0.173-0.438,0.346V29.61 - c0,0.346,0.175,0.432,0.525,0.432h11.821L23.184,38.758z"/> - <path fill="#588BF8" d="M23.192,38.731c0,0.258,0.263,0.258,0.438,0.172l14.513-14.558c0.436-0.431,0.35-0.603,0-0.861L23.63,9.1 - c-0.087-0.086-0.35-0.086-0.35,0.086v8.614h-11.89c-0.262,0-0.437,0.173-0.437,0.345v11.456c0,0.344,0.175,0.43,0.524,0.43H23.28 - L23.192,38.731z"/> - <path fill="#598CF9" d="M23.203,38.704c0,0.259,0.262,0.259,0.437,0.173l14.488-14.532c0.437-0.43,0.351-0.602,0-0.86L23.64,9.126 - c-0.088-0.086-0.35-0.086-0.35,0.085v8.598h-11.87c-0.262,0-0.437,0.172-0.437,0.344v11.438c0,0.344,0.175,0.428,0.524,0.428 - h11.784L23.203,38.704z"/> - <path fill="#5A8DF9" d="M23.212,38.678c0,0.259,0.262,0.259,0.436,0.173l14.466-14.506c0.436-0.429,0.35-0.6,0-0.858L23.648,9.153 - c-0.088-0.086-0.349-0.086-0.349,0.085v8.583H11.448c-0.262,0-0.436,0.172-0.436,0.344v11.416c0,0.343,0.174,0.428,0.523,0.428 - h11.764L23.212,38.678z"/> - <path fill="#5B8EFA" d="M23.222,38.651c0,0.257,0.262,0.257,0.436,0.17L38.1,24.343c0.434-0.428,0.349-0.599,0-0.856L23.657,9.181 - c-0.087-0.085-0.349-0.085-0.349,0.085v8.567H11.477c-0.261,0-0.435,0.171-0.435,0.343v11.394c0,0.343,0.174,0.428,0.522,0.428 - h11.745L23.222,38.651z"/> - <path fill="#5C8FFA" d="M23.231,38.625c0,0.256,0.261,0.256,0.435,0.171l14.418-14.453c0.435-0.428,0.349-0.598,0-0.855 - L23.667,9.208c-0.087-0.085-0.348-0.085-0.348,0.085v8.551H11.505c-0.261,0-0.434,0.172-0.434,0.343v11.375 - c0,0.34,0.173,0.426,0.521,0.426h11.726L23.231,38.625z"/> - <path fill="#5D90FB" d="M23.24,38.599c0,0.256,0.261,0.256,0.434,0.17L38.07,24.342c0.433-0.427,0.349-0.598,0-0.854L23.674,9.233 - c-0.087-0.085-0.347-0.085-0.347,0.085v8.536H11.534c-0.26,0-0.434,0.171-0.434,0.342V29.55c0,0.342,0.173,0.426,0.52,0.426 - h11.707L23.24,38.599z"/> - <path fill="#5E91FB" d="M23.25,38.571c0,0.256,0.26,0.256,0.434,0.171l14.371-14.401c0.432-0.426,0.347-0.596,0-0.852 - L23.685,9.261c-0.087-0.085-0.347-0.085-0.347,0.084v8.521H11.562c-0.259,0-0.433,0.171-0.433,0.342V29.54 - c0,0.34,0.173,0.424,0.52,0.424h11.688L23.25,38.571z"/> - <path fill="#5F92FC" d="M23.26,38.545c0,0.255,0.26,0.255,0.433,0.17l14.349-14.374c0.432-0.425,0.347-0.595,0-0.85L23.692,9.289 - c-0.087-0.085-0.346-0.085-0.346,0.084v8.504H11.591c-0.259,0-0.432,0.171-0.432,0.341V29.53c0,0.339,0.173,0.423,0.519,0.423 - h11.669L23.26,38.545z"/> - <path fill="#6093FC" d="M23.27,38.519c0,0.254,0.259,0.254,0.432,0.17l14.326-14.347c0.431-0.425,0.345-0.594,0-0.849 - L23.702,9.314c-0.087-0.085-0.346-0.085-0.346,0.084v8.489H11.621c-0.259,0-0.432,0.17-0.432,0.34v11.291 - c0,0.34,0.173,0.424,0.518,0.424h11.649L23.27,38.519z"/> - <path fill="#6194FD" d="M23.279,38.491c0,0.255,0.259,0.255,0.431,0.17l14.302-14.322c0.429-0.424,0.345-0.593,0-0.847 - L23.71,9.341c-0.086-0.084-0.345-0.084-0.345,0.084v8.473H11.648c-0.259,0-0.431,0.17-0.431,0.34v11.271 - c0,0.338,0.172,0.422,0.517,0.422h11.63L23.279,38.491z"/> - <path fill="#6295FD" d="M23.29,38.465c0,0.254,0.258,0.254,0.43,0.169l14.28-14.294c0.428-0.423,0.344-0.592,0-0.846L23.719,9.369 - c-0.086-0.084-0.344-0.084-0.344,0.084v8.458H11.677c-0.258,0-0.43,0.17-0.43,0.339v11.25c0,0.338,0.172,0.422,0.516,0.422h11.612 - L23.29,38.465z"/> - <path fill="#6396FE" d="M23.298,38.438c0,0.254,0.258,0.254,0.43,0.17l14.255-14.269c0.428-0.422,0.344-0.591,0-0.844 - l-14.255-14.1c-0.086-0.084-0.344-0.084-0.344,0.084v8.442H11.707c-0.258,0-0.429,0.169-0.429,0.338v11.228 - c0,0.338,0.171,0.422,0.515,0.422h11.592L23.298,38.438z"/> - <path fill="#6497FE" d="M23.309,38.412c0,0.253,0.257,0.253,0.429,0.168l14.23-14.242c0.428-0.422,0.344-0.59,0-0.843 - L23.737,9.422c-0.086-0.084-0.344-0.084-0.344,0.083v8.427H11.734c-0.257,0-0.429,0.169-0.429,0.338v11.209 - c0,0.336,0.171,0.418,0.514,0.418h11.573L23.309,38.412z"/> - <path fill="#6598FF" d="M23.317,38.385c0,0.253,0.257,0.253,0.429,0.169l14.208-14.216c0.428-0.42,0.344-0.588,0-0.841 - L23.747,9.45c-0.086-0.084-0.343-0.084-0.343,0.083v8.411h-11.64c-0.257,0-0.428,0.169-0.428,0.337v11.188 - c0,0.336,0.171,0.419,0.514,0.419h11.554L23.317,38.385z"/> - <path fill="#6699FF" d="M23.328,38.358c0,0.252,0.257,0.252,0.428,0.168l14.185-14.19c0.426-0.42,0.342-0.587,0-0.839 - L23.754,9.477c-0.086-0.084-0.342-0.084-0.342,0.083v8.396h-11.62c-0.256,0-0.427,0.168-0.427,0.336v11.167 - c0,0.335,0.171,0.418,0.513,0.418h11.535L23.328,38.358z"/> - </g> - - <linearGradient id="XMLID_10_" gradientUnits="userSpaceOnUse" x1="210.7969" y1="-239.4214" x2="210.7969" y2="-268.5771" gradientTransform="matrix(1 0 0 -1 -186 -230)"> - <stop offset="0" style="stop-color:#FFFFFF"/> - <stop offset="1" style="stop-color:#6699FF"/> - </linearGradient> - <path fill="url(#XMLID_10_)" d="M23.328,38.358c0,0.252,0.257,0.252,0.428,0.168l14.185-14.19c0.426-0.42,0.342-0.587,0-0.839 - L23.754,9.477c-0.086-0.084-0.342-0.084-0.342,0.083v8.396h-11.62c-0.256,0-0.427,0.168-0.427,0.336v11.167 - c0,0.335,0.171,0.418,0.513,0.418h11.535L23.328,38.358z"/> -</g> -<g id="crop_x0020_marks"> - <path fill="none" d="M48.06,47.999h-48v-48h48V47.999z"/> -</g> -</svg> diff --git a/docbook-xsl-1.75.2/images/colorsvg/note.svg b/docbook-xsl-1.75.2/images/colorsvg/note.svg deleted file mode 100644 index e94c610..0000000 --- a/docbook-xsl-1.75.2/images/colorsvg/note.svg +++ /dev/null @@ -1,200 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [ - <!ENTITY ns_svg "http://www.w3.org/2000/svg"> - <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> -]> -<svg version="1.1" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="25.5" height="25.5" viewBox="0 0 25.5 25.5" - overflow="visible" enable-background="new 0 0 25.5 25.5" xml:space="preserve"> -<g id="Layer_x0020_1"> - <g> - <path fill="#1F60A9" d="M25.5,12.7c0,7-5.7,12.7-12.7,12.7C5.7,25.5,0,19.8,0,12.7C0,5.6,5.7,0,12.7,0s12.7,5.7,12.7,12.7H25.5z" - /> - <path fill="#2060AA" d="M25.473,12.7c0,6.983-5.688,12.671-12.672,12.671C5.718,25.471,0.03,19.783,0.03,12.7 - S5.718,0.029,12.701,0.029c6.984,0,12.671,5.687,12.671,12.671H25.473z"/> - <path fill="#2160AB" d="M25.443,12.7c0,6.968-5.674,12.642-12.643,12.642C5.734,25.439,0.061,19.768,0.061,12.7 - c0-7.068,5.674-12.642,12.642-12.642c6.968,0,12.641,5.674,12.641,12.642H25.443z"/> - <path fill="#2160AC" d="M25.415,12.7c0,6.95-5.661,12.612-12.612,12.612C5.752,25.412,0.091,19.751,0.091,12.7 - c0-7.051,5.661-12.612,12.612-12.612S25.316,5.749,25.316,12.7H25.415z"/> - <path fill="#2260AD" d="M25.387,12.7c0,6.936-5.648,12.583-12.583,12.583C5.769,25.383,0.121,19.734,0.121,12.7 - c0-7.035,5.648-12.583,12.583-12.583c6.937,0,12.583,5.648,12.583,12.583H25.387z"/> - <path fill="#2360AE" d="M25.357,12.701c0,6.919-5.635,12.554-12.553,12.554C5.787,25.354,0.152,19.719,0.152,12.701 - c0-7.019,5.635-12.554,12.554-12.554S25.26,5.782,25.26,12.701H25.357z"/> - <path fill="#2460AF" d="M25.33,12.7c0,6.903-5.622,12.524-12.525,12.524C5.803,25.323,0.181,19.702,0.181,12.7 - S5.803,0.175,12.706,0.175c6.903,0,12.524,5.621,12.524,12.525H25.33z"/> - <path fill="#2560B0" d="M25.302,12.701c0,6.887-5.608,12.496-12.496,12.496C5.82,25.294,0.212,19.686,0.212,12.701 - c0-6.986,5.608-12.496,12.496-12.496c6.888,0,12.496,5.608,12.496,12.496H25.302z"/> - <path fill="#2661B1" d="M25.273,12.7c0,6.87-5.597,12.467-12.467,12.467C5.837,25.266,0.242,19.67,0.242,12.7 - c0-6.969,5.595-12.467,12.467-12.467c6.871,0,12.467,5.596,12.467,12.467H25.273z"/> - <path fill="#2661B2" d="M25.245,12.7c0,6.854-5.583,12.438-12.438,12.438C5.854,25.234,0.272,19.652,0.272,12.7 - S5.854,0.262,12.709,0.262c6.855,0,12.438,5.583,12.438,12.438H25.245z"/> - <path fill="#2761B3" d="M25.216,12.7c0,6.839-5.567,12.407-12.408,12.407C5.872,25.205,0.303,19.637,0.303,12.7 - c0-6.937,5.569-12.408,12.408-12.408S25.12,5.861,25.12,12.7H25.216z"/> - <path fill="#2861B4" d="M25.188,12.7c0,6.823-5.557,12.38-12.378,12.38C5.889,25.177,0.333,19.62,0.333,12.7 - c0-6.92,5.556-12.379,12.379-12.379c6.823,0,12.38,5.556,12.38,12.379H25.188z"/> - <path fill="#2961B5" d="M25.16,12.7c0,6.807-5.543,12.35-12.351,12.35C5.906,25.146,0.363,19.604,0.363,12.7 - c0-6.904,5.543-12.35,12.35-12.35s12.35,5.543,12.35,12.35H25.16z"/> - <path fill="#2A61B6" d="M25.131,12.7c0,6.792-5.529,12.321-12.32,12.321C5.923,25.117,0.393,19.588,0.393,12.7 - c0-6.888,5.53-12.32,12.321-12.32s12.32,5.53,12.32,12.32H25.131z"/> - <path fill="#2A61B7" d="M25.104,12.7c0,6.774-5.518,12.292-12.292,12.292C5.94,25.088,0.424,19.57,0.424,12.7 - c0-6.872,5.517-12.292,12.291-12.292c6.773,0,12.292,5.517,12.292,12.292H25.104z"/> - <path fill="#2B61B8" d="M25.075,12.7c0,6.759-5.505,12.263-12.263,12.263C5.958,25.059,0.455,19.555,0.455,12.7 - c0-6.855,5.503-12.262,12.262-12.262c6.76,0,12.262,5.504,12.262,12.262H25.075z"/> - <path fill="#2C61B9" d="M25.046,12.7c0,6.743-5.489,12.233-12.232,12.233C5.975,25.029,0.484,19.539,0.484,12.7 - c0-6.839,5.491-12.233,12.233-12.233c6.743,0,12.233,5.491,12.233,12.233H25.046z"/> - <path fill="#2D61BA" d="M25.018,12.7c0,6.727-5.478,12.204-12.204,12.204C5.992,25,0.514,19.521,0.514,12.7 - c0-6.822,5.478-12.204,12.204-12.204S24.922,5.973,24.922,12.7H25.018z"/> - <path fill="#2E61BB" d="M24.988,12.7c0,6.711-5.463,12.175-12.173,12.175C6.009,24.971,0.544,19.506,0.544,12.7 - c0-6.807,5.464-12.175,12.175-12.175S24.895,5.99,24.895,12.7H24.988z"/> - <path fill="#2F61BC" d="M24.962,12.701c0,6.693-5.45,12.145-12.146,12.145C6.026,24.941,0.575,19.49,0.575,12.701 - c0-6.79,5.451-12.146,12.146-12.146c6.695,0,12.146,5.452,12.146,12.146H24.962z"/> - <path fill="#2F61BD" d="M24.934,12.7c0,6.678-5.438,12.116-12.117,12.116C6.043,24.911,0.605,19.475,0.605,12.7 - S6.043,0.584,12.722,0.584c6.678,0,12.116,5.438,12.116,12.116H24.934z"/> - <path fill="#3061BE" d="M24.904,12.7c0,6.661-5.426,12.087-12.087,12.087C6.06,24.882,0.635,19.457,0.635,12.7 - c0-6.757,5.425-12.087,12.087-12.087c6.661,0,12.086,5.425,12.086,12.087H24.904z"/> - <path fill="#3162BF" d="M24.876,12.7c0,6.646-5.412,12.059-12.058,12.059C6.078,24.854,0.666,19.439,0.666,12.7 - c0-6.741,5.412-12.058,12.058-12.058S24.783,6.054,24.783,12.7H24.876z"/> - <path fill="#3262C0" d="M24.85,12.701c0,6.63-5.399,12.027-12.03,12.027C6.095,24.823,0.696,19.425,0.696,12.701 - c0-6.725,5.399-12.029,12.029-12.029c6.628,0,12.028,5.399,12.028,12.029H24.85z"/> - <path fill="#3362C1" d="M24.818,12.7c0,6.614-5.385,11.999-12,11.999C6.112,24.794,0.727,19.408,0.727,12.7s5.385-12,12-12 - c6.614,0,12,5.386,12,12H24.818z"/> - <path fill="#3362C2" d="M24.791,12.7c0,6.598-5.373,11.97-11.971,11.97C6.129,24.764,0.756,19.393,0.756,12.7 - S6.129,0.73,12.727,0.73c6.597,0,11.968,5.372,11.968,11.97H24.791z"/> - <path fill="#3462C3" d="M24.764,12.7c0,6.582-5.359,11.94-11.942,11.94C6.146,24.734,0.787,19.375,0.787,12.7 - c0-6.676,5.359-11.941,11.941-11.941c6.583,0,11.941,5.36,11.941,11.941H24.764z"/> - <path fill="#3562C4" d="M24.734,12.7c0,6.565-5.348,11.911-11.913,11.911C6.164,24.705,0.817,19.359,0.817,12.7 - S6.164,0.788,12.729,0.788c6.566,0,11.912,5.347,11.912,11.912H24.734z"/> - <path fill="#3662C5" d="M24.706,12.7c0,6.55-5.333,11.883-11.883,11.883C6.181,24.676,0.847,19.343,0.847,12.7 - c0-6.643,5.333-11.883,11.883-11.883c6.549,0,11.881,5.333,11.881,11.883H24.706z"/> - <path fill="#3762C6" d="M24.678,12.7c0,6.534-5.32,11.854-11.854,11.854C6.198,24.646,0.877,19.326,0.877,12.7 - S6.198,0.846,12.731,0.846c6.535,0,11.853,5.32,11.853,11.854H24.678z"/> - <path fill="#3762C7" d="M24.648,12.7c0,6.518-5.308,11.823-11.824,11.823C6.215,24.617,0.908,19.311,0.908,12.7 - c0-6.611,5.307-11.824,11.824-11.824S24.557,6.183,24.557,12.7H24.648z"/> - <path fill="#3862C8" d="M24.621,12.7c0,6.502-5.294,11.795-11.795,11.795C6.232,24.588,0.938,19.294,0.938,12.7 - c0-6.594,5.293-11.795,11.795-11.795c6.501,0,11.794,5.294,11.794,11.795H24.621z"/> - <path fill="#3962C9" d="M24.593,12.7c0,6.485-5.28,11.766-11.766,11.766C6.249,24.559,0.968,19.277,0.968,12.7 - c0-6.578,5.281-11.766,11.766-11.766S24.5,6.215,24.5,12.7H24.593z"/> - <path fill="#3A62CA" d="M24.564,12.7c0,6.469-5.27,11.737-11.737,11.737C6.266,24.527,0.999,19.261,0.999,12.7 - c0-6.561,5.267-11.737,11.736-11.737c6.469,0,11.738,5.268,11.738,11.736L24.564,12.7L24.564,12.7z"/> - <path fill="#3B62CB" d="M24.536,12.7c0,6.452-5.255,11.707-11.708,11.707C6.284,24.5,1.029,19.245,1.029,12.7 - c0-6.545,5.255-11.707,11.707-11.707s11.708,5.255,11.708,11.708L24.536,12.7L24.536,12.7z"/> - <path fill="#3C62CC" d="M24.508,12.701c0,6.438-5.24,11.678-11.678,11.678c-6.529,0.092-11.77-5.15-11.77-11.678 - c0-6.528,5.241-11.679,11.678-11.679S24.416,6.263,24.416,12.7L24.508,12.701L24.508,12.701z"/> - <path fill="#3C62CD" d="M24.479,12.7c0,6.421-5.229,11.649-11.648,11.649C6.318,24.439,1.09,19.212,1.09,12.7 - c0-6.513,5.228-11.649,11.649-11.649c6.42,0,11.65,5.228,11.65,11.649H24.479z"/> - <path fill="#3D63CE" d="M24.45,12.7c0,6.403-5.216,11.618-11.62,11.618C6.335,24.41,1.12,19.195,1.12,12.7 - c0-6.497,5.215-11.62,11.62-11.62c6.404,0,11.619,5.215,11.619,11.62H24.45z"/> - <path fill="#3E63CF" d="M24.423,12.7c0,6.389-5.202,11.591-11.591,11.591C6.353,24.382,1.15,19.18,1.15,12.7 - c0-6.48,5.203-11.591,11.591-11.591c6.388,0,11.59,5.203,11.59,11.591H24.423z"/> - <path fill="#3F63D0" d="M24.395,12.701c0,6.373-5.188,11.561-11.562,11.561C6.37,24.354,1.18,19.164,1.18,12.701 - c0-6.464,5.189-11.562,11.562-11.562c6.371,0,11.562,5.189,11.562,11.562H24.395z"/> - <path fill="#4063D1" d="M24.365,12.7c0,6.356-5.176,11.532-11.532,11.532C6.387,24.322,1.21,19.146,1.21,12.7 - c0-6.447,5.177-11.533,11.533-11.533c6.354,0,11.532,5.176,11.532,11.533H24.365z"/> - <path fill="#4063D2" d="M24.337,12.7c0,6.341-5.163,11.503-11.503,11.503C6.403,24.293,1.24,19.13,1.24,12.7 - c0-6.431,5.163-11.503,11.503-11.503c6.34,0,11.504,5.163,11.504,11.503H24.337z"/> - <path fill="#4163D3" d="M24.311,12.7c0,6.323-5.15,11.474-11.476,11.474C6.42,24.264,1.271,19.114,1.271,12.7 - c0-6.415,5.149-11.474,11.474-11.474c6.323,0,11.474,5.15,11.474,11.474H24.311z"/> - <path fill="#4263D4" d="M24.281,12.701c0,6.308-5.137,11.445-11.445,11.445C6.438,24.234,1.301,19.1,1.301,12.701 - c0-6.399,5.137-11.445,11.445-11.445c6.307,0,11.445,5.136,11.445,11.445H24.281z"/> - <path fill="#4363D4" d="M24.253,12.7c0,6.292-5.124,11.416-11.416,11.416C6.455,24.205,1.332,19.082,1.332,12.7 - c0-6.382,5.123-11.415,11.415-11.415S24.163,6.408,24.163,12.7H24.253z"/> - <path fill="#4463D5" d="M24.225,12.7c0,6.276-5.111,11.387-11.387,11.387C6.472,24.176,1.362,19.064,1.362,12.7 - c0-6.366,5.11-11.386,11.386-11.386c6.275,0,11.387,5.11,11.387,11.386H24.225z"/> - <path fill="#4563D6" d="M24.195,12.7c0,6.26-5.098,11.356-11.357,11.356C6.49,24.146,1.392,19.049,1.392,12.7 - c0-6.35,5.098-11.357,11.357-11.357S24.105,6.441,24.105,12.7H24.195z"/> - <path fill="#4563D7" d="M24.167,12.7c0,6.243-5.084,11.327-11.328,11.327C6.506,24.116,1.422,19.033,1.422,12.7 - S6.506,1.372,12.75,1.372S24.078,6.456,24.078,12.7H24.167z"/> - <path fill="#4663D8" d="M24.139,12.7c0,6.228-5.07,11.299-11.299,11.299C6.523,24.087,1.453,19.018,1.453,12.7 - S6.523,1.401,12.751,1.401c6.228,0,11.298,5.071,11.298,11.299H24.139z"/> - <path fill="#4763D9" d="M24.109,12.7c0,6.212-5.058,11.271-11.27,11.271C6.541,24.059,1.483,19,1.483,12.7 - c0-6.3,5.058-11.27,11.27-11.27S24.023,6.488,24.023,12.7H24.109z"/> - <path fill="#4863DA" d="M24.082,12.7c0,6.194-5.045,11.239-11.24,11.239C6.558,24.027,1.513,18.982,1.513,12.7 - c0-6.284,5.045-11.24,11.24-11.24c6.195,0,11.241,5.045,11.241,11.24H24.082z"/> - <path fill="#4964DB" d="M24.055,12.7c0,6.18-5.033,11.211-11.212,11.211c-6.268,0.088-11.3-4.943-11.3-11.211 - c0-6.268,5.032-11.211,11.211-11.211c6.18,0,11.212,5.032,11.212,11.211H24.055z"/> - <path fill="#4964DC" d="M24.025,12.7c0,6.164-5.02,11.182-11.183,11.182C6.592,23.971,1.574,18.951,1.574,12.7 - S6.593,1.518,12.756,1.518S23.938,6.537,23.938,12.7H24.025z"/> - <path fill="#4A64DD" d="M23.997,12.7c0,6.147-5.006,11.153-11.153,11.153C6.609,23.939,1.604,18.936,1.604,12.7 - S6.609,1.547,12.757,1.547c6.146,0,11.152,5.006,11.152,11.153H23.997z"/> - <path fill="#4B64DE" d="M23.969,12.7c0,6.131-4.992,11.124-11.124,11.124C6.626,23.91,1.634,18.918,1.634,12.7 - c0-6.219,4.992-11.124,11.124-11.124c6.131,0,11.124,4.992,11.124,11.124H23.969z"/> - <path fill="#4C64DF" d="M23.939,12.7c0,6.114-4.979,11.095-11.094,11.095C6.644,23.882,1.665,18.902,1.665,12.7 - c0-6.203,4.979-11.094,11.094-11.094c6.115,0,11.095,4.979,11.095,11.094H23.939z"/> - <path fill="#4D64E0" d="M23.912,12.7c0,6.1-4.967,11.065-11.065,11.065C6.661,23.852,1.695,18.886,1.695,12.7 - c0-6.186,4.966-11.065,11.065-11.065c6.098,0,11.065,4.966,11.065,11.065H23.912z"/> - <path fill="#4E64E1" d="M23.884,12.7c0,6.083-4.952,11.036-11.036,11.036C6.678,23.822,1.725,18.869,1.725,12.7 - c0-6.17,4.954-11.036,11.036-11.036c6.083,0,11.036,4.954,11.036,11.036H23.884z"/> - <path fill="#4E64E2" d="M23.855,12.7c0,6.067-4.94,11.007-11.007,11.007C6.695,23.793,1.755,18.854,1.755,12.7 - c0-6.154,4.94-11.007,11.007-11.007c6.066,0,11.005,4.94,11.005,11.007H23.855z"/> - <path fill="#4F64E3" d="M23.827,12.7c0,6.051-4.929,10.978-10.978,10.978C6.712,23.764,1.786,18.837,1.786,12.7 - c0-6.137,4.927-10.978,10.978-10.978c6.05,0,10.977,4.927,10.977,10.978H23.827z"/> - <path fill="#5064E4" d="M23.799,12.7c0,6.034-4.914,10.948-10.949,10.948C6.729,23.734,1.816,18.82,1.816,12.7 - c0-6.121,4.914-10.948,10.948-10.948c6.034,0,10.949,4.914,10.949,10.948H23.799z"/> - <path fill="#5164E5" d="M23.771,12.7c0,6.019-4.901,10.919-10.919,10.919C6.747,23.705,1.846,18.805,1.846,12.7 - c0-6.105,4.9-10.919,10.919-10.919c6.018,0,10.918,4.9,10.918,10.919H23.771z"/> - <path fill="#5264E6" d="M23.742,12.7c0,6.003-4.889,10.89-10.891,10.89C6.764,23.675,1.876,18.788,1.876,12.7 - c0-6.088,4.888-10.89,10.89-10.89c6.001,0,10.89,4.888,10.89,10.89H23.742z"/> - <path fill="#5264E7" d="M23.714,12.7c0,5.985-4.875,10.86-10.861,10.86C6.781,23.646,1.906,18.771,1.906,12.7 - c0-6.072,4.875-10.861,10.861-10.861c5.985,0,10.86,4.875,10.86,10.861H23.714z"/> - <path fill="#5364E8" d="M23.686,12.7c0,5.971-4.861,10.832-10.832,10.832C6.798,23.616,1.937,18.755,1.937,12.7 - c0-6.056,4.862-10.832,10.832-10.832C18.738,1.869,23.6,6.73,23.6,12.7H23.686z"/> - <path fill="#5464E9" d="M23.657,12.7c0,5.954-4.849,10.803-10.803,10.803C6.815,23.587,1.967,18.739,1.967,12.7 - c0-6.04,4.849-10.802,10.803-10.802c5.955,0,10.802,4.848,10.802,10.802H23.657z"/> - <path fill="#5565EA" d="M23.629,12.7c0,5.938-4.836,10.772-10.774,10.772C6.833,23.559,1.998,18.723,1.998,12.7 - c0-6.023,4.835-10.773,10.773-10.773S23.544,6.762,23.544,12.7H23.629z"/> - <path fill="#5665EB" d="M23.602,12.7c0,5.922-4.824,10.743-10.746,10.743C6.85,23.527,2.027,18.706,2.027,12.7 - c0-6.006,4.822-10.744,10.744-10.744c5.922,0,10.745,4.822,10.745,10.744H23.602z"/> - <path fill="#5665EC" d="M23.572,12.7c0,5.905-4.811,10.715-10.715,10.715C6.867,23.499,2.058,18.689,2.058,12.7 - c0-5.99,4.809-10.715,10.714-10.715S23.486,6.794,23.486,12.7H23.572z"/> - <path fill="#5765ED" d="M23.544,12.7c0,5.89-4.797,10.686-10.687,10.686C6.884,23.471,2.088,18.674,2.088,12.7 - c0-5.974,4.796-10.686,10.686-10.686c5.889,0,10.686,4.796,10.686,10.686H23.544z"/> - <path fill="#5865EE" d="M23.516,12.7c0,5.874-4.783,10.655-10.657,10.655C6.901,23.439,2.118,18.657,2.118,12.7 - c0-5.958,4.783-10.657,10.657-10.657c5.874,0,10.657,4.784,10.657,10.657H23.516z"/> - <path fill="#5965EF" d="M23.486,12.7c0,5.858-4.771,10.627-10.627,10.627C6.918,23.41,2.148,18.641,2.148,12.7 - c0-5.941,4.77-10.627,10.627-10.627S23.402,6.843,23.402,12.7H23.486z"/> - <path fill="#5A65F0" d="M23.459,12.7c0,5.842-4.758,10.598-10.599,10.598C6.936,23.381,2.179,18.625,2.179,12.7 - c0-5.925,4.757-10.598,10.598-10.598c5.841,0,10.598,4.757,10.598,10.598H23.459z"/> - <path fill="#5B65F1" d="M23.432,12.7c0,5.825-4.744,10.569-10.571,10.569C6.953,23.352,2.209,18.607,2.209,12.7 - c0-5.909,4.744-10.569,10.569-10.569c5.826,0,10.57,4.744,10.57,10.569H23.432z"/> - <path fill="#5B65F2" d="M23.4,12.7c0,5.81-4.729,10.54-10.54,10.54C6.97,23.322,2.239,18.592,2.239,12.7 - c0-5.892,4.73-10.54,10.54-10.54c5.809,0,10.54,4.73,10.54,10.54H23.4z"/> - <path fill="#5C65F3" d="M23.373,12.7c0,5.794-4.719,10.511-10.511,10.511C6.987,23.293,2.27,18.576,2.27,12.7 - S6.987,2.189,12.78,2.189c5.793,0,10.511,4.717,10.511,10.511H23.373z"/> - <path fill="#5D65F4" d="M23.346,12.7c0,5.776-4.705,10.481-10.482,10.481C7.004,23.264,2.3,18.561,2.3,12.7 - S7.004,2.219,12.781,2.219c5.775,0,10.48,4.704,10.48,10.481H23.346z"/> - <path fill="#5E65F5" d="M23.316,12.7c0,5.762-4.691,10.452-10.453,10.452C7.021,23.232,2.33,18.543,2.33,12.7 - c0-5.843,4.691-10.452,10.452-10.452c5.761,0,10.452,4.691,10.452,10.452H23.316z"/> - <path fill="#5F65F6" d="M23.288,12.7c0,5.745-4.679,10.423-10.423,10.423C7.039,23.204,2.36,18.525,2.36,12.7 - c0-5.827,4.678-10.423,10.423-10.423c5.744,0,10.423,4.678,10.423,10.423H23.288z"/> - <path fill="#5F65F7" d="M23.26,12.7c0,5.729-4.664,10.394-10.394,10.394C7.056,23.175,2.391,18.511,2.391,12.7 - c0-5.811,4.665-10.393,10.394-10.393c5.729,0,10.393,4.665,10.393,10.394L23.26,12.7L23.26,12.7z"/> - <path fill="#6066F8" d="M23.23,12.7c0,5.713-4.651,10.364-10.364,10.364C7.073,23.146,2.421,18.494,2.421,12.7 - S7.073,2.335,12.786,2.335c5.712,0,10.364,4.652,10.364,10.365H23.23z"/> - <path fill="#6166F9" d="M23.203,12.7c0,5.696-4.639,10.335-10.335,10.335C7.09,23.116,2.451,18.479,2.451,12.7 - S7.09,2.365,12.786,2.365S23.121,7.004,23.121,12.7H23.203z"/> - <path fill="#6266FA" d="M23.175,12.7c0,5.681-4.626,10.306-10.307,10.306C7.107,23.087,2.481,18.462,2.481,12.7 - c0-5.762,4.626-10.306,10.307-10.306c5.68,0,10.306,4.625,10.306,10.306H23.175z"/> - <path fill="#6366FB" d="M23.146,12.7c0,5.665-4.613,10.276-10.277,10.276C7.124,23.059,2.512,18.445,2.512,12.7 - c0-5.746,4.612-10.277,10.277-10.277S23.064,7.036,23.064,12.7H23.146z"/> - <path fill="#6466FC" d="M23.118,12.7c0,5.647-4.601,10.248-10.248,10.248C7.142,23.027,2.542,18.43,2.542,12.7 - c0-5.729,4.6-10.248,10.248-10.248c5.647,0,10.247,4.6,10.247,10.248H23.118z"/> - <path fill="#6466FD" d="M23.09,12.7c0,5.633-4.587,10.219-10.219,10.219C7.159,22.998,2.572,18.412,2.572,12.7 - c0-5.713,4.586-10.219,10.219-10.219c5.632,0,10.219,4.586,10.219,10.219H23.09z"/> - <path fill="#6566FE" d="M23.062,12.7c0,5.616-4.574,10.188-10.19,10.188C7.176,22.969,2.603,18.396,2.603,12.7 - S7.176,2.511,12.792,2.511c5.615,0,10.188,4.573,10.188,10.189H23.062z"/> - <path fill="#6666FF" d="M23.033,12.7c0,5.601-4.561,10.159-10.161,10.159c-5.68,0.08-10.24-4.479-10.24-10.159 - c0-5.68,4.56-10.16,10.16-10.16c5.601,0,10.16,4.56,10.16,10.16H23.033z"/> - </g> - - <linearGradient id="XMLID_12_" gradientUnits="userSpaceOnUse" x1="198.625" y1="-253.916" x2="198.625" y2="-262.334" gradientTransform="matrix(1 0 0 -1 -186 -252.5)"> - <stop offset="0" style="stop-color:#FFFFFF"/> - <stop offset="1" style="stop-color:#6666FF"/> - </linearGradient> - <ellipse fill="url(#XMLID_12_)" cx="12.625" cy="5.625" rx="7.542" ry="4.209"/> - <g> - <path fill="#FFFFFF" d="M14.1,19.2c0,0.2,0,0.3-0.3,0.3H12c-0.2,0-0.3-0.1-0.3-0.3v-7.1h-1.4c-0.2,0-0.3-0.1-0.3-0.3v-1.2 - c0-0.2,0-0.3,0.3-0.3h3.5c0.2,0,0.3,0.1,0.3,0.3v8.5V19.2z M13,9.2c-0.8,0-1.5-0.7-1.5-1.5c0-0.8,0.7-1.5,1.5-1.5s1.5,0.7,1.5,1.5 - C14.5,8.5,13.8,9.2,13,9.2z"/> - </g> -</g> -</svg> diff --git a/docbook-xsl-1.75.2/images/colorsvg/prev.svg b/docbook-xsl-1.75.2/images/colorsvg/prev.svg deleted file mode 100644 index 7ceddec..0000000 --- a/docbook-xsl-1.75.2/images/colorsvg/prev.svg +++ /dev/null @@ -1,338 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [ - <!ENTITY ns_svg "http://www.w3.org/2000/svg"> - <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> -]> -<svg version="1.1" id="Previous" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="48" height="48" viewBox="0 0 48 48" - overflow="visible" enable-background="new 0 0 48 48" xml:space="preserve"> -<g> - <path fill="#FFFFFF" stroke="#FFFFFF" stroke-width="7.5901" stroke-linejoin="round" d="M25.659,6.898c0-0.301-0.3-0.301-0.5-0.2 - l-16.6,16.9c-0.5,0.5-0.4,0.7,0,1l16.6,16.7c0.103,0.101,0.399,0.101,0.399-0.1v-10h13.601c0.301,0,0.5-0.2,0.5-0.4v-13.3 - c0-0.4-0.199-0.5-0.601-0.5h-13.5L25.659,6.898z"/> - <g> - <path fill="#0033CC" d="M25.659,6.898c0-0.301-0.3-0.301-0.5-0.2l-16.6,16.9c-0.5,0.5-0.4,0.7,0,1l16.6,16.7 - c0.103,0.101,0.399,0.101,0.399-0.1v-10h13.601c0.301,0,0.5-0.2,0.5-0.4v-13.3c0-0.4-0.199-0.5-0.601-0.5h-13.5L25.659,6.898z"/> - <path fill="#0134CC" d="M25.648,6.925c0-0.3-0.299-0.3-0.498-0.2L8.575,23.6c-0.499,0.499-0.4,0.698,0,1L25.15,41.271 - c0.101,0.102,0.398,0.102,0.398-0.1v-9.984h13.58c0.303,0,0.5-0.197,0.5-0.397V17.508c0-0.4-0.197-0.499-0.6-0.499H25.55 - L25.648,6.925z"/> - <path fill="#0235CD" d="M25.641,6.953c0-0.3-0.3-0.3-0.498-0.2L8.588,23.601c-0.499,0.498-0.399,0.697,0,0.997l16.553,16.647 - c0.101,0.101,0.398,0.101,0.398-0.101v-9.971h13.562c0.299,0,0.498-0.197,0.498-0.398V17.519c0-0.399-0.199-0.499-0.6-0.499H25.54 - L25.641,6.953z"/> - <path fill="#0336CD" d="M25.63,6.979c0-0.299-0.299-0.299-0.498-0.199L8.603,23.601c-0.498,0.498-0.399,0.696,0,0.997 - l16.529,16.62c0.101,0.101,0.397,0.101,0.397-0.099v-9.954h13.544c0.299,0,0.495-0.199,0.495-0.397v-13.24 - c0-0.399-0.196-0.498-0.598-0.498H25.532L25.63,6.979z"/> - <path fill="#0437CE" d="M25.622,7.005c0-0.299-0.299-0.299-0.498-0.199L8.619,23.602c-0.498,0.497-0.398,0.695,0,0.994 - l16.505,16.598c0.101,0.1,0.396,0.1,0.396-0.102v-9.938h13.521c0.301,0,0.498-0.197,0.498-0.396V17.54 - c0-0.397-0.197-0.497-0.598-0.497h-13.42L25.622,7.005z"/> - <path fill="#0538CE" d="M25.611,7.033c0-0.298-0.299-0.298-0.498-0.199L8.633,23.602c-0.497,0.496-0.398,0.694,0,0.994 - l16.48,16.568c0.101,0.1,0.398,0.1,0.398-0.1v-9.924h13.502c0.299,0,0.498-0.197,0.498-0.396V17.548 - c0-0.397-0.199-0.496-0.598-0.496h-13.4L25.611,7.033z"/> - <path fill="#0639CF" d="M25.602,7.06c0-0.298-0.297-0.298-0.496-0.199L8.646,23.603c-0.496,0.496-0.396,0.693,0,0.99 - l16.458,16.546c0.101,0.101,0.396,0.101,0.396-0.1v-9.907h13.482c0.301,0,0.496-0.196,0.496-0.396V17.56 - c0-0.396-0.195-0.495-0.595-0.495H25.503L25.602,7.06z"/> - <path fill="#073ACF" d="M25.592,7.085c0-0.298-0.298-0.298-0.494-0.199L8.662,23.603c-0.495,0.495-0.396,0.692,0,0.989 - l16.436,16.518c0.1,0.102,0.396,0.102,0.396-0.098V31.12h13.465c0.297,0,0.494-0.197,0.494-0.396V17.569 - c0-0.396-0.197-0.495-0.595-0.495H25.493L25.592,7.085z"/> - <path fill="#083BD0" d="M25.583,7.111c0-0.297-0.297-0.297-0.494-0.198L8.677,23.604c-0.494,0.494-0.396,0.691,0,0.987 - l16.412,16.493c0.101,0.1,0.396,0.1,0.396-0.1v-9.877h13.447c0.297,0,0.493-0.195,0.493-0.396V17.58 - c0-0.396-0.196-0.494-0.594-0.494H25.484L25.583,7.111z"/> - <path fill="#093CD0" d="M25.573,7.139c0-0.296-0.296-0.296-0.494-0.197L8.69,23.604c-0.493,0.494-0.395,0.69,0,0.985l16.389,16.47 - c0.103,0.099,0.396,0.099,0.396-0.101V31.1h13.428c0.298,0,0.494-0.197,0.494-0.396V17.589c0-0.395-0.196-0.493-0.594-0.493 - H25.475L25.573,7.139z"/> - <path fill="#0A3DD1" d="M25.562,7.165c0-0.296-0.295-0.296-0.492-0.197L8.706,23.604c-0.493,0.492-0.395,0.688,0,0.983 - l16.366,16.44c0.1,0.098,0.396,0.098,0.396-0.101v-9.845h13.405c0.297,0,0.494-0.196,0.494-0.396V17.596 - c0-0.395-0.197-0.492-0.592-0.492H25.464L25.562,7.165z"/> - <path fill="#0B3ED1" d="M25.555,7.191c0-0.295-0.296-0.295-0.492-0.197L8.72,23.605c-0.492,0.491-0.394,0.688,0,0.982 - l16.342,16.414c0.1,0.099,0.395,0.099,0.395-0.099v-9.828h13.391c0.295,0,0.49-0.197,0.49-0.395V17.609 - c0-0.393-0.195-0.491-0.59-0.491H25.456L25.555,7.191z"/> - <path fill="#0C3FD2" d="M25.544,7.219c0-0.295-0.295-0.295-0.491-0.196L8.734,23.606c-0.491,0.49-0.394,0.687,0,0.98 - l16.318,16.389c0.099,0.101,0.394,0.101,0.394-0.098v-9.812h13.369c0.297,0,0.492-0.194,0.492-0.394V17.62 - c0-0.393-0.195-0.49-0.591-0.49H25.445L25.544,7.219z"/> - <path fill="#0D40D2" d="M25.534,7.245c0-0.294-0.293-0.294-0.49-0.196L8.749,23.606c-0.491,0.489-0.394,0.685,0,0.979 - l16.295,16.362c0.099,0.098,0.394,0.098,0.394-0.098v-9.798h13.35c0.295,0,0.49-0.196,0.49-0.395V17.628 - c0-0.392-0.195-0.489-0.588-0.489H25.438L25.534,7.245z"/> - <path fill="#0E41D3" d="M25.525,7.271c0-0.294-0.295-0.294-0.489-0.196L8.764,23.607c-0.49,0.489-0.393,0.685,0,0.979 - l16.271,16.335c0.102,0.101,0.395,0.101,0.395-0.097v-9.782h13.33c0.295,0,0.488-0.194,0.488-0.394V17.64 - c0-0.392-0.193-0.489-0.588-0.489H25.428L25.525,7.271z"/> - <path fill="#0F42D3" d="M25.516,7.298c0-0.293-0.293-0.293-0.488-0.195L8.778,23.607c-0.489,0.489-0.392,0.684,0,0.978 - l16.248,16.312c0.101,0.099,0.394,0.099,0.394-0.099v-9.767H38.73c0.293,0,0.49-0.195,0.49-0.393V17.65 - c0-0.391-0.197-0.488-0.589-0.488H25.417L25.516,7.298z"/> - <path fill="#1043D4" d="M25.505,7.325c0-0.293-0.293-0.293-0.487-0.195L8.792,23.608c-0.488,0.488-0.391,0.683,0,0.976 - l16.224,16.283c0.101,0.098,0.394,0.098,0.394-0.098v-9.752H38.7c0.295,0,0.489-0.192,0.489-0.39V17.661 - c0-0.391-0.194-0.487-0.586-0.487H25.409L25.505,7.325z"/> - <path fill="#1144D4" d="M25.497,7.352c0-0.292-0.293-0.292-0.487-0.194L8.808,23.608c-0.488,0.487-0.391,0.682,0,0.974 - L25.009,40.84c0.099,0.1,0.392,0.1,0.392-0.097v-9.734h13.272c0.293,0,0.488-0.194,0.488-0.39V17.67 - c0-0.39-0.195-0.487-0.586-0.487H25.398L25.497,7.352z"/> - <path fill="#1245D5" d="M25.486,7.378c0-0.292-0.293-0.292-0.487-0.195L8.822,23.609c-0.487,0.486-0.39,0.68,0,0.973l16.177,16.23 - c0.099,0.099,0.392,0.099,0.392-0.099v-9.72h13.254c0.293,0,0.485-0.194,0.485-0.391V17.681c0-0.389-0.192-0.486-0.584-0.486 - H25.391L25.486,7.378z"/> - <path fill="#1346D5" d="M25.479,7.406c0-0.292-0.293-0.292-0.486-0.195L8.837,23.61c-0.487,0.485-0.39,0.679,0,0.971 - l16.154,16.206c0.098,0.097,0.389,0.097,0.389-0.098v-9.705h13.236c0.291,0,0.485-0.192,0.485-0.389V17.69 - c0-0.388-0.194-0.485-0.584-0.485H25.38L25.479,7.406z"/> - <path fill="#1447D6" d="M25.468,7.432c0-0.292-0.292-0.292-0.485-0.194L8.852,23.611c-0.485,0.484-0.389,0.678,0,0.969 - l16.13,16.18c0.1,0.098,0.389,0.098,0.389-0.096v-9.688h13.217c0.291,0,0.486-0.192,0.486-0.39V17.702 - c0-0.388-0.195-0.484-0.584-0.484H25.37L25.468,7.432z"/> - <path fill="#1548D6" d="M25.458,7.458c0-0.291-0.291-0.291-0.485-0.194L8.866,23.611c-0.484,0.483-0.388,0.677,0,0.968 - L24.973,40.73c0.1,0.099,0.389,0.099,0.389-0.097v-9.673h13.197c0.291,0,0.483-0.193,0.483-0.388V17.71 - c0-0.387-0.192-0.483-0.582-0.483H25.359L25.458,7.458z"/> - <path fill="#1649D7" d="M25.448,7.484c0-0.291-0.289-0.291-0.484-0.194L8.88,23.613c-0.484,0.482-0.388,0.675,0,0.965 - l16.083,16.128c0.098,0.099,0.389,0.099,0.389-0.097v-9.657h13.178c0.291,0,0.484-0.192,0.484-0.388V17.722 - c0-0.387-0.193-0.482-0.582-0.482h-13.08L25.448,7.484z"/> - <path fill="#174AD7" d="M25.439,7.512c0-0.29-0.291-0.29-0.483-0.193L8.895,23.614c-0.483,0.482-0.387,0.675,0,0.963l16.06,16.104 - c0.1,0.096,0.391,0.096,0.391-0.098v-9.645H38.5c0.291,0,0.484-0.191,0.484-0.385V17.731c0-0.386-0.193-0.481-0.58-0.481H25.343 - L25.439,7.512z"/> - <path fill="#184BD8" d="M25.43,7.539c0-0.29-0.289-0.29-0.482-0.193L8.91,23.614c-0.482,0.482-0.387,0.674,0,0.962L24.947,40.65 - c0.098,0.098,0.387,0.098,0.387-0.096V30.93h13.141c0.291,0,0.48-0.193,0.48-0.388v-12.8c0-0.385-0.189-0.481-0.578-0.481H25.333 - L25.43,7.539z"/> - <path fill="#194CD8" d="M25.419,7.564c0-0.289-0.289-0.289-0.481-0.192L8.923,23.614c-0.481,0.481-0.386,0.673,0,0.961 - l16.015,16.05c0.097,0.098,0.386,0.098,0.386-0.098v-9.608h13.118c0.291,0,0.482-0.19,0.482-0.386V17.751 - c0-0.385-0.191-0.48-0.578-0.48H25.323L25.419,7.564z"/> - <path fill="#1A4DD9" d="M25.411,7.59c0-0.288-0.289-0.288-0.479-0.192L8.938,23.615c-0.481,0.48-0.385,0.671,0,0.96L24.93,40.598 - c0.096,0.096,0.385,0.096,0.385-0.096v-9.595h13.102c0.289,0,0.48-0.192,0.48-0.386V17.762c0-0.384-0.191-0.479-0.578-0.479 - H25.314L25.411,7.59z"/> - <path fill="#1B4ED9" d="M25.4,7.618c0-0.288-0.289-0.288-0.479-0.191L8.954,23.616c-0.481,0.479-0.385,0.67,0,0.958L24.919,40.57 - c0.099,0.097,0.386,0.097,0.386-0.096v-9.58h13.082c0.288,0,0.479-0.189,0.479-0.383V17.771c0-0.383-0.191-0.479-0.576-0.479 - H25.305L25.4,7.618z"/> - <path fill="#1C4FDA" d="M25.393,7.645c0-0.287-0.289-0.287-0.48-0.191L8.968,23.617c-0.48,0.479-0.384,0.669,0,0.958 - l15.941,15.971c0.099,0.097,0.385,0.097,0.385-0.095v-9.562h13.062c0.289,0,0.48-0.193,0.48-0.384V17.782 - c0-0.383-0.191-0.478-0.577-0.478H25.294L25.393,7.645z"/> - <path fill="#1D50DA" d="M25.38,7.67c0-0.287-0.286-0.287-0.479-0.19L8.981,23.617c-0.479,0.478-0.384,0.667,0,0.955L24.9,40.518 - c0.097,0.096,0.384,0.096,0.384-0.098v-9.548h13.043c0.289,0,0.479-0.188,0.479-0.383V17.792c0-0.382-0.19-0.477-0.576-0.477 - H25.286L25.38,7.67z"/> - <path fill="#1E51DB" d="M25.372,7.698c0-0.287-0.287-0.287-0.479-0.191L8.997,23.618c-0.479,0.477-0.383,0.667,0,0.954 - L24.893,40.49c0.098,0.095,0.385,0.095,0.385-0.096v-9.533H38.3c0.287,0,0.479-0.189,0.479-0.381V17.803 - c0-0.382-0.191-0.476-0.574-0.476h-12.93L25.372,7.698z"/> - <path fill="#1F52DB" d="M25.361,7.725c0-0.286-0.284-0.286-0.479-0.19L9.012,23.619c-0.478,0.475-0.383,0.666,0,0.951 - l15.872,15.895c0.097,0.096,0.384,0.096,0.384-0.095v-9.519h13.004c0.287,0,0.479-0.189,0.479-0.381V17.812 - c0-0.381-0.19-0.476-0.574-0.476H25.268L25.361,7.725z"/> - <path fill="#2053DC" d="M25.354,7.75c0-0.286-0.287-0.286-0.479-0.19L9.025,23.619c-0.477,0.475-0.382,0.665,0,0.951 - l15.849,15.867c0.099,0.095,0.385,0.095,0.385-0.098v-9.501h12.982c0.286,0,0.479-0.188,0.479-0.381V17.823 - c0-0.38-0.188-0.475-0.574-0.475h-12.89L25.354,7.75z"/> - <path fill="#2154DC" d="M25.343,7.777c0-0.286-0.286-0.286-0.477-0.19L9.04,23.619c-0.476,0.475-0.381,0.664,0,0.949L24.867,40.41 - c0.096,0.095,0.383,0.095,0.383-0.094V30.83h12.965c0.287,0,0.479-0.189,0.479-0.38V17.832c0-0.379-0.188-0.474-0.569-0.474 - H25.249L25.343,7.777z"/> - <path fill="#2255DD" d="M25.333,7.805c0-0.285-0.285-0.285-0.478-0.19L9.056,23.62c-0.476,0.474-0.381,0.663,0,0.948 - l15.801,15.812c0.098,0.096,0.383,0.096,0.383-0.095v-9.472h12.945c0.285,0,0.477-0.188,0.477-0.381V17.842 - c0-0.378-0.188-0.473-0.569-0.473H25.238L25.333,7.805z"/> - <path fill="#2356DD" d="M25.325,7.832c0-0.284-0.285-0.284-0.478-0.189L9.069,23.621c-0.475,0.473-0.381,0.662,0,0.945 - l15.779,15.791c0.096,0.094,0.381,0.094,0.381-0.098v-9.451h12.929c0.284,0,0.477-0.189,0.477-0.379V17.853 - c0-0.378-0.188-0.472-0.569-0.472H25.229L25.325,7.832z"/> - <path fill="#2457DE" d="M25.314,7.857c0-0.284-0.285-0.284-0.477-0.189L9.084,23.622c-0.474,0.472-0.38,0.66,0,0.944L24.838,40.33 - c0.098,0.094,0.381,0.094,0.381-0.094v-9.439h12.908c0.285,0,0.475-0.189,0.475-0.378V17.863c0-0.378-0.188-0.471-0.567-0.471 - H25.221L25.314,7.857z"/> - <path fill="#2558DE" d="M25.305,7.883c0-0.283-0.283-0.283-0.474-0.188L9.099,23.622c-0.473,0.471-0.379,0.659,0,0.942 - L24.831,40.3c0.095,0.097,0.379,0.097,0.379-0.094v-9.424H38.1c0.284,0,0.475-0.188,0.475-0.38V17.873 - c0-0.377-0.188-0.47-0.568-0.47H25.21L25.305,7.883z"/> - <path fill="#2659DF" d="M25.294,7.911c0-0.283-0.282-0.283-0.474-0.188l-15.708,15.9c-0.473,0.47-0.378,0.658,0,0.941 - L24.82,40.275c0.097,0.094,0.38,0.094,0.38-0.094v-9.408h12.868c0.285,0,0.476-0.188,0.476-0.377V17.882 - c0-0.376-0.188-0.469-0.567-0.469H25.2L25.294,7.911z"/> - <path fill="#275ADF" d="M25.286,7.938c0-0.282-0.283-0.282-0.474-0.188L9.127,23.624c-0.472,0.469-0.378,0.657,0,0.938 - L24.812,40.25c0.097,0.094,0.379,0.094,0.379-0.093v-9.394h12.851c0.283,0,0.476-0.188,0.476-0.379V17.894 - c0-0.375-0.188-0.469-0.566-0.469h-12.76L25.286,7.938z"/> - <path fill="#285BE0" d="M25.275,7.963c0-0.282-0.282-0.282-0.473-0.188L9.143,23.624c-0.471,0.469-0.377,0.656,0,0.938 - l15.662,15.658c0.096,0.094,0.379,0.094,0.379-0.094V30.75h12.83c0.282,0,0.473-0.188,0.473-0.376V17.902 - c0-0.375-0.188-0.468-0.564-0.468h-12.74L25.275,7.963z"/> - <path fill="#295CE0" d="M25.268,7.991c0-0.281-0.283-0.281-0.474-0.188L9.158,23.624c-0.471,0.468-0.377,0.655,0,0.937 - l15.638,15.633c0.095,0.096,0.377,0.096,0.377-0.092V30.74h12.812c0.283,0,0.473-0.188,0.473-0.375V17.914 - c0-0.375-0.188-0.467-0.564-0.467H25.171L25.268,7.991z"/> - <path fill="#2A5DE1" d="M25.257,8.018c0-0.281-0.282-0.281-0.471-0.188L9.171,23.625c-0.47,0.467-0.377,0.654,0,0.936 - l15.615,15.605c0.094,0.093,0.377,0.093,0.377-0.093v-9.347h12.793c0.28,0,0.471-0.188,0.471-0.375V17.923 - c0-0.374-0.188-0.467-0.563-0.467h-12.7L25.257,8.018z"/> - <path fill="#2B5EE1" d="M25.247,8.043c0-0.28-0.28-0.28-0.472-0.187L9.187,23.625c-0.469,0.467-0.376,0.653,0,0.934l15.59,15.582 - c0.096,0.092,0.377,0.092,0.377-0.094v-9.33h12.773c0.28,0,0.471-0.188,0.471-0.373v-12.41c0-0.373-0.188-0.466-0.562-0.466 - H25.152L25.247,8.043z"/> - <path fill="#2C5FE2" d="M25.238,8.07c0-0.28-0.282-0.28-0.471-0.186L9.201,23.625c-0.468,0.466-0.375,0.652,0,0.932L24.77,40.114 - c0.096,0.093,0.375,0.093,0.375-0.095v-9.312h12.754c0.281,0,0.471-0.188,0.471-0.373V17.943c0-0.373-0.188-0.465-0.562-0.465 - H25.145L25.238,8.07z"/> - <path fill="#2D60E2" d="M25.229,8.097c0-0.28-0.279-0.28-0.469-0.187L9.214,23.626c-0.468,0.465-0.375,0.651,0,0.931L24.76,40.086 - c0.094,0.094,0.374,0.094,0.374-0.093v-9.3H37.87c0.278,0,0.469-0.188,0.469-0.371V17.954c0-0.372-0.188-0.464-0.562-0.464H25.134 - L25.229,8.097z"/> - <path fill="#2E61E3" d="M25.219,8.124c0-0.279-0.281-0.279-0.468-0.186L9.229,23.627c-0.467,0.464-0.375,0.649,0,0.928 - l15.522,15.506c0.095,0.094,0.373,0.094,0.373-0.094v-9.281h12.718c0.28,0,0.467-0.188,0.467-0.373v-12.35 - c0-0.371-0.187-0.463-0.562-0.463H25.124L25.219,8.124z"/> - <path fill="#2F62E3" d="M25.208,8.15c0-0.279-0.278-0.279-0.467-0.186L9.245,23.628c-0.466,0.463-0.374,0.648,0,0.927 - l15.499,15.479c0.094,0.093,0.373,0.093,0.373-0.095v-9.268h12.695c0.28,0,0.469-0.186,0.469-0.371V17.975 - c0-0.371-0.188-0.463-0.562-0.463H25.116L25.208,8.15z"/> - <path fill="#3063E4" d="M25.2,8.177c0-0.278-0.279-0.278-0.468-0.185L9.259,23.628c-0.465,0.462-0.373,0.647,0,0.925l15.476,15.45 - c0.094,0.093,0.373,0.093,0.373-0.092V30.66h12.678c0.279,0,0.467-0.188,0.467-0.371V17.984c0-0.37-0.188-0.462-0.561-0.462 - H25.105L25.2,8.177z"/> - <path fill="#3164E4" d="M25.189,8.204c0-0.277-0.278-0.277-0.465-0.185L9.273,23.629c-0.465,0.462-0.373,0.646,0,0.924 - l15.452,15.426c0.092,0.092,0.371,0.092,0.371-0.092v-9.238h12.658c0.279,0,0.467-0.187,0.467-0.371V17.995 - c0-0.37-0.188-0.461-0.561-0.461H25.098L25.189,8.204z"/> - <path fill="#3265E5" d="M25.182,8.229c0-0.277-0.279-0.277-0.466-0.185L9.289,23.629c-0.464,0.461-0.372,0.645,0,0.921 - l15.428,15.4c0.094,0.093,0.372,0.093,0.372-0.093v-9.217h12.64c0.276,0,0.465-0.188,0.465-0.369V18.004 - c0-0.369-0.188-0.46-0.559-0.46H25.087L25.182,8.229z"/> - <path fill="#3366E5" d="M25.171,8.256c0-0.276-0.278-0.276-0.465-0.184L9.304,23.63c-0.463,0.46-0.372,0.644,0,0.92l15.404,15.373 - c0.093,0.093,0.371,0.093,0.371-0.092v-9.205h12.619c0.276,0,0.465-0.185,0.465-0.369V18.015c0-0.368-0.188-0.459-0.56-0.459 - H25.079L25.171,8.256z"/> - <path fill="#3366E6" d="M25.161,8.284c0-0.276-0.276-0.276-0.463-0.184L9.317,23.631c-0.462,0.459-0.371,0.643,0,0.919 - l15.381,15.347c0.094,0.095,0.37,0.095,0.37-0.09v-9.188h12.601c0.279,0,0.466-0.187,0.466-0.368V18.024 - c0-0.367-0.187-0.458-0.558-0.458H25.068L25.161,8.284z"/> - <path fill="#3467E6" d="M25.15,8.311c0-0.276-0.276-0.276-0.463-0.184L9.332,23.631c-0.462,0.459-0.371,0.642,0,0.917 - L24.688,39.87c0.096,0.091,0.371,0.091,0.371-0.093v-9.174h12.582c0.276,0,0.463-0.187,0.463-0.369V18.035 - c0-0.367-0.187-0.458-0.558-0.458H25.059L25.15,8.311z"/> - <path fill="#3568E7" d="M25.143,8.336c0-0.275-0.277-0.275-0.463-0.183L9.347,23.632c-0.461,0.458-0.37,0.641,0,0.917 - L24.68,39.846c0.094,0.092,0.37,0.092,0.37-0.093v-9.157h12.562c0.277,0,0.463-0.186,0.463-0.367V18.044 - c0-0.366-0.186-0.457-0.555-0.457H25.05L25.143,8.336z"/> - <path fill="#3669E7" d="M25.133,8.364c0-0.275-0.277-0.275-0.462-0.183L9.361,23.632c-0.461,0.458-0.369,0.64,0,0.916 - l15.31,15.271c0.095,0.093,0.369,0.093,0.369-0.09v-9.146h12.543c0.276,0,0.463-0.185,0.463-0.367V18.055 - c0-0.365-0.187-0.456-0.555-0.456H25.04L25.133,8.364z"/> - <path fill="#376AE8" d="M25.122,8.39c0-0.274-0.274-0.274-0.461-0.183L9.375,23.633c-0.459,0.457-0.368,0.639,0,0.914 - L24.663,39.79c0.092,0.091,0.366,0.091,0.366-0.091V30.57h12.525c0.275,0,0.461-0.184,0.461-0.364V18.064 - c0-0.365-0.186-0.455-0.555-0.455H25.029L25.122,8.39z"/> - <path fill="#386BE8" d="M25.113,8.417c0-0.274-0.276-0.274-0.461-0.183L9.39,23.634c-0.459,0.456-0.368,0.638,0,0.912 - l15.262,15.218c0.095,0.09,0.369,0.09,0.369-0.091v-9.112h12.504c0.275,0,0.461-0.184,0.461-0.365v-12.12 - c0-0.364-0.186-0.455-0.553-0.455H25.021L25.113,8.417z"/> - <path fill="#396CE9" d="M25.104,8.442c0-0.273-0.273-0.273-0.459-0.182L9.405,23.636c-0.458,0.455-0.368,0.636,0,0.909 - l15.24,15.189c0.092,0.093,0.367,0.093,0.367-0.09v-9.097h12.485c0.274,0,0.459-0.183,0.459-0.364v-12.1 - c0-0.363-0.185-0.454-0.552-0.454H25.012L25.104,8.442z"/> - <path fill="#3A6DE9" d="M25.094,8.47c0-0.273-0.273-0.273-0.457-0.182L9.419,23.636c-0.458,0.455-0.367,0.636,0,0.908 - l15.216,15.165c0.092,0.091,0.367,0.091,0.367-0.09v-9.081h12.466c0.274,0,0.459-0.185,0.459-0.364V18.096 - c0-0.363-0.185-0.453-0.552-0.453H25.003L25.094,8.47z"/> - <path fill="#3B6EEA" d="M25.085,8.497c0-0.272-0.274-0.272-0.459-0.181L9.435,23.637c-0.457,0.453-0.366,0.634,0,0.906 - l15.193,15.141c0.093,0.09,0.365,0.09,0.365-0.092v-9.064h12.446c0.271,0,0.457-0.182,0.457-0.361v-12.06 - c0-0.362-0.186-0.452-0.549-0.452H24.993L25.085,8.497z"/> - <path fill="#3C6FEA" d="M25.075,8.522c0-0.272-0.272-0.272-0.457-0.181L9.449,23.637c-0.457,0.453-0.366,0.633,0,0.905 - l15.169,15.112c0.092,0.091,0.362,0.091,0.362-0.09v-9.051h12.431c0.272,0,0.457-0.183,0.457-0.363V18.116 - c0-0.362-0.185-0.452-0.55-0.452H24.982L25.075,8.522z"/> - <path fill="#3D70EB" d="M25.064,8.549c0-0.271-0.272-0.271-0.455-0.181L9.462,23.638c-0.455,0.452-0.365,0.632,0,0.903 - l15.147,15.087c0.093,0.093,0.363,0.093,0.363-0.089v-9.035h12.409c0.272,0,0.456-0.181,0.456-0.359v-12.02 - c0-0.361-0.184-0.451-0.549-0.451H24.975L25.064,8.549z"/> - <path fill="#3E71EB" d="M25.057,8.577c0-0.271-0.273-0.271-0.455-0.181L9.478,23.639c-0.455,0.451-0.364,0.631,0,0.901 - l15.124,15.062c0.09,0.09,0.362,0.09,0.362-0.09v-9.021h12.392c0.272,0,0.455-0.183,0.455-0.361V18.136 - c0-0.36-0.183-0.45-0.547-0.45h-12.3L25.057,8.577z"/> - <path fill="#3F72EC" d="M25.046,8.603c0-0.27-0.272-0.27-0.455-0.18L9.493,23.639c-0.454,0.45-0.364,0.63,0,0.9l15.099,15.035 - c0.092,0.09,0.364,0.09,0.364-0.09V30.48h12.369c0.272,0,0.454-0.183,0.454-0.359V18.146c0-0.36-0.182-0.449-0.547-0.449H24.956 - L25.046,8.603z"/> - <path fill="#4073EC" d="M25.038,8.629c0-0.27-0.272-0.27-0.455-0.18L9.506,23.64c-0.453,0.45-0.363,0.629,0,0.898l15.075,15.01 - c0.092,0.091,0.362,0.091,0.362-0.09v-8.985h12.353c0.272,0,0.455-0.183,0.455-0.361V18.157c0-0.359-0.183-0.448-0.545-0.448 - H24.945L25.038,8.629z"/> - <path fill="#4174ED" d="M25.027,8.656c0-0.269-0.272-0.269-0.454-0.179L9.521,23.641c-0.453,0.449-0.363,0.627,0,0.896 - L24.573,39.52c0.092,0.09,0.362,0.09,0.362-0.09v-8.972h12.332c0.271,0,0.453-0.181,0.453-0.36V18.166 - c0-0.358-0.182-0.447-0.544-0.447H24.938L25.027,8.656z"/> - <path fill="#4275ED" d="M25.018,8.683c0-0.269-0.271-0.269-0.453-0.179L9.537,23.641c-0.452,0.448-0.362,0.626,0,0.896 - l15.027,14.957c0.092,0.09,0.362,0.09,0.362-0.09v-8.955h12.312c0.271,0,0.453-0.18,0.453-0.359V18.177 - c0-0.358-0.182-0.447-0.543-0.447H24.927L25.018,8.683z"/> - <path fill="#4376EE" d="M25.008,8.709c0-0.269-0.271-0.269-0.451-0.179L9.551,23.642c-0.451,0.447-0.361,0.625,0,0.895 - l15.006,14.932c0.09,0.09,0.36,0.09,0.36-0.089v-8.94H37.21c0.271,0,0.453-0.18,0.453-0.356V18.187 - c0-0.357-0.183-0.446-0.543-0.446H24.917L25.008,8.709z"/> - <path fill="#4477EE" d="M24.997,8.735c0-0.268-0.271-0.268-0.45-0.179L9.564,23.642c-0.45,0.446-0.361,0.625,0,0.893 - l14.982,14.904c0.091,0.09,0.36,0.09,0.36-0.088v-8.928H37.18c0.271,0,0.451-0.179,0.451-0.355V18.197 - c0-0.356-0.181-0.445-0.542-0.445h-12.18L24.997,8.735z"/> - <path fill="#4578EF" d="M24.988,8.763c0-0.268-0.271-0.268-0.449-0.178L9.58,23.643c-0.449,0.445-0.36,0.623,0,0.891l14.958,14.88 - c0.09,0.089,0.358,0.089,0.358-0.089v-8.909h12.256c0.271,0,0.451-0.18,0.451-0.357V18.207c0-0.356-0.182-0.444-0.541-0.444 - H24.898L24.988,8.763z"/> - <path fill="#4679EF" d="M24.979,8.79c0-0.267-0.271-0.267-0.449-0.178L9.595,23.644c-0.449,0.445-0.36,0.622,0,0.891 - l14.934,14.851c0.091,0.091,0.359,0.091,0.359-0.088v-8.896h12.234c0.271,0,0.451-0.18,0.451-0.355V18.216 - c0-0.355-0.184-0.443-0.541-0.443H24.891L24.979,8.79z"/> - <path fill="#477AF0" d="M24.971,8.815c0-0.267-0.271-0.267-0.451-0.178L9.608,23.644c-0.448,0.444-0.359,0.621,0,0.889 - L24.52,39.357c0.09,0.09,0.36,0.09,0.36-0.088v-8.879h12.218c0.27,0,0.448-0.18,0.448-0.354V18.228 - c0-0.355-0.183-0.443-0.541-0.443H24.88L24.971,8.815z"/> - <path fill="#487BF0" d="M24.96,8.842c0-0.266-0.271-0.266-0.448-0.177L9.624,23.645c-0.448,0.443-0.359,0.62,0,0.888 - l14.888,14.801c0.09,0.088,0.358,0.088,0.358-0.088v-8.863h12.196c0.271,0,0.449-0.178,0.449-0.355v-11.79 - c0-0.354-0.182-0.442-0.539-0.442H24.87L24.96,8.842z"/> - <path fill="#497CF1" d="M24.95,8.87c0-0.266-0.269-0.266-0.447-0.177L9.638,23.645c-0.447,0.442-0.358,0.619,0,0.886 - l14.865,14.773c0.09,0.09,0.356,0.09,0.356-0.09v-8.846H37.04c0.271,0,0.446-0.18,0.446-0.354V18.248 - c0-0.353-0.18-0.441-0.536-0.441H24.859L24.95,8.87z"/> - <path fill="#4A7DF1" d="M24.939,8.896c0-0.265-0.268-0.265-0.446-0.177L9.652,23.646c-0.446,0.442-0.357,0.618,0,0.883 - l14.841,14.75c0.089,0.088,0.358,0.088,0.358-0.088v-8.832H37.01c0.27,0,0.448-0.178,0.448-0.354V18.257 - c0-0.353-0.183-0.44-0.537-0.44H24.852L24.939,8.896z"/> - <path fill="#4B7EF2" d="M24.932,8.922c0-0.265-0.269-0.265-0.447-0.177L9.667,23.646c-0.445,0.441-0.357,0.617,0,0.881 - l14.818,14.724c0.089,0.088,0.357,0.088,0.357-0.088V30.35h12.141c0.268,0,0.447-0.18,0.447-0.354V18.268 - c0-0.353-0.181-0.44-0.537-0.44H24.842L24.932,8.922z"/> - <path fill="#4C7FF2" d="M24.921,8.949c0-0.264-0.269-0.264-0.445-0.176L9.682,23.646c-0.444,0.44-0.356,0.616,0,0.879 - l14.794,14.697c0.088,0.088,0.355,0.088,0.355-0.089v-8.801h12.121c0.269,0,0.444-0.177,0.444-0.354V18.277 - c0-0.352-0.18-0.438-0.535-0.438h-12.03L24.921,8.949z"/> - <path fill="#4D80F3" d="M24.913,8.976c0-0.264-0.269-0.264-0.444-0.176L9.697,23.647c-0.444,0.439-0.356,0.615,0,0.878 - l14.771,14.672c0.091,0.088,0.355,0.088,0.355-0.088v-8.784h12.102c0.269,0,0.445-0.179,0.445-0.354V18.288 - c0-0.351-0.181-0.438-0.535-0.438H24.823L24.913,8.976z"/> - <path fill="#4E81F3" d="M24.902,9.002c0-0.264-0.268-0.264-0.444-0.176L9.71,23.647c-0.443,0.439-0.355,0.614,0,0.876 - L24.458,39.17c0.089,0.088,0.354,0.088,0.354-0.087v-8.771h12.082c0.268,0,0.444-0.176,0.444-0.354V18.297 - c0-0.35-0.178-0.437-0.532-0.437H24.812L24.902,9.002z"/> - <path fill="#4F82F4" d="M24.895,9.028c0-0.263-0.269-0.263-0.444-0.175L9.726,23.648c-0.442,0.438-0.354,0.612,0,0.875 - L24.45,39.145c0.089,0.088,0.354,0.088,0.354-0.086v-8.754h12.062c0.267,0,0.442-0.178,0.442-0.354V18.308 - c0-0.349-0.18-0.436-0.533-0.436H24.805L24.895,9.028z"/> - <path fill="#5083F4" d="M24.884,9.056c0-0.262-0.268-0.262-0.443-0.175L9.74,23.649c-0.441,0.437-0.354,0.611,0,0.875l14.7,14.595 - c0.089,0.087,0.354,0.087,0.354-0.087v-8.737h12.045c0.267,0,0.44-0.176,0.44-0.353V18.317c0-0.349-0.178-0.436-0.53-0.436H24.794 - L24.884,9.056z"/> - <path fill="#5184F5" d="M24.874,9.082c0-0.262-0.269-0.262-0.442-0.175L9.754,23.649c-0.441,0.437-0.354,0.61,0,0.873 - l14.677,14.566c0.088,0.088,0.354,0.088,0.354-0.086v-8.723h12.025c0.266,0,0.44-0.176,0.44-0.35V18.329 - c0-0.348-0.176-0.435-0.53-0.435H24.786L24.874,9.082z"/> - <path fill="#5285F5" d="M24.863,9.108c0-0.262-0.264-0.262-0.44-0.174L9.769,23.65c-0.44,0.436-0.353,0.609,0,0.872l14.654,14.541 - c0.089,0.086,0.353,0.086,0.353-0.086V30.27h12.008c0.264,0,0.439-0.176,0.439-0.351V18.338c0-0.348-0.177-0.434-0.529-0.434 - H24.775L24.863,9.108z"/> - <path fill="#5386F6" d="M24.854,9.136c0-0.261-0.266-0.261-0.44-0.174l-14.63,14.69c-0.439,0.435-0.353,0.608,0,0.87l14.63,14.517 - c0.089,0.087,0.353,0.087,0.353-0.086V30.26H36.75c0.266,0,0.439-0.175,0.439-0.349V18.349c0-0.347-0.176-0.433-0.527-0.433 - H24.768L24.854,9.136z"/> - <path fill="#5487F6" d="M24.846,9.163c0-0.261-0.265-0.261-0.441-0.174L9.798,23.651c-0.439,0.434-0.352,0.607,0,0.867 - l14.606,14.49c0.088,0.086,0.352,0.086,0.352-0.086v-8.676h11.967c0.264,0,0.439-0.176,0.439-0.35V18.358 - c0-0.346-0.178-0.432-0.527-0.432H24.757L24.846,9.163z"/> - <path fill="#5588F7" d="M24.835,9.188c0-0.26-0.265-0.26-0.439-0.173L9.812,23.652c-0.438,0.433-0.352,0.606,0,0.866L24.395,38.98 - c0.088,0.088,0.352,0.088,0.352-0.086v-8.66h11.946c0.265,0,0.439-0.174,0.439-0.348V18.369c0-0.346-0.178-0.432-0.527-0.432 - H24.747L24.835,9.188z"/> - <path fill="#5689F7" d="M24.827,9.215c0-0.26-0.265-0.26-0.438-0.173L9.828,23.653c-0.437,0.432-0.351,0.604,0,0.865l14.56,14.438 - c0.088,0.086,0.352,0.086,0.352-0.086v-8.646h11.928c0.266,0,0.438-0.176,0.438-0.349v-11.5c0-0.345-0.176-0.431-0.525-0.431 - H24.74L24.827,9.215z"/> - <path fill="#578AF8" d="M24.816,9.242c0-0.259-0.264-0.259-0.438-0.172L9.842,23.653c-0.437,0.432-0.35,0.604,0,0.863 - l14.537,14.41c0.088,0.086,0.35,0.086,0.35-0.086v-8.629h11.91c0.262,0,0.438-0.173,0.438-0.346V18.389 - c0-0.344-0.176-0.43-0.524-0.43H24.729L24.816,9.242z"/> - <path fill="#588BF8" d="M24.807,9.269c0-0.259-0.262-0.259-0.437-0.172L9.856,23.655c-0.436,0.431-0.35,0.603,0,0.863 - L24.37,38.898c0.088,0.086,0.349,0.086,0.349-0.084v-8.612h11.891c0.264,0,0.438-0.175,0.438-0.347V18.398 - c0-0.344-0.176-0.429-0.524-0.429H24.719L24.807,9.269z"/> - <path fill="#598CF9" d="M24.796,9.294c0-0.258-0.261-0.258-0.438-0.172L9.872,23.655c-0.435,0.43-0.349,0.602,0,0.861 - L24.36,38.872c0.088,0.086,0.35,0.086,0.35-0.085v-8.602h11.871c0.263,0,0.438-0.172,0.438-0.344V18.41 - c0-0.343-0.177-0.429-0.522-0.429H24.71L24.796,9.294z"/> - <path fill="#5A8DF9" d="M24.788,9.322c0-0.258-0.263-0.258-0.437-0.172L9.886,23.656c-0.435,0.429-0.349,0.6,0,0.857 - l14.466,14.334c0.088,0.086,0.349,0.086,0.349-0.088v-8.58h11.854c0.262,0,0.438-0.174,0.438-0.346V18.418 - c0-0.342-0.177-0.427-0.522-0.427H24.7L24.788,9.322z"/> - <path fill="#5B8EFA" d="M24.777,9.349c0-0.257-0.262-0.257-0.436-0.171L9.9,23.657c-0.434,0.428-0.348,0.6,0,0.856L24.342,38.82 - c0.087,0.086,0.348,0.086,0.348-0.084v-8.567h11.834c0.261,0,0.437-0.172,0.437-0.344V18.43c0-0.342-0.176-0.427-0.522-0.427 - H24.689L24.777,9.349z"/> - <path fill="#5C8FFA" d="M24.77,9.375c0-0.257-0.262-0.257-0.436-0.171L9.915,23.657c-0.433,0.428-0.348,0.599,0,0.854 - l14.419,14.281c0.087,0.086,0.348,0.086,0.348-0.085v-8.551h11.812c0.262,0,0.438-0.174,0.438-0.346V18.439 - c0-0.341-0.176-0.426-0.521-0.426H24.682L24.77,9.375z"/> - <path fill="#5D90FB" d="M24.759,9.401c0-0.256-0.26-0.256-0.434-0.17L9.93,23.658c-0.432,0.427-0.347,0.597,0,0.855l14.396,14.254 - c0.087,0.086,0.347,0.086,0.347-0.084v-8.537h11.794c0.26,0,0.436-0.172,0.436-0.342V18.45c0-0.341-0.176-0.425-0.521-0.425 - h-11.71L24.759,9.401z"/> - <path fill="#5E91FB" d="M24.749,9.429c0-0.256-0.26-0.256-0.435-0.17l-14.371,14.4c-0.432,0.426-0.346,0.596,0,0.852L24.315,38.74 - c0.087,0.085,0.346,0.085,0.346-0.086v-8.521h11.774c0.26,0,0.435-0.172,0.435-0.342V18.459c0-0.34-0.175-0.424-0.521-0.424 - H24.663L24.749,9.429z"/> - <path fill="#5F92FC" d="M24.741,9.455c0-0.255-0.261-0.255-0.434-0.17L9.958,23.659c-0.431,0.425-0.346,0.595,0,0.851 - l14.349,14.202c0.087,0.085,0.345,0.085,0.345-0.084v-8.505h11.757c0.258,0,0.434-0.171,0.434-0.341V18.47 - c0-0.339-0.176-0.423-0.521-0.423h-11.67L24.741,9.455z"/> - <path fill="#6093FC" d="M24.73,9.481c0-0.255-0.259-0.255-0.433-0.17L9.974,23.66c-0.43,0.425-0.345,0.594,0,0.849l14.325,14.179 - c0.087,0.084,0.346,0.084,0.346-0.084v-8.489H36.38c0.259,0,0.433-0.171,0.433-0.341V18.479c0-0.339-0.174-0.423-0.521-0.423 - H24.645L24.73,9.481z"/> - <path fill="#6194FD" d="M24.721,9.507c0-0.254-0.259-0.254-0.431-0.169L9.988,23.661c-0.43,0.424-0.345,0.593,0,0.847 - l14.302,14.15c0.086,0.085,0.344,0.085,0.344-0.084V30.1h11.718c0.258,0,0.432-0.17,0.432-0.342v-11.27 - c0-0.338-0.174-0.422-0.518-0.422H24.634L24.721,9.507z"/> - <path fill="#6295FD" d="M24.71,9.535c0-0.254-0.257-0.254-0.429-0.169L10.002,23.661c-0.429,0.423-0.344,0.592,0,0.846 - L24.28,38.631c0.086,0.085,0.343,0.085,0.343-0.083V30.09H36.32c0.258,0,0.432-0.17,0.432-0.34V18.5 - c0-0.337-0.174-0.421-0.52-0.421H24.623L24.71,9.535z"/> - <path fill="#6396FE" d="M24.702,9.561c0-0.253-0.259-0.253-0.43-0.169l-14.256,14.27c-0.428,0.422-0.343,0.591,0,0.844 - l14.255,14.1c0.086,0.084,0.342,0.084,0.342-0.084V30.08h11.681c0.258,0,0.431-0.17,0.431-0.338v-11.23 - c0-0.337-0.173-0.42-0.517-0.42H24.616L24.702,9.561z"/> - <path fill="#6497FE" d="M24.691,9.587c0-0.253-0.257-0.253-0.429-0.168l-14.23,14.243c-0.427,0.422-0.343,0.59,0,0.843 - l14.231,14.072c0.086,0.084,0.342,0.084,0.342-0.083v-8.428h11.66c0.258,0,0.43-0.17,0.43-0.338V18.521 - c0-0.336-0.172-0.42-0.516-0.42H24.605L24.691,9.587z"/> - <path fill="#6598FF" d="M24.684,9.615c0-0.252-0.258-0.252-0.43-0.168L10.045,23.663c-0.426,0.42-0.342,0.588,0,0.841 - l14.208,14.047c0.086,0.084,0.343,0.084,0.343-0.084v-8.41h11.641c0.257,0,0.429-0.168,0.429-0.336V18.531 - c0-0.335-0.172-0.418-0.515-0.418H24.598L24.684,9.615z"/> - <path fill="#6699FF" d="M24.673,9.642c0-0.252-0.257-0.252-0.428-0.168L10.06,23.664c-0.426,0.42-0.342,0.587,0,0.839 - l14.185,14.021c0.086,0.084,0.342,0.084,0.342-0.084v-8.396h11.621c0.256,0,0.429-0.169,0.429-0.337V18.541 - c0-0.335-0.173-0.418-0.515-0.418H24.587L24.673,9.642z"/> - </g> - - <linearGradient id="XMLID_16_" gradientUnits="userSpaceOnUse" x1="-1112.2041" y1="1225.4229" x2="-1112.2041" y2="1254.5781" gradientTransform="matrix(-1 0 0 1 -1089 -1216)"> - <stop offset="0" style="stop-color:#FFFFFF"/> - <stop offset="1" style="stop-color:#6699FF"/> - </linearGradient> - <path fill="url(#XMLID_16_)" d="M24.673,9.642c0-0.252-0.257-0.252-0.428-0.168L10.06,23.664c-0.426,0.42-0.342,0.587,0,0.839 - l14.185,14.021c0.086,0.084,0.342,0.084,0.342-0.084v-8.396h11.621c0.256,0,0.429-0.169,0.429-0.337V18.541 - c0-0.335-0.173-0.418-0.515-0.418H24.587L24.673,9.642z"/> -</g> -<g id="crop_x0020_marks"> - <path fill="none" d="M-0.06,0.001h48v48h-48V0.001z"/> -</g> -</svg> diff --git a/docbook-xsl-1.75.2/images/colorsvg/tip.svg b/docbook-xsl-1.75.2/images/colorsvg/tip.svg deleted file mode 100644 index 7ec92e3..0000000 --- a/docbook-xsl-1.75.2/images/colorsvg/tip.svg +++ /dev/null @@ -1,367 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [ - <!ENTITY ns_svg "http://www.w3.org/2000/svg"> - <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> -]> -<svg version="1.1" id="Tip" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="48" height="48" viewBox="0 0 48 48" - overflow="visible" enable-background="new 0 0 48 48" xml:space="preserve"> -<g> - <path stroke="#FFFFFF" stroke-width="5.6139" d="M9.525,18.6c0,8,6.5,14.4,14.4,14.4c8.001,0,14.399-6.5,14.399-14.4 - c0-8-6.5-14.4-14.399-14.4C15.925,4.2,9.525,10.7,9.525,18.6z M12.825,18.6c0-6.2,5-11.2,11.2-11.2c6.2,0,11.2,5,11.2,11.2 - c0,6.2-5,11.2-11.2,11.2C17.825,29.8,12.825,24.8,12.825,18.6z"/> - <path stroke="#FFFFFF" stroke-width="5.6139" d="M28.125,37.9l-7.6,0.8c-0.9,0.1-1.5,0.899-1.4,1.8s0.9,1.5,1.8,1.4l7.601-0.801 - c0.9-0.102,1.5-0.899,1.4-1.802C29.824,38.4,29.025,37.8,28.125,37.9z"/> - <path stroke="#FFFFFF" stroke-width="5.6139" d="M28.125,34.8l-7.6,0.8c-0.9,0.101-1.5,0.9-1.4,1.801c0.1,0.897,0.9,1.5,1.8,1.397 - l7.601-0.8c0.9-0.102,1.5-0.898,1.4-1.8C29.824,35.3,29.025,34.7,28.125,34.8z"/> - <path stroke="#FFFFFF" stroke-width="5.6139" d="M28.125,31.6l-7.6,0.801c-0.9,0.1-1.5,0.897-1.4,1.8c0.1,0.899,0.9,1.5,1.8,1.399 - l7.601-0.802c0.9-0.1,1.5-0.897,1.4-1.8C29.824,32.1,29.025,31.5,28.125,31.6z"/> - <path stroke="#FFFFFF" stroke-width="5.6139" d="M23.125,41.3v0.9c0,0.899,0.7,1.6,1.6,1.6c0.9,0,1.6-0.7,1.6-1.6v-0.9h-3.299 - H23.125z"/> - <path fill="#FFFFFF" d="M35.926,18.7c0,6.6-5.4,12-12.001,12c-6.6,0-12-5.4-12-12c0-6.6,5.4-12,12-12 - C30.525,6.7,35.926,12.1,35.926,18.7z"/> - <g> - <path fill="#FFFF00" d="M9.625,18.6c0,8,6.5,14.4,14.4,14.4c8,0,14.401-6.5,14.401-14.4c0-8-6.5-14.4-14.401-14.4 - C16.025,4.2,9.625,10.7,9.625,18.6z"/> - <path fill="#FFFF01" d="M9.647,18.6c0-7.889,6.391-14.379,14.379-14.379c7.89,0,14.378,6.391,14.378,14.379 - c0,7.889-6.391,14.378-14.378,14.378C16.137,32.979,9.647,26.588,9.647,18.6z"/> - <path fill="#FFFF02" d="M9.668,18.6c0-7.878,6.382-14.358,14.358-14.358c7.878,0,14.359,6.382,14.359,14.358 - c0,7.876-6.383,14.358-14.359,14.358C16.149,32.958,9.668,26.576,9.668,18.6z"/> - <path fill="#FFFF03" d="M9.69,18.6c0-7.867,6.373-14.337,14.337-14.337c7.868,0,14.338,6.373,14.338,14.337 - c0,7.867-6.373,14.337-14.338,14.337C16.16,32.938,9.69,26.564,9.69,18.6z"/> - <path fill="#FFFF04" d="M9.712,18.6c0-7.855,6.363-14.316,14.316-14.316c7.855,0,14.316,6.363,14.316,14.316 - c0,7.856-6.363,14.316-14.316,14.316C16.172,32.916,9.712,26.553,9.712,18.6z"/> - <path fill="#FFFF05" d="M9.733,18.6c0-7.844,6.354-14.295,14.295-14.295c7.847,0,14.296,6.354,14.296,14.295 - c0,7.843-6.354,14.294-14.296,14.294C16.184,32.896,9.733,26.541,9.733,18.6z"/> - <path fill="#FFFF06" d="M9.754,18.6c0-7.833,6.345-14.274,14.274-14.274c7.833,0,14.275,6.345,14.275,14.274 - c0,7.833-6.346,14.274-14.275,14.274C16.196,32.874,9.754,26.529,9.754,18.6z"/> - <path fill="#FFFF07" d="M9.776,18.6c0-7.822,6.336-14.253,14.254-14.253c7.822,0,14.253,6.335,14.253,14.253 - c0,7.823-6.336,14.253-14.253,14.253C16.208,32.854,9.776,26.518,9.776,18.6z"/> - <path fill="#FFFF08" d="M9.798,18.6c0-7.811,6.326-14.232,14.232-14.232c7.812,0,14.234,6.326,14.234,14.232 - c0,7.811-6.328,14.233-14.234,14.233C16.219,32.833,9.798,26.506,9.798,18.6z"/> - <path fill="#FFFF09" d="M9.819,18.6c0-7.8,6.317-14.211,14.211-14.211c7.8,0,14.212,6.317,14.212,14.211 - c0,7.8-6.318,14.21-14.212,14.21C16.231,32.812,9.819,26.494,9.819,18.6z"/> - <path fill="#FFFF0A" d="M9.84,18.6c0-7.789,6.309-14.191,14.191-14.191c7.79,0,14.192,6.309,14.192,14.191 - c0,7.789-6.309,14.191-14.192,14.191C16.243,32.791,9.84,26.482,9.84,18.6z"/> - <path fill="#FFFF0B" d="M9.862,18.6c0-7.778,6.299-14.17,14.17-14.17c7.779,0,14.169,6.299,14.169,14.17 - c0,7.778-6.299,14.169-14.169,14.169C16.254,32.77,9.862,26.471,9.862,18.6z"/> - <path fill="#FFFF0C" d="M9.884,18.6c0-7.767,6.29-14.149,14.149-14.149c7.768,0,14.149,6.29,14.149,14.149 - c0,7.767-6.291,14.149-14.149,14.149C16.266,32.749,9.884,26.459,9.884,18.6z"/> - <path fill="#FFFF0D" d="M9.905,18.6c0-7.756,6.281-14.128,14.128-14.128c7.756,0,14.129,6.281,14.129,14.128 - c0,7.755-6.281,14.128-14.129,14.128C16.278,32.729,9.905,26.447,9.905,18.6z"/> - <path fill="#FFFF0E" d="M9.927,18.6c0-7.745,6.272-14.107,14.107-14.107c7.746,0,14.107,6.272,14.107,14.107 - c0,7.746-6.27,14.107-14.107,14.107C16.29,32.707,9.927,26.436,9.927,18.6z"/> - <path fill="#FFFF0F" d="M9.949,18.6c0-7.733,6.263-14.086,14.086-14.086c7.733,0,14.088,6.262,14.088,14.086 - c0,7.733-6.266,14.085-14.088,14.085C16.302,32.688,9.949,26.423,9.949,18.6z"/> - <path fill="#FFFF10" d="M9.97,18.6c0-7.722,6.253-14.065,14.065-14.065c7.723,0,14.067,6.253,14.067,14.065 - c0,7.722-6.254,14.066-14.067,14.066C16.313,32.666,9.97,26.411,9.97,18.6z"/> - <path fill="#FFFF11" d="M9.992,18.6c0-7.711,6.244-14.044,14.044-14.044c7.712,0,14.044,6.245,14.044,14.044 - c0,7.71-6.244,14.044-14.044,14.044C16.325,32.645,9.992,26.398,9.992,18.6z"/> - <path fill="#FFFF12" d="M10.013,18.6c0-7.7,6.235-14.023,14.023-14.023c7.7,0,14.024,6.235,14.024,14.023 - c0,7.7-6.236,14.023-14.024,14.023C16.337,32.623,10.013,26.389,10.013,18.6z"/> - <path fill="#FFFF13" d="M10.035,18.6c0-7.688,6.226-14.002,14.002-14.002c7.689,0,14.004,6.226,14.004,14.002 - c0,7.689-6.229,14.001-14.004,14.001C16.348,32.604,10.035,26.376,10.035,18.6z"/> - <path fill="#FFFF14" d="M10.057,18.6c0-7.678,6.217-13.981,13.981-13.981c7.679,0,13.981,6.217,13.981,13.981 - c0,7.677-6.217,13.981-13.981,13.981C16.36,32.581,10.057,26.364,10.057,18.6z"/> - <path fill="#FFFF15" d="M10.078,18.6c0-7.667,6.208-13.961,13.961-13.961C31.707,4.639,38,10.847,38,18.6 - c0,7.667-6.209,13.96-13.961,13.96C16.372,32.561,10.078,26.354,10.078,18.6z"/> - <path fill="#FFFF16" d="M10.1,18.6c0-7.655,6.198-13.94,13.939-13.94c7.656,0,13.941,6.199,13.941,13.94 - c0,7.656-6.201,13.94-13.941,13.94C16.384,32.54,10.1,26.341,10.1,18.6z"/> - <path fill="#FFFF17" d="M10.121,18.6c0-7.644,6.189-13.919,13.919-13.919c7.646,0,13.919,6.189,13.919,13.919 - c0,7.644-6.189,13.917-13.919,13.917C16.396,32.52,10.121,26.329,10.121,18.6z"/> - <path fill="#FFFF18" d="M10.143,18.6c0-7.633,6.181-13.898,13.898-13.898c7.633,0,13.898,6.18,13.898,13.898 - c0,7.632-6.182,13.898-13.898,13.898C16.408,32.498,10.143,26.316,10.143,18.6z"/> - <path fill="#FFFF19" d="M10.164,18.6c0-7.622,6.171-13.877,13.877-13.877c7.623,0,13.877,6.171,13.877,13.877 - c0,7.623-6.172,13.876-13.877,13.876C16.419,32.479,10.164,26.307,10.164,18.6z"/> - <path fill="#FFFF1A" d="M10.186,18.6c0-7.611,6.162-13.856,13.856-13.856c7.61,0,13.856,6.162,13.856,13.856 - c0,7.611-6.162,13.856-13.856,13.856C16.431,32.456,10.186,26.294,10.186,18.6z"/> - <path fill="#FFFF1B" d="M10.208,18.6c0-7.6,6.153-13.835,13.835-13.835c7.602,0,13.836,6.153,13.836,13.835 - c0,7.6-6.152,13.835-13.836,13.835C16.443,32.436,10.208,26.282,10.208,18.6z"/> - <path fill="#FFFF1C" d="M10.229,18.6c0-7.589,6.144-13.814,13.814-13.814c7.59,0,13.814,6.144,13.814,13.814 - c0,7.587-6.145,13.814-13.814,13.814C16.454,32.414,10.229,26.271,10.229,18.6z"/> - <path fill="#FFFF1D" d="M10.251,18.6c0-7.578,6.135-13.793,13.793-13.793c7.579,0,13.794,6.135,13.794,13.793 - c0,7.578-6.137,13.792-13.794,13.792C16.466,32.395,10.251,26.259,10.251,18.6z"/> - <path fill="#FFFF1E" d="M10.272,18.6c0-7.566,6.125-13.772,13.772-13.772c7.567,0,13.772,6.125,13.772,13.772 - c0,7.567-6.125,13.773-13.772,13.773C16.478,32.373,10.272,26.247,10.272,18.6z"/> - <path fill="#FFFF1F" d="M10.294,18.6c0-7.556,6.116-13.752,13.751-13.752c7.557,0,13.752,6.117,13.752,13.752 - c0,7.554-6.117,13.751-13.752,13.751C16.49,32.352,10.294,26.234,10.294,18.6z"/> - <path fill="#FFFF20" d="M10.315,18.6c0-7.544,6.107-13.731,13.731-13.731c7.544,0,13.731,6.107,13.731,13.731 - c0,7.544-6.107,13.731-13.731,13.731C16.502,32.331,10.315,26.225,10.315,18.6z"/> - <path fill="#FFFF21" d="M10.337,18.6c0-7.533,6.098-13.71,13.709-13.71c7.534,0,13.71,6.098,13.71,13.71 - c0,7.534-6.1,13.708-13.71,13.708C16.513,32.311,10.337,26.212,10.337,18.6z"/> - <path fill="#FFFF22" d="M10.358,18.6c0-7.522,6.088-13.688,13.689-13.688c7.521,0,13.689,6.088,13.689,13.688 - c0,7.522-6.09,13.689-13.689,13.689C16.525,32.289,10.358,26.199,10.358,18.6z"/> - <path fill="#FFFF23" d="M10.38,18.6c0-7.511,6.08-13.668,13.668-13.668c7.511,0,13.669,6.08,13.669,13.668 - c0,7.511-6.08,13.667-13.669,13.667C16.537,32.268,10.38,26.188,10.38,18.6z"/> - <path fill="#FFFF24" d="M10.401,18.6c0-7.5,6.071-13.647,13.647-13.647c7.501,0,13.647,6.07,13.647,13.647 - c0,7.5-6.07,13.647-13.647,13.647C16.549,32.247,10.401,26.176,10.401,18.6z"/> - <path fill="#FFFF25" d="M10.423,18.6c0-7.489,6.062-13.626,13.626-13.626c7.49,0,13.627,6.061,13.627,13.626 - c0,7.489-6.062,13.625-13.627,13.625C16.56,32.227,10.423,26.164,10.423,18.6z"/> - <path fill="#FFFF26" d="M10.445,18.6c0-7.478,6.052-13.605,13.605-13.605c7.478,0,13.606,6.052,13.606,13.605 - c0,7.478-6.053,13.605-13.606,13.605C16.572,32.205,10.445,26.152,10.445,18.6z"/> - <path fill="#FFFF27" d="M10.466,18.6c0-7.467,6.043-13.584,13.584-13.584c7.468,0,13.585,6.043,13.585,13.584 - c0,7.466-6.043,13.583-13.585,13.583C16.584,32.186,10.466,26.141,10.466,18.6z"/> - <path fill="#FFFF28" d="M10.488,18.6c0-7.456,6.034-13.563,13.563-13.563c7.457,0,13.562,6.034,13.562,13.563 - c0,7.457-6.033,13.563-13.562,13.563C16.596,32.163,10.488,26.129,10.488,18.6z"/> - <path fill="#FFFF29" d="M10.509,18.6c0-7.445,6.025-13.542,13.542-13.542c7.445,0,13.543,6.024,13.543,13.542 - c0,7.444-6.025,13.542-13.543,13.542C16.608,32.143,10.509,26.117,10.509,18.6z"/> - <path fill="#FFFF2A" d="M10.531,18.6c0-7.434,6.016-13.522,13.521-13.522c7.435,0,13.521,6.016,13.521,13.522 - c0,7.433-6.016,13.521-13.521,13.521C16.619,32.121,10.531,26.105,10.531,18.6z"/> - <path fill="#FFFF2B" d="M10.552,18.6c0-7.422,6.006-13.501,13.501-13.501c7.422,0,13.502,6.007,13.502,13.501 - c0,7.421-6.008,13.5-13.502,13.5C16.631,32.102,10.552,26.094,10.552,18.6z"/> - <path fill="#FFFF2C" d="M10.574,18.6c0-7.411,5.997-13.479,13.479-13.479c7.412,0,13.48,5.997,13.48,13.479 - c0,7.411-5.998,13.48-13.48,13.48C16.643,32.08,10.574,26.082,10.574,18.6z"/> - <path fill="#FFFF2D" d="M10.596,18.6c0-7.4,5.988-13.458,13.458-13.458c7.401,0,13.46,5.988,13.46,13.458 - c0,7.4-5.988,13.458-13.46,13.458C16.654,32.059,10.596,26.07,10.596,18.6z"/> - <path fill="#FFFF2E" d="M10.617,18.6c0-7.389,5.979-13.438,13.438-13.438c7.389,0,13.438,5.979,13.438,13.438 - c0,7.389-5.979,13.438-13.438,13.438C16.666,32.038,10.617,26.059,10.617,18.6z"/> - <path fill="#FFFF2F" d="M10.639,18.6c0-7.377,5.97-13.417,13.417-13.417c7.377,0,13.417,5.97,13.417,13.417 - c0,7.376-5.971,13.417-13.417,13.417C16.678,32.018,10.639,26.047,10.639,18.6z"/> - <path fill="#FFFF30" d="M10.66,18.6c0-7.366,5.96-13.396,13.396-13.396c7.368,0,13.395,5.961,13.395,13.396 - c0,7.367-5.961,13.396-13.395,13.396C16.69,31.996,10.66,26.035,10.66,18.6z"/> - <path fill="#FFFF31" d="M10.682,18.6c0-7.355,5.951-13.375,13.375-13.375c7.355,0,13.375,5.952,13.375,13.375 - c0,7.355-5.951,13.375-13.375,13.375C16.701,31.977,10.682,26.023,10.682,18.6z"/> - <path fill="#FFFF32" d="M10.703,18.6c0-7.344,5.943-13.354,13.354-13.354c7.343,0,13.355,5.943,13.355,13.354 - c0,7.343-5.943,13.354-13.355,13.354C16.713,31.954,10.703,26.012,10.703,18.6z"/> - <path fill="#FFFF33" d="M10.725,18.6c0-7.333,5.933-13.333,13.333-13.333c7.334,0,13.334,5.934,13.334,13.333 - c0,7.333-5.934,13.333-13.334,13.333C16.725,31.934,10.725,26,10.725,18.6z"/> - <path fill="#FFFF34" d="M10.747,18.6c0-7.322,5.924-13.312,13.312-13.312c7.322,0,13.312,5.924,13.312,13.312 - c0,7.322-5.926,13.312-13.312,13.312C16.737,31.912,10.747,25.988,10.747,18.6z"/> - <path fill="#FFFF35" d="M10.768,18.6c0-7.311,5.915-13.292,13.292-13.292c7.311,0,13.292,5.915,13.292,13.292 - c0,7.311-5.914,13.292-13.292,13.292C16.749,31.893,10.768,25.977,10.768,18.6z"/> - <path fill="#FFFF36" d="M10.79,18.6c0-7.3,5.906-13.271,13.271-13.271c7.3,0,13.271,5.906,13.271,13.271 - c0,7.298-5.904,13.27-13.271,13.27C16.76,31.87,10.79,25.964,10.79,18.6z"/> - <path fill="#FFFF37" d="M10.811,18.6c0-7.289,5.897-13.25,13.25-13.25c7.289,0,13.25,5.896,13.25,13.25 - c0,7.289-5.896,13.25-13.25,13.25C16.772,31.85,10.811,25.952,10.811,18.6z"/> - <path fill="#FFFF38" d="M10.833,18.6c0-7.278,5.888-13.229,13.229-13.229c7.278,0,13.229,5.887,13.229,13.229 - c0,7.278-5.889,13.228-13.229,13.228C16.784,31.828,10.833,25.939,10.833,18.6z"/> - <path fill="#FFFF39" d="M10.854,18.6c0-7.267,5.878-13.208,13.208-13.208c7.268,0,13.208,5.878,13.208,13.208 - c0,7.266-5.877,13.208-13.208,13.208C16.796,31.809,10.854,25.93,10.854,18.6z"/> - <path fill="#FFFF3A" d="M10.876,18.6c0-7.255,5.869-13.187,13.187-13.187c7.255,0,13.187,5.869,13.187,13.187 - c0,7.255-5.869,13.187-13.187,13.187C16.807,31.787,10.876,25.917,10.876,18.6z"/> - <path fill="#FFFF3B" d="M10.898,18.6c0-7.245,5.86-13.166,13.166-13.166c7.245,0,13.167,5.86,13.167,13.166 - c0,7.244-5.859,13.166-13.167,13.166C16.819,31.766,10.898,25.904,10.898,18.6z"/> - <path fill="#FFFF3C" d="M10.92,18.6c0-7.233,5.851-13.145,13.145-13.145c7.234,0,13.146,5.851,13.146,13.145 - c0,7.233-5.854,13.145-13.146,13.145C16.831,31.745,10.92,25.895,10.92,18.6z"/> - <path fill="#FFFF3D" d="M10.941,18.6c0-7.222,5.842-13.125,13.124-13.125c7.222,0,13.125,5.842,13.125,13.125 - c0,7.222-5.842,13.125-13.125,13.125C16.843,31.725,10.941,25.882,10.941,18.6z"/> - <path fill="#FFFF3E" d="M10.963,18.6c0-7.211,5.833-13.104,13.103-13.104c7.211,0,13.104,5.833,13.104,13.104 - c0,7.21-5.832,13.103-13.104,13.103C16.855,31.703,10.963,25.87,10.963,18.6z"/> - <path fill="#FFFF3F" d="M10.984,18.6c0-7.2,5.823-13.082,13.083-13.082c7.201,0,13.083,5.823,13.083,13.082 - c0,7.2-5.824,13.083-13.083,13.083C16.866,31.684,10.984,25.857,10.984,18.6z"/> - <path fill="#FFFF40" d="M11.005,18.6c0-7.189,5.815-13.062,13.062-13.062c7.189,0,13.062,5.814,13.062,13.062 - c0,7.189-5.812,13.061-13.062,13.061C16.878,31.661,11.005,25.848,11.005,18.6z"/> - <path fill="#FFFF41" d="M11.027,18.6c0-7.178,5.805-13.041,13.041-13.041c7.178,0,13.042,5.805,13.042,13.041 - c0,7.177-5.805,13.041-13.042,13.041C16.889,31.641,11.027,25.835,11.027,18.6z"/> - <path fill="#FFFF42" d="M11.048,18.6c0-7.167,5.796-13.02,13.02-13.02c7.167,0,13.02,5.796,13.02,13.02 - c0,7.167-5.797,13.02-13.02,13.02C16.901,31.62,11.048,25.823,11.048,18.6z"/> - <path fill="#FFFF43" d="M11.07,18.6c0-7.156,5.787-12.999,12.998-12.999c7.157,0,13,5.787,13,12.999c0,7.155-5.787,13-13,13 - C16.913,31.6,11.07,25.812,11.07,18.6z"/> - <path fill="#FFFF44" d="M11.091,18.6c0-7.145,5.778-12.978,12.978-12.978c7.146,0,12.978,5.778,12.978,12.978 - c0,7.144-5.777,12.978-12.978,12.978C16.925,31.578,11.091,25.8,11.091,18.6z"/> - <path fill="#FFFF45" d="M11.113,18.6c0-7.133,5.769-12.957,12.957-12.957c7.133,0,12.958,5.769,12.958,12.957 - c0,7.132-5.77,12.957-12.958,12.957C16.937,31.557,11.113,25.788,11.113,18.6z"/> - <path fill="#FFFF46" d="M11.135,18.6c0-7.123,5.759-12.936,12.936-12.936c7.123,0,12.937,5.759,12.937,12.936 - c0,7.123-5.76,12.936-12.937,12.936C16.949,31.536,11.135,25.775,11.135,18.6z"/> - <path fill="#FFFF47" d="M11.157,18.6c0-7.111,5.75-12.915,12.915-12.915c7.112,0,12.915,5.75,12.915,12.915 - c0,7.111-5.75,12.916-12.915,12.916C16.96,31.516,11.157,25.766,11.157,18.6z"/> - <path fill="#FFFF48" d="M11.178,18.6c0-7.1,5.741-12.894,12.895-12.894c7.101,0,12.894,5.741,12.894,12.894 - c0,7.099-5.74,12.894-12.894,12.894C16.972,31.494,11.178,25.752,11.178,18.6z"/> - <path fill="#FFFF49" d="M11.199,18.6c0-7.089,5.732-12.873,12.874-12.873c7.089,0,12.873,5.731,12.873,12.873 - c0,7.087-5.73,12.873-12.873,12.873C16.984,31.473,11.199,25.74,11.199,18.6z"/> - <path fill="#FFFF4A" d="M11.221,18.6c0-7.078,5.723-12.852,12.852-12.852c7.078,0,12.853,5.722,12.853,12.852 - c0,7.078-5.725,12.852-12.854,12.852C16.995,31.452,11.221,25.729,11.221,18.6z"/> - <path fill="#FFFF4B" d="M11.242,18.6c0-7.067,5.714-12.832,12.832-12.832c7.067,0,12.833,5.713,12.833,12.832 - c0,7.066-5.715,12.832-12.833,12.832C17.007,31.432,11.242,25.717,11.242,18.6z"/> - <path fill="#FFFF4C" d="M11.264,18.6c0-7.056,5.705-12.811,12.811-12.811c7.056,0,12.812,5.704,12.812,12.811 - c0,7.054-5.705,12.81-12.812,12.81C17.019,31.41,11.264,25.705,11.264,18.6z"/> - <path fill="#FFFF4D" d="M11.286,18.6c0-7.044,5.695-12.79,12.79-12.79c7.045,0,12.79,5.695,12.79,12.79 - c0,7.044-5.693,12.791-12.79,12.791C17.031,31.391,11.286,25.693,11.286,18.6z"/> - <path fill="#FFFF4E" d="M11.307,18.6c0-7.033,5.686-12.769,12.769-12.769c7.034,0,12.77,5.686,12.77,12.769 - c0,7.034-5.688,12.768-12.77,12.768C17.043,31.368,11.307,25.684,11.307,18.6z"/> - <path fill="#FFFF4F" d="M11.329,18.6c0-7.022,5.677-12.748,12.748-12.748c7.023,0,12.748,5.677,12.748,12.748 - c0,7.022-5.678,12.748-12.748,12.748C17.054,31.348,11.329,25.67,11.329,18.6z"/> - <path fill="#FFFF50" d="M11.351,18.6c0-7.011,5.667-12.727,12.727-12.727c7.012,0,12.727,5.668,12.727,12.727 - c0,7.011-5.668,12.727-12.727,12.727C17.066,31.327,11.351,25.658,11.351,18.6z"/> - <path fill="#FFFF51" d="M11.372,18.6c0-7,5.659-12.706,12.706-12.706c7,0,12.705,5.659,12.705,12.706 - c0,7-5.658,12.707-12.705,12.707C17.078,31.307,11.372,25.646,11.372,18.6z"/> - <path fill="#FFFF52" d="M11.394,18.6c0-6.989,5.65-12.685,12.685-12.685c6.987,0,12.685,5.65,12.685,12.685 - c0,6.989-5.648,12.685-12.685,12.685C17.09,31.285,11.394,25.635,11.394,18.6z"/> - <path fill="#FFFF53" d="M11.415,18.6c0-6.978,5.641-12.664,12.664-12.664c6.978,0,12.665,5.641,12.665,12.664 - c0,6.978-5.641,12.664-12.665,12.664C17.102,31.264,11.415,25.623,11.415,18.6z"/> - <path fill="#FFFF54" d="M11.437,18.6c0-6.967,5.631-12.643,12.643-12.643c6.967,0,12.645,5.631,12.645,12.643 - c0,6.966-5.633,12.643-12.645,12.643C17.113,31.243,11.437,25.611,11.437,18.6z"/> - <path fill="#FFFF55" d="M11.459,18.6c0-6.956,5.622-12.623,12.622-12.623c6.956,0,12.622,5.623,12.622,12.623 - c0,6.957-5.621,12.623-12.622,12.623C17.125,31.223,11.459,25.6,11.459,18.6z"/> - <path fill="#FFFF56" d="M11.48,18.6c0-6.944,5.613-12.602,12.602-12.602c6.945,0,12.602,5.613,12.602,12.602 - c0,6.944-5.613,12.601-12.602,12.601C17.137,31.201,11.48,25.588,11.48,18.6z"/> - <path fill="#FFFF57" d="M11.502,18.6c0-6.934,5.604-12.581,12.581-12.581c6.933,0,12.581,5.604,12.581,12.581 - c0,6.933-5.604,12.582-12.581,12.582C17.149,31.182,11.502,25.576,11.502,18.6z"/> - <path fill="#FFFF58" d="M11.523,18.6c0-6.922,5.595-12.56,12.56-12.56c6.923,0,12.56,5.595,12.56,12.56 - c0,6.921-5.594,12.559-12.56,12.559C17.16,31.159,11.523,25.564,11.523,18.6z"/> - <path fill="#FFFF59" d="M11.545,18.6c0-6.911,5.585-12.539,12.539-12.539c6.912,0,12.539,5.585,12.539,12.539 - c0,6.911-5.586,12.539-12.539,12.539C17.172,31.139,11.545,25.553,11.545,18.6z"/> - <path fill="#FFFF5A" d="M11.566,18.6c0-6.9,5.577-12.518,12.518-12.518c6.9,0,12.518,5.576,12.518,12.518 - c0,6.9-5.576,12.517-12.518,12.517C17.184,31.117,11.566,25.541,11.566,18.6z"/> - <path fill="#FFFF5B" d="M11.588,18.6c0-6.889,5.567-12.497,12.497-12.497c6.89,0,12.497,5.567,12.497,12.497 - c0,6.889-5.566,12.498-12.497,12.498C17.195,31.098,11.588,25.529,11.588,18.6z"/> - <path fill="#FFFF5C" d="M11.609,18.6c0-6.878,5.558-12.476,12.476-12.476c6.878,0,12.476,5.559,12.476,12.476 - c0,6.876-5.559,12.476-12.476,12.476C17.208,31.076,11.609,25.518,11.609,18.6z"/> - <path fill="#FFFF5D" d="M11.631,18.6c0-6.867,5.549-12.455,12.455-12.455c6.867,0,12.455,5.549,12.455,12.455 - c0,6.867-5.549,12.455-12.455,12.455C17.219,31.055,11.631,25.506,11.631,18.6z"/> - <path fill="#FFFF5E" d="M11.652,18.6c0-6.855,5.54-12.434,12.434-12.434c6.855,0,12.434,5.54,12.434,12.434 - c0,6.855-5.539,12.434-12.434,12.434C17.231,31.034,11.652,25.494,11.652,18.6z"/> - <path fill="#FFFF5F" d="M11.674,18.6c0-6.844,5.531-12.413,12.413-12.413c6.845,0,12.415,5.531,12.415,12.413 - c0,6.843-5.531,12.414-12.415,12.414C17.243,31.014,11.674,25.482,11.674,18.6z"/> - <path fill="#FFFF60" d="M11.695,18.6c0-6.833,5.521-12.392,12.393-12.392c6.834,0,12.393,5.521,12.393,12.392 - c0,6.833-5.521,12.392-12.393,12.392C17.254,30.992,11.695,25.471,11.695,18.6z"/> - <path fill="#FFFF61" d="M11.717,18.6c0-6.822,5.513-12.371,12.372-12.371c6.823,0,12.372,5.512,12.372,12.371 - c0,6.822-5.514,12.371-12.372,12.371C17.266,30.971,11.717,25.459,11.717,18.6z"/> - <path fill="#FFFF62" d="M11.739,18.6c0-6.811,5.503-12.351,12.35-12.351c6.812,0,12.351,5.503,12.351,12.351 - c0,6.811-5.504,12.35-12.351,12.35C17.278,30.95,11.739,25.447,11.739,18.6z"/> - <path fill="#FFFF63" d="M11.76,18.6c0-6.8,5.494-12.33,12.33-12.33c6.799,0,12.33,5.494,12.33,12.33 - c0,6.798-5.494,12.33-12.33,12.33C17.29,30.93,11.76,25.436,11.76,18.6z"/> - <path fill="#FFFF64" d="M11.782,18.6c0-6.789,5.485-12.309,12.309-12.309c6.79,0,12.31,5.485,12.31,12.309 - c0,6.789-5.484,12.308-12.31,12.308C17.301,30.908,11.782,25.423,11.782,18.6z"/> - <path fill="#FFFF65" d="M11.803,18.6c0-6.778,5.476-12.288,12.288-12.288c6.778,0,12.288,5.476,12.288,12.288 - c0,6.778-5.477,12.289-12.288,12.289C17.313,30.889,11.803,25.411,11.803,18.6z"/> - <path fill="#FFFF66" d="M11.825,18.6c0-6.767,5.467-12.267,12.267-12.267c6.768,0,12.268,5.466,12.268,12.267 - c0,6.766-5.467,12.266-12.268,12.266C17.325,30.866,11.825,25.398,11.825,18.6z"/> - <path fill="#FFFF67" d="M11.847,18.6c0-6.756,5.457-12.246,12.246-12.246c6.757,0,12.247,5.458,12.247,12.246 - c0,6.755-5.459,12.246-12.247,12.246C17.337,30.846,11.847,25.389,11.847,18.6z"/> - <path fill="#FFFF68" d="M11.868,18.6c0-6.745,5.449-12.225,12.225-12.225c6.745,0,12.226,5.448,12.226,12.225 - c0,6.746-5.449,12.224-12.226,12.224C17.348,30.824,11.868,25.376,11.868,18.6z"/> - <path fill="#FFFF69" d="M11.89,18.6c0-6.733,5.439-12.204,12.204-12.204c6.732,0,12.205,5.439,12.205,12.204 - c0,6.733-5.439,12.205-12.205,12.205C17.36,30.805,11.89,25.364,11.89,18.6z"/> - <path fill="#FFFF6A" d="M11.911,18.6c0-6.723,5.43-12.183,12.183-12.183c6.723,0,12.184,5.43,12.184,12.183 - c0,6.722-5.43,12.183-12.184,12.183C17.372,30.783,11.911,25.354,11.911,18.6z"/> - <path fill="#FFFF6B" d="M11.933,18.6c0-6.711,5.421-12.162,12.162-12.162c6.712,0,12.163,5.421,12.163,12.162 - c0,6.71-5.422,12.162-12.163,12.162C17.384,30.762,11.933,25.341,11.933,18.6z"/> - <path fill="#FFFF6C" d="M11.954,18.6c0-6.7,5.412-12.141,12.142-12.141c6.701,0,12.141,5.412,12.141,12.141 - c0,6.7-5.412,12.141-12.141,12.141C17.396,30.741,11.954,25.329,11.954,18.6z"/> - <path fill="#FFFF6D" d="M11.976,18.6c0-6.689,5.402-12.121,12.12-12.121c6.688,0,12.121,5.403,12.121,12.121 - c0,6.689-5.402,12.121-12.121,12.121C17.407,30.721,11.976,25.316,11.976,18.6z"/> - <path fill="#FFFF6E" d="M11.998,18.6c0-6.678,5.393-12.099,12.099-12.099c6.679,0,12.099,5.393,12.099,12.099 - c0,6.677-5.393,12.099-12.099,12.099C17.419,30.699,11.998,25.307,11.998,18.6z"/> - <path fill="#FFFF6F" d="M12.019,18.6c0-6.667,5.384-12.079,12.079-12.079c6.667,0,12.078,5.384,12.078,12.079 - c0,6.667-5.383,12.078-12.078,12.078C17.431,30.678,12.019,25.294,12.019,18.6z"/> - <path fill="#FFFF70" d="M12.041,18.6c0-6.656,5.375-12.058,12.058-12.058c6.655,0,12.057,5.375,12.057,12.058 - c0,6.655-5.375,12.057-12.057,12.057C17.442,30.657,12.041,25.282,12.041,18.6z"/> - <path fill="#FFFF71" d="M12.062,18.6c0-6.645,5.366-12.037,12.037-12.037c6.645,0,12.036,5.366,12.036,12.037 - c0,6.644-5.365,12.037-12.036,12.037C17.454,30.637,12.062,25.271,12.062,18.6z"/> - <path fill="#FFFF72" d="M12.084,18.6c0-6.633,5.357-12.016,12.016-12.016c6.632,0,12.015,5.357,12.015,12.016 - c0,6.632-5.355,12.015-12.015,12.015C17.466,30.615,12.084,25.259,12.084,18.6z"/> - <path fill="#FFFF73" d="M12.105,18.6c0-6.622,5.348-11.995,11.995-11.995c6.623,0,11.996,5.348,11.996,11.995 - c0,6.623-5.35,11.996-11.996,11.996C17.478,30.596,12.105,25.247,12.105,18.6z"/> - <path fill="#FFFF74" d="M12.127,18.6c0-6.611,5.338-11.974,11.974-11.974c6.612,0,11.973,5.339,11.973,11.974 - c0,6.611-5.338,11.973-11.973,11.973C17.49,30.573,12.127,25.234,12.127,18.6z"/> - <path fill="#FFFF75" d="M12.149,18.6c0-6.6,5.329-11.953,11.953-11.953c6.599,0,11.953,5.33,11.953,11.953 - c0,6.6-5.328,11.953-11.953,11.953C17.502,30.553,12.149,25.225,12.149,18.6z"/> - <path fill="#FFFF76" d="M12.17,18.6c0-6.589,5.32-11.932,11.932-11.932c6.589,0,11.931,5.32,11.931,11.932 - c0,6.587-5.318,11.932-11.931,11.932C17.513,30.532,12.17,25.212,12.17,18.6z"/> - <path fill="#FFFF77" d="M12.192,18.6c0-6.578,5.311-11.911,11.911-11.911c6.579,0,11.913,5.311,11.913,11.911 - c0,6.578-5.312,11.911-11.913,11.911C17.525,30.511,12.192,25.2,12.192,18.6z"/> - <path fill="#FFFF78" d="M12.213,18.6c0-6.567,5.302-11.89,11.891-11.89c6.568,0,11.89,5.302,11.89,11.89 - c0,6.567-5.303,11.89-11.89,11.89C17.537,30.49,12.213,25.188,12.213,18.6z"/> - <path fill="#FFFF79" d="M12.235,18.6c0-6.556,5.292-11.87,11.869-11.87c6.556,0,11.869,5.293,11.869,11.87 - c0,6.554-5.293,11.869-11.869,11.869C17.548,30.469,12.235,25.176,12.235,18.6z"/> - <path fill="#FFFF7A" d="M12.256,18.6c0-6.544,5.284-11.849,11.848-11.849c6.544,0,11.847,5.284,11.847,11.849 - c0,6.544-5.281,11.848-11.847,11.848C17.56,30.448,12.256,25.164,12.256,18.6z"/> - <path fill="#FFFF7B" d="M12.278,18.6c0-6.533,5.274-11.828,11.828-11.828c6.533,0,11.828,5.274,11.828,11.828 - c0,6.533-5.275,11.828-11.828,11.828C17.572,30.428,12.278,25.152,12.278,18.6z"/> - <path fill="#FFFF7C" d="M12.299,18.6c0-6.522,5.266-11.807,11.807-11.807c6.523,0,11.808,5.265,11.808,11.807 - c0,6.522-5.268,11.806-11.808,11.806C17.584,30.406,12.299,25.141,12.299,18.6z"/> - <path fill="#FFFF7D" d="M12.321,18.6c0-6.511,5.256-11.786,11.786-11.786c6.51,0,11.786,5.256,11.786,11.786 - c0,6.511-5.256,11.786-11.786,11.786C17.595,30.386,12.321,25.129,12.321,18.6z"/> - <path fill="#FFFF7E" d="M12.342,18.6c0-6.5,5.247-11.765,11.765-11.765c6.5,0,11.764,5.247,11.764,11.765 - c0,6.5-5.246,11.764-11.764,11.764C17.608,30.364,12.342,25.117,12.342,18.6z"/> - <path fill="#FFFF7F" d="M12.364,18.6c0-6.489,5.238-11.744,11.744-11.744c6.49,0,11.744,5.238,11.744,11.744 - c0,6.489-5.238,11.744-11.744,11.744C17.619,30.344,12.364,25.105,12.364,18.6z"/> - <path fill="#FFFF80" d="M12.386,18.6c0-6.478,5.229-11.723,11.723-11.723c6.479,0,11.723,5.229,11.723,11.723 - c0,6.477-5.229,11.722-11.723,11.722C17.631,30.322,12.386,25.094,12.386,18.6z"/> - <path fill="#FFFF81" d="M12.407,18.6c0-6.467,5.22-11.702,11.702-11.702c6.465,0,11.702,5.22,11.702,11.702 - c0,6.466-5.219,11.702-11.702,11.702C17.643,30.302,12.407,25.082,12.407,18.6z"/> - <path fill="#FFFF82" d="M12.429,18.6c0-6.456,5.21-11.681,11.681-11.681c6.455,0,11.681,5.21,11.681,11.681 - c0,6.457-5.209,11.681-11.681,11.681C17.654,30.281,12.429,25.07,12.429,18.6z"/> - <path fill="#FFFF83" d="M12.45,18.6c0-6.444,5.202-11.66,11.661-11.66c6.444,0,11.661,5.201,11.661,11.66 - c0,6.444-5.203,11.66-11.661,11.66C17.666,30.26,12.45,25.059,12.45,18.6z"/> - <path fill="#FFFF84" d="M12.472,18.6c0-6.434,5.192-11.639,11.639-11.639c6.434,0,11.639,5.192,11.639,11.639 - c0,6.433-5.191,11.639-11.639,11.639C17.678,30.239,12.472,25.047,12.472,18.6z"/> - <path fill="#FFFF85" d="M12.493,18.6c0-6.422,5.183-11.619,11.619-11.619c6.421,0,11.619,5.183,11.619,11.619 - c0,6.421-5.184,11.618-11.619,11.618C17.69,30.218,12.493,25.035,12.493,18.6z"/> - <path fill="#FFFF86" d="M12.515,18.6c0-6.411,5.174-11.598,11.598-11.598c6.411,0,11.598,5.174,11.598,11.598 - c0,6.411-5.174,11.597-11.598,11.597C17.701,30.197,12.515,25.023,12.515,18.6z"/> - <path fill="#FFFF87" d="M12.537,18.6c0-6.4,5.165-11.577,11.577-11.577c6.4,0,11.578,5.165,11.578,11.577 - c0,6.4-5.166,11.577-11.578,11.577C17.713,30.177,12.537,25.012,12.537,18.6z"/> - <path fill="#FFFF88" d="M12.558,18.6c0-6.389,5.156-11.556,11.556-11.556c6.39,0,11.556,5.155,11.556,11.556 - c0,6.388-5.156,11.554-11.556,11.554C17.725,30.154,12.558,25,12.558,18.6z"/> - <path fill="#FFFF89" d="M12.58,18.6c0-6.378,5.146-11.535,11.535-11.535c6.377,0,11.534,5.146,11.534,11.535 - c0,6.376-5.145,11.535-11.534,11.535C17.737,30.135,12.58,24.988,12.58,18.6z"/> - <path fill="#FFFF8A" d="M12.601,18.6c0-6.367,5.138-11.514,11.514-11.514c6.368,0,11.514,5.137,11.514,11.514 - c0,6.367-5.139,11.513-11.514,11.513C17.749,30.113,12.601,24.977,12.601,18.6z"/> - <path fill="#FFFF8B" d="M12.623,18.6c0-6.356,5.128-11.493,11.493-11.493c6.355,0,11.494,5.128,11.494,11.493 - c0,6.355-5.129,11.493-11.494,11.493C17.76,30.093,12.623,24.965,12.623,18.6z"/> - <path fill="#FFFF8C" d="M12.645,18.6c0-6.345,5.119-11.472,11.472-11.472c6.344,0,11.473,5.119,11.473,11.472 - c0,6.343-5.119,11.47-11.473,11.47C17.772,30.07,12.645,24.953,12.645,18.6z"/> - <path fill="#FFFF8D" d="M12.666,18.6c0-6.333,5.11-11.451,11.451-11.451c6.333,0,11.452,5.11,11.452,11.451 - c0,6.333-5.109,11.451-11.452,11.451C17.784,30.051,12.666,24.941,12.666,18.6z"/> - <path fill="#FFFF8E" d="M12.688,18.6c0-6.322,5.101-11.43,11.43-11.43c6.322,0,11.431,5.101,11.431,11.43 - c0,6.322-5.102,11.429-11.431,11.429C17.796,30.029,12.688,24.93,12.688,18.6z"/> - <path fill="#FFFF8F" d="M12.709,18.6c0-6.312,5.092-11.409,11.41-11.409c6.311,0,11.409,5.091,11.409,11.409 - c0,6.311-5.092,11.409-11.409,11.409C17.807,30.009,12.709,24.917,12.709,18.6z"/> - <path fill="#FFFF90" d="M12.731,18.6c0-6.3,5.083-11.388,11.389-11.388c6.3,0,11.388,5.082,11.388,11.388 - c0,6.298-5.082,11.388-11.388,11.388C17.819,29.988,12.731,24.904,12.731,18.6z"/> - <path fill="#FFFF91" d="M12.753,18.6c0-6.289,5.073-11.368,11.367-11.368c6.288,0,11.366,5.073,11.366,11.368 - c0,6.289-5.072,11.367-11.366,11.367C17.831,29.967,12.753,24.895,12.753,18.6z"/> - <path fill="#FFFF92" d="M12.774,18.6c0-6.278,5.064-11.347,11.347-11.347c6.277,0,11.346,5.064,11.346,11.347 - c0,6.278-5.062,11.345-11.346,11.345C17.842,29.945,12.774,24.882,12.774,18.6z"/> - <path fill="#FFFF93" d="M12.796,18.6c0-6.267,5.055-11.326,11.326-11.326c6.267,0,11.325,5.055,11.325,11.326 - c0,6.266-5.055,11.326-11.325,11.326C17.854,29.926,12.796,24.87,12.796,18.6z"/> - <path fill="#FFFF94" d="M12.817,18.6c0-6.256,5.046-11.305,11.305-11.305c6.257,0,11.306,5.046,11.306,11.305 - c0,6.255-5.047,11.304-11.306,11.304C17.866,29.904,12.817,24.857,12.817,18.6z"/> - <path fill="#FFFF95" d="M12.838,18.6c0-6.245,5.037-11.284,11.284-11.284c6.243,0,11.282,5.037,11.282,11.284 - c0,6.246-5.035,11.284-11.282,11.284C17.878,29.884,12.838,24.848,12.838,18.6z"/> - <path fill="#FFFF96" d="M12.86,18.6c0-6.233,5.028-11.263,11.263-11.263c6.232,0,11.262,5.028,11.262,11.263 - c0,6.233-5.027,11.261-11.262,11.261C17.89,29.861,12.86,24.835,12.86,18.6z"/> - <path fill="#FFFF97" d="M12.882,18.6c0-6.223,5.018-11.242,11.242-11.242c6.222,0,11.241,5.019,11.241,11.242 - c0,6.222-5.018,11.242-11.241,11.242C17.901,29.842,12.882,24.823,12.882,18.6z"/> - <path fill="#FFFF98" d="M12.903,18.6c0-6.211,5.009-11.221,11.221-11.221S35.346,12.388,35.346,18.6 - c0,6.21-5.01,11.22-11.222,11.22C17.913,29.82,12.903,24.812,12.903,18.6z"/> - <path fill="#FFFF99" d="M12.925,18.6c0-6.2,5-11.2,11.2-11.2c6.199,0,11.199,5,11.199,11.2c0,6.2-5,11.2-11.199,11.2 - C17.925,29.8,12.925,24.8,12.925,18.6z"/> - </g> - - <linearGradient id="XMLID_67_" gradientUnits="userSpaceOnUse" x1="396.2324" y1="753.8262" x2="396.2324" y2="763.584" gradientTransform="matrix(1 0 0 1 -372 -747)"> - <stop offset="0" style="stop-color:#FFFFFF"/> - <stop offset="1" style="stop-color:#FFFF99"/> - </linearGradient> - <path fill="url(#XMLID_67_)" d="M15.358,11.705c0-2.701,3.961-4.879,8.875-4.879c4.912,0,8.875,2.178,8.875,4.879 - s-3.963,4.879-8.875,4.879C19.32,16.583,15.358,14.405,15.358,11.705z"/> - <path fill="#666666" d="M23.125,41.3v0.9c0,0.899,0.7,1.6,1.6,1.6c0.9,0,1.6-0.7,1.6-1.6v-0.9h-3.299H23.125z"/> - - <linearGradient id="XMLID_68_" gradientUnits="userSpaceOnUse" x1="396.625" y1="784.8896" x2="396.625" y2="788.9111" gradientTransform="matrix(1 0 0 1 -372 -747)"> - <stop offset="0" style="stop-color:#FFFFFF"/> - <stop offset="1" style="stop-color:#000000"/> - </linearGradient> - <path fill="url(#XMLID_68_)" d="M28.225,37.9l-7.6,0.8c-0.9,0.1-1.5,0.899-1.4,1.8c0.1,0.9,0.9,1.5,1.8,1.4l7.6-0.801 - c0.9-0.102,1.5-0.899,1.4-1.802C29.926,38.4,29.125,37.8,28.225,37.9z"/> - - <linearGradient id="XMLID_69_" gradientUnits="userSpaceOnUse" x1="396.625" y1="781.6895" x2="396.625" y2="785.7109" gradientTransform="matrix(1 0 0 1 -372 -747)"> - <stop offset="0" style="stop-color:#FFFFFF"/> - <stop offset="1" style="stop-color:#000000"/> - </linearGradient> - <path fill="url(#XMLID_69_)" d="M28.225,34.7l-7.6,0.8c-0.9,0.1-1.5,0.9-1.4,1.8c0.1,0.9,0.9,1.5,1.8,1.4l7.6-0.8 - c0.9-0.101,1.5-0.9,1.4-1.801C29.926,35.2,29.125,34.6,28.225,34.7z"/> - - <linearGradient id="XMLID_70_" gradientUnits="userSpaceOnUse" x1="396.625" y1="778.5889" x2="396.625" y2="782.6104" gradientTransform="matrix(1 0 0 1 -372 -747)"> - <stop offset="0" style="stop-color:#FFFFFF"/> - <stop offset="1" style="stop-color:#000000"/> - </linearGradient> - <path fill="url(#XMLID_70_)" d="M28.225,31.6l-7.6,0.801c-0.9,0.1-1.5,0.897-1.4,1.8c0.1,0.899,0.9,1.5,1.8,1.399l7.6-0.802 - c0.9-0.1,1.5-0.897,1.4-1.8S29.125,31.5,28.225,31.6z"/> - <path fill="none" stroke="#000000" stroke-width="1.0944" d="M22.325,28.3l-3.5-10.7c0,0,6.601,3.9,10.5,0"/> -</g> -<g id="crop_x0020_marks"> - <path fill="none" d="M47.975,48h-48V0h48V48z"/> -</g> -</svg> diff --git a/docbook-xsl-1.75.2/images/colorsvg/up.svg b/docbook-xsl-1.75.2/images/colorsvg/up.svg deleted file mode 100644 index 8eca45f..0000000 --- a/docbook-xsl-1.75.2/images/colorsvg/up.svg +++ /dev/null @@ -1,338 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [ - <!ENTITY ns_svg "http://www.w3.org/2000/svg"> - <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> -]> -<svg version="1.1" id="Up" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="48" height="48" viewBox="0 0 48 48" - overflow="visible" enable-background="new 0 0 48 48" xml:space="preserve"> -<g> - <path fill="#FFFFFF" stroke="#FFFFFF" stroke-width="7.5901" stroke-linejoin="round" d="M41.104,25.661 - c0.301,0,0.301-0.3,0.198-0.5l-16.899-16.6c-0.5-0.5-0.7-0.4-1,0l-16.7,16.6c-0.1,0.103-0.1,0.399,0.1,0.399h10v13.601 - c0,0.301,0.2,0.5,0.4,0.5h13.299c0.398,0,0.5-0.199,0.5-0.601v-13.5L41.104,25.661z"/> - <g> - <path fill="#0033CC" d="M41.104,25.661c0.301,0,0.301-0.3,0.198-0.5l-16.899-16.6c-0.5-0.5-0.7-0.4-1,0l-16.7,16.6 - c-0.1,0.103-0.1,0.399,0.1,0.399h10v13.601c0,0.301,0.2,0.5,0.4,0.5h13.299c0.398,0,0.5-0.199,0.5-0.601v-13.5L41.104,25.661z"/> - <path fill="#0134CC" d="M41.075,25.65c0.3,0,0.3-0.299,0.198-0.498L24.402,8.577c-0.499-0.499-0.699-0.4-0.998,0L6.73,25.152 - c-0.1,0.101-0.1,0.397,0.099,0.397h9.984v13.581c0,0.303,0.2,0.499,0.4,0.499h13.279c0.398,0,0.499-0.196,0.499-0.601V25.55 - L41.075,25.65z"/> - <path fill="#0235CD" d="M41.049,25.643c0.301,0,0.301-0.3,0.199-0.498L24.401,8.591c-0.498-0.498-0.697-0.399-0.996,0 - L6.757,25.145c-0.1,0.101-0.1,0.397,0.099,0.397h9.969v13.562c0,0.301,0.199,0.5,0.399,0.5H30.48c0.397,0,0.498-0.199,0.498-0.601 - V25.542L41.049,25.643z"/> - <path fill="#0336CD" d="M41.021,25.632c0.299,0,0.299-0.299,0.199-0.498L24.4,8.604c-0.498-0.498-0.696-0.399-0.995,0 - L6.783,25.134c-0.099,0.101-0.099,0.398,0.099,0.398h9.953v13.543c0,0.299,0.199,0.495,0.398,0.495h13.24 - c0.396,0,0.495-0.196,0.495-0.596v-13.44L41.021,25.632z"/> - <path fill="#0437CE" d="M40.995,25.622c0.299,0,0.299-0.299,0.198-0.496L24.4,8.62c-0.497-0.497-0.696-0.398-0.994,0L6.811,25.126 - c-0.099,0.101-0.099,0.396,0.099,0.396h9.938v13.523c0,0.299,0.199,0.496,0.397,0.496h13.217c0.396,0,0.496-0.197,0.496-0.598 - v-13.42L40.995,25.622z"/> - <path fill="#0538CE" d="M40.969,25.614c0.299,0,0.299-0.3,0.198-0.498L24.399,8.634c-0.496-0.496-0.694-0.397-0.992,0 - L6.837,25.116c-0.099,0.102-0.099,0.397,0.099,0.397h9.922v13.504c0,0.299,0.199,0.496,0.398,0.496h13.195 - c0.396,0,0.494-0.197,0.494-0.597V25.514L40.969,25.614z"/> - <path fill="#0639CF" d="M40.941,25.604c0.297,0,0.297-0.297,0.197-0.496L24.399,8.649c-0.496-0.496-0.693-0.397-0.99,0 - L6.864,25.107c-0.099,0.101-0.099,0.396,0.099,0.396h9.906v13.483c0,0.3,0.199,0.496,0.397,0.496h13.173 - c0.396,0,0.496-0.196,0.496-0.596V25.505L40.941,25.604z"/> - <path fill="#073ACF" d="M40.915,25.594c0.298,0,0.298-0.298,0.196-0.494L24.398,8.664c-0.495-0.495-0.692-0.397-0.989,0 - L6.891,25.1c-0.099,0.101-0.099,0.396,0.098,0.396h9.892V38.96c0,0.298,0.198,0.494,0.396,0.494h13.155 - c0.396,0,0.494-0.196,0.494-0.593V25.495L40.915,25.594z"/> - <path fill="#083BD0" d="M40.891,25.585c0.297,0,0.297-0.297,0.196-0.496l-16.69-16.41c-0.494-0.494-0.691-0.396-0.987,0 - L6.918,25.089c-0.099,0.101-0.099,0.396,0.098,0.396h9.875V38.93c0,0.299,0.198,0.495,0.396,0.495h13.134 - c0.396,0,0.494-0.196,0.494-0.595V25.486L40.891,25.585z"/> - <path fill="#093CD0" d="M40.859,25.575c0.3,0,0.3-0.296,0.199-0.494L24.397,8.692c-0.493-0.494-0.69-0.396-0.985,0L6.945,25.081 - c-0.098,0.101-0.098,0.396,0.098,0.396h9.86v13.428c0,0.298,0.197,0.494,0.395,0.494h13.113c0.396,0,0.491-0.196,0.491-0.594 - V25.477L40.859,25.575z"/> - <path fill="#0A3DD1" d="M40.835,25.564c0.296,0,0.296-0.295,0.197-0.491L24.396,8.707c-0.492-0.493-0.689-0.395-0.984,0 - L6.972,25.073c-0.098,0.098-0.098,0.395,0.098,0.395h9.844v13.408c0,0.295,0.197,0.492,0.394,0.492h13.09 - c0.396,0,0.492-0.197,0.492-0.593V25.465L40.835,25.564z"/> - <path fill="#0B3ED1" d="M40.811,25.557c0.295,0,0.295-0.296,0.195-0.492L24.396,8.723c-0.492-0.493-0.688-0.394-0.983,0 - L6.999,25.062c-0.098,0.101-0.098,0.396,0.098,0.396h9.829v13.388c0,0.297,0.197,0.491,0.394,0.491h13.073 - c0.395,0,0.489-0.194,0.489-0.59V25.458L40.811,25.557z"/> - <path fill="#0C3FD2" d="M40.782,25.546c0.295,0,0.295-0.295,0.194-0.491L24.395,8.736c-0.491-0.492-0.687-0.394-0.981,0 - L7.026,25.055c-0.098,0.1-0.098,0.396,0.098,0.396h9.813v13.368c0,0.296,0.197,0.49,0.393,0.49h13.051 - c0.395,0,0.49-0.194,0.49-0.588V25.448L40.782,25.546z"/> - <path fill="#0D40D2" d="M40.755,25.536c0.295,0,0.295-0.293,0.196-0.49L24.394,8.75c-0.489-0.491-0.685-0.393-0.979,0 - L7.053,25.046c-0.098,0.099-0.098,0.394,0.098,0.394h9.797V38.79c0,0.297,0.196,0.492,0.392,0.492h13.03 - c0.394,0,0.489-0.195,0.489-0.591V25.438L40.755,25.536z"/> - <path fill="#0E41D3" d="M40.729,25.527c0.293,0,0.293-0.295,0.195-0.489L24.394,8.766c-0.489-0.489-0.685-0.392-0.978,0 - L7.08,25.038c-0.097,0.099-0.097,0.394,0.098,0.394h9.782V38.76c0,0.295,0.196,0.489,0.392,0.489h13.007 - c0.394,0,0.488-0.194,0.488-0.588V25.43L40.729,25.527z"/> - <path fill="#0F42D3" d="M40.702,25.518c0.294,0,0.294-0.293,0.194-0.488L24.393,8.781c-0.488-0.489-0.683-0.392-0.976,0 - L7.107,25.027c-0.097,0.101-0.097,0.394,0.098,0.394h9.766v13.312c0,0.295,0.195,0.49,0.391,0.49h12.99 - c0.393,0,0.487-0.195,0.487-0.588V25.419L40.702,25.518z"/> - <path fill="#1043D4" d="M40.676,25.508c0.293,0,0.293-0.294,0.195-0.488L24.392,8.794c-0.487-0.488-0.682-0.392-0.975,0 - L7.134,25.02c-0.097,0.101-0.097,0.394,0.097,0.394h9.75v13.293c0,0.293,0.196,0.485,0.391,0.485H30.34 - c0.393,0,0.487-0.192,0.487-0.586V25.411L40.676,25.508z"/> - <path fill="#1144D4" d="M40.646,25.497c0.293,0,0.293-0.293,0.194-0.487l-16.45-16.2c-0.487-0.488-0.681-0.391-0.973,0L7.16,25.01 - C7.063,25.107,7.063,25.4,7.257,25.4h9.735v13.271c0,0.294,0.195,0.487,0.39,0.487H30.33c0.389,0,0.484-0.193,0.484-0.586V25.4 - L40.646,25.497z"/> - <path fill="#1245D5" d="M40.622,25.489c0.293,0,0.293-0.294,0.194-0.488L24.391,8.824c-0.486-0.487-0.68-0.39-0.972,0 - L7.188,25.001c-0.097,0.099-0.097,0.392,0.096,0.392h9.72v13.254c0,0.293,0.195,0.486,0.389,0.486h12.925 - c0.391,0,0.486-0.193,0.486-0.585V25.393L40.622,25.489z"/> - <path fill="#1346D5" d="M40.598,25.479c0.291,0,0.291-0.291,0.192-0.484L24.391,8.838c-0.485-0.486-0.679-0.39-0.97,0 - L7.215,24.993c-0.097,0.099-0.097,0.39,0.096,0.39h9.704v13.235c0,0.291,0.195,0.485,0.389,0.485h12.907 - c0.391,0,0.484-0.194,0.484-0.584V25.382L40.598,25.479z"/> - <path fill="#1447D6" d="M40.568,25.471c0.291,0,0.291-0.293,0.193-0.486L24.39,8.853c-0.484-0.485-0.678-0.389-0.968,0 - L7.242,24.982c-0.097,0.1-0.097,0.391,0.096,0.391h9.688v13.215c0,0.293,0.194,0.486,0.388,0.486H30.3 - c0.39,0,0.484-0.193,0.484-0.582v-13.12L40.568,25.471z"/> - <path fill="#1548D6" d="M40.542,25.46c0.291,0,0.291-0.291,0.192-0.485L24.389,8.868c-0.483-0.485-0.677-0.388-0.966,0 - L7.269,24.975c-0.097,0.101-0.097,0.392,0.096,0.392h9.673v13.194c0,0.291,0.193,0.483,0.387,0.483h12.864 - c0.387,0,0.482-0.192,0.482-0.582V25.361L40.542,25.46z"/> - <path fill="#1649D7" d="M40.518,25.45c0.291,0,0.291-0.291,0.191-0.483L24.389,8.881c-0.483-0.484-0.676-0.388-0.966,0 - L7.295,24.966c-0.096,0.099-0.096,0.388,0.096,0.388h9.657v13.181c0,0.291,0.193,0.481,0.387,0.481h12.842 - c0.388,0,0.48-0.19,0.48-0.582v-13.08L40.518,25.45z"/> - <path fill="#174AD7" d="M40.488,25.441c0.289,0,0.289-0.291,0.193-0.483L24.388,8.896c-0.482-0.483-0.675-0.388-0.964,0 - L7.323,24.956c-0.096,0.099-0.096,0.39,0.096,0.39h9.642v13.155c0,0.291,0.193,0.483,0.386,0.483h12.825 - c0.386,0,0.479-0.192,0.479-0.58V25.346L40.488,25.441z"/> - <path fill="#184BD8" d="M40.463,25.432c0.289,0,0.289-0.289,0.191-0.481L24.387,8.912c-0.481-0.482-0.673-0.387-0.962,0 - L7.349,24.948c-0.096,0.098-0.096,0.387,0.096,0.387h9.626v13.14c0,0.291,0.193,0.483,0.386,0.483h12.802 - c0.388,0,0.479-0.192,0.479-0.58V25.335L40.463,25.432z"/> - <path fill="#194CD8" d="M40.438,25.421c0.289,0,0.289-0.289,0.19-0.481L24.386,8.926c-0.48-0.481-0.672-0.386-0.96,0L7.376,24.938 - c-0.096,0.1-0.096,0.389,0.096,0.389h9.61v13.117c0,0.291,0.192,0.482,0.385,0.482h12.782c0.385,0,0.479-0.191,0.479-0.578V25.325 - L40.438,25.421z"/> - <path fill="#1A4DD9" d="M40.409,25.413c0.289,0,0.289-0.289,0.19-0.481L24.386,8.939c-0.48-0.481-0.671-0.385-0.959,0 - L7.403,24.932c-0.096,0.096-0.096,0.385,0.096,0.385h9.595v13.103c0,0.289,0.192,0.479,0.384,0.479h12.76 - c0.385,0,0.479-0.19,0.479-0.578V25.316L40.409,25.413z"/> - <path fill="#1B4ED9" d="M40.383,25.402c0.288,0,0.288-0.288,0.191-0.479L24.386,8.956c-0.479-0.481-0.67-0.385-0.958,0 - L7.43,24.921c-0.095,0.099-0.095,0.386,0.096,0.386h9.579v13.082c0,0.288,0.192,0.479,0.384,0.479H30.23 - c0.383,0,0.479-0.191,0.479-0.576V25.307L40.383,25.402z"/> - <path fill="#1C4FDA" d="M40.355,25.395c0.287,0,0.287-0.289,0.188-0.479L24.385,8.97c-0.479-0.48-0.669-0.384-0.956,0 - L7.457,24.913c-0.096,0.097-0.096,0.385,0.095,0.385h9.563v13.062c0,0.289,0.192,0.479,0.383,0.479h12.72 - c0.384,0,0.479-0.19,0.479-0.575V25.296L40.355,25.395z"/> - <path fill="#1D50DA" d="M40.329,25.383c0.287,0,0.287-0.287,0.19-0.479L24.384,8.983c-0.478-0.479-0.668-0.384-0.955,0 - L7.484,24.902c-0.095,0.099-0.095,0.386,0.095,0.386h9.548v13.043c0,0.287,0.191,0.479,0.382,0.479h12.699 - c0.383,0,0.478-0.191,0.478-0.576V25.288L40.329,25.383z"/> - <path fill="#1E51DB" d="M40.303,25.374c0.286,0,0.286-0.287,0.19-0.479L24.384,8.999c-0.477-0.479-0.667-0.383-0.953,0 - L7.511,24.895c-0.095,0.099-0.095,0.385,0.094,0.385h9.533v13.022c0,0.287,0.191,0.479,0.382,0.479h12.678 - c0.382,0,0.477-0.189,0.477-0.574v-12.93L40.303,25.374z"/> - <path fill="#1F52DB" d="M40.275,25.364c0.285,0,0.285-0.287,0.188-0.479L24.383,9.014c-0.476-0.478-0.666-0.383-0.951,0 - L7.539,24.886c-0.095,0.097-0.095,0.384,0.094,0.384h9.517v13.004c0,0.287,0.191,0.479,0.381,0.479h12.658 - c0.381,0,0.476-0.19,0.476-0.573V25.27L40.275,25.364z"/> - <path fill="#2053DC" d="M40.25,25.354c0.285,0,0.285-0.285,0.188-0.479L24.382,9.027c-0.475-0.477-0.665-0.382-0.95,0 - L7.565,24.876c-0.095,0.097-0.095,0.383,0.094,0.383h9.501v12.984c0,0.286,0.19,0.479,0.381,0.479h12.637 - c0.381,0,0.477-0.189,0.477-0.572V25.259L40.25,25.354z"/> - <path fill="#2154DC" d="M40.225,25.346c0.283,0,0.283-0.287,0.188-0.478L24.381,9.042c-0.474-0.476-0.664-0.381-0.948,0 - L7.591,24.868c-0.094,0.096-0.094,0.383,0.095,0.383h9.486v12.965c0,0.287,0.19,0.478,0.38,0.478h12.616 - c0.38,0,0.475-0.188,0.475-0.569V25.249L40.225,25.346z"/> - <path fill="#2255DD" d="M40.195,25.335c0.285,0,0.285-0.285,0.188-0.478L24.38,9.057c-0.474-0.475-0.663-0.381-0.947,0 - L7.619,24.859c-0.094,0.097-0.094,0.382,0.094,0.382h9.471v12.946c0,0.285,0.189,0.476,0.379,0.476h12.596 - c0.378,0,0.473-0.188,0.473-0.57V25.241L40.195,25.335z"/> - <path fill="#2356DD" d="M40.17,25.327c0.284,0,0.284-0.285,0.188-0.478L24.381,9.072c-0.473-0.475-0.662-0.38-0.945,0 - l-15.79,15.78c-0.094,0.097-0.094,0.381,0.094,0.381h9.455V38.16c0,0.285,0.189,0.476,0.379,0.476h12.574 - c0.377,0,0.473-0.188,0.473-0.569V25.23L40.17,25.327z"/> - <path fill="#2457DE" d="M40.145,25.316c0.282,0,0.282-0.284,0.188-0.478L24.38,9.085c-0.472-0.474-0.661-0.38-0.944,0 - L7.673,24.841c-0.095,0.097-0.095,0.382,0.094,0.382h9.439V38.13c0,0.285,0.189,0.476,0.378,0.476h12.555 - c0.379,0,0.473-0.188,0.473-0.569V25.223L40.145,25.316z"/> - <path fill="#2558DE" d="M40.116,25.307c0.282,0,0.282-0.285,0.188-0.476L24.379,9.101c-0.472-0.474-0.66-0.379-0.942,0 - L7.699,24.831c-0.094,0.097-0.094,0.381,0.094,0.381h9.424v12.89c0,0.284,0.189,0.476,0.377,0.476h12.533 - c0.378,0,0.473-0.188,0.473-0.568V25.212L40.116,25.307z"/> - <path fill="#2659DF" d="M40.09,25.298c0.283,0,0.283-0.284,0.188-0.475L24.379,9.116c-0.471-0.473-0.659-0.379-0.94,0 - L7.727,24.823c-0.094,0.096-0.094,0.381,0.094,0.381h9.408v12.869c0,0.282,0.189,0.473,0.377,0.473h12.512 - c0.376,0,0.47-0.188,0.47-0.567V25.204L40.09,25.298z"/> - <path fill="#275ADF" d="M40.062,25.288c0.28,0,0.28-0.283,0.188-0.474L24.378,9.13c-0.47-0.472-0.657-0.378-0.938,0L7.754,24.814 - c-0.094,0.097-0.094,0.379,0.093,0.379h9.393v12.851c0,0.285,0.188,0.474,0.376,0.474h12.489c0.377,0,0.472-0.188,0.472-0.565 - V25.193L40.062,25.288z"/> - <path fill="#285BE0" d="M40.037,25.277c0.279,0,0.279-0.282,0.188-0.471L24.377,9.145c-0.469-0.471-0.656-0.378-0.937,0 - L7.781,24.807c-0.094,0.096-0.094,0.377,0.093,0.377h9.377v12.832c0,0.283,0.188,0.474,0.376,0.474H30.1 - c0.375,0,0.467-0.188,0.467-0.566V25.184L40.037,25.277z"/> - <path fill="#295CE0" d="M40.01,25.27c0.281,0,0.281-0.283,0.188-0.474L24.376,9.159c-0.468-0.47-0.655-0.377-0.936,0L7.807,24.796 - c-0.093,0.097-0.093,0.378,0.093,0.378h9.361v12.812c0,0.281,0.188,0.471,0.375,0.471h12.45c0.374,0,0.467-0.188,0.467-0.562 - V25.174L40.01,25.27z"/> - <path fill="#2A5DE1" d="M39.982,25.259c0.281,0,0.281-0.282,0.188-0.471L24.376,9.174c-0.467-0.469-0.654-0.376-0.934,0 - L7.834,24.788c-0.093,0.096-0.093,0.377,0.093,0.377h9.346v12.793c0,0.283,0.188,0.472,0.375,0.472h12.43 - c0.373,0,0.467-0.188,0.467-0.563v-12.7L39.982,25.259z"/> - <path fill="#2B5EE1" d="M39.957,25.249c0.279,0,0.279-0.281,0.188-0.472L24.376,9.188c-0.466-0.469-0.652-0.376-0.933,0 - L7.861,24.779c-0.093,0.095-0.093,0.375,0.093,0.375h9.33V37.93c0,0.282,0.188,0.471,0.374,0.471h12.408 - c0.373,0,0.467-0.188,0.467-0.563v-12.68L39.957,25.249z"/> - <path fill="#2C5FE2" d="M39.932,25.239c0.278,0,0.278-0.281,0.188-0.47L24.375,9.203c-0.465-0.468-0.652-0.375-0.931,0 - L7.888,24.771c-0.093,0.096-0.093,0.375,0.092,0.375h9.314V37.9c0,0.281,0.187,0.47,0.374,0.47h12.389 - c0.373,0,0.465-0.188,0.465-0.562V25.146L39.932,25.239z"/> - <path fill="#2D60E2" d="M39.902,25.229c0.279,0,0.279-0.277,0.187-0.468L24.374,9.217c-0.465-0.467-0.651-0.375-0.929,0 - L7.915,24.762c-0.093,0.094-0.093,0.374,0.092,0.374h9.299V37.87c0,0.28,0.187,0.469,0.373,0.469h12.368 - c0.371,0,0.465-0.188,0.465-0.562V25.136L39.902,25.229z"/> - <path fill="#2E61E3" d="M39.877,25.221c0.277,0,0.277-0.279,0.188-0.468L24.374,9.231c-0.464-0.466-0.649-0.374-0.928,0 - L7.942,24.753c-0.092,0.095-0.092,0.373,0.092,0.373h9.284v12.717c0,0.281,0.186,0.47,0.372,0.47h12.347 - c0.372,0,0.464-0.188,0.464-0.562V25.126L39.877,25.221z"/> - <path fill="#2F62E3" d="M39.852,25.212c0.277,0,0.277-0.28,0.188-0.469L24.373,9.248c-0.463-0.466-0.648-0.374-0.926,0 - L7.969,24.745c-0.092,0.094-0.092,0.373,0.092,0.373h9.268v12.696c0,0.278,0.186,0.468,0.371,0.468h12.325 - c0.371,0,0.463-0.188,0.463-0.562V25.118L39.852,25.212z"/> - <path fill="#3063E4" d="M39.823,25.202c0.276,0,0.276-0.279,0.186-0.468L24.372,9.262c-0.462-0.465-0.647-0.373-0.925,0 - L7.996,24.734c-0.092,0.095-0.092,0.373,0.092,0.373h9.252v12.679c0,0.278,0.186,0.467,0.371,0.467h12.307 - c0.369,0,0.461-0.188,0.461-0.562V25.107L39.823,25.202z"/> - <path fill="#3164E4" d="M39.797,25.191c0.277,0,0.277-0.278,0.186-0.467L24.373,9.274c-0.462-0.465-0.646-0.373-0.923,0 - L8.023,24.727C7.931,24.82,7.931,25.1,8.115,25.1h9.236v12.657c0,0.279,0.186,0.466,0.371,0.466h12.284 - c0.369,0,0.461-0.187,0.461-0.56V25.1L39.797,25.191z"/> - <path fill="#3265E5" d="M39.771,25.184c0.275,0,0.275-0.279,0.186-0.467L24.371,9.29c-0.461-0.464-0.645-0.372-0.922,0 - L8.05,24.717c-0.092,0.094-0.092,0.372,0.091,0.372h9.221v12.64c0,0.279,0.185,0.465,0.37,0.465h12.264 - c0.367,0,0.46-0.186,0.46-0.558V25.089L39.771,25.184z"/> - <path fill="#3366E5" d="M39.744,25.173c0.275,0,0.275-0.278,0.186-0.465L24.371,9.306c-0.46-0.463-0.644-0.372-0.92,0 - L8.077,24.708c-0.092,0.094-0.092,0.371,0.091,0.371h9.206V37.7c0,0.276,0.185,0.463,0.369,0.463h12.241 - c0.369,0,0.461-0.187,0.461-0.558V25.081L39.744,25.173z"/> - <path fill="#3366E6" d="M39.717,25.163c0.276,0,0.276-0.277,0.186-0.463L24.37,9.319c-0.459-0.462-0.643-0.371-0.918,0L8.104,24.7 - c-0.092,0.094-0.092,0.37,0.091,0.37h9.189v12.601c0,0.279,0.185,0.465,0.369,0.465h12.224c0.366,0,0.459-0.186,0.459-0.557V25.07 - L39.717,25.163z"/> - <path fill="#3467E6" d="M39.689,25.152c0.273,0,0.273-0.276,0.185-0.463L24.369,9.333c-0.458-0.462-0.642-0.371-0.917,0 - L8.131,24.689c-0.092,0.095-0.092,0.371,0.091,0.371h9.174v12.582c0,0.274,0.184,0.463,0.368,0.463h12.202 - c0.366,0,0.458-0.188,0.458-0.558V25.061L39.689,25.152z"/> - <path fill="#3568E7" d="M39.664,25.145c0.273,0,0.273-0.276,0.186-0.463L24.369,9.349c-0.458-0.461-0.641-0.37-0.916,0 - L8.158,24.682c-0.091,0.094-0.091,0.37,0.091,0.37h9.159v12.562c0,0.276,0.184,0.461,0.367,0.461h12.181 - c0.367,0,0.458-0.185,0.458-0.556V25.05L39.664,25.145z"/> - <path fill="#3669E7" d="M39.639,25.135c0.273,0,0.273-0.277,0.185-0.462L24.368,9.364c-0.458-0.46-0.64-0.37-0.914,0l-15.27,15.31 - c-0.091,0.094-0.091,0.368,0.091,0.368h9.144v12.543c0,0.276,0.183,0.463,0.366,0.463h12.158c0.365,0,0.457-0.187,0.457-0.555 - V25.042L39.639,25.135z"/> - <path fill="#376AE8" d="M39.609,25.124c0.272,0,0.272-0.274,0.184-0.461L24.367,9.377c-0.457-0.459-0.639-0.369-0.912,0 - L8.211,24.663c-0.091,0.094-0.091,0.369,0.091,0.369h9.127v12.522c0,0.274,0.184,0.461,0.366,0.461h12.141 - c0.363,0,0.455-0.187,0.455-0.554v-12.43L39.609,25.124z"/> - <path fill="#386BE8" d="M39.584,25.116c0.271,0,0.271-0.277,0.184-0.462L24.368,9.393c-0.456-0.459-0.638-0.368-0.911,0 - L8.239,24.654c-0.091,0.093-0.091,0.369,0.09,0.369h9.112v12.504c0,0.274,0.183,0.462,0.365,0.462h12.12 - c0.363,0,0.454-0.188,0.454-0.554V25.023L39.584,25.116z"/> - <path fill="#396CE9" d="M39.559,25.105c0.272,0,0.272-0.274,0.183-0.459L24.366,9.407c-0.455-0.458-0.636-0.367-0.909,0 - L8.266,24.646c-0.091,0.093-0.091,0.367,0.09,0.367h9.096v12.483c0,0.272,0.183,0.459,0.365,0.459h12.098 - c0.362,0,0.454-0.187,0.454-0.552V25.014L39.559,25.105z"/> - <path fill="#3A6DE9" d="M39.529,25.096c0.271,0,0.271-0.275,0.184-0.457L24.365,9.421c-0.454-0.458-0.635-0.367-0.907,0 - L8.293,24.639c-0.091,0.092-0.091,0.364,0.09,0.364h9.081v12.468c0,0.274,0.182,0.459,0.364,0.459h12.076 - c0.363,0,0.453-0.185,0.453-0.552V25.003L39.529,25.096z"/> - <path fill="#3B6EEA" d="M39.504,25.087c0.271,0,0.271-0.274,0.184-0.459L24.365,9.436c-0.454-0.457-0.634-0.366-0.906,0 - L8.319,24.628c-0.09,0.093-0.09,0.367,0.09,0.367h9.065v12.446c0,0.272,0.182,0.457,0.363,0.457h12.06 - c0.359,0,0.451-0.185,0.451-0.549V24.995L39.504,25.087z"/> - <path fill="#3C6FEA" d="M39.479,25.077c0.271,0,0.271-0.272,0.183-0.457L24.364,9.451c-0.453-0.456-0.633-0.366-0.905,0 - L8.346,24.62c-0.09,0.092-0.09,0.364,0.09,0.364h9.05v12.429c0,0.274,0.182,0.457,0.363,0.457h12.036 - c0.361,0,0.451-0.183,0.451-0.55V24.984L39.479,25.077z"/> - <path fill="#3D70EB" d="M39.451,25.066c0.271,0,0.271-0.272,0.181-0.457L24.363,9.464c-0.452-0.455-0.632-0.365-0.903,0 - L8.374,24.609c-0.09,0.093-0.09,0.367,0.089,0.367h9.034v12.406c0,0.271,0.181,0.456,0.362,0.456h12.016 - c0.359,0,0.45-0.185,0.45-0.549V24.977L39.451,25.066z"/> - <path fill="#3E71EB" d="M39.424,25.059c0.271,0,0.271-0.272,0.182-0.457L24.363,9.479c-0.451-0.455-0.631-0.365-0.901,0 - L8.4,24.602c-0.09,0.092-0.09,0.365,0.09,0.365h9.019v12.389c0,0.272,0.181,0.457,0.362,0.457h11.992 - c0.361,0,0.451-0.185,0.451-0.547V24.967L39.424,25.059z"/> - <path fill="#3F72EC" d="M39.396,25.048c0.271,0,0.271-0.272,0.182-0.455L24.362,9.495c-0.45-0.454-0.63-0.364-0.9,0L8.427,24.593 - c-0.09,0.093-0.09,0.363,0.089,0.363h9.003v12.371c0,0.272,0.181,0.455,0.361,0.455h11.976c0.357,0,0.447-0.183,0.447-0.548 - V24.956L39.396,25.048z"/> - <path fill="#4073EC" d="M39.371,25.038c0.271,0,0.271-0.272,0.18-0.455L24.362,9.509c-0.45-0.453-0.629-0.363-0.898,0 - L8.454,24.583c-0.09,0.093-0.09,0.362,0.089,0.362h8.987v12.354c0,0.271,0.181,0.454,0.36,0.454h11.954 - c0.358,0,0.448-0.183,0.448-0.545v-12.26L39.371,25.038z"/> - <path fill="#4174ED" d="M39.346,25.029c0.271,0,0.271-0.271,0.18-0.454L24.361,9.523c-0.449-0.453-0.627-0.363-0.897,0 - L8.481,24.575c-0.089,0.092-0.089,0.362,0.089,0.362h8.972V37.27c0,0.272,0.18,0.455,0.359,0.455h11.933 - c0.357,0,0.445-0.183,0.445-0.545V24.938L39.346,25.029z"/> - <path fill="#4275ED" d="M39.316,25.02c0.271,0,0.271-0.271,0.181-0.453L24.36,9.539c-0.448-0.452-0.626-0.362-0.895,0 - L8.508,24.566c-0.09,0.091-0.09,0.36,0.088,0.36h8.957V37.24c0,0.271,0.18,0.451,0.359,0.451h11.912 - c0.355,0,0.445-0.183,0.445-0.543V24.93L39.316,25.02z"/> - <path fill="#4376EE" d="M39.291,25.01c0.27,0,0.27-0.271,0.18-0.453L24.36,9.553c-0.447-0.451-0.625-0.361-0.894,0L8.535,24.559 - c-0.089,0.09-0.089,0.362,0.089,0.362h8.941v12.293c0,0.271,0.179,0.451,0.358,0.451h11.892c0.356,0,0.445-0.181,0.445-0.543 - V24.919L39.291,25.01z"/> - <path fill="#4477EE" d="M39.266,24.999c0.27,0,0.27-0.271,0.18-0.451L24.359,9.566c-0.446-0.45-0.625-0.361-0.893,0L8.562,24.549 - c-0.089,0.09-0.089,0.362,0.088,0.362h8.925v12.272c0,0.271,0.179,0.45,0.358,0.45h11.87c0.356,0,0.445-0.182,0.445-0.542V24.911 - L39.266,24.999z"/> - <path fill="#4578EF" d="M39.236,24.991c0.27,0,0.27-0.271,0.18-0.451L24.359,9.582c-0.446-0.45-0.624-0.36-0.891,0L8.589,24.54 - C8.5,24.63,8.5,24.9,8.677,24.9h8.91v12.254c0,0.271,0.179,0.451,0.357,0.451h11.85c0.354,0,0.442-0.182,0.442-0.541V24.9 - L39.236,24.991z"/> - <path fill="#4679EF" d="M39.211,24.98c0.27,0,0.27-0.271,0.18-0.449L24.358,9.597c-0.445-0.449-0.622-0.36-0.889,0L8.616,24.531 - c-0.089,0.089-0.089,0.359,0.088,0.359h8.894v12.233c0,0.271,0.179,0.451,0.356,0.451h11.83c0.354,0,0.442-0.183,0.442-0.541 - V24.891L39.211,24.98z"/> - <path fill="#477AF0" d="M39.186,24.973c0.269,0,0.269-0.271,0.178-0.451L24.357,9.61c-0.444-0.448-0.621-0.359-0.888,0 - L8.643,24.521c-0.088,0.09-0.088,0.358,0.088,0.358h8.878v12.218c0,0.271,0.179,0.448,0.356,0.448h11.809 - c0.354,0,0.441-0.182,0.441-0.54V24.882L39.186,24.973z"/> - <path fill="#487BF0" d="M39.158,24.962c0.267,0,0.267-0.271,0.178-0.448L24.356,9.625c-0.443-0.447-0.62-0.359-0.886,0 - L8.669,24.514c-0.088,0.09-0.088,0.358,0.088,0.358h8.863v12.196c0,0.271,0.178,0.449,0.355,0.449h11.789 - c0.354,0,0.44-0.181,0.44-0.539V24.872L39.158,24.962z"/> - <path fill="#497CF1" d="M39.132,24.952c0.267,0,0.267-0.269,0.179-0.447L24.356,9.64c-0.442-0.446-0.619-0.358-0.884,0 - L8.697,24.504c-0.088,0.09-0.088,0.357,0.087,0.357h8.847V37.04c0,0.271,0.178,0.449,0.355,0.449h11.768 - c0.354,0,0.439-0.181,0.439-0.539V24.861L39.132,24.952z"/> - <path fill="#4A7DF1" d="M39.104,24.943c0.269,0,0.269-0.271,0.18-0.448L24.355,9.655c-0.442-0.446-0.618-0.358-0.883,0 - L8.724,24.496c-0.088,0.089-0.088,0.357,0.087,0.357h8.832v12.16c0,0.268,0.177,0.445,0.354,0.445h11.747 - c0.354,0,0.439-0.182,0.439-0.537V24.854L39.104,24.943z"/> - <path fill="#4B7EF2" d="M39.078,24.934c0.265,0,0.265-0.269,0.177-0.447L24.355,9.67c-0.441-0.445-0.617-0.357-0.881,0 - L8.751,24.486c-0.088,0.091-0.088,0.357,0.087,0.357h8.816v12.14c0,0.27,0.177,0.447,0.354,0.447h11.727 - c0.354,0,0.438-0.18,0.438-0.535V24.844L39.078,24.934z"/> - <path fill="#4C7FF2" d="M39.052,24.924c0.265,0,0.265-0.27,0.177-0.446L24.354,9.684c-0.44-0.444-0.616-0.356-0.879,0 - L8.777,24.478c-0.088,0.09-0.088,0.355,0.087,0.355h8.8v12.121c0,0.269,0.177,0.444,0.353,0.444h11.706 - c0.354,0,0.438-0.178,0.438-0.534V24.833L39.052,24.924z"/> - <path fill="#4D80F3" d="M39.023,24.913c0.266,0,0.266-0.269,0.178-0.444L24.354,9.699c-0.439-0.444-0.615-0.356-0.878,0 - L8.804,24.469c-0.087,0.09-0.087,0.356,0.087,0.356h8.785v12.101c0,0.268,0.177,0.444,0.353,0.444h11.684 - c0.352,0,0.438-0.179,0.438-0.533V24.825L39.023,24.913z"/> - <path fill="#4E81F3" d="M38.998,24.904c0.266,0,0.266-0.269,0.176-0.445L24.353,9.712c-0.439-0.443-0.614-0.355-0.877,0 - L8.832,24.459c-0.088,0.089-0.088,0.355,0.086,0.355h8.77v12.082c0,0.269,0.176,0.443,0.352,0.443h11.664 - c0.351,0,0.438-0.179,0.438-0.531V24.814L38.998,24.904z"/> - <path fill="#4F82F4" d="M38.973,24.896c0.264,0,0.264-0.27,0.176-0.445L24.353,9.728c-0.438-0.442-0.613-0.355-0.875,0 - L8.858,24.451c-0.087,0.089-0.087,0.355,0.087,0.355h8.754V36.87c0,0.266,0.176,0.442,0.351,0.442h11.644 - c0.352,0,0.438-0.18,0.438-0.533V24.807L38.973,24.896z"/> - <path fill="#5083F4" d="M38.943,24.886c0.264,0,0.264-0.268,0.177-0.444l-14.769-14.7c-0.437-0.441-0.611-0.354-0.874,0 - l-14.593,14.7c-0.087,0.09-0.087,0.354,0.086,0.354h8.738v12.043c0,0.267,0.176,0.443,0.351,0.443h11.623 - c0.351,0,0.438-0.179,0.438-0.531V24.796L38.943,24.886z"/> - <path fill="#5184F5" d="M38.919,24.876c0.263,0,0.263-0.267,0.174-0.443L24.351,9.756c-0.437-0.441-0.61-0.354-0.872,0 - L8.912,24.434c-0.087,0.089-0.087,0.354,0.086,0.354h8.723v12.022c0,0.267,0.175,0.44,0.35,0.44h11.602 - c0.349,0,0.437-0.178,0.437-0.528V24.788L38.919,24.876z"/> - <path fill="#5285F5" d="M38.893,24.866c0.262,0,0.262-0.267,0.176-0.441L24.351,9.771c-0.436-0.44-0.609-0.353-0.871,0 - L8.939,24.425c-0.087,0.089-0.087,0.353,0.086,0.353h8.707v12.009c0,0.265,0.175,0.438,0.349,0.438h11.581 - c0.348,0,0.436-0.177,0.436-0.529V24.777L38.893,24.866z"/> - <path fill="#5386F6" d="M38.863,24.855c0.263,0,0.263-0.266,0.176-0.44L24.35,9.786c-0.435-0.439-0.608-0.353-0.869,0 - L8.966,24.415C8.88,24.504,8.88,24.77,9.052,24.77h8.691v11.983c0,0.267,0.175,0.44,0.349,0.44h11.561 - c0.349,0,0.435-0.176,0.435-0.528V24.77L38.863,24.855z"/> - <path fill="#5487F6" d="M38.839,24.848c0.261,0,0.261-0.267,0.175-0.439L24.349,9.801c-0.434-0.439-0.607-0.352-0.867,0 - L8.993,24.407c-0.087,0.089-0.087,0.353,0.086,0.353h8.676v11.967c0,0.267,0.174,0.44,0.348,0.44h11.54 - c0.349,0,0.435-0.178,0.435-0.528v-11.88L38.839,24.848z"/> - <path fill="#5588F7" d="M38.812,24.837c0.262,0,0.262-0.264,0.174-0.439L24.349,9.814c-0.433-0.438-0.606-0.352-0.866,0 - L9.02,24.397c-0.086,0.088-0.086,0.352,0.086,0.352h8.66v11.949c0,0.262,0.174,0.438,0.347,0.438h11.519 - c0.347,0,0.433-0.177,0.433-0.528V24.749L38.812,24.837z"/> - <path fill="#5689F7" d="M38.785,24.829c0.26,0,0.26-0.265,0.173-0.439L24.348,9.83c-0.432-0.438-0.604-0.351-0.864,0L9.047,24.389 - c-0.086,0.088-0.086,0.353,0.085,0.353h8.645V36.67c0,0.264,0.174,0.438,0.347,0.438h11.498c0.345,0,0.431-0.176,0.431-0.524 - v-11.84L38.785,24.829z"/> - <path fill="#578AF8" d="M38.759,24.818c0.261,0,0.261-0.264,0.175-0.438L24.347,9.844c-0.432-0.437-0.604-0.35-0.863,0 - L9.074,24.379c-0.086,0.088-0.086,0.352,0.085,0.352h8.629v11.91c0,0.262,0.173,0.438,0.346,0.438h11.476 - c0.348,0,0.434-0.177,0.434-0.524V24.73L38.759,24.818z"/> - <path fill="#588BF8" d="M38.73,24.809c0.258,0,0.258-0.263,0.172-0.438L24.347,9.858c-0.431-0.436-0.603-0.35-0.861,0 - L9.101,24.372c-0.086,0.088-0.086,0.351,0.085,0.351H17.8v11.892c0,0.262,0.173,0.438,0.345,0.438h11.458 - c0.344,0,0.428-0.177,0.428-0.524V24.721L38.73,24.809z"/> - <path fill="#598CF9" d="M38.705,24.799c0.259,0,0.259-0.262,0.173-0.438L24.346,9.873c-0.43-0.435-0.602-0.349-0.86,0 - L9.128,24.361c-0.086,0.088-0.086,0.351,0.085,0.351h8.598v11.869c0,0.263,0.173,0.438,0.345,0.438h11.436 - c0.344,0,0.43-0.178,0.43-0.524V24.712L38.705,24.799z"/> - <path fill="#5A8DF9" d="M38.68,24.79c0.258,0,0.258-0.265,0.172-0.438L24.345,9.888c-0.429-0.435-0.6-0.349-0.858,0L9.155,24.353 - c-0.086,0.088-0.086,0.35,0.085,0.35h8.583v11.852c0,0.262,0.172,0.438,0.344,0.438h11.414c0.343,0,0.428-0.177,0.428-0.524 - V24.702L38.68,24.79z"/> - <path fill="#5B8EFA" d="M38.65,24.779c0.259,0,0.259-0.262,0.173-0.437L24.345,9.902c-0.428-0.434-0.599-0.348-0.856,0 - L9.182,24.345c-0.085,0.087-0.085,0.348,0.085,0.348h8.567v11.832c0,0.262,0.172,0.438,0.343,0.438h11.396 - c0.342,0,0.427-0.176,0.427-0.523V24.691L38.65,24.779z"/> - <path fill="#5C8FFA" d="M38.626,24.771c0.256,0,0.256-0.263,0.171-0.437L24.344,9.917c-0.428-0.433-0.599-0.348-0.855,0 - L9.209,24.335c-0.085,0.087-0.085,0.349,0.084,0.349h8.552v11.812c0,0.262,0.172,0.438,0.343,0.438h11.375 - c0.342,0,0.426-0.176,0.426-0.521V24.684L38.626,24.771z"/> - <path fill="#5D90FB" d="M38.6,24.761c0.258,0,0.258-0.261,0.172-0.434L24.344,9.932c-0.427-0.432-0.598-0.347-0.854,0 - L9.235,24.327c-0.085,0.087-0.085,0.347,0.084,0.347h8.536v11.794c0,0.261,0.172,0.435,0.343,0.435h11.353 - c0.342,0,0.428-0.174,0.428-0.521V24.674L38.6,24.761z"/> - <path fill="#5E91FB" d="M38.57,24.751c0.258,0,0.258-0.26,0.173-0.434l-14.4-14.372c-0.426-0.432-0.596-0.346-0.852,0 - L9.263,24.317c-0.085,0.087-0.085,0.346,0.084,0.346h8.52v11.776c0,0.259,0.171,0.433,0.342,0.433h11.332 - c0.34,0,0.424-0.174,0.424-0.521V24.663L38.57,24.751z"/> - <path fill="#5F92FC" d="M38.546,24.743c0.255,0,0.255-0.262,0.17-0.435L24.342,9.96c-0.425-0.431-0.595-0.346-0.85,0L9.29,24.309 - c-0.085,0.087-0.085,0.347,0.084,0.347h8.504v11.756c0,0.258,0.171,0.434,0.341,0.434h11.311c0.342,0,0.426-0.176,0.426-0.521 - V24.654L38.546,24.743z"/> - <path fill="#6093FC" d="M38.521,24.732c0.254,0,0.254-0.26,0.17-0.435L24.342,9.976c-0.425-0.43-0.594-0.345-0.849,0L9.316,24.3 - c-0.085,0.087-0.085,0.347,0.084,0.347h8.489v11.735c0,0.259,0.171,0.433,0.341,0.433h11.292c0.34,0,0.424-0.174,0.424-0.521 - V24.646L38.521,24.732z"/> - <path fill="#6194FD" d="M38.492,24.723c0.255,0,0.255-0.259,0.17-0.432L24.341,9.99c-0.424-0.43-0.593-0.345-0.847,0L9.343,24.291 - c-0.084,0.086-0.084,0.345,0.084,0.345H17.9v11.718c0,0.258,0.17,0.433,0.34,0.433h11.27c0.34,0,0.424-0.175,0.424-0.519V24.636 - L38.492,24.723z"/> - <path fill="#6295FD" d="M38.466,24.712c0.255,0,0.255-0.258,0.169-0.43L24.34,10.004c-0.423-0.429-0.592-0.344-0.846,0 - L9.37,24.283c-0.084,0.086-0.084,0.345,0.084,0.345h8.458v11.697c0,0.258,0.17,0.43,0.339,0.43H29.5 - c0.338,0,0.422-0.172,0.422-0.516V24.626L38.466,24.712z"/> - <path fill="#6396FE" d="M38.438,24.704c0.254,0,0.254-0.259,0.17-0.431L24.34,10.019c-0.422-0.428-0.591-0.343-0.844,0 - L9.397,24.273c-0.084,0.086-0.084,0.345,0.083,0.345h8.442v11.678c0,0.259,0.17,0.431,0.339,0.431H29.49 - c0.338,0,0.422-0.172,0.422-0.517V24.618L38.438,24.704z"/> - <path fill="#6497FE" d="M38.413,24.693c0.252,0,0.252-0.257,0.168-0.429l-14.242-14.23c-0.422-0.427-0.59-0.343-0.843,0 - L9.424,24.265c-0.084,0.086-0.084,0.342,0.083,0.342h8.427v11.66c0,0.258,0.169,0.43,0.338,0.43H29.48 - c0.336,0,0.42-0.172,0.42-0.516V24.607L38.413,24.693z"/> - <path fill="#6598FF" d="M38.387,24.686c0.254,0,0.254-0.259,0.17-0.43L24.338,10.047c-0.42-0.426-0.588-0.342-0.841,0 - L9.451,24.255c-0.084,0.086-0.084,0.343,0.083,0.343h8.411V36.24c0,0.256,0.169,0.428,0.337,0.428h11.187 - c0.338,0,0.42-0.172,0.42-0.516V24.6L38.387,24.686z"/> - <path fill="#6699FF" d="M38.357,24.675c0.252,0,0.252-0.257,0.168-0.428L24.338,10.062c-0.42-0.426-0.587-0.342-0.839,0 - L9.478,24.247c-0.084,0.086-0.084,0.342,0.083,0.342h8.396V36.21c0,0.256,0.169,0.429,0.337,0.429h11.167 - c0.335,0,0.418-0.173,0.418-0.515V24.589L38.357,24.675z"/> - </g> - - <linearGradient id="XMLID_20_" gradientUnits="userSpaceOnUse" x1="-1371.771" y1="-727.9985" x2="-1398.6362" y2="-727.9985" gradientTransform="matrix(4.371139e-08 -1 -1 -4.371139e-08 -703.999 -1361.9985)"> - <stop offset="0" style="stop-color:#FFFFFF"/> - <stop offset="1" style="stop-color:#6699FF"/> - </linearGradient> - <path fill="url(#XMLID_20_)" d="M38.357,24.675c0.252,0,0.252-0.257,0.168-0.428L24.338,10.062c-0.42-0.426-0.587-0.342-0.839,0 - L9.478,24.247c-0.084,0.086-0.084,0.342,0.083,0.342h8.396V36.21c0,0.256,0.169,0.429,0.337,0.429h11.167 - c0.335,0,0.418-0.173,0.418-0.515V24.589L38.357,24.675z"/> -</g> -<g id="crop_x0020_marks"> - <path fill="none" d="M48-0.058v48H0v-48H48z"/> -</g> -</svg> diff --git a/docbook-xsl-1.75.2/images/colorsvg/warning.svg b/docbook-xsl-1.75.2/images/colorsvg/warning.svg deleted file mode 100644 index ae0081d..0000000 --- a/docbook-xsl-1.75.2/images/colorsvg/warning.svg +++ /dev/null @@ -1,232 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [ - <!ENTITY ns_svg "http://www.w3.org/2000/svg"> - <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> -]> -<svg version="1.1" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="48" height="48" viewBox="0 0 48 48" - overflow="visible" enable-background="new 0 0 48 48" xml:space="preserve"> -<g> - <path stroke="#FFFFFF" stroke-width="7.9139" stroke-linejoin="round" d="M16.4,42.3L5.7,31.6V16.4L16.4,5.7h15.2l10.7,10.7v15.2 - L31.6,42.3H16.4z"/> - <g> - <path fill="#990000" d="M16.4,42.3L5.7,31.6V16.4L16.4,5.7h15.2l10.7,10.7v15.2L31.6,42.3H16.4z"/> - <polygon fill="#9A0000" points="16.415,42.266 5.736,31.586 5.736,16.416 16.415,5.737 31.585,5.737 42.266,16.416 42.266,31.586 - 31.585,42.266 "/> - <polygon fill="#9B0000" points="16.429,42.23 5.771,31.572 5.771,16.432 16.429,5.774 31.57,5.774 42.229,16.432 42.229,31.572 - 31.57,42.23 "/> - <polygon fill="#9C0000" points="16.444,42.195 5.806,31.559 5.806,16.447 16.444,5.81 31.557,5.81 42.191,16.447 42.191,31.559 - 31.557,42.195 "/> - <polygon fill="#9D0000" points="16.459,42.162 5.842,31.545 5.842,16.464 16.459,5.847 31.54,5.847 42.157,16.464 42.157,31.545 - 31.54,42.162 "/> - <polygon fill="#9E0000" points="16.473,42.128 5.877,31.531 5.877,16.479 16.473,5.884 31.525,5.884 42.122,16.479 42.122,31.531 - 31.525,42.128 "/> - <polygon fill="#9F0000" points="16.488,42.094 5.914,31.52 5.914,16.496 16.488,5.921 31.512,5.921 42.087,16.496 42.087,31.52 - 31.512,42.094 "/> - <polygon fill="#A00000" points="16.503,42.061 5.949,31.505 5.949,16.511 16.503,5.958 31.496,5.958 42.051,16.511 42.051,31.505 - 31.496,42.061 "/> - <polygon fill="#A10000" points="16.518,42.025 5.984,31.491 5.984,16.528 16.518,5.994 31.48,5.994 42.016,16.528 42.016,31.491 - 31.48,42.025 "/> - <polygon fill="#A20000" points="16.533,41.991 6.02,31.479 6.02,16.544 16.533,6.031 31.467,6.031 41.98,16.544 41.98,31.479 - 31.467,41.991 "/> - <polygon fill="#A30000" points="16.547,41.956 6.055,31.464 6.055,16.56 16.547,6.067 31.452,6.067 41.943,16.56 41.943,31.464 - 31.452,41.956 "/> - <polygon fill="#A40000" points="16.562,41.923 6.091,31.451 6.091,16.576 16.562,6.104 31.438,6.104 41.909,16.576 41.909,31.451 - 31.438,41.923 "/> - <polygon fill="#A50000" points="16.577,41.889 6.126,31.438 6.126,16.592 16.577,6.141 31.423,6.141 41.873,16.592 41.873,31.438 - 31.423,41.889 "/> - <polygon fill="#A60000" points="16.592,41.854 6.162,31.424 6.162,16.607 16.592,6.177 31.407,6.177 41.838,16.607 41.838,31.424 - 31.407,41.854 "/> - <polygon fill="#A70000" points="16.606,41.818 6.197,31.41 6.197,16.624 16.606,6.214 31.395,6.214 41.803,16.624 41.803,31.41 - 31.395,41.818 "/> - <polygon fill="#A80000" points="16.622,41.785 6.233,31.396 6.233,16.64 16.622,6.251 31.379,6.251 41.768,16.64 41.768,31.396 - 31.379,41.785 "/> - <polygon fill="#A90000" points="16.636,41.751 6.269,31.383 6.269,16.655 16.636,6.288 31.363,6.288 41.73,16.655 41.73,31.383 - 31.363,41.751 "/> - <polygon fill="#AA0000" points="16.65,41.716 6.304,31.369 6.304,16.671 16.65,6.325 31.35,6.325 41.695,16.671 41.695,31.369 - 31.35,41.716 "/> - <polygon fill="#AB0000" points="16.666,41.682 6.339,31.355 6.339,16.688 16.666,6.361 31.334,6.361 41.66,16.688 41.66,31.355 - 31.334,41.682 "/> - <polygon fill="#AC0000" points="16.681,41.648 6.375,31.343 6.375,16.704 16.681,6.398 31.318,6.398 41.625,16.704 41.625,31.343 - 31.318,41.648 "/> - <polygon fill="#AD0000" points="16.695,41.613 6.411,31.329 6.411,16.719 16.695,6.435 31.305,6.435 41.589,16.719 41.589,31.329 - 31.305,41.613 "/> - <polygon fill="#AE0000" points="16.709,41.579 6.446,31.314 6.446,16.735 16.709,6.472 31.29,6.472 41.555,16.735 41.555,31.314 - 31.29,41.579 "/> - <polygon fill="#AF0000" points="16.725,41.545 6.482,31.302 6.482,16.751 16.725,6.509 31.273,6.509 41.52,16.751 41.52,31.302 - 31.273,41.545 "/> - <polygon fill="#B00000" points="16.739,41.511 6.518,31.288 6.518,16.767 16.739,6.545 31.262,6.545 41.482,16.767 41.482,31.288 - 31.262,41.511 "/> - <polygon fill="#B10000" points="16.754,41.477 6.553,31.273 6.553,16.783 16.754,6.582 31.245,6.582 41.447,16.783 41.447,31.273 - 31.245,41.477 "/> - <polygon fill="#B20000" points="16.769,41.441 6.588,31.261 6.588,16.799 16.769,6.619 31.23,6.619 41.411,16.799 41.411,31.261 - 31.23,41.441 "/> - <polygon fill="#B30000" points="16.783,41.407 6.624,31.248 6.624,16.815 16.783,6.656 31.216,6.656 41.376,16.815 41.376,31.248 - 31.216,41.407 "/> - <polygon fill="#B40000" points="16.799,41.373 6.66,31.234 6.66,16.832 16.799,6.693 31.202,6.693 41.341,16.832 41.341,31.234 - 31.202,41.373 "/> - <polygon fill="#B50000" points="16.813,41.339 6.695,31.221 6.695,16.847 16.813,6.729 31.188,6.729 41.305,16.847 41.305,31.221 - 31.188,41.339 "/> - <polygon fill="#B60000" points="16.828,41.305 6.73,31.207 6.73,16.863 16.828,6.765 31.172,6.765 41.27,16.863 41.27,31.207 - 31.172,41.305 "/> - <polygon fill="#B70000" points="16.843,41.27 6.766,31.193 6.766,16.879 16.843,6.802 31.157,6.802 41.232,16.879 41.232,31.193 - 31.157,41.27 "/> - <polygon fill="#B80000" points="16.858,41.236 6.802,31.182 6.802,16.896 16.858,6.839 31.143,6.839 41.198,16.896 41.198,31.182 - 31.143,41.236 "/> - <polygon fill="#B90000" points="16.872,41.202 6.837,31.166 6.837,16.911 16.872,6.876 31.128,6.876 41.163,16.911 41.163,31.166 - 31.128,41.202 "/> - <polygon fill="#BA0000" points="16.887,41.167 6.873,31.152 6.873,16.927 16.887,6.913 31.111,6.913 41.127,16.927 41.127,31.152 - 31.111,41.167 "/> - <polygon fill="#BB0000" points="16.902,41.133 6.908,31.139 6.908,16.943 16.902,6.949 31.098,6.949 41.092,16.943 41.092,31.139 - 31.098,41.133 "/> - <polygon fill="#BC0000" points="16.917,41.1 6.944,31.126 6.944,16.959 16.917,6.986 31.083,6.986 41.057,16.959 41.057,31.126 - 31.083,41.1 "/> - <polygon fill="#BD0000" points="16.931,41.064 6.979,31.111 6.979,16.975 16.931,7.023 31.068,7.023 41.021,16.975 41.021,31.111 - 31.068,41.064 "/> - <polygon fill="#BE0000" points="16.946,41.029 7.015,31.1 7.015,16.991 16.946,7.06 31.055,7.06 40.984,16.991 40.984,31.1 - 31.055,41.029 "/> - <polygon fill="#BF0000" points="16.96,40.995 7.051,31.085 7.051,17.007 16.96,7.097 31.039,7.097 40.949,17.007 40.949,31.085 - 31.039,40.995 "/> - <polygon fill="#C00000" points="16.976,40.962 7.086,31.072 7.086,17.023 16.976,7.133 31.023,7.133 40.914,17.023 40.914,31.072 - 31.023,40.962 "/> - <polygon fill="#C10000" points="16.99,40.927 7.121,31.059 7.121,17.039 16.99,7.17 31.01,7.17 40.878,17.039 40.878,31.059 - 31.01,40.927 "/> - <polygon fill="#C20000" points="17.004,40.893 7.157,31.044 7.157,17.054 17.004,7.207 30.994,7.207 40.843,17.054 40.843,31.044 - 30.994,40.893 "/> - <polygon fill="#C30000" points="17.02,40.857 7.192,31.031 7.192,17.07 17.02,7.244 30.979,7.244 40.809,17.07 40.809,31.031 - 30.979,40.857 "/> - <polygon fill="#C40000" points="17.035,40.824 7.229,31.018 7.229,17.086 17.035,7.281 30.966,7.281 40.771,17.086 40.771,31.018 - 30.966,40.824 "/> - <polygon fill="#C50000" points="17.049,40.789 7.263,31.004 7.263,17.103 17.049,7.317 30.95,7.317 40.736,17.103 40.736,31.004 - 30.95,40.789 "/> - <polygon fill="#C60000" points="17.064,40.755 7.299,30.99 7.299,17.119 17.064,7.354 30.936,7.354 40.701,17.119 40.701,30.99 - 30.936,40.755 "/> - <polygon fill="#C70000" points="17.079,40.721 7.334,30.977 7.334,17.135 17.079,7.391 30.921,7.391 40.665,17.135 40.665,30.977 - 30.921,40.721 "/> - <polygon fill="#C80000" points="17.094,40.688 7.371,30.964 7.371,17.151 17.094,7.428 30.906,7.428 40.63,17.151 40.63,30.964 - 30.906,40.688 "/> - <polygon fill="#C90000" points="17.108,40.652 7.406,30.949 7.406,17.167 17.108,7.464 30.893,7.464 40.594,17.167 40.594,30.949 - 30.893,40.652 "/> - <polygon fill="#CA0000" points="17.123,40.618 7.441,30.936 7.441,17.182 17.123,7.5 30.877,7.5 40.559,17.182 40.559,30.936 - 30.877,40.618 "/> - <polygon fill="#CB0000" points="17.138,40.584 7.477,30.923 7.477,17.199 17.138,7.537 30.861,7.537 40.523,17.199 40.523,30.923 - 30.861,40.584 "/> - <polygon fill="#CC0000" points="17.153,40.55 7.513,30.909 7.513,17.215 17.153,7.574 30.848,7.574 40.486,17.215 40.486,30.909 - 30.848,40.55 "/> - <polygon fill="#CC0000" points="17.167,40.516 7.548,30.896 7.548,17.23 17.167,7.611 30.832,7.611 40.452,17.23 40.452,30.896 - 30.832,40.516 "/> - <polygon fill="#CD0000" points="17.182,40.48 7.583,30.882 7.583,17.246 17.182,7.647 30.816,7.647 40.416,17.246 40.416,30.882 - 30.816,40.48 "/> - <polygon fill="#CE0000" points="17.197,40.445 7.619,30.868 7.619,17.262 17.197,7.685 30.803,7.685 40.381,17.262 40.381,30.868 - 30.803,40.445 "/> - <polygon fill="#CF0000" points="17.211,40.412 7.654,30.855 7.654,17.278 17.211,7.721 30.788,7.721 40.346,17.278 40.346,30.855 - 30.788,40.412 "/> - <polygon fill="#D00000" points="17.226,40.378 7.69,30.842 7.69,17.294 17.226,7.758 30.773,7.758 40.311,17.294 40.311,30.842 - 30.773,40.378 "/> - <polygon fill="#D10000" points="17.241,40.344 7.726,30.828 7.726,17.311 17.241,7.794 30.759,7.794 40.273,17.311 40.273,30.828 - 30.759,40.344 "/> - <polygon fill="#D20000" points="17.256,40.311 7.761,30.814 7.761,17.326 17.256,7.831 30.744,7.831 40.238,17.326 40.238,30.814 - 30.744,40.311 "/> - <polygon fill="#D30000" points="17.271,40.273 7.796,30.801 7.796,17.342 17.271,7.868 30.729,7.868 40.203,17.342 40.203,30.801 - 30.729,40.273 "/> - <polygon fill="#D40000" points="17.285,40.24 7.832,30.787 7.832,17.358 17.285,7.905 30.715,7.905 40.168,17.358 40.168,30.787 - 30.715,40.24 "/> - <polygon fill="#D50000" points="17.3,40.206 7.868,30.773 7.868,17.374 17.3,7.941 30.7,7.941 40.132,17.374 40.132,30.773 - 30.7,40.206 "/> - <polygon fill="#D60000" points="17.315,40.172 7.903,30.761 7.903,17.39 17.315,7.979 30.686,7.979 40.098,17.39 40.098,30.761 - 30.686,40.172 "/> - <polygon fill="#D70000" points="17.33,40.139 7.938,30.747 7.938,17.406 17.33,8.015 30.67,8.015 40.062,17.406 40.062,30.747 - 30.67,40.139 "/> - <polygon fill="#D80000" points="17.344,40.104 7.974,30.732 7.974,17.422 17.344,8.052 30.654,8.052 40.025,17.422 40.025,30.732 - 30.654,40.104 "/> - <polygon fill="#D90000" points="17.359,40.068 8.01,30.721 8.01,17.438 17.359,8.089 30.641,8.089 39.99,17.438 39.99,30.721 - 30.641,40.068 "/> - <polygon fill="#DA0000" points="17.374,40.034 8.045,30.706 8.045,17.454 17.374,8.125 30.626,8.125 39.954,17.454 39.954,30.706 - 30.626,40.034 "/> - <polygon fill="#DB0000" points="17.389,40 8.081,30.691 8.081,17.47 17.389,8.162 30.611,8.162 39.919,17.47 39.919,30.691 - 30.611,40 "/> - <polygon fill="#DC0000" points="17.403,39.966 8.116,30.68 8.116,17.486 17.403,8.199 30.598,8.199 39.884,17.486 39.884,30.68 - 30.598,39.966 "/> - <polygon fill="#DD0000" points="17.418,39.932 8.152,30.665 8.152,17.502 17.418,8.235 30.582,8.235 39.848,17.502 39.848,30.665 - 30.582,39.932 "/> - <polygon fill="#DE0000" points="17.433,39.896 8.188,30.652 8.188,17.518 17.433,8.272 30.566,8.272 39.812,17.518 39.812,30.652 - 30.566,39.896 "/> - <polygon fill="#DF0000" points="17.448,39.863 8.223,30.639 8.223,17.534 17.448,8.309 30.553,8.309 39.775,17.534 39.775,30.639 - 30.553,39.863 "/> - <polygon fill="#E00000" points="17.462,39.828 8.258,30.625 8.258,17.55 17.462,8.346 30.537,8.346 39.741,17.55 39.741,30.625 - 30.537,39.828 "/> - <polygon fill="#E10000" points="17.477,39.794 8.294,30.611 8.294,17.565 17.477,8.383 30.521,8.383 39.706,17.565 39.706,30.611 - 30.521,39.794 "/> - <polygon fill="#E20000" points="17.492,39.76 8.33,30.598 8.33,17.582 17.492,8.419 30.508,8.419 39.67,17.582 39.67,30.598 - 30.508,39.76 "/> - <polygon fill="#E30000" points="17.507,39.727 8.365,30.584 8.365,17.598 17.507,8.456 30.493,8.456 39.635,17.598 39.635,30.584 - 30.493,39.727 "/> - <polygon fill="#E40000" points="17.521,39.691 8.4,30.57 8.4,17.614 17.521,8.493 30.479,8.493 39.6,17.614 39.6,30.57 - 30.479,39.691 "/> - <polygon fill="#E50000" points="17.536,39.657 8.436,30.559 8.436,17.63 17.536,8.529 30.464,8.529 39.562,17.63 39.562,30.559 - 30.464,39.657 "/> - <polygon fill="#E60000" points="17.551,39.623 8.472,30.544 8.472,17.646 17.551,8.566 30.449,8.566 39.527,17.646 39.527,30.544 - 30.449,39.623 "/> - <polygon fill="#E70000" points="17.566,39.589 8.507,30.529 8.507,17.662 17.566,8.603 30.436,8.603 39.492,17.662 39.492,30.529 - 30.436,39.589 "/> - <polygon fill="#E80000" points="17.581,39.555 8.542,30.518 8.542,17.678 17.581,8.64 30.419,8.64 39.457,17.678 39.457,30.518 - 30.419,39.555 "/> - <polygon fill="#E90000" points="17.595,39.52 8.578,30.503 8.578,17.693 17.595,8.676 30.404,8.676 39.422,17.693 39.422,30.503 - 30.404,39.52 "/> - <polygon fill="#EA0000" points="17.61,39.484 8.614,30.489 8.614,17.709 17.61,8.713 30.391,8.713 39.387,17.709 39.387,30.489 - 30.391,39.484 "/> - <polygon fill="#EB0000" points="17.625,39.451 8.649,30.477 8.649,17.726 17.625,8.75 30.375,8.75 39.352,17.726 39.352,30.477 - 30.375,39.451 "/> - <polygon fill="#EC0000" points="17.64,39.417 8.685,30.462 8.685,17.742 17.64,8.787 30.359,8.787 39.314,17.742 39.314,30.462 - 30.359,39.417 "/> - <polygon fill="#ED0000" points="17.654,39.383 8.72,30.449 8.72,17.757 17.654,8.823 30.346,8.823 39.279,17.757 39.279,30.449 - 30.346,39.383 "/> - <polygon fill="#EE0000" points="17.669,39.35 8.756,30.436 8.756,17.773 17.669,8.86 30.331,8.86 39.244,17.773 39.244,30.436 - 30.331,39.35 "/> - <polygon fill="#EF0000" points="17.684,39.312 8.792,30.422 8.792,17.79 17.684,8.897 30.316,8.897 39.208,17.79 39.208,30.422 - 30.316,39.312 "/> - <polygon fill="#F00000" points="17.699,39.279 8.827,30.408 8.827,17.805 17.699,8.934 30.302,8.934 39.173,17.805 39.173,30.408 - 30.302,39.279 "/> - <polygon fill="#F10000" points="17.713,39.245 8.862,30.395 8.862,17.821 17.713,8.971 30.286,8.971 39.137,17.821 39.137,30.395 - 30.286,39.245 "/> - <polygon fill="#F20000" points="17.728,39.211 8.898,30.381 8.898,17.837 17.728,9.007 30.271,9.007 39.102,17.837 39.102,30.381 - 30.271,39.211 "/> - <polygon fill="#F30000" points="17.743,39.177 8.934,30.367 8.934,17.853 17.743,9.044 30.257,9.044 39.066,17.853 39.066,30.367 - 30.257,39.177 "/> - <polygon fill="#F40000" points="17.758,39.143 8.969,30.354 8.969,17.869 17.758,9.081 30.242,9.081 39.029,17.869 39.029,30.354 - 30.242,39.143 "/> - <polygon fill="#F50000" points="17.772,39.107 9.004,30.341 9.004,17.885 17.772,9.117 30.229,9.117 38.995,17.885 38.995,30.341 - 30.229,39.107 "/> - <polygon fill="#F60000" points="17.787,39.073 9.04,30.327 9.04,17.901 17.787,9.154 30.213,9.154 38.959,17.901 38.959,30.327 - 30.213,39.073 "/> - <polygon fill="#F70000" points="17.802,39.039 9.076,30.312 9.076,17.917 17.802,9.191 30.198,9.191 38.924,17.917 38.924,30.312 - 30.198,39.039 "/> - <polygon fill="#F80000" points="17.816,39.005 9.111,30.3 9.111,17.933 17.816,9.228 30.184,9.228 38.889,17.933 38.889,30.3 - 30.184,39.005 "/> - <polygon fill="#F90000" points="17.832,38.971 9.146,30.286 9.146,17.949 17.832,9.265 30.169,9.265 38.854,17.949 38.854,30.286 - 30.169,38.971 "/> - <polygon fill="#FA0000" points="17.846,38.938 9.182,30.271 9.182,17.965 17.846,9.301 30.154,9.301 38.816,17.965 38.816,30.271 - 30.154,38.938 "/> - <polygon fill="#FB0000" points="17.861,38.902 9.218,30.259 9.218,17.981 17.861,9.338 30.139,9.338 38.782,17.981 38.782,30.259 - 30.139,38.902 "/> - <polygon fill="#FC0000" points="17.875,38.867 9.253,30.246 9.253,17.997 17.875,9.375 30.124,9.375 38.746,17.997 38.746,30.246 - 30.124,38.867 "/> - <polygon fill="#FD0000" points="17.891,38.833 9.289,30.232 9.289,18.013 17.891,9.411 30.109,9.411 38.711,18.013 38.711,30.232 - 30.109,38.833 "/> - <polygon fill="#FE0000" points="17.905,38.799 9.324,30.219 9.324,18.029 17.905,9.448 30.096,9.448 38.675,18.029 38.675,30.219 - 30.096,38.799 "/> - <path fill="#FF0000" d="M17.92,38.766l-8.56-8.561v-12.16l8.56-8.56h12.16l8.561,8.56v12.16l-8.561,8.561H17.92z"/> - </g> - - <linearGradient id="XMLID_46_" gradientUnits="userSpaceOnUse" x1="582" y1="-986.6099" x2="582" y2="-1015.8911" gradientTransform="matrix(1 0 0 -1 -558 -977)"> - <stop offset="0" style="stop-color:#FFFFFF"/> - <stop offset="1" style="stop-color:#FF0000"/> - </linearGradient> - <path fill="url(#XMLID_46_)" d="M17.92,38.891L9.36,30.33V18.17l8.56-8.56h12.16l8.561,8.56v12.16l-8.561,8.561H17.92z"/> - <path d="M11.7,17.7l18.7,18.7l5.896-5.9L17.6,11.7l-5.9,5.9V17.7z"/> - <path d="M11.7,30.5l5.9,5.9l18.7-18.7L30.4,11.8L11.7,30.5z"/> -</g> -<g id="crop_x0020_marks"> - <path fill="none" d="M48,48H0V0h48V48z"/> -</g> -</svg> diff --git a/docbook-xsl-1.75.2/images/draft.png b/docbook-xsl-1.75.2/images/draft.png deleted file mode 100644 index 59673fe..0000000 Binary files a/docbook-xsl-1.75.2/images/draft.png and /dev/null differ diff --git a/docbook-xsl-1.75.2/images/home.gif b/docbook-xsl-1.75.2/images/home.gif deleted file mode 100644 index 6784f5b..0000000 Binary files a/docbook-xsl-1.75.2/images/home.gif and /dev/null differ diff --git a/docbook-xsl-1.75.2/images/home.png b/docbook-xsl-1.75.2/images/home.png deleted file mode 100644 index cbb711d..0000000 Binary files a/docbook-xsl-1.75.2/images/home.png and /dev/null differ diff --git a/docbook-xsl-1.75.2/images/home.svg b/docbook-xsl-1.75.2/images/home.svg deleted file mode 100644 index e803a31..0000000 --- a/docbook-xsl-1.75.2/images/home.svg +++ /dev/null @@ -1,26 +0,0 @@ -<?xml version="1.0" encoding="iso-8859-1"?> -<!-- Generator: Adobe Illustrator 9.0, SVG Export Plug-In --> -<!DOCTYPE svg [ - <!ENTITY st0 "fill-rule:nonzero;clip-rule:nonzero;fill:#FFFFFF;stroke:#000000;stroke-miterlimit:4;"> - <!ENTITY st1 "fill:none;stroke:none;"> - <!ENTITY st2 "fill:#000000;"> - <!ENTITY st3 "fill:none;stroke:#FFFFFF;stroke-width:6.3469;stroke-linejoin:round;"> - <!ENTITY st4 "fill-rule:evenodd;clip-rule:evenodd;stroke:none;"> - <!ENTITY st5 "fill-rule:nonzero;clip-rule:nonzero;stroke:#000000;stroke-miterlimit:4;"> -]> -<svg width="48pt" height="48pt" viewBox="0 0 48 48" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"> - <g id="Layer_x0020_3" style="&st0;"> - <g style="&st4;"> - <path style="&st3;" d="M22.9,7.1L5.1,21.8l0,0c-0.3,0.3-0.5,0.8-0.5,1.2c0,0.2,0,0.4,0.1,0.6c0.3,0.6,0.9,1,1.6,1c0,0,1.1,0,2.2,0c0,2.4,0,14.2,0,14.2c0,1.1,0.8,1.9,1.8,1.9h27.4c1.1,0,1.9-0.9,1.9-2c0,0,0-11.8,0-14.2c1,0,2,0,2,0c0.8,0,1.4-0.5,1.7-1.2 - c0.1-0.2,0.1-0.4,0.1-0.6c0-0.5-0.2-1-0.7-1.4c0,0-3.6-3-4.5-3.7c0-1.2,0-6.9,0-6.9c0-1.2-0.8-2-2-2h-4.8c-1,0-1.7,0.6-1.9,1.5c-1.9-1.6-4.1-3.5-4.1-3.5l0.1,0.1c-0.7-0.7-1.8-0.8-2.7-0.1z"/> - <path style="&st2;" d="M22.9,7.1L5.1,21.8l0,0c-0.3,0.3-0.5,0.8-0.5,1.2c0,0.2,0,0.4,0.1,0.6c0.3,0.6,0.9,1,1.6,1c0,0,1.1,0,2.2,0c0,2.4,0,14.2,0,14.2c0,1.1,0.8,1.9,1.8,1.9h27.4c1.1,0,1.9-0.9,1.9-2c0,0,0-11.8,0-14.2c1,0,2,0,2,0c0.8,0,1.4-0.5,1.7-1.2 - c0.1-0.2,0.1-0.4,0.1-0.6c0-0.5-0.2-1-0.7-1.4c0,0-3.6-3-4.5-3.7c0-1.2,0-6.9,0-6.9c0-1.2-0.8-2-2-2h-4.8c-1,0-1.7,0.6-1.9,1.5c-1.9-1.6-4.1-3.5-4.1-3.5l0.1,0.1c-0.7-0.7-1.8-0.8-2.7-0.1z"/> - <path style="&st2;" d="M41.8,22.8l-5.1-4.2v-0.1L31,13.7v0l-6.5-5.5C24.2,8,24,8,23.8,8.2L6.2,22.9c-0.1,0.1-0.1,0.3,0.1,0.3h1.6H10h28.1h1.2h2.3c0.2,0,0.4-0.2,0.2-0.4z"/> - <path d="M35.8,16.8l0-5.1c0-0.2-0.1-0.4-0.3-0.4h-3.2c-0.2,0-0.3,0.1-0.3,0.3v2.2l3.9,2.9z"/> - <path d="M11.9,24.7V37c0,0.3,0.1,0.4,0.3,0.4h23.6c0.3,0,0.4-0.2,0.4-0.4V24.7H11.9z"/> - </g> - </g> - <g id="crop_x0020_marks" style="&st5;"> - <path style="&st1;" d="M48,48H0V0h48v48z"/> - </g> -</svg> diff --git a/docbook-xsl-1.75.2/images/important.gif b/docbook-xsl-1.75.2/images/important.gif deleted file mode 100644 index 6795d9a..0000000 Binary files a/docbook-xsl-1.75.2/images/important.gif and /dev/null differ diff --git a/docbook-xsl-1.75.2/images/important.png b/docbook-xsl-1.75.2/images/important.png deleted file mode 100644 index 12c90f6..0000000 Binary files a/docbook-xsl-1.75.2/images/important.png and /dev/null differ diff --git a/docbook-xsl-1.75.2/images/important.svg b/docbook-xsl-1.75.2/images/important.svg deleted file mode 100644 index dd84f3f..0000000 --- a/docbook-xsl-1.75.2/images/important.svg +++ /dev/null @@ -1,25 +0,0 @@ -<?xml version="1.0" encoding="iso-8859-1"?> -<!-- Generator: Adobe Illustrator 9.0, SVG Export Plug-In --> -<!DOCTYPE svg [ - <!ENTITY st0 "fill:#FFFFFF;stroke:none;"> - <!ENTITY st1 "fill:#FFFFFF;stroke-width:6.6112;stroke-linecap:round;stroke-linejoin:round;"> - <!ENTITY st2 "stroke:#FFFFFF;stroke-width:6.6112;"> - <!ENTITY st3 "fill:none;stroke:none;"> - <!ENTITY st4 "fill-rule:nonzero;clip-rule:nonzero;stroke:#000000;stroke-miterlimit:4;"> - <!ENTITY st5 "stroke:none;"> -]> -<svg width="48pt" height="48pt" viewBox="0 0 48 48" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"> - <g id="Layer_x0020_3" style="&st4;"> - <g> - <path style="&st2;" d="M41.7,35.3L26.6,9.4c-0.6-1-1.7-1.7-2.9-1.6c-1.2,0-2.3,0.7-2.9,1.7L6.3,35.4c-0.6,1-0.6,2.3,0,3.3c0.6,1,1.7,1.6,2.9,1.6h29.6c1.2,0,2.3-0.6,2.9-1.7c0.6-1,0.6-2.3,0-3.3z"/> - <path style="&st1;" d="M23.7,11L9.2,37h29.6L23.7,11z"/> - <path style="&st0;" d="M23.7,11.9L10.3,36.1h27.5l-14-24.1z"/> - <g> - <path style="&st5;" d="M24.1,34c-1.1,0-1.8-0.8-1.8-1.8c0-1.1,0.7-1.8,1.8-1.8c1.1,0,1.8,0.7,1.8,1.8c0,1-0.7,1.8-1.8,1.8h0z M22.9,29.3l-0.4-9.1h3.2l-0.4,9.1h-2.3z"/> - </g> - </g> - </g> - <g id="crop_x0020_marks" style="&st4;"> - <path style="&st3;" d="M48,48H0V0h48v48z"/> - </g> -</svg> diff --git a/docbook-xsl-1.75.2/images/important.tif b/docbook-xsl-1.75.2/images/important.tif deleted file mode 100644 index 184de63..0000000 Binary files a/docbook-xsl-1.75.2/images/important.tif and /dev/null differ diff --git a/docbook-xsl-1.75.2/images/next.gif b/docbook-xsl-1.75.2/images/next.gif deleted file mode 100644 index aa1516e..0000000 Binary files a/docbook-xsl-1.75.2/images/next.gif and /dev/null differ diff --git a/docbook-xsl-1.75.2/images/next.png b/docbook-xsl-1.75.2/images/next.png deleted file mode 100644 index 45835bf..0000000 Binary files a/docbook-xsl-1.75.2/images/next.png and /dev/null differ diff --git a/docbook-xsl-1.75.2/images/next.svg b/docbook-xsl-1.75.2/images/next.svg deleted file mode 100644 index 75fa83e..0000000 --- a/docbook-xsl-1.75.2/images/next.svg +++ /dev/null @@ -1,19 +0,0 @@ -<?xml version="1.0" encoding="iso-8859-1"?> -<!-- Generator: Adobe Illustrator 9.0, SVG Export Plug-In --> -<!DOCTYPE svg [ - <!ENTITY st0 "fill:none;stroke:none;"> - <!ENTITY st1 "fill:#FFFFFF;stroke:#FFFFFF;stroke-width:7.5901;stroke-linejoin:round;"> - <!ENTITY st2 "fill-rule:nonzero;clip-rule:nonzero;stroke:#000000;stroke-miterlimit:4;"> - <!ENTITY st3 "stroke:none;"> -]> -<svg width="48pt" height="48pt" viewBox="0 0 48 48" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"> - <g id="Layer_x0020_3" style="&st2;"> - <g> - <path style="&st1;" d="M22.4,41.1c0,0.3,0.3,0.3,0.5,0.2l16.6-16.9c0.5-0.5,0.4-0.7,0-1L22.9,6.7c-0.1-0.1-0.4-0.1-0.4,0.1v10H8.9c-0.3,0-0.5,0.2-0.5,0.4l0,13.3C8.4,30.9,8.6,31,9,31h13.5l-0.1,10.1z"/> - <path style="&st3;" d="M22.4,41.1c0,0.3,0.3,0.3,0.5,0.2l16.6-16.9c0.5-0.5,0.4-0.7,0-1L22.9,6.7c-0.1-0.1-0.4-0.1-0.4,0.1v10H8.9c-0.3,0-0.5,0.2-0.5,0.4l0,13.3C8.4,30.9,8.6,31,9,31h13.5l-0.1,10.1z"/> - </g> - </g> - <g id="crop_x0020_marks" style="&st2;"> - <path style="&st0;" d="M48,48H0V0h48v48z"/> - </g> -</svg> diff --git a/docbook-xsl-1.75.2/images/note.gif b/docbook-xsl-1.75.2/images/note.gif deleted file mode 100644 index f329d35..0000000 Binary files a/docbook-xsl-1.75.2/images/note.gif and /dev/null differ diff --git a/docbook-xsl-1.75.2/images/note.png b/docbook-xsl-1.75.2/images/note.png deleted file mode 100644 index d0c3c64..0000000 Binary files a/docbook-xsl-1.75.2/images/note.png and /dev/null differ diff --git a/docbook-xsl-1.75.2/images/note.svg b/docbook-xsl-1.75.2/images/note.svg deleted file mode 100644 index 648299d..0000000 --- a/docbook-xsl-1.75.2/images/note.svg +++ /dev/null @@ -1,33 +0,0 @@ -<?xml version="1.0" encoding="iso-8859-1"?> -<!-- Generator: Adobe Illustrator 9.0, SVG Export Plug-In --> -<!DOCTYPE svg [ - <!ENTITY st0 "fill:none;stroke:#FFFFFF;stroke-width:12.1438;stroke-linejoin:round;"> - <!ENTITY st1 "fill:none;stroke-width:1.2429;"> - <!ENTITY st2 "fill:#FFFFFF;stroke:none;"> - <!ENTITY st3 "fill:none;stroke:#FFFFFF;stroke-width:12.7649;stroke-linejoin:round;"> - <!ENTITY st4 "fill:#FFFFFF;stroke-width:6.3824;stroke-linejoin:round;"> - <!ENTITY st5 "fill:none;stroke:none;"> - <!ENTITY st6 "fill-rule:nonzero;clip-rule:nonzero;stroke:#000000;stroke-miterlimit:4;"> - <!ENTITY st7 "fill:#FFFFFF;stroke:#FFFFFF;stroke-width:12.7649;stroke-linejoin:round;"> - <!ENTITY st8 "stroke:none;"> - <!ENTITY st9 "fill:none;stroke-width:4.9715;stroke-linejoin:round;"> -]> -<svg xmlns="http://www.w3.org/2000/svg" width="48pt" height="48pt" viewBox="0 0 48 48" xml:space="preserve"> - <g id="Layer_x0020_1" style="&st6;"> - <path style="&st0;" d="M35.7,19.8v18.9H11V8.8h13.9l10.8,11z"/> - <path style="&st3;" d="M38.7,30.4L25,16.7l-7.7-3l2.7,8.7l13.3,13.4l5.4-5.4z"/> - <path style="&st7;" d="M35.7,8.8H11v29.9h24.7V8.8z"/> - <path style="&st4;" d="M35.7,8.8H11v29.9h24.7V8.8z"/> - <path style="&st2;" d="M35.7,8.8H11v29.9h24.7V8.8z"/> - </g> - <g id="Layer_x0020_4" style="&st6;"> - <path style="&st9;" d="M38.7,30.4L25,16.7l-7.7-3l2.7,8.7l13.3,13.4l5.4-5.4z"/> - <path style="&st8;" d="M38.7,30.4L25,16.7l-7.7-3l2.7,8.7l13.3,13.4l5.4-5.4z"/> - <path style="&st8;" d="M20.6,14.7l-2.5,2.5L17,13.4l3.6,1.3z"/> - <path style="&st1;" d="M19.6,22.2l3-0.3l2.4-2.4l0.4-2.8"/> - <path style="&st2;" d="M20.4,14.9L18.3,17l1.6,5.2l2.7-0.3l2.4-2.4l0.3-2.4l-5-2.2z"/> - </g> - <g id="crop" style="&st6;"> - <path style="&st5;" d="M48,48H0V0h48v48z"/> - </g> -</svg> diff --git a/docbook-xsl-1.75.2/images/note.tif b/docbook-xsl-1.75.2/images/note.tif deleted file mode 100644 index 08644d6..0000000 Binary files a/docbook-xsl-1.75.2/images/note.tif and /dev/null differ diff --git a/docbook-xsl-1.75.2/images/prev.gif b/docbook-xsl-1.75.2/images/prev.gif deleted file mode 100644 index 64ca8f3..0000000 Binary files a/docbook-xsl-1.75.2/images/prev.gif and /dev/null differ diff --git a/docbook-xsl-1.75.2/images/prev.png b/docbook-xsl-1.75.2/images/prev.png deleted file mode 100644 index cf24654..0000000 Binary files a/docbook-xsl-1.75.2/images/prev.png and /dev/null differ diff --git a/docbook-xsl-1.75.2/images/prev.svg b/docbook-xsl-1.75.2/images/prev.svg deleted file mode 100644 index 6d88ffd..0000000 --- a/docbook-xsl-1.75.2/images/prev.svg +++ /dev/null @@ -1,19 +0,0 @@ -<?xml version="1.0" encoding="iso-8859-1"?> -<!-- Generator: Adobe Illustrator 9.0, SVG Export Plug-In --> -<!DOCTYPE svg [ - <!ENTITY st0 "fill:none;stroke:none;"> - <!ENTITY st1 "fill:#FFFFFF;stroke:#FFFFFF;stroke-width:7.5901;stroke-linejoin:round;"> - <!ENTITY st2 "fill-rule:nonzero;clip-rule:nonzero;stroke:#000000;stroke-miterlimit:4;"> - <!ENTITY st3 "stroke:none;"> -]> -<svg width="48pt" height="48pt" viewBox="0 0 48 48" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"> - <g id="Layer_x0020_3" style="&st2;"> - <g> - <path style="&st1;" d="M25.6,6.9c0-0.3-0.3-0.3-0.5-0.2L8.4,23.6c-0.5,0.5-0.4,0.7,0,1l16.6,16.6c0.1,0.1,0.4,0.1,0.4-0.1v-10h13.6c0.3,0,0.5-0.2,0.5-0.4l0-13.3c0-0.3-0.2-0.5-0.5-0.5H25.5l0.1-10.1z"/> - <path style="&st3;" d="M25.6,6.9c0-0.3-0.3-0.3-0.5-0.2L8.4,23.6c-0.5,0.5-0.4,0.7,0,1l16.6,16.6c0.1,0.1,0.4,0.1,0.4-0.1v-10h13.6c0.3,0,0.5-0.2,0.5-0.4l0-13.3c0-0.3-0.2-0.5-0.5-0.5H25.5l0.1-10.1z"/> - </g> - </g> - <g id="crop_x0020_marks" style="&st2;"> - <path style="&st0;" d="M48,48H0V0h48v48z"/> - </g> -</svg> diff --git a/docbook-xsl-1.75.2/images/tip.gif b/docbook-xsl-1.75.2/images/tip.gif deleted file mode 100644 index 823f2b4..0000000 Binary files a/docbook-xsl-1.75.2/images/tip.gif and /dev/null differ diff --git a/docbook-xsl-1.75.2/images/tip.png b/docbook-xsl-1.75.2/images/tip.png deleted file mode 100644 index 5c4aab3..0000000 Binary files a/docbook-xsl-1.75.2/images/tip.png and /dev/null differ diff --git a/docbook-xsl-1.75.2/images/tip.svg b/docbook-xsl-1.75.2/images/tip.svg deleted file mode 100644 index 4a64a15..0000000 --- a/docbook-xsl-1.75.2/images/tip.svg +++ /dev/null @@ -1,31 +0,0 @@ -<?xml version="1.0" encoding="iso-8859-1"?> -<!-- Generator: Adobe Illustrator 9.0, SVG Export Plug-In --> -<!DOCTYPE svg [ - <!ENTITY st0 "fill:none;stroke:#000000;stroke-width:1.0944;"> - <!ENTITY st1 "fill:#FFFFFF;stroke:none;"> - <!ENTITY st2 "fill-rule:nonzero;clip-rule:nonzero;stroke:#FFFFFF;stroke-width:5.6139;stroke-miterlimit:4;"> - <!ENTITY st3 "fill:none;stroke:none;"> - <!ENTITY st4 "fill-rule:nonzero;clip-rule:nonzero;stroke:#000000;stroke-miterlimit:4;"> - <!ENTITY st5 "stroke:none;"> -]> -<svg width="48pt" height="48pt" viewBox="0 0 48 48" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"> - <g id="Layer_x0020_3" style="&st2;"> - <g> - <path d="M9.5,18.6c0,8,6.5,14.4,14.4,14.4c8,0,14.4-6.5,14.4-14.4c0-8-6.5-14.4-14.4-14.4c-8,0-14.4,6.5-14.4,14.4z M12.8,18.6c0-6.2,5-11.2,11.2-11.2c6.2,0,11.2,5,11.2,11.2c0,6.2-5,11.2-11.2,11.2c-6.2,0-11.2-5-11.2-11.2z"/> - <path d="M28.1,37.9l-7.6,0.8c-0.9,0.1-1.5,0.9-1.4,1.8c0.1,0.9,0.9,1.5,1.8,1.4l7.6-0.8c0.9-0.1,1.5-0.9,1.4-1.8c-0.1-0.9-0.9-1.5-1.8-1.4z"/> - <path d="M28.1,34.8l-7.6,0.8c-0.9,0.1-1.5,0.9-1.4,1.8c0.1,0.9,0.9,1.5,1.8,1.4l7.6-0.8c0.9-0.1,1.5-0.9,1.4-1.8c-0.1-0.9-0.9-1.5-1.8-1.4z"/> - <path d="M28.1,31.6l-7.6,0.8c-0.9,0.1-1.5,0.9-1.4,1.8s0.9,1.5,1.8,1.4l7.6-0.8c0.9-0.1,1.5-0.9,1.4-1.8s-0.9-1.5-1.8-1.4z"/> - <path d="M23.1,41.3v0.9c0,0.9,0.7,1.6,1.6,1.6c0.9,0,1.6-0.7,1.6-1.6v-0.9h-3.3z"/> - <path style="&st1;" d="M35.9,18.7c0,6.6-5.4,12-12,12c-6.6,0-12-5.4-12-12s5.4-12,12-12c6.6,0,12,5.4,12,12z"/> - <path style="&st5;" d="M9.6,18.6c0,8,6.5,14.4,14.4,14.4c8,0,14.4-6.5,14.4-14.4c0-8-6.5-14.4-14.4-14.4c-8,0-14.4,6.5-14.4,14.4z M12.9,18.6c0-6.2,5-11.2,11.2-11.2c6.2,0,11.2,5,11.2,11.2c0,6.2-5,11.2-11.2,11.2c-6.2,0-11.2-5-11.2-11.2z"/> - <path style="&st5;" d="M28.2,37.9l-7.6,0.8c-0.9,0.1-1.5,0.9-1.4,1.8c0.1,0.9,0.9,1.5,1.8,1.4l7.6-0.8c0.9-0.1,1.5-0.9,1.4-1.8c-0.1-0.9-0.9-1.5-1.8-1.4z"/> - <path style="&st5;" d="M28.2,34.7l-7.6,0.8c-0.9,0.1-1.5,0.9-1.4,1.8c0.1,0.9,0.9,1.5,1.8,1.4l7.6-0.8c0.9-0.1,1.5-0.9,1.4-1.8c-0.1-0.9-0.9-1.5-1.8-1.4z"/> - <path style="&st5;" d="M28.2,31.6l-7.6,0.8c-0.9,0.1-1.5,0.9-1.4,1.8c0.1,0.9,0.9,1.5,1.8,1.4l7.6-0.8c0.9-0.1,1.5-0.9,1.4-1.8c-0.1-0.9-0.9-1.5-1.8-1.4z"/> - <path style="&st5;" d="M23.1,41.3v0.9c0,0.9,0.7,1.6,1.6,1.6s1.6-0.7,1.6-1.6v-0.9h-3.3z"/> - <path style="&st0;" d="M22.3,28.3l-3.5-10.7c0,0,6.6,3.9,10.5,0"/> - </g> - </g> - <g id="crop_x0020_marks" style="&st4;"> - <path style="&st3;" d="M48,48H0V0h48v48z"/> - </g> -</svg> diff --git a/docbook-xsl-1.75.2/images/tip.tif b/docbook-xsl-1.75.2/images/tip.tif deleted file mode 100644 index 4a3d8c7..0000000 Binary files a/docbook-xsl-1.75.2/images/tip.tif and /dev/null differ diff --git a/docbook-xsl-1.75.2/images/toc-blank.png b/docbook-xsl-1.75.2/images/toc-blank.png deleted file mode 100644 index 6ffad17..0000000 Binary files a/docbook-xsl-1.75.2/images/toc-blank.png and /dev/null differ diff --git a/docbook-xsl-1.75.2/images/toc-minus.png b/docbook-xsl-1.75.2/images/toc-minus.png deleted file mode 100644 index abbb020..0000000 Binary files a/docbook-xsl-1.75.2/images/toc-minus.png and /dev/null differ diff --git a/docbook-xsl-1.75.2/images/toc-plus.png b/docbook-xsl-1.75.2/images/toc-plus.png deleted file mode 100644 index 941312c..0000000 Binary files a/docbook-xsl-1.75.2/images/toc-plus.png and /dev/null differ diff --git a/docbook-xsl-1.75.2/images/up.gif b/docbook-xsl-1.75.2/images/up.gif deleted file mode 100644 index aabc2d0..0000000 Binary files a/docbook-xsl-1.75.2/images/up.gif and /dev/null differ diff --git a/docbook-xsl-1.75.2/images/up.png b/docbook-xsl-1.75.2/images/up.png deleted file mode 100644 index 07634de..0000000 Binary files a/docbook-xsl-1.75.2/images/up.png and /dev/null differ diff --git a/docbook-xsl-1.75.2/images/up.svg b/docbook-xsl-1.75.2/images/up.svg deleted file mode 100644 index d31aa9c..0000000 --- a/docbook-xsl-1.75.2/images/up.svg +++ /dev/null @@ -1,19 +0,0 @@ -<?xml version="1.0" encoding="iso-8859-1"?> -<!-- Generator: Adobe Illustrator 9.0, SVG Export Plug-In --> -<!DOCTYPE svg [ - <!ENTITY st0 "fill:none;stroke:none;"> - <!ENTITY st1 "fill:#FFFFFF;stroke:#FFFFFF;stroke-width:7.5901;stroke-linejoin:round;"> - <!ENTITY st2 "fill-rule:nonzero;clip-rule:nonzero;stroke:#000000;stroke-miterlimit:4;"> - <!ENTITY st3 "stroke:none;"> -]> -<svg width="48pt" height="48pt" viewBox="0 0 48 48" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"> - <g id="Layer_x0020_3" style="&st2;"> - <g> - <path style="&st1;" d="M41.1,25.6c0.3,0,0.3-0.3,0.2-0.5L24.4,8.4c-0.5-0.5-0.7-0.4-1,0L6.7,25.1c-0.1,0.1-0.1,0.4,0.1,0.4h10v13.6c0,0.3,0.2,0.5,0.4,0.5l13.3,0c0.3,0,0.5-0.2,0.5-0.5V25.5l10.1,0.1z"/> - <path style="&st3;" d="M41.1,25.6c0.3,0,0.3-0.3,0.2-0.5L24.4,8.4c-0.5-0.5-0.7-0.4-1,0L6.7,25.1c-0.1,0.1-0.1,0.4,0.1,0.4h10v13.6c0,0.3,0.2,0.5,0.4,0.5l13.3,0c0.3,0,0.5-0.2,0.5-0.5V25.5l10.1,0.1z"/> - </g> - </g> - <g id="crop_x0020_marks" style="&st2;"> - <path style="&st0;" d="M48,48H0V0h48v48z"/> - </g> -</svg> diff --git a/docbook-xsl-1.75.2/images/warning.gif b/docbook-xsl-1.75.2/images/warning.gif deleted file mode 100644 index 3adf191..0000000 Binary files a/docbook-xsl-1.75.2/images/warning.gif and /dev/null differ diff --git a/docbook-xsl-1.75.2/images/warning.png b/docbook-xsl-1.75.2/images/warning.png deleted file mode 100644 index 1c33db8..0000000 Binary files a/docbook-xsl-1.75.2/images/warning.png and /dev/null differ diff --git a/docbook-xsl-1.75.2/images/warning.svg b/docbook-xsl-1.75.2/images/warning.svg deleted file mode 100644 index fc8d748..0000000 --- a/docbook-xsl-1.75.2/images/warning.svg +++ /dev/null @@ -1,23 +0,0 @@ -<?xml version="1.0" encoding="iso-8859-1"?> -<!-- Generator: Adobe Illustrator 9.0, SVG Export Plug-In --> -<!DOCTYPE svg [ - <!ENTITY st0 "fill:#000000;stroke:#FFFFFF;stroke-width:7.9139;stroke-linejoin:round;"> - <!ENTITY st1 "fill-rule:nonzero;clip-rule:nonzero;fill:#FFFFFF;stroke:#000000;stroke-miterlimit:4;"> - <!ENTITY st2 "fill:none;stroke:none;"> - <!ENTITY st3 "fill:#000000;"> - <!ENTITY st4 "fill-rule:evenodd;clip-rule:evenodd;stroke:none;"> - <!ENTITY st5 "fill-rule:nonzero;clip-rule:nonzero;stroke:#000000;stroke-miterlimit:4;"> -]> -<svg width="48pt" height="48pt" viewBox="0 0 48 48" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"> - <g id="Layer_x0020_4" style="&st1;"> - <g style="&st4;"> - <path style="&st0;" d="M16.4,42.3L5.7,31.6V16.4L16.4,5.7h15.2l10.7,10.7v15.2L31.6,42.3H16.4z"/> - <path style="&st3;" d="M16.4,42.3L5.7,31.6V16.4L16.4,5.7h15.2l10.7,10.7v15.2L31.6,42.3H16.4z"/> - <path d="M11.7,17.7l18.7,18.7l5.9-5.9L17.6,11.7l-5.9,5.9z"/> - <path d="M11.7,30.5l5.9,5.9l18.7-18.7l-5.9-5.9L11.7,30.5z"/> - </g> - </g> - <g id="crop_x0020_marks" style="&st5;"> - <path style="&st2;" d="M48,48H0V0h48v48z"/> - </g> -</svg> diff --git a/docbook-xsl-1.75.2/images/warning.tif b/docbook-xsl-1.75.2/images/warning.tif deleted file mode 100644 index 7b6611e..0000000 Binary files a/docbook-xsl-1.75.2/images/warning.tif and /dev/null differ diff --git a/docbook-xsl-1.75.2/install.sh b/docbook-xsl-1.75.2/install.sh deleted file mode 100644 index 4071619..0000000 --- a/docbook-xsl-1.75.2/install.sh +++ /dev/null @@ -1,977 +0,0 @@ -#!/bin/bash -# $Id: install.sh 7942 2008-03-26 06:08:08Z xmldoc $ -# $Source$ # - -# install.sh - Set up user environment for a XML/XSLT distribution - -# This is as an interactive installer for updating your -# environment to use an XML/XSLT distribution such as the DocBook -# XSL Stylesheets. Its main purpose is to configure your -# environment with XML catalog data and schema "locating rules" -# data provided in the XML/XSLT distribution. -# -# Although this installer was created for the DocBook project, it -# is a general-purpose tool that can be used with any XML/XSLT -# distribution that provides XML/SGML catalogs and locating rules. -# -# This script is mainly intended to make things easier for you if -# you want to install a particular XML/XSLT distribution that has -# not (yet) been packaged for your OS distro (Debian, Fedora, -# whatever), or to use "snapshot" or development releases -# -# It works by updating your shell startup file (e.g., .bashrc and -# .cshrc) and .emacs file and by finding or creating a writable -# CatalogManager.properties file to update. -# -# It makes backup copies of any files it touches, and also -# generates a uninstall.sh script for reverting its changes. -# -# In the same directory where it is located, it expects to find -# the following four files: -# - locatingrules.xml -# - catalog.xml -# - catalog -# - .urilist -# And if it's unable to locate a CatalogManager.properties file in -# your environment, it expects to find an "example" one in the -# same directory as itself, which it copies over to your -# ~/.resolver directory. -# -# If the distribution contains any executables, change the value -# of the thisBinDir to a colon-separated list of the pathnames of -# the directories that contain those executables. - -# mydir is the "canonical" absolute pathname for install.sh -mydir=$(cd -P $(dirname $0) && pwd -P) || exit 1 - -thisLocatingRules=$mydir/locatingrules.xml -thisXmlCatalog=$mydir/catalog.xml -thisSgmlCatalog=$mydir/catalog - -# .urilist file contains a list of pairs of local pathnames and -# URIs to test for catalog resolution -thisUriList=$mydir/.urilist -exampleCatalogManager=$mydir/.CatalogManager.properties.example -thisCatalogManager=$HOME/.resolver/CatalogManager.properties - -# thisBinDir directory is a colon-separated list of the pathnames -# to all directories that contain executables provided with the -# distribution (for example, the DocBook XSL Stylesheets -# distribution contains a "docbook-xsl-update" convenience script -# for rsync'ing up to the latest docbook-xsl snapshot). The -# install.sh script adds the value of thisBinDir to your PATH -# environment variable -thisBinDir=$mydir/tools/bin - -emit_message() { - echo "$1" 1>&2 -} - -if [ ! "${*#--batch}" = "$*" ]; then - batchmode="Yes"; -else - batchmode="No"; - emit_message - if [ ! "$1" = "--test" ]; then - emit_message "NOTE: For non-interactive installs/uninstalls, use --batch" - if [ ! "$1" = "--uninstall" ]; then - emit_message - fi - fi -fi - -osName="Unidentified" -if uname -s | grep -qi "cygwin"; then - osName="Cygwin" -fi - -classPathSeparator=":" -if [ "$osName" = "Cygwin" ]; then - thisJavaXmlCatalog=$(cygpath -m $thisXmlCatalog) - classPathSeparator=";" -else - thisJavaXmlCatalog=$thisXmlCatalog -fi - -main() { - removeOldFiles - checkRoot - updateCatalogManager - checkForResolver - writeDotFiles - updateUserStartupFiles - updateUserDotEmacs - writeUninstallFile - writeTestFile - printExitMessage -} - -removeOldFiles() { - rm -f $mydir/.profile.incl - rm -f $mydir/.cshrc.incl - rm -f $mydir/.emacs.el -} - -checkRoot() { - if [ $(id -u) == "0" ]; then - cat 1>&2 <<EOF - -WARNING: This install script is meant to be run as a non-root - user, but you are running it as root. - -EOF - read -s -n1 -p "Are you sure you want to continue? [No] " - emit_message "$REPLY" - case $REPLY in - [yY]) - emit_message - ;; - *) emit_message "OK, exiting without making changes." - exit - ;; - esac - fi - return 0 -} - -updateCatalogManager() { - - # - finds or creates a writable CatalogManager.properties file - # - # - adds the catalog.xml file for this distribution to the - # CatalogManager.properties file found - - if [ -z "$CLASSPATH" ]; then - cat 1>&2 <<EOF - -NOTE: There is no CLASSPATH variable set in your environment. - No attempt was made to find a CatalogManager.properties - file. Using $thisCatalogManager instead -EOF - else - # split CLASSPATH in a list of pathnames by replacing all separator - # characters with spaces - if [ "$osName" = "Cygwin" ]; then - pathnames=$(echo $CLASSPATH | tr ";" " ") - else - pathnames=$(echo $CLASSPATH | tr ":" " ") - fi - for path in $pathnames; do - if [ "$osName" = "Cygwin" ]; then - path=$(cygpath -u $path) - fi - # strip out trailing slash from pathname - path=$(echo $path | sed 's/\/$//') - # find CatalogManager.properties file - if [ -f $path/CatalogManager.properties ]; - then - existingCatalogManager=$path/CatalogManager.properties - break - fi - done - fi - # end of CLASSPATH check - - if [ -w "$existingCatalogManager" ]; then - # existing CatalogManager.properties was found and it is - # writable, so use it - myCatalogManager=$existingCatalogManager - else - if [ -f "$existingCatalogManager" ]; then - # a non-writable CatalogManager.properties exists, so emit a - # note saying that it won't be used - cat 1>&2 <<EOF -NOTE: $existingCatalogManager file found, - but you don't have permission to write to it. - Will instead use: - $thisCatalogManager -EOF - else - # CLASSPATH is set, but no CatalogManager.properties found - if [ -n "$CLASSPATH" ]; then - cat 1>&2 <<EOF -NOTE: No CatalogManager.properties found from CLASSPATH. - Will instead use: - $thisCatalogManager -EOF - fi - fi - if [ "$batchmode" = "Yes" ]; then - emit_message - fi - # end of check for existing writable CatalogManager.properties - - if [ -f $thisCatalogManager ]; then - myCatalogManager=$thisCatalogManager - else - REPLY="" - if [ ! "$batchmode" = "Yes" ]; then - emit_message - read -s -n1 -p "Create $thisCatalogManager file? [Yes] " - emit_message "$REPLY" - emit_message - fi - case $REPLY in - [nNqQ]) - emitNoChangeMsg - ;; - *) - if [ ! -d "${thisCatalogManager%/*}" ]; then - mkdir -p ${thisCatalogManager%/*} - fi - cp $mydir/.CatalogManager.properties.example $thisCatalogManager || exit 1 - emit_message "NOTE: Created the following file:" - emit_message " $thisCatalogManager" - myCatalogManager=$thisCatalogManager - ;; - esac - # end of creating "private" CatalogManager.properties - fi - # end of check for "private" CatalogManager.properties - fi - # end of check finding/creating writable CatalogManager.properties - - if [ -n "$myCatalogManager" ]; then - etcXmlCatalog= - catalogsLine=$(grep "^catalogs=" $myCatalogManager) - if [ -f /etc/xml/catalog ] && [ "$osName" != "Cygwin" ] \ - && [ "${catalogsLine#*/etc/xml/catalog*}" = "$catalogsLine" ]; then - cat 1>&2 <<EOF - -WARNING: /etc/xml/catalog exists but was not found in: - $myCatalogManager - If /etc/xml/catalog file has content, you probably - should reference it in: - $myCatalogManager - This installer can automatically add it for you, - but BE WARNED that once it has been added, the - uninstaller for this distribution CANNOT REMOVE IT - automatically during uninstall. If you no longer want - it included, you will need to remove it manually. - -EOF - REPLY="" - if [ ! "$batchmode" = "Yes" ]; then - read -s -n1 -p "Add /etc/xml/catalog to $myCatalogManager? [Yes] " - emit_message "$REPLY" - fi - case $REPLY in - [nNqQ]) - emit_message - ;; - *) - etcXmlCatalog=/etc/xml/catalog - ;; - esac - fi - - catalogBackup="$myCatalogManager.$$.bak" - if [ ! -w "${myCatalogManager%/*}" ]; then - emit_message - emit_message "WARNING: ${myCatalogManager%/*} directory is not writable." - emit_message - emitNoChangeMsg - else - REPLY="" - if [ ! "$batchmode" = "Yes" ]; then - emit_message - emit_message "Add $thisJavaXmlCatalog" - read -s -n1 -p "to $myCatalogManager file? [Yes] " - emit_message "$REPLY" - emit_message - fi - case $REPLY in - [nNqQ]) - emitNoChangeMsg - ;; - *) - if [ "$catalogsLine" ] ; then - if [ "${catalogsLine#*$thisJavaXmlCatalog*}" != "$catalogsLine" ]; then - emit_message "NOTE: $thisJavaXmlCatalog" - emit_message " already in:" - emit_message " $myCatalogManager" - else - mv $myCatalogManager $catalogBackup || exit 1 - sed "s#^catalogs=\(.*\)\$#catalogs=$thisJavaXmlCatalog;\1;$etcXmlCatalog#" $catalogBackup \ - | sed 's/;\+/;/' | sed 's/;$//' > $myCatalogManager || exit 1 - emit_message "NOTE: Successfully updated the following file:" - emit_message " $myCatalogManager" - emit_message " Backup written to:" - emit_message " $catalogBackup" - fi - else - mv $myCatalogManager $catalogBackup || exit 1 - cp $catalogBackup $myCatalogManager - echo "catalogs=$thisJavaXmlCatalog;$etcXmlCatalog" \ - | sed 's/;\+/;/' | sed 's/;$//' >> $myCatalogManager || exit 1 - emit_message "NOTE: \"catalogs=\" line added to $myCatalogManager." - emit_message " Backup written to $catalogBackup" - fi - ;; - esac - # end of backing up and updating CatalogManager.properties - fi - fi - # end of CatalogManager.properties updates - - if [ "$osName" = "Cygwin" ]; then - myCatalogManager=$(cygpath -m $myCatalogManager) - fi - return 0 -} - -writeDotFiles() { - while read; do - echo "$REPLY" >> $mydir/.profile.incl - done <<EOF -# $thisBinDir is not in PATH, so add it -if [ "\${PATH#*$thisBinDir*}" = "\$PATH" ]; then - PATH="$thisBinDir:\$PATH" - export PATH -fi -if [ -z "\$XML_CATALOG_FILES" ]; then - XML_CATALOG_FILES="$thisXmlCatalog" -else - # $thisXmlCatalog is not in XML_CATALOG_FILES, so add it - if [ "\${XML_CATALOG_FILES#*$thisXmlCatalog*}" = "\$XML_CATALOG_FILES" ]; then - XML_CATALOG_FILES="$thisXmlCatalog \$XML_CATALOG_FILES" - fi -fi -# /etc/xml/catalog exists but is not in XML_CATALOG_FILES, so add it -if [ -f /etc/xml/catalog ] && \ - [ "\${XML_CATALOG_FILES#*/etc/xml/catalog*}" = "\$XML_CATALOG_FILES" ]; then - XML_CATALOG_FILES="\$XML_CATALOG_FILES /etc/xml/catalog" -fi -export XML_CATALOG_FILES - -if [ -z "\$SGML_CATALOG_FILES" ]; then - SGML_CATALOG_FILES="$thisSgmlCatalog" -else - # $thisSgmlCatalog is not in SGML_CATALOG_FILES, so add it - if [ "\${SGML_CATALOG_FILES#*$thisSgmlCatalog}" = "\$SGML_CATALOG_FILES" ]; then - SGML_CATALOG_FILES="$thisSgmlCatalog:\$SGML_CATALOG_FILES" - fi -fi -# /etc/sgml/catalog exists but is not in SGML_CATALOG_FILES, so add it -if [ -f /etc/sgml/catalog ] && \ - [ "\${SGML_CATALOG_FILES#*/etc/sgml/catalog*}" = "\$SGML_CATALOG_FILES" ]; then - SGML_CATALOG_FILES="\$SGML_CATALOG_FILES:/etc/sgml/catalog" -fi -export SGML_CATALOG_FILES -EOF - -while read; do - echo "$REPLY" >> $mydir/.cshrc.incl -done <<EOF -# $thisBinDir is not in PATH, so add it -if ( "\\\`echo \$PATH | grep -v $thisBinDir\\\`" != "" ) then - setenv PATH "$thisBinDir:\$PATH" -endif -if ( ! $\?XML_CATALOG_FILES ) then - setenv XML_CATALOG_FILES "$thisXmlCatalog" -# $thisXmlCatalog is not in XML_CATALOG_FILES, so add it -else if ( "\\\`echo \$XML_CATALOG_FILES | grep -v $thisXmlCatalog\\\`" != "" ) then - setenv XML_CATALOG_FILES "$thisXmlCatalog \$XML_CATALOG_FILES" -endif -endif -# /etc/xml/catalog exists but is not in XML_CATALOG_FILES, so add it -if ( -f /etc/xml/catalog && "\\\`echo \$XML_CATALOG_FILES | grep -v /etc/xml/catalog\\\`" != "" ) then - setenv XML_CATALOG_FILES "\$XML_CATALOG_FILES /etc/xml/catalog" -endif - -endif -if ( ! $\?SGML_CATALOG_FILES ) then - setenv SGML_CATALOG_FILES "$thisSgmlCatalog" -else if ( "\\\`echo \$SGML_CATALOG_FILES | grep -v $thisSgmlCatalog\\\`" != "" ) then - setenv SGML_CATALOG_FILES "$thisSgmlCatalog:\$SGML_CATALOG_FILES" -endif -endif -# /etc/SGML/catalog exists but is not in SGML_CATALOG_FILES, so add it -if ( -f /etc/sgml/catalog && "\\\`echo \$SGML_CATALOG_FILES | grep -v /etc/sgml/catalog\\\`" != "" ) then - setenv SGML_CATALOG_FILES {\$SGML_CATALOG_FILES}:/etc/sgml/catalog -endif -EOF - -if [ -n "$myCatalogManager" ]; then - myCatalogManagerDir=${myCatalogManager%/*} - while read; do - echo "$REPLY" >> $mydir/.profile.incl - done <<EOF - - -if [ -z "\$CLASSPATH" ]; then - CLASSPATH="$myCatalogManagerDir" -else - # $myCatalogManagerDir is not in CLASSPATH, so add it - if [ "\${CLASSPATH#*$myCatalogManagerDir*}" = "\$CLASSPATH" ]; then - CLASSPATH="$myCatalogManagerDir$classPathSeparator\$CLASSPATH" - fi -fi -export CLASSPATH -EOF - - while read; do - echo "$REPLY" >> $mydir/.cshrc.incl - done <<EOF - - -if ( ! $\?CLASSPATH ) then - setenv CLASSPATH "$myCatalogManagerDir" -# $myCatalogManagerDir is not in CLASSPATH, so add it -else if ( "\\\`echo \$CLASSPATH | grep -v $myCatalogManagerDir\\\`" != "" ) then - setenv CLASSPATH "$myCatalogManagerDir$classPathSeparator\$CLASSPATH" -endif -endif -EOF - -fi - -while read; do - echo "$REPLY" >> $mydir/.emacs.el -done <<EOF -(add-hook - 'nxml-mode-hook - (lambda () - (setq rng-schema-locating-files-default - (append '("$thisLocatingRules") - rng-schema-locating-files-default )))) -EOF - -return 0 -} - -updateUserStartupFiles() { - if [ ! "$batchmode" = "Yes" ]; then - cat 1>&2 <<EOF - -NOTE: To source your environment correctly for using the catalog - files in this distribution, you need to update one or more - of your shell startup files. This installer can - automatically make the necessary changes. Or, if you prefer, - you can make the changes manually. - -EOF - else - emit_message - fi - - # if running csh or tcsh, target .cshrc and .tcshrc files for - # update; otherwise, target .bash_* and .profiles - - parent=$(ps -p $PPID | grep "/") - if [ "${parent#*csh}" != "$parent" ] || [ "${parent#*tcsh}" != "$parent" ]; then - myStartupFiles=".cshrc .tcshrc" - appendLine="source $mydir/.cshrc.incl" - else - myStartupFiles=".bash_profile .bash_login .profile .bashrc" - appendLine=". $mydir/.profile.incl" - fi - - for file in $myStartupFiles; do - if [ -f "$HOME/$file" ]; then - dotFileBackup=$HOME/$file.$$.bak - REPLY="" - if [ ! "$batchmode" = "Yes" ]; then - read -s -n1 -p "Update $HOME/$file? [Yes] " - emit_message "$REPLY" - fi - case $REPLY in - [nNqQ]) - cat 1>&2 <<EOF - -NOTE: No change made to $HOME/$file. You either need - to add the following line to it, or manually source - the shell environment for this distribution each - time you want use it. - -$appendLine - -EOF - ;; - *) - lineExists="$(grep "$appendLine" $HOME/$file )" - if [ ! "$lineExists" ]; then - mv $HOME/$file $dotFileBackup || exit 1 - cp $dotFileBackup $HOME/$file || exit 1 - echo "$appendLine" >> $HOME/$file || exit 1 - cat 1>&2 <<EOF -NOTE: Successfully updated the following file: - $HOME/$file - Backup written to: - $dotFileBackup - -EOF - else - cat 1>&2 <<EOF -NOTE: The following file already contains information for this - distribution, so I did not update it. - $HOME/$file - -EOF - fi - ;; - esac - fi - done - if [ -z "$dotFileBackup" ]; then - if [ ! "$batchmode" = "Yes" ]; then - emit_message - fi - cat 1>&2 <<EOF -NOTE: No shell startup files updated. You can source the - environment for this distribution manually, each time you - want to use it, by typing the following. - -$appendLine - -EOF - fi -} - -updateUserDotEmacs() { - if [ -f $thisLocatingRules ]; then - cat 1>&2 <<EOF - -NOTE: This distribution includes a "schema locating rules" file - for Emacs/nXML. To use it, you should update either your - .emacs or .emacs.el file. This installer can automatically - make the necessary changes. Or, if you prefer, you can make - the changes manually. - -EOF - - emacsAppendLine="(load-file \"$mydir/.emacs.el\")" - myEmacsFile= - for file in .emacs .emacs.el; do - if [ -f "$HOME/$file" ]; then - myEmacsFile=$HOME/$file - break - fi - done - if [ ! -f "$myEmacsFile" ]; then - REPLY="" - if [ ! "$batchmode" = "Yes" ]; then - read -s -n1 -p "No .emacs or .emacs.el file. Create one? [No] " - emit_message "$REPLY" - emit_message - fi - case $REPLY in - [yY]) - myEmacsFile=$HOME/.emacs - touch $myEmacsFile - ;; - *) - cat 1>&2 <<EOF -NOTE: No Emacs changes made. To use this distribution with, - Emacs/nXML, you can create a .emacs file and manually add - the following line to it, or you can run it as a command - within Emacs. - -$emacsAppendLine - -EOF - ;; - esac - fi - if [ -n "$myEmacsFile" ]; then - REPLY="" - if [ ! "$batchmode" = "Yes" ]; then - read -s -n1 -p "Update $myEmacsFile? [Yes] " - emit_message "$REPLY" - emit_message - fi - case $REPLY in - [nNqQ]) - cat 1>&2 <<EOF - -NOTE: No change made to $myEmacsFile. To use this distribution - with Emacs/nXML, you can manually add the following line - to your $myEmacsFile, or you can run it as a command - within Emacs. - -$emacsAppendLine - -EOF - ;; - *) - lineExists="$(grep "$emacsAppendLine" $myEmacsFile)" - if [ ! "$lineExists" ]; then - dotEmacsBackup=$myEmacsFile.$$.bak - mv $myEmacsFile $dotEmacsBackup || exit 1 - cp $dotEmacsBackup $myEmacsFile || exit 1 - echo "$emacsAppendLine" >> $myEmacsFile || exit 1 - cat 1>&2 <<EOF -NOTE: Successfully updated the following file: - $myEmacsFile - Backup written to: - $dotEmacsBackup -EOF - else - cat 1>&2 <<EOF - -NOTE: The following file already contains information for this - distribution, so I did not update it. - $myEmacsFile - -EOF - fi - ;; - esac - fi -fi -} - -uninstall() { - if [ ! "$batchmode" = "Yes" ]; then - cat 1>&2 <<EOF - -NOTE: To "uninstall" this distribution, the changes made to your - CatalogManagers.properties, startup files, and/or .emacs - file need to be reverted. This uninstaller can automatically - revert them. Or, if you prefer, you can revert them manually. - -EOF - fi - - if [ "$osName" = "Cygwin" ]; then - thisXmlCatalog=$thisJavaXmlCatalog - fi - - # make "escaped" version of PWD to use with sed and grep - escapedPwd=$(echo $mydir | sed "s#/#\\\\\/#g") - - # check to see if a non-empty value for catalogManager was fed - # to uninstaller. - if [ -n ${1#--catalogManager=} ]; then - myCatalogManager=${1#--catalogManager=} - catalogBackup="$myCatalogManager.$$.bak" - catalogsLine=$(grep "^catalogs=" $myCatalogManager) - if [ "$catalogsLine" ] ; then - if [ "${catalogsLine#*$thisXmlCatalog*}" != "$catalogsLine" ]; then - REPLY="" - if [ ! "$batchmode" = "Yes" ]; then - read -s -n1 -p "Revert $myCatalogManager? [Yes] " - emit_message "$REPLY" - fi - case $REPLY in - [nNqQ]*) - cat 1>&2 <<EOF - -NOTE: No change made to $myCatalogManager. You need to manually - remove the following path from the "catalog=" line. - - $thisXmlCatalog - -EOF - ;; - *) - mv $myCatalogManager $catalogBackup || exit 1 - sed "s#^catalogs=\(.*\)$thisXmlCatalog\(.*\)\$#catalogs=\1\2#" $catalogBackup \ - | sed 's/;\+/;/' | sed 's/;$//' | sed 's/=;/=/' > $myCatalogManager || exit 1 - cat 1>&2 <<EOF -NOTE: Successfully updated the following file: - $myCatalogManager - Backup written to: - $catalogBackup - -EOF - ;; - esac - else - emit_message "NOTE: No data for this distribution found in:" - emit_message " $myCatalogManager" - emit_message - fi - else - cat 1>&2 <<EOF -NOTE: No data for this distribution was found in the following - file, so I did not revert it. - $myCatalogManager -EOF - fi - fi - - if [ -n "$myEmacsFile" ]; then - # check to see if a non-empty value for --dotEmacs file was fed - # to uninstaller. - if [ -n ${2#--dotEmacs=} ]; then - myEmacsFile=${2#--dotEmacs=} - revertLine="(load-file \"$escapedPwd\/\.emacs\.el\")" - loadLine="$(grep "$revertLine" "$myEmacsFile")" - if [ -n "$loadLine" ]; then - emit_message - REPLY="" - if [ ! "$batchmode" = "Yes" ]; then - read -s -n1 -p "Revert $myEmacsFile? [Yes] " - emit_message "$REPLY" - fi - case $REPLY in - [nNqQ]*) - cat 1>&2 <<EOF - -NOTE: No change made to $myEmacsFile. You need to manually -remove the following line. - -(load-file \"$mydir/.emacs.el\") - -EOF - ;; - *) - dotEmacsBackup=$myEmacsFile.$$.bak - sed -e "/$revertLine/d" -i".$$.bak" $myEmacsFile || exit 1 - cat 1>&2 <<EOF -NOTE: successfully reverted the following file: - $myEmacsFile - Backup written to: - $dotEmacsBackup - -EOF - ;; - esac - else - emit_message "NOTE: No data for this distribution found in:" - emit_message " $myEmacsFile" - fi - fi - fi - - # check all startup files - myStartupFiles=".bash_profile .bash_login .profile .bashrc .cshrc .tcshrc" - for file in $myStartupFiles; do - if [ -e "$HOME/$file" ]; then - case $file in - .tcshrc|.cshrc) - revertLine="source $mydir/.cshrc.incl" - revertLineEsc="source $escapedPwd\/\.cshrc\.incl" - ;; - *) - revertLine=". $mydir/.profile.incl" - revertLineEsc="\. $escapedPwd\/\.profile\.incl" - ;; - esac - lineExists="$(grep "$revertLineEsc" $HOME/$file )" - if [ "$lineExists" ]; then - REPLY="" - if [ ! "$batchmode" = "Yes" ]; then - read -s -n1 -p "Update $HOME/$file? [Yes] " - emit_message "$REPLY" - fi - case $REPLY in - [nNqQ]*) - cat 1>&2 <<EOF - -NOTE: No change made to $HOME/$file. You need to manually remove - the following line from it. - - $revertLine - -EOF - ;; - *) - dotFileBackup=$HOME/$file.$$.bak - sed -e "/$revertLineEsc/d" -i".$$.bak" $HOME/$file || exit 1 - cat 1>&2 <<EOF -NOTE: Successfully updated the following file: - $HOME/$file - Backup written to: - $dotFileBackup - -EOF - ;; - esac - else - emit_message "NOTE: No data for this distribution found in:" - emit_message " $HOME/$file" - emit_message - fi - fi - done - removeOldFiles - emit_message "Done. Deleted uninstall.sh file." - rm -f $mydir/test.sh || exit 1 - rm -f $mydir/uninstall.sh || exit 1 -} - -writeUninstallFile() { - uninstallFile=$mydir/uninstall.sh - echo '#!/bin/bash' > $uninstallFile || exit 1 - echo 'mydir=$(cd -P $(dirname $0) && pwd -P)' >> $uninstallFile || exit 1 - echo "\$mydir/install.sh \\" >> $uninstallFile || exit 1 - echo " --uninstall \\" >> $uninstallFile || exit 1 - echo " --catalogManager=$myCatalogManager \\" >> $uninstallFile || exit 1 - echo " --dotEmacs='$myEmacsFile' \\" >> $uninstallFile || exit 1 - echo ' $@' >> $uninstallFile || exit 1 - chmod 755 $uninstallFile || exit 1 -} - -writeTestFile() { - testFile=$mydir/test.sh - echo "#!/bin/bash" > $testFile || exit 1 - echo 'mydir=$(cd -P $(dirname $0) && pwd -P)' >> $testFile || exit 1 - echo '$mydir/install.sh --test' >> $testFile || exit 1 - chmod 755 $testFile || exit 1 -} - -printExitMessage() { - cat 1>&2 <<EOF -To source your shell environment for this distribution, type the -following: - -$appendLine - -EOF -} - -checkForResolver() { - resolverResponse="$(java org.apache.xml.resolver.apps.resolver uri -u foo 2>/dev/null)" - if [ -z "$resolverResponse" ]; then - cat 1>&2 <<EOF - -NOTE: Your environment does not seem to contain the Apache XML - Commons Resolver; without that, you can't use XML catalogs - with Java applications. For more information, see the "How - to use a catalog file" section in Bob Stayton's "DocBook - XSL: The Complete Guide" - - http://sagehill.net/docbookxsl/UseCatalog.html - -EOF - fi -} - -emitNoChangeMsg() { - cat 1>&2 <<EOF - -NOTE: No changes were made to CatalogManagers.properties. To - provide your Java tools with XML catalog information for - this distribution, you will need to make the appropriate - changes manually. - -EOF -} - -testCatalogs() { - if [ ! -f "$thisXmlCatalog" ]; then - cat 1>&2 <<EOF - -FATAL: $thisXmlCatalog file needed but not found. Stopping. -EOF - exit - fi - - if [ -z "$XML_CATALOG_FILES" ]; then - emit_message - emit_message "WARNING: XML_CATALOG_FILES not set. Not testing with xmlcatalog." - else - xmlCatalogResponse="$(xmlcatalog 2>/dev/null)" - if [ -z "$xmlCatalogResponse" ]; then - cat 1>&2 <<EOF - -WARNING: Cannot locate the "xmlcatalog" command. Make sure that - you have libxml2 and its associated utilities installed. - - http://xmlsoft.org/ - -EOF - else - emit_message "Testing with xmlcatalog..." - # read in pathname-uri pairs from .urilist file - while read pair; do - if [ ! "${pair%* *}" = "." ]; then - path=$mydir/${pair%* *} - else - path=$mydir/ - fi - uri=${pair#* *} - emit_message - emit_message " Tested: $uri" - for catalog in $XML_CATALOG_FILES; do - response="$(xmlcatalog $catalog $uri| grep -v "No entry")" - if [ -n "$response" ]; then - if [ "$response" = "$path" ]; then - emit_message " Result: $path" - break - else - emit_message " Result: FAILED" - fi - fi - done - done < $mydir/.urilist - fi - fi - - if [ -z "$CLASSPATH" ]; then - emit_message - emit_message "NOTE: CLASSPATH not set. Not testing with Apache XML Commons Resolver." - else - if [ "$(checkForResolver)" ]; then - checkForResolver - else - emit_message - emit_message "Testing with Apache XML Commons Resolver..." - # read in pathname-uri pairs from .urilist file - while read pair; do - if [ ! "${pair%* *}" = "." ]; then - path=$mydir/${pair%* *} - else - path=$mydir/ - fi - uri=${pair#* *} - emit_message - emit_message " Tested: $uri" - if [ ${uri%.dtd} != $uri ]; then - response="$(java org.apache.xml.resolver.apps.resolver system -s $uri | grep "Result")" - else - response="$(java org.apache.xml.resolver.apps.resolver uri -u $uri | grep "Result")" - fi - if [ "$response" ]; then - if [ "${response#*$path}" != "$response" ]; then - emit_message " Result: $path" - else - emit_message " Result: FAILED" - fi - echo - fi - done < $mydir/.urilist - fi - fi -} - -# get opts and execute appropriate function -case $1 in - *-uninstall) - uninstall $2 $3 $4 - ;; - *-test) - testCatalogs - ;; - *) - main - ;; -esac - -# Copyright -# --------- -# Copyright 2005-2007 Michael(tm) Smith <smith@sideshowbarker.net> -# -# Permission is hereby granted, free of charge, to any person -# obtaining a copy of this software and associated documentation -# files (the "Software"), to deal in the Software without -# restriction, including without limitation the rights to use, copy, -# modify, merge, publish, distribute, sublicense, and/or sell copies -# of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be -# included in all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT -# HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -# DEALINGS IN THE SOFTWARE. - -# vim: number diff --git a/docbook-xsl-1.75.2/javahelp/javahelp.xsl b/docbook-xsl-1.75.2/javahelp/javahelp.xsl deleted file mode 100644 index 593e9b0..0000000 --- a/docbook-xsl-1.75.2/javahelp/javahelp.xsl +++ /dev/null @@ -1,625 +0,0 @@ -<?xml version="1.0"?> -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" - xmlns:doc="http://nwalsh.com/xsl/documentation/1.0" - xmlns:ng="http://docbook.org/docbook-ng" - xmlns:db="http://docbook.org/ns/docbook" - xmlns:exsl="http://exslt.org/common" - version="1.0" - exclude-result-prefixes="doc ng db exsl"> - -<xsl:import href="../html/chunk.xsl"/> - -<xsl:output method="html"/> - -<!-- ******************************************************************** - $Id: javahelp.xsl 8400 2009-04-08 07:44:54Z bobstayton $ - ******************************************************************** - - This file is part of the XSL DocBook Stylesheet distribution. - See ../README or http://docbook.sf.net/release/xsl/current/ for - copyright and other information. - - ******************************************************************** --> - -<!-- ==================================================================== --> - -<xsl:template match="/"> - <!-- * Get a title for current doc so that we let the user --> - <!-- * know what document we are processing at this point. --> - <xsl:variable name="doc.title"> - <xsl:call-template name="get.doc.title"/> - </xsl:variable> - <xsl:choose> - <!-- Hack! If someone hands us a DocBook V5.x or DocBook NG document, - toss the namespace and continue. Use the docbook5 namespaced - stylesheets for DocBook5 if you don't want to use this feature.--> - <xsl:when test="$exsl.node.set.available != 0 - and (*/self::ng:* or */self::db:*)"> - <xsl:call-template name="log.message"> - <xsl:with-param name="level">Note</xsl:with-param> - <xsl:with-param name="source" select="$doc.title"/> - <xsl:with-param name="context-desc"> - <xsl:text>namesp. cut</xsl:text> - </xsl:with-param> - <xsl:with-param name="message"> - <xsl:text>stripped namespace before processing</xsl:text> - </xsl:with-param> - </xsl:call-template> - <xsl:variable name="nons"> - <xsl:apply-templates mode="stripNS"/> - </xsl:variable> - <xsl:call-template name="log.message"> - <xsl:with-param name="level">Note</xsl:with-param> - <xsl:with-param name="source" select="$doc.title"/> - <xsl:with-param name="context-desc"> - <xsl:text>namesp. cut</xsl:text> - </xsl:with-param> - <xsl:with-param name="message"> - <xsl:text>processing stripped document</xsl:text> - </xsl:with-param> - </xsl:call-template> - <xsl:apply-templates select="exsl:node-set($nons)"/> - </xsl:when> - <xsl:otherwise> - <xsl:choose> - <xsl:when test="$rootid != ''"> - <xsl:choose> - <xsl:when test="count(key('id',$rootid)) = 0"> - <xsl:message terminate="yes"> - <xsl:text>ID '</xsl:text> - <xsl:value-of select="$rootid"/> - <xsl:text>' not found in document.</xsl:text> - </xsl:message> - </xsl:when> - <xsl:otherwise> - <xsl:message>Formatting from <xsl:value-of select="$rootid"/></xsl:message> - <xsl:apply-templates select="key('id',$rootid)" mode="process.root"/> - </xsl:otherwise> - </xsl:choose> - </xsl:when> - <xsl:otherwise> - <xsl:apply-templates select="/" mode="process.root"/> - </xsl:otherwise> - </xsl:choose> - <xsl:for-each select="/"> <!-- This is just a hook for building profiling stylesheets --> - <xsl:call-template name="helpset"/> - <xsl:call-template name="helptoc"/> - <xsl:call-template name="helpmap"/> - <xsl:call-template name="helpidx"/> - </xsl:for-each> -</xsl:otherwise> -</xsl:choose> -</xsl:template> - -<xsl:template name="header.navigation"> -</xsl:template> - -<xsl:template name="footer.navigation"> -</xsl:template> - -<!-- ==================================================================== --> - -<xsl:template name="helpset"> - <xsl:call-template name="write.chunk.with.doctype"> - <xsl:with-param name="filename" select="concat($base.dir,'jhelpset.hs')"/> - <xsl:with-param name="method" select="'xml'"/> - <xsl:with-param name="indent" select="'yes'"/> - <xsl:with-param name="doctype-public" select="'-//Sun Microsystems Inc.//DTD JavaHelp HelpSet Version 1.0//EN'"/> - <xsl:with-param name="doctype-system" select="'http://java.sun.com/products/javahelp/helpset_1_0.dtd'"/> - <xsl:with-param name="content"> - <xsl:call-template name="helpset.content"/> - </xsl:with-param> - <xsl:with-param name="quiet" select="$chunk.quietly"/> - </xsl:call-template> -</xsl:template> - -<xsl:template name="helpset.content"> - <xsl:variable name="title"> - <xsl:apply-templates select="." mode="title.markup"/> - </xsl:variable> - - <helpset version="1.0"> - <title> - <xsl:value-of select="normalize-space($title)"/> - - - - - top - - - - - - TOC - - javax.help.TOCView - jhelptoc.xml - - - - Index - - javax.help.IndexView - jhelpidx.xml - - - - Search - - javax.help.SearchView - JavaHelpSearch - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - , - - - - , - - - - - - - - - - - - - - - - - - - - - bullet - - - - © - - - - TM - - - - - ® - (SM) -   - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/javahelp/profile-javahelp.xsl b/docbook-xsl-1.75.2/javahelp/profile-javahelp.xsl deleted file mode 100644 index eabac3e..0000000 --- a/docbook-xsl-1.75.2/javahelp/profile-javahelp.xsl +++ /dev/null @@ -1,549 +0,0 @@ - - - - - - - - - - - - - -Note: namesp. cut : stripped namespace before processingNote: namesp. cut : processing stripped document - - - - - - - - - - - - - - - ID ' - - ' not found in document. - - - - Formatting from - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - <xsl:value-of select="normalize-space($title)"/> - - - - - top - - - - - - TOC - - javax.help.TOCView - jhelptoc.xml - - - - Index - - javax.help.IndexView - jhelpidx.xml - - - - Search - - javax.help.SearchView - JavaHelpSearch - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - , - - - - , - - - - - - - - - - - - - - - - - - - - - bullet - - - - © - - - - TM - - - - - ® - (SM) -   - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/lib/lib.xsl b/docbook-xsl-1.75.2/lib/lib.xsl deleted file mode 100644 index 5eee486..0000000 --- a/docbook-xsl-1.75.2/lib/lib.xsl +++ /dev/null @@ -1,480 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - http://... - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Unrecognized unit of measure: - - . - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Unrecognized unit of measure: - - . - - - - - - - filename - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - / - - - - - - - - - - - - / - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/manpages/ChangeLog.20020917 b/docbook-xsl-1.75.2/manpages/ChangeLog.20020917 deleted file mode 100644 index c170cc0..0000000 --- a/docbook-xsl-1.75.2/manpages/ChangeLog.20020917 +++ /dev/null @@ -1,195 +0,0 @@ -Note: This changelog is a record of descriptions of all changes -made to the DocBook XSL manpages stylesheets during the time when -they were maintained in their original home in the -[cvs]/docbook/contrib/xsl/db2man area of the DocBook Project -source-code repository at Sourceforge; that is, from October 2001 -(when they were contributed to the project by Martijn van Beers) -until September 2002 (when they were moved to the -[cvs]/docbook/xsl/manpages area and became a standard part of all -subsequent DocBook XSL Stylesheets releases). - -2002-09-17 Norman Walsh - - * README, db2man.xsl, lists.xsl, sect23.xsl, synop.xsl, xref.xsl: - Moved to docbook/xsl/manpages - - * db2man.xsl, synop.xsl: Patch from Joe Orton - -2002-06-16 - - * db2man.xsl: commit patch sent by Joe Orton: - - This patch adds support for using the productname, date and title out of - a if one is present, rather than having to add each of - these individually for every refentry. - - * db2man.xsl: Tim Waugh sent: - - This patch normalizes space in each refname before displaying it in - the name section. - -2002-05-21 - - * xref.xsl: from Joe Orton: - this patch allows cross-referencing to a specific refname. I - need this since I'm documenting several different (but related) - functions per refentry, and want to cross-reference them individually, - rather than just by the title used for the refentry as a whole. - -2002-05-17 - - * lists.xsl: apply glosslist support patch from twaugh - -2002-05-15 - - * db2man.xsl: slightly sanitize the filenames we generate. again from twaugh - - * db2man.xsl: Apply twaugh's fix for making the entity transform stuff work - -2002-05-14 - - * db2man.xsl: generalize the tip template for all admonitions - (caution,important,note,tip,warning) - - * db2man.xsl: Apply Joe Orton's patch, modified to be indented. Also show "Tip" - in the title. - - so if foo, you get - Tip: foo - - * synop.xsl: rewrote funcprototype. It used to convert all its children to a single - string and the split it up again through recursion. Now has a nice - foreach loop for the paramdefs, which seems much cleaner than throwing - everything in a big string before processing it. - -2002-05-10 - - * db2man.xsl: add support for simpara - - * db2man.xsl, lists.xsl: fix refsect2 titles - - * synop.xsl: also from twaugh: - - I found some input that goes wrong with the synop.xsl we have in CVS: - - - -o FILE - --output=FILE - - - It gets rendered as (with *bold* and _italic_): - - [*-o FILE* | *--output=FILE*] - - The desired markup should look like: - The following macro does the trick: - - [\fB-o \fIFILE\fR\fR | \fB--output=\fIFILE\fR\fR] - - The trouble is that the named template 'bold' uses value-of, and so - strips of its significance. - - Another thing I found is that the arg/replaceable template is - superfluous altogether: db2man.xsl has a 'replaceable' template which - does the same thing. - - Here is a patch to make those two modifications. - - NOTE TO SELF: must try to fix bold template so we can use it everywhere - -2002-05-09 - - * db2man.xsl: oops, removed too much - - * db2man.xsl: remove stuff that's apparently left-over from sect23.xsl - - * db2man.xsl, lists.xsl, synop.xsl: batch of patches from twaugh: - * This patch (based on one from Jirka Kosek) adds support for - block-level elements inside s---s for example, or lists. - * This patch replaces entities (like '舒') with sensible - characters or groups of characters. - * This patch adds support for sbr. - * This patch normalizes spaces in varlistentry terms. - * This patch normalizes spaces in terminal varlistentry terms. - * This patch allows variable lists to be nested (once). - * This patch prevents variable list item paragraphs from merging into - one another. - * This patch improves the rendering of itemized lists, and adds support - for ordered lists and procedures. - * This patch makes some small adjustments to group/arg: don't put extra - spaces in where they aren't needed, and normalize the space of $arg. - * This patch makes adjustments to cmdsynopsis elements. In particular, - they can now be wrapped if no is provided. - * This patch adds funcsynopsis//* support. Again, wrapping is done - automatically. - - * synop.xsl: make synopsises work for --arg=foo s too - - * synop.xsl: remove unneccesary adding of whitespace for arg/replaceable - -2002-05-01 - - * db2man.xsl: This patch adds support for multiple refnames. - - (another twaugh patch) - - * db2man.xsl: modified ulink patch from twaugh. Be nice to content-less ulinks. But we - don't accomodate silly people who don't understand ulink and put the - url as the content too. - - * db2man.xsl, synop.xsl: db2man.xsl: - * temporarily add some params that chunker.xsl needs - * fix bold/italic templates - * update calls to bold/italic templates for new syntax - synop.xsl: - * add support for synopfragment - * update calls to bold/italic templates for new syntax - -2002-04-30 - - * db2man.xsl: Add twaug's patch for xref support - - * db2man.xsl: This patch adds support for: - - - Multiple authors. - - A (single) man page editor. - - (another patch from twaugh) - - * db2man.xsl: more twaugh patches: - - Use refentrytitle, not refname[1], for title. - - Upper-case it. - - Use date, productname, and title. - - Pick up author from main document if not contained in refentry. - - Use refname[1] for man page filename, not refentrytitle. - - * db2man.xsl: add varname support - - * db2man.xsl: This patch makes userinput (an inline element) have inline formatting. - - * db2man.xsl: This patch adds support for the top-level document being something - other than an article. - - It also emits a helpful warning if no refentry elements are found. - - * db2man.xsl: next twaugh patch: - Instead of writing to stdout, create a file for each - refentry. Plus, for bonus points, a file for each additional refname - within that entry (pointing to the main page). - - * db2man.xsl: Add named templates for bold-ifying and italicizing stuff. Inspired - by yet another twaugh patch - - * db2man.xsl, lists.xsl, sect23.xsl: consistently use instead of a newline - - * db2man.xsl, synop.xsl: * add support for informalexample, screen, errorcode, constant, type, - quote, programlisting and citerefentry - * use the 'bold' and 'italic' named templates - - * xref.xsl: New file. - -2001-12-01 Norman Walsh - - * README, db2man.xsl, lists.xsl, sect23.xsl, synop.xsl: - New file. - diff --git a/docbook-xsl-1.75.2/manpages/block.xsl b/docbook-xsl-1.75.2/manpages/block.xsl deleted file mode 100644 index 2341b5d..0000000 --- a/docbook-xsl-1.75.2/manpages/block.xsl +++ /dev/null @@ -1,399 +0,0 @@ - - - - - - - - - - n - - .sp - - .RS 4 - - .BM yellow - - - .ps +1 - - .ps -1 - .br - - .sp .5v - - .EM yellow - - .RE - - - - - - - .PP - - - - - - - . - - - - - - - - - - - - - - - - - - - - - .sp - - .RS 4n - - - - - .PP - - - - - - - - .RE - - - - - - - - - .sp - - - - - - - - - - - - - - - - - - Yes - - - - - - - - - - - - Yes - - - - - - - - - - - - - - - - .sp - - - - - - - .RS - - - - - - - - - - - - - - - - - - - - - - - - - - - .ft - - - - .nf - - - .fi - - .ft - - - - - .nf - - - - - - - - - - - - - t - - .sp -1 - - .BB lightgray - - adjust-for-leading-newline - - - - .sp -1 - - - .BB lightgray - - - - - - - .EB lightgray - - adjust-for-leading-newline - - t - - - - - - .sp 1 - - - - .EB lightgray - - - - - - - - - - - .fi - - - - - - - .RE - - - - - - .sp - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - before - - - - - - - .PP - - - - - - - - - - .sp - - .RS - - - - - - - - .RE - - - - [IMAGE] - - - - - - [ - - ] - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/manpages/charmap.groff.xsl b/docbook-xsl-1.75.2/manpages/charmap.groff.xsl deleted file mode 100644 index a9492fa..0000000 --- a/docbook-xsl-1.75.2/manpages/charmap.groff.xsl +++ /dev/null @@ -1,6013 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/manpages/docbook.xsl b/docbook-xsl-1.75.2/manpages/docbook.xsl deleted file mode 100644 index 9adf7c6..0000000 --- a/docbook-xsl-1.75.2/manpages/docbook.xsl +++ /dev/null @@ -1,310 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Note - - - namesp. cut - - - stripped namespace before processing - - - - - - - Note - - - namesp. cut - - - processing stripped document - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - MAN.MANIFEST - - - - - - - - - - - Erro - - - no refentry - - - No refentry elements found - - in " - - - - ... - - - - - - " - - . - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - '\" t - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - .\" ----------------------------------------------------------------- - .\" * MAIN CONTENT STARTS HERE * - .\" ----------------------------------------------------------------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/manpages/endnotes.xsl b/docbook-xsl-1.75.2/manpages/endnotes.xsl deleted file mode 100644 index 360692e..0000000 --- a/docbook-xsl-1.75.2/manpages/endnotes.xsl +++ /dev/null @@ -1,584 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Warn - - - endnote - - - - Bad: - - - - - [ - - ] - in source - - - - Note - - - endnote - - - - Has: - - / - - - - - Note - - - endnote - - - - Fix: - - / - para/ - - - - - - - - - - - - - - - - \% - - - - - - - - - - - \m[blue] - - - - - - - - - - - - - - - - - - - - - - - - - - - Warn - - - link font - - - invalid $man.font.links value: - ' - - ' - - - - - - - \m[] - - - - - - - \&\s-2\u[ - - ]\d\s+2 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - .IP - " - - - . - - - - - - - - " - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - .RS - - - - - - - - - - \% - - - - - - .RE - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/manpages/html-synop.xsl b/docbook-xsl-1.75.2/manpages/html-synop.xsl deleted file mode 100644 index 06c3eb2..0000000 --- a/docbook-xsl-1.75.2/manpages/html-synop.xsl +++ /dev/null @@ -1,1567 +0,0 @@ - - - - - - - - - - - - -
    - -

    - - - - - - - - - - - - -

    -
    -
    - - - -. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -. - - - - - - - - - - - - - ( - - ) - -   - - - - - - - - - - - - - - - - - - - ( - - ) - - - - - - - - - - - - - - - - - - - - - - - .sp -.nf -
    -    
    -    
    -  
    .fi - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    - - - -. - - - -

    -
    - - - - - - ( - - - - - - - - - - - - - - - - ) - ; - - - - ... - ) - ; - - - - - - - , - - - ) - ; - - - - - - - - - - - - - - - - - - - - - -. - - - - - ; - - - - - - - - - - - - - - - - - - - ( - - ) - - - - - - - - - - - - - - - - - -
    - -
     
    - -
    - -
    -
    -
     
    -
    - - - - - - ( - - - - - - - - - - - - - - - - - ) - ; - -   - - - - - ... - ) - ; - -   - - - - - - - - , - - - ) - ; - - - -   - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -   - - - - - - - - - - - - - - - - - - - - - - - - - - - - -   - - - - - - ; - - - - - - - - - - - - - - - - - - - - - - - - ( - - ) - ; - - - - - - -

    - -

    -
    - - - - - - ( - - - - - - - - - - - - - - - - void) - ; - - - - ... - ) - ; - - - - - - - , - - - ) - ; - - - - - - - - - - - - - - - - - - - - - ( - - ) - - - - - - - - - - - - - - - - - -
    - -
     
    -
     
    -
    - - - - - - ( - - - - - - - - - - - - - - - - - void) - ; - -   - - - - - ... - ) - ; - -   - - - - - - - - , - - - ) - ; - - - - - - - - - - - - - - - - - - - - - - ( - - ) - - - - -java - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Unrecognized language on - - : - - - - - - - - - - - - -. - - - - - - - - - .sp -.nf -
    -    
    -    
    -    
    -       extends
    -      
    -      
    -        
    -.
    -
    -	    
    -      
    -    
    -    
    -      implements
    -      
    -      
    -        
    -.
    -
    -	    
    -      
    -    
    -    
    -      throws
    -      
    -    
    -     {
    -    
    -.
    -
    -    
    -    }
    -  
    .fi - -
    - - - - - - - - - , - - - - - - - - - - - - - - - - -   - - - - - - - , - - - - - - - - - - , - - - - - - - - - - , - - - - - - - - - - - -    - - - ; - - - - - - - - -   - - - - - - - -   - - - - - - - =  - - - - - - - - void  - - - - - - - - - - - - 0 - - , - -. - - - -   - - - - - - - - - - - - - - - - - - - - - - - -    - - - - - - - - - - - - - - - ( - - - - ) - - -. - -     throws  - - - - - - - ; - - - - - - - - .sp -.nf -
    -    
    -    
    -    
    -      : 
    -      
    -      
    -        
    -.
    -
    -	    
    -      
    -    
    -    
    -       implements
    -      
    -      
    -        
    -.
    -
    -	    
    -      
    -    
    -    
    -       throws
    -      
    -    
    -     {
    -    
    -.
    -
    -    
    -    }
    -  
    .fi - -
    - - - - - - - - , - - - - - - - - - - - - -   - - - - - - - , - - - - - - - - - - , - - - - - - - - - - , - - - - - - - - - - - -    - - - ; - - - - - - - - -   - - - - - - - -   - - - - - - - =  - - - - - - - - void  - - - - - - - - - - - - - , - - - - - - - - - - - - - - - - - - - - - - -    - - - - - - - - - - ( - - ) - - -. - -     throws  - - - - - - - ; - - - - - - - - .sp -.nf -
    -    
    -    interface 
    -    
    -    
    -      : 
    -      
    -      
    -        
    -.
    -
    -	    
    -      
    -    
    -    
    -       implements
    -      
    -      
    -        
    -.
    -
    -	    
    -      
    -    
    -    
    -       throws
    -      
    -    
    -     {
    -    
    -.
    -
    -    
    -    }
    -  
    .fi - -
    - - - - - - - - , - - - - - - - - - - - - -   - - - - - - - , - - - - - - - - - - , - - - - - - - - - - , - - - - - - - - - - - -    - - - ; - - - - - - - - -   - - - - - - - -   - - - - - - - =  - - - - - - - - void  - - - - - - - - - - - - - , - - - - - - - - - - - - - - - - - - - - - -    - - - - - - - - - - ( - - ) - - -. - -     raises( - - ) - - - - - - ; - - - - - - - - .sp -.nf -
    -    
    -    package 
    -    
    -    ;
    -    
    -.
    -
    -
    -    
    -      @ISA = (
    -      
    -      );
    -      
    -.
    -
    -    
    -
    -    
    -  
    .fi - -
    - - - - - - - - , - - - - - - - - - - - - -   - - - - - - - , - - - - - - - - - - , - - - - - - - - - - , - - - - - - - - - - - -    - - - ; - - - - - - - - -   - - - - - - - -   - - - - - - - =  - - - - - - - - void  - - - - - - - - - - - - - , - - - - - - - - - - - - - - - - - - - - - - sub - - - { ... }; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - diff --git a/docbook-xsl-1.75.2/manpages/info.xsl b/docbook-xsl-1.75.2/manpages/info.xsl deleted file mode 100644 index 6698fb9..0000000 --- a/docbook-xsl-1.75.2/manpages/info.xsl +++ /dev/null @@ -1,800 +0,0 @@ - - - - - - - - - - - - - - - - \n(zqu - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - " - - - - " - - - - - - - - - - " - - - - " - - - - - - - - - - - - - - " - - " - - - - " - - " - - - - - - - - - - - - - - - - - - - - Documentation - - - DOCUMENTATION - - - - - - - - - - [see the - - section] - - - - - - [FIXME: author] [see http://docbook.sf.net/el/author] - - - Warn - - meta author - - no refentry/info/author - - - - Note - - meta author - - see http://docbook.sf.net/el/author - - - - Warn - - meta author - - no author data, so inserted a fixme - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - < - - - - - - - - - - - - - - - > - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Author - - - Authors - - - - - - - - - - - - - - - - - .PP - - - - - - - - - - - .br - - - - - - - - - - - - - - .PP - - - - - - - - - - - - - .PP - - - - - - - - - - - - - .PP - - - - - - - - - - - - - - - .RS - - - - - - - - - . - .RE - - - - - - - - - - - - - - - - - - <\& - - - - - - - - - - - - - - - \&> - - - - - - - , - - - - - - - - - - - - - - - .br - - - - - - - - - - , - - - - - - - - - - - .br - - - - - - - - - - - - .br - - - - - - - - - - - - - - - - - - - - - - - - - Warn - - AUTHOR sect. - - no personblurb|contrib for - - - - - Note - - AUTHOR sect. - - see see http://docbook.sf.net/el/contrib - - - - Note - - AUTHOR sect. - - see see http://docbook.sf.net/el/personblurb - - - - - - - - - - .RS - - - - - - - - - . - .RE - - - - .RS - - - - - - - - - . - .RE - - - - - - - - .RS - - - - - - - - - . - .RE - - - - - - - - - - - - - - - - - - - - - - - - - - - .RE - - - - - - - - - - . - - - - - - - - - - - - - - - - .RE - - - - - - - - - - - .RS - - - - - - - - - - - - - .PP - - - - - .br - - - - - - - - - - - - - - - - - - - - - Copyright - - - - .br - - - - - - - - - - - .br - - - - - .sp - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/manpages/inline.xsl b/docbook-xsl-1.75.2/manpages/inline.xsl deleted file mode 100644 index 56ca4c5..0000000 --- a/docbook-xsl-1.75.2/manpages/inline.xsl +++ /dev/null @@ -1,219 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ( - - ) - - - - - - - - - - - - - - - - - - © - - - ® - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - .\" - - - - - - - - - - : - - - - - - - - .\" - - - - - - diff --git a/docbook-xsl-1.75.2/manpages/lists.xsl b/docbook-xsl-1.75.2/manpages/lists.xsl deleted file mode 100644 index a68eca8..0000000 --- a/docbook-xsl-1.75.2/manpages/lists.xsl +++ /dev/null @@ -1,608 +0,0 @@ - - - - - - - - - - - - - - - - \n(zqu - - - - - - - - - - - - - - .sp - - - - - - - - - - - .PP - - - - - - - - - - - .PP - - - - - - - - - - - - - - - - - - - - .br - - - - - - .RS - - - - - - - .RE - - - - - - - - - .sp - - - - - - - - - - - - - - - .sp - - .RS - - - - - - - - - - - \h'- - - - 0 - - - - \n(INu - - - ' - - \h'+ - - - 0 - - - - \n(INu-1 - - - '\c - - - - - - - .sp -1 - .IP \(bu 2.3 - - - - - - .RE - - - - - .sp - - .RS - - - - - - - - - - - \h'- - - - 0 - - - - \n(INu+3n - - - ' - - - - - \h'+ - - - 0 - - - - 1n - - - '\c - - - - - - - .sp -1 - .IP " - - - - - " 4.2 - - - - - - .RE - - - - - - .PP - - - - - - - - - - - - - - - - .sp - .RE - - - - - - .PP - - - - - - - - - .RS - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - , - - - - - - - - - - - - - - - - - .RS - - - - - - - - .RE - - - - - - - - - - .PP - - - - - - - .\" line length increase to cope w/ tbl weirdness - .ll +(\n(LLu * 62u / 100u) - - .TS - - - - - - l - - - . - - - - - - - - - - - - - - .TE - .\" line length decrease back to previous value - .ll -(\n(LLu * 62u / 100u) - - .sp - - - - - - - - - - - - - - - - - - - - - - - - - - - - T{ - - - - - T} - - - - - - - - - - - - - - - - - - - - - - - - - - - .TS - tab(:); - - - - r lw(\n(.lu*75u/100u). - - .TE - - - - - - - - - - - - - - \h'-2n': - - - T{ - - T} - - - - - - - - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ??? - - - - - - - - - - \ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ??? - - - - - - - - - \fB( - - )\fR - - - - - - - \fB - - .\fR - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/manpages/other.xsl b/docbook-xsl-1.75.2/manpages/other.xsl deleted file mode 100644 index ebf617f..0000000 --- a/docbook-xsl-1.75.2/manpages/other.xsl +++ /dev/null @@ -1,869 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ - - - - - \e - - - - - - - - . - \&. - - - - - - - - - - \- - - - - - - - - ' - \' - - - - - - - -   - - - - - - - - - - - - - - - - - - - - \ \& - - - - - - - - - - - - - - - - .\" Title: - - - - - .\" Author: - - - - - - - - - - .\" Generator: DocBook - - v - - - - <http://docbook.sf.net/> - - .\" Date: - - - - - .\" Manual: - - - - - .\" Source: - - - - - .\" Language: - - - .\" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - .TH " - - - - - - - - - - - - - " " - - " " - - - - - - - " " - - - - - - - - - - - - " " - - - - - - - - - - - - " - - - - - - - - - - - - .\" ----------------------------------------------------------------- - .\" * set default formatting - .\" ----------------------------------------------------------------- - - .\" disable hyphenation - .nh - - - - - .\" disable justification - (adjust text to left margin only) - .ad l - - - .\" store initial "default indentation value" - .nr zq \n(IN - .\" adjust default indentation - .nr IN - - - .\" adjust indentation of SS headings - .nr SN \n(IN - - - - - - .\" enable line breaks after slashes - .cflags 4 / - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Note: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Note: - (soelim stub) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Note: - (manifest file) - - - - - - - - - - - - - .\" ----------------------------------------------------------------- - .\" * (re)Define some macros - .\" ----------------------------------------------------------------- - .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - .\" toupper - uppercase a string (locale-aware) - .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - .de toupper - .tr - - - \\$* - .tr - - - .. - .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - .\" SH-xref - format a cross-reference to an SH section - .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - .de SH-xref -.ie n \{\ -.\} -.toupper \\$* -.el \{\ -\\$* -.\} -.. - .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - .\" SH - level-one heading that works better for non-TTY output - .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - .de1 SH - .\" put an extra blank line of space above the head in non-TTY output - - t - - .sp 1 - - .sp \\n[PD]u -.nr an-level 1 -.set-an-margin -.nr an-prevailing-indent \\n[IN] -.fi -.in \\n[an-margin]u -.ti 0 -.HTML-TAG ".NH \\n[an-level]" -.it 1 an-trap -.nr an-no-space-flag 1 -.nr an-break-flag 1 -\." make the size of the head bigger -.ps +3 -.ft B -.ne (2v + 1u) -.ie n \{\ -.\" if n (TTY output), use uppercase -.toupper \\$* -.\} -.el \{\ -.nr an-break-flag 0 -.\" if not n (not TTY), use normal case (not uppercase) -\\$1 -.in \\n[an-margin]u -.ti 0 -.\" if not n (not TTY), put a border/line under subheading -.sp -.6 -\l'\n(.lu' -.\} -.. - .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - .\" SS - level-two heading that works better for non-TTY output - .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - .de1 SS -.sp \\n[PD]u -.nr an-level 1 -.set-an-margin -.nr an-prevailing-indent \\n[IN] -.fi -.in \\n[IN]u -.ti \\n[SN]u -.it 1 an-trap -.nr an-no-space-flag 1 -.nr an-break-flag 1 -.ps \\n[PS-SS]u -\." make the size of the head bigger -.ps +2 -.ft B -.ne (2v + 1u) -.if \\n[.$] \&\\$* -.. - .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - .\" BB/EB - put background/screen (filled box) around block of text - .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - .de BB -.if t \{\ -.sp -.5 -.br -.in +2n -.ll -2n -.gcolor red -.di BX -.\} -.. -.de EB -.if t \{\ -.if "\\$2"adjust-for-leading-newline" \{\ -.sp -1 -.\} -.br -.di -.in -.ll -.gcolor -.nr BW \\n(.lu-\\n(.i -.nr BH \\n(dn+.5v -.ne \\n(BHu+.5v -.ie "\\$2"adjust-for-leading-newline" \{\ -\M[\\$1]\h'1n'\v'+.5v'\D'P \\n(BWu 0 0 \\n(BHu -\\n(BWu 0 0 -\\n(BHu'\M[] -.\} -.el \{\ -\M[\\$1]\h'1n'\v'-.5v'\D'P \\n(BWu 0 0 \\n(BHu -\\n(BWu 0 0 -\\n(BHu'\M[] -.\} -.in 0 -.sp -.5v -.nf -.BX -.in -.sp .5v -.fi -.\} -.. - .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - .\" BM/EM - put colored marker in margin next to block of text - .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - .de BM -.if t \{\ -.br -.ll -2n -.gcolor red -.di BX -.\} -.. -.de EM -.if t \{\ -.br -.di -.ll -.gcolor -.nr BH \\n(dn -.ne \\n(BHu -\M[\\$1]\D'P -.75n 0 0 \\n(BHu -(\\n[.i]u - \\n(INu - .75n) 0 0 -\\n(BHu'\M[] -.in 0 -.nf -.BX -.in -.fi -.\} -.. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/manpages/param.xml b/docbook-xsl-1.75.2/manpages/param.xml deleted file mode 100644 index 706c99d..0000000 --- a/docbook-xsl-1.75.2/manpages/param.xml +++ /dev/null @@ -1,3220 +0,0 @@ - - - - Manpages Parameter Reference - - $Id: param.xweb 8235 2009-02-09 16:22:14Z xmldoc $ - - - The DocBook Project - - - 2005-2007 - The DocBook Project - - - This is reference documentation for all user-configurable - parameters in the DocBook XSL "manpages" stylesheet (for - generating groff/nroff output). Note that the manpages - stylesheet is a customization layer of the DocBook XSL HTML - stylesheet. Therefore, you can also use a number of HTML stylesheet parameters - to control manpages output (in addition to the - manpages-specific parameters listed in this section). - - - - Hyphenation, justification, and breaking - - -man.hyphenate -boolean - - -man.hyphenate -Enable hyphenation? - - - - -<xsl:param name="man.hyphenate">0</xsl:param> - - -Description - -If non-zero, hyphenation is enabled. - - -The default value for this parameter is zero because groff is -not particularly smart about how it does hyphenation; it can end up -hyphenating a lot of things that you don't want hyphenated. To -mitigate that, the default behavior of the stylesheets is to suppress -hyphenation of computer inlines, filenames, and URLs. (You can -override the default behavior by setting non-zero values for the -man.hyphenate.urls, -man.hyphenate.filenames, and -man.hyphenate.computer.inlines parameters.) But -the best way is still to just globally disable hyphenation, as the -stylesheets do by default. - -The only good reason to enabled hyphenation is if you have also -enabled justification (which is disabled by default). The reason is -that justified text can look very bad unless you also hyphenate it; to -quote the Hypenation node from the groff info page: - -
    - Since the odds are not great for finding a set of - words, for every output line, which fit nicely on a line without - inserting excessive amounts of space between words, 'gtroff' - hyphenates words so that it can justify lines without inserting too - much space between words. -
    - -So, if you set a non-zero value for the -man.justify parameter (to enable -justification), then you should probably also set a non-zero value for -man.hyphenate (to enable hyphenation).
    -
    - - -
    -
    - - - -man.hyphenate.urls -boolean - - -man.hyphenate.urls -Hyphenate URLs? - - - - -<xsl:param name="man.hyphenate.urls">0</xsl:param> - - -Description - -If zero (the default), hyphenation is suppressed for output of -the ulink url attribute. - - - If hyphenation is already turned off globally (that is, if - man.hyphenate is zero, setting - man.hyphenate.urls is not necessary. - - -If man.hyphenate.urls is non-zero, URLs -will not be treated specially and are subject to hyphenation just like -other words. - - - If you are thinking about setting a non-zero value for - man.hyphenate.urls in order to make long - URLs break across lines, you'd probably be better off - experimenting with setting the - man.break.after.slash parameter first. That - will cause long URLs to be broken after slashes. - - - - - - - -man.hyphenate.filenames -boolean - - -man.hyphenate.filenames -Hyphenate filenames? - - - - -<xsl:param name="man.hyphenate.filenames">0</xsl:param> - - -Description - -If zero (the default), hyphenation is suppressed for -filename output. - - - If hyphenation is already turned off globally (that is, if - man.hyphenate is zero, setting - man.hyphenate.filenames is not - necessary. - - -If man.hyphenate.filenames is non-zero, -filenames will not be treated specially and are subject to hyphenation -just like other words. - - - If you are thinking about setting a non-zero value for - man.hyphenate.filenames in order to make long - filenames/pathnames break across lines, you'd probably be better off - experimenting with setting the - man.break.after.slash parameter first. That - will cause long pathnames to be broken after slashes. - - - - - - - -man.hyphenate.computer.inlines -boolean - - -man.hyphenate.computer.inlines -Hyphenate computer inlines? - - - - -<xsl:param name="man.hyphenate.computer.inlines">0</xsl:param> - - -Description - -If zero (the default), hyphenation is suppressed for -computer inlines such as environment variables, -constants, etc. This parameter current affects output of the following -elements: - - - classname - constant - envar - errorcode - option - replaceable - userinput - type - varname - - - - - If hyphenation is already turned off globally (that is, if - man.hyphenate is zero, setting the - man.hyphenate.computer.inlines is not - necessary. - - -If man.hyphenate.computer.inlines is -non-zero, computer inlines will not be treated specially and will be -hyphenated like other words when needed. - - - - - - -man.justify -boolean - - -man.justify -Justify text to both right and left margins? - - - - -<xsl:param name="man.justify">0</xsl:param> - - -Description - -If non-zero, text is justified to both the right and left -margins (or, in roff terminology, "adjusted and filled" to both the -right and left margins). If zero (the default), text is adjusted to -the left margin only -- producing what is traditionally called -"ragged-right" text. - - -The default value for this parameter is zero because justified -text looks good only when it is also hyphenated. Without hyphenation, -excessive amounts of space often end up getting between words, in -order to "pad" lines out to align on the right margin. - -The problem is that groff is not particularly smart about how it -does hyphenation; it can end up hyphenating a lot of things that you -don't want hyphenated. So, disabling both justification and -hyphenation ensures that hyphens won't get inserted where you don't -want to them, and you don't end up with lines containing excessive -amounts of space between words. - -However, if do you decide to set a non-zero value for the -man.justify parameter (to enable -justification), then you should probably also set a non-zero value for -man.hyphenate (to enable hyphenation). - -Yes, these default settings run counter to how most existing man -pages are formatted. But there are some notable exceptions, such as -the perl man pages. - - - - - - -man.break.after.slash -boolean - - -man.break.after.slash -Enable line-breaking after slashes? - - - - -<xsl:param name="man.break.after.slash">0</xsl:param> - - -Description - -If non-zero, line-breaking after slashes is enabled. This is -mainly useful for causing long URLs or pathnames/filenames to be -broken up or "wrapped" across lines (though it also has the side -effect of sometimes causing relatively short URLs and pathnames to be -broken up across lines too). - -If zero (the default), line-breaking after slashes is -disabled. In that case, strings containing slashes (for example, URLs -or filenames) are not broken across lines, even if they exceed the -maximum column widith. - - - If you set a non-zero value for this parameter, check your - man-page output carefuly afterwards, in order to make sure that the - setting has not introduced an excessive amount of breaking-up of URLs - or pathnames. If your content contains mostly short URLs or - pathnames, setting a non-zero value for - man.break.after.slash will probably result in - in a significant number of relatively short URLs and pathnames being - broken across lines, which is probably not what you want. - - - - - -
    - - Indentation - - -man.indent.width -length - - -man.indent.width -Specifies width used for adjusted indents - - - - -<xsl:param name="man.indent.width">4</xsl:param> - - - -Description -The man.indent.width parameter specifies -the width used for adjusted indents. The value of -man.indent.width is used for indenting of -lists, verbatims, headings, and elsewhere, depending on whether the -values of certain man.indent.* boolean parameters -are non-zero. - -The value of man.indent.width should -include a valid roff measurement unit (for example, -n or u). The default value of -4n specifies a 4-en width; when viewed on a -console, that amounts to the width of four characters. For details -about roff measurment units, see the Measurements -node in the groff info page. - - - - - - -man.indent.refsect -boolean - - -man.indent.refsect -Adjust indentation of refsect* and refsection? - - - - -<xsl:param name="man.indent.refsect" select="0"></xsl:param> - - -Description - -If the value of man.indent.refsect is -non-zero, the width of the left margin for -refsect1, refsect2 and -refsect3 contents and titles (and first-level, -second-level, and third-level nested -refsectioninstances) is adjusted by the value of -the man.indent.width parameter. With -man.indent.width set to its default value of -3n, the main results are that: - - - - contents of refsect1 are output with a - left margin of three characters instead the roff default of seven - or eight characters - - - contents of refsect2 are displayed in - console output with a left margin of six characters instead the of - the roff default of seven characters - - - the contents of refsect3 and nested - refsection instances are adjusted - accordingly. - - - -If instead the value of man.indent.refsect is -zero, no margin adjustment is done for refsect* -output. - - - If your content is primarly comprised of - refsect1 and refsect2 content - (or the refsection equivalent) – with few or - no refsect3 or lower nested sections , you may be - able to “conserve” space in your output by setting - man.indent.refsect to a non-zero value. Doing - so will “squeeze” the left margin in such as way as to provide an - additional four characters of “room” per line in - refsect1 output. That extra room may be useful - if, for example, you have many verbatim sections with long lines in - them. - - - - - - - -man.indent.blurbs -boolean - - -man.indent.blurbs -Adjust indentation of blurbs? - - - - -<xsl:param name="man.indent.blurbs" select="1"></xsl:param> - - -Description - -If the value of man.indent.blurbs is -non-zero, the width of the left margin for -authorblurb, personblurb, and -contrib output is set to the value of the -man.indent.width parameter -(3n by default). If instead the value of -man.indent.blurbs is zero, the built-in roff -default width (7.2n) is used. - - - - - - -man.indent.lists -boolean - - -man.indent.lists -Adjust indentation of lists? - - - - -<xsl:param name="man.indent.lists" select="1"></xsl:param> - - -Description - -If the value of man.indent.lists is -non-zero, the width of the left margin for list items in -itemizedlist, -orderedlist, -variablelist output (and output of some other -lists) is set to the value of the -man.indent.width parameter -(4n by default). If instead the value of -man.indent.lists is zero, the built-in roff -default width (7.2n) is used. - - - - - - -man.indent.verbatims -boolean - - -man.indent.verbatims -Adjust indentation of verbatims? - - - - -<xsl:param name="man.indent.verbatims" select="1"></xsl:param> - - -Description - -If the value of man.indent.verbatims is -non-zero, the width of the left margin for output of verbatim -environments (programlisting, -screen, and so on) is set to the value of the -man.indent.width parameter -(3n by default). If instead the value of -man.indent.verbatims is zero, the built-in roff -default width (7.2n) is used. - - - - - - - Fonts - - -man.font.funcprototype -string - - -man.font.funcprototype -Specifies font for funcprototype output - - - - - <xsl:param name="man.font.funcprototype">BI</xsl:param> - - - -Description - -The man.font.funcprototype parameter -specifies the font for funcprototype output. It -should be a valid roff font name, such as BI or -B. - - - - - - -man.font.funcsynopsisinfo -string - - -man.font.funcsynopsisinfo -Specifies font for funcsynopsisinfo output - - - - - <xsl:param name="man.font.funcsynopsisinfo">B</xsl:param> - - - -Description - -The man.font.funcsynopsisinfo parameter -specifies the font for funcsynopsisinfo output. It -should be a valid roff font name, such as B or -I. - - - - - - -man.font.links -string - - -man.font.links -Specifies font for links - - - - -<xsl:param name="man.font.links">B</xsl:param> - - - -Description - -The man.font.links parameter -specifies the font for output of links (ulink instances -and any instances of any element with an xlink:href attribute). - -The value of man.font.links must be - either B or I, or empty. If -the value is empty, no font formatting is applied to links. - -If you set man.endnotes.are.numbered and/or -man.endnotes.list.enabled to zero (disabled), then -you should probably also set an empty value for -man.font.links. But if -man.endnotes.are.numbered is non-zero (enabled), -you should probably keep -man.font.links set to -B or IThe - main purpose of applying a font format to links in most output -formats it to indicate that the formatted text is -“clickable”; given that links rendered in man pages are -not “real” hyperlinks that users can click on, it might -seem like there is never a good reason to have font formatting for -link contents in man output. -In fact, if you suppress the -display of inline link references (by setting -man.endnotes.are.numbered to zero), there is no -good reason to apply font formatting to links. However, if -man.endnotes.are.numbered is non-zero, having -font formatting for links (arguably) serves a purpose: It provides -“context” information about exactly what part of the text -is being “annotated” by the link. Depending on how you -mark up your content, that context information may or may not -have value.. - - -Related Parameters - man.endnotes.list.enabled, - man.endnotes.are.numbered - - - - - - -man.font.table.headings -string - - -man.font.table.headings -Specifies font for table headings - - - - - <xsl:param name="man.font.table.headings">B</xsl:param> - - - -Description - -The man.font.table.headings parameter -specifies the font for table headings. It should be -a valid roff font, such as B or -I. - - - - - - -man.font.table.title -string - - -man.font.table.title -Specifies font for table headings - - - - - <xsl:param name="man.font.table.title">B</xsl:param> - - - -Description - -The man.font.table.title parameter -specifies the font for table titles. It should be -a valid roff font, such as B or -I. - - - - - - - SYNOPSIS section - - -man.funcsynopsis.style -list -ansi -kr - - -man.funcsynopsis.style -What style of funcsynopsis should be generated? - - -<xsl:param name="man.funcsynopsis.style">ansi</xsl:param> - -Description -If man.funcsynopsis.style is -ansi, ANSI-style function synopses are -generated for a funcsynopsis, otherwise K&R-style -function synopses are generated. - - - - - - AUTHORS and COPYRIGHT sections - - -man.authors.section.enabled -boolean - - -man.authors.section.enabled -Display auto-generated AUTHORS section? - - - -<xsl:param name="man.authors.section.enabled">1</xsl:param> - - -Description - -If the value of -man.authors.section.enabled is non-zero -(the default), then an AUTHORS section is -generated near the end of each man page. The output of the -AUTHORS section is assembled from any -author, editor, and othercredit -metadata found in the contents of the child info or -refentryinfo (if any) of the refentry -itself, or from any author, editor, and -othercredit metadata that may appear in info -contents of any ancestors of the refentry. - -If the value of -man.authors.section.enabled is zero, the -the auto-generated AUTHORS section is -suppressed. - -Set the value of - man.authors.section.enabled to zero if - you want to have a manually created AUTHORS - section in your source, and you want it to appear in output - instead of the auto-generated AUTHORS - section. - - - - - -man.copyright.section.enabled -boolean - - -man.copyright.section.enabled -Display auto-generated COPYRIGHT section? - - - -<xsl:param name="man.copyright.section.enabled">1</xsl:param> - - -Description - -If the value of -man.copyright.section.enabled is non-zero -(the default), then a COPYRIGHT section is -generated near the end of each man page. The output of the -COPYRIGHT section is assembled from any -copyright and legalnotice metadata found in -the contents of the child info or -refentryinfo (if any) of the refentry -itself, or from any copyright and -legalnotice metadata that may appear in info -contents of any ancestors of the refentry. - -If the value of -man.copyright.section.enabled is zero, the -the auto-generated COPYRIGHT section is -suppressed. - -Set the value of - man.copyright.section.enabled to zero if - you want to have a manually created COPYRIGHT - section in your source, and you want it to appear in output - instead of the auto-generated COPYRIGHT - section. - - - - - - Endnotes and link handling - - -man.endnotes.list.enabled -boolean - - -man.endnotes.list.enabled -Display endnotes list at end of man page? - - - - -<xsl:param name="man.endnotes.list.enabled">1</xsl:param> - - - -Description - -If the value of man.endnotes.list.enabled is -non-zero (the default), then an endnotes list is added to the end of -the output man page. - -If the value of man.endnotes.list.enabled is -zero, the list is suppressed — unless link numbering is enabled (that -is, if man.endnotes.are.numbered is non-zero), in -which case, that setting overrides the -man.endnotes.list.enabled setting, and the -endnotes list is still displayed. The reason is that inline -numbering of notesources associated with endnotes only makes sense -if a (numbered) list of endnotes is also generated. - - - Leaving - man.endnotes.list.enabled at its default - (non-zero) value ensures that no “out of line” information (such - as the URLs for hyperlinks and images) gets lost in your - man-page output. It just gets “rearranged”. - So if you’re thinking about disabling endnotes listing by - setting the value of - man.endnotes.list.enabled to zero: - Before you do so, first take some time to carefully consider - the information needs and experiences of your users. The “out - of line” information has value even if the presentation of it - in text output is not as interactive as it may be in other - output formats. - As far as the specific case of URLs: Even though the URLs - displayed in text output may not be “real” (clickable) - hyperlinks, many X terminals have convenience features for - recognizing URLs and can, for example, present users with - an options to open a URL in a browser with the user clicks on - the URL is a terminal window. And short of those, users with X - terminals can always manually cut and paste the URLs into a web - browser. - Also, note that various “man to html” tools, such as the - widely used man2html (VH-Man2html) - application, automatically mark up URLs with a@href markup - during conversion — resulting in “real” hyperlinks in HTML - output from those tools. - - -To “turn off” numbering of endnotes in the -endnotes list, set man.endnotes.are.numbered -to zero. The endnotes list will -still be displayed; it will just be displayed without the -numbersIt can still make sense to have -the list of endnotes displayed even if you have endnotes numbering turned -off. In that case, your endnotes list basically becomes a “list -of references” without any association with specific text in -your document. This is probably the best option if you find the inline -endnotes numbering obtrusive. Your users will still have access to all the “out of line” -such as URLs for hyperlinks. - - -The default heading for the endnotes list is -NOTES. To change that, set a non-empty -value for the man.endnotes.list.heading -parameter. - -In the case of notesources that are links: Along with the -URL for each link, the endnotes list includes the contents of the -link. The list thus includes only non-empty - -A “non-empty” link is one that looks like -this: <ulink url="http://docbook.sf.net/snapshot/xsl/doc/manpages/">manpages</ulink> -an “empty link” is on that looks like this: <ulink url="http://docbook.sf.net/snapshot/xsl/doc/manpages/"/> - links. - -Empty links are never included, and never numbered. They are simply -displayed inline, without any numbering. - -In addition, if there are multiple instances of links in a -refentry that have the same URL, the URL is listed only -once. The contents listed for that link in the endnotes list are -the contents of the first link which has that URL. - -If you disable endnotes listing, you should probably also set -man.links.are.underlined to zero (to disable -link underlining). - - - - - -man.endnotes.list.heading -string - - -man.endnotes.list.heading -Specifies an alternate name for endnotes list - - - - -<xsl:param name="man.endnotes.list.heading"></xsl:param> - - - -Description - -If the value of the -man.endnotes.are.numbered parameter -and/or the man.endnotes.list.enabled -parameter is non-zero (the defaults for both are non-zero), a -numbered list of endnotes is generated near the end of each man -page. The default heading for the list of endnotes is the -equivalent of the English word NOTES in -the current locale. To cause an alternate heading to be displayed, -set a non-empty value for the -man.endnotes.list.heading parameter — -for example, REFERENCES. - - - - - -man.endnotes.are.numbered -boolean - - -man.endnotes.are.numbered -Number endnotes? - - - - -<xsl:param name="man.endnotes.are.numbered">1</xsl:param> - - - -Description - -If the value of man.endnotes.are.numbered is -non-zero (the default), then for each non-empty -A “non-empty” notesource is one that looks like -this: <ulink url="http://docbook.sf.net/snapshot/xsl/doc/manpages/">manpages</ulink> -an “empty” notesource is on that looks like this: <ulink url="http://docbook.sf.net/snapshot/xsl/doc/manpages/"/> - “notesource”: - - - - a number (in square brackets) is displayed inline after the - rendered inline contents (if any) of the notesource - - - the contents of the notesource are included in a - numbered list of endnotes that is generated at the end of - each man page; the number for each endnote corresponds to - the inline number for the notesource with which it is - associated - - -The default heading for the list of endnotes is -NOTES. To output a different heading, set a value -for the man.endnotes.section.heading -parameter. - - - The endnotes list is also displayed (but without - numbers) if the value of - man.endnotes.list.enabled is - non-zero. - - - -If the value of man.endnotes.are.numbered is -zero, numbering of endnotess is suppressed; only inline -contents (if any) of the notesource are displayed inline. - - If you are thinking about disabling endnote numbering by setting - the value of man.endnotes.are.numbered to zero, - before you do so, first take some time to carefully - consider the information needs and experiences of your users. The - square-bracketed numbers displayed inline after notesources may seem - obstrusive and aesthetically unpleasingAs far as notesources that are links, ytou might - think it would be better to just display URLs for non-empty - links inline, after their content, rather than displaying - square-bracketed numbers all over the place. But it's not better. In - fact, it's not even practical, because many (most) URLs for links - are too long to be displayed inline. They end up overflowing the - right margin. You can set a non-zero value for - man.break.after.slash parameter to deal with - that, but it could be argued that what you end up with is at least - as ugly, and definitely more obstrusive, then having short - square-bracketed numbers displayed inline., - - but in a text-only output format, the - numbered-notesources/endnotes-listing mechanism is the only - practical way to handle this kind of content. - - Also, users of “text based” browsers such as - lynx will already be accustomed to seeing inline - numbers for links. And various "man to html" applications, such as - the widely used man2html (VH-Man2html) - application, can automatically turn URLs into "real" HTML hyperlinks - in output. So leaving man.endnotes.are.numbered - at its default (non-zero) value ensures that no information is - lost in your man-page output. It just gets - “rearranged”. - - -The handling of empty links is not affected by this -parameter. Empty links are handled simply by displaying their URLs -inline. Empty links are never auto-numbered. - -If you disable endnotes numbering, you should probably also set -man.font.links to an empty value (to -disable font formatting for links. - - -Related Parameters - man.endnotes.list.enabled, - man.font.links - - - - - - man.base.url.for.relative.links - string - - - man.base.url.for.relative.links - Specifies a base URL for relative links - - - - <xsl:param name="man.base.url.for.relative.links">[set $man.base.url.for.relative.links]/</xsl:param> - - - Description - - For any “notesource” listed in the auto-generated - “NOTES” section of output man pages (which is generated when - the value of the - man.endnotes.list.enabled parameter - is non-zero), if the notesource is a link source with a - relative URI, the URI is displayed in output with the value - of the - man.base.url.for.relative.links - parameter prepended to the value of the link URI. - - - A link source is an notesource that references an - external resource: - - - a ulink element with a url attribute - - - any element with an xlink:href attribute - - - an imagedata, audiodata, or - videodata element - - - - - - If you use relative URIs in link sources in your DocBook - refentry source, and you leave - man.base.url.for.relative.links - unset, the relative links will appear “as is” in the “Notes” - section of any man-page output generated from your source. - That’s probably not what you want, because such relative - links are only usable in the context of HTML output. So, to - make the links meaningful and usable in the context of - man-page output, set a value for - man.base.url.for.relative.links that - points to the online version of HTML output generated from - your DocBook refentry source. For - example: - <xsl:param name="man.base.url.for.relative.links" - >http://www.kernel.org/pub/software/scm/git/docs/</xsl:param> - - - - - Related Parameters - man.endnotes.list.enabled - - - - - - - Lists - - -man.segtitle.suppress -boolean - - -man.segtitle.suppress -Suppress display of segtitle contents? - - - - -<xsl:param name="man.segtitle.suppress" select="0"></xsl:param> - - -Description - -If the value of man.segtitle.suppress is -non-zero, then display of segtitle contents is -suppressed in output. - - - - - - - Character/string substitution - - -man.charmap.enabled -boolean - - -man.charmap.enabled -Apply character map before final output? - - - - -<xsl:param name="man.charmap.enabled" select="1"></xsl:param> - - - -Description - -If the value of the man.charmap.enabled -parameter is non-zero, a "character map" is used to substitute certain -Unicode symbols and special characters with appropriate roff/groff -equivalents, just before writing each man-page file to the -filesystem. If instead the value of -man.charmap.enabled is zero, Unicode characters -are passed through "as is". - -Details - -For converting certain Unicode symbols and special characters in -UTF-8 or UTF-16 encoded XML source to appropriate groff/roff -equivalents in man-page output, the DocBook XSL Stylesheets -distribution includes a roff character map that is compliant with the XSLT character -map format as detailed in the XSLT 2.0 specification. The map -contains more than 800 character mappings and can be considered the -standard roff character map for the distribution. - -You can use the man.charmap.uri -parameter to specify a URI for the location for an alternate roff -character map to use in place of the standard roff character map -provided in the distribution. - -You can also use a subset of a character map. For details, -see the man.charmap.use.subset, -man.charmap.subset.profile, and -man.charmap.subset.profile.english -parameters. - - - - - - - -man.charmap.uri -uri - - -man.charmap.uri -URI for custom roff character map - - - - -<xsl:param name="man.charmap.uri"></xsl:param> - - - -Description - -For converting certain Unicode symbols and special characters in -UTF-8 or UTF-16 encoded XML source to appropriate groff/roff -equivalents in man-page output, the DocBook XSL Stylesheets -distribution includes an XSLT character -map. That character map can be considered the standard roff -character map for the distribution. - -If the value of the man.charmap.uri -parameter is non-empty, that value is used as the URI for the location -for an alternate roff character map to use in place of the standard -roff character map provided in the distribution. - - -Do not set a value for man.charmap.uri -unless you have a custom roff character map that differs from the -standard one provided in the distribution. - - - - - - -man.charmap.use.subset -boolean - - -man.charmap.use.subset -Use subset of character map instead of full map? - - - - -<xsl:param name="man.charmap.use.subset" select="1"></xsl:param> - - - -Description - -If the value of the -man.charmap.use.subset parameter is non-zero, -a subset of the roff character map is used instead of the full roff -character map. The profile of the subset used is determined either -by the value of the -man.charmap.subset.profile -parameter (if the source is not in English) or the -man.charmap.subset.profile.english -parameter (if the source is in English). - - - You may want to experiment with setting a non-zero value of - man.charmap.use.subset, so that the full - character map is used. Depending on which XSLT engine you run, - setting a non-zero value for - man.charmap.use.subset may significantly - increase the time needed to process your documents. Or it may - not. For example, if you set it and run it with xsltproc, it seems - to dramatically increase processing time; on the other hand, if you - set it and run it with Saxon, it does not seem to increase - processing time nearly as much. - - If processing time is not a important concern and/or you can - tolerate the increase in processing time imposed by using the full - character map, set man.charmap.use.subset to - zero. - - -Details - -For converting certain Unicode symbols and special characters in -UTF-8 or UTF-16 encoded XML source to appropriate groff/roff -equivalents in man-page output, the DocBook XSL Stylesheets -distribution includes a roff character map that is compliant with the XSLT character -map format as detailed in the XSLT 2.0 specification. The map -contains more than 800 character mappings and can be considered the -standard roff character map for the distribution. - - -You can use the man.charmap.uri -parameter to specify a URI for the location for an alternate roff -character map to use in place of the standard roff character map -provided in the distribution. - - -Because it is not terrifically efficient to use the standard -800-character character map in full -- and for most (or all) users, -never necessary to use it in full -- the DocBook XSL Stylesheets -support a mechanism for using, within any given character map, a -subset of character mappings instead of the full set. You can use the -man.charmap.subset.profile or -man.charmap.subset.profile.english -parameter to tune the profile of that subset to use. - - - - - - - -man.charmap.subset.profile -string - - -man.charmap.subset.profile -Profile of character map subset - - - - -<xsl:param name="man.charmap.subset.profile"> -@*[local-name() = 'block'] = 'Miscellaneous Technical' or -(@*[local-name() = 'block'] = 'C1 Controls And Latin-1 Supplement (Latin-1 Supplement)' and - (@*[local-name() = 'class'] = 'symbols' or - @*[local-name() = 'class'] = 'letters') -) or -@*[local-name() = 'block'] = 'Latin Extended-A' -or -(@*[local-name() = 'block'] = 'General Punctuation' and - (@*[local-name() = 'class'] = 'spaces' or - @*[local-name() = 'class'] = 'dashes' or - @*[local-name() = 'class'] = 'quotes' or - @*[local-name() = 'class'] = 'bullets' - ) -) or -@*[local-name() = 'name'] = 'HORIZONTAL ELLIPSIS' or -@*[local-name() = 'name'] = 'WORD JOINER' or -@*[local-name() = 'name'] = 'SERVICE MARK' or -@*[local-name() = 'name'] = 'TRADE MARK SIGN' or -@*[local-name() = 'name'] = 'ZERO WIDTH NO-BREAK SPACE' -</xsl:param> - - - -Description - -If the value of the -man.charmap.use.subset parameter is non-zero, -and your DocBook source is not written in English (that - is, if the lang or xml:lang attribute on the root element - in your DocBook source or on the first refentry - element in your source has a value other than - en), then the character-map subset specified - by the man.charmap.subset.profile - parameter is used instead of the full roff character map. - -Otherwise, if the lang or xml:lang attribute on the root - element in your DocBook - source or on the first refentry element in your source - has the value en or if it has no lang or xml:lang attribute, then the character-map - subset specified by the - man.charmap.subset.profile.english - parameter is used instead of - man.charmap.subset.profile. - -The difference between the two subsets is that - man.charmap.subset.profile provides - mappings for characters in Western European languages that are - not part of the Roman (English) alphabet (ASCII character set). - -The value of man.charmap.subset.profile -is a string representing an XPath expression that matches attribute -names and values for output-character -elements in the character map. - -The attributes supported in the standard roff character map included in the distribution are: - - - character - - a raw Unicode character or numeric Unicode - character-entity value (either in decimal or hex); all - characters have this attribute - - - - name - - a standard full/long ISO/Unicode character name (e.g., - "OHM SIGN"); all characters have this attribute - - - - block - - a standard Unicode "block" name (e.g., "General - Punctuation"); all characters have this attribute. For the full - list of Unicode block names supported in the standard roff - character map, see . - - - - class - - a class of characters (e.g., "spaces"). Not all - characters have this attribute; currently, it is used only with - certain characters within the "C1 Controls And Latin-1 - Supplement" and "General Punctuation" blocks. For details, see - . - - - - entity - - an ISO entity name (e.g., "ohm"); not all characters - have this attribute, because not all characters have ISO entity - names; for example, of the 800 or so characters in the standard - roff character map included in the distribution, only around 300 - have ISO entity names. - - - - - string - - a string representing an roff/groff escape-code (with - "@esc@" used in place of the backslash), or a simple ASCII - string; all characters in the roff character map have this - attribute - - - - -The value of man.charmap.subset.profile -is evaluated as an XPath expression at run-time to select a portion of -the roff character map to use. You can tune the subset used by adding -or removing parts. For example, if you need to use a wide range of -mathematical operators in a document, and you want to have them -converted into roff markup properly, you might add the following: - - @*[local-name() = 'block'] ='MathematicalOperators' - -That will cause a additional set of around 67 additional "math" -characters to be converted into roff markup. - - -Depending on which XSLT engine you use, either the EXSLT -dyn:evaluate extension function (for xsltproc or -Xalan) or saxon:evaluate extension function (for -Saxon) are used to dynamically evaluate the value of -man.charmap.subset.profile at run-time. If you -don't use xsltproc, Saxon, Xalan -- or some other XSLT engine that -supports dyn:evaluate -- you must either set the -value of the man.charmap.use.subset parameter -to zero and process your documents using the full character map -instead, or set the value of the -man.charmap.enabled parameter to zero instead -(so that character-map processing is disabled completely. - - -An alternative to using -man.charmap.subset.profile is to create your -own custom character map, and set the value of -man.charmap.uri to the URI/filename for -that. If you use a custom character map, you will probably want to -include in it just the characters you want to use, and so you will -most likely also want to set the value of -man.charmap.use.subset to zero. -You can create a -custom character map by making a copy of the standard roff character map provided in the distribution, and -then adding to, changing, and/or deleting from that. - - -If you author your DocBook XML source in UTF-8 or UTF-16 -encoding and aren't sure what OSes or environments your man-page -output might end up being viewed on, and not sure what version of -nroff/groff those environments might have, you should be careful about -what Unicode symbols and special characters you use in your source and -what parts you add to the value of -man.charmap.subset.profile. -Many of the escape codes used are specific to groff and using -them may not provide the expected output on an OS or environment that -uses nroff instead of groff. -On the other hand, if you intend for your man-page output to be -viewed only on modern systems (for example, GNU/Linux systems, FreeBSD -systems, or Cygwin environments) that have a good, up-to-date groff, -then you can safely include a wide range of Unicode symbols and -special characters in your UTF-8 or UTF-16 encoded DocBook XML source -and add any of the supported Unicode block names to the value of -man.charmap.subset.profile. - - - -For other details, see the documentation for the -man.charmap.use.subset parameter. - -Supported Unicode block names and "class" values - - - Below is the full list of Unicode block names and "class" - values supported in the standard roff stylesheet provided in the - distribution, along with a description of which codepoints from the - Unicode range corresponding to that block name or block/class - combination are supported. - - - - C1 Controls And Latin-1 Supplement (Latin-1 Supplement) (x00a0 to x00ff) - class values - - - symbols - - - letters - - - - - Latin Extended-A (x0100 to x017f, partial) - - - Spacing Modifier Letters (x02b0 to x02ee, partial) - - - Greek and Coptic (x0370 to x03ff, partial) - - - General Punctuation (x2000 to x206f, partial) - class values - - - spaces - - - dashes - - - quotes - - - daggers - - - bullets - - - leaders - - - primes - - - - - - Superscripts and Subscripts (x2070 to x209f) - - - Currency Symbols (x20a0 to x20b1) - - - Letterlike Symbols (x2100 to x214b) - - - Number Forms (x2150 to x218f) - - - Arrows (x2190 to x21ff, partial) - - - Mathematical Operators (x2200 to x22ff, partial) - - - Control Pictures (x2400 to x243f) - - - Enclosed Alphanumerics (x2460 to x24ff) - - - Geometric Shapes (x25a0 to x25f7, partial) - - - Miscellaneous Symbols (x2600 to x26ff, partial) - - - Dingbats (x2700 to x27be, partial) - - - Alphabetic Presentation Forms (xfb00 to xfb04 only) - - - - - - - - -man.charmap.subset.profile.english -string - - -man.charmap.subset.profile.english -Profile of character map subset - - - - -<xsl:param name="man.charmap.subset.profile.english"> -@*[local-name() = 'block'] = 'Miscellaneous Technical' or -(@*[local-name() = 'block'] = 'C1 Controls And Latin-1 Supplement (Latin-1 Supplement)' and - @*[local-name() = 'class'] = 'symbols') -or -(@*[local-name() = 'block'] = 'General Punctuation' and - (@*[local-name() = 'class'] = 'spaces' or - @*[local-name() = 'class'] = 'dashes' or - @*[local-name() = 'class'] = 'quotes' or - @*[local-name() = 'class'] = 'bullets' - ) -) or -@*[local-name() = 'name'] = 'HORIZONTAL ELLIPSIS' or -@*[local-name() = 'name'] = 'WORD JOINER' or -@*[local-name() = 'name'] = 'SERVICE MARK' or -@*[local-name() = 'name'] = 'TRADE MARK SIGN' or -@*[local-name() = 'name'] = 'ZERO WIDTH NO-BREAK SPACE' -</xsl:param> - - - -Description - -If the value of the - man.charmap.use.subset parameter is - non-zero, and your DocBook source is written in English (that - is, if its lang or xml:lang attribute on the root element - in your DocBook source or on the first refentry - element in your source has the value en or if - it has no lang or xml:lang attribute), then the - character-map subset specified by the - man.charmap.subset.profile.english - parameter is used instead of the full roff character map. - -Otherwise, if the lang or xml:lang attribute - on the root element in your DocBook source or on the first - refentry element in your source has a value other - than en, then the character-map subset - specified by the - man.charmap.subset.profile parameter is - used instead of - man.charmap.subset.profile.english. - -The difference between the two subsets is that - man.charmap.subset.profile provides - mappings for characters in Western European languages that are - not part of the Roman (English) alphabet (ASCII character set). - -The value of man.charmap.subset.profile.english -is a string representing an XPath expression that matches attribute -names and values for output-character elements in the character map. - -For other details, see the documentation for the -man.charmap.subset.profile.english and -man.charmap.use.subset parameters. - - - - - - -man.string.subst.map.local.pre -string - - -man.string.subst.map.local.pre -Specifies “local” string substitutions - - - - - <xsl:param name="man.string.subst.map.local.pre"></xsl:param> - - - -Description - -Use the man.string.subst.map.local.pre -parameter to specify any “local” string substitutions to perform over -the entire roff source for each man page before -performing the string substitutions specified by the man.string.subst.map parameter. - -For details about the format of this parameter, see the -documentation for the man.string.subst.map -parameter. - - - - - - -man.string.subst.map -rtf - - -man.string.subst.map -Specifies a set of string substitutions - - - - -<xsl:param name="man.string.subst.map"> - - <!-- * remove no-break marker at beginning of line (stylesheet artifact) --> - <ss:substitution oldstring="▒▀" newstring="▒"></ss:substitution> - <!-- * replace U+2580 no-break marker (stylesheet-added) w/ no-break space --> - <ss:substitution oldstring="▀" newstring="\ "></ss:substitution> - - <!-- ==================================================================== --> - - <!-- * squeeze multiple newlines before a roff request --> - <ss:substitution oldstring=" - -." newstring=" -."></ss:substitution> - <!-- * remove any .sp instances that directly precede a .PP --> - <ss:substitution oldstring=".sp -.PP" newstring=".PP"></ss:substitution> - <!-- * remove any .sp instances that directly follow a .PP --> - <ss:substitution oldstring=".sp -.sp" newstring=".sp"></ss:substitution> - <!-- * squeeze multiple .sp instances into a single .sp--> - <ss:substitution oldstring=".PP -.sp" newstring=".PP"></ss:substitution> - <!-- * squeeze multiple newlines after start of no-fill (verbatim) env. --> - <ss:substitution oldstring=".nf - -" newstring=".nf -"></ss:substitution> - <!-- * squeeze multiple newlines after REstoring margin --> - <ss:substitution oldstring=".RE - -" newstring=".RE -"></ss:substitution> - <!-- * U+2591 is a marker we add before and after every Parameter in --> - <!-- * Funcprototype output --> - <ss:substitution oldstring="░" newstring=" "></ss:substitution> - <!-- * U+2592 is a marker we add for the newline before output of <sbr>; --> - <ss:substitution oldstring="▒" newstring=" -"></ss:substitution> - <!-- * --> - <!-- * Now deal with some other characters that are added by the --> - <!-- * stylesheets during processing. --> - <!-- * --> - <!-- * bullet --> - <ss:substitution oldstring="•" newstring="\(bu"></ss:substitution> - <!-- * left double quote --> - <ss:substitution oldstring="“" newstring="\(lq"></ss:substitution> - <!-- * right double quote --> - <ss:substitution oldstring="”" newstring="\(rq"></ss:substitution> - <!-- * left single quote --> - <ss:substitution oldstring="‘" newstring="\(oq"></ss:substitution> - <!-- * right single quote --> - <ss:substitution oldstring="’" newstring="\(cq"></ss:substitution> - <!-- * copyright sign --> - <ss:substitution oldstring="©" newstring="\(co"></ss:substitution> - <!-- * registered sign --> - <ss:substitution oldstring="®" newstring="\(rg"></ss:substitution> - <!-- * ...servicemark... --> - <!-- * There is no groff equivalent for it. --> - <ss:substitution oldstring="℠" newstring="(SM)"></ss:substitution> - <!-- * ...trademark... --> - <!-- * We don't do "\(tm" because for console output, --> - <!-- * groff just renders that as "tm"; that is: --> - <!-- * --> - <!-- * Product&#x2122; -> Producttm --> - <!-- * --> - <!-- * So we just make it to "(TM)" instead; thus: --> - <!-- * --> - <!-- * Product&#x2122; -> Product(TM) --> - <ss:substitution oldstring="™" newstring="(TM)"></ss:substitution> - -</xsl:param> - - - -Description - -The man.string.subst.map parameter -contains a map that specifies a set of -string substitutions to perform over the entire roff source for each -man page, either just before generating final man-page output (that -is, before writing man-page files to disk) or, if the value of the -man.charmap.enabled parameter is non-zero, -before applying the roff character map. - -You can use man.string.subst.map as a -“lightweight” character map to perform “essential” substitutions -- -that is, substitutions that are always performed, -even if the value of the man.charmap.enabled -parameter is zero. For example, you can use it to replace quotation -marks or other special characters that are generated by the DocBook -XSL stylesheets for a particular locale setting (as opposed to those -characters that are actually in source XML documents), or to replace -any special characters that may be automatically generated by a -particular customization of the DocBook XSL stylesheets. - - - Do you not change value of the - man.string.subst.map parameter unless you are - sure what you are doing. First consider adding your - string-substitution mappings to either or both of the following - parameters: - - - man.string.subst.map.local.pre - applied before - man.string.subst.map - - - man.string.subst.map.local.post - applied after - man.string.subst.map - - - By default, both of those parameters contain no - string substitutions. They are intended as a means for you to - specify your own local string-substitution mappings. - - If you remove any of default mappings from the value of the - man.string.subst.map parameter, you are - likely to end up with broken output. And be very careful about adding - anything to it; it’s used for doing string substitution over the - entire roff source of each man page – it causes target strings to be - replaced in roff requests and escapes, not just in the visible - contents of the page. - - - - - - Contents of the substitution map - - The string-substitution map contains one or more - ss:substitution elements, each of which has two - attributes: - - - oldstring - - string to replace - - - - newstring - - string with which to replace oldstring - - - - It may also include XML comments (that is, delimited with - "<!--" and "-->"). - - - - - - - - -man.string.subst.map.local.post -string - - -man.string.subst.map.local.post -Specifies “local” string substitutions - - - - -<xsl:param name="man.string.subst.map.local.post"></xsl:param> - - - -Description - -Use the man.string.subst.map.local.post -parameter to specify any “local” string substitutions to perform over -the entire roff source for each man page after -performing the string substitutions specified by the man.string.subst.map parameter. - -For details about the format of this parameter, see the -documentation for the man.string.subst.map -parameter. - - - - - - - Refentry metadata gathering - - -refentry.meta.get.quietly -boolean - - -refentry.meta.get.quietly -Suppress notes and warnings when gathering refentry metadata? - - - - -<xsl:param name="refentry.meta.get.quietly" select="0"></xsl:param> - - - -Description - -If zero (the default), notes and warnings about “missing” markup -are generated during gathering of refentry metadata. If non-zero, the -metadata is gathered “quietly” -- that is, the notes and warnings are -suppressed. - - - If you are processing a large amount of refentry - content, you may be able to speed up processing significantly by - setting a non-zero value for - refentry.meta.get.quietly. - - - - - - - -refentry.date.profile -string - - -refentry.date.profile -Specifies profile for refentry "date" data - - - - -<xsl:param name="refentry.date.profile"> - (($info[//date])[last()]/date)[1]| - (($info[//pubdate])[last()]/pubdate)[1] -</xsl:param> - - - -Description - -The value of refentry.date.profile is a -string representing an XPath expression. It is evaluated at run-time -and used only if refentry.date.profile.enabled -is non-zero. Otherwise, the refentry metadata-gathering -logic "hard coded" into the stylesheets is used. - - The man(7) man page describes this content -as "the date of the last revision". In man pages, it is the content -that is usually displayed in the center footer. - - - - - - -refentry.date.profile.enabled -boolean - - -refentry.date.profile.enabled -Enable refentry "date" profiling? - - - - -<xsl:param name="refentry.date.profile.enabled">0</xsl:param> - - -Description - -If the value of -refentry.date.profile.enabled is non-zero, then -during refentry metadata gathering, the info profile -specified by the customizable -refentry.date.profile parameter is used. - -If instead the value of -refentry.date.profile.enabled is zero (the -default), then "hard coded" logic within the DocBook XSL stylesheets -is used for gathering refentry "date" data. - -If you find that the default refentry -metadata-gathering behavior is causing incorrect "date" data to show -up in your output, then consider setting a non-zero value for -refentry.date.profile.enabled and adjusting the -value of refentry.date.profile to cause correct -data to be gathered. - -Note that the terms "source" and "date" have special meanings in -this context. For details, see the documentation for the -refentry.date.profile parameter. - - - - - - -refentry.manual.profile -string - - -refentry.manual.profile -Specifies profile for refentry "manual" data - - - - -<xsl:param name="refentry.manual.profile"> - (($info[//title])[last()]/title)[1]| - ../title/node() -</xsl:param> - - - -Description - -The value of refentry.manual.profile is -a string representing an XPath expression. It is evaluated at -run-time and used only if -refentry.manual.profile.enabled is -non-zero. Otherwise, the refentry metadata-gathering logic -"hard coded" into the stylesheets is used. - -In man pages, this content is usually displayed in the middle of -the header of the page. The man(7) man page -describes this as "the title of the manual (e.g., Linux -Programmer's Manual)". Here are some examples from -existing man pages: - - - dpkg utilities - (dpkg-name) - - - User Contributed Perl Documentation - (GET) - - - GNU Development Tools - (ld) - - - Emperor Norton Utilities - (ddate) - - - Debian GNU/Linux manual - (faked) - - - GIMP Manual Pages - (gimp) - - - KDOC Documentation System - (qt2kdoc) - - - - - - - - - -refentry.manual.profile.enabled -boolean - - -refentry.manual.profile.enabled -Enable refentry "manual" profiling? - - - - -<xsl:param name="refentry.manual.profile.enabled">0</xsl:param> - - -Description - -If the value of -refentry.manual.profile.enabled is -non-zero, then during refentry metadata gathering, the info -profile specified by the customizable -refentry.manual.profile parameter is -used. - -If instead the value of -refentry.manual.profile.enabled is zero (the -default), then "hard coded" logic within the DocBook XSL stylesheets -is used for gathering refentry "manual" data. - -If you find that the default refentry -metadata-gathering behavior is causing incorrect "manual" data to show -up in your output, then consider setting a non-zero value for -refentry.manual.profile.enabled and adjusting -the value of refentry.manual.profile to cause -correct data to be gathered. - -Note that the term "manual" has a special meanings in this -context. For details, see the documentation for the -refentry.manual.profile parameter. - - - - - - -refentry.source.name.suppress -boolean - - -refentry.source.name.suppress -Suppress "name" part of refentry "source" contents? - - - - -<xsl:param name="refentry.source.name.suppress">0</xsl:param> - - -Description - -If the value of -refentry.source.name.suppress is non-zero, then -during refentry metadata gathering, no "source name" data -is added to the refentry "source" contents. Instead (unless -refentry.version.suppress is also non-zero), -only "version" data is added to the "source" contents. - -If you find that the refentry metadata gathering -mechanism is causing unwanted "source name" data to show up in your -output -- for example, in the footer (or possibly header) of a man -page -- then you might consider setting a non-zero value for -refentry.source.name.suppress. - -Note that the terms "source", "source name", and "version" have -special meanings in this context. For details, see the documentation -for the refentry.source.name.profile -parameter. - - - - - - -refentry.source.name.profile -string - - -refentry.source.name.profile -Specifies profile for refentry "source name" data - - - - -<xsl:param name="refentry.source.name.profile"> - (($info[//productname])[last()]/productname)[1]| - (($info[//corpname])[last()]/corpname)[1]| - (($info[//corpcredit])[last()]/corpcredit)[1]| - (($info[//corpauthor])[last()]/corpauthor)[1]| - (($info[//orgname])[last()]/orgname)[1]| - (($info[//publishername])[last()]/publishername)[1] -</xsl:param> - - - -Description - -The value of refentry.source.name.profile -is a string representing an XPath expression. It is evaluated at -run-time and used only if -refentry.source.name.profile.enabled is -non-zero. Otherwise, the refentry metadata-gathering logic -"hard coded" into the stylesheets is used. - -A "source name" is one part of a (potentially) two-part -Name Version -"source" field. In man pages, it is usually displayed in the left -footer of the page. It typically indicates the software system or -product that the item documented in the man page belongs to. The -man(7) man page describes it as "the source of -the command", and provides the following examples: - - - For binaries, use something like: GNU, NET-2, SLS - Distribution, MCC Distribution. - - - For system calls, use the version of the kernel that you - are currently looking at: Linux 0.99.11. - - - For library calls, use the source of the function: GNU, BSD - 4.3, Linux DLL 4.4.1. - - - - -In practice, there are many pages that simply have a Version -number in the "source" field. So, it looks like what we have is a -two-part field, -Name Version, -where: - - - Name - - product name (e.g., BSD) or org. name (e.g., GNU) - - - - Version - - version number - - - -Each part is optional. If the Name is a -product name, then the Version is probably -the version of the product. Or there may be no -Name, in which case, if there is a -Version, it is probably the version -of the item itself, not the product it is part of. Or, if the -Name is an organization name, then there -probably will be no Version. - - - - - -refentry.source.name.profile.enabled -boolean - - -refentry.source.name.profile.enabled -Enable refentry "source name" profiling? - - - - -<xsl:param name="refentry.source.name.profile.enabled">0</xsl:param> - - -Description - -If the value of -refentry.source.name.profile.enabled is -non-zero, then during refentry metadata gathering, the info -profile specified by the customizable -refentry.source.name.profile parameter is -used. - -If instead the value of -refentry.source.name.profile.enabled is zero (the -default), then "hard coded" logic within the DocBook XSL stylesheets -is used for gathering refentry "source name" data. - -If you find that the default refentry -metadata-gathering behavior is causing incorrect "source name" data to -show up in your output, then consider setting a non-zero value for -refentry.source.name.profile.enabled and -adjusting the value of -refentry.source.name.profile to cause correct -data to be gathered. - -Note that the terms "source" and "source name" have special -meanings in this context. For details, see the documentation for the -refentry.source.name.profile parameter. - - - - - - -refentry.version.suppress -boolean - - -refentry.version.suppress -Suppress "version" part of refentry "source" contents? - - - - -<xsl:param name="refentry.version.suppress">0</xsl:param> - - -Description - -If the value of refentry.version.suppress -is non-zero, then during refentry metadata gathering, no -"version" data is added to the refentry "source" -contents. Instead (unless -refentry.source.name.suppress is also -non-zero), only "source name" data is added to the "source" -contents. - -If you find that the refentry metadata gathering -mechanism is causing unwanted "version" data to show up in your output --- for example, in the footer (or possibly header) of a man page -- -then you might consider setting a non-zero value for -refentry.version.suppress. - -Note that the terms "source", "source name", and "version" have -special meanings in this context. For details, see the documentation -for the refentry.source.name.profile -parameter. - - - - - - -refentry.version.profile -string - - -refentry.version.profile -Specifies profile for refentry "version" data - - - - -<xsl:param name="refentry.version.profile"> - (($info[//productnumber])[last()]/productnumber)[1]| - (($info[//edition])[last()]/edition)[1]| - (($info[//releaseinfo])[last()]/releaseinfo)[1] -</xsl:param> - - - -Description - -The value of refentry.version.profile is -a string representing an XPath expression. It is evaluated at -run-time and used only if -refentry.version.profile.enabled is -non-zero. Otherwise, the refentry metadata-gathering logic -"hard coded" into the stylesheets is used. - -A "source.name" is one part of a (potentially) two-part -Name Version -"source" field. For more details, see the documentation for the -refentry.source.name.profile parameter. - - - - - - -refentry.version.profile.enabled -boolean - - -refentry.version.profile.enabled -Enable refentry "version" profiling? - - - - -<xsl:param name="refentry.version.profile.enabled">0</xsl:param> - - -Description - -If the value of -refentry.version.profile.enabled is -non-zero, then during refentry metadata gathering, the info -profile specified by the customizable -refentry.version.profile parameter is -used. - -If instead the value of -refentry.version.profile.enabled is zero (the -default), then "hard coded" logic within the DocBook XSL stylesheets -is used for gathering refentry "version" data. - -If you find that the default refentry -metadata-gathering behavior is causing incorrect "version" data to show -up in your output, then consider setting a non-zero value for -refentry.version.profile.enabled and adjusting -the value of refentry.version.profile to cause -correct data to be gathered. - -Note that the terms "source" and "version" have special -meanings in this context. For details, see the documentation for the -refentry.version.profile parameter. - - - - - - -refentry.manual.fallback.profile -string - - -refentry.manual.fallback.profile -Specifies profile of "fallback" for refentry "manual" data - - - - -<xsl:param name="refentry.manual.fallback.profile"> -refmeta/refmiscinfo[not(@class = 'date')][1]/node()</xsl:param> - - - -Description - -The value of -refentry.manual.fallback.profile is a string -representing an XPath expression. It is evaluated at run-time and -used only if no "manual" data can be found by other means (that is, -either using the refentry metadata-gathering logic "hard -coded" in the stylesheets, or the value of -refentry.manual.profile, if it is -enabled). - - -Depending on which XSLT engine you run, either the EXSLT -dyn:evaluate extension function (for xsltproc or -Xalan) or saxon:evaluate extension function (for -Saxon) are used to dynamically evaluate the value of -refentry.manual.fallback.profile at -run-time. If you don't use xsltproc, Saxon, Xalan -- or some other -XSLT engine that supports dyn:evaluate -- you -must manually disable fallback processing by setting an empty value -for the refentry.manual.fallback.profile -parameter. - - - - - - - -refentry.source.fallback.profile -string - - -refentry.source.fallback.profile -Specifies profile of "fallback" for refentry "source" data - - - - -<xsl:param name="refentry.source.fallback.profile"> -refmeta/refmiscinfo[not(@class = 'date')][1]/node()</xsl:param> - - - -Description - -The value of -refentry.source.fallback.profile is a string -representing an XPath expression. It is evaluated at run-time and used -only if no "source" data can be found by other means (that is, either -using the refentry metadata-gathering logic "hard coded" in -the stylesheets, or the value of the -refentry.source.name.profile and -refentry.version.profile parameters, if those -are enabled). - - -Depending on which XSLT engine you run, either the EXSLT -dyn:evaluate extension function (for xsltproc or -Xalan) or saxon:evaluate extension function (for -Saxon) are used to dynamically evaluate the value of -refentry.source.fallback.profile at -run-time. If you don't use xsltproc, Saxon, Xalan -- or some other -XSLT engine that supports dyn:evaluate -- you -must manually disable fallback processing by setting an empty value -for the refentry.source.fallback.profile -parameter. - - - - - - - - Page header/footer - - -man.th.extra1.suppress -boolean - - -man.th.extra1.suppress -Suppress extra1 part of header/footer? - - - - -<xsl:param name="man.th.extra1.suppress">0</xsl:param> - - -Description - -If the value of man.th.extra1.suppress is -non-zero, then the extra1 part of the -.TH title line header/footer is suppressed. - -The content of the extra1 field is almost -always displayed in the center footer of the page and is, universally, -a date. - - - - - - -man.th.extra2.suppress -boolean - - -man.th.extra2.suppress -Suppress extra2 part of header/footer? - - - - -<xsl:param name="man.th.extra2.suppress">0</xsl:param> - - -Description - -If the value of man.th.extra2.suppress is -non-zero, then the extra2 part of the -.TH title line header/footer is suppressed. - -The content of the extra2 field is usually -displayed in the left footer of the page and is typically "source" -data, often in the form -Name Version; -for example, "GTK+ 1.2" (from the gtk-options(7) -man page). - - - You can use the - refentry.source.name.suppress and - refentry.version.suppress parameters to - independently suppress the Name and - Version parts of the - extra2 field. - - - - - - - -man.th.extra3.suppress -boolean - - -man.th.extra3.suppress -Suppress extra3 part of header/footer? - - - - -<xsl:param name="man.th.extra3.suppress">0</xsl:param> - - -Description - -If the value of man.th.extra3.suppress is -non-zero, then the extra3 part of the -.TH title line header/footer is -suppressed. - -The content of the extra3 field is usually -displayed in the middle header of the page and is typically a "manual -name"; for example, "GTK+ User's Manual" (from the -gtk-options(7) man page). - - - - - - -man.th.title.max.length -integer - - -man.th.title.max.length -Maximum length of title in header/footer - - - - -<xsl:param name="man.th.title.max.length">20</xsl:param> - - - -Description - -Specifies the maximum permitted length of the title part of the -man-page .TH title line header/footer. If the title -exceeds the maxiumum specified, it is truncated down to the maximum -permitted length. - -Details - - -Every man page generated using the DocBook stylesheets has a -title line, specified using the TH roff -macro. Within that title line, there is always, at a minimum, a title, -followed by a section value (representing a man "section" -- usually -just a number). - -The title and section are displayed, together, in the visible -header of each page. Where in the header they are displayed depends on -OS the man page is viewed on, and on what version of nroff/groff/man -is used for viewing the page. But, at a minimum and across all -systems, the title and section are displayed on the right-hand column -of the header. On many systems -- those with a modern groff, including -Linux systems -- they are displayed twice: both in the left and right -columns of the header. - -So if the length of the title exceeds a certain percentage of -the column width in which the page is viewed, the left and right -titles can end up overlapping, making them unreadable, or breaking to -another line, which doesn't look particularly good. - -So the stylesheets provide the -man.th.title.max.length parameter as a means -for truncating titles that exceed the maximum length that can be -viewing properly in a page header. - -The default value is reasonable but somewhat arbitrary. If you -have pages with long titles, you may want to experiment with changing -the value in order to achieve the correct aesthetic results. - - - - - - - -man.th.extra2.max.length -integer - - -man.th.extra2.max.length -Maximum length of extra2 in header/footer - - - - -<xsl:param name="man.th.extra2.max.length">30</xsl:param> - - - -Description - -Specifies the maximum permitted length of the -extra2 part of the man-page part of the -.TH title line header/footer. If the -extra2 content exceeds the maxiumum specified, it -is truncated down to the maximum permitted length. - -The content of the extra2 field is usually -displayed in the left footer of the page and is typically "source" -data indicating the software system or product that the item -documented in the man page belongs to, often in the form -Name Version; -for example, "GTK+ 1.2" (from the gtk-options(7) -man page). - -The default value for this parameter is reasonable but somewhat -arbitrary. If you are processing pages with long "source" information, -you may want to experiment with changing the value in order to achieve -the correct aesthetic results. - - - - - -man.th.extra3.max.length -integer - - -man.th.extra3.max.length -Maximum length of extra3 in header/footer - - - - -<xsl:param name="man.th.extra3.max.length">30</xsl:param> - - - -Description - -Specifies the maximum permitted length of the -extra3 part of the man-page .TH -title line header/footer. If the extra3 content -exceeds the maxiumum specified, it is truncated down to the maximum -permitted length. - -The content of the extra3 field is usually -displayed in the middle header of the page and is typically a "manual -name"; for example, "GTK+ User's Manual" (from the -gtk-options(7) man page). - -The default value for this parameter is reasonable but somewhat -arbitrary. If you are processing pages with long "manual names" -- or -especially if you are processing pages that have both long "title" -parts (command/function, etc. names) and long -manual names -- you may want to experiment with changing the value in -order to achieve the correct aesthetic results. - - - - - - Output - - - man.output.manifest.enabled - boolean - - - man.output.manifest.enabled - Generate a manifest file? - - - - <xsl:param name="man.output.manifest.enabled" select="0"></xsl:param> - - - Description - - If non-zero, a list of filenames for man pages generated by - the stylesheet transformation is written to the file named by the - man.output.manifest.filename parameter. - - - - - - - man.output.manifest.filename - string - - - man.output.manifest.filename - Name of manifest file - - - - <xsl:param name="man.output.manifest.filename">MAN.MANIFEST</xsl:param> - - - Description - - The man.output.manifest.filename parameter - specifies the name of the file to which the manpages manifest file - is written (if the value of the - man.output.manifest.enabled parameter is - non-zero). - - - - - - -man.output.in.separate.dir -boolean - - -man.output.in.separate.dir -Output man-page files in separate output directory? - - - - -<xsl:param name="man.output.in.separate.dir" select="0"></xsl:param> - - - -Description - -If the value of man.output.in.separate.dir -parameter is non-zero, man-page files are output in a separate -directory, specified by the man.output.base.dir -parameter; otherwise, if the value of -man.output.in.separate.dir is zero, man-page files -are not output in a separate directory. - - - - - - -man.output.lang.in.name.enabled -boolean - - -man.output.lang.in.name.enabled -Include $LANG value in man-page filename/pathname? - - - - -<xsl:param name="man.output.lang.in.name.enabled" select="0"></xsl:param> - - - -Description - - The man.output.lang.in.name.enabled - parameter specifies whether a $lang value is - included in man-page filenames and pathnames. - - If the value of - man.output.lang.in.name.enabled is non-zero, - man-page files are output with the $lang value - included in their filenames or pathnames as follows; - - - - if man.output.subdirs.enabled is - non-zero, each file is output to, e.g., a - man/$lang/man8/foo.8 - pathname - - - if man.output.subdirs.enabled is - zero, each file is output with a - foo.$lang.8 - filename - - - - - - - - - -man.output.base.dir -uri - - -man.output.base.dir -Specifies separate output directory - - - -<xsl:param name="man.output.base.dir">man/</xsl:param> - - -Description - -The man.output.base.dir parameter -specifies the base directory into which man-page files are output. The -man.output.subdirs.enabled parameter controls -whether the files are output in subdirectories within the base -directory. - - - The values of the man.output.base.dir - and man.output.subdirs.enabled parameters are - used only if the value of - man.output.in.separate.dir parameter is - non-zero. If the value of the - man.output.in.separate.dir is zero, man-page - files are not output in a separate directory. - - - - - - - -man.output.subdirs.enabled -boolean - - -man.output.subdirs.enabled -Output man-page files in subdirectories within base output directory? - - - - -<xsl:param name="man.output.subdirs.enabled" select="1"></xsl:param> - - - -Description - -The man.output.subdirs.enabled parameter -controls whether man-pages files are output in subdirectories within -the base directory specified by the directory specified by the -man.output.base.dir parameter. - - - The values of the man.output.base.dir - and man.output.subdirs.enabled parameters are - used only if the value of - man.output.in.separate.dir parameter is - non-zero. If the value of the - man.output.in.separate.dir is zero, man-page - files are not output in a separate directory. - - - - - - - -man.output.quietly -boolean - - -man.output.quietly -Suppress filename messages emitted when generating output? - - - - -<xsl:param name="man.output.quietly" select="0"></xsl:param> - - - -Description - -If zero (the default), for each man-page file created, a message -with the name of the file is emitted. If non-zero, the files are -output "quietly" -- that is, the filename messages are -suppressed. - - - If you are processing a large amount of refentry - content, you may be able to speed up processing significantly by - setting a non-zero value for - man.output.quietly. - - - - - - - -man.output.encoding -string - - -man.output.encoding -Encoding used for man-page output - - - - -<xsl:param name="man.output.encoding">UTF-8</xsl:param> - - - -Description - -This parameter specifies the encoding to use for files generated -by the manpages stylesheet. Not all processors support specification -of this parameter. - - - If the value of the man.charmap.enabled - parameter is non-zero (the default), keeping the - man.output.encoding parameter at its default - value (UTF-8) or setting it to - UTF-16 does not cause your - man pages to be output in raw UTF-8 or UTF-16 -- because - any Unicode characters for which matches are found in the enabled - character map will be replaced with roff escape sequences before the - final man-page files are generated. - - So if you want to generate "real" UTF-8 man pages, without any - character substitution being performed on your content, you need to - set man.charmap.enabled to zero (which will - completely disable character-map processing). - - You may also need to set - man.charmap.enabled to zero if you want to - output man pages in an encoding other than UTF-8 - or UTF-16. Character-map processing is based on - Unicode character values and may not work with other output - encodings. - - - - - - - -man.output.better.ps.enabled -boolean - - -man.output.better.ps.enabled -Enable enhanced print/PostScript output? - - - -<xsl:param name="man.output.better.ps.enabled">0</xsl:param> - - -Description - -If the value of the -man.output.better.ps.enabled parameter is -non-zero, certain markup is embedded in each generated man page -such that PostScript output from the man -Tps -command for that page will include a number of enhancements -designed to improve the quality of that output. - -If man.output.better.ps.enabled is -zero (the default), no such markup is embedded in generated man -pages, and no enhancements are included in the PostScript -output generated from those man pages by the man - -Tps command. - - - The enhancements provided by this parameter rely on - features that are specific to groff (GNU troff) and that are - not part of “classic” AT&T troff or any of its - derivatives. Therefore, any man pages you generate with this - parameter enabled will be readable only on systems on which - the groff (GNU troff) program is installed, such as GNU/Linux - systems. The pages will not not be - readable on systems on with the classic troff (AT&T - troff) command is installed. - - -The value of this parameter only affects PostScript output - generated from the man command. It has no - effect on output generated using the FO backend. - - - You can generate PostScript output for any man page by - running the following command: - man FOO -Tps > FOO.ps - You can then generate PDF output by running the following - command: - ps2pdf FOO.ps - - - - - - - - Other - - -man.table.footnotes.divider -string - - -man.table.footnotes.divider -Specifies divider string that appears before table footnotes - - - - -<xsl:param name="man.table.footnotes.divider">----</xsl:param> - - - -Description - -In each table that contains footenotes, the string specified by -the man.table.footnotes.divider parameter is -output before the list of footnotes for the table. - - - - - - -man.subheading.divider.enabled -boolean - - -man.subheading.divider.enabled -Add divider comment to roff source before/after subheadings? - - - - -<xsl:param name="man.subheading.divider.enabled">0</xsl:param> - - - -Description - -If the value of the -man.subheading.divider.enabled parameter is -non-zero, the contents of the -man.subheading.divider parameter are used to -add a "divider" before and after subheadings in the roff -output. The divider is not visisble in the -rendered man page; it is added as a comment, in the source, -simply for the purpose of increasing reability of the source. - -If man.subheading.divider.enabled is zero -(the default), the subheading divider is suppressed. - - - - - - -man.subheading.divider -string - - -man.subheading.divider -Specifies string to use as divider comment before/after subheadings - - - - -<xsl:param name="man.subheading.divider">========================================================================</xsl:param> - - - -Description - -If the value of the -man.subheading.divider.enabled parameter is -non-zero, the contents of the -man.subheading.divider parameter are used to -add a "divider" before and after subheadings in the roff -output. The divider is not visisble in the -rendered man page; it is added as a comment, in the source, -simply for the purpose of increasing reability of the source. - -If man.subheading.divider.enabled is zero -(the default), the subheading divider is suppressed. - - - - - - - The Stylesheet - - The param.xsl stylesheet is just a - wrapper around all of these parameters. - - -<xsl:stylesheet exclude-result-prefixes="src" version="1.0"> - -<!-- This file is generated from param.xweb --> - -<!-- ******************************************************************** - $Id: param.xweb 8235 2009-02-09 16:22:14Z xmldoc $ - ******************************************************************** - - This file is part of the XSL DocBook Stylesheet distribution. - See ../README or http://docbook.sf.net/release/xsl/current/ for - copyright and other information. - - ******************************************************************** --> - -<src:fragref linkend="man.authors.section.enabled.frag"></src:fragref> -<src:fragref linkend="man.break.after.slash.frag"></src:fragref> -<src:fragref linkend="man.base.url.for.relative.links.frag"></src:fragref> -<src:fragref linkend="man.charmap.enabled.frag"></src:fragref> -<src:fragref linkend="man.charmap.subset.profile.frag"></src:fragref> -<src:fragref linkend="man.charmap.subset.profile.english.frag"></src:fragref> -<src:fragref linkend="man.charmap.uri.frag"></src:fragref> -<src:fragref linkend="man.charmap.use.subset.frag"></src:fragref> -<src:fragref linkend="man.copyright.section.enabled.frag"></src:fragref> -<src:fragref linkend="man.endnotes.are.numbered.frag"></src:fragref> -<src:fragref linkend="man.endnotes.list.enabled.frag"></src:fragref> -<src:fragref linkend="man.endnotes.list.heading.frag"></src:fragref> -<src:fragref linkend="man.font.funcprototype.frag"></src:fragref> -<src:fragref linkend="man.font.funcsynopsisinfo.frag"></src:fragref> -<src:fragref linkend="man.font.links.frag"></src:fragref> -<src:fragref linkend="man.font.table.headings.frag"></src:fragref> -<src:fragref linkend="man.font.table.title.frag"></src:fragref> -<src:fragref linkend="man.funcsynopsis.style.frag"></src:fragref> -<src:fragref linkend="man.hyphenate.computer.inlines.frag"></src:fragref> -<src:fragref linkend="man.hyphenate.filenames.frag"></src:fragref> -<src:fragref linkend="man.hyphenate.frag"></src:fragref> -<src:fragref linkend="man.hyphenate.urls.frag"></src:fragref> -<src:fragref linkend="man.indent.blurbs.frag"></src:fragref> -<src:fragref linkend="man.indent.lists.frag"></src:fragref> -<src:fragref linkend="man.indent.refsect.frag"></src:fragref> -<src:fragref linkend="man.indent.verbatims.frag"></src:fragref> -<src:fragref linkend="man.indent.width.frag"></src:fragref> -<src:fragref linkend="man.justify.frag"></src:fragref> -<src:fragref linkend="man.output.base.dir.frag"></src:fragref> -<src:fragref linkend="man.output.encoding.frag"></src:fragref> -<src:fragref linkend="man.output.in.separate.dir.frag"></src:fragref> -<src:fragref linkend="man.output.lang.in.name.enabled.frag"></src:fragref> -<src:fragref linkend="man.output.manifest.enabled.frag"></src:fragref> -<src:fragref linkend="man.output.manifest.filename.frag"></src:fragref> -<src:fragref linkend="man.output.better.ps.enabled.frag"></src:fragref> -<src:fragref linkend="man.output.quietly.frag"></src:fragref> -<src:fragref linkend="man.output.subdirs.enabled.frag"></src:fragref> -<src:fragref linkend="man.segtitle.suppress.frag"></src:fragref> -<src:fragref linkend="man.string.subst.map.frag"></src:fragref> -<src:fragref linkend="man.string.subst.map.local.post.frag"></src:fragref> -<src:fragref linkend="man.string.subst.map.local.pre.frag"></src:fragref> -<src:fragref linkend="man.subheading.divider.enabled.frag"></src:fragref> -<src:fragref linkend="man.subheading.divider.frag"></src:fragref> -<src:fragref linkend="man.table.footnotes.divider.frag"></src:fragref> -<src:fragref linkend="man.th.extra1.suppress.frag"></src:fragref> -<src:fragref linkend="man.th.extra2.max.length.frag"></src:fragref> -<src:fragref linkend="man.th.extra2.suppress.frag"></src:fragref> -<src:fragref linkend="man.th.extra3.max.length.frag"></src:fragref> -<src:fragref linkend="man.th.extra3.suppress.frag"></src:fragref> -<src:fragref linkend="man.th.title.max.length.frag"></src:fragref> -<src:fragref linkend="refentry.date.profile.enabled.frag"></src:fragref> -<src:fragref linkend="refentry.date.profile.frag"></src:fragref> -<src:fragref linkend="refentry.manual.fallback.profile.frag"></src:fragref> -<src:fragref linkend="refentry.manual.profile.enabled.frag"></src:fragref> -<src:fragref linkend="refentry.manual.profile.frag"></src:fragref> -<src:fragref linkend="refentry.meta.get.quietly.frag"></src:fragref> -<src:fragref linkend="refentry.source.fallback.profile.frag"></src:fragref> -<src:fragref linkend="refentry.source.name.profile.enabled.frag"></src:fragref> -<src:fragref linkend="refentry.source.name.profile.frag"></src:fragref> -<src:fragref linkend="refentry.source.name.suppress.frag"></src:fragref> -<src:fragref linkend="refentry.version.profile.enabled.frag"></src:fragref> -<src:fragref linkend="refentry.version.profile.frag"></src:fragref> -<src:fragref linkend="refentry.version.suppress.frag"></src:fragref> -</xsl:stylesheet> - - - -
    diff --git a/docbook-xsl-1.75.2/manpages/param.xsl b/docbook-xsl-1.75.2/manpages/param.xsl deleted file mode 100644 index 39d2059..0000000 --- a/docbook-xsl-1.75.2/manpages/param.xsl +++ /dev/null @@ -1,193 +0,0 @@ - - - - - - - -1 -0 -[set $man.base.url.for.relative.links]/ - - -@*[local-name() = 'block'] = 'Miscellaneous Technical' or -(@*[local-name() = 'block'] = 'C1 Controls And Latin-1 Supplement (Latin-1 Supplement)' and - (@*[local-name() = 'class'] = 'symbols' or - @*[local-name() = 'class'] = 'letters') -) or -@*[local-name() = 'block'] = 'Latin Extended-A' -or -(@*[local-name() = 'block'] = 'General Punctuation' and - (@*[local-name() = 'class'] = 'spaces' or - @*[local-name() = 'class'] = 'dashes' or - @*[local-name() = 'class'] = 'quotes' or - @*[local-name() = 'class'] = 'bullets' - ) -) or -@*[local-name() = 'name'] = 'HORIZONTAL ELLIPSIS' or -@*[local-name() = 'name'] = 'WORD JOINER' or -@*[local-name() = 'name'] = 'SERVICE MARK' or -@*[local-name() = 'name'] = 'TRADE MARK SIGN' or -@*[local-name() = 'name'] = 'ZERO WIDTH NO-BREAK SPACE' - - -@*[local-name() = 'block'] = 'Miscellaneous Technical' or -(@*[local-name() = 'block'] = 'C1 Controls And Latin-1 Supplement (Latin-1 Supplement)' and - @*[local-name() = 'class'] = 'symbols') -or -(@*[local-name() = 'block'] = 'General Punctuation' and - (@*[local-name() = 'class'] = 'spaces' or - @*[local-name() = 'class'] = 'dashes' or - @*[local-name() = 'class'] = 'quotes' or - @*[local-name() = 'class'] = 'bullets' - ) -) or -@*[local-name() = 'name'] = 'HORIZONTAL ELLIPSIS' or -@*[local-name() = 'name'] = 'WORD JOINER' or -@*[local-name() = 'name'] = 'SERVICE MARK' or -@*[local-name() = 'name'] = 'TRADE MARK SIGN' or -@*[local-name() = 'name'] = 'ZERO WIDTH NO-BREAK SPACE' - - - -1 -1 -1 - - BI - B -B - B - B -ansi -0 -0 -0 -0 - - - - -4 -0 -man/ -UTF-8 - - - -MAN.MANIFEST -0 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -0 -======================================================================== ----- -0 -30 -0 -30 -0 -20 -0 - - (($info[//date])[last()]/date)[1]| - (($info[//pubdate])[last()]/pubdate)[1] - - -refmeta/refmiscinfo[not(@class = 'date')][1]/node() -0 - - (($info[//title])[last()]/title)[1]| - ../title/node() - - - -refmeta/refmiscinfo[not(@class = 'date')][1]/node() -0 - - (($info[//productname])[last()]/productname)[1]| - (($info[//corpname])[last()]/corpname)[1]| - (($info[//corpcredit])[last()]/corpcredit)[1]| - (($info[//corpauthor])[last()]/corpauthor)[1]| - (($info[//orgname])[last()]/orgname)[1]| - (($info[//publishername])[last()]/publishername)[1] - -0 -0 - - (($info[//productnumber])[last()]/productnumber)[1]| - (($info[//edition])[last()]/edition)[1]| - (($info[//releaseinfo])[last()]/releaseinfo)[1] - -0 - diff --git a/docbook-xsl-1.75.2/manpages/pi.xml b/docbook-xsl-1.75.2/manpages/pi.xml deleted file mode 100644 index 8db98d3..0000000 --- a/docbook-xsl-1.75.2/manpages/pi.xml +++ /dev/null @@ -1,70 +0,0 @@ - - -manpages Processing Instruction Reference - - $Id: pi.xsl 7644 2008-01-16 11:04:07Z xmldoc $ - - - - Introduction - -This is generated reference documentation for all - user-specifiable processing instructions (PIs) in the DocBook - XSL stylesheets for manpages output. - - -You add these PIs at particular points in a document to - cause specific “exceptions†to formatting/output behavior. To - make global changes in formatting/output behavior across an - entire document, it’s better to do it by setting an - appropriate stylesheet parameter (if there is one). - - - - - - - - -dbman_funcsynopsis-style -Specifies presentation style for a funcsynopsis. - - - - dbman funcsynopsis-style="kr"|"ansi" - - -Description - -Use the dbman - funcsynopsis-style PI as a child of a - funcsynopsis or anywhere within a funcsynopsis - to control the presentation style for output of all - funcprototype instances within that funcsynopsis. - - Parameters - - - funcsynopsis-style="kr" - - -Displays the funcprototype in K&R style - - - - funcsynopsis-style="ansi" - - -Displays the funcprototype in ANSI style - - - - - - Related Global Parameters - -man.funcsynopsis.style - - - - diff --git a/docbook-xsl-1.75.2/manpages/pi.xsl b/docbook-xsl-1.75.2/manpages/pi.xsl deleted file mode 100644 index 7b0975b..0000000 --- a/docbook-xsl-1.75.2/manpages/pi.xsl +++ /dev/null @@ -1,79 +0,0 @@ - - - - - -manpages Processing Instruction Reference - - $Id: pi.xsl 7644 2008-01-16 11:04:07Z xmldoc $ - - - - Introduction - This is generated reference documentation for all - user-specifiable processing instructions (PIs) in the DocBook - XSL stylesheets for manpages output. - - You add these PIs at particular points in a document to - cause specific “exceptions†to formatting/output behavior. To - make global changes in formatting/output behavior across an - entire document, it’s better to do it by setting an - appropriate stylesheet parameter (if there is one). - - - - - - - - - Specifies presentation style for a funcsynopsis. - - Use the dbman - funcsynopsis-style PI as a child of a - funcsynopsis or anywhere within a funcsynopsis - to control the presentation style for output of all - funcprototype instances within that funcsynopsis. - - - dbman funcsynopsis-style="kr"|"ansi" - - - - funcsynopsis-style="kr" - - Displays the funcprototype in K&R style - - - funcsynopsis-style="ansi" - - Displays the funcprototype in ANSI style - - - - - - man.funcsynopsis.style - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/manpages/profile-docbook.xsl b/docbook-xsl-1.75.2/manpages/profile-docbook.xsl deleted file mode 100644 index 5d17785..0000000 --- a/docbook-xsl-1.75.2/manpages/profile-docbook.xsl +++ /dev/null @@ -1,280 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Note: namesp. cut : stripped namespace before processingNote: namesp. cut : processing stripped document - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - MAN.MANIFEST - - - - - - - - - - - Erro - - - no refentry - - - No refentry elements found - - in " - - - - ... - - - - - - " - - . - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - '\" t - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - .\" ----------------------------------------------------------------- - - .\" * MAIN CONTENT STARTS HERE * - - .\" ----------------------------------------------------------------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/manpages/refentry.xsl b/docbook-xsl-1.75.2/manpages/refentry.xsl deleted file mode 100644 index 4f6b5af..0000000 --- a/docbook-xsl-1.75.2/manpages/refentry.xsl +++ /dev/null @@ -1,319 +0,0 @@ - - - - - - - - - - - - - .br - - - - - - - - - - - - - - - , - - - - - - - - - - - - - - - - - - - - - - - - - - - - \- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - .SS " - - " - - - - - - .RS - - .RE - - - - - - - - - - - - - - - - - - - - - - - - .RS - - - - - - - .RE - - - - - - - - - - .ti (\n(SNu * 5u / 3u) - - - - - - - - - - - - - - - - - - - (\n(SNu) - - - - .RS (\n(SNu) - - .RE - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \c - - .SH-xref - " - - \c" - - \& - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/manpages/synop.xsl b/docbook-xsl-1.75.2/manpages/synop.xsl deleted file mode 100644 index 2e0b14e..0000000 --- a/docbook-xsl-1.75.2/manpages/synop.xsl +++ /dev/null @@ -1,432 +0,0 @@ - - - - - - | - - - - - - - - - - - ( - - ) - - - - - - - - - - - - - - - - - - - - - - - - - .HP - \w' - ( - - ) - \ 'u - - ( - - ) - \ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - .br▒ - - - - - - .ad l - - - - .hy 0 - - - .HP - \w' - - - - - - - - - \ 'u - - - - - - - .ad - - - - .hy - - - - - - - - - - - - - - - - - - .ad l - - - - .hy 0 - - - - - .ad - - - - .hy - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - .HP - \w' - - - - - - - - - ('u - - . - - - - - - - - " - - ( - - - - - - - - - " - - - - - - - - - - - .sp - .RS - - - - - - - .RE - - - - - - - - - - - - - - ); - - - - ...); - - - - void); - - - - ...); - - - - - - - - - - - - - - - - , - - - ); - - - - - - - - - - - - , - - - ); - - - - - - - - .br - . - - - - - - - - " - - - - - ; - " - - - - - - - - - - - - - - "░" - - "░" - - - - ( - - ) - - - diff --git a/docbook-xsl-1.75.2/manpages/table.xsl b/docbook-xsl-1.75.2/manpages/table.xsl deleted file mode 100644 index 3d95051..0000000 --- a/docbook-xsl-1.75.2/manpages/table.xsl +++ /dev/null @@ -1,633 +0,0 @@ - - - - - - - : - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - allbox - - - - - - - - center - - - - - - - - expand - - - - - - - - - - - - - - - - - - - - - - -
    -
    -
    -
    - - - - - - - -
    -
    - - - - - - - - - - - - - - - - - - .sp - - . - - - - *[nested▀table] - - - - - - - - .TS - - - H - - - - - - - - - - - tab( - - ) - - - - ; - - - - - - - - - - - - - - - - .TH - - - - - - - - - - - .T& - - - - - - - - - - - - - - - - - - - - - - .TE - - .sp 1 - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - T{ - - T} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Warn - - tbl convert - - Extracted a nested table - - - [\fInested▀table\fR]* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - . - - - - - - - - - - - - - - - - - - - - - - - ^ - - - c - - - r - - - n - - - - l - - - - - - - - t - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ^ - - - - s - - - - - - - - - - - - - - - - - - - - - - - - - - - - - .br - - - - - - - - - ftn. - - - - - - # - - - - - - [ - - ] - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    diff --git a/docbook-xsl-1.75.2/manpages/utility.xsl b/docbook-xsl-1.75.2/manpages/utility.xsl deleted file mode 100644 index 26a7513..0000000 --- a/docbook-xsl-1.75.2/manpages/utility.xsl +++ /dev/null @@ -1,555 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \fB - - \fR - - - - - - - - - - - - - \fI - - \fR - - - - - - - - - - - - \FC - - - - - - \F[] - - - - - - - - .fam C - .ps -1 - - - - - - .fam - .ps +1 - - - - - - .fam C - - - - - - .fam - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - .sp - - .ps +1 - - - - - - .it 1 an-trap - .nr an-no-space-flag 1 - .nr an-break-flag 1 - .br - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - .sp - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - .RS - - - - - - - - - - - - - - - - - - - - - .RE - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - .SH - - " - - - - - - - - - - - " - - - - - - - - - .\" - - - - - - - - - n - .ie - - \{\ - - - - n - .if - - \{\ - - - - .\} - .el \{\ - - - - .\} - - - diff --git a/docbook-xsl-1.75.2/params/abstract.notitle.enabled.xml b/docbook-xsl-1.75.2/params/abstract.notitle.enabled.xml deleted file mode 100644 index 1771f72..0000000 --- a/docbook-xsl-1.75.2/params/abstract.notitle.enabled.xml +++ /dev/null @@ -1,22 +0,0 @@ - - -abstract.notitle.enabled -boolean - - -abstract.notitle.enabled -Suppress display of abstract titles? - - - - -Description -If non-zero, in output of the abstract element on titlepages, -display of the abstract title is suppressed. - - diff --git a/docbook-xsl-1.75.2/params/abstract.properties.xml b/docbook-xsl-1.75.2/params/abstract.properties.xml deleted file mode 100644 index e802312..0000000 --- a/docbook-xsl-1.75.2/params/abstract.properties.xml +++ /dev/null @@ -1,32 +0,0 @@ - - -abstract.properties -attribute set - - -abstract.properties -Properties associated with the block surrounding an abstract - - - - - - 0.0in - 0.0in - - - - -Description - -Block styling properties for abstract. - -See also abstract.title.properties. - - - diff --git a/docbook-xsl-1.75.2/params/abstract.title.properties.xml b/docbook-xsl-1.75.2/params/abstract.title.properties.xml deleted file mode 100644 index d01f70c..0000000 --- a/docbook-xsl-1.75.2/params/abstract.title.properties.xml +++ /dev/null @@ -1,39 +0,0 @@ - - -abstract.title.properties -attribute set - - -abstract.title.properties -Properties for abstract titles - - - - - - - bold - always - always - - - - false - center - - - - -Description - -The properties for abstract titles. - -See also abstract.properties. - - - diff --git a/docbook-xsl-1.75.2/params/active.toc.xml b/docbook-xsl-1.75.2/params/active.toc.xml deleted file mode 100644 index f56aee1..0000000 --- a/docbook-xsl-1.75.2/params/active.toc.xml +++ /dev/null @@ -1,29 +0,0 @@ - - -active.toc -boolean - - -active.toc -Active ToCs? - - - - - - - - -Description - -If non-zero, JavaScript is used to keep the ToC and the current slide -in sync. That is, each time the slide changes, the corresponding -ToC entry will be underlined. - - - diff --git a/docbook-xsl-1.75.2/params/ade.extensions.xml b/docbook-xsl-1.75.2/params/ade.extensions.xml deleted file mode 100644 index 479591b..0000000 --- a/docbook-xsl-1.75.2/params/ade.extensions.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - ade.extensions - boolean - - - ade.extensions - Enable Adobe Digitial Editions extensions for ePub rendering? - - - - - - - - - Description - - If non-zero, -Adobe Digital Editions -extensions will be used when rendering to ePub output. Adobe Digital Editions extensions consists -rendering and layout extensions. - This parameter can also affect which graphics file formats are supported. - - diff --git a/docbook-xsl-1.75.2/params/admon.graphics.extension.xml b/docbook-xsl-1.75.2/params/admon.graphics.extension.xml deleted file mode 100644 index a7b47dd..0000000 --- a/docbook-xsl-1.75.2/params/admon.graphics.extension.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -admon.graphics.extension -string - - -admon.graphics.extension -Filename extension for admonition graphics - - - - -.png - - - -Description - -Sets the filename extension to use on admonition graphics. - - - diff --git a/docbook-xsl-1.75.2/params/admon.graphics.path.xml b/docbook-xsl-1.75.2/params/admon.graphics.path.xml deleted file mode 100644 index 32b12b1..0000000 --- a/docbook-xsl-1.75.2/params/admon.graphics.path.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -admon.graphics.path -string - - -admon.graphics.path -Path to admonition graphics - - - -images/ - - -Description - -Sets the path to the directory containing the admonition graphics -(caution.png, important.png etc). This location is normally relative -to the output html directory. See base.dir - - - diff --git a/docbook-xsl-1.75.2/params/admon.graphics.xml b/docbook-xsl-1.75.2/params/admon.graphics.xml deleted file mode 100644 index f5e5ae4..0000000 --- a/docbook-xsl-1.75.2/params/admon.graphics.xml +++ /dev/null @@ -1,29 +0,0 @@ - - -admon.graphics -boolean - - -admon.graphics -Use graphics in admonitions? - - - - - - - - -Description - -If true (non-zero), admonitions are presented in an alternate style that uses -a graphic. Default graphics are provided in the distribution. - - - - diff --git a/docbook-xsl-1.75.2/params/admon.style.xml b/docbook-xsl-1.75.2/params/admon.style.xml deleted file mode 100644 index 5abe022..0000000 --- a/docbook-xsl-1.75.2/params/admon.style.xml +++ /dev/null @@ -1,31 +0,0 @@ - - -admon.style -string - - -admon.style -Specifies the CSS style attribute that should be added to -admonitions. - - - - - - - - -Description - -Specifies the value of the CSS style -attribute that should be added to admonitions. - - - - diff --git a/docbook-xsl-1.75.2/params/admon.textlabel.xml b/docbook-xsl-1.75.2/params/admon.textlabel.xml deleted file mode 100644 index ea1a53f..0000000 --- a/docbook-xsl-1.75.2/params/admon.textlabel.xml +++ /dev/null @@ -1,32 +0,0 @@ - - -admon.textlabel -boolean - - -admon.textlabel -Use text label in admonitions? - - - - - - - - -Description - -If true (non-zero), admonitions are presented with a generated -text label such as Note or Warning in the appropriate language. -If zero, such labels are turned off, but any title child -of the admonition element are still output. -The default value is 1. - - - - diff --git a/docbook-xsl-1.75.2/params/admonition.properties.xml b/docbook-xsl-1.75.2/params/admonition.properties.xml deleted file mode 100644 index 4dddd26..0000000 --- a/docbook-xsl-1.75.2/params/admonition.properties.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - admonition.properties - attribute set - - -admonition.properties -To set the style for admonitions. - - - - - - -Description -How do you want admonitions styled? -Set the font-size, weight, etc. to the style required - - - diff --git a/docbook-xsl-1.75.2/params/admonition.title.properties.xml b/docbook-xsl-1.75.2/params/admonition.title.properties.xml deleted file mode 100644 index 7af23e6..0000000 --- a/docbook-xsl-1.75.2/params/admonition.title.properties.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - admonition.title.properties - attribute set - - -admonition.title.properties -To set the style for admonitions titles. - - - - - - 14pt - bold - false - always - - - -Description -How do you want admonitions titles styled? -Set the font-size, weight etc to the style required. - - - diff --git a/docbook-xsl-1.75.2/params/alignment.xml b/docbook-xsl-1.75.2/params/alignment.xml deleted file mode 100644 index 9c0a3de..0000000 --- a/docbook-xsl-1.75.2/params/alignment.xml +++ /dev/null @@ -1,41 +0,0 @@ - - -alignment - list - open - left - start - right - end - center - justify - - -alignment -Specify the default text alignment - - - -justify - - -Description - -The default text alignment is used for most body text. -Allowed values are -left, -right, -start, -end, -center, -justify. -The default value is justify. - - - - diff --git a/docbook-xsl-1.75.2/params/annotate.toc.xml b/docbook-xsl-1.75.2/params/annotate.toc.xml deleted file mode 100644 index 667fa32..0000000 --- a/docbook-xsl-1.75.2/params/annotate.toc.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -annotate.toc -boolean - - -annotate.toc -Annotate the Table of Contents? - - - - - - -Description - -If true, TOCs will be annotated. At present, this just means -that the refpurpose of refentry -TOC entries will be displayed. - - - - diff --git a/docbook-xsl-1.75.2/params/annotation.css.xml b/docbook-xsl-1.75.2/params/annotation.css.xml deleted file mode 100644 index 560c56a..0000000 --- a/docbook-xsl-1.75.2/params/annotation.css.xml +++ /dev/null @@ -1,71 +0,0 @@ - - -annotation.css -string - - -annotation.css -CSS rules for annotations - - - - - -/* ====================================================================== - Annotations -*/ - -div.annotation-list { visibility: hidden; - } - -div.annotation-nocss { position: absolute; - visibility: hidden; - } - -div.annotation-popup { position: absolute; - z-index: 4; - visibility: hidden; - padding: 0px; - margin: 2px; - border-style: solid; - border-width: 1px; - width: 200px; - background-color: white; - } - -div.annotation-title { padding: 1px; - font-weight: bold; - border-bottom-style: solid; - border-bottom-width: 1px; - color: white; - background-color: black; - } - -div.annotation-body { padding: 2px; - } - -div.annotation-body p { margin-top: 0px; - padding-top: 0px; - } - -div.annotation-close { position: absolute; - top: 2px; - right: 2px; - } - - - - -Description - -If annotation.support is enabled and the -document contains annotations, then the CSS in this -parameter will be included in the document. - - - diff --git a/docbook-xsl-1.75.2/params/annotation.graphic.close.xml b/docbook-xsl-1.75.2/params/annotation.graphic.close.xml deleted file mode 100644 index 002ebb4..0000000 --- a/docbook-xsl-1.75.2/params/annotation.graphic.close.xml +++ /dev/null @@ -1,31 +0,0 @@ - - -annotation.graphic.close -uri - - -annotation.graphic.close -Image for identifying a link that closes an annotation popup - - - - - -http://docbook.sourceforge.net/release/images/annot-close.png - - - -Description - -This image is used on popup annotations as the “x†that the -user can click to dismiss the popup. -This image is used on popup annotations as the “x†that the user can -click to dismiss the popup. It may be replaced by a user provided graphic. The size should be approximately 10x10 pixels. - - - diff --git a/docbook-xsl-1.75.2/params/annotation.graphic.open.xml b/docbook-xsl-1.75.2/params/annotation.graphic.open.xml deleted file mode 100644 index c7d1c32..0000000 --- a/docbook-xsl-1.75.2/params/annotation.graphic.open.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -annotation.graphic.open -uri - - -annotation.graphic.open -Image for identifying a link that opens an annotation popup - - - - -http://docbook.sourceforge.net/release/images/annot-open.png - - - -Description - -This image is used inline to identify the location of -annotations. It may be replaced by a user provided graphic. The size should be approximately 10x10 pixels. - - - diff --git a/docbook-xsl-1.75.2/params/annotation.js.xml b/docbook-xsl-1.75.2/params/annotation.js.xml deleted file mode 100644 index 6c7e97e..0000000 --- a/docbook-xsl-1.75.2/params/annotation.js.xml +++ /dev/null @@ -1,33 +0,0 @@ - - -annotation.js -string - - -annotation.js -URIs identifying JavaScript files with support for annotation popups - - - - - - -http://docbook.sourceforge.net/release/script/AnchorPosition.js http://docbook.sourceforge.net/release/script/PopupWindow.js - - - - -Description - -If annotation.support is enabled and the -document contains annotations, then the URIs listed -in this parameter will be included. These JavaScript files are required -for popup annotation support. - - - diff --git a/docbook-xsl-1.75.2/params/annotation.support.xml b/docbook-xsl-1.75.2/params/annotation.support.xml deleted file mode 100644 index 29e7633..0000000 --- a/docbook-xsl-1.75.2/params/annotation.support.xml +++ /dev/null @@ -1,29 +0,0 @@ - - -annotation.support -boolean - - -annotation.support -Enable annotations? - - - - - - - - -Description - -If non-zero, the stylesheets will attempt to support annotation -elements in HTML by including some JavaScript (see -annotation.js). - - - diff --git a/docbook-xsl-1.75.2/params/appendix.autolabel.xml b/docbook-xsl-1.75.2/params/appendix.autolabel.xml deleted file mode 100644 index bae38fa..0000000 --- a/docbook-xsl-1.75.2/params/appendix.autolabel.xml +++ /dev/null @@ -1,73 +0,0 @@ - - -appendix.autolabel -list -0none -11,2,3... -AA,B,C... -aa,b,c... -ii,ii,iii... -II,II,III... - - -appendix.autolabel -Specifies the labeling format for Appendix titles - - - - -A - - - -Description - -If non-zero, then appendices will be numbered using the -parameter value as the number format if the value matches one of the -following: - - - - - 1 or arabic - - Arabic numeration (1, 2, 3 ...). - - - - A or upperalpha - - Uppercase letter numeration (A, B, C ...). - - - - a or loweralpha - - Lowercase letter numeration (a, b, c ...). - - - - I or upperroman - - Uppercase roman numeration (I, II, III ...). - - - - i or lowerroman - - Lowercase roman letter numeration (i, ii, iii ...). - - - - -Any nonzero value other than the above will generate -the default number format (upperalpha). - - - - diff --git a/docbook-xsl-1.75.2/params/arbortext.extensions.xml b/docbook-xsl-1.75.2/params/arbortext.extensions.xml deleted file mode 100644 index 2e571dd..0000000 --- a/docbook-xsl-1.75.2/params/arbortext.extensions.xml +++ /dev/null @@ -1,30 +0,0 @@ - - -arbortext.extensions -boolean - - -arbortext.extensions -Enable Arbortext extensions? - - - - - - -Description - -If non-zero, -Arbortext -extensions will be used. - -This parameter can also affect which graphics file formats -are supported - - - diff --git a/docbook-xsl-1.75.2/params/article.appendix.title.properties.xml b/docbook-xsl-1.75.2/params/article.appendix.title.properties.xml deleted file mode 100644 index 61337a1..0000000 --- a/docbook-xsl-1.75.2/params/article.appendix.title.properties.xml +++ /dev/null @@ -1,33 +0,0 @@ - - -article.appendix.title.properties -attribute set - - -article.appendix.title.properties -Properties for appendix titles that appear in an article - - - - - - - - - - - - -Description - -The properties for the title of an appendix that -appears inside an article. The default is to use -the properties of sect1 titles. - - - diff --git a/docbook-xsl-1.75.2/params/author.othername.in.middle.xml b/docbook-xsl-1.75.2/params/author.othername.in.middle.xml deleted file mode 100644 index 4ad21dd..0000000 --- a/docbook-xsl-1.75.2/params/author.othername.in.middle.xml +++ /dev/null @@ -1,31 +0,0 @@ - - -author.othername.in.middle -boolean - - -author.othername.in.middle -Is othername in author a -middle name? - - - - - - - -Description - -If non-zero, the othername of an author -appears between the firstname and -surname. Otherwise, othername -is suppressed. - - - - diff --git a/docbook-xsl-1.75.2/params/autolayout-file.xml b/docbook-xsl-1.75.2/params/autolayout-file.xml deleted file mode 100644 index 150f123..0000000 --- a/docbook-xsl-1.75.2/params/autolayout-file.xml +++ /dev/null @@ -1,29 +0,0 @@ - - -autolayout-file -filename - - -autolayout-file -Identifies the autolayout.xml file - - - - -autolayout.xml - - - -Description -When the source pages are spread over several directories, this -parameter can be set (for example, from the command line of a batch-mode -XSLT processor) to indicate the location of the autolayout.xml file. -FIXME: for browser-based use, there needs to be a PI for this... - - - diff --git a/docbook-xsl-1.75.2/params/autotoc.label.in.hyperlink.xml b/docbook-xsl-1.75.2/params/autotoc.label.in.hyperlink.xml deleted file mode 100644 index dced0bd..0000000 --- a/docbook-xsl-1.75.2/params/autotoc.label.in.hyperlink.xml +++ /dev/null @@ -1,29 +0,0 @@ - - -autotoc.label.in.hyperlink -boolean - - -autotoc.label.in.hyperlink -Include label in hyperlinked titles in TOC? - - - - - - -Description - -If the value of -autotoc.label.in.hyperlink is non-zero, labels -are included in hyperlinked titles in the TOC. If it is instead zero, -labels are still displayed prior to the hyperlinked titles, but -are not hyperlinked along with the titles. - - - diff --git a/docbook-xsl-1.75.2/params/autotoc.label.separator.xml b/docbook-xsl-1.75.2/params/autotoc.label.separator.xml deleted file mode 100644 index b9cd53a..0000000 --- a/docbook-xsl-1.75.2/params/autotoc.label.separator.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -autotoc.label.separator -string - - -autotoc.label.separator -Separator between labels and titles in the ToC - - - - -. - - - -Description - -String used to separate labels and titles in a table of contents. - - - diff --git a/docbook-xsl-1.75.2/params/axf.extensions.xml b/docbook-xsl-1.75.2/params/axf.extensions.xml deleted file mode 100644 index 940a187..0000000 --- a/docbook-xsl-1.75.2/params/axf.extensions.xml +++ /dev/null @@ -1,33 +0,0 @@ - - -axf.extensions -boolean - - -axf.extensions -Enable XSL Formatter extensions? - - - - - - - - -Description - -If non-zero, -XSL Formatter -extensions will be used. XSL Formatter extensions consists of PDF bookmarks, -document information and better index processing. - -This parameter can also affect which graphics file formats -are supported - - - diff --git a/docbook-xsl-1.75.2/params/banner.before.navigation.xml b/docbook-xsl-1.75.2/params/banner.before.navigation.xml deleted file mode 100644 index 0883378..0000000 --- a/docbook-xsl-1.75.2/params/banner.before.navigation.xml +++ /dev/null @@ -1,25 +0,0 @@ - - -banner.before.navigation -boolean - - -banner.before.navigation -Put banner before navigation? - - - - - - - - -Description -FIXME - - diff --git a/docbook-xsl-1.75.2/params/base.dir.xml b/docbook-xsl-1.75.2/params/base.dir.xml deleted file mode 100644 index e22ca14..0000000 --- a/docbook-xsl-1.75.2/params/base.dir.xml +++ /dev/null @@ -1,29 +0,0 @@ - - -base.dir -uri - - -base.dir -The base directory of chunks - - - - - - - - -Description - -If specified, the base.dir identifies -the output directory for chunks. (If not specified, the output directory -is system dependent.) - - - diff --git a/docbook-xsl-1.75.2/params/biblioentry.item.separator.xml b/docbook-xsl-1.75.2/params/biblioentry.item.separator.xml deleted file mode 100644 index 4a56ad6..0000000 --- a/docbook-xsl-1.75.2/params/biblioentry.item.separator.xml +++ /dev/null @@ -1,26 +0,0 @@ - - -biblioentry.item.separator -string - - -biblioentry.item.separator -Text to separate bibliography entries - - - -. - - -Description - -Text to separate bibliography entries - - - - diff --git a/docbook-xsl-1.75.2/params/biblioentry.properties.xml b/docbook-xsl-1.75.2/params/biblioentry.properties.xml deleted file mode 100644 index 9e88ddb..0000000 --- a/docbook-xsl-1.75.2/params/biblioentry.properties.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - biblioentry.properties - attribute set - - -biblioentry.properties -To set the style for biblioentry. - - - - - 0.5in - -0.5in - - - -Description -How do you want biblioentry styled? -Set the font-size, weight, space-above and space-below, indents, etc. to the style required - - - diff --git a/docbook-xsl-1.75.2/params/bibliography.collection.xml b/docbook-xsl-1.75.2/params/bibliography.collection.xml deleted file mode 100644 index ee49dde..0000000 --- a/docbook-xsl-1.75.2/params/bibliography.collection.xml +++ /dev/null @@ -1,104 +0,0 @@ - - -bibliography.collection -string - - -bibliography.collection -Name of the bibliography collection file - - - - -http://docbook.sourceforge.net/release/bibliography/bibliography.xml - - - - -Description - -Maintaining bibliography entries across a set of documents is tedious, time -consuming, and error prone. It makes much more sense, usually, to store all of -the bibliography entries in a single place and simply extract -the ones you need in each document. - -That's the purpose of the -bibliography.collection parameter. To setup a global -bibliography database, follow these steps: - -First, create a stand-alone bibliography document that contains all of -the documents that you wish to reference. Make sure that each bibliography -entry (whether you use biblioentry or bibliomixed) -has an ID. - -My global bibliography, ~/bibliography.xml begins -like this: - - -<!DOCTYPE bibliography - PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN" - "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd"> -<bibliography><title>References</title> - -<bibliomixed id="xml-rec"><abbrev>XML 1.0</abbrev>Tim Bray, -Jean Paoli, C. M. Sperberg-McQueen, and Eve Maler, editors. -<citetitle><ulink url="http://www.w3.org/TR/REC-xml">Extensible Markup -Language (XML) 1.0 Second Edition</ulink></citetitle>. -World Wide Web Consortium, 2000. -</bibliomixed> - -<bibliomixed id="xml-names"><abbrev>Namespaces</abbrev>Tim Bray, -Dave Hollander, -and Andrew Layman, editors. -<citetitle><ulink url="http://www.w3.org/TR/REC-xml-names/">Namespaces in -XML</ulink></citetitle>. -World Wide Web Consortium, 1999. -</bibliomixed> - -<!-- ... --> -</bibliography> - - - -When you create a bibliography in your document, simply -provide empty bibliomixed -entries for each document that you wish to cite. Make sure that these -elements have the same ID as the corresponding real -entry in your global bibliography. - -For example: - - -<bibliography><title>Bibliography</title> - -<bibliomixed id="xml-rec"/> -<bibliomixed id="xml-names"/> -<bibliomixed id="DKnuth86">Donald E. Knuth. <citetitle>Computers and -Typesetting: Volume B, TeX: The Program</citetitle>. Addison-Wesley, -1986. ISBN 0-201-13437-3. -</bibliomixed> -<bibliomixed id="relaxng"/> - -</bibliography> - - -Note that it's perfectly acceptable to mix entries from your -global bibliography with normal entries. You can use -xref or other elements to cross-reference your -bibliography entries in exactly the same way you do now. - -Finally, when you are ready to format your document, simply set the -bibliography.collection parameter (in either a -customization layer or directly through your processor's interface) to -point to your global bibliography. - -The stylesheets will format the bibliography in your document as if -all of the entries referenced appeared there literally. - - - diff --git a/docbook-xsl-1.75.2/params/bibliography.numbered.xml b/docbook-xsl-1.75.2/params/bibliography.numbered.xml deleted file mode 100644 index 593a1fa..0000000 --- a/docbook-xsl-1.75.2/params/bibliography.numbered.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -bibliography.numbered -boolean - - -bibliography.numbered -Should bibliography entries be numbered? - - - - - - - - -Description - -If non-zero bibliography entries will be numbered - - - diff --git a/docbook-xsl-1.75.2/params/bibliography.style.xml b/docbook-xsl-1.75.2/params/bibliography.style.xml deleted file mode 100644 index fa44582..0000000 --- a/docbook-xsl-1.75.2/params/bibliography.style.xml +++ /dev/null @@ -1,35 +0,0 @@ - - -bibliography.style -list -normal -iso690 - - -bibliography.style -Style used for formatting of biblioentries. - - - - -normal - - - -Description - -Currently only normal and -iso690 styles are supported. - -In order to use ISO690 style to the full extent you might need -to use additional markup described on the -following WiKi page. - - - diff --git a/docbook-xsl-1.75.2/params/blockquote.properties.xml b/docbook-xsl-1.75.2/params/blockquote.properties.xml deleted file mode 100644 index 76d7f1c..0000000 --- a/docbook-xsl-1.75.2/params/blockquote.properties.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - blockquote.properties - attribute set - - -blockquote.properties -To set the style for block quotations. - - - - - -0.5in -0.5in -0.5em -1em -2em - - - - -Description - -The blockquote.properties attribute set specifies -the formating properties of block quotations. - - - diff --git a/docbook-xsl-1.75.2/params/blurb.on.titlepage.enabled.xml b/docbook-xsl-1.75.2/params/blurb.on.titlepage.enabled.xml deleted file mode 100644 index 27e89d7..0000000 --- a/docbook-xsl-1.75.2/params/blurb.on.titlepage.enabled.xml +++ /dev/null @@ -1,31 +0,0 @@ - - -blurb.on.titlepage.enabled -boolean - - -blurb.on.titlepage.enabled -Display personblurb and authorblurb on title pages? - - - - - - - - -Description - -If non-zero, output from authorblurb and -personblurb elements is displayed on title pages. If zero -(the default), output from those elements is suppressed on title pages -(unless you are using a titlepage customization -that causes them to be included). - - - diff --git a/docbook-xsl-1.75.2/params/body.attributes.xml b/docbook-xsl-1.75.2/params/body.attributes.xml deleted file mode 100644 index 8ee1ad9..0000000 --- a/docbook-xsl-1.75.2/params/body.attributes.xml +++ /dev/null @@ -1,31 +0,0 @@ - - -body.attributes -attribute set - - -body.attributes -DEPRECATED - - - - - - white - black - #0000FF - #840084 - #0000FF - - - - -Description -DEPRECATED - - diff --git a/docbook-xsl-1.75.2/params/body.bg.color.xml b/docbook-xsl-1.75.2/params/body.bg.color.xml deleted file mode 100644 index 8315b85..0000000 --- a/docbook-xsl-1.75.2/params/body.bg.color.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -body.bg.color -color - - -body.bg.color -Background color for body frame - - - - -#FFFFFF - - - -Description - -Specifies the background color used in the body column of -tabular slides. - - - diff --git a/docbook-xsl-1.75.2/params/body.end.indent.xml b/docbook-xsl-1.75.2/params/body.end.indent.xml deleted file mode 100644 index a5e098c..0000000 --- a/docbook-xsl-1.75.2/params/body.end.indent.xml +++ /dev/null @@ -1,37 +0,0 @@ - - -body.end.indent -length - - -body.end.indent -The end-indent for the body text - - - - -0pt - - - -Description - -This end-indent property is added to the fo:flow -for certain page sequences. Which page-sequences it is -applied to is determined by the template named -set.flow.properties. -By default, that template adds it to the flow -for page-sequences using the body -master-reference, as well as appendixes and prefaces. - - -See also body.start.indent. - - - - diff --git a/docbook-xsl-1.75.2/params/body.font.family.xml b/docbook-xsl-1.75.2/params/body.font.family.xml deleted file mode 100644 index 06c3b47..0000000 --- a/docbook-xsl-1.75.2/params/body.font.family.xml +++ /dev/null @@ -1,32 +0,0 @@ - - -body.font.family -list -open -serif -sans-serif -monospace - - -body.font.family -The default font family for body text - - - - -serif - - - -Description - -The body font family is the default font used for text in the page body. - - - - diff --git a/docbook-xsl-1.75.2/params/body.font.master.xml b/docbook-xsl-1.75.2/params/body.font.master.xml deleted file mode 100644 index 323a6a0..0000000 --- a/docbook-xsl-1.75.2/params/body.font.master.xml +++ /dev/null @@ -1,30 +0,0 @@ - - -body.font.master - number - - -body.font.master -Specifies the default point size for body text - - - - -10 - - - -Description - -The body font size is specified in two parameters -(body.font.master and body.font.size) -so that math can be performed on the font size by XSLT. - - - - diff --git a/docbook-xsl-1.75.2/params/body.font.size.xml b/docbook-xsl-1.75.2/params/body.font.size.xml deleted file mode 100644 index fc35ade..0000000 --- a/docbook-xsl-1.75.2/params/body.font.size.xml +++ /dev/null @@ -1,31 +0,0 @@ - - -body.font.size -length - - -body.font.size -Specifies the default font size for body text - - - - - - pt - - - -Description - -The body font size is specified in two parameters -(body.font.master and body.font.size) -so that math can be performed on the font size by XSLT. - - - - diff --git a/docbook-xsl-1.75.2/params/body.margin.bottom.xml b/docbook-xsl-1.75.2/params/body.margin.bottom.xml deleted file mode 100644 index 2302f64..0000000 --- a/docbook-xsl-1.75.2/params/body.margin.bottom.xml +++ /dev/null @@ -1,29 +0,0 @@ - - -body.margin.bottom -length - - -body.margin.bottom -The bottom margin of the body text - - - - -0.5in - - - -Description - -The body bottom margin is the distance from the last line of text -in the page body to the bottom of the region-after. - - - - diff --git a/docbook-xsl-1.75.2/params/body.margin.top.xml b/docbook-xsl-1.75.2/params/body.margin.top.xml deleted file mode 100644 index 182bd9f..0000000 --- a/docbook-xsl-1.75.2/params/body.margin.top.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -body.margin.top -length - - -body.margin.top -To specify the size of the top margin of a page - - - - -0.5in - - - -Description - -The body top margin is the distance from the top of the -region-before to the first line of text in the page body. - - - diff --git a/docbook-xsl-1.75.2/params/body.start.indent.xml b/docbook-xsl-1.75.2/params/body.start.indent.xml deleted file mode 100644 index 4e348f1..0000000 --- a/docbook-xsl-1.75.2/params/body.start.indent.xml +++ /dev/null @@ -1,64 +0,0 @@ - - -body.start.indent -length - - -body.start.indent -The start-indent for the body text - - - - - - - 0pt - 0pt - 4pc - - - - - -Description - -This parameter provides -the means of indenting the body text relative to -section titles. -For left-to-right text direction, it indents the left side. -For right-to-left text direction, it indents the right side. -It is used in place of the -title.margin.left for -all XSL-FO processors except FOP 0.25. -It enables support for side floats to appear -in the indented margin area. - -This start-indent property is added to the fo:flow -for certain page sequences. Which page-sequences it is -applied to is determined by the template named -set.flow.properties. -By default, that template adds it to the flow -for page-sequences using the body -master-reference, as well as appendixes and prefaces. - -If this parameter is used, section titles should have -a start-indent value of 0pt if they are to be -outdented relative to the body text. - - -If you are using FOP, then set this parameter to a zero -width value and set the title.margin.left -parameter to the negative value of the desired indent. - - -See also body.end.indent and -title.margin.left. - - - - diff --git a/docbook-xsl-1.75.2/params/bookmarks.collapse.xml b/docbook-xsl-1.75.2/params/bookmarks.collapse.xml deleted file mode 100644 index 3320056..0000000 --- a/docbook-xsl-1.75.2/params/bookmarks.collapse.xml +++ /dev/null @@ -1,31 +0,0 @@ - - -bookmarks.collapse -boolean - - -bookmarks.collapse -Specifies the initial state of bookmarks - - - - - - - - -Description - -If non-zero, the bookmark tree is collapsed so that only the -top-level bookmarks are displayed initially. Otherwise, the whole tree -of bookmarks is displayed. - -This parameter currently works with FOP 0.93 or later. - - - diff --git a/docbook-xsl-1.75.2/params/bridgehead.in.toc.xml b/docbook-xsl-1.75.2/params/bridgehead.in.toc.xml deleted file mode 100644 index 490d556..0000000 --- a/docbook-xsl-1.75.2/params/bridgehead.in.toc.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -bridgehead.in.toc -boolean - - -bridgehead.in.toc -Should bridgehead elements appear in the TOC? - - - - - - -Description - -If non-zero, bridgeheads appear in the TOC. Note that -this option is not fully supported and may be removed in a future -version of the stylesheets. - - - - diff --git a/docbook-xsl-1.75.2/params/bullet.image.xml b/docbook-xsl-1.75.2/params/bullet.image.xml deleted file mode 100644 index acf2af5..0000000 --- a/docbook-xsl-1.75.2/params/bullet.image.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -bullet.image -filename - - -bullet.image -Bullet image - - - - -toc/bullet.png - - - -Description - -Specifies the filename of the bullet image used for foils in the -framed ToC. - - - diff --git a/docbook-xsl-1.75.2/params/callout.defaultcolumn.xml b/docbook-xsl-1.75.2/params/callout.defaultcolumn.xml deleted file mode 100644 index 6cae381..0000000 --- a/docbook-xsl-1.75.2/params/callout.defaultcolumn.xml +++ /dev/null @@ -1,30 +0,0 @@ - - -callout.defaultcolumn -integer - - -callout.defaultcolumn -Indicates what column callouts appear in by default - - - - -60 - - - -Description - -If a callout does not identify a column (for example, if it uses -the linerange unit), -it will appear in the default column. - - - - diff --git a/docbook-xsl-1.75.2/params/callout.graphics.extension.xml b/docbook-xsl-1.75.2/params/callout.graphics.extension.xml deleted file mode 100644 index febc690..0000000 --- a/docbook-xsl-1.75.2/params/callout.graphics.extension.xml +++ /dev/null @@ -1,33 +0,0 @@ - - -callout.graphics.extension -string - - -callout.graphics.extension -Filename extension for callout graphics - - - - -.png -.svg - - - -Description -Sets the filename extension to use on callout graphics. - - -The Docbook XSL distribution provides callout graphics in the following formats: -SVG (extension: .svg) -PNG (extension: .png) -GIF (extension: .gif) - - - diff --git a/docbook-xsl-1.75.2/params/callout.graphics.number.limit.xml b/docbook-xsl-1.75.2/params/callout.graphics.number.limit.xml deleted file mode 100644 index cde5267..0000000 --- a/docbook-xsl-1.75.2/params/callout.graphics.number.limit.xml +++ /dev/null @@ -1,34 +0,0 @@ - - -callout.graphics.number.limit -integer - - -callout.graphics.number.limit -Number of the largest callout graphic - - - - -15 -30 - - - -Description - -If callout.graphics is non-zero, graphics -are used to represent callout numbers instead of plain text. The value -of callout.graphics.number.limit is the largest -number for which a graphic exists. If the callout number exceeds this -limit, the default presentation "(plain text instead of a graphic)" -will be used. - - - - diff --git a/docbook-xsl-1.75.2/params/callout.graphics.path.xml b/docbook-xsl-1.75.2/params/callout.graphics.path.xml deleted file mode 100644 index 00e54c1..0000000 --- a/docbook-xsl-1.75.2/params/callout.graphics.path.xml +++ /dev/null @@ -1,31 +0,0 @@ - - -callout.graphics.path -string - - -callout.graphics.path -Path to callout graphics - - - - -images/callouts/ - - - -Description - -Sets the path to the directory holding the callout graphics. his -location is normally relative to the output html directory. see -base.dir. Always terminate the directory with / since the graphic file -is appended to this string, hence needs the separator. - - - - diff --git a/docbook-xsl-1.75.2/params/callout.graphics.xml b/docbook-xsl-1.75.2/params/callout.graphics.xml deleted file mode 100644 index a97ac0d..0000000 --- a/docbook-xsl-1.75.2/params/callout.graphics.xml +++ /dev/null @@ -1,30 +0,0 @@ - - -callout.graphics -boolean - - -callout.graphics -Use graphics for callouts? - - - - - - - - -Description - -If non-zero, callouts are presented with graphics (e.g., reverse-video -circled numbers instead of "(1)", "(2)", etc.). -Default graphics are provided in the distribution. - - - - diff --git a/docbook-xsl-1.75.2/params/callout.icon.size.xml b/docbook-xsl-1.75.2/params/callout.icon.size.xml deleted file mode 100644 index d3acae8..0000000 --- a/docbook-xsl-1.75.2/params/callout.icon.size.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -callout.icon.size -length - - -callout.icon.size -Specifies the size of callout marker icons - - - - -7pt - - - -Description - -Specifies the size of the callout marker icons. -The default size is 7 points. - - - diff --git a/docbook-xsl-1.75.2/params/callout.list.table.xml b/docbook-xsl-1.75.2/params/callout.list.table.xml deleted file mode 100644 index 6fece03..0000000 --- a/docbook-xsl-1.75.2/params/callout.list.table.xml +++ /dev/null @@ -1,32 +0,0 @@ - - -callout.list.table -boolean - - -callout.list.table -Present callout lists using a table? - - - - - - - - -Description - -The default presentation of calloutlists uses -an HTML DL element. Some browsers don't align DLs very well -if callout.graphics is used. With this option -turned on, calloutlists are presented in an HTML -TABLE, which usually results in better alignment -of the callout number with the callout description. - - - diff --git a/docbook-xsl-1.75.2/params/callout.unicode.font.xml b/docbook-xsl-1.75.2/params/callout.unicode.font.xml deleted file mode 100644 index e63bffb..0000000 --- a/docbook-xsl-1.75.2/params/callout.unicode.font.xml +++ /dev/null @@ -1,29 +0,0 @@ - - -callout.unicode.font -string - - -callout.unicode.font -Specify a font for Unicode glyphs - - - - -ZapfDingbats - - - -Description - -The name of the font to specify around Unicode callout glyphs. -If set to the empty string, no font change will occur. - - - - diff --git a/docbook-xsl-1.75.2/params/callout.unicode.number.limit.xml b/docbook-xsl-1.75.2/params/callout.unicode.number.limit.xml deleted file mode 100644 index a9f1f3d..0000000 --- a/docbook-xsl-1.75.2/params/callout.unicode.number.limit.xml +++ /dev/null @@ -1,35 +0,0 @@ - - -callout.unicode.number.limit -integer - - -callout.unicode.number.limit -Number of the largest unicode callout character - - - - -10 - - - -Description - -If callout.unicode -is non-zero, unicode characters are used to represent -callout numbers. The value of -callout.unicode.number.limit -is -the largest number for which a unicode character exists. If the callout number -exceeds this limit, the default presentation "(nnn)" will always -be used. - - - - diff --git a/docbook-xsl-1.75.2/params/callout.unicode.start.character.xml b/docbook-xsl-1.75.2/params/callout.unicode.start.character.xml deleted file mode 100644 index 90a1acd..0000000 --- a/docbook-xsl-1.75.2/params/callout.unicode.start.character.xml +++ /dev/null @@ -1,33 +0,0 @@ - - -callout.unicode.start.character -integer - - -callout.unicode.start.character -First Unicode character to use, decimal value. - - - - -10102 - - - -Description - -If callout.graphics is zero and callout.unicode -is non-zero, unicode characters are used to represent -callout numbers. The value of -callout.unicode.start.character -is the decimal unicode value used for callout number one. Currently, -only 10102 is supported in the stylesheets for this parameter. - - - - diff --git a/docbook-xsl-1.75.2/params/callout.unicode.xml b/docbook-xsl-1.75.2/params/callout.unicode.xml deleted file mode 100644 index 4ec6a5f..0000000 --- a/docbook-xsl-1.75.2/params/callout.unicode.xml +++ /dev/null @@ -1,26 +0,0 @@ - - -callout.unicode -boolean - - -callout.unicode -Use Unicode characters rather than images for callouts. - - - - - - -Description - -The stylesheets can use either an image of the numbers one to ten, or the single Unicode character which represents the numeral, in white on a black background. Use this to select the Unicode character option. - - - - diff --git a/docbook-xsl-1.75.2/params/callouts.extension.xml b/docbook-xsl-1.75.2/params/callouts.extension.xml deleted file mode 100644 index 6b58cd8..0000000 --- a/docbook-xsl-1.75.2/params/callouts.extension.xml +++ /dev/null @@ -1,30 +0,0 @@ - - -callouts.extension -boolean - - -callouts.extension -Enable the callout extension - - - - - - - - -Description - -The callouts extension processes areaset -elements in ProgramListingCO and other text-based -callout elements. - - - - diff --git a/docbook-xsl-1.75.2/params/chapter.autolabel.xml b/docbook-xsl-1.75.2/params/chapter.autolabel.xml deleted file mode 100644 index 32414bc..0000000 --- a/docbook-xsl-1.75.2/params/chapter.autolabel.xml +++ /dev/null @@ -1,71 +0,0 @@ - - -chapter.autolabel -list -0none -11,2,3... -AA,B,C... -aa,b,c... -ii,ii,iii... -II,II,III... - - -chapter.autolabel -Specifies the labeling format for Chapter titles - - - - - - - -Description - -If non-zero, then chapters will be numbered using the parameter -value as the number format if the value matches one of the following: - - - - - 1 or arabic - - Arabic numeration (1, 2, 3 ...). - - - - A or upperalpha - - Uppercase letter numeration (A, B, C ...). - - - - a or loweralpha - - Lowercase letter numeration (a, b, c ...). - - - - I or upperroman - - Uppercase roman numeration (I, II, III ...). - - - - i or lowerroman - - Lowercase roman letter numeration (i, ii, iii ...). - - - - -Any nonzero value other than the above will generate -the default number format (arabic). - - - - diff --git a/docbook-xsl-1.75.2/params/chunk.append.xml b/docbook-xsl-1.75.2/params/chunk.append.xml deleted file mode 100644 index 1f65aad..0000000 --- a/docbook-xsl-1.75.2/params/chunk.append.xml +++ /dev/null @@ -1,30 +0,0 @@ - - -chunk.append -string - - -chunk.append -Specifies content to append to chunked HTML output - - - - - - -Description - -Specifies content to append to the end of HTML files output by -the html/chunk.xsl stylesheet, after the closing -<html> tag. You probably don’t want to set any value -for this parameter; but if you do, the only value it should ever be -set to is a newline character: &#x0a; or -&#10; - - - diff --git a/docbook-xsl-1.75.2/params/chunk.first.sections.xml b/docbook-xsl-1.75.2/params/chunk.first.sections.xml deleted file mode 100644 index f0c1b82..0000000 --- a/docbook-xsl-1.75.2/params/chunk.first.sections.xml +++ /dev/null @@ -1,31 +0,0 @@ - - -chunk.first.sections -boolean - - -chunk.first.sections -Chunk the first top-level section? - - - - - - - - -Description - -If non-zero, a chunk will be created for the first top-level -sect1 or section elements in -each component. Otherwise, that section will be part of the chunk for -its parent. - - - - diff --git a/docbook-xsl-1.75.2/params/chunk.quietly.xml b/docbook-xsl-1.75.2/params/chunk.quietly.xml deleted file mode 100644 index 8700b29..0000000 --- a/docbook-xsl-1.75.2/params/chunk.quietly.xml +++ /dev/null @@ -1,30 +0,0 @@ - - -chunk.quietly -boolean - - -chunk.quietly -Omit the chunked filename messages. - - - - - - - - -Description - -If zero (the default), the XSL processor emits a message naming -each separate chunk filename as it is being output. -If nonzero, then the messages are suppressed. - - - - diff --git a/docbook-xsl-1.75.2/params/chunk.section.depth.xml b/docbook-xsl-1.75.2/params/chunk.section.depth.xml deleted file mode 100644 index d46193c..0000000 --- a/docbook-xsl-1.75.2/params/chunk.section.depth.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -chunk.section.depth -integer - - -chunk.section.depth -Depth to which sections should be chunked - - - - - - - - -Description - -This parameter sets the depth of section chunking. - - - diff --git a/docbook-xsl-1.75.2/params/chunk.sections.xml b/docbook-xsl-1.75.2/params/chunk.sections.xml deleted file mode 100644 index 2ffb1a3..0000000 --- a/docbook-xsl-1.75.2/params/chunk.sections.xml +++ /dev/null @@ -1,30 +0,0 @@ - - -chunk.sections -boolean - - -chunk.sections -Should top-level sections be chunks in their own right? - - - - - - - - -Description - -If non-zero, chunks will be created for top-level -sect1 and section elements in -each component. - - - - diff --git a/docbook-xsl-1.75.2/params/chunk.separate.lots.xml b/docbook-xsl-1.75.2/params/chunk.separate.lots.xml deleted file mode 100644 index aa54eab..0000000 --- a/docbook-xsl-1.75.2/params/chunk.separate.lots.xml +++ /dev/null @@ -1,36 +0,0 @@ - - -chunk.separate.lots -boolean - - -chunk.separate.lots -Should each LoT be in its own separate chunk? - - - - - - - - -Description - -If non-zero, each of the ToC and LoTs -(List of Examples, List of Figures, etc.) -will be put in its own separate chunk. -The title page includes generated links to each of the separate files. - - -This feature depends on the -chunk.tocs.and.lots -parameter also being non-zero. - - - - diff --git a/docbook-xsl-1.75.2/params/chunk.toc.xml b/docbook-xsl-1.75.2/params/chunk.toc.xml deleted file mode 100644 index 12cdb2c..0000000 --- a/docbook-xsl-1.75.2/params/chunk.toc.xml +++ /dev/null @@ -1,30 +0,0 @@ - - -chunk.toc -string - - -chunk.toc -An explicit TOC to be used for chunking - - - - - - - - -Description - -The chunk.toc identifies an explicit TOC that -will be used for chunking. This parameter is only used by the -chunktoc.xsl stylesheet (and customization layers built -from it). - - - diff --git a/docbook-xsl-1.75.2/params/chunk.tocs.and.lots.has.title.xml b/docbook-xsl-1.75.2/params/chunk.tocs.and.lots.has.title.xml deleted file mode 100644 index 0bdd31b..0000000 --- a/docbook-xsl-1.75.2/params/chunk.tocs.and.lots.has.title.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -chunk.tocs.and.lots.has.title -boolean - - -chunk.tocs.and.lots.has.title -Should ToC and LoTs in a separate chunks have title? - - - - - - - - -Description - -If non-zero title of document is shown before ToC/LoT in -separate chunk. - - - diff --git a/docbook-xsl-1.75.2/params/chunk.tocs.and.lots.xml b/docbook-xsl-1.75.2/params/chunk.tocs.and.lots.xml deleted file mode 100644 index 2a01fff..0000000 --- a/docbook-xsl-1.75.2/params/chunk.tocs.and.lots.xml +++ /dev/null @@ -1,32 +0,0 @@ - - -chunk.tocs.and.lots -boolean - - -chunk.tocs.and.lots -Should ToC and LoTs be in separate chunks? - - - - - - - - -Description - -If non-zero, ToC and LoT (List of Examples, List of Figures, etc.) -will be put in a separate chunk. At the moment, this chunk is not in the -normal forward/backward navigation list. Instead, a new link is added to the -navigation footer. - -This feature is still somewhat experimental. Feedback welcome. - - - diff --git a/docbook-xsl-1.75.2/params/chunker.output.cdata-section-elements.xml b/docbook-xsl-1.75.2/params/chunker.output.cdata-section-elements.xml deleted file mode 100644 index 3e9be4d..0000000 --- a/docbook-xsl-1.75.2/params/chunker.output.cdata-section-elements.xml +++ /dev/null @@ -1,30 +0,0 @@ - - -chunker.output.cdata-section-elements -string - - -chunker.output.cdata-section-elements -List of elements to escape with CDATA sections - - - - - - -Description -This parameter specifies the list of elements that should be escaped -as CDATA sections by the chunking stylesheet. Not all processors support -specification of this parameter. - - -This parameter is documented here, but the declaration is actually -in the chunker.xsl stylesheet module. - - - diff --git a/docbook-xsl-1.75.2/params/chunker.output.doctype-public.xml b/docbook-xsl-1.75.2/params/chunker.output.doctype-public.xml deleted file mode 100644 index 6aa6e30..0000000 --- a/docbook-xsl-1.75.2/params/chunker.output.doctype-public.xml +++ /dev/null @@ -1,31 +0,0 @@ - - -chunker.output.doctype-public -string - - -chunker.output.doctype-public -Public identifer to use in the document type of generated pages - - - - - - -Description -This parameter specifies the public identifier that should be used by -the chunking stylesheet in the document type declaration of chunked pages. -Not all processors support specification of -this parameter. - - -This parameter is documented here, but the declaration is actually -in the chunker.xsl stylesheet module. - - - diff --git a/docbook-xsl-1.75.2/params/chunker.output.doctype-system.xml b/docbook-xsl-1.75.2/params/chunker.output.doctype-system.xml deleted file mode 100644 index 2d67906..0000000 --- a/docbook-xsl-1.75.2/params/chunker.output.doctype-system.xml +++ /dev/null @@ -1,31 +0,0 @@ - - -chunker.output.doctype-system -uri - - -chunker.output.doctype-system -System identifier to use for the document type in generated pages - - - - - - -Description -This parameter specifies the system identifier that should be used by -the chunking stylesheet in the document type declaration of chunked pages. -Not all processors support specification of -this parameter. - - -This parameter is documented here, but the declaration is actually -in the chunker.xsl stylesheet module. - - - diff --git a/docbook-xsl-1.75.2/params/chunker.output.encoding.xml b/docbook-xsl-1.75.2/params/chunker.output.encoding.xml deleted file mode 100644 index f8993e9..0000000 --- a/docbook-xsl-1.75.2/params/chunker.output.encoding.xml +++ /dev/null @@ -1,31 +0,0 @@ - - -chunker.output.encoding -string - - -chunker.output.encoding -Encoding used in generated pages - - - -ISO-8859-1 - - -Description -This parameter specifies the encoding to be used in files -generated by the chunking stylesheet. Not all processors support -specification of this parameter. - -This parameter used to be named default.encoding. - -This parameter is documented here, but the declaration is actually -in the chunker.xsl stylesheet module. - - - diff --git a/docbook-xsl-1.75.2/params/chunker.output.indent.xml b/docbook-xsl-1.75.2/params/chunker.output.indent.xml deleted file mode 100644 index 3da9ad4..0000000 --- a/docbook-xsl-1.75.2/params/chunker.output.indent.xml +++ /dev/null @@ -1,30 +0,0 @@ - - -chunker.output.indent -string - - -chunker.output.indent -Specification of indentation on generated pages - - - -no - - -Description -This parameter specifies the value of the indent -specification for generated pages. Not all processors support -specification of this parameter. - - -This parameter is documented here, but the declaration is actually -in the chunker.xsl stylesheet module. - - - diff --git a/docbook-xsl-1.75.2/params/chunker.output.media-type.xml b/docbook-xsl-1.75.2/params/chunker.output.media-type.xml deleted file mode 100644 index 6186971..0000000 --- a/docbook-xsl-1.75.2/params/chunker.output.media-type.xml +++ /dev/null @@ -1,35 +0,0 @@ - - -chunker.output.media-type -string - - -chunker.output.media-type -Media type to use in generated pages - - - - - - -Description -This parameter specifies the media type that should be used by -the chunking stylesheet. Not all processors support specification of -this parameter. - -This parameter specifies the media type that should be used by the -chunking stylesheet. This should be one from those defined in -[RFC2045] and - [RFC2046] - -This parameter is documented here, but the declaration is actually -in the chunker.xsl stylesheet module. -It must be one from html, xml or text - - - diff --git a/docbook-xsl-1.75.2/params/chunker.output.method.xml b/docbook-xsl-1.75.2/params/chunker.output.method.xml deleted file mode 100644 index dc9359b..0000000 --- a/docbook-xsl-1.75.2/params/chunker.output.method.xml +++ /dev/null @@ -1,32 +0,0 @@ - - -chunker.output.method -list -html -xml - - -chunker.output.method -Method used in generated pages - - - -html - - -Description -This parameter specifies the output method to be used in files -generated by the chunking stylesheet. - -This parameter used to be named output.method. - -This parameter is documented here, but the declaration is actually -in the chunker.xsl stylesheet module. - - - diff --git a/docbook-xsl-1.75.2/params/chunker.output.omit-xml-declaration.xml b/docbook-xsl-1.75.2/params/chunker.output.omit-xml-declaration.xml deleted file mode 100644 index 4b8262f..0000000 --- a/docbook-xsl-1.75.2/params/chunker.output.omit-xml-declaration.xml +++ /dev/null @@ -1,30 +0,0 @@ - - -chunker.output.omit-xml-declaration -string - - -chunker.output.omit-xml-declaration -Omit-xml-declaration for generated pages - - - -no - - -Description -This parameter specifies the value of the omit-xml-declaration -specification for generated pages. Not all processors support -specification of this parameter. - - -This parameter is documented here, but the declaration is actually -in the chunker.xsl stylesheet module. - - - diff --git a/docbook-xsl-1.75.2/params/chunker.output.standalone.xml b/docbook-xsl-1.75.2/params/chunker.output.standalone.xml deleted file mode 100644 index 8972c47..0000000 --- a/docbook-xsl-1.75.2/params/chunker.output.standalone.xml +++ /dev/null @@ -1,31 +0,0 @@ - - -chunker.output.standalone -string - - -chunker.output.standalone -Standalone declaration for generated pages - - - -no - - -Description -This parameter specifies the value of the standalone - specification for generated pages. It must be either - yes or no. Not all - processors support specification of this parameter. - - -This parameter is documented here, but the declaration is actually -in the chunker.xsl stylesheet module. - - - diff --git a/docbook-xsl-1.75.2/params/citerefentry.link.xml b/docbook-xsl-1.75.2/params/citerefentry.link.xml deleted file mode 100644 index 623511b..0000000 --- a/docbook-xsl-1.75.2/params/citerefentry.link.xml +++ /dev/null @@ -1,29 +0,0 @@ - - -citerefentry.link -boolean - - -citerefentry.link -Generate URL links when cross-referencing RefEntrys? - - - - - - - -Description - -If non-zero, a web link will be generated, presumably -to an online man->HTML gateway. The text of the link is -generated by the generate.citerefentry.link template. - - - - diff --git a/docbook-xsl-1.75.2/params/collect.xref.targets.xml b/docbook-xsl-1.75.2/params/collect.xref.targets.xml deleted file mode 100644 index 378c969..0000000 --- a/docbook-xsl-1.75.2/params/collect.xref.targets.xml +++ /dev/null @@ -1,33 +0,0 @@ - - -collect.xref.targets -list -no -yes -only - - -collect.xref.targets -Controls whether cross reference data is -collected - - -no - - -Description - - -In order to resolve olinks efficiently, the stylesheets can -generate an external data file containing information about -all potential cross reference endpoints in a document. -This parameter determines whether the collection process is run when the document is processed by the stylesheet. The default value is no, which means the data file is not generated during processing. The other choices are yes, which means the data file is created and the document is processed for output, and only, which means the data file is created but the document is not processed for output. -See also targets.filename. - - - diff --git a/docbook-xsl-1.75.2/params/column.count.back.xml b/docbook-xsl-1.75.2/params/column.count.back.xml deleted file mode 100644 index 95ee76d..0000000 --- a/docbook-xsl-1.75.2/params/column.count.back.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -column.count.back -integer - - -column.count.back -Number of columns on back matter pages - - - - - - - - -Description - -Number of columns on back matter (appendix, glossary, etc.) pages. - - - diff --git a/docbook-xsl-1.75.2/params/column.count.body.xml b/docbook-xsl-1.75.2/params/column.count.body.xml deleted file mode 100644 index a5d65b3..0000000 --- a/docbook-xsl-1.75.2/params/column.count.body.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -column.count.body -integer - - -column.count.body -Number of columns on body pages - - - - - - - - -Description - -Number of columns on body pages. - - - diff --git a/docbook-xsl-1.75.2/params/column.count.front.xml b/docbook-xsl-1.75.2/params/column.count.front.xml deleted file mode 100644 index 64ff3ac..0000000 --- a/docbook-xsl-1.75.2/params/column.count.front.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -column.count.front -integer - - -column.count.front -Number of columns on front matter pages - - - - - - - - -Description - -Number of columns on front matter (dedication, preface, etc.) pages. - - - diff --git a/docbook-xsl-1.75.2/params/column.count.index.xml b/docbook-xsl-1.75.2/params/column.count.index.xml deleted file mode 100644 index e485448..0000000 --- a/docbook-xsl-1.75.2/params/column.count.index.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -column.count.index -integer - - -column.count.index -Number of columns on index pages - - - - -2 - - - -Description - -Number of columns on index pages. - - - diff --git a/docbook-xsl-1.75.2/params/column.count.lot.xml b/docbook-xsl-1.75.2/params/column.count.lot.xml deleted file mode 100644 index 770988d..0000000 --- a/docbook-xsl-1.75.2/params/column.count.lot.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -column.count.lot -integer - - -column.count.lot -Number of columns on a 'List-of-Titles' page - - - - - - - - -Description - -Number of columns on a page sequence containing the Table of Contents, -List of Figures, etc. - - - diff --git a/docbook-xsl-1.75.2/params/column.count.titlepage.xml b/docbook-xsl-1.75.2/params/column.count.titlepage.xml deleted file mode 100644 index 3deba6f..0000000 --- a/docbook-xsl-1.75.2/params/column.count.titlepage.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -column.count.titlepage -integer - - -column.count.titlepage -Number of columns on a title page - - - - - - - - -Description - -Number of columns on a title page - - - diff --git a/docbook-xsl-1.75.2/params/column.gap.back.xml b/docbook-xsl-1.75.2/params/column.gap.back.xml deleted file mode 100644 index 3aaa1d3..0000000 --- a/docbook-xsl-1.75.2/params/column.gap.back.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -column.gap.back -length - - -column.gap.back -Gap between columns in back matter - - - - -12pt - - - -Description - -Specifies the gap between columns in back matter (if -column.count.back is greater than one). - - - diff --git a/docbook-xsl-1.75.2/params/column.gap.body.xml b/docbook-xsl-1.75.2/params/column.gap.body.xml deleted file mode 100644 index 57b0168..0000000 --- a/docbook-xsl-1.75.2/params/column.gap.body.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -column.gap.body -length - - -column.gap.body -Gap between columns in the body - - - - -12pt - - - -Description - -Specifies the gap between columns in body matter (if -column.count.body is greater than one). - - - diff --git a/docbook-xsl-1.75.2/params/column.gap.front.xml b/docbook-xsl-1.75.2/params/column.gap.front.xml deleted file mode 100644 index a6f7263..0000000 --- a/docbook-xsl-1.75.2/params/column.gap.front.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -column.gap.front -length - - -column.gap.front -Gap between columns in the front matter - - - - -12pt - - - -Description - -Specifies the gap between columns in front matter (if -column.count.front is greater than one). - - - diff --git a/docbook-xsl-1.75.2/params/column.gap.index.xml b/docbook-xsl-1.75.2/params/column.gap.index.xml deleted file mode 100644 index 2279f77..0000000 --- a/docbook-xsl-1.75.2/params/column.gap.index.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -column.gap.index -length - - -column.gap.index -Gap between columns in the index - - - - -12pt - - - -Description - -Specifies the gap between columns in indexes (if -column.count.index is greater than one). - - - diff --git a/docbook-xsl-1.75.2/params/column.gap.lot.xml b/docbook-xsl-1.75.2/params/column.gap.lot.xml deleted file mode 100644 index da0fa00..0000000 --- a/docbook-xsl-1.75.2/params/column.gap.lot.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -column.gap.lot -length - - -column.gap.lot -Gap between columns on a 'List-of-Titles' page - - - - -12pt - - - -Description - -Specifies the gap between columns on 'List-of-Titles' pages (if -column.count.lot is greater than one). - - - diff --git a/docbook-xsl-1.75.2/params/column.gap.titlepage.xml b/docbook-xsl-1.75.2/params/column.gap.titlepage.xml deleted file mode 100644 index 7c13dbd..0000000 --- a/docbook-xsl-1.75.2/params/column.gap.titlepage.xml +++ /dev/null @@ -1,29 +0,0 @@ - - -column.gap.titlepage -length - - -column.gap.titlepage -Gap between columns on title pages - - - - -12pt - - - -Description - -Specifies the gap between columns on title pages (if -column.count.titlepage is greater than one). - - - - diff --git a/docbook-xsl-1.75.2/params/compact.list.item.spacing.xml b/docbook-xsl-1.75.2/params/compact.list.item.spacing.xml deleted file mode 100644 index f48f4a6..0000000 --- a/docbook-xsl-1.75.2/params/compact.list.item.spacing.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -compact.list.item.spacing -attribute set - - -compact.list.item.spacing -What space do you want between list items (when spacing="compact")? - - - - - 0em - 0em - 0.2em - - -Description -Specify what spacing you want between each list item when -spacing is -compact. - - diff --git a/docbook-xsl-1.75.2/params/component.label.includes.part.label.xml b/docbook-xsl-1.75.2/params/component.label.includes.part.label.xml deleted file mode 100644 index 6dd7a68..0000000 --- a/docbook-xsl-1.75.2/params/component.label.includes.part.label.xml +++ /dev/null @@ -1,39 +0,0 @@ - - -component.label.includes.part.label -boolean - - -component.label.includes.part.label -Do component labels include the part label? - - - - - - -Description - -If non-zero, number labels for chapter, -appendix, and other component elements are prefixed with -the label of the part element that contains them. So you might see -Chapter II.3 instead of Chapter 3. Also, the labels for formal -elements such as table and figure will include -the part label. If there is no part element container, then no prefix -is generated. - - -This feature is most useful when the -label.from.part parameter is turned on. -In that case, there would be more than one chapter -1, and the extra part label prefix will identify -each chapter unambiguously. - - - - diff --git a/docbook-xsl-1.75.2/params/component.title.properties.xml b/docbook-xsl-1.75.2/params/component.title.properties.xml deleted file mode 100644 index 58cd4b4..0000000 --- a/docbook-xsl-1.75.2/params/component.title.properties.xml +++ /dev/null @@ -1,40 +0,0 @@ - - -component.title.properties -attribute set - - -component.title.properties -Properties for component titles - - - - - - always - - - - false - - - center - start - - - - - - - -Description - -The properties common to all component titles. - - - diff --git a/docbook-xsl-1.75.2/params/component.titlepage.properties.xml b/docbook-xsl-1.75.2/params/component.titlepage.properties.xml deleted file mode 100644 index 47179f4..0000000 --- a/docbook-xsl-1.75.2/params/component.titlepage.properties.xml +++ /dev/null @@ -1,33 +0,0 @@ - - -component.titlepage.properties -attribute set - - -component.titlepage.properties -Properties for component titlepages - - - - - - - - - -Description - -The properties that are applied to the outer block containing -all the component title page information. -Its main use is to set a span="all" -property on the block that is a direct child of the flow. - -This attribute-set also applies to index titlepages. It is empty by default. - - - diff --git a/docbook-xsl-1.75.2/params/contrib.inline.enabled.xml b/docbook-xsl-1.75.2/params/contrib.inline.enabled.xml deleted file mode 100644 index 5d5fa99..0000000 --- a/docbook-xsl-1.75.2/params/contrib.inline.enabled.xml +++ /dev/null @@ -1,26 +0,0 @@ - - -contrib.inline.enabled -boolean - - -contrib.inline.enabled -Display contrib output inline? - - - -1 - - -Description - -If non-zero (the default), output of the contrib element is -displayed as inline content rather than as block content. - - - diff --git a/docbook-xsl-1.75.2/params/crop.mark.bleed.xml b/docbook-xsl-1.75.2/params/crop.mark.bleed.xml deleted file mode 100644 index af3420e..0000000 --- a/docbook-xsl-1.75.2/params/crop.mark.bleed.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -crop.mark.bleed -length - - -crop.mark.bleed -Length of invisible part of crop marks. - - - - -6pt - - - -Description - -Length of invisible part of crop marks. Crop marks are controlled by -crop.marks parameter. - - - diff --git a/docbook-xsl-1.75.2/params/crop.mark.offset.xml b/docbook-xsl-1.75.2/params/crop.mark.offset.xml deleted file mode 100644 index cfd9bd3..0000000 --- a/docbook-xsl-1.75.2/params/crop.mark.offset.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -crop.mark.offset -length - - -crop.mark.offset -Length of crop marks. - - - - -24pt - - - -Description - -Length of crop marks. Crop marks are controlled by -crop.marks parameter. - - - diff --git a/docbook-xsl-1.75.2/params/crop.mark.width.xml b/docbook-xsl-1.75.2/params/crop.mark.width.xml deleted file mode 100644 index 86c28b5..0000000 --- a/docbook-xsl-1.75.2/params/crop.mark.width.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -crop.mark.width -length - - -crop.mark.width -Width of crop marks. - - - - -0.5pt - - - -Description - -Width of crop marks. Crop marks are controlled by -crop.marks parameter. - - - diff --git a/docbook-xsl-1.75.2/params/crop.marks.xml b/docbook-xsl-1.75.2/params/crop.marks.xml deleted file mode 100644 index c68d5a0..0000000 --- a/docbook-xsl-1.75.2/params/crop.marks.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -crop.marks -boolean - - -crop.marks -Output crop marks? - - - - - - - - -Description - -If non-zero, crop marks will be added to each page. Currently this -works only with XEP if you have xep.extensions set. - - - diff --git a/docbook-xsl-1.75.2/params/css.decoration.xml b/docbook-xsl-1.75.2/params/css.decoration.xml deleted file mode 100644 index 02e3026..0000000 --- a/docbook-xsl-1.75.2/params/css.decoration.xml +++ /dev/null @@ -1,33 +0,0 @@ - - -css.decoration -boolean - - -css.decoration -Enable CSS decoration of elements - - - - - - - - -Description - - -If non-zero, then html elements produced by the stylesheet may be -decorated with style attributes. For example, the -li tags produced for list items may include a -fragment of CSS in the style attribute which sets -the CSS property "list-style-type". - - - - diff --git a/docbook-xsl-1.75.2/params/css.stylesheet.dir.xml b/docbook-xsl-1.75.2/params/css.stylesheet.dir.xml deleted file mode 100644 index e32b178..0000000 --- a/docbook-xsl-1.75.2/params/css.stylesheet.dir.xml +++ /dev/null @@ -1,33 +0,0 @@ - - -css.stylesheet.dir -uri - - -css.stylesheet.dir -Default directory for CSS stylesheets - - - - - - - - -Description - -Identifies the default directory for the CSS stylesheet -generated on all the slides. This parameter can be set in the source -document with the <?dbhtml?> pseudo-attribute -css-stylesheet-dir. - -If non-empty, this value is prepended to each of the stylesheets. - - - - diff --git a/docbook-xsl-1.75.2/params/css.stylesheet.xml b/docbook-xsl-1.75.2/params/css.stylesheet.xml deleted file mode 100644 index 2acc66c..0000000 --- a/docbook-xsl-1.75.2/params/css.stylesheet.xml +++ /dev/null @@ -1,29 +0,0 @@ - - -css.stylesheet -uri - - -css.stylesheet -CSS stylesheet for slides - - - - -slides.css - - - -Description - -Identifies the CSS stylesheet used by all the slides. This parameter -can be set in the source document with the <?dbhtml?> pseudo-attribute -css-stylesheet. - - - diff --git a/docbook-xsl-1.75.2/params/current.docid.xml b/docbook-xsl-1.75.2/params/current.docid.xml deleted file mode 100644 index 93616f2..0000000 --- a/docbook-xsl-1.75.2/params/current.docid.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -current.docid -string - - -current.docid -targetdoc identifier for the document being -processed - - - - - -Description - -When olinks between documents are resolved for HTML output, the stylesheet can compute the relative path between the current document and the target document. The stylesheet needs to know the targetdoc identifiers for both documents, as they appear in the target.database.document database file. This parameter passes to the stylesheet -the targetdoc identifier of the current document, since that -identifier does not appear in the document itself. -This parameter can also be used for print output. If an olink's targetdoc id differs from the current.docid, then the stylesheet can append the target document's title to the generated olink text. That identifies to the reader that the link is to a different document, not the current document. See also olink.doctitle to enable that feature. - - diff --git a/docbook-xsl-1.75.2/params/currentpage.marker.xml b/docbook-xsl-1.75.2/params/currentpage.marker.xml deleted file mode 100644 index 2bccf30..0000000 --- a/docbook-xsl-1.75.2/params/currentpage.marker.xml +++ /dev/null @@ -1,25 +0,0 @@ - - -currentpage.marker -string - - -currentpage.marker -The text symbol used to mark the current page - - - - -@ - - - -Description -Character to use as identifying the current page in - - diff --git a/docbook-xsl-1.75.2/params/default.float.class.xml b/docbook-xsl-1.75.2/params/default.float.class.xml deleted file mode 100644 index 1078b60..0000000 --- a/docbook-xsl-1.75.2/params/default.float.class.xml +++ /dev/null @@ -1,34 +0,0 @@ - - -default.float.class -string - - -default.float.class -Specifies the default float class - - - - - - - left - before - - - - - -Description - -Selects the direction in which a float should be placed. for -xsl-fo this is before, for html it is left. For Western texts, the -before direction is the top of the page. - - - diff --git a/docbook-xsl-1.75.2/params/default.image.width.xml b/docbook-xsl-1.75.2/params/default.image.width.xml deleted file mode 100644 index cfd119d..0000000 --- a/docbook-xsl-1.75.2/params/default.image.width.xml +++ /dev/null @@ -1,31 +0,0 @@ - - -default.image.width -length - - -default.image.width -The default width of images - - - - - - - - -Description - -If specified, this value will be used for the -width attribute on -images that do not specify any -viewport -dimensions. - - - diff --git a/docbook-xsl-1.75.2/params/default.table.frame.xml b/docbook-xsl-1.75.2/params/default.table.frame.xml deleted file mode 100644 index 38c8667..0000000 --- a/docbook-xsl-1.75.2/params/default.table.frame.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -default.table.frame -string - - -default.table.frame -The default framing of tables - - - - -all - - - -Description - -This value will be used when there is no frame attribute on the -table. - - - diff --git a/docbook-xsl-1.75.2/params/default.table.rules.xml b/docbook-xsl-1.75.2/params/default.table.rules.xml deleted file mode 100644 index ed698ec..0000000 --- a/docbook-xsl-1.75.2/params/default.table.rules.xml +++ /dev/null @@ -1,76 +0,0 @@ - - -default.table.rules -string - - -default.table.rules -The default column and row rules for tables using HTML markup - - - - -none - - - -Description - -Tables using HTML markup elements can use an attribute -named rules on the table or -informaltable element -to specify whether column and row border rules should be -displayed. This parameter lets you specify a global default -style for all HTML tables that don't otherwise have -that attribute. -These are the supported values: - - -all - -Rules will appear between all rows and columns. - - - -rows - -Rules will appear between rows only. - - - -cols - -Rules will appear between columns only. - - - -groups - -Rules will appear between row groups (thead, tfoot, tbody). -No support for rules between column groups yet. - - - - -none - -No rules. This is the default value. - - - - - - -The border after the last row and the border after -the last column are not affected by -this setting. Those borders are controlled by -the frame attribute on the table element. - - - - diff --git a/docbook-xsl-1.75.2/params/default.table.width.xml b/docbook-xsl-1.75.2/params/default.table.width.xml deleted file mode 100644 index 184ce52..0000000 --- a/docbook-xsl-1.75.2/params/default.table.width.xml +++ /dev/null @@ -1,26 +0,0 @@ - - -default.table.width -length - - -default.table.width -The default width of tables - - - - - - -Description -If non-zero, this value will be used for the -width attribute on tables that do not specify an -alternate width (with the dbhtml table-width or -dbfo table-width processing instruction). - - diff --git a/docbook-xsl-1.75.2/params/default.units.xml b/docbook-xsl-1.75.2/params/default.units.xml deleted file mode 100644 index f83c822..0000000 --- a/docbook-xsl-1.75.2/params/default.units.xml +++ /dev/null @@ -1,37 +0,0 @@ - - -default.units -list -cm -mm -in -pt -pc -px -em - - -default.units -Default units for an unqualified dimension - - - - -pt - - - -Description - -If an unqualified dimension is encountered (for example, in a -graphic width), the default.units will be used for the -units. Unqualified dimensions are not allowed in XSL Formatting Objects. - - - - diff --git a/docbook-xsl-1.75.2/params/dingbat.font.family.xml b/docbook-xsl-1.75.2/params/dingbat.font.family.xml deleted file mode 100644 index f9719cf..0000000 --- a/docbook-xsl-1.75.2/params/dingbat.font.family.xml +++ /dev/null @@ -1,33 +0,0 @@ - - -dingbat.font.family -list -open -serif -sans-serif -monospace - - -dingbat.font.family -The font family for copyright, quotes, and other symbols - - - - -serif - - - -Description - -The dingbat font family is used for dingbats. If it is defined -as the empty string, no font change is effected around dingbats. - - - - diff --git a/docbook-xsl-1.75.2/params/double.sided.xml b/docbook-xsl-1.75.2/params/double.sided.xml deleted file mode 100644 index 3758f1f..0000000 --- a/docbook-xsl-1.75.2/params/double.sided.xml +++ /dev/null @@ -1,31 +0,0 @@ - - -double.sided -boolean - - -double.sided -Is the document to be printed double sided? - - - - - - - - -Description - -Double-sided documents are printed with a slightly wider margin -on the binding edge of the page. - -FIXME: The current set of parameters does not take writing direction -into account. - - - diff --git a/docbook-xsl-1.75.2/params/draft.mode.xml b/docbook-xsl-1.75.2/params/draft.mode.xml deleted file mode 100644 index 711b468..0000000 --- a/docbook-xsl-1.75.2/params/draft.mode.xml +++ /dev/null @@ -1,36 +0,0 @@ - - -draft.mode -list -no -yes -maybe - - -draft.mode -Select draft mode - - - - -maybe - - - -Description - -Selects draft mode. If draft.mode is -yes, the entire document will be treated -as a draft. If it is no, the entire document -will be treated as a final copy. If it is maybe, -individual sections will be treated as draft or final independently, depending -on how their status attribute is set. - - - - diff --git a/docbook-xsl-1.75.2/params/draft.watermark.image.xml b/docbook-xsl-1.75.2/params/draft.watermark.image.xml deleted file mode 100644 index 39c8b57..0000000 --- a/docbook-xsl-1.75.2/params/draft.watermark.image.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -draft.watermark.image -uri - - -draft.watermark.image -The URI of the image to be used for draft watermarks - - - - -http://docbook.sourceforge.net/release/images/draft.png - - - -Description - -The image to be used for draft watermarks. - - - diff --git a/docbook-xsl-1.75.2/params/dry-run.xml b/docbook-xsl-1.75.2/params/dry-run.xml deleted file mode 100644 index dd481c3..0000000 --- a/docbook-xsl-1.75.2/params/dry-run.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -dry-run -boolean - - -dry-run -Indicates that no files should be produced - - - - - - -Description -When using the XSLT processor to manage dependencies and construct -the website, this parameter can be used to suppress the generation of -new and updated files. Effectively, this allows you to see what the -stylesheet would do, without actually making any changes. -Only applies when XSLT-based chunking is being used. - - diff --git a/docbook-xsl-1.75.2/params/dynamic.toc.xml b/docbook-xsl-1.75.2/params/dynamic.toc.xml deleted file mode 100644 index 232f19e..0000000 --- a/docbook-xsl-1.75.2/params/dynamic.toc.xml +++ /dev/null @@ -1,29 +0,0 @@ - - -dynamic.toc -boolean - - -dynamic.toc -Dynamic ToCs? - - - - - - - - -Description - -If non-zero, JavaScript is used to make the ToC panel dynamic. -In a dynamic ToC, each section in the ToC can be expanded and collapsed by -clicking on the appropriate image. - - - diff --git a/docbook-xsl-1.75.2/params/ebnf.assignment.xml b/docbook-xsl-1.75.2/params/ebnf.assignment.xml deleted file mode 100644 index 5c89748..0000000 --- a/docbook-xsl-1.75.2/params/ebnf.assignment.xml +++ /dev/null @@ -1,39 +0,0 @@ - - -ebnf.assignment -rtf - - -ebnf.assignment -The EBNF production assignment operator - - - - - -::= - - - - ::= - - - - - -Description - -The ebnf.assignment parameter determines what -text is used to show assignment in productions -in productionsets. - -While ::= is common, so are several -other operators. - - - diff --git a/docbook-xsl-1.75.2/params/ebnf.statement.terminator.xml b/docbook-xsl-1.75.2/params/ebnf.statement.terminator.xml deleted file mode 100644 index 4e8bd12..0000000 --- a/docbook-xsl-1.75.2/params/ebnf.statement.terminator.xml +++ /dev/null @@ -1,32 +0,0 @@ - - -ebnf.statement.terminator -rtf - - -ebnf.statement.terminator -Punctuation that ends an EBNF statement. - - - - - - - - - -Description - -The ebnf.statement.terminator parameter determines what -text is used to terminate each production -in productionset. - -Some notations end each statement with a period. - - - diff --git a/docbook-xsl-1.75.2/params/ebnf.table.bgcolor.xml b/docbook-xsl-1.75.2/params/ebnf.table.bgcolor.xml deleted file mode 100644 index 747f140..0000000 --- a/docbook-xsl-1.75.2/params/ebnf.table.bgcolor.xml +++ /dev/null @@ -1,30 +0,0 @@ - - -ebnf.table.bgcolor -color - - -ebnf.table.bgcolor -Background color for EBNF tables - - - - -#F5DCB3 - - - -Description - -Sets the background color for EBNF tables (a pale brown). No -bgcolor attribute is output if -ebnf.table.bgcolor is set to the null string. - - - - diff --git a/docbook-xsl-1.75.2/params/ebnf.table.border.xml b/docbook-xsl-1.75.2/params/ebnf.table.border.xml deleted file mode 100644 index e4e50ae..0000000 --- a/docbook-xsl-1.75.2/params/ebnf.table.border.xml +++ /dev/null @@ -1,26 +0,0 @@ - - -ebnf.table.border -boolean - - -ebnf.table.border -Selects border on EBNF tables - - - - - - -Description - -Selects the border on EBNF tables. If non-zero, the tables have -borders, otherwise they don't. - - - diff --git a/docbook-xsl-1.75.2/params/eclipse.autolabel.xml b/docbook-xsl-1.75.2/params/eclipse.autolabel.xml deleted file mode 100644 index 622196e..0000000 --- a/docbook-xsl-1.75.2/params/eclipse.autolabel.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -eclipse.autolabel -boolean - - -eclipse.autolabel -Should tree-like ToC use autonumbering feature? - - - - - - - - -Description - -If you want to include chapter and section numbers into ToC in -the left panel, set this parameter to 1. - - - diff --git a/docbook-xsl-1.75.2/params/eclipse.plugin.id.xml b/docbook-xsl-1.75.2/params/eclipse.plugin.id.xml deleted file mode 100644 index 75557e5..0000000 --- a/docbook-xsl-1.75.2/params/eclipse.plugin.id.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -eclipse.plugin.id -string - - -eclipse.plugin.id -Eclipse Help plugin id - - - - -com.example.help - - - -Description - -Eclipse Help plugin id. You should change this id to something -unique for each help. - - - diff --git a/docbook-xsl-1.75.2/params/eclipse.plugin.name.xml b/docbook-xsl-1.75.2/params/eclipse.plugin.name.xml deleted file mode 100644 index 0df83ec..0000000 --- a/docbook-xsl-1.75.2/params/eclipse.plugin.name.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -eclipse.plugin.name -string - - -eclipse.plugin.name -Eclipse Help plugin name - - - - -DocBook Online Help Sample - - - -Description - -Eclipse Help plugin name. - - - diff --git a/docbook-xsl-1.75.2/params/eclipse.plugin.provider.xml b/docbook-xsl-1.75.2/params/eclipse.plugin.provider.xml deleted file mode 100644 index 03261fe..0000000 --- a/docbook-xsl-1.75.2/params/eclipse.plugin.provider.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -eclipse.plugin.provider -string - - -eclipse.plugin.provider -Eclipse Help plugin provider name - - - - -Example provider - - - -Description - -Eclipse Help plugin provider name. - - - diff --git a/docbook-xsl-1.75.2/params/editedby.enabled.xml b/docbook-xsl-1.75.2/params/editedby.enabled.xml deleted file mode 100644 index 78089f9..0000000 --- a/docbook-xsl-1.75.2/params/editedby.enabled.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -editedby.enabled -boolean - - -editedby.enabled -Display “Edited by†heading above editor name? - - - -1 - - -Description - -If non-zero, a localized Edited -by heading is displayed above editor names in output of the -editor element. - - - diff --git a/docbook-xsl-1.75.2/params/email.delimiters.enabled.xml b/docbook-xsl-1.75.2/params/email.delimiters.enabled.xml deleted file mode 100644 index b07cd6d..0000000 --- a/docbook-xsl-1.75.2/params/email.delimiters.enabled.xml +++ /dev/null @@ -1,34 +0,0 @@ - - -email.delimiters.enabled -boolean - - -email.delimiters.enabled -Generate delimiters around email addresses? - - - - - - - - -Description - -If non-zero, delimiters - -For delimiters, the -stylesheets are currently hard-coded to output angle -brackets. - -are generated around e-mail addresses -(the output of the email element). - - - diff --git a/docbook-xsl-1.75.2/params/email.mailto.enabled.xml b/docbook-xsl-1.75.2/params/email.mailto.enabled.xml deleted file mode 100644 index e4eb8d1..0000000 --- a/docbook-xsl-1.75.2/params/email.mailto.enabled.xml +++ /dev/null @@ -1,29 +0,0 @@ - - -email.mailto.enabled -boolean - - -email.mailto.enabled -Generate mailto: links for email addresses? - - - - - - - - -Description - -If non-zero the generated output for the email element -will be a clickable mailto: link that brings up the default mail client -on the system. - - - diff --git a/docbook-xsl-1.75.2/params/emphasis.propagates.style.xml b/docbook-xsl-1.75.2/params/emphasis.propagates.style.xml deleted file mode 100644 index 9ff55f5..0000000 --- a/docbook-xsl-1.75.2/params/emphasis.propagates.style.xml +++ /dev/null @@ -1,26 +0,0 @@ - - -emphasis.propagates.style -boolean - - -emphasis.propagates.style -Pass emphasis role attribute through to HTML? - - - - - - -Description -If non-zero, the role attribute of -emphasis elements will be passed through to the HTML as a -class attribute on a span that surrounds the -emphasis. - - diff --git a/docbook-xsl-1.75.2/params/entry.propagates.style.xml b/docbook-xsl-1.75.2/params/entry.propagates.style.xml deleted file mode 100644 index 7f43c66..0000000 --- a/docbook-xsl-1.75.2/params/entry.propagates.style.xml +++ /dev/null @@ -1,30 +0,0 @@ - - -entry.propagates.style -boolean - - -entry.propagates.style -Pass entry role attribute through to HTML? - - - - - - - - -Description - -If true, the role attribute of entry elements -will be passed through to the HTML as a class attribute on the -td or th generated for the table -cell. - - - diff --git a/docbook-xsl-1.75.2/params/epub.autolabel.xml b/docbook-xsl-1.75.2/params/epub.autolabel.xml deleted file mode 100644 index 8a64555..0000000 --- a/docbook-xsl-1.75.2/params/epub.autolabel.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -epub.autolabel -boolean - - -epub.autolabel -Should tree-like ToC use autonumbering feature? - - - - - - - - -Description - -If you want to include chapter and section numbers into ToC in, -set this parameter to 1. - - - diff --git a/docbook-xsl-1.75.2/params/equation.properties.xml b/docbook-xsl-1.75.2/params/equation.properties.xml deleted file mode 100644 index a88f683..0000000 --- a/docbook-xsl-1.75.2/params/equation.properties.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -equation.properties -attribute set - - -equation.properties -Properties associated with a equation - - - - - - - - -Description - -The styling for equations. - - - diff --git a/docbook-xsl-1.75.2/params/example.properties.xml b/docbook-xsl-1.75.2/params/example.properties.xml deleted file mode 100644 index 53e695b..0000000 --- a/docbook-xsl-1.75.2/params/example.properties.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -example.properties -attribute set - - -example.properties -Properties associated with a example - - - - - - - - -Description - -The styling for examples. - - - diff --git a/docbook-xsl-1.75.2/params/exsl.node.set.available.xml b/docbook-xsl-1.75.2/params/exsl.node.set.available.xml deleted file mode 100644 index c5d009e..0000000 --- a/docbook-xsl-1.75.2/params/exsl.node.set.available.xml +++ /dev/null @@ -1,44 +0,0 @@ - - -exsl.node.set.available -boolean - - -exsl.node.set.available -Is the test function-available('exsl:node-set') true? - - - - - - 1 - 0 - - - - - -Description - -If non-zero, -then the exsl:node-set() function is available to be used in -the stylesheet. -If zero, then the function is not available. -This param automatically detects the presence of -the function and does not normally need to be set manually. - -This param was created to handle a long-standing -bug in the Xalan processor that fails to detect the -function even though it is available. - - - diff --git a/docbook-xsl-1.75.2/params/feedback.href.xml b/docbook-xsl-1.75.2/params/feedback.href.xml deleted file mode 100644 index bc37daf..0000000 --- a/docbook-xsl-1.75.2/params/feedback.href.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -feedback.href -uri - - -feedback.href -HREF (URI) for feedback link - - - - - - - - -Description -The feedback.href value is used as the value -for the href attribute on the feedback -link. If feedback.href -is empty, no feedback link is generated. - - diff --git a/docbook-xsl-1.75.2/params/feedback.link.text.xml b/docbook-xsl-1.75.2/params/feedback.link.text.xml deleted file mode 100644 index c80feef..0000000 --- a/docbook-xsl-1.75.2/params/feedback.link.text.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -feedback.link.text -string - - -feedback.link.text -The text of the feedback link - - - - -Feedback - - - -Description -The contents of this variable is used as the text of the feedback -link if feedback.href is not empty. If -feedback.href is empty, no feedback link is -generated. - - diff --git a/docbook-xsl-1.75.2/params/feedback.with.ids.xml b/docbook-xsl-1.75.2/params/feedback.with.ids.xml deleted file mode 100644 index 3edfa26..0000000 --- a/docbook-xsl-1.75.2/params/feedback.with.ids.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -feedback.with.ids -boolean - - -feedback.with.ids -Toggle use of IDs in feedback - - - - - - - - -Description -If feedback.with.ids is non-zero, the ID of the -current page will be added to the feedback link. This can be used, for -example, if the feedback.href is a CGI script. - - diff --git a/docbook-xsl-1.75.2/params/figure.properties.xml b/docbook-xsl-1.75.2/params/figure.properties.xml deleted file mode 100644 index e9f6748..0000000 --- a/docbook-xsl-1.75.2/params/figure.properties.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -figure.properties -attribute set - - -figure.properties -Properties associated with a figure - - - - - - - - -Description - -The styling for figures. - - - diff --git a/docbook-xsl-1.75.2/params/filename-prefix.xml b/docbook-xsl-1.75.2/params/filename-prefix.xml deleted file mode 100644 index 54c043d..0000000 --- a/docbook-xsl-1.75.2/params/filename-prefix.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -filename-prefix -string - - -filename-prefix -Prefix added to all filenames - - - - - - - - -Description -To produce the text-only (that is, non-tabular) layout -of a website simultaneously with the tabular layout, the filenames have to -be distinguished. That's accomplished by adding the -filename-prefix to the front of each filename. - - diff --git a/docbook-xsl-1.75.2/params/firstterm.only.link.xml b/docbook-xsl-1.75.2/params/firstterm.only.link.xml deleted file mode 100644 index 32ea305..0000000 --- a/docbook-xsl-1.75.2/params/firstterm.only.link.xml +++ /dev/null @@ -1,29 +0,0 @@ - - -firstterm.only.link -boolean - - -firstterm.only.link -Does automatic glossterm linking only apply to firstterms? - - - - - - - - -Description - -If non-zero, only firstterms will be automatically linked -to the glossary. If glossary linking is not enabled, this parameter -has no effect. - - - diff --git a/docbook-xsl-1.75.2/params/foil.properties.xml b/docbook-xsl-1.75.2/params/foil.properties.xml deleted file mode 100644 index 11ad146..0000000 --- a/docbook-xsl-1.75.2/params/foil.properties.xml +++ /dev/null @@ -1,37 +0,0 @@ - - -foil.properties -attribute set - - -foil.properties -Specifies properties for all foils - - - - - - - - - 1in - 1in - - - - bold - - - - -Description - -This parameter specifies properties that are applied to all foils. - - - diff --git a/docbook-xsl-1.75.2/params/foil.subtitle.properties.xml b/docbook-xsl-1.75.2/params/foil.subtitle.properties.xml deleted file mode 100644 index 4832fbe..0000000 --- a/docbook-xsl-1.75.2/params/foil.subtitle.properties.xml +++ /dev/null @@ -1,36 +0,0 @@ - - -foil.subtitle.properties -attribute set - - -foil.subtitle.properties -Specifies properties for all foil subtitles - - - - - - - - - center - - pt - - 12pt - - - - -Description - -This parameter specifies properties that are applied to all foil subtitles. - - - diff --git a/docbook-xsl-1.75.2/params/foil.title.master.xml b/docbook-xsl-1.75.2/params/foil.title.master.xml deleted file mode 100644 index f5ba07f..0000000 --- a/docbook-xsl-1.75.2/params/foil.title.master.xml +++ /dev/null @@ -1,29 +0,0 @@ - - -foil.title.master -number - - -foil.title.master -Specifies unitless font size to use for foil titles - - - - -36 - - - - -Description - -Specifies a unitless font size to use for foil titles; used in -combination with the foil.title.size -parameter. - - diff --git a/docbook-xsl-1.75.2/params/foil.title.size.xml b/docbook-xsl-1.75.2/params/foil.title.size.xml deleted file mode 100644 index 3163600..0000000 --- a/docbook-xsl-1.75.2/params/foil.title.size.xml +++ /dev/null @@ -1,32 +0,0 @@ - - -foil.title.size -length - - -foil.title.size -Specifies font size to use for foil titles, including units - - - - - - pt - - - - -Description - -This parameter combines the value of the -foil.title.master parameter with a unit -specification. The default unit is pt -(points). - - - diff --git a/docbook-xsl-1.75.2/params/foilgroup.properties.xml b/docbook-xsl-1.75.2/params/foilgroup.properties.xml deleted file mode 100644 index cd9805a..0000000 --- a/docbook-xsl-1.75.2/params/foilgroup.properties.xml +++ /dev/null @@ -1,31 +0,0 @@ - - -foilgroup.properties -attribute set - - -foilgroup.properties -Specifies properties for all foilgroups - - - - - - - - - - - - -Description - -This parameter specifies properties that are applied to all foilgroups. - - - diff --git a/docbook-xsl-1.75.2/params/foilgroup.toc.xml b/docbook-xsl-1.75.2/params/foilgroup.toc.xml deleted file mode 100644 index 31d7cb3..0000000 --- a/docbook-xsl-1.75.2/params/foilgroup.toc.xml +++ /dev/null @@ -1,29 +0,0 @@ - - -foilgroup.toc -boolean - - -foilgroup.toc -Put ToC on foilgroup pages? - - - - - - - - -Description - -If non-zero, a ToC will be placed on foilgroup pages (after any -other content). - - - - diff --git a/docbook-xsl-1.75.2/params/footer.column.widths.xml b/docbook-xsl-1.75.2/params/footer.column.widths.xml deleted file mode 100644 index eca2270..0000000 --- a/docbook-xsl-1.75.2/params/footer.column.widths.xml +++ /dev/null @@ -1,80 +0,0 @@ - - -footer.column.widths -string - - -footer.column.widths -Specify relative widths of footer areas - - - -1 1 1 - - -Description - -Page footers in print output use a three column table -to position text at the left, center, and right side of -the footer on the page. -This parameter lets you specify the relative sizes of the -three columns. The default value is -"1 1 1". - -The parameter value must be three numbers, separated -by white space. The first number represents the relative -width of the inside footer for -double-sided output. The second number is the relative -width of the center footer. The third number is the -relative width of the outside footer for -double-sided output. - -For single-sided output, the first number is the -relative width of left footer for left-to-right -text direction, or the right footer for right-to-left -text direction. -The third number is the -relative width of right footer for left-to-right -text direction, or the left footer for right-to-left -text direction. - -The numbers are used to specify the column widths -for the table that makes up the footer area. -In the FO output, this looks like: - - - -<fo:table-column column-number="1" - column-width="proportional-column-width(1)"/> - - - -The proportional-column-width() -function computes a column width by dividing its -argument by the total of the arguments for all the columns, and -then multiplying the result by the width of the whole table -(assuming all the column specs use the function). -Its argument can be any positive integer or floating point number. -Zero is an acceptable value, although some FO processors -may warn about it, in which case using a very small number might -be more satisfactory. - - -For example, the value "1 2 1" means the center -footer should have twice the width of the other areas. -A value of "0 0 1" means the entire footer area -is reserved for the right (or outside) footer text. -Note that to keep the center area centered on -the page, the left and right values must be -the same. A specification like "1 2 3" means the -center area is no longer centered on the page -since the right area is three times the width of the left area. - - - - diff --git a/docbook-xsl-1.75.2/params/footer.content.properties.xml b/docbook-xsl-1.75.2/params/footer.content.properties.xml deleted file mode 100644 index 1212cbd..0000000 --- a/docbook-xsl-1.75.2/params/footer.content.properties.xml +++ /dev/null @@ -1,34 +0,0 @@ - - -footer.content.properties -attribute set - - -footer.content.properties -Properties of page footer content - - - - - - - - - - - - - - - -Description - -Properties of page footer content. - - - diff --git a/docbook-xsl-1.75.2/params/footer.hr.xml b/docbook-xsl-1.75.2/params/footer.hr.xml deleted file mode 100644 index d1a5bf8..0000000 --- a/docbook-xsl-1.75.2/params/footer.hr.xml +++ /dev/null @@ -1,26 +0,0 @@ - - -footer.hr -boolean - - -footer.hr -Toggle <HR> before footer - - - - - - - - -Description -If non-zero, an <HR> is generated at the bottom of each web page, -before the footer. - - diff --git a/docbook-xsl-1.75.2/params/footer.rule.xml b/docbook-xsl-1.75.2/params/footer.rule.xml deleted file mode 100644 index 6b00ade..0000000 --- a/docbook-xsl-1.75.2/params/footer.rule.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -footer.rule -boolean - - -footer.rule -Rule over footers? - - - - - - - - -Description - -If non-zero, a rule will be drawn above the page footers. - - - diff --git a/docbook-xsl-1.75.2/params/footer.table.height.xml b/docbook-xsl-1.75.2/params/footer.table.height.xml deleted file mode 100644 index 2f6c45e..0000000 --- a/docbook-xsl-1.75.2/params/footer.table.height.xml +++ /dev/null @@ -1,32 +0,0 @@ - - -footer.table.height -length - - -footer.table.height -Specify the minimum height of the table containing the running page footers - - - -14pt - - -Description - -Page footers in print output use a three column table -to position text at the left, center, and right side of -the footer on the page. -This parameter lets you specify the minimum height -of the single row in the table. -Since this specifies only the minimum height, -the table should automatically grow to fit taller content. -The default value is "14pt". - - - diff --git a/docbook-xsl-1.75.2/params/footer.table.properties.xml b/docbook-xsl-1.75.2/params/footer.table.properties.xml deleted file mode 100644 index 12e67d3..0000000 --- a/docbook-xsl-1.75.2/params/footer.table.properties.xml +++ /dev/null @@ -1,30 +0,0 @@ - - -footer.table.properties -attribute set - - -footer.table.properties -Apply properties to the footer layout table - - - - - - fixed - 100% - - - - -Description - -Properties applied to the table that lays out the page footer. - - - diff --git a/docbook-xsl-1.75.2/params/footers.on.blank.pages.xml b/docbook-xsl-1.75.2/params/footers.on.blank.pages.xml deleted file mode 100644 index 2964f78..0000000 --- a/docbook-xsl-1.75.2/params/footers.on.blank.pages.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -footers.on.blank.pages -boolean - - -footers.on.blank.pages -Put footers on blank pages? - - - - - - - - -Description - -If non-zero, footers will be placed on blank pages. - - - diff --git a/docbook-xsl-1.75.2/params/footnote.font.size.xml b/docbook-xsl-1.75.2/params/footnote.font.size.xml deleted file mode 100644 index 88d0c0b..0000000 --- a/docbook-xsl-1.75.2/params/footnote.font.size.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -footnote.font.size -length - - -footnote.font.size -The font size for footnotes - - - - - pt - - - -Description - -The footnote font size is used for...footnotes! - - - - diff --git a/docbook-xsl-1.75.2/params/footnote.mark.properties.xml b/docbook-xsl-1.75.2/params/footnote.mark.properties.xml deleted file mode 100644 index 2dbc9c1..0000000 --- a/docbook-xsl-1.75.2/params/footnote.mark.properties.xml +++ /dev/null @@ -1,41 +0,0 @@ - - -footnote.mark.properties -attribute set - - -footnote.mark.properties -Properties applied to each footnote mark - - - - - - - - 75% - normal - normal - - - - -Description - -This attribute set is applied to the footnote mark used -for each footnote. -It should contain only inline properties. - - -The property to make the mark a superscript is contained in the -footnote template itself, because the current version of FOP reports -an error if baseline-shift is used. - - - - diff --git a/docbook-xsl-1.75.2/params/footnote.number.format.xml b/docbook-xsl-1.75.2/params/footnote.number.format.xml deleted file mode 100644 index c323720..0000000 --- a/docbook-xsl-1.75.2/params/footnote.number.format.xml +++ /dev/null @@ -1,33 +0,0 @@ - - -footnote.number.format -list -11,2,3... -AA,B,C... -aa,b,c... -ii,ii,iii... -II,II,III... - - -footnote.number.format -Identifies the format used for footnote numbers - - - - -1 - - - -Description - -The footnote.number.format specifies the format -to use for footnote numeration (1, i, I, a, or A). - - - diff --git a/docbook-xsl-1.75.2/params/footnote.number.symbols.xml b/docbook-xsl-1.75.2/params/footnote.number.symbols.xml deleted file mode 100644 index 10ca7d3..0000000 --- a/docbook-xsl-1.75.2/params/footnote.number.symbols.xml +++ /dev/null @@ -1,39 +0,0 @@ - - -footnote.number.symbols - - - -footnote.number.symbols -Special characters to use as footnote markers - - - - - - - - -Description - -If footnote.number.symbols is not the empty string, -footnotes will use the characters it contains as footnote symbols. For example, -*&#x2020;&#x2021;&#x25CA;&#x2720; will identify -footnotes with *, †, ‡, -â—Š, and ✠. If there are more footnotes -than symbols, the stylesheets will fall back to numbered footnotes using -footnote.number.format. - -The use of symbols for footnotes depends on the ability of your -processor (or browser) to render the symbols you select. Not all systems are -capable of displaying the full range of Unicode characters. If the quoted characters -in the preceding paragraph are not displayed properly, that's a good indicator -that you may have trouble using those symbols for footnotes. - - - diff --git a/docbook-xsl-1.75.2/params/footnote.properties.xml b/docbook-xsl-1.75.2/params/footnote.properties.xml deleted file mode 100644 index f62adee..0000000 --- a/docbook-xsl-1.75.2/params/footnote.properties.xml +++ /dev/null @@ -1,43 +0,0 @@ - - -footnote.properties -attribute set - - -footnote.properties -Properties applied to each footnote body - - - - - - - - - normal - normal - - 0pt - 0pt - - wrap - treat-as-space - - - - -Description - -This attribute set is applied to the footnote-block -for each footnote. -It can be used to set the -font-size, font-family, and other inheritable properties that will be -applied to all footnotes. - - - diff --git a/docbook-xsl-1.75.2/params/footnote.sep.leader.properties.xml b/docbook-xsl-1.75.2/params/footnote.sep.leader.properties.xml deleted file mode 100644 index 27f9489..0000000 --- a/docbook-xsl-1.75.2/params/footnote.sep.leader.properties.xml +++ /dev/null @@ -1,39 +0,0 @@ - - -footnote.sep.leader.properties -attribute set - - -footnote.sep.leader.properties -Properties associated with footnote separators - - - - - - black - rule - 1in - - - - -Description - -The styling for the rule line that separates the -footnotes from the body text. -These are properties applied to the fo:leader used as -the separator. - -If you want to do more than just set properties on -the leader element, then you can customize the template -named footnote.separator in -fo/pagesetup.xsl. - - - diff --git a/docbook-xsl-1.75.2/params/fop.extensions.xml b/docbook-xsl-1.75.2/params/fop.extensions.xml deleted file mode 100644 index e122368..0000000 --- a/docbook-xsl-1.75.2/params/fop.extensions.xml +++ /dev/null @@ -1,36 +0,0 @@ - - -fop.extensions -boolean - - -fop.extensions -Enable extensions for FOP version 0.20.5 and earlier - - - - - - -Description - -If non-zero, extensions intended for -FOP -version 0.20.5 and earlier will be used. -At present, this consists of PDF bookmarks. - - -This parameter can also affect which graphics file formats -are supported. - -If you are using a version of FOP beyond -version 0.20.5, then use the fop1.extensions parameter -instead. - - - diff --git a/docbook-xsl-1.75.2/params/fop1.extensions.xml b/docbook-xsl-1.75.2/params/fop1.extensions.xml deleted file mode 100644 index dcbcf5b..0000000 --- a/docbook-xsl-1.75.2/params/fop1.extensions.xml +++ /dev/null @@ -1,34 +0,0 @@ - - -fop1.extensions -boolean - - -fop1.extensions -Enable extensions for FOP version 0.90 and later - - - - - - -Description - -If non-zero, extensions for -FOP -version 0.90 and later will be used. - - -This parameter can also affect which graphics file formats -are supported. - -The original fop.extensions parameter -should still be used for FOP version 0.20.5 and earlier. - - - diff --git a/docbook-xsl-1.75.2/params/formal.object.properties.xml b/docbook-xsl-1.75.2/params/formal.object.properties.xml deleted file mode 100644 index f36aeaf..0000000 --- a/docbook-xsl-1.75.2/params/formal.object.properties.xml +++ /dev/null @@ -1,36 +0,0 @@ - - -formal.object.properties -attribute set - - -formal.object.properties -Properties associated with a formal object such as a figure, or other component that has a title - - - - - - 0.5em - 1em - 2em - 0.5em - 1em - 2em - always - - - - -Description - -The styling for formal objects in docbook. Specify the spacing -before and after the object. - - - diff --git a/docbook-xsl-1.75.2/params/formal.procedures.xml b/docbook-xsl-1.75.2/params/formal.procedures.xml deleted file mode 100644 index 4f10885..0000000 --- a/docbook-xsl-1.75.2/params/formal.procedures.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -formal.procedures -boolean - - -formal.procedures -Selects formal or informal procedures - - - - - - - - -Description - -Formal procedures are numbered and always have a title. - - - - diff --git a/docbook-xsl-1.75.2/params/formal.title.placement.xml b/docbook-xsl-1.75.2/params/formal.title.placement.xml deleted file mode 100644 index e56f200..0000000 --- a/docbook-xsl-1.75.2/params/formal.title.placement.xml +++ /dev/null @@ -1,41 +0,0 @@ - - -formal.title.placement -table - - -formal.title.placement -Specifies where formal object titles should occur - - - - - -figure before -example before -equation before -table before -procedure before -task before - - - - -Description - -Specifies where formal object titles should occur. For each formal object -type (figure, -example, -equation, -table, and procedure) -you can specify either the keyword -before or -after. - - - diff --git a/docbook-xsl-1.75.2/params/formal.title.properties.xml b/docbook-xsl-1.75.2/params/formal.title.properties.xml deleted file mode 100644 index 898d572..0000000 --- a/docbook-xsl-1.75.2/params/formal.title.properties.xml +++ /dev/null @@ -1,34 +0,0 @@ - - -formal.title.properties -attribute set - - -formal.title.properties -Style the title element of formal object such as a figure. - - - - - - bold - - - pt - - false - 0.4em - 0.6em - 0.8em - - - -Description -Specify how the title should be styled. Specify the font size and weight of the title of the formal object. - - diff --git a/docbook-xsl-1.75.2/params/funcsynopsis.decoration.xml b/docbook-xsl-1.75.2/params/funcsynopsis.decoration.xml deleted file mode 100644 index 44037c3..0000000 --- a/docbook-xsl-1.75.2/params/funcsynopsis.decoration.xml +++ /dev/null @@ -1,30 +0,0 @@ - - -funcsynopsis.decoration -boolean - - -funcsynopsis.decoration -Decorate elements of a funcsynopsis? - - - - - - - - -Description - -If non-zero, elements of the funcsynopsis will be -decorated (e.g. rendered as bold or italic text). The decoration is controlled by -templates that can be redefined in a customization layer. - - - - diff --git a/docbook-xsl-1.75.2/params/funcsynopsis.style.xml b/docbook-xsl-1.75.2/params/funcsynopsis.style.xml deleted file mode 100644 index fc3ad85..0000000 --- a/docbook-xsl-1.75.2/params/funcsynopsis.style.xml +++ /dev/null @@ -1,31 +0,0 @@ - - -funcsynopsis.style -list -ansi -kr - - -funcsynopsis.style -What style of funcsynopsis should be generated? - - - -kr - - -Description - -If funcsynopsis.style is ansi, -ANSI-style function synopses are generated for a -funcsynopsis, otherwise K&R-style -function synopses are generated. - - - - diff --git a/docbook-xsl-1.75.2/params/function.parens.xml b/docbook-xsl-1.75.2/params/function.parens.xml deleted file mode 100644 index 15d6df0..0000000 --- a/docbook-xsl-1.75.2/params/function.parens.xml +++ /dev/null @@ -1,29 +0,0 @@ - - -function.parens -boolean - - -function.parens -Generate parens after a function? - - - - - - - - -Description - -If non-zero, the formatting of a function element -will include generated parentheses. - - - - diff --git a/docbook-xsl-1.75.2/params/generate.id.attributes.xml b/docbook-xsl-1.75.2/params/generate.id.attributes.xml deleted file mode 100644 index 6326841..0000000 --- a/docbook-xsl-1.75.2/params/generate.id.attributes.xml +++ /dev/null @@ -1,59 +0,0 @@ - - -generate.id.attributes -boolean - - -generate.id.attributes -Generate ID attributes on container elements? - - - - - - - - -Description - -If non-zero, the HTML stylesheet will generate ID attributes on -containers. For example, the markup: - -<section id="foo"><title>Some Title</title> -<para>Some para.</para> -</section> - -might produce: - -<div class="section" id="foo"> -<h2>Some Title</h2> -<p>Some para.</p> -</div> - -The alternative is to generate anchors: - -<div class="section"> -<h2><a name="foo"></a>Some Title</h2> -<p>Some para.</p> -</div> - -Because the name attribute of -the a element and the id -attribute of other tags are both of type ID, producing both -generates invalid documents. - -As of version 1.50, you can use this switch to control which type of -identifier is generated. For backwards-compatibility, generating -a anchors is preferred. - -Note: at present, this switch is incompletely implemented. -Disabling ID attributes will suppress them, but enabling ID attributes -will not suppress the anchors. - - - diff --git a/docbook-xsl-1.75.2/params/generate.index.xml b/docbook-xsl-1.75.2/params/generate.index.xml deleted file mode 100644 index 8cab350..0000000 --- a/docbook-xsl-1.75.2/params/generate.index.xml +++ /dev/null @@ -1,25 +0,0 @@ - - -generate.index -boolean - - -generate.index -Do you want an index? - - - - - - -Description - -Specify if an index should be generated. - - - diff --git a/docbook-xsl-1.75.2/params/generate.legalnotice.link.xml b/docbook-xsl-1.75.2/params/generate.legalnotice.link.xml deleted file mode 100644 index 534e050..0000000 --- a/docbook-xsl-1.75.2/params/generate.legalnotice.link.xml +++ /dev/null @@ -1,72 +0,0 @@ - - -generate.legalnotice.link -boolean - - -generate.legalnotice.link -Write legalnotice to separate chunk and generate link? - - - - - - -Description - -If the value of generate.legalnotice.link -is non-zero, the stylesheet: - - - - writes the contents of legalnotice to a separate - HTML file - - - inserts a hyperlink to the legalnotice file - - - adds (in the HTML head) either a single - link or element or multiple - link elements (depending on the value of the - html.head.legalnotice.link.multiple - parameter), with the value or values derived from the - html.head.legalnotice.link.types - parameter - - - - Otherwise, if generate.legalnotice.link is - zero, legalnotice contents are rendered on the title - page. - -The name of the separate HTML file is computed as follows: - - - - If a filename is given by the dbhtml filename -processing instruction, that filename is used. - - - If the legalnotice has an id/xml:id -attribute, and if use.id.as.filename != 0, the filename -is the concatenation of the id value and the value of the html.ext -parameter. - - - If the legalnotice does not have an id/xml:id - attribute, or if use.id.as.filename = 0, the filename is the concatenation of "ln-", -auto-generated id value, and html.ext value. - - - - - - - - diff --git a/docbook-xsl-1.75.2/params/generate.manifest.xml b/docbook-xsl-1.75.2/params/generate.manifest.xml deleted file mode 100644 index b561c36..0000000 --- a/docbook-xsl-1.75.2/params/generate.manifest.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - generate.manifest - boolean - - - generate.manifest - Generate a manifest file? - - - - - - - Description - - If non-zero, a list of HTML files generated by the - stylesheet transformation is written to the file named by - the manifest parameter. - - - diff --git a/docbook-xsl-1.75.2/params/generate.meta.abstract.xml b/docbook-xsl-1.75.2/params/generate.meta.abstract.xml deleted file mode 100644 index d3ca138..0000000 --- a/docbook-xsl-1.75.2/params/generate.meta.abstract.xml +++ /dev/null @@ -1,29 +0,0 @@ - - -generate.meta.abstract -boolean - - -generate.meta.abstract -Generate HTML META element from abstract? - - - - - - - - -Description - -If non-zero, document abstracts will be reproduced in the HTML -head, with >meta name="description" content="..." - - - - diff --git a/docbook-xsl-1.75.2/params/generate.revhistory.link.xml b/docbook-xsl-1.75.2/params/generate.revhistory.link.xml deleted file mode 100644 index bd70cd9..0000000 --- a/docbook-xsl-1.75.2/params/generate.revhistory.link.xml +++ /dev/null @@ -1,50 +0,0 @@ - - -generate.revhistory.link -boolean - - -generate.revhistory.link -Write revhistory to separate chunk and generate link? - - - - - - -Description - -If non-zero, the contents of revhistory are written -to a separate HTML file and a link to the file is -generated. Otherwise, revhistory contents are rendered on -the title page. - -The name of the separate HTML file is computed as follows: - - - - If a filename is given by the dbhtml filename processing instruction, -that filename is used. - - - If the revhistory has an id/xml:id -attribute, and if use.id.as.filename != 0, the filename is the concatenation of -the id value and the value of the html.ext parameter. - - - If the revhistory does not have an id/xml:id -attribute, or if use.id.as.filename = 0, the filename is the concatenation of "rh-", -auto-generated id value, and html.ext value. - - - - - - - - diff --git a/docbook-xsl-1.75.2/params/generate.section.toc.level.xml b/docbook-xsl-1.75.2/params/generate.section.toc.level.xml deleted file mode 100644 index 227735a..0000000 --- a/docbook-xsl-1.75.2/params/generate.section.toc.level.xml +++ /dev/null @@ -1,35 +0,0 @@ - - -generate.section.toc.level -integer - - -generate.section.toc.level -Control depth of TOC generation in sections - - - - - - - - -Description - -The generate.section.toc.level parameter -controls the depth of section in which TOCs will be generated. Note -that this is related to, but not the same as -toc.section.depth, which controls the depth to -which TOC entries will be generated in a given TOC. -If, for example, generate.section.toc.level -is 3, TOCs will be generated in first, second, and third -level sections, but not in fourth level sections. - - - - diff --git a/docbook-xsl-1.75.2/params/generate.toc.xml b/docbook-xsl-1.75.2/params/generate.toc.xml deleted file mode 100644 index d23c45e..0000000 --- a/docbook-xsl-1.75.2/params/generate.toc.xml +++ /dev/null @@ -1,108 +0,0 @@ - - -generate.toc -table - - -generate.toc -Control generation of ToCs and LoTs - - - - - -appendix toc,title -article/appendix nop -article toc,title -book toc,title,figure,table,example,equation -chapter toc,title -part toc,title -preface toc,title -qandadiv toc -qandaset toc -reference toc,title -sect1 toc -sect2 toc -sect3 toc -sect4 toc -sect5 toc -section toc -set toc,title - - -/appendix toc,title -article/appendix nop -/article toc,title -book toc,title,figure,table,example,equation -/chapter toc,title -part toc,title -/preface toc,title -reference toc,title -/sect1 toc -/sect2 toc -/sect3 toc -/sect4 toc -/sect5 toc -/section toc -set toc,title - - - - -Description - -This parameter has a structured value. It is a table of space-delimited -path/value pairs. Each path identifies some element in the source document -using a restricted subset of XPath (only the implicit child axis, no wildcards, -no predicates). Paths can be either relative or absolute. - -When processing a particular element, the stylesheets consult this table to -determine if a ToC (or LoT(s)) should be generated. - -For example, consider the entry: - -book toc,figure - -This indicates that whenever a book is formatted, a -Table Of Contents and a List of Figures should be generated. Similarly, - -/chapter toc - -indicates that whenever a document that has a root -of chapter is formatted, a Table of -Contents should be generated. The entry chapter would match -all chapters, but /chapter matches only chapter -document elements. - -Generally, the longest match wins. So, for example, if you want to distinguish -articles in books from articles in parts, you could use these two entries: - -book/article toc,figure -part/article toc - -Note that an article in a part can never match a book/article, -so if you want nothing to be generated for articles in parts, you can simply leave -that rule out. - -If you want to leave the rule in, to make it explicit that you're turning -something off, use the value nop. For example, the following -entry disables ToCs and LoTs for articles: - -article nop - -Do not simply leave the word article in the file -without a matching value. That'd be just begging the silly little -path/value parser to get confused. - -Section ToCs are further controlled by the -generate.section.toc.level parameter. -For a given section level to have a ToC, it must have both an entry in -generate.toc and be within the range enabled by -generate.section.toc.level. - - diff --git a/docbook-xsl-1.75.2/params/glossary.as.blocks.xml b/docbook-xsl-1.75.2/params/glossary.as.blocks.xml deleted file mode 100644 index e18ed19..0000000 --- a/docbook-xsl-1.75.2/params/glossary.as.blocks.xml +++ /dev/null @@ -1,38 +0,0 @@ - - -glossary.as.blocks -boolean - - -glossary.as.blocks -Present glossarys using blocks instead of lists? - - - - - - - - -Description - -If non-zero, glossarys will be formatted as -blocks. - -If you have long glossterms, proper list -markup in the FO case may produce unattractive lists. By setting this -parameter, you can force the stylesheets to produce block markup -instead of proper lists. - -You can override this setting with a processing instruction as the -child of glossary: dbfo -glossary-presentation="blocks" or dbfo -glossary-presentation="list" - - - diff --git a/docbook-xsl-1.75.2/params/glossary.collection.xml b/docbook-xsl-1.75.2/params/glossary.collection.xml deleted file mode 100644 index 6f9828b..0000000 --- a/docbook-xsl-1.75.2/params/glossary.collection.xml +++ /dev/null @@ -1,252 +0,0 @@ - - -glossary.collection -string - - -glossary.collection -Name of the glossary collection file - - - - - - - - -Description - -Glossaries maintained independently across a set of documents -are likely to become inconsistent unless considerable effort is -expended to keep them in sync. It makes much more sense, usually, to -store all of the glossary entries in a single place and simply -extract the ones you need in each document. - -That's the purpose of the -glossary.collection parameter. To setup a global -glossary database, follow these steps: - -Setting Up the Glossary Database - -First, create a stand-alone glossary document that contains all of -the entries that you wish to reference. Make sure that each glossary -entry has an ID. - -Here's an example glossary: - - - -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE glossary - PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN" - "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd"> -<glossary> -<glossaryinfo> -<editor><firstname>Eric</firstname><surname>Raymond</surname></editor> -<title>Jargon File 4.2.3 (abridged)</title> -<releaseinfo>Just some test data</releaseinfo> -</glossaryinfo> - -<glossdiv><title>0</title> - -<glossentry> -<glossterm>0</glossterm> -<glossdef> -<para>Numeric zero, as opposed to the letter `O' (the 15th letter of -the English alphabet). In their unmodified forms they look a lot -alike, and various kluges invented to make them visually distinct have -compounded the confusion. If your zero is center-dotted and letter-O -is not, or if letter-O looks almost rectangular but zero looks more -like an American football stood on end (or the reverse), you're -probably looking at a modern character display (though the dotted zero -seems to have originated as an option on IBM 3270 controllers). If -your zero is slashed but letter-O is not, you're probably looking at -an old-style ASCII graphic set descended from the default typewheel on -the venerable ASR-33 Teletype (Scandinavians, for whom /O is a letter, -curse this arrangement). (Interestingly, the slashed zero long -predates computers; Florian Cajori's monumental "A History of -Mathematical Notations" notes that it was used in the twelfth and -thirteenth centuries.) If letter-O has a slash across it and the zero -does not, your display is tuned for a very old convention used at IBM -and a few other early mainframe makers (Scandinavians curse <emphasis>this</emphasis> -arrangement even more, because it means two of their letters collide). -Some Burroughs/Unisys equipment displays a zero with a <emphasis>reversed</emphasis> -slash. Old CDC computers rendered letter O as an unbroken oval and 0 -as an oval broken at upper right and lower left. And yet another -convention common on early line printers left zero unornamented but -added a tail or hook to the letter-O so that it resembled an inverted -Q or cursive capital letter-O (this was endorsed by a draft ANSI -standard for how to draw ASCII characters, but the final standard -changed the distinguisher to a tick-mark in the upper-left corner). -Are we sufficiently confused yet?</para> -</glossdef> -</glossentry> - -<glossentry> -<glossterm>1TBS</glossterm> -<glossdef> -<para role="accidence"> -<phrase role="pronounce"></phrase> -<phrase role="partsofspeach">n</phrase> -</para> -<para>The "One True Brace Style"</para> -<glossseealso>indent style</glossseealso> -</glossdef> -</glossentry> - -<!-- ... --> - -</glossdiv> - -<!-- ... --> - -</glossary> - - - - -Marking Up Glossary Terms - -That takes care of the glossary database, now you have to get the entries -into your document. Unlike bibliography entries, which can be empty, creating -placeholder glossary entries would be very tedious. So instead, -support for glossary.collection relies on implicit linking. - -In your source document, simply use firstterm and -glossterm to identify the terms you wish to have included -in the glossary. The stylesheets assume that you will either set the -baseform attribute correctly, or that the -content of the element exactly matches a term in your glossary. - -If you're using a glossary.collection, don't -make explicit links on the terms in your document. - -So, in your document, you might write things like this: - - -<para>This is dummy text, without any real meaning. -The point is simply to reference glossary terms like <glossterm>0</glossterm> -and the <firstterm baseform="1TBS">One True Brace Style (1TBS)</firstterm>. -The <glossterm>1TBS</glossterm>, as you can probably imagine, is a nearly -religious issue.</para> - - -If you set the firstterm.only.link parameter, -only the terms marked with firstterm will be links. -Otherwise, all the terms will be linked. - - - -Marking Up the Glossary - -The glossary itself has to be identified for the stylesheets. For lack -of a better choice, the role is used. -To identify the glossary as the target for automatic processing, set -the role to auto. The title of this -glossary (and any other information from the glossaryinfo -that's rendered by your stylesheet) will be displayed, but the entries will -come from the database. - - -Unfortunately, the glossary can't be empty, so you must put in -at least one glossentry. The content of this entry -is irrelevant, it will not be rendered: - - -<glossary role="auto"> -<glossentry> -<glossterm>Irrelevant</glossterm> -<glossdef> -<para>If you can see this, the document was processed incorrectly. Use -the <parameter>glossary.collection</parameter> parameter.</para> -</glossdef> -</glossentry> -</glossary> - - -What about glossary divisions? If your glossary database has glossary -divisions and your automatic glossary contains at least -one glossdiv, the automic glossary will have divisions. -If the glossdiv is missing from either location, no divisions -will be rendered. - -Glossary entries (and divisions, if appropriate) in the glossary will -occur in precisely the order they occur in your database. - - - -Formatting the Document - -Finally, when you are ready to format your document, simply set the -glossary.collection parameter (in either a -customization layer or directly through your processor's interface) to -point to your global glossary. - -The stylesheets will format the glossary in your document as if -all of the entries implicilty referenced appeared there literally. - - -Limitations - -Glossary cross-references within the glossary are -not supported. For example, this will not work: - - -<glossentry> -<glossterm>gloss-1</glossterm> -<glossdef><para>A description that references <glossterm>gloss-2</glossterm>.</para> -<glossseealso>gloss-2</glossseealso> -</glossdef> -</glossentry> - - -If you put glossary cross-references in your glossary that way, -you'll get the cryptic error: Warning: -glossary.collection specified, but there are 0 automatic -glossaries. - -Instead, you must do two things: - - - -Markup your glossary using glossseealso: - - -<glossentry> -<glossterm>gloss-1</glossterm> -<glossdef><para>A description that references <glossterm>gloss-2</glossterm>.</para> -<glossseealso>gloss-2</glossseealso> -</glossdef> -</glossentry> - - - - -Make sure there is at least one glossterm reference to -gloss-2 in your document. The -easiest way to do that is probably within a remark in your -automatic glossary: - - -<glossary role="auto"> -<remark>Make sure there's a reference to <glossterm>gloss-2</glossterm>.</remark> -<glossentry> -<glossterm>Irrelevant</glossterm> -<glossdef> -<para>If you can see this, the document was processed incorrectly. Use -the <parameter>glossary.collection</parameter> parameter.</para> -</glossdef> -</glossentry> -</glossary> - - - - - - - diff --git a/docbook-xsl-1.75.2/params/glossary.sort.xml b/docbook-xsl-1.75.2/params/glossary.sort.xml deleted file mode 100644 index 216130a..0000000 --- a/docbook-xsl-1.75.2/params/glossary.sort.xml +++ /dev/null @@ -1,32 +0,0 @@ - - -glossary.sort -boolean - - -glossary.sort -Sort glossentry elements? - - - - - - - - -Description - -If non-zero, then the glossentry elements within a -glossary, glossdiv, or glosslist are sorted on the glossterm, using -the current lang setting. If zero (the default), then -glossentry elements are not sorted and are presented -in document order. - - - - diff --git a/docbook-xsl-1.75.2/params/glossdef.block.properties.xml b/docbook-xsl-1.75.2/params/glossdef.block.properties.xml deleted file mode 100644 index 4fb481f..0000000 --- a/docbook-xsl-1.75.2/params/glossdef.block.properties.xml +++ /dev/null @@ -1,32 +0,0 @@ - - -glossdef.block.properties -attribute set - - -glossdef.block.properties -To add properties to the block of a glossary definition. - - - - - .25in - - - -Description -These properties are added to the block containing a -glossary definition in a glossary when -the glossary.as.blocks parameter -is non-zero. -Use this attribute-set to set the space above and below, -any font properties, -and any indent for the glossary definition. - - - diff --git a/docbook-xsl-1.75.2/params/glossdef.list.properties.xml b/docbook-xsl-1.75.2/params/glossdef.list.properties.xml deleted file mode 100644 index ba71578..0000000 --- a/docbook-xsl-1.75.2/params/glossdef.list.properties.xml +++ /dev/null @@ -1,30 +0,0 @@ - - -glossdef.list.properties -attribute set - - -glossdef.list.properties -To add properties to the glossary definition in a list. - - - - - - - - -Description -These properties are added to the block containing a -glossary definition in a glossary when -the glossary.as.blocks parameter -is zero. -Use this attribute-set to set font properties, for example. - - - diff --git a/docbook-xsl-1.75.2/params/glossentry.list.item.properties.xml b/docbook-xsl-1.75.2/params/glossentry.list.item.properties.xml deleted file mode 100644 index 6830f17..0000000 --- a/docbook-xsl-1.75.2/params/glossentry.list.item.properties.xml +++ /dev/null @@ -1,32 +0,0 @@ - - -glossentry.list.item.properties -attribute set - - -glossentry.list.item.properties -To add properties to each glossentry in a list. - - - - - 1em - 0.8em - 1.2em - - - -Description -These properties are added to the fo:list-item containing a -glossentry in a glossary when the glossary.as.blocks parameter -is zero. -Use this attribute-set to set -spacing between entries, for example. - - - diff --git a/docbook-xsl-1.75.2/params/glossentry.show.acronym.xml b/docbook-xsl-1.75.2/params/glossentry.show.acronym.xml deleted file mode 100644 index 9736438..0000000 --- a/docbook-xsl-1.75.2/params/glossentry.show.acronym.xml +++ /dev/null @@ -1,37 +0,0 @@ - - -glossentry.show.acronym -list -no -yes -primary - - -glossentry.show.acronym -Display glossentry acronyms? - - - - -no - - - -Description - -A setting of yes means they should be displayed; -no means they shouldn't. If primary is used, -then they are shown as the primary text for the entry. - - -This setting controls both acronym and -abbrev elements in the glossentry. - - - - diff --git a/docbook-xsl-1.75.2/params/glosslist.as.blocks.xml b/docbook-xsl-1.75.2/params/glosslist.as.blocks.xml deleted file mode 100644 index d720837..0000000 --- a/docbook-xsl-1.75.2/params/glosslist.as.blocks.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -glosslist.as.blocks -boolean - - -glosslist.as.blocks -Use blocks for glosslists? - - - - - - - - -Description - -See glossary.as.blocks. - - - diff --git a/docbook-xsl-1.75.2/params/glossterm.auto.link.xml b/docbook-xsl-1.75.2/params/glossterm.auto.link.xml deleted file mode 100644 index 03d9a30..0000000 --- a/docbook-xsl-1.75.2/params/glossterm.auto.link.xml +++ /dev/null @@ -1,33 +0,0 @@ - - -glossterm.auto.link -boolean - - -glossterm.auto.link -Generate links from glossterm to glossentry automatically? - - - - - - - - -Description - -If non-zero, links from inline glossterms to the corresponding -glossentry elements in a glossary or glosslist -will be automatically generated. This is useful when your glossterms are consistent -and you don't want to add links manually. - -The automatic link generation feature is not used on glossterm elements -that have a linkend attribute. - - - diff --git a/docbook-xsl-1.75.2/params/glossterm.block.properties.xml b/docbook-xsl-1.75.2/params/glossterm.block.properties.xml deleted file mode 100644 index 84e6a6c..0000000 --- a/docbook-xsl-1.75.2/params/glossterm.block.properties.xml +++ /dev/null @@ -1,35 +0,0 @@ - - -glossterm.block.properties -attribute set - - -glossterm.block.properties -To add properties to the block of a glossentry's glossterm. - - - - - 1em - 0.8em - 1.2em - always - always - - - -Description -These properties are added to the block containing a -glossary term in a glossary when the glossary.as.blocks parameter -is non-zero. -Use this attribute-set to set the space above and below, -font properties, -and any indent for the glossary term. - - - diff --git a/docbook-xsl-1.75.2/params/glossterm.list.properties.xml b/docbook-xsl-1.75.2/params/glossterm.list.properties.xml deleted file mode 100644 index abe0d31..0000000 --- a/docbook-xsl-1.75.2/params/glossterm.list.properties.xml +++ /dev/null @@ -1,30 +0,0 @@ - - -glossterm.list.properties -attribute set - - -glossterm.list.properties -To add properties to the glossterm in a list. - - - - - - - - -Description -These properties are added to the block containing a -glossary term in a glossary when the glossary.as.blocks parameter -is zero. -Use this attribute-set to set -font properties, for example. - - - diff --git a/docbook-xsl-1.75.2/params/glossterm.separation.xml b/docbook-xsl-1.75.2/params/glossterm.separation.xml deleted file mode 100644 index d0d2b8d..0000000 --- a/docbook-xsl-1.75.2/params/glossterm.separation.xml +++ /dev/null @@ -1,31 +0,0 @@ - - -glossterm.separation -length - - -glossterm.separation -Separation between glossary terms and descriptions in list mode - - - - -0.25in - - - -Description - -Specifies the miminum horizontal -separation between glossary terms and descriptions when -they are presented side-by-side using lists -when the glossary.as.blocks -is zero. - - - diff --git a/docbook-xsl-1.75.2/params/glossterm.width.xml b/docbook-xsl-1.75.2/params/glossterm.width.xml deleted file mode 100644 index 0cd3b82..0000000 --- a/docbook-xsl-1.75.2/params/glossterm.width.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -glossterm.width -length - - -glossterm.width -Width of glossterm in list presentation mode - - - - -2in - - - -Description - -This parameter specifies the width reserved for glossary terms when -a list presentation is used. - - - diff --git a/docbook-xsl-1.75.2/params/graphic.default.extension.xml b/docbook-xsl-1.75.2/params/graphic.default.extension.xml deleted file mode 100644 index 93f2983..0000000 --- a/docbook-xsl-1.75.2/params/graphic.default.extension.xml +++ /dev/null @@ -1,29 +0,0 @@ - - -graphic.default.extension -string - - -graphic.default.extension -Default extension for graphic filenames - - - - - - -Description - -If a graphic or mediaobject -includes a reference to a filename that does not include an extension, -and the format attribute is -unspecified, the default extension will be used. - - - - diff --git a/docbook-xsl-1.75.2/params/graphical.admonition.properties.xml b/docbook-xsl-1.75.2/params/graphical.admonition.properties.xml deleted file mode 100644 index ca257d7..0000000 --- a/docbook-xsl-1.75.2/params/graphical.admonition.properties.xml +++ /dev/null @@ -1,42 +0,0 @@ - - -graphical.admonition.properties -attribute set - - -graphical.admonition.properties -To add properties to the outer block of a graphical admonition. - - - - - 1em - 0.8em - 1.2em - 1em - 0.8em - 1.2em - - - -Description -These properties are added to the outer block containing the -entire graphical admonition, including its title. -It is used when the parameter -admon.graphics is set to nonzero. -Use this attribute-set to set the space above and below, -and any indent for the whole admonition. - -In addition to these properties, a graphical admonition -also applies the admonition.title.properties -attribute-set to the title, and applies the -admonition.properties attribute-set -to the rest of the content. - - - diff --git a/docbook-xsl-1.75.2/params/graphics.dir.xml b/docbook-xsl-1.75.2/params/graphics.dir.xml deleted file mode 100644 index e8d83ae..0000000 --- a/docbook-xsl-1.75.2/params/graphics.dir.xml +++ /dev/null @@ -1,33 +0,0 @@ - - -graphics.dir -uri - - -graphics.dir -Graphics directory - - - - - - - - -Description - -Identifies the graphics directory for the navigation components -generated on all the slides. This parameter can be set in the source -document with the <?dbhtml?> pseudo-attribute -graphics-dir. - -If non-empty, this value is prepended to each of the graphic -image paths. - - - diff --git a/docbook-xsl-1.75.2/params/graphicsize.extension.xml b/docbook-xsl-1.75.2/params/graphicsize.extension.xml deleted file mode 100644 index c4da7e1..0000000 --- a/docbook-xsl-1.75.2/params/graphicsize.extension.xml +++ /dev/null @@ -1,30 +0,0 @@ - - -graphicsize.extension -boolean - - -graphicsize.extension -Enable the getWidth()/getDepth() extension functions - - - - - - - - -Description - -If non-zero (and if use.extensions is non-zero -and if you're using a processor that supports extension functions), the -getWidth and getDepth functions -will be used to extract image sizes from graphics. - - - diff --git a/docbook-xsl-1.75.2/params/graphicsize.use.img.src.path.xml b/docbook-xsl-1.75.2/params/graphicsize.use.img.src.path.xml deleted file mode 100644 index aff5b30..0000000 --- a/docbook-xsl-1.75.2/params/graphicsize.use.img.src.path.xml +++ /dev/null @@ -1,30 +0,0 @@ - - -graphicsize.use.img.src.path -boolean - - -graphicsize.use.img.src.path -Prepend img.src.path before -filenames passed to extension functions - - - - - - - - -Description - -If non-zero img.src.path parameter will -be appended before filenames passed to extension functions for -measuring image dimensions. - - - diff --git a/docbook-xsl-1.75.2/params/header.column.widths.xml b/docbook-xsl-1.75.2/params/header.column.widths.xml deleted file mode 100644 index 7d85b96..0000000 --- a/docbook-xsl-1.75.2/params/header.column.widths.xml +++ /dev/null @@ -1,80 +0,0 @@ - - -header.column.widths -string - - -header.column.widths -Specify relative widths of header areas - - - -1 1 1 - - -Description - -Page headers in print output use a three column table -to position text at the left, center, and right side of -the header on the page. -This parameter lets you specify the relative sizes of the -three columns. The default value is -"1 1 1". - -The parameter value must be three numbers, separated -by white space. The first number represents the relative -width of the inside header for -double-sided output. The second number is the relative -width of the center header. The third number is the -relative width of the outside header for -double-sided output. - -For single-sided output, the first number is the -relative width of left header for left-to-right -text direction, or the right header for right-to-left -text direction. -The third number is the -relative width of right header for left-to-right -text direction, or the left header for right-to-left -text direction. - -The numbers are used to specify the column widths -for the table that makes up the header area. -In the FO output, this looks like: - - - -<fo:table-column column-number="1" - column-width="proportional-column-width(1)"/> - - - -The proportional-column-width() -function computes a column width by dividing its -argument by the total of the arguments for all the columns, and -then multiplying the result by the width of the whole table -(assuming all the column specs use the function). -Its argument can be any positive integer or floating point number. -Zero is an acceptable value, although some FO processors -may warn about it, in which case using a very small number might -be more satisfactory. - - -For example, the value "1 2 1" means the center -header should have twice the width of the other areas. -A value of "0 0 1" means the entire header area -is reserved for the right (or outside) header text. -Note that to keep the center area centered on -the page, the left and right values must be -the same. A specification like "1 2 3" means the -center area is no longer centered on the page -since the right area is three times the width of the left area. - - - - diff --git a/docbook-xsl-1.75.2/params/header.content.properties.xml b/docbook-xsl-1.75.2/params/header.content.properties.xml deleted file mode 100644 index 2d0291c..0000000 --- a/docbook-xsl-1.75.2/params/header.content.properties.xml +++ /dev/null @@ -1,34 +0,0 @@ - - -header.content.properties -attribute set - - -header.content.properties -Properties of page header content - - - - - - - - - - - - - - - -Description - -Properties of page header content. - - - diff --git a/docbook-xsl-1.75.2/params/header.hr.xml b/docbook-xsl-1.75.2/params/header.hr.xml deleted file mode 100644 index 08d846a..0000000 --- a/docbook-xsl-1.75.2/params/header.hr.xml +++ /dev/null @@ -1,26 +0,0 @@ - - -header.hr -boolean - - -header.hr -Toggle <HR> after header - - - - - - - - -Description -If non-zero, an <HR> is generated at the bottom of each web page, -before the footer. - - diff --git a/docbook-xsl-1.75.2/params/header.rule.xml b/docbook-xsl-1.75.2/params/header.rule.xml deleted file mode 100644 index b4c031e..0000000 --- a/docbook-xsl-1.75.2/params/header.rule.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -header.rule -boolean - - -header.rule -Rule under headers? - - - - - - - - -Description - -If non-zero, a rule will be drawn below the page headers. - - - diff --git a/docbook-xsl-1.75.2/params/header.table.height.xml b/docbook-xsl-1.75.2/params/header.table.height.xml deleted file mode 100644 index 69b6f08..0000000 --- a/docbook-xsl-1.75.2/params/header.table.height.xml +++ /dev/null @@ -1,32 +0,0 @@ - - -header.table.height -length - - -header.table.height -Specify the minimum height of the table containing the running page headers - - - -14pt - - -Description - -Page headers in print output use a three column table -to position text at the left, center, and right side of -the header on the page. -This parameter lets you specify the minimum height -of the single row in the table. -Since this specifies only the minimum height, -the table should automatically grow to fit taller content. -The default value is "14pt". - - - diff --git a/docbook-xsl-1.75.2/params/header.table.properties.xml b/docbook-xsl-1.75.2/params/header.table.properties.xml deleted file mode 100644 index b5f6052..0000000 --- a/docbook-xsl-1.75.2/params/header.table.properties.xml +++ /dev/null @@ -1,30 +0,0 @@ - - -header.table.properties -attribute set - - -header.table.properties -Apply properties to the header layout table - - - - - - fixed - 100% - - - - -Description - -Properties applied to the table that lays out the page header. - - - diff --git a/docbook-xsl-1.75.2/params/headers.on.blank.pages.xml b/docbook-xsl-1.75.2/params/headers.on.blank.pages.xml deleted file mode 100644 index 1fad48e..0000000 --- a/docbook-xsl-1.75.2/params/headers.on.blank.pages.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -headers.on.blank.pages -boolean - - -headers.on.blank.pages -Put headers on blank pages? - - - - - - - - -Description - -If non-zero, headers will be placed on blank pages. - - - diff --git a/docbook-xsl-1.75.2/params/hidetoc.image.xml b/docbook-xsl-1.75.2/params/hidetoc.image.xml deleted file mode 100644 index 705b61f..0000000 --- a/docbook-xsl-1.75.2/params/hidetoc.image.xml +++ /dev/null @@ -1,29 +0,0 @@ - - -hidetoc.image -filename - - -hidetoc.image -Hide ToC image - - - - -hidetoc.gif - - - -Description - -Specifies the filename of the hide ToC image. This is used -when the ToC hide/show parameter is -enabled. - - - diff --git a/docbook-xsl-1.75.2/params/highlight.default.language.xml b/docbook-xsl-1.75.2/params/highlight.default.language.xml deleted file mode 100644 index 0f00103..0000000 --- a/docbook-xsl-1.75.2/params/highlight.default.language.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -highlight.default.language -string - - -highlight.default.language -Default language of programlisting - - - - - - - - -Description - -This language is used when there is no language attribute on programlisting. - - - diff --git a/docbook-xsl-1.75.2/params/highlight.source.xml b/docbook-xsl-1.75.2/params/highlight.source.xml deleted file mode 100644 index 41d7b2f..0000000 --- a/docbook-xsl-1.75.2/params/highlight.source.xml +++ /dev/null @@ -1,82 +0,0 @@ - - -highlight.source -boolean - - -highlight.source -Should the content of programlisting -be syntactically highlighted? - - - - - - - - -Description - -When this parameter is non-zero, the stylesheets will try to do syntax highlighting of the -content of programlisting elements. You specify the language for each programlisting -by using the language attribute. The highlight.default.language -parameter can be used to specify the language for programlistings without a language -attribute. Syntax highlighting also works for screen and synopsis elements. - -The actual highlighting work is done by the XSLTHL extension module. This is an external Java library that has to be -downloaded separately (see below). - - -In order to use this extension, you must - -add xslthl-2.x.x.jar to your Java classpath. The latest version is available -from the XSLT syntax highlighting project -at SourceForge. - - -use a customization layer in which you import one of the following stylesheet modules: - - - html/highlight.xsl - - - - xhtml/highlight.xsl - - - - xhtml-1_1/highlight.xsl - - - - fo/highlight.xsl - - - - - -let either the xslthl.config Java system property or the -highlight.xslthl.config parameter point to the configuration file for syntax -highlighting (using URL syntax). DocBook XSL comes with a ready-to-use configuration file, -highlighting/xslthl-config.xml. - - - -The extension works with Saxon 6.5.x and Xalan-J. (Saxon 8.5 or later is also supported, but since it is -an XSLT 2.0 processor it is not guaranteed to work with DocBook XSL in all circumstances.) - -The following is an example of a Saxon 6 command adapted for syntax highlighting, to be used on Windows: - - -java -cp c:/Java/saxon.jar;c:/Java/xslthl-2.0.1.jar --Dxslthl.config=file:///c:/docbook-xsl/highlighting/xslthl-config.xml com.icl.saxon.StyleSheet --o test.html test.xml myhtml.xsl - - - - diff --git a/docbook-xsl-1.75.2/params/highlight.xslthl.config.xml b/docbook-xsl-1.75.2/params/highlight.xslthl.config.xml deleted file mode 100644 index 3ef8e49..0000000 --- a/docbook-xsl-1.75.2/params/highlight.xslthl.config.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -highlight.xslthl.config -uri - - -highlight.xslthl.config -Location of XSLTHL configuration file - - - - - - - - -Description - -This location has precedence over the corresponding Java property. - - - diff --git a/docbook-xsl-1.75.2/params/home.image.xml b/docbook-xsl-1.75.2/params/home.image.xml deleted file mode 100644 index 22e5455..0000000 --- a/docbook-xsl-1.75.2/params/home.image.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -home.image -filename - - -home.image -Home image - - - - -active/nav-home.png - - - -Description - -Specifies the filename of the home navigation icon. - - - diff --git a/docbook-xsl-1.75.2/params/html.append.xml b/docbook-xsl-1.75.2/params/html.append.xml deleted file mode 100644 index 461e61b..0000000 --- a/docbook-xsl-1.75.2/params/html.append.xml +++ /dev/null @@ -1,30 +0,0 @@ - - -html.append -string - - -html.append -Specifies content to append to HTML output - - - - - - -Description - -Specifies content to append to the end of HTML files output by -the html/docbook.xsl stylesheet, after the -closing <html> tag. You probably don’t want to set any -value for this parameter; but if you do, the only value it should ever -be set to is a newline character: &#x0a; or -&#10; - - - diff --git a/docbook-xsl-1.75.2/params/html.base.xml b/docbook-xsl-1.75.2/params/html.base.xml deleted file mode 100644 index 74e7fd9..0000000 --- a/docbook-xsl-1.75.2/params/html.base.xml +++ /dev/null @@ -1,30 +0,0 @@ - - -html.base -uri - - -html.base -An HTML base URI - - - - - - - -Description - -If html.base is set, it is used for the base element -in the head of the html documents. The parameter specifies -the base URL for all relative URLs in the document. This is useful -for dynamically served html where the base URI needs to be -shifted. - - - diff --git a/docbook-xsl-1.75.2/params/html.cellpadding.xml b/docbook-xsl-1.75.2/params/html.cellpadding.xml deleted file mode 100644 index 7240f0f..0000000 --- a/docbook-xsl-1.75.2/params/html.cellpadding.xml +++ /dev/null @@ -1,29 +0,0 @@ - - -html.cellpadding -integer - - -html.cellpadding -Default value for cellpadding in HTML tables - - - - - - - - -Description - -If non-zero, this value will be used as the default cellpadding value -in HTML tables. nn for pixels or nn% for percentage length. E.g. 5 or -5% - - - diff --git a/docbook-xsl-1.75.2/params/html.cellspacing.xml b/docbook-xsl-1.75.2/params/html.cellspacing.xml deleted file mode 100644 index 5ddfdac..0000000 --- a/docbook-xsl-1.75.2/params/html.cellspacing.xml +++ /dev/null @@ -1,29 +0,0 @@ - - -html.cellspacing -integer - - -html.cellspacing -Default value for cellspacing in HTML tables - - - - - - - - -Description - -If non-zero, this value will be used as the default cellspacing -value in HTML tables. nn for pixels or nn% for percentage -length. E.g. 5 or 5% - - - diff --git a/docbook-xsl-1.75.2/params/html.cleanup.xml b/docbook-xsl-1.75.2/params/html.cleanup.xml deleted file mode 100644 index e4fc0c8..0000000 --- a/docbook-xsl-1.75.2/params/html.cleanup.xml +++ /dev/null @@ -1,34 +0,0 @@ - - -html.cleanup -boolean - - -html.cleanup -Attempt to clean up the resulting HTML? - - - - - - - - -Description - -If non-zero, and if the EXSLT -extensions are supported by your processor, the resulting HTML will be -cleaned up. This improves the chances that the -resulting HTML will be valid. It may also improve the formatting of -some elements. - -This parameter is different from make.valid.html -because it uses extension functions to manipulate result-tree-fragments. - - - diff --git a/docbook-xsl-1.75.2/params/html.ext.xml b/docbook-xsl-1.75.2/params/html.ext.xml deleted file mode 100644 index 8d6fd95..0000000 --- a/docbook-xsl-1.75.2/params/html.ext.xml +++ /dev/null @@ -1,29 +0,0 @@ - - -html.ext -string - - -html.ext -Identifies the extension of generated HTML files - - - - -.html - - - -Description - -The extension identified by html.ext will -be used as the filename extension for chunks created by this -stylesheet. - - - diff --git a/docbook-xsl-1.75.2/params/html.extra.head.links.xml b/docbook-xsl-1.75.2/params/html.extra.head.links.xml deleted file mode 100644 index ddc666f..0000000 --- a/docbook-xsl-1.75.2/params/html.extra.head.links.xml +++ /dev/null @@ -1,31 +0,0 @@ - - -html.extra.head.links -boolean - - -html.extra.head.links -Toggle extra HTML head link information - - - - - - - - -Description - -If non-zero, extra link elements will be -generated in the head of chunked HTML files. These -extra links point to chapters, appendixes, sections, etc. as supported -by the Site Navigation Bar in Mozilla 1.0 (as of CR1, at least). - - - - diff --git a/docbook-xsl-1.75.2/params/html.head.legalnotice.link.multiple.xml b/docbook-xsl-1.75.2/params/html.head.legalnotice.link.multiple.xml deleted file mode 100644 index 7c0cba1..0000000 --- a/docbook-xsl-1.75.2/params/html.head.legalnotice.link.multiple.xml +++ /dev/null @@ -1,44 +0,0 @@ - - -html.head.legalnotice.link.multiple -boolean - - -html.head.legalnotice.link.multiple -Generate multiple link instances in html head for legalnotice? - - - - - - - - -Description - -If html.head.legalnotice.link.multiple is -non-zero and the value of -html.head.legalnotice.link.types contains -multiple link types, then the stylesheet generates (in the -head section of the HTML source) one -link element for each link type specified. For -example, if the value of -html.head.legalnotice.link.types is -“copyright licenseâ€: - - <link rel="copyright" href="ln-id2524073.html" title="Legal Notice"> - <link rel="license" href="ln-id2524073.html" title="Legal Notice"> - - Otherwise, the stylesheet generates generates a single - link instance; for example: - - <link rel="copyright license" href="ln-id2524073.html" title="Legal Notice"> - - - - diff --git a/docbook-xsl-1.75.2/params/html.head.legalnotice.link.types.xml b/docbook-xsl-1.75.2/params/html.head.legalnotice.link.types.xml deleted file mode 100644 index 4ca02ff..0000000 --- a/docbook-xsl-1.75.2/params/html.head.legalnotice.link.types.xml +++ /dev/null @@ -1,75 +0,0 @@ - - -html.head.legalnotice.link.types -string - - -html.head.legalnotice.link.types -Specifies link types for legalnotice link in html head - - - - -copyright - - - -Description - -The value of -html.head.legalnotice.link.types is a -space-separated list of link types, as described in Section 6.12 -of the HTML 4.01 specification. If the value of the -generate.legalnotice.link parameter is -non-zero, then the stylesheet generates (in the -head section of the HTML source) either a single -HTML link element or, if the value of the -html.head.legalnotice.link.multiple is -non-zero, one link element for each link type -specified. Each link has the following attributes: - - - - a rel attribute whose - value is derived from the value of - html.head.legalnotice.link.types - - - an href attribute whose - value is set to the URL of the file containing the - legalnotice - - - a title attribute whose - value is set to the title of the corresponding - legalnotice (or a title programatically - determined by the stylesheet) - - - -For example: - - <link rel="license" href="ln-id2524073.html" title="Legal Notice"> - - -About the default value - - In an ideal world, the default value of - html.head.legalnotice.link.types would - probably be “licenseâ€, since the content of the - DocBook legalnotice is typically license - information, not copyright information. However, the default value - is “copyright†for pragmatic reasons: because - that’s among the set of “recognized link types†listed in Section - 6.12 of the HTML 4.01 specification, and because certain - browsers and browser extensions are preconfigured to recognize that - value. - - - - diff --git a/docbook-xsl-1.75.2/params/html.longdesc.link.xml b/docbook-xsl-1.75.2/params/html.longdesc.link.xml deleted file mode 100644 index 2497563..0000000 --- a/docbook-xsl-1.75.2/params/html.longdesc.link.xml +++ /dev/null @@ -1,39 +0,0 @@ - - -html.longdesc.link -boolean - - -html.longdesc.link -Should a link to the longdesc be included in the HTML? - - - - - - - - -Description - -If non-zero, links will be created to the -HTML files created for the -longdesc attribute. It makes no -sense to enable this option without also enabling the -html.longdesc parameter. - - - - - diff --git a/docbook-xsl-1.75.2/params/html.longdesc.xml b/docbook-xsl-1.75.2/params/html.longdesc.xml deleted file mode 100644 index 10f341a..0000000 --- a/docbook-xsl-1.75.2/params/html.longdesc.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -html.longdesc -boolean - - -html.longdesc -Should longdesc URIs be created? - - - - - - -Description -If non-zero, HTML files will be created for the -longdesc attribute. These files -are created from the textobjects in -mediaobjects and -inlinemediaobject. - - - diff --git a/docbook-xsl-1.75.2/params/html.stylesheet.type.xml b/docbook-xsl-1.75.2/params/html.stylesheet.type.xml deleted file mode 100644 index f20b706..0000000 --- a/docbook-xsl-1.75.2/params/html.stylesheet.type.xml +++ /dev/null @@ -1,26 +0,0 @@ - - -html.stylesheet.type -string - - -html.stylesheet.type -The type of the stylesheet used in the generated HTML - - - -text/css - - -Description - -The type of the stylesheet to place in the HTML link tag. - - - - diff --git a/docbook-xsl-1.75.2/params/html.stylesheet.xml b/docbook-xsl-1.75.2/params/html.stylesheet.xml deleted file mode 100644 index 3407094..0000000 --- a/docbook-xsl-1.75.2/params/html.stylesheet.xml +++ /dev/null @@ -1,36 +0,0 @@ - - -html.stylesheet -string - - -html.stylesheet -Name of the stylesheet(s) to use in the generated HTML - - - - - - - - -Description - -The html.stylesheet parameter is either -empty, indicating that no stylesheet link tag should be -generated in the html output, or it is a list of one or more -stylesheet files. - -Multiple stylesheets are space-delimited. If you need to -reference a stylesheet URI that includes a space, encode it with -%20. A separate html link element will -be generated for each stylesheet in the order they are listed in the -parameter. - - - diff --git a/docbook-xsl-1.75.2/params/htmlhelp.alias.file.xml b/docbook-xsl-1.75.2/params/htmlhelp.alias.file.xml deleted file mode 100644 index be11b28..0000000 --- a/docbook-xsl-1.75.2/params/htmlhelp.alias.file.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -htmlhelp.alias.file -string - - -htmlhelp.alias.file -Filename of alias file. - - - - -alias.h - - - -Description - -Specifies the filename of the alias file (used for context-sensitive help). - - - diff --git a/docbook-xsl-1.75.2/params/htmlhelp.autolabel.xml b/docbook-xsl-1.75.2/params/htmlhelp.autolabel.xml deleted file mode 100644 index 1426d00..0000000 --- a/docbook-xsl-1.75.2/params/htmlhelp.autolabel.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -htmlhelp.autolabel -boolean - - -htmlhelp.autolabel -Should tree-like ToC use autonumbering feature? - - - - - - - - -Description - -Set this to non-zero to include chapter and section numbers into ToC -in the left panel. - - - diff --git a/docbook-xsl-1.75.2/params/htmlhelp.button.back.xml b/docbook-xsl-1.75.2/params/htmlhelp.button.back.xml deleted file mode 100644 index 1fc12bb..0000000 --- a/docbook-xsl-1.75.2/params/htmlhelp.button.back.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -htmlhelp.button.back -boolean - - -htmlhelp.button.back -Should the Back button be shown? - - - - - - - - -Description - -Set to non-zero to include the Hide/Show button shown on toolbar - - - diff --git a/docbook-xsl-1.75.2/params/htmlhelp.button.forward.xml b/docbook-xsl-1.75.2/params/htmlhelp.button.forward.xml deleted file mode 100644 index f6411bb..0000000 --- a/docbook-xsl-1.75.2/params/htmlhelp.button.forward.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -htmlhelp.button.forward -boolean - - -htmlhelp.button.forward -Should the Forward button be shown? - - - - - - - - -Description - -Set to non-zero to include the Forward button on the toolbar. - - - diff --git a/docbook-xsl-1.75.2/params/htmlhelp.button.hideshow.xml b/docbook-xsl-1.75.2/params/htmlhelp.button.hideshow.xml deleted file mode 100644 index 04f1ff0..0000000 --- a/docbook-xsl-1.75.2/params/htmlhelp.button.hideshow.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -htmlhelp.button.hideshow -boolean - - -htmlhelp.button.hideshow -Should the Hide/Show button be shown? - - - - - - - - -Description - -Set to non-zero to include the Hide/Show button shown on toolbar - - - diff --git a/docbook-xsl-1.75.2/params/htmlhelp.button.home.url.xml b/docbook-xsl-1.75.2/params/htmlhelp.button.home.url.xml deleted file mode 100644 index 3027507..0000000 --- a/docbook-xsl-1.75.2/params/htmlhelp.button.home.url.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -htmlhelp.button.home.url -string - - -htmlhelp.button.home.url -URL address of page accessible by Home button - - - - - - - - -Description - -URL address of page accessible by Home button. - - - diff --git a/docbook-xsl-1.75.2/params/htmlhelp.button.home.xml b/docbook-xsl-1.75.2/params/htmlhelp.button.home.xml deleted file mode 100644 index e4e97fe..0000000 --- a/docbook-xsl-1.75.2/params/htmlhelp.button.home.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -htmlhelp.button.home -boolean - - -htmlhelp.button.home -Should the Home button be shown? - - - - - - - - -Description - -Set to non-zero to include the Home button on the toolbar. - - - diff --git a/docbook-xsl-1.75.2/params/htmlhelp.button.jump1.title.xml b/docbook-xsl-1.75.2/params/htmlhelp.button.jump1.title.xml deleted file mode 100644 index aa9da59..0000000 --- a/docbook-xsl-1.75.2/params/htmlhelp.button.jump1.title.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -htmlhelp.button.jump1.title -string - - -htmlhelp.button.jump1.title -Title of Jump1 button - - - - -User1 - - - -Description - -Title of Jump1 button. - - - diff --git a/docbook-xsl-1.75.2/params/htmlhelp.button.jump1.url.xml b/docbook-xsl-1.75.2/params/htmlhelp.button.jump1.url.xml deleted file mode 100644 index 22248c4..0000000 --- a/docbook-xsl-1.75.2/params/htmlhelp.button.jump1.url.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -htmlhelp.button.jump1.url -string - - -htmlhelp.button.jump1.url -URL address of page accessible by Jump1 button - - - - - - - - -Description - -URL address of page accessible by Jump1 button. - - - diff --git a/docbook-xsl-1.75.2/params/htmlhelp.button.jump1.xml b/docbook-xsl-1.75.2/params/htmlhelp.button.jump1.xml deleted file mode 100644 index f6f8d9c..0000000 --- a/docbook-xsl-1.75.2/params/htmlhelp.button.jump1.xml +++ /dev/null @@ -1,23 +0,0 @@ - - -htmlhelp.button.jump1 -boolean - - -htmlhelp.button.jump1 -Should the Jump1 button be shown? - - - - - - -Description - Set to non-zero to include the Jump1 button on the toolbar. - - diff --git a/docbook-xsl-1.75.2/params/htmlhelp.button.jump2.title.xml b/docbook-xsl-1.75.2/params/htmlhelp.button.jump2.title.xml deleted file mode 100644 index 3b5f124..0000000 --- a/docbook-xsl-1.75.2/params/htmlhelp.button.jump2.title.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -htmlhelp.button.jump2.title -string - - -htmlhelp.button.jump2.title -Title of Jump2 button - - - - -User2 - - - -Description - -Title of Jump2 button. - - - diff --git a/docbook-xsl-1.75.2/params/htmlhelp.button.jump2.url.xml b/docbook-xsl-1.75.2/params/htmlhelp.button.jump2.url.xml deleted file mode 100644 index dcd2434..0000000 --- a/docbook-xsl-1.75.2/params/htmlhelp.button.jump2.url.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -htmlhelp.button.jump2.url -string - - -htmlhelp.button.jump2.url -URL address of page accessible by Jump2 button - - - - - - - - -Description - -URL address of page accessible by Jump2 button. - - - diff --git a/docbook-xsl-1.75.2/params/htmlhelp.button.jump2.xml b/docbook-xsl-1.75.2/params/htmlhelp.button.jump2.xml deleted file mode 100644 index 916b1ee..0000000 --- a/docbook-xsl-1.75.2/params/htmlhelp.button.jump2.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -htmlhelp.button.jump2 -boolean - - -htmlhelp.button.jump2 -Should the Jump2 button be shown? - - - - - - - - -Description - -Set to non-zero to include the Jump2 button on the toolbar. - - - diff --git a/docbook-xsl-1.75.2/params/htmlhelp.button.locate.xml b/docbook-xsl-1.75.2/params/htmlhelp.button.locate.xml deleted file mode 100644 index 5b55552..0000000 --- a/docbook-xsl-1.75.2/params/htmlhelp.button.locate.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -htmlhelp.button.locate -boolean - - -htmlhelp.button.locate -Should the Locate button be shown? - - - - - - - - -Description - -If you want Locate button shown on toolbar, turn this -parameter to 1. - - - diff --git a/docbook-xsl-1.75.2/params/htmlhelp.button.next.xml b/docbook-xsl-1.75.2/params/htmlhelp.button.next.xml deleted file mode 100644 index b5352b2..0000000 --- a/docbook-xsl-1.75.2/params/htmlhelp.button.next.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -htmlhelp.button.next -boolean - - -htmlhelp.button.next -Should the Next button be shown? - - - - - - - - -Description - -Set to non-zero to include the Next button on the toolbar. - - - diff --git a/docbook-xsl-1.75.2/params/htmlhelp.button.options.xml b/docbook-xsl-1.75.2/params/htmlhelp.button.options.xml deleted file mode 100644 index 21bed81..0000000 --- a/docbook-xsl-1.75.2/params/htmlhelp.button.options.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -htmlhelp.button.options -boolean - - -htmlhelp.button.options -Should the Options button be shown? - - - - - - - - -Description - -If you want Options button shown on toolbar, turn this -parameter to 1. - - - diff --git a/docbook-xsl-1.75.2/params/htmlhelp.button.prev.xml b/docbook-xsl-1.75.2/params/htmlhelp.button.prev.xml deleted file mode 100644 index a6d989b..0000000 --- a/docbook-xsl-1.75.2/params/htmlhelp.button.prev.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -htmlhelp.button.prev -boolean - - -htmlhelp.button.prev -Should the Prev button be shown? - - - - - - - - -Description - -Set to non-zero to include the Prev button on the toolbar. - - - - diff --git a/docbook-xsl-1.75.2/params/htmlhelp.button.print.xml b/docbook-xsl-1.75.2/params/htmlhelp.button.print.xml deleted file mode 100644 index 1c0e816..0000000 --- a/docbook-xsl-1.75.2/params/htmlhelp.button.print.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -htmlhelp.button.print -boolean - - -htmlhelp.button.print -Should the Print button be shown? - - - - - - - - -Description - -Set to non-zero to include the Print button on the toolbar. - - - - diff --git a/docbook-xsl-1.75.2/params/htmlhelp.button.refresh.xml b/docbook-xsl-1.75.2/params/htmlhelp.button.refresh.xml deleted file mode 100644 index 294fcbe..0000000 --- a/docbook-xsl-1.75.2/params/htmlhelp.button.refresh.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -htmlhelp.button.refresh -boolean - - -htmlhelp.button.refresh -Should the Refresh button be shown? - - - - - - - - -Description - -Set to non-zero to include the Stop button on the toolbar. - - - diff --git a/docbook-xsl-1.75.2/params/htmlhelp.button.stop.xml b/docbook-xsl-1.75.2/params/htmlhelp.button.stop.xml deleted file mode 100644 index fdbe549..0000000 --- a/docbook-xsl-1.75.2/params/htmlhelp.button.stop.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -htmlhelp.button.stop -boolean - - -htmlhelp.button.stop -Should the Stop button be shown? - - - - - - - - -Description - -If you want Stop button shown on toolbar, turn this -parameter to 1. - - - diff --git a/docbook-xsl-1.75.2/params/htmlhelp.button.zoom.xml b/docbook-xsl-1.75.2/params/htmlhelp.button.zoom.xml deleted file mode 100644 index a25dc40..0000000 --- a/docbook-xsl-1.75.2/params/htmlhelp.button.zoom.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -htmlhelp.button.zoom -boolean - - -htmlhelp.button.zoom -Should the Zoom button be shown? - - - - - - - - -Description - -Set to non-zero to include the Zoom button on the toolbar. - - - - diff --git a/docbook-xsl-1.75.2/params/htmlhelp.chm.xml b/docbook-xsl-1.75.2/params/htmlhelp.chm.xml deleted file mode 100644 index 51cba30..0000000 --- a/docbook-xsl-1.75.2/params/htmlhelp.chm.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -htmlhelp.chm -string - - -htmlhelp.chm -Filename of output HTML Help file. - - - - -htmlhelp.chm - - - -Description - -Set the name of resulting CHM file - - - diff --git a/docbook-xsl-1.75.2/params/htmlhelp.default.topic.xml b/docbook-xsl-1.75.2/params/htmlhelp.default.topic.xml deleted file mode 100644 index 577f440..0000000 --- a/docbook-xsl-1.75.2/params/htmlhelp.default.topic.xml +++ /dev/null @@ -1,37 +0,0 @@ - - -htmlhelp.default.topic -string - - -htmlhelp.default.topic -Name of file with default topic - - - - - - - - -Description - -Normally first chunk of document is displayed when you open HTML -Help file. If you want to display another topic, simply set its -filename by this parameter. - -This is useful especially if you don't generate ToC in front of -your document and you also hide root element in ToC. E.g.: - -<xsl:param name="generate.book.toc" select="0"/> -<xsl:param name="htmlhelp.hhc.show.root" select="0"/> -<xsl:param name="htmlhelp.default.topic">pr01.html</xsl:param> - - - - diff --git a/docbook-xsl-1.75.2/params/htmlhelp.display.progress.xml b/docbook-xsl-1.75.2/params/htmlhelp.display.progress.xml deleted file mode 100644 index eab1c96..0000000 --- a/docbook-xsl-1.75.2/params/htmlhelp.display.progress.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -htmlhelp.display.progress -boolean - - -htmlhelp.display.progress -Display compile progress? - - - - - - - - -Description - -Set to non-zero to to display compile progress - - - - diff --git a/docbook-xsl-1.75.2/params/htmlhelp.encoding.xml b/docbook-xsl-1.75.2/params/htmlhelp.encoding.xml deleted file mode 100644 index 579cf7f..0000000 --- a/docbook-xsl-1.75.2/params/htmlhelp.encoding.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -htmlhelp.encoding -string - - -htmlhelp.encoding -Character encoding to use in files for HTML Help compiler. - - - - -iso-8859-1 - - - -Description - -HTML Help Compiler is not UTF-8 aware, so you should always use an -appropriate single-byte encoding here. Use one from iana, the registered charset values. - - - diff --git a/docbook-xsl-1.75.2/params/htmlhelp.enhanced.decompilation.xml b/docbook-xsl-1.75.2/params/htmlhelp.enhanced.decompilation.xml deleted file mode 100644 index 558e89b..0000000 --- a/docbook-xsl-1.75.2/params/htmlhelp.enhanced.decompilation.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -htmlhelp.enhanced.decompilation -boolean - - -htmlhelp.enhanced.decompilation -Allow enhanced decompilation of CHM? - - - - - - - - -Description - -When non-zero this parameter enables enhanced decompilation of CHM. - - - diff --git a/docbook-xsl-1.75.2/params/htmlhelp.enumerate.images.xml b/docbook-xsl-1.75.2/params/htmlhelp.enumerate.images.xml deleted file mode 100644 index a2aaac8..0000000 --- a/docbook-xsl-1.75.2/params/htmlhelp.enumerate.images.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -htmlhelp.enumerate.images -boolean - - -htmlhelp.enumerate.images -Should the paths to all used images be added to the project file? - - - - - - - - -Description - -Set to non-zero if you insert images into your documents as -external binary entities or if you are using absolute image paths. - - - diff --git a/docbook-xsl-1.75.2/params/htmlhelp.force.map.and.alias.xml b/docbook-xsl-1.75.2/params/htmlhelp.force.map.and.alias.xml deleted file mode 100644 index 7dca30b..0000000 --- a/docbook-xsl-1.75.2/params/htmlhelp.force.map.and.alias.xml +++ /dev/null @@ -1,26 +0,0 @@ - - -htmlhelp.force.map.and.alias -boolean - - -htmlhelp.force.map.and.alias -Should [MAP] and [ALIAS] sections be added to the project file unconditionally? - - - - - - -Description - Set to non-zero if you have your own - alias.h and context.h - files and you want to include references to them in the project - file. - - diff --git a/docbook-xsl-1.75.2/params/htmlhelp.hhc.binary.xml b/docbook-xsl-1.75.2/params/htmlhelp.hhc.binary.xml deleted file mode 100644 index ea978f7..0000000 --- a/docbook-xsl-1.75.2/params/htmlhelp.hhc.binary.xml +++ /dev/null @@ -1,29 +0,0 @@ - - -htmlhelp.hhc.binary -boolean - - -htmlhelp.hhc.binary -Generate binary ToC? - - - - - - - - -Description - -Set to non-zero to generate a binary TOC. You must create a binary TOC -if you want to add Prev/Next buttons to toolbar (which is default -behaviour). Files with binary TOC can't be merged. - - - diff --git a/docbook-xsl-1.75.2/params/htmlhelp.hhc.folders.instead.books.xml b/docbook-xsl-1.75.2/params/htmlhelp.hhc.folders.instead.books.xml deleted file mode 100644 index 3ea189d..0000000 --- a/docbook-xsl-1.75.2/params/htmlhelp.hhc.folders.instead.books.xml +++ /dev/null @@ -1,33 +0,0 @@ - - -htmlhelp.hhc.folders.instead.books -boolean - - -htmlhelp.hhc.folders.instead.books -Use folder icons in ToC (instead of book icons)? - - - - - - - - -Description - -Set non-zero for folder-like icons or zero for book-like icons in the TOC -ToC. If you want to use folder-like icons you must swith off binary -ToC using (xref) htmlhelp.hhc.binary. - - - - - - - diff --git a/docbook-xsl-1.75.2/params/htmlhelp.hhc.section.depth.xml b/docbook-xsl-1.75.2/params/htmlhelp.hhc.section.depth.xml deleted file mode 100644 index 35c492a..0000000 --- a/docbook-xsl-1.75.2/params/htmlhelp.hhc.section.depth.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -htmlhelp.hhc.section.depth -integer - - -htmlhelp.hhc.section.depth -Depth of TOC for sections in a left pane. - - - - -5 - - - -Description - -Set the section depth in the left pane of HTML Help viewer. - - - diff --git a/docbook-xsl-1.75.2/params/htmlhelp.hhc.show.root.xml b/docbook-xsl-1.75.2/params/htmlhelp.hhc.show.root.xml deleted file mode 100644 index 0de26b9..0000000 --- a/docbook-xsl-1.75.2/params/htmlhelp.hhc.show.root.xml +++ /dev/null @@ -1,29 +0,0 @@ - - -htmlhelp.hhc.show.root -boolean - - -htmlhelp.hhc.show.root -Should there be an entry for the root element in the ToC? - - - - - - - - -Description - -If set to zero, there will be no entry for the root element in the -ToC. This is useful when you want to provide the user with an expanded -ToC as a default. - - - diff --git a/docbook-xsl-1.75.2/params/htmlhelp.hhc.width.xml b/docbook-xsl-1.75.2/params/htmlhelp.hhc.width.xml deleted file mode 100644 index 4011399..0000000 --- a/docbook-xsl-1.75.2/params/htmlhelp.hhc.width.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -htmlhelp.hhc.width -integer - - -htmlhelp.hhc.width -Width of navigation pane - - - - - - - - -Description - -This parameter specifies the width of the navigation pane (containing TOC and -other navigation tabs) in pixels. - - - diff --git a/docbook-xsl-1.75.2/params/htmlhelp.hhc.xml b/docbook-xsl-1.75.2/params/htmlhelp.hhc.xml deleted file mode 100644 index 475ef20..0000000 --- a/docbook-xsl-1.75.2/params/htmlhelp.hhc.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -htmlhelp.hhc -string - - -htmlhelp.hhc -Filename of TOC file. - - - - -toc.hhc - - - -Description - -Set the name of the TOC file. The default is toc.hhc. - - - diff --git a/docbook-xsl-1.75.2/params/htmlhelp.hhk.xml b/docbook-xsl-1.75.2/params/htmlhelp.hhk.xml deleted file mode 100644 index aee473e..0000000 --- a/docbook-xsl-1.75.2/params/htmlhelp.hhk.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -htmlhelp.hhk -string - - -htmlhelp.hhk -Filename of index file. - - - - -index.hhk - - - -Description - -set the name of the index file. The default is index.hhk. - - - diff --git a/docbook-xsl-1.75.2/params/htmlhelp.hhp.tail.xml b/docbook-xsl-1.75.2/params/htmlhelp.hhp.tail.xml deleted file mode 100644 index c239b9a..0000000 --- a/docbook-xsl-1.75.2/params/htmlhelp.hhp.tail.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -htmlhelp.hhp.tail -string - - -htmlhelp.hhp.tail -Additional content for project file. - - - - - - - - -Description - -If you want to include some additional parameters into project file, -store appropriate part of project file into this parameter. - - - diff --git a/docbook-xsl-1.75.2/params/htmlhelp.hhp.window.xml b/docbook-xsl-1.75.2/params/htmlhelp.hhp.window.xml deleted file mode 100644 index 6c29eed..0000000 --- a/docbook-xsl-1.75.2/params/htmlhelp.hhp.window.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -htmlhelp.hhp.window -string - - -htmlhelp.hhp.window -Name of default window. - - - - -Main - - - -Description - -Name of default window. If empty no [WINDOWS] section will be -added to project file. - - - diff --git a/docbook-xsl-1.75.2/params/htmlhelp.hhp.windows.xml b/docbook-xsl-1.75.2/params/htmlhelp.hhp.windows.xml deleted file mode 100644 index afd435f..0000000 --- a/docbook-xsl-1.75.2/params/htmlhelp.hhp.windows.xml +++ /dev/null @@ -1,29 +0,0 @@ - - -htmlhelp.hhp.windows -string - - -htmlhelp.hhp.windows -Definition of additional windows - - - - - - - - -Description - -Content of this parameter is placed at the end of [WINDOWS] -section of project file. You can use it for defining your own -addtional windows. - - - diff --git a/docbook-xsl-1.75.2/params/htmlhelp.hhp.xml b/docbook-xsl-1.75.2/params/htmlhelp.hhp.xml deleted file mode 100644 index 74954d7..0000000 --- a/docbook-xsl-1.75.2/params/htmlhelp.hhp.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -htmlhelp.hhp -string - - -htmlhelp.hhp -Filename of project file. - - - - -htmlhelp.hhp - - - -Description - -Change this parameter if you want different name of project -file than htmlhelp.hhp. - - - diff --git a/docbook-xsl-1.75.2/params/htmlhelp.map.file.xml b/docbook-xsl-1.75.2/params/htmlhelp.map.file.xml deleted file mode 100644 index b47c565..0000000 --- a/docbook-xsl-1.75.2/params/htmlhelp.map.file.xml +++ /dev/null @@ -1,25 +0,0 @@ - - -htmlhelp.map.file -string - - -htmlhelp.map.file -Filename of map file. - - - -context.h - - -Description -Set the name of map file. The default is - context.h. (used for context-sensitive - help). - - diff --git a/docbook-xsl-1.75.2/params/htmlhelp.only.xml b/docbook-xsl-1.75.2/params/htmlhelp.only.xml deleted file mode 100644 index f10dbf5..0000000 --- a/docbook-xsl-1.75.2/params/htmlhelp.only.xml +++ /dev/null @@ -1,32 +0,0 @@ - - -htmlhelp.only -boolean - - -htmlhelp.only -Should only project files be generated? - - - - - - - - -Description - - -Set to non-zero if you want to play with various HTML Help parameters -and you don't need to regenerate all HTML files. This setting will not -process whole document, only project files (hhp, hhc, hhk,...) will be -generated. - - - - diff --git a/docbook-xsl-1.75.2/params/htmlhelp.remember.window.position.xml b/docbook-xsl-1.75.2/params/htmlhelp.remember.window.position.xml deleted file mode 100644 index 3aaea1f..0000000 --- a/docbook-xsl-1.75.2/params/htmlhelp.remember.window.position.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -htmlhelp.remember.window.position -boolean - - -htmlhelp.remember.window.position -Remember help window position? - - - - - - - - -Description - -Set to non-zero to remember help window position between starts. - - - diff --git a/docbook-xsl-1.75.2/params/htmlhelp.show.advanced.search.xml b/docbook-xsl-1.75.2/params/htmlhelp.show.advanced.search.xml deleted file mode 100644 index 3aa09a6..0000000 --- a/docbook-xsl-1.75.2/params/htmlhelp.show.advanced.search.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -htmlhelp.show.advanced.search -boolean - - -htmlhelp.show.advanced.search -Should advanced search features be available? - - - - - - - - -Description - -If you want advanced search features in your help, turn this -parameter to 1. - - - diff --git a/docbook-xsl-1.75.2/params/htmlhelp.show.favorities.xml b/docbook-xsl-1.75.2/params/htmlhelp.show.favorities.xml deleted file mode 100644 index 925bbb1..0000000 --- a/docbook-xsl-1.75.2/params/htmlhelp.show.favorities.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -htmlhelp.show.favorities -boolean - - -htmlhelp.show.favorities -Should the Favorites tab be shown? - - - - - - - - -Description - -Set to non-zero to include a Favorites tab in the navigation pane -of the help window. - - - diff --git a/docbook-xsl-1.75.2/params/htmlhelp.show.menu.xml b/docbook-xsl-1.75.2/params/htmlhelp.show.menu.xml deleted file mode 100644 index b3d6285..0000000 --- a/docbook-xsl-1.75.2/params/htmlhelp.show.menu.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -htmlhelp.show.menu -boolean - - -htmlhelp.show.menu -Should the menu bar be shown? - - - - - - - - -Description - -Set to non-zero to have an application menu bar in your HTML Help window. - - - - diff --git a/docbook-xsl-1.75.2/params/htmlhelp.show.toolbar.text.xml b/docbook-xsl-1.75.2/params/htmlhelp.show.toolbar.text.xml deleted file mode 100644 index fc87d9c..0000000 --- a/docbook-xsl-1.75.2/params/htmlhelp.show.toolbar.text.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -htmlhelp.show.toolbar.text -boolean - - -htmlhelp.show.toolbar.text -Show text under toolbar buttons? - - - - - - - - -Description - -Set to non-zero to display texts under toolbar buttons, zero to switch -off displays. - - - diff --git a/docbook-xsl-1.75.2/params/htmlhelp.title.xml b/docbook-xsl-1.75.2/params/htmlhelp.title.xml deleted file mode 100644 index f4397ca..0000000 --- a/docbook-xsl-1.75.2/params/htmlhelp.title.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -htmlhelp.title -string - - -htmlhelp.title -Title of HTML Help - - - - - - - - -Description - -Content of this parameter will be used as a title for generated -HTML Help. If empty, title will be automatically taken from document. - - - diff --git a/docbook-xsl-1.75.2/params/htmlhelp.use.hhk.xml b/docbook-xsl-1.75.2/params/htmlhelp.use.hhk.xml deleted file mode 100644 index 720c1e2..0000000 --- a/docbook-xsl-1.75.2/params/htmlhelp.use.hhk.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -htmlhelp.use.hhk -boolean - - -htmlhelp.use.hhk -Should the index be built using the HHK file? - - - - - - - - -Description - -If non-zero, the index is created using the HHK file (instead of using object -elements in the HTML files). For more information, see Generating an index. - - diff --git a/docbook-xsl-1.75.2/params/htmlhelp.window.geometry.xml b/docbook-xsl-1.75.2/params/htmlhelp.window.geometry.xml deleted file mode 100644 index 0ec75f7..0000000 --- a/docbook-xsl-1.75.2/params/htmlhelp.window.geometry.xml +++ /dev/null @@ -1,30 +0,0 @@ - - -htmlhelp.window.geometry -string - - -htmlhelp.window.geometry -Set initial geometry of help window - - - - - - - - -Description - -This parameter specifies initial position of help -window. E.g. - -<xsl:param name="htmlhelp.window.geometry">[160,64,992,704]</xsl:param> - - - diff --git a/docbook-xsl-1.75.2/params/hyphenate.verbatim.characters.xml b/docbook-xsl-1.75.2/params/hyphenate.verbatim.characters.xml deleted file mode 100644 index e6cae20..0000000 --- a/docbook-xsl-1.75.2/params/hyphenate.verbatim.characters.xml +++ /dev/null @@ -1,30 +0,0 @@ - - -hyphenate.verbatim.characters -string - - -hyphenate.verbatim.characters -List of characters after which a line break can occur in listings - - - - - - - - -Description - -If you enable hyphenate.verbatim line -breaks are allowed only on space characters. If this is not enough for -your document, you can specify list of additional characters after -which line break is allowed in this parameter. - - - diff --git a/docbook-xsl-1.75.2/params/hyphenate.verbatim.xml b/docbook-xsl-1.75.2/params/hyphenate.verbatim.xml deleted file mode 100644 index c66e700..0000000 --- a/docbook-xsl-1.75.2/params/hyphenate.verbatim.xml +++ /dev/null @@ -1,45 +0,0 @@ - - -hyphenate.verbatim -boolean - - -hyphenate.verbatim -Should verbatim environments be hyphenated on space characters? - - - - - - -Description - -If the lines of program listing are too long to fit into one -line it is quite common to split them at space and indicite by hook -arrow that code continues on the next line. You can turn on this -behaviour for programlisting, -screen and synopsis elements by -using this parameter. - -Note that you must also enable line wrapping for verbatim environments and -select appropriate hyphenation character (e.g. hook arrow). This can -be done using monospace.verbatim.properties -attribute set: - -<xsl:attribute-set name="monospace.verbatim.properties" - use-attribute-sets="verbatim.properties monospace.properties"> - <xsl:attribute name="wrap-option">wrap</xsl:attribute> - <xsl:attribute name="hyphenation-character">&#x25BA;</xsl:attribute> -</xsl:attribute-set> - -For a list of arrows available in Unicode see http://www.unicode.org/charts/PDF/U2190.pdf and http://www.unicode.org/charts/PDF/U2900.pdf and make sure that -selected character is available in the font you are using for verbatim -environments. - - - diff --git a/docbook-xsl-1.75.2/params/hyphenate.xml b/docbook-xsl-1.75.2/params/hyphenate.xml deleted file mode 100644 index 46a2d61..0000000 --- a/docbook-xsl-1.75.2/params/hyphenate.xml +++ /dev/null @@ -1,29 +0,0 @@ - - -hyphenate -list -closed -true -false - - -hyphenate -Specify hyphenation behavior - - - -true - - -Description - -If true, words may be hyphenated. Otherwise, they may not. - - - - diff --git a/docbook-xsl-1.75.2/params/id.warnings.xml b/docbook-xsl-1.75.2/params/id.warnings.xml deleted file mode 100644 index 7b2716f..0000000 --- a/docbook-xsl-1.75.2/params/id.warnings.xml +++ /dev/null @@ -1,25 +0,0 @@ - - -id.warnings -boolean - - -id.warnings -Should warnings be generated for titled elements without IDs? - - - - - - -Description -If non-zero, the stylesheet will issue a warning for any element -(other than the root element) which has a title but does not have an -ID. - - diff --git a/docbook-xsl-1.75.2/params/ignore.image.scaling.xml b/docbook-xsl-1.75.2/params/ignore.image.scaling.xml deleted file mode 100644 index c35d178..0000000 --- a/docbook-xsl-1.75.2/params/ignore.image.scaling.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -ignore.image.scaling -boolean - - -ignore.image.scaling -Tell the stylesheets to ignore the author's image scaling attributes - - - - - - - - -Description - -If non-zero, the scaling attributes on graphics and media objects are -ignored. - - - diff --git a/docbook-xsl-1.75.2/params/img.src.path.xml b/docbook-xsl-1.75.2/params/img.src.path.xml deleted file mode 100644 index d295019..0000000 --- a/docbook-xsl-1.75.2/params/img.src.path.xml +++ /dev/null @@ -1,40 +0,0 @@ - - -img.src.path -string - - -img.src.path -Path to HTML/FO image files - - - - - - -Description - -Add a path prefix to the value of the fileref -attribute of graphic, inlinegraphic, and imagedata elements. The resulting -compound path is used in the output as the value of the src -attribute of img (HTML) or external-graphic (FO). - - - -The path given by img.src.path could be relative to the directory where the HTML/FO -files are created, or it could be an absolute URI. -The default value is empty. -Be sure to include a trailing slash if needed. - - -This prefix is not applied to any filerefs that start -with "/" or contain "//:". - - - - diff --git a/docbook-xsl-1.75.2/params/index.div.title.properties.xml b/docbook-xsl-1.75.2/params/index.div.title.properties.xml deleted file mode 100644 index edbec2f..0000000 --- a/docbook-xsl-1.75.2/params/index.div.title.properties.xml +++ /dev/null @@ -1,39 +0,0 @@ - - -index.div.title.properties -attribute set - - -index.div.title.properties -Properties associated with the letter headings in an -index - - - - - - 0pt - 14.4pt - - bold - always - - - - 0pt - - - - -Description - -This attribute set is used on the letter headings that separate -the divisions in an index. - - - diff --git a/docbook-xsl-1.75.2/params/index.entry.properties.xml b/docbook-xsl-1.75.2/params/index.entry.properties.xml deleted file mode 100644 index 3232358..0000000 --- a/docbook-xsl-1.75.2/params/index.entry.properties.xml +++ /dev/null @@ -1,33 +0,0 @@ - - -index.entry.properties -attribute set - - -index.entry.properties -Properties applied to the formatted entries -in an index - - - - - - 0pt - - - - -Description - -This attribute set is applied to the block containing -the entries in a letter division in an index. It can be used to set the -font-size, font-family, and other inheritable properties that will be -applied to all index entries. - - - diff --git a/docbook-xsl-1.75.2/params/index.links.to.section.xml b/docbook-xsl-1.75.2/params/index.links.to.section.xml deleted file mode 100644 index 47c0da5..0000000 --- a/docbook-xsl-1.75.2/params/index.links.to.section.xml +++ /dev/null @@ -1,76 +0,0 @@ - - -index.links.to.section -boolean - - -index.links.to.section -HTML index entries link to container section title - - - - - - - - -Description - -If zero, then an index entry in an index links -directly to the location of the -generated anchor that is output -for the indexterm. If two identical indexterm elements -exist in the same section, then both entries appear -in the index with the same title but link to different -locations. - -If non-zero, then an index entry in an index links to the -section title containing the indexterm, rather than -directly to the anchor output for the indexterm. -Duplicate indexterm entries in the same section are dropped. - - -The default value is 1, so index entries link to -section titles by default. - -In both cases, the link text in an index entry is the -title of the section containing the indexterm. -That is because HTML does not have numbered pages. -It also provides the reader with context information -for each link. - -This parameter lets you choose which style of -index linking you want. - - - -When set to 0, an index entry takes you -to the precise location of its corresponding indexterm. -However, if you have a lot of duplicate -entries in sections, then you have a lot of duplicate -titles in the index, which makes it more cluttered. -The reader may not recognize why duplicate titles -appear until they follow the links. Also, the links -may land the reader in the middle of a section where the -section title is not visible, which may also be -confusing to the reader. - - -When set to 1, an index entry link is -less precise, but duplicate titles in the -index entries are eliminated. -Landing on the section title location may confirm the reader's -expectation that a link that -shows a section title will take them to that section title, -not a location within the section. - - - - - - diff --git a/docbook-xsl-1.75.2/params/index.method.xml b/docbook-xsl-1.75.2/params/index.method.xml deleted file mode 100644 index 2127956..0000000 --- a/docbook-xsl-1.75.2/params/index.method.xml +++ /dev/null @@ -1,162 +0,0 @@ - - -index.method -list -basic -kosek -kimber - - -index.method -Select method used to group index entries in an index - - - - -basic - - - -Description - -This parameter lets you select which method to use for sorting and grouping - index entries in an index. -Indexes in Latin-based languages that have accented characters typically -sort together accented words and unaccented words. -Thus à (U+00C1 LATIN CAPITAL LETTER A WITH ACUTE) would sort together -with A (U+0041 LATIN CAPITAL LETTER A), so both would appear in the A -section of the index. -Languages using other alphabets (such as Russian, which is written in the Cyrillic alphabet) -and languages using ideographic chararacters (such as Japanese) -require grouping specific to the languages and alphabets. - - -The default indexing method is limited. -It can group accented characters in Latin-based languages only. -It cannot handle non-Latin alphabets or ideographic languages. -The other indexing methods require extensions of one type or -another, and do not work with -all XSLT processors, which is why they are not used by default. - -The three choices for indexing method are: - - -basic - - -(default) Sort and groups words based only on the Latin alphabet. -Words with accented Latin letters will group and sort with -their respective primary letter, but -words in non-Latin alphabets will be -put in the Symbols section of the index. - - - - -kosek - - -This method sorts and groups words based on letter groups configured in -the DocBook locale file for the given language. -See, for example, the French locale file common/fr.xml. -This method requires that the XSLT processor -supports the EXSLT extensions (most do). -It also requires support for using -user-defined functions in xsl:key (xsltproc does not). - -This method is suitable for any language for which you can -list all the individual characters that should appear -in each letter group in an index. -It is probably not practical to use it for ideographic languages -such as Chinese that have hundreds or thousands of characters. - - -To use the kosek method, you must: - - - -Use a processor that supports its extensions, such as -Saxon 6 or Xalan (xsltproc and Saxon 8 do not). - - - -Set the index.method parameter's value to kosek. - - - -Import the appropriate index extensions stylesheet module -fo/autoidx-kosek.xsl or -html/autoidx-kosek.xsl into your -customization. - - - - - - - -kimber - - -This method uses extensions to the Saxon processor to implement -sophisticated indexing processes. It uses its own -configuration file, which can include information for any number of -languages. Each language's configuration can group -words using one of two processes. In the -enumerated process similar to that used in the kosek method, -you indicate the groupings character-by-character. -In the between-key process, you specify the -break-points in the sort order that should start a new group. -The latter configuration is useful for ideographic languages -such as Chinese, Japanese, and Korean. -You can also define your own collation algorithms and how you -want mixed Latin-alphabet words sorted. - - -For a whitepaper describing the extensions, see: -http://www.innodata-isogen.com/knowledge_center/white_papers/back_of_book_for_xsl_fo.pdf. - - - -To download the extension library, see -http://www.innodata-isogen.com/knowledge_center/tools_downloads/i18nsupport. - - - - -To use the kimber method, you must: - - - -Use Saxon (version 6 or 8) as your XSLT processor. - - - -Install and configure the Innodata Isogen library, using -the documentation that comes with it. - - - -Set the index.method parameter's value to kimber. - - - -Import the appropriate index extensions stylesheet module -fo/autoidx-kimber.xsl or -html/autoidx-kimber.xsl into your -customization. - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/params/index.number.separator.xml b/docbook-xsl-1.75.2/params/index.number.separator.xml deleted file mode 100644 index 8f51512..0000000 --- a/docbook-xsl-1.75.2/params/index.number.separator.xml +++ /dev/null @@ -1,54 +0,0 @@ - - -index.number.separator -string - - -index.number.separator -Override for punctuation separating page numbers in index - - - - - - - - -Description - -This parameter permits you to override the text to insert between -page references in a formatted index entry. Typically -that would be a comma and a space. - - -Because this text may be locale dependent, -this parameter's value is normally taken from a gentext -template named 'number-separator' in the -context 'index' in the stylesheet -locale file for the language -of the current document. -This parameter can be used to override the gentext string, -and would typically be used on the command line. -This parameter would apply to all languages. - - -So this text string can be customized in two ways. -You can reset the default gentext string using -the local.l10n.xml parameter, or you can -override the gentext with the content of this parameter. -The content can be a simple string, or it can be -something more complex such as a call-template. - - -In HTML index output, section title references are used instead of -page number references. This punctuation appears between -such section titles in an HTML index. - - - - diff --git a/docbook-xsl-1.75.2/params/index.on.role.xml b/docbook-xsl-1.75.2/params/index.on.role.xml deleted file mode 100644 index 81d65dd..0000000 --- a/docbook-xsl-1.75.2/params/index.on.role.xml +++ /dev/null @@ -1,48 +0,0 @@ - - -index.on.role -boolean - - -index.on.role -Select indexterms based on role value - - - - - - - - -Description - - -If non-zero, -then an index element that has a -role attribute -value will contain only those indexterm -elements with a matching role value. -If an index has no role -attribute or it is blank, then the index will contain -all indexterms in the current scope. - - -If index.on.role is zero, then the -role attribute has no effect -on selecting indexterms for an index. - - -If you are using DocBook version 4.3 or later, you should -use the type attribute instead of role -on indexterm and index, -and set the index.on.type to a nonzero -value. - - - - diff --git a/docbook-xsl-1.75.2/params/index.on.type.xml b/docbook-xsl-1.75.2/params/index.on.type.xml deleted file mode 100644 index a5189c7..0000000 --- a/docbook-xsl-1.75.2/params/index.on.type.xml +++ /dev/null @@ -1,52 +0,0 @@ - - -index.on.type -boolean - - -index.on.type -Select indexterms based on type -attribute value - - - - - - - - -Description - - -If non-zero, -then an index element that has a -type attribute -value will contain only those indexterm -elements with a matching type attribute value. -If an index has no type -attribute or it is blank, then the index will contain -all indexterms in the current scope. - - - -If index.on.type is zero, then the -type attribute has no effect -on selecting indexterms for an index. - - -For those using DocBook version 4.2 or earlier, -the type attribute is not available -for index terms. However, you can achieve the same -effect by using the role attribute -in the same manner on indexterm -and index, and setting the stylesheet parameter -index.on.role to a nonzero value. - - - - diff --git a/docbook-xsl-1.75.2/params/index.page.number.properties.xml b/docbook-xsl-1.75.2/params/index.page.number.properties.xml deleted file mode 100644 index 74d105a..0000000 --- a/docbook-xsl-1.75.2/params/index.page.number.properties.xml +++ /dev/null @@ -1,31 +0,0 @@ - - -index.page.number.properties -attribute set - - -index.page.number.properties -Properties associated with index page numbers - - - - - - - - - -Description - -Properties associated with page numbers in indexes. -Changing color to indicate the page number is a link is -one possibility. - - - - diff --git a/docbook-xsl-1.75.2/params/index.prefer.titleabbrev.xml b/docbook-xsl-1.75.2/params/index.prefer.titleabbrev.xml deleted file mode 100644 index 3f010ae..0000000 --- a/docbook-xsl-1.75.2/params/index.prefer.titleabbrev.xml +++ /dev/null @@ -1,29 +0,0 @@ - - -index.prefer.titleabbrev -boolean - - -index.prefer.titleabbrev -Should abbreviated titles be used as back references? - - - - - - - - -Description - -If non-zero, and if a titleabbrev is defined, the abbreviated title -is used as the link text of a back reference in the index. - - - - diff --git a/docbook-xsl-1.75.2/params/index.preferred.page.properties.xml b/docbook-xsl-1.75.2/params/index.preferred.page.properties.xml deleted file mode 100644 index 1b7a26f..0000000 --- a/docbook-xsl-1.75.2/params/index.preferred.page.properties.xml +++ /dev/null @@ -1,32 +0,0 @@ - - -index.preferred.page.properties -attribute set - - -index.preferred.page.properties -Properties used to emphasize page number references for -significant index terms - - - - - - bold - - - - -Description - -Properties used to emphasize page number references for -significant index terms (significance=preferred). Currently works only with -XEP. - - - diff --git a/docbook-xsl-1.75.2/params/index.range.separator.xml b/docbook-xsl-1.75.2/params/index.range.separator.xml deleted file mode 100644 index aff09a9..0000000 --- a/docbook-xsl-1.75.2/params/index.range.separator.xml +++ /dev/null @@ -1,57 +0,0 @@ - - -index.range.separator -string - - -index.range.separator -Override for punctuation separating the two numbers -in a page range in index - - - - - - - - -Description - -This parameter permits you -to override the text to insert between -the two numbers of a page range in an index. -This parameter is only used by those XSL-FO processors -that support an extension for generating such page ranges -(such as XEP). - -Because this text may be locale dependent, -this parameter's value is normally taken from a gentext -template named 'range-separator' in the -context 'index' in the stylesheet -locale file for the language -of the current document. -This parameter can be used to override the gentext string, -and would typically be used on the command line. -This parameter would apply to all languages. - - -So this text string can be customized in two ways. -You can reset the default gentext string using -the local.l10n.xml parameter, or you can -override the gentext with the content of this parameter. -The content can be a simple string, or it can be -something more complex such as a call-template. - - -In HTML index output, section title references are used instead of -page number references. So there are no page ranges -and this parameter has no effect. - - - - diff --git a/docbook-xsl-1.75.2/params/index.term.separator.xml b/docbook-xsl-1.75.2/params/index.term.separator.xml deleted file mode 100644 index ab2f672..0000000 --- a/docbook-xsl-1.75.2/params/index.term.separator.xml +++ /dev/null @@ -1,54 +0,0 @@ - - -index.term.separator -string - - -index.term.separator -Override for punctuation separating an index term -from its list of page references in an index - - - - - - - - -Description - -This parameter permits you to override -the text to insert between -the end of an index term and its list of page references. -Typically that might be a comma and a space. - - -Because this text may be locale dependent, -this parameter's value is normally taken from a gentext -template named 'term-separator' in the -context 'index' in the stylesheet -locale file for the language -of the current document. -This parameter can be used to override the gentext string, -and would typically be used on the command line. -This parameter would apply to all languages. - - -So this text string can be customized in two ways. -You can reset the default gentext string using -the local.l10n.xml parameter, or you can -fill in the content for this normally empty -override parameter. -The content can be a simple string, or it can be -something more complex such as a call-template. -For fo output, it could be an fo:leader -element to provide space of a specific length, or a dot leader. - - - - diff --git a/docbook-xsl-1.75.2/params/informal.object.properties.xml b/docbook-xsl-1.75.2/params/informal.object.properties.xml deleted file mode 100644 index e89cc11..0000000 --- a/docbook-xsl-1.75.2/params/informal.object.properties.xml +++ /dev/null @@ -1,29 +0,0 @@ - - -informal.object.properties -attribute set - - -informal.object.properties -Properties associated with an informal (untitled) object, such as an informalfigure - - - - - 0.5em - 1em - 2em - 0.5em - 1em - 2em - - -Description -The styling for informal objects in docbook. Specify the spacing before and after the object. - - diff --git a/docbook-xsl-1.75.2/params/informalequation.properties.xml b/docbook-xsl-1.75.2/params/informalequation.properties.xml deleted file mode 100644 index 88a57be..0000000 --- a/docbook-xsl-1.75.2/params/informalequation.properties.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -informalequation.properties -attribute set - - -informalequation.properties -Properties associated with an informalequation - - - - - - - - -Description - -The styling for informalequations. - - - diff --git a/docbook-xsl-1.75.2/params/informalexample.properties.xml b/docbook-xsl-1.75.2/params/informalexample.properties.xml deleted file mode 100644 index 90ffb2c..0000000 --- a/docbook-xsl-1.75.2/params/informalexample.properties.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -informalexample.properties -attribute set - - -informalexample.properties -Properties associated with an informalexample - - - - - - - - -Description - -The styling for informalexamples. - - - diff --git a/docbook-xsl-1.75.2/params/informalfigure.properties.xml b/docbook-xsl-1.75.2/params/informalfigure.properties.xml deleted file mode 100644 index c766248..0000000 --- a/docbook-xsl-1.75.2/params/informalfigure.properties.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -informalfigure.properties -attribute set - - -informalfigure.properties -Properties associated with an informalfigure - - - - - - - - -Description - -The styling for informalfigures. - - - diff --git a/docbook-xsl-1.75.2/params/informaltable.properties.xml b/docbook-xsl-1.75.2/params/informaltable.properties.xml deleted file mode 100644 index c968883..0000000 --- a/docbook-xsl-1.75.2/params/informaltable.properties.xml +++ /dev/null @@ -1,32 +0,0 @@ - - -informaltable.properties -attribute set - - -informaltable.properties -Properties associated with the block surrounding an informaltable - - - - - - - - -Description - -Block styling properties for informaltables. This parameter should really -have been called informaltable.block.properties or something -like that, but we’re leaving it to avoid backwards-compatibility -problems. - -See also table.table.properties. - - - diff --git a/docbook-xsl-1.75.2/params/inherit.keywords.xml b/docbook-xsl-1.75.2/params/inherit.keywords.xml deleted file mode 100644 index 7939a6a..0000000 --- a/docbook-xsl-1.75.2/params/inherit.keywords.xml +++ /dev/null @@ -1,31 +0,0 @@ - - -inherit.keywords -boolean - - -inherit.keywords -Inherit keywords from ancestor elements? - - - - - - - -Description - -If inherit.keywords -is non-zero, the keyword meta for each HTML -head element will include all of the keywords from -ancestor elements. Otherwise, only the keywords from the current section -will be used. - - - - diff --git a/docbook-xsl-1.75.2/params/insert.link.page.number.xml b/docbook-xsl-1.75.2/params/insert.link.page.number.xml deleted file mode 100644 index b26c0f6..0000000 --- a/docbook-xsl-1.75.2/params/insert.link.page.number.xml +++ /dev/null @@ -1,69 +0,0 @@ - - -insert.link.page.number -list -no -yes -maybe - - -insert.link.page.number -Turns page numbers in link elements on and off - - - - -no - - - -Description - -The value of this parameter determines if -cross references using the link element in -printed output will -include standard page number citations. -It has three possible values. - - - -no -No page number references will be generated. - - - -yes -Page number references will be generated -for all link elements. -The style of page reference may be changed -if an xrefstyle -attribute is used. - - - -maybe -Page number references will not be generated -for a link element unless -it has an -xrefstyle -attribute whose value specifies a page reference. - - - - -Although the xrefstyle attribute -can be used to turn the page reference on or off, it cannot be -used to control the formatting of the page number as it -can in xref. -In link it will always format with -the style established by the -gentext template with name="page.citation" -in the l:context name="xref". - - - diff --git a/docbook-xsl-1.75.2/params/insert.olink.page.number.xml b/docbook-xsl-1.75.2/params/insert.olink.page.number.xml deleted file mode 100644 index dc6da3d..0000000 --- a/docbook-xsl-1.75.2/params/insert.olink.page.number.xml +++ /dev/null @@ -1,83 +0,0 @@ - - -insert.olink.page.number -list -no -yes -maybe - - -insert.olink.page.number -Turns page numbers in olinks on and off - - - - -no - - - -Description - -The value of this parameter determines if -cross references made between documents with -olink will -include page number citations. -In most cases this is only applicable to references in printed output. - -The parameter has three possible values. - - - -no -No page number references will be generated for olinks. - - - -yes -Page number references will be generated -for all olink references. -The style of page reference may be changed -if an xrefstyle -attribute is used. - - - -maybe -Page number references will not be generated -for an olink element unless -it has an -xrefstyle -attribute whose value specifies a page reference. - - - -Olinks that point to targets within the same document -are treated as xrefs, and controlled by -the insert.xref.page.number parameter. - - -Page number references for olinks to -external documents can only be inserted if the -information exists in the olink database. -This means each olink target element -(div or obj) -must have a page attribute -whose value is its page number in the target document. -The XSL stylesheets are not able to extract that information -during processing because pages have not yet been created in -XSLT transformation. Only the XSL-FO processor knows what -page each element is placed on. -Therefore some postprocessing must take place to populate -page numbers in the olink database. - - - - - - diff --git a/docbook-xsl-1.75.2/params/insert.olink.pdf.frag.xml b/docbook-xsl-1.75.2/params/insert.olink.pdf.frag.xml deleted file mode 100644 index e937060..0000000 --- a/docbook-xsl-1.75.2/params/insert.olink.pdf.frag.xml +++ /dev/null @@ -1,68 +0,0 @@ - - -insert.olink.pdf.frag -boolean - - -insert.olink.pdf.frag -Add fragment identifiers for links into PDF files - - - - - - - - -Description - -The value of this parameter determines whether -the cross reference URIs to PDF documents made with -olink will -include fragment identifiers. - - -When forming a URI to link to a PDF document, -a fragment identifier (typically a '#' followed by an -id value) appended to the PDF filename can be used by -the PDF viewer to open -the PDF file to a location within the document instead of -the first page. -However, not all PDF files have id -values embedded in them, and not all PDF viewers can -handle fragment identifiers. - - -If insert.olink.pdf.frag is set -to a non-zero value, then any olink targeting a -PDF file will have the fragment identifier appended to the URI. -The URI is formed by concatenating the value of the -olink.base.uri parameter, the -value of the baseuri -attribute from the document -element in the olink database with the matching -targetdoc value, -and the value of the href -attribute for the targeted element in the olink database. -The href attribute -contains the fragment identifier. - - -If insert.olink.pdf.frag is set -to zero (the default value), then -the href attribute -from the olink database -is not appended to PDF olinks, so the fragment identifier is left off. -A PDF olink is any olink for which the -baseuri attribute -from the matching document -element in the olink database ends with '.pdf'. -Any other olinks will still have the fragment identifier added. - - - diff --git a/docbook-xsl-1.75.2/params/insert.xref.page.number.xml b/docbook-xsl-1.75.2/params/insert.xref.page.number.xml deleted file mode 100644 index 8c3aa07..0000000 --- a/docbook-xsl-1.75.2/params/insert.xref.page.number.xml +++ /dev/null @@ -1,60 +0,0 @@ - - -insert.xref.page.number -list -no -yes -maybe - - -insert.xref.page.number -Turns page numbers in xrefs on and off - - - - -no - - - -Description - -The value of this parameter determines if -cross references (xrefs) in -printed output will -include page number citations. -It has three possible values. - - - -no -No page number references will be generated. - - - -yes -Page number references will be generated -for all xref elements. -The style of page reference may be changed -if an xrefstyle -attribute is used. - - - -maybe -Page number references will not be generated -for an xref element unless -it has an -xrefstyle -attribute whose value specifies a page reference. - - - - - - diff --git a/docbook-xsl-1.75.2/params/itemizedlist.label.properties.xml b/docbook-xsl-1.75.2/params/itemizedlist.label.properties.xml deleted file mode 100644 index 49f8ee6..0000000 --- a/docbook-xsl-1.75.2/params/itemizedlist.label.properties.xml +++ /dev/null @@ -1,26 +0,0 @@ - - -itemizedlist.label.properties -attribute set - - -itemizedlist.label.properties -Properties that apply to each label inside itemized list. - - - - - - -Description -Properties that apply to each label inside itemized list. E.g.: -<xsl:attribute-set name="itemizedlist.label.properties"> - <xsl:attribute name="text-align">right</xsl:attribute> -</xsl:attribute-set> - - diff --git a/docbook-xsl-1.75.2/params/itemizedlist.label.width.xml b/docbook-xsl-1.75.2/params/itemizedlist.label.width.xml deleted file mode 100644 index 1d2c88c..0000000 --- a/docbook-xsl-1.75.2/params/itemizedlist.label.width.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -itemizedlist.label.width -length - - - itemizedlist.label.width -The default width of the label (bullet) in an itemized list. - - - - - 1.0em - - - -Description -Specifies the default width of the label (usually a bullet or other -symbol) in an itemized list. You can override the default value on any -particular list with the “dbfo†processing instruction using the -“label-width†pseudoattribute. - - diff --git a/docbook-xsl-1.75.2/params/itemizedlist.properties.xml b/docbook-xsl-1.75.2/params/itemizedlist.properties.xml deleted file mode 100644 index d7c7c1d..0000000 --- a/docbook-xsl-1.75.2/params/itemizedlist.properties.xml +++ /dev/null @@ -1,23 +0,0 @@ - - -itemizedlist.properties -attribute set - - -itemizedlist.properties -Properties that apply to each list-block generated by itemizedlist. - - - - - - -Description -Properties that apply to each fo:list-block generated by itemizedlist. - - diff --git a/docbook-xsl-1.75.2/params/javahelp.encoding.xml b/docbook-xsl-1.75.2/params/javahelp.encoding.xml deleted file mode 100644 index ba729c8..0000000 --- a/docbook-xsl-1.75.2/params/javahelp.encoding.xml +++ /dev/null @@ -1,31 +0,0 @@ - - -javahelp.encoding -string - - -javahelp.encoding -Character encoding to use in control files for JavaHelp. - - - - -iso-8859-1 - - - -Description - -JavaHelp crashes on some characters when written as character -references. In that case you can use this parameter to select an appropriate encoding. - - - - - - diff --git a/docbook-xsl-1.75.2/params/keep.relative.image.uris.xml b/docbook-xsl-1.75.2/params/keep.relative.image.uris.xml deleted file mode 100644 index 3a5a098..0000000 --- a/docbook-xsl-1.75.2/params/keep.relative.image.uris.xml +++ /dev/null @@ -1,34 +0,0 @@ - - -keep.relative.image.uris -boolean - - -keep.relative.image.uris -Should image URIs be resolved against xml:base? - - - - - - - - - -Description - -If non-zero, relative URIs (in, for example -fileref attributes) will be used in the generated -output. Otherwise, the URIs will be made absolute with respect to the -base URI. - -Note that the stylesheets calculate (and use) the absolute form -for some purposes, this only applies to the resulting output. - - - diff --git a/docbook-xsl-1.75.2/params/keyboard.nav.xml b/docbook-xsl-1.75.2/params/keyboard.nav.xml deleted file mode 100644 index 49b0c0b..0000000 --- a/docbook-xsl-1.75.2/params/keyboard.nav.xml +++ /dev/null @@ -1,29 +0,0 @@ - - -keyboard.nav -boolean - - -keyboard.nav -Enable keyboard navigation? - - - - - - - - -Description - -If non-zero, JavaScript is added to the slides to enable keyboard -navigation. Pressing 'n', space, or return moves forward; pressing 'p' moves -backward. - - - diff --git a/docbook-xsl-1.75.2/params/l10n.gentext.default.language.xml b/docbook-xsl-1.75.2/params/l10n.gentext.default.language.xml deleted file mode 100644 index ed89e06..0000000 --- a/docbook-xsl-1.75.2/params/l10n.gentext.default.language.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - l10n.gentext.default.language - string - - - l10n.gentext.default.language - Sets the default language for generated text - - - - -en - - - -Description - -The value of the l10n.gentext.default.language -parameter is used as the language for generated text if no setting is provided -in the source document. - - - diff --git a/docbook-xsl-1.75.2/params/l10n.gentext.language.xml b/docbook-xsl-1.75.2/params/l10n.gentext.language.xml deleted file mode 100644 index ff941c7..0000000 --- a/docbook-xsl-1.75.2/params/l10n.gentext.language.xml +++ /dev/null @@ -1,33 +0,0 @@ - - -l10n.gentext.language -string - - -l10n.gentext.language -Sets the gentext language - - - - - - - - -Description - -If this parameter is set to any value other than the empty string, its -value will be used as the value for the language when generating text. Setting -l10n.gentext.language overrides any settings within the -document being formatted. - -It's much more likely that you might want to set the -l10n.gentext.default.language parameter. - - - diff --git a/docbook-xsl-1.75.2/params/l10n.gentext.use.xref.language.xml b/docbook-xsl-1.75.2/params/l10n.gentext.use.xref.language.xml deleted file mode 100644 index d70017a..0000000 --- a/docbook-xsl-1.75.2/params/l10n.gentext.use.xref.language.xml +++ /dev/null @@ -1,53 +0,0 @@ - - -l10n.gentext.use.xref.language -boolean - - -l10n.gentext.use.xref.language -Use the language of target when generating cross-reference text? - - - - - - - - -Description - -If non-zero, the language of the target will be used when -generating cross reference text. Usually, the current -language is used when generating text (that is, the language of the -element that contains the cross-reference element). But setting this parameter -allows the language of the element pointed to to control -the generated text. - -Consider the following example: - - -<para lang="en">See also <xref linkend="chap3"/>.</para> - - - -Suppose that Chapter 3 happens to be written in German. -If l10n.gentext.use.xref.language is non-zero, the -resulting text will be something like this: - -
    -See also Kapital 3. -
    - -Where the more traditional rendering would be: - -
    -See also Chapter 3. -
    - -
    -
    diff --git a/docbook-xsl-1.75.2/params/l10n.lang.value.rfc.compliant.xml b/docbook-xsl-1.75.2/params/l10n.lang.value.rfc.compliant.xml deleted file mode 100644 index e0dbd79..0000000 --- a/docbook-xsl-1.75.2/params/l10n.lang.value.rfc.compliant.xml +++ /dev/null @@ -1,57 +0,0 @@ - - -l10n.lang.value.rfc.compliant -boolean - - -l10n.lang.value.rfc.compliant -Make value of lang attribute RFC compliant? - - - - - - - - -Description - -If non-zero, ensure that the values for all lang attributes in HTML output are RFC -compliantSection 8.1.1, Language Codes, in the HTML 4.0 Recommendation states that: - -
    [RFC1766] defines and explains the language codes -that must be used in HTML documents. -Briefly, language codes consist of a primary code and a possibly -empty series of subcodes: - -language-code = primary-code ( "-" subcode )* - -And in RFC 1766, Tags for the Identification -of Languages, the EBNF for "language tag" is given as: - -Language-Tag = Primary-tag *( "-" Subtag ) -Primary-tag = 1*8ALPHA -Subtag = 1*8ALPHA - -
    -
    . - -by taking any underscore characters in any lang values found in source documents, and -replacing them with hyphen characters in output HTML files. For -example, zh_CN in a source document becomes -zh-CN in the HTML output form that source. - - -This parameter does not cause any case change in lang values, because RFC 1766 -explicitly states that all "language tags" (as it calls them) "are -to be treated as case insensitive". - -
    - -
    -
    diff --git a/docbook-xsl-1.75.2/params/label.from.part.xml b/docbook-xsl-1.75.2/params/label.from.part.xml deleted file mode 100644 index 5deb960..0000000 --- a/docbook-xsl-1.75.2/params/label.from.part.xml +++ /dev/null @@ -1,38 +0,0 @@ - - -label.from.part -boolean - - -label.from.part -Renumber components in each part? - - - - - - - - -Description - -If label.from.part is non-zero, then - numbering of components — preface, - chapter, appendix, and - reference (when reference occurs at the - component level) — is re-started within each - part. -If label.from.part is zero (the - default), numbering of components is not - re-started within each part; instead, components are - numbered sequentially throughout each book, - regardless of whether or not they occur within part - instances. - - - diff --git a/docbook-xsl-1.75.2/params/line-height.xml b/docbook-xsl-1.75.2/params/line-height.xml deleted file mode 100644 index f0f4b32..0000000 --- a/docbook-xsl-1.75.2/params/line-height.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -line-height -string - - -line-height -Specify the line-height property - - - - -normal - - - -Description - -Sets the line-height property. - - - diff --git a/docbook-xsl-1.75.2/params/linenumbering.everyNth.xml b/docbook-xsl-1.75.2/params/linenumbering.everyNth.xml deleted file mode 100644 index 5e7bcac..0000000 --- a/docbook-xsl-1.75.2/params/linenumbering.everyNth.xml +++ /dev/null @@ -1,29 +0,0 @@ - - -linenumbering.everyNth -integer - - -linenumbering.everyNth -Indicate which lines should be numbered - - - - -5 - - - -Description - -If line numbering is enabled, everyNth line will be -numbered. Note that numbering is one based, not zero based. - - - - diff --git a/docbook-xsl-1.75.2/params/linenumbering.extension.xml b/docbook-xsl-1.75.2/params/linenumbering.extension.xml deleted file mode 100644 index 726781a..0000000 --- a/docbook-xsl-1.75.2/params/linenumbering.extension.xml +++ /dev/null @@ -1,30 +0,0 @@ - - -linenumbering.extension -boolean - - -linenumbering.extension -Enable the line numbering extension - - - - - - - - -Description - -If non-zero, verbatim environments (address, literallayout, -programlisting, screen, synopsis) that specify line numbering will -have line numbers. - - - - diff --git a/docbook-xsl-1.75.2/params/linenumbering.separator.xml b/docbook-xsl-1.75.2/params/linenumbering.separator.xml deleted file mode 100644 index 8bf7d22..0000000 --- a/docbook-xsl-1.75.2/params/linenumbering.separator.xml +++ /dev/null @@ -1,30 +0,0 @@ - - -linenumbering.separator -string - - -linenumbering.separator -Specify a separator between line numbers and lines - - - - - - - - -Description - -The separator is inserted between line numbers and lines in the -verbatim environment. The default value is a single white space. - Note the interaction with linenumbering.width - - - - diff --git a/docbook-xsl-1.75.2/params/linenumbering.width.xml b/docbook-xsl-1.75.2/params/linenumbering.width.xml deleted file mode 100644 index 78515c3..0000000 --- a/docbook-xsl-1.75.2/params/linenumbering.width.xml +++ /dev/null @@ -1,29 +0,0 @@ - - -linenumbering.width -integer - - -linenumbering.width -Indicates the width of line numbers - - - - -3 - - - -Description - -If line numbering is enabled, line numbers will appear right -justified in a field "width" characters wide. - - - - diff --git a/docbook-xsl-1.75.2/params/link.mailto.url.xml b/docbook-xsl-1.75.2/params/link.mailto.url.xml deleted file mode 100644 index 0715b32..0000000 --- a/docbook-xsl-1.75.2/params/link.mailto.url.xml +++ /dev/null @@ -1,29 +0,0 @@ - - -link.mailto.url -string - - -link.mailto.url -Mailto URL for the LINK REL=made HTML HEAD element - - - - - - - - -Description - -If not the empty string, this address will be used for the -rel=made link element in the html head - - - - diff --git a/docbook-xsl-1.75.2/params/list.block.properties.xml b/docbook-xsl-1.75.2/params/list.block.properties.xml deleted file mode 100644 index dbf9dfc..0000000 --- a/docbook-xsl-1.75.2/params/list.block.properties.xml +++ /dev/null @@ -1,25 +0,0 @@ - - -list.block.properties -attribute set - - -list.block.properties -Properties that apply to each list-block generated by list. - - - - - 0.2em - 1.5em - - -Description -Properties that apply to each fo:list-block generated by itemizedlist/orderedlist. - - diff --git a/docbook-xsl-1.75.2/params/list.block.spacing.xml b/docbook-xsl-1.75.2/params/list.block.spacing.xml deleted file mode 100644 index 377e6f8..0000000 --- a/docbook-xsl-1.75.2/params/list.block.spacing.xml +++ /dev/null @@ -1,29 +0,0 @@ - - -list.block.spacing -attribute set - - -list.block.spacing -What spacing do you want before and after lists? - - - - - 1em - 0.8em - 1.2em - 1em - 0.8em - 1.2em - - -Description -Specify the spacing required before and after a list. It is necessary to specify the space after a list block because lists can come inside of paras. - - diff --git a/docbook-xsl-1.75.2/params/list.item.spacing.xml b/docbook-xsl-1.75.2/params/list.item.spacing.xml deleted file mode 100644 index 2191652..0000000 --- a/docbook-xsl-1.75.2/params/list.item.spacing.xml +++ /dev/null @@ -1,26 +0,0 @@ - - -list.item.spacing -attribute set - - -list.item.spacing -What space do you want between list items? - - - - - 1em - 0.8em - 1.2em - - -Description -Specify what spacing you want between each list item. - - diff --git a/docbook-xsl-1.75.2/params/make.graphic.viewport.xml b/docbook-xsl-1.75.2/params/make.graphic.viewport.xml deleted file mode 100644 index 0bad336..0000000 --- a/docbook-xsl-1.75.2/params/make.graphic.viewport.xml +++ /dev/null @@ -1,35 +0,0 @@ - - -make.graphic.viewport -boolean - - -make.graphic.viewport -Use tables in HTML to make viewports for graphics - - - - - - - - -Description - -The HTML img element only supports the notion -of content-area scaling; it doesn't support the distinction between a -content-area and a viewport-area, so we have to make some compromises. - -If make.graphic.viewport is non-zero, a table -will be used to frame the image. This creates an effective viewport-area. - - -Tables and alignment don't work together, so this parameter is ignored -if alignment is specified on an image. - - diff --git a/docbook-xsl-1.75.2/params/make.index.markup.xml b/docbook-xsl-1.75.2/params/make.index.markup.xml deleted file mode 100644 index 7942b5a..0000000 --- a/docbook-xsl-1.75.2/params/make.index.markup.xml +++ /dev/null @@ -1,73 +0,0 @@ - - -make.index.markup -boolean - - -make.index.markup -Generate XML index markup in the index? - - - - - - - - -Description - -This parameter enables a very neat trick for getting properly -merged, collated back-of-the-book indexes. G. Ken Holman suggested -this trick at Extreme Markup Languages 2002 and I'm indebted to him -for it. - -Jeni Tennison's excellent code in -autoidx.xsl does a great job of merging and -sorting indexterms in the document and building a -back-of-the-book index. However, there's one thing that it cannot -reasonably be expected to do: merge page numbers into ranges. (I would -not have thought that it could collate and suppress duplicate page -numbers, but in fact it appears to manage that task somehow.) - -Ken's trick is to produce a document in which the index at the -back of the book is displayed in XML. Because the index -is generated by the FO processor, all of the page numbers have been resolved. -It's a bit hard to explain, but what it boils down to is that instead of having -an index at the back of the book that looks like this: - -
    -A -ap1, 1, 2, 3 - -
    - -you get one that looks like this: - -
    -<indexdiv>A</indexdiv> -<indexentry> -<primaryie>ap1</primaryie>, -<phrase role="pageno">1</phrase>, -<phrase role="pageno">2</phrase>, -<phrase role="pageno">3</phrase> -</indexentry> -
    - -After building a PDF file with this sort of odd-looking index, you can -extract the text from the PDF file and the result is a proper index expressed in -XML. - -Now you have data that's amenable to processing and a simple Perl script -(such as fo/pdf2index) can -merge page ranges and generate a proper index. - -Finally, reformat your original document using this literal index instead of -an automatically generated one and bingo! - -
    -
    diff --git a/docbook-xsl-1.75.2/params/make.single.year.ranges.xml b/docbook-xsl-1.75.2/params/make.single.year.ranges.xml deleted file mode 100644 index c49ab97..0000000 --- a/docbook-xsl-1.75.2/params/make.single.year.ranges.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -make.single.year.ranges -boolean - - -make.single.year.ranges -Print single-year ranges (e.g., 1998-1999) - - - - - - - -Description - -If non-zero, year ranges that span a single year will be printed -in range notation (1998-1999) instead of discrete notation -(1998, 1999). - - - diff --git a/docbook-xsl-1.75.2/params/make.valid.html.xml b/docbook-xsl-1.75.2/params/make.valid.html.xml deleted file mode 100644 index 8618d39..0000000 --- a/docbook-xsl-1.75.2/params/make.valid.html.xml +++ /dev/null @@ -1,35 +0,0 @@ - - -make.valid.html -boolean - - -make.valid.html -Attempt to make sure the HTML output is valid HTML - - - - - - - - -Description - -If make.valid.html is true, the stylesheets take -extra effort to ensure that the resulting HTML is valid. This may mean that some -para tags are translated into HTML divs or -that other substitutions occur. - -This parameter is different from html.cleanup -because it changes the resulting markup; it does not use extension functions -to manipulate result-tree-fragments and is therefore applicable to any -XSLT processor. - - - diff --git a/docbook-xsl-1.75.2/params/make.year.ranges.xml b/docbook-xsl-1.75.2/params/make.year.ranges.xml deleted file mode 100644 index b1a2382..0000000 --- a/docbook-xsl-1.75.2/params/make.year.ranges.xml +++ /dev/null @@ -1,32 +0,0 @@ - - -make.year.ranges -boolean - - -make.year.ranges -Collate copyright years into ranges? - - - - - - -Description - -If non-zero, multiple copyright year elements will be -collated into ranges. -This works only if each year number is put into a separate -year element. The copyright element permits multiple -year elements. If a year element contains a dash or -a comma, then that year element will not be merged into -any range. - - - - diff --git a/docbook-xsl-1.75.2/params/man.authors.section.enabled.xml b/docbook-xsl-1.75.2/params/man.authors.section.enabled.xml deleted file mode 100644 index 73cb637..0000000 --- a/docbook-xsl-1.75.2/params/man.authors.section.enabled.xml +++ /dev/null @@ -1,46 +0,0 @@ - - -man.authors.section.enabled -boolean - - -man.authors.section.enabled -Display auto-generated AUTHORS section? - - - -1 - - -Description - -If the value of -man.authors.section.enabled is non-zero -(the default), then an AUTHORS section is -generated near the end of each man page. The output of the -AUTHORS section is assembled from any -author, editor, and othercredit -metadata found in the contents of the child info or -refentryinfo (if any) of the refentry -itself, or from any author, editor, and -othercredit metadata that may appear in info -contents of any ancestors of the refentry. - -If the value of -man.authors.section.enabled is zero, the -the auto-generated AUTHORS section is -suppressed. - -Set the value of - man.authors.section.enabled to zero if - you want to have a manually created AUTHORS - section in your source, and you want it to appear in output - instead of the auto-generated AUTHORS - section. - - diff --git a/docbook-xsl-1.75.2/params/man.base.url.for.relative.links.xml b/docbook-xsl-1.75.2/params/man.base.url.for.relative.links.xml deleted file mode 100644 index a802ec8..0000000 --- a/docbook-xsl-1.75.2/params/man.base.url.for.relative.links.xml +++ /dev/null @@ -1,76 +0,0 @@ - - - man.base.url.for.relative.links - string - - - man.base.url.for.relative.links - Specifies a base URL for relative links - - - - [set $man.base.url.for.relative.links]/ - - - Description - - For any “notesource†listed in the auto-generated - “NOTES†section of output man pages (which is generated when - the value of the - man.endnotes.list.enabled parameter - is non-zero), if the notesource is a link source with a - relative URI, the URI is displayed in output with the value - of the - man.base.url.for.relative.links - parameter prepended to the value of the link URI. - - - A link source is an notesource that references an - external resource: - - - a ulink element with a url attribute - - - any element with an xlink:href attribute - - - an imagedata, audiodata, or - videodata element - - - - - - If you use relative URIs in link sources in your DocBook - refentry source, and you leave - man.base.url.for.relative.links - unset, the relative links will appear “as is†in the “Notes†- section of any man-page output generated from your source. - That’s probably not what you want, because such relative - links are only usable in the context of HTML output. So, to - make the links meaningful and usable in the context of - man-page output, set a value for - man.base.url.for.relative.links that - points to the online version of HTML output generated from - your DocBook refentry source. For - example: - <xsl:param name="man.base.url.for.relative.links" - >http://www.kernel.org/pub/software/scm/git/docs/</xsl:param> - - - - - Related Parameters - man.endnotes.list.enabled - - - diff --git a/docbook-xsl-1.75.2/params/man.break.after.slash.xml b/docbook-xsl-1.75.2/params/man.break.after.slash.xml deleted file mode 100644 index 859edb7..0000000 --- a/docbook-xsl-1.75.2/params/man.break.after.slash.xml +++ /dev/null @@ -1,46 +0,0 @@ - - -man.break.after.slash -boolean - - -man.break.after.slash -Enable line-breaking after slashes? - - - - -0 - - -Description - -If non-zero, line-breaking after slashes is enabled. This is -mainly useful for causing long URLs or pathnames/filenames to be -broken up or "wrapped" across lines (though it also has the side -effect of sometimes causing relatively short URLs and pathnames to be -broken up across lines too). - -If zero (the default), line-breaking after slashes is -disabled. In that case, strings containing slashes (for example, URLs -or filenames) are not broken across lines, even if they exceed the -maximum column widith. - - - If you set a non-zero value for this parameter, check your - man-page output carefuly afterwards, in order to make sure that the - setting has not introduced an excessive amount of breaking-up of URLs - or pathnames. If your content contains mostly short URLs or - pathnames, setting a non-zero value for - man.break.after.slash will probably result in - in a significant number of relatively short URLs and pathnames being - broken across lines, which is probably not what you want. - - - - diff --git a/docbook-xsl-1.75.2/params/man.charmap.enabled.xml b/docbook-xsl-1.75.2/params/man.charmap.enabled.xml deleted file mode 100644 index 5522339..0000000 --- a/docbook-xsl-1.75.2/params/man.charmap.enabled.xml +++ /dev/null @@ -1,55 +0,0 @@ - - -man.charmap.enabled -boolean - - -man.charmap.enabled -Apply character map before final output? - - - - - - - - -Description - -If the value of the man.charmap.enabled -parameter is non-zero, a "character map" is used to substitute certain -Unicode symbols and special characters with appropriate roff/groff -equivalents, just before writing each man-page file to the -filesystem. If instead the value of -man.charmap.enabled is zero, Unicode characters -are passed through "as is". - -Details - -For converting certain Unicode symbols and special characters in -UTF-8 or UTF-16 encoded XML source to appropriate groff/roff -equivalents in man-page output, the DocBook XSL Stylesheets -distribution includes a roff character map that is compliant with the XSLT character -map format as detailed in the XSLT 2.0 specification. The map -contains more than 800 character mappings and can be considered the -standard roff character map for the distribution. - -You can use the man.charmap.uri -parameter to specify a URI for the location for an alternate roff -character map to use in place of the standard roff character map -provided in the distribution. - -You can also use a subset of a character map. For details, -see the man.charmap.use.subset, -man.charmap.subset.profile, and -man.charmap.subset.profile.english -parameters. - - - - diff --git a/docbook-xsl-1.75.2/params/man.charmap.subset.profile.english.xml b/docbook-xsl-1.75.2/params/man.charmap.subset.profile.english.xml deleted file mode 100644 index cbc9fb0..0000000 --- a/docbook-xsl-1.75.2/params/man.charmap.subset.profile.english.xml +++ /dev/null @@ -1,80 +0,0 @@ - - -man.charmap.subset.profile.english -string - - -man.charmap.subset.profile.english -Profile of character map subset - - - - - -@*[local-name() = 'block'] = 'Miscellaneous Technical' or -(@*[local-name() = 'block'] = 'C1 Controls And Latin-1 Supplement (Latin-1 Supplement)' and - @*[local-name() = 'class'] = 'symbols') -or -(@*[local-name() = 'block'] = 'General Punctuation' and - (@*[local-name() = 'class'] = 'spaces' or - @*[local-name() = 'class'] = 'dashes' or - @*[local-name() = 'class'] = 'quotes' or - @*[local-name() = 'class'] = 'bullets' - ) -) or -@*[local-name() = 'name'] = 'HORIZONTAL ELLIPSIS' or -@*[local-name() = 'name'] = 'WORD JOINER' or -@*[local-name() = 'name'] = 'SERVICE MARK' or -@*[local-name() = 'name'] = 'TRADE MARK SIGN' or -@*[local-name() = 'name'] = 'ZERO WIDTH NO-BREAK SPACE' - - - - -Description - -If the value of the - man.charmap.use.subset parameter is - non-zero, and your DocBook source is written in English (that - is, if its lang or xml:lang attribute on the root element - in your DocBook source or on the first refentry - element in your source has the value en or if - it has no lang or xml:lang attribute), then the - character-map subset specified by the - man.charmap.subset.profile.english - parameter is used instead of the full roff character map. - -Otherwise, if the lang or xml:lang attribute - on the root element in your DocBook source or on the first - refentry element in your source has a value other - than en, then the character-map subset - specified by the - man.charmap.subset.profile parameter is - used instead of - man.charmap.subset.profile.english. - -The difference between the two subsets is that - man.charmap.subset.profile provides - mappings for characters in Western European languages that are - not part of the Roman (English) alphabet (ASCII character set). - -The value of man.charmap.subset.profile.english -is a string representing an XPath expression that matches attribute -names and values for output-character elements in the character map. - -For other details, see the documentation for the -man.charmap.subset.profile.english and -man.charmap.use.subset parameters. - - - diff --git a/docbook-xsl-1.75.2/params/man.charmap.subset.profile.xml b/docbook-xsl-1.75.2/params/man.charmap.subset.profile.xml deleted file mode 100644 index 913a4e3..0000000 --- a/docbook-xsl-1.75.2/params/man.charmap.subset.profile.xml +++ /dev/null @@ -1,297 +0,0 @@ - - -man.charmap.subset.profile -string - - -man.charmap.subset.profile -Profile of character map subset - - - - - -@*[local-name() = 'block'] = 'Miscellaneous Technical' or -(@*[local-name() = 'block'] = 'C1 Controls And Latin-1 Supplement (Latin-1 Supplement)' and - (@*[local-name() = 'class'] = 'symbols' or - @*[local-name() = 'class'] = 'letters') -) or -@*[local-name() = 'block'] = 'Latin Extended-A' -or -(@*[local-name() = 'block'] = 'General Punctuation' and - (@*[local-name() = 'class'] = 'spaces' or - @*[local-name() = 'class'] = 'dashes' or - @*[local-name() = 'class'] = 'quotes' or - @*[local-name() = 'class'] = 'bullets' - ) -) or -@*[local-name() = 'name'] = 'HORIZONTAL ELLIPSIS' or -@*[local-name() = 'name'] = 'WORD JOINER' or -@*[local-name() = 'name'] = 'SERVICE MARK' or -@*[local-name() = 'name'] = 'TRADE MARK SIGN' or -@*[local-name() = 'name'] = 'ZERO WIDTH NO-BREAK SPACE' - - - - -Description - -If the value of the -man.charmap.use.subset parameter is non-zero, -and your DocBook source is not written in English (that - is, if the lang or xml:lang attribute on the root element - in your DocBook source or on the first refentry - element in your source has a value other than - en), then the character-map subset specified - by the man.charmap.subset.profile - parameter is used instead of the full roff character map. - -Otherwise, if the lang or xml:lang attribute on the root - element in your DocBook - source or on the first refentry element in your source - has the value en or if it has no lang or xml:lang attribute, then the character-map - subset specified by the - man.charmap.subset.profile.english - parameter is used instead of - man.charmap.subset.profile. - -The difference between the two subsets is that - man.charmap.subset.profile provides - mappings for characters in Western European languages that are - not part of the Roman (English) alphabet (ASCII character set). - -The value of man.charmap.subset.profile -is a string representing an XPath expression that matches attribute -names and values for output-character -elements in the character map. - -The attributes supported in the standard roff character map included in the distribution are: - - - character - - a raw Unicode character or numeric Unicode - character-entity value (either in decimal or hex); all - characters have this attribute - - - - name - - a standard full/long ISO/Unicode character name (e.g., - "OHM SIGN"); all characters have this attribute - - - - block - - a standard Unicode "block" name (e.g., "General - Punctuation"); all characters have this attribute. For the full - list of Unicode block names supported in the standard roff - character map, see . - - - - class - - a class of characters (e.g., "spaces"). Not all - characters have this attribute; currently, it is used only with - certain characters within the "C1 Controls And Latin-1 - Supplement" and "General Punctuation" blocks. For details, see - . - - - - entity - - an ISO entity name (e.g., "ohm"); not all characters - have this attribute, because not all characters have ISO entity - names; for example, of the 800 or so characters in the standard - roff character map included in the distribution, only around 300 - have ISO entity names. - - - - - string - - a string representing an roff/groff escape-code (with - "@esc@" used in place of the backslash), or a simple ASCII - string; all characters in the roff character map have this - attribute - - - - -The value of man.charmap.subset.profile -is evaluated as an XPath expression at run-time to select a portion of -the roff character map to use. You can tune the subset used by adding -or removing parts. For example, if you need to use a wide range of -mathematical operators in a document, and you want to have them -converted into roff markup properly, you might add the following: - - @*[local-name() = 'block'] ='MathematicalOperators' - -That will cause a additional set of around 67 additional "math" -characters to be converted into roff markup. - - -Depending on which XSLT engine you use, either the EXSLT -dyn:evaluate extension function (for xsltproc or -Xalan) or saxon:evaluate extension function (for -Saxon) are used to dynamically evaluate the value of -man.charmap.subset.profile at run-time. If you -don't use xsltproc, Saxon, Xalan -- or some other XSLT engine that -supports dyn:evaluate -- you must either set the -value of the man.charmap.use.subset parameter -to zero and process your documents using the full character map -instead, or set the value of the -man.charmap.enabled parameter to zero instead -(so that character-map processing is disabled completely. - - -An alternative to using -man.charmap.subset.profile is to create your -own custom character map, and set the value of -man.charmap.uri to the URI/filename for -that. If you use a custom character map, you will probably want to -include in it just the characters you want to use, and so you will -most likely also want to set the value of -man.charmap.use.subset to zero. -You can create a -custom character map by making a copy of the standard roff character map provided in the distribution, and -then adding to, changing, and/or deleting from that. - - -If you author your DocBook XML source in UTF-8 or UTF-16 -encoding and aren't sure what OSes or environments your man-page -output might end up being viewed on, and not sure what version of -nroff/groff those environments might have, you should be careful about -what Unicode symbols and special characters you use in your source and -what parts you add to the value of -man.charmap.subset.profile. -Many of the escape codes used are specific to groff and using -them may not provide the expected output on an OS or environment that -uses nroff instead of groff. -On the other hand, if you intend for your man-page output to be -viewed only on modern systems (for example, GNU/Linux systems, FreeBSD -systems, or Cygwin environments) that have a good, up-to-date groff, -then you can safely include a wide range of Unicode symbols and -special characters in your UTF-8 or UTF-16 encoded DocBook XML source -and add any of the supported Unicode block names to the value of -man.charmap.subset.profile. - - - -For other details, see the documentation for the -man.charmap.use.subset parameter. - -Supported Unicode block names and "class" values - - - Below is the full list of Unicode block names and "class" - values supported in the standard roff stylesheet provided in the - distribution, along with a description of which codepoints from the - Unicode range corresponding to that block name or block/class - combination are supported. - - - - C1 Controls And Latin-1 Supplement (Latin-1 Supplement) (x00a0 to x00ff) - class values - - - symbols - - - letters - - - - - Latin Extended-A (x0100 to x017f, partial) - - - Spacing Modifier Letters (x02b0 to x02ee, partial) - - - Greek and Coptic (x0370 to x03ff, partial) - - - General Punctuation (x2000 to x206f, partial) - class values - - - spaces - - - dashes - - - quotes - - - daggers - - - bullets - - - leaders - - - primes - - - - - - Superscripts and Subscripts (x2070 to x209f) - - - Currency Symbols (x20a0 to x20b1) - - - Letterlike Symbols (x2100 to x214b) - - - Number Forms (x2150 to x218f) - - - Arrows (x2190 to x21ff, partial) - - - Mathematical Operators (x2200 to x22ff, partial) - - - Control Pictures (x2400 to x243f) - - - Enclosed Alphanumerics (x2460 to x24ff) - - - Geometric Shapes (x25a0 to x25f7, partial) - - - Miscellaneous Symbols (x2600 to x26ff, partial) - - - Dingbats (x2700 to x27be, partial) - - - Alphabetic Presentation Forms (xfb00 to xfb04 only) - - - - - diff --git a/docbook-xsl-1.75.2/params/man.charmap.uri.xml b/docbook-xsl-1.75.2/params/man.charmap.uri.xml deleted file mode 100644 index 0c8f574..0000000 --- a/docbook-xsl-1.75.2/params/man.charmap.uri.xml +++ /dev/null @@ -1,42 +0,0 @@ - - -man.charmap.uri -uri - - -man.charmap.uri -URI for custom roff character map - - - - - - - - -Description - -For converting certain Unicode symbols and special characters in -UTF-8 or UTF-16 encoded XML source to appropriate groff/roff -equivalents in man-page output, the DocBook XSL Stylesheets -distribution includes an XSLT character -map. That character map can be considered the standard roff -character map for the distribution. - -If the value of the man.charmap.uri -parameter is non-empty, that value is used as the URI for the location -for an alternate roff character map to use in place of the standard -roff character map provided in the distribution. - - -Do not set a value for man.charmap.uri -unless you have a custom roff character map that differs from the -standard one provided in the distribution. - - - diff --git a/docbook-xsl-1.75.2/params/man.charmap.use.subset.xml b/docbook-xsl-1.75.2/params/man.charmap.use.subset.xml deleted file mode 100644 index 4403704..0000000 --- a/docbook-xsl-1.75.2/params/man.charmap.use.subset.xml +++ /dev/null @@ -1,80 +0,0 @@ - - -man.charmap.use.subset -boolean - - -man.charmap.use.subset -Use subset of character map instead of full map? - - - - - - - - -Description - -If the value of the -man.charmap.use.subset parameter is non-zero, -a subset of the roff character map is used instead of the full roff -character map. The profile of the subset used is determined either -by the value of the -man.charmap.subset.profile -parameter (if the source is not in English) or the -man.charmap.subset.profile.english -parameter (if the source is in English). - - - You may want to experiment with setting a non-zero value of - man.charmap.use.subset, so that the full - character map is used. Depending on which XSLT engine you run, - setting a non-zero value for - man.charmap.use.subset may significantly - increase the time needed to process your documents. Or it may - not. For example, if you set it and run it with xsltproc, it seems - to dramatically increase processing time; on the other hand, if you - set it and run it with Saxon, it does not seem to increase - processing time nearly as much. - - If processing time is not a important concern and/or you can - tolerate the increase in processing time imposed by using the full - character map, set man.charmap.use.subset to - zero. - - -Details - -For converting certain Unicode symbols and special characters in -UTF-8 or UTF-16 encoded XML source to appropriate groff/roff -equivalents in man-page output, the DocBook XSL Stylesheets -distribution includes a roff character map that is compliant with the XSLT character -map format as detailed in the XSLT 2.0 specification. The map -contains more than 800 character mappings and can be considered the -standard roff character map for the distribution. - - -You can use the man.charmap.uri -parameter to specify a URI for the location for an alternate roff -character map to use in place of the standard roff character map -provided in the distribution. - - -Because it is not terrifically efficient to use the standard -800-character character map in full -- and for most (or all) users, -never necessary to use it in full -- the DocBook XSL Stylesheets -support a mechanism for using, within any given character map, a -subset of character mappings instead of the full set. You can use the -man.charmap.subset.profile or -man.charmap.subset.profile.english -parameter to tune the profile of that subset to use. - - - - diff --git a/docbook-xsl-1.75.2/params/man.copyright.section.enabled.xml b/docbook-xsl-1.75.2/params/man.copyright.section.enabled.xml deleted file mode 100644 index 9e83587..0000000 --- a/docbook-xsl-1.75.2/params/man.copyright.section.enabled.xml +++ /dev/null @@ -1,46 +0,0 @@ - - -man.copyright.section.enabled -boolean - - -man.copyright.section.enabled -Display auto-generated COPYRIGHT section? - - - -1 - - -Description - -If the value of -man.copyright.section.enabled is non-zero -(the default), then a COPYRIGHT section is -generated near the end of each man page. The output of the -COPYRIGHT section is assembled from any -copyright and legalnotice metadata found in -the contents of the child info or -refentryinfo (if any) of the refentry -itself, or from any copyright and -legalnotice metadata that may appear in info -contents of any ancestors of the refentry. - -If the value of -man.copyright.section.enabled is zero, the -the auto-generated COPYRIGHT section is -suppressed. - -Set the value of - man.copyright.section.enabled to zero if - you want to have a manually created COPYRIGHT - section in your source, and you want it to appear in output - instead of the auto-generated COPYRIGHT - section. - - diff --git a/docbook-xsl-1.75.2/params/man.endnotes.are.numbered.xml b/docbook-xsl-1.75.2/params/man.endnotes.are.numbered.xml deleted file mode 100644 index b069ec3..0000000 --- a/docbook-xsl-1.75.2/params/man.endnotes.are.numbered.xml +++ /dev/null @@ -1,106 +0,0 @@ - - -man.endnotes.are.numbered -boolean - - -man.endnotes.are.numbered -Number endnotes? - - - - -1 - - - -Description - -If the value of man.endnotes.are.numbered is -non-zero (the default), then for each non-empty -A “non-empty†notesource is one that looks like -this: <ulink url="http://docbook.sf.net/snapshot/xsl/doc/manpages/">manpages</ulink> -an “empty†notesource is on that looks like this: <ulink url="http://docbook.sf.net/snapshot/xsl/doc/manpages/"/> - “notesourceâ€: - - - - a number (in square brackets) is displayed inline after the - rendered inline contents (if any) of the notesource - - - the contents of the notesource are included in a - numbered list of endnotes that is generated at the end of - each man page; the number for each endnote corresponds to - the inline number for the notesource with which it is - associated - - -The default heading for the list of endnotes is -NOTES. To output a different heading, set a value -for the man.endnotes.section.heading -parameter. - - - The endnotes list is also displayed (but without - numbers) if the value of - man.endnotes.list.enabled is - non-zero. - - - -If the value of man.endnotes.are.numbered is -zero, numbering of endnotess is suppressed; only inline -contents (if any) of the notesource are displayed inline. - - If you are thinking about disabling endnote numbering by setting - the value of man.endnotes.are.numbered to zero, - before you do so, first take some time to carefully - consider the information needs and experiences of your users. The - square-bracketed numbers displayed inline after notesources may seem - obstrusive and aesthetically unpleasingAs far as notesources that are links, ytou might - think it would be better to just display URLs for non-empty - links inline, after their content, rather than displaying - square-bracketed numbers all over the place. But it's not better. In - fact, it's not even practical, because many (most) URLs for links - are too long to be displayed inline. They end up overflowing the - right margin. You can set a non-zero value for - man.break.after.slash parameter to deal with - that, but it could be argued that what you end up with is at least - as ugly, and definitely more obstrusive, then having short - square-bracketed numbers displayed inline., - - but in a text-only output format, the - numbered-notesources/endnotes-listing mechanism is the only - practical way to handle this kind of content. - - Also, users of “text based†browsers such as - lynx will already be accustomed to seeing inline - numbers for links. And various "man to html" applications, such as - the widely used man2html (VH-Man2html) - application, can automatically turn URLs into "real" HTML hyperlinks - in output. So leaving man.endnotes.are.numbered - at its default (non-zero) value ensures that no information is - lost in your man-page output. It just gets - “rearrangedâ€. - - -The handling of empty links is not affected by this -parameter. Empty links are handled simply by displaying their URLs -inline. Empty links are never auto-numbered. - -If you disable endnotes numbering, you should probably also set -man.font.links to an empty value (to -disable font formatting for links. - - -Related Parameters - man.endnotes.list.enabled, - man.font.links - - diff --git a/docbook-xsl-1.75.2/params/man.endnotes.list.enabled.xml b/docbook-xsl-1.75.2/params/man.endnotes.list.enabled.xml deleted file mode 100644 index 89d8188..0000000 --- a/docbook-xsl-1.75.2/params/man.endnotes.list.enabled.xml +++ /dev/null @@ -1,105 +0,0 @@ - - -man.endnotes.list.enabled -boolean - - -man.endnotes.list.enabled -Display endnotes list at end of man page? - - - - -1 - - - -Description - -If the value of man.endnotes.list.enabled is -non-zero (the default), then an endnotes list is added to the end of -the output man page. - -If the value of man.endnotes.list.enabled is -zero, the list is suppressed — unless link numbering is enabled (that -is, if man.endnotes.are.numbered is non-zero), in -which case, that setting overrides the -man.endnotes.list.enabled setting, and the -endnotes list is still displayed. The reason is that inline -numbering of notesources associated with endnotes only makes sense -if a (numbered) list of endnotes is also generated. - - - Leaving - man.endnotes.list.enabled at its default - (non-zero) value ensures that no “out of line†information (such - as the URLs for hyperlinks and images) gets lost in your - man-page output. It just gets “rearrangedâ€. - So if you’re thinking about disabling endnotes listing by - setting the value of - man.endnotes.list.enabled to zero: - Before you do so, first take some time to carefully consider - the information needs and experiences of your users. The “out - of line†information has value even if the presentation of it - in text output is not as interactive as it may be in other - output formats. - As far as the specific case of URLs: Even though the URLs - displayed in text output may not be “real†(clickable) - hyperlinks, many X terminals have convenience features for - recognizing URLs and can, for example, present users with - an options to open a URL in a browser with the user clicks on - the URL is a terminal window. And short of those, users with X - terminals can always manually cut and paste the URLs into a web - browser. - Also, note that various “man to html†tools, such as the - widely used man2html (VH-Man2html) - application, automatically mark up URLs with a@href markup - during conversion — resulting in “real†hyperlinks in HTML - output from those tools. - - -To “turn off†numbering of endnotes in the -endnotes list, set man.endnotes.are.numbered -to zero. The endnotes list will -still be displayed; it will just be displayed without the -numbersIt can still make sense to have -the list of endnotes displayed even if you have endnotes numbering turned -off. In that case, your endnotes list basically becomes a “list -of references†without any association with specific text in -your document. This is probably the best option if you find the inline -endnotes numbering obtrusive. Your users will still have access to all the “out of line†-such as URLs for hyperlinks. - - -The default heading for the endnotes list is -NOTES. To change that, set a non-empty -value for the man.endnotes.list.heading -parameter. - -In the case of notesources that are links: Along with the -URL for each link, the endnotes list includes the contents of the -link. The list thus includes only non-empty - -A “non-empty†link is one that looks like -this: <ulink url="http://docbook.sf.net/snapshot/xsl/doc/manpages/">manpages</ulink> -an “empty link†is on that looks like this: <ulink url="http://docbook.sf.net/snapshot/xsl/doc/manpages/"/> - links. - -Empty links are never included, and never numbered. They are simply -displayed inline, without any numbering. - -In addition, if there are multiple instances of links in a -refentry that have the same URL, the URL is listed only -once. The contents listed for that link in the endnotes list are -the contents of the first link which has that URL. - -If you disable endnotes listing, you should probably also set -man.links.are.underlined to zero (to disable -link underlining). - - diff --git a/docbook-xsl-1.75.2/params/man.endnotes.list.heading.xml b/docbook-xsl-1.75.2/params/man.endnotes.list.heading.xml deleted file mode 100644 index fe6545c..0000000 --- a/docbook-xsl-1.75.2/params/man.endnotes.list.heading.xml +++ /dev/null @@ -1,36 +0,0 @@ - - -man.endnotes.list.heading -string - - -man.endnotes.list.heading -Specifies an alternate name for endnotes list - - - - - - - - -Description - -If the value of the -man.endnotes.are.numbered parameter -and/or the man.endnotes.list.enabled -parameter is non-zero (the defaults for both are non-zero), a -numbered list of endnotes is generated near the end of each man -page. The default heading for the list of endnotes is the -equivalent of the English word NOTES in -the current locale. To cause an alternate heading to be displayed, -set a non-empty value for the -man.endnotes.list.heading parameter — -for example, REFERENCES. - - diff --git a/docbook-xsl-1.75.2/params/man.font.funcprototype.xml b/docbook-xsl-1.75.2/params/man.font.funcprototype.xml deleted file mode 100644 index 67b698b..0000000 --- a/docbook-xsl-1.75.2/params/man.font.funcprototype.xml +++ /dev/null @@ -1,30 +0,0 @@ - - -man.font.funcprototype -string - - -man.font.funcprototype -Specifies font for funcprototype output - - - - - BI - - - -Description - -The man.font.funcprototype parameter -specifies the font for funcprototype output. It -should be a valid roff font name, such as BI or -B. - - - diff --git a/docbook-xsl-1.75.2/params/man.font.funcsynopsisinfo.xml b/docbook-xsl-1.75.2/params/man.font.funcsynopsisinfo.xml deleted file mode 100644 index bd7a36f..0000000 --- a/docbook-xsl-1.75.2/params/man.font.funcsynopsisinfo.xml +++ /dev/null @@ -1,30 +0,0 @@ - - -man.font.funcsynopsisinfo -string - - -man.font.funcsynopsisinfo -Specifies font for funcsynopsisinfo output - - - - - B - - - -Description - -The man.font.funcsynopsisinfo parameter -specifies the font for funcsynopsisinfo output. It -should be a valid roff font name, such as B or -I. - - - diff --git a/docbook-xsl-1.75.2/params/man.font.links.xml b/docbook-xsl-1.75.2/params/man.font.links.xml deleted file mode 100644 index 0f8a1e0..0000000 --- a/docbook-xsl-1.75.2/params/man.font.links.xml +++ /dev/null @@ -1,64 +0,0 @@ - - -man.font.links -string - - -man.font.links -Specifies font for links - - - - -B - - - -Description - -The man.font.links parameter -specifies the font for output of links (ulink instances -and any instances of any element with an xlink:href attribute). - -The value of man.font.links must be - either B or I, or empty. If -the value is empty, no font formatting is applied to links. - -If you set man.endnotes.are.numbered and/or -man.endnotes.list.enabled to zero (disabled), then -you should probably also set an empty value for -man.font.links. But if -man.endnotes.are.numbered is non-zero (enabled), -you should probably keep -man.font.links set to -B or IThe - main purpose of applying a font format to links in most output -formats it to indicate that the formatted text is -“clickableâ€; given that links rendered in man pages are -not “real†hyperlinks that users can click on, it might -seem like there is never a good reason to have font formatting for -link contents in man output. -In fact, if you suppress the -display of inline link references (by setting -man.endnotes.are.numbered to zero), there is no -good reason to apply font formatting to links. However, if -man.endnotes.are.numbered is non-zero, having -font formatting for links (arguably) serves a purpose: It provides -“context†information about exactly what part of the text -is being “annotated†by the link. Depending on how you -mark up your content, that context information may or may not -have value.. - - -Related Parameters - man.endnotes.list.enabled, - man.endnotes.are.numbered - - - diff --git a/docbook-xsl-1.75.2/params/man.font.table.headings.xml b/docbook-xsl-1.75.2/params/man.font.table.headings.xml deleted file mode 100644 index 5056f2b..0000000 --- a/docbook-xsl-1.75.2/params/man.font.table.headings.xml +++ /dev/null @@ -1,30 +0,0 @@ - - -man.font.table.headings -string - - -man.font.table.headings -Specifies font for table headings - - - - - B - - - -Description - -The man.font.table.headings parameter -specifies the font for table headings. It should be -a valid roff font, such as B or -I. - - - diff --git a/docbook-xsl-1.75.2/params/man.font.table.title.xml b/docbook-xsl-1.75.2/params/man.font.table.title.xml deleted file mode 100644 index a7f2ae9..0000000 --- a/docbook-xsl-1.75.2/params/man.font.table.title.xml +++ /dev/null @@ -1,30 +0,0 @@ - - -man.font.table.title -string - - -man.font.table.title -Specifies font for table headings - - - - - B - - - -Description - -The man.font.table.title parameter -specifies the font for table titles. It should be -a valid roff font, such as B or -I. - - - diff --git a/docbook-xsl-1.75.2/params/man.funcsynopsis.style.xml b/docbook-xsl-1.75.2/params/man.funcsynopsis.style.xml deleted file mode 100644 index 0597087..0000000 --- a/docbook-xsl-1.75.2/params/man.funcsynopsis.style.xml +++ /dev/null @@ -1,26 +0,0 @@ - - -man.funcsynopsis.style -list -ansi -kr - - -man.funcsynopsis.style -What style of funcsynopsis should be generated? - - -ansi - -Description -If man.funcsynopsis.style is -ansi, ANSI-style function synopses are -generated for a funcsynopsis, otherwise K&R-style -function synopses are generated. - - diff --git a/docbook-xsl-1.75.2/params/man.hyphenate.computer.inlines.xml b/docbook-xsl-1.75.2/params/man.hyphenate.computer.inlines.xml deleted file mode 100644 index 3e23ade..0000000 --- a/docbook-xsl-1.75.2/params/man.hyphenate.computer.inlines.xml +++ /dev/null @@ -1,53 +0,0 @@ - - -man.hyphenate.computer.inlines -boolean - - -man.hyphenate.computer.inlines -Hyphenate computer inlines? - - - - -0 - - -Description - -If zero (the default), hyphenation is suppressed for -computer inlines such as environment variables, -constants, etc. This parameter current affects output of the following -elements: - - - classname - constant - envar - errorcode - option - replaceable - userinput - type - varname - - - - - If hyphenation is already turned off globally (that is, if - man.hyphenate is zero, setting the - man.hyphenate.computer.inlines is not - necessary. - - -If man.hyphenate.computer.inlines is -non-zero, computer inlines will not be treated specially and will be -hyphenated like other words when needed. - - - diff --git a/docbook-xsl-1.75.2/params/man.hyphenate.filenames.xml b/docbook-xsl-1.75.2/params/man.hyphenate.filenames.xml deleted file mode 100644 index 891d6da..0000000 --- a/docbook-xsl-1.75.2/params/man.hyphenate.filenames.xml +++ /dev/null @@ -1,47 +0,0 @@ - - -man.hyphenate.filenames -boolean - - -man.hyphenate.filenames -Hyphenate filenames? - - - - -0 - - -Description - -If zero (the default), hyphenation is suppressed for -filename output. - - - If hyphenation is already turned off globally (that is, if - man.hyphenate is zero, setting - man.hyphenate.filenames is not - necessary. - - -If man.hyphenate.filenames is non-zero, -filenames will not be treated specially and are subject to hyphenation -just like other words. - - - If you are thinking about setting a non-zero value for - man.hyphenate.filenames in order to make long - filenames/pathnames break across lines, you'd probably be better off - experimenting with setting the - man.break.after.slash parameter first. That - will cause long pathnames to be broken after slashes. - - - - diff --git a/docbook-xsl-1.75.2/params/man.hyphenate.urls.xml b/docbook-xsl-1.75.2/params/man.hyphenate.urls.xml deleted file mode 100644 index a64dfa7..0000000 --- a/docbook-xsl-1.75.2/params/man.hyphenate.urls.xml +++ /dev/null @@ -1,46 +0,0 @@ - - -man.hyphenate.urls -boolean - - -man.hyphenate.urls -Hyphenate URLs? - - - - -0 - - -Description - -If zero (the default), hyphenation is suppressed for output of -the ulink url attribute. - - - If hyphenation is already turned off globally (that is, if - man.hyphenate is zero, setting - man.hyphenate.urls is not necessary. - - -If man.hyphenate.urls is non-zero, URLs -will not be treated specially and are subject to hyphenation just like -other words. - - - If you are thinking about setting a non-zero value for - man.hyphenate.urls in order to make long - URLs break across lines, you'd probably be better off - experimenting with setting the - man.break.after.slash parameter first. That - will cause long URLs to be broken after slashes. - - - - diff --git a/docbook-xsl-1.75.2/params/man.hyphenate.xml b/docbook-xsl-1.75.2/params/man.hyphenate.xml deleted file mode 100644 index 9198bbb..0000000 --- a/docbook-xsl-1.75.2/params/man.hyphenate.xml +++ /dev/null @@ -1,59 +0,0 @@ - - -man.hyphenate -boolean - - -man.hyphenate -Enable hyphenation? - - - - -0 - - -Description - -If non-zero, hyphenation is enabled. - - -The default value for this parameter is zero because groff is -not particularly smart about how it does hyphenation; it can end up -hyphenating a lot of things that you don't want hyphenated. To -mitigate that, the default behavior of the stylesheets is to suppress -hyphenation of computer inlines, filenames, and URLs. (You can -override the default behavior by setting non-zero values for the -man.hyphenate.urls, -man.hyphenate.filenames, and -man.hyphenate.computer.inlines parameters.) But -the best way is still to just globally disable hyphenation, as the -stylesheets do by default. - -The only good reason to enabled hyphenation is if you have also -enabled justification (which is disabled by default). The reason is -that justified text can look very bad unless you also hyphenate it; to -quote the Hypenation node from the groff info page: - -
    - Since the odds are not great for finding a set of - words, for every output line, which fit nicely on a line without - inserting excessive amounts of space between words, 'gtroff' - hyphenates words so that it can justify lines without inserting too - much space between words. -
    - -So, if you set a non-zero value for the -man.justify parameter (to enable -justification), then you should probably also set a non-zero value for -man.hyphenate (to enable hyphenation).
    -
    - - -
    -
    diff --git a/docbook-xsl-1.75.2/params/man.indent.blurbs.xml b/docbook-xsl-1.75.2/params/man.indent.blurbs.xml deleted file mode 100644 index bf9bb91..0000000 --- a/docbook-xsl-1.75.2/params/man.indent.blurbs.xml +++ /dev/null @@ -1,33 +0,0 @@ - - -man.indent.blurbs -boolean - - -man.indent.blurbs -Adjust indentation of blurbs? - - - - - - - -Description - -If the value of man.indent.blurbs is -non-zero, the width of the left margin for -authorblurb, personblurb, and -contrib output is set to the value of the -man.indent.width parameter -(3n by default). If instead the value of -man.indent.blurbs is zero, the built-in roff -default width (7.2n) is used. - - - diff --git a/docbook-xsl-1.75.2/params/man.indent.lists.xml b/docbook-xsl-1.75.2/params/man.indent.lists.xml deleted file mode 100644 index a2654d0..0000000 --- a/docbook-xsl-1.75.2/params/man.indent.lists.xml +++ /dev/null @@ -1,35 +0,0 @@ - - -man.indent.lists -boolean - - -man.indent.lists -Adjust indentation of lists? - - - - - - - -Description - -If the value of man.indent.lists is -non-zero, the width of the left margin for list items in -itemizedlist, -orderedlist, -variablelist output (and output of some other -lists) is set to the value of the -man.indent.width parameter -(4n by default). If instead the value of -man.indent.lists is zero, the built-in roff -default width (7.2n) is used. - - - diff --git a/docbook-xsl-1.75.2/params/man.indent.refsect.xml b/docbook-xsl-1.75.2/params/man.indent.refsect.xml deleted file mode 100644 index 2865f8c..0000000 --- a/docbook-xsl-1.75.2/params/man.indent.refsect.xml +++ /dev/null @@ -1,70 +0,0 @@ - - -man.indent.refsect -boolean - - -man.indent.refsect -Adjust indentation of refsect* and refsection? - - - - - - - -Description - -If the value of man.indent.refsect is -non-zero, the width of the left margin for -refsect1, refsect2 and -refsect3 contents and titles (and first-level, -second-level, and third-level nested -refsectioninstances) is adjusted by the value of -the man.indent.width parameter. With -man.indent.width set to its default value of -3n, the main results are that: - - - - contents of refsect1 are output with a - left margin of three characters instead the roff default of seven - or eight characters - - - contents of refsect2 are displayed in - console output with a left margin of six characters instead the of - the roff default of seven characters - - - the contents of refsect3 and nested - refsection instances are adjusted - accordingly. - - - -If instead the value of man.indent.refsect is -zero, no margin adjustment is done for refsect* -output. - - - If your content is primarly comprised of - refsect1 and refsect2 content - (or the refsection equivalent) – with few or - no refsect3 or lower nested sections , you may be - able to “conserve†space in your output by setting - man.indent.refsect to a non-zero value. Doing - so will “squeeze†the left margin in such as way as to provide an - additional four characters of “room†per line in - refsect1 output. That extra room may be useful - if, for example, you have many verbatim sections with long lines in - them. - - - - diff --git a/docbook-xsl-1.75.2/params/man.indent.verbatims.xml b/docbook-xsl-1.75.2/params/man.indent.verbatims.xml deleted file mode 100644 index 0436c9e..0000000 --- a/docbook-xsl-1.75.2/params/man.indent.verbatims.xml +++ /dev/null @@ -1,33 +0,0 @@ - - -man.indent.verbatims -boolean - - -man.indent.verbatims -Adjust indentation of verbatims? - - - - - - - -Description - -If the value of man.indent.verbatims is -non-zero, the width of the left margin for output of verbatim -environments (programlisting, -screen, and so on) is set to the value of the -man.indent.width parameter -(3n by default). If instead the value of -man.indent.verbatims is zero, the built-in roff -default width (7.2n) is used. - - - diff --git a/docbook-xsl-1.75.2/params/man.indent.width.xml b/docbook-xsl-1.75.2/params/man.indent.width.xml deleted file mode 100644 index 2d4496d..0000000 --- a/docbook-xsl-1.75.2/params/man.indent.width.xml +++ /dev/null @@ -1,39 +0,0 @@ - - -man.indent.width -length - - -man.indent.width -Specifies width used for adjusted indents - - - - -4 - - - -Description -The man.indent.width parameter specifies -the width used for adjusted indents. The value of -man.indent.width is used for indenting of -lists, verbatims, headings, and elsewhere, depending on whether the -values of certain man.indent.* boolean parameters -are non-zero. - -The value of man.indent.width should -include a valid roff measurement unit (for example, -n or u). The default value of -4n specifies a 4-en width; when viewed on a -console, that amounts to the width of four characters. For details -about roff measurment units, see the Measurements -node in the groff info page. - - - diff --git a/docbook-xsl-1.75.2/params/man.justify.xml b/docbook-xsl-1.75.2/params/man.justify.xml deleted file mode 100644 index 5495d05..0000000 --- a/docbook-xsl-1.75.2/params/man.justify.xml +++ /dev/null @@ -1,52 +0,0 @@ - - -man.justify -boolean - - -man.justify -Justify text to both right and left margins? - - - - -0 - - -Description - -If non-zero, text is justified to both the right and left -margins (or, in roff terminology, "adjusted and filled" to both the -right and left margins). If zero (the default), text is adjusted to -the left margin only -- producing what is traditionally called -"ragged-right" text. - - -The default value for this parameter is zero because justified -text looks good only when it is also hyphenated. Without hyphenation, -excessive amounts of space often end up getting between words, in -order to "pad" lines out to align on the right margin. - -The problem is that groff is not particularly smart about how it -does hyphenation; it can end up hyphenating a lot of things that you -don't want hyphenated. So, disabling both justification and -hyphenation ensures that hyphens won't get inserted where you don't -want to them, and you don't end up with lines containing excessive -amounts of space between words. - -However, if do you decide to set a non-zero value for the -man.justify parameter (to enable -justification), then you should probably also set a non-zero value for -man.hyphenate (to enable hyphenation). - -Yes, these default settings run counter to how most existing man -pages are formatted. But there are some notable exceptions, such as -the perl man pages. - - - diff --git a/docbook-xsl-1.75.2/params/man.output.base.dir.xml b/docbook-xsl-1.75.2/params/man.output.base.dir.xml deleted file mode 100644 index 25113d0..0000000 --- a/docbook-xsl-1.75.2/params/man.output.base.dir.xml +++ /dev/null @@ -1,39 +0,0 @@ - - -man.output.base.dir -uri - - -man.output.base.dir -Specifies separate output directory - - - -man/ - - -Description - -The man.output.base.dir parameter -specifies the base directory into which man-page files are output. The -man.output.subdirs.enabled parameter controls -whether the files are output in subdirectories within the base -directory. - - - The values of the man.output.base.dir - and man.output.subdirs.enabled parameters are - used only if the value of - man.output.in.separate.dir parameter is - non-zero. If the value of the - man.output.in.separate.dir is zero, man-page - files are not output in a separate directory. - - - - diff --git a/docbook-xsl-1.75.2/params/man.output.better.ps.enabled.xml b/docbook-xsl-1.75.2/params/man.output.better.ps.enabled.xml deleted file mode 100644 index 82d15dd..0000000 --- a/docbook-xsl-1.75.2/params/man.output.better.ps.enabled.xml +++ /dev/null @@ -1,61 +0,0 @@ - - -man.output.better.ps.enabled -boolean - - -man.output.better.ps.enabled -Enable enhanced print/PostScript output? - - - -0 - - -Description - -If the value of the -man.output.better.ps.enabled parameter is -non-zero, certain markup is embedded in each generated man page -such that PostScript output from the man -Tps -command for that page will include a number of enhancements -designed to improve the quality of that output. - -If man.output.better.ps.enabled is -zero (the default), no such markup is embedded in generated man -pages, and no enhancements are included in the PostScript -output generated from those man pages by the man - -Tps command. - - - The enhancements provided by this parameter rely on - features that are specific to groff (GNU troff) and that are - not part of “classic†AT&T troff or any of its - derivatives. Therefore, any man pages you generate with this - parameter enabled will be readable only on systems on which - the groff (GNU troff) program is installed, such as GNU/Linux - systems. The pages will not not be - readable on systems on with the classic troff (AT&T - troff) command is installed. - - -The value of this parameter only affects PostScript output - generated from the man command. It has no - effect on output generated using the FO backend. - - - You can generate PostScript output for any man page by - running the following command: - man FOO -Tps > FOO.ps - You can then generate PDF output by running the following - command: - ps2pdf FOO.ps - - - - diff --git a/docbook-xsl-1.75.2/params/man.output.encoding.xml b/docbook-xsl-1.75.2/params/man.output.encoding.xml deleted file mode 100644 index 7154bc8..0000000 --- a/docbook-xsl-1.75.2/params/man.output.encoding.xml +++ /dev/null @@ -1,53 +0,0 @@ - - -man.output.encoding -string - - -man.output.encoding -Encoding used for man-page output - - - - -UTF-8 - - - -Description - -This parameter specifies the encoding to use for files generated -by the manpages stylesheet. Not all processors support specification -of this parameter. - - - If the value of the man.charmap.enabled - parameter is non-zero (the default), keeping the - man.output.encoding parameter at its default - value (UTF-8) or setting it to - UTF-16 does not cause your - man pages to be output in raw UTF-8 or UTF-16 -- because - any Unicode characters for which matches are found in the enabled - character map will be replaced with roff escape sequences before the - final man-page files are generated. - - So if you want to generate "real" UTF-8 man pages, without any - character substitution being performed on your content, you need to - set man.charmap.enabled to zero (which will - completely disable character-map processing). - - You may also need to set - man.charmap.enabled to zero if you want to - output man pages in an encoding other than UTF-8 - or UTF-16. Character-map processing is based on - Unicode character values and may not work with other output - encodings. - - - - diff --git a/docbook-xsl-1.75.2/params/man.output.in.separate.dir.xml b/docbook-xsl-1.75.2/params/man.output.in.separate.dir.xml deleted file mode 100644 index 1492720..0000000 --- a/docbook-xsl-1.75.2/params/man.output.in.separate.dir.xml +++ /dev/null @@ -1,32 +0,0 @@ - - -man.output.in.separate.dir -boolean - - -man.output.in.separate.dir -Output man-page files in separate output directory? - - - - - - - - -Description - -If the value of man.output.in.separate.dir -parameter is non-zero, man-page files are output in a separate -directory, specified by the man.output.base.dir -parameter; otherwise, if the value of -man.output.in.separate.dir is zero, man-page files -are not output in a separate directory. - - - diff --git a/docbook-xsl-1.75.2/params/man.output.lang.in.name.enabled.xml b/docbook-xsl-1.75.2/params/man.output.lang.in.name.enabled.xml deleted file mode 100644 index 1fed3c0..0000000 --- a/docbook-xsl-1.75.2/params/man.output.lang.in.name.enabled.xml +++ /dev/null @@ -1,50 +0,0 @@ - - -man.output.lang.in.name.enabled -boolean - - -man.output.lang.in.name.enabled -Include $LANG value in man-page filename/pathname? - - - - - - - - -Description - - The man.output.lang.in.name.enabled - parameter specifies whether a $lang value is - included in man-page filenames and pathnames. - - If the value of - man.output.lang.in.name.enabled is non-zero, - man-page files are output with the $lang value - included in their filenames or pathnames as follows; - - - - if man.output.subdirs.enabled is - non-zero, each file is output to, e.g., a - man/$lang/man8/foo.8 - pathname - - - if man.output.subdirs.enabled is - zero, each file is output with a - foo.$lang.8 - filename - - - - - - diff --git a/docbook-xsl-1.75.2/params/man.output.manifest.enabled.xml b/docbook-xsl-1.75.2/params/man.output.manifest.enabled.xml deleted file mode 100644 index 5da041c..0000000 --- a/docbook-xsl-1.75.2/params/man.output.manifest.enabled.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - man.output.manifest.enabled - boolean - - - man.output.manifest.enabled - Generate a manifest file? - - - - - - - Description - - If non-zero, a list of filenames for man pages generated by - the stylesheet transformation is written to the file named by the - man.output.manifest.filename parameter. - - - diff --git a/docbook-xsl-1.75.2/params/man.output.manifest.filename.xml b/docbook-xsl-1.75.2/params/man.output.manifest.filename.xml deleted file mode 100644 index f514ede..0000000 --- a/docbook-xsl-1.75.2/params/man.output.manifest.filename.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - man.output.manifest.filename - string - - - man.output.manifest.filename - Name of manifest file - - - - MAN.MANIFEST - - - Description - - The man.output.manifest.filename parameter - specifies the name of the file to which the manpages manifest file - is written (if the value of the - man.output.manifest.enabled parameter is - non-zero). - - - diff --git a/docbook-xsl-1.75.2/params/man.output.quietly.xml b/docbook-xsl-1.75.2/params/man.output.quietly.xml deleted file mode 100644 index acde7f4..0000000 --- a/docbook-xsl-1.75.2/params/man.output.quietly.xml +++ /dev/null @@ -1,37 +0,0 @@ - - -man.output.quietly -boolean - - -man.output.quietly -Suppress filename messages emitted when generating output? - - - - - - - - -Description - -If zero (the default), for each man-page file created, a message -with the name of the file is emitted. If non-zero, the files are -output "quietly" -- that is, the filename messages are -suppressed. - - - If you are processing a large amount of refentry - content, you may be able to speed up processing significantly by - setting a non-zero value for - man.output.quietly. - - - - diff --git a/docbook-xsl-1.75.2/params/man.output.subdirs.enabled.xml b/docbook-xsl-1.75.2/params/man.output.subdirs.enabled.xml deleted file mode 100644 index 876b94e..0000000 --- a/docbook-xsl-1.75.2/params/man.output.subdirs.enabled.xml +++ /dev/null @@ -1,40 +0,0 @@ - - -man.output.subdirs.enabled -boolean - - -man.output.subdirs.enabled -Output man-page files in subdirectories within base output directory? - - - - - - - - -Description - -The man.output.subdirs.enabled parameter -controls whether man-pages files are output in subdirectories within -the base directory specified by the directory specified by the -man.output.base.dir parameter. - - - The values of the man.output.base.dir - and man.output.subdirs.enabled parameters are - used only if the value of - man.output.in.separate.dir parameter is - non-zero. If the value of the - man.output.in.separate.dir is zero, man-page - files are not output in a separate directory. - - - - diff --git a/docbook-xsl-1.75.2/params/man.segtitle.suppress.xml b/docbook-xsl-1.75.2/params/man.segtitle.suppress.xml deleted file mode 100644 index e54336d..0000000 --- a/docbook-xsl-1.75.2/params/man.segtitle.suppress.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -man.segtitle.suppress -boolean - - -man.segtitle.suppress -Suppress display of segtitle contents? - - - - - - - -Description - -If the value of man.segtitle.suppress is -non-zero, then display of segtitle contents is -suppressed in output. - - - diff --git a/docbook-xsl-1.75.2/params/man.string.subst.map.local.post.xml b/docbook-xsl-1.75.2/params/man.string.subst.map.local.post.xml deleted file mode 100644 index b12448d..0000000 --- a/docbook-xsl-1.75.2/params/man.string.subst.map.local.post.xml +++ /dev/null @@ -1,34 +0,0 @@ - - -man.string.subst.map.local.post -string - - -man.string.subst.map.local.post -Specifies “local†string substitutions - - - - - - - - -Description - -Use the man.string.subst.map.local.post -parameter to specify any “local†string substitutions to perform over -the entire roff source for each man page after -performing the string substitutions specified by the man.string.subst.map parameter. - -For details about the format of this parameter, see the -documentation for the man.string.subst.map -parameter. - - - diff --git a/docbook-xsl-1.75.2/params/man.string.subst.map.local.pre.xml b/docbook-xsl-1.75.2/params/man.string.subst.map.local.pre.xml deleted file mode 100644 index 6483752..0000000 --- a/docbook-xsl-1.75.2/params/man.string.subst.map.local.pre.xml +++ /dev/null @@ -1,34 +0,0 @@ - - -man.string.subst.map.local.pre -string - - -man.string.subst.map.local.pre -Specifies “local†string substitutions - - - - - - - - -Description - -Use the man.string.subst.map.local.pre -parameter to specify any “local†string substitutions to perform over -the entire roff source for each man page before -performing the string substitutions specified by the man.string.subst.map parameter. - -For details about the format of this parameter, see the -documentation for the man.string.subst.map -parameter. - - - diff --git a/docbook-xsl-1.75.2/params/man.string.subst.map.xml b/docbook-xsl-1.75.2/params/man.string.subst.map.xml deleted file mode 100644 index 0feed4a..0000000 --- a/docbook-xsl-1.75.2/params/man.string.subst.map.xml +++ /dev/null @@ -1,162 +0,0 @@ - - -man.string.subst.map -rtf - - -man.string.subst.map -Specifies a set of string substitutions - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Description - -The man.string.subst.map parameter -contains a map that specifies a set of -string substitutions to perform over the entire roff source for each -man page, either just before generating final man-page output (that -is, before writing man-page files to disk) or, if the value of the -man.charmap.enabled parameter is non-zero, -before applying the roff character map. - -You can use man.string.subst.map as a -“lightweight†character map to perform “essential†substitutions -- -that is, substitutions that are always performed, -even if the value of the man.charmap.enabled -parameter is zero. For example, you can use it to replace quotation -marks or other special characters that are generated by the DocBook -XSL stylesheets for a particular locale setting (as opposed to those -characters that are actually in source XML documents), or to replace -any special characters that may be automatically generated by a -particular customization of the DocBook XSL stylesheets. - - - Do you not change value of the - man.string.subst.map parameter unless you are - sure what you are doing. First consider adding your - string-substitution mappings to either or both of the following - parameters: - - - man.string.subst.map.local.pre - applied before - man.string.subst.map - - - man.string.subst.map.local.post - applied after - man.string.subst.map - - - By default, both of those parameters contain no - string substitutions. They are intended as a means for you to - specify your own local string-substitution mappings. - - If you remove any of default mappings from the value of the - man.string.subst.map parameter, you are - likely to end up with broken output. And be very careful about adding - anything to it; it’s used for doing string substitution over the - entire roff source of each man page – it causes target strings to be - replaced in roff requests and escapes, not just in the visible - contents of the page. - - - - - - Contents of the substitution map - - The string-substitution map contains one or more - ss:substitution elements, each of which has two - attributes: - - - oldstring - - string to replace - - - - newstring - - string with which to replace oldstring - - - - It may also include XML comments (that is, delimited with - "<!--" and "-->"). - - - - - diff --git a/docbook-xsl-1.75.2/params/man.subheading.divider.enabled.xml b/docbook-xsl-1.75.2/params/man.subheading.divider.enabled.xml deleted file mode 100644 index 1156c5f..0000000 --- a/docbook-xsl-1.75.2/params/man.subheading.divider.enabled.xml +++ /dev/null @@ -1,37 +0,0 @@ - - -man.subheading.divider.enabled -boolean - - -man.subheading.divider.enabled -Add divider comment to roff source before/after subheadings? - - - - -0 - - - -Description - -If the value of the -man.subheading.divider.enabled parameter is -non-zero, the contents of the -man.subheading.divider parameter are used to -add a "divider" before and after subheadings in the roff -output. The divider is not visisble in the -rendered man page; it is added as a comment, in the source, -simply for the purpose of increasing reability of the source. - -If man.subheading.divider.enabled is zero -(the default), the subheading divider is suppressed. - - - diff --git a/docbook-xsl-1.75.2/params/man.subheading.divider.xml b/docbook-xsl-1.75.2/params/man.subheading.divider.xml deleted file mode 100644 index dbd2669..0000000 --- a/docbook-xsl-1.75.2/params/man.subheading.divider.xml +++ /dev/null @@ -1,37 +0,0 @@ - - -man.subheading.divider -string - - -man.subheading.divider -Specifies string to use as divider comment before/after subheadings - - - - -======================================================================== - - - -Description - -If the value of the -man.subheading.divider.enabled parameter is -non-zero, the contents of the -man.subheading.divider parameter are used to -add a "divider" before and after subheadings in the roff -output. The divider is not visisble in the -rendered man page; it is added as a comment, in the source, -simply for the purpose of increasing reability of the source. - -If man.subheading.divider.enabled is zero -(the default), the subheading divider is suppressed. - - - diff --git a/docbook-xsl-1.75.2/params/man.table.footnotes.divider.xml b/docbook-xsl-1.75.2/params/man.table.footnotes.divider.xml deleted file mode 100644 index 2ad4608..0000000 --- a/docbook-xsl-1.75.2/params/man.table.footnotes.divider.xml +++ /dev/null @@ -1,29 +0,0 @@ - - -man.table.footnotes.divider -string - - -man.table.footnotes.divider -Specifies divider string that appears before table footnotes - - - - ----- - - - -Description - -In each table that contains footenotes, the string specified by -the man.table.footnotes.divider parameter is -output before the list of footnotes for the table. - - - diff --git a/docbook-xsl-1.75.2/params/man.th.extra1.suppress.xml b/docbook-xsl-1.75.2/params/man.th.extra1.suppress.xml deleted file mode 100644 index c0241d2..0000000 --- a/docbook-xsl-1.75.2/params/man.th.extra1.suppress.xml +++ /dev/null @@ -1,32 +0,0 @@ - - -man.th.extra1.suppress -boolean - - -man.th.extra1.suppress -Suppress extra1 part of header/footer? - - - - -0 - - -Description - -If the value of man.th.extra1.suppress is -non-zero, then the extra1 part of the -.TH title line header/footer is suppressed. - -The content of the extra1 field is almost -always displayed in the center footer of the page and is, universally, -a date. - - - diff --git a/docbook-xsl-1.75.2/params/man.th.extra2.max.length.xml b/docbook-xsl-1.75.2/params/man.th.extra2.max.length.xml deleted file mode 100644 index d3513ec..0000000 --- a/docbook-xsl-1.75.2/params/man.th.extra2.max.length.xml +++ /dev/null @@ -1,43 +0,0 @@ - - -man.th.extra2.max.length -integer - - -man.th.extra2.max.length -Maximum length of extra2 in header/footer - - - - -30 - - - -Description - -Specifies the maximum permitted length of the -extra2 part of the man-page part of the -.TH title line header/footer. If the -extra2 content exceeds the maxiumum specified, it -is truncated down to the maximum permitted length. - -The content of the extra2 field is usually -displayed in the left footer of the page and is typically "source" -data indicating the software system or product that the item -documented in the man page belongs to, often in the form -Name Version; -for example, "GTK+ 1.2" (from the gtk-options(7) -man page). - -The default value for this parameter is reasonable but somewhat -arbitrary. If you are processing pages with long "source" information, -you may want to experiment with changing the value in order to achieve -the correct aesthetic results. - - diff --git a/docbook-xsl-1.75.2/params/man.th.extra2.suppress.xml b/docbook-xsl-1.75.2/params/man.th.extra2.suppress.xml deleted file mode 100644 index 0fcd3ed..0000000 --- a/docbook-xsl-1.75.2/params/man.th.extra2.suppress.xml +++ /dev/null @@ -1,44 +0,0 @@ - - -man.th.extra2.suppress -boolean - - -man.th.extra2.suppress -Suppress extra2 part of header/footer? - - - - -0 - - -Description - -If the value of man.th.extra2.suppress is -non-zero, then the extra2 part of the -.TH title line header/footer is suppressed. - -The content of the extra2 field is usually -displayed in the left footer of the page and is typically "source" -data, often in the form -Name Version; -for example, "GTK+ 1.2" (from the gtk-options(7) -man page). - - - You can use the - refentry.source.name.suppress and - refentry.version.suppress parameters to - independently suppress the Name and - Version parts of the - extra2 field. - - - - diff --git a/docbook-xsl-1.75.2/params/man.th.extra3.max.length.xml b/docbook-xsl-1.75.2/params/man.th.extra3.max.length.xml deleted file mode 100644 index 77e55e4..0000000 --- a/docbook-xsl-1.75.2/params/man.th.extra3.max.length.xml +++ /dev/null @@ -1,42 +0,0 @@ - - -man.th.extra3.max.length -integer - - -man.th.extra3.max.length -Maximum length of extra3 in header/footer - - - - -30 - - - -Description - -Specifies the maximum permitted length of the -extra3 part of the man-page .TH -title line header/footer. If the extra3 content -exceeds the maxiumum specified, it is truncated down to the maximum -permitted length. - -The content of the extra3 field is usually -displayed in the middle header of the page and is typically a "manual -name"; for example, "GTK+ User's Manual" (from the -gtk-options(7) man page). - -The default value for this parameter is reasonable but somewhat -arbitrary. If you are processing pages with long "manual names" -- or -especially if you are processing pages that have both long "title" -parts (command/function, etc. names) and long -manual names -- you may want to experiment with changing the value in -order to achieve the correct aesthetic results. - - diff --git a/docbook-xsl-1.75.2/params/man.th.extra3.suppress.xml b/docbook-xsl-1.75.2/params/man.th.extra3.suppress.xml deleted file mode 100644 index 81d6c0d..0000000 --- a/docbook-xsl-1.75.2/params/man.th.extra3.suppress.xml +++ /dev/null @@ -1,34 +0,0 @@ - - -man.th.extra3.suppress -boolean - - -man.th.extra3.suppress -Suppress extra3 part of header/footer? - - - - -0 - - -Description - -If the value of man.th.extra3.suppress is -non-zero, then the extra3 part of the -.TH title line header/footer is -suppressed. - -The content of the extra3 field is usually -displayed in the middle header of the page and is typically a "manual -name"; for example, "GTK+ User's Manual" (from the -gtk-options(7) man page). - - - diff --git a/docbook-xsl-1.75.2/params/man.th.title.max.length.xml b/docbook-xsl-1.75.2/params/man.th.title.max.length.xml deleted file mode 100644 index 7fdf0bf..0000000 --- a/docbook-xsl-1.75.2/params/man.th.title.max.length.xml +++ /dev/null @@ -1,63 +0,0 @@ - - -man.th.title.max.length -integer - - -man.th.title.max.length -Maximum length of title in header/footer - - - - -20 - - - -Description - -Specifies the maximum permitted length of the title part of the -man-page .TH title line header/footer. If the title -exceeds the maxiumum specified, it is truncated down to the maximum -permitted length. - -Details - - -Every man page generated using the DocBook stylesheets has a -title line, specified using the TH roff -macro. Within that title line, there is always, at a minimum, a title, -followed by a section value (representing a man "section" -- usually -just a number). - -The title and section are displayed, together, in the visible -header of each page. Where in the header they are displayed depends on -OS the man page is viewed on, and on what version of nroff/groff/man -is used for viewing the page. But, at a minimum and across all -systems, the title and section are displayed on the right-hand column -of the header. On many systems -- those with a modern groff, including -Linux systems -- they are displayed twice: both in the left and right -columns of the header. - -So if the length of the title exceeds a certain percentage of -the column width in which the page is viewed, the left and right -titles can end up overlapping, making them unreadable, or breaking to -another line, which doesn't look particularly good. - -So the stylesheets provide the -man.th.title.max.length parameter as a means -for truncating titles that exceed the maximum length that can be -viewing properly in a page header. - -The default value is reasonable but somewhat arbitrary. If you -have pages with long titles, you may want to experiment with changing -the value in order to achieve the correct aesthetic results. - - - - diff --git a/docbook-xsl-1.75.2/params/manifest.in.base.dir.xml b/docbook-xsl-1.75.2/params/manifest.in.base.dir.xml deleted file mode 100644 index d002767..0000000 --- a/docbook-xsl-1.75.2/params/manifest.in.base.dir.xml +++ /dev/null @@ -1,29 +0,0 @@ - - -manifest.in.base.dir -boolean - - -manifest.in.base.dir -Should the manifest file be written into base.dir? - - - - - - - - -Description - -If non-zero, the manifest file as well as project files for HTML Help and -Eclipse Help are written into base.dir instead -of the current directory. - - - diff --git a/docbook-xsl-1.75.2/params/manifest.xml b/docbook-xsl-1.75.2/params/manifest.xml deleted file mode 100644 index 96d092a..0000000 --- a/docbook-xsl-1.75.2/params/manifest.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - manifest - string - - - manifest - Name of manifest file - - - - - HTML.manifest - - - - Description - - The name of the file to which a manifest is written (if the - value of the generate.manifest parameter - is non-zero). - - - diff --git a/docbook-xsl-1.75.2/params/manual.toc.xml b/docbook-xsl-1.75.2/params/manual.toc.xml deleted file mode 100644 index 7a640c7..0000000 --- a/docbook-xsl-1.75.2/params/manual.toc.xml +++ /dev/null @@ -1,29 +0,0 @@ - - -manual.toc -string - - -manual.toc -An explicit TOC to be used for the TOC - - - - - - - - -Description - -The manual.toc identifies an explicit TOC that -will be used for building the printed TOC. - - - - diff --git a/docbook-xsl-1.75.2/params/margin.note.float.type.xml b/docbook-xsl-1.75.2/params/margin.note.float.type.xml deleted file mode 100644 index 0b34230..0000000 --- a/docbook-xsl-1.75.2/params/margin.note.float.type.xml +++ /dev/null @@ -1,77 +0,0 @@ - - -margin.note.float.type -list -none -before -left -start -right -end -inside -outside - - -margin.note.float.type -Select type of float for margin note customizations - - - - -none - - - -Description - -Selects the type of float for margin notes. -DocBook does not define a margin note element, so this -feature must be implemented as a customization of the stylesheet. -See margin.note.properties for -an example. - - - -If margin.note.float.type is -none, then -no float is used. - - - -If margin.note.float.type is -before, then -the float appears at the top of the page. On some processors, -that may be the next page rather than the current page. - - - -If margin.note.float.type is -left or -start, then -a left side float is used. - - - -If margin.note.float.type is -right or -end, then -a right side float is used. - - - -If your XSL-FO processor supports floats positioned on the -inside or -outside -of double-sided pages, then you have those two -options for side floats as well. - - - - - - diff --git a/docbook-xsl-1.75.2/params/margin.note.properties.xml b/docbook-xsl-1.75.2/params/margin.note.properties.xml deleted file mode 100644 index 02dc20e..0000000 --- a/docbook-xsl-1.75.2/params/margin.note.properties.xml +++ /dev/null @@ -1,54 +0,0 @@ - - -margin.note.properties -attribute set - - -margin.note.properties -Attribute set for margin.note properties - - - - - - 90% - start - - - - -Description - -The styling for margin notes. -By default, margin notes are not implemented for any -element. A stylesheet customization is needed to make -use of this attribute-set. - -You can use a template named floater -to create the customization. -That template can create side floats by specifying the -content and characteristics as template parameters. - - -For example: -<xsl:template match="para[@role='marginnote']"> - <xsl:call-template name="floater"> - <xsl:with-param name="position"> - <xsl:value-of select="$margin.note.float.type"/> - </xsl:with-param> - <xsl:with-param name="width"> - <xsl:value-of select="$margin.note.width"/> - </xsl:with-param> - <xsl:with-param name="content"> - <xsl:apply-imports/> - </xsl:with-param> - </xsl:call-template> -</xsl:template> - - - diff --git a/docbook-xsl-1.75.2/params/margin.note.title.properties.xml b/docbook-xsl-1.75.2/params/margin.note.title.properties.xml deleted file mode 100644 index 84399bb..0000000 --- a/docbook-xsl-1.75.2/params/margin.note.title.properties.xml +++ /dev/null @@ -1,32 +0,0 @@ - - -margin.note.title.properties -attribute set - - -margin.note.title.properties -Attribute set for margin note titles - - - - - - bold - false - start - always - - - - -Description - -The styling for margin note titles. - - - diff --git a/docbook-xsl-1.75.2/params/margin.note.width.xml b/docbook-xsl-1.75.2/params/margin.note.width.xml deleted file mode 100644 index 3ee0aa4..0000000 --- a/docbook-xsl-1.75.2/params/margin.note.width.xml +++ /dev/null @@ -1,35 +0,0 @@ - - -margin.note.width -length - - -margin.note.width -Set the default width for margin notes - - - - -1in - - - -Description - -Sets the default width for margin notes when used as a side -float. The width determines the degree to which the margin note block -intrudes into the text area. - -If margin.note.float.type is -before or -none, then -this parameter is ignored. - - - - diff --git a/docbook-xsl-1.75.2/params/marker.section.level.xml b/docbook-xsl-1.75.2/params/marker.section.level.xml deleted file mode 100644 index 70bd4fd..0000000 --- a/docbook-xsl-1.75.2/params/marker.section.level.xml +++ /dev/null @@ -1,50 +0,0 @@ - - -marker.section.level -integer - - -marker.section.level -Control depth of sections shown in running headers or footers - - - - -2 - - - -Description - -The marker.section.level parameter -controls the depth of section levels that may be displayed -in running headers and footers. For example, if the value -is 2 (the default), then titles from sect1 and -sect2 or equivalent section -elements are candidates for use in running headers and -footers. - -Each candidate title is marked in the FO output with a -<fo:marker marker-class-name="section.head.marker"> -element. - -In order for such titles to appear in headers -or footers, the header.content -or footer.content template -must be customized to retrieve the marker using -an output element such as: - - -<fo:retrieve-marker retrieve-class-name="section.head.marker" - retrieve-position="first-including-carryover" - retrieve-boundary="page-sequence"/> - - - - - diff --git a/docbook-xsl-1.75.2/params/menuchoice.menu.separator.xml b/docbook-xsl-1.75.2/params/menuchoice.menu.separator.xml deleted file mode 100644 index cf142e2..0000000 --- a/docbook-xsl-1.75.2/params/menuchoice.menu.separator.xml +++ /dev/null @@ -1,42 +0,0 @@ - - -menuchoice.menu.separator -string - - -menuchoice.menu.separator -Separator between items of a menuchoice -with guimenuitem or -guisubmenu - - - - - → - - - -Description - -Separator used to connect items of a menuchoice with -guimenuitem or guisubmenu. Other elements -are linked with menuchoice.separator. - -The default value is &#x2192;, which is the -&rarr; (right arrow) character entity. -The current FOP (0.20.5) requires setting the font-family -explicitly. - -The default value also includes spaces around the arrow, -which will allow a line to break. Replace the spaces with -&#xA0; (nonbreaking space) if you don't want those -spaces to break. - - - - diff --git a/docbook-xsl-1.75.2/params/menuchoice.separator.xml b/docbook-xsl-1.75.2/params/menuchoice.separator.xml deleted file mode 100644 index 3034f25..0000000 --- a/docbook-xsl-1.75.2/params/menuchoice.separator.xml +++ /dev/null @@ -1,32 +0,0 @@ - - -menuchoice.separator -string - - -menuchoice.separator -Separator between items of a menuchoice -other than guimenuitem and -guisubmenu - - - - -+ - - - -Description - -Separator used to connect items of a menuchoice other -than guimenuitem and guisubmenu. The latter -elements are linked with menuchoice.menu.separator. - - - - diff --git a/docbook-xsl-1.75.2/params/minus.image.xml b/docbook-xsl-1.75.2/params/minus.image.xml deleted file mode 100644 index ea86e23..0000000 --- a/docbook-xsl-1.75.2/params/minus.image.xml +++ /dev/null @@ -1,29 +0,0 @@ - - -minus.image -filename - - -minus.image -Minus image - - - - -toc/open.png - - - -Description - -Specifies the filename of the minus image; the image used in a -dynamic ToC to indicate that a section -can be collapsed. - - - diff --git a/docbook-xsl-1.75.2/params/monospace.font.family.xml b/docbook-xsl-1.75.2/params/monospace.font.family.xml deleted file mode 100644 index e91548b..0000000 --- a/docbook-xsl-1.75.2/params/monospace.font.family.xml +++ /dev/null @@ -1,29 +0,0 @@ - - -monospace.font.family -string - - -monospace.font.family -The default font family for monospace environments - - - - -monospace - - - -Description - -The monospace font family is used for verbatim environments -(program listings, screens, etc.). - - - - diff --git a/docbook-xsl-1.75.2/params/monospace.properties.xml b/docbook-xsl-1.75.2/params/monospace.properties.xml deleted file mode 100644 index 0a8425b..0000000 --- a/docbook-xsl-1.75.2/params/monospace.properties.xml +++ /dev/null @@ -1,38 +0,0 @@ - - -monospace.properties -attribute set - - -monospace.properties -Properties of monospaced content - - - - - - - - - - - - -Description - -Specifies the font name for monospaced output. This property set -used to set the font-size as well, but that doesn't work very well -when different fonts are used (as they are in titles and paragraphs, -for example). - -If you want to set the font-size in a customization layer, it's -probably going to be more appropriate to set font-size-adjust, if your -formatter supports it. - - - diff --git a/docbook-xsl-1.75.2/params/monospace.verbatim.font.width.xml b/docbook-xsl-1.75.2/params/monospace.verbatim.font.width.xml deleted file mode 100644 index 88b88dc..0000000 --- a/docbook-xsl-1.75.2/params/monospace.verbatim.font.width.xml +++ /dev/null @@ -1,40 +0,0 @@ - - -monospace.verbatim.font.width -length - - -monospace.verbatim.font.width -Width of a single monospace font character - - - - -0.60em - - - -Description - -Specifies with em units the width of a single character -of the monospace font. The default value is 0.6em. - -This parameter is only used when a screen -or programlisting element has a -width attribute, which is -expressed as a plain integer to indicate the maximum character count -of each line. -To convert this character count to an actual maximum width -measurement, the width of the font characters must be provided. -Different monospace fonts have different character width, -so this parameter should be adjusted to fit the -monospace font being used. - - - - diff --git a/docbook-xsl-1.75.2/params/monospace.verbatim.properties.xml b/docbook-xsl-1.75.2/params/monospace.verbatim.properties.xml deleted file mode 100644 index 3d7ca3d..0000000 --- a/docbook-xsl-1.75.2/params/monospace.verbatim.properties.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -monospace.verbatim.properties -attribute set - - -monospace.verbatim.properties -What font and size do you want for monospaced content? - - - - - - start - no-wrap - - - -Description -Specify the font name and size you want for monospaced output - - diff --git a/docbook-xsl-1.75.2/params/multiframe.bottom.bgcolor.xml b/docbook-xsl-1.75.2/params/multiframe.bottom.bgcolor.xml deleted file mode 100644 index f0667d7..0000000 --- a/docbook-xsl-1.75.2/params/multiframe.bottom.bgcolor.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -multiframe.bottom.bgcolor -color - - -multiframe.bottom.bgcolor -Background color for bottom navigation frame - - - - -white - - - -Description - -Specifies the background color of the bottom navigation frame when -multiframe is enabled. - - - diff --git a/docbook-xsl-1.75.2/params/multiframe.navigation.height.xml b/docbook-xsl-1.75.2/params/multiframe.navigation.height.xml deleted file mode 100644 index 06dbc1c..0000000 --- a/docbook-xsl-1.75.2/params/multiframe.navigation.height.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -multiframe.navigation.height -length - - -multiframe.navigation.height -Height of navigation frames - - - - -40 - - - -Description - -Specifies the height of the navigation frames in pixels when -multiframe is enabled. - - - diff --git a/docbook-xsl-1.75.2/params/multiframe.top.bgcolor.xml b/docbook-xsl-1.75.2/params/multiframe.top.bgcolor.xml deleted file mode 100644 index 4814fc8..0000000 --- a/docbook-xsl-1.75.2/params/multiframe.top.bgcolor.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -multiframe.top.bgcolor -color - - -multiframe.top.bgcolor -Background color for top navigation frame - - - - -white - - - -Description - -Specifies the background color of the top navigation frame when -multiframe is enabled. - - - diff --git a/docbook-xsl-1.75.2/params/multiframe.xml b/docbook-xsl-1.75.2/params/multiframe.xml deleted file mode 100644 index b4fbf37..0000000 --- a/docbook-xsl-1.75.2/params/multiframe.xml +++ /dev/null @@ -1,31 +0,0 @@ - - -multiframe -boolean - - -multiframe -Use multiple frames for slide bodies? - - - - - - - - -Description - -If non-zero, multiple frames are used for the body of each -slide. This is one way of forcing the slide navigation elements to -appear in constant locations. The other way is with overlays. The overlay and -multiframe parameters are mutually -exclusive. - - - diff --git a/docbook-xsl-1.75.2/params/nav.separator.xml b/docbook-xsl-1.75.2/params/nav.separator.xml deleted file mode 100644 index e3695f9..0000000 --- a/docbook-xsl-1.75.2/params/nav.separator.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -nav.separator -boolean - - -nav.separator -Output separator between navigation and body? - - - - - - - - -Description - -If non-zero, a separator (<HR>) is -added between the navigation links and the content of each slide. - - - diff --git a/docbook-xsl-1.75.2/params/nav.table.summary.xml b/docbook-xsl-1.75.2/params/nav.table.summary.xml deleted file mode 100644 index 1c1559b..0000000 --- a/docbook-xsl-1.75.2/params/nav.table.summary.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -nav.table.summary -string - - -nav.table.summary -HTML Table summary attribute value for navigation tables - - - - -Navigation - - - -Description -The value of this parameter is used as the value of the table -summary attribute for the navigation table. -Only applies with the tabular presentation is being used. - - diff --git a/docbook-xsl-1.75.2/params/navbgcolor.xml b/docbook-xsl-1.75.2/params/navbgcolor.xml deleted file mode 100644 index c6fcece..0000000 --- a/docbook-xsl-1.75.2/params/navbgcolor.xml +++ /dev/null @@ -1,26 +0,0 @@ - - -navbgcolor -color - - -navbgcolor -The background color of the navigation TOC - - - - -#4080FF - - - -Description -The background color of the navigation TOC. -Only applies with the tabular presentation is being used. - - diff --git a/docbook-xsl-1.75.2/params/navbodywidth.xml b/docbook-xsl-1.75.2/params/navbodywidth.xml deleted file mode 100644 index b93cf82..0000000 --- a/docbook-xsl-1.75.2/params/navbodywidth.xml +++ /dev/null @@ -1,26 +0,0 @@ - - -navbodywidth -length - - -navbodywidth -Specifies the width of the navigation table body - - - - - - - - -Description -The width of the body column. -Only applies with the tabular presentation is being used. - - diff --git a/docbook-xsl-1.75.2/params/navig.graphics.extension.xml b/docbook-xsl-1.75.2/params/navig.graphics.extension.xml deleted file mode 100644 index 416e0c4..0000000 --- a/docbook-xsl-1.75.2/params/navig.graphics.extension.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -navig.graphics.extension -string - - -navig.graphics.extension -Extension for navigational graphics - - - - -.gif - - - -Description - -Sets the filename extension to use on navigational graphics used -in the headers and footers of chunked HTML. - - - diff --git a/docbook-xsl-1.75.2/params/navig.graphics.path.xml b/docbook-xsl-1.75.2/params/navig.graphics.path.xml deleted file mode 100644 index 373208e..0000000 --- a/docbook-xsl-1.75.2/params/navig.graphics.path.xml +++ /dev/null @@ -1,30 +0,0 @@ - - -navig.graphics.path -string - - -navig.graphics.path -Path to navigational graphics - - - - -images/ - - - -Description - -Sets the path, probably relative to the directory where the HTML -files are created, to the navigational graphics used in the -headers and footers of chunked HTML. - - - - diff --git a/docbook-xsl-1.75.2/params/navig.graphics.xml b/docbook-xsl-1.75.2/params/navig.graphics.xml deleted file mode 100644 index 03e28b6..0000000 --- a/docbook-xsl-1.75.2/params/navig.graphics.xml +++ /dev/null @@ -1,31 +0,0 @@ - - -navig.graphics -boolean - - -navig.graphics -Use graphics in navigational headers and footers? - - - - - - - - -Description - -If non-zero, the navigational headers and footers in chunked -HTML are presented in an alternate style that uses graphical icons for -Next, Previous, Up, and Home. Default graphics are provided in the -distribution. If zero, text is used instead of graphics. - - - - diff --git a/docbook-xsl-1.75.2/params/navig.showtitles.xml b/docbook-xsl-1.75.2/params/navig.showtitles.xml deleted file mode 100644 index a4eb3ff..0000000 --- a/docbook-xsl-1.75.2/params/navig.showtitles.xml +++ /dev/null @@ -1,32 +0,0 @@ - - -navig.showtitles -boolean - - -navig.showtitles -Display titles in HTML headers and footers? - - - -1 - - -Description - -If non-zero, -the headers and footers of chunked HTML -display the titles of the next and previous chunks, -along with the words 'Next' and 'Previous' (or the -equivalent graphical icons if navig.graphics is true). -If false (zero), then only the words 'Next' and 'Previous' -(or the icons) are displayed. - - - - diff --git a/docbook-xsl-1.75.2/params/navtocwidth.xml b/docbook-xsl-1.75.2/params/navtocwidth.xml deleted file mode 100644 index 0d21ae0..0000000 --- a/docbook-xsl-1.75.2/params/navtocwidth.xml +++ /dev/null @@ -1,26 +0,0 @@ - - -navtocwidth -length - - -navtocwidth -Specifies the width of the navigation table TOC - - - - -220 - - - -Description -The width, in pixels, of the navigation column. -Only applies with the tabular presentation is being used. - - diff --git a/docbook-xsl-1.75.2/params/next.image.xml b/docbook-xsl-1.75.2/params/next.image.xml deleted file mode 100644 index 4dbd60a..0000000 --- a/docbook-xsl-1.75.2/params/next.image.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -next.image -filename - - -next.image -Right-arrow image - - - - -active/nav-next.png - - - -Description - -Specifies the filename of the right-pointing navigation arrow. - - - diff --git a/docbook-xsl-1.75.2/params/no.home.image.xml b/docbook-xsl-1.75.2/params/no.home.image.xml deleted file mode 100644 index 2f4ecd8..0000000 --- a/docbook-xsl-1.75.2/params/no.home.image.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -no.home.image -filename - - -no.home.image -Inactive home image - - - - -inactive/nav-home.png - - - -Description - -Specifies the filename of the inactive home navigation icon. - - - diff --git a/docbook-xsl-1.75.2/params/no.next.image.xml b/docbook-xsl-1.75.2/params/no.next.image.xml deleted file mode 100644 index 966fe26..0000000 --- a/docbook-xsl-1.75.2/params/no.next.image.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -no.next.image -filename - - -no.next.image -Inactive right-arrow image - - - - -inactive/nav-next.png - - - -Description - -Specifies the filename of the inactive right-pointing navigation arrow. - - - diff --git a/docbook-xsl-1.75.2/params/no.prev.image.xml b/docbook-xsl-1.75.2/params/no.prev.image.xml deleted file mode 100644 index 7632231..0000000 --- a/docbook-xsl-1.75.2/params/no.prev.image.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -no.prev.image -filename - - -no.prev.image -Inactive left-arrow image - - - - -inactive/nav-prev.png - - - -Description - -Specifies the filename of the inactive left-pointing navigation arrow. - - - diff --git a/docbook-xsl-1.75.2/params/no.toc.image.xml b/docbook-xsl-1.75.2/params/no.toc.image.xml deleted file mode 100644 index 43e9eea..0000000 --- a/docbook-xsl-1.75.2/params/no.toc.image.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -no.toc.image -filename - - -no.toc.image -Inactive ToC image - - - - -inactive/nav-toc.png - - - -Description - -Specifies the filename of the inactive ToC navigation icon. - - - diff --git a/docbook-xsl-1.75.2/params/no.up.image.xml b/docbook-xsl-1.75.2/params/no.up.image.xml deleted file mode 100644 index a19a34d..0000000 --- a/docbook-xsl-1.75.2/params/no.up.image.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -no.up.image -filename - - -no.up.image -Inactive up-arrow image - - - - -inactive/nav-up.png - - - -Description - -Specifies the filename of the inactive upward-pointing navigation arrow. - - - diff --git a/docbook-xsl-1.75.2/params/nominal.image.depth.xml b/docbook-xsl-1.75.2/params/nominal.image.depth.xml deleted file mode 100644 index a4e615f..0000000 --- a/docbook-xsl-1.75.2/params/nominal.image.depth.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -nominal.image.depth -length - - -nominal.image.depth -Nominal image depth - - - - - - - - -Description - -See nominal.image.width. - - - diff --git a/docbook-xsl-1.75.2/params/nominal.image.width.xml b/docbook-xsl-1.75.2/params/nominal.image.width.xml deleted file mode 100644 index bfa989a..0000000 --- a/docbook-xsl-1.75.2/params/nominal.image.width.xml +++ /dev/null @@ -1,43 +0,0 @@ - - -nominal.image.width -length - - -nominal.image.width -The nominal image width - - - - - - - - -Description - -Graphic widths expressed as a percentage are problematic. In the -following discussion, we speak of width and contentwidth, but -the same issues apply to depth and contentdepth. - -A width of 50% means "half of the available space for the image." -That's fine. But note that in HTML, this is a dynamic property and -the image size will vary if the browser window is resized. - -A contentwidth of 50% means "half of the actual image width". -But what does that mean if the stylesheets cannot assess the image's -actual size? Treating this as a width of 50% is one possibility, but -it produces behavior (dynamic scaling) that seems entirely out of -character with the meaning. - -Instead, the stylesheets define a -nominal.image.width and convert percentages to -actual values based on that nominal size. - - - diff --git a/docbook-xsl-1.75.2/params/nominal.table.width.xml b/docbook-xsl-1.75.2/params/nominal.table.width.xml deleted file mode 100644 index f5dcfb9..0000000 --- a/docbook-xsl-1.75.2/params/nominal.table.width.xml +++ /dev/null @@ -1,30 +0,0 @@ - - -nominal.table.width -length - - -nominal.table.width -The (absolute) nominal width of tables - - - - -6in - - - -Description - -In order to convert CALS column widths into HTML column widths, it -is sometimes necessary to have an absolute table width to use for conversion -of mixed absolute and relative widths. This value must be an absolute -length (not a percentage). - - - diff --git a/docbook-xsl-1.75.2/params/nongraphical.admonition.properties.xml b/docbook-xsl-1.75.2/params/nongraphical.admonition.properties.xml deleted file mode 100644 index ba8a06a..0000000 --- a/docbook-xsl-1.75.2/params/nongraphical.admonition.properties.xml +++ /dev/null @@ -1,41 +0,0 @@ - - -nongraphical.admonition.properties -attribute set - - -nongraphical.admonition.properties -To add properties to the outer block of a nongraphical admonition. - - - - - 0.8em - 1em - 1.2em - 0.25in - 0.25in - - - -Description -These properties are added to the outer block containing the -entire nongraphical admonition, including its title. -It is used when the parameter -admon.graphics is set to zero. -Use this attribute-set to set the space above and below, -and any indent for the whole admonition. - -In addition to these properties, a nongraphical admonition -also applies the admonition.title.properties -attribute-set to the title, and the -admonition.properties attribute-set -to the rest of the content. - - - diff --git a/docbook-xsl-1.75.2/params/normal.para.spacing.xml b/docbook-xsl-1.75.2/params/normal.para.spacing.xml deleted file mode 100644 index bb2a6c0..0000000 --- a/docbook-xsl-1.75.2/params/normal.para.spacing.xml +++ /dev/null @@ -1,26 +0,0 @@ - - -normal.para.spacing -attribute set - - -normal.para.spacing -What space do you want between normal paragraphs - - - - - 1em - 0.8em - 1.2em - - -Description -Specify the spacing required between normal paragraphs - - diff --git a/docbook-xsl-1.75.2/params/olink.base.uri.xml b/docbook-xsl-1.75.2/params/olink.base.uri.xml deleted file mode 100644 index d88dd62..0000000 --- a/docbook-xsl-1.75.2/params/olink.base.uri.xml +++ /dev/null @@ -1,35 +0,0 @@ - - -olink.base.uri -uri - - -olink.base.uri -Base URI used in olink hrefs - - - - - -Description - -When cross reference data is collected for resolving olinks, it -may be necessary to prepend a base URI to each target's href. This -parameter lets you set that base URI when cross reference data is -collected. This feature is needed when you want to link to a document -that is processed without chunking. The output filename for such a -document is not known to the XSL stylesheet; the only target -information consists of fragment identifiers such as -#idref. To enable the resolution of olinks between -documents, you should pass the name of the HTML output file as the -value of this parameter. Then the hrefs recorded in the cross -reference data collection look like -outfile.html#idref, which can be reached as links -from other documents. - - diff --git a/docbook-xsl-1.75.2/params/olink.debug.xml b/docbook-xsl-1.75.2/params/olink.debug.xml deleted file mode 100644 index e49a176..0000000 --- a/docbook-xsl-1.75.2/params/olink.debug.xml +++ /dev/null @@ -1,36 +0,0 @@ - - -olink.debug -boolean - - -olink.debug -Turn on debugging messages for olinks - - - - - - - - -Description - -If non-zero, then each olink will generate several -messages about how it is being resolved during processing. -This is useful when an olink does not resolve properly -and the standard error messages are not sufficient to -find the problem. - - -You may need to read through the olink XSL templates -to understand the context for some of the debug messages. - - - - diff --git a/docbook-xsl-1.75.2/params/olink.doctitle.xml b/docbook-xsl-1.75.2/params/olink.doctitle.xml deleted file mode 100644 index 356347d..0000000 --- a/docbook-xsl-1.75.2/params/olink.doctitle.xml +++ /dev/null @@ -1,146 +0,0 @@ - - -olink.doctitle -list -no -yes -maybe - - -olink.doctitle -show the document title for external olinks? - - - -no - - -Description - -When olinks between documents are resolved, the generated text -may not make it clear that the reference is to another document. -It is possible for the stylesheets to append the other document's -title to external olinks. For this to happen, two parameters must -be set. - - -This olink.doctitle parameter -should be set to either yes or maybe -to enable this feature. - - - -And you should also set the current.docid -parameter to the document id for the document currently -being processed for output. - - - - - -Then if an olink's targetdoc id differs from -the current.docid value, the stylesheet knows -that it is a reference to another document and can -append the target document's -title to the generated olink text. - -The text for the target document's title is copied from the -olink database from the ttl element -of the top-level div for that document. -If that ttl element is missing or empty, -no title is output. - - -The supported values for olink.doctitle are: - - - -yes - - -Always insert the title to the target document if it is not -the current document. - - - - -no - - -Never insert the title to the target document, even if requested -in an xrefstyle attribute. - - - - -maybe - - -Only insert the title to the target document, if requested -in an xrefstyle attribute. - - - - -An xrefstyle attribute -may override the global setting for individual olinks. -The following values are supported in an -xrefstyle -attribute using the select: syntax: - - - - -docname - - -Insert the target document name for this olink using the -docname gentext template, but only -if the value of olink.doctitle -is not no. - - - - -docnamelong - - -Insert the target document name for this olink using the -docnamelong gentext template, but only -if the value of olink.doctitle -is not no. - - - - -nodocname - - -Omit the target document name even if -the value of olink.doctitle -is yes. - - - - -Another way of inserting the target document name -for a single olink is to employ an -xrefstyle -attribute using the template: syntax. -The %o placeholder (the letter o, not zero) -in such a template -will be filled in with the target document's title when it is processed. -This will occur regardless of -the value of olink.doctitle. - -Note that prior to version 1.66 of the XSL stylesheets, -the allowed values for this parameter were 0 and 1. Those -values are still supported and mapped to 'no' and 'yes', respectively. - - - diff --git a/docbook-xsl-1.75.2/params/olink.fragid.xml b/docbook-xsl-1.75.2/params/olink.fragid.xml deleted file mode 100644 index 3258038..0000000 --- a/docbook-xsl-1.75.2/params/olink.fragid.xml +++ /dev/null @@ -1,23 +0,0 @@ - - -olink.fragid -string - - -olink.fragid -Names the fragment identifier portion of an OLink resolver query - - - -fragid= - - -Description -The fragment identifier portion of an olink target. - - diff --git a/docbook-xsl-1.75.2/params/olink.lang.fallback.sequence.xml b/docbook-xsl-1.75.2/params/olink.lang.fallback.sequence.xml deleted file mode 100644 index 7d3d811..0000000 --- a/docbook-xsl-1.75.2/params/olink.lang.fallback.sequence.xml +++ /dev/null @@ -1,83 +0,0 @@ - - -olink.lang.fallback.sequence -string - - -olink.lang.fallback.sequence -look up translated documents if olink not found? - - - - - - -Description - - -This parameter defines a list of lang values -to search among to resolve olinks. - - -Normally an olink tries to resolve to a document in the same -language as the olink itself. The language of an olink -is determined by its nearest ancestor element with a -lang attribute, otherwise the -value of the l10n.gentext.default.lang -parameter. - - -An olink database can contain target data for the same -document in multiple languages. Each set of data has the -same value for the targetdoc attribute in -the document element in the database, but with a -different lang attribute value. - - -When an olink is being resolved, the target is first -sought in the document with the same language as the olink. -If no match is found there, then this parameter is consulted -for additional languages to try. - -The olink.lang.fallback.sequence -must be a whitespace separated list of lang values to -try. The first one with a match in the olink database is used. -The default value is empty. - -For example, a document might be written in German -and contain an olink with -targetdoc="adminguide". -When the document is processed, the processor -first looks for a target dataset in the -olink database starting with: - -<document targetdoc="adminguide" lang="de">. - - -If there is no such element, then the -olink.lang.fallback.sequence -parameter is consulted. -If its value is, for example, fr en, then the processor next -looks for targetdoc="adminguide" lang="fr", and -then for targetdoc="adminguide" lang="en". -If there is still no match, it looks for -targetdoc="adminguide" with no -lang attribute. - - -This parameter is useful when a set of documents is only -partially translated, or is in the process of being translated. -If a target of an olink has not yet been translated, then this -parameter permits the processor to look for the document in -other languages. This assumes the reader would rather have -a link to a document in a different language than to have -a broken link. - - - - diff --git a/docbook-xsl-1.75.2/params/olink.outline.ext.xml b/docbook-xsl-1.75.2/params/olink.outline.ext.xml deleted file mode 100644 index 2de2fe2..0000000 --- a/docbook-xsl-1.75.2/params/olink.outline.ext.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -olink.outline.ext -string - - -olink.outline.ext -The extension of OLink outline files - - - - -.olink - - - -Description - -The extension to be expected for OLink outline files -Bob has this parameter as dead. Please don't use - - - diff --git a/docbook-xsl-1.75.2/params/olink.properties.xml b/docbook-xsl-1.75.2/params/olink.properties.xml deleted file mode 100644 index b76657e..0000000 --- a/docbook-xsl-1.75.2/params/olink.properties.xml +++ /dev/null @@ -1,33 +0,0 @@ - - -olink.properties -attribute set - - -olink.properties -Properties associated with the cross-reference -text of an olink. - - - - - - replace - - - - -Description - -This attribute set is applied to the -fo:basic-link element of an olink. It is not applied to the -optional page number or optional title of the external -document. - - - diff --git a/docbook-xsl-1.75.2/params/olink.pubid.xml b/docbook-xsl-1.75.2/params/olink.pubid.xml deleted file mode 100644 index 4f0b50c..0000000 --- a/docbook-xsl-1.75.2/params/olink.pubid.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -olink.pubid -string - - -olink.pubid -Names the public identifier portion of an OLink resolver query - - - - -pubid - - - -Description - - - - - diff --git a/docbook-xsl-1.75.2/params/olink.resolver.xml b/docbook-xsl-1.75.2/params/olink.resolver.xml deleted file mode 100644 index fa7d471..0000000 --- a/docbook-xsl-1.75.2/params/olink.resolver.xml +++ /dev/null @@ -1,23 +0,0 @@ - - -olink.resolver -string - - -olink.resolver -The root name of the OLink resolver (usually a script) - - - - /cgi-bin/olink - - -Description -FIXME: - - diff --git a/docbook-xsl-1.75.2/params/olink.sysid.xml b/docbook-xsl-1.75.2/params/olink.sysid.xml deleted file mode 100644 index 6d4542f..0000000 --- a/docbook-xsl-1.75.2/params/olink.sysid.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -olink.sysid -string - - -olink.sysid -Names the system identifier portion of an OLink resolver query - - - - -sysid - - - -Description - -FIXME - - - diff --git a/docbook-xsl-1.75.2/params/orderedlist.label.properties.xml b/docbook-xsl-1.75.2/params/orderedlist.label.properties.xml deleted file mode 100644 index 39b0432..0000000 --- a/docbook-xsl-1.75.2/params/orderedlist.label.properties.xml +++ /dev/null @@ -1,26 +0,0 @@ - - -orderedlist.label.properties -attribute set - - -orderedlist.label.properties -Properties that apply to each label inside ordered list. - - - - - - -Description -Properties that apply to each label inside ordered list. E.g.: -<xsl:attribute-set name="orderedlist.label.properties"> - <xsl:attribute name="text-align">right</xsl:attribute> -</xsl:attribute-set> - - diff --git a/docbook-xsl-1.75.2/params/orderedlist.label.width.xml b/docbook-xsl-1.75.2/params/orderedlist.label.width.xml deleted file mode 100644 index 18c8fa8..0000000 --- a/docbook-xsl-1.75.2/params/orderedlist.label.width.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -orderedlist.label.width -length - - -orderedlist.label.width -The default width of the label (number) in an ordered list. - - - - -1.2em - - - -Description -Specifies the default width of the label (usually a number or -sequence of numbers) in an ordered list. You can override the default -value on any particular list with the “dbfo†processing instruction -using the “label-width†pseudoattribute. - - diff --git a/docbook-xsl-1.75.2/params/orderedlist.properties.xml b/docbook-xsl-1.75.2/params/orderedlist.properties.xml deleted file mode 100644 index 59061cb..0000000 --- a/docbook-xsl-1.75.2/params/orderedlist.properties.xml +++ /dev/null @@ -1,24 +0,0 @@ - - -orderedlist.properties -attribute set - - -orderedlist.properties -Properties that apply to each list-block generated by orderedlist. - - - - - 2em - - -Description -Properties that apply to each fo:list-block generated by orderedlist. - - diff --git a/docbook-xsl-1.75.2/params/othercredit.like.author.enabled.xml b/docbook-xsl-1.75.2/params/othercredit.like.author.enabled.xml deleted file mode 100644 index 2e789dd..0000000 --- a/docbook-xsl-1.75.2/params/othercredit.like.author.enabled.xml +++ /dev/null @@ -1,31 +0,0 @@ - - -othercredit.like.author.enabled -boolean - - -othercredit.like.author.enabled -Display othercredit in same style as author? - - - -0 - - -Description - -If non-zero, output of the -othercredit element on titlepages is displayed in -the same style as author and -editor output. If zero then -othercredit output is displayed using a style -different than that of author and -editor. - - - diff --git a/docbook-xsl-1.75.2/params/output-root.xml b/docbook-xsl-1.75.2/params/output-root.xml deleted file mode 100644 index d37b054..0000000 --- a/docbook-xsl-1.75.2/params/output-root.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -output-root -filename - - -output-root -Specifies the root directory of the website - - - - -. - - - -Description -When using the XSLT processor to manage dependencies and construct -the website, this parameter can be used to indicate the root directory -where the resulting pages are placed. -Only applies when XSLT-based chunking is being used. - - diff --git a/docbook-xsl-1.75.2/params/output.indent.xml b/docbook-xsl-1.75.2/params/output.indent.xml deleted file mode 100644 index 40406d7..0000000 --- a/docbook-xsl-1.75.2/params/output.indent.xml +++ /dev/null @@ -1,32 +0,0 @@ - - -output.indent -list -no -yes - - -output.indent -Indent output? - - - - -no - - - -Description - -Specifies the setting of the indent -parameter on the HTML slides. For more information, see the discussion -of the xsl:output element in the XSLT specification. -Select from yes or no. - - - diff --git a/docbook-xsl-1.75.2/params/overlay.js.xml b/docbook-xsl-1.75.2/params/overlay.js.xml deleted file mode 100644 index 162f87a..0000000 --- a/docbook-xsl-1.75.2/params/overlay.js.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -overlay.js -filename - - -overlay.js -Overlay JavaScript file - - - - -overlay.js - - - -Description - -Specifies the filename of the overlay JavaScript file. It's unlikely -that you will ever need to change this parameter. - - - diff --git a/docbook-xsl-1.75.2/params/overlay.logo.xml b/docbook-xsl-1.75.2/params/overlay.logo.xml deleted file mode 100644 index e740771..0000000 --- a/docbook-xsl-1.75.2/params/overlay.logo.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -overlay.logo -uri - - -overlay.logo -Logo to overlay on ToC frame - - - - -http://docbook.sourceforge.net/release/buttons/slides-1.png - - - -Description - -If this URI is non-empty, JavaScript is used to overlay the -specified image on the ToC frame. - - - diff --git a/docbook-xsl-1.75.2/params/overlay.xml b/docbook-xsl-1.75.2/params/overlay.xml deleted file mode 100644 index f955b23..0000000 --- a/docbook-xsl-1.75.2/params/overlay.xml +++ /dev/null @@ -1,32 +0,0 @@ - - -overlay -boolean - - -overlay -Overlay footer navigation? - - - - - - - - -Description - -If non-zero, JavaScript is added to the slides to make the -bottom navigation appear at the bottom of each page. This option and -multiframe are mutually exclusive. - -If this parameter is zero, the bottom navigation simply appears -below the content of each slide. - - - diff --git a/docbook-xsl-1.75.2/params/page.height.portrait.xml b/docbook-xsl-1.75.2/params/page.height.portrait.xml deleted file mode 100644 index 0dee73e..0000000 --- a/docbook-xsl-1.75.2/params/page.height.portrait.xml +++ /dev/null @@ -1,69 +0,0 @@ - - -page.height.portrait -length - - -page.height.portrait -Specify the physical size of the long edge of the page - - - - - - 210mm - 11in - 8.5in - 2378mm - 1682mm - 1189mm - 841mm - 594mm - 420mm - 297mm - 210mm - 148mm - 105mm - 74mm - 52mm - 37mm - 1414mm - 1000mm - 707mm - 500mm - 353mm - 250mm - 176mm - 125mm - 88mm - 62mm - 44mm - 1297mm - 917mm - 648mm - 458mm - 324mm - 229mm - 162mm - 114mm - 81mm - 57mm - 40mm - 11in - - - - -Description - -The portrait page height is the length of the long -edge of the physical page. - - - - diff --git a/docbook-xsl-1.75.2/params/page.height.xml b/docbook-xsl-1.75.2/params/page.height.xml deleted file mode 100644 index 96e32c0..0000000 --- a/docbook-xsl-1.75.2/params/page.height.xml +++ /dev/null @@ -1,37 +0,0 @@ - - -page.height -length - - -page.height -The height of the physical page - - - - - - - - - - - - - - - -Description - -The page height is generally calculated from the -paper.type and -page.orientation parameters. - - - - diff --git a/docbook-xsl-1.75.2/params/page.margin.bottom.xml b/docbook-xsl-1.75.2/params/page.margin.bottom.xml deleted file mode 100644 index e1877f3..0000000 --- a/docbook-xsl-1.75.2/params/page.margin.bottom.xml +++ /dev/null @@ -1,29 +0,0 @@ - - -page.margin.bottom -length - - -page.margin.bottom -The bottom margin of the page - - - - -0.5in - - - -Description - -The bottom page margin is the distance from the bottom of the region-after -to the physical bottom of the page. - - - - diff --git a/docbook-xsl-1.75.2/params/page.margin.inner.xml b/docbook-xsl-1.75.2/params/page.margin.inner.xml deleted file mode 100644 index 97782ba..0000000 --- a/docbook-xsl-1.75.2/params/page.margin.inner.xml +++ /dev/null @@ -1,56 +0,0 @@ - - -page.margin.inner -length - - -page.margin.inner -The inner page margin - - - - - - 1.25in - 1in - - - - -Description - -The inner page margin is the distance from bound edge of the -page to the first column of text. - -The inner page margin is the distance from bound edge of the -page to the outer edge of the first column of text. - -In left-to-right text direction, -this is the left margin of recto (front side) pages. -For single-sided output, it is the left margin -of all pages. - -In right-to-left text direction, -this is the right margin of recto pages. -For single-sided output, this is the -right margin of all pages. - - -Current versions (at least as of version 4.13) -of the XEP XSL-FO processor do not -correctly handle these margin settings for documents -with right-to-left text direction. -The workaround in that situation is to reverse -the values for page.margin.inner -and page.margin.outer, until -this bug is fixed by RenderX. It does not affect documents -with left-to-right text direction. - - - - diff --git a/docbook-xsl-1.75.2/params/page.margin.outer.xml b/docbook-xsl-1.75.2/params/page.margin.outer.xml deleted file mode 100644 index 61dfeb8..0000000 --- a/docbook-xsl-1.75.2/params/page.margin.outer.xml +++ /dev/null @@ -1,53 +0,0 @@ - - -page.margin.outer -length - - -page.margin.outer -The outer page margin - - - - - - 0.75in - 1in - - - - -Description - -The outer page margin is the distance from non-bound edge of the -page to the outer edge of the last column of text. - -In left-to-right text direction, -this is the right margin of recto (front side) pages. -For single-sided output, it is the right margin -of all pages. - -In right-to-left text direction, -this is the left margin of recto pages. -For single-sided output, this is the -left margin of all pages. - - -Current versions (at least as of version 4.13) -of the XEP XSL-FO processor do not -correctly handle these margin settings for documents -with right-to-left text direction. -The workaround in that situation is to reverse -the values for page.margin.inner -and page.margin.outer, until -this bug is fixed by RenderX. It does not affect documents -with left-to-right text direction. - - - - diff --git a/docbook-xsl-1.75.2/params/page.margin.top.xml b/docbook-xsl-1.75.2/params/page.margin.top.xml deleted file mode 100644 index a7e53e8..0000000 --- a/docbook-xsl-1.75.2/params/page.margin.top.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -page.margin.top -length - - -page.margin.top -The top margin of the page - - - - -0.5in - - - -Description - -The top page margin is the distance from the physical top of the -page to the top of the region-before. - - - diff --git a/docbook-xsl-1.75.2/params/page.orientation.xml b/docbook-xsl-1.75.2/params/page.orientation.xml deleted file mode 100644 index 37971c0..0000000 --- a/docbook-xsl-1.75.2/params/page.orientation.xml +++ /dev/null @@ -1,32 +0,0 @@ - - -page.orientation -list -portrait -landscape - - -page.orientation -Select the page orientation - - - - -portrait - - - -Description - - Select one from portrait or landscape. -In portrait orientation, the short edge is horizontal; in -landscape orientation, it is vertical. - - - - diff --git a/docbook-xsl-1.75.2/params/page.width.portrait.xml b/docbook-xsl-1.75.2/params/page.width.portrait.xml deleted file mode 100644 index 8216fc3..0000000 --- a/docbook-xsl-1.75.2/params/page.width.portrait.xml +++ /dev/null @@ -1,67 +0,0 @@ - - -page.width.portrait -length - - -page.width.portrait -Specify the physical size of the short edge of the page - - - - - - 8.5in - 1682mm - 1189mm - 841mm - 594mm - 420mm - 297mm - 210mm - 148mm - 105mm - 74mm - 52mm - 37mm - 26mm - 1000mm - 707mm - 500mm - 353mm - 250mm - 176mm - 125mm - 88mm - 62mm - 44mm - 31mm - 917mm - 648mm - 458mm - 324mm - 229mm - 162mm - 114mm - 81mm - 57mm - 40mm - 28mm - 8.5in - - - - -Description - -The portrait page width is the length of the short -edge of the physical page. - - - - diff --git a/docbook-xsl-1.75.2/params/page.width.xml b/docbook-xsl-1.75.2/params/page.width.xml deleted file mode 100644 index ff16060..0000000 --- a/docbook-xsl-1.75.2/params/page.width.xml +++ /dev/null @@ -1,36 +0,0 @@ - - -page.width -length - - -page.width -The width of the physical page - - - - - - - - - - - - - - - -Description - -The page width is generally calculated from the -paper.type and -page.orientation parameters. - - - diff --git a/docbook-xsl-1.75.2/params/pages.template.xml b/docbook-xsl-1.75.2/params/pages.template.xml deleted file mode 100644 index fff546c..0000000 --- a/docbook-xsl-1.75.2/params/pages.template.xml +++ /dev/null @@ -1,29 +0,0 @@ - - -pages.template -uri - - -pages.template -Specify the template Pages document - - - - - - - - -Description - -The pages.template parameter specifies a Pages (the Apple word processing application) document to use as a template for the generated document. The template document is used to define the (extensive) headers for the generated document, in particular the paragraph and character styles that are used to format the various elements. Any content in the template document is ignored. - -A template document is used in order to allow maintenance of the paragraph and character styles to be done using Pages itself, rather than these XSL stylesheets. - - - diff --git a/docbook-xsl-1.75.2/params/paper.type.xml b/docbook-xsl-1.75.2/params/paper.type.xml deleted file mode 100644 index e8c4fcc..0000000 --- a/docbook-xsl-1.75.2/params/paper.type.xml +++ /dev/null @@ -1,71 +0,0 @@ - - -paper.type -list -open -open -USletter8.5x11in -USlandscape11x8.5in -4A02378x1682mm -2A01682x1189mm -A01189x841mm -A1841x594mm -A2594x420mm -A3420x297mm -A4297x210mm -A5210x148mm -A6148x105mm -A7105x74mm -A874x52mm -A952x37mm -A1037x26mm -B01414x1000mm -B11000x707mm -B2707x500mm -B3500x353mm -B4353x250mm -B5250x176mm -B6176x125mm -B7125x88mm -B888x62mm -B962x44mm -B1044x31mm -C01297x917mm -C1917x648mm -C2648x458mm -C3458x324mm -C4324x229mm -C5229x162mm -C6162x114mm -C7114x81mm -C881x57mm -C957x40mm -C1040x28mm - - -paper.type -Select the paper type - - - - -USletter - - - -Description - -The paper type is a convenient way to specify the paper size. -The list of known paper sizes includes USletter and most of the A, -B, and C sizes. See page.width.portrait, for example. - - - - - - diff --git a/docbook-xsl-1.75.2/params/para.propagates.style.xml b/docbook-xsl-1.75.2/params/para.propagates.style.xml deleted file mode 100644 index 0415adf..0000000 --- a/docbook-xsl-1.75.2/params/para.propagates.style.xml +++ /dev/null @@ -1,29 +0,0 @@ - - -para.propagates.style -boolean - - -para.propagates.style -Pass para role attribute through to HTML? - - - - - - - - -Description - -If true, the role attribute of para elements -will be passed through to the HTML as a class attribute on the -p generated for the paragraph. - - - diff --git a/docbook-xsl-1.75.2/params/part.autolabel.xml b/docbook-xsl-1.75.2/params/part.autolabel.xml deleted file mode 100644 index 4f1a42c..0000000 --- a/docbook-xsl-1.75.2/params/part.autolabel.xml +++ /dev/null @@ -1,73 +0,0 @@ - - -part.autolabel -list -0none -11,2,3... -AA,B,C... -aa,b,c... -ii,ii,iii... -II,II,III... - - -part.autolabel -Specifies the labeling format for Part titles - - - - -I - - - -Description - -If non-zero, then parts will be numbered using the parameter -value as the number format if the value matches one of the following: - - - - - 1 or arabic - - Arabic numeration (1, 2, 3 ...). - - - - A or upperalpha - - Uppercase letter numeration (A, B, C ...). - - - - a or loweralpha - - Lowercase letter numeration (a, b, c ...). - - - - I or upperroman - - Uppercase roman numeration (I, II, III ...). - - - - i or lowerroman - - Lowercase roman letter numeration (i, ii, iii ...). - - - - -Any nonzero value other than the above will generate -the default number format (upperroman). - - - - - diff --git a/docbook-xsl-1.75.2/params/passivetex.extensions.xml b/docbook-xsl-1.75.2/params/passivetex.extensions.xml deleted file mode 100644 index 2b1cb77..0000000 --- a/docbook-xsl-1.75.2/params/passivetex.extensions.xml +++ /dev/null @@ -1,37 +0,0 @@ - - -passivetex.extensions -boolean - - -passivetex.extensions -Enable PassiveTeX extensions? - - - - - - -Description - -If non-zero, -PassiveTeX -extensions will be used. At present, this consists of PDF bookmarks -and sorted index terms. - - -This parameter can also affect which graphics file formats -are supported - - - PassiveTeX is incomplete and development has ceased. In most cases, -another XSL-FO engine is probably a better choice. - - - - diff --git a/docbook-xsl-1.75.2/params/pgwide.properties.xml b/docbook-xsl-1.75.2/params/pgwide.properties.xml deleted file mode 100644 index c63b461..0000000 --- a/docbook-xsl-1.75.2/params/pgwide.properties.xml +++ /dev/null @@ -1,52 +0,0 @@ - - -pgwide.properties -attribute set - - -pgwide.properties -Properties to make a figure or table page wide. - - - - - - - 0pt - - - - -Description - -This attribute set is used to set the properties -that make a figure or table "page wide" in fo output. -It comes into effect when an attribute pgwide="1" -is used. - - - -By default, it sets start-indent -to 0pt. -In a stylesheet that sets the parameter -body.start.indent -to a non-zero value in order to indent body text, -this attribute set can be used to outdent pgwide -figures to the start margin. - - -If a document uses a multi-column page layout, -then this attribute set could try setting span -to a value of all. However, this may -not work with some processors because a span property must be on an -fo:block that is a direct child of fo:flow. It may work in -some processors anyway. - - - - diff --git a/docbook-xsl-1.75.2/params/phrase.propagates.style.xml b/docbook-xsl-1.75.2/params/phrase.propagates.style.xml deleted file mode 100644 index 8c25892..0000000 --- a/docbook-xsl-1.75.2/params/phrase.propagates.style.xml +++ /dev/null @@ -1,29 +0,0 @@ - - -phrase.propagates.style -boolean - - -phrase.propagates.style -Pass phrase role attribute through to HTML? - - - - - - - -Description - -If non-zero, the role attribute of phrase elements -will be passed through to the HTML as a class -attribute on a span that surrounds the -phrase. - - - diff --git a/docbook-xsl-1.75.2/params/pixels.per.inch.xml b/docbook-xsl-1.75.2/params/pixels.per.inch.xml deleted file mode 100644 index 86faff5..0000000 --- a/docbook-xsl-1.75.2/params/pixels.per.inch.xml +++ /dev/null @@ -1,31 +0,0 @@ - - -pixels.per.inch -integer - - -pixels.per.inch -How many pixels are there per inch? - - - - -90 - - - -Description - -When lengths are converted to pixels, this value is used to -determine the size of a pixel. The default value is taken from the -XSL -Recommendation. - - - - diff --git a/docbook-xsl-1.75.2/params/plus.image.xml b/docbook-xsl-1.75.2/params/plus.image.xml deleted file mode 100644 index 17b3d3c..0000000 --- a/docbook-xsl-1.75.2/params/plus.image.xml +++ /dev/null @@ -1,29 +0,0 @@ - - -plus.image -filename - - -plus.image -Plus image - - - - -toc/closed.png - - - -Description - -Specifies the filename of the plus image; the image used in a -dynamic ToC to indicate that a section -can be expanded. - - - diff --git a/docbook-xsl-1.75.2/params/points.per.em.xml b/docbook-xsl-1.75.2/params/points.per.em.xml deleted file mode 100644 index 76bd22e..0000000 --- a/docbook-xsl-1.75.2/params/points.per.em.xml +++ /dev/null @@ -1,29 +0,0 @@ - - -points.per.em -number - - -points.per.em -Specify the nominal size of an em-space in points - - - - -10 - - - -Description - -The fixed value used for calculations based upon the size of a -character. The assumption made is that ten point font is in use. This -assumption may not be valid. - - - diff --git a/docbook-xsl-1.75.2/params/preface.autolabel.xml b/docbook-xsl-1.75.2/params/preface.autolabel.xml deleted file mode 100644 index f59115a..0000000 --- a/docbook-xsl-1.75.2/params/preface.autolabel.xml +++ /dev/null @@ -1,71 +0,0 @@ - - -preface.autolabel -list -0none -11,2,3... -AA,B,C... -aa,b,c... -ii,ii,iii... -II,II,III... - - -preface.autolabel -Specifices the labeling format for Preface titles - - - - - - -Description - -If non-zero then prefaces will be numbered using the parameter -value as the number format if the value matches one of the following: - - - - - 1 or arabic - - Arabic numeration (1, 2, 3 ...). - - - - A or upperalpha - - Uppercase letter numeration (A, B, C ...). - - - - a or loweralpha - - Lowercase letter numeration (a, b, c ...). - - - - I or upperroman - - Uppercase roman numeration (I, II, III ...). - - - - i or lowerroman - - Lowercase roman letter numeration (i, ii, iii ...). - - - - -Any nonzero value other than the above will generate -the default number format (arabic). - - - - - diff --git a/docbook-xsl-1.75.2/params/prefer.internal.olink.xml b/docbook-xsl-1.75.2/params/prefer.internal.olink.xml deleted file mode 100644 index 2599d76..0000000 --- a/docbook-xsl-1.75.2/params/prefer.internal.olink.xml +++ /dev/null @@ -1,78 +0,0 @@ - - -prefer.internal.olink -boolean - - -prefer.internal.olink -Prefer a local olink reference to an external reference - - - - - - - - -Description - -If you are re-using XML content modules in multiple documents, -you may want to redirect some of your olinks. This parameter -permits you to redirect an olink to the current document. - - -For example: you are writing documentation for a product, -which includes 3 manuals: a little installation -booklet (booklet.xml), a user -guide (user.xml), and a reference manual (reference.xml). -All 3 documents begin with the same introduction section (intro.xml) that -contains a reference to the customization section (custom.xml) which is -included in both user.xml and reference.xml documents. - - -How do you write the link to custom.xml in intro.xml -so that it is interpreted correctly in all 3 documents? - -If you use xref, it will fail in user.xml. - -If you use olink (pointing to reference.xml), -the reference in user.xml -will point to the customization section of the reference manual, while it is -actually available in user.xml. - - - -If you set the prefer.internal.olink -parameter to a non-zero value, then the processor will -first look in the olink database -for the olink's targetptr attribute value -in document matching the current.docid -parameter value. If it isn't found there, then -it tries the document in the database -with the targetdoc -value that matches the olink's targetdoc -attribute. - - -This feature permits an olink reference to resolve to -the current document if there is an element -with an id matching the olink's targetptr -value. The current document's olink data must be -included in the target database for this to work. - - -There is a potential for incorrect links if -the same id attribute value is used for different -content in different documents. -Some of your olinks may be redirected to the current document -when they shouldn't be. It is not possible to control -individual olink instances. - - - - diff --git a/docbook-xsl-1.75.2/params/preferred.mediaobject.role.xml b/docbook-xsl-1.75.2/params/preferred.mediaobject.role.xml deleted file mode 100644 index 57b0989..0000000 --- a/docbook-xsl-1.75.2/params/preferred.mediaobject.role.xml +++ /dev/null @@ -1,40 +0,0 @@ - - -preferred.mediaobject.role -string - - -preferred.mediaobject.role -Select which mediaobject to use based on -this value of an object's role attribute. - - - - - - - - - -Description - -A mediaobject may contain several objects such as imageobjects. -If the parameter use.role.for.mediaobject is -non-zero, then the role attribute on -imageobjects and other objects within a -mediaobject container will be used to select which object -will be used. If one of the objects has a role value that matches the -preferred.mediaobject.role parameter, then it -has first priority for selection. If more than one has such a role -value, the first one is used. - - -See the use.role.for.mediaobject parameter -for the sequence of selection. - - diff --git a/docbook-xsl-1.75.2/params/prev.image.xml b/docbook-xsl-1.75.2/params/prev.image.xml deleted file mode 100644 index b017115..0000000 --- a/docbook-xsl-1.75.2/params/prev.image.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -prev.image -filename - - -prev.image -Left-arrow image - - - - -active/nav-prev.png - - - -Description - -Specifies the filename of the left-pointing navigation arrow. - - - diff --git a/docbook-xsl-1.75.2/params/procedure.properties.xml b/docbook-xsl-1.75.2/params/procedure.properties.xml deleted file mode 100644 index f6cadb0..0000000 --- a/docbook-xsl-1.75.2/params/procedure.properties.xml +++ /dev/null @@ -1,29 +0,0 @@ - - -procedure.properties -attribute set - - -procedure.properties -Properties associated with a procedure - - - - - - auto - - - - -Description - -The styling for procedures. - - - diff --git a/docbook-xsl-1.75.2/params/process.empty.source.toc.xml b/docbook-xsl-1.75.2/params/process.empty.source.toc.xml deleted file mode 100644 index 772b456..0000000 --- a/docbook-xsl-1.75.2/params/process.empty.source.toc.xml +++ /dev/null @@ -1,39 +0,0 @@ - - -process.empty.source.toc -boolean - - -process.empty.source.toc -Generate automated TOC if toc element occurs in a source document? - - - - - - -Description - -Specifies that if an empty toc element is found in a -source document, an automated TOC is generated at this point in the -document. - - Depending on what the value of the - generate.toc parameter is, setting this - parameter to 1 could result in generation of - duplicate automated TOCs. So the - process.empty.source.toc is primarily useful - as an "override": by placing an empty toc in your - document and setting this parameter to 1, you can - force a TOC to be generated even if generate.toc - says not to. - - - - - diff --git a/docbook-xsl-1.75.2/params/process.source.toc.xml b/docbook-xsl-1.75.2/params/process.source.toc.xml deleted file mode 100644 index b91657a..0000000 --- a/docbook-xsl-1.75.2/params/process.source.toc.xml +++ /dev/null @@ -1,39 +0,0 @@ - - -process.source.toc -boolean - - -process.source.toc -Process a non-empty toc element if it occurs in a source document? - - - - - - -Description - -Specifies that the contents of a non-empty "hard-coded" -toc element in a source document are processed to -generate a TOC in output. - - This parameter has no effect on automated generation of - TOCs. An automated TOC may still be generated along with the - "hard-coded" TOC. To suppress automated TOC generation, adjust the - value of the generate.toc paramameter. - - The process.source.toc parameter also has - no effect if the toc element is empty; handling - for empty toc is controlled by the - process.empty.source.toc parameter. - - - - - diff --git a/docbook-xsl-1.75.2/params/profile.arch.xml b/docbook-xsl-1.75.2/params/profile.arch.xml deleted file mode 100644 index afcd34c..0000000 --- a/docbook-xsl-1.75.2/params/profile.arch.xml +++ /dev/null @@ -1,39 +0,0 @@ - - -profile.arch -string - - -profile.arch -Target profile for arch -attribute - - - - - - - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - diff --git a/docbook-xsl-1.75.2/params/profile.attribute.xml b/docbook-xsl-1.75.2/params/profile.attribute.xml deleted file mode 100644 index e7dc5d0..0000000 --- a/docbook-xsl-1.75.2/params/profile.attribute.xml +++ /dev/null @@ -1,34 +0,0 @@ - - -profile.attribute -string - - -profile.attribute -Name of user-specified profiling attribute - - - - - - - - -Description - -This parameter is used in conjuction with -profile.value. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - diff --git a/docbook-xsl-1.75.2/params/profile.audience.xml b/docbook-xsl-1.75.2/params/profile.audience.xml deleted file mode 100644 index 1c5b1a3..0000000 --- a/docbook-xsl-1.75.2/params/profile.audience.xml +++ /dev/null @@ -1,38 +0,0 @@ - - -profile.audience -string - - -profile.audience -Target profile for audience -attribute - - - - - - - - -Description - -Value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - diff --git a/docbook-xsl-1.75.2/params/profile.condition.xml b/docbook-xsl-1.75.2/params/profile.condition.xml deleted file mode 100644 index 8bb01a3..0000000 --- a/docbook-xsl-1.75.2/params/profile.condition.xml +++ /dev/null @@ -1,38 +0,0 @@ - - -profile.condition -string - - -profile.condition -Target profile for condition -attribute - - - - - - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - diff --git a/docbook-xsl-1.75.2/params/profile.conformance.xml b/docbook-xsl-1.75.2/params/profile.conformance.xml deleted file mode 100644 index 606af4c..0000000 --- a/docbook-xsl-1.75.2/params/profile.conformance.xml +++ /dev/null @@ -1,38 +0,0 @@ - - -profile.conformance -string - - -profile.conformance -Target profile for conformance -attribute - - - - - - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - diff --git a/docbook-xsl-1.75.2/params/profile.lang.xml b/docbook-xsl-1.75.2/params/profile.lang.xml deleted file mode 100644 index 43b9439..0000000 --- a/docbook-xsl-1.75.2/params/profile.lang.xml +++ /dev/null @@ -1,38 +0,0 @@ - - -profile.lang -string - - -profile.lang -Target profile for lang -attribute - - - - - - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - diff --git a/docbook-xsl-1.75.2/params/profile.os.xml b/docbook-xsl-1.75.2/params/profile.os.xml deleted file mode 100644 index ba6f430..0000000 --- a/docbook-xsl-1.75.2/params/profile.os.xml +++ /dev/null @@ -1,38 +0,0 @@ - - -profile.os -string - - -profile.os -Target profile for os -attribute - - - - - - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - diff --git a/docbook-xsl-1.75.2/params/profile.revision.xml b/docbook-xsl-1.75.2/params/profile.revision.xml deleted file mode 100644 index 28f668d..0000000 --- a/docbook-xsl-1.75.2/params/profile.revision.xml +++ /dev/null @@ -1,38 +0,0 @@ - - -profile.revision -string - - -profile.revision -Target profile for revision -attribute - - - - - - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - diff --git a/docbook-xsl-1.75.2/params/profile.revisionflag.xml b/docbook-xsl-1.75.2/params/profile.revisionflag.xml deleted file mode 100644 index 3ab8919..0000000 --- a/docbook-xsl-1.75.2/params/profile.revisionflag.xml +++ /dev/null @@ -1,38 +0,0 @@ - - -profile.revisionflag -string - - -profile.revisionflag -Target profile for revisionflag -attribute - - - - - - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - diff --git a/docbook-xsl-1.75.2/params/profile.role.xml b/docbook-xsl-1.75.2/params/profile.role.xml deleted file mode 100644 index 5758e4a..0000000 --- a/docbook-xsl-1.75.2/params/profile.role.xml +++ /dev/null @@ -1,54 +0,0 @@ - - -profile.role -string - - -profile.role -Target profile for role -attribute - - - - - - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - -Note that role is often -used for other purposes than profiling. For example it is commonly -used to get emphasize in bold font: - -<emphasis role="bold">very important</emphasis> - -If you are using role for -these purposes do not forget to add values like bold to -value of this parameter. If you forgot you will get document with -small pieces missing which are very hard to track. - -For this reason it is not recommended to use role attribute for profiling. You should -rather use profiling specific attributes like userlevel, os, arch, condition, etc. - - - - diff --git a/docbook-xsl-1.75.2/params/profile.security.xml b/docbook-xsl-1.75.2/params/profile.security.xml deleted file mode 100644 index 8ffca0f..0000000 --- a/docbook-xsl-1.75.2/params/profile.security.xml +++ /dev/null @@ -1,38 +0,0 @@ - - -profile.security -string - - -profile.security -Target profile for security -attribute - - - - - - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - diff --git a/docbook-xsl-1.75.2/params/profile.separator.xml b/docbook-xsl-1.75.2/params/profile.separator.xml deleted file mode 100644 index a4317f5..0000000 --- a/docbook-xsl-1.75.2/params/profile.separator.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -profile.separator -string - - -profile.separator -Separator character for compound profile values - - - - -; - - - -Description - -Separator character used for compound profile values. See profile.arch - - - diff --git a/docbook-xsl-1.75.2/params/profile.status.xml b/docbook-xsl-1.75.2/params/profile.status.xml deleted file mode 100644 index c9fc469..0000000 --- a/docbook-xsl-1.75.2/params/profile.status.xml +++ /dev/null @@ -1,38 +0,0 @@ - - -profile.status -string - - -profile.status -Target profile for status -attribute - - - - - - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - diff --git a/docbook-xsl-1.75.2/params/profile.userlevel.xml b/docbook-xsl-1.75.2/params/profile.userlevel.xml deleted file mode 100644 index 39e263b..0000000 --- a/docbook-xsl-1.75.2/params/profile.userlevel.xml +++ /dev/null @@ -1,38 +0,0 @@ - - -profile.userlevel -string - - -profile.userlevel -Target profile for userlevel -attribute - - - - - - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - diff --git a/docbook-xsl-1.75.2/params/profile.value.xml b/docbook-xsl-1.75.2/params/profile.value.xml deleted file mode 100644 index 85f7190..0000000 --- a/docbook-xsl-1.75.2/params/profile.value.xml +++ /dev/null @@ -1,41 +0,0 @@ - - -profile.value -string - - -profile.value -Target profile for user-specified attribute - - - - - - - - -Description - -When you are using this parameter you must also specify name of -profiling attribute with parameter -profile.attribute. - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - diff --git a/docbook-xsl-1.75.2/params/profile.vendor.xml b/docbook-xsl-1.75.2/params/profile.vendor.xml deleted file mode 100644 index c0187f0..0000000 --- a/docbook-xsl-1.75.2/params/profile.vendor.xml +++ /dev/null @@ -1,38 +0,0 @@ - - -profile.vendor -string - - -profile.vendor -Target profile for vendor -attribute - - - - - - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - diff --git a/docbook-xsl-1.75.2/params/profile.wordsize.xml b/docbook-xsl-1.75.2/params/profile.wordsize.xml deleted file mode 100644 index e30ffc7..0000000 --- a/docbook-xsl-1.75.2/params/profile.wordsize.xml +++ /dev/null @@ -1,38 +0,0 @@ - - -profile.wordsize -string - - -profile.wordsize -Target profile for wordsize -attribute - - - - - - - - -Description - -The value of this parameter specifies profiles which should be -included in the output. You can specify multiple profiles by -separating them by semicolon. You can change separator character by -profile.separator -parameter. - -This parameter has effect only when you are using profiling -stylesheets (profile-docbook.xsl, -profile-chunk.xsl, …) instead of normal -ones (docbook.xsl, -chunk.xsl, …). - - - diff --git a/docbook-xsl-1.75.2/params/punct.honorific.xml b/docbook-xsl-1.75.2/params/punct.honorific.xml deleted file mode 100644 index 7c8a38e..0000000 --- a/docbook-xsl-1.75.2/params/punct.honorific.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -punct.honorific -string - - -punct.honorific -Punctuation after an honorific in a personal name. - - - - -. - - - -Description - -This parameter specifies the punctuation that should be added after an -honorific in a personal name. - - - diff --git a/docbook-xsl-1.75.2/params/qanda.defaultlabel.xml b/docbook-xsl-1.75.2/params/qanda.defaultlabel.xml deleted file mode 100644 index 0b43f0d..0000000 --- a/docbook-xsl-1.75.2/params/qanda.defaultlabel.xml +++ /dev/null @@ -1,86 +0,0 @@ - - -qanda.defaultlabel -list -number -qanda -none - - -qanda.defaultlabel -Sets the default for defaultlabel on QandASet. - - - - -number - - - -Description - -If no defaultlabel attribute is specified on -a qandaset, this value is used. It is generally one of the legal -values for the defaultlabel attribute (none, -number or -qanda), or one of the additional stylesheet-specific values -(qnumber or qnumberanda). -The default value is 'number'. - -The values are rendered as follows: - -qanda - -questions are labeled "Q:" and -answers are labeled "A:". - - - -number - -The questions are enumerated and the answers -are not labeled. - - - -qnumber - -The questions are labeled "Q:" followed by a number, and answers are not -labeled. -When sections are numbered, adding a label -to the number distinguishes the question numbers -from the section numbers. -This value is not allowed in the -defaultlabel attribute -of a qandaset element. - - - -qnumberanda - -The questions are labeled "Q:" followed by a number, and -the answers are labeled "A:". -When sections are numbered, adding a label -to the number distinguishes the question numbers -from the section numbers. -This value is not allowed in the -defaultlabel attribute -of a qandaset element. - - - -none - -No distinguishing label precedes Questions or Answers. - - - - - - - diff --git a/docbook-xsl-1.75.2/params/qanda.in.toc.xml b/docbook-xsl-1.75.2/params/qanda.in.toc.xml deleted file mode 100644 index 9597b71..0000000 --- a/docbook-xsl-1.75.2/params/qanda.in.toc.xml +++ /dev/null @@ -1,34 +0,0 @@ - - -qanda.in.toc -boolean - - -qanda.in.toc -Should qandaentry questions appear in -the document table of contents? - - - - - - -Description - -If true (non-zero), then the generated table of contents -for a document will include qandaset titles, -qandadiv titles, -and question elements. The default value (zero) excludes -them from the TOC. - -This parameter does not affect any tables of contents -that may be generated inside a qandaset or qandadiv. - - - - diff --git a/docbook-xsl-1.75.2/params/qanda.inherit.numeration.xml b/docbook-xsl-1.75.2/params/qanda.inherit.numeration.xml deleted file mode 100644 index 744c0e8..0000000 --- a/docbook-xsl-1.75.2/params/qanda.inherit.numeration.xml +++ /dev/null @@ -1,30 +0,0 @@ - - -qanda.inherit.numeration -boolean - - -qanda.inherit.numeration -Does enumeration of QandASet components inherit the numeration of parent elements? - - - - - - - - -Description - -If non-zero, numbered qandadiv elements and -question and answer inherit the enumeration of -the ancestors of the qandaset. - - - - diff --git a/docbook-xsl-1.75.2/params/qanda.nested.in.toc.xml b/docbook-xsl-1.75.2/params/qanda.nested.in.toc.xml deleted file mode 100644 index 01bdf5a..0000000 --- a/docbook-xsl-1.75.2/params/qanda.nested.in.toc.xml +++ /dev/null @@ -1,29 +0,0 @@ - - -qanda.nested.in.toc -boolean - - -qanda.nested.in.toc -Should nested answer/qandaentry instances appear in TOC? - - - - - - - - -Description - -If non-zero, instances of qandaentry -that are children of answer elements are shown in -the TOC. - - - diff --git a/docbook-xsl-1.75.2/params/qanda.title.level1.properties.xml b/docbook-xsl-1.75.2/params/qanda.title.level1.properties.xml deleted file mode 100644 index edaecc9..0000000 --- a/docbook-xsl-1.75.2/params/qanda.title.level1.properties.xml +++ /dev/null @@ -1,32 +0,0 @@ - - -qanda.title.level1.properties -attribute set - - -qanda.title.level1.properties -Properties for level-1 qanda set titles - - - - - - - - pt - - - - - -Description - -The properties of level-1 qanda set titles. - - - diff --git a/docbook-xsl-1.75.2/params/qanda.title.level2.properties.xml b/docbook-xsl-1.75.2/params/qanda.title.level2.properties.xml deleted file mode 100644 index ca48ca1..0000000 --- a/docbook-xsl-1.75.2/params/qanda.title.level2.properties.xml +++ /dev/null @@ -1,32 +0,0 @@ - - -qanda.title.level2.properties -attribute set - - -qanda.title.level2.properties -Properties for level-2 qanda set titles - - - - - - - - pt - - - - - -Description - -The properties of level-2 qanda set titles. - - - diff --git a/docbook-xsl-1.75.2/params/qanda.title.level3.properties.xml b/docbook-xsl-1.75.2/params/qanda.title.level3.properties.xml deleted file mode 100644 index c9c098e..0000000 --- a/docbook-xsl-1.75.2/params/qanda.title.level3.properties.xml +++ /dev/null @@ -1,32 +0,0 @@ - - -qanda.title.level3.properties -attribute set - - -qanda.title.level3.properties -Properties for level-3 qanda set titles - - - - - - - - pt - - - - - -Description - -The properties of level-3 qanda set titles. - - - diff --git a/docbook-xsl-1.75.2/params/qanda.title.level4.properties.xml b/docbook-xsl-1.75.2/params/qanda.title.level4.properties.xml deleted file mode 100644 index 4344e76..0000000 --- a/docbook-xsl-1.75.2/params/qanda.title.level4.properties.xml +++ /dev/null @@ -1,32 +0,0 @@ - - -qanda.title.level4.properties -attribute set - - -qanda.title.level4.properties -Properties for level-4 qanda set titles - - - - - - - - pt - - - - - -Description - -The properties of level-4 qanda set titles. - - - diff --git a/docbook-xsl-1.75.2/params/qanda.title.level5.properties.xml b/docbook-xsl-1.75.2/params/qanda.title.level5.properties.xml deleted file mode 100644 index 31b0d20..0000000 --- a/docbook-xsl-1.75.2/params/qanda.title.level5.properties.xml +++ /dev/null @@ -1,32 +0,0 @@ - - -qanda.title.level5.properties -attribute set - - -qanda.title.level5.properties -Properties for level-5 qanda set titles - - - - - - - - pt - - - - - -Description - -The properties of level-5 qanda set titles. - - - diff --git a/docbook-xsl-1.75.2/params/qanda.title.level6.properties.xml b/docbook-xsl-1.75.2/params/qanda.title.level6.properties.xml deleted file mode 100644 index 920c7e9..0000000 --- a/docbook-xsl-1.75.2/params/qanda.title.level6.properties.xml +++ /dev/null @@ -1,34 +0,0 @@ - - -qanda.title.level6.properties -attribute set - - -qanda.title.level6.properties -Properties for level-6 qanda set titles - - - - - - - - pt - - - - - -Description - -The properties of level-6 qanda set titles. -This property set is actually -used for all titles below level 5. - - - diff --git a/docbook-xsl-1.75.2/params/qanda.title.properties.xml b/docbook-xsl-1.75.2/params/qanda.title.properties.xml deleted file mode 100644 index 7c3c2a1..0000000 --- a/docbook-xsl-1.75.2/params/qanda.title.properties.xml +++ /dev/null @@ -1,37 +0,0 @@ - - -qanda.title.properties -attribute set - - -qanda.title.properties -Properties for qanda set titles - - - - - - - - - bold - - always - 0.8em - 1.0em - 1.2em - - - - -Description - -The properties common to all qanda set titles. - - - diff --git a/docbook-xsl-1.75.2/params/qandadiv.autolabel.xml b/docbook-xsl-1.75.2/params/qandadiv.autolabel.xml deleted file mode 100644 index 596350a..0000000 --- a/docbook-xsl-1.75.2/params/qandadiv.autolabel.xml +++ /dev/null @@ -1,26 +0,0 @@ - - -qandadiv.autolabel -boolean - - -qandadiv.autolabel -Are divisions in QAndASets enumerated? - - - - - - -Description - -If non-zero, unlabeled qandadivs will be enumerated. - - - - diff --git a/docbook-xsl-1.75.2/params/rebuild-all.xml b/docbook-xsl-1.75.2/params/rebuild-all.xml deleted file mode 100644 index 6dcd5e0..0000000 --- a/docbook-xsl-1.75.2/params/rebuild-all.xml +++ /dev/null @@ -1,33 +0,0 @@ - - -rebuild-all -boolean - - -rebuild-all -Indicates that all files should be produced - - - - - - - - -Description -When using the XSLT processor to manage dependencies and construct -the website, this parameter can be used to regenerate the whole website, -updating even pages that don't appear to need to be updated. -The dependency extension only looks at the source documents. So -if you change something in the stylesheet, for example, that has a global -effect, you can use this parameter to force the stylesheet to rebuild the -whole website. - -Only applies when XSLT-based chunking is being used. - - diff --git a/docbook-xsl-1.75.2/params/refclass.suppress.xml b/docbook-xsl-1.75.2/params/refclass.suppress.xml deleted file mode 100644 index 8f9b52a..0000000 --- a/docbook-xsl-1.75.2/params/refclass.suppress.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -refclass.suppress -boolean - - -refclass.suppress -Suppress display of refclass contents? - - - - - - - -Description - -If the value of refclass.suppress is -non-zero, then display of refclass contents is -suppressed in output. - - - diff --git a/docbook-xsl-1.75.2/params/refentry.date.profile.enabled.xml b/docbook-xsl-1.75.2/params/refentry.date.profile.enabled.xml deleted file mode 100644 index 11de660..0000000 --- a/docbook-xsl-1.75.2/params/refentry.date.profile.enabled.xml +++ /dev/null @@ -1,46 +0,0 @@ - - -refentry.date.profile.enabled -boolean - - -refentry.date.profile.enabled -Enable refentry "date" profiling? - - - - -0 - - -Description - -If the value of -refentry.date.profile.enabled is non-zero, then -during refentry metadata gathering, the info profile -specified by the customizable -refentry.date.profile parameter is used. - -If instead the value of -refentry.date.profile.enabled is zero (the -default), then "hard coded" logic within the DocBook XSL stylesheets -is used for gathering refentry "date" data. - -If you find that the default refentry -metadata-gathering behavior is causing incorrect "date" data to show -up in your output, then consider setting a non-zero value for -refentry.date.profile.enabled and adjusting the -value of refentry.date.profile to cause correct -data to be gathered. - -Note that the terms "source" and "date" have special meanings in -this context. For details, see the documentation for the -refentry.date.profile parameter. - - - diff --git a/docbook-xsl-1.75.2/params/refentry.date.profile.xml b/docbook-xsl-1.75.2/params/refentry.date.profile.xml deleted file mode 100644 index 1220ed0..0000000 --- a/docbook-xsl-1.75.2/params/refentry.date.profile.xml +++ /dev/null @@ -1,38 +0,0 @@ - - -refentry.date.profile -string - - -refentry.date.profile -Specifies profile for refentry "date" data - - - - - - (($info[//date])[last()]/date)[1]| - (($info[//pubdate])[last()]/pubdate)[1] - - - - -Description - -The value of refentry.date.profile is a -string representing an XPath expression. It is evaluated at run-time -and used only if refentry.date.profile.enabled -is non-zero. Otherwise, the refentry metadata-gathering -logic "hard coded" into the stylesheets is used. - - The man(7) man page describes this content -as "the date of the last revision". In man pages, it is the content -that is usually displayed in the center footer. - - - diff --git a/docbook-xsl-1.75.2/params/refentry.generate.name.xml b/docbook-xsl-1.75.2/params/refentry.generate.name.xml deleted file mode 100644 index f59e6d5..0000000 --- a/docbook-xsl-1.75.2/params/refentry.generate.name.xml +++ /dev/null @@ -1,33 +0,0 @@ - - -refentry.generate.name -boolean - - -refentry.generate.name -Output NAME header before refnames? - - - - - - - - -Description - -If non-zero, a "NAME" section title is output before the list -of refnames. This parameter and -refentry.generate.title are mutually -exclusive. This means that if you change this parameter to zero, you -should set refentry.generate.title to non-zero unless -you want get quite strange output. - - - - diff --git a/docbook-xsl-1.75.2/params/refentry.generate.title.xml b/docbook-xsl-1.75.2/params/refentry.generate.title.xml deleted file mode 100644 index 8029b20..0000000 --- a/docbook-xsl-1.75.2/params/refentry.generate.title.xml +++ /dev/null @@ -1,33 +0,0 @@ - - -refentry.generate.title -boolean - - -refentry.generate.title -Output title before refnames? - - - - - - - - -Description - -If non-zero, the reference page title or first name is -output before the list of refnames. This parameter and -refentry.generate.name are mutually exclusive. -This means that if you change this parameter to non-zero, you -should set refentry.generate.name to zero unless -you want get quite strange output. - - - - diff --git a/docbook-xsl-1.75.2/params/refentry.manual.fallback.profile.xml b/docbook-xsl-1.75.2/params/refentry.manual.fallback.profile.xml deleted file mode 100644 index 6362785..0000000 --- a/docbook-xsl-1.75.2/params/refentry.manual.fallback.profile.xml +++ /dev/null @@ -1,48 +0,0 @@ - - -refentry.manual.fallback.profile -string - - -refentry.manual.fallback.profile -Specifies profile of "fallback" for refentry "manual" data - - - - - -refmeta/refmiscinfo[not(@class = 'date')][1]/node() - - - -Description - -The value of -refentry.manual.fallback.profile is a string -representing an XPath expression. It is evaluated at run-time and -used only if no "manual" data can be found by other means (that is, -either using the refentry metadata-gathering logic "hard -coded" in the stylesheets, or the value of -refentry.manual.profile, if it is -enabled). - - -Depending on which XSLT engine you run, either the EXSLT -dyn:evaluate extension function (for xsltproc or -Xalan) or saxon:evaluate extension function (for -Saxon) are used to dynamically evaluate the value of -refentry.manual.fallback.profile at -run-time. If you don't use xsltproc, Saxon, Xalan -- or some other -XSLT engine that supports dyn:evaluate -- you -must manually disable fallback processing by setting an empty value -for the refentry.manual.fallback.profile -parameter. - - - - diff --git a/docbook-xsl-1.75.2/params/refentry.manual.profile.enabled.xml b/docbook-xsl-1.75.2/params/refentry.manual.profile.enabled.xml deleted file mode 100644 index a3b7b54..0000000 --- a/docbook-xsl-1.75.2/params/refentry.manual.profile.enabled.xml +++ /dev/null @@ -1,47 +0,0 @@ - - -refentry.manual.profile.enabled -boolean - - -refentry.manual.profile.enabled -Enable refentry "manual" profiling? - - - - -0 - - -Description - -If the value of -refentry.manual.profile.enabled is -non-zero, then during refentry metadata gathering, the info -profile specified by the customizable -refentry.manual.profile parameter is -used. - -If instead the value of -refentry.manual.profile.enabled is zero (the -default), then "hard coded" logic within the DocBook XSL stylesheets -is used for gathering refentry "manual" data. - -If you find that the default refentry -metadata-gathering behavior is causing incorrect "manual" data to show -up in your output, then consider setting a non-zero value for -refentry.manual.profile.enabled and adjusting -the value of refentry.manual.profile to cause -correct data to be gathered. - -Note that the term "manual" has a special meanings in this -context. For details, see the documentation for the -refentry.manual.profile parameter. - - - diff --git a/docbook-xsl-1.75.2/params/refentry.manual.profile.xml b/docbook-xsl-1.75.2/params/refentry.manual.profile.xml deleted file mode 100644 index 214b170..0000000 --- a/docbook-xsl-1.75.2/params/refentry.manual.profile.xml +++ /dev/null @@ -1,72 +0,0 @@ - - -refentry.manual.profile -string - - -refentry.manual.profile -Specifies profile for refentry "manual" data - - - - - - (($info[//title])[last()]/title)[1]| - ../title/node() - - - - -Description - -The value of refentry.manual.profile is -a string representing an XPath expression. It is evaluated at -run-time and used only if -refentry.manual.profile.enabled is -non-zero. Otherwise, the refentry metadata-gathering logic -"hard coded" into the stylesheets is used. - -In man pages, this content is usually displayed in the middle of -the header of the page. The man(7) man page -describes this as "the title of the manual (e.g., Linux -Programmer's Manual)". Here are some examples from -existing man pages: - - - dpkg utilities - (dpkg-name) - - - User Contributed Perl Documentation - (GET) - - - GNU Development Tools - (ld) - - - Emperor Norton Utilities - (ddate) - - - Debian GNU/Linux manual - (faked) - - - GIMP Manual Pages - (gimp) - - - KDOC Documentation System - (qt2kdoc) - - - - - - diff --git a/docbook-xsl-1.75.2/params/refentry.meta.get.quietly.xml b/docbook-xsl-1.75.2/params/refentry.meta.get.quietly.xml deleted file mode 100644 index 0ed29f6..0000000 --- a/docbook-xsl-1.75.2/params/refentry.meta.get.quietly.xml +++ /dev/null @@ -1,37 +0,0 @@ - - -refentry.meta.get.quietly -boolean - - -refentry.meta.get.quietly -Suppress notes and warnings when gathering refentry metadata? - - - - - - - - -Description - -If zero (the default), notes and warnings about “missing†markup -are generated during gathering of refentry metadata. If non-zero, the -metadata is gathered “quietly†-- that is, the notes and warnings are -suppressed. - - - If you are processing a large amount of refentry - content, you may be able to speed up processing significantly by - setting a non-zero value for - refentry.meta.get.quietly. - - - - diff --git a/docbook-xsl-1.75.2/params/refentry.pagebreak.xml b/docbook-xsl-1.75.2/params/refentry.pagebreak.xml deleted file mode 100644 index 42b8466..0000000 --- a/docbook-xsl-1.75.2/params/refentry.pagebreak.xml +++ /dev/null @@ -1,33 +0,0 @@ - - -refentry.pagebreak -boolean - - -refentry.pagebreak -Start each refentry on a new page - - - - - - -Description - -If non-zero (the default), each refentry -element will start on a new page. If zero, a page -break will not be generated between refentry elements. -The exception is when the refentry elements are children of -a part element, in which case the page breaks are always -retained. That is because a part element does not generate -a page-sequence for its children, so each refentry must -start its own page-sequence. - - - - diff --git a/docbook-xsl-1.75.2/params/refentry.separator.xml b/docbook-xsl-1.75.2/params/refentry.separator.xml deleted file mode 100644 index a7eeb84..0000000 --- a/docbook-xsl-1.75.2/params/refentry.separator.xml +++ /dev/null @@ -1,29 +0,0 @@ - - -refentry.separator -boolean - - -refentry.separator -Generate a separator between consecutive RefEntry elements? - - - - - - - - -Description - -If true, a separator will be generated between consecutive -reference pages. - - - - diff --git a/docbook-xsl-1.75.2/params/refentry.source.fallback.profile.xml b/docbook-xsl-1.75.2/params/refentry.source.fallback.profile.xml deleted file mode 100644 index 1761378..0000000 --- a/docbook-xsl-1.75.2/params/refentry.source.fallback.profile.xml +++ /dev/null @@ -1,49 +0,0 @@ - - -refentry.source.fallback.profile -string - - -refentry.source.fallback.profile -Specifies profile of "fallback" for refentry "source" data - - - - - -refmeta/refmiscinfo[not(@class = 'date')][1]/node() - - - -Description - -The value of -refentry.source.fallback.profile is a string -representing an XPath expression. It is evaluated at run-time and used -only if no "source" data can be found by other means (that is, either -using the refentry metadata-gathering logic "hard coded" in -the stylesheets, or the value of the -refentry.source.name.profile and -refentry.version.profile parameters, if those -are enabled). - - -Depending on which XSLT engine you run, either the EXSLT -dyn:evaluate extension function (for xsltproc or -Xalan) or saxon:evaluate extension function (for -Saxon) are used to dynamically evaluate the value of -refentry.source.fallback.profile at -run-time. If you don't use xsltproc, Saxon, Xalan -- or some other -XSLT engine that supports dyn:evaluate -- you -must manually disable fallback processing by setting an empty value -for the refentry.source.fallback.profile -parameter. - - - - diff --git a/docbook-xsl-1.75.2/params/refentry.source.name.profile.enabled.xml b/docbook-xsl-1.75.2/params/refentry.source.name.profile.enabled.xml deleted file mode 100644 index f87ec0f..0000000 --- a/docbook-xsl-1.75.2/params/refentry.source.name.profile.enabled.xml +++ /dev/null @@ -1,48 +0,0 @@ - - -refentry.source.name.profile.enabled -boolean - - -refentry.source.name.profile.enabled -Enable refentry "source name" profiling? - - - - -0 - - -Description - -If the value of -refentry.source.name.profile.enabled is -non-zero, then during refentry metadata gathering, the info -profile specified by the customizable -refentry.source.name.profile parameter is -used. - -If instead the value of -refentry.source.name.profile.enabled is zero (the -default), then "hard coded" logic within the DocBook XSL stylesheets -is used for gathering refentry "source name" data. - -If you find that the default refentry -metadata-gathering behavior is causing incorrect "source name" data to -show up in your output, then consider setting a non-zero value for -refentry.source.name.profile.enabled and -adjusting the value of -refentry.source.name.profile to cause correct -data to be gathered. - -Note that the terms "source" and "source name" have special -meanings in this context. For details, see the documentation for the -refentry.source.name.profile parameter. - - - diff --git a/docbook-xsl-1.75.2/params/refentry.source.name.profile.xml b/docbook-xsl-1.75.2/params/refentry.source.name.profile.xml deleted file mode 100644 index c9a1012..0000000 --- a/docbook-xsl-1.75.2/params/refentry.source.name.profile.xml +++ /dev/null @@ -1,89 +0,0 @@ - - -refentry.source.name.profile -string - - -refentry.source.name.profile -Specifies profile for refentry "source name" data - - - - - - (($info[//productname])[last()]/productname)[1]| - (($info[//corpname])[last()]/corpname)[1]| - (($info[//corpcredit])[last()]/corpcredit)[1]| - (($info[//corpauthor])[last()]/corpauthor)[1]| - (($info[//orgname])[last()]/orgname)[1]| - (($info[//publishername])[last()]/publishername)[1] - - - - -Description - -The value of refentry.source.name.profile -is a string representing an XPath expression. It is evaluated at -run-time and used only if -refentry.source.name.profile.enabled is -non-zero. Otherwise, the refentry metadata-gathering logic -"hard coded" into the stylesheets is used. - -A "source name" is one part of a (potentially) two-part -Name Version -"source" field. In man pages, it is usually displayed in the left -footer of the page. It typically indicates the software system or -product that the item documented in the man page belongs to. The -man(7) man page describes it as "the source of -the command", and provides the following examples: - - - For binaries, use something like: GNU, NET-2, SLS - Distribution, MCC Distribution. - - - For system calls, use the version of the kernel that you - are currently looking at: Linux 0.99.11. - - - For library calls, use the source of the function: GNU, BSD - 4.3, Linux DLL 4.4.1. - - - - -In practice, there are many pages that simply have a Version -number in the "source" field. So, it looks like what we have is a -two-part field, -Name Version, -where: - - - Name - - product name (e.g., BSD) or org. name (e.g., GNU) - - - - Version - - version number - - - -Each part is optional. If the Name is a -product name, then the Version is probably -the version of the product. Or there may be no -Name, in which case, if there is a -Version, it is probably the version -of the item itself, not the product it is part of. Or, if the -Name is an organization name, then there -probably will be no Version. - - diff --git a/docbook-xsl-1.75.2/params/refentry.source.name.suppress.xml b/docbook-xsl-1.75.2/params/refentry.source.name.suppress.xml deleted file mode 100644 index b29127e..0000000 --- a/docbook-xsl-1.75.2/params/refentry.source.name.suppress.xml +++ /dev/null @@ -1,42 +0,0 @@ - - -refentry.source.name.suppress -boolean - - -refentry.source.name.suppress -Suppress "name" part of refentry "source" contents? - - - - -0 - - -Description - -If the value of -refentry.source.name.suppress is non-zero, then -during refentry metadata gathering, no "source name" data -is added to the refentry "source" contents. Instead (unless -refentry.version.suppress is also non-zero), -only "version" data is added to the "source" contents. - -If you find that the refentry metadata gathering -mechanism is causing unwanted "source name" data to show up in your -output -- for example, in the footer (or possibly header) of a man -page -- then you might consider setting a non-zero value for -refentry.source.name.suppress. - -Note that the terms "source", "source name", and "version" have -special meanings in this context. For details, see the documentation -for the refentry.source.name.profile -parameter. - - - diff --git a/docbook-xsl-1.75.2/params/refentry.title.properties.xml b/docbook-xsl-1.75.2/params/refentry.title.properties.xml deleted file mode 100644 index 5bb1f25..0000000 --- a/docbook-xsl-1.75.2/params/refentry.title.properties.xml +++ /dev/null @@ -1,59 +0,0 @@ - - -refentry.title.properties -attribute set - - -refentry.title.properties -Title properties for a refentry title - - - - - - - - - 18pt - bold - 1em - false - always - 0.8em - 1.0em - 1.2em - 0.5em - 0.4em - 0.6em - - - - - -Description - -Formatting properties applied to the title generated for the -refnamediv part of output for -refentry when the value of the -refentry.generate.title parameter is -non-zero. The font size is supplied by the appropriate section.levelX.title.properties -attribute-set, computed from the location of the -refentry in the section hierarchy. - - - This parameter has no effect on the the title generated for - the refnamediv part of output for - refentry when the value of the - refentry.generate.name parameter is - non-zero. By default, that title is formatted with the same - properties as the titles for all other first-level children of - refentry. - - - - diff --git a/docbook-xsl-1.75.2/params/refentry.version.profile.enabled.xml b/docbook-xsl-1.75.2/params/refentry.version.profile.enabled.xml deleted file mode 100644 index 3b95bbe..0000000 --- a/docbook-xsl-1.75.2/params/refentry.version.profile.enabled.xml +++ /dev/null @@ -1,47 +0,0 @@ - - -refentry.version.profile.enabled -boolean - - -refentry.version.profile.enabled -Enable refentry "version" profiling? - - - - -0 - - -Description - -If the value of -refentry.version.profile.enabled is -non-zero, then during refentry metadata gathering, the info -profile specified by the customizable -refentry.version.profile parameter is -used. - -If instead the value of -refentry.version.profile.enabled is zero (the -default), then "hard coded" logic within the DocBook XSL stylesheets -is used for gathering refentry "version" data. - -If you find that the default refentry -metadata-gathering behavior is causing incorrect "version" data to show -up in your output, then consider setting a non-zero value for -refentry.version.profile.enabled and adjusting -the value of refentry.version.profile to cause -correct data to be gathered. - -Note that the terms "source" and "version" have special -meanings in this context. For details, see the documentation for the -refentry.version.profile parameter. - - - diff --git a/docbook-xsl-1.75.2/params/refentry.version.profile.xml b/docbook-xsl-1.75.2/params/refentry.version.profile.xml deleted file mode 100644 index ff85825..0000000 --- a/docbook-xsl-1.75.2/params/refentry.version.profile.xml +++ /dev/null @@ -1,41 +0,0 @@ - - -refentry.version.profile -string - - -refentry.version.profile -Specifies profile for refentry "version" data - - - - - - (($info[//productnumber])[last()]/productnumber)[1]| - (($info[//edition])[last()]/edition)[1]| - (($info[//releaseinfo])[last()]/releaseinfo)[1] - - - - -Description - -The value of refentry.version.profile is -a string representing an XPath expression. It is evaluated at -run-time and used only if -refentry.version.profile.enabled is -non-zero. Otherwise, the refentry metadata-gathering logic -"hard coded" into the stylesheets is used. - -A "source.name" is one part of a (potentially) two-part -Name Version -"source" field. For more details, see the documentation for the -refentry.source.name.profile parameter. - - - diff --git a/docbook-xsl-1.75.2/params/refentry.version.suppress.xml b/docbook-xsl-1.75.2/params/refentry.version.suppress.xml deleted file mode 100644 index b701ad8..0000000 --- a/docbook-xsl-1.75.2/params/refentry.version.suppress.xml +++ /dev/null @@ -1,43 +0,0 @@ - - -refentry.version.suppress -boolean - - -refentry.version.suppress -Suppress "version" part of refentry "source" contents? - - - - -0 - - -Description - -If the value of refentry.version.suppress -is non-zero, then during refentry metadata gathering, no -"version" data is added to the refentry "source" -contents. Instead (unless -refentry.source.name.suppress is also -non-zero), only "source name" data is added to the "source" -contents. - -If you find that the refentry metadata gathering -mechanism is causing unwanted "version" data to show up in your output --- for example, in the footer (or possibly header) of a man page -- -then you might consider setting a non-zero value for -refentry.version.suppress. - -Note that the terms "source", "source name", and "version" have -special meanings in this context. For details, see the documentation -for the refentry.source.name.profile -parameter. - - - diff --git a/docbook-xsl-1.75.2/params/refentry.xref.manvolnum.xml b/docbook-xsl-1.75.2/params/refentry.xref.manvolnum.xml deleted file mode 100644 index 56b93b7..0000000 --- a/docbook-xsl-1.75.2/params/refentry.xref.manvolnum.xml +++ /dev/null @@ -1,31 +0,0 @@ - - -refentry.xref.manvolnum -boolean - - -refentry.xref.manvolnum -Output manvolnum as part of -refentry cross-reference? - - - - - - - - -Description - -if non-zero, the manvolnum is used when cross-referencing -refentrys, either with xref -or citerefentry. - - - - diff --git a/docbook-xsl-1.75.2/params/reference.autolabel.xml b/docbook-xsl-1.75.2/params/reference.autolabel.xml deleted file mode 100644 index 1a9dc5b..0000000 --- a/docbook-xsl-1.75.2/params/reference.autolabel.xml +++ /dev/null @@ -1,67 +0,0 @@ - - -reference.autolabel -list -0none -11,2,3... -AA,B,C... -aa,b,c... -ii,ii,iii... -II,II,III... - - -reference.autolabel -Specifies the labeling format for Reference titles - - - - I - - -Description -If non-zero, references will be numbered using the parameter - value as the number format if the value matches one of the - following: - - - - 1 or arabic - - Arabic numeration (1, 2, 3 ...). - - - - A or upperalpha - - Uppercase letter numeration (A, B, C ...). - - - - a or loweralpha - - Lowercase letter numeration (a, b, c ...). - - - - I or upperroman - - Uppercase roman numeration (I, II, III ...). - - - - i or lowerroman - - Lowercase roman letter numeration (i, ii, iii ...). - - - -Any non-zero value other than the above will generate -the default number format (upperroman). - - - diff --git a/docbook-xsl-1.75.2/params/region.after.extent.xml b/docbook-xsl-1.75.2/params/region.after.extent.xml deleted file mode 100644 index b29abba..0000000 --- a/docbook-xsl-1.75.2/params/region.after.extent.xml +++ /dev/null @@ -1,29 +0,0 @@ - - -region.after.extent -length - - -region.after.extent -Specifies the height of the footer. - - - - -0.4in - - - -Description - -The region after extent is the height of the area where footers -are printed. - - - - diff --git a/docbook-xsl-1.75.2/params/region.before.extent.xml b/docbook-xsl-1.75.2/params/region.before.extent.xml deleted file mode 100644 index c62cc40..0000000 --- a/docbook-xsl-1.75.2/params/region.before.extent.xml +++ /dev/null @@ -1,29 +0,0 @@ - - -region.before.extent -length - - -region.before.extent -Specifies the height of the header - - - - -0.4in - - - -Description - -The region before extent is the height of the area where headers -are printed. - - - - diff --git a/docbook-xsl-1.75.2/params/revhistory.table.cell.properties.xml b/docbook-xsl-1.75.2/params/revhistory.table.cell.properties.xml deleted file mode 100644 index 49c4037..0000000 --- a/docbook-xsl-1.75.2/params/revhistory.table.cell.properties.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -revhistory.table.cell.properties -attribute set - - -revhistory.table.cell.properties -The properties of table cells used for formatting revhistory - - - - - - - - - -Description - -This property set defines appearance of individual cells in revhistory table. - - - diff --git a/docbook-xsl-1.75.2/params/revhistory.table.properties.xml b/docbook-xsl-1.75.2/params/revhistory.table.properties.xml deleted file mode 100644 index 43116d0..0000000 --- a/docbook-xsl-1.75.2/params/revhistory.table.properties.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -revhistory.table.properties -attribute set - - -revhistory.table.properties -The properties of table used for formatting revhistory - - - - - - - - - -Description - -This property set defines appearance of revhistory table. - - - diff --git a/docbook-xsl-1.75.2/params/revhistory.title.properties.xml b/docbook-xsl-1.75.2/params/revhistory.title.properties.xml deleted file mode 100644 index f97d646..0000000 --- a/docbook-xsl-1.75.2/params/revhistory.title.properties.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -revhistory.title.properties -attribute set - - -revhistory.title.properties -The properties of revhistory title - - - - - - - - - -Description - -This property set defines appearance of revhistory title. - - - diff --git a/docbook-xsl-1.75.2/params/root.filename.xml b/docbook-xsl-1.75.2/params/root.filename.xml deleted file mode 100644 index ae5ca5b..0000000 --- a/docbook-xsl-1.75.2/params/root.filename.xml +++ /dev/null @@ -1,29 +0,0 @@ - - -root.filename -uri - - -root.filename -Identifies the name of the root HTML file when chunking - - - - -index - - - -Description - -The root.filename is the base filename for -the chunk created for the root of each document processed. - - - - diff --git a/docbook-xsl-1.75.2/params/root.properties.xml b/docbook-xsl-1.75.2/params/root.properties.xml deleted file mode 100644 index 26c9951..0000000 --- a/docbook-xsl-1.75.2/params/root.properties.xml +++ /dev/null @@ -1,46 +0,0 @@ - - -root.properties -attribute set - - -root.properties -The properties of the fo:root element - - - - - - - - - - - - - - - - - - character-by-character - disregard-shifts - - - - - - - -Description - -This property set is used on the fo:root element of -an FO file. It defines a set of default, global parameters. - - - diff --git a/docbook-xsl-1.75.2/params/rootid.xml b/docbook-xsl-1.75.2/params/rootid.xml deleted file mode 100644 index a0715af..0000000 --- a/docbook-xsl-1.75.2/params/rootid.xml +++ /dev/null @@ -1,33 +0,0 @@ - - -rootid -string - - -rootid -Specify the root element to format - - - - - - - -Description - -If rootid is not empty, it must be the -value of an ID that occurs in the document being formatted. The entire -document will be loaded and parsed, but formatting will begin at the -element identified, rather than at the root. For example, this allows -you to process only chapter 4 of a book. -Because the entire document is available to the processor, automatic -numbering, cross references, and other dependencies are correctly -resolved. - - - diff --git a/docbook-xsl-1.75.2/params/runinhead.default.title.end.punct.xml b/docbook-xsl-1.75.2/params/runinhead.default.title.end.punct.xml deleted file mode 100644 index d151e8b..0000000 --- a/docbook-xsl-1.75.2/params/runinhead.default.title.end.punct.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -runinhead.default.title.end.punct -string - - -runinhead.default.title.end.punct -Default punctuation character on a run-in-head - - - -. - - - -Description - -If non-zero, For a formalpara, use the specified -string as the separator between the title and following text. The period is the default value. - - - diff --git a/docbook-xsl-1.75.2/params/runinhead.title.end.punct.xml b/docbook-xsl-1.75.2/params/runinhead.title.end.punct.xml deleted file mode 100644 index 025aeed..0000000 --- a/docbook-xsl-1.75.2/params/runinhead.title.end.punct.xml +++ /dev/null @@ -1,32 +0,0 @@ - - -runinhead.title.end.punct -string - - -runinhead.title.end.punct -Characters that count as punctuation on a run-in-head - - - - -.!?: - - - -Description - -Specify which characters are to be counted as punctuation. These -characters are checked for a match with the last character of the -title. If no match is found, the -runinhead.default.title.end.punct contents are -inserted. This is to avoid duplicated punctuation in the output. - - - - diff --git a/docbook-xsl-1.75.2/params/running.foot.properties.xml b/docbook-xsl-1.75.2/params/running.foot.properties.xml deleted file mode 100644 index ee98592..0000000 --- a/docbook-xsl-1.75.2/params/running.foot.properties.xml +++ /dev/null @@ -1,34 +0,0 @@ - - -running.foot.properties -attribute set - - -running.foot.properties -Specifies properties for running foot on each slide - - - - - - - - - 14pt - #9F9F9F - - - - -Description - -This parameter specifies properties that are applied to the -running foot area of each slide. - - - diff --git a/docbook-xsl-1.75.2/params/sans.font.family.xml b/docbook-xsl-1.75.2/params/sans.font.family.xml deleted file mode 100644 index d569b12..0000000 --- a/docbook-xsl-1.75.2/params/sans.font.family.xml +++ /dev/null @@ -1,29 +0,0 @@ - - -sans.font.family -string - - -sans.font.family -The default sans-serif font family - - - - -sans-serif - - - -Description - -The default sans-serif font family. At the present, this isn't -actually used by the stylesheets. - - - - diff --git a/docbook-xsl-1.75.2/params/saxon.callouts.xml b/docbook-xsl-1.75.2/params/saxon.callouts.xml deleted file mode 100644 index e08fcdb..0000000 --- a/docbook-xsl-1.75.2/params/saxon.callouts.xml +++ /dev/null @@ -1,30 +0,0 @@ - - -saxon.callouts -boolean - - -saxon.callouts -Enable the callout extension - - - - - - - - -Description - -The callouts extension processes areaset -elements in ProgramListingCO and other text-based -callout elements. - - - - diff --git a/docbook-xsl-1.75.2/params/saxon.character.representation.xml b/docbook-xsl-1.75.2/params/saxon.character.representation.xml deleted file mode 100644 index bd8bcac..0000000 --- a/docbook-xsl-1.75.2/params/saxon.character.representation.xml +++ /dev/null @@ -1,38 +0,0 @@ - - -saxon.character.representation -string - - -saxon.character.representation -Saxon character representation used in generated HTML pages - - - - - - -Description - -This parameter has effect only when Saxon 6 is used (version 6.4.2 or later). -It sets the character representation in files generated by the chunking stylesheets. -If you want to suppress entity references for characters with direct representations in -chunker.output.encoding, set the parameter value to native. - - - For more information, see Saxon output character representation. - - -This parameter is documented here, but the declaration is actually -in the chunker.xsl stylesheet module. - - - - - diff --git a/docbook-xsl-1.75.2/params/saxon.linenumbering.xml b/docbook-xsl-1.75.2/params/saxon.linenumbering.xml deleted file mode 100644 index 451028b..0000000 --- a/docbook-xsl-1.75.2/params/saxon.linenumbering.xml +++ /dev/null @@ -1,32 +0,0 @@ - - -saxon.linenumbering -boolean - - -saxon.linenumbering -Enable the line numbering extension - - - - - - - - -Description - -If non-zero, verbatim environments (elements that have the -format='linespecific' notation attribute: address, -literallayout, programlisting, -screen, synopsis) that specify line numbering -will have line numbers. - - - - diff --git a/docbook-xsl-1.75.2/params/saxon.tablecolumns.xml b/docbook-xsl-1.75.2/params/saxon.tablecolumns.xml deleted file mode 100644 index e9d9674..0000000 --- a/docbook-xsl-1.75.2/params/saxon.tablecolumns.xml +++ /dev/null @@ -1,30 +0,0 @@ - - -saxon.tablecolumns -boolean - - -saxon.tablecolumns -Enable the table columns extension function - - - - - - - - -Description - -The table columns extension function adjusts the widths of table -columns in the HTML result to more accurately reflect the specifications -in the CALS table. - - - - diff --git a/docbook-xsl-1.75.2/params/script.dir.xml b/docbook-xsl-1.75.2/params/script.dir.xml deleted file mode 100644 index 9cb92af..0000000 --- a/docbook-xsl-1.75.2/params/script.dir.xml +++ /dev/null @@ -1,33 +0,0 @@ - - -script.dir -uri - - -script.dir -Script directory - - - - - - - - -Description - -Identifies the JavaScript source directory for the slides. -This parameter can be set in the source -document with the <?dbhtml?> pseudo-attribute -script-dir. - -If non-empty, this value is prepended to each of the JavaScript files. - - - - diff --git a/docbook-xsl-1.75.2/params/section.autolabel.max.depth.xml b/docbook-xsl-1.75.2/params/section.autolabel.max.depth.xml deleted file mode 100644 index e588e00..0000000 --- a/docbook-xsl-1.75.2/params/section.autolabel.max.depth.xml +++ /dev/null @@ -1,32 +0,0 @@ - - -section.autolabel.max.depth -integer - - -section.autolabel.max.depth -The deepest level of sections that are numbered. - - - - -8 - - - -Description - -When section numbering is turned on by the -section.autolabel parameter, then this -parameter controls the depth of section nesting that is -numbered. Sections nested to a level deeper than this value will not -be numbered. - - - - diff --git a/docbook-xsl-1.75.2/params/section.autolabel.xml b/docbook-xsl-1.75.2/params/section.autolabel.xml deleted file mode 100644 index 85eede6..0000000 --- a/docbook-xsl-1.75.2/params/section.autolabel.xml +++ /dev/null @@ -1,26 +0,0 @@ - - -section.autolabel -boolean - - -section.autolabel -Are sections enumerated? - - - - - - -Description - -If true (non-zero), unlabeled sections will be enumerated. - - - - diff --git a/docbook-xsl-1.75.2/params/section.container.element.xml b/docbook-xsl-1.75.2/params/section.container.element.xml deleted file mode 100644 index a6c4059..0000000 --- a/docbook-xsl-1.75.2/params/section.container.element.xml +++ /dev/null @@ -1,62 +0,0 @@ - - -section.container.element -list -block -wrapper - - -section.container.element -Select XSL-FO element name to contain sections - - - - -block - - - -Description - -Selects the element name for outer container of -each section. The choices are block (default) -or wrapper. -The fo: namespace prefix is added -by the stylesheet to form the full element name. - - -This element receives the section id -attribute and the appropriate section level attribute-set. - - -Changing this parameter to wrapper -is only necessary when producing multi-column output -that contains page-wide spans. Using fo:wrapper -avoids the nesting of fo:block -elements that prevents spans from working (the standard says -a span must be on a block that is a direct child of -fo:flow). - - -If set to wrapper, the -section attribute-sets only support properties -that are inheritable. That's because there is no -block to apply them to. Properties such as -font-family are inheritable, but properties such as -border are not. - - -Only some XSL-FO processors need to use this parameter. -The Antenna House processor, for example, will handle -spans in nested blocks without changing the element name. -The RenderX XEP product and FOP follow the XSL-FO standard -and need to use wrapper. - - - - diff --git a/docbook-xsl-1.75.2/params/section.label.includes.component.label.xml b/docbook-xsl-1.75.2/params/section.label.includes.component.label.xml deleted file mode 100644 index 505d472..0000000 --- a/docbook-xsl-1.75.2/params/section.label.includes.component.label.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -section.label.includes.component.label -boolean - - -section.label.includes.component.label -Do section labels include the component label? - - - - - - -Description - -If non-zero, section labels are prefixed with the label of the -component that contains them. - - - - diff --git a/docbook-xsl-1.75.2/params/section.level1.properties.xml b/docbook-xsl-1.75.2/params/section.level1.properties.xml deleted file mode 100644 index 4aa70b0..0000000 --- a/docbook-xsl-1.75.2/params/section.level1.properties.xml +++ /dev/null @@ -1,43 +0,0 @@ - - -section.level1.properties -attribute set - - -section.level1.properties -Properties for level-1 sections - - - - - - - - - -Description - -The properties that apply to the containing -block of a level-1 section, and therefore apply to -the whole section. This includes sect1 -elements and section elements at level 1. - - -For example, you could start each level-1 section on -a new page by using: -<xsl:attribute-set name="section.level1.properties"> - <xsl:attribute name="break-before">page</xsl:attribute> -</xsl:attribute-set> - - -This attribute set inherits attributes from the -general section.properties attribute set. - - - - diff --git a/docbook-xsl-1.75.2/params/section.level2.properties.xml b/docbook-xsl-1.75.2/params/section.level2.properties.xml deleted file mode 100644 index 5dd76e9..0000000 --- a/docbook-xsl-1.75.2/params/section.level2.properties.xml +++ /dev/null @@ -1,43 +0,0 @@ - - -section.level2.properties -attribute set - - -section.level2.properties -Properties for level-2 sections - - - - - - - - - -Description - -The properties that apply to the containing -block of a level-2 section, and therefore apply to -the whole section. This includes sect2 -elements and section elements at level 2. - - -For example, you could start each level-2 section on -a new page by using: -<xsl:attribute-set name="section.level2.properties"> - <xsl:attribute name="break-before">page</xsl:attribute> -</xsl:attribute-set> - - -This attribute set inherits attributes from the -general section.properties attribute set. - - - - diff --git a/docbook-xsl-1.75.2/params/section.level3.properties.xml b/docbook-xsl-1.75.2/params/section.level3.properties.xml deleted file mode 100644 index 0bcd696..0000000 --- a/docbook-xsl-1.75.2/params/section.level3.properties.xml +++ /dev/null @@ -1,43 +0,0 @@ - - -section.level3.properties -attribute set - - -section.level3.properties -Properties for level-3 sections - - - - - - - - - -Description - -The properties that apply to the containing -block of a level-3 section, and therefore apply to -the whole section. This includes sect3 -elements and section elements at level 3. - - -For example, you could start each level-3 section on -a new page by using: -<xsl:attribute-set name="section.level3.properties"> - <xsl:attribute name="break-before">page</xsl:attribute> -</xsl:attribute-set> - - -This attribute set inherits attributes from the -general section.properties attribute set. - - - - diff --git a/docbook-xsl-1.75.2/params/section.level4.properties.xml b/docbook-xsl-1.75.2/params/section.level4.properties.xml deleted file mode 100644 index 1408851..0000000 --- a/docbook-xsl-1.75.2/params/section.level4.properties.xml +++ /dev/null @@ -1,43 +0,0 @@ - - -section.level4.properties -attribute set - - -section.level4.properties -Properties for level-4 sections - - - - - - - - - -Description - -The properties that apply to the containing -block of a level-4 section, and therefore apply to -the whole section. This includes sect4 -elements and section elements at level 4. - - -For example, you could start each level-4 section on -a new page by using: -<xsl:attribute-set name="section.level4.properties"> - <xsl:attribute name="break-before">page</xsl:attribute> -</xsl:attribute-set> - - -This attribute set inherits attributes from the -general section.properties attribute set. - - - - diff --git a/docbook-xsl-1.75.2/params/section.level5.properties.xml b/docbook-xsl-1.75.2/params/section.level5.properties.xml deleted file mode 100644 index 9093b94..0000000 --- a/docbook-xsl-1.75.2/params/section.level5.properties.xml +++ /dev/null @@ -1,43 +0,0 @@ - - -section.level5.properties -attribute set - - -section.level5.properties -Properties for level-5 sections - - - - - - - - - -Description - -The properties that apply to the containing -block of a level-5 section, and therefore apply to -the whole section. This includes sect5 -elements and section elements at level 5. - - -For example, you could start each level-5 section on -a new page by using: -<xsl:attribute-set name="section.level5.properties"> - <xsl:attribute name="break-before">page</xsl:attribute> -</xsl:attribute-set> - - -This attribute set inherits attributes from the -general section.properties attribute set. - - - - diff --git a/docbook-xsl-1.75.2/params/section.level6.properties.xml b/docbook-xsl-1.75.2/params/section.level6.properties.xml deleted file mode 100644 index dda7937..0000000 --- a/docbook-xsl-1.75.2/params/section.level6.properties.xml +++ /dev/null @@ -1,43 +0,0 @@ - - -section.level6.properties -attribute set - - -section.level6.properties -Properties for level-6 sections - - - - - - - - - -Description - -The properties that apply to the containing -block of a level 6 or lower section, and therefore apply to -the whole section. This includes -section elements at level 6 and lower. - - -For example, you could start each level-6 section on -a new page by using: -<xsl:attribute-set name="section.level6.properties"> - <xsl:attribute name="break-before">page</xsl:attribute> -</xsl:attribute-set> - - -This attribute set inherits attributes from the -general section.properties attribute set. - - - - diff --git a/docbook-xsl-1.75.2/params/section.properties.xml b/docbook-xsl-1.75.2/params/section.properties.xml deleted file mode 100644 index 06acc31..0000000 --- a/docbook-xsl-1.75.2/params/section.properties.xml +++ /dev/null @@ -1,35 +0,0 @@ - - -section.properties -attribute set - - -section.properties -Properties for all section levels - - - - - - - - - -Description - -The properties that apply to the containing -block of all section levels, and therefore apply to -the whole section. -This attribute set is inherited by the -more specific attribute sets such as -section.level1.properties. -The default is empty. - - - - diff --git a/docbook-xsl-1.75.2/params/section.title.level1.properties.xml b/docbook-xsl-1.75.2/params/section.title.level1.properties.xml deleted file mode 100644 index 91c63ed..0000000 --- a/docbook-xsl-1.75.2/params/section.title.level1.properties.xml +++ /dev/null @@ -1,32 +0,0 @@ - - -section.title.level1.properties -attribute set - - -section.title.level1.properties -Properties for level-1 section titles - - - - - - - - pt - - - - - -Description - -The properties of level-1 section titles. - - - diff --git a/docbook-xsl-1.75.2/params/section.title.level2.properties.xml b/docbook-xsl-1.75.2/params/section.title.level2.properties.xml deleted file mode 100644 index a25648a..0000000 --- a/docbook-xsl-1.75.2/params/section.title.level2.properties.xml +++ /dev/null @@ -1,33 +0,0 @@ - - - -section.title.level2.properties -attribute set - - -section.title.level2.properties -Properties for level-2 section titles - - - - - - - - pt - - - - - -Description - -The properties of level-2 section titles. - - - diff --git a/docbook-xsl-1.75.2/params/section.title.level3.properties.xml b/docbook-xsl-1.75.2/params/section.title.level3.properties.xml deleted file mode 100644 index a009a6e..0000000 --- a/docbook-xsl-1.75.2/params/section.title.level3.properties.xml +++ /dev/null @@ -1,32 +0,0 @@ - - -section.title.level3.properties -attribute set - - -section.title.level3.properties -Properties for level-3 section titles - - - - - - - - pt - - - - - -Description - -The properties of level-3 section titles. - - - diff --git a/docbook-xsl-1.75.2/params/section.title.level4.properties.xml b/docbook-xsl-1.75.2/params/section.title.level4.properties.xml deleted file mode 100644 index 00d4398..0000000 --- a/docbook-xsl-1.75.2/params/section.title.level4.properties.xml +++ /dev/null @@ -1,32 +0,0 @@ - - -section.title.level4.properties -attribute set - - -section.title.level4.properties -Properties for level-4 section titles - - - - - - - - pt - - - - - -Description - -The properties of level-4 section titles. - - - diff --git a/docbook-xsl-1.75.2/params/section.title.level5.properties.xml b/docbook-xsl-1.75.2/params/section.title.level5.properties.xml deleted file mode 100644 index c25b5ef..0000000 --- a/docbook-xsl-1.75.2/params/section.title.level5.properties.xml +++ /dev/null @@ -1,32 +0,0 @@ - - -section.title.level5.properties -attribute set - - -section.title.level5.properties -Properties for level-5 section titles - - - - - - - - pt - - - - - -Description - -The properties of level-5 section titles. - - - diff --git a/docbook-xsl-1.75.2/params/section.title.level6.properties.xml b/docbook-xsl-1.75.2/params/section.title.level6.properties.xml deleted file mode 100644 index a2a0feb..0000000 --- a/docbook-xsl-1.75.2/params/section.title.level6.properties.xml +++ /dev/null @@ -1,33 +0,0 @@ - - -section.title.level6.properties -attribute set - - -section.title.level6.properties -Properties for level-6 section titles - - - - - - - - pt - - - - - -Description - -The properties of level-6 section titles. This property set is actually -used for all titles below level 5. - - - diff --git a/docbook-xsl-1.75.2/params/section.title.properties.xml b/docbook-xsl-1.75.2/params/section.title.properties.xml deleted file mode 100644 index ab849af..0000000 --- a/docbook-xsl-1.75.2/params/section.title.properties.xml +++ /dev/null @@ -1,39 +0,0 @@ - - -section.title.properties -attribute set - - -section.title.properties -Properties for section titles - - - - - - - - - bold - - always - 0.8em - 1.0em - 1.2em - start - - - - - -Description - -The properties common to all section titles. - - - diff --git a/docbook-xsl-1.75.2/params/segmentedlist.as.table.xml b/docbook-xsl-1.75.2/params/segmentedlist.as.table.xml deleted file mode 100644 index fb2c236..0000000 --- a/docbook-xsl-1.75.2/params/segmentedlist.as.table.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -segmentedlist.as.table -boolean - - -segmentedlist.as.table -Format segmented lists as tables? - - - - - - - - -Description - -If non-zero, segmentedlists will be formatted as -tables. - - - diff --git a/docbook-xsl-1.75.2/params/sequential.links.xml b/docbook-xsl-1.75.2/params/sequential.links.xml deleted file mode 100644 index 293827d..0000000 --- a/docbook-xsl-1.75.2/params/sequential.links.xml +++ /dev/null @@ -1,25 +0,0 @@ - - -sequential.links -boolean - - -sequential.links -Make sequentional links? - - - - - - - - -Description -FIXME - - diff --git a/docbook-xsl-1.75.2/params/shade.verbatim.style.xml b/docbook-xsl-1.75.2/params/shade.verbatim.style.xml deleted file mode 100644 index 0907806..0000000 --- a/docbook-xsl-1.75.2/params/shade.verbatim.style.xml +++ /dev/null @@ -1,36 +0,0 @@ - - -shade.verbatim.style -attribute set - - -shade.verbatim.style -Properties that specify the style of shaded verbatim listings - - - - - - 0 - #E0E0E0 - - - #E0E0E0 - - - - -Description - -Properties that specify the style of shaded verbatim listings. The -parameters specified (the border and background color) are added to -the styling of the xsl-fo output. A border might be specified as "thin -black solid" for example. See xsl-fo - - - diff --git a/docbook-xsl-1.75.2/params/shade.verbatim.xml b/docbook-xsl-1.75.2/params/shade.verbatim.xml deleted file mode 100644 index 82a7216..0000000 --- a/docbook-xsl-1.75.2/params/shade.verbatim.xml +++ /dev/null @@ -1,30 +0,0 @@ - - -shade.verbatim -boolean - - -shade.verbatim -Should verbatim environments be shaded? - - - - - - -Description - -In the FO stylesheet, if this parameter is non-zero then the -shade.verbatim.style properties will be applied -to verbatim environments. - -In the HTML stylesheet, this parameter is now deprecated. Use -CSS instead. - - - diff --git a/docbook-xsl-1.75.2/params/show.comments.xml b/docbook-xsl-1.75.2/params/show.comments.xml deleted file mode 100644 index ac7bc24..0000000 --- a/docbook-xsl-1.75.2/params/show.comments.xml +++ /dev/null @@ -1,32 +0,0 @@ - - -show.comments -boolean - - -show.comments -Display remark elements? - - - - - - - - -Description - -If non-zero, comments will be displayed, otherwise they -are suppressed. Comments here refers to the remark element -(which was called comment prior to DocBook -4.0), not XML comments (<-- like this -->) which are -unavailable. - - - - diff --git a/docbook-xsl-1.75.2/params/show.foil.number.xml b/docbook-xsl-1.75.2/params/show.foil.number.xml deleted file mode 100644 index 627c6a7..0000000 --- a/docbook-xsl-1.75.2/params/show.foil.number.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -show.foil.number -boolean - - -show.foil.number -Show foil number on each foil? - - - - - - - - -Description - -If non-zero, on each slide there will be its number. Currently -not supported in all output formats. - - - diff --git a/docbook-xsl-1.75.2/params/show.revisionflag.xml b/docbook-xsl-1.75.2/params/show.revisionflag.xml deleted file mode 100644 index c589b01..0000000 --- a/docbook-xsl-1.75.2/params/show.revisionflag.xml +++ /dev/null @@ -1,42 +0,0 @@ - - -show.revisionflag -boolean - - -show.revisionflag -Enable decoration of elements that have a revisionflag - - - - - - - - -Description - - -If show.revisionflag is turned on, then the stylesheets -may produce additional markup designed to allow a CSS stylesheet to -highlight elements that have specific revisionflag settings. - -The markup inserted will be usually be either a <span> or -<div> with an appropriate class -attribute. (The value of the class attribute will be the same as the -value of the revisionflag attribute). In some contexts, for example -tables, where extra markup would be structurally illegal, the class -attribute will be added to the appropriate container element. - -In general, the stylesheets only test for revisionflag in contexts -where an importing stylesheet would have to redefine whole templates. -Most of the revisionflag processing is expected to be done by another -stylesheet, for example changebars.xsl. - - - diff --git a/docbook-xsl-1.75.2/params/showtoc.image.xml b/docbook-xsl-1.75.2/params/showtoc.image.xml deleted file mode 100644 index 7b1fca3..0000000 --- a/docbook-xsl-1.75.2/params/showtoc.image.xml +++ /dev/null @@ -1,29 +0,0 @@ - - -showtoc.image -filename - - -showtoc.image -Show ToC image - - - - -showtoc.gif - - - -Description - -Specifies the filename of the show ToC image. This is used -when the ToC hide/show parameter is -enabled. - - - diff --git a/docbook-xsl-1.75.2/params/side.float.properties.xml b/docbook-xsl-1.75.2/params/side.float.properties.xml deleted file mode 100644 index 0a6d904..0000000 --- a/docbook-xsl-1.75.2/params/side.float.properties.xml +++ /dev/null @@ -1,50 +0,0 @@ - - -side.float.properties -attribute set - - -side.float.properties -Attribute set for side float container properties - - - - - - 2in - 4pt - 4pt - 2pt - 2pt - 0pt - 0pt - start - - - - -Description - -Properties that are applied to the -fo:block-container inside of -a side float that is generated by the template named -floater. -That template generates a side float -when the side.float.type is set to one -of the values for a side float. - -If you do only left or -start side floats, you may want to set the -padding-start attribute to zero. -If you do only right or -end side floats, you may want to set the -padding-end attribute to zero. - - - - diff --git a/docbook-xsl-1.75.2/params/sidebar.float.type.xml b/docbook-xsl-1.75.2/params/sidebar.float.type.xml deleted file mode 100644 index 8c6a286..0000000 --- a/docbook-xsl-1.75.2/params/sidebar.float.type.xml +++ /dev/null @@ -1,90 +0,0 @@ - - -sidebar.float.type -list -none -before -left -start -right -end -inside -outside - - -sidebar.float.type -Select type of float for sidebar elements - - - - -none - - - -Description - -Selects the type of float for sidebar elements. - - - -If sidebar.float.type is -none, then -no float is used. - - - -If sidebar.float.type is -before, then -the float appears at the top of the page. On some processors, -that may be the next page rather than the current page. - - - - -If sidebar.float.type is -left, -then a left side float is used. - - - - -If sidebar.float.type is -start, -then when the text direction is left-to-right a left side float is used. -When the text direction is right-to-left, a right side float is used. - - - - -If sidebar.float.type is -right, -then a right side float is used. - - - - -If sidebar.float.type is -end, -then when the text direction is left-to-right a right side float is used. -When the text direction is right-to-left, a left side float is used. - - - - -If your XSL-FO processor supports floats positioned on the -inside or -outside -of double-sided pages, then you have those two -options for side floats as well. - - - - - - diff --git a/docbook-xsl-1.75.2/params/sidebar.float.width.xml b/docbook-xsl-1.75.2/params/sidebar.float.width.xml deleted file mode 100644 index cb989e4..0000000 --- a/docbook-xsl-1.75.2/params/sidebar.float.width.xml +++ /dev/null @@ -1,35 +0,0 @@ - - -sidebar.float.width -length - - -sidebar.float.width -Set the default width for sidebars - - - - -1in - - - -Description - -Sets the default width for sidebars when used as a side float. -The width determines the degree to which the sidebar block intrudes into -the text area. - -If sidebar.float.type is -before or -none, then -this parameter is ignored. - - - - diff --git a/docbook-xsl-1.75.2/params/sidebar.properties.xml b/docbook-xsl-1.75.2/params/sidebar.properties.xml deleted file mode 100644 index fc98ac0..0000000 --- a/docbook-xsl-1.75.2/params/sidebar.properties.xml +++ /dev/null @@ -1,42 +0,0 @@ - - -sidebar.properties -attribute set - - -sidebar.properties -Attribute set for sidebar properties - - - - - - solid - 1pt - black - #DDDDDD - 12pt - 12pt - 6pt - 6pt - 0pt - 0pt - - - - - -Description - -The styling for sidebars. - - - diff --git a/docbook-xsl-1.75.2/params/sidebar.title.properties.xml b/docbook-xsl-1.75.2/params/sidebar.title.properties.xml deleted file mode 100644 index f1b1d51..0000000 --- a/docbook-xsl-1.75.2/params/sidebar.title.properties.xml +++ /dev/null @@ -1,32 +0,0 @@ - - -sidebar.title.properties -attribute set - - -sidebar.title.properties -Attribute set for sidebar titles - - - - - - bold - false - start - always - - - - -Description - -The styling for sidebars titles. - - - diff --git a/docbook-xsl-1.75.2/params/simplesect.in.toc.xml b/docbook-xsl-1.75.2/params/simplesect.in.toc.xml deleted file mode 100644 index 9bc3ab5..0000000 --- a/docbook-xsl-1.75.2/params/simplesect.in.toc.xml +++ /dev/null @@ -1,26 +0,0 @@ - - -simplesect.in.toc -boolean - - -simplesect.in.toc -Should simplesect elements appear in the TOC? - - - - - - -Description - -If non-zero, simplesects will be included in the TOC. - - - - diff --git a/docbook-xsl-1.75.2/params/slide.font.family.xml b/docbook-xsl-1.75.2/params/slide.font.family.xml deleted file mode 100644 index e1c7541..0000000 --- a/docbook-xsl-1.75.2/params/slide.font.family.xml +++ /dev/null @@ -1,31 +0,0 @@ - - -slide.font.family -list -open -serif -sans-serif -monospace - - -slide.font.family -Specifies font family to use for slide bodies - - - - -Helvetica - - - -Description - -Specifies the font family to use for slides bodies. - - - diff --git a/docbook-xsl-1.75.2/params/slide.title.font.family.xml b/docbook-xsl-1.75.2/params/slide.title.font.family.xml deleted file mode 100644 index a5a3a88..0000000 --- a/docbook-xsl-1.75.2/params/slide.title.font.family.xml +++ /dev/null @@ -1,31 +0,0 @@ - - -slide.title.font.family -list -open -serif -sans-serif -monospace - - -slide.title.font.family -Specifies font family to use for slide titles - - - - -Helvetica - - - -Description - -Specifies the font family to use for slides titles. - - - diff --git a/docbook-xsl-1.75.2/params/slides.js.xml b/docbook-xsl-1.75.2/params/slides.js.xml deleted file mode 100644 index 90fffae..0000000 --- a/docbook-xsl-1.75.2/params/slides.js.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -slides.js -filename - - -slides.js -Slides overlay file - - - - -slides.js - - - -Description - -Specifies the filename of the slides JavaScript file. It's unlikely -that you will ever need to change this parameter. - - - diff --git a/docbook-xsl-1.75.2/params/slides.properties.xml b/docbook-xsl-1.75.2/params/slides.properties.xml deleted file mode 100644 index daca82c..0000000 --- a/docbook-xsl-1.75.2/params/slides.properties.xml +++ /dev/null @@ -1,31 +0,0 @@ - - -slides.properties -attribute set - - -slides.properties -Specifies properties for all slides - - - - - - - - - - - - -Description - -This parameter specifies properties that are applied to all slides. - - - diff --git a/docbook-xsl-1.75.2/params/spacing.paras.xml b/docbook-xsl-1.75.2/params/spacing.paras.xml deleted file mode 100644 index 2f2323a..0000000 --- a/docbook-xsl-1.75.2/params/spacing.paras.xml +++ /dev/null @@ -1,30 +0,0 @@ - - -spacing.paras -boolean - - -spacing.paras -Insert additional <p> elements for spacing? - - - - - - - - -Description - -When non-zero, additional, empty paragraphs are inserted in -several contexts (for example, around informal figures), to create a -more pleasing visual appearance in many browsers. - - - - diff --git a/docbook-xsl-1.75.2/params/speakernote.properties.xml b/docbook-xsl-1.75.2/params/speakernote.properties.xml deleted file mode 100644 index 089115a..0000000 --- a/docbook-xsl-1.75.2/params/speakernote.properties.xml +++ /dev/null @@ -1,32 +0,0 @@ - - -speakernote.properties -attribute set - - -speakernote.properties -Specifies properties for all speakernotes - - - - - - Times Roman - italic - 12pt - normal - - - - -Description - -This parameter specifies properties that are applied to all speakernotes. - - - diff --git a/docbook-xsl-1.75.2/params/subscript.properties.xml b/docbook-xsl-1.75.2/params/subscript.properties.xml deleted file mode 100644 index d2c7711..0000000 --- a/docbook-xsl-1.75.2/params/subscript.properties.xml +++ /dev/null @@ -1,29 +0,0 @@ - - -subscript.properties -attribute set - - -subscript.properties -Properties associated with subscripts - - - - - - 75% - - - - -Description - -Specifies styling properties for subscripts. - - - diff --git a/docbook-xsl-1.75.2/params/superscript.properties.xml b/docbook-xsl-1.75.2/params/superscript.properties.xml deleted file mode 100644 index ecf6af1..0000000 --- a/docbook-xsl-1.75.2/params/superscript.properties.xml +++ /dev/null @@ -1,29 +0,0 @@ - - -superscript.properties -attribute set - - -superscript.properties -Properties associated with superscripts - - - - - - 75% - - - - -Description - -Specifies styling properties for superscripts. - - - diff --git a/docbook-xsl-1.75.2/params/suppress.footer.navigation.xml b/docbook-xsl-1.75.2/params/suppress.footer.navigation.xml deleted file mode 100644 index 430ed97..0000000 --- a/docbook-xsl-1.75.2/params/suppress.footer.navigation.xml +++ /dev/null @@ -1,26 +0,0 @@ - - -suppress.footer.navigation -boolean - - -suppress.footer.navigation -Disable footer navigation - - - -0 - - -Description - - -If non-zero, footer navigation will be suppressed. - - - diff --git a/docbook-xsl-1.75.2/params/suppress.header.navigation.xml b/docbook-xsl-1.75.2/params/suppress.header.navigation.xml deleted file mode 100644 index 8fff081..0000000 --- a/docbook-xsl-1.75.2/params/suppress.header.navigation.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -suppress.header.navigation -boolean - - -suppress.header.navigation -Disable header navigation - - - - - - - - -Description - -If non-zero, header navigation will be suppressed. - - - diff --git a/docbook-xsl-1.75.2/params/suppress.homepage.title.xml b/docbook-xsl-1.75.2/params/suppress.homepage.title.xml deleted file mode 100644 index 38a3306..0000000 --- a/docbook-xsl-1.75.2/params/suppress.homepage.title.xml +++ /dev/null @@ -1,25 +0,0 @@ - - -suppress.homepage.title -boolean - - -suppress.homepage.title -Suppress title on homepage? - - - - - - - - -Description -FIXME:If non-zero, the title on the homepage is suppressed? - - diff --git a/docbook-xsl-1.75.2/params/suppress.navigation.xml b/docbook-xsl-1.75.2/params/suppress.navigation.xml deleted file mode 100644 index 351fc4d..0000000 --- a/docbook-xsl-1.75.2/params/suppress.navigation.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -suppress.navigation -boolean - - -suppress.navigation -Disable header and footer navigation - - - - - - - - -Description - - -If non-zero, header and footer navigation will be suppressed. - - - diff --git a/docbook-xsl-1.75.2/params/symbol.font.family.xml b/docbook-xsl-1.75.2/params/symbol.font.family.xml deleted file mode 100644 index 8acc791..0000000 --- a/docbook-xsl-1.75.2/params/symbol.font.family.xml +++ /dev/null @@ -1,45 +0,0 @@ - - -symbol.font.family -list -open -serif -sans-serif -monospace - - -symbol.font.family -The font families to be searched for symbols outside - of the body font - - - - -Symbol,ZapfDingbats - - - -Description - -A typical body or title font does not contain all -the character glyphs that DocBook supports. This parameter -specifies additional fonts that should be searched for -special characters not in the normal font. -These symbol font names are automatically appended -to the body or title font family name when fonts -are specified in a -font-family -property in the FO output. - -The symbol font names should be entered as a -comma-separated list. The default value is -Symbol,ZapfDingbats. - - - - diff --git a/docbook-xsl-1.75.2/params/table.borders.with.css.xml b/docbook-xsl-1.75.2/params/table.borders.with.css.xml deleted file mode 100644 index 2640fb9..0000000 --- a/docbook-xsl-1.75.2/params/table.borders.with.css.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -table.borders.with.css -boolean - - -table.borders.with.css -Use CSS to specify table, row, and cell borders? - - - - - - - - -Description - -If non-zero, CSS will be used to draw table borders. - - - - diff --git a/docbook-xsl-1.75.2/params/table.cell.border.color.xml b/docbook-xsl-1.75.2/params/table.cell.border.color.xml deleted file mode 100644 index 326e148..0000000 --- a/docbook-xsl-1.75.2/params/table.cell.border.color.xml +++ /dev/null @@ -1,39 +0,0 @@ - - -table.cell.border.color -color - - -table.cell.border.color -Specifies the border color of table cells - - - - - -black - - - -Description - -Set the color of table cell borders. If non-zero, the value is used -for the border coloration. See CSS. A -color is either a keyword or a numerical RGB specification. -Keywords are aqua, black, blue, fuchsia, gray, green, lime, maroon, -navy, olive, orange, purple, red, silver, teal, white, and -yellow. - - - To control properties of cell borders in HTML output, you must also turn on the - table.borders.with.css parameter. - - - - diff --git a/docbook-xsl-1.75.2/params/table.cell.border.style.xml b/docbook-xsl-1.75.2/params/table.cell.border.style.xml deleted file mode 100644 index 221a29c..0000000 --- a/docbook-xsl-1.75.2/params/table.cell.border.style.xml +++ /dev/null @@ -1,42 +0,0 @@ - - -table.cell.border.style -list -none -solid -dotted -dashed -double -groove -ridge -inset -outset -solid - - -table.cell.border.style -Specifies the border style of table cells - - - - -solid - - - -Description - -Specifies the border style of table cells. - - - To control properties of cell borders in HTML output, you must also turn on the - table.borders.with.css parameter. - - - - diff --git a/docbook-xsl-1.75.2/params/table.cell.border.thickness.xml b/docbook-xsl-1.75.2/params/table.cell.border.thickness.xml deleted file mode 100644 index 093e38e..0000000 --- a/docbook-xsl-1.75.2/params/table.cell.border.thickness.xml +++ /dev/null @@ -1,35 +0,0 @@ - - -table.cell.border.thickness -length - - -table.cell.border.thickness -Specifies the thickness of table cell borders - - - - -0.5pt - - - -Description - -If non-zero, specifies the thickness of borders on table -cells. The units are points. See -CSS - - - To control properties of cell borders in HTML output, you must also turn on the - table.borders.with.css parameter. - - - - diff --git a/docbook-xsl-1.75.2/params/table.cell.padding.xml b/docbook-xsl-1.75.2/params/table.cell.padding.xml deleted file mode 100644 index 25fd653..0000000 --- a/docbook-xsl-1.75.2/params/table.cell.padding.xml +++ /dev/null @@ -1,32 +0,0 @@ - - -table.cell.padding -attribute set - - -table.cell.padding -Specifies the padding of table cells - - - - - - 2pt - 2pt - 2pt - 2pt - - - - -Description - -Specifies the padding of table cells. - - - diff --git a/docbook-xsl-1.75.2/params/table.entry.padding.xml b/docbook-xsl-1.75.2/params/table.entry.padding.xml deleted file mode 100644 index cfd6aa3..0000000 --- a/docbook-xsl-1.75.2/params/table.entry.padding.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -table.entry.padding -length - - -table.entry.padding - - - - - -2pt - - - -Description - -FIXME: - - - diff --git a/docbook-xsl-1.75.2/params/table.footnote.number.format.xml b/docbook-xsl-1.75.2/params/table.footnote.number.format.xml deleted file mode 100644 index ebbd2ea..0000000 --- a/docbook-xsl-1.75.2/params/table.footnote.number.format.xml +++ /dev/null @@ -1,33 +0,0 @@ - - -table.footnote.number.format -list -11,2,3... -AA,B,C... -aa,b,c... -ii,ii,iii... -II,II,III... - - -table.footnote.number.format -Identifies the format used for footnote numbers in tables - - - - -a - - - -Description - -The table.footnote.number.format specifies the format -to use for footnote numeration (1, i, I, a, or A) in tables. - - - diff --git a/docbook-xsl-1.75.2/params/table.footnote.number.symbols.xml b/docbook-xsl-1.75.2/params/table.footnote.number.symbols.xml deleted file mode 100644 index a8d8c23..0000000 --- a/docbook-xsl-1.75.2/params/table.footnote.number.symbols.xml +++ /dev/null @@ -1,39 +0,0 @@ - - -table.footnote.number.symbols -string - - -table.footnote.number.symbols -Special characters to use a footnote markers in tables - - - - - - - - -Description - -If table.footnote.number.symbols is not the empty string, -table footnotes will use the characters it contains as footnote symbols. For example, -*&#x2020;&#x2021;&#x25CA;&#x2720; will identify -footnotes with *, †, ‡, -â—Š, and ✠. If there are more footnotes -than symbols, the stylesheets will fall back to numbered footnotes using -table.footnote.number.format. - -The use of symbols for footnotes depends on the ability of your -processor (or browser) to render the symbols you select. Not all systems are -capable of displaying the full range of Unicode characters. If the quoted characters -in the preceding paragraph are not displayed properly, that's a good indicator -that you may have trouble using those symbols for footnotes. - - - diff --git a/docbook-xsl-1.75.2/params/table.footnote.properties.xml b/docbook-xsl-1.75.2/params/table.footnote.properties.xml deleted file mode 100644 index 94bed80..0000000 --- a/docbook-xsl-1.75.2/params/table.footnote.properties.xml +++ /dev/null @@ -1,39 +0,0 @@ - - -table.footnote.properties -attribute set - - -table.footnote.properties -Properties applied to each table footnote body - - - - - - - - - normal - normal - 2pt - - - - - -Description - -This attribute set is applied to the footnote-block -for each table footnote. -It can be used to set the -font-size, font-family, and other inheritable properties that will be -applied to all table footnotes. - - - diff --git a/docbook-xsl-1.75.2/params/table.frame.border.color.xml b/docbook-xsl-1.75.2/params/table.frame.border.color.xml deleted file mode 100644 index 070cb6a..0000000 --- a/docbook-xsl-1.75.2/params/table.frame.border.color.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -table.frame.border.color -color - - -table.frame.border.color -Specifies the border color of table frames - - - - - -black - - - -Description - -Specifies the border color of table frames. - - - diff --git a/docbook-xsl-1.75.2/params/table.frame.border.style.xml b/docbook-xsl-1.75.2/params/table.frame.border.style.xml deleted file mode 100644 index 881840c..0000000 --- a/docbook-xsl-1.75.2/params/table.frame.border.style.xml +++ /dev/null @@ -1,37 +0,0 @@ - - -table.frame.border.style -list -none -solid -dotted -dashed -double -groove -ridge -inset -outset -solid - - -table.frame.border.style -Specifies the border style of table frames - - - - -solid - - - -Description - -Specifies the border style of table frames. - - - diff --git a/docbook-xsl-1.75.2/params/table.frame.border.thickness.xml b/docbook-xsl-1.75.2/params/table.frame.border.thickness.xml deleted file mode 100644 index 1eaa04a..0000000 --- a/docbook-xsl-1.75.2/params/table.frame.border.thickness.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -table.frame.border.thickness -length - - -table.frame.border.thickness -Specifies the thickness of the frame border - - - - -0.5pt - - - -Description - -Specifies the thickness of the border on the table's frame. - - - diff --git a/docbook-xsl-1.75.2/params/table.properties.xml b/docbook-xsl-1.75.2/params/table.properties.xml deleted file mode 100644 index 76340c8..0000000 --- a/docbook-xsl-1.75.2/params/table.properties.xml +++ /dev/null @@ -1,34 +0,0 @@ - - -table.properties -attribute set - - -table.properties -Properties associated with the block surrounding a table - - - - - - auto - - - - -Description - -Block styling properties for tables. This parameter should really -have been called table.block.properties or something -like that, but we’re leaving it to avoid backwards-compatibility -problems. - -See also table.table.properties. - - - diff --git a/docbook-xsl-1.75.2/params/table.spacer.image.xml b/docbook-xsl-1.75.2/params/table.spacer.image.xml deleted file mode 100644 index 12e6d5a..0000000 --- a/docbook-xsl-1.75.2/params/table.spacer.image.xml +++ /dev/null @@ -1,26 +0,0 @@ - - -table.spacer.image -filename - - -table.spacer.image -Invisible pixel for tabular accessibility - - - - -graphics/spacer.gif - - - -Description -This is the 1x1 pixel, transparent pixel used for the table trick to increase the accessibility of the tabular -website presentation. - - diff --git a/docbook-xsl-1.75.2/params/table.table.properties.xml b/docbook-xsl-1.75.2/params/table.table.properties.xml deleted file mode 100644 index 4ee3422..0000000 --- a/docbook-xsl-1.75.2/params/table.table.properties.xml +++ /dev/null @@ -1,36 +0,0 @@ - - -table.table.properties -attribute set - - -table.table.properties -Properties associated with a table - - - - - - retain - collapse - - - - -Description - -The styling for tables. This parameter should really -have been called table.properties, but that parameter -name was inadvertently established for the block-level properties -of the table as a whole. - - -See also table.properties. - - - diff --git a/docbook-xsl-1.75.2/params/tablecolumns.extension.xml b/docbook-xsl-1.75.2/params/tablecolumns.extension.xml deleted file mode 100644 index 2ec817a..0000000 --- a/docbook-xsl-1.75.2/params/tablecolumns.extension.xml +++ /dev/null @@ -1,30 +0,0 @@ - - -tablecolumns.extension -boolean - - -tablecolumns.extension -Enable the table columns extension function - - - - - - - - -Description - -The table columns extension function adjusts the widths of table -columns in the HTML result to more accurately reflect the specifications -in the CALS table. - - - - diff --git a/docbook-xsl-1.75.2/params/target.database.document.xml b/docbook-xsl-1.75.2/params/target.database.document.xml deleted file mode 100644 index 042f017..0000000 --- a/docbook-xsl-1.75.2/params/target.database.document.xml +++ /dev/null @@ -1,37 +0,0 @@ - - -target.database.document -uri - - -target.database.document -Name of master database file for resolving -olinks - - - - olinkdb.xml - - -Description - - -To resolve olinks between documents, the stylesheets use a master -database document that identifies the target datafiles for all the -documents within the scope of the olinks. This parameter value is the -URI of the master document to be read during processing to resolve -olinks. The default value is olinkdb.xml. - -The data structure of the file is defined in the -targetdatabase.dtd DTD. The database file -provides the high level elements to record the identifiers, locations, -and relationships of documents. The cross reference data for -individual documents is generally pulled into the database using -system entity references or XIncludes. See also -targets.filename. - diff --git a/docbook-xsl-1.75.2/params/targets.filename.xml b/docbook-xsl-1.75.2/params/targets.filename.xml deleted file mode 100644 index de6e29c..0000000 --- a/docbook-xsl-1.75.2/params/targets.filename.xml +++ /dev/null @@ -1,32 +0,0 @@ - - -targets.filename -string - - -targets.filename -Name of cross reference targets data file - - -target.db - - -Description - - -In order to resolve olinks efficiently, the stylesheets can -generate an external data file containing information about -all potential cross reference endpoints in a document. -This parameter lets you change the name of the generated -file from the default name target.db. -The name must agree with that used in the target database -used to resolve olinks during processing. -See also target.database.document. - - - diff --git a/docbook-xsl-1.75.2/params/template.xml b/docbook-xsl-1.75.2/params/template.xml deleted file mode 100644 index 9d35f83..0000000 --- a/docbook-xsl-1.75.2/params/template.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -[[NAME]] - - - -[[NAME]] - - - - - - - - - -Description - -FIXME: - - - diff --git a/docbook-xsl-1.75.2/params/tex.math.delims.xml b/docbook-xsl-1.75.2/params/tex.math.delims.xml deleted file mode 100644 index ec34c4a..0000000 --- a/docbook-xsl-1.75.2/params/tex.math.delims.xml +++ /dev/null @@ -1,47 +0,0 @@ - - -tex.math.delims -boolean - - -tex.math.delims -Should equations output for processing by TeX be -surrounded by math mode delimiters? - - - - - - - - -Description - -For compatibility with DSSSL based DBTeXMath from Allin Cottrell -you should set this parameter to 0. - - -Related Parameters - tex.math.in.alt, - passivetex.extensions - - -See Also - You can also use the dbtex delims processing - instruction to control whether delimiters are output. - -More information - For how-to documentation on embedding TeX equations and - generating output from them, see - DBTeXMath. - - diff --git a/docbook-xsl-1.75.2/params/tex.math.file.xml b/docbook-xsl-1.75.2/params/tex.math.file.xml deleted file mode 100644 index fbc6eaa..0000000 --- a/docbook-xsl-1.75.2/params/tex.math.file.xml +++ /dev/null @@ -1,42 +0,0 @@ - - -tex.math.file -string - - -tex.math.file -Name of temporary file for generating images from equations - - - - -tex-math-equations.tex - - - -Description - -Name of auxiliary file for TeX equations. This file can be -processed by dvi2bitmap to get bitmap versions of equations for HTML -output. - - -Related Parameters - tex.math.in.alt, - tex.math.delims, - - -More information - For how-to documentation on embedding TeX equations and - generating output from them, see - DBTeXMath. - - diff --git a/docbook-xsl-1.75.2/params/tex.math.in.alt.xml b/docbook-xsl-1.75.2/params/tex.math.in.alt.xml deleted file mode 100644 index c2c1441..0000000 --- a/docbook-xsl-1.75.2/params/tex.math.in.alt.xml +++ /dev/null @@ -1,83 +0,0 @@ - - -tex.math.in.alt -list -plain -latex - - -tex.math.in.alt -TeX notation used for equations - - - - - - - - -Description - -If you want type math directly in TeX notation in equations, -this parameter specifies notation used. Currently are supported two -values -- plain and latex. Empty -value means that you are not using TeX math at all. - -Preferred way for including TeX alternative of math is inside of -textobject element. Eg.: - -<inlineequation> -<inlinemediaobject> -<imageobject> -<imagedata fileref="eq1.gif"/> -</imageobject> -<textobject><phrase>E=mc squared</phrase></textobject> -<textobject role="tex"><phrase>E=mc^2</phrase></textobject> -</inlinemediaobject> -</inlineequation> - -If you are using graphic element, you can -store TeX inside alt element: - -<inlineequation> -<alt role="tex">a^2+b^2=c^2</alt> -<graphic fileref="a2b2c2.gif"/> -</inlineequation> - -If you want use this feature, you should process your FO with -PassiveTeX, which only supports TeX math notation. When calling -stylsheet, don't forget to specify also -passivetex.extensions=1. - -If you want equations in HTML, just process generated file -tex-math-equations.tex by TeX or LaTeX. Then run -dvi2bitmap program on result DVI file. You will get images for -equations in your document. - - - This feature is useful for print/PDF output only if you - use the obsolete and now unsupported PassiveTeX XSL-FO - engine. - - - - -Related Parameters - tex.math.delims, - passivetex.extensions, - tex.math.file - -More information - For how-to documentation on embedding TeX equations and - generating output from them, see - DBTeXMath. - - diff --git a/docbook-xsl-1.75.2/params/text.home.xml b/docbook-xsl-1.75.2/params/text.home.xml deleted file mode 100644 index 0bc81dd..0000000 --- a/docbook-xsl-1.75.2/params/text.home.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -text.home -string - - -text.home -Home - - - - -Home - - - -Description - -FIXME: - - - diff --git a/docbook-xsl-1.75.2/params/text.next.xml b/docbook-xsl-1.75.2/params/text.next.xml deleted file mode 100644 index d89b8e8..0000000 --- a/docbook-xsl-1.75.2/params/text.next.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -text.next -string - - -text.next -FIXME: - - - - -Next - - - -Description - -FIXME: - - - diff --git a/docbook-xsl-1.75.2/params/text.prev.xml b/docbook-xsl-1.75.2/params/text.prev.xml deleted file mode 100644 index 62d28e3..0000000 --- a/docbook-xsl-1.75.2/params/text.prev.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -text.prev -string - - -text.prev -FIXME: - - - - -Prev - - - -Description - -FIXME: - - - diff --git a/docbook-xsl-1.75.2/params/text.toc.xml b/docbook-xsl-1.75.2/params/text.toc.xml deleted file mode 100644 index 083b8e3..0000000 --- a/docbook-xsl-1.75.2/params/text.toc.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -text.toc -string - - -text.toc -FIXME: - - - - -ToC - - - -Description - -FIXME: - - - diff --git a/docbook-xsl-1.75.2/params/text.up.xml b/docbook-xsl-1.75.2/params/text.up.xml deleted file mode 100644 index f6dca22..0000000 --- a/docbook-xsl-1.75.2/params/text.up.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -text.up -string - - -text.up -FIXME: - - - - -Up - - - -Description - -FIXME: - - - diff --git a/docbook-xsl-1.75.2/params/textbgcolor.xml b/docbook-xsl-1.75.2/params/textbgcolor.xml deleted file mode 100644 index b9aefe6..0000000 --- a/docbook-xsl-1.75.2/params/textbgcolor.xml +++ /dev/null @@ -1,26 +0,0 @@ - - -textbgcolor -color - - -textbgcolor -The background color of the table body - - - - -white - - - -Description -The background color of the table body. -Only applies with the tabular presentation is being used. - - diff --git a/docbook-xsl-1.75.2/params/textdata.default.encoding.xml b/docbook-xsl-1.75.2/params/textdata.default.encoding.xml deleted file mode 100644 index b6f30a8..0000000 --- a/docbook-xsl-1.75.2/params/textdata.default.encoding.xml +++ /dev/null @@ -1,32 +0,0 @@ - - -textdata.default.encoding -string - - -textdata.default.encoding -Default encoding of external text files which are included -using textdata element - - - - - - - - -Description - -Specifies the encoding of any external text files included using -textdata element. This value is used only when you do -not specify encoding by the appropriate attribute -directly on textdata. An empty string is interpreted as the system -default encoding. - - - diff --git a/docbook-xsl-1.75.2/params/textinsert.extension.xml b/docbook-xsl-1.75.2/params/textinsert.extension.xml deleted file mode 100644 index a6f1ea4..0000000 --- a/docbook-xsl-1.75.2/params/textinsert.extension.xml +++ /dev/null @@ -1,62 +0,0 @@ - - - textinsert.extension - boolean - - - textinsert.extension - Enables the textinsert extension element - - - - - - - Description - The textinsert extension element inserts the contents of - a file into the result tree (as text). - - To use the textinsert extension element, you must use - either Saxon or Xalan as your XSLT processor (it doesn’t - work with xsltproc), along with either the DocBook Saxon - extensions or DocBook Xalan extensions (for more - information about those extensions, see DocBook Saxon Extensions and DocBook Xalan Extensions), and you must set both - the use.extensions and - textinsert.extension parameters to - 1. - As an alternative to using the textinsert element, - consider using an Xinclude element with the - parse="text" attribute and value - specified, as detailed in Using XInclude for text inclusions. - - - See Also - You can also use the dbhtml-include href processing - instruction to insert external files — both files containing - plain text and files with markup content (including HTML - content). - - More information - For how-to documentation on inserting contents of - external code files and other text files into output, see - External code files. - For guidelines on inserting contents of - HTML files into output, see Inserting external HTML code. - - diff --git a/docbook-xsl-1.75.2/params/title.font.family.xml b/docbook-xsl-1.75.2/params/title.font.family.xml deleted file mode 100644 index 369021f..0000000 --- a/docbook-xsl-1.75.2/params/title.font.family.xml +++ /dev/null @@ -1,33 +0,0 @@ - - -title.font.family -list -open -serif -sans-serif -monospace - - -title.font.family -The default font family for titles - - - - -sans-serif - - - -Description - -The title font family is used for titles (chapter, section, figure, -etc.) - - - - diff --git a/docbook-xsl-1.75.2/params/title.margin.left.xml b/docbook-xsl-1.75.2/params/title.margin.left.xml deleted file mode 100644 index dc50dd1..0000000 --- a/docbook-xsl-1.75.2/params/title.margin.left.xml +++ /dev/null @@ -1,65 +0,0 @@ - - -title.margin.left -length - - -title.margin.left -Adjust the left margin for titles - - - - - - - -4pc - 0pt - 0pt - - - - - -Description - -This parameter provides -the means of adjusting the left margin for titles -when the XSL-FO processor being used is -an old version of FOP (0.25 and earlier). -It is only useful when the fop.extensions -is nonzero. - -The left margin of the body region -is calculated to include this space, -and titles are outdented to the left outside -the body region by this amount, -effectively leaving titles at the intended left margin -and the body text indented. -Currently this method is only used for old FOP because -it cannot properly use the body.start.indent -parameter. - - -The default value when the fop.extensions -parameter is nonzero is -4pc, which means the -body text is indented 4 picas relative to -the titles. -The default value when the fop.extensions -parameter equals zero is 0pt, and -the body indent should instead be specified -using the body.start.indent -parameter. - - -If you set the value to zero, be sure to still include -a unit indicator such as 0pt, or -the FO processor will report errors. - - - - diff --git a/docbook-xsl-1.75.2/params/titlefoil.html.xml b/docbook-xsl-1.75.2/params/titlefoil.html.xml deleted file mode 100644 index 5fa2acd..0000000 --- a/docbook-xsl-1.75.2/params/titlefoil.html.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -titlefoil.html -filename - - -titlefoil.html -Name of title foil HTML file - - - - - - - - -Description - -Sets the filename used for the slides titlepage. - - - diff --git a/docbook-xsl-1.75.2/params/toc.bg.color.xml b/docbook-xsl-1.75.2/params/toc.bg.color.xml deleted file mode 100644 index 1389c62..0000000 --- a/docbook-xsl-1.75.2/params/toc.bg.color.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -toc.bg.color -color - - -toc.bg.color -Background color for ToC frame - - - - -#FFFFFF - - - -Description - -Specifies the background color used in the ToC frame. - - - diff --git a/docbook-xsl-1.75.2/params/toc.blank.graphic.xml b/docbook-xsl-1.75.2/params/toc.blank.graphic.xml deleted file mode 100644 index bb24888..0000000 --- a/docbook-xsl-1.75.2/params/toc.blank.graphic.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -toc.blank.graphic -boolean - - -toc.blank.graphic -Use graphic for "blanks" in TOC? - - - - - - - - -Description -If non-zero, "blanks" in the the TOC will be accomplished -with the graphic identified by toc.spacer.image. - -Only applies with the tabular presentation is being used. - - diff --git a/docbook-xsl-1.75.2/params/toc.blank.image.xml b/docbook-xsl-1.75.2/params/toc.blank.image.xml deleted file mode 100644 index 82caa2f..0000000 --- a/docbook-xsl-1.75.2/params/toc.blank.image.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -toc.blank.image -filename - - -toc.blank.image -The image for "blanks" in the TOC - - - - -graphics/blank.gif - - - -Description -If toc.blank.graphic is non-zero, this image -will be used to for "blanks" in the TOC. -Only applies with the tabular presentation is being used. - - diff --git a/docbook-xsl-1.75.2/params/toc.blank.text.xml b/docbook-xsl-1.75.2/params/toc.blank.text.xml deleted file mode 100644 index d39aec4..0000000 --- a/docbook-xsl-1.75.2/params/toc.blank.text.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -toc.blank.text -string - - -toc.blank.text -The text for "blanks" in the TOC - - - - -    - - - -Description -If toc.blank.graphic is zero, this text string -will be used for "blanks" in the TOC. -Only applies with the tabular presentation is being used. - - diff --git a/docbook-xsl-1.75.2/params/toc.hide.show.xml b/docbook-xsl-1.75.2/params/toc.hide.show.xml deleted file mode 100644 index 1570ec4..0000000 --- a/docbook-xsl-1.75.2/params/toc.hide.show.xml +++ /dev/null @@ -1,33 +0,0 @@ - - -toc.hide.show -boolean - - -toc.hide.show -Enable hide/show button for ToC frame - - - - - - - - -Description - -If non-zero, JavaScript (and an additional icon, see -hidetoc.image and -showtoc.image) is added to each slide -to allow the ToC panel to be toggled on each panel. - -There is a bug in Mozilla 1.0 (at least as of CR3) that causes -the browser to reload the titlepage when this feature is used. - - - diff --git a/docbook-xsl-1.75.2/params/toc.html.xml b/docbook-xsl-1.75.2/params/toc.html.xml deleted file mode 100644 index 62c060c..0000000 --- a/docbook-xsl-1.75.2/params/toc.html.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -toc.html -filename - - -toc.html -Name of ToC HTML file - - - - - - - - -Description - -Sets the filename used for the table of contents page. - - - diff --git a/docbook-xsl-1.75.2/params/toc.image.xml b/docbook-xsl-1.75.2/params/toc.image.xml deleted file mode 100644 index 147155c..0000000 --- a/docbook-xsl-1.75.2/params/toc.image.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -toc.image -filename - - -toc.image -ToC image - - - - -active/nav-toc.png - - - -Description - -Specifies the filename of the ToC navigation icon. - - - diff --git a/docbook-xsl-1.75.2/params/toc.indent.width.xml b/docbook-xsl-1.75.2/params/toc.indent.width.xml deleted file mode 100644 index 449e74c..0000000 --- a/docbook-xsl-1.75.2/params/toc.indent.width.xml +++ /dev/null @@ -1,34 +0,0 @@ - - -toc.indent.width -float - - -toc.indent.width -Amount of indentation for TOC entries - - - - -24 - - - - -Description - -Specifies, in points, the distance by which each level of the -TOC is indented from its parent. - -This value is expressed in points, without -a unit (in other words, it is a bare number). Using a bare number allows the stylesheet -to perform calculations that would otherwise have to be performed by the FO processor -because not all processors support expressions. - - - diff --git a/docbook-xsl-1.75.2/params/toc.line.properties.xml b/docbook-xsl-1.75.2/params/toc.line.properties.xml deleted file mode 100644 index 6fd6b17..0000000 --- a/docbook-xsl-1.75.2/params/toc.line.properties.xml +++ /dev/null @@ -1,42 +0,0 @@ - - -toc.line.properties -attribute set - - -toc.line.properties -Properties for lines in ToC and LoTs - - - - - - justify - start - - - - - - -Description - -Properties which are applied to every line in ToC (or LoT). You can -modify them in order to change appearance of all, or some lines. For -example in order to make lines for chapters in bold specify the -following in your customization layer. - -<xsl:attribute-set name="toc.line.properties"> - <xsl:attribute name="font-weight"> - <xsl:when test="self::chapter | self::preface | self::appendix">bold</xsl:when> - <xsl:otherwise>normal</xsl:otherwise> - </xsl:attribute> -</xsl:attribute-set> - - - diff --git a/docbook-xsl-1.75.2/params/toc.list.type.xml b/docbook-xsl-1.75.2/params/toc.list.type.xml deleted file mode 100644 index 31dc465..0000000 --- a/docbook-xsl-1.75.2/params/toc.list.type.xml +++ /dev/null @@ -1,30 +0,0 @@ - - -toc.list.type -list -dl -ul -ol - - -toc.list.type -Type of HTML list element to use for Tables of Contents - - - -dl - - -Description - -When an automatically generated Table of Contents (or List of Titles) -is produced, this HTML element will be used to make the list. - - - - diff --git a/docbook-xsl-1.75.2/params/toc.margin.properties.xml b/docbook-xsl-1.75.2/params/toc.margin.properties.xml deleted file mode 100644 index 25963df..0000000 --- a/docbook-xsl-1.75.2/params/toc.margin.properties.xml +++ /dev/null @@ -1,33 +0,0 @@ - - -toc.margin.properties -attribute set - - -toc.margin.properties -Margin properties used on Tables of Contents - - - - - - 0.5em - 1em - 2em - 0.5em - 1em - 2em - - - - -Description -This attribute set is used on Tables of Contents. These attributes are set -on the wrapper that surrounds the ToC block, not on each individual lines. - - diff --git a/docbook-xsl-1.75.2/params/toc.max.depth.xml b/docbook-xsl-1.75.2/params/toc.max.depth.xml deleted file mode 100644 index 75902b3..0000000 --- a/docbook-xsl-1.75.2/params/toc.max.depth.xml +++ /dev/null @@ -1,25 +0,0 @@ - - -toc.max.depth -integer - - -toc.max.depth -How many levels should be created for each TOC? - - - -8 - - -Description - -Specifies the maximal depth of TOC on all levels. - - - diff --git a/docbook-xsl-1.75.2/params/toc.pointer.graphic.xml b/docbook-xsl-1.75.2/params/toc.pointer.graphic.xml deleted file mode 100644 index 4b2cb74..0000000 --- a/docbook-xsl-1.75.2/params/toc.pointer.graphic.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -toc.pointer.graphic -boolean - - -toc.pointer.graphic -Use graphic for TOC pointer? - - - - - - - - -Description -If non-zero, the "pointer" in the TOC will be displayed -with the graphic identified by toc.pointer.image. - -Only applies with the tabular presentation is being used. - - diff --git a/docbook-xsl-1.75.2/params/toc.pointer.image.xml b/docbook-xsl-1.75.2/params/toc.pointer.image.xml deleted file mode 100644 index bf06901..0000000 --- a/docbook-xsl-1.75.2/params/toc.pointer.image.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -toc.pointer.image -filename - - -toc.pointer.image -The image for the "pointer" in the TOC - - - - -graphics/arrow.gif - - - -Description -If toc.pointer.graphic is non-zero, this image -will be used for the "pointer" in the TOC. -Only applies with the tabular presentation is being used. - - diff --git a/docbook-xsl-1.75.2/params/toc.pointer.text.xml b/docbook-xsl-1.75.2/params/toc.pointer.text.xml deleted file mode 100644 index b094765..0000000 --- a/docbook-xsl-1.75.2/params/toc.pointer.text.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -toc.pointer.text -string - - -toc.pointer.text -The text for the "pointer" in the TOC - - - - - >  - - - -Description -If toc.pointer.graphic is zero, this text string -will be used to display the "pointer" in the TOC. -Only applies with the tabular presentation is being used. - - diff --git a/docbook-xsl-1.75.2/params/toc.row.height.xml b/docbook-xsl-1.75.2/params/toc.row.height.xml deleted file mode 100644 index 89bac83..0000000 --- a/docbook-xsl-1.75.2/params/toc.row.height.xml +++ /dev/null @@ -1,33 +0,0 @@ - - -toc.row.height -length - - -toc.row.height -Height of ToC rows in dynamic ToCs - - - - -22 - - - -Description - -This parameter specifies the height of each row in the table of -contents. This is only applicable if a dynamic ToC is used. You may want to -adjust this parameter for optimal appearance with the font and image -sizes selected by your CSS -stylesheet. - - - - diff --git a/docbook-xsl-1.75.2/params/toc.section.depth.xml b/docbook-xsl-1.75.2/params/toc.section.depth.xml deleted file mode 100644 index db99f9c..0000000 --- a/docbook-xsl-1.75.2/params/toc.section.depth.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -toc.section.depth -integer - - -toc.section.depth -How deep should recursive sections appear -in the TOC? - - - -2 - - -Description - -Specifies the depth to which recursive sections should appear in the -TOC. - - - - diff --git a/docbook-xsl-1.75.2/params/toc.spacer.graphic.xml b/docbook-xsl-1.75.2/params/toc.spacer.graphic.xml deleted file mode 100644 index 0a5729c..0000000 --- a/docbook-xsl-1.75.2/params/toc.spacer.graphic.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -toc.spacer.graphic -boolean - - -toc.spacer.graphic -Use graphic for TOC spacer? - - - - - - - - -Description -If non-zero, the indentation in the TOC will be accomplished -with the graphic identified by toc.spacer.image. - -Only applies with the tabular presentation is being used. - - diff --git a/docbook-xsl-1.75.2/params/toc.spacer.image.xml b/docbook-xsl-1.75.2/params/toc.spacer.image.xml deleted file mode 100644 index 0d55016..0000000 --- a/docbook-xsl-1.75.2/params/toc.spacer.image.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -toc.spacer.image -filename - - -toc.spacer.image -The image for spacing the TOC - - - - -graphics/blank.gif - - - -Description -If toc.spacer.graphic is non-zero, this image -will be used to indent the TOC. -Only applies with the tabular presentation is being used. - - diff --git a/docbook-xsl-1.75.2/params/toc.spacer.text.xml b/docbook-xsl-1.75.2/params/toc.spacer.text.xml deleted file mode 100644 index bfb605f..0000000 --- a/docbook-xsl-1.75.2/params/toc.spacer.text.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -toc.spacer.text -string - - -toc.spacer.text -The text for spacing the TOC - - - - -    - - - -Description -If toc.spacer.graphic is zero, this text string -will be used to indent the TOC. -Only applies with the tabular presentation is being used. - - diff --git a/docbook-xsl-1.75.2/params/toc.width.xml b/docbook-xsl-1.75.2/params/toc.width.xml deleted file mode 100644 index 71a3c03..0000000 --- a/docbook-xsl-1.75.2/params/toc.width.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -toc.width -length - - -toc.width -Width of ToC frame - - - - -250 - - - - -Description - -Specifies the width of the ToC frame in pixels. - - - diff --git a/docbook-xsl-1.75.2/params/ua.js.xml b/docbook-xsl-1.75.2/params/ua.js.xml deleted file mode 100644 index 8242a71..0000000 --- a/docbook-xsl-1.75.2/params/ua.js.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -ua.js -filename - - -ua.js -UA JavaScript file - - - - -ua.js - - - -Description - -Specifies the filename of the UA JavaScript file. It's unlikely -that you will ever need to change this parameter. - - - diff --git a/docbook-xsl-1.75.2/params/ulink.footnotes.xml b/docbook-xsl-1.75.2/params/ulink.footnotes.xml deleted file mode 100644 index f17c884..0000000 --- a/docbook-xsl-1.75.2/params/ulink.footnotes.xml +++ /dev/null @@ -1,34 +0,0 @@ - - -ulink.footnotes -boolean - - -ulink.footnotes -Generate footnotes for ulinks? - - - - - - - - -Description - -If non-zero, and if ulink.show also is non-zero, -the URL of each ulink will appear as a footnote. - -DocBook 5 does not have an ulink element. When processing -DocBoook 5 documents, ulink.footnotes applies to all inline -elements that are marked up with xlink:href attributes -that point to external resources. - - - - diff --git a/docbook-xsl-1.75.2/params/ulink.hyphenate.chars.xml b/docbook-xsl-1.75.2/params/ulink.hyphenate.chars.xml deleted file mode 100644 index 7fdd771..0000000 --- a/docbook-xsl-1.75.2/params/ulink.hyphenate.chars.xml +++ /dev/null @@ -1,37 +0,0 @@ - - -ulink.hyphenate.chars -string - - -ulink.hyphenate.chars -List of characters to allow ulink URLs to be automatically hyphenated on - - - - -/ - - - -Description - -If the ulink.hyphenate is not empty, then -hyphenation of ulinks is turned on, and any -character contained in this parameter is treated as an allowable -hyphenation point. - -The default value is /, but the parameter -could be customized -to contain other URL characters, as for example: - -<xsl:param name="ulink.hyphenate.chars">:/@&?.#</xsl:param> - - - - diff --git a/docbook-xsl-1.75.2/params/ulink.hyphenate.xml b/docbook-xsl-1.75.2/params/ulink.hyphenate.xml deleted file mode 100644 index 719e937..0000000 --- a/docbook-xsl-1.75.2/params/ulink.hyphenate.xml +++ /dev/null @@ -1,35 +0,0 @@ - - -ulink.hyphenate -string - - -ulink.hyphenate -Allow URLs to be automatically hyphenated - - - - - - - - -Description - -If not empty, the specified character (or more generally, content) is -added to URLs after every character included in the string -in the ulink.hyphenate.chars parameter (default -is /). If the character in this parameter is a -Unicode soft hyphen (0x00AD) or Unicode zero-width space (0x200B), some FO -processors will be able to reasonably hyphenate long URLs. - -As of 28 Jan 2002, discretionary hyphens are more widely and correctly -supported than zero-width spaces for this purpose. - - - diff --git a/docbook-xsl-1.75.2/params/ulink.show.xml b/docbook-xsl-1.75.2/params/ulink.show.xml deleted file mode 100644 index 6f90d58..0000000 --- a/docbook-xsl-1.75.2/params/ulink.show.xml +++ /dev/null @@ -1,37 +0,0 @@ - - -ulink.show -boolean - - -ulink.show -Display URLs after ulinks? - - - - - - - - -Description - -If non-zero, the URL of each ulink will -appear after the text of the link. If the text of the link and the URL -are identical, the URL is suppressed. - -See also ulink.footnotes. - -DocBook 5 does not have an ulink element. When processing -DocBoook 5 documents, ulink.show applies to all inline -elements that are marked up with xlink:href attributes -that point to external resources. - - - - diff --git a/docbook-xsl-1.75.2/params/ulink.target.xml b/docbook-xsl-1.75.2/params/ulink.target.xml deleted file mode 100644 index cf1d42b..0000000 --- a/docbook-xsl-1.75.2/params/ulink.target.xml +++ /dev/null @@ -1,29 +0,0 @@ - - -ulink.target -string - - -ulink.target -The HTML anchor target for ULinks - - - - -_top - - - -Description - -If ulink.target is non-zero, its value will -be used for the target attribute -on anchors generated for ulinks. - - - diff --git a/docbook-xsl-1.75.2/params/up.image.xml b/docbook-xsl-1.75.2/params/up.image.xml deleted file mode 100644 index 1c3bfa2..0000000 --- a/docbook-xsl-1.75.2/params/up.image.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -up.image -filename - - -up.image -Up-arrow image - - - - -active/nav-up.png - - - -Description - -Specifies the filename of the upward-pointing navigation arrow. - - - diff --git a/docbook-xsl-1.75.2/params/use.embed.for.svg.xml b/docbook-xsl-1.75.2/params/use.embed.for.svg.xml deleted file mode 100644 index f7c52cc..0000000 --- a/docbook-xsl-1.75.2/params/use.embed.for.svg.xml +++ /dev/null @@ -1,33 +0,0 @@ - - -use.embed.for.svg -boolean - - -use.embed.for.svg -Use HTML embed for SVG? - - - - - - - - -Description - -If non-zero, an embed element will be created for -SVG figures. An object is always created, -this parameter merely controls whether or not an additional embed -is generated inside the object. - -On the plus side, this may be more portable among browsers and plug-ins. -On the minus side, it isn't valid HTML. - - - diff --git a/docbook-xsl-1.75.2/params/use.extensions.xml b/docbook-xsl-1.75.2/params/use.extensions.xml deleted file mode 100644 index 4dce71b..0000000 --- a/docbook-xsl-1.75.2/params/use.extensions.xml +++ /dev/null @@ -1,31 +0,0 @@ - - -use.extensions -boolean - - -use.extensions -Enable extensions - - - - - - - - -Description - -If non-zero, extensions may be used. Each extension is -further controlled by its own parameter. But if -use.extensions is zero, no extensions will -be used. - - - - diff --git a/docbook-xsl-1.75.2/params/use.id.as.filename.xml b/docbook-xsl-1.75.2/params/use.id.as.filename.xml deleted file mode 100644 index e5133e9..0000000 --- a/docbook-xsl-1.75.2/params/use.id.as.filename.xml +++ /dev/null @@ -1,30 +0,0 @@ - - -use.id.as.filename -boolean - - -use.id.as.filename -Use ID value of chunk elements as the filename? - - - - - - - - -Description - -If use.id.as.filename -is non-zero, the filename of chunk elements that have IDs will be -derived from the ID value. - - - - diff --git a/docbook-xsl-1.75.2/params/use.id.function.xml b/docbook-xsl-1.75.2/params/use.id.function.xml deleted file mode 100644 index 5f4e6f7..0000000 --- a/docbook-xsl-1.75.2/params/use.id.function.xml +++ /dev/null @@ -1,32 +0,0 @@ - - -use.id.function -boolean - - -use.id.function -Use the XPath id() function to find link targets? - - - - - - - - -Description - -If 1, the stylesheets use the id() function -to find the targets of cross reference elements. This is more -efficient, but only works if your XSLT processor implements the -id() function, naturally. -THIS PARAMETER IS NOT SUPPORTED. IT IS ALWAYS ASSUMED TO BE 1. -SEE xref.xsl IF YOU NEED TO TURN IT OFF. - - - diff --git a/docbook-xsl-1.75.2/params/use.local.olink.style.xml b/docbook-xsl-1.75.2/params/use.local.olink.style.xml deleted file mode 100644 index eb4f57a..0000000 --- a/docbook-xsl-1.75.2/params/use.local.olink.style.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -use.local.olink.style -boolean - - -use.local.olink.style -Process olinks using xref style of current -document - - - - -Description - -When cross reference data is collected for use by olinks, the data for each potential target includes one field containing a completely assembled cross reference string, as if it were an xref generated in that document. Other fields record the separate title, number, and element name of each target. When an olink is formed to a target from another document, the olink resolves to that preassembled string by default. If the use.local.olink.style parameter is set to non-zero, then instead the cross -reference string is formed again from the target title, number, and -element name, using the stylesheet processing the targeting document. -Then olinks will match the xref style in the targeting document -rather than in the target document. If both documents are processed -with the same stylesheet, then the results will be the same. - - diff --git a/docbook-xsl-1.75.2/params/use.role.as.xrefstyle.xml b/docbook-xsl-1.75.2/params/use.role.as.xrefstyle.xml deleted file mode 100644 index 56c4470..0000000 --- a/docbook-xsl-1.75.2/params/use.role.as.xrefstyle.xml +++ /dev/null @@ -1,93 +0,0 @@ - - -use.role.as.xrefstyle -boolean - - -use.role.as.xrefstyle -Use role attribute for -xrefstyle on xref? - - - - - - - - -Description - -In DocBook documents that conform to a schema older than V4.3, this parameter allows -role to serve the purpose of specifying the cross reference style. - -If non-zero, the role attribute on -xref will be used to select the cross reference style. -In DocBook V4.3, the xrefstyle attribute was added for this purpose. -If the xrefstyle attribute is present, -role will be ignored, regardless of the setting -of this parameter. - - - -Example - -The following small stylesheet shows how to configure the -stylesheets to make use of the cross reference style: - -<?xml version="1.0"?> -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" - version="1.0"> - -<xsl:import href="../xsl/html/docbook.xsl"/> - -<xsl:output method="html"/> - -<xsl:param name="local.l10n.xml" select="document('')"/> -<l:i18n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0"> - <l:l10n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0" language="en"> - <l:context name="xref"> - <l:template name="chapter" style="title" text="Chapter %n, %t"/> - <l:template name="chapter" text="Chapter %n"/> - </l:context> - </l:l10n> -</l:i18n> - -</xsl:stylesheet> - -With this stylesheet, the cross references in the following document: - -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN" - "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd"> -<book id="book"><title>Book</title> - -<preface> -<title>Preface</title> - -<para>Normal: <xref linkend="ch1"/>.</para> -<para>Title: <xref xrefstyle="title" linkend="ch1"/>.</para> - -</preface> - -<chapter id="ch1"> -<title>First Chapter</title> - -<para>Irrelevant.</para> - -</chapter> -</book> - -will appear as: - - -Normal: Chapter 1. -Title: Chapter 1, First Chapter. - - - - diff --git a/docbook-xsl-1.75.2/params/use.role.for.mediaobject.xml b/docbook-xsl-1.75.2/params/use.role.for.mediaobject.xml deleted file mode 100644 index 9241ace..0000000 --- a/docbook-xsl-1.75.2/params/use.role.for.mediaobject.xml +++ /dev/null @@ -1,56 +0,0 @@ - - -use.role.for.mediaobject -boolean - - -use.role.for.mediaobject -Use role attribute -value for selecting which of several objects within a mediaobject to use. - - - - - - - - - -Description - -If non-zero, the role attribute on -imageobjects or other objects within a mediaobject container will be used to select which object will be -used. - - -The order of selection when then parameter is non-zero is: - - - - If the stylesheet parameter preferred.mediaobject.role has a value, then the object whose role equals that value is selected. - - -Else if an object's role attribute has a value of -html for HTML processing or -fo for FO output, then the first -of such objects is selected. - - - -Else the first suitable object is selected. - - - -If the value of -use.role.for.mediaobject -is zero, then role attributes are not considered -and the first suitable object -with or without a role value is used. - - - diff --git a/docbook-xsl-1.75.2/params/use.svg.xml b/docbook-xsl-1.75.2/params/use.svg.xml deleted file mode 100644 index 8f13be0..0000000 --- a/docbook-xsl-1.75.2/params/use.svg.xml +++ /dev/null @@ -1,30 +0,0 @@ - - -use.svg -boolean - - -use.svg -Allow SVG in the result tree? - - - - - - - - -Description - -If non-zero, SVG will be considered an acceptable image format. SVG -is passed through to the result tree, so correct rendering of the resulting -diagram depends on the formatter (FO processor or web browser) that is used -to process the output from the stylesheet. - - - diff --git a/docbook-xsl-1.75.2/params/variablelist.as.blocks.xml b/docbook-xsl-1.75.2/params/variablelist.as.blocks.xml deleted file mode 100644 index 71e1c98..0000000 --- a/docbook-xsl-1.75.2/params/variablelist.as.blocks.xml +++ /dev/null @@ -1,62 +0,0 @@ - - -variablelist.as.blocks -boolean - - -variablelist.as.blocks -Format variablelists lists as blocks? - - - - - - - - -Description - -If non-zero, variablelists will be formatted as -blocks. - -If you have long terms, proper list markup in the FO case may produce -unattractive lists. By setting this parameter, you can force the stylesheets -to produce block markup instead of proper lists. - -You can override this setting with a processing instruction as the -child of variablelist: dbfo -list-presentation="blocks" or dbfo -list-presentation="list". - -When using list-presentation="list", -you can also control the amount of space used for the terms with -the dbfo term-width=".25in" processing instruction, -the termlength attribute on variablelist, -or allow the stylesheets to attempt to calculate the amount of space to leave based on the -number of letters in the longest term. - - - <variablelist> - <?dbfo list-presentation="list"?> - <?dbfo term-width="1.5in"?> - <?dbhtml list-presentation="table"?> - <?dbhtml term-width="1.5in"?> - <varlistentry> - <term>list</term> - <listitem> - <para> - Formatted as a list even if variablelist.as.blocks is set to 1. - </para> - </listitem> - </varlistentry> - </variablelist> - - - - - diff --git a/docbook-xsl-1.75.2/params/variablelist.as.table.xml b/docbook-xsl-1.75.2/params/variablelist.as.table.xml deleted file mode 100644 index 113d2f5..0000000 --- a/docbook-xsl-1.75.2/params/variablelist.as.table.xml +++ /dev/null @@ -1,54 +0,0 @@ - - -variablelist.as.table -boolean - - -variablelist.as.table -Format variablelists as tables? - - - - - - - - -Description - -If non-zero, variablelists will be formatted as -tables. A processing instruction exists to specify a particular width for the -column containing the terms: -dbhtml term-width=".25in" - -You can override this setting with a processing instruction as the -child of variablelist: dbhtml -list-presentation="table" or dbhtml -list-presentation="list". - -This parameter only applies to the HTML transformations. In the -FO case, proper list markup is robust enough to handle the formatting. -But see also variablelist.as.blocks. - - <variablelist> - <?dbhtml list-presentation="table"?> - <?dbhtml term-width="1.5in"?> - <?dbfo list-presentation="list"?> - <?dbfo term-width="1in"?> - <varlistentry> - <term>list</term> - <listitem> - <para> - Formatted as a table even if variablelist.as.table is set to 0. - </para> - </listitem> - </varlistentry> - </variablelist> - - - diff --git a/docbook-xsl-1.75.2/params/variablelist.max.termlength.xml b/docbook-xsl-1.75.2/params/variablelist.max.termlength.xml deleted file mode 100644 index ff56a87..0000000 --- a/docbook-xsl-1.75.2/params/variablelist.max.termlength.xml +++ /dev/null @@ -1,46 +0,0 @@ - - -variablelist.max.termlength -number - - -variablelist.max.termlength -Specifies the longest term in variablelists - - - - -24 - - - -Description - -In variablelists, the listitem -is indented to leave room for the -term elements. That indent may be computed -if it is not specified with a termlength -attribute on the variablelist element. - - -The computation counts characters in the -term elements in the list -to find the longest term. However, some terms are very long -and would produce extreme indents. This parameter lets you -set a maximum character count. Any terms longer than the maximum -would line wrap. The default value is 24. - - -The character counts are converted to physical widths -by multiplying by 0.50em. There will be some variability -in how many actual characters fit in the space -since some characters are wider than others. - - - - diff --git a/docbook-xsl-1.75.2/params/variablelist.term.break.after.xml b/docbook-xsl-1.75.2/params/variablelist.term.break.after.xml deleted file mode 100644 index 8472f5e..0000000 --- a/docbook-xsl-1.75.2/params/variablelist.term.break.after.xml +++ /dev/null @@ -1,39 +0,0 @@ - - -variablelist.term.break.after -boolean - - -variablelist.term.break.after -Generate line break after each term within a -multi-term varlistentry? - - - - -0 - - -Description - -Set a non-zero value for the -variablelist.term.break.after parameter to -generate a line break between terms in a -multi-term varlistentry. - - -If you set a non-zero value for -variablelist.term.break.after, you may also -want to set the value of the -variablelist.term.separator parameter to an -empty string (to suppress rendering of the default comma and space -after each term). - - - - diff --git a/docbook-xsl-1.75.2/params/variablelist.term.properties.xml b/docbook-xsl-1.75.2/params/variablelist.term.properties.xml deleted file mode 100644 index 4a4835d..0000000 --- a/docbook-xsl-1.75.2/params/variablelist.term.properties.xml +++ /dev/null @@ -1,29 +0,0 @@ - - -variablelist.term.properties -attribute set - - -variablelist.term.properties -To add properties to the term elements in a variablelist. - - - - - - - - -Description -These properties are added to the block containing a -term in a variablelist. -Use this attribute-set to set -font properties or alignment, for example. - - - diff --git a/docbook-xsl-1.75.2/params/variablelist.term.separator.xml b/docbook-xsl-1.75.2/params/variablelist.term.separator.xml deleted file mode 100644 index f3df883..0000000 --- a/docbook-xsl-1.75.2/params/variablelist.term.separator.xml +++ /dev/null @@ -1,40 +0,0 @@ - - -variablelist.term.separator -string - - -variablelist.term.separator -Text to separate terms within a multi-term -varlistentry - - - - -, - - -Description - -When a varlistentry contains multiple term -elements, the string specified in the value of the -variablelist.term.separator parameter is placed -after each term except the last. - - - To generate a line break between multiple terms in - a varlistentry, set a non-zero value for the - variablelist.term.break.after parameter. If - you do so, you may also want to set the value of the - variablelist.term.separator parameter to an - empty string (to suppress rendering of the default comma and space - after each term). - - - - diff --git a/docbook-xsl-1.75.2/params/verbatim.properties.xml b/docbook-xsl-1.75.2/params/verbatim.properties.xml deleted file mode 100644 index 28a368a..0000000 --- a/docbook-xsl-1.75.2/params/verbatim.properties.xml +++ /dev/null @@ -1,38 +0,0 @@ - - -verbatim.properties -attribute set - - -verbatim.properties -Properties associated with verbatim text - - - - - - 0.8em - 1em - 1.2em - 0.8em - 1em - 1.2em - false - no-wrap - false - preserve - preserve - start - - - -Description -This attribute set is used on all verbatim environments. - - - diff --git a/docbook-xsl-1.75.2/params/wordml.template.xml b/docbook-xsl-1.75.2/params/wordml.template.xml deleted file mode 100644 index 4dae8a8..0000000 --- a/docbook-xsl-1.75.2/params/wordml.template.xml +++ /dev/null @@ -1,29 +0,0 @@ - - -wordml.template -uri - - -wordml.template -Specify the template WordML document - - - - - - - - -Description - -The wordml.template parameter specifies a WordML document to use as a template for the generated document. The template document is used to define the (extensive) headers for the generated document, in particular the paragraph and character styles that are used to format the various elements. Any content in the template document is ignored. - -A template document is used in order to allow maintenance of the paragraph and character styles to be done using Word itself, rather than these XSL stylesheets. - - - diff --git a/docbook-xsl-1.75.2/params/writing.mode.xml b/docbook-xsl-1.75.2/params/writing.mode.xml deleted file mode 100644 index c695933..0000000 --- a/docbook-xsl-1.75.2/params/writing.mode.xml +++ /dev/null @@ -1,83 +0,0 @@ - - -writing.mode -string - - -writing.mode -Direction of text flow based on locale - - - - - - - writing-mode - - - - - - - - - - -Description - -Sets direction of text flow and text alignment based on locale. -The value is normally taken from the gentext file for the -lang attribute of the document's root element, using the -key name 'writing-mode' to look it up in the gentext file. -But the param can also be -set on the command line to override that gentext value. - -Accepted values are: - - - lr-tb - - Left-to-right text flow in each line, lines stack top to bottom. - - - - rl-tb - - Right-to-left text flow in each line, lines stack top to bottom. - - - - tb-rl - - Top-to-bottom text flow in each vertical line, lines stack right to left. - Supported by only a few XSL-FO processors. Not supported in HTML output. - - - - lr - - Shorthand for lr-tb. - - - - rl - - Shorthand for rl-tb. - - - - tb - - Shorthand for tb-rl. - - - - - - - diff --git a/docbook-xsl-1.75.2/params/xbCollapsibleLists.js.xml b/docbook-xsl-1.75.2/params/xbCollapsibleLists.js.xml deleted file mode 100644 index b30391f..0000000 --- a/docbook-xsl-1.75.2/params/xbCollapsibleLists.js.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -xbCollapsibleLists.js -filename - - -xbCollapsibleLists.js -xbCollapsibleLists JavaScript file - - - - -xbCollapsibleLists.js - - - -Description - -Specifies the filename of the xbCollapsibleLists JavaScript file. It's unlikely -that you will ever need to change this parameter. - - - diff --git a/docbook-xsl-1.75.2/params/xbDOM.js.xml b/docbook-xsl-1.75.2/params/xbDOM.js.xml deleted file mode 100644 index a699e9c..0000000 --- a/docbook-xsl-1.75.2/params/xbDOM.js.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -xbDOM.js -filename - - -xbDOM.js -xbDOM JavaScript file - - - - -xbDOM.js - - - -Description - -Specifies the filename of the xbDOM JavaScript file. It's unlikely -that you will ever need to change this parameter. - - - diff --git a/docbook-xsl-1.75.2/params/xbLibrary.js.xml b/docbook-xsl-1.75.2/params/xbLibrary.js.xml deleted file mode 100644 index fe2d8fe..0000000 --- a/docbook-xsl-1.75.2/params/xbLibrary.js.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -xbLibrary.js -filename - - -xbLibrary.js -xbLibrary JavaScript file - - - - -xbLibrary.js - - - -Description - -Specifies the filename of the xbLibrary JavaScript file. It's unlikely -that you will ever need to change this parameter. - - - diff --git a/docbook-xsl-1.75.2/params/xbStyle.js.xml b/docbook-xsl-1.75.2/params/xbStyle.js.xml deleted file mode 100644 index b587573..0000000 --- a/docbook-xsl-1.75.2/params/xbStyle.js.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -xbStyle.js -filename - - -xbStyle.js -xbStyle JavaScript file - - - - -xbStyle.js - - - -Description - -Specifies the filename of the xbStyle JavaScript file. It's unlikely -that you will ever need to change this parameter. - - - diff --git a/docbook-xsl-1.75.2/params/xep.extensions.xml b/docbook-xsl-1.75.2/params/xep.extensions.xml deleted file mode 100644 index 8ac2520..0000000 --- a/docbook-xsl-1.75.2/params/xep.extensions.xml +++ /dev/null @@ -1,31 +0,0 @@ - - -xep.extensions -boolean - - -xep.extensions -Enable XEP extensions? - - - - - - -Description - -If non-zero, -XEP -extensions will be used. XEP extensions consists of PDF bookmarks, -document information and better index processing. - - -This parameter can also affect which graphics file formats -are supported - - diff --git a/docbook-xsl-1.75.2/params/xep.index.item.properties.xml b/docbook-xsl-1.75.2/params/xep.index.item.properties.xml deleted file mode 100644 index b1db129..0000000 --- a/docbook-xsl-1.75.2/params/xep.index.item.properties.xml +++ /dev/null @@ -1,36 +0,0 @@ - - -xep.index.item.properties -attribute set - - -xep.index.item.properties -Properties associated with XEP index-items - - - - - - true - true - - - - -Description - -Properties associated with XEP index-items, which generate -page numbers in an index processed by XEP. For more info see -the XEP documentation section "Indexes" in -http://www.renderx.com/reference.html#Indexes. - -This attribute-set also adds by default any properties from the -index.page.number.properties -attribute-set. - - diff --git a/docbook-xsl-1.75.2/params/xref.label-page.separator.xml b/docbook-xsl-1.75.2/params/xref.label-page.separator.xml deleted file mode 100644 index 355fc4a..0000000 --- a/docbook-xsl-1.75.2/params/xref.label-page.separator.xml +++ /dev/null @@ -1,38 +0,0 @@ - - -xref.label-page.separator -string - - -xref.label-page.separator -Punctuation or space separating label from page number in xref - - - - - - -Description - - -This parameter allows you to control the punctuation of certain -types of generated cross reference text. -When cross reference text is generated for an -xref or -olink element -using an xrefstyle attribute -that makes use of the select: feature, -and the selected components include both label and page -but no title, -then the value of this parameter is inserted between -label and page number in the output. -If a title is included, then other separators are used. - - - - diff --git a/docbook-xsl-1.75.2/params/xref.label-title.separator.xml b/docbook-xsl-1.75.2/params/xref.label-title.separator.xml deleted file mode 100644 index 3d6e222..0000000 --- a/docbook-xsl-1.75.2/params/xref.label-title.separator.xml +++ /dev/null @@ -1,36 +0,0 @@ - - -xref.label-title.separator -string - - -xref.label-title.separator -Punctuation or space separating label from title in xref - - - -: - - -Description - - -This parameter allows you to control the punctuation of certain -types of generated cross reference text. -When cross reference text is generated for an -xref or -olink element -using an xrefstyle attribute -that makes use of the select: feature, -and the selected components include both label and title, -then the value of this parameter is inserted between -label and title in the output. - - - - diff --git a/docbook-xsl-1.75.2/params/xref.properties.xml b/docbook-xsl-1.75.2/params/xref.properties.xml deleted file mode 100644 index 6438f6c..0000000 --- a/docbook-xsl-1.75.2/params/xref.properties.xml +++ /dev/null @@ -1,29 +0,0 @@ - - -xref.properties -attribute set - - -xref.properties -Properties associated with cross-reference text - - - - - - - - - -Description - -This attribute set is used to set properties -on cross reference text. - - - diff --git a/docbook-xsl-1.75.2/params/xref.title-page.separator.xml b/docbook-xsl-1.75.2/params/xref.title-page.separator.xml deleted file mode 100644 index 32ef9f1..0000000 --- a/docbook-xsl-1.75.2/params/xref.title-page.separator.xml +++ /dev/null @@ -1,36 +0,0 @@ - - -xref.title-page.separator -string - - -xref.title-page.separator -Punctuation or space separating title from page number in xref - - - - - - -Description - - -This parameter allows you to control the punctuation of certain -types of generated cross reference text. -When cross reference text is generated for an -xref or -olink element -using an xrefstyle attribute -that makes use of the select: feature, -and the selected components include both title and page number, -then the value of this parameter is inserted between -title and page number in the output. - - - - diff --git a/docbook-xsl-1.75.2/params/xref.with.number.and.title.xml b/docbook-xsl-1.75.2/params/xref.with.number.and.title.xml deleted file mode 100644 index 06fcc7e..0000000 --- a/docbook-xsl-1.75.2/params/xref.with.number.and.title.xml +++ /dev/null @@ -1,30 +0,0 @@ - - -xref.with.number.and.title -boolean - - -xref.with.number.and.title -Use number and title in cross references - - - - - - - - -Description - -A cross reference may include the number (for example, the number of -an example or figure) and the title which is a required child of some -targets. This parameter inserts both the relevant number as well as -the title into the link. - - - diff --git a/docbook-xsl-1.75.2/profiling/profile-mode.xsl b/docbook-xsl-1.75.2/profiling/profile-mode.xsl deleted file mode 100644 index c02132a..0000000 --- a/docbook-xsl-1.75.2/profiling/profile-mode.xsl +++ /dev/null @@ -1,239 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/profiling/profile.xsl b/docbook-xsl-1.75.2/profiling/profile.xsl deleted file mode 100644 index b188fbb..0000000 --- a/docbook-xsl-1.75.2/profiling/profile.xsl +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - 0 - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/profiling/strip-attributes.xsl b/docbook-xsl-1.75.2/profiling/strip-attributes.xsl deleted file mode 100644 index d6f55fb..0000000 --- a/docbook-xsl-1.75.2/profiling/strip-attributes.xsl +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/profiling/xsl2profile.xsl b/docbook-xsl-1.75.2/profiling/xsl2profile.xsl deleted file mode 100644 index b6648aa..0000000 --- a/docbook-xsl-1.75.2/profiling/xsl2profile.xsl +++ /dev/null @@ -1,159 +0,0 @@ - - - - - - - - - - - - - This file was created automatically by xsl2profile - from the DocBook XSL stylesheets. - - - - - - - dummy - dummy - dummy - - exslt - - - exslt - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Note: namesp. cut : stripped namespace before processing - - - - Note: namesp. cut : processing stripped document - - - - - - - - - - - - - - - - - - - - - - - - - - - $profiled-nodes - - - $profiled-nodes - - - - - - - - - - - - - - - - - - - key('id',$rootid) - $profiled-nodes//*[@id=$rootid] - - - - - - - - - - - - - - - - - $profiled-nodes/node() - - - - - - - - false() - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/roundtrip/blocks-spec.xml b/docbook-xsl-1.75.2/roundtrip/blocks-spec.xml deleted file mode 100644 index d8ab005..0000000 --- a/docbook-xsl-1.75.2/roundtrip/blocks-spec.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/roundtrip/blocks2dbk.dtd b/docbook-xsl-1.75.2/roundtrip/blocks2dbk.dtd deleted file mode 100644 index 4d1ea04..0000000 --- a/docbook-xsl-1.75.2/roundtrip/blocks2dbk.dtd +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/roundtrip/blocks2dbk.xsl b/docbook-xsl-1.75.2/roundtrip/blocks2dbk.xsl deleted file mode 100644 index e14999f..0000000 --- a/docbook-xsl-1.75.2/roundtrip/blocks2dbk.xsl +++ /dev/null @@ -1,1732 +0,0 @@ - - -%ext; -]> - - - - - - - - - - - - - 0 - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - style "" is not a valid list style - - - - - - - - - - list-wrong-level - list started at the wrong level - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - improper-blockquote-attribution - blockquote attribution must follow a blockquote title - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - formalpara-notitle - formalpara used without a title - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - bad-caption - caption does not follow table or figure - - - - - - - - - - - - - - unknown-style - unknown paragraph style "" encountered - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - imagedata-metadata missing value for attribute " - - " - - - - - - - - - - - - 1 - 0 - - - - - - - - - - - - - - imagedata-metadata unknown attribute " - - " - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - bold - - - - - - - - underline - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - unknown-style - unknown character span style "" encountered - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - bad-metadata - style "" must not be metadata for parent "" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - bad-author-orgname-combo - character span "" not allowed in an author paragraph combined with orgname - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - bad-titleabbrev - titleabbrev style "" mismatches parent "" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - bad-title - title style "" mismatches parent "" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - bad-subtitle - subtitle style "" mismatches parent "" - - - - - - - - - - bad-publisher-address - publisher-address must follow publisher - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - bad-author-inline - character span "" not allowed in an author paragraph - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - metadata-bad-inline - character span "" not allowed in author metadata - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ERROR "": - - - - - - - - - - - - - - - - WARNING "": - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/roundtrip/dbk2ooo.xsl b/docbook-xsl-1.75.2/roundtrip/dbk2ooo.xsl deleted file mode 100644 index dc7303f..0000000 --- a/docbook-xsl-1.75.2/roundtrip/dbk2ooo.xsl +++ /dev/null @@ -1,178 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/roundtrip/dbk2pages.xsl b/docbook-xsl-1.75.2/roundtrip/dbk2pages.xsl deleted file mode 100644 index f473555..0000000 --- a/docbook-xsl-1.75.2/roundtrip/dbk2pages.xsl +++ /dev/null @@ -1,441 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - Please specify the template document with the "pages.template" parameter - - - Unable to open template document "" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - DocBookRoundtrip-1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - email - - - - - - - - - - - - - - - - - - - - - - - - - SFTTableAttachment- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - attribute-name - - - - - - - - attribute-value - - - - - - - - - - - - - para - - - - - - - - unable to find paragraph style "" - - - - - - - - - unable to find character style "" - - - - - diff --git a/docbook-xsl-1.75.2/roundtrip/dbk2wordml.xsl b/docbook-xsl-1.75.2/roundtrip/dbk2wordml.xsl deleted file mode 100644 index 07bd08d..0000000 --- a/docbook-xsl-1.75.2/roundtrip/dbk2wordml.xsl +++ /dev/null @@ -1,401 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - Please specify the template document with the "wordml.template" parameter - - - Unable to open template document "" - - - - progid="Word.Document" - - - - - - - - preserve - - - - - - - - Unknown - - - - - - - - - - - Unknown - - - 1 - - - - 2004-01-01T07:07:00Z - 2004-01-01T08:08:00Z - - 1 - 1 - 1 - - - DocBook - - 1 - 1 - 1 - 11.6113 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - = - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/roundtrip/dbk2wp.xsl b/docbook-xsl-1.75.2/roundtrip/dbk2wp.xsl deleted file mode 100644 index 671c58f..0000000 --- a/docbook-xsl-1.75.2/roundtrip/dbk2wp.xsl +++ /dev/null @@ -1,1375 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - section nested deeper than 5 levels - - sect5- - - - - sect - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Metadata - - TODO: Handle all metadata elements, apart from titles. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - abstract - - - - - - - - - - - - - - - - - - - - - - - - - - - mailto: - - - - - - - - - Hyperlink - - - - - - - - - - - - - - - otheraddr - - - - - - otheraddr - - - - - - - - - otheraddr - - - - - - otheraddr - - - - - - - - - - Hyperlink - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - para - - - - - - - - - - - - - - - Normal - - - - - - - - - - - - - - Normal - - - - - - - - - - - - - - - - simpara - - - - - - - - - - 1 - 0 - - - - - 1 - 0 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Text Object - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Caption - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - [ - - ] - - encountered - - in - - - , but no template matches. - - - - - - - - - - - - - [ - - ] - - encountered - - in - - - , but no template matches. - - - - - - - - - - - - encountered - - in - - - , but no template matches. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - WARNING: - - - diff --git a/docbook-xsl-1.75.2/roundtrip/normalise-common.xsl b/docbook-xsl-1.75.2/roundtrip/normalise-common.xsl deleted file mode 100644 index 83a16b3..0000000 --- a/docbook-xsl-1.75.2/roundtrip/normalise-common.xsl +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - caption - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/roundtrip/normalise2sections.xsl b/docbook-xsl-1.75.2/roundtrip/normalise2sections.xsl deleted file mode 100644 index 51bd9f5..0000000 --- a/docbook-xsl-1.75.2/roundtrip/normalise2sections.xsl +++ /dev/null @@ -1,1270 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/roundtrip/pages2normalise.xsl b/docbook-xsl-1.75.2/roundtrip/pages2normalise.xsl deleted file mode 100644 index 35250a0..0000000 --- a/docbook-xsl-1.75.2/roundtrip/pages2normalise.xsl +++ /dev/null @@ -1,351 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - bold - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - cannot determine number of rows in table - cannot determine number of rows in table - - - cannot determine number of columns in table - cannot determine number of columns in table - - - - - - - all - - - topbot - - - sides - - - top - - - bottom - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - WARNING: insufficient table cells - WARNING: insufficient table cells (num-rows , row ) - - - WARNING: excess table cells - WARNING: excess table cells (num-rows , row ) - - - - - - - - - - - - - - - - - - - - - - 1 - - - - - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - element "" not handled - - - - - - - - - - - - - superscript - subscript - - - - - - diff --git a/docbook-xsl-1.75.2/roundtrip/param.xml b/docbook-xsl-1.75.2/roundtrip/param.xml deleted file mode 100644 index ae14800..0000000 --- a/docbook-xsl-1.75.2/roundtrip/param.xml +++ /dev/null @@ -1,105 +0,0 @@ - - - - Roundtrip Parameter Reference - - $Id: param.xweb 7042 2007-07-17 04:28:48Z xmldoc $ - - - - Ball - Steve - - - - 2007 - 2006 - 2005 - 2004 - Steve Ball - - - This is reference documentation for all user-configurable - parameters in the DocBook “Roundtrip” Stylesheets (for - transforming DocBook to WordML, OpenDocument, and Apple Pages, - and for converting from those formats back to DocBook). - - - - Parameters - - -wordml.template -uri - - -wordml.template -Specify the template WordML document - - - - -<xsl:param name="wordml.template"></xsl:param> - - - -Description - -The wordml.template parameter specifies a WordML document to use as a template for the generated document. The template document is used to define the (extensive) headers for the generated document, in particular the paragraph and character styles that are used to format the various elements. Any content in the template document is ignored. - -A template document is used in order to allow maintenance of the paragraph and character styles to be done using Word itself, rather than these XSL stylesheets. - - - - - - -pages.template -uri - - -pages.template -Specify the template Pages document - - - - -<xsl:param name="pages.template"></xsl:param> - - - -Description - -The pages.template parameter specifies a Pages (the Apple word processing application) document to use as a template for the generated document. The template document is used to define the (extensive) headers for the generated document, in particular the paragraph and character styles that are used to format the various elements. Any content in the template document is ignored. - -A template document is used in order to allow maintenance of the paragraph and character styles to be done using Pages itself, rather than these XSL stylesheets. - - - - - - - The Stylesheet - The param.xsl stylesheet is just a - wrapper around all of these parameters. - -<xsl:stylesheet exclude-result-prefixes="src" version="1.0"> - -<!-- This file is generated from param.xweb --> - -<!-- ******************************************************************** - $Id: param.xweb 7042 2007-07-17 04:28:48Z xmldoc $ - ******************************************************************** - - This file is part of the XSL DocBook Stylesheet distribution. - See ../README or http://docbook.sf.net/release/xsl/current/ for - copyright and other information. - - ******************************************************************** --> - -<src:fragref linkend="wordml.template.frag"></src:fragref> -<src:fragref linkend="pages.template.frag"></src:fragref> -</xsl:stylesheet> - - - diff --git a/docbook-xsl-1.75.2/roundtrip/param.xsl b/docbook-xsl-1.75.2/roundtrip/param.xsl deleted file mode 100644 index 6cd1b03..0000000 --- a/docbook-xsl-1.75.2/roundtrip/param.xsl +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/roundtrip/sections-spec.xml b/docbook-xsl-1.75.2/roundtrip/sections-spec.xml deleted file mode 100644 index 6c86d52..0000000 --- a/docbook-xsl-1.75.2/roundtrip/sections-spec.xml +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/roundtrip/sections2blocks.xsl b/docbook-xsl-1.75.2/roundtrip/sections2blocks.xsl deleted file mode 100644 index d0fe069..0000000 --- a/docbook-xsl-1.75.2/roundtrip/sections2blocks.xsl +++ /dev/null @@ -1,263 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/roundtrip/specifications.xml b/docbook-xsl-1.75.2/roundtrip/specifications.xml deleted file mode 100644 index 85db866..0000000 --- a/docbook-xsl-1.75.2/roundtrip/specifications.xml +++ /dev/null @@ -1,1420 +0,0 @@ - -
    - - Round-Tripping Specifications - - Bob - Stayton - - Sagehill Enterprises - - - - Steve - Ball - - Explain - - - - - 1.8 - 2008-05-22 - SRB - Updated for current implementation. - - - 1.7 - 2008-02-22 - SRB - Added edition. - - - 1.6 - 2007-10-19 - SRB - Added keyword. - - - 1.5 - 2007-01-05 - SRB - Reduce emphasis on WordML, add support for OpenOffice. - - - 1.4 - 2005-11-11 - SRB - Added bibliography. - - - 1.3 - 2005-10-31 - SRB - Added mediaobjectco, imageobjectco, programlistingco, areaspec, area, calloutlist. - - - 1.2 - 2005-10-13 - SRB - Version prior to using revhistory. - - - - - This document specifies how DocBook elements are mapped to paragraph and character styles in a word processor. The specifications are used to write conversions between DocBook XML and word processor XML formats, such as Microsoft's WordProcessingML (WordML), OpenOffice's OpenDocument and Apple's Pages. - -
    - Introduction - Microsoft Word 2003 introduced WordProcessingML (WordML), an XML vocabulary for Word documents. Since then, other popular word processors have become available that use XML as their data representation, namely Apple's Pages and OpenOffice. By converting Word (or OpenOffice or Pages) to XML, it becomes possible to convert a word processing document to DocBook and vice versa using XSL transformations. Such conversions then enable the following. - - - DocBook content creators write in their familiar wordprocessing application, rather than learning a new XML editing application. - - - DocBook XML documents can be styled for output using the typesetting features of the word processor. - - - Word processors have a simple, flat data model; documents consist of paragraphs (and tables) and paragraphs contain text and character spans. All word processors allow styles to be associated with paragraphs and spans. - This specification describes how DocBook elements map to a set of paragraph and character styles. It defines a specific set of style names for which a Word style template can be created. The style names are also used in XSLT template match patterns for conversion. Although originally targetted to MS Word, the system has subsequently been extended to use other word processors, notably Apple's Pages and Open Office. -
    -
    - Project goals - The goal of this project is to enable a word processor, such as, but not limited to, Microsoft Word, to be used with DocBook files. The specific goals include: - - - Enable authoring of basic DocBook documents in the word processor. - - - Enable importing of basic DocBook XML documents into the word processor. - - - To meet these goals, the project provides a toolkit that can be immediately put to use. The kit includes: - - - Templates for Microsoft Word, Apple Pages and Open Office with formatting styles attached to the style names. - - - XSLT stylesheets that convert a word processing document that is authored with the corresponding template into a DocBook XML file. - - - XSLT stylesheets that convert a DocBook document into a word processing document that can be opened in a word processor. - - -
    - Why basic DocBook? - This project will never be able to support all DocBook elements and structure. Take, for example, the address element. This element can be used both as a block element for metadata. It can also be used as a phrase level element in a block parent, such as the affiliation element. To make matters worse, it can itself contain phrase level markup, such as personname. No word processor allows character styles to be nested. - The project will initially focus on a basic set of commonly used DocBook elements in order to create a useful editing environment that utilises a word processor with DocBook. - One problem facing this conversion project is the sheer number of DocBook elements, over 400 in DocBook 5.0. To support DocBook structural models, several of the elements require more than one paragraph or character style. This would lead to very long and unwieldy list of styles in the word processor interface. That would make authoring less efficient and discourage users. - Accordingly, this project assumes that authors who need the full set of DocBook elements and structures will use an XML authoring tool that better supports them. This project is focused on authors who wish to write basic DocBook documents using a word processor. Because Microsoft Word is so widespread, it is hoped that this project will help a lot of new DocBook users get started with familiar tools. They can then graduate to more advanced tools as their needs develop. -
    -
    -
    - Project Non-Goals - The following goals are not in the scope of this project: - - - Support of versions of Word that do not feature reading/writing WordML (XML). That is, all versions prior to Word 11 (Office 2003). - - - Support of arbitrarily defined styles. This system may expect certain styles to be defined in a particular fashion (in particular, those defining the title of components and divisions). - - -
    -
    - Mapping elements to styles - Although WordML, OpenDocument and DocBook are all XML, there several challenges when trying to convert between them. - The basic problem in mapping paragraph/character styles to DocBook elements is that word processor documents support far less structure than DocBook. DocBook permits nesting of elements within other elements, providing multiple levels of context for each element. - Word's only structural feature is the outlining mode. In Word outlining, certain paragraph styles are assigned outline levels. When a user applies those styles, they effectively create logical structure in the Word document. Unfortunately, Word itself attempts to automatically determine which paragraphs are headings, rendering this method is unreliable. - Instead of relying on Word's built-in outlining mode, this system uses only the names of paragraph styles to determine document structure. Certain heuristics are applied to build the DocBook element structure from the (relatively flat) word processing structure. Titles and other features are used to mark the beginning of a structure and all paragraphs following that are included in that structure until the beginning of the next structure is found. That is, the beginning of one structure marks the end of the previous structure. - Problems may arise when a structure should end, but there is no word processor feature that marks the endpoint. To mark the end of a feature an empty paragraph is used. - Nesting of block elements is another commonly used feature of DocBook. It is not possible to use Word's outline mode for blocks if it is being used for components and sections. So in this specification, nesting of block elements is indicated by adding a number suffix to a style. So a paragraph with style orderedlist2 is considered to be contained within a preceding paragraph with style orderedlist1 or itemizedlist1. Where appropriate in the word processor, paragraph indent levels are used to visually indicate nesting of blocks. - Nesting of inline DocBook elements is particularly difficult to support because word processors do not nest character styles. That means a nested inline would require a separate character style to indicate the parent-child relationship. Given the large number of combinations possible, a prohibitively large number of character styles would have to be created. In this project, nesting of character styles is not supported. Nested inlines being imported from DocBook will be converted to a sequence of single-name character styles, where possible, or rejected. - In many cases, DocBook structure can be derived from the flat sequence of paragraphs based on sibling relationships. For example, when a paragraph styled as para is followed by a paragraph styled as itemizedlist1, the conversion to DocBook will output a para element and then start an itemizedlist element, with the second paragraph as its first listitem. All itemizedlist1 paragraphs that follow without interruption are inserted into the same itemizedlist element. - Some combinations of elements cannot be supported (at least not with the techniques as described in this document). An example is informalexample and its permitted content; there is no title to mark the beginning of the element and no marker for the end of the element, also there are too many parent-child combinations to reasonably define style names. - The design principles used in this project for selecting paragraph/character style names are as follows: - - - Where Word (or OpenOffice or Pages), by default, has a style or feature that corresponds directly to a DocBook element then that style or feature will be used (and documented in this document). For example, the Normal paragraph style maps to a DocBook para element, and a Word table (w:tbl) maps to a DocBook tableIn some cases Word may posess a feature, but it doesn't function in an acceptable manner. For example, lists. In these cases the feature is to be avoided, and a workaround provided.. - - - Paragraph and character style names will match DocBook element names as much as possible. This will enable authors to learn DocBook element names and help debug problems with conversion. - - - A style may indicate a parent-child relationship, but the paragraph for such an element may only occur after a paragraph that denotes the beginning of the parent structure. In this case the element name is used as the style name. For example, a personblurb paragraph may only occur after an author, editor or othercontrib paragraph. If a paragraph occurs without the appropriate preceding paragraph, then an error is signalled. - - - Some styles may also indicate a parent-child relationship, but either the parent structure is ambiguous or the paragraph starts the parent structure. For example, chapter-title indicates that the paragraph is a title element whose DocBook parent is a chapter element. - - - Some style names are simplified to make them easier to use in the word processor. For example, a paragraph in an orderedlist requires three elements in DocBook: orderedlist, listitem, and para. The paragraph style name in Word is shortened from orderedlist-listitem-para to just orderedlist1 (for a first level list). In the case of lists (see below), the list level is appended, which is why this example becomes orderedlist1. - - - Style names with a number suffix indicate a nesting level, as described above. - - - Style names with continue indicate that the paragraph is part of the preceding element. For example, a para paragraph is used for a single paragraph para element. This causes any preceding list to be closed. If a list item in the preceding list is to contain more than one paragraph, then the subsequent paragraphs in the word processor documentmust use the para-continue style. - - - Character styles map to elements that are children of the element for the paragraph, hence there is no need to encode parent-child relationships. For example, a surname character style in an author paragraph becomes a surname child element of the author element. - - - Empty paragraph and character styles are ignored. This can be useful to end structures. - - - The first paragraph style in the word processor document is used to define the root element of the DocBook document. For example, if the document starts with book-title, then the DocBook document will have book element as its root element. All the rest of the document content will be contained in that root element. - - - Sequential structures are coalesced into a single parent element. For example, a sequence of itemizedlist1 paragraphs becomes a single itemizedlist element with several listitem element children. - - DocBook to Paragraph/Character Styles - - - - - - - - DocBook element - - - Style(s) - - - Comments - - - - - - - - Components and sections - - - - - - book/info/title - - - book-title - - - - - - - - book/info/subtitle - - - book-subtitle - - - - - - - - book/info/titleabbrev - - - book-titleabbrev - - - - - - - - chapter/info/title - - - chapter-title - - - Assigned Word outline level 1. - - - - - chapter/info/subtitle - - - chapter-subtitle - - - - - - - - chapter/info/titleabbrev - - - chapter-titleabbrev - - - - - - - - appendix/info/title - - - appendix-title - - - Assigned Word outline level 1. - - - - - preface/info/title - - - preface-title - - - Assigned Word outline level 1. - - - - - article/info/title - - - article-title - - - Assigned Word outline level 1. - - - - - article/info/subtitle - - - article-subtitle - - - - - - - - article/info/titleabbrev - - - article-titleabbrev - - - - - - - - bibliography/info/title - - - bibliography-title - - - Assigned Word outline level 1. - - - - - bibliography/bibliodiv/info/title - - - bibliodiv-title - - - - - - - - biblioentry/title - - - biblioentry-title - - - Metadata elements after the biblioentry-title paragraph become part of the biblioentry. - - - - - glossary/info/title - - - glossary-title - - - Assigned Word outline level 1. - - - - - index/info/title - - - index-title - - - Assigned Word outline level 1. - - - - - part/info/title - - - part-title - - - - - - - - section - - - - - - Unnumbered section elements are translated into their equivalent numbered paragraph style. Sections 6 levels and deeper are reported as an error. - - - - - sect1/info/title - - - sect1-title - - - Assigned Word outline level 2. - - - - - sect1/info/subtitle - - - sect1-subtitle - - - - - - - - sect2/info/title - - - sect2-title - - - Assigned Word outline level 3. - - - - - sect2/info/subtitle - - - sect2-subtitle - - - - - - - - sect3/info/title - - - sect3-title - - - Assigned Word outline level 4. - - - - - sect3/info/subtitle - - - sect3-subtitle - - - - - - - - sect4/info/title - - - sect4-title - - - Assigned Word outline level 5. - - - - - sect4/info/subtitle - - - sect4-subtitle - - - - - - - - sect5/info/title - - - sect5-title - - - Assigned Word outline level 6. - - - - - sect5/info/subtitle - - - sect5-subtitle - - - - - - - - simplesect/info/title - - - simplesect-title - - - - - - - - simplesect/info/subtitle - - - simplesect-subtitle - - - - - - - - bridgehead - - - bridgehead - - - - - - - - - Metadata elements - - - - - - abstract/title - - - abstract-title - - . - - - - abstract/para - - - abstract - - - - - - - - affiliation - - - affiliation - - - - - - - - address - - - address - - - - - - - - author - - - author - - - - - - - - date - - - date - - - - - - - - edition - - - edition - - - - - - - - legalnotice - - - legalnotice - - - - - - - - pubdate - - - pubdate - - - - - - - - publisher/pubishername - - - publisher - - - - - - - - publisher/address - - - publisher-address - - - - - - - - revhistory/revision - - - revision - - - - - - - - - Block-level elements - - - - - - para - - - para, Normal - - - Any Word paragraph with style Normal will also be converted to a para element. - - - - - formalpara/title - - - formalpara-title - - - - - - - - formalpara/para - - - formalpara - - - - - - - - simpara - - - simpara - - - - - - - - note/title - - - note-title - - - - - - - - note/para - - - note - - - Consecutive paragraphs with style note after the first note are to be treated as part of the same note element. That is, consecutive notes are coalesced. The note may or may not have a title. - - - - - caution/title - - - caution-title - - - - - - - - caution/para - - - caution - - - Consecutive cautions are coalesced. - - - - - warning/title - - - warning-title - - - - - - - - warning/para - - - warning - - - Consecutive warnings are coalesced. - - - - - important/title - - - important-title - - - - - - - - important/para - - - important - - - Consecutive importants are coalesced. - - - - - tip/title - - - tip-title - - - - - - - - tip/para - - - tip - - - Consecutive tips are coalesced. - - - - - itemizedlist/listitem/para - - - - itemizedlist1 -itemizedlist2 -itemizedlist3 -itemizedlist4 - - - - A number suffix indicates a nesting level within other lists. - - - - - orderedlist/listitem/para - - - - orderedlist1 -orderedlist2 -orderedlist3 -orderedlist4 - - - - - - - - - listitem/para[position() != 1] - - - para-continue - - - This paragraph is included in the immediately preceding listitem. - - - - - example/title - - - example-title - - - All content following the title is included in the example element. The end of the example content is marked by a caption paragraph or an empty paragraph if there is no caption. - - - - - figure/title - - - figure-title - - - All content following the title is included in the figure element. Metadata must immediately follow the title. The end of the figure content is marked by a caption paragraph or an empty paragraph if there is no caption. - - - - - informalfigure/mediaobject/imageobject/imagedata/@fileref - - - informalfigure-imagedata, caption - - - The content of the imageobject-imagedata paragraph is taken as the URI for the image. Metadata may immediately follow the paragraph. - - - - - mediaobject/imageobject/imagedata/@fileref - - - imageobject-imagedata, caption - - - The content of the imageobject-imagedata paragraph is taken as the URI for the image. May be followed by a caption style paragraph. Metadata may immediately follow the paragraph, before the caption, if any. - - - - - table - - - Word table, caption - - - - - - - - table/title - - - table-title, caption - - - Metadata may immediately follow the paragraph. - - - - - informaltable - - - Word table - - - A table with no title imediately preceding it. - - - - - caption - - - caption - - - - - - - - literallayout - - - literallayout - - - Inside a literallayout paragraph in Word, lines should be separated by line break (Shift-Enter) rather than paragraph break (Enter). - - - - - programlisting - - - programlisting - - - Inside a programlisting paragraph in Word, lines should be separated by line break (Shift-Enter) rather than paragraph break (Enter). Tabs are not supported. - - - - - blockquote/title - - - blockquote-title - - - Must immediately precede a blockquote paragraph in Word. - - - - - blockquote/para - - - blockquote - - - - - - - - blockquote/attribution - - - blockquote-attribution - - - Must immediately follow a blockquote paragraph in Word. - - - - - bibliomisc - - - bibliomisc - - - - - - - - - Non-DocBook elements - - - - - - xi:include - - - xinclude - - - The content of the paragraph becomes the value of the href attribute. - - - - - - Inline elements - - - - - - emphasis - - - emphasis - - - - - - - - emphasis/@role="bold" - - - emphasis-bold - - - - - - - - emphasis/@role="underline" - - - emphasis-underline - - - - - - - - footnote - - - Word footnote - - - - - - - - link - - - link - - - In Word, hyperlink properties identify the DocBook linkend. - - - - - releaseinfo - - - releaseinfo - - - - - - - - surname - - - surname - - - Character style. Must occur in an appropriate parent paragraph, such as author or editor. - - - - - firstname - - - firstname - - - Character style. Must occur in an appropriate parent paragraph, such as author or editor. - - - - - orgname - - - orgname - - - - - - - - keyword - - - keywordset/keyword - - - Paragraph style. Consecutive keyword elements are merged into a single keywordset parent element. Words (phrases) within a paragraph separated by commas become individual keyword elements. - - - - - citetitle - - - citetitle - - - - - - - - city - - - city - - - - - - - - contrib - - - contrib - - - - - - - - country - - - country - - - - - - - - email - - - email - - - - - - - - fax - - - fax - - - - - - - - honorific - - - honorific - - - - - - - - jobtitle - - - jobtitle - - - - - - - - lineage - - - lineage - - - - - - - - orgdiv - - - orgdiv - - - - - - - - otheraddr - - - otheraddr - - - - - - - - othername - - - othername - - - - - - - - phone - - - phone - - - - - - - - pob - - - pob - - - - - - - - postcode - - - postcode - - - - - - - - shortaffil - - - shortaffil - - - - - - - - state - - - state - - - - - - - -
    - - Proposed Additions - not yet implemented - - - - - - - - DocBook element - - - Style(s) - - - Comments - - - - - - - variablelist/varlistentry/term - - - - variablelist1-term -variablelist2-term -variablelist3-term -variablelist4-term - - - - A variablelist in Word should be a sequence of alternating paragraphs styled as variablelistN-term and variablelistN. - - - - - variablelist/varlistentry/listitem/para - - - - variablelist1 -variablelist2 -variablelist3 -variablelist4 - - - - Consecutive paragraphs are coalesced. - - - - -
    -
    - Attributes - Attributes are a feature of DocBook XML that have no direct counterpart in Word. - XML attributes are encoded in Word comments (annotations). Some dummy text (just a space, using a character style that includes the hidden property) anchors the comment. Within the comment text, character types are used to indicate attribute names and values (these must be paired). This approach keeps the attributes separate to the main body and allows multiple attributes to be encoded. - A disadvantage to this approach is that a paragraph may be related to more than one element, but the attributes are associated with only one element (by default the parent). For example, a section may have an attribute as well as the title child element, but only a single paragraph (with paragraph style sect1-title) represents both elements. Any attribute defined in a comment would be associated with the sect1 element. - Pages does not have annotations, so the character styles attribute-name and attribute-value are used. -
    -
    -
    diff --git a/docbook-xsl-1.75.2/roundtrip/template-pages.xml b/docbook-xsl-1.75.2/roundtrip/template-pages.xml deleted file mode 100644 index cc6fc03..0000000 --- a/docbook-xsl-1.75.2/roundtrip/template-pages.xml +++ /dev/null @@ -1,2 +0,0 @@ - -Lorem ipsum dolor sit ametConsectetur adipiscing elitEset eiusmod tempor incidunt et labore et dolore magna aliquam. Ut enim ad minim veniam, quis nostrud exerc. Irure dolor in reprehend incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse molestaie cillum. Tia non ob ea soluad incommod quae egen ium improb fugiend. Officia deserunt mollit anim id est laborum Et harumd dereud facilis est er expedit distinct. Nam liber te conscient to factor tum poen legum odioque civiuda et tam. Neque pecun modut est neque nonor et imper ned libidig met, consectetur adipiscing elit, sed ut labore et dolore magna aliquam is nostrud exercitation ullam mmodo consequet.Duis aute in voluptate velit esseCillum dolore eu fugiat nulla pariatur. At vver eos et accusam dignissum qui blandit est praesent. Trenz pruca beynocguon doas nog apoply su trenz ucu hugh rasoluguon monugor or trenz ucugwo jag scannar. Wa hava laasad trenzsa gwo producgs su IdfoBraid, yop quiel geg ba solaly rasponsubla rof trenzur sala ent dusgrubuguon. Offoctivo immoriatoly, hawrgasi pwicos asi sirucor. Thas sirutciun applios tyu thuso itoms ghuso pwicos gosi sirucor in mixent gosi sirucor ic mixent ples cak ontisi sowios uf Zerm hawr rwivos. Unte af phen neige pheings atoot Prexs eis phat eit sakem eit vory gast te Plok peish ba useing phen roxas. Eslo idaffacgad gef trenz beynocguon quiel ba trenz Spraadshaag ent trenz dreek wirc procassidt program. Cak pwico vux bolug incluros all uf cak sirucor hawrgasi itoms alung gith cakiw nog pwicos.Plloaso mako nuto uf cakso dodtosKoop a cupy uf cak vux noaw yerw phuno. Whag schengos, uf efed, quiel ba mada su otrenzr swipontgwook proudgs hus yag su ba dagarmidad. Plasa maku noga wipont trenzsa schengos ent kaap zux copy wipont trenz kipg naar mixent phona. Cak pwico siructiun ruos nust apoply tyu cak UCU sisulutiun munityuw uw cak UCU-TGU jot scannow. Trens roxas eis ti Plokeing quert loppe eis yop prexs. Piy opher hawers, eit yaggles orn ti sumbloat alohe plok. Su havo loasor cakso tgu pwuructs tyu InfuBwain, ghu gill nug bo suloly sispunsiblo fuw cakiw salo anr ristwibutiun. Hei muk neme eis loppe. Treas em wankeing ont sime ploked peish rof phen sumbloat syug si phat phey gavet peish ta paat ein pheeir sumbloats. Aslu unaffoctor gef cak siructiun gill bo cak spiarshoot anet cak GurGanglo gur pwucossing pwutwam. Ghat dodtos, ig pany, gill bo maro tyu ucakw suftgasi pwuructs hod yot tyubo rotowminor. Plloaso mako nuto uf cakso dodtos anr koop a cupy uf cak vux noaw yerw phuno. Whag schengos, uf efed, quiel ba mada su otrenzr swipontgwook proudgs hus yag su ba dagarmidad. Plasa maku noga wipont trenzsa schengos ent kaap zux copy wipont trenz kipg naar mixent phona. Cak pwico siructiun ruos nust apoply tyu cak UCU sisulutiun munityuw uw cak UCU-TGU jot scannow. Trens roxas eis ti Plokeing quert loppe eis yop prexs. Piy opher hawers, eit yaggles orn ti sumbloat alohe plok. Su havo loasor cakso tgu pwuructs tyu.Document TemplateInsert content here. diff --git a/docbook-xsl-1.75.2/roundtrip/template.dot b/docbook-xsl-1.75.2/roundtrip/template.dot deleted file mode 100644 index b26ec56..0000000 Binary files a/docbook-xsl-1.75.2/roundtrip/template.dot and /dev/null differ diff --git a/docbook-xsl-1.75.2/roundtrip/template.xml b/docbook-xsl-1.75.2/roundtrip/template.xml deleted file mode 100644 index e36a7df..0000000 --- a/docbook-xsl-1.75.2/roundtrip/template.xml +++ /dev/null @@ -1,3 +0,0 @@ - - -This document left intentionally blankSteve BallSteve Ball15104702007-08-21T22:03:00Z2008-10-08T23:57:00Z1745Explain115111.0000Generic DocBook roundtrip template - 2008-10-09-01. \ No newline at end of file diff --git a/docbook-xsl-1.75.2/roundtrip/wordml2normalise.xsl b/docbook-xsl-1.75.2/roundtrip/wordml2normalise.xsl deleted file mode 100644 index ad22b19..0000000 --- a/docbook-xsl-1.75.2/roundtrip/wordml2normalise.xsl +++ /dev/null @@ -1,445 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - bold-italic - - - bold - - - italic - - - underline - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image - - .jpg - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - 0 - 1 - 0 - - - - - 1 - 0 - 1 - 0 - - - - - 1 - 0 - 1 - 0 - - - - - 1 - 0 - 1 - 0 - - - - - - - all - - - topbot - - - sides - - - top - - - bottom - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - - - 1 - - - - - - - column- - - - - column- - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - - - - - - - - - - - 0 - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/slides/browser/CTOCWidget.js b/docbook-xsl-1.75.2/slides/browser/CTOCWidget.js deleted file mode 100644 index a411ea9..0000000 --- a/docbook-xsl-1.75.2/slides/browser/CTOCWidget.js +++ /dev/null @@ -1,169 +0,0 @@ -/* - * CTOCWidget.js - * $Revision: 1.3 $ $Date: 2003/07/14 06:02:50 $ - */ - -/* ***** BEGIN LICENSE BLOCK ***** - * Version: MPL 1.1/GPL 2.0/LGPL 2.1 - * - * The contents of this file are subject to the Mozilla Public License Version - * 1.1 (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * http://www.mozilla.org/MPL/ - * - * Software distributed under the License is distributed on an "AS IS" basis, - * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License - * for the specific language governing rights and limitations under the - * License. - * - * The Original Code is Netscape code. - * - * The Initial Developer of the Original Code is - * Netscape Corporation. - * Portions created by the Initial Developer are Copyright (C) 2003 - * the Initial Developer. All Rights Reserved. - * - * Contributor(s): Bob Clary - * - * ***** END LICENSE BLOCK ***** */ - -function CTOCWidget(domTOCModel, target) -{ - if (domTOCModel.documentElement.nodeName != 'toc') - { - throw 'CTOCWidget called on non toc Document: ' + domTOCModel.nodeName; - } - - this.model = domTOCModel; - this.target = target; - this.view = document.createElement('div'); - this.view.setAttribute('class', CTOCWidget._classprefix + '_view'); - - var modelItems = domTOCModel.documentElement.childNodes; - for (var i = 0; i < modelItems.length; i++) - { - var modelItem = modelItems.item(i); - if (modelItem.nodeType == Node.ELEMENT_NODE) - { - var viewItem = CTOCWidget.createItemView(modelItem, target); - this.view.appendChild(viewItem); - } - } -} - -CTOCWidget._handleImages = { open: '/toolbox/examples/2003/CTOCWidget/minus.gif', closed: '/toolbox/examples/2003/CTOCWidget/plus.gif', height: '12px', width: '16px'}; -CTOCWidget._classprefix = 'CTOCWidget'; - -CTOCWidget.createItemView = function (modelItem, target) -{ - if (modelItem.nodeType != Node.ELEMENT_NODE) - { - throw 'CTOCWidget.createItemView called on non-Element: ' + modelItem.nodeName; - } - - var i; - - var viewItem = document.createElement('div'); - viewItem.setAttribute('class', CTOCWidget._classprefix + '_item'); - - var viewItemHandle = document.createElement('div'); - viewItemHandle.setAttribute('class', CTOCWidget._classprefix + '_itemhandle'); - viewItemHandle.style.cursor = 'pointer'; - - var viewItemHandleImg = document.createElement('img'); - viewItemHandleImg.style.height = CTOCWidget._handleImages.height; - viewItemHandleImg.style.width = CTOCWidget._handleImages.width; - viewItemHandleImg.addEventListener('click', CTOCWidget.toggleHandle, false); - - var viewItemHandleLink; - if (!modelItem.getAttribute('url')) - { - viewItemHandleLink = document.createElement('span'); - } - else - { - viewItemHandleLink = document.createElement('a'); - viewItemHandleLink.setAttribute('href', modelItem.getAttribute('url')); - viewItemHandleLink.setAttribute('target', target); - } - viewItemHandleLink.appendChild(document.createTextNode(modelItem.getAttribute('title'))); - - viewItemHandle.appendChild(viewItemHandleImg); - viewItemHandle.appendChild(viewItemHandleLink); - viewItem.appendChild(viewItemHandle); - - if (modelItem.childNodes.length == 0) - { - viewItemHandleImg.setAttribute('src', CTOCWidget._handleImages.open); - } - else - { - viewItemHandleImg.setAttribute('src', CTOCWidget._handleImages.closed); - - var viewItemChildren = document.createElement('div'); - viewItemChildren.setAttribute('class', CTOCWidget._classprefix + '_itemchildren'); - viewItemChildren.style.display = 'none'; - viewItemChildren.style.position = 'relative'; - viewItemChildren.style.left = '1em'; - - for (i = 0; i < modelItem.childNodes.length; i++) - { - var modelItemChild = modelItem.childNodes.item(i); - if (modelItemChild.nodeType == Node.ELEMENT_NODE) - { - viewItemChildren.appendChild(CTOCWidget.createItemView(modelItemChild, target)); - } - } - - viewItem.appendChild(viewItemChildren); - } - - return viewItem; -}; - -// fires on img part of the handle -CTOCWidget.toggleHandle = function(e) -{ - switch (e.eventPhase) - { - case Event.CAPTURING_PHASE: - case Event.BUBBLING_PHASE: - return true; - - case Event.AT_TARGET: - - e.preventBubble(); - - var domHandle = e.target.parentNode; - var domChildren = domHandle.nextSibling; - - if (!domChildren) - { - return true; - } - - switch(domChildren.style.display) - { - case '': - case 'block': - domChildren.style.display = 'none'; - e.target.setAttribute('src', CTOCWidget._handleImages.closed); - break; - case 'none': - domChildren.style.display = 'block'; - e.target.setAttribute('src', CTOCWidget._handleImages.open); - break; - default: - return false; - } - - return true; - - default: - dump('Unknown Event Phase ' + e.eventPhase); - break; - } - - return true; -} - diff --git a/docbook-xsl-1.75.2/slides/browser/overlay.js b/docbook-xsl-1.75.2/slides/browser/overlay.js deleted file mode 100644 index fc010fb..0000000 --- a/docbook-xsl-1.75.2/slides/browser/overlay.js +++ /dev/null @@ -1,142 +0,0 @@ -// -*- Java -*- -// -// Overlay.js, adapted from Floating image II on dynamicdrive.com -/* Usage: - - - -...rest of head... - - -
    -...body of overlay... -
    -...rest of page... -*/ - -var overlayNS4 = document.layers ? 1 : 0; -var overlayIE = document.all ? 1 : 0; -var overlayNS6 = document.getElementById && !document.all ? 1 : 0; - -var overlayPadX = 15; -var overlayPadY = 15; -var overlayDelay = 60; - -var overlayCorner = 'ur'; // ul, ll, ur, lr, uc, lc, cl, cr - -function overlayRefresh() { - var overlayLx = 0; - var overlayLy = 0; - - var overlayX = 0; - var overlayY = 0; - var overlayW = 0; - var overlayH = 0; - var contentH = 0; - - var links = document.getElementsByTagName("body")[0]; - - if (overlayIE) { - overlayLx = document.body.clientWidth; - overlayLy = document.body.clientHeight; - - if (document.body.parentElement) { - // For IE6 - overlayLx = document.body.parentElement.clientWidth; - overlayLy = document.body.parentElement.clientHeight; - } - - overlayH = overlayDiv.offsetHeight; - overlayW = body.offsetWidth; // overlayDiv.offsetWidth; - contentH = body.offsetHeight; - } else if (overlayNS4) { - overlayLy = window.innerHeight; - overlayLx = window.innerWidth; - overlayH = document.overlayDiv.clip.height; - overlayW = body.clip.width; // document.overlayDiv.clip.width; - contentH = body.clip.height; - } else if (overlayNS6) { - var odiv = document.getElementById('overlayDiv'); - - overlayLy = window.innerHeight; - overlayLx = window.innerWidth; - overlayH = odiv.offsetHeight; - overlayW = odiv.offsetWidth; // body.offsetWidth; - contentH = odiv.offsetHeight; - } - - if (overlayCorner == 'ul') { - overlayX = overlayPadX; - overlayY = overlayPadY; - } else if (overlayCorner == 'cl') { - overlayX = overlayPadX; - overlayY = (overlayLy - overlayH) / 2; - } else if (overlayCorner == 'll') { - overlayX = overlayPadX; - overlayY = (overlayLy - overlayH) - overlayPadY; - } else if (overlayCorner == 'ur') { - overlayX = (overlayLx - overlayW) - overlayPadX; - overlayY = overlayPadY; - } else if (overlayCorner == 'cr') { - overlayX = (overlayLx - overlayW) - overlayPadX; - overlayY = (overlayLy - overlayH) / 2; - } else if (overlayCorner == 'lr') { - overlayX = (overlayLx - overlayW) - overlayPadX; - overlayY = (overlayLy - overlayH) - overlayPadY; - } else if (overlayCorner == 'uc') { - overlayX = (overlayLx - overlayW) / 2; - overlayY = overlayPadY; - } else { // overlayCorner == 'lc' - overlayX = (overlayLx - overlayW) / 2; - overlayY = (overlayLy - overlayH) - overlayPadY; - } - - if (overlayIE) { - overlayDiv.style.left=overlayX; - overlayDiv.style.top=overlayY+document.body.scrollTop; - - if (contentH > overlayLy) { - overlayDiv.style.visibility = "hidden"; - } - } else if (overlayNS4) { - document.overlayDiv.pageX=overlayX; - document.overlayDiv.pageY=overlayY+window.pageYOffset; - document.overlayDiv.visibility="visible"; - - if (contentH > overlayLy) { - document.overlayDiv.style.visibility = "hidden"; - } - } else if (overlayNS6) { - var div = document.getElementById("overlayDiv"); - var leftpx = overlayX; - var toppx = overlayY+window.pageYOffset; - var widthpx = overlayW; - - div.style.left = leftpx + "px"; - div.style.top = toppx + "px"; - div.style.width = widthpx + "px"; - - if (contentH > overlayLy) { - div.style.visibility = "hidden"; - } else { - div.style.visibility = "visible"; - } - } -} - -function onad() { - loopfunc(); -} - -function loopfunc() { - overlayRefresh(); - setTimeout('loopfunc()',overlayDelay); -} - -function overlaySetup(corner) { - overlayCorner = corner; - - if (overlayIE || overlayNS4 || overlayNS6) { - onad(); - } -} diff --git a/docbook-xsl-1.75.2/slides/browser/slides-default.css b/docbook-xsl-1.75.2/slides/browser/slides-default.css deleted file mode 100644 index 1022d6b..0000000 --- a/docbook-xsl-1.75.2/slides/browser/slides-default.css +++ /dev/null @@ -1,9 +0,0 @@ -@import url('slides.css'); - -.toclink { font-size: 10pt; - font-weight: normal; - } - -.toclink a { color: blue; } -.toclink a:link { color: blue; } -.toclink a:visited { color: blue; } diff --git a/docbook-xsl-1.75.2/slides/browser/slides-frames.css b/docbook-xsl-1.75.2/slides/browser/slides-frames.css deleted file mode 100644 index 698b6a3..0000000 --- a/docbook-xsl-1.75.2/slides/browser/slides-frames.css +++ /dev/null @@ -1,73 +0,0 @@ -@import url('slides.css'); - -.toc-body { margin-left: 2px; - margin-right: 2px; - } - -.foil-body { margin-left: 2px; - margin-right: 2px; - } - -h1.title { margin-top: 0px; - padding-top: 0px; - } - -.navhead { visibility: visible; - } - -.navfoot { visibility: visible; - } - -/* ====================================================================== */ - -.navfoot { border-top: 1px solid black; - margin-top: 10px; - padding-top: 4px; - } -/* ====================================================================== */ - -.toc { font-weight: bold; - font-size: 10pt; - } - -.toc a { text-decoration: none; } -.toc a:link { color: blue; } -.toc a:visited { color: blue; } - -.toc .toc-foilgroup a { color: red; } -.toc .toc-foilgroup a:link { color: red; } -.toc .toc-foilgroup a:visited { color: red; } - -.toc .toc-titlefoil a { color: black; } -.toc .toc-titlefoil a:link { color: black; } -.toc .toc-titlefoil a:visited { color: black; } - -.toc .toc-foil a { color: blue; } -.toc .toc-foil a:link { color: blue; } -.toc .toc-foil a:visited { color: blue; } - -.toc-slidesinfo { font-family: sans-serif; - font-weight: bold; - text-align: center; - } - -.toc-titlefoil { font-family: sans-serif; - font-weight: bold; - text-align: center; - } - -.toc-foilgroup { font-family: sans-serif; - margin-left: 0.25in; - text-indent: -0.25in; - font-weight: bold; - color: red; - } - -.toc-foil { font-family: sans-serif; - font-size: 10pt; - margin-left: 0.25in; - text-indent: -0.4in; - font-weight: bold; - color: blue; - } - diff --git a/docbook-xsl-1.75.2/slides/browser/slides-plain.css b/docbook-xsl-1.75.2/slides/browser/slides-plain.css deleted file mode 100644 index c22f289..0000000 --- a/docbook-xsl-1.75.2/slides/browser/slides-plain.css +++ /dev/null @@ -1 +0,0 @@ -@import url('slides.css'); diff --git a/docbook-xsl-1.75.2/slides/browser/slides-table.css b/docbook-xsl-1.75.2/slides/browser/slides-table.css deleted file mode 100644 index 1c195c9..0000000 --- a/docbook-xsl-1.75.2/slides/browser/slides-table.css +++ /dev/null @@ -1,41 +0,0 @@ -@import url('slides.css'); - -.toc-body { margin-left: 2px; - margin-right: 2px; - } - -.foil-body { margin-left: 2px; - margin-right: 2px; - } - -.foilgroup-body { margin-left: 2px; - margin-right: 2px; - } - -h1.title { - margin-top: 0px; - padding-top: 0px; - } - -/* ToC Stuff */ - -.ttoc { - font-size: 10pt; - color: white; - } - -.ttoc a { text-decoration: none; } -.ttoc a:link { color: white } -.ttoc a:visited { color: white } - -.ttoc-title { - font-size: 10pt; - } - -.ttoc-foilset { - font-size: 10pt; - } - -.ttoc-foil { - font-size: 10pt; - } diff --git a/docbook-xsl-1.75.2/slides/browser/slides-w3c.css b/docbook-xsl-1.75.2/slides/browser/slides-w3c.css deleted file mode 100644 index c22f289..0000000 --- a/docbook-xsl-1.75.2/slides/browser/slides-w3c.css +++ /dev/null @@ -1 +0,0 @@ -@import url('slides.css'); diff --git a/docbook-xsl-1.75.2/slides/browser/slides.css b/docbook-xsl-1.75.2/slides/browser/slides.css deleted file mode 100644 index 1007478..0000000 --- a/docbook-xsl-1.75.2/slides/browser/slides.css +++ /dev/null @@ -1,119 +0,0 @@ -/* General formatting */ - -body { font-family: sans-serif; - font-weight: bold; - } - -.copyright { color: #7F7F7F; - } - -/* Title page formatting */ - - -.slidesinfo { text-align: center; - font-size: 16pt; - } - -.slidesinfo h1.title { color: blue; - } -.slidesinfo h2.subtitle { color: blue; - } -.slidesinfo h1.author { color: green; - } - -.slidesinfo .copyright { color: black; - } - - -/* ToC page formatting */ - -.tocpage h1.title { color: blue; - text-align: center; - } - -.tocpage a { text-decoration: none; } -.tocpage a:link { color: blue; } -.tocpage a:visited { color: blue; } - -.toc-body { margin-left: 0.5in; - margin-right: 0.5in; - } - -/* Foil page formatting */ - -.foil { font-size: 16pt; - } -.foil h1.title { text-align: center; - color: blue; - padding-top: 0pt; - margin-top: 0pt; - } -.foil h2.subtitle { text-align: center; - color: blue; - padding-top: 0pt; - margin-top: 0pt; - } - -.foil pre { font-size: 16pt; - } - -.foil-body { margin-left: 0.5in; - margin-right: 0.5in; - } - -/* Foilgroup page formatting */ - -.foilgroup { font-size: 16pt; - } -.foilgroup h1.title { text-align: center; - color: red; - padding-top: 0pt; - margin-top: 0pt; - } -.foilgroup h2.subtitle { text-align: center; - color: blue; - padding-top: 0pt; - margin-top: 0pt; - } - -.foilgroup-body { margin-left: 0.5in; - margin-right: 0.5in; - } - -/* Navigation header formatting */ - -.navhead { border-bottom: 1px solid black; - margin-bottom: 10px; - padding-bottom: 4px; - } - -.navhead hr.top-nav-sep { display: none; } - -.navhead .slidestitle { font-weight: normal; - font-size: 10pt; - font-style: italic; - } - -/* Navigation footer formatting */ - -.navfoot { border-top: 1px solid black; - margin-top: 10px; - padding-top: 4px; - } - -.navfoot hr.bottom-nav-sep { display: none; } - -/* General navigation formatting */ - -.link-text { font-weight: bold; - font-size: 10pt; - } - - -.link-text a { text-decoration: none; } -.link-text a:link { color: blue; } -.link-text a:visited { color: blue; } - -.no-link-text { color: #7F7F7F; } - -/* EOF */ diff --git a/docbook-xsl-1.75.2/slides/browser/slides.js b/docbook-xsl-1.75.2/slides/browser/slides.js deleted file mode 100644 index 2e48a7c..0000000 --- a/docbook-xsl-1.75.2/slides/browser/slides.js +++ /dev/null @@ -1,120 +0,0 @@ -// -*- Java -*- -// -// $Id: slides.js 4931 2005-06-21 15:45:53Z kosek $ -// -// Copyright (C) 2002 Norman Walsh -// -// You are free to use, modify and distribute this software without limitation. -// This software is provided "AS IS," without a warranty of any kind. -// -// This script assumes that the Netscape 'ua.js' module has also been loaded. - -function newPage(filename, overlay) { - divs = document.getElementsByTagName("div"); - - if (divs) { - var xdiv = divs[0]; - - if (xdiv) { - var xid = xdiv.getAttribute("id"); - - var mytoc = window.top.frames[0]; - if (mytoc.lastUnderlined) { - mytoc.lastUnderlined.style.textDecoration = "none"; - } - - var tdiv = xbGetElementById(xid, mytoc); - - if (tdiv) { - var ta = tdiv.getElementsByTagName("a").item(0); - ta.style.textDecoration = "underline"; - mytoc.lastUnderlined = ta; - } - } - } - - if (overlay != 0) { - overlaySetup('lc'); - } -} - - -function navigate (evt) { - var kc = -1; - - if (navigator.org == 'microsoft' || navigator.family == 'opera') { - kc = window.event.keyCode; - } else if (navigator.family == 'gecko') { - kc = evt.keyCode; - if(!kc) { - kc = evt.which; - } - } else { - kc = evt.which; - } - - var forward = (kc == 110) || (kc == 78) || (kc == 32) - || (kc == 10) || (kc == 13) || (kc == 34) - || (kc == 39); - /* n, N, SPACE, ENTER, RETURN, PAGE UP, RIGHT ARROW */ - var backward = (kc == 112) || (kc == 80) || (kc == 8) - || (kc == 33) || (kc == 37); - /* p, P, BACKSPACE, PAGE DOWN, LEFT ARROW */ - var up = (kc == 117) || (kc == 85) || (kc == 38); - /* u, U, UP ARROW */ - var home = (kc == 104) || (kc == 72) || (kc == 36); - /* h, H, HOME */ - var toc = (kc == 116) || (kc == 84); - /* t, T */ - /* previously included META (kc == 244) */ - - var links = document.getElementsByTagName("link"); - - var count = 0; - var target = ""; - - for (count = 0; count < links.length; count++) { - if (home && (links[count].getAttribute("rel") == 'top')) { - target = links[count].getAttribute("href"); - } - if (toc && (links[count].getAttribute("rel") == 'contents')) { - target = links[count].getAttribute("href"); - } - if (up && (links[count].getAttribute("rel") == 'up')) { - target = links[count].getAttribute("href"); - } - if (forward && (links[count].getAttribute("rel") == 'next')) { - target = links[count].getAttribute("href"); - } - if (backward && (links[count].getAttribute("rel") == 'previous')) { - target = links[count].getAttribute("href"); - } - } - - if (target != "") { - if (window.top.frames[1]) { - window.top.frames[1].location = target; - } else { - window.location = target; - } - } - - return false; -} - -function toggletoc (img, width, hidegraphic, showgraphic) { - var fsc = top.GetElementsByTagName('frameset'); - if (fsc) { - var fs = fsc[0]; - if (fs) { - if (fs.cols == "0,*") { - fs.cols = width + ",*"; - img.src = hidegraphic; - } else { - fs.cols = "0,*"; - img.src = showgraphic; - } - } - } -} - diff --git a/docbook-xsl-1.75.2/slides/browser/ua.js b/docbook-xsl-1.75.2/slides/browser/ua.js deleted file mode 100644 index 8987659..0000000 --- a/docbook-xsl-1.75.2/slides/browser/ua.js +++ /dev/null @@ -1,135 +0,0 @@ -/* - * ua.js - * $Revision: 1.2 $ $Date: 2003/02/07 16:04:17 $ - */ - -/* ***** BEGIN LICENSE BLOCK ***** - * Version: MPL 1.1/GPL 2.0/LGPL 2.1 - * - * The contents of this file are subject to the Mozilla Public License Version - * 1.1 (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * http://www.mozilla.org/MPL/ - * - * Software distributed under the License is distributed on an "AS IS" basis, - * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License - * for the specific language governing rights and limitations under the - * License. - * - * The Original Code is Netscape code. - * - * The Initial Developer of the Original Code is - * Netscape Corporation. - * Portions created by the Initial Developer are Copyright (C) 2001 - * the Initial Developer. All Rights Reserved. - * - * Contributor(s): Bob Clary - * - * ***** END LICENSE BLOCK ***** */ - -function xbDetectBrowser() -{ - var oldOnError = window.onerror; - var element = null; - - window.onerror = null; - - // work around bug in xpcdom Mozilla 0.9.1 - window.saveNavigator = window.navigator; - - navigator.OS = ''; - navigator.version = parseFloat(navigator.appVersion); - navigator.org = ''; - navigator.family = ''; - - var platform; - if (typeof(window.navigator.platform) != 'undefined') - { - platform = window.navigator.platform.toLowerCase(); - if (platform.indexOf('win') != -1) - navigator.OS = 'win'; - else if (platform.indexOf('mac') != -1) - navigator.OS = 'mac'; - else if (platform.indexOf('unix') != -1 || platform.indexOf('linux') != -1 || platform.indexOf('sun') != -1) - navigator.OS = 'nix'; - } - - var i = 0; - var ua = window.navigator.userAgent.toLowerCase(); - - if (ua.indexOf('opera') != -1) - { - i = ua.indexOf('opera'); - navigator.family = 'opera'; - navigator.org = 'opera'; - navigator.version = parseFloat('0' + ua.substr(i+6), 10); - } - else if ((i = ua.indexOf('msie')) != -1) - { - navigator.org = 'microsoft'; - navigator.version = parseFloat('0' + ua.substr(i+5), 10); - - if (navigator.version < 4) - navigator.family = 'ie3'; - else - navigator.family = 'ie4' - } - else if (ua.indexOf('gecko') != -1) - { - navigator.family = 'gecko'; - var rvStart = ua.indexOf('rv:'); - var rvEnd = ua.indexOf(')', rvStart); - var rv = ua.substring(rvStart+3, rvEnd); - var rvParts = rv.split('.'); - var rvValue = 0; - var exp = 1; - - for (var i = 0; i < rvParts.length; i++) - { - var val = parseInt(rvParts[i]); - rvValue += val / exp; - exp *= 100; - } - navigator.version = rvValue; - - if (ua.indexOf('netscape') != -1) - navigator.org = 'netscape'; - else if (ua.indexOf('compuserve') != -1) - navigator.org = 'compuserve'; - else - navigator.org = 'mozilla'; - } - else if ((ua.indexOf('mozilla') !=-1) && (ua.indexOf('spoofer')==-1) && (ua.indexOf('compatible') == -1) && (ua.indexOf('opera')==-1)&& (ua.indexOf('webtv')==-1) && (ua.indexOf('hotjava')==-1)) - { - var is_major = parseFloat(navigator.appVersion); - - if (is_major < 4) - navigator.version = is_major; - else - { - i = ua.lastIndexOf('/') - navigator.version = parseFloat('0' + ua.substr(i+1), 10); - } - navigator.org = 'netscape'; - navigator.family = 'nn' + parseInt(navigator.appVersion); - } - else if ((i = ua.indexOf('aol')) != -1 ) - { - // aol - navigator.family = 'aol'; - navigator.org = 'aol'; - navigator.version = parseFloat('0' + ua.substr(i+4), 10); - } - else if ((i = ua.indexOf('hotjava')) != -1 ) - { - // hotjava - navigator.family = 'hotjava'; - navigator.org = 'sun'; - navigator.version = parseFloat(navigator.appVersion); - } - - window.onerror = oldOnError; -} - -xbDetectBrowser(); - diff --git a/docbook-xsl-1.75.2/slides/browser/xbCollapsibleLists.js b/docbook-xsl-1.75.2/slides/browser/xbCollapsibleLists.js deleted file mode 100644 index 6a4f93c..0000000 --- a/docbook-xsl-1.75.2/slides/browser/xbCollapsibleLists.js +++ /dev/null @@ -1,537 +0,0 @@ -/* -xbCollapsibleLists.js 2001-02-26 - -Contributor(s): Michael Bostock, Netscape Communications, Copyright 1997 - Bob Clary, Netscape Communications, Copyright 2001 - Seth Dillingham, Macrobyte Resources, Copyright 2001 - Mark Filanowicz, Amdahl IT Services, Copyright 2002 - -Netscape grants you a royalty free license to use, modify or -distribute this software provided that this copyright notice -appears on all copies. This software is provided "AS IS," -without a warranty of any kind. - -See xbCollapsibleLists.js.changelog.html for details of changes. -*/ - - -var xbcl__id = 0; -var xbcl_item_id = 0; -var xbcl_mLists = new Array(); -var xbcl_parentElement = null; - -document.lists = xbcl_mLists; - -function List(visible, width, height, bgColor, collapsedImageURL, expandedImageURL) -{ - this.lists = new Array(); // sublists - this.items = new Array(); // layers - this.types = new Array(); // type - this.strs = new Array(); // content - this.visible = visible; - this.id = xbcl__id; - this.width = width || 350; - this.height = height || 22; - - this.collapsedImageURL = collapsedImageURL || 'false.gif'; - this.expandedImageURL = expandedImageURL || 'true.gif'; - - if (bgColor) - this.bgColor = bgColor; - - xbcl_mLists[xbcl__id++] = this; -} - -function xbcl_SetFont(i,j) -{ - this.fontIntro = i; - this.fontOutro = j; -} - -function xbcl_GetFont() -{ - return [this.fontIntro, this.fontOutro]; -} - -function xbcl_setIndent(indent) -{ - this.i = indent; - if (this.i < 0) - { - this.i = 0; - this.space = false; - } - else - this.space = true; -} - -function xbcl_getIndent(indent) -{ - return this.i; -} - -function xbcl_writeItemDOMHTML( obj, s, flList, listObj ) -{ - var styleObj; - var outerDiv, innerLeft, innerRight; - var str; - var leftEdge = 0; - - styleObj = new xbStyle(obj); - styleObj.setVisibility('hidden'); - outerDiv = document.createElement( "DIV" ); - outerDiv.id = "DIV_" + obj.id; - styleObj = new xbStyle( outerDiv ); - styleObj.setWidth( this.width ); - - if ( flList ) - { - innerLeft = document.createElement( "DIV" ); - innerLeft.style.position = "absolute"; - innerLeft.style.valign = "middle"; - leftEdge = 15; - - styleObj = new xbStyle( innerLeft ); - styleObj.setWidth( 15 ); - styleObj.setBackgroundColor( "transparent" ); - - if ( listObj.visible ) - str = ''; - else - str = ''; - - innerLeft.innerHTML = str; - outerDiv.appendChild( innerLeft ); - } - else if ( this.space ) - leftEdge = 15; - - innerRight = document.createElement( "DIV" ); - innerRight.noWrap = true; - innerRight.style.position = "absolute"; - - styleObj = new xbStyle( innerRight ); - styleObj.setLeft( leftEdge + ( this.l * this.i ) ); - styleObj.setWidth( this.width - 15 - this.l * this.i ); - styleObj.setBackgroundColor( "transparent" ); - - // start of change by Mark Filanowicz 02-22-2002 - if ( flList ) - { - s = this.fontIntro + '' + s + this.fontOutro; - } - else - { - s = this.fontIntro + s + this.fontOutro; - } - // end of change by Mark Filanowicz 02-22-2002 - - - innerRight.innerHTML = s; - outerDiv.appendChild( innerRight ); - - obj.appendChild( outerDiv ); - - return; -} - -function xbcl_writeItem( obj, s, flList, listObj ) -{ - var cellStyle = ''; - var str = ''; - var styleObj = new xbStyle( obj ); - - styleObj.setVisibility( 'hidden' ); - - if ( document.body && document.body.style ) - cellStyle = ' style="background-color: transparent;"'; - - str += ''; - - if ( flList ) - { - str += ''; - } - else if (this.space) - str += ''; - - if (this.l>0 && this.i>0) - str += ''; - - str += '
    '; - str += ''; - - if ( listObj.visible ) - str += ''; - else - str += ''; - - str += '  '; - - // start of change by Mark Filanowicz 02-22-2002 - if ( flList ) - { - str += this.fontIntro + '' + s + this.fontOutro; - } - else - { - str += this.fontIntro + s + this.fontOutro; - } - // end of change by Mark Filanowicz 02-22-2002 - - str += '
    '; - - styleObj.setInnerHTML( str ); - - return; -} - -function xbcl_writeList() -{ - var item; - var i; - var flList; - - for ( i = 0; i < this.types.length; i++ ) - { - item = this.items[ i ]; - flList = ( this.types[ i ] == 'list' ); - - this._writeItem( item, this.strs[ i ], flList, this.lists[ i ] ); - - if ( flList && this.lists[ i ].visible ) - this.lists[ i ]._writeList(); - } - - this.built = true; - this.needsRewrite = false; - self.status = ''; -} - -function xbcl_showList() -{ - var item; - var styleObj; - var i; - - for (i = 0; i < this.types.length; i++) - { - item = this.items[i]; - styleObj = new xbStyle(item); - styleObj.setClipLeft(0); - styleObj.setClipRight(this.width); - styleObj.setClipTop(0); - if (item.height) - { - styleObj.setClipBottom(item.height); - styleObj.setHeight(item.height); - } - else - { - styleObj.setClipBottom(this.height); - styleObj.setHeight(this.height); - } - - if ( this.visible ) - styleObj.setVisibility( 'visible' ); - - var bg = item.oBgColor || this.bgColor; - if ((bg == null) || (bg == 'null')) - bg = ''; - - styleObj.setBackgroundColor(bg); - - if (this.types[i] == 'list' && this.lists[i].visible) - this.lists[i]._showList(); - } - this.shown = true; - this.needsUpdate = false; -} - -function xbcl_setImage(list, item, file) -{ - var id = '_img' + list.id; - var img = null; - - // for DOMHTML or IE4 use cross browser getElementById from xbStyle - // can't use it for NN4 since it only works for layers in NN4 - if (document.layers) - img = item.document.images[0]; - else - img = xbGetElementById(id); - - if (img) - img.src = file; -} - -function xbcl_getHeight() -{ - var totalHeight = 0; - var i; - - if (!this.visible) - return 0; - - for (i = 0; i < this.types.length; i++) - { - if (this.items[i].height) - totalHeight += this.items[i].height; - else - totalHeight += this.height; - - if ((this.types[i] == 'list') && this.lists[i].visible) - { - totalHeight += this.lists[i].getHeight(); - } - } - - return totalHeight; -} - -function xbcl_updateList(pVis, x, y) -{ - var currTop = y; - var item; - var styleObj; - var i; - - for (i = 0; i < this.types.length; i++) - { - item = this.items[i]; - styleObj = new xbStyle(item); - - if (this.visible && pVis) - { - styleObj.moveTo(x, currTop); - if (item.height) // allow custom heights for each item - currTop += item.height; - else - currTop += this.height; - - styleObj.setVisibility('visible'); - } - else - { - styleObj.setVisibility('hidden'); - } - - if (this.types[i] == 'list') - { - if (this.lists[i].visible) - { - if (!this.lists[i].built || this.lists[i].needsRewrite) - this.lists[i]._writeList(); - - if (!this.lists[i].shown || this.lists[i].needsUpdate) - this.lists[i]._showList(); - - xbcl_setImage(this.lists[i], item, this.expandedImageURL ); - } - else - xbcl_setImage(this.lists[i], item, this.collapsedImageURL ); - - if (this.lists[i].built) - currTop = this.lists[i]._updateList(this.visible && pVis, x, currTop); - } - } - return currTop; -} - -function xbcl_updateParent( pid, l ) -{ - var i; - - if ( !l ) - l = 0; - - this.pid = pid; - this.l = l; - - for ( i = 0; i < this.types.length; i++ ) - { - if ( this.types[ i ] == 'list' ) - { - this.lists[ i ]._updateParent( pid, l + 1 ); - } - } -} - -function xbcl_expand(i) -{ - xbcl_mLists[i].visible = !xbcl_mLists[i].visible; - - if (xbcl_mLists[i].onexpand != null) - xbcl_mLists[i].onexpand(xbcl_mLists[i].id); - - xbcl_mLists[xbcl_mLists[i].pid].rebuild(); - - if (xbcl_mLists[i].postexpand != null) - xbcl_mLists[i].postexpand(xbcl_mLists[i].id); -} - -function xbcl_build(x, y) -{ - this._updateParent(this.id); - this._writeList(); - this._showList(); - this._updateList(true, x, y); - this.x = x; - this.y = y; -} - -function xbcl_rebuild() -{ - this._updateList(true, this.x, this.y); -} - -function xbcl_getNewItem() -{ - var newItem = null; - - newItem = xbGetElementById('lItem' + xbcl_item_id); - - if (!newItem) - { - if (document.all && !document.getElementById) - { - var parentElement = this.parentElement; - if (!parentElement) - parentElement = document.body; - - parentElement.insertAdjacentHTML('beforeEnd', '
    '); - newItem = xbGetElementById('lItem' + xbcl_item_id); - } - else if (document.layers) - { - if (this.parentElement) - newItem = new Layer(this.width, this.parentElement); - else - newItem = new Layer(this.width); - } - else if (document.createElement) - { - newItem = document.createElement('div'); - newItem.id= 'lItem' + xbcl_item_id; - newItem.style.position = 'absolute'; - - if (this.parentElement) - this.parentElement.appendChild(newItem); - else - document.body.appendChild(newItem); - } - } - - return newItem; -} - -function xbcl_addItem(str, bgColor, item) -{ - if (!item) - item = this._getNewItem(); - - if (!item) - return; - - if (bgColor) - item.oBgColor = bgColor; - - this.items[this.items.length] = item; - this.types[this.types.length] = 'item'; - this.strs[this.strs.length] = str; - ++xbcl_item_id; - - if ( this.built ) - { - this._writeItem( item, str, false ); - xbcl_mLists[this.pid].rebuild(); - if ( this.visible ) - this._showList(); - else - this.needsUpdate = true; - } - - return item; -} - -function xbcl_addList(list, str, bgColor, item) -{ - if (!item) - item = this._getNewItem(); - - if (!item) - return; - - if (bgColor) - item.oBgColor = bgColor; - - this.lists[this.items.length] = list; - this.items[this.items.length] = item; - this.types[this.types.length] = 'list'; - this.strs[this.strs.length] = str; - ++xbcl_item_id; - - list.parentList = this; - - list.pid = this.pid; - list.l = this.l + 1; - - if ( this.built ) - { - this._writeItem( item, str, true, list ); - xbcl_mLists[ this.pid ].rebuild(); - if ( this.visible ) - this._showList(); - else - this.needsUpdate = true; - } - - return item; -} - -List.prototype.setIndent = xbcl_setIndent; -List.prototype.getIndent = xbcl_getIndent; -List.prototype.addItem = xbcl_addItem; -List.prototype.addList = xbcl_addList; -List.prototype.build = xbcl_build; -List.prototype.rebuild = xbcl_rebuild; -List.prototype.setFont = xbcl_SetFont; -List.prototype.getFont = xbcl_GetFont; -List.prototype.getHeight = xbcl_getHeight; - -List.prototype._writeList = xbcl_writeList; -List.prototype._getNewItem = xbcl_getNewItem; - -if ( document.getElementById && document.createElement ) - List.prototype._writeItem = xbcl_writeItemDOMHTML; -else - List.prototype._writeItem = xbcl_writeItem; - -List.prototype._showList = xbcl_showList; -List.prototype._updateList = xbcl_updateList; -List.prototype._updateParent = xbcl_updateParent; - -List.prototype.onexpand = null; -List.prototype.postexpand = null; -List.prototype.lists = null; // sublists -List.prototype.items = null; // layers -List.prototype.types = null; // type -List.prototype.strs = null; // content -List.prototype.x = 0; -List.prototype.y = 0; -List.prototype.visible = false; -List.prototype.id = -1; -List.prototype.i = 18; -List.prototype.space = true; -List.prototype.pid = 0; -List.prototype.fontIntro = ''; -List.prototype.fontOutro = ''; -List.prototype.width = 350; -List.prototype.height = 22; -List.prototype.built = false; -List.prototype.shown = false; -List.prototype.needsUpdate = false; -List.prototype.needsRewrite = false; -List.prototype.l = 0; -List.prototype.bgColor = null; -List.prototype.parentList = null; -List.prototype.parentElement = null; diff --git a/docbook-xsl-1.75.2/slides/browser/xbDOM.js b/docbook-xsl-1.75.2/slides/browser/xbDOM.js deleted file mode 100644 index 39cc8bf..0000000 --- a/docbook-xsl-1.75.2/slides/browser/xbDOM.js +++ /dev/null @@ -1,374 +0,0 @@ -/* - * xbDOM.js - * $Revision: 1.2 $ $Date: 2003/02/07 16:04:18 $ - */ - -/* ***** BEGIN LICENSE BLOCK ***** - * Version: MPL 1.1/GPL 2.0/LGPL 2.1 - * - * The contents of this file are subject to the Mozilla Public License Version - * 1.1 (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * http://www.mozilla.org/MPL/ - * - * Software distributed under the License is distributed on an "AS IS" basis, - * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License - * for the specific language governing rights and limitations under the - * License. - * - * The Original Code is Netscape code. - * - * The Initial Developer of the Original Code is - * Netscape Corporation. - * Portions created by the Initial Developer are Copyright (C) 2001 - * the Initial Developer. All Rights Reserved. - * - * Contributor(s): Bob Clary - * - * ***** END LICENSE BLOCK ***** */ - -function xbToInt(s) -{ - var i = parseInt(s, 10); - if (isNaN(i)) - i = 0; - - return i; -} - -function xbGetWindowWidth(windowRef) -{ - var width = 0; - - if (!windowRef) - { - windowRef = window; - } - - if (typeof(windowRef.innerWidth) == 'number') - { - width = windowRef.innerWidth; - } - else if (windowRef.document.body && typeof(windowRef.document.body.clientWidth) == 'number') - { - width = windowRef.document.body.clientWidth; - } - - return width; -} - -function xbGetWindowHeight(windowRef) -{ - var height = 0; - - if (!windowRef) - { - windowRef = window; - } - - if (typeof(windowRef.innerWidth) == 'number') - { - height = windowRef.innerHeight; - } - else if (windowRef.document.body && typeof(windowRef.document.body.clientWidth) == 'number') - { - height = windowRef.document.body.clientHeight; - } - return height; -} - -function xbGetElementsByNameAndType(name, type, windowRef) -{ - if (!windowRef) - windowRef = window; - - var elmlist = new Array(); - - xbFindElementsByNameAndType(windowRef.document, name, type, elmlist); - - return elmlist; -} - -function xbFindElementsByNameAndType(doc, name, type, elmlist) -{ - var i; - var subdoc; - - for (i = 0; i < doc[type].length; ++i) - { - if (doc[type][i].name && name == doc[type][i].name) - { - elmlist[elmlist.length] = doc[type][i]; - } - } - - if (doc.layers) - { - for (i = 0; i < doc.layers.length; ++i) - { - subdoc = doc.layers[i].document; - xbFindElementsByNameAndType(subdoc, name, type, elmlist); - } - } -} - -if (document.layers) -{ - nav4FindLayer = - function (doc, id) - { - var i; - var subdoc; - var obj; - - for (i = 0; i < doc.layers.length; ++i) - { - if (doc.layers[i].id && id == doc.layers[i].id) - return doc.layers[i]; - - subdoc = doc.layers[i].document; - obj = nav4FindLayer(subdoc, id); - if (obj != null) - return obj; - } - return null; - } - - nav4FindElementsByName = - function (doc, name, elmlist) - { - var i; - var j; - var subdoc; - - for (i = 0; i < doc.images.length; ++i) - { - if (doc.images[i].name && name == doc.images[i].name) - { - elmlist[elmlist.length] = doc.images[i]; - } - } - - for (i = 0; i < doc.forms.length; ++i) - { - for (j = 0; j < doc.forms[i].elements.length; j++) - { - if (doc.forms[i].elements[j].name && name == doc.forms[i].elements[j].name) - { - elmlist[elmlist.length] = doc.forms[i].elements[j]; - } - } - - if (doc.forms[i].name && name == doc.forms[i].name) - { - elmlist[elmlist.length] = doc.forms[i]; - } - } - - for (i = 0; i < doc.anchors.length; ++i) - { - if (doc.anchors[i].name && name == doc.anchors[i].name) - { - elmlist[elmlist.length] = doc.anchors[i]; - } - } - - for (i = 0; i < doc.links.length; ++i) - { - if (doc.links[i].name && name == doc.links[i].name) - { - elmlist[elmlist.length] = doc.links[i]; - } - } - - for (i = 0; i < doc.applets.length; ++i) - { - if (doc.applets[i].name && name == doc.applets[i].name) - { - elmlist[elmlist.length] = doc.applets[i]; - } - } - - for (i = 0; i < doc.embeds.length; ++i) - { - if (doc.embeds[i].name && name == doc.embeds[i].name) - { - elmlist[elmlist.length] = doc.embeds[i]; - } - } - - for (i = 0; i < doc.layers.length; ++i) - { - if (doc.layers[i].name && name == doc.layers[i].name) - { - elmlist[elmlist.length] = doc.layers[i]; - } - - subdoc = doc.layers[i].document; - nav4FindElementsByName(subdoc, name, elmlist); - } - } - - xbGetElementById = function (id, windowRef) - { - if (!windowRef) - windowRef = window; - - return nav4FindLayer(windowRef.document, id); - }; - - xbGetElementsByName = function (name, windowRef) - { - if (!windowRef) - windowRef = window; - - var elmlist = new Array(); - - nav4FindElementsByName(windowRef.document, name, elmlist); - - return elmlist; - }; - -} -else if (document.all) -{ - xbGetElementById = - function (id, windowRef) - { - if (!windowRef) - { - windowRef = window; - } - var elm = windowRef.document.all[id]; - if (!elm) - { - elm = null; - } - return elm; - }; - - xbGetElementsByName = function (name, windowRef) - { - if (!windowRef) - windowRef = window; - - var i; - var idnamelist = windowRef.document.all[name]; - var elmlist = new Array(); - - if (!idnamelist.length || idnamelist.name == name) - { - if (idnamelist) - elmlist[elmlist.length] = idnamelist; - } - else - { - for (i = 0; i < idnamelist.length; i++) - { - if (idnamelist[i].name == name) - elmlist[elmlist.length] = idnamelist[i]; - } - } - - return elmlist; - } - -} -else if (document.getElementById) -{ - xbGetElementById = - function (id, windowRef) - { - if (!windowRef) - { - windowRef = window; - } - return windowRef.document.getElementById(id); - }; - - xbGetElementsByName = - function (name, windowRef) - { - if (!windowRef) - { - windowRef = window; - } - return windowRef.document.getElementsByName(name); - }; -} -else -{ - xbGetElementById = - function (id, windowRef) - { - return null; - }; - - xbGetElementsByName = - function (name, windowRef) - { - return new Array(); - }; -} - -function xbGetPageScrollX(windowRef) -{ - if (!windowRef) - { - windowRef = window; - } - - if (typeof(windowRef.pageXOffset) == 'number') - { - return windowRef.pageXOffset; - } - - if (typeof(windowRef.document.body && windowRef.document.body.scrollLeft) == 'number') - { - return windowRef.document.body.scrollLeft; - } - - return 0; -} - -function xbGetPageScrollY(windowRef) -{ - if (!windowRef) - { - windowRef = window; - } - - if (typeof(windowRef.pageYOffset) == 'number') - { - return windowRef.pageYOffset; - } - - if (typeof(windowRef.document.body && windowRef.document.body.scrollTop) == 'number') - { - return windowRef.document.body.scrollTop; - } - - return 0; -} - -if (document.layers) -{ - xbSetInnerHTML = - function (element, str) - { - element.document.write(str); - element.document.close(); - }; -} -else -{ - xbSetInnerHTML = function (element, str) - { - if (typeof(element.innerHTML) != 'undefined') - { - element.innerHTML = str; - } - }; -} - -// eof: xbDOM.js diff --git a/docbook-xsl-1.75.2/slides/browser/xbDebug.js b/docbook-xsl-1.75.2/slides/browser/xbDebug.js deleted file mode 100644 index 48fd010..0000000 --- a/docbook-xsl-1.75.2/slides/browser/xbDebug.js +++ /dev/null @@ -1,311 +0,0 @@ -/* - * xbDebug.js - * $Revision: 1.2 $ $Date: 2003/02/07 16:04:19 $ - */ - -/* ***** BEGIN LICENSE BLOCK ***** - * Version: MPL 1.1/GPL 2.0/LGPL 2.1 - * - * The contents of this file are subject to the Mozilla Public License Version - * 1.1 (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * http://www.mozilla.org/MPL/ - * - * Software distributed under the License is distributed on an "AS IS" basis, - * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License - * for the specific language governing rights and limitations under the - * License. - * - * The Original Code is Netscape code. - * - * The Initial Developer of the Original Code is - * Netscape Corporation. - * Portions created by the Initial Developer are Copyright (C) 2001 - * the Initial Developer. All Rights Reserved. - * - * Contributor(s): Bob Clary - * - * ***** END LICENSE BLOCK ***** */ - -/* -ChangeLog: - -2002-02-25: bclary - modified xbDebugTraceOject to make sure - that original versions of wrapped functions were not - rewrapped. This had caused an infinite loop in IE. - -2002-02-07: bclary - modified xbDebug.prototype.close to not null - the debug window reference. This can cause problems with - Internet Explorer if the page is refreshed. These issues will - be addressed at a later date. -*/ - -function xbDebug() -{ - this.on = false; - this.stack = new Array(); - this.debugwindow = null; - this.execprofile = new Object(); -} - -xbDebug.prototype.push = function () -{ - this.stack[this.stack.length] = this.on; - this.on = true; -} - -xbDebug.prototype.pop = function () -{ - this.on = this.stack[this.stack.length - 1]; - --this.stack.length; -} - -xbDebug.prototype.open = function () -{ - if (this.debugwindow && !this.debugwindow.closed) - this.close(); - - this.debugwindow = window.open('about:blank', 'DEBUGWINDOW', 'height=400,width=600,resizable=yes,scrollbars=yes'); - this.debugwindow.moveTo(0,0); - window.focus(); - - this.debugwindow.document.write('xbDebug Window

    Javascript Debug Window

    '); -} - -xbDebug.prototype.close = function () -{ - if (!this.debugwindow) - return; - - if (!this.debugwindow.closed) - this.debugwindow.close(); - - // bc 2002-02-07, other windows may still hold a reference to this: this.debugwindow = null; -} - -xbDebug.prototype.dump = function (msg) -{ - if (!this.on) - return; - - if (!this.debugwindow || this.debugwindow.closed) - this.open(); - - this.debugwindow.document.write(msg + '
    '); - - return; -} - -var xbDEBUG = new xbDebug(); - -window.onunload = function () { xbDEBUG.close(); } - -function xbDebugGetFunctionName(funcref) -{ - - if (!funcref) - { - return ''; - } - - if (funcref.name) - return funcref.name; - - var name = funcref + ''; - name = name.substring(name.indexOf(' ') + 1, name.indexOf('(')); - funcref.name = name; - - if (!name) alert('name not defined'); - return name; -} - - -// emulate functionref.apply for IE mac and IE win < 5.5 -function xbDebugApplyFunction(funcname, funcref, thisref, argumentsref) -{ - var rv; - - if (!funcref) - { - alert('xbDebugApplyFunction: funcref is null'); - } - - if (typeof(funcref.apply) != 'undefined') - return funcref.apply(thisref, argumentsref); - - var applyexpr = 'thisref.xbDebug_orig_' + funcname + '('; - var i; - - for (i = 0; i < argumentsref.length; i++) - { - applyexpr += 'argumentsref[' + i + '],'; - } - - if (argumentsref.length > 0) - { - applyexpr = applyexpr.substring(0, applyexpr.length - 1); - } - - applyexpr += ')'; - - return eval(applyexpr); -} - -function xbDebugCreateFunctionWrapper(scopename, funcname, precall, postcall) -{ - var wrappedfunc; - var scopeobject = eval(scopename); - var funcref = scopeobject[funcname]; - - scopeobject['xbDebug_orig_' + funcname] = funcref; - - wrappedfunc = function () - { - var rv; - - precall(scopename, funcname, arguments); - rv = xbDebugApplyFunction(funcname, funcref, scopeobject, arguments); - postcall(scopename, funcname, arguments, rv); - return rv; - }; - - if (typeof(funcref.constructor) != 'undefined') - wrappedfunc.constructor = funcref.constuctor; - - if (typeof(funcref.prototype) != 'undefined') - wrappedfunc.prototype = funcref.prototype; - - scopeobject[funcname] = wrappedfunc; -} - -function xbDebugCreateMethodWrapper(contextname, classname, methodname, precall, postcall) -{ - var context = eval(contextname); - var methodref = context[classname].prototype[methodname]; - - context[classname].prototype['xbDebug_orig_' + methodname] = methodref; - - var wrappedmethod = function () - { - var rv; - // eval 'this' at method run time to pick up reference to the object's instance - var thisref = eval('this'); - // eval 'arguments' at method run time to pick up method's arguments - var argsref = arguments; - - precall(contextname + '.' + classname, methodname, argsref); - rv = xbDebugApplyFunction(methodname, methodref, thisref, argsref); - postcall(contextname + '.' + classname, methodname, argsref, rv); - return rv; - }; - - return wrappedmethod; -} - -function xbDebugPersistToString(obj) -{ - var s = ''; - - if (obj == null) - return 'null'; - - switch(typeof(obj)) - { - case 'number': - return obj; - case 'string': - return '"' + obj + '"'; - case 'undefined': - return 'undefined'; - case 'boolean': - return obj + ''; - } - - if (obj.constructor) - return '[' + xbDebugGetFunctionName(obj.constructor) + ']'; - - return null; -} - -function xbDebugTraceBefore(scopename, funcname, funcarguments) -{ - var i; - var s = ''; - var execprofile = xbDEBUG.execprofile[scopename + '.' + funcname]; - if (!execprofile) - execprofile = xbDEBUG.execprofile[scopename + '.' + funcname] = { started: 0, time: 0, count: 0 }; - - for (i = 0; i < funcarguments.length; i++) - { - s += xbDebugPersistToString(funcarguments[i]); - if (i < funcarguments.length - 1) - s += ', '; - } - - xbDEBUG.dump('enter ' + scopename + '.' + funcname + '(' + s + ')'); - execprofile.started = (new Date()).getTime(); -} - -function xbDebugTraceAfter(scopename, funcname, funcarguments, rv) -{ - var i; - var s = ''; - var execprofile = xbDEBUG.execprofile[scopename + '.' + funcname]; - if (!execprofile) - xbDEBUG.dump('xbDebugTraceAfter: execprofile not created for ' + scopename + '.' + funcname); - else if (execprofile.started == 0) - xbDEBUG.dump('xbDebugTraceAfter: execprofile.started == 0 for ' + scopename + '.' + funcname); - else - { - execprofile.time += (new Date()).getTime() - execprofile.started; - execprofile.count++; - execprofile.started = 0; - } - - for (i = 0; i < funcarguments.length; i++) - { - s += xbDebugPersistToString(funcarguments[i]); - if (i < funcarguments.length - 1) - s += ', '; - } - - xbDEBUG.dump('exit ' + scopename + '.' + funcname + '(' + s + ')==' + xbDebugPersistToString(rv)); -} - -function xbDebugTraceFunction(scopename, funcname) -{ - xbDebugCreateFunctionWrapper(scopename, funcname, xbDebugTraceBefore, xbDebugTraceAfter); -} - -function xbDebugTraceObject(contextname, classname) -{ - var classref = eval(contextname + '.' + classname); - var p; - var sp; - - if (!classref || !classref.prototype) - return; - - for (p in classref.prototype) - { - sp = p + ''; - if (typeof(classref.prototype[sp]) == 'function' && (sp).indexOf('xbDebug_orig') == -1) - { - classref.prototype[sp] = xbDebugCreateMethodWrapper(contextname, classname, sp, xbDebugTraceBefore, xbDebugTraceAfter); - } - } -} - -function xbDebugDumpProfile() -{ - var p; - var execprofile; - var avg; - - for (p in xbDEBUG.execprofile) - { - execprofile = xbDEBUG.execprofile[p]; - avg = Math.round ( 100 * execprofile.time/execprofile.count) /100; - xbDEBUG.dump('Execution profile ' + p + ' called ' + execprofile.count + ' times. Total time=' + execprofile.time + 'ms. Avg Time=' + avg + 'ms.'); - } -} diff --git a/docbook-xsl-1.75.2/slides/browser/xbLibrary.js b/docbook-xsl-1.75.2/slides/browser/xbLibrary.js deleted file mode 100644 index 9bbfd6b..0000000 --- a/docbook-xsl-1.75.2/slides/browser/xbLibrary.js +++ /dev/null @@ -1,80 +0,0 @@ -/* - * xbLibrary.js - * $Revision: 1.3 $ $Date: 2003/03/17 03:44:20 $ - */ - -/* ***** BEGIN LICENSE BLOCK ***** - * Version: MPL 1.1/GPL 2.0/LGPL 2.1 - * - * The contents of this file are subject to the Mozilla Public License Version - * 1.1 (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * http://www.mozilla.org/MPL/ - * - * Software distributed under the License is distributed on an "AS IS" basis, - * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License - * for the specific language governing rights and limitations under the - * License. - * - * The Original Code is Bob Clary code. - * - * The Initial Developer of the Original Code is - * Bob Clary. - * Portions created by the Initial Developer are Copyright (C) 2000 - * the Initial Developer. All Rights Reserved. - * - * Contributor(s): Bob Clary - * - * ***** END LICENSE BLOCK ***** */ - -if (!document.getElementById || navigator.userAgent.indexOf('Opera') != -1) -{ - // assign error handler for downlevel browsers - // Note until Opera improves it's overall support - // for JavaScript and the DOM, it must be considered downlevel - - window.onerror = defaultOnError; - - function defaultOnError(msg, url, line) - { - // handle bug in NS6.1, N6.2 - // where an Event is passed to error handlers - if (typeof(msg) != 'string') - { - msg = 'unknown error'; - } - if (typeof(url) != 'string') - { - url = document.location; - } - - alert('An error has occurred at ' + url + ', line ' + line + ': ' + msg); - } -} - -function xbLibrary(path) -{ - if (path.charAt(path.length-1) == '/') - { - path = path.substr(0, path.length-1) - } - this.path = path; -} - -// dynamically loaded scripts -// -// it is an error to reference anything from the dynamically loaded file inside the -// same script block. This means that a file can not check its dependencies and -// load the files for it's own use. someone else must do this. - -xbLibrary.prototype.loadScript = -function (scriptName) -{ - document.write(' - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - overlaySetup('ll'); - - - - - - init( - - ); - - overlaySetup('ll'); - - - - - - -
    - -
    -
    - -
    - - - - -
    - logo -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - <xsl:value-of select="title"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - javascript:body.focus() - - - - - - - - - <body class="frameset"> - <xsl:call-template name="body.attributes"/> - <p> - <xsl:text>Your browser doesn't support frames.</xsl:text> - </p> - </body> - - - - - - - - - - - - - - - - - - Navigation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Body - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Navigation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - newPage(' - - ', - - ); - - - - - overlaySetup('lc'); - - - - - - - this.focus() - - - navigate(event) - - - -
    - -
    - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - <xsl:value-of select="title"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - foilgroup - - - - - - - javascript:body.focus() - - - - - - <body class="frameset"> - <xsl:call-template name="body.attributes"/> - <p> - <xsl:text>Your browser doesn't support frames.</xsl:text> - </p> - </body> - - - - - - - foilgroup - - - - - - - - - - - - - - - - Navigation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - foilgroup - - - - - - - - - - - Body - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - foilgroup - - - - - - - - - - - - - - - - Navigation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - newPage(' - - ', - - ); - - - - - overlaySetup('lc'); - - - - - - - - navigate(event) - - - -
    - - - - - - - - - -
    - - - - - - -
    - - -
    - - - position:absolute;visibility:visible; - - - - - - - - -
    -
    -
    - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - <xsl:value-of select="title"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - javascript:body.focus() - - - - - - - - - <body class="frameset"> - <xsl:call-template name="body.attributes"/> - <p> - <xsl:text>Your browser doesn't support frames.</xsl:text> - </p> - </body> - - - - - - - - - - - - - - - - - - - - - Navigation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Body - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Navigation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - newPage(' - - ', - - ); - - - - - overlaySetup('lc'); - - - - - - - navigate(event) - - - -
    - - - - - - - - - -
    - -
    - - -
    - - - position:absolute;visibility:visible; - - - - - - - - -
    -
    -
    - - - -
    - - - - - - - -
    - - - - - - - foilgroup - - - - -
    - - - - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    - - - - - - - - - - - - - - - - -
    -
    - - - - - - - - - myList.addItem(' - - <div id=" - - " class="toc-slidesinfo"> - - <a href=" - - " target="foil"> - - - - - - - - - - - - - ' - \' - - - <\/a><\/div> - '); - - - - - - - - subList = new List(false, width, height, " - -"); - subList.setIndent(12); - - - myList.addList(subList, ' - - <div id=" - - " class="toc-foilgroup"> - - <a href=" - - " target="foil"> - - - - - - - - - - - - - ' - \' - - - <\/a><\/div> - '); - - - - - - - - subList.addItem(' - - - myList.addItem(' - - - - <div id=" - - " class="toc-foil"> - - <img alt="-" src=" - - "><\/img> - - <a href=" - - " target="foil"> - - - - - - - - - - - - - ' - \' - - - <\/a><\/div> - '); - - - - - - - - - diff --git a/docbook-xsl-1.75.2/slides/html/graphics.xsl b/docbook-xsl-1.75.2/slides/html/graphics.xsl deleted file mode 100644 index b682acd..0000000 --- a/docbook-xsl-1.75.2/slides/html/graphics.xsl +++ /dev/null @@ -1,151 +0,0 @@ - - - - - - - - - - - - - - - - - - - / - - - - / - - - http://docbook.sourceforge.net/release/slides/graphics/ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/slides/html/jscript.xsl b/docbook-xsl-1.75.2/slides/html/jscript.xsl deleted file mode 100644 index ae4ef9f..0000000 --- a/docbook-xsl-1.75.2/slides/html/jscript.xsl +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - - - - - - - - - - - - / - - - - / - - - http://docbook.sourceforge.net/release/slides/browser/ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/slides/html/param.xml b/docbook-xsl-1.75.2/slides/html/param.xml deleted file mode 100644 index 84cf196..0000000 --- a/docbook-xsl-1.75.2/slides/html/param.xml +++ /dev/null @@ -1,1376 +0,0 @@ - - - -Slides HTML Parameter Reference - -$Id: param.xweb 6633 2007-02-21 18:33:33Z xmldoc $ - - - - Walsh - Norman - - - - 2002 - Norman Walsh - - - This is reference documentation for all user-configurable - parameters in the DocBook XSL Slides HTML stylesheet (for - generating HTML slide presentations). Note that the Slides - stylesheet for HTML output is a customization layer of the - DocBook XSL HTML stylesheet. Therefore, in addition to the - slides-specific parameters listed in this section, you can - also use a number of HTML - stylesheet parameters to control Slides HTML - output. - - - -HTML: General Parameters - - -keyboard.nav -boolean - - -keyboard.nav -Enable keyboard navigation? - - - - -<xsl:param name="keyboard.nav" select="1"></xsl:param> - - - -Description - -If non-zero, JavaScript is added to the slides to enable keyboard -navigation. Pressing 'n', space, or return moves forward; pressing 'p' moves -backward. - - - - - - -css.stylesheet -uri - - -css.stylesheet -CSS stylesheet for slides - - - - -<xsl:param name="css.stylesheet">slides.css</xsl:param> - - - -Description - -Identifies the CSS stylesheet used by all the slides. This parameter -can be set in the source document with the <?dbhtml?> pseudo-attribute -css-stylesheet. - - - - - - -css.stylesheet.dir -uri - - -css.stylesheet.dir -Default directory for CSS stylesheets - - - - -<xsl:param name="css.stylesheet.dir"></xsl:param> - - - -Description - -Identifies the default directory for the CSS stylesheet -generated on all the slides. This parameter can be set in the source -document with the <?dbhtml?> pseudo-attribute -css-stylesheet-dir. - -If non-empty, this value is prepended to each of the stylesheets. - - - - - - - -titlefoil.html -filename - - -titlefoil.html -Name of title foil HTML file - - - - -<xsl:param name="titlefoil.html" select="concat('index', $html.ext)"></xsl:param> - - - -Description - -Sets the filename used for the slides titlepage. - - - - - - -toc.html -filename - - -toc.html -Name of ToC HTML file - - - - -<xsl:param name="toc.html" select="concat('toc', $html.ext)"></xsl:param> - - - -Description - -Sets the filename used for the table of contents page. - - - - - - -foilgroup.toc -boolean - - -foilgroup.toc -Put ToC on foilgroup pages? - - - - -<xsl:param name="foilgroup.toc" select="1"></xsl:param> - - - -Description - -If non-zero, a ToC will be placed on foilgroup pages (after any -other content). - - - - - - - -output.indent -list -no -yes - - -output.indent -Indent output? - - - - -<xsl:param name="output.indent">no</xsl:param> - - - -Description - -Specifies the setting of the indent -parameter on the HTML slides. For more information, see the discussion -of the xsl:output element in the XSLT specification. -Select from yes or no. - - - - - - -overlay -boolean - - -overlay -Overlay footer navigation? - - - - -<xsl:param name="overlay" select="0"></xsl:param> - - - -Description - -If non-zero, JavaScript is added to the slides to make the -bottom navigation appear at the bottom of each page. This option and -multiframe are mutually exclusive. - -If this parameter is zero, the bottom navigation simply appears -below the content of each slide. - - - - - - -show.foil.number -boolean - - -show.foil.number -Show foil number on each foil? - - - - -<xsl:param name="show.foil.number" select="0"></xsl:param> - - - -Description - -If non-zero, on each slide there will be its number. Currently -not supported in all output formats. - - - - - - -HTML: Frames Parameters - - -nav.separator -boolean - - -nav.separator -Output separator between navigation and body? - - - - -<xsl:param name="nav.separator" select="1"></xsl:param> - - - -Description - -If non-zero, a separator (<HR>) is -added between the navigation links and the content of each slide. - - - - - - -toc.row.height -length - - -toc.row.height -Height of ToC rows in dynamic ToCs - - - - -<xsl:param name="toc.row.height">22</xsl:param> - - - -Description - -This parameter specifies the height of each row in the table of -contents. This is only applicable if a dynamic ToC is used. You may want to -adjust this parameter for optimal appearance with the font and image -sizes selected by your CSS -stylesheet. - - - - - - - -toc.bg.color -color - - -toc.bg.color -Background color for ToC frame - - - - -<xsl:param name="toc.bg.color">#FFFFFF</xsl:param> - - - -Description - -Specifies the background color used in the ToC frame. - - - - - - -body.bg.color -color - - -body.bg.color -Background color for body frame - - - - -<xsl:param name="body.bg.color">#FFFFFF</xsl:param> - - - -Description - -Specifies the background color used in the body column of -tabular slides. - - - - - - -toc.width -length - - -toc.width -Width of ToC frame - - - - -<xsl:param name="toc.width">250</xsl:param> -<!-- Presumably in pixels? --> - - - -Description - -Specifies the width of the ToC frame in pixels. - - - - - - -toc.hide.show -boolean - - -toc.hide.show -Enable hide/show button for ToC frame - - - - -<xsl:param name="toc.hide.show" select="0"></xsl:param> - - - -Description - -If non-zero, JavaScript (and an additional icon, see -hidetoc.image and -showtoc.image) is added to each slide -to allow the ToC panel to be toggled on each panel. - -There is a bug in Mozilla 1.0 (at least as of CR3) that causes -the browser to reload the titlepage when this feature is used. - - - - - - -dynamic.toc -boolean - - -dynamic.toc -Dynamic ToCs? - - - - -<xsl:param name="dynamic.toc" select="0"></xsl:param> - - - -Description - -If non-zero, JavaScript is used to make the ToC panel dynamic. -In a dynamic ToC, each section in the ToC can be expanded and collapsed by -clicking on the appropriate image. - - - - - - -active.toc -boolean - - -active.toc -Active ToCs? - - - - -<xsl:param name="active.toc" select="0"></xsl:param> - - - -Description - -If non-zero, JavaScript is used to keep the ToC and the current slide -in sync. That is, each time the slide changes, the corresponding -ToC entry will be underlined. - - - - - - -overlay.logo -uri - - -overlay.logo -Logo to overlay on ToC frame - - - - -<xsl:param name="overlay.logo">http://docbook.sourceforge.net/release/buttons/slides-1.png</xsl:param> - - - -Description - -If this URI is non-empty, JavaScript is used to overlay the -specified image on the ToC frame. - - - - - - -multiframe -boolean - - -multiframe -Use multiple frames for slide bodies? - - - - -<xsl:param name="multiframe" select="0"></xsl:param> - - - -Description - -If non-zero, multiple frames are used for the body of each -slide. This is one way of forcing the slide navigation elements to -appear in constant locations. The other way is with overlays. The overlay and -multiframe parameters are mutually -exclusive. - - - - - - -multiframe.top.bgcolor -color - - -multiframe.top.bgcolor -Background color for top navigation frame - - - - -<xsl:param name="multiframe.top.bgcolor">white</xsl:param> - - - -Description - -Specifies the background color of the top navigation frame when -multiframe is enabled. - - - - - - -multiframe.bottom.bgcolor -color - - -multiframe.bottom.bgcolor -Background color for bottom navigation frame - - - - -<xsl:param name="multiframe.bottom.bgcolor">white</xsl:param> - - - -Description - -Specifies the background color of the bottom navigation frame when -multiframe is enabled. - - - - - - -multiframe.navigation.height -length - - -multiframe.navigation.height -Height of navigation frames - - - - -<xsl:param name="multiframe.navigation.height">40</xsl:param> - - - -Description - -Specifies the height of the navigation frames in pixels when -multiframe is enabled. - - - - - - -HTML: Graphics Parameters - - -graphics.dir -uri - - -graphics.dir -Graphics directory - - - - -<xsl:param name="graphics.dir"></xsl:param> - - - -Description - -Identifies the graphics directory for the navigation components -generated on all the slides. This parameter can be set in the source -document with the <?dbhtml?> pseudo-attribute -graphics-dir. - -If non-empty, this value is prepended to each of the graphic -image paths. - - - - - - -bullet.image -filename - - -bullet.image -Bullet image - - - - -<xsl:param name="bullet.image">toc/bullet.png</xsl:param> - - - -Description - -Specifies the filename of the bullet image used for foils in the -framed ToC. - - - - - - -next.image -filename - - -next.image -Right-arrow image - - - - -<xsl:param name="next.image">active/nav-next.png</xsl:param> - - - -Description - -Specifies the filename of the right-pointing navigation arrow. - - - - - - -prev.image -filename - - -prev.image -Left-arrow image - - - - -<xsl:param name="prev.image">active/nav-prev.png</xsl:param> - - - -Description - -Specifies the filename of the left-pointing navigation arrow. - - - - - - -up.image -filename - - -up.image -Up-arrow image - - - - -<xsl:param name="up.image">active/nav-up.png</xsl:param> - - - -Description - -Specifies the filename of the upward-pointing navigation arrow. - - - - - - -home.image -filename - - -home.image -Home image - - - - -<xsl:param name="home.image">active/nav-home.png</xsl:param> - - - -Description - -Specifies the filename of the home navigation icon. - - - - - - -toc.image -filename - - -toc.image -ToC image - - - - -<xsl:param name="toc.image">active/nav-toc.png</xsl:param> - - - -Description - -Specifies the filename of the ToC navigation icon. - - - - - - - -no.next.image -filename - - -no.next.image -Inactive right-arrow image - - - - -<xsl:param name="no.next.image">inactive/nav-next.png</xsl:param> - - - -Description - -Specifies the filename of the inactive right-pointing navigation arrow. - - - - - - -no.prev.image -filename - - -no.prev.image -Inactive left-arrow image - - - - -<xsl:param name="no.prev.image">inactive/nav-prev.png</xsl:param> - - - -Description - -Specifies the filename of the inactive left-pointing navigation arrow. - - - - - - -no.up.image -filename - - -no.up.image -Inactive up-arrow image - - - - -<xsl:param name="no.up.image">inactive/nav-up.png</xsl:param> - - - -Description - -Specifies the filename of the inactive upward-pointing navigation arrow. - - - - - - -no.home.image -filename - - -no.home.image -Inactive home image - - - - -<xsl:param name="no.home.image">inactive/nav-home.png</xsl:param> - - - -Description - -Specifies the filename of the inactive home navigation icon. - - - - - - -no.toc.image -filename - - -no.toc.image -Inactive ToC image - - - - -<xsl:param name="no.toc.image">inactive/nav-toc.png</xsl:param> - - - -Description - -Specifies the filename of the inactive ToC navigation icon. - - - - - - - -plus.image -filename - - -plus.image -Plus image - - - - -<xsl:param name="plus.image">toc/closed.png</xsl:param> - - - -Description - -Specifies the filename of the plus image; the image used in a -dynamic ToC to indicate that a section -can be expanded. - - - - - - -minus.image -filename - - -minus.image -Minus image - - - - -<xsl:param name="minus.image">toc/open.png</xsl:param> - - - -Description - -Specifies the filename of the minus image; the image used in a -dynamic ToC to indicate that a section -can be collapsed. - - - - - - -hidetoc.image -filename - - -hidetoc.image -Hide ToC image - - - - -<xsl:param name="hidetoc.image">hidetoc.gif</xsl:param> - - - -Description - -Specifies the filename of the hide ToC image. This is used -when the ToC hide/show parameter is -enabled. - - - - - - -showtoc.image -filename - - -showtoc.image -Show ToC image - - - - -<xsl:param name="showtoc.image">showtoc.gif</xsl:param> - - - -Description - -Specifies the filename of the show ToC image. This is used -when the ToC hide/show parameter is -enabled. - - - - - - -HTML: JavaScript Parameters - - -script.dir -uri - - -script.dir -Script directory - - - - -<xsl:param name="script.dir"></xsl:param> - - - -Description - -Identifies the JavaScript source directory for the slides. -This parameter can be set in the source -document with the <?dbhtml?> pseudo-attribute -script-dir. - -If non-empty, this value is prepended to each of the JavaScript files. - - - - - - - -ua.js -filename - - -ua.js -UA JavaScript file - - - - -<xsl:param name="ua.js">ua.js</xsl:param> - - - -Description - -Specifies the filename of the UA JavaScript file. It's unlikely -that you will ever need to change this parameter. - - - - - - -xbDOM.js -filename - - -xbDOM.js -xbDOM JavaScript file - - - - -<xsl:param name="xbDOM.js">xbDOM.js</xsl:param> - - - -Description - -Specifies the filename of the xbDOM JavaScript file. It's unlikely -that you will ever need to change this parameter. - - - - - - -xbStyle.js -filename - - -xbStyle.js -xbStyle JavaScript file - - - - -<xsl:param name="xbStyle.js">xbStyle.js</xsl:param> - - - -Description - -Specifies the filename of the xbStyle JavaScript file. It's unlikely -that you will ever need to change this parameter. - - - - - - -xbLibrary.js -filename - - -xbLibrary.js -xbLibrary JavaScript file - - - - -<xsl:param name="xbLibrary.js">xbLibrary.js</xsl:param> - - - -Description - -Specifies the filename of the xbLibrary JavaScript file. It's unlikely -that you will ever need to change this parameter. - - - - - - -xbCollapsibleLists.js -filename - - -xbCollapsibleLists.js -xbCollapsibleLists JavaScript file - - - - -<xsl:param name="xbCollapsibleLists.js">xbCollapsibleLists.js</xsl:param> - - - -Description - -Specifies the filename of the xbCollapsibleLists JavaScript file. It's unlikely -that you will ever need to change this parameter. - - - - - - -overlay.js -filename - - -overlay.js -Overlay JavaScript file - - - - -<xsl:param name="overlay.js">overlay.js</xsl:param> - - - -Description - -Specifies the filename of the overlay JavaScript file. It's unlikely -that you will ever need to change this parameter. - - - - - - -slides.js -filename - - -slides.js -Slides overlay file - - - - -<xsl:param name="slides.js">slides.js</xsl:param> - - - -Description - -Specifies the filename of the slides JavaScript file. It's unlikely -that you will ever need to change this parameter. - - - - - - -HTML: Localization Parameters - - -text.home -string - - -text.home -Home - - - - -<xsl:param name="text.home">Home</xsl:param> - - - -Description - -FIXME: - - - - - - -text.toc -string - - -text.toc -FIXME: - - - - -<xsl:param name="text.toc">ToC</xsl:param> - - - -Description - -FIXME: - - - - - - -text.prev -string - - -text.prev -FIXME: - - - - -<xsl:param name="text.prev">Prev</xsl:param> - - - -Description - -FIXME: - - - - - - -text.up -string - - -text.up -FIXME: - - - - -<xsl:param name="text.up">Up</xsl:param> - - - -Description - -FIXME: - - - - - - -text.next -string - - -text.next -FIXME: - - - - -<xsl:param name="text.next">Next</xsl:param> - - - -Description - -FIXME: - - - - - - - -The Stylesheet - -The param.xsl stylesheet is just a wrapper -around all these parameters. - - - -<!-- This file is generated from param.xweb --> - -<xsl:stylesheet exclude-result-prefixes="src" version="1.0"> - -<!-- ******************************************************************** - $Id: param.xweb 6633 2007-02-21 18:33:33Z xmldoc $ - ******************************************************************** - - This file is part of the DocBook Slides Stylesheet distribution. - See ../README or http://docbook.sf.net/release/xsl/current/ for - copyright and other information. - - ******************************************************************** --> - -<src:fragref linkend="active.toc.frag"></src:fragref> -<src:fragref linkend="body.bg.color.frag"></src:fragref> -<src:fragref linkend="bullet.image.frag"></src:fragref> -<src:fragref linkend="css.stylesheet.frag"></src:fragref> -<src:fragref linkend="css.stylesheet.dir.frag"></src:fragref> -<src:fragref linkend="dynamic.toc.frag"></src:fragref> -<src:fragref linkend="foilgroup.toc.frag"></src:fragref> -<src:fragref linkend="graphics.dir.frag"></src:fragref> -<src:fragref linkend="hidetoc.image.frag"></src:fragref> -<src:fragref linkend="home.image.frag"></src:fragref> -<src:fragref linkend="keyboard.nav.frag"></src:fragref> -<src:fragref linkend="minus.image.frag"></src:fragref> -<src:fragref linkend="multiframe.bottom.bgcolor.frag"></src:fragref> -<src:fragref linkend="multiframe.frag"></src:fragref> -<src:fragref linkend="multiframe.navigation.height.frag"></src:fragref> -<src:fragref linkend="multiframe.top.bgcolor.frag"></src:fragref> -<src:fragref linkend="nav.separator.frag"></src:fragref> -<src:fragref linkend="next.image.frag"></src:fragref> -<src:fragref linkend="no.home.image.frag"></src:fragref> -<src:fragref linkend="no.next.image.frag"></src:fragref> -<src:fragref linkend="no.prev.image.frag"></src:fragref> -<src:fragref linkend="no.toc.image.frag"></src:fragref> -<src:fragref linkend="no.up.image.frag"></src:fragref> -<src:fragref linkend="output.indent.frag"></src:fragref> -<src:fragref linkend="overlay.frag"></src:fragref> -<src:fragref linkend="overlay.js.frag"></src:fragref> -<src:fragref linkend="overlay.logo.frag"></src:fragref> -<src:fragref linkend="plus.image.frag"></src:fragref> -<src:fragref linkend="prev.image.frag"></src:fragref> -<src:fragref linkend="script.dir.frag"></src:fragref> -<src:fragref linkend="show.foil.number.frag"></src:fragref> -<src:fragref linkend="showtoc.image.frag"></src:fragref> -<src:fragref linkend="slides.js.frag"></src:fragref> -<src:fragref linkend="text.home.frag"></src:fragref> -<src:fragref linkend="text.next.frag"></src:fragref> -<src:fragref linkend="text.prev.frag"></src:fragref> -<src:fragref linkend="text.toc.frag"></src:fragref> -<src:fragref linkend="text.up.frag"></src:fragref> -<src:fragref linkend="titlefoil.html.frag"></src:fragref> -<src:fragref linkend="toc.bg.color.frag"></src:fragref> -<src:fragref linkend="toc.hide.show.frag"></src:fragref> -<src:fragref linkend="toc.html.frag"></src:fragref> -<src:fragref linkend="toc.image.frag"></src:fragref> -<src:fragref linkend="toc.row.height.frag"></src:fragref> -<src:fragref linkend="toc.width.frag"></src:fragref> -<src:fragref linkend="ua.js.frag"></src:fragref> -<src:fragref linkend="up.image.frag"></src:fragref> -<src:fragref linkend="xbCollapsibleLists.js.frag"></src:fragref> -<src:fragref linkend="xbDOM.js.frag"></src:fragref> -<src:fragref linkend="xbStyle.js.frag"></src:fragref> -<src:fragref linkend="xbLibrary.js.frag"></src:fragref> - -</xsl:stylesheet> - - - - diff --git a/docbook-xsl-1.75.2/slides/html/param.xsl b/docbook-xsl-1.75.2/slides/html/param.xsl deleted file mode 100644 index 7dad0bc..0000000 --- a/docbook-xsl-1.75.2/slides/html/param.xsl +++ /dev/null @@ -1,68 +0,0 @@ - - - - - - - -#FFFFFF -toc/bullet.png -slides.css - - - - -hidetoc.gif -active/nav-home.png - -toc/open.png -white - -40 -white - -active/nav-next.png -inactive/nav-home.png -inactive/nav-next.png -inactive/nav-prev.png -inactive/nav-toc.png -inactive/nav-up.png -no - -overlay.js -http://docbook.sourceforge.net/release/buttons/slides-1.png -toc/closed.png -active/nav-prev.png - - -showtoc.gif -slides.js -Home -Next -Prev -ToC -Up - -#FFFFFF - - -active/nav-toc.png -22 -250 - -ua.js -active/nav-up.png -xbCollapsibleLists.js -xbDOM.js -xbStyle.js -xbLibrary.js - - diff --git a/docbook-xsl-1.75.2/slides/html/plain.xsl b/docbook-xsl-1.75.2/slides/html/plain.xsl deleted file mode 100644 index 47224da..0000000 --- a/docbook-xsl-1.75.2/slides/html/plain.xsl +++ /dev/null @@ -1,472 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/slides/html/slides-common.xsl b/docbook-xsl-1.75.2/slides/html/slides-common.xsl deleted file mode 100644 index 9854164..0000000 --- a/docbook-xsl-1.75.2/slides/html/slides-common.xsl +++ /dev/null @@ -1,1541 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - <xsl:value-of select="title"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - titlepage - - - - - - - - - - - overlaySetup('lc') - - - - - navigate(event) - - - -
    - - - - - -
    - -
    - -
    - - - - - -
    -
    - - -
    -
    -
    - - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    -
    - - - - - - -

    -
    - - -

    -
    - - -

    -
    - - - - - - - - - - - - - - - : - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - <xsl:value-of select="slidesinfo/title"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - overlaySetup('lc') - - - - - navigate(event) - - - -
    - - - - - - - -
    - -
    - -
    - - - - - - - -
    -
    - - -
    -
    -
    - - -

    - - - -

    - -

    - - - TableofContents - - -

    -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - . - - - - - - -
    - -
    -
    - -
    -
    -
    -
    - - -
    - - . - - - - - - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - <xsl:value-of select="title"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - overlaySetup('lc') - - - - - navigate(event) - - - -
    - - - - - - - -
    - - - - - - -
    - -
    - - - - - - - -
    -
    - - - - -
    -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - <xsl:value-of select="title"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - overlaySetup('lc') - - - - - navigate(event) - - - -
    - - - - - - - - - -
    - - - - - - -
    - -
    - - - - - - - -
    -
    - - - - -
    -
    - - -
    - - -

    -
    - - - - - - - - - - - -
    - -
    -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - position: absolute; visibility: visible; - - - - padding-top: 2in; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - foil - - - - - - foilgroup - - - - - - - - - - - - </span> - - - <span - - class="green" - class="blue" - class="orange" - class="red" - class="brown" - class="violet" - class="black" - class="bold" - - > - - - - - - - - -
    - -
    -
    -
    - - - - - - - - - copyright - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ( - - ) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    - -

    -
    - - -
    - - -
    -
    - - - - - - - - - - - - - - - - 1 - 1 - 1 - 0 - - - - - 0 - - - - - - - - - - - - - - - - - - - - - - - - - - - - / - - - - - - - - - - - foil - - - - - - - - - - - foilgroup - - - - - - chunk-filename-error- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - / - - - -   - - - - -
    diff --git a/docbook-xsl-1.75.2/slides/html/tables.xsl b/docbook-xsl-1.75.2/slides/html/tables.xsl deleted file mode 100644 index 0462528..0000000 --- a/docbook-xsl-1.75.2/slides/html/tables.xsl +++ /dev/null @@ -1,336 +0,0 @@ - - - - - - - - -#6A719C -220 - - - - - - - - - - - - -
    - - - - - -
    - -
    -
      - - - - - -
    - -
    - - -
    - -
    -
    -
    -
    - - - - - - - - -
    - - - - - -
    - -
    -
      - - - - - -
    - -
    -
    -
    - - - - - - - - - - - - + - - - - - - - - -  - - - - - - - - - - - - - - - - - -
    - - - -  - - - - - - -  - - - - - - - - - - - - - - - -
    -
    -
    -
    - -  - - - - - - - - - - - - - - -
    -
    -
    -
    -
    - - - - - - - -  - - - - - - - - - - - - - - -
    - - - -  - - - - - - - - - - + - - - - - - - - -  - - - - - - - - - - - - - - - - - -
    -
    -
    -
    - - - - - - + - - - - - - - - -  - - - - - - - - - - - -
    -
    -
    -
    -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -   - - - - - - - - - - - - -
    diff --git a/docbook-xsl-1.75.2/slides/html/vslides.xsl b/docbook-xsl-1.75.2/slides/html/vslides.xsl deleted file mode 100644 index f490099..0000000 --- a/docbook-xsl-1.75.2/slides/html/vslides.xsl +++ /dev/null @@ -1,667 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - <xsl:value-of select="slidesinfo/title"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - navigate(event) - - - - - - - - - - - - - - - - - - -
     
    - - - - - - - - - - - - - - - - - - -
    - -
    - -
    - -
    -
     
    - - -
    -
    - - -
    - - - - - - - - - <xsl:value-of select="title"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - navigate(event) - - - - - - - - - - - - - - - - - - -
     
    - - - - - - - - - - - - - - - - - - -
    - -
    -
     
    - - -
    -
    -
    - - - - - - - - - - - - - - - - - - - - - <xsl:value-of select="title"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - navigate(event) - - - - - - - - - - - - - - - - - - -
     
    - - - - - - - - - - - - - - - - - - - -
    - -
    -
     
    - - -
    -
    - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - <xsl:value-of select="title"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - navigate(event) - - - - - - - - - - - - - - - - - - -
     
    - - - - - - - - - - - - - - - - - - - -
    - -
    -
     
    - - -
    -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - - - - - First - - - - - - - - - - First - - - - - - - - -
    - - - - - - - Previous - - - - - - - - - - Previous - - - - - - - - -
    - - - - - - - Last - - - - - - - - - - Last - - - - - - - - -
    - - - - - - - Next - - - - - - - - - - Next - - - - - - - - - -
    -
    - - - - - ToC - - - - - - - - - - ToC - - - - - - - - -
    -
    - -
    diff --git a/docbook-xsl-1.75.2/slides/html/w3c.xsl b/docbook-xsl-1.75.2/slides/html/w3c.xsl deleted file mode 100644 index 5a5b420..0000000 --- a/docbook-xsl-1.75.2/slides/html/w3c.xsl +++ /dev/null @@ -1,376 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - {$logo.title} - - - - - - - - - - position: absolute; visibility: visible; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - -
    -
    -
    - - - - - - - - - - - - - - - - - - -
    diff --git a/docbook-xsl-1.75.2/slides/htmlhelp/htmlhelp.xsl b/docbook-xsl-1.75.2/slides/htmlhelp/htmlhelp.xsl deleted file mode 100644 index 4a6b370..0000000 --- a/docbook-xsl-1.75.2/slides/htmlhelp/htmlhelp.xsl +++ /dev/null @@ -1,89 +0,0 @@ - - '> -]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  • &lf; - &lf; - - - - - -
  • &lf; -
    - -
      &lf; - -
    &lf; -
    -
    - - - - - - - - - - - - - - - -
  • &lf; - &lf; - - - - - -
  • &lf; -
    -
    - -
    diff --git a/docbook-xsl-1.75.2/slides/keynote/default.xsl b/docbook-xsl-1.75.2/slides/keynote/default.xsl deleted file mode 100644 index 7ff90b1..0000000 --- a/docbook-xsl-1.75.2/slides/keynote/default.xsl +++ /dev/null @@ -1,600 +0,0 @@ - - - - - - - - - Keynote Slides - - - Steve - Ball - - Zveno -
    - - zveno.com - -
    -
    -
    - - $Id: default.xsl 3991 2004-11-10 06:51:55Z balls $ - - - 2004 - 2003 - Steve Ball, Zveno Pty Ltd - - - - Zveno Pty Ltd makes this software and associated documentation available free of charge for any purpose. You may make copies of the software but you must include all of this notice on any copy. - Zveno Pty Ltd does not warrant that this software is error free or fit for any purpose. Zveno Pty Ltd disclaims any liability for all claims, expenses, losses, damages and costs any user may incur as a result of using, copying or modifying the software. - -
    -
    - - - - - - - - - - - - - - - - You must specify your slides document using the "slides" parameter - - - - - - - - - - - - - - - - - - - </drawables> - <transition-style type='inherited'/> - <thumbnails> - <thumbnail file='thumbs/st0.tiff' byte-size='6520' size='60 45'/> - </thumbnails> - <bullets> - <bullet marker-type='inherited' level='0'> - <content tab-stops='L 96' font-size='84' font-color='g1' font-name='GillSans' paragraph-alignment='center'> - <xsl:apply-templates select='slidesinfo/title/node()'/> - </content> - </bullet> - <xsl:choose> - <xsl:when test='slidesinfo/subtitle'> - <bullet marker-type='inherited' level='1'> - <content tab-stops='L 96' font-size='36' font-color='g1' font-name='GillSans' paragraph-alignment='center'> - <xsl:apply-templates select='slidesinfo/subtitle/node()' mode='slides'/> - </content> - </bullet> - </xsl:when> - <xsl:when test='slidesinfo/corpauthor'> - <bullet marker-type='inherited' level='1'> - <content tab-stops='L 96' font-size='36' font-color='g1' font-name='GillSans' paragraph-alignment='center'> - <xsl:apply-templates select='slidesinfo/corpauthor/node()' mode='slides'/> - </content> - </bullet> - </xsl:when> - <xsl:when test='slidesinfo/author'> - <bullet marker-type='inherited' level='1'> - <content tab-stops='L 96' font-size='36' font-color='g1' font-name='GillSans' paragraph-alignment='center'> - <xsl:apply-templates select='slidesinfo/author' mode='slides'/> - </content> - </bullet> - </xsl:when> - </xsl:choose> - </bullets> - <notes font-size='18' font-name='LucidaGrande'> - <xsl:apply-templates select='slidesinfo/*[not(self::title|self::subtitle|self::corpauthor|self::author)]' mode='slides'/> - </notes> - </slide> - - <xsl:if test='foilgroup'> - <xsl:call-template name='overview'/> - </xsl:if> - - <xsl:apply-templates select='foilgroup|foil' mode='slides'/> - </xsl:template> - - <xsl:template name='overview'> - <xsl:param name='current' select='/'/> - - <slide id='overview-{generate-id()}' master-slide-id="{$masters/apxl:master-slide[@name=$overview-master]/@id}"> - <drawables> - <body visibility='tracks-master' vertical-alignment='tracks-master'/> - <title visibility='tracks-master' vertical-alignment='tracks-master'/> - - <xsl:for-each select='ancestor-or-self::slides/foilgroup'> - <textbox id='textbox-{position()}' grow-horizontally='true' transformation='1 0 0 1 {100 + floor((position() - 1) div 10) * 400} {200 + floor((position() - 1) mod 10) * 50}' size='200 50'> - <content tab-stops='L 84' font-size='36' paragraph-alignment='left'> - <xsl:attribute name='font-color'> - <xsl:choose> - <xsl:when test='generate-id() = generate-id($current)'> - <xsl:text>1 0.5 0</xsl:text> - </xsl:when> - <xsl:otherwise>g1</xsl:otherwise> - </xsl:choose> - </xsl:attribute> - <xsl:apply-templates select='title' mode='slides'/> - </content> - </textbox> - </xsl:for-each> - - </drawables> - <transition-style type='inherited'/> - <thumbnails> - <thumbnail file='thumbs/st0.tiff' byte-size='6520' size='60 45'/> - </thumbnails> - <bullets> - <bullet marker-type='inherited' level='0'> - <content tab-stops='L 96' font-size='84' font-color='g1' font-name='GillSans' paragraph-alignment='center'>Overview</content> - </bullet> - </bullets> - </slide> - </xsl:template> - - <xsl:template match='author' mode='slides'> - <xsl:apply-templates select='firstname/node()' mode='slides'/> - <xsl:text> </xsl:text> - <xsl:apply-templates select='surname/node()' mode='slides'/> - </xsl:template> - <xsl:template match='copyright' mode='slides'> - <xsl:text>Copyright (c) </xsl:text> - <xsl:value-of select='year'/> - <xsl:text> </xsl:text> - <xsl:apply-templates select='holder' mode='slides'/> - <xsl:text>. </xsl:text> - </xsl:template> - - <xsl:template match='foilgroup' mode='slides'> - <xsl:variable name='number' select='count(preceding-sibling::foilgroup) + count(preceding::foil) + 1'/> - - <xsl:call-template name='overview'> - <xsl:with-param name='current' select='.'/> - </xsl:call-template> - - <slide id='foilgroup-{generate-id()}'> - <xsl:attribute name='master-slide-id'> - <xsl:choose> - <xsl:when test='*[not(self::foil|self::foilgroupinfo|self::speakernotes)]'> - <xsl:value-of select='$masters/apxl:master-slide[@name=$title-only-master]/@id'/> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select='$masters/apxl:master-slide[@name=$foilgroup-master]/@id'/> - </xsl:otherwise> - </xsl:choose> - </xsl:attribute> - - <drawables> - <title visibility='tracks-master' vertical-alignment='tracks-master'/> - <body visibility='hidden' vertical-alignment='tracks-master'/> - <xsl:call-template name='drawables'/> - </drawables> - <transition-style type='inherited'/> - <thumbnails> - <thumbnail file='thumbs/st0.tiff' byte-size='6520' size='60 45'/> - </thumbnails> - <bullets> - <bullet marker-type='inherited' level='0'> - <content tab-stops='L 96' font-size='84' font-color='g1' font-name='GillSans' paragraph-alignment='center'> - <xsl:apply-templates select='title' mode='slides'/> - </content> - </bullet> - - <xsl:apply-templates select='itemizedlist/listitem' mode='slides'/> - </bullets> - <xsl:if test='speakernotes'> - <notes font-size='18' font-name='LucidaGrande'> - <xsl:apply-templates select='speakernotes/para[1]/node()' mode='slides'/> - <xsl:for-each select='speakernotes/para[position() != 1]'> - <xsl:text>; </xsl:text> - <xsl:apply-templates select='node()' mode='slides'/> - </xsl:for-each> - </notes> - </xsl:if> - </slide> - - <xsl:apply-templates select='foil' mode='slides'/> - - </xsl:template> - - <xsl:template match='foil' mode='slides'> - <xsl:variable name='number' select='count(preceding::foilgroup) + count(preceding::foil) + count(preceding-sibling::foil) + 1'/> - - <slide id='foil-{generate-id()}'> - <xsl:attribute name='master-slide-id'> - <xsl:choose> - <xsl:when test='imageobject'> - <xsl:value-of select='$masters/apxl:master-slide[@name=$title-only-master]/@id'/> - </xsl:when> - <xsl:when test='itemizedlist[.//imageobject]'> - <xsl:value-of select='$masters/apxl:master-slide[@name=$bullet-and-image-master]/@id'/> - </xsl:when> - <xsl:when test='itemizedlist'> - <xsl:value-of select='$masters/apxl:master-slide[@name=$bullet-master]/@id'/> - </xsl:when> - <xsl:when test='example|informalexample'> - <xsl:value-of select='$masters/apxl:master-slide[@name=$title-only-master]/@id'/> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select='$masters/apxl:master-slide[@name=$bullet-master]/@id'/> - </xsl:otherwise> - </xsl:choose> - </xsl:attribute> - <drawables> - <body visibility='tracks-master' vertical-alignment='tracks-master'/> - <title visibility='tracks-master' vertical-alignment='tracks-master'/> - <xsl:call-template name='drawables'/> - </drawables> - <transition-style type='inherited'/> - <thumbnails> - <thumbnail file='thumbs/st0.tiff' byte-size='6520' size='60 45'/> - </thumbnails> - <bullets> - <bullet marker-type='inherited' level='0'> - <content tab-stops='L 96' font-size='64' font-color='g1' font-name='GillSans' paragraph-alignment='inherited'> - <!-- - <xsl:apply-templates select='../title' mode='slides'/> - <xsl:text>: </xsl:text> ---> - <xsl:apply-templates select='title' mode='slides'/> - </content> - </bullet> - <xsl:apply-templates select='itemizedlist/listitem' mode='slides'/> - </bullets> - <xsl:if test='speakernotes'> - <notes font-size='18' font-name='LucidaGrande'> - <xsl:apply-templates select='speakernotes/para[1]/node()' mode='slides'/> - <xsl:for-each select='speakernotes/para[position() != 1]'> - <xsl:text>; </xsl:text> - <xsl:apply-templates select='node()' mode='slides'/> - </xsl:for-each> - </notes> - </xsl:if> - </slide> - </xsl:template> - - <doc:template xmlns=''> - <title>drawables Template - - This template adds objects to the drawables section of a foil. These include images, as well as unadorned (non-bullet) text. - - A single image is placed centered on the foil. An image on a foil that contains other text is placed on the right-hand-side. - - - - - - - - - 1.0 - video/quicktime - - - - - - - - - - - - - - - - - - {800, 400} - - - - - - - - - - - - - - - - - - - - {0, 300} - - - - - {150, 300} - - - - - {0, 200} - - - - - {150, 200} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ]]> - - - - ]]> - - - - - - - - - - - - - - - - - - - - <![CDATA[ - - - - - - - - - - - - - - - GillSans-Italic - GillSans - - - - - - - - - - - - - " - “ - - - - - - ]]> - ]] > - - - - - - - - - - - - - - - - < - < - - - - - - - ]]> - ]] > - - - - - - - - - - - - - - - - - - - 20 - 0 - - - - - - - - - - - - - - - - - - - - - - - - AmericanTypewriter-CondensedBoldItalic - - - GillSans-BoldItalic - - - AmericanTypewriter-CondensedItalic - - - GillSans-Italic - - - AmericanTypewriter-CondensedBold - - - GillSans-Bold - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    diff --git a/docbook-xsl-1.75.2/slides/keynote/xsltsl/cmp.xsl b/docbook-xsl-1.75.2/slides/keynote/xsltsl/cmp.xsl deleted file mode 100644 index 6e2866d..0000000 --- a/docbook-xsl-1.75.2/slides/keynote/xsltsl/cmp.xsl +++ /dev/null @@ -1,348 +0,0 @@ - - - - - - - - $Id: cmp.xsl 6297 2006-09-14 01:32:27Z xmldoc $ - - - Hummel - Mark - - - 2003 - Mark Hummel - - - - XML Compare - - -
    - Introduction - - This module provides a template for comparing two xml documents. - -
    -
    - -
    - - - - Find differences - - - Compare two xml documents and display differences. Two xml documents are defined to be the same if: They have the matching elements and attributes, and that the data in the elements also match. The comparison is order sensitive. - - The element names from the documents at the current depth are compared, followed by their values, then any attribute names and values are compared. The process is applied then to the subtrees of the documents. - - Notes: If there are leaf nodes in one nodeset which don't exist in the other, the value of those 'extra' elements won't appear as a difference. - - - - - - - ns1 - ns2 - - The two nodesets which are to be compared. - - - - - - - Returns the difference between the documents. - - The format of the output is an xml document. A node is added to the result tree for every difference. The node contains the type of difference (e.g element name difference, attribute value difference, etc), the value in the first nodeset and the value in the second nodeset, and the parent node. The indentation level is the depth at which the difference was found relative to the first document. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - node[]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Compare - - - Recursively compare two xml nodesets, stop when a difference is found and return false. Otherwise return true if the document is identical. - - The element names from the documents at the current depth are compared, followed by their values, then any attribute names and values are compared. The process is applied then to the subtrees of the documents. - - Notes: If there are leaf nodes in one nodeset which don't exist in the other, the value of those 'extra' elements won't appear as a difference. - - - - - - - ns1 - ns2 - - The two nodesets which are to be compared. - - - - - - - False when the nodesets are not identical, empty otherwise. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - diff --git a/docbook-xsl-1.75.2/slides/keynote/xsltsl/date-time.xsl b/docbook-xsl-1.75.2/slides/keynote/xsltsl/date-time.xsl deleted file mode 100644 index 671260d..0000000 --- a/docbook-xsl-1.75.2/slides/keynote/xsltsl/date-time.xsl +++ /dev/null @@ -1,1524 +0,0 @@ - - - - - - - $Id: date-time.xsl 3991 2004-11-10 06:51:55Z balls $ - - - Diamond - Jason - - - 2004 - Steve Ball - - - 2001 - Jason Diamond - - - - Date/Time Processing - - -
    - Introduction - - This module provides templates for formatting and parsing date/time strings. - - See http://www.tondering.dk/claus/calendar.html for more information on calendars and the calculations this library performs. - -
    -
    - -
    - - - Returns a string with a formatted date/time. - - - The formatted date/time is determined by the format parameter. The default format is %Y-%m-%dT%H:%M:%S%z, the W3C format. - - - - - - - xsd-date-time - - The date-time value in XML Schemas (WXS) format. - If this value is specified, it takes priority over other parameters. - - - - - year - - Year, in either 2 or 4+ digit format.. - If the year is given as a two digit value, it will be converted to a four digit value using the fixed window method. Values between 00 and 49 will be prepended by "20". Values between 50 and 99 will be prepended by "19". - - - - - month - - Month (1 - 12; January = 1) - - - - - day - - Day of month (1 - 31) - - - - - hour - - Hours since midnight (0 - 23) - - - - - minute - - Minutes after hour (0 - 59) - - - - - second - - Seconds after minute (0 - 59) - - - - - time-zone - - Time zone string (e.g., 'Z' or '-08:00') - - - - - format - - The format specification. - - - - %a - - Abbreviated weekday name - - - - - %A - - Full weekday name - - - - - %b - - Abbreviated month name - - - - - %B - - Full month name - - - - - %c - - Date and time representation appropriate for locale - - - - - %d - - Day of month as decimal number (01 - 31) - - - - - %e - - Day of month as decimal number (1 - 31) - - - - - %H - - Hour in 24-hour format (00 - 23) - - - - - %I - - Hour in 12-hour format (01 - 12) - - - - - %i - - Hour in 12-hour format (1 - 12) - - - - - %j - - Day of year as decimal number (001 - 366) - - - - - %m - - Month as decimal number (01 - 12) - - - - - %n - - Month as decimal number (1 - 12) - - - - - %M - - Minute as decimal number (00 - 59) - - - - - %P - - Current locale's A.M./P.M. indicator for 12-hour clock, uppercase - - - - - %Q - - Current locale's A.M./P.M. indicator for 12-hour clock, uppercase with periods - - - - - %p - - Current locale's A.M./P.M. indicator for 12-hour clock, lowercase - - - - - %q - - Current locale's A.M./P.M. indicator for 12-hour clock, lowercase with periods - - - - - %S - - Second as decimal number (00 - 59) - - - - - %U - - Week of year as decimal number, with Sunday as first day of week (00 - 53) - - - - - %w - - Weekday as decimal number (0 - 6; Sunday is 0) - - - - - %W - - Week of year as decimal number, with Monday as first day of week (00 - 53) - - - - - %x - - Date representation for current locale - - - - - %X - - Time representation for current locale - - - - - %y - - Year without century, as decimal number (00 - 99) - - - - - %Y - - Year with century, as decimal number - - - - - %z - - Time-zone name or abbreviation; no characters if time zone is unknown - - - - - %% - - Percent sign - - - - - - - - - - - - Returns a formatted date/time string. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - % - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - [not implemented] - - - - - 0 - - - - - - - - - - 0 - - - - - - - 12 - 0 - - 0 - - - - - - - 12 - - - - - - - - - - [not implemented] - - - - - 0 - - - - - - - - - - 0 - - - - - - - am - pm - - - - - - am - p.m. - - - - - - AM - PM - - - - - - AM - P.M. - - - - - - 0 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - [not implemented] - - - - - [not implemented] - - - - - - invalid year value - - - 00 - - - - - - - - - - - invalid year value - - - - - - - - - invalid year value - - - - - - - - - - - % - - - - - - - - - - - - - - - - - - - - - - - Calculates the day of the week. - - - Given any Gregorian date, this calculates the day of the week. - - - - - - year - - Year - - - - month - - Month (1 - 12; January = 1) - - - - day - - Day of month (1 - 31) - - - - - - - Returns the day of the week (0 - 6; Sunday = 0). - - - - - - - - - - - - - - - - - - - Calculates the number of days for a specified month. - - - Given any Gregorian month, this calculates the last day of the month. - - - - - - year - - Year - - - - month - - Month (1 - 12; January = 1) - - - - - - - Returns the number of days in given month as a decimal number. - - - - - - - - - - - 29 - 28 - - - - - 30 - 31 - - - - - 30 - 31 - - - - - - - Gets the day of the week's full name. - - - Converts a numeric day of the week value into a string representing the day's full name. - - - - - - day-of-the-week - - Day of the week (0 - 6; Sunday = 0) - - - - - - - Returns a string. - - - - - - - - - Sunday - Monday - Tuesday - Wednesday - Thursday - Friday - Saturday - error: - - - - - - Gets the day of the week's abbreviation. - - - Converts a numeric day of the week value into a string representing the day's abbreviation. - - - - - - day-of-the-week - - Day of the week (0 - 6; Sunday = 0) - - - - - - - Returns a string. - - - - - - - - - Sun - Mon - Tue - Wed - Thu - Fri - Sat - error: - - - - - - Gets the month's full name. - - - Converts a numeric month value into a string representing the month's full name. - - - - - - month - - Month (1 - 12; Januaray = 1) - - - - - - - Returns a string. - - - - - - - - - January - February - March - April - May - June - July - August - September - October - November - December - error: - - - - - - Gets the month's abbreviation. - - - Converts a numeric month value into a string representing the month's abbreviation. - - - - - - month - - Month (1 - 12; Januaray = 1) - - - - - - - Returns a string. - - - - - - - - - Jan - Feb - Mar - Apr - May - Jun - Jul - Aug - Sep - Oct - Nov - Dec - error: - - - - - - Calculates the Julian Day for a specified date. - - - Given any Gregorian date, this calculates the Julian Day. - - - - - - year - - Year - - - - month - - Month (1 - 12; January = 1) - - - - day - - Day of month (1 - 31) - - - - - - - Returns the Julian Day as a decimal number. - - - - - - - - - - - - - - - - - - - Returns a string with a formatted date for a specified Julian Day. - - - Given any Julian Day, this returns a string according to the format specification. - - - - - - julian-day - - A Julian Day - - - - format - - The format specification. See dt:format-date-time for more details. - - - - - - - A string. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Calculates the week number for a specified date. - - - Assumes Monday is the first day of the week. - - - - - - year - - Year - - - - month - - Month (1 - 12; January = 1) - - - - day - - Day of month (1 - 31) - - - - - - - Returns the week number as a decimal number. - - - - - - - - - - - - - - - - - - - - - - - - - - - Take a month by name and return a number which can be used as input to the templates. - - - Input - - - - - - month - - Month as described either by full name or abbreviation. - - - - - - - Return a month as a decimal number. (Jan = 1) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Return year component of XSD DateTime value. - - - Extract component of XML Schemas DateTime value. - - - - - - xsd-date-time - - A value in XSD DateTime format. - - - - - - - Returns year component. - - - - - - - - - - - - - - - - - - - - - - - - - Return month component of XSD DateTime value. - - - Extract component of XML Schemas DateTime value. - - - - - - xsd-date-time - - A value in XSD DateTime format. - - - - - - - Returns month component. - - - - - - - - - - - - - - - - - - - - - - - - - Return day component of XSD DateTime value. - - - Extract component of XML Schemas DateTime value. - - - - - - xsd-date-time - - A value in XSD DateTime format. - - - - - - - Returns day component. - - - - - - - - - - - - - - - - - - - - - - - - - Return hour component of XSD DateTime value. - - - Extract component of XML Schemas DateTime value. - - - - - - xsd-date-time - - A value in XSD DateTime format. - - - - - - - Returns hour component. - - - - - - - - - - - - - - - - - - - - - - - - - - Return minute component of XSD DateTime value. - - - Extract component of XML Schemas DateTime value. - - - - - - xsd-date-time - - A value in XSD DateTime format. - - - - - - - Returns minute component. - - - - - - - - - - - - - - - - - - - - - - - - - - Return second component of XSD DateTime value. - - - Extract component of XML Schemas DateTime value. - - - - - - xsd-date-time - - A value in XSD DateTime format. - - - - - - - Returns second component. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Return timezone component of XSD DateTime value. - - - Extract component of XML Schemas DateTime value. - - - - - - xsd-date-time - - A value in XSD DateTime format. - - - - - - - Returns timezone component. - - - - - - - - Z - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - Return two digit year as four digit year value. - - - Prepend century to two digit year value. - Century value is calculated according to suggested solutions in RFC2626 (section 5). - Fixed window solution: 20 is prepended to year if the year is less than 50, otherwise 19 is prepended to year. - Sliding window solution: The year is considered in the future if the year is less than the current 2 digit year plus 'n' years (where 'n' is a param), otherwise it is considered in the past. - - - - - - year - - A year value in 2 digit format. - - - - method - - RFC2626 suggested solution ('fixed' or 'sliding'). Default is 'fixed'. - - - - n - - No. of years. Used in sliding windows solution. - - - - - - - Returns four digit year value. - - - - - - - - - invalid year value - - - 20 - 19 - - - - not yet implemented - invalid method - - - -
    diff --git a/docbook-xsl-1.75.2/slides/keynote/xsltsl/example.xsl b/docbook-xsl-1.75.2/slides/keynote/xsltsl/example.xsl deleted file mode 100644 index 349bab9..0000000 --- a/docbook-xsl-1.75.2/slides/keynote/xsltsl/example.xsl +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - - - $Id: example.xsl 3991 2004-11-10 06:51:55Z balls $ - - - Ball - Steve - - - 2001 - Steve Ball - - - - Example Stylesheet - - -
    - Introduction - - This module provides a template for adding stylesheet modules to the XSLT Standard Library. - To add a new module to the library, follow these easy steps: - - - Copy this file and replace its contents with the new module templates and documentation. - - - Copy the corresponding test file in the test directory. Replace its contents with tests for the new module. - - - Add an include element in the stdlib.xsl stylesheet. - - - Add an entry in the test/test.xml file. - - - Add entries in the test/test.xsl stylesheet. - - - Add an entry in the doc/build.xml file. - - - - The example.xsl stylesheet provides a more extensive example. - -
    -
    - -
    - - - Template Example - - - Provides a template for writing templates. Replace this paragraph with a description of your template - - - - - - text - - The example string - - - - - - - Returns nothing. - - - - - - - -
    - diff --git a/docbook-xsl-1.75.2/slides/keynote/xsltsl/markup.xsl b/docbook-xsl-1.75.2/slides/keynote/xsltsl/markup.xsl deleted file mode 100644 index cff2485..0000000 --- a/docbook-xsl-1.75.2/slides/keynote/xsltsl/markup.xsl +++ /dev/null @@ -1,789 +0,0 @@ - - - - - - $Id: markup.xsl 3991 2004-11-10 06:51:55Z balls $ - - - Ball - Steve - - - 2003 - 2001 - Steve Ball - - - - XML Markup Templates - - -
    - Introduction - - This stylesheet module provides functions for generating literal XML markup. - -
    -
    - -
    - - - Create an XML Declaration - - - This template returns an XML Declaration. Although the XSLT standard provides control over the generation of the XML Declaration, this template may be useful in circumstances where the values must be computed at runtime. - - - - - - version - - Version number. - - - - standalone - - Standalone indication. Must be value "yes" or "no". - - - - encoding - - Character encoding. - - - - - - - Returns an XML Declaration as a string. - - - - - - - - - <?xml version=" - - " - - - - - standalone=" - - " - - - invalid value "" for standalone attribute - - - - - encoding=" - - " - - - ?> - - - - - Create a Document Type Declaration - - - This template returns a Document Type Declaration. Although the XSLT standard provides control over the generation of a Document Type Declaration, this template may be useful in circumstances where the values for the identifiers or the internal subset must be computed at runtime. - - - - - - docel - - The name of the document element. - - - - publicid - - The public identifier for the external DTD subset. - - - - systemid - - The system identifier for the external DTD subset. - - - - internaldtd - - The internal DTD subset. - - - - - - - Returns a Document Type Declaration as a string. - - - - - - - - - - - No document element specified - - - <!DOCTYPE - - - - - - - - - - [ - - ] - - - > - - - - - Create an Element Declaration - - - This template returns an element declaration.. - - - - - - type - - The element type. - - - - content-spec - - The content specification. - - - - - - - Returns an element declaration as a string. - - - - - - - - - element type must be specified - - - content specification must be specified - - - <!ELEMENT - - - - > - - - - Create an Attribute List Declaration - - - This template returns an attribute list declaration. - - - - - - type - - The element type. - - - - attr-defns - - Attribute definitions. - - - - - - - Returns an attribute list declaration as a string. - - - - - - - - - element type must be specified - - - <!ATTLIST - - - - > - - - - Create an Attribute Definition - - - This template returns an attribute definition. - - - - - - name - - The attribute name. - - - - type - - The attribute type. - - - - default - - The attribute default. - - - - - - - Returns an attribute definition as a string. - - - - - - - - - - attribute name must be specified - - - attribute type must be specified - - - attribute default must be specified - - - - - - - - - - - - Create an Entity Declaration - - - This template returns an entity declaration. - If the 'text' parameter is given a value, then an internal entity is created. If either the 'publicid' or 'systemid' parameters are given a value then an external entity is created. It is an error for the 'text' parameter to have value as well as the 'publicid', 'systemid' or 'notation' parameters. - - - - - - name - - The entity name. - - - - parameter - - Boolean value to determine whether a parameter entity is created. Default is 'false()'. - - - - text - - The replacement text. Must be a string. - - - - nodes - - The replacement text as a nodeset. The nodeset is formatted as XML using the as-xml template. If both text and nodes are specified then nodes takes precedence. - - - - publicid - - The public identifier for an external entity. - - - - systemid - - The system identifier for an external entity. - - - - notation - - The notation for an external entity. - - - - - - - Returns an entity declaration as a string. - - - - - - - - - - - - - - entity name must be specified - - - both replacement text and external identifier specified - - - <!ENTITY - - - - % - - - - - - - - - - - - - - - - - - - - - - - - - - - NDATA " - - " - - - > - - - - Quote an Attribute Value - - - This template returns a quoted value. - - - - - - value - - The value to quote. - - - - - - - Returns a quote value as a string. - - - - - - - - - - - - - - - - - < - - &lt; - - - - - - - - - - - - - - " - ' - - - - " - - - " - - &quot; - - - " - - - ' - - ' - - - " - - " - - - - - - Create an External Identifier - - - This template returns an external identifier. - - - - - - publicid - - The public identifier. - - - - systemid - - The system identifier. - - - - - - - Returns an external identifier as a string. - - - - - - - - - - - - - - PUBLIC " - - " - - " - - " - - - - - - - SYSTEM " - - " - - - - - - Create an Entity Reference - - - This template returns an entity reference. - - - - - - name - - The name of the entity. - - - - - - - Returns an entity reference as a string. - - - - - - - & - - ; - - - - - Create a Notation Declaration - - - This template returns a notation declaration. - - - - - - name - - The notation name. - - - - publicid - - The public identifier for the notation. - - - - systemid - - The system identifier for the notation. - - - - - - - Returns a notation declaration as a string. - - - - - - - - - - notation name must be specified - - - external identifier must be specified - - - <!NOTATION - - - - - - - - - > - - - - Create a CDATA Section - - - This template returns a CDATA Section. The XSLT specification provides a mechanism for instructing the XSL processor to output character data in a CDATA section for certain elements, but this template may be useful in those circumstances where not all instances of an element are to have their content placed in a CDATA section. - - - - - - text - - The content of the CDATA section. - - - - - - - Returns a CDATA section as a string. - - - - - - - - CDATA section contains "]]>" - - - <![CDATA[ - - ]]> - - - - Format Nodeset As XML Markup - - - This template returns XML markup. Each node in the given nodeset is converted to its equivalent XML markup. - - BUG: This version may not adequately handle XML Namespaces. - - - - - - nodes - - Nodeset to format as XML. - - - - - - - Returns XML markup. - - - - - - - - - - < - - - - - = - - - - - - - - > - - - - </ - - > - - - /> - - - - - - - - <!-- - - --> - - - <? - - - - ?> - - - - - - - - - - - - - -
    diff --git a/docbook-xsl-1.75.2/slides/keynote/xsltsl/math.xsl b/docbook-xsl-1.75.2/slides/keynote/xsltsl/math.xsl deleted file mode 100644 index e3e14dd..0000000 --- a/docbook-xsl-1.75.2/slides/keynote/xsltsl/math.xsl +++ /dev/null @@ -1,704 +0,0 @@ - - - - - - - $Id: math.xsl 3991 2004-11-10 06:51:55Z balls $ - - - Ball - Steve - - - 2004 - 2002 - Steve Ball - - - - Math Module - - -
    - Introduction - - This module provides mathematical functions. -
    -
    - -
    - - - Power - - - Raises a number to a power. - - - - - - base - - The base number. Must be a number. - - - - power - - The power to raise the number to. Must be an integer. - - - - - - - Returns base multiplied by itself power times. If the base or power are not numbers or if the power is fractional then an empty string is returned. - - - - - - - - - - 1 - - - 1 - - - - 0 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Absolute Value - - - Absolute value of a number. - - - - - - number - - The number. Must be a number. - - - - - - - Returns the absolute value of the number. - - - - - - - - - - - - - - - - - - Conversion - - - Converts a hexidecimal value to a decimal value. - - - - - - value - - The hexidecimal number. Must be a number in hexidecimal format. - - - - - - - Returns the value as a decimal string. If the value is not a number then a NaN value is returned. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 10 - 11 - 12 - 13 - 14 - 15 - - - - - Conversion - - - Converts a decimal value to a hexidecimal value. - - - - - - value - - The decimal number. - - - - - - - Returns the value as a hexidecimal string (lowercase). If the value is not a number then a NaN value is returned. - - - - - - - - 0 - NaN - - - - - - - - - - a - b - c - d - e - f - - - - - - - - Ordinal number - - - Gives the ordinal number of a given counting number. For example, 1 becomes "1st". - - - - - - number - - An integer number. - - - - - - - Returns the number with an ordinal suffix. - - - - - - - - - - - - th - st - nd - rd - th - - - - - - - - Returns an ordinal number - - - This template returns the ordinal number for a given counting number as a word. For example "first" for 1. - Only handles numbers less than 10000000 (ten million). - - - - - - number - - The counting number. - - - - conjunctive - - Whether to add the word "and" to the result, for example "one hundred and first" rather than "one hundred first". Default is "yes". - - - - - - - Returns the ordinal number as a string. - - - - - - - - - - - zeroth - - - - - and - first - - - and - second - - - and - third - - - and - fourth - - - and - fifth - - - and - sixth - - - and - seventh - - - and - eighth - - - and - ninth - - - and - tenth - - - and - eleventh - - - and - twelveth - - - and - thirteenth - - - and - fourteenth - - - and - fifteenth - - - and - sixteenth - - - and - seventeenth - - - and - eighteenth - - - and - nineteenth - - - and - twentieth - - - and - thirtieth - - - and - fortieth - - - and - fiftieth - - - and - sixtieth - - - and - seventieth - - - and - eightieth - - - and - ninetieth - - - - - - - millionth - - - and - - - - thousandth - - - and - - - - hundredth - - - - - - and - - - - - - - - - - - - - - - - - - - - - - - - - - and - - - - - - - - - - - - - - - - - - - - - - - - - - - and - - - - - - - - - - - - - - - and - - - - - - - - - - - - - - - - - Returns a number as a word - - - This template returns the word for a given integer number, for example "one" for 1. - Only handles numbers less than 10000000 (ten million). - - - - - - number - - The counting number. - - - - conjunctive - - Adds the word "and" where appropriate, for example. - - - - - - - Returns the number as a string. - - - - - - - - - - zero - - - minus - - - - - - - - - - - - million - - - - - - million - - - - - - - - - thousand - - - - - - thousand - and - - - - - - - - - hundred - - - - - - hundred - and - - - - - - one - two - three - four - five - six - seven - eight - nine - ten - eleven - twelve - thirteen - fourteen - fifteen - sixteen - seventeen - eighteen - nineteen - twenty - thirty - forty - fifty - sixty - seventy - eighty - ninety - - - - - - - - - - - - -
    - diff --git a/docbook-xsl-1.75.2/slides/keynote/xsltsl/node.xsl b/docbook-xsl-1.75.2/slides/keynote/xsltsl/node.xsl deleted file mode 100644 index bf4fd7f..0000000 --- a/docbook-xsl-1.75.2/slides/keynote/xsltsl/node.xsl +++ /dev/null @@ -1,229 +0,0 @@ - - - - - - - - $Id: node.xsl 3991 2004-11-10 06:51:55Z balls $ - - - Ball - Steve - - - 2001 - Steve Ball - - - - Node Templates - - -
    - Introduction - - This stylesheet module provides functions for reporting on or manipulating nodes and nodesets. - -
    -
    - -
    - - - Returns an XPath location path - - - This template returns an XPath location path that uniquely identifies the given node within the document. - - - - - - node - - The node to create an XPath for. If this parameter is given as a nodeset, then the first node in the nodeset is used. - - - - - - - Returns an XPath location path as a string. - - - - - - - - - - - - / - [] - - - - - - /comment() - [] - - - - /processing-instruction() - [] - - - - /text() - [] - - - - / - - - - /namespace:: - - - - /@ - - - - - - - /.. - - - - - - - - Return node type - - - Returns the type of a node as a string. - - - - - - node - - The node to get the type for. If this parameter is given as a nodeset, then the first node in the nodeset is used. - - - - - - - Returns node type as a string. Values returned are: - - - Element - - element - - - - Text Node - - text - - - - Comment - - comment - - - - Processing Instruction - - processing instruction - - - - - - - - - - - - - element - - - text - - - comment - - - processing instruction - - - root - - - namespace - - - attribute - - - - - - Copy Nodes - - - Makes a copy of the given nodes, including attributes and descendants. - - - - - - nodes - - The nodes to copy. - - - - - - - Returns the copied nodes as a result tree fragment. - - - - - - - - - - - - - - - - - - -
    - diff --git a/docbook-xsl-1.75.2/slides/keynote/xsltsl/stdlib.xsl b/docbook-xsl-1.75.2/slides/keynote/xsltsl/stdlib.xsl deleted file mode 100644 index c014f13..0000000 --- a/docbook-xsl-1.75.2/slides/keynote/xsltsl/stdlib.xsl +++ /dev/null @@ -1,340 +0,0 @@ - - -]> - - - - - - - - - - - - - - - - - - - - XSLT Standard Library - Version &version; - - - - Ball - Steve - - - 2004 - 2002 - Steve Ball - - - - - The XSLT Standard Library, xsltsl, provides the XSLT developer with a set of XSLT templates for commonly used functions. These are implemented purely in XSLT, that is they do not use any extensions. - xsltsl is a SourceForge project. - - - - - - SourceForge Logo - - - Goals of the xsltsl project include: - - - Provision of a high-quality library of XSLT templates, suitable for inclusion by vendors in XSLT processor software products. - - - Demonstration of best practice in XSLT stylesheet development and documentation. - - - Provide examples of various techniques used to develop XSLT stylesheets (ie. a working FAQ). - - - - - - Using The Library - - There are two ways of using the library: - - - Use a local copy of the library. - - - Download the distribution (see below). - - - Unpack the distribution, using either gunzip/tar or unzip. - - - In your stylesheet import or include either the main stylesheet, stdlib.xsl, or the stylesheet module you wish to use, such as string.xsl. This example assumes that the distribution has been extracted into the same directory as your own stylesheet: - - -]]> - - - - - - Import or include either the main stylesheet, or the stylesheet module you wish to use, directly from the library website; http://xsltsl.sourceforge.net/modules/. The modules directory always contains the latest stable release. For example: - - -]]> - - Older versions of the library are available in subdirectories. For example, to access version 1.1 of the library use: - - -]]> - - - - Next, add XML Namespace declarations for the modules you wish to use. For example, to use templates from the string module, your stylesheet should have the following declaration: - - - - -]]> - - Finally, use a template with the call-template element. Most templates require parameters, which are passed using the with-param element. For example: - - - - - a word - another word - - -]]> - - - - - Obtaining The Library - - The XSLT Standard Library is available for download as either: - - - Gzip'd tarball: http://prdownloads.sourceforge.net/xsltsl/xsltsl-&version;.tar.gz - - - Zip file: http://prdownloads.sourceforge.net/xsltsl/xsltsl-&version;.zip - - - - - - Getting Involved - - Contributions to the project are most welcome, and may be in the form of stylesheet modules, patches, bug reports or sample code. Any contributed code must use the LGPL license to be accepted into the library. - - See the SourceForge Project Page http://sourceforge.net/projects/xsltsl/ for information on the development of the project. Bug reports may be submitted here. - - See the project Web Page http://xsltsl.sourceforge.net/ for documentation. - - There are three mailing lists for the project: - - - xsltsl-users@lists.sourceforge.net - - Discussion of the use of xsltsl. - - - - xsltsl-devel@lists.sourceforge.net - - Discussion of the development of xsltsl. - - - - xsltsl-announce@lists.sourceforge.net - - Project announcements. - - - - - - - XML Namespaces - - Apart from the XSLT XML Namespace (http://www.w3.org/1999/XSL/Transform), xsltsl employs a number of XML Namespaces to allow inclusion of the library in developer stylesheets. In addition, documentation is defined in a separate namespace. - Each module is allocated a namespace URI by appending the module name to the URI for the project, http://xsltsl.org/. For example, the string module has the namespace URI http://xsltsl.org/string. - All documentation is written using an extension of DocBook designed for embedding DocBook into XSLT stylesheets. The namespace URI for DocBook embedded in stylesheets is http://xsltsl.org/xsl/documentation/1.0 - - - - Engineering Standards - - In order to maintain a high engineering standard, all modules and contributions to the xsltsl project must adhere to the following coding and documentation standards. Submissions which do not meet (or exceed) this standard will not be accepted. - - - All stylesheets must be indented, with each level indented by two spaces. NB. a simple stylesheet could be used to enforce/fix this. - - - Templates are named using a qualified name (QName). The namespace URI for the template's containing stylesheet is assigned as above. - - - Parameters for templates should use sensible names. Where possible (or if in doubt), follow these conventions: - - - A parameter containing a single node is named node. Where more than one parameter contains a single node, the suffix Node is appended to the parameter name, eg. referenceNode - - - A parameter which potentially contains multiple nodes is named nodes. Where more than one parameter potentially contains multiple nodes, the suffix Nodes is appended to the parameter name, eg. copyNodes - - - A parameter which contains a string value is named text. - - - - - All templates in each stylesheet must be documented. A template is documented as a DocBook RefEntry. - - - Every stylesheet must include a test suite. The test system is in the test subdirectory. See test/test.html for further details. - - - - An example stylesheet has been provided, which acts as a template for new stylesheet modules. - - - - - Related Work - - The EXSLT project is creating a library to standardise extension functions. The XSLT Standard Library is complementary to the EXSLT project. - - - - - Reference Documentation - - Reference documentation is available for each module. - -
    - String Processing - - - - string.xsl - - -
    - -
    - Nodes - - - - node.xsl - - -
    - -
    - Date/Time Processing - - - - date-time.xsl - - -
    - -
    - Mathematics - - - - math.xsl - - -
    - -
    - URI (Uniform Resource Identifier) Processing - - - - uri.xsl - - -
    - -
    - Comparing Nodesets - - - - cmp.xsl - - -
    - -
    - Generating XML Markup - - - - markup.xsl - - -
    - -
    - Presentation Media Support - - - - Scalable Vector Graphics: svg.xsl - - - -
    - -
    - Example - - - - - - example.xsl - - -
    -
    - -
    - -
    diff --git a/docbook-xsl-1.75.2/slides/keynote/xsltsl/string.xsl b/docbook-xsl-1.75.2/slides/keynote/xsltsl/string.xsl deleted file mode 100644 index e7eef8b..0000000 --- a/docbook-xsl-1.75.2/slides/keynote/xsltsl/string.xsl +++ /dev/null @@ -1,1233 +0,0 @@ - - - - - - - - $Id: string.xsl 3991 2004-11-10 06:51:55Z balls $ - - - Ball - Steve - - - 2002 - 2001 - Steve Ball - - - - String Processing - - -
    - Introduction - - This module provides templates for manipulating strings. - -
    -
    - -
    - - - - - - - - - - - - - Make string uppercase - - - Converts all lowercase letters to uppercase. - - - - - - text - - The string to be converted - - - - - - - Returns string with all uppercase letters. - - - - - - - - - - - - - - ß - - - S - S - - - - - - - - - Make string lowercase - - - Converts all uppercase letters to lowercase. - - - - - - text - - The string to be converted - - - - - - - Returns string with all lowercase letters. - - - - - - - - - - - Capitalise string - - - Converts first character of string to an uppercase letter. All remaining characters are converted to lowercase. - - - - - - text - - The string to be capitalised - - - - all - - Boolean controlling whether all words in the string are capitalised. - Default is true. - - - - - - - Returns string with first character uppcase and all remaining characters lowercase. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Convert a string to one camelcase word - - - Converts a string to one lowerCamelCase or UpperCamelCase - word, depending on the setting of the "upper" - parameter. UpperCamelCase is also called MixedCase while - lowerCamelCase is also called just camelCase. The template - removes any spaces, tabs and slashes, but doesn't deal with - other punctuation. It's purpose is to convert strings like - "hollow timber flush door" to a term suitable as identifier or - XML tag like "HollowTimberFlushDoor". - - - - - - - text - - The string to be capitalised - - - - upper - - Boolean controlling whether the string becomes an - UpperCamelCase word or a lowerCamelCase word. - Default is true. - - - - - - - Returns string with first character uppcase and all remaining characters lowercase. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - String extraction - - - Extracts the portion of string 'text' which occurs before any of the characters in string 'chars'. - - - - - - text - - The string from which to extract a substring. - - - - chars - - The string containing characters to find. - - - - - - - Returns string. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - String extraction - - - Extracts the portion of string 'text' which occurs after the last of the character in string 'chars'. - - - - - - text - - The string from which to extract a substring. - - - - chars - - The string containing characters to find. - - - - - - - Returns string. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - String extraction - - - Extracts the portion of string 'text' which occurs before the first character of the last occurance of string 'chars'. - - - - - - text - - The string from which to extract a substring. - - - - chars - - The string containing characters to find. - - - - - - - Returns string. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - String substitution - - - Substitute 'replace' for 'with' in string 'text'. - - - - - - text - - The string upon which to perform substitution. - - - - replace - - The string to substitute. - - - - with - - The string to be substituted. - - - - disable-output-escaping - - A value of yes indicates that the result should have output escaping disabled. Any other value allows normal escaping of text values. The default is to enable output escaping. - - - - - - - Returns string. - - - - - - - - no - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Count Substrings - - - Counts the number of times a substring occurs in a string. This can also counts the number of times a character occurs in a string, since a character is simply a string of length 1. - - - - Counting Lines - - - - -]]> - - - - - - text - - The source string. - - - - chars - - The substring to count. - - - - - - - Returns a non-negative integer value. - - - - - - - - - - 0 - - - - - - - - - - - - 0 - - - - - - String extraction - - Extracts the portion of a 'char' delimited 'text' string "array" at a given 'position'. - - - - - text - - The string from which to extract a substring. - - - - chars - - delimiters - - - - position - - position of the elements - - - - all - - If true all of the remaining string is returned, otherwise only the element at the given position is returned. Default: false(). - - - - - - Returns string. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - String extraction - - Extracts the portion of a 'char' delimited 'text' string "array" at a given 'position' - - - - - text - - The string from which to extract a substring. - - - - chars - - delimiters - - - - position - - position of the elements - - - - - - Returns string. - - - - - - - - - - - - - - - - - - - - - - - - - - - String insertion - - Insert 'chars' into "text' at any given "position' - - - - - text - - The string upon which to perform insertion - - - - position - - the position where insertion will be performed - - - - with - - The string to be inserted - - - - - - Returns string. - - - - - - - - - - - - - - - - - String reversal - - - Reverse the content of a given string - - - - - - text - - The string to be reversed - - - - - - - Returns string. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Format a string - - - Inserts newlines and spaces into a string to format it as a block of text. - - - - - - text - - String to be formatted. - - - - max - - Maximum line length. - - - - indent - - Number of spaces to insert at the beginning of each line. - - - - justify - - Justify left, right or both. Not currently implemented (fixed at "left"). - - - - - - - Formatted block of text. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Find first occurring character in a string - - - Finds which of the given characters occurs first in a string. - - - - - - text - - The source string. - - - - chars - - The characters to search for. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Match A String To A Pattern - - - Performs globbing-style pattern matching on a string. - - - - Match Pattern - - - - -]]> - - - - - - text - - The source string. - - - - pattern - - The pattern to match against. Certain characters have special meaning: - - - * - - Matches zero or more characters. - - - - ? - - Matches a single character. - - - - \ - - Character escape. The next character is taken as a literal character. - - - - - - - - - - Returns "1" if the string matches the pattern, "0" otherwise. - - - - - - - - - - - 1 - - - 1 - - - 0 - - - - - - - - - - - - - - - - - - - - - - 0 - - - - 1 - - - - - - - - - - - - - - - - - - - - - - - 0 - - - - - - - 1 - - - 0 - - - - - - - - - - - - - - - - - - - - - - - - - 0 - - - - - - - - - - - - - Create A Repeating Sequence of Characters - - - Repeats a string a given number of times. - - - - - - text - - The string to repeat. - - - - count - - The number of times to repeat the string. - - - - - - - - - - - - - - - - - - - - - - -
    - diff --git a/docbook-xsl-1.75.2/slides/keynote/xsltsl/svg.xsl b/docbook-xsl-1.75.2/slides/keynote/xsltsl/svg.xsl deleted file mode 100644 index 1254ab9..0000000 --- a/docbook-xsl-1.75.2/slides/keynote/xsltsl/svg.xsl +++ /dev/null @@ -1,177 +0,0 @@ - - - - - - - - - $Id: svg.xsl 3991 2004-11-10 06:51:55Z balls $ - - - Ball - Steve - - - 2002 - Steve Ball - - - - SVG Stylesheet - - -
    - Introduction - - This module provides templates for creating SVG images. -
    -
    -
    - - - Aqua-style Button - - - Part of the mechanism to create an Aqua-style button. Include a call to this template in your SVG document's defs element. This template only needs to be included once. Use this in conjunction with svg:aqua-button. - - The default values for color1, color2 and color3 result in a grey button. - - - - - - prefix - - A prefix to append to the identifiers used, so that they don't clash with other identifiers. Default: "aqua-". - - - - color1 - - The base colour of the button. Default: "#d9d9d9". - - - - color2 - - A "background" colour for the button. Should be a darker colour than color1. Default: "#a9a9a9". - - - - color3 - - A highlight colour for the button. Should be a lighter colour than color1. Default: "#f9f9f9". - - - - - - - Returns SVG result-tree-fragment. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Aqua-style Button - - - Part of the mechanism to create an Aqua-style button. Include a call to this template in your SVG document where you want a button to appear. This template can be used many times in a single SVG document. Use this in conjunction with svg:aqua-button-defs. - - - - - - prefix - - A prefix to append to the identifiers used, so that they don't clash with other identifiers. Default: "aqua-". - - - - - - - Returns SVG result-tree-fragment. - - - - - - - - - - - - - - - - - -
    diff --git a/docbook-xsl-1.75.2/slides/keynote/xsltsl/uri.xsl b/docbook-xsl-1.75.2/slides/keynote/xsltsl/uri.xsl deleted file mode 100644 index df1f738..0000000 --- a/docbook-xsl-1.75.2/slides/keynote/xsltsl/uri.xsl +++ /dev/null @@ -1,580 +0,0 @@ - - - - - - - - $Id: uri.xsl 3991 2004-11-10 06:51:55Z balls $ - - - Diamond - Jason - - - 2001 - Jason Diamond - - - - URI (Uniform Resource Identifier) Processing - - -
    - Introduction - This module provides templates for processing URIs (Uniform Resource Identifers). -
    -
    - -
    - - - Determines if a URI is absolute or relative. - - - Absolute URIs start with a scheme (like "http:" or "mailto:"). - - - - - - uri - - An absolute or relative URI. - - - - - - - Returns 'true' if the URI is absolute or '' if it's not. - - - - - - - - - - - - - - Gets the scheme part of a URI. - - - The ':' is not part of the scheme. - - - - - - uri - - An absolute or relative URI. - - - - - - - Returns the scheme (without the ':') or '' if the URI is relative. - - - - - - - - - - - - Gets the authority part of a URI. - - - The authority usually specifies the host machine for a resource. It always follows '//' in a typical URI. - - - - - - uri - - An absolute or relative URI. - - - - - - - Returns the authority (without the '//') or '' if the URI has no authority. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Gets the path part of a URI. - - - The path usually comes after the '/' in a URI. - - - - - - uri - - An absolute or relative URI. - - - - - - - Returns the path (with any leading '/') or '' if the URI has no path. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Gets the query part of a URI. - - - The query comes after the '?' in a URI. - - - - - - uri - - An absolute or relative URI. - - - - - - - Returns the query (without the '?') or '' if the URI has no query. - - - - - - - - - - - - - - - - - - - Gets the fragment part of a URI. - - - The fragment comes after the '#' in a URI. - - - - - - uri - - An absolute or relative URI. - - - - - - - Returns the fragment (without the '#') or '' if the URI has no fragment. - - - - - - - - - - - - Resolves a URI reference against a base URI. - - - This template follows the guidelines specified by RFC 2396. - - - - - - reference - - A (potentially relative) URI reference. - - - - base - - The base URI. - - - - document - - The URI of the current document. This defaults to the value of the base URI if not specified. - - - - - - - The "combined" URI. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    diff --git a/docbook-xsl-1.75.2/slides/svg/default.xsl b/docbook-xsl-1.75.2/slides/svg/default.xsl deleted file mode 100644 index 86ea133..0000000 --- a/docbook-xsl-1.75.2/slides/svg/default.xsl +++ /dev/null @@ -1,686 +0,0 @@ - - - - - - - SVG Slides - - - Steve - Ball - - Zveno -
    - - zveno.com - -
    -
    -
    - - $Id: default.xsl 6567 2007-01-30 06:43:18Z xmldoc $ - - - 2002 - Steve Ball, Zveno Pty Ltd - - - - Zveno Pty Ltd makes this software and associated documentation available free of charge for any purpose. You may make copies of the software but you must include all of this notice on any copy. - Zveno Pty Ltd does not warrant that this software is error free or fit for any purpose. Zveno Pty Ltd disclaims any liability for all claims, expenses, losses, damages and costs any user may incur as a result of using, copying or modifying the software. - -
    -
    - - - - - - - - - slides.css - graphics - - white - - Arial - white - black - - - - - - - - preserve - 100% - - font-family: ; font-size: 18pt; fill: ; stroke: ; background-color: - - - - font-size: 24pt; font-weight: bold - - - font-size: 18pt - - - font-size: 18pt - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - href=" - - " type="text/css" - - - - - - - - - - - - - - - - title - - - - - - - - - - - - - title.click - - - foil1-previous-button.click; - - - - - - - - - - - - - - toc - - - - - - - - - - title.click - - - - - - toc.click; toc-content.click - - - - - - - - - - - - - - 50 - - 75 - - - - - - title.click - - - - - - toc.click; toc-content.click - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - index-foilgroup- - - - - - - #ff8000 - #ff8000 - - - - - - - - - - - - - - - - - - - - - - - - - - - - toc - - - - - - - - - - - - index-foilgroup-1.click; toc.click; toc-content.click - - - index-foilgroup- - - .click; foil - - .click - - - - - - - - - - - - - - - 50 - - 75 - - - - - - - - index-foilgroup-1.click; toc.click; toc-content.click - - - index-foilgroup- - - .click; foil - - .click - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - TOC - - - - - - - - - - - - - Previous - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - title.click - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - font-weight: bold - - - font-style: italic - - - font-style: italic - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/slides/xhtml/css.xsl b/docbook-xsl-1.75.2/slides/xhtml/css.xsl deleted file mode 100644 index d0b47c6..0000000 --- a/docbook-xsl-1.75.2/slides/xhtml/css.xsl +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - / - - - - / - - - http://docbook.sourceforge.net/release/slides/browser/ - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/slides/xhtml/default.xsl b/docbook-xsl-1.75.2/slides/xhtml/default.xsl deleted file mode 100644 index 86f2cb3..0000000 --- a/docbook-xsl-1.75.2/slides/xhtml/default.xsl +++ /dev/null @@ -1,246 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Hide/Show TOC - - - - - toggletoc(this, - - ,' - - ',' - - '); - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/slides/xhtml/flat.xsl b/docbook-xsl-1.75.2/slides/xhtml/flat.xsl deleted file mode 100644 index e0c57e9..0000000 --- a/docbook-xsl-1.75.2/slides/xhtml/flat.xsl +++ /dev/null @@ -1,71 +0,0 @@ - - - - - - - - - - - <xsl:value-of select="/slides/slidesinfo/title"/> - - - - - - - - - - - - -
    -
    - -
    -
    -
    - - - - - - - - - - -
    -
    - -
    - -
    -
    - - - - - - -
    -
    - -
    - -
    - - -
    - - -
    -

    - - -
    -
    - -
    diff --git a/docbook-xsl-1.75.2/slides/xhtml/frames.xsl b/docbook-xsl-1.75.2/slides/xhtml/frames.xsl deleted file mode 100644 index aea4172..0000000 --- a/docbook-xsl-1.75.2/slides/xhtml/frames.xsl +++ /dev/null @@ -1,1982 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - -//W3C//DTD HTML 4.01 Frameset//EN - - - - - - - - - - -//W3C//DTD XHTML 1.0 Frameset//EN - - - -//W3C//DTD XHTML 1.0 Transitional//EN - - - - - - - - - - - - - - http://www.w3.org/TR/html4/loose.dtd - - - - - - - - - - http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd - - - http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd - - - - - - - - - - - - - - - - - - - - - - - - - Multiframe and overlay are mutually exclusive. - - - - - - - - - - - - - - - - - - - - - - - <xsl:value-of select="$title"/> - - - - - - <body class="frameset"> - <xsl:call-template name="body.attributes"/> - <a href="{concat('titleframe', $html.ext)}"> - <xsl:text>Your browser doesn't support frames.</xsl:text> - </a> - </body> - - - - - - - - - - - - - TOC - <xsl:value-of select="$title"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - overlaySetup('ll'); - - - - - - init( - - ); - - overlaySetup('ll'); - - - - - - -
    - -
    -
    - -
    - - - - -
    - logo -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - <xsl:value-of select="title"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - javascript:body.focus() - - - - - - - - - <body class="frameset"> - <xsl:call-template name="body.attributes"/> - <p> - <xsl:text>Your browser doesn't support frames.</xsl:text> - </p> - </body> - - - - - - - - - - - - - - - - - - Navigation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Body - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Navigation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - newPage(' - - ', - - ); - - - - - overlaySetup('lc'); - - - - - - - this.focus() - - - navigate(event) - - - -
    - -
    - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - <xsl:value-of select="title"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - foilgroup - - - - - - - javascript:body.focus() - - - - - - <body class="frameset"> - <xsl:call-template name="body.attributes"/> - <p> - <xsl:text>Your browser doesn't support frames.</xsl:text> - </p> - </body> - - - - - - - foilgroup - - - - - - - - - - - - - - - - Navigation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - foilgroup - - - - - - - - - - - Body - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - foilgroup - - - - - - - - - - - - - - - - Navigation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - newPage(' - - ', - - ); - - - - - overlaySetup('lc'); - - - - - - - - navigate(event) - - - -
    - - - - - - - - - -
    - - - - - - -
    - - -
    - - - position:absolute;visibility:visible; - - - - - - - - -
    -
    -
    - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - <xsl:value-of select="title"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - javascript:body.focus() - - - - - - - - - <body class="frameset"> - <xsl:call-template name="body.attributes"/> - <p> - <xsl:text>Your browser doesn't support frames.</xsl:text> - </p> - </body> - - - - - - - - - - - - - - - - - - - - - Navigation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Body - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Navigation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - newPage(' - - ', - - ); - - - - - overlaySetup('lc'); - - - - - - - navigate(event) - - - -
    - - - - - - - - - -
    - -
    - - -
    - - - position:absolute;visibility:visible; - - - - - - - - -
    -
    -
    - - - -
    - - - - - - - - - - - - - - - foilgroup - - - - -
    - - - - - - - - - - - - - - - - - -
    -
    - - - - - - - -
    - - - - - - - - - - - - - - - - -
    -
    - - - - - - - - - myList.addItem(' - - <div id=" - - " class="toc-slidesinfo"> - - <a href=" - - " target="foil"> - - - - - - - - - - - - - ' - \' - - - <\/a><\/div> - '); - - - - - - - - - subList = new List(false, width, height, " - -"); - - subList.setIndent(12); - - - - myList.addList(subList, ' - - <div id=" - - " class="toc-foilgroup"> - - <a href=" - - " target="foil"> - - - - - - - - - - - - - ' - \' - - - <\/a><\/div> - '); - - - - - - - - - subList.addItem(' - - - myList.addItem(' - - - - <div id=" - - " class="toc-foil"> - - <img alt="-" src=" - - "><\/img> - - <a href=" - - " target="foil"> - - - - - - - - - - - - - ' - \' - - - <\/a><\/div> - '); - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/slides/xhtml/graphics.xsl b/docbook-xsl-1.75.2/slides/xhtml/graphics.xsl deleted file mode 100644 index 6317a4b..0000000 --- a/docbook-xsl-1.75.2/slides/xhtml/graphics.xsl +++ /dev/null @@ -1,152 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - / - - - - / - - - http://docbook.sourceforge.net/release/slides/graphics/ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/slides/xhtml/jscript.xsl b/docbook-xsl-1.75.2/slides/xhtml/jscript.xsl deleted file mode 100644 index b3047ee..0000000 --- a/docbook-xsl-1.75.2/slides/xhtml/jscript.xsl +++ /dev/null @@ -1,128 +0,0 @@ - - - - - - - - - - - - - - - - - - - / - - - - / - - - http://docbook.sourceforge.net/release/slides/browser/ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/slides/xhtml/param.xsl b/docbook-xsl-1.75.2/slides/xhtml/param.xsl deleted file mode 100644 index c3ec806..0000000 --- a/docbook-xsl-1.75.2/slides/xhtml/param.xsl +++ /dev/null @@ -1,70 +0,0 @@ - - - - - - - - - -#FFFFFF -toc/bullet.png -slides.css - - - - -hidetoc.gif -active/nav-home.png - -toc/open.png -white - -40 -white - -active/nav-next.png -inactive/nav-home.png -inactive/nav-next.png -inactive/nav-prev.png -inactive/nav-toc.png -inactive/nav-up.png -no - -overlay.js -http://docbook.sourceforge.net/release/buttons/slides-1.png -toc/closed.png -active/nav-prev.png - - -showtoc.gif -slides.js -Home -Next -Prev -ToC -Up - -#FFFFFF - - -active/nav-toc.png -22 -250 - -ua.js -active/nav-up.png -xbCollapsibleLists.js -xbDOM.js -xbStyle.js -xbLibrary.js - - diff --git a/docbook-xsl-1.75.2/slides/xhtml/plain.xsl b/docbook-xsl-1.75.2/slides/xhtml/plain.xsl deleted file mode 100644 index 29d43fc..0000000 --- a/docbook-xsl-1.75.2/slides/xhtml/plain.xsl +++ /dev/null @@ -1,470 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/slides/xhtml/slides-common.xsl b/docbook-xsl-1.75.2/slides/xhtml/slides-common.xsl deleted file mode 100644 index b868058..0000000 --- a/docbook-xsl-1.75.2/slides/xhtml/slides-common.xsl +++ /dev/null @@ -1,1534 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - <xsl:value-of select="title"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - titlepage - - - - - - - - - - - overlaySetup('lc') - - - - - navigate(event) - - - -
    - - - - - -
    - -
    - -
    - - - - - -
    -
    - - -
    -
    -
    - - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    -
    - - - - - - -

    -
    - - -

    -
    - - -

    -
    - - - - - - - - - - - - - - - : - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - <xsl:value-of select="slidesinfo/title"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - overlaySetup('lc') - - - - - navigate(event) - - - -
    - - - - - - - -
    - -
    - -
    - - - - - - - -
    -
    - - -
    -
    -
    - - -

    - - - -

    - -

    - - - TableofContents - - -

    -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - . - - - - - - -
    - -
    -
    - -
    -
    -
    -
    - - -
    - - . - - - - - - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - <xsl:value-of select="title"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - overlaySetup('lc') - - - - - navigate(event) - - - -
    - - - - - - - -
    - - - - - - -
    - -
    - - - - - - - -
    -
    - - - - -
    -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - <xsl:value-of select="title"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - overlaySetup('lc') - - - - - navigate(event) - - - -
    - - - - - - - - - -
    - - - - - - -
    - -
    - - - - - - - -
    -
    - - - - -
    -
    - - -
    - - -

    -
    - - - - - - - - - - - -
    - -
    -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - position: absolute; visibility: visible; - - - - padding-top: 2in; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - foil - - - - - - foilgroup - - - - - - - - - - - - </span> - - - <span - - class="green" - class="blue" - class="orange" - class="red" - class="brown" - class="violet" - class="black" - class="bold" - - > - - - - - - - - -
    - -
    -
    -
    - - - - - - - - - copyright - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ( - - ) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    - -

    -
    - - -
    - - -
    -
    - - - - - - - - - - - - - - - - 1 - 1 - 1 - 0 - - - - - 0 - - - - - - - - - - - - - - - - - - - - - - - - - - - - / - - - - - - - - - - - foil - - - - - - - - - - - foilgroup - - - - - - chunk-filename-error- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - / - - - -   - - - - -
    diff --git a/docbook-xsl-1.75.2/slides/xhtml/tables.xsl b/docbook-xsl-1.75.2/slides/xhtml/tables.xsl deleted file mode 100644 index 7d5ec6b..0000000 --- a/docbook-xsl-1.75.2/slides/xhtml/tables.xsl +++ /dev/null @@ -1,334 +0,0 @@ - - - - - - - - - - -#6A719C -220 - - - - - - - - - - - - -
    - - - - - -
    - -
    -
      - - - - - -
    - -
    - - -
    - -
    -
    -
    -
    - - - - - - - - -
    - - - - - -
    - -
    -
      - - - - - -
    - -
    -
    -
    - - - - - - - - - - - - + - - - - - - - - -  - - - - - - - - - - - - - - - - - -
    - - - -  - - - - - - -  - - - - - - - - - - - - - - - -
    -
    -
    -
    - -  - - - - - - - - - - - - - - -
    -
    -
    -
    -
    - - - - - - - -  - - - - - - - - - - - - - - -
    - - - -  - - - - - - - - - - + - - - - - - - - -  - - - - - - - - - - - - - - - - - -
    -
    -
    -
    - - - - - - + - - - - - - - - -  - - - - - - - - - - - -
    -
    -
    -
    -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -   - - - - - - - - - - - - -
    diff --git a/docbook-xsl-1.75.2/slides/xhtml/vslides.xsl b/docbook-xsl-1.75.2/slides/xhtml/vslides.xsl deleted file mode 100644 index 26e9961..0000000 --- a/docbook-xsl-1.75.2/slides/xhtml/vslides.xsl +++ /dev/null @@ -1,652 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - <xsl:value-of select="slidesinfo/title"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - navigate(event) - - - - - - - - - - - - - - - - - - -
     
    - - - - - - - - - - - - - - - - - - -
    - -
    - -
    - -
    -
     
    - - -
    -
    - - -
    - - - - - - - - - <xsl:value-of select="title"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - navigate(event) - - - - - - - - - - - - - - - - - - -
     
    - - - - - - - - - - - - - - - - - - -
    - -
    -
     
    - - -
    -
    -
    - - - - - - - - - - - - - - - - - - - - - <xsl:value-of select="title"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - navigate(event) - - - - - - - - - - - - - - - - - - -
     
    - - - - - - - - - - - - - - - - - - - -
    - -
    -
     
    - - -
    -
    - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - <xsl:value-of select="title"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - navigate(event) - - - - - - - - - - - - - - - - - - -
     
    - - - - - - - - - - - - - - - - - - - -
    - -
    -
     
    - - -
    -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - - - - - First - - - - - - - - - - First - - - - - - - - -
    - - - - - - - Previous - - - - - - - - - - Previous - - - - - - - - -
    - - - - - - - Last - - - - - - - - - - Last - - - - - - - - -
    - - - - - - - Next - - - - - - - - - - Next - - - - - - - - - -
    -
    - - - - - ToC - - - - - - - - - - ToC - - - - - - - - -
    -
    - -
    diff --git a/docbook-xsl-1.75.2/slides/xhtml/w3c.xsl b/docbook-xsl-1.75.2/slides/xhtml/w3c.xsl deleted file mode 100644 index d361a33..0000000 --- a/docbook-xsl-1.75.2/slides/xhtml/w3c.xsl +++ /dev/null @@ -1,358 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - {$logo.title} - - - - - - - - - - position: absolute; visibility: visible; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - -
    -
    -
    - - - - - - - - - - - - - - - - - - -
    diff --git a/docbook-xsl-1.75.2/template/titlepage.xml b/docbook-xsl-1.75.2/template/titlepage.xml deleted file mode 100644 index f1e1e3c..0000000 --- a/docbook-xsl-1.75.2/template/titlepage.xml +++ /dev/null @@ -1,478 +0,0 @@ - - - - - - - Titlepage Template Stylesheet Reference - - $Id: titlepage.xsl 7058 2007-07-17 13:59:29Z xmldoc $ - - - - Introduction - -This is technical reference documentation for the - “titlepage†templates in the DocBook XSL Stylesheets. - - -This is not intended to be user documentation. It is - provided for developers writing customization layers for the - stylesheets. - - - - - -t:templates -Construct a stylesheet for the templates provided - - -<xsl:template match="t:templates"/> - -Description - -The t:templates element is the root of a -set of templates. This template creates an appropriate -xsl:stylesheet for the templates. - - - -If the t:templates element has a -base-stylesheet attribute, an -xsl:import statement is constructed for it. - - - - - -xsl:* -Copy xsl: elements straight through - - -<xsl:template match="xsl:*"/> - -Description - -This template simply copies the xsl: elements -straight through into the result tree. - - - - - -t:titlepage -Create the templates necessary to construct a title page - - -<xsl:template match="t:titlepage"/> - -Description - -The t:titlepage element creates a set of -templates for processing the titlepage for an element. The -root of this template set is the template named -wrapper.titlepage. That is the -template that should be called to generate the title page. - - - - -The t:titlepage element has three attributes: - - - -element - -The name of the source document element for which -these templates apply. In other words, to make a title page for the -article element, set the -element attribute to -article. This attribute is required. - - - -wrapper - -The entire title page can be wrapped with an element. -This attribute identifies that element. - - - -class - -If the class attribute -is set, a class attribute with this -value will be added to the wrapper element that surrounds the entire -title page. - - - - - - - - - -Any other attributes are copied through literally to the -wrapper element. - - - -The content of a t:titlepage is one or -more t:titlepage-content, -t:titlepage-separator, and -t:titlepage-before elements. - - - -Each of these elements may be provided for the recto -and verso sides of the title page. - - - - - - -@* (in copy.literal.atts mode) -Copy t:titlepage attributes - - -<xsl:template match="@*" mode="copy.literal.atts"/> - -Description - -This template copies all of the other attributes -from a t:titlepage element onto the specified -wrapper. - - - - - -t:titlepage-content -Create templates for the content of one side of a title page - - -<xsl:template match="t:titlepage-content"/> - -Description - -The title page content, that is, the elements from the source -document that are rendered on the title page, can be controlled independently -for the recto and verso sides of the title page. - - - -The t:titlepage-content element has two attributes: - - - -side - -Identifies the side of the page to which this title -page content applies. The -side attribute is required and -must be set to either -recto or -verso. In addition, you must specify -exactly one t:titlepage-content for each side -within each t:titlepage. - - - -order - -Indicates how the order of the elements presented on -the title page is determined. If the -order is -document, the elements are presented -in document order. Otherwise (if the -order is -stylesheet), the elements are presented -in the order that they appear in the template (and consequently in -the stylesheet). - - - - - - - - - -The content of a t:titlepage-content element is -a list of element names. These names should be unqualified. They identify -the elements in the source document that should appear on the title page. - - - - -Each element may have a single attribute: -predicate. The value of this -attribute is used as a predicate for the expression that matches -the element on which it occurs. - - - -In other words, to put only the first three authors on the -recto-side of a title -page, you could specify: - - - <t:titlepage-contents side="recto"> - <!-- other titlepage elements --> - <author predicate="[count(previous-sibling::author)<2]"/> - <!-- other titlepage elements --> - </t:titlepage-contents> - - - - - -Usually, the elements so named are empty. But it is possible to -make one level of selection within them. Suppose that you want to -process authorgroup elements on the title page, but -you want to select only proper authors, editors, or corporate authors, -not collaborators or other credited authors. - - - -In that case, you can put a t:or group inside -the authorgroup element: - - - <t:titlepage-contents side="recto"> - <!-- other titlepage elements --> - <authorgroup> - <t:or> - <author/> - <editor/> - <corpauthor/> - </t:or> - </authorgroup> - <!-- other titlepage elements --> - </t:titlepage-contents> - - - - - -This will have the effect of automatically generating a template -for processing authorgroups in the title page mode, -selecting only the specified children. If you need more complex processing, -you'll have to construct the templates by hand. - - - - - - -t:titlepage-separator -Create templates for the separator - - -<xsl:template match="t:titlepage-separator"/> - -Description - -The title page is separated from the content which follows it by -the markup specified in the t:titlepage-separator -element. - - - - - -t:titlepage-before -Create templates for what precedes a title page - - -<xsl:template match="t:titlepage-before"/> - -Description - -Each side of the title page is preceded by the markup specified -in the t:titlepage-before element for that -side. - - - - - -* (in copy mode) -Copy elements - - -<xsl:template match="*" mode="copy"/> - -Description - -This template simply copies the elements that it applies to -straight through into the result tree. - - - - - -@* (in copy mode) -Copy attributes - - -<xsl:template match="@*" mode="copy"/> - -Description - -This template simply copies the attributes that it applies to -straight through into the result tree. - - - - - -* (in document.order mode) -Create rules to process titlepage elements in document order - - -<xsl:template match="*" mode="document.order"/> - -Description - -This template is called to process all of the children of the -t:titlepage-content element. It creates the hairy -select expression necessary to process each of those elements in -the title page. - - - -Note that this template automatically handles the case where -some DocBook elements, like title and subtitle, can occur both inside -the *info elements where metadata is usually stored and outside. - - - - -It also automatically calculates the name for the *info container -and handles elements that have historically had containers with different -names. - - - - - - -* (in document.order mode) -Create rules to process titlepage elements in stylesheet order - - -<xsl:template match="*" mode="document.order"/> - -Description - -This template is called to process all of the children of the -t:titlepage-content element. It creates the set -of xsl:apply-templates elements necessary -process each of those elements in the title page. - - - -Note that this template automatically handles the case where -some DocBook elements, like title and subtitle, can occur both inside -the *info elements where metadata is usually stored and outside. - - - - -It also automatically calculates the name for the *info container -and handles elements that have historically had containers with different -names. - - - - - - -* (in titlepage.specialrules mode) -Create templates for special rules - - -<xsl:template match="*" mode="titlepage.specialrules"/> - -Description - -This template is called to process all of the descendants of the -t:titlepage-content element that require special -processing. At present, that's just t:or elements. - - - - - - -* (in titlepage.subrules mode) -Create template for individual special rules - - -<xsl:template match="*" mode="titlepage.subrules"/> - -Description - -This template is called to process the children of special -template elements. - - - - - - -t:or -Process the t:or special rule - - -<xsl:template match="t:or"/><xsl:template match="t:or" mode="titlepage.subrules"/> - -Description - -This template processes t:or. - - - - - -t:or (in titlepage.subrules mode) -Process the t:or special rule in -titlepage.subrules mode - - -<xsl:template match="t:or" mode="titlepage.subrules"/> - -Description - -The titlepage.subrules mode doesn't apply to t:or, so just -reprocess this node in the normal mode. - - - - - -element-or-list -Construct the "or-list" used in the select attribute for -special rules. - - -<xsl:template name="element-or-list"> -<xsl:param name="elements" select="*"/> -<xsl:param name="element.count" select="count($elements)"/> -<xsl:param name="count" select="1"/> -<xsl:param name="orlist"/> - ... -</xsl:template> - -Description - -Walk through each of the children of t:or, producing the -text of the select attribute. - - - - diff --git a/docbook-xsl-1.75.2/template/titlepage.xsl b/docbook-xsl-1.75.2/template/titlepage.xsl deleted file mode 100644 index ce147e3..0000000 --- a/docbook-xsl-1.75.2/template/titlepage.xsl +++ /dev/null @@ -1,1280 +0,0 @@ - - - - - - - - - - - - - - - - - - Titlepage Template Stylesheet Reference - - $Id: titlepage.xsl 7058 2007-07-17 13:59:29Z xmldoc $ - - - - Introduction - This is technical reference documentation for the - “titlepage†templates in the DocBook XSL Stylesheets. - This is not intended to be user documentation. It is - provided for developers writing customization layers for the - stylesheets. - - - - - - - - - - - -Construct a stylesheet for the templates provided - - -The t:templates element is the root of a -set of templates. This template creates an appropriate -xsl:stylesheet for the templates. - -If the t:templates element has a -base-stylesheet attribute, an -xsl:import statement is constructed for it. - - - - - - - - - - - 1.0 - exsl - - - - This stylesheet was created by - template/titlepage.xsl - - - - - - - - - - - - - - - - - - - - -Copy xsl: elements straight through - - -This template simply copies the xsl: elements -straight through into the result tree. - - - - - - - - - - -Create the templates necessary to construct a title page - - -The t:titlepage element creates a set of -templates for processing the titlepage for an element. The -root of this template set is the template named -wrapper.titlepage. That is the -template that should be called to generate the title page. - - -The t:titlepage element has three attributes: - - -element -The name of the source document element for which -these templates apply. In other words, to make a title page for the -article element, set the -element attribute to -article. This attribute is required. - - -wrapper -The entire title page can be wrapped with an element. -This attribute identifies that element. - - -class -If the class attribute -is set, a class attribute with this -value will be added to the wrapper element that surrounds the entire -title page. - - - - - -Any other attributes are copied through literally to the -wrapper element. - -The content of a t:titlepage is one or -more t:titlepage-content, -t:titlepage-separator, and -t:titlepage-before elements. - -Each of these elements may be provided for the recto -and verso sides of the title page. - - - - - - - - - - - - - - .titlepage - - - - - - - recto.content - - - - - .titlepage.before.recto - - - - - - - .titlepage.recto - - - - - - - recto.elements.count - - - - - function-available('exsl:node-set') - - count(exsl:node-set($recto.content)/*) - - - - - contains(system-property('xsl:vendor'), 'Apache Software Foundation') - - Xalan quirk - - count(exsl:node-set($recto.content)/*) - - - - - 1 - - - - - - - - (normalize-space($recto.content) != '') or ($recto.elements.count > 0) - - - - - $recto.content - - - - - - - verso.content - - - - - .titlepage.before.verso - - - - - - - .titlepage.verso - - - - - - - verso.elements.count - - - - - function-available('exsl:node-set') - - count(exsl:node-set($verso.content)/*) - - - - - contains(system-property('xsl:vendor'), 'Apache Software Foundation') - - Xalan quirk - - count(exsl:node-set($verso.content)/*) - - - - - 1 - - - - - - - - (normalize-space($verso.content) != '') or ($verso.elements.count > 0) - - - - - $verso.content - - - - - - - - - .titlepage.separator - - - - - - - - - - - - - - * - - - .titlepage.recto.mode - - - if an element isn't found in this mode, - - try the generic titlepage.mode - - - . - titlepage.mode - - - - - - - - * - - - .titlepage.verso.mode - - - if an element isn't found in this mode, - - try the generic titlepage.mode - - - . - titlepage.mode - - - - - - - - - - - - - - - - - - - .titlepage. - - .auto.mode - - - - - - .titlepage. - - .style - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - . - - - .titlepage. - - .mode - - - - - - - - - - - - - - -Copy t:titlepage attributes - - -This template copies all of the other attributes -from a t:titlepage element onto the specified -wrapper. - - - - - - - - - - - - - - -Create templates for the content of one side of a title page - - -The title page content, that is, the elements from the source -document that are rendered on the title page, can be controlled independently -for the recto and verso sides of the title page. - -The t:titlepage-content element has two attributes: - - -side -Identifies the side of the page to which this title -page content applies. The -side attribute is required and -must be set to either -recto or -verso. In addition, you must specify -exactly one t:titlepage-content for each side -within each t:titlepage. - - -order -Indicates how the order of the elements presented on -the title page is determined. If the -order is -document, the elements are presented -in document order. Otherwise (if the -order is -stylesheet), the elements are presented -in the order that they appear in the template (and consequently in -the stylesheet). - - - - - -The content of a t:titlepage-content element is -a list of element names. These names should be unqualified. They identify -the elements in the source document that should appear on the title page. - - -Each element may have a single attribute: -predicate. The value of this -attribute is used as a predicate for the expression that matches -the element on which it occurs. - -In other words, to put only the first three authors on the -recto-side of a title -page, you could specify: - - - - - - -]]> - - -Usually, the elements so named are empty. But it is possible to -make one level of selection within them. Suppose that you want to -process authorgroup elements on the title page, but -you want to select only proper authors, editors, or corporate authors, -not collaborators or other credited authors. - -In that case, you can put a t:or group inside -the authorgroup element: - - - - - - - - - - - - -]]> - - -This will have the effect of automatically generating a template -for processing authorgroups in the title page mode, -selecting only the specified children. If you need more complex processing, -you'll have to construct the templates by hand. - - - - - - - - - - - - - Illegal value specified for @t:side - on t:titlepage-content: - - - - - - The @t:side attribute is required on - t:titlepage-content. - - - - - - - - .titlepage. - - .auto.mode - - - - - - - .titlepage. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Create templates for the separator - - -The title page is separated from the content which follows it by -the markup specified in the t:titlepage-separator -element. - - - - - - - - - .titlepage.separator - - - - - - - - - - -Create templates for what precedes a title page - - -Each side of the title page is preceded by the markup specified -in the t:titlepage-before element for that -side. - - - - - - - - - .titlepage.before. - - - - - - - - - - - -Copy elements - - -This template simply copies the elements that it applies to -straight through into the result tree. - - - - - - - - - - - - - -Copy attributes - - -This template simply copies the attributes that it applies to -straight through into the result tree. - - - - - - - - - - - - -Create rules to process titlepage elements in document order - - -This template is called to process all of the children of the -t:titlepage-content element. It creates the hairy -select expression necessary to process each of those elements in -the title page. - -Note that this template automatically handles the case where -some DocBook elements, like title and subtitle, can occur both inside -the *info elements where metadata is usually stored and outside. - - -It also automatically calculates the name for the *info container -and handles elements that have historically had containers with different -names. - - - - - - - - info - - - - - - artheader - - - blockinfo - - - - - - - - - - docinfo - - - - - - - - - - recto - - - - - - - .titlepage. - - .auto.mode - - - - | - - - - / - - - - - - - | - - / - - - - - - - - |info - / - - - - - - - | - - - - - - - - - - -Create rules to process titlepage elements in stylesheet order - - -This template is called to process all of the children of the -t:titlepage-content element. It creates the set -of xsl:apply-templates elements necessary -process each of those elements in the title page. - -Note that this template automatically handles the case where -some DocBook elements, like title and subtitle, can occur both inside -the *info elements where metadata is usually stored and outside. - - -It also automatically calculates the name for the *info container -and handles elements that have historically had containers with different -names. - - - - - - - - info - - - - - - artheader - - - blockinfo - - - - - - - - - - docinfo - - - - - - - - - recto - - - - - - .titlepage. - - .auto.mode - - - - - - - - - - - - .titlepage. - - .style - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Force can only be used with named-templates. - - - - - - - - - - - - - - - / - - - - - - - - - - / - - - - - - - - - - - - - - - / - - - - - - - - - - / - - - - - - - - - - - - - - - - / - - - - - - - - - - / - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - / - - - - - - - - - - - - - - - - - / - - - - - - - - - - - - - - - - - / - - - - - - - - - - - - - - - -Create templates for special rules - - -This template is called to process all of the descendants of the -t:titlepage-content element that require special -processing. At present, that's just t:or elements. - - - - - - - - - - - recto - - - - - - .titlepage. - - .auto.mode - - - - - - - - - - - - - - - - - - - - - - - - - - - -Create template for individual special rules - - -This template is called to process the children of special -template elements. - - - - - - - - - - - recto - - - - - - .titlepage. - - .auto.mode - - - - - - - - - - - - - - - -Process the t:or special rule - - -This template processes t:or. - - - - - - - - - - recto - - - - - - .titlepage. - - .auto.mode - - - - - - - - - - - - - - - - -Process the t:or special rule in -titlepage.subrules mode - - -The titlepage.subrules mode doesn't apply to t:or, so just -reprocess this node in the normal mode. - - - - - - - - - - -Construct the "or-list" used in the select attribute for -special rules. - - -Walk through each of the children of t:or, producing the -text of the select attribute. - - - - - - - - - - - - - - - - - - - - - | - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/test.sh b/docbook-xsl-1.75.2/test.sh deleted file mode 100644 index 821cd78..0000000 --- a/docbook-xsl-1.75.2/test.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/bash -mydir=$(cd -P $(dirname $0) && pwd -P) -$mydir/install.sh --test diff --git a/docbook-xsl-1.75.2/tests/refentry.007.ns.xml b/docbook-xsl-1.75.2/tests/refentry.007.ns.xml deleted file mode 100644 index f66d6e0..0000000 --- a/docbook-xsl-1.75.2/tests/refentry.007.ns.xml +++ /dev/null @@ -1,325 +0,0 @@ - -Unit Test: refentry.007 - -$Id: refentry.007.xml 7282 2007-08-23 09:27:01Z xmldoc $ -NormanWalsh
    ndw@nwalsh.com
    -
    -Reference - - - - - NormanWalshndw@nwalsh.com - Wrote the original version of this document. - - Michael(tm)SmithAdded a bunch of test cases.smith@sideshowbarker.net - - - 2003 - Norman Walsh - - - 2006 - Michael(tm) Smith - - - This file is a product of the DocBook Project. - - - Share and share alike. - - - -FirstName -SecondName -Purpose for FirstName - - - -ThirdName -Purpose for ThirdName - - - - - - - #include <varargs.h> -#include <mouteyh.h> -#include <qlmppzj.h> - - float rand - - - - - int max - - - - - int idiv - int n - int m - - - - Another. - - - - void qsort - void *dataptr[] - int left - int right - int (*comp) - void *, void * - - - - - - int foo_frob_something - foo_sometype1 foo_frob_parm1 - foo_sometype1 foo_frob_parm2 - foo_sometype1 foo_frob_parm3 - int (* parm4 ) - int a, int b, int c - - foo_sometype1 foo_frob_parm5 - - - - int foo_frob_something - foo_sometype1 foo_frob_parm1 - foo_sometype1 foo_frob_parm2 - foo_sometype1 foo_frob_parm3 - int (* parm4 ) - int a, int b, int c - - foo_sometype1 foo_frob_parm5 - - - - -Description - -This is a minimal RefEntry. - -The following is a Variablelist with a title. -My variablelist - - - varlistentry term 1 - some listitem text - - - varlistentry term 2 - some more listitem text - - - -Subsection - -This is a minimal RefEntry. - -The following is a Variablelist with a title and a nested variablelist - - - - glossentry term 1 - some glossdef text - - - glossentry term 2 - - - - nested variablelist term 1 - some variablelist text - - - nested variablelist term 2 - some more variablelist text - - - - - - - -Sub-subsection - -This is a minimal RefEntry. - - - - -More Description - -This is a not-so minimal RefEntry. - -This is a screen [break here] -that starts with a line of space. [break here] -And it ends with a line of space. - - -normal paragraph here - -This is a screen [break here] -that does not start with a line of space. [break here] -And does not end with a line of space. - -This is a normal paragraph that contains a screen. -This is a screen within a normal paragraph [break here] -that does not start with a line of space. [break here] -And does not end with a line of space but is followed -by a line of space. - - -This is another normal paragraph that contains a screen. -This is a screen within a normal paragraph [break here] -that does not start with a line of space. [break here] -And does not end with a line of space and is not followed -by a line of space. - -This is another normal paragraph that contains a screen. - -This is a screen within a normal paragraph [break here] -that starts with a line of space. [break here] -And ends with a line of space but is not followed by a line of space. - - -This is another normal paragraph that contains a screen. - -This is a screen within a normal paragraph [break here] -that starts with a line of space. [break here] -And ends with a line of space and is followed by a line of space. - - - -This is another normal paragraph that contains a screen. - - -This is a screen within a normal paragraph [break here] -that starts with a 2 lines of space. [break here] -And ends with 3 lines of space and is followed by a line of space. - - - - - -This paragraph contains an itemizedlist with a title. The title -is “Mrignkwolmcngâ€. -Mrignkwolmcng - - - itemizedlist listitem 1 - - - itemizedlist listitem 2 - - - -This is some useless text that follows the “Mrignkwolmcng†orderedlist -in the same para. - -The following is a Variablelist with a title and with a nested itemizedlist. -My variablelist - - - varlistentry term 1 - - nested itemizedlist - - - itemizedlist listitem 1 - - - itemizedlist listitem 2 - - - - - - varlistentry term 2 - some more listitem text - - - - -The following is a Variablelist with a title and with a -nested Varlistentry that contains multiple Terms -My nested-multi-term-per-varlistentry variablelist - - - Varlistentry term 1 - - - - varlistentry term 1.1 - varlistentry term 1.2 - varlistentry term 1.3 - All 'bout terms 1.1, 1.2, and 1.3 - - - - - - - varlistentry term 2 - some more listitem text - - - - -Subsection - -This is a minimal RefEntry. - - - -Even More Description - -This is an even less minimal RefEntry. - -This is a paragraph. It contains the following segmentedlist, -titled “Gibbererishâ€, with several segtitle elements. - - - Floober - Buugler - Sstangooo - Borobinda - - Bamalalaboonda Bamalalaboonda Bamalalaboonda Bamalalaboonda Bamalalaboonda Bamalalaboonda - Mondorotoluafu - Ganafutralinga - Patagularamakundra - - - Cadraracondar - Hentirotomaambu - BdomentriolaiaBdomentriolaiaBdomentriolaia - Candamalaturuanio - - -This is some text that follows the segementedlist within the same -paragraph. The next part of this same paragraph is an -important admonition. - - It is very important that you read this. That’s why it stands - out the way that it does. - - - -This is a para with a footnote - Stuff here This is a program listing -that's two lines long. - and stuff after the -footnote - - - - -
    diff --git a/docbook-xsl-1.75.2/tests/refentry.007.xml b/docbook-xsl-1.75.2/tests/refentry.007.xml deleted file mode 100644 index 4521376..0000000 --- a/docbook-xsl-1.75.2/tests/refentry.007.xml +++ /dev/null @@ -1,340 +0,0 @@ - - - - -Unit Test: refentry.007 -$Id: refentry.007.xml 7282 2007-08-23 09:27:01Z xmldoc $ -NormanWalsh -
    ndw@nwalsh.com
    -
    -
    - -Reference - - - - - NormanWalsh - ndw@nwalsh.com - - Wrote the original version of this document. - - - - Added a bunch of test cases. - Michael(tm)Smith - smith@sideshowbarker.net - - - - 2003 - Norman Walsh - - - 2006 - Michael(tm) Smith - - - This file is a product of the DocBook Project. - - - Share and share alike. - - - -FirstName -SecondName -Purpose for FirstName - - - -ThirdName -Purpose for ThirdName - - - - - - - #include <varargs.h> -#include <mouteyh.h> -#include <qlmppzj.h> - - float rand - - - - - int max - - - - - int idiv - int n - int m - - - - Another. - - - - void qsort - void *dataptr[] - int left - int right - int (*comp) - void *, void * - - - - - - int foo_frob_something - foo_sometype1 foo_frob_parm1 - foo_sometype1 foo_frob_parm2 - foo_sometype1 foo_frob_parm3 - int (* parm4 ) - int a, int b, int c - - foo_sometype1 foo_frob_parm5 - - - - int foo_frob_something - foo_sometype1 foo_frob_parm1 - foo_sometype1 foo_frob_parm2 - foo_sometype1 foo_frob_parm3 - int (* parm4 ) - int a, int b, int c - - foo_sometype1 foo_frob_parm5 - - - - - -Description -This is a minimal RefEntry. - -The following is a Variablelist with a title. - - My variablelist - - varlistentry term 1 - some listitem text - - - varlistentry term 2 - some more listitem text - - - - -Subsection -This is a minimal RefEntry. - -The following is a Variablelist with a title and a nested variablelist - - My glosslist - - glossentry term 1 - some glossdef text - - - glossentry term 2 - - - - nested variablelist term 1 - some variablelist text - - - nested variablelist term 2 - some more variablelist text - - - - - - - - -Sub-subsection -This is a minimal RefEntry. - - - - - -More Description -This is a not-so minimal RefEntry. - -This is a screen [break here] -that starts with a line of space. [break here] -And it ends with a line of space. - - -normal paragraph here - -This is a screen [break here] -that does not start with a line of space. [break here] -And does not end with a line of space. - -This is a normal paragraph that contains a screen. -This is a screen within a normal paragraph [break here] -that does not start with a line of space. [break here] -And does not end with a line of space but is followed -by a line of space. - - -This is another normal paragraph that contains a screen. -This is a screen within a normal paragraph [break here] -that does not start with a line of space. [break here] -And does not end with a line of space and is not followed -by a line of space. - -This is another normal paragraph that contains a screen. - -This is a screen within a normal paragraph [break here] -that starts with a line of space. [break here] -And ends with a line of space but is not followed by a line of space. - - -This is another normal paragraph that contains a screen. - -This is a screen within a normal paragraph [break here] -that starts with a line of space. [break here] -And ends with a line of space and is followed by a line of space. - - - -This is another normal paragraph that contains a screen. - - -This is a screen within a normal paragraph [break here] -that starts with a 2 lines of space. [break here] -And ends with 3 lines of space and is followed by a line of space. - - - - - -This paragraph contains an itemizedlist with a title. The title -is “Mrignkwolmcngâ€. - - Mrignkwolmcng - - itemizedlist listitem 1 - - - itemizedlist listitem 2 - - - -This is some useless text that follows the “Mrignkwolmcng†orderedlist -in the same para. - -The following is a Variablelist with a title and with a nested itemizedlist. - - My variablelist - - varlistentry term 1 - - - nested itemizedlist - - itemizedlist listitem 1 - - - itemizedlist listitem 2 - - - - - - varlistentry term 2 - some more listitem text - - - - -The following is a Variablelist with a title and with a -nested Varlistentry that contains multiple Terms - - My nested-multi-term-per-varlistentry variablelist - - Varlistentry term 1 - - - - varlistentry term 1.1 - varlistentry term 1.2 - varlistentry term 1.3 - All 'bout terms 1.1, 1.2, and 1.3 - - - - - - - varlistentry term 2 - some more listitem text - - - - - -Subsection -This is a minimal RefEntry. - - - - -Even More Description -This is an even less minimal RefEntry. - -This is a paragraph. It contains the following segmentedlist, -titled “Gibbererishâ€, with several segtitle elements. - - Gibbererish - Floober - Buugler - Sstangooo - Borobinda - - Bamalalaboonda Bamalalaboonda Bamalalaboonda Bamalalaboonda Bamalalaboonda Bamalalaboonda - Mondorotoluafu - Ganafutralinga - Patagularamakundra - - - Cadraracondar - Hentirotomaambu - BdomentriolaiaBdomentriolaiaBdomentriolaia - Candamalaturuanio - - -This is some text that follows the segementedlist within the same -paragraph. The next part of this same paragraph is an -important admonition. - - It is very important that you read this. That’s why it stands - out the way that it does. - - - -This is a para with a footnote - Stuff here This is a program listing -that's two lines long. - and stuff after the -footnote - - - - -
    diff --git a/docbook-xsl-1.75.2/tools/bin/docbook-xsl-update b/docbook-xsl-1.75.2/tools/bin/docbook-xsl-update deleted file mode 100644 index 0d44f56..0000000 --- a/docbook-xsl-1.75.2/tools/bin/docbook-xsl-update +++ /dev/null @@ -1,53 +0,0 @@ -#!/bin/bash -# vim: number - -# docbook-xsl-update - Update environment to latest docbook-xsl snapshot -# $Id: docbook-xsl-update 6565 2007-01-29 23:00:16Z xmldoc $ - -if [ -z $DOCBOOK_MIRROR ]; then - myhost=docbook.xml-doc.org:5873; -else - myhost=$DOCBOOK_MIRROR; -fi - -mydir=$(readlink -f $(dirname $0)) -mydocbook_xsl_base=$(readlink -f $(dirname $0)/../..) - -if [ ! -f $mydocbook_xsl_base/VERSION ]; then - cat <<- EOF -$(basename $0): error: not in snapshot directory. Stopping. - -The $(basename $0) script must be installed within its original -location in the tools/bin directory in the docbook-xsl distribution. -EOF - exit 1 -fi - -usage="Usage: - - $(basename $0) [-h HOST[:PORT]] - - -h HOST[:PORT] Specifies the rsync host and port number to use. - If not specified, uses the value of the - \$DOCBOOK_MIRROR environment variable. If that - environment variable is not specified, defaults - to a hard-coded value. - -" - -while getopts "h:" opt; do - case $opt in - h ) myhost=$OPTARG ;; - \? ) printf "$usage" - printf "$opts_admon" - exit 1 ;; - esac -done - -shift $(($OPTIND - 1)) - -if [ -z $myhost ]; then - myhost=$DOCBOOK_MIRROR -fi - -rsync -auv rsync://$myhost/xsl $mydocbook_xsl_base diff --git a/docbook-xsl-1.75.2/tools/make/Makefile.DocBook b/docbook-xsl-1.75.2/tools/make/Makefile.DocBook deleted file mode 100644 index 242066e..0000000 --- a/docbook-xsl-1.75.2/tools/make/Makefile.DocBook +++ /dev/null @@ -1,698 +0,0 @@ -# $Source$ -# $Author: xmldoc $ -# $Date: 2008-03-03 01:20:29 -0800 (Mon, 03 Mar 2008) $ -# $Revision: 7787 $ -# vim: number -# -# ----------------------------------------------------------------- -# ** Makefile.DocBook -- generate output from DocBook sources ** -# ----------------------------------------------------------------- -# -# This file is part of the DocBook Project XSL Stylesheet -# distribution. -# -# See http://docbook.sourceforge.net/release/xsl/current/ -# for copyright and other information. - -# DOCBOOK_OUTPUT_FORMATS is the default set of targets (output -# formats) that get built when you type "make" without any targets -# explicitly specified. To generate a different set of output -# formats, change the value of DOCBOOK_OUTPUT_FORMATS here or set -# it in your environment; for example: -# -# set DOCBOOK_OUTPUT_FORMATS="html pdf"; export DOCBOOK_OUTPUT_FORMATS -# -# Of course by explicitly specifying particular targets when you -# invoke "make", you can always override generation of the default -# set of targets; for example: -# -# make html txt -# -# That would generate just HTML (unchunked) and plain-text output. -# -DOCBOOK_OUTPUT_FORMATS ?= xml man man-pdf chunk txt pdf - -# If you want XHTML output instead of HTML, set HTML_OR_XHTML to -# 'xhtml' or just specify 'xhtml" in DOCBOOK_OUTPUT_FORMATS. -ifeq ($(findstring xhtml,$(DOCBOOK_OUTPUT_FORMATS)),) -HTML_OR_XHTML ?= html -else -HTML_OR_XHTML ?= xhtml -endif - -# if your source is in asciidoc instead of DocBook, set -# ASCII_OR_DOCBOOK to "ascii" -ASCII_OR_DOCBOOK ?= docbook - -# ----------------------------------------------------------------- -# *** TOOLS and other DEPENDENCIES *** -# ----------------------------------------------------------------- -# we use rmdir(1) to remove dirs we create for chunked HTML output -RMDIR = rmdir -# "-p" causes empty parent dirs to be deleted as well -RMDIR_FLAGS = --ignore-fail-on-non-empty -p - -# possible values for PDF_MAKER are: -# dblatex|fop|xep|xmlroff|passivetex -PDF_MAKER = dblatex - -# possible values for TXT_MAKER are: -# links|lynx|w3m|w3mmee -TXT_MAKER = links -TXT_MAKER_FLAGS = -dump - -# xsl -XSLT = xsltproc -XSLT_FLAGS = --xinclude - -# http://dblatex.sourceforge.net/ -DBLATEX = dblatex -DBLATEX_FLAGS = -b pdftex - -FOP = fop -FOP_FLAGS = - -XEP = xep -XEP_FLAGS = - -# http://xmlroff.sourceforge.net/ -XMLROFF = xmlroff -XMLROFF_FLAGS = - -PDFTEX = pdftex -PDFTEX_FLAGS = - -# used by PassiveTeX -PDFXMLTEX = pdfxmltex - -# http://docbook2x.sourceforge.net/ -DB2X_XSLTPROC = db2x_xsltproc -DB2X_XSLTPROC_FLAGS = -DB2X_TEXIXML = db2x_texixml -DB2X_TEXIXML_FLAGS = - -# we call the man(1) command to generate "foo.N.pdf" and -# "foo.N.txt" output (see "man-pdf" & "man-txt" targets) -MAN = man -MAN_FLAGS = - -# The "ps2pdf" command is part of GhostSript (gs) distro. -# It is just a wrapper script around gs that does this: -# -# gs -dCompatibilityLevel=1.2 -q -dNOPAUSE -dBATCH -sDEVICE=pdfwrite \ -# "-sOutputFile=$outfile" -dCompatibilityLevel=1.2 -c .setpdfwrite -f "$infile" -# -# Where, for example: $outfile = foo.pdf and $infile = foo.1 -PS2PDF = ps2pdf -PS2PDF_FLAGS = - -# asciidoc is used to generate DocBook XML from asciidoc source -ASCIIDOC=asciidoc -ASCIIDOCFLAGS= - -# asciidoc source seems to have DOS line endings, so we use -# DOS2UNIX to be able to grep them correctly -DOS2UNIX=dos2unix -DOS2UNIXFLAGS= - -# The "col" command is needed for stripping backspaces and -# underscores from man(1) output to get pure plain-text -COL = col -COL_FLAGS = - -# The "expand" command is needed for expanding tabs from files -# generated from "man foo.1 | col -b" output -# output to get pure plain-text -EXPAND = expand -EXPAND_FLAGS = - -# value of DOCBOOK_XSL should either be the canonical -# (docbook.sourceforge.net) URL for the DocBook Project XSL -# stylesheets OR it can be a local system path -DOCBOOK_XSL = http://docbook.sourceforge.net/release/xsl/current - -# ----------------------------------------------------------------- -# names of some DIRECTORIES and FILES we need -# ----------------------------------------------------------------- -# We create a tmp directory once per make invocation; it's needed -# for holding a temporary copy of the custom DBLaTeX stylesheet -# (because dblatex currently can't read a stylesheet from stdin) -TMP ?= /tmp -TMPNUM := $(shell echo $$$$) -DOCBOOK_TMP := $(TMP)/docbook-make-$(TMPNUM) - -# MAN_MANIFEST_EXT is file extension added to individual manifest -# files -MAN_MANIFEST_EXT = manifest_man - -# HTML_MANIFEST_EXT is file extension added to HTML manifest files -HTML_MANIFEST_EXT = manifest_html - -# BASEDIR_SUFFIX is a what you need to set if you want a suffix -# added to the end of each "base.dir" we create while generating -# chunked HTML output -#BASEDIR_SUFFIX = -html -#BASEDIR_SUFFIX = _html -BASEDIR_SUFFIX = - -# ----------------------------------------------------------------- -# assorted OPTIONS -# ----------------------------------------------------------------- -# HTML_STYLESHEET -> $html.stylesheet stylesheet param -# http://docbook.sourceforge.net/snapshots/xsl/doc/html/html.stylesheet.html -HTML_STYLESHEET = style.css -# HTML_IMAGES -> $admon.graphics.path -# http://docbook.sourceforge.net/snapshots/xsl/doc/html/admon.graphics.path.html -HTML_IMAGES = images/ -# HTML_IMAGES_EXT -> $admon.graphics.extension -# http://docbook.sourceforge.net/snapshots/xsl/doc/html/admon.graphics.extension.html -HTML_IMAGES_EXT = .png - -# use these to set params on the command-line -# format is, e.g., HTML_PARAMS="--stringparam variablelist.as.table 1..." -FO_PARAMS = -HTML_PARAMS = -MAN_PARAMS = - -# DBX_PARAMS is for dblatex(1); format uses "-p": -# DBX_PARAMS="-p doc.publisher.show 1 -p term.breakline 1... -DBX_PARAMS= - -# What file extension do you use for DocBook source files? -DOCBOOK_FILE_EXTENSION = .xml - -# ----------------------------------------------------------------- -# make(1) functions for building file lists -# ----------------------------------------------------------------- -# -# the values of the following are used for determing what needs -# to be built and/or cleaned up - -ifeq ($(ASCII_OR_DOCBOOK),docbook) -SOURCE_FILES_DBK = $(wildcard *$(DOCBOOK_FILE_EXTENSION)) -else -SOURCE_FILES_DBK = $(foreach base,$(basename $(wildcard *.txt)),$(base)$(DOCBOOK_FILE_EXTENSION)) -endif - -FILES_FO = $(foreach base,$(basename $(SOURCE_FILES_DBK)),$(base).fo) -FILES_TXT = $(foreach base,$(basename $(SOURCE_FILES_DBK)),$(base).out.txt) -FILES_PDF = $(foreach base,$(basename $(SOURCE_FILES_DBK)),$(base).pdf) -FILES_LOG = $(foreach base,$(basename $(SOURCE_FILES_DBK)),$(base).log) -FILES_OUT = $(foreach base,$(basename $(SOURCE_FILES_DBK)),$(base).out) -FILES_AUX = $(foreach base,$(basename $(SOURCE_FILES_DBK)),$(base).aux) -FILES_HTML = $(foreach base,$(basename $(SOURCE_FILES_DBK)),$(base).html) -FILES_INFO = $(foreach base,$(basename $(SOURCE_FILES_DBK)),$(base).info) -DIRS_CHUNK = $(foreach base,$(basename $(SOURCE_FILES_DBK)),$(base)$(BASEDIR_SUFFIX)) -LISTS_HTML = $(foreach base,$(basename $(SOURCE_FILES_DBK)),$(base).$(HTML_MANIFEST_EXT)) -LISTS_MAN = $(foreach base,$(basename $(SOURCE_FILES_DBK)),$(base).$(MAN_MANIFEST_EXT)) -FILES_CHNK = $(shell for manifest in $(LISTS_HTML); do if [ -f "$$manifest" ]; then cat $$manifest; fi done) -FILES_MAN = $(shell for manifest in $(LISTS_MAN); do if [ -f "$$manifest" ]; then cat $$manifest; fi done) -FILES_MANP = $(foreach base,$(FILES_MAN),$(base).man.pdf) -FILES_MANT = $(foreach base,$(FILES_MAN),$(base).out.txt) -DIRS_MAN = $(shell for file in $(FILES_MAN); do dirname $$file; done | uniq) - -# ----------------------------------------------------------------- -# ** stylesheet for testing whether a file has a refentry -# ----------------------------------------------------------------- -REFENTRY_CHECK := \ - \ - \ - \ - true \ - \ - \ - - -# ----------------------------------------------------------------- -# ** Stylesheet Customization Layers ** -# ----------------------------------------------------------------- -# -# for DBLaTeX -DBX_CUSTOM := \ - 0 \ - 1 \ - 0 \ - 1 \ - 1 \ - left \ - 1 \ - \ - docbook \ - all \ - "" \ - WIDELABEL \ - 0 \ - [htbp] \ - 0 \ - 1 \ - \ - twoside \ - , \ - 1 \ - Synopsis \ - \ - ansi \ - 1 \ - 0 \ - java \ - 0 \ - - -# for FO output -FO_CUSTOM := \ - \ - 1 \ - A4 \ - \ - false \ - 1 \ - left \ - 1 \ - 0 \ - 1 \ - 1 \ - 1 \ - 1 \ - 1 \ - 1 \ - \ - blue \ - \ - \ - \#E0E0E0 \ - 4pt \ - 4pt \ - 4pt \ - 4pt \ - \ - \ - \ - \ - pt \ - \ - \ - \ - \ - \ - pt \ - \ - \ - \ - \ - \ - pt \ - \ - \ - \ - \ - \ - pt \ - \ - \ - \ - \ - \ - pt \ - \ - \ - \ - wrap \ - \ \ - \ - \ - pt \ - \ - \ - - -# for single-file (X)HTML outpout -HTML_CUSTOM := \ - \ - local.l10n.xml \ - \ - 1 \ - 0 \ - \ - 0 \ - $(HTML_STYLESHEET) \ - 0 \ - 1 \ - - -# for chunked (X)HTML output -CHNK_CUSTOM := \ - \ - 0 \ - 1 \ - 0 \ - $(HTML_STYLESHEET) \ - 1 \ - $(HTML_IMAGES) \ - $(HTML_IMAGES_EXT) \ - \ - 1 \ - 1 \ - yes \ - 1 \ - - -# for man-page output -MAN_CUSTOM := \ - \ - \ - \ - man/ \ - \ - - -# ----------------------------------------------------------------- -# ** TARGETS START HERE ** -# ----------------------------------------------------------------- -# prevents make from deleting, e.g. foo.1, after making foo.1.pdf -# and foo.1.txt from it. -.PRECIOUS: %.1 %.2 %.3 %.4 %.5 %.6 %.7 %.8 %.9 - -docbook: $(DOCBOOK_OUTPUT_FORMATS) - -xml: $(SOURCE_FILES_DBK) - -man: $(LISTS_MAN) - -# we can generate PDFs from man pages -man-pdf: man - $(MAKE) $(FILES_MANP) - -# we can generate plain text from man pages -man-txt: man - $(MAKE) $(FILES_MANT) - -html: $(FILES_HTML) - -chunk: $(LISTS_HTML) - -txt: $(FILES_TXT) - -pdf: $(FILES_PDF) - -info: $(FILES_INFO) - -# use the "debug" target to echo variables, etc., to -# test/troubleshoot changes you make to this makefile -debug: - echo $(wildcard *$(DOCBOOK_FILE_EXTENSION)) - echo $(ASCII_OR_DOCBOOK) - echo $(SOURCE_FILES_DBK) - -# ----------------------------------------------------------------- -# pattern rule to make DocBook refentry from asciidoc source -# ----------------------------------------------------------------- -%.1$(DOCBOOK_FILE_EXTENSION): %.1.txt - $(ASCIIDOC) $(ASCIIDOCFLAGS) -d manpage -b docbook $< - -%.2$(DOCBOOK_FILE_EXTENSION): %.2.txt - $(ASCIIDOC) $(ASCIIDOCFLAGS) -d manpage -b docbook $< - -%.3$(DOCBOOK_FILE_EXTENSION): %.3.txt - $(ASCIIDOC) $(ASCIIDOCFLAGS) -d manpage -b docbook $< - -%.4$(DOCBOOK_FILE_EXTENSION): %.4.txt - $(ASCIIDOC) $(ASCIIDOCFLAGS) -d manpage -b docbook $< - -%.5$(DOCBOOK_FILE_EXTENSION): %.5.txt - $(ASCIIDOC) $(ASCIIDOCFLAGS) -d manpage -b docbook $< - -%.6$(DOCBOOK_FILE_EXTENSION): %.6.txt - $(ASCIIDOC) $(ASCIIDOCFLAGS) -d manpage -b docbook $< - -%.7$(DOCBOOK_FILE_EXTENSION): %.7.txt - $(ASCIIDOC) $(ASCIIDOCFLAGS) -d manpage -b docbook $< - -%.8$(DOCBOOK_FILE_EXTENSION): %.8.txt - $(ASCIIDOC) $(ASCIIDOCFLAGS) -d manpage -b docbook $< - -%.9$(DOCBOOK_FILE_EXTENSION): %.9.txt - $(ASCIIDOC) $(ASCIIDOCFLAGS) -d manpage -b docbook $< - -# ----------------------------------------------------------------- -# pattern rule to make DocBook article from asciidoc source -# ----------------------------------------------------------------- -%$(DOCBOOK_FILE_EXTENSION): %.txt - export LINECOUNT1=$$(cat $< | $(DOS2UNIX) $(DOS2UNIXFLAGS) | egrep "^=+$$" | wc -l); \ - export LINECOUNT2=$$(cat $< | $(DOS2UNIX) $(DOS2UNIXFLAGS) | egrep "^= $$" | wc -l); \ - if [[ $$LINECOUNT1 > 1 || $$LINECOUNT2 > 1 ]]; then \ - $(ASCIIDOC) $(ASCIIDOCFLAGS) -d book -b docbook $<; \ - else \ - $(ASCIIDOC) $(ASCIIDOCFLAGS) -b docbook $<; \ - fi - -# ----------------------------------------------------------------- -# pattern rule for making (X)HTML and plain-text output -# ----------------------------------------------------------------- -%.html: %$(DOCBOOK_FILE_EXTENSION) - @echo '$(HTML_CUSTOM)' | $(XSLT) $(XSLT_FLAGS) $(HTML_PARAMS) - $< > $@ - -%.out.txt: %.html - $(TXT_MAKER) $(TXT_MAKER_FLAGS) ./$< \ - | sed "s/^\(\s\+[0-9]\+\. \)file:\/\/.\+$$/\\1(local)/g" \ - | egrep -v '^ file:///.+$$' \ - > $@ -# if DOCBOOK_OUTPUT_FORMATS does not contain "html", then we need -# to remove the "intermediate" HTML files we used for generating -# plain-text output -ifeq ($(findstring html,$(DOCBOOK_OUTPUT_FORMATS)),) - $(RM) $< -endif - -# ----------------------------------------------------------------- -# pattern rule for making chunked (X)HTML pages -# ----------------------------------------------------------------- -%.$(HTML_MANIFEST_EXT): %$(DOCBOOK_FILE_EXTENSION) - @echo '$(CHNK_CUSTOM)' | $(XSLT) $(XSLT_FLAGS) $(HTML_PARAMS) \ - --stringparam manifest $@ \ - --stringparam base.dir $(basename $@)$(BASEDIR_SUFFIX)/ \ - - $< - -# ----------------------------------------------------------------- -# pattern rules for making FO and PDF stuff -# ----------------------------------------------------------------- -%.fo: %$(DOCBOOK_FILE_EXTENSION) - @echo '$(FO_CUSTOM)' \ - | $(XSLT) $(XSLT_FLAGS) $(FO_PARAMS) - $< > $@ - -ifeq ($(PDF_MAKER),dblatex) -%.pdf: %$(DOCBOOK_FILE_EXTENSION) - mkdir -p $(DOCBOOK_TMP) - echo '$(DBX_CUSTOM)' > $(DOCBOOK_TMP)/dblatex.xsl - -$(DBLATEX) $(DBLATEX_FLAGS)\ - -p $(DOCBOOK_TMP)/dblatex.xsl \ - -o $@ \ - $< - $(RM) -r $(DOCBOOK_TMP) -endif - -%.pdf: %.fo -ifeq ($(PDF_MAKER),) - $(error No PDF_MAKER specified. Cannot make pdf) -else -ifeq ($(PDF_MAKER),xep) - $(XEP) $(XEP_FLAGS) $< $@ -else -ifeq ($(PDF_MAKER),fop) - $(FOP) $(FOP_FLAGS) $< $@ -else -ifeq ($(PDF_MAKER),xmlroff) - $(XMLROFF) $(XMLROFF_FLAGS) $< -o $@ -else -ifeq ($(PDF_MAKER),passivetex) - $(PDFTEX) $(PDFTEX_FLAGS) &$(PDFXMLTEX) $< - @if [ `egrep Rerun $(basename $@).log | wc -l` -gt 0 ]; then \ - $(PDFTEX) $(PDFTEX_FLAGS) &$(PDFXMLTEX) $< ; \ - fi - @if [ `egrep Rerun $(basename $@).log | wc -l` -gt 0 ]; then \ - $(PDFTEX) $(PDFTEX_FLAGS) &$(PDFXMLTEX) $< ; \ - fi - $(RM) $(basename $@).log - $(RM) $(basename $@).aux - $(RM) $(basename $@).out -else - $(error I do not know how to make a PDF using "$(PDF_MAKER)") -endif -endif -endif -endif -endif - -# ----------------------------------------------------------------- -# pattern rules for making TeXinfo stuff -# ----------------------------------------------------------------- -%.txml: %$(DOCBOOK_FILE_EXTENSION) - $(DB2X_XSLTPROC) $(DB2X_XSLTPROC_FLAGS) -s texi -o $@ $< - -%.texi: %.txml - $(DB2X_TEXIXML) $(DB2X_TEXIXML_FLAGS) $< - -# the following is actually a built-in rule, but it's redefined -# here just for the sake of clarity -%.info: %.texi - $(MAKEINFO) $(MAKEINFO_FLAGS) $< -o $@ - -# ----------------------------------------------------------------- -# pattern rule for making man pages -# ----------------------------------------------------------------- -%.$(MAN_MANIFEST_EXT): %$(DOCBOOK_FILE_EXTENSION) - @if [ "$(strip $(shell echo '$(REFENTRY_CHECK)' | $(XSLT) $(XSLT_FLAGS) - $<))" != "true" ]; then \ - touch $@; \ - else \ - echo '$(MAN_CUSTOM)' \ - | $(XSLT) $(XSLT_FLAGS) $(MAN_PARAMS) \ - --stringparam man.output.manifest.filename $@ \ - - $<; \ - fi - -# ----------------------------------------------------------------- -# pattern rule for enabling direct "make foo.1" to work -# ----------------------------------------------------------------- - -%.1 %.2 %.3 %.4 %.5 %.6 %.7: %.xml - $(MAKE) $(basename $<).$(MAN_MANIFEST_EXT) - -# ----------------------------------------------------------------- -# pattern rules for making Postscript/PDF output from man pages -# ----------------------------------------------------------------- -%.1.man.ps: %.1 - $(MAN) -l $(MAN_FLAGS) -Tps $< > $@ - -%.2.man.ps: %.2 - $(MAN) -l $(MAN_FLAGS) -Tps $< > $@ - -%.3.man.ps: %.3 - $(MAN) -l $(MAN_FLAGS) -Tps $< > $@ - -%.4.man.ps: %.4 - $(MAN) -l $(MAN_FLAGS) -Tps $< > $@ - -%.5.man.ps: %.5 - $(MAN) -l $(MAN_FLAGS) -Tps $< > $@ - -%.6.man.ps: %.6 - $(MAN) -l $(MAN_FLAGS) -Tps $< > $@ - -%.7.man.ps: %.7 - $(MAN) -l $(MAN_FLAGS) -Tps $< > $@ - -%.8.man.ps: %.8 - $(MAN) -l $(MAN_FLAGS) -Tps $< > $@ - -%.9.man.ps: %.9 - $(MAN) -l $(MAN_FLAGS) -Tps $< > $@ - -# ----------------------------------------------------------------- -# pattern rule for converting Postscript to PDF -# ----------------------------------------------------------------- -%.pdf: %.ps - $(PS2PDF) $(PS2PDF_FLAGS) $< - -# ----------------------------------------------------------------- -# pattern rules for making plain-text output from man pages -# ----------------------------------------------------------------- -%.1.out.txt: %.1 - $(MAN) -l $(MAN_FLAGS) -Tascii $< | $(COL) -b $(COL_FLAGS) | $(EXPAND) $(EXPAND_FLAGS) > $@ - -%.2.out.txt: %.2 - $(MAN) -l $(MAN_FLAGS) -Tascii $< | $(COL) -b $(COL_FLAGS) | $(EXPAND) $(EXPAND_FLAGS) > $@ - -%.3.out.txt: %.3 - $(MAN) -l $(MAN_FLAGS) -Tascii $< | $(COL) -b $(COL_FLAGS) | $(EXPAND) $(EXPAND_FLAGS) > $@ - -%.4.out.txt: %.4 - $(MAN) -l $(MAN_FLAGS) -Tascii $< | $(COL) -b $(COL_FLAGS) | $(EXPAND) $(EXPAND_FLAGS) > $@ - -%.5.out.txt: %.5 - $(MAN) -l $(MAN_FLAGS) -Tascii $< | $(COL) -b $(COL_FLAGS) | $(EXPAND) $(EXPAND_FLAGS) > $@ - -%.6.out.txt: %.6 - $(MAN) -l $(MAN_FLAGS) -Tascii $< | $(COL) -b $(COL_FLAGS) | $(EXPAND) $(EXPAND_FLAGS) > $@ - -%.7.out.txt: %.7 - $(MAN) -l $(MAN_FLAGS) -Tascii $< | $(COL) -b $(COL_FLAGS) | $(EXPAND) $(EXPAND_FLAGS) > $@ - -%.8.out.txt: %.8 - $(MAN) -l $(MAN_FLAGS) -Tascii $< | $(COL) -b $(COL_FLAGS) | $(EXPAND) $(EXPAND_FLAGS) > $@ - -%.9.out.txt: %.9 - $(MAN) -l $(MAN_FLAGS) -Tascii $< | $(COL) -b $(COL_FLAGS) | $(EXPAND) $(EXPAND_FLAGS) > $@ - -# ----------------------------------------------------------------- -# target(s) for cleaning up the mess -# ----------------------------------------------------------------- -clean: -ifneq ($(FILES_TXT),) - $(RM) $(FILES_TXT) -endif -ifneq ($(FILES_PDF),) - $(RM) $(FILES_PDF) -endif -ifneq ($(FILES_FO),) - $(RM) $(FILES_FO) -endif -ifneq ($(FILES_LOG),) - $(RM) $(FILES_LOG) -endif -ifneq ($(FILES_OUT),) - $(RM) $(FILES_OUT) -endif -ifneq ($(FILES_AUX),) - $(RM) $(FILES_AUX) -endif -ifneq ($(FILES_HTML),) - $(RM) $(FILES_HTML) -endif -ifneq ($(FILES_CHNK),) - $(RM) $(FILES_CHNK) -endif -ifneq ($(FILES_MAN),) - $(RM) $(FILES_MAN) -endif -ifneq ($(FILES_MANT),) - $(RM) $(FILES_MANT) -endif -ifneq ($(FILES_MANP),) - $(RM) $(FILES_MANP) -endif -ifneq ($(FILES_INFO),) - $(RM) $(FILES_INFO) -endif -ifneq ($(DIRS_CHUNK),) - for dir in $(DIRS_CHUNK); do \ - if [ -d "$$dir" ]; then \ - $(RMDIR) $(RMDIR_FLAGS) $$dir; \ - fi \ - done -endif -ifneq ($(DIRS_MAN),) -ifneq ($(DIRS_MAN),.) - for dir in $(DIRS_MAN); do \ - if [ -d "$$dir" ]; then \ - $(RMDIR) $(RMDIR_FLAGS) $$dir; \ - fi \ - done -endif -endif -ifneq ($(LISTS_MAN),) - $(RM) $(LISTS_MAN) -endif -ifneq ($(LISTS_HTML),) - $(RM) $(LISTS_HTML) -endif -ifneq ($(ASCII_OR_DOCBOOK),docbook) - $(RM) -i $(SOURCE_FILES_DBK) -endif diff --git a/docbook-xsl-1.75.2/tools/make/Makefile.combine b/docbook-xsl-1.75.2/tools/make/Makefile.combine deleted file mode 100644 index 28a5e18..0000000 --- a/docbook-xsl-1.75.2/tools/make/Makefile.combine +++ /dev/null @@ -1,182 +0,0 @@ -# $Source$ -# $Author: xmldoc $ -# $Date: 2007-03-04 22:28:18 -0800 (Sun, 04 Mar 2007) $ -# $Revision: 6666 $ -# vim: number -# -# ----------------------------------------------------------------- -# ** Makefile.combine -- combine source files ** -# ----------------------------------------------------------------- -# -# This file is part of the DocBook Project XSL Stylesheet -# distribution. -# -# See http://docbook.sourceforge.net/release/xsl/current/ -# for copyright and other information. -# -# This makefile creates "wrapper" files that combine sets of -# individual DocBook source files. The purpose of combining the -# files is to speed up processing time. By default it puts 20 -# files into each wrapper. Use CHUNKSIZE to configure the number -# of files per wrapper. -# -# Currently, this makefile has only a "man" target and is mainly -# intended to speed up processing of large numbers of individual -# refentry instances. - -# What file extension do you use for DocBook source files? -DOCBOOK_FILE_EXTENSION = .xml -SOURCE_FILES_DBK = $(wildcard *$(DOCBOOK_FILE_EXTENSION)) - -MAKEFILE_DOCBOOK = Makefile.DocBook - -XSLTPROC=xsltproc -XSLTPROC_FLAGS= - -SED=sed -SED_FLAGS=-i - -CHUNKSIZE ?= 20 - -WRAPPER_ELEMENT = reference -WRAPPER_TITLE=Combined contents - -COMBINE_XSL = \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - <$(WRAPPER_ELEMENT)> \ - $(WRAPPER_TITLE) \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - - -all: man - -man: build/man - -build/Makefile: - if [ ! -d build ]; then mkdir build; fi - cp $(MAKEFILE_DOCBOOK) $@ - -combine.xsl: Makefile - @echo '$(COMBINE_XSL)' > $@ - $(SED) $(SED_FLAGS) "s/\^\^/'/g" $@ - -build/1.xml: combine.xsl - $(XSLTPROC) $(XSLTPROC_FLAGS) \ - --stringparam files "$(SOURCE_FILES_DBK)" \ - --stringparam chunk.size $(CHUNKSIZE) \ - $< $< - -build/man: build/Makefile build/1.xml - time $(MAKE) -C build man \ - MAN_PARAMS="--stringparam man.output.quietly 1 \ - --stringparam refentry.meta.get.quietly 1 \ - --stringparam man.charmap.enabled 0" - -debug: - -clean: - $(RM) -r build diff --git a/docbook-xsl-1.75.2/tools/make/Makefile.docParam b/docbook-xsl-1.75.2/tools/make/Makefile.docParam deleted file mode 100644 index 36d12ca..0000000 --- a/docbook-xsl-1.75.2/tools/make/Makefile.docParam +++ /dev/null @@ -1,59 +0,0 @@ -# $Source$ -# $Author: xmldoc $ -# $Date: 2007-03-23 14:57:22 -0700 (Fri, 23 Mar 2007) $ -# $Revision: 6759 $ -# vim: number -# -# ------------------------------------------------------------------ -# ** Makefile.paramDoc - create param.xsl files w/ embedded doc ** -# ------------------------------------------------------------------ - -PARAMFILES = $(wildcard ../../*/param.xsl) -PARAMFILESDOCD = $(foreach base,$(basename $(PARAMFILES)),$(base).docd.xsl) - -XSLT=xsltproc -XSLTFLAGS= - -COPYDOC := \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - &\#x0a; \ - \ - \ - \ - &\#x0a; \ - \ - \ - - -all: $(PARAMFILESDOCD) - -%.docd.xsl: %.xsl - @echo '$(COPYDOC)' | $(XSLT) $(XSLTFLAGS) - $< > $@ - -debug: - @echo $(PARAMFILESDOCD) - -clean: - $(RM) $(PARAMFILESDOCD) diff --git a/docbook-xsl-1.75.2/uninstall.sh b/docbook-xsl-1.75.2/uninstall.sh deleted file mode 100644 index 1dc9be6..0000000 --- a/docbook-xsl-1.75.2/uninstall.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/bash -mydir=$(cd -P $(dirname $0) && pwd -P) -$mydir/install.sh \ - --uninstall \ - --catalogManager=/etc/xml/resolver/CatalogManager.properties \ - --dotEmacs='' \ - $@ diff --git a/docbook-xsl-1.75.2/website/autolayout.xsl b/docbook-xsl-1.75.2/website/autolayout.xsl deleted file mode 100644 index 461bfce..0000000 --- a/docbook-xsl-1.75.2/website/autolayout.xsl +++ /dev/null @@ -1,258 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - All toc entries must have a page attribute. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - All toc entries must have an href attribute. - - - - - - All href toc entries must have an id attribute. - - - - - off site: - - - - - - - - - - - - - - - - - - Off-site links must provide a title. - - - - - - - - - - - - - All toc entries must have a page attribute. - - - - - - - - - : missing ID. - - - - - - - - - - - - - - index.html - - - - - - - - - - - : missing filename. - - - - - - : - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - <xsl:apply-templates select="$page/*[1]/head/title"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - / - - - - - - - - / - - - - - - - / - - - - - - diff --git a/docbook-xsl-1.75.2/website/chunk-common.xsl b/docbook-xsl-1.75.2/website/chunk-common.xsl deleted file mode 100644 index d750c05..0000000 --- a/docbook-xsl-1.75.2/website/chunk-common.xsl +++ /dev/null @@ -1,227 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Fail: tocentry has both page and href attributes. - - - - - - - - - index.html - - - - - - - - - - - - - - - - - - - - - does not exist. - - - - - - - - does not exist. - - - - - - - - - - - - - - - - - - / - - - - - - - - 0 - - - - 1 - - 0 - - - - - - 1 - - 0 - - - 1 - - - - - - - Update: - - : - - - - - - - - - - - - - - - - - - Up-to-date: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must specify a $website.database.document parameter when - $collect.xref.targets is set to 'yes' or 'only'. - The xref targets were not collected. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/website/chunk-tabular.xsl b/docbook-xsl-1.75.2/website/chunk-tabular.xsl deleted file mode 100644 index cdf97cf..0000000 --- a/docbook-xsl-1.75.2/website/chunk-tabular.xsl +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - diff --git a/docbook-xsl-1.75.2/website/chunk-website.xsl b/docbook-xsl-1.75.2/website/chunk-website.xsl deleted file mode 100644 index a9179a0..0000000 --- a/docbook-xsl-1.75.2/website/chunk-website.xsl +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - diff --git a/docbook-xsl-1.75.2/website/head.xsl b/docbook-xsl-1.75.2/website/head.xsl deleted file mode 100644 index e3ac308..0000000 --- a/docbook-xsl-1.75.2/website/head.xsl +++ /dev/null @@ -1,316 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - <xsl:value-of select="."/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - JavaScript - - - - - - - - - text/javascript - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Note - - - namesp. cut - - - stripped namespace before processing - - - - - - - - Note - - - namesp. cut - - - processing stripped document - - - - - - - - Unable to strip the namespace from DB5 document, - cannot proceed. - - - - - - - - - ID ' - - ' not found in document. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - - - - - diff --git a/docbook-xsl-1.75.2/xhtml-1_1/ebnf.xsl b/docbook-xsl-1.75.2/xhtml-1_1/ebnf.xsl deleted file mode 100644 index e12545f..0000000 --- a/docbook-xsl-1.75.2/xhtml-1_1/ebnf.xsl +++ /dev/null @@ -1,328 +0,0 @@ - - - - - - - - - - -$Id: ebnf.xsl 8178 2008-12-15 22:26:38Z bobstayton $ - -Walsh -Norman -19992000 -Norman Walsh - - -HTML EBNF Reference - - -
    Introduction - -This is technical reference documentation for the DocBook XSL -Stylesheets; it documents (some of) the parameters, templates, and -other elements of the stylesheets. - -This reference describes the templates and parameters relevant -to formatting EBNF markup. - -This is not intended to be user documentation. -It is provided for developers writing customization layers for the -stylesheets, and for anyone who's interested in how it -works. - -Although I am trying to be thorough, this documentation is known -to be incomplete. Don't forget to read the source, too :-) -
    -
    -
    - - - - - - - background-color: - - - - - 1 - - - - - - EBNF - - for - - - - - - - - - - - - -
    - - -
    - - - background-color: - - - - - - - EBNF productions - -
    -
    -
    - - - - - - - - - - [ - - ] - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -   - - - - - - - - - - - - - Error: no ID for productionrecap linkend: - - . - - - - - - Warning: multiple "IDs" for productionrecap linkend: - - . - - - - - - - - - - - - - - - - | -
    -
    -
    - - - - - - - - - - - - - - - production - - - - - - - - - Non-terminals with no content must point to - production elements in the current document. - - - Invalid xpointer for empty nt: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ??? - - - - - - - - - - - - - /*  - -  */ -
    -
    - - - - - - - - - constraintdef - - - - - - - - - - - - - - - - : - - - - - - - : - - - - - - - - - -  ] - -
    -
    -
    - - -
    - - - -
    -
    - - -

    -
    - - - -
    diff --git a/docbook-xsl-1.75.2/xhtml-1_1/footnote.xsl b/docbook-xsl-1.75.2/xhtml-1_1/footnote.xsl deleted file mode 100644 index 739a6ca..0000000 --- a/docbook-xsl-1.75.2/xhtml-1_1/footnote.xsl +++ /dev/null @@ -1,302 +0,0 @@ - - - - - - - - - - - - - #ftn. - - - - - - - [ - - - - - ] - - - - - [ - - - - - ] - - - - - - - - - - - -ERROR: A footnoteref element has a linkend that points to an element that is not a footnote. -Typically this happens when an id attribute is accidentally applied to the child of a footnote element. -target element: -linkend/id: - - - - - - - - - - - - #ftn. - - - - - [ - - - - - ] - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ftn. - - - - - - # - - - - -

    - - - - - - - - [ - - - - - ] - - -

    -
    - - - - - - ftn. - - - - - - # - - - - - - - [ - - - - - ] - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    -
    - -
    -
    - - -
    -
    -

    The following annotations are from this essay. You are seeing - them here because your browser doesn’t support the user-interface - techniques used to make them appear as ‘popups’ on modern browsers.

    -
    - - -
    -
    -
    - - - - - - - - -
    - - -
    -
    - - -
    - - - -
    -
    - - - - Warning: footnote number may not be generated - correctly; - - unexpected as first child of footnote. - -
    - - -
    -
    -
    -
    - - - - - - - - -
    diff --git a/docbook-xsl-1.75.2/xhtml-1_1/formal.xsl b/docbook-xsl-1.75.2/xhtml-1_1/formal.xsl deleted file mode 100644 index 054e23b..0000000 --- a/docbook-xsl-1.75.2/xhtml-1_1/formal.xsl +++ /dev/null @@ -1,390 +0,0 @@ - - - - - - - -1 - - - - - - - - - - -
    - - - - - - - -
    - -
    - - - - - -

    - - -

    -

    - - - - - - - -
    -
    - -
    -
    -
    - - - - - - - - - -float - - - - - - - - - -
    - - - - - - - - - -

    - - - -

    -
    - - - - - -
    -

    - - - - - - - - -

    -

    -
    - - - - - - - - - -float - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - before - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Broken table: tr descendent of CALS Table. - - - - - - - - - - before - - - - - - - - - - - - - - - - - - - - - - - - - Broken table: row descendent of HTML table. - - - - - - - - - - - - - - before - - - - - - - - - - - - - - - - - - - - - before - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - float: - - ; - - - -
    -
    - -
    diff --git a/docbook-xsl-1.75.2/xhtml-1_1/glossary.xsl b/docbook-xsl-1.75.2/xhtml-1_1/glossary.xsl deleted file mode 100644 index d22b6c5..0000000 --- a/docbook-xsl-1.75.2/xhtml-1_1/glossary.xsl +++ /dev/null @@ -1,564 +0,0 @@ - - - - - - - - - - - - - - - - - - normalize.sort.input - - - - - - normalize.sort.output - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - -
    -
    - - - -
    - - - - -
    -
    - - - - - - - - - - - - - - - - - - normalize.sort.input - - - - - - normalize.sort.output - - - -
    - - - - - -
    - - - - - - - - - - -
    -
    -
    - - - - - - - - - - - - normalize.sort.input - - - - - - normalize.sort.output - - - - - -
    - - - -
    - - - - - - - - - - -
    -
    -
    - - -

    - - -

    -
    - - - - - - - - -
    - - - - 0 - 1 - - - - - - - - ( - - ) - - - - - -
    -
    - -
    - - - - 0 - 1 - - - - - - - - ( - - ) - -
    -
    - -
    - - - - 0 - 1 - - - - - -
    -
    -
    - - -
    - - - - , - - - - - , - - - - - , - - - - - - - - - - - -
    -

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Warning: glosssee @otherterm reference not found: - - - - - - - - - - - - - - -

    -
    -
    - - -
    - - -

    - - - - - - - - - - - - - -

    -
    -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Warning: glossseealso @otherterm reference not found: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - normalize.sort.input - - - - - - normalize.sort.output - - - - - - - - - - - Warning: processing automatic glossary - without a glossary.collection file. - - - - - - Warning: processing automatic glossary but unable to - open glossary.collection file ' - - ' - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -
    -
    -
    - - - - -
    -
    - - - - - - - - - - - - - - - - - normalize.sort.input - - - - - - normalize.sort.output - - - - -
    - - - -
    - - - - ! - - - - - - - - - - - - - - - -
    -
    -
    - - - -
    diff --git a/docbook-xsl-1.75.2/xhtml-1_1/graphics.xsl b/docbook-xsl-1.75.2/xhtml-1_1/graphics.xsl deleted file mode 100644 index db05ad2..0000000 --- a/docbook-xsl-1.75.2/xhtml-1_1/graphics.xsl +++ /dev/null @@ -1,1436 +0,0 @@ - - - - - - - - - - - - - - - - 1 - - - - - - 1 - - - - - -
    - - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - 0 - 0 - - 1 - 0 - - - - - - 1.0 - 1.0 - - - - 1.0 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - px - - - - - - - - - - - px - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - px - - - - - - - - - - - px - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - 0 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text-align: - - middle - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Warning: imagemaps not supported - on scaled images - - - - 0 - - - - - - - - - - - - - - - - - - text-align: - - middle - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - height: - - px - - - - - - - - - - - -
    - - - - - background-color: - - - - - background-color: - - - - - - - text-align: - - - - - - - - - -
    -
    - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - calspair - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - , - - , - - , - - - - - - - - - - - - Warning: only calspair or - otherunits='imagemap' supported - in imageobjectco - - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text-align: - - middle - - - - - - - - - - - - - - - - - -
    - - text-align: - - - - - -
    -
    -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No insertfile extension available. - - - - - - - Cannot insert - . Check use.extensions and textinsert.extension parameters. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - text-align: - - - - - - - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No insertfile extension available. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No insertfile extension available. - - - - - - - Cannot insert - . Check use.extensions and textinsert.extension parameters. - - - - - - - - -
    - - - text-align: - - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    diff --git a/docbook-xsl-1.75.2/xhtml-1_1/highlight.xsl b/docbook-xsl-1.75.2/xhtml-1_1/highlight.xsl deleted file mode 100644 index 38f6d9c..0000000 --- a/docbook-xsl-1.75.2/xhtml-1_1/highlight.xsl +++ /dev/null @@ -1,72 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/xhtml-1_1/html-rtf.xsl b/docbook-xsl-1.75.2/xhtml-1_1/html-rtf.xsl deleted file mode 100644 index e079a73..0000000 --- a/docbook-xsl-1.75.2/xhtml-1_1/html-rtf.xsl +++ /dev/null @@ -1,321 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - -
    - - - - - - - - - - -
    -
    -
    -
    - - - - - - - - - - - - - - -
    - -
    - - - - - - - - - - -
    -
    -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    diff --git a/docbook-xsl-1.75.2/xhtml-1_1/html.xsl b/docbook-xsl-1.75.2/xhtml-1_1/html.xsl deleted file mode 100644 index c4af3a6..0000000 --- a/docbook-xsl-1.75.2/xhtml-1_1/html.xsl +++ /dev/null @@ -1,364 +0,0 @@ - - - - - - - - - - - - left - right - left - - - - - - right - left - right - - - - - - ltr - rtl - ltr - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - # - - - - - - - - - # - - - - - - - - - - - - - - - - - - - bullet - - - - - - - - - bullet - - - © - - - ® - (SM) -   - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ID recommended on - - - : - - - - ... - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/xhtml-1_1/htmltbl.xsl b/docbook-xsl-1.75.2/xhtml-1_1/htmltbl.xsl deleted file mode 100644 index 47c9a98..0000000 --- a/docbook-xsl-1.75.2/xhtml-1_1/htmltbl.xsl +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - float: - - left - right - - - - - - - - - - - - - none - none - - ; - - - - diff --git a/docbook-xsl-1.75.2/xhtml-1_1/index.xsl b/docbook-xsl-1.75.2/xhtml-1_1/index.xsl deleted file mode 100644 index 2c39f4f..0000000 --- a/docbook-xsl-1.75.2/xhtml-1_1/index.xsl +++ /dev/null @@ -1,264 +0,0 @@ - - - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - -
    - -
    -
    -
    -
    - - - - - - - - - - -
    -
    -
    - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -
    -
    -
    - - - - - - - - - - - - -
    - - - - - - - - - -
    - -
    -
    -
    - - -

    - - -

    -
    - - - - - - - - - -
    - - - - - - - - - - - - -
    - -
    -
    - - - -
    -
    - - - - - - - - - - -
    -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    -
    - - -
    -
    - -
    -
    - - - - - - - - - - - - - - -
    -
    -
    - - -
    - ( - - - - - - ) -
    -
    - - -
    - ( - - - - - - ) -
    -
    - - diff --git a/docbook-xsl-1.75.2/xhtml-1_1/info.xsl b/docbook-xsl-1.75.2/xhtml-1_1/info.xsl deleted file mode 100644 index 76285ab..0000000 --- a/docbook-xsl-1.75.2/xhtml-1_1/info.xsl +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/xhtml-1_1/inline.xsl b/docbook-xsl-1.75.2/xhtml-1_1/inline.xsl deleted file mode 100644 index e1972fe..0000000 --- a/docbook-xsl-1.75.2/xhtml-1_1/inline.xsl +++ /dev/null @@ -1,1445 +0,0 @@ - - - - - - - - - - - - - - - - - - _blank - _top - - - - - - - - - - - - - - 1 - 0 - - - - - - - - - 1 - 0 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - XLink to nonexistent id: - - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - span - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ( - - ) - - - - - - - - - - - , - - - - - - - , - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - abbr - - - - - - acronym - - - - - - - - - - - - - - - - - - - - - - - - - - http://example.com/cgi-bin/man.cgi? - - ( - - ) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - SM - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Warning: glossary.collection specified, but there are - - automatic glossaries - - - - - - - - - - - - - - - - - - - - - - - - There's no entry for - - in - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Error: no glossentry for glossterm: - - . - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - element - - - - - - - - - - - - - - - - </ - - > - - - & - - ; - - - &# - - ; - - - % - - ; - - - <? - - > - - - <? - - ?> - - - < - - > - - - < - - /> - - - <!-- - - --> - - - - - - - - - - - - - - - - - - - - - - < - - - - - mailto: - - - - - - > - - - - - - - - - - - + - - - - - - - - + - - - - - - - - - - - - - - - - - - - ( - - ) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - [ - - - - - - - - - - - - - - - - - - - ] - - - [ - - ] - - - - - - - - - - - - - [ - - - - - - - - - - - - ] - - - [ - - ] - - - - - - - - - - - - -

    -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/xhtml-1_1/keywords.xsl b/docbook-xsl-1.75.2/xhtml-1_1/keywords.xsl deleted file mode 100644 index 5f6b4fb..0000000 --- a/docbook-xsl-1.75.2/xhtml-1_1/keywords.xsl +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - , - - - - - diff --git a/docbook-xsl-1.75.2/xhtml-1_1/lists.xsl b/docbook-xsl-1.75.2/xhtml-1_1/lists.xsl deleted file mode 100644 index 7f82900..0000000 --- a/docbook-xsl-1.75.2/xhtml-1_1/lists.xsl +++ /dev/null @@ -1,1088 +0,0 @@ - - - - - - - - - - -
    - - - - - - - - - -
      - - - - - - Compact spacing via @spacing attribute cannot be set in strict XHTML output for listitem: - -
    -
    -
    - - - - - - - - - - - - - - - - - - - - - - - circle - disc - square - - - - - - -
  • - - - - list-style-type: - - - - - - - - - - - -
    - -
    -
    - - - -
    -
  • -
    - - - - - - - - - - - - - 1 - a - i - A - I - - - - Unexpected numeration: - - - - - - - -
    - - - - - - - - - - - - - - - - - - -
    -
    - -
      - - Strict XHTML does not allow setting @start attribute for lists! - - - - Compact spacing via @spacing attribute cannot be set in strict XHTML output for listitem: - -
    -
    -
    -
    -
    - - - - - - -
  • - - @override attribute cannot be set in strict XHTML output for listitem: - - - - - - - - -
    - -
    -
    - - - -
    -
  • -
    - - - - - - - - - - - - - -
    - -
    -
    - - - -
    - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    - - - -
    - -
    -
    -
    -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - -

    - - - - - - - - - - - - - -

    -
    -
    -
    - - -
    - - -
    -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - -

    - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    - - - - - -
    - - - - - - - - - - - - - - - - - - -
    -
    -
    -
    -
    -
    - - - - - - - - - -
    - -
    -
    - - - -
    -
    - - - - - - - - - - - - - - - 1 - - - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - , - - - - - - - - - - - - - - - - - - - - - - - 1 - - - -
    -
    - - - - - - - - - - - - 1 - - - -
    -
    - - - 1 - 1 - - - - - - - - - - - - - - - - - - - - - - - - - 1 - 1 - - 1 - - - - - - - - -   - - - - - - - - - - - - - - 1 - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - 1 - 1 - - 1 - - - - - - - - -   - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - before - - - - - - - - - -
    - - - - - 0 - 1 - - - - - - - - - - - - -
      - - -
    -
    - -
      - - - -
    -
    -
    - - - - -
    -
    - - - - - -decimallower-alphalower-romanupper-alphaupper-romanWarning: unknown procedure.step.numeration value:
      list-style-type:
    - - -
  • - - - -
  • -
    - - - -
      - - -
    -
    - - -

    - - - - -

    -
    - - - - - - - - -
    - - - - - - - - - - - - - - - - - -
    -
    - - -
    - - - - - - - -
    -
    - - - - - - - - - -
    - - - -
    -
    - - - - - - - - -
    - - - - - : - - - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - -
    -
    - -
    - -
    -
    -
    -
    -
    - - - - - - - - - - - - - - - -

    - - - - -

    - - - - - -
    - -
    - - - - -
    -
    -
    -
    -
    - - - - - - - - - -

    - - - - - - - - - - - - - - - -

    -
    -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ??? - - - - - # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ??? - - - - - - - - - - - - - - - - - - - -
    diff --git a/docbook-xsl-1.75.2/xhtml-1_1/maketoc.xsl b/docbook-xsl-1.75.2/xhtml-1_1/maketoc.xsl deleted file mode 100644 index d1f710f..0000000 --- a/docbook-xsl-1.75.2/xhtml-1_1/maketoc.xsl +++ /dev/null @@ -1,91 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - filename=" - - " - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/xhtml-1_1/manifest.xsl b/docbook-xsl-1.75.2/xhtml-1_1/manifest.xsl deleted file mode 100644 index 26b51d0..0000000 --- a/docbook-xsl-1.75.2/xhtml-1_1/manifest.xsl +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/xhtml-1_1/math.xsl b/docbook-xsl-1.75.2/xhtml-1_1/math.xsl deleted file mode 100644 index b2cac2d..0000000 --- a/docbook-xsl-1.75.2/xhtml-1_1/math.xsl +++ /dev/null @@ -1,284 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Unsupported TeX math notation: - - - - - - - - - - - - - \nopagenumbers - - - - - \bye - - - - - - - - - - - - - - - - - - - - - - - - \special{dvi2bitmap outputfile - - } - - - $ - - - - $ - - - \vfill\eject - - - - - - - - - - - - - - - - - - - - - - - - - \special{dvi2bitmap outputfile - - } - - - $$ - - - - $$ - - - \vfill\eject - - - - - - - - - - \documentclass{article} - - \pagestyle{empty} - - \begin{document} - - - - - \end{document} - - - - - - - - - - - - - - - - - - - - - - - - \special{dvi2bitmap outputfile - - } - - - $ - - - - $ - - - \newpage - - - - - - - - - - - - - - - - - - - - - - - - - \special{dvi2bitmap outputfile - - } - - - $$ - - - - $$ - - - \newpage - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - 0 - 1 - - - - - - diff --git a/docbook-xsl-1.75.2/xhtml-1_1/oldchunker.xsl b/docbook-xsl-1.75.2/xhtml-1_1/oldchunker.xsl deleted file mode 100644 index e727bf1..0000000 --- a/docbook-xsl-1.75.2/xhtml-1_1/oldchunker.xsl +++ /dev/null @@ -1,176 +0,0 @@ - - - - - - - - - - - - - - - - -Encoding used in generated HTML pages - -This encoding is used in files generated by chunking stylesheet. Currently -only Saxon is able to change output encoding. - - - - - - - - - -Saxon character representation used in generated HTML pages - -This character representation is used in files generated by chunking stylesheet. If -you want to suppress entity references for characters with direct representation -in default.encoding, set this parameter to value native. - - - - - - - - - - - - - - - - - - - - - - - - Chunking isn't supported with - - - - - - - - - - - - - - - Writing - - - for - - - ( - - ) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Can't make chunks with - - 's processor. - - - - - - - - - - - - - - - - Writing - - - for - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Can't make chunks with - - 's processor. - - - - - - diff --git a/docbook-xsl-1.75.2/xhtml-1_1/onechunk.xsl b/docbook-xsl-1.75.2/xhtml-1_1/onechunk.xsl deleted file mode 100644 index 15a04e1..0000000 --- a/docbook-xsl-1.75.2/xhtml-1_1/onechunk.xsl +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - - - -1 - - - - # - - - - - - diff --git a/docbook-xsl-1.75.2/xhtml-1_1/param.xsl b/docbook-xsl-1.75.2/xhtml-1_1/param.xsl deleted file mode 100644 index f8351e3..0000000 --- a/docbook-xsl-1.75.2/xhtml-1_1/param.xsl +++ /dev/null @@ -1,431 +0,0 @@ - - - - - - - - -.png - -images/ - - - - - - -/* ====================================================================== - Annotations -*/ - -div.annotation-list { visibility: hidden; - } - -div.annotation-nocss { position: absolute; - visibility: hidden; - } - -div.annotation-popup { position: absolute; - z-index: 4; - visibility: hidden; - padding: 0px; - margin: 2px; - border-style: solid; - border-width: 1px; - width: 200px; - background-color: white; - } - -div.annotation-title { padding: 1px; - font-weight: bold; - border-bottom-style: solid; - border-bottom-width: 1px; - color: white; - background-color: black; - } - -div.annotation-body { padding: 2px; - } - -div.annotation-body p { margin-top: 0px; - padding-top: 0px; - } - -div.annotation-close { position: absolute; - top: 2px; - right: 2px; - } - - - -http://docbook.sourceforge.net/release/script/AnchorPosition.js http://docbook.sourceforge.net/release/script/PopupWindow.js - -http://docbook.sourceforge.net/release/images/annot-open.png - -http://docbook.sourceforge.net/release/images/annot-close.png - -A - -. - - -. -http://docbook.sourceforge.net/release/bibliography/bibliography.xml - - -normal - - -60 -.png - - -15 - -images/callouts/ - - -10 -10102 - - - - - - - - - - - -no - -1 - - - - - left - before - - - - -all -maybe -http://docbook.sourceforge.net/release/images/draft.png -#F5DCB3 - - -::= - - - - - -DocBook Online Help Sample -com.example.help -Example provider -1 - - - - - - 1 - 0 - - - - -1 - - - -figure before -example before -equation before -table before -procedure before -task before - - -kr - - - - - - - - - -appendix toc,title -article/appendix nop -article toc,title -book toc,title,figure,table,example,equation -chapter toc,title -part toc,title -preface toc,title -qandadiv toc -qandaset toc -reference toc,title -sect1 toc -sect2 toc -sect3 toc -sect4 toc -sect5 toc -section toc -set toc,title - - - - -no - - - - - - - - - - - - - -.html - -copyright - - - - -text/css -alias.h - - - - - - - -User1 - - -User2 - - - - - - - - - -htmlhelp.chm - - -iso-8859-1 - - - - - -toc.hhc -5 - - -index.hhk -htmlhelp.hhp - -Main - -context.h - - - - - - - - - - - -basic - - - - - - - - - -no -iso-8859-1 - - -en - - - - -5 - - -3 - - - - - - HTML.manifest - - - - -+ -.gif - -images/ -1 - - -6in - - - - replace - -no - - - -no -fragid= -.olink -pubid - /cgi-bin/olink -sysid - -0 - -I - -90 -10 - - - - - - - - - - - - - - - -; - - - - - -. -number - - - - - - - - - I - -index - -. -.!?: - -8 - - - - - 0 - background-color: #E0E0E0 - - - - - - -0 - - - - - -solid -0.5pt -a - - - -solid -0.5pt - - olinkdb.xml -target.db - - -tex-math-equations.tex - - -dl -2 -8 - - - - - - - - - -, -0 - - - writing-mode - - - - - - - - -: - - - - diff --git a/docbook-xsl-1.75.2/xhtml-1_1/pi.xsl b/docbook-xsl-1.75.2/xhtml-1_1/pi.xsl deleted file mode 100644 index 28f9efe..0000000 --- a/docbook-xsl-1.75.2/xhtml-1_1/pi.xsl +++ /dev/null @@ -1,1203 +0,0 @@ - - - - - - - -HTML Processing Instruction Reference - - $Id: pi.xsl 8394 2009-04-02 20:31:30Z mzjn $ - - - - Introduction - This is generated reference documentation for all - user-specifiable processing instructions (PIs) in the DocBook - XSL stylesheets for HTML output. - - You add these PIs at particular points in a document to - cause specific “exceptions” to formatting/output behavior. To - make global changes in formatting/output behavior across an - entire document, it’s better to do it by setting an - appropriate stylesheet parameter (if there is one). - - - - - - - - - Sets background color for an image - - Use the dbhtml background-color PI before or - after an image (graphic, inlinegraphic, - imagedata, or videodata element) as a - sibling to the element, to set a background color for the - image. - - - dbhtml background-color="color" - - - - background-color="color" - - An HTML color value - - - - - - Background color - - - - - - - - - - - - Sets background color on a CALS table row or table cell - - Use the dbhtml bgcolor PI as child of a CALS table row - or cell to set a background color for that table row or cell. - - - dbhtml bgcolor="color" - - - - bgcolor="color" - - An HTML color value - - - - - - Cell background color - - - - - - - - - - - - Specifies cellpadding in CALS table or qandaset output - - Use the dbhtml cellpadding PI as a child of a - CALS table or qandaset to specify the value - for the HTML cellpadding attribute in the - output HTML table. - - - dbhtml cellpadding="number" - - - - cellpadding="number" - - Specifies the cellpadding - - - - - - html.cellpadding - - - Cell spacing and cell padding, - Q and A formatting - - - - - - - - - - - - Specifies cellspacing in CALS table or qandaset output - - Use the dbhtml cellspacing PI as a child of a - CALS table or qandaset to specify the value - for the HTML cellspacing attribute in the - output HTML table. - - - dbhtml cellspacing="number" - - - - cellspacing="number" - - Specifies the cellspacing - - - - - - html.cellspacing - - - Cell spacing and cell padding, - Q and A formatting - - - - - - - - - - - - Set value of the class attribute for a CALS table row - - Use the dbhtml class PI as a child of a - row to specify a class - attribute and value in the HTML output for that row. - - - dbhtml class="name" - - - - class="name" - - Specifies the class name - - - - - - Table styles in HTML output - - - - - - - - - - - - Specifies a directory name in which to write files - - When chunking output, use the dbhtml dir PI - as a child of a chunk source to cause the output of that - chunk to be written to the specified directory; also, use it - as a child of a mediaobject to specify a - directory into which any long-description files for that - mediaobject will be written. - - - dbhtml dir="path" - - - - dir="path" - - Specifies the pathname for the directory - - - - - - base.dir - - - dbhtml dir processing instruction - - - - - - - - - - - - Specifies a filename for a chunk - - When chunking output, use the dbhtml filename - PI as a child of a chunk source to specify a filename for - the output file for that chunk. - - - dbhtml filename="filename" - - - - filename="path" - - Specifies the filename for the file - - - - - - use.id.as.filename - - - dbhtml filenames - - - - - - - - - - - - Specifies presentation style for a funcsynopsis - - Use the dbhtml funcsynopsis-style PI as a child of - a funcsynopsis or anywhere within a funcsynopsis - to control the presentation style for output of all - funcprototype instances within that funcsynopsis. - - - dbhtml funcsynopsis-style="kr"|"ansi" - - - - funcsynopsis-style="kr" - - Displays funcprototype output in K&R style - - - funcsynopsis-style="ansi" - - Displays funcprototype output in ANSI style - - - - - - funcsynopsis.style - - - - - - - - - - - - Specifies a path to the location of an image file - - Use the dbhtml img.src.path PI before or - after an image (graphic, - inlinegraphic, imagedata, or - videodata element) as a sibling to the element, - to specify a path to the location of the image; in HTML - output, the value specified for the - img.src.path attribute is prepended to the - filename. - - - dbhtml img.src.path="path" - - - - img.src.path="path" - - Specifies the pathname to prepend to the name of the image file - - - - - - img.src.path - - - Using fileref - - - - - - - - - - - - Specifies the label width for a qandaset - - Use the dbhtml label-width PI as a child of a - qandaset to specify the width of labels. - - - dbhtml label-width="width" - - - - label-width="width" - - Specifies the label width (including units) - - - - - - Q and A formatting - - - - - - - - - - - - Specifies interval for line numbers in verbatims - - Use the dbhtml linenumbering.everyNth PI as a child - of a “verbatim” element – programlisting, - screen, synopsis — to specify - the interval at which lines are numbered. - - - dbhtml linenumbering.everyNth="N" - - - - linenumbering.everyNth="N" - - Specifies numbering interval; a number is output - before every Nth line - - - - - - linenumbering.everyNth - - - Line numbering - - - - - - - - - - - - Specifies separator text for line numbers in verbatims - - Use the dbhtml linenumbering.separator PI as a child - of a “verbatim” element – programlisting, - screen, synopsis — to specify - the separator text output between the line numbers and content. - - - dbhtml linenumbering.separator="text" - - - - linenumbering.separator="text" - - Specifies the text (zero or more characters) - - - - - - linenumbering.separator - - - Line numbering - - - - - - - - - - - - Specifies width for line numbers in verbatims - - Use the dbhtml linenumbering.width PI as a child - of a “verbatim” element – programlisting, - screen, synopsis — to specify - the width set aside for line numbers. - - - dbhtml linenumbering.width="width" - - - - linenumbering.width="width" - - Specifies the width (inluding units) - - - - - - linenumbering.width - - - Line numbering - - - - - - - - - - - - Specifies presentation style for a variablelist or - segmentedlist - - Use the dbhtml list-presentation PI as a child of - a variablelist or segmentedlist to - control the presentation style for the list (to cause it, for - example, to be displayed as a table). - - - dbhtml list-presentation="list"|"table" - - - - list-presentation="list" - - Displays the list as a list - - - list-presentation="table" - - Displays the list as a table - - - - - - - - variablelist.as.table - - - segmentedlist.as.table - - - - - Variable list formatting in HTML - - - - - - - - - - - - Specifies the width of a variablelist or simplelist - - Use the dbhtml list-width PI as a child of a - variablelist or a simplelist presented - as a table, to specify the output width. - - - dbhtml list-width="width" - - - - list-width="width" - - Specifies the output width (including units) - - - - - - Variable list formatting in HTML - - - - - - - - - - - - Specifies the height for a CALS table row - - Use the dbhtml row-height PI as a child of a - row to specify the height of the row. - - - dbhtml row-height="height" - - - - row-height="height" - - Specifies the row height (including units) - - - - - - Row height - - - - - - - - - - - - (obsolete) Sets the starting number on an ordered list - - This PI is obsolete. The intent of - this PI was to provide a means for setting a specific starting - number for an ordered list. Instead of this PI, set a value - for the override attribute on the first - listitem in the list; that will have the same - effect as what this PI was intended for. - - - dbhtml start="character" - - - - start="character" - - Specifies the character to use as the starting - number; use 0-9, a-z, A-Z, or lowercase or uppercase - Roman numerals - - - - - - List starting number - - - - - - - - - - - - Do not chunk any descendants of this element. - - When generating chunked HTML output, adding this PI as the child of an element that contains elements that would normally be generated on separate pages if generating chunked output causes chunking to stop at this point. No descendants of the current element will be split into new HTML pages: -<section> -<title>Configuring pencil</title> -<?dbhtml stop-chunking?> - -... - -</section> - - - - dbhtml stop-chunking - - - Chunking into multiple HTML files - - - - - - Specifies summary for CALS table, variablelist, segmentedlist, or qandaset output - - Use the dbhtml table-summary PI as a child of - a CALS table, variablelist, - segmentedlist, or qandaset to specify - the text for the HTML summary attribute - in the output HTML table. - - - dbhtml table-summary="text" - - - - table-summary="text" - - Specifies the summary text (zero or more characters) - - - - - - Variable list formatting in HTML, - Table summary text - - - - - - - - - - - - Specifies the width for a CALS table - - Use the dbhtml table-width PI as a child of a - CALS table to specify the width of the table in - output. - - - dbhtml table-width="width" - - - - table-width="width" - - Specifies the table width (including units or as a percentage) - - - - - - default.table.width - - - Table width - - - - - - - - - - - - Sets character formatting for terms in a variablelist - - Use the dbhtml term-presentation PI as a child - of a variablelist to set character formatting for - the term output of the list. - - - dbhtml term-presentation="bold"|"italic"|"bold-italic" - - - - term-presentation="bold" - - Specifies that terms are displayed in bold - - - term-presentation="italic" - - Specifies that terms are displayed in italic - - - term-presentation="bold-italic" - - Specifies that terms are displayed in bold-italic - - - - - - Variable list formatting in HTML - - - - - - - - - - - - Specifies separator text among terms in a varlistentry - - Use the dbhtml term-separator PI as a child - of a variablelist to specify the separator text - among term instances. - - - dbhtml term-separator="text" - - - - term-separator="text" - - Specifies the text (zero or more characters) - - - - - - variablelist.term.separator - - - Variable list formatting in HTML - - - - - - - - - - - - Specifies the term width for a variablelist - - Use the dbhtml term-width PI as a child of a - variablelist to specify the width for - term output. - - - dbhtml term-width="width" - - - - term-width="width" - - Specifies the term width (including units) - - - - - - Variable list formatting in HTML - - - - - - - - - - - - Specifies whether a TOC should be generated for a qandaset - - Use the dbhtml toc PI as a child of a - qandaset to specify whether a table of contents - (TOC) is generated for the qandaset. - - - dbhtml toc="0"|"1" - - - - toc="0" - - If zero, no TOC is generated - - - toc="1" - - If 1 (or any non-zero value), - a TOC is generated - - - - - - Q and A list of questions, - Q and A formatting - - - - - - - - - - - - Generates a hyperlinked list of commands - - Use the dbcmdlist PI as the child of any - element (for example, refsynopsisdiv) containing multiple - cmdsynopsis instances; a hyperlinked navigational - “command list” will be generated at the top of output for that - element, enabling users to quickly jump - to each command synopsis. - - - dbcmdlist - - - [No parameters] - - - - - - No cmdsynopsis elements matched dbcmdlist PI, perhaps it's nested too deep? - - -
    - - - -
    -
    - - - Generates a hyperlinked list of functions - - Use the dbfunclist PI as the child of any - element (for example, refsynopsisdiv) containing multiple - funcsynopsis instances; a hyperlinked - navigational “function list” will be generated at the top of - output for that element, enabling users to quickly - jump to to each function synopsis. - - - dbfunclist - - - [No parameters] - - - - - - No funcsynopsis elements matched dbfunclist PI, perhaps it's nested too deep? - - -
    - - - -
    -
    - - - Copies an external well-formed HTML/XML file into current doc - - Use the dbhtml-include href PI anywhere in a - document to cause the contents of the file referenced by the - href pseudo-attribute to be copied/inserted “as - is” into your HTML output at the point in document order - where the PI occurs in the source. - - The referenced file may contain plain text (as long as - it is “wrapped” in an html element — see the - note below) or markup in any arbitrary vocabulary, - including HTML — but it must conform to XML - well-formedness constraints (because the feature in XSLT - 1.0 for opening external files, the - document() function, can only handle - files that meet XML well-formedness constraints). - Among other things, XML well-formedness constraints - require a document to have a single root - element. So if the content you want to - include is plain text or is markup that does - not have a single root element, - wrap the content in an - html element. The stylesheets will - strip out that surrounding html “wrapper” when - they find it, leaving just the content you want to - insert. - - - - dbhtml-include href="URI" - - - - href="URI" - - Specifies the URI for the file to include; the URI - can be, for example, a remote http: - URI, or a local filesystem file: - URI - - - - - - textinsert.extension - - - Inserting external HTML code, - External code files - - - - - - - href - - - - - - - - - - - - - - - - - - - - ERROR: dbhtml-include processing instruction - href has no content. - - - - - - - ERROR: dbhtml-include processing instruction has - missing or empty href value. - - - - - - - - Sets topic name and topic id for context-sensitive HTML Help - - Use the dbhh PI as a child of components - that should be used as targets for context-sensitive help requests. - - - dbhh topicname="name" topicid="id" - - - - topicname="name" - - Specifies a unique string constant that identifies a help topic - - - topicid="id" - - Specifies a unique integer value for the topicname string - - - - - - Context-sensitive help - - - - - - - - - - filename - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - # - - - - - - - - - - - - - - - - - - -
    - - - - - -
    -
    -
    - - - - - - - - - - - - - - - -
    - - - # - - - - - - - - - - - - - - - - - - -
    - - - - - -
    -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - / - - - - / - - - - -
    diff --git a/docbook-xsl-1.75.2/xhtml-1_1/profile-chunk-code.xsl b/docbook-xsl-1.75.2/xhtml-1_1/profile-chunk-code.xsl deleted file mode 100644 index 6be8755..0000000 --- a/docbook-xsl-1.75.2/xhtml-1_1/profile-chunk-code.xsl +++ /dev/null @@ -1,610 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - bk - - - - - - - - - - - - - - - ar - - - - - - - - - - - - - - - pr - - - - - - - - - - - - - - - ch - - - - - - - - - - - - - - - ap - - - - - - - - - - - - - - - - - - - pt - - - - - - - - - - - - - - - - - - - rn - - - - - - - - - - - - - - - - - - re - - - - - - - - - - - - - - - - - - - co - - - - - - - - - - - s - - - - - - - - - - - - - - - - - - - bi - - - - - - - - - - - - - - - - - - - go - - - - - - - - - - - - - - - - - - - ix - - - - - - - - si - - - - - - - - chunk-filename-error- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Note: namesp. cut : stripped namespace before processingNote: namesp. cut : processing stripped document - - - - - - - - - - - - - - - - - ID ' - - ' not found in document. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/xhtml-1_1/profile-chunk.xsl b/docbook-xsl-1.75.2/xhtml-1_1/profile-chunk.xsl deleted file mode 100644 index def7fff..0000000 --- a/docbook-xsl-1.75.2/xhtml-1_1/profile-chunk.xsl +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/xhtml-1_1/profile-docbook.xsl b/docbook-xsl-1.75.2/xhtml-1_1/profile-docbook.xsl deleted file mode 100644 index c0dba8e..0000000 --- a/docbook-xsl-1.75.2/xhtml-1_1/profile-docbook.xsl +++ /dev/null @@ -1,409 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Element - - in namespace ' - - ' encountered - - in - - - , but no template matches. - - - - < - - > - - </ - - > - - - - - - - - - - - - - - - - - - - <xsl:copy-of select="$title"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Note: namesp. cut : stripped namespace before processingNote: namesp. cut : processing stripped document - - - - - - - - - - - - - - - - - - ID ' - - ' not found in document. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - - - - - diff --git a/docbook-xsl-1.75.2/xhtml-1_1/profile-onechunk.xsl b/docbook-xsl-1.75.2/xhtml-1_1/profile-onechunk.xsl deleted file mode 100644 index b84b3e9..0000000 --- a/docbook-xsl-1.75.2/xhtml-1_1/profile-onechunk.xsl +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - - - -1 - - - - # - - - - - - diff --git a/docbook-xsl-1.75.2/xhtml-1_1/qandaset.xsl b/docbook-xsl-1.75.2/xhtml-1_1/qandaset.xsl deleted file mode 100644 index a7c0877..0000000 --- a/docbook-xsl-1.75.2/xhtml-1_1/qandaset.xsl +++ /dev/null @@ -1,420 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    - -

    -
    - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    - -

    -
    - - - - - - - - - - -
    - - - - - - - - - - - - - - -
    - - -
    -
    - - -
    -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - -
    - - - - -
    - - - -
    - -
    -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1% - - - - - - - - -
    -
    - - - - - - - - - -
    diff --git a/docbook-xsl-1.75.2/xhtml-1_1/refentry.xsl b/docbook-xsl-1.75.2/xhtml-1_1/refentry.xsl deleted file mode 100644 index 887e76d..0000000 --- a/docbook-xsl-1.75.2/xhtml-1_1/refentry.xsl +++ /dev/null @@ -1,299 +0,0 @@ - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - - - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    - -

    -
    - - - - -
    - - - - -
    -
    -
    -
    - - - - - - -
    -
    - - - - - - - - - - - - - - ( - - ) - - - - - - - - - - - -
    - - - - - - - - - - -

    - - - -

    -
    - -

    - - - - - - - - -

    -
    -
    - -

    - -

    -
    -
    - - - - - - , - - - - - - - - - em-dash - - - - - - - - - - - - - - - - : - - - - - - - -
    - - - - -

    - - - - - - - - - - -

    - -
    -
    - - - - - - - - - - - -
    - - - - - - - - - -
    -
    - - - - - - 0 - 1 - - - - 6 - - - - - - - - - - - - -

    - -

    -
    - - - -

    - -

    -
    - - - -

    - -

    -
    - - - - - - - - - -
    diff --git a/docbook-xsl-1.75.2/xhtml-1_1/sections.xsl b/docbook-xsl-1.75.2/xhtml-1_1/sections.xsl deleted file mode 100644 index aec647d..0000000 --- a/docbook-xsl-1.75.2/xhtml-1_1/sections.xsl +++ /dev/null @@ -1,541 +0,0 @@ - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -
    -
    - - - - - - - - 1 - 2 - 3 - 4 - 5 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    - - - - - - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 6 - - - - - - - - - - clear: both - - - - - - - - - - - - - - - - - - - - - - - 1 - - - - - - - - - - - - 1 - - - - - - - 2 - 3 - 4 - 5 - 6 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    diff --git a/docbook-xsl-1.75.2/xhtml-1_1/synop.xsl b/docbook-xsl-1.75.2/xhtml-1_1/synop.xsl deleted file mode 100644 index 37025b9..0000000 --- a/docbook-xsl-1.75.2/xhtml-1_1/synop.xsl +++ /dev/null @@ -1,1513 +0,0 @@ - - - - - - - - - - - - - - -
    - -

    - - - - - - - - - - - - -

    -
    -
    - - -
    - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    - - - - - - - - - - - ( - - ) - -   - - - - - - - - - - - - - - - - - - - ( - - ) - - - - - - - - - - - - - - - - - - - - - - -
    -    
    -    
    -  
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    - - -
    - -
    -

    -
    - - - - - - ( - - - - - - - - - - - - - - - - ) - ; - - - - ... - ) - ; - - - - - - - , - - - ) - ; - - - - - - - - - - - - - - - - - - - - -
    - - - - ; -
    - - - - - - - - - - - - - - - - - - ( - - ) - - - - - - - - - - - - - - - - - -
    - -
     
    - -
    - -
    -
    -
     
    -
    - - - - - - ( - - - - - - - - - - - - - - - - - ) - ; - -   - - - - - ... - ) - ; - -   - - - - - - - - , - - - ) - ; - - - -   - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -   - - - - - - - - - - - - - - - - - - - - - - - - - - - - -   - - - - - - ; - - - - - - - - - - - - - - - - - - - - - - - - ( - - ) - ; - - - - - - -

    - -

    -
    - - - - - - ( - - - - - - - - - - - - - - - - void) - ; - - - - ... - ) - ; - - - - - - - , - - - ) - ; - - - - - - - - - - - - - - - - - - - - - ( - - ) - - - - - - - - - - - - - - - - - -
    - -
     
    -
     
    -
    - - - - - - ( - - - - - - - - - - - - - - - - - void) - ; - -   - - - - - ... - ) - ; - -   - - - - - - - - , - - - ) - ; - - - - - - - - - - - - - - - - - - - - - - ( - - ) - - - - -java - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Unrecognized language on - - : - - - - - - - - - - - -
    -
    -
    - - - - - -
    -    
    -    
    -    
    -       extends
    -      
    -      
    -        
    -      -
    -
    - - implements - - -
    -      -
    -
    - - throws - - -  { -
    - - } -
    -
    - - - - - - - - - , - - - - - - - - - - - - - - - - -   - - - - - - - , - - - - - - - - - - , - - - - - - - - - - , - - - - - - - - - - - -    - - - ; - - - - - - - - -   - - - - - - - -   - - - - - - - - - - - - - - - void  - - - - - - - - - - - - 0 - - , -
    - - -   - - - -
    - - - - -
    - - - - - - - - - - - - - - -    - - - - - - - - - - - - - - - ( - - - - ) - -
    -     throws  - -
    - - - - - ; -
    - -
    - - - - -
    -    
    -    
    -    
    -      : 
    -      
    -      
    -        
    -      -
    -
    - - implements - - -
    -      -
    -
    - - throws - - -  { -
    - - } -
    -
    - - - - - - - - , - - - - - - - - - - - - -   - - - - - - - , - - - - - - - - - - , - - - - - - - - - - , - - - - - - - - - - - -    - - - ; - - - - - - - - -   - - - - - - - -   - - - - - - - - - - - - - - - void  - - - - - - - - - - - - - , - - - - - - - - - - - - - - - - - - - - - - -    - - - - - - - - - - ( - - ) - -
    -     throws  - -
    - - - - - ; -
    - -
    - - - - -
    -    
    -    interface 
    -    
    -    
    -      : 
    -      
    -      
    -        
    -      -
    -
    - - implements - - -
    -      -
    -
    - - throws - - -  { -
    - - } -
    -
    - - - - - - - - , - - - - - - - - - - - - -   - - - - - - - , - - - - - - - - - - , - - - - - - - - - - , - - - - - - - - - - - -    - - - ; - - - - - - - - -   - - - - - - - -   - - - - - - - - - - - - - - - void  - - - - - - - - - - - - - , - - - - - - - - - - - - - - - - - - - - - -    - - - - - - - - - - ( - - ) - -
    -     raises( - - ) -
    - - - - - ; -
    - -
    - - - - -
    -    
    -    package 
    -    
    -    ;
    -    
    - - - @ISA = ( - - ); -
    -
    - - -
    -
    - - - - - - - - , - - - - - - - - - - - - -   - - - - - - - , - - - - - - - - - - , - - - - - - - - - - , - - - - - - - - - - - -    - - - ; - - - - - - - - -   - - - - - - - -   - - - - - - - - - - - - - - - void  - - - - - - - - - - - - - , - - - - - - - - - - - - - - - - - - - - - - sub - - - { ... }; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    diff --git a/docbook-xsl-1.75.2/xhtml-1_1/table.xsl b/docbook-xsl-1.75.2/xhtml-1_1/table.xsl deleted file mode 100644 index ad4ddac..0000000 --- a/docbook-xsl-1.75.2/xhtml-1_1/table.xsl +++ /dev/null @@ -1,1118 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - - - - - - - - - - - - - - - - - - - - - - - - - - -   - - - - - - - - - - - - - - - - - - - border- - - : - - - - - - ; - - - - - border- - - -width: - - ; - - - - border- - - -style: - - ; - - - - border- - - -color: - - ; - - - - - - - - - - - Error: CALS tables must specify the number of columns. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 100% - - - - - - - - border-collapse: collapse; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - border-collapse: collapse; - - - - - - - - - - - - - - - - - border-collapse: collapse; - - - - - - - - - - - border-collapse: collapse; - - - - - - - - - - - border-collapse: collapse; - - - - - - - - - - - - - - - - - border: none; - - - - - border-collapse: collapse; - - - - - - - 0 - - - 1 - - - - - - - - - - - - - - - - - - - - - - - - 100% - - - - - - - - - - - - - - - - - - - - - - - - No convertLength function available. - - - - - - - - - - - - - - - - - - - - - - - - - - No adjustColumnWidths function available. - - - - - - - - - - - - - - - - - - - - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - text-align: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text-align: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Warning: overlapped row contains content! - - - This row intentionally left blank - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - background-color: - - - - - - - - - - - - - - - - - - - - - - text-align: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - - - - - - - - th - th - td - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - background-color: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text-align: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -   - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - - - - - - - - - - - - - - : - - - - - - - - 0: - - - - - - - - - - - - - - - 0 - - : - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - - 1 - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text-align: - - - - - - text-align: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    diff --git a/docbook-xsl-1.75.2/xhtml-1_1/task.xsl b/docbook-xsl-1.75.2/xhtml-1_1/task.xsl deleted file mode 100644 index 0a380d2..0000000 --- a/docbook-xsl-1.75.2/xhtml-1_1/task.xsl +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - - - - - - - - before - - - - - - - - -
    - - - - - - - - - - - - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - -
    diff --git a/docbook-xsl-1.75.2/xhtml-1_1/titlepage.templates.xsl b/docbook-xsl-1.75.2/xhtml-1_1/titlepage.templates.xsl deleted file mode 100644 index a17d25f..0000000 --- a/docbook-xsl-1.75.2/xhtml-1_1/titlepage.templates.xsl +++ /dev/null @@ -1,3710 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    - - - - - - - - - - 1 - - - -
    -
    - - - - - - - - - - 1 - - - -
    -
    - -
    -
    - - - - - - - - - - - - - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    - - - - - - - - - - 1 - - - -
    -
    - - - - - - - - - - 1 - - - -
    -
    - -
    -
    - - - - - - - - - - - - - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    - - - - - - - - - - 1 - - - -
    -
    - - - - - - - - - - 1 - - - -
    -
    - -
    -
    - - - - - - - - - - - - - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - -
    - - - - - - - - - - 1 - - - -
    -
    - - - - - - - - - - 1 - - - -
    -
    - -
    -
    - - - - - - - - - - - - - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - 1 - - - -
    -
    - - - - - - - - - - 1 - - - -
    -
    - -
    -
    - - - - - - - - - - - - - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    - - - - - - - - - - 1 - - - -
    -
    - - - - - - - - - - 1 - - - -
    -
    - -
    -
    - - - - - - - - - - - - - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - 1 - - - -
    -
    - - - - - - - - - - 1 - - - -
    -
    - -
    -
    - - - - - - - - - - - - - - -
    - - -
    - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - -
    - - - - - - - - - - 1 - - - -
    -
    - - - - - - - - - - 1 - - - -
    -
    - -
    -
    - - - - - - - - - - - - - - -
    - -
    -
    - - -
    - - -
    - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - -
    - - - - - - - - - - 1 - - - -
    -
    - - - - - - - - - - 1 - - - -
    -
    - -
    -
    - - - - - - - - - - - - - - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - 1 - - - -
    -
    - - - - - - - - - - 1 - - - -
    -
    - -
    -
    - - - - - - - - - - - - - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - 1 - - - -
    -
    - - - - - - - - - - 1 - - - -
    -
    - -
    -
    - - - - - - - - - - - - - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - 1 - - - -
    -
    - - - - - - - - - - 1 - - - -
    -
    - -
    -
    - - - - - - - - - - - - - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    - - - - - - - - - - 1 - - - -
    -
    - - - - - - - - - - 1 - - - -
    -
    - -
    -
    - - - - - - - - - - - - - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    - - - - - - - - - - 1 - - - -
    -
    - - - - - - - - - - 1 - - - -
    -
    - -
    -
    - - - - - - - - - - - - - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    - - - - - - - - - - 1 - - - -
    -
    - - - - - - - - - - 1 - - - -
    -
    - -
    -
    - - - - - - - - - - - - - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    - - - - - - - - - - 1 - - - -
    -
    - - - - - - - - - - 1 - - - -
    -
    - -
    -
    - - - - - - - - - - - - - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    - - - - - - - - - - 1 - - - -
    -
    - - - - - - - - - - 1 - - - -
    -
    - -
    -
    - - - - - - - - - - - - - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    - - - - - - - - - - 1 - - - -
    -
    - - - - - - - - - - 1 - - - -
    -
    - -
    -
    - - - - - - - - - - - - - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    - - - - - - - - - - 1 - - - -
    -
    - - - - - - - - - - 1 - - - -
    -
    - -
    -
    - - - - - - - - - - - - - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - - -
    - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - -
    - - - - - - - - - - 1 - - - -
    -
    - - - - - - - - - - 1 - - - -
    -
    - -
    -
    - - - - - - - - - - - - - - -
    - -
    -
    - - -
    - - -
    - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - -
    - - - - - - - - - - 1 - - - -
    -
    - - - - - - - - - - 1 - - - -
    -
    - -
    -
    - - - - - - - - - - - - - - -
    - -
    -
    - - -
    - - -
    - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - -
    - - - - - - - - - - 1 - - - -
    -
    - - - - - - - - - - 1 - - - -
    -
    - -
    -
    - - - - - - - - - - - - - - -
    - -
    -
    - - -
    - - -
    - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - -
    - - - - - - - - - - 1 - - - -
    -
    - - - - - - - - - - 1 - - - -
    -
    - -
    -
    - - - - - - - - - - - - - - -
    - -
    -
    - -
    diff --git a/docbook-xsl-1.75.2/xhtml-1_1/titlepage.xsl b/docbook-xsl-1.75.2/xhtml-1_1/titlepage.xsl deleted file mode 100644 index 66d5901..0000000 --- a/docbook-xsl-1.75.2/xhtml-1_1/titlepage.xsl +++ /dev/null @@ -1,1027 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    -
    - - -
    - - - - - - - - - - - -
    -
    - - - - - - - - - - - - - -
    - - - - - - - - -
    -
    - - -
    - - - - - - - - -
    -
    -
    -
    - - -
    - - -
    -
    - - - - - -
    -
    -
    - - - - - - -
    - - -

    -
    -

    - - - - - - - - - -

    - - - - - - - - - - - - - - - -
    -
    - - -
    - - -
    -
    - - -
    - - -

    Authors

    -
    - - - -
    -
    - - - - - -
    -
    -
    - - - - - - - - - - - - - -
    -
    -
    - - - - - - - - - -
    - - -
    -
    - - - - - -
    -
    -
    - - - - - -
    -
    -
    - - - - - -
    -
    -
    - - - - - - - - - -
    -
    -
    - - - - - -
    -
    -
    - - - - - - - -   - - -
    - -

    -
    -
    -
    -
    - - - - -

    Copyright

    -
    - -

    - - - - - - - copyright - - - - - - - - - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - , - - - - -

    - - -

    -
    - - - - - -
    -
    -
    - - - - - -
    -
    -
    - - - - - -
    -
    -
    - - -

    - - - - - - -

    -
    - - - - - - - - - - -
    -
    -
    - - - - - - - - - - -
    -
    -
    - - - - - -
    -
    -
    - - - - - -
    -
    -
    - - - - - -
    -
    -
    - - - - - - - - -
    -
    -
    - - - - - -
    -
    -
    - - - - - -
    -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - -
    - - - -
    -
    -
    - -
    - - - -
    -
    -
    -
    - - -

    -
    - - - - - -
    -
    -
    - - - - - - - - - - - -
    -
    -
    - - - - - -
    -
    -
    - - - - - - - - - - - - - : - - - - - - - - - - - - - - - - - - - - - - - - - - , - - - - - - - -
    -
    -
    - - - - - -
    -
    -
    - - -
    - - -
    -
    - - - - - -
    -
    -
    - - - - - -
    -
    -
    - - - - - - - - - - - - - - - - - - - - - - - -
    -
    -
    - - - - - -
    -
    -
    - - - - - - - - - - - - - - 3 - 2 - - - - - - - - RevHistory - - - - -
    - - - - - - - - -
    - - - - - -
    -
    -
    - - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - , - - - - - -   - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    -
    - - - - - -
    -
    -
    - - - - - -

    - - -

    -
    - - - - - -
    -
    -
    - - - - - - - - - - - - - - - - - - -

    - - - - - - - - - - - - - - -

    -
    - - - - - - - - - -
    -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    diff --git a/docbook-xsl-1.75.2/xhtml-1_1/toc.xsl b/docbook-xsl-1.75.2/xhtml-1_1/toc.xsl deleted file mode 100644 index 92b7b14..0000000 --- a/docbook-xsl-1.75.2/xhtml-1_1/toc.xsl +++ /dev/null @@ -1,330 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - -
    - - -
    -
    - -
    - - - - - - - - - -
    -
    -
    - - - - - - - - - - - - - - -
    - - -
    - - -
    -
    - -
    - - - - - - - - - -
    -
    -
    - - - - - - - - -
    - - - - - -
    -
    - - - - - - -
    -
    -
    - - - - - -
    - - -
    - -
    - -
  • - - - -
  • -
    -
    -
    - - - - -
    - - -
    -
    - -
  • - - -
  • -
    -
    -
    - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - -
    - - -
    -
    - - -
    - - -
    -
    - - - - - - - - - - - - -
    - - -
    -
    - - - -
    -
    - - - - -
    - - - - -
    - - -
    - -
    - - - -
    -
    - - - - -
    - - -
    - -
    - - - -
    -
    - - - - - Warning: don't know what to generate for - lot that has no children. - - - - -
    - - -
    -
    - - -
    - - -
    -
    - - - - - diff --git a/docbook-xsl-1.75.2/xhtml-1_1/verbatim.xsl b/docbook-xsl-1.75.2/xhtml-1_1/verbatim.xsl deleted file mode 100644 index 6ae4f56..0000000 --- a/docbook-xsl-1.75.2/xhtml-1_1/verbatim.xsl +++ /dev/null @@ -1,381 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - The shade.verbatim parameter is deprecated. - Use CSS instead, - - - for example: pre. - - { background-color: #E0E0E0; } - - - - - - - - - - - - - - - -
    -        
    -        
    -          
    -            
    -          
    -        
    -        
    -          
    -        
    -      
    -
    - -
    -        
    -        
    -          
    -            
    -          
    -        
    -        
    -          
    -            
    -          
    -          
    -            
    -          
    -        
    -      
    -
    -
    -
    - - - - - - - - - - - The shade.verbatim parameter is deprecated. - Use CSS instead, - - - for example: pre. - - { background-color: #E0E0E0; } - - - - - - - -
    -            
    -            
    -              
    -            
    -          
    -
    - -
    - -

    - - - -

    -
    -
    -
    -
    - - - -
    -            
    -            
    -          
    -
    - -
    - -

    - - - -

    -
    -
    -
    -
    -
    -
    - - - - - - - - - - -
    - -

    - - - -

    -
    -
    - - -
    - -

    - - - -

    -
    -
    -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Unexpected verbatim environment: - - - - - - - - - - 1 - - - - - - - - - - - - - No numberLines function available. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    diff --git a/docbook-xsl-1.75.2/xhtml-1_1/xref.xsl b/docbook-xsl-1.75.2/xhtml-1_1/xref.xsl deleted file mode 100644 index f6cefdc..0000000 --- a/docbook-xsl-1.75.2/xhtml-1_1/xref.xsl +++ /dev/null @@ -1,1316 +0,0 @@ - - - - - - - - -http://docbook.org/xlink/role/olink - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Endterm points to nonexistent ID: - - - ??? - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ERROR: xref linking to - - has no generated link text. - - ??? - - - - - - - - - - - - - - - - - - - - - - - - - - - - - XRef to nonexistent id: - - - ??? - - - - - - - - - - - - - - - - Endterm points to nonexistent ID: - - - - - ??? - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - suppress anchor - - - - - - - - - - - removing - - - - - - - - - - - - - - - - - removing - - - - - - - - - - - - - - - - - - - - - - Don't know what gentext to create for xref to: " - - ", (" - - ") - - - ??? - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - [ - - - - ] - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No bibliography entry: - - found in - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - [ - - - - - - - - - ] - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Endterm points to nonexistent ID: - - - ??? - - - - - - - - - - - - - Link element has no content and no Endterm. - Nothing to show in the link to - - - ??? - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Olink debug: root element of target.database ' - - ' is ' - - '. - - - - - - - - - - - - - - - Error: unresolved olink: - targetdoc/targetptr = ' - - / - - '. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Warning: olink linkmode pointer is wrong. - - - - # - - - - - - - - - - - - - ? - - - - - & - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/xhtml/admon.xsl b/docbook-xsl-1.75.2/xhtml/admon.xsl deleted file mode 100644 index 6a0090a..0000000 --- a/docbook-xsl-1.75.2/xhtml/admon.xsl +++ /dev/null @@ -1,135 +0,0 @@ - - - - - - - - - - 25 - - - - - - - - - - - - - - - - - - note - warning - caution - tip - important - note - - - - - - - - Note - Warning - Caution - Tip - Important - Note - - - - - - - - - -
    - - - - - - - - - - - - : - - - - - - - - - - -
    - - - - [{$alt}] - - - - - - - - - -
    - -
    -
    -
    - - -
    - - - - - - - - - - -

    - - -

    -
    - - -
    -
    - - - - - - - -
    diff --git a/docbook-xsl-1.75.2/xhtml/annotations.xsl b/docbook-xsl-1.75.2/xhtml/annotations.xsl deleted file mode 100644 index 3e137e8..0000000 --- a/docbook-xsl-1.75.2/xhtml/annotations.xsl +++ /dev/null @@ -1,158 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Note - - - namesp. cut - - - stripped namespace before processing - - - - - - - - Note - - - namesp. cut - - - processing stripped document - - - - - - - - Unable to strip the namespace from DB5 document, - cannot proceed. - - - - - - - - - ID ' - - ' not found in document. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - - - - - diff --git a/docbook-xsl-1.75.2/xhtml/ebnf.xsl b/docbook-xsl-1.75.2/xhtml/ebnf.xsl deleted file mode 100644 index ce53cc6..0000000 --- a/docbook-xsl-1.75.2/xhtml/ebnf.xsl +++ /dev/null @@ -1,328 +0,0 @@ - - - - - - - - - - -$Id: ebnf.xsl 8178 2008-12-15 22:26:38Z bobstayton $ - -Walsh -Norman -19992000 -Norman Walsh - - -HTML EBNF Reference - - -
    Introduction - -This is technical reference documentation for the DocBook XSL -Stylesheets; it documents (some of) the parameters, templates, and -other elements of the stylesheets. - -This reference describes the templates and parameters relevant -to formatting EBNF markup. - -This is not intended to be user documentation. -It is provided for developers writing customization layers for the -stylesheets, and for anyone who's interested in how it -works. - -Although I am trying to be thorough, this documentation is known -to be incomplete. Don't forget to read the source, too :-) -
    -
    -
    - - - - - - - - - - - - 1 - - - - - - EBNF - - for - - - - - - - - - - - - -
    - - -
    - - - - - - - - - - EBNF productions - -
    -
    -
    - - - - - - - - - - [ - - ] - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -   - - - - - - - - - - - - - Error: no ID for productionrecap linkend: - - . - - - - - - Warning: multiple "IDs" for productionrecap linkend: - - . - - - - - - - - - - - - - - - - | -
    -
    -
    - - - - - - - - - - - - - - - production - - - - - - - - - Non-terminals with no content must point to - production elements in the current document. - - - Invalid xpointer for empty nt: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ??? - - - - - - - - - - - - - /*  - -  */ -
    -
    - - - - - - - - - constraintdef - - - - - - - - - - - - - - - - : - - - - - - - : - - - - - - - - - -  ] - -
    -
    -
    - - -
    - - - -
    -
    - - -

    -
    - - - -
    diff --git a/docbook-xsl-1.75.2/xhtml/footnote.xsl b/docbook-xsl-1.75.2/xhtml/footnote.xsl deleted file mode 100644 index e673fed..0000000 --- a/docbook-xsl-1.75.2/xhtml/footnote.xsl +++ /dev/null @@ -1,302 +0,0 @@ - - - - - - - - - - - - - #ftn. - - - - - - - [ - - - - - ] - - - - - [ - - - - - ] - - - - - - - - - - - -ERROR: A footnoteref element has a linkend that points to an element that is not a footnote. -Typically this happens when an id attribute is accidentally applied to the child of a footnote element. -target element: -linkend/id: - - - - - - - - - - - - #ftn. - - - - - [ - - - - - ] - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ftn. - - - - - - # - - - - -

    - - - - - - - - [ - - - - - ] - - -

    -
    - - - - - - ftn. - - - - - - # - - - - - - - [ - - - - - ] - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    -
    - -
    -
    - - -
    -
    -

    The following annotations are from this essay. You are seeing - them here because your browser doesn’t support the user-interface - techniques used to make them appear as ‘popups’ on modern browsers.

    -
    - - -
    -
    -
    - - - - - - - - -
    - - -
    -
    - - -
    - - - -
    -
    - - - - Warning: footnote number may not be generated - correctly; - - unexpected as first child of footnote. - -
    - - -
    -
    -
    -
    - - - - - - - - -
    diff --git a/docbook-xsl-1.75.2/xhtml/formal.xsl b/docbook-xsl-1.75.2/xhtml/formal.xsl deleted file mode 100644 index 054e23b..0000000 --- a/docbook-xsl-1.75.2/xhtml/formal.xsl +++ /dev/null @@ -1,390 +0,0 @@ - - - - - - - -1 - - - - - - - - - - -
    - - - - - - - -
    - -
    - - - - - -

    - - -

    -

    - - - - - - - -
    -
    - -
    -
    -
    - - - - - - - - - -float - - - - - - - - - -
    - - - - - - - - - -

    - - - -

    -
    - - - - - -
    -

    - - - - - - - - -

    -

    -
    - - - - - - - - - -float - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - before - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Broken table: tr descendent of CALS Table. - - - - - - - - - - before - - - - - - - - - - - - - - - - - - - - - - - - - Broken table: row descendent of HTML table. - - - - - - - - - - - - - - before - - - - - - - - - - - - - - - - - - - - - before - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - float: - - ; - - - -
    -
    - -
    diff --git a/docbook-xsl-1.75.2/xhtml/glossary.xsl b/docbook-xsl-1.75.2/xhtml/glossary.xsl deleted file mode 100644 index d22b6c5..0000000 --- a/docbook-xsl-1.75.2/xhtml/glossary.xsl +++ /dev/null @@ -1,564 +0,0 @@ - - - - - - - - - - - - - - - - - - normalize.sort.input - - - - - - normalize.sort.output - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - -
    -
    - - - -
    - - - - -
    -
    - - - - - - - - - - - - - - - - - - normalize.sort.input - - - - - - normalize.sort.output - - - -
    - - - - - -
    - - - - - - - - - - -
    -
    -
    - - - - - - - - - - - - normalize.sort.input - - - - - - normalize.sort.output - - - - - -
    - - - -
    - - - - - - - - - - -
    -
    -
    - - -

    - - -

    -
    - - - - - - - - -
    - - - - 0 - 1 - - - - - - - - ( - - ) - - - - - -
    -
    - -
    - - - - 0 - 1 - - - - - - - - ( - - ) - -
    -
    - -
    - - - - 0 - 1 - - - - - -
    -
    -
    - - -
    - - - - , - - - - - , - - - - - , - - - - - - - - - - - -
    -

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Warning: glosssee @otherterm reference not found: - - - - - - - - - - - - - - -

    -
    -
    - - -
    - - -

    - - - - - - - - - - - - - -

    -
    -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Warning: glossseealso @otherterm reference not found: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - normalize.sort.input - - - - - - normalize.sort.output - - - - - - - - - - - Warning: processing automatic glossary - without a glossary.collection file. - - - - - - Warning: processing automatic glossary but unable to - open glossary.collection file ' - - ' - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -
    -
    -
    - - - - -
    -
    - - - - - - - - - - - - - - - - - normalize.sort.input - - - - - - normalize.sort.output - - - - -
    - - - -
    - - - - ! - - - - - - - - - - - - - - - -
    -
    -
    - - - -
    diff --git a/docbook-xsl-1.75.2/xhtml/graphics.xsl b/docbook-xsl-1.75.2/xhtml/graphics.xsl deleted file mode 100644 index d1c04fb..0000000 --- a/docbook-xsl-1.75.2/xhtml/graphics.xsl +++ /dev/null @@ -1,1436 +0,0 @@ - - - - - - - - - - - - - - - - 1 - - - - - - 1 - - - - - -
    - - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - 0 - 0 - - 1 - 0 - - - - - - 1.0 - 1.0 - - - - 1.0 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - px - - - - - - - - - - - px - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - px - - - - - - - - - - - px - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - 0 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - middle - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Warning: imagemaps not supported - on scaled images - - - - 0 - - - - - - - - - - - - - - - - - - - - middle - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - height: - - px - - - - - - - - - - - -
    - - - - - background-color: - - - - - - - - - - - - - - - - - - - - - -
    -
    - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - calspair - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - , - - , - - , - - - - - - - - - - - - Warning: only calspair or - otherunits='imagemap' supported - in imageobjectco - - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - middle - - - - - - - - - - - - - - - - - -
    - - - - - - - -
    -
    -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No insertfile extension available. - - - - - - - Cannot insert - . Check use.extensions and textinsert.extension parameters. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No insertfile extension available. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No insertfile extension available. - - - - - - - Cannot insert - . Check use.extensions and textinsert.extension parameters. - - - - - - - - -
    - - - - - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    diff --git a/docbook-xsl-1.75.2/xhtml/highlight.xsl b/docbook-xsl-1.75.2/xhtml/highlight.xsl deleted file mode 100644 index 38f6d9c..0000000 --- a/docbook-xsl-1.75.2/xhtml/highlight.xsl +++ /dev/null @@ -1,72 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/xhtml/html-rtf.xsl b/docbook-xsl-1.75.2/xhtml/html-rtf.xsl deleted file mode 100644 index e079a73..0000000 --- a/docbook-xsl-1.75.2/xhtml/html-rtf.xsl +++ /dev/null @@ -1,321 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - -
    - - - - - - - - - - -
    -
    -
    -
    - - - - - - - - - - - - - - -
    - -
    - - - - - - - - - - -
    -
    -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    diff --git a/docbook-xsl-1.75.2/xhtml/html.xsl b/docbook-xsl-1.75.2/xhtml/html.xsl deleted file mode 100644 index c4af3a6..0000000 --- a/docbook-xsl-1.75.2/xhtml/html.xsl +++ /dev/null @@ -1,364 +0,0 @@ - - - - - - - - - - - - left - right - left - - - - - - right - left - right - - - - - - ltr - rtl - ltr - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - # - - - - - - - - - # - - - - - - - - - - - - - - - - - - - bullet - - - - - - - - - bullet - - - © - - - ® - (SM) -   - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ID recommended on - - - : - - - - ... - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/xhtml/htmltbl.xsl b/docbook-xsl-1.75.2/xhtml/htmltbl.xsl deleted file mode 100644 index 47c9a98..0000000 --- a/docbook-xsl-1.75.2/xhtml/htmltbl.xsl +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - float: - - left - right - - - - - - - - - - - - - none - none - - ; - - - - diff --git a/docbook-xsl-1.75.2/xhtml/index.xsl b/docbook-xsl-1.75.2/xhtml/index.xsl deleted file mode 100644 index 2c39f4f..0000000 --- a/docbook-xsl-1.75.2/xhtml/index.xsl +++ /dev/null @@ -1,264 +0,0 @@ - - - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - -
    - -
    -
    -
    -
    - - - - - - - - - - -
    -
    -
    - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -
    -
    -
    - - - - - - - - - - - - -
    - - - - - - - - - -
    - -
    -
    -
    - - -

    - - -

    -
    - - - - - - - - - -
    - - - - - - - - - - - - -
    - -
    -
    - - - -
    -
    - - - - - - - - - - -
    -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    -
    - - -
    -
    - -
    -
    - - - - - - - - - - - - - - -
    -
    -
    - - -
    - ( - - - - - - ) -
    -
    - - -
    - ( - - - - - - ) -
    -
    - - diff --git a/docbook-xsl-1.75.2/xhtml/info.xsl b/docbook-xsl-1.75.2/xhtml/info.xsl deleted file mode 100644 index 76285ab..0000000 --- a/docbook-xsl-1.75.2/xhtml/info.xsl +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/xhtml/inline.xsl b/docbook-xsl-1.75.2/xhtml/inline.xsl deleted file mode 100644 index e1972fe..0000000 --- a/docbook-xsl-1.75.2/xhtml/inline.xsl +++ /dev/null @@ -1,1445 +0,0 @@ - - - - - - - - - - - - - - - - - - _blank - _top - - - - - - - - - - - - - - 1 - 0 - - - - - - - - - 1 - 0 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - XLink to nonexistent id: - - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - span - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ( - - ) - - - - - - - - - - - , - - - - - - - , - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - abbr - - - - - - acronym - - - - - - - - - - - - - - - - - - - - - - - - - - http://example.com/cgi-bin/man.cgi? - - ( - - ) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - SM - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Warning: glossary.collection specified, but there are - - automatic glossaries - - - - - - - - - - - - - - - - - - - - - - - - There's no entry for - - in - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Error: no glossentry for glossterm: - - . - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - element - - - - - - - - - - - - - - - - </ - - > - - - & - - ; - - - &# - - ; - - - % - - ; - - - <? - - > - - - <? - - ?> - - - < - - > - - - < - - /> - - - <!-- - - --> - - - - - - - - - - - - - - - - - - - - - - < - - - - - mailto: - - - - - - > - - - - - - - - - - - + - - - - - - - - + - - - - - - - - - - - - - - - - - - - ( - - ) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - [ - - - - - - - - - - - - - - - - - - - ] - - - [ - - ] - - - - - - - - - - - - - [ - - - - - - - - - - - - ] - - - [ - - ] - - - - - - - - - - - - -

    -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/xhtml/keywords.xsl b/docbook-xsl-1.75.2/xhtml/keywords.xsl deleted file mode 100644 index 5f6b4fb..0000000 --- a/docbook-xsl-1.75.2/xhtml/keywords.xsl +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - , - - - - - diff --git a/docbook-xsl-1.75.2/xhtml/lists.xsl b/docbook-xsl-1.75.2/xhtml/lists.xsl deleted file mode 100644 index 1408d50..0000000 --- a/docbook-xsl-1.75.2/xhtml/lists.xsl +++ /dev/null @@ -1,1121 +0,0 @@ - - - - - - - - - - -
    - - - - - - - - - -
      - - - - - - - - - - - - - -
    -
    -
    - - - - - - - - - - - - - - - - - - - - - - - circle - disc - square - - - - - - -
  • - - - - list-style-type: - - - - - - - - - - - -
    - -
    -
    - - - -
    -
  • -
    - - - - - - - - - - - - - 1 - a - i - A - I - - - - Unexpected numeration: - - - - - - - -
    - - - - - - - - - - - - - - - - - - -
    -
    - -
      - - - - - - - - - - - - - - - - - -
    -
    -
    -
    -
    - - - - - - -
  • - - - - - - - - - - - - - - -
    - -
    -
    - - - -
    -
  • -
    - - - - - - - - - - - - - -
    - -
    -
    - - - -
    - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    - - - -
    - -
    -
    -
    -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - -

    - - - - - - - - - - - - - -

    -
    -
    -
    - - -
    - - -
    -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - -

    - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    - - - - - -
    - - - - - - - - - - - - - - - - - - -
    -
    -
    -
    -
    -
    - - - - - - - - - -
    - -
    -
    - - - -
    -
    - - - - - - - - - - - - - - - 1 - - - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - , - - - - - - - - - - - - - - - - - - - - - - - 1 - - - -
    -
    - - - - - - - - - - - - 1 - - - -
    -
    - - - 1 - 1 - - - - - - - - - - - - - - - - - - - - - - - - - 1 - 1 - - 1 - - - - - - - - -   - - - - - - - - - - - - - - 1 - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - 1 - 1 - - 1 - - - - - - - - -   - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - before - - - - - - - - - -
    - - - - - 0 - 1 - - - - - - - - - - - - -
      - - -
    -
    - -
      - - - - - -
    -
    -
    - - - - -
    -
    - - - - - - - - - - - - -
      - - -
    -
    - - -
  • - - - -
  • -
    - - - -
      - - -
    -
    - - -

    - - - - -

    -
    - - - - - - - - -
    - - - - - - - - - - - - - - - - - -
    -
    - - -
    - - - - - - - -
    -
    - - - - - - - - - -
    - - - -
    -
    - - - - - - - - -
    - - - - - : - - - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - -
    -
    - -
    - -
    -
    -
    -
    -
    - - - - - - - - - - - - - - - -

    - - - - -

    - - - - - -
    - -
    - - - - -
    -
    -
    -
    -
    - - - - - - - - - -

    - - - - - - - - - - - - - - - -

    -
    -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ??? - - - - - # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ??? - - - - - - - - - - - - - - - - - - - -
    diff --git a/docbook-xsl-1.75.2/xhtml/maketoc.xsl b/docbook-xsl-1.75.2/xhtml/maketoc.xsl deleted file mode 100644 index 0ae8055..0000000 --- a/docbook-xsl-1.75.2/xhtml/maketoc.xsl +++ /dev/null @@ -1,91 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - filename=" - - " - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/xhtml/manifest.xsl b/docbook-xsl-1.75.2/xhtml/manifest.xsl deleted file mode 100644 index 26b51d0..0000000 --- a/docbook-xsl-1.75.2/xhtml/manifest.xsl +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/xhtml/math.xsl b/docbook-xsl-1.75.2/xhtml/math.xsl deleted file mode 100644 index b2cac2d..0000000 --- a/docbook-xsl-1.75.2/xhtml/math.xsl +++ /dev/null @@ -1,284 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Unsupported TeX math notation: - - - - - - - - - - - - - \nopagenumbers - - - - - \bye - - - - - - - - - - - - - - - - - - - - - - - - \special{dvi2bitmap outputfile - - } - - - $ - - - - $ - - - \vfill\eject - - - - - - - - - - - - - - - - - - - - - - - - - \special{dvi2bitmap outputfile - - } - - - $$ - - - - $$ - - - \vfill\eject - - - - - - - - - - \documentclass{article} - - \pagestyle{empty} - - \begin{document} - - - - - \end{document} - - - - - - - - - - - - - - - - - - - - - - - - \special{dvi2bitmap outputfile - - } - - - $ - - - - $ - - - \newpage - - - - - - - - - - - - - - - - - - - - - - - - - \special{dvi2bitmap outputfile - - } - - - $$ - - - - $$ - - - \newpage - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - 0 - 1 - - - - - - diff --git a/docbook-xsl-1.75.2/xhtml/oldchunker.xsl b/docbook-xsl-1.75.2/xhtml/oldchunker.xsl deleted file mode 100644 index e727bf1..0000000 --- a/docbook-xsl-1.75.2/xhtml/oldchunker.xsl +++ /dev/null @@ -1,176 +0,0 @@ - - - - - - - - - - - - - - - - -Encoding used in generated HTML pages - -This encoding is used in files generated by chunking stylesheet. Currently -only Saxon is able to change output encoding. - - - - - - - - - -Saxon character representation used in generated HTML pages - -This character representation is used in files generated by chunking stylesheet. If -you want to suppress entity references for characters with direct representation -in default.encoding, set this parameter to value native. - - - - - - - - - - - - - - - - - - - - - - - - Chunking isn't supported with - - - - - - - - - - - - - - - Writing - - - for - - - ( - - ) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Can't make chunks with - - 's processor. - - - - - - - - - - - - - - - - Writing - - - for - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Can't make chunks with - - 's processor. - - - - - - diff --git a/docbook-xsl-1.75.2/xhtml/onechunk.xsl b/docbook-xsl-1.75.2/xhtml/onechunk.xsl deleted file mode 100644 index 15a04e1..0000000 --- a/docbook-xsl-1.75.2/xhtml/onechunk.xsl +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - - - -1 - - - - # - - - - - - diff --git a/docbook-xsl-1.75.2/xhtml/param.xsl b/docbook-xsl-1.75.2/xhtml/param.xsl deleted file mode 100644 index 3dc7bbf..0000000 --- a/docbook-xsl-1.75.2/xhtml/param.xsl +++ /dev/null @@ -1,431 +0,0 @@ - - - - - - - - -.png - -images/ - - - - - - -/* ====================================================================== - Annotations -*/ - -div.annotation-list { visibility: hidden; - } - -div.annotation-nocss { position: absolute; - visibility: hidden; - } - -div.annotation-popup { position: absolute; - z-index: 4; - visibility: hidden; - padding: 0px; - margin: 2px; - border-style: solid; - border-width: 1px; - width: 200px; - background-color: white; - } - -div.annotation-title { padding: 1px; - font-weight: bold; - border-bottom-style: solid; - border-bottom-width: 1px; - color: white; - background-color: black; - } - -div.annotation-body { padding: 2px; - } - -div.annotation-body p { margin-top: 0px; - padding-top: 0px; - } - -div.annotation-close { position: absolute; - top: 2px; - right: 2px; - } - - - -http://docbook.sourceforge.net/release/script/AnchorPosition.js http://docbook.sourceforge.net/release/script/PopupWindow.js - -http://docbook.sourceforge.net/release/images/annot-open.png - -http://docbook.sourceforge.net/release/images/annot-close.png - -A - -. - - -. -http://docbook.sourceforge.net/release/bibliography/bibliography.xml - - -normal - - -60 -.png - - -15 - -images/callouts/ - - -10 -10102 - - - - - - - - - - - -no - -1 - - - - - left - before - - - - -all -maybe -http://docbook.sourceforge.net/release/images/draft.png -#F5DCB3 - - -::= - - - - - -DocBook Online Help Sample -com.example.help -Example provider -1 - - - - - - 1 - 0 - - - - -1 - - - -figure before -example before -equation before -table before -procedure before -task before - - -kr - - - - - - - - - -appendix toc,title -article/appendix nop -article toc,title -book toc,title,figure,table,example,equation -chapter toc,title -part toc,title -preface toc,title -qandadiv toc -qandaset toc -reference toc,title -sect1 toc -sect2 toc -sect3 toc -sect4 toc -sect5 toc -section toc -set toc,title - - - - -no - - - - - - - - - - - - - -.html - -copyright - - - - -text/css -alias.h - - - - - - - -User1 - - -User2 - - - - - - - - - -htmlhelp.chm - - -iso-8859-1 - - - - - -toc.hhc -5 - - -index.hhk -htmlhelp.hhp - -Main - -context.h - - - - - - - - - - - -basic - - - - - - - - - -no -iso-8859-1 - - -en - - - - -5 - - -3 - - - - - - HTML.manifest - - - - -+ -.gif - -images/ -1 - - -6in - - - - replace - -no - - - -no -fragid= -.olink -pubid - /cgi-bin/olink -sysid - -0 - -I - -90 -10 - - - - - - - - - - - - - - - -; - - - - - -. -number - - - - - - - - - I - -index - -. -.!?: - -8 - - - - - 0 - #E0E0E0 - - - - - - -0 - - - - - -solid -0.5pt -a - - - -solid -0.5pt - - olinkdb.xml -target.db - - -tex-math-equations.tex - - -dl -2 -8 -_top - - - - - - - - -, -0 - - - writing-mode - - - - - - - - -: - - - - diff --git a/docbook-xsl-1.75.2/xhtml/pi.xsl b/docbook-xsl-1.75.2/xhtml/pi.xsl deleted file mode 100644 index 28f9efe..0000000 --- a/docbook-xsl-1.75.2/xhtml/pi.xsl +++ /dev/null @@ -1,1203 +0,0 @@ - - - - - - - -HTML Processing Instruction Reference - - $Id: pi.xsl 8394 2009-04-02 20:31:30Z mzjn $ - - - - Introduction - This is generated reference documentation for all - user-specifiable processing instructions (PIs) in the DocBook - XSL stylesheets for HTML output. - - You add these PIs at particular points in a document to - cause specific “exceptions” to formatting/output behavior. To - make global changes in formatting/output behavior across an - entire document, it’s better to do it by setting an - appropriate stylesheet parameter (if there is one). - - - - - - - - - Sets background color for an image - - Use the dbhtml background-color PI before or - after an image (graphic, inlinegraphic, - imagedata, or videodata element) as a - sibling to the element, to set a background color for the - image. - - - dbhtml background-color="color" - - - - background-color="color" - - An HTML color value - - - - - - Background color - - - - - - - - - - - - Sets background color on a CALS table row or table cell - - Use the dbhtml bgcolor PI as child of a CALS table row - or cell to set a background color for that table row or cell. - - - dbhtml bgcolor="color" - - - - bgcolor="color" - - An HTML color value - - - - - - Cell background color - - - - - - - - - - - - Specifies cellpadding in CALS table or qandaset output - - Use the dbhtml cellpadding PI as a child of a - CALS table or qandaset to specify the value - for the HTML cellpadding attribute in the - output HTML table. - - - dbhtml cellpadding="number" - - - - cellpadding="number" - - Specifies the cellpadding - - - - - - html.cellpadding - - - Cell spacing and cell padding, - Q and A formatting - - - - - - - - - - - - Specifies cellspacing in CALS table or qandaset output - - Use the dbhtml cellspacing PI as a child of a - CALS table or qandaset to specify the value - for the HTML cellspacing attribute in the - output HTML table. - - - dbhtml cellspacing="number" - - - - cellspacing="number" - - Specifies the cellspacing - - - - - - html.cellspacing - - - Cell spacing and cell padding, - Q and A formatting - - - - - - - - - - - - Set value of the class attribute for a CALS table row - - Use the dbhtml class PI as a child of a - row to specify a class - attribute and value in the HTML output for that row. - - - dbhtml class="name" - - - - class="name" - - Specifies the class name - - - - - - Table styles in HTML output - - - - - - - - - - - - Specifies a directory name in which to write files - - When chunking output, use the dbhtml dir PI - as a child of a chunk source to cause the output of that - chunk to be written to the specified directory; also, use it - as a child of a mediaobject to specify a - directory into which any long-description files for that - mediaobject will be written. - - - dbhtml dir="path" - - - - dir="path" - - Specifies the pathname for the directory - - - - - - base.dir - - - dbhtml dir processing instruction - - - - - - - - - - - - Specifies a filename for a chunk - - When chunking output, use the dbhtml filename - PI as a child of a chunk source to specify a filename for - the output file for that chunk. - - - dbhtml filename="filename" - - - - filename="path" - - Specifies the filename for the file - - - - - - use.id.as.filename - - - dbhtml filenames - - - - - - - - - - - - Specifies presentation style for a funcsynopsis - - Use the dbhtml funcsynopsis-style PI as a child of - a funcsynopsis or anywhere within a funcsynopsis - to control the presentation style for output of all - funcprototype instances within that funcsynopsis. - - - dbhtml funcsynopsis-style="kr"|"ansi" - - - - funcsynopsis-style="kr" - - Displays funcprototype output in K&R style - - - funcsynopsis-style="ansi" - - Displays funcprototype output in ANSI style - - - - - - funcsynopsis.style - - - - - - - - - - - - Specifies a path to the location of an image file - - Use the dbhtml img.src.path PI before or - after an image (graphic, - inlinegraphic, imagedata, or - videodata element) as a sibling to the element, - to specify a path to the location of the image; in HTML - output, the value specified for the - img.src.path attribute is prepended to the - filename. - - - dbhtml img.src.path="path" - - - - img.src.path="path" - - Specifies the pathname to prepend to the name of the image file - - - - - - img.src.path - - - Using fileref - - - - - - - - - - - - Specifies the label width for a qandaset - - Use the dbhtml label-width PI as a child of a - qandaset to specify the width of labels. - - - dbhtml label-width="width" - - - - label-width="width" - - Specifies the label width (including units) - - - - - - Q and A formatting - - - - - - - - - - - - Specifies interval for line numbers in verbatims - - Use the dbhtml linenumbering.everyNth PI as a child - of a “verbatim” element – programlisting, - screen, synopsis — to specify - the interval at which lines are numbered. - - - dbhtml linenumbering.everyNth="N" - - - - linenumbering.everyNth="N" - - Specifies numbering interval; a number is output - before every Nth line - - - - - - linenumbering.everyNth - - - Line numbering - - - - - - - - - - - - Specifies separator text for line numbers in verbatims - - Use the dbhtml linenumbering.separator PI as a child - of a “verbatim” element – programlisting, - screen, synopsis — to specify - the separator text output between the line numbers and content. - - - dbhtml linenumbering.separator="text" - - - - linenumbering.separator="text" - - Specifies the text (zero or more characters) - - - - - - linenumbering.separator - - - Line numbering - - - - - - - - - - - - Specifies width for line numbers in verbatims - - Use the dbhtml linenumbering.width PI as a child - of a “verbatim” element – programlisting, - screen, synopsis — to specify - the width set aside for line numbers. - - - dbhtml linenumbering.width="width" - - - - linenumbering.width="width" - - Specifies the width (inluding units) - - - - - - linenumbering.width - - - Line numbering - - - - - - - - - - - - Specifies presentation style for a variablelist or - segmentedlist - - Use the dbhtml list-presentation PI as a child of - a variablelist or segmentedlist to - control the presentation style for the list (to cause it, for - example, to be displayed as a table). - - - dbhtml list-presentation="list"|"table" - - - - list-presentation="list" - - Displays the list as a list - - - list-presentation="table" - - Displays the list as a table - - - - - - - - variablelist.as.table - - - segmentedlist.as.table - - - - - Variable list formatting in HTML - - - - - - - - - - - - Specifies the width of a variablelist or simplelist - - Use the dbhtml list-width PI as a child of a - variablelist or a simplelist presented - as a table, to specify the output width. - - - dbhtml list-width="width" - - - - list-width="width" - - Specifies the output width (including units) - - - - - - Variable list formatting in HTML - - - - - - - - - - - - Specifies the height for a CALS table row - - Use the dbhtml row-height PI as a child of a - row to specify the height of the row. - - - dbhtml row-height="height" - - - - row-height="height" - - Specifies the row height (including units) - - - - - - Row height - - - - - - - - - - - - (obsolete) Sets the starting number on an ordered list - - This PI is obsolete. The intent of - this PI was to provide a means for setting a specific starting - number for an ordered list. Instead of this PI, set a value - for the override attribute on the first - listitem in the list; that will have the same - effect as what this PI was intended for. - - - dbhtml start="character" - - - - start="character" - - Specifies the character to use as the starting - number; use 0-9, a-z, A-Z, or lowercase or uppercase - Roman numerals - - - - - - List starting number - - - - - - - - - - - - Do not chunk any descendants of this element. - - When generating chunked HTML output, adding this PI as the child of an element that contains elements that would normally be generated on separate pages if generating chunked output causes chunking to stop at this point. No descendants of the current element will be split into new HTML pages: -<section> -<title>Configuring pencil</title> -<?dbhtml stop-chunking?> - -... - -</section> - - - - dbhtml stop-chunking - - - Chunking into multiple HTML files - - - - - - Specifies summary for CALS table, variablelist, segmentedlist, or qandaset output - - Use the dbhtml table-summary PI as a child of - a CALS table, variablelist, - segmentedlist, or qandaset to specify - the text for the HTML summary attribute - in the output HTML table. - - - dbhtml table-summary="text" - - - - table-summary="text" - - Specifies the summary text (zero or more characters) - - - - - - Variable list formatting in HTML, - Table summary text - - - - - - - - - - - - Specifies the width for a CALS table - - Use the dbhtml table-width PI as a child of a - CALS table to specify the width of the table in - output. - - - dbhtml table-width="width" - - - - table-width="width" - - Specifies the table width (including units or as a percentage) - - - - - - default.table.width - - - Table width - - - - - - - - - - - - Sets character formatting for terms in a variablelist - - Use the dbhtml term-presentation PI as a child - of a variablelist to set character formatting for - the term output of the list. - - - dbhtml term-presentation="bold"|"italic"|"bold-italic" - - - - term-presentation="bold" - - Specifies that terms are displayed in bold - - - term-presentation="italic" - - Specifies that terms are displayed in italic - - - term-presentation="bold-italic" - - Specifies that terms are displayed in bold-italic - - - - - - Variable list formatting in HTML - - - - - - - - - - - - Specifies separator text among terms in a varlistentry - - Use the dbhtml term-separator PI as a child - of a variablelist to specify the separator text - among term instances. - - - dbhtml term-separator="text" - - - - term-separator="text" - - Specifies the text (zero or more characters) - - - - - - variablelist.term.separator - - - Variable list formatting in HTML - - - - - - - - - - - - Specifies the term width for a variablelist - - Use the dbhtml term-width PI as a child of a - variablelist to specify the width for - term output. - - - dbhtml term-width="width" - - - - term-width="width" - - Specifies the term width (including units) - - - - - - Variable list formatting in HTML - - - - - - - - - - - - Specifies whether a TOC should be generated for a qandaset - - Use the dbhtml toc PI as a child of a - qandaset to specify whether a table of contents - (TOC) is generated for the qandaset. - - - dbhtml toc="0"|"1" - - - - toc="0" - - If zero, no TOC is generated - - - toc="1" - - If 1 (or any non-zero value), - a TOC is generated - - - - - - Q and A list of questions, - Q and A formatting - - - - - - - - - - - - Generates a hyperlinked list of commands - - Use the dbcmdlist PI as the child of any - element (for example, refsynopsisdiv) containing multiple - cmdsynopsis instances; a hyperlinked navigational - “command list” will be generated at the top of output for that - element, enabling users to quickly jump - to each command synopsis. - - - dbcmdlist - - - [No parameters] - - - - - - No cmdsynopsis elements matched dbcmdlist PI, perhaps it's nested too deep? - - -
    - - - -
    -
    - - - Generates a hyperlinked list of functions - - Use the dbfunclist PI as the child of any - element (for example, refsynopsisdiv) containing multiple - funcsynopsis instances; a hyperlinked - navigational “function list” will be generated at the top of - output for that element, enabling users to quickly - jump to to each function synopsis. - - - dbfunclist - - - [No parameters] - - - - - - No funcsynopsis elements matched dbfunclist PI, perhaps it's nested too deep? - - -
    - - - -
    -
    - - - Copies an external well-formed HTML/XML file into current doc - - Use the dbhtml-include href PI anywhere in a - document to cause the contents of the file referenced by the - href pseudo-attribute to be copied/inserted “as - is” into your HTML output at the point in document order - where the PI occurs in the source. - - The referenced file may contain plain text (as long as - it is “wrapped” in an html element — see the - note below) or markup in any arbitrary vocabulary, - including HTML — but it must conform to XML - well-formedness constraints (because the feature in XSLT - 1.0 for opening external files, the - document() function, can only handle - files that meet XML well-formedness constraints). - Among other things, XML well-formedness constraints - require a document to have a single root - element. So if the content you want to - include is plain text or is markup that does - not have a single root element, - wrap the content in an - html element. The stylesheets will - strip out that surrounding html “wrapper” when - they find it, leaving just the content you want to - insert. - - - - dbhtml-include href="URI" - - - - href="URI" - - Specifies the URI for the file to include; the URI - can be, for example, a remote http: - URI, or a local filesystem file: - URI - - - - - - textinsert.extension - - - Inserting external HTML code, - External code files - - - - - - - href - - - - - - - - - - - - - - - - - - - - ERROR: dbhtml-include processing instruction - href has no content. - - - - - - - ERROR: dbhtml-include processing instruction has - missing or empty href value. - - - - - - - - Sets topic name and topic id for context-sensitive HTML Help - - Use the dbhh PI as a child of components - that should be used as targets for context-sensitive help requests. - - - dbhh topicname="name" topicid="id" - - - - topicname="name" - - Specifies a unique string constant that identifies a help topic - - - topicid="id" - - Specifies a unique integer value for the topicname string - - - - - - Context-sensitive help - - - - - - - - - - filename - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - # - - - - - - - - - - - - - - - - - - -
    - - - - - -
    -
    -
    - - - - - - - - - - - - - - - -
    - - - # - - - - - - - - - - - - - - - - - - -
    - - - - - -
    -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - / - - - - / - - - - -
    diff --git a/docbook-xsl-1.75.2/xhtml/profile-chunk-code.xsl b/docbook-xsl-1.75.2/xhtml/profile-chunk-code.xsl deleted file mode 100644 index 6be8755..0000000 --- a/docbook-xsl-1.75.2/xhtml/profile-chunk-code.xsl +++ /dev/null @@ -1,610 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - bk - - - - - - - - - - - - - - - ar - - - - - - - - - - - - - - - pr - - - - - - - - - - - - - - - ch - - - - - - - - - - - - - - - ap - - - - - - - - - - - - - - - - - - - pt - - - - - - - - - - - - - - - - - - - rn - - - - - - - - - - - - - - - - - - re - - - - - - - - - - - - - - - - - - - co - - - - - - - - - - - s - - - - - - - - - - - - - - - - - - - bi - - - - - - - - - - - - - - - - - - - go - - - - - - - - - - - - - - - - - - - ix - - - - - - - - si - - - - - - - - chunk-filename-error- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Note: namesp. cut : stripped namespace before processingNote: namesp. cut : processing stripped document - - - - - - - - - - - - - - - - - ID ' - - ' not found in document. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/xhtml/profile-chunk.xsl b/docbook-xsl-1.75.2/xhtml/profile-chunk.xsl deleted file mode 100644 index def7fff..0000000 --- a/docbook-xsl-1.75.2/xhtml/profile-chunk.xsl +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.75.2/xhtml/profile-docbook.xsl b/docbook-xsl-1.75.2/xhtml/profile-docbook.xsl deleted file mode 100644 index aa1453e..0000000 --- a/docbook-xsl-1.75.2/xhtml/profile-docbook.xsl +++ /dev/null @@ -1,409 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Element - - in namespace ' - - ' encountered - - in - - - , but no template matches. - - - - < - - > - - </ - - > - - - - - - - -rtl - - - - - - - - - - - <xsl:copy-of select="$title"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Note: namesp. cut : stripped namespace before processingNote: namesp. cut : processing stripped document - - - - - - - - - - - - - - - - - - ID ' - - ' not found in document. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - - - - - diff --git a/docbook-xsl-1.75.2/xhtml/profile-onechunk.xsl b/docbook-xsl-1.75.2/xhtml/profile-onechunk.xsl deleted file mode 100644 index b84b3e9..0000000 --- a/docbook-xsl-1.75.2/xhtml/profile-onechunk.xsl +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - - - -1 - - - - # - - - - - - diff --git a/docbook-xsl-1.75.2/xhtml/qandaset.xsl b/docbook-xsl-1.75.2/xhtml/qandaset.xsl deleted file mode 100644 index a7c0877..0000000 --- a/docbook-xsl-1.75.2/xhtml/qandaset.xsl +++ /dev/null @@ -1,420 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    - -

    -
    - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    - -

    -
    - - - - - - - - - - -
    - - - - - - - - - - - - - - -
    - - -
    -
    - - -
    -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - -
    - - - - -
    - - - -
    - -
    -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1% - - - - - - - - -
    -
    - - - - - - - - - -
    diff --git a/docbook-xsl-1.75.2/xhtml/refentry.xsl b/docbook-xsl-1.75.2/xhtml/refentry.xsl deleted file mode 100644 index 887e76d..0000000 --- a/docbook-xsl-1.75.2/xhtml/refentry.xsl +++ /dev/null @@ -1,299 +0,0 @@ - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - - - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    - -

    -
    - - - - -
    - - - - -
    -
    -
    -
    - - - - - - -
    -
    - - - - - - - - - - - - - - ( - - ) - - - - - - - - - - - -
    - - - - - - - - - - -

    - - - -

    -
    - -

    - - - - - - - - -

    -
    -
    - -

    - -

    -
    -
    - - - - - - , - - - - - - - - - em-dash - - - - - - - - - - - - - - - - : - - - - - - - -
    - - - - -

    - - - - - - - - - - -

    - -
    -
    - - - - - - - - - - - -
    - - - - - - - - - -
    -
    - - - - - - 0 - 1 - - - - 6 - - - - - - - - - - - - -

    - -

    -
    - - - -

    - -

    -
    - - - -

    - -

    -
    - - - - - - - - - -
    diff --git a/docbook-xsl-1.75.2/xhtml/sections.xsl b/docbook-xsl-1.75.2/xhtml/sections.xsl deleted file mode 100644 index aec647d..0000000 --- a/docbook-xsl-1.75.2/xhtml/sections.xsl +++ /dev/null @@ -1,541 +0,0 @@ - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -
    -
    - - - - - - - - 1 - 2 - 3 - 4 - 5 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    - - - - - - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 6 - - - - - - - - - - clear: both - - - - - - - - - - - - - - - - - - - - - - - 1 - - - - - - - - - - - - 1 - - - - - - - 2 - 3 - 4 - 5 - 6 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    diff --git a/docbook-xsl-1.75.2/xhtml/synop.xsl b/docbook-xsl-1.75.2/xhtml/synop.xsl deleted file mode 100644 index 37025b9..0000000 --- a/docbook-xsl-1.75.2/xhtml/synop.xsl +++ /dev/null @@ -1,1513 +0,0 @@ - - - - - - - - - - - - - - -
    - -

    - - - - - - - - - - - - -

    -
    -
    - - -
    - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    - - - - - - - - - - - ( - - ) - -   - - - - - - - - - - - - - - - - - - - ( - - ) - - - - - - - - - - - - - - - - - - - - - - -
    -    
    -    
    -  
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    - - -
    - -
    -

    -
    - - - - - - ( - - - - - - - - - - - - - - - - ) - ; - - - - ... - ) - ; - - - - - - - , - - - ) - ; - - - - - - - - - - - - - - - - - - - - -
    - - - - ; -
    - - - - - - - - - - - - - - - - - - ( - - ) - - - - - - - - - - - - - - - - - -
    - -
     
    - -
    - -
    -
    -
     
    -
    - - - - - - ( - - - - - - - - - - - - - - - - - ) - ; - -   - - - - - ... - ) - ; - -   - - - - - - - - , - - - ) - ; - - - -   - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -   - - - - - - - - - - - - - - - - - - - - - - - - - - - - -   - - - - - - ; - - - - - - - - - - - - - - - - - - - - - - - - ( - - ) - ; - - - - - - -

    - -

    -
    - - - - - - ( - - - - - - - - - - - - - - - - void) - ; - - - - ... - ) - ; - - - - - - - , - - - ) - ; - - - - - - - - - - - - - - - - - - - - - ( - - ) - - - - - - - - - - - - - - - - - -
    - -
     
    -
     
    -
    - - - - - - ( - - - - - - - - - - - - - - - - - void) - ; - -   - - - - - ... - ) - ; - -   - - - - - - - - , - - - ) - ; - - - - - - - - - - - - - - - - - - - - - - ( - - ) - - - - -java - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Unrecognized language on - - : - - - - - - - - - - - -
    -
    -
    - - - - - -
    -    
    -    
    -    
    -       extends
    -      
    -      
    -        
    -      -
    -
    - - implements - - -
    -      -
    -
    - - throws - - -  { -
    - - } -
    -
    - - - - - - - - - , - - - - - - - - - - - - - - - - -   - - - - - - - , - - - - - - - - - - , - - - - - - - - - - , - - - - - - - - - - - -    - - - ; - - - - - - - - -   - - - - - - - -   - - - - - - - - - - - - - - - void  - - - - - - - - - - - - 0 - - , -
    - - -   - - - -
    - - - - -
    - - - - - - - - - - - - - - -    - - - - - - - - - - - - - - - ( - - - - ) - -
    -     throws  - -
    - - - - - ; -
    - -
    - - - - -
    -    
    -    
    -    
    -      : 
    -      
    -      
    -        
    -      -
    -
    - - implements - - -
    -      -
    -
    - - throws - - -  { -
    - - } -
    -
    - - - - - - - - , - - - - - - - - - - - - -   - - - - - - - , - - - - - - - - - - , - - - - - - - - - - , - - - - - - - - - - - -    - - - ; - - - - - - - - -   - - - - - - - -   - - - - - - - - - - - - - - - void  - - - - - - - - - - - - - , - - - - - - - - - - - - - - - - - - - - - - -    - - - - - - - - - - ( - - ) - -
    -     throws  - -
    - - - - - ; -
    - -
    - - - - -
    -    
    -    interface 
    -    
    -    
    -      : 
    -      
    -      
    -        
    -      -
    -
    - - implements - - -
    -      -
    -
    - - throws - - -  { -
    - - } -
    -
    - - - - - - - - , - - - - - - - - - - - - -   - - - - - - - , - - - - - - - - - - , - - - - - - - - - - , - - - - - - - - - - - -    - - - ; - - - - - - - - -   - - - - - - - -   - - - - - - - - - - - - - - - void  - - - - - - - - - - - - - , - - - - - - - - - - - - - - - - - - - - - -    - - - - - - - - - - ( - - ) - -
    -     raises( - - ) -
    - - - - - ; -
    - -
    - - - - -
    -    
    -    package 
    -    
    -    ;
    -    
    - - - @ISA = ( - - ); -
    -
    - - -
    -
    - - - - - - - - , - - - - - - - - - - - - -   - - - - - - - , - - - - - - - - - - , - - - - - - - - - - , - - - - - - - - - - - -    - - - ; - - - - - - - - -   - - - - - - - -   - - - - - - - - - - - - - - - void  - - - - - - - - - - - - - , - - - - - - - - - - - - - - - - - - - - - - sub - - - { ... }; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    diff --git a/docbook-xsl-1.75.2/xhtml/table.xsl b/docbook-xsl-1.75.2/xhtml/table.xsl deleted file mode 100644 index 9f3c685..0000000 --- a/docbook-xsl-1.75.2/xhtml/table.xsl +++ /dev/null @@ -1,1118 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - - - - - - - - - - - - - - - - - - - - - - - - - - -   - - - - - - - - - - - - - - - - - - - border- - - : - - - - - - ; - - - - - border- - - -width: - - ; - - - - border- - - -style: - - ; - - - - border- - - -color: - - ; - - - - - - - - - - - Error: CALS tables must specify the number of columns. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 100% - - - - - - - - border-collapse: collapse; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - border-collapse: collapse; - - - - - - - - - - - - - - - - - border-collapse: collapse; - - - - - - - - - - - border-collapse: collapse; - - - - - - - - - - - border-collapse: collapse; - - - - - - - - - - - - - - - - - border: none; - - - - - border-collapse: collapse; - - - - - - - 0 - - - 1 - - - - - - - - - - - - - - - - - - - - - - - - 100% - - - - - - - - - - - - - - - - - - - - - - - - No convertLength function available. - - - - - - - - - - - - - - - - - - - - - - - - - - No adjustColumnWidths function available. - - - - - - - - - - - - - - - - - - - - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Warning: overlapped row contains content! - - - This row intentionally left blank - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - - - - - - - - th - th - td - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -   - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - - - - - - - - - - - - - - : - - - - - - - - 0: - - - - - - - - - - - - - - - 0 - - : - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - - 1 - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    diff --git a/docbook-xsl-1.75.2/xhtml/task.xsl b/docbook-xsl-1.75.2/xhtml/task.xsl deleted file mode 100644 index 0a380d2..0000000 --- a/docbook-xsl-1.75.2/xhtml/task.xsl +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - - - - - - - - before - - - - - - - - -
    - - - - - - - - - - - - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - -
    diff --git a/docbook-xsl-1.75.2/xhtml/titlepage.templates.xsl b/docbook-xsl-1.75.2/xhtml/titlepage.templates.xsl deleted file mode 100644 index a17d25f..0000000 --- a/docbook-xsl-1.75.2/xhtml/titlepage.templates.xsl +++ /dev/null @@ -1,3710 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    - - - - - - - - - - 1 - - - -
    -
    - - - - - - - - - - 1 - - - -
    -
    - -
    -
    - - - - - - - - - - - - - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    - - - - - - - - - - 1 - - - -
    -
    - - - - - - - - - - 1 - - - -
    -
    - -
    -
    - - - - - - - - - - - - - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    - - - - - - - - - - 1 - - - -
    -
    - - - - - - - - - - 1 - - - -
    -
    - -
    -
    - - - - - - - - - - - - - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - -
    - - - - - - - - - - 1 - - - -
    -
    - - - - - - - - - - 1 - - - -
    -
    - -
    -
    - - - - - - - - - - - - - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - 1 - - - -
    -
    - - - - - - - - - - 1 - - - -
    -
    - -
    -
    - - - - - - - - - - - - - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    - - - - - - - - - - 1 - - - -
    -
    - - - - - - - - - - 1 - - - -
    -
    - -
    -
    - - - - - - - - - - - - - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - 1 - - - -
    -
    - - - - - - - - - - 1 - - - -
    -
    - -
    -
    - - - - - - - - - - - - - - -
    - - -
    - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - -
    - - - - - - - - - - 1 - - - -
    -
    - - - - - - - - - - 1 - - - -
    -
    - -
    -
    - - - - - - - - - - - - - - -
    - -
    -
    - - -
    - - -
    - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - -
    - - - - - - - - - - 1 - - - -
    -
    - - - - - - - - - - 1 - - - -
    -
    - -
    -
    - - - - - - - - - - - - - - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - 1 - - - -
    -
    - - - - - - - - - - 1 - - - -
    -
    - -
    -
    - - - - - - - - - - - - - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - 1 - - - -
    -
    - - - - - - - - - - 1 - - - -
    -
    - -
    -
    - - - - - - - - - - - - - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - 1 - - - -
    -
    - - - - - - - - - - 1 - - - -
    -
    - -
    -
    - - - - - - - - - - - - - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    - - - - - - - - - - 1 - - - -
    -
    - - - - - - - - - - 1 - - - -
    -
    - -
    -
    - - - - - - - - - - - - - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    - - - - - - - - - - 1 - - - -
    -
    - - - - - - - - - - 1 - - - -
    -
    - -
    -
    - - - - - - - - - - - - - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    - - - - - - - - - - 1 - - - -
    -
    - - - - - - - - - - 1 - - - -
    -
    - -
    -
    - - - - - - - - - - - - - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    - - - - - - - - - - 1 - - - -
    -
    - - - - - - - - - - 1 - - - -
    -
    - -
    -
    - - - - - - - - - - - - - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    - - - - - - - - - - 1 - - - -
    -
    - - - - - - - - - - 1 - - - -
    -
    - -
    -
    - - - - - - - - - - - - - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    - - - - - - - - - - 1 - - - -
    -
    - - - - - - - - - - 1 - - - -
    -
    - -
    -
    - - - - - - - - - - - - - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    - - - - - - - - -
    - - - - - - - - - - 1 - - - -
    -
    - - - - - - - - - - 1 - - - -
    -
    - -
    -
    - - - - - - - - - - - - - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - -
    -
    - - -
    - - -
    - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - -
    - - - - - - - - - - 1 - - - -
    -
    - - - - - - - - - - 1 - - - -
    -
    - -
    -
    - - - - - - - - - - - - - - -
    - -
    -
    - - -
    - - -
    - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - -
    - - - - - - - - - - 1 - - - -
    -
    - - - - - - - - - - 1 - - - -
    -
    - -
    -
    - - - - - - - - - - - - - - -
    - -
    -
    - - -
    - - -
    - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - -
    - - - - - - - - - - 1 - - - -
    -
    - - - - - - - - - - 1 - - - -
    -
    - -
    -
    - - - - - - - - - - - - - - -
    - -
    -
    - - -
    - - -
    - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - -
    - - - - - - - - - - 1 - - - -
    -
    - - - - - - - - - - 1 - - - -
    -
    - -
    -
    - - - - - - - - - - - - - - -
    - -
    -
    - -
    diff --git a/docbook-xsl-1.75.2/xhtml/titlepage.xsl b/docbook-xsl-1.75.2/xhtml/titlepage.xsl deleted file mode 100644 index 66d5901..0000000 --- a/docbook-xsl-1.75.2/xhtml/titlepage.xsl +++ /dev/null @@ -1,1027 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    -
    - - -
    - - - - - - - - - - - -
    -
    - - - - - - - - - - - - - -
    - - - - - - - - -
    -
    - - -
    - - - - - - - - -
    -
    -
    -
    - - -
    - - -
    -
    - - - - - -
    -
    -
    - - - - - - -
    - - -

    -
    -

    - - - - - - - - - -

    - - - - - - - - - - - - - - - -
    -
    - - -
    - - -
    -
    - - -
    - - -

    Authors

    -
    - - - -
    -
    - - - - - -
    -
    -
    - - - - - - - - - - - - - -
    -
    -
    - - - - - - - - - -
    - - -
    -
    - - - - - -
    -
    -
    - - - - - -
    -
    -
    - - - - - -
    -
    -
    - - - - - - - - - -
    -
    -
    - - - - - -
    -
    -
    - - - - - - - -   - - -
    - -

    -
    -
    -
    -
    - - - - -

    Copyright

    -
    - -

    - - - - - - - copyright - - - - - - - - - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - , - - - - -

    - - -

    -
    - - - - - -
    -
    -
    - - - - - -
    -
    -
    - - - - - -
    -
    -
    - - -

    - - - - - - -

    -
    - - - - - - - - - - -
    -
    -
    - - - - - - - - - - -
    -
    -
    - - - - - -
    -
    -
    - - - - - -
    -
    -
    - - - - - -
    -
    -
    - - - - - - - - -
    -
    -
    - - - - - -
    -
    -
    - - - - - -
    -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - -
    - - - -
    -
    -
    - -
    - - - -
    -
    -
    -
    - - -

    -
    - - - - - -
    -
    -
    - - - - - - - - - - - -
    -
    -
    - - - - - -
    -
    -
    - - - - - - - - - - - - - : - - - - - - - - - - - - - - - - - - - - - - - - - - , - - - - - - - -
    -
    -
    - - - - - -
    -
    -
    - - -
    - - -
    -
    - - - - - -
    -
    -
    - - - - - -
    -
    -
    - - - - - - - - - - - - - - - - - - - - - - - -
    -
    -
    - - - - - -
    -
    -
    - - - - - - - - - - - - - - 3 - 2 - - - - - - - - RevHistory - - - - -
    - - - - - - - - -
    - - - - - -
    -
    -
    - - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - , - - - - - -   - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    -
    - - - - - -
    -
    -
    - - - - - -

    - - -

    -
    - - - - - -
    -
    -
    - - - - - - - - - - - - - - - - - - -

    - - - - - - - - - - - - - - -

    -
    - - - - - - - - - -
    -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    diff --git a/docbook-xsl-1.75.2/xhtml/toc.xsl b/docbook-xsl-1.75.2/xhtml/toc.xsl deleted file mode 100644 index 92b7b14..0000000 --- a/docbook-xsl-1.75.2/xhtml/toc.xsl +++ /dev/null @@ -1,330 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - -
    - - -
    -
    - -
    - - - - - - - - - -
    -
    -
    - - - - - - - - - - - - - - -
    - - -
    - - -
    -
    - -
    - - - - - - - - - -
    -
    -
    - - - - - - - - -
    - - - - - -
    -
    - - - - - - -
    -
    -
    - - - - - -
    - - -
    - -
    - -
  • - - - -
  • -
    -
    -
    - - - - -
    - - -
    -
    - -
  • - - -
  • -
    -
    -
    - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - -
    - - -
    -
    - - -
    - - -
    -
    - - - - - - - - - - - - -
    - - -
    -
    - - - -
    -
    - - - - -
    - - - - -
    - - -
    - -
    - - - -
    -
    - - - - -
    - - -
    - -
    - - - -
    -
    - - - - - Warning: don't know what to generate for - lot that has no children. - - - - -
    - - -
    -
    - - -
    - - -
    -
    - - - - - diff --git a/docbook-xsl-1.75.2/xhtml/verbatim.xsl b/docbook-xsl-1.75.2/xhtml/verbatim.xsl deleted file mode 100644 index 6ae4f56..0000000 --- a/docbook-xsl-1.75.2/xhtml/verbatim.xsl +++ /dev/null @@ -1,381 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - The shade.verbatim parameter is deprecated. - Use CSS instead, - - - for example: pre. - - { background-color: #E0E0E0; } - - - - - - - - - - - - - - - -
    -        
    -        
    -          
    -            
    -          
    -        
    -        
    -          
    -        
    -      
    -
    - -
    -        
    -        
    -          
    -            
    -          
    -        
    -        
    -          
    -            
    -          
    -          
    -            
    -          
    -        
    -      
    -
    -
    -
    - - - - - - - - - - - The shade.verbatim parameter is deprecated. - Use CSS instead, - - - for example: pre. - - { background-color: #E0E0E0; } - - - - - - - -
    -            
    -            
    -              
    -            
    -          
    -
    - -
    - -

    - - - -

    -
    -
    -
    -
    - - - -
    -            
    -            
    -          
    -
    - -
    - -

    - - - -

    -
    -
    -
    -
    -
    -
    - - - - - - - - - - -
    - -

    - - - -

    -
    -
    - - -
    - -

    - - - -

    -
    -
    -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Unexpected verbatim environment: - - - - - - - - - - 1 - - - - - - - - - - - - - No numberLines function available. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    diff --git a/docbook-xsl-1.75.2/xhtml/xref.xsl b/docbook-xsl-1.75.2/xhtml/xref.xsl deleted file mode 100644 index f6cefdc..0000000 --- a/docbook-xsl-1.75.2/xhtml/xref.xsl +++ /dev/null @@ -1,1316 +0,0 @@ - - - - - - - - -http://docbook.org/xlink/role/olink - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Endterm points to nonexistent ID: - - - ??? - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ERROR: xref linking to - - has no generated link text. - - ??? - - - - - - - - - - - - - - - - - - - - - - - - - - - - - XRef to nonexistent id: - - - ??? - - - - - - - - - - - - - - - - Endterm points to nonexistent ID: - - - - - ??? - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - suppress anchor - - - - - - - - - - - removing - - - - - - - - - - - - - - - - - removing - - - - - - - - - - - - - - - - - - - - - - Don't know what gentext to create for xref to: " - - ", (" - - ") - - - ??? - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - [ - - - - ] - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No bibliography entry: - - found in - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - [ - - - - - - - - - ] - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Endterm points to nonexistent ID: - - - ??? - - - - - - - - - - - - - Link element has no content and no Endterm. - Nothing to show in the link to - - - ??? - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Olink debug: root element of target.database ' - - ' is ' - - '. - - - - - - - - - - - - - - - Error: unresolved olink: - targetdoc/targetptr = ' - - / - - '. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Warning: olink linkmode pointer is wrong. - - - - # - - - - - - - - - - - - - ? - - - - - & - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docbook-xsl-1.76.1/.CatalogManager.properties.example b/docbook-xsl-1.76.1/.CatalogManager.properties.example new file mode 100644 index 0000000..23434e1 --- /dev/null +++ b/docbook-xsl-1.76.1/.CatalogManager.properties.example @@ -0,0 +1,61 @@ +######################################################################## +# CatalogManager provides an interface to the catalog properties. +# Properties can come from two places: from system properties or +# from a CatalogManager.properties file. This class provides a +# transparent interface to both, with system properties preferred +# over property file values. + +####################################################################### +# Catalog Files: +# The semicolon-delimited list of catalog files. +# Example: catalogs=/etc/xml/catalog;~/catalog.xml + +catalogs= + +####################################################################### +# Relative Catalogs: +# If false, relative catalog URIs are made absolute with respect to the +# base URI of the CatalogManager.properties file. This setting only +# applies to catalog URIs obtained from the catalogs property in the +# CatalogManager.properties file +# Example: relative-catalogs = [yes|no] + +relative-catalogs=yes + +####################################################################### +# Verbosity: +# If non-zero, the Catalog classes will print informative and debugging +# messages. The higher the number, the more messages. +# Example: verbosity = [0..99] + +verbosity=0 + +####################################################################### +# Prefer: +# Which identifier is preferred, "public" or "system"? +# Example: xml.catalog.prefer = [public|system] + +prefer=system + +####################################################################### +# Static-catalog: +# Should a single catalog be constructed for all parsing, or should a +# different catalog be created for each parser? +# Example: static-catalog = [yes|no] + +static-catalog=yes + +####################################################################### +# Allow-oasis-xml-catalog-pi +# If the source document contains "oasis-xml-catalog" processing +# instructions, should they be used? +# Example: allow-oasis-xml-catalog-pi = [yes|no] + +allow-oasis-xml-catalog-pi=yes + +####################################################################### +# catalog-class-name +# If you're using the convenience classes +# org.apache.xml.resolver.tools.*, this setting allows you to specify +# an alternate class name to use for the underlying catalog. +# Example: catalog-class-name=org.apache.xml.resolver.Resolver diff --git a/docbook-xsl-1.76.1/.urilist b/docbook-xsl-1.76.1/.urilist new file mode 100644 index 0000000..2751d8d --- /dev/null +++ b/docbook-xsl-1.76.1/.urilist @@ -0,0 +1 @@ +. http://docbook.sourceforge.net/release/xsl/current/ diff --git a/docbook-xsl-1.76.1/AUTHORS b/docbook-xsl-1.76.1/AUTHORS new file mode 100644 index 0000000..9c3dcdc --- /dev/null +++ b/docbook-xsl-1.76.1/AUTHORS @@ -0,0 +1,4 @@ +The DocBook XSL stylesheets are maintained by Norman Walsh, +, and members of the DocBook Project, + + diff --git a/docbook-xsl-1.76.1/BUGS b/docbook-xsl-1.76.1/BUGS new file mode 100644 index 0000000..b3c7867 --- /dev/null +++ b/docbook-xsl-1.76.1/BUGS @@ -0,0 +1,21 @@ +To view a list of all open DocBook Project XSL stylesheet bugs: + + http://docbook.sf.net/tracker/xsl/bugs + +To submit a bug report against the stylesheets: + + http://docbook.sf.net/tracker/submit/bug + +To do a full-text search of all DocBook Project issues: + + http://docbook.sf.net/tracker/search + +Discussion about the DocBook Project XSL stylesheets takes place +on the docbook-apps mailing list: + + http://wiki.docbook.org/topic/DocBookAppsMailingList + +Real-time discussion takes place on IRC: + + http://wiki.docbook.org/topic/DocBookIrcChannel + irc://irc.freenode.net/docbook diff --git a/docbook-xsl-1.76.1/COPYING b/docbook-xsl-1.76.1/COPYING new file mode 100644 index 0000000..46bc120 --- /dev/null +++ b/docbook-xsl-1.76.1/COPYING @@ -0,0 +1,47 @@ +Copyright +--------- +Copyright (C) 1999-2007 Norman Walsh +Copyright (C) 2003 Jiří Kosek +Copyright (C) 2004-2007 Steve Ball +Copyright (C) 2005-2008 The DocBook Project + +Permission is hereby granted, free of charge, to any person +obtaining a copy of this software and associated documentation +files (the ``Software''), to deal in the Software without +restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, sublicense, and/or +sell copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +Except as contained in this notice, the names of individuals +credited with contribution to this software shall not be used in +advertising or otherwise to promote the sale, use or other +dealings in this Software without prior written authorization +from the individuals in question. + +Any stylesheet derived from this Software that is publically +distributed will be identified with a different name and the +version strings in any derived Software will be changed so that +no possibility of confusion between the derived package and this +Software will exist. + +Warranty +-------- +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL NORMAN WALSH OR ANY OTHER +CONTRIBUTOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +OTHER DEALINGS IN THE SOFTWARE. + +Contacting the Author +--------------------- +The DocBook XSL stylesheets are maintained by Norman Walsh, +, and members of the DocBook Project, + diff --git a/docbook-xsl-1.76.1/INSTALL b/docbook-xsl-1.76.1/INSTALL new file mode 100644 index 0000000..72cb82b --- /dev/null +++ b/docbook-xsl-1.76.1/INSTALL @@ -0,0 +1,88 @@ +$Id: INSTALL 6145 2006-08-06 13:13:03Z xmldoc $ + +INSTALL file for the DocBook XSL stylesheets distribution + +---------------------------------------------------------------------- +Case #1: Installation using a package management system +---------------------------------------------------------------------- +If you have installed the DocBook XSL distribution using "apt-get", +"yum", "urpmi", or some similar package-management front-end, +then, as part of the package installation, the stylesheets have +already been automatically installed in the appropriate location +for your system, and your XML catalog environment has probably +been updated to use that location. + +---------------------------------------------------------------------- +Case #2: Installing manually +---------------------------------------------------------------------- +If you have downloaded a docbook-xsl zip, tar.gz, or tar.bz2 +file, use the following steps to install it. + + 1. Move the zip, tar.gz, or tar.bz2 file to the directory where + you'd like to install it (not to a temporary directory). + + 2. unzip or untar/uncompress the file + + That will create a docbook-xsl-$VERSION directory (where + $VERSION is the version number for the release). + +The remaining steps are all OPTIONAL. They are intended to +automatically update your user environment with XML Catalog +information about the DocBook XSL distribution. You are NOT +REQUIRED to complete these remaining steps. However, if you do +not, and you want to use XML catalogs with the DocBook XSL +stylesheets, you will need to manually update your XML catalog +environment + + 3. Change to the docbook-xsl-$VERSION directory and execute the + install.sh script: + + ./install.sh + + That will launch an interactive installer, which will emit a + series of prompts for you to respond to. + + To instead run it non-interactively without being prompted + for confirmation of the changes it makes, invoke it with the + "--batch" switch, like this: + + ./install.sh --batch + + After the process is complete, the installer will emit a + message with a command you need to run in order to source + your environment for use with the stylesheets. + + 4. To test that he installation has updated your environment + correctly, execute the test.sh script: + + ./test.sh + + That will test your XML catalog environment, using both the + xmlcatalog application and the Apache XML Commons Resolver. + + NOTE: The test.sh file is not created until the install.sh + file is run for the first time. + + 5. (UNINSTALLING) If/when you want to uninstall the release, + execute the uninstall.sh script. + + ./uninstall.sh + + To instead run it non-interactively without being prompted + for confirmation of the changes it makes, invoke it with the + "--batch" switch, like this: + + ./uninstall.sh --batch + + NOTE: The uninstall.sh file is not created until the install.sh + file is run for the first time. + + +---------------------------------------------------------------------- +Note to packagers +---------------------------------------------------------------------- +The install.sh, .CatalogManager.properties.example, and .urilist +files should not be packaged. They are useful only to users who +are installing the stylesheets manually. + +The catalog.xml file should be packaged. diff --git a/docbook-xsl-1.76.1/Makefile b/docbook-xsl-1.76.1/Makefile new file mode 100644 index 0000000..a87d60b --- /dev/null +++ b/docbook-xsl-1.76.1/Makefile @@ -0,0 +1,89 @@ +# $Id: Makefile.tests 8481 2009-07-13 20:18:41Z abdelazer $ +# +# This makefile does a "smoketest" of stylesheets for various +# output formats in the DocBook XSL Stylesheets release package. +# It doesn't actually check the output -- it's just useful for +# confirming whether each XSLT transformation actually executes +# successfully without any errors. +# +# To use it, run "make check" or just "make" + +XSLTPROC=xsltproc +XSLTPROC_FLAGS= + +TESTFILE=tests/refentry.007.xml +TESTFILE_NS=tests/refentry.007.ns.xml + +NORMAL_STYLES=fo/docbook.xsl html/docbook.xsl xhtml/docbook.xsl +NORMAL_PROFILE_STYLES=fo/profile-docbook.xsl html/profile-docbook.xsl xhtml/profile-docbook.xsl +CHUNK_STYLES=html/chunk.xsl html/onechunk.xsl xhtml/chunk.xsl xhtml/onechunk.xsl +HELP_STYLES=htmlhelp/htmlhelp.xsl javahelp/javahelp.xsl eclipse/eclipse.xsl +MULTIFILE_STYLES=$(CHUNK_STYLES) $(HELP_STYLES) +CHUNK_PROFILE_STYLES=html/profile-chunk.xsl html/profile-onechunk.xsl xhtml/profile-chunk.xsl xhtml/profile-onechunk.xsl +HELP_PROFILE_STYLES=htmlhelp/profile-htmlhelp.xsl eclipse/profile-eclipse.xsl javahelp/profile-javahelp.xsl +MULTIFILE_PROFILE_STYLES=$(CHUNK_PROFILE_STYLES) $(HELP_PROFILE_STYLES) + +MAN_STYLE=manpages/docbook.xsl +MAN_PROFILE_STYLE=manpages/profile-docbook.xsl + +TWO_PROFILE_STYLE=profiling/profile.xsl + +ROUNDTRIP_STYLES=roundtrip/dbk2ooo.xsl roundtrip/dbk2pages.xsl roundtrip/dbk2wordml.xsl +SLIDES_STYLES=slides/html/default.xsl slides/xhtml/default.xsl slides/fo/plain.xsl +WEBSITE_STYLES=website/website.xsl +WEBSITE_CHUNK_STYLES=website/chunk-website.xsl + +# chunked output gets written to TMP_OUTPUT_DIR +TMP_OUTPUT_DIR=/tmp/smoketest-output/ +# if you don't want TMP_OUTPUT_DIR and its contents deleted, unset +# SMOKETEST_CLEAN_TARGET; e.g. "make check SMOKETEST_CLEAN_TARGET=''" +SMOKETEST_CLEAN_TARGET=smoketest-clean + +check: smoketest-make-tmp-dir smoketest-normal smoketest-normal-profile smoketest-chunk smoketest-chunk-profile smoketest-man smoketest-man-profile smoketest-two-profile $(SMOKETEST_CLEAN_TARGET) + +smoketest-make-tmp-dir: + $(RM) -r $(TMP_OUTPUT_DIR) + mkdir '$(TMP_OUTPUT_DIR)' + +smoketest-normal: + for stylesheet in $(NORMAL_STYLES); do \ + echo "$(XSLT) $(TESTFILE) $$stylesheet > /dev/null"; \ + $(XSLT) $(TESTFILE) $$stylesheet > /dev/null; \ + echo "$(XSLT) $(TESTFILE_NS) $$stylesheet > /dev/null"; \ + $(XSLT) $(TESTFILE_NS) $$stylesheet > /dev/null; \ + done + +smoketest-normal-profile: + for stylesheet in $(NORMAL_PROFILE_STYLES); do \ + echo "$(XSLT) $(TESTFILE) $$stylesheet > /dev/null"; \ + $(XSLT) $(TESTFILE) $$stylesheet > /dev/null; \ + echo "$(XSLT) $(TESTFILE_NS) $$stylesheet > /dev/null"; \ + $(XSLT) $(TESTFILE_NS) $$stylesheet > /dev/null; \ + done + +smoketest-chunk: + for stylesheet in $(MULTIFILE_STYLES) ; do \ + $(XSLT) $(TESTFILE) $$stylesheet manifest.in.base.dir=1 base.dir=$(TMP_OUTPUT_DIR) ; \ + $(XSLT) $(TESTFILE_NS) $$stylesheet manifest.in.base.dir=1 base.dir=$(TMP_OUTPUT_DIR) ; \ + done; + +smoketest-chunk-profile: + for stylesheet in $(MULTIFILE_PROFILE_STYLES) ; do \ + $(XSLT) $(TESTFILE) $$stylesheet manifest.in.base.dir=1 base.dir=$(TMP_OUTPUT_DIR) ; \ + $(XSLT) $(TESTFILE_NS) $$stylesheet manifest.in.base.dir=1 base.dir=$(TMP_OUTPUT_DIR) ; \ + done; + +smoketest-man: + $(XSLT) $(TESTFILE) $(MAN_STYLE) man.output.in.separate.dir=1 man.output.base.dir=$(TMP_OUTPUT_DIR) ; \ + $(XSLT) $(TESTFILE_NS) $(MAN_STYLE) man.output.in.separate.dir=1 man.output.base.dir=$(TMP_OUTPUT_DIR) ; + +smoketest-man-profile: + $(XSLT) $(TESTFILE) $(MAN_PROFILE_STYLE) man.output.in.separate.dir=1 man.output.base.dir=$(TMP_OUTPUT_DIR) ; \ + $(XSLT) $(TESTFILE_NS) $(MAN_PROFILE_STYLE) man.output.in.separate.dir=1 man.output.base.dir=$(TMP_OUTPUT_DIR) ; + +smoketest-two-profile: + $(XSLT) $(TESTFILE_NS) $(TWO_PROFILE_STYLE) > /dev/null ; + +smoketest-clean: + $(RM) -r $(TMP_OUTPUT_DIR) + diff --git a/docbook-xsl-1.76.1/NEWS b/docbook-xsl-1.76.1/NEWS new file mode 100644 index 0000000..ed3dc54 --- /dev/null +++ b/docbook-xsl-1.76.1/NEWS @@ -0,0 +1,139 @@ +Changes since the 1.76.0 release + +Note: This document lists changes only since the 1.76.0 release. If you instead +want a record of the complete list of changes for the codebase over its entire +history, you can obtain one by running the following commands: + + svn checkout https://docbook.svn.sourceforge.net/svnroot/docbook/trunk/xsl + svn log --xml --verbose xsl > ChangeHistory.xml + +â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â” + +Table of Contents + +Release Notes: 1.76.1 + + Common + FO + HTML + Epub + Webhelp + Params + Extensions + +Release Notes: 1.76.1 + +The following is a list of changes that have been made since the 1.76.0 +release. + +Common + +The following changes have been made to the common code since the 1.76.0 +release. + + â— Mauritz Jeanson: Makefile + + Added eu.xml and gl.xml to SOURCES. + + â— Jirka Kosek: l10n.xsl + + Fixed bug when context was lost due to usage of xsl:key + +FO + +The following changes have been made to the fo code since the 1.76.0 release. + + â— Robert Stayton: docbook.xsl; xref.xsl; fop1.xsl + + Apply patch to support named destination in fop1.xsl, per Sourceforge + bug report #3029845. + + â— dleidert: pagesetup.xsl + + Remove the namespace mistakingly added with the last upload. + +HTML + +The following changes have been made to the html code since the 1.76.0 release. + + â— Keith Fahlgren: highlight.xsl + + Implementing handling for and : transform to and for XHTML outputs and do not use in the highliting output (per Mauritz Jeanson) + +Epub + +The following changes have been made to the epub code since the 1.76.0 release. + + â— Keith Fahlgren: docbook.xsl + + Bugfix for [#3071521] to ensure that NCX navPoints are generated for d:book root nodes with the -NS version of the stylesheets + + â— Keith Fahlgren: docbook.xsl + + Remove unused NCX metadata elements + + â— Keith Fahlgren: bin/spec/epub_regressions_spec.rb; docbook.xsl; bin/spec/ + files/test_cust.x⋯ + + Normalizing identifier lookup between NCX and OPF + + â— Keith Fahlgren: bin/dbtoepub + + Reduce logging verbosity + + â— Keith Fahlgren: bin/dbtoepub; bin/lib/docbook.rb + + Only copy images once for the DocBook to EPUB tool to correct Windows bug reported in [#3065489] + +Webhelp + +The following changes have been made to the webhelp code since the 1.76.0 +release. + + â— David Cramer: indexer + + More webhelp indexer refactoring + + â— David Cramer: build.xml + + Removed cruft from before webhelp indexer refactoring + + â— David Cramer: indexer/src + + Refactoring webhelp to separate more cleanly the xsl and java code. + + â— David Cramer: indexer/lib + + Refactoring webhelp to separate more cleanly the xsl and java code. + + â— David Cramer: Makefile; build.xml + + Refactoring webhelp to separate more cleanly the xsl and java code. + + â— David Cramer: indexer/src/com/nexwave/nquindexer/IndexerTask.java; + build.xml; indexer/src/⋯ + + Merged in changes from webhelp branch to address issue #3058244 regarding the xx.html temp file that was being created + +Params + +The following changes have been made to the params code since the 1.76.0 +release. + + â— Robert Stayton: draft.mode.xml + + Change default for draft.mode to 'no'. + +Extensions + +The following changes have been made to the extensions code since the 1.76.0 +release. + + â— David Cramer: Makefile + + More webhelp refactoring + + â— David Cramer: Makefile + + Refactoring webhelp to separate more cleanly the xsl and java code. + diff --git a/docbook-xsl-1.76.1/NEWS.html b/docbook-xsl-1.76.1/NEWS.html new file mode 100644 index 0000000..979e2a2 --- /dev/null +++ b/docbook-xsl-1.76.1/NEWS.html @@ -0,0 +1,25 @@ +Changes since the 1.76.0 release

    Changes since the 1.76.0 release

    Note: This + document lists changes only since the 1.76.0 release. + If you instead want a record of the complete list of + changes for the codebase over its entire history, you + can obtain one by running the following commands: + +

      svn checkout https://docbook.svn.sourceforge.net/svnroot/docbook/trunk/xsl
    +  svn log --xml --verbose xsl > ChangeHistory.xml

    Release Notes: 1.76.1

    The following is a list of changes that have been made + since the 1.76.0 release.

    Common

    The following changes have been made to the + common code + since the 1.76.0 release.

    • Mauritz Jeanson: Makefile

      Added eu.xml and gl.xml to SOURCES.
    • Jirka Kosek: l10n.xsl

      Fixed bug when context was lost due to usage of xsl:key

    FO

    The following changes have been made to the + fo code + since the 1.76.0 release.

    • Robert Stayton: docbook.xsl; xref.xsl; fop1.xsl

      Apply patch to support named destination in fop1.xsl, per Sourceforge
      +bug report #3029845.
    • dleidert: pagesetup.xsl

      Remove the namespace mistakingly added with the last upload.

    HTML

    The following changes have been made to the + html code + since the 1.76.0 release.

    • Keith Fahlgren: highlight.xsl

      Implementing handling for <b> and <i>: transform to <strong> and <em> for XHTML outputs and do not use in the highliting output (per Mauritz Jeanson)

    Epub

    The following changes have been made to the + epub code + since the 1.76.0 release.

    • Keith Fahlgren: docbook.xsl

      Bugfix for [#3071521] to ensure that NCX navPoints are generated for d:book root nodes with the -NS version of the stylesheets
    • Keith Fahlgren: docbook.xsl

      Remove unused NCX metadata elements
    • Keith Fahlgren: bin/spec/epub_regressions_spec.rb; docbook.xsl; bin/spec/files/test_cust.x⋯

      Normalizing identifier lookup between NCX and OPF
    • Keith Fahlgren: bin/dbtoepub

      Reduce logging verbosity
    • Keith Fahlgren: bin/dbtoepub; bin/lib/docbook.rb

      Only copy images once for the DocBook to EPUB tool to correct Windows bug reported in [#3065489]

    Webhelp

    The following changes have been made to the + webhelp code + since the 1.76.0 release.

    • David Cramer: indexer

      More webhelp indexer refactoring
    • David Cramer: build.xml

      Removed cruft from before webhelp indexer refactoring
    • David Cramer: indexer/src

      Refactoring webhelp to separate more cleanly the xsl and java code.
    • David Cramer: indexer/lib

      Refactoring webhelp to separate more cleanly the xsl and java code.
    • David Cramer: Makefile; build.xml

      Refactoring webhelp to separate more cleanly the xsl and java code.
    • David Cramer: indexer/src/com/nexwave/nquindexer/IndexerTask.java; build.xml; indexer/src/⋯

      Merged in changes from webhelp branch to address issue #3058244 regarding the xx.html temp file that was being created

    Params

    The following changes have been made to the + params code + since the 1.76.0 release.

    • Robert Stayton: draft.mode.xml

      Change default for draft.mode to 'no'.

    Extensions

    The following changes have been made to the + extensions code + since the 1.76.0 release.

    • David Cramer: Makefile

      More webhelp refactoring
    • David Cramer: Makefile

      Refactoring webhelp to separate more cleanly the xsl and java code.
    + diff --git a/docbook-xsl-1.76.1/NEWS.xml b/docbook-xsl-1.76.1/NEWS.xml new file mode 100644 index 0000000..8cc04e6 --- /dev/null +++ b/docbook-xsl-1.76.1/NEWS.xml @@ -0,0 +1,145 @@ + + +
    + + +Note: This + document lists changes only since the 1.76.0 release. + If you instead want a record of the complete list of + changes for the codebase over its entire history, you + can obtain one by running the following commands: + + svn checkout https://docbook.svn.sourceforge.net/svnroot/docbook/trunk/xsl + svn log --xml --verbose xsl > ChangeHistory.xml + +Changes since the 1.76.0 release + + +Release Notes: 1.76.1 +The following is a list of changes that have been made + since the 1.76.0 release. + + +Common +The following changes have been made to the + common code + since the 1.76.0 release. + + +Mauritz Jeanson: MakefileAdded eu.xml and gl.xml to SOURCES. + + +Jirka Kosek: l10n.xslFixed bug when context was lost due to usage of xsl:key + + + + + +FO +The following changes have been made to the + fo code + since the 1.76.0 release. + + +Robert Stayton: docbook.xsl; xref.xsl; fop1.xslApply patch to support named destination in fop1.xsl, per Sourceforge +bug report #3029845. + + +dleidert: pagesetup.xslRemove the namespace mistakingly added with the last upload. + + + + + +HTML +The following changes have been made to the + html code + since the 1.76.0 release. + + +Keith Fahlgren: highlight.xslImplementing handling for <b> and <i>: transform to <strong> and <em> for XHTML outputs and do not use in the highliting output (per Mauritz Jeanson) + + + + + +Epub +The following changes have been made to the + epub code + since the 1.76.0 release. + + +Keith Fahlgren: docbook.xslBugfix for [#3071521] to ensure that NCX navPoints are generated for d:book root nodes with the -NS version of the stylesheets + + +Keith Fahlgren: docbook.xslRemove unused NCX metadata elements + + +Keith Fahlgren: bin/spec/epub_regressions_spec.rb; docbook.xsl; bin/spec/files/test_cust.x⋯Normalizing identifier lookup between NCX and OPF + + +Keith Fahlgren: bin/dbtoepubReduce logging verbosity + + +Keith Fahlgren: bin/dbtoepub; bin/lib/docbook.rbOnly copy images once for the DocBook to EPUB tool to correct Windows bug reported in [#3065489] + + + + + +Webhelp +The following changes have been made to the + webhelp code + since the 1.76.0 release. + + +David Cramer: indexerMore webhelp indexer refactoring + + +David Cramer: build.xmlRemoved cruft from before webhelp indexer refactoring + + +David Cramer: indexer/srcRefactoring webhelp to separate more cleanly the xsl and java code. + + +David Cramer: indexer/libRefactoring webhelp to separate more cleanly the xsl and java code. + + +David Cramer: Makefile; build.xmlRefactoring webhelp to separate more cleanly the xsl and java code. + + +David Cramer: indexer/src/com/nexwave/nquindexer/IndexerTask.java; build.xml; indexer/src/⋯Merged in changes from webhelp branch to address issue #3058244 regarding the xx.html temp file that was being created + + + + + +Params +The following changes have been made to the + params code + since the 1.76.0 release. + + +Robert Stayton: draft.mode.xmlChange default for draft.mode to 'no'. + + + + + +Extensions +The following changes have been made to the + extensions code + since the 1.76.0 release. + + +David Cramer: MakefileMore webhelp refactoring + + +David Cramer: MakefileRefactoring webhelp to separate more cleanly the xsl and java code. + + + + + +
    + diff --git a/docbook-xsl-1.76.1/README b/docbook-xsl-1.76.1/README new file mode 100644 index 0000000..3a5558a --- /dev/null +++ b/docbook-xsl-1.76.1/README @@ -0,0 +1,157 @@ +---------------------------------------------------------------------- + README file for the DocBook XSL Stylesheets +---------------------------------------------------------------------- +$Id: README 8484 2009-07-13 20:35:34Z mzjn $ + +These are XSL stylesheets for transforming DocBook XML document +instances into various output formats. + +This README file provides only very minimal documentation on using +the stylesheets. For more complete information, see Bob Stayton's +book "DocBook XSL: The Complete Guide", available online at: + + http://www.sagehill.net/docbookxsl/ + +---------------------------------------------------------------------- +Installation +---------------------------------------------------------------------- +See the INSTALL file for information about installing this release. + +---------------------------------------------------------------------- +How to use the stylesheets +---------------------------------------------------------------------- +The base canonical URI for these stylesheets is: + + http://docbook.sourceforge.net/release/xsl/current/ + +You call any of the stylesheets in this distribution by doing one +of the following: + + - Use the base canonical URI in combination with one of the + pathnames below. For example, for "chunked" HTML, output: + + http://docbook.sourceforge.net/release/xsl/current/html/chunk.xsl + + If your system has a working XML Catalog or SGML Catalog setup + (most Linux systems do), then that URI will automatically be + resolved and replaced with a local pathname on your system. + + - Use a "real" local system base path in combination with one of + the pathnames below. For example, for "chunked" HTML, output: + + /usr/share/xml/docbook/stylesheet/nwalsh/html/chunk.xsl + +To transform documents created with the standard DocBook +schema/DTD, use one of the following stylesheets: + + fo/docbook.xsl - for XSL-FO + + html/docbook.xsl - for HTML (as a single file) + html/chunk.xsl - for HTML (chunked into multiple files) + html/onechunk.xsl - for HTML (chunked output in single file) + + xhtml/*.xsl - for XHTML versions of the above + + xhtml-1_1/*.xsl - for XHTML 1.1 versions of the above + + epub/docbook.xsl - for .epub + + htmlhelp/htmlhelp.xsl - for HTML Help + javahelp/javahelp.xsl - for JavaHelp + eclipse/eclipse.xsl - for Eclipse Help + + manpages/docbook.xsl - for groff/nroff man pages + + */profile-* - single-pass-profiling versions of all above + + roundtrip/*.xsl - for DocBook to WordML, etc., to DocBook + +To transform documents created with the DocBook Slides schema/DTD, +use one of the following stylesheets: + + slides/html/*.xsl - for HTML slides of various kinds + slides/xhtml/*.xsl - for XHTML slides of various kinds + slides/fo/plain.xsl - for XSL-FO slides + slides/htmlhelp/... - for HTML Help slides + +To transform documents created with the DocBook Website +schema/DTD, use one of the following stylesheets: + + website/website.xsl - for non-tabular, non-chunked output + website/tabular.xsl - for tabular, non-chunked output + website/chunk-* - for chunked output + +To generate a titlepage customization layer from a titlepage spec: + + template/titlepage.xsl + +For details about creating titlepage spec files and generating and +using titlepage customization layers, see "DocBook XSL: The +Complete Guide" + +---------------------------------------------------------------------- +Manifest +---------------------------------------------------------------------- +AUTHORS contact information +BUGS about known problems +COPYING copyright information +INSTALL installation instructions +README this file +RELEASE.* per-release cumulative summaries of user-visible changes +TODO about planned features not yet implemented +VERSION release metadata, including the current version + number (note that the VERSION file is an XSL stylesheet) +NEWS changes since the last public release (for a cumulative list of + changes, see the ChangeHistory.xml file) + +common/ code used among several output formats (HTML, FO, manpages,...) +docsrc/ documentation sources +eclipse/ for producing Eclipse Help +epub/ for producing .epub +extensions/ DocBook XSL Java extensions +fo/ for producing XSL-FO +highlighting files used for adding source-code syntax highlighting in output +html/ for producing HTML +htmlhelp/ for producing HTML Help +images/ images used in callouts and graphical admonitions +javahelp/ for producing Java Help +lib/ utility stylesheets with schema-independent functions +manpages/ for producing groff/troff man pages +profiling/ for profiling (omitting/including conditional text) +roundtrip/ for "round trip" conversion among DocBook and + various word-processor formats (WordML, etc.) +slides/ for producing slides output (from Slides source) +template/ templates for building stylesheet customization layers +tools/ assorted supplementary tools +website/ for producing website output (from Website source) +xhtml/ for producing XHTML +xhtml-1_1/ for producing (stricter) XHTML 1.1 + +---------------------------------------------------------------------- +Changes +---------------------------------------------------------------------- +See the NEWS file for changes made since the previous release. + +See the RELEASE-NOTES.html or RELEASE-NOTES.txt or RELEASE-NOTES.pdf +files for per-release cumulative summaries of significant +user-visible changes. + +For online access to a hyperlinked view of all changes made over +the entire history of the codebase, see the following: + + http://docbook.svn.sourceforge.net/viewvc/docbook/trunk/xsl/?view=log + +WARNING: That above change history is a very long list and may +take a long time to load/download. + +You can also create an XML-formatted "ChangeHistory.xml" copy of +the complete change history for the codebase by running the +following commands: + + svn checkout https://docbook.svn.sf.net/svnroot/docbook/trunk/xsl + svn log --xml --verbose xsl > ChangeHistory.xml + +---------------------------------------------------------------------- +Copyright information +---------------------------------------------------------------------- +See the accompanying file named COPYING. diff --git a/docbook-xsl-1.76.1/RELEASE-NOTES.html b/docbook-xsl-1.76.1/RELEASE-NOTES.html new file mode 100644 index 0000000..556bd67 --- /dev/null +++ b/docbook-xsl-1.76.1/RELEASE-NOTES.html @@ -0,0 +1,8353 @@ +Release Notes for the DocBook XSL Stylesheets

    Release Notes for the DocBook XSL Stylesheets

    $Revision: 8934 $ $Date: 2010-11-01 13:03:14 -0700 (Mon, 01 Nov 2010) $

    2010-11-01

    +

    This release-notes + document is available in the following formats: + HTML, + PDF, + plain text; it provides a per-release list +of enhancements and changes to the stylesheets’ public APIs +(user-configurable parameters) and excludes descriptions of most +bug fixes. For a complete list of all changes (including all bug +fixes) that have been made since the previous release, see the +separate NEWS (plain text) or NEWS.html files. Also available: +An online hyperlinked change history (warning: big file) of all +changes made over the entire history of the codebase.

    + +

    As with all DocBook Project “dot + one plus” releases, this release aspires to be stable (in + contrast to dot-zero releases, which + are experimental).

    + + +

    + + + + +

    Release Notes: 1.76.1

    + +

    The following is a list of changes that have been made + since the 1.76.0 release.

    + +

    FO

    + +

    The following changes have been made to the + fo code + since the 1.76.0 release.

    +
    • +

      Robert Stayton: docbook.xsl; xref.xsl; fop1.xsl

      Apply patch to support named destination in fop1.xsl, per Sourceforge
      +bug report #3029845.
      +
    +
    + +

    HTML

    + +

    The following changes have been made to the html code since the 1.76.0 release.

    +
    • +

      Keith Fahlgren: highlight.xsl

      Implementing handling for <b> and <i>: transform to <strong> and <em> for XHTML outputs and do not use in the highliting output (per Mauritz Jeanson)
      +
    +
    + +

    Params

    + +

    The following changes have been made to the + params code + since the 1.76.0 release.

    +
    • +

      Robert Stayton: draft.mode.xml

      Change default for draft.mode to 'no'.
      +
    +
    + + +
    +

    Release Notes: 1.76.0

    + +

    This release includes important bug fixes and adds the following +significant feature changes:

    +
    Webhelp

    A new browser-based, cross-platform help format with full-text search and other features typically found in help systems. See webhelp/docs/content/ch01.html for more information and a demo.

    Gentext

    Many updates and additions to translation/locales thanks to Red Hat, the Fedora Project, and other contributors.

    Common

    Faster localization support, as language files are loaded on demand.

    FO

    Support for SVG content in imagedata added.

    HTML

    Output improved when using 'make.clean.html' and a stock CSS file is now provided.

    EPUB

    A number of improvements to NCX, cover and image selection, and XHTML 1.1 element choices

    + +

    The following is a list of changes that have been made since the 1.75.2 release.

    +

    Gentext

    + +

    The following changes have been made to the gentext code since the 1.75.2 release.

    +
    • +

      + rlandmann: locale/fa.xml +

      +
      +            Update to Persian translation from the Fedora Project
      +          
      +
    • +

      + rlandmann: locale/nds.xml +

      +
      +            Locale for Low German
      +          
      +
    • +

      + Mauritz Jeanson: locale/ka.xml; Makefile +

      +
      +            Added support for Georgian based on patch #2917147.
      +          
      +
    • +

      + rlandmann: locale/nl.xml; locale/ja.xml +

      +
      +            Updated translations from Red Hat and the Fedora Project
      +          
      +
    • +

      + rlandmann: locale/bs.xml; locale/ru.xml; locale/hr.xml +

      +
      +            Updated locales from Red Hat and the Fedora Project
      +          
      +
    • +

      + rlandmann: locale/pt.xml; locale/cs.xml; locale/es.xml; locale/bg.xml; locale/nl.xml; loca⋯ +

      +
      +            Updated translations from Red Hat and the Fedora Project
      +          
      +
    • +

      + rlandmann: locale/as.xml; locale/bn_IN.xml; locale/ast.xml; locale/ml.xml; locale/te.xml; ⋯ +

      +
      +            New translations from Red Hat and the Fedora Project
      +          
      +
    • +

      + rlandmann: locale/pt.xml; locale/ca.xml; locale/da.xml; locale/sr.xml; locale/ru.xml; loca⋯ +

      +
      +            Updated translations from Red Hat and the Fedora Project
      +          
      +
    +
    + +

    Common

    + +

    The following changes have been made to the common code since the 1.75.2 release.

    +
    • +

      + Mauritz Jeanson: common.xsl +

      +
      +            Fixed bug in output-orderedlist-starting-number template (@startingnumber did not work for FO).
      +          
      +
    • +

      + Mauritz Jeanson: gentext.xsl +

      +
      +            Added fix to catch ID also of descendants of listitem. Closes bug #2955077.
      +          
      +
    • +

      + Jirka Kosek: l10n.xsl +

      +
      +            Stripped down, faster version of gentext.template is used when there is no localization customization.
      +          
      +
    • +

      + Mauritz Jeanson: stripns.xsl +

      +
      +            Added fix that preserves link/@role (makes links in the reference documentation
      +with @role="tcg" work).
      +          
      +
    • +

      + Mauritz Jeanson: l10n.xsl +

      +
      +            Fixed bugs related to manpages and L10n.
      +          
      +
    • +

      + Jirka Kosek: entities.ent; autoidx-kosek.xsl +

      +
      +            Upgraded to use common entities. Fixed bug when some code used @sortas and some not for grouping/sorting of indexterms.
      +          
      +
    • +

      + Jirka Kosek: l10n.xsl; l10n.dtd; l10n.xml; autoidx-kosek.xsl +

      +
      +            Refactored localization support. Language files are loaded on demand. Speedup is about 30%.
      +          
      +
    • +

      + Jirka Kosek: l10n.xsl +

      +
      +            Added xsl:keys for improved performance of localization texts look up. Performance gain around 15%.
      +          
      +
    • +

      + Mauritz Jeanson: titles.xsl +

      +
      +            Fixed bug #2912677 (error with xref in title).
      +          
      +
    • +

      + Robert Stayton: olink.xsl +

      +
      +            Fix bug in xrefstyle "title" handling introduced with 
      +the 'insert.targetdb.data' template.
      +          
      +
    • +

      + Robert Stayton: gentext.xsl +

      +
      +            Fix bug in xref to equation without title to use context="xref-number" instead
      +of "xref-number-and-title".
      +          
      +
    • +

      + Robert Stayton: labels.xsl +

      +
      +            Number all equations in one sequence, with or without title.
      +          
      +
    • +

      + Robert Stayton: entities.ent +

      +
      +            Fix bug #2896909 where duplicate @sortas on indexterms caused 
      +some indexterms to drop out of index.
      +          
      +
    • +

      + Robert Stayton: stripns.xsl +

      +
      +            Expand the "Stripping namespace ..." message to advise users to
      +use the namespaced stylesheets.
      +          
      +
    • +

      + Robert Stayton: stripns.xsl +

      +
      +            need a local version of $exsl.node.set.available variable because
      +this module imported many places.
      +          
      +
    • +

      + Mauritz Jeanson: olink.xsl +

      +
      +            Added /node() to the select expression that is used to compute the title text
      +so that no <ttl> elements end up in the output. Closes bug #2830119.
      +          
      +
    +
    + +

    FO

    + +

    The following changes have been made to the + fo code + since the 1.75.2 release.

    +
    • +

      + Robert Stayton: table.xsl +

      +
      +            Fix bug 2979166 able - Attribute @rowheader not working
      +          
      +
    • +

      + Mauritz Jeanson: inline.xsl +

      +
      +            Improved glossterm auto-linking by using keys. The old code was inefficient when processing documents
      +with many inline glossterms.
      +          
      +
    • +

      + Robert Stayton: titlepage.xsl +

      +
      +            Fix bug 2805530 author/orgname not appearing on title page.
      +          
      +
    • +

      + Mauritz Jeanson: graphics.xsl +

      +
      +            Added support for SVG content in imagedata (inspired by patch #2909154).
      +          
      +
    • +

      + Mauritz Jeanson: table.xsl +

      +
      +            Removed superfluous test used when computing column-width. Closes bug #3000898.
      +          
      +
    • +

      + Mauritz Jeanson: inline.xsl +

      +
      +            Added missing <xsl:call-template name="anchor"/>. Closes bug #2998567.
      +          
      +
    • +

      + Mauritz Jeanson: lists.xsl +

      +
      +            Added table-layout="fixed" on segmentedlist table (required by XSL spec when  proportional-column-width() is used).
      +          
      +
    • +

      + Jirka Kosek: autoidx-kosek.xsl +

      +
      +            Upgraded to use common entities. Fixed bug when some code used @sortas and some not for grouping/sorting of indexterms.
      +          
      +
    • +

      + Jirka Kosek: index.xsl +

      +
      +            Upgraded to use common entities. Fixed bug when some code used @sortas and some not for grouping/sorting of indexterms.
      +          
      +
    • +

      + Robert Stayton: xref.xsl +

      +
      +            Fix bug in olink template when an olink has an id.
      +Add warning message with id value when trying to link
      +to an element that has no generated text.
      +          
      +
    • +

      + Mauritz Jeanson: refentry.xsl +

      +
      +            Fixed bug #2930968 (indexterm in refmeta not handled correctly).
      +          
      +
    • +

      + Robert Stayton: block.xsl +

      +
      +            fix bug 2949567 title in revhistory breaks FO transform.
      +          
      +
    • +

      + Robert Stayton: glossary.xsl +

      +
      +            Output id attributes on glossdiv blocks so they can be added to
      +xrefs or TOC.
      +          
      +
    • +

      + Jirka Kosek: xref.xsl +

      +
      +            Enabled hyphenation of URLs when ulink content is the same as link target
      +          
      +
    • +

      + Robert Stayton: table.xsl +

      +
      +            Apply patch to turn off row recursion if no @morerows attributes present.
      +This will enable very large tables without row spanning to 
      +process without running into recursion limits.
      +          
      +
    • +

      + Robert Stayton: formal.xsl +

      +
      +            Format equation without title using table layout with equation number
      +next to the equation.
      +          
      +
    • +

      + Robert Stayton: param.xweb; param.ent +

      +
      +            Add equation.number.properties.
      +          
      +
    +
    + +

    HTML

    + +

    The following changes have been made to the + html code + since the 1.75.2 release.

    +
    • +

      + Mauritz Jeanson: block.xsl +

      +
      +            Modified acknowledgements template to avoid invalid output (<p> in <p>).
      +          
      +
    • +

      + Mauritz Jeanson: titlepage.xsl +

      +
      +            Added default sidebar attribute-sets.
      +          
      +
    • +

      + Robert Stayton: table.xsl +

      +
      +            Fix bug 2979166 able - Attribute @rowheader not working
      +          
      +
    • +

      + Robert Stayton: footnote.xsl +

      +
      +            Fix bug 3033191 footnotes in html tables.
      +          
      +
    • +

      + Mauritz Jeanson: inline.xsl +

      +
      +            Improved glossterm auto-linking by using keys. The old code was inefficient when processing documents
      +with many inline glossterms.
      +          
      +
    • +

      + Robert Stayton: docbook.css.xml; verbatim.xsl +

      +
      +            Fix bug 2844927 Validity error for callout bugs.
      +          
      +
    • +

      + Robert Stayton: formal.xsl +

      +
      +            Convert formal.object.heading to respect make.clean.html param.
      +          
      +
    • +

      + Robert Stayton: titlepage.templates.xml; block.xsl +

      +
      +            Fix bug 2840768 sidebar without title inserts empty b tag.
      +          
      +
    • +

      + Mauritz Jeanson: docbook.xsl +

      +
      +            Moved the template that outputs <base> so that the base URI also applies to relative CSS paths that come later.
      +See patch #2896121.
      +          
      +
    • +

      + Jirka Kosek: autoidx-kosek.xsl +

      +
      +            Upgraded to use common entities. Fixed bug when some code used @sortas and some not for grouping/sorting of indexterms.
      +          
      +
    • +

      + Robert Stayton: chunk-code.xsl +

      +
      +            fix bug 2948363 generated filename for refentry not unique, when
      +used in a set.
      +          
      +
    • +

      + Robert Stayton: component.xsl +

      +
      +            Fix missing "Chapter n" label when use chapter/info/title.
      +          
      +
    • +

      + Robert Stayton: table.xsl +

      +
      +            Row recursion turned off if no @morerows attributes in the table.
      +This will prevent failure on long table (with no @morerows) due
      +to excessive depth of recursion.
      +          
      +
    • +

      + Robert Stayton: autotoc.xsl; docbook.css.xml +

      +
      +            Support make.clean.html in autotoc.xsl.
      +          
      +
    • +

      + Robert Stayton: docbook.css.xml; block.xsl +

      +
      +            Add support for make.clean.html setting in block elements.
      +          
      +
    • +

      + Robert Stayton: docbook.css.xml +

      +
      +            Stock CSS styles for DocBook HTML output when 'make.clean.html' is non-zero.
      +          
      +
    • +

      + Robert Stayton: html.xsl +

      +
      +            Add templates for generating CSS files and links to them.
      +          
      +
    • +

      + Robert Stayton: param.xweb +

      +
      +            Fix bugs in new entity references.
      +          
      +
    • +

      + Robert Stayton: chunk-common.xsl +

      +
      +            List of Equations now includes on equations with titles.
      +          
      +
    • +

      + Robert Stayton: table.xsl +

      +
      +            If a colspec has a colname attribute, add it to the HTML col
      +element as a class attribute so it can be styled.
      +          
      +
    • +

      + Robert Stayton: formal.xsl +

      +
      +            Fix bug 2825842 where table footnotes not appearing in HTML-coded table.
      +          
      +
    • +

      + Robert Stayton: chunktoc.xsl +

      +
      +            Fix bug #2834826 where appendix inside part was not chunked as it should be.
      +          
      +
    • +

      + Mauritz Jeanson: chunktoc.xsl +

      +
      +            Added missing namespace declarations. Closes bug #2890069.
      +          
      +
    • +

      + Mauritz Jeanson: footnote.xsl +

      +
      +            Updated the template for footnote paras to use the 'paragraph' template. Closes bug #2803739.
      +          
      +
    • +

      + Keith Fahlgren: inline.xsl; lists.xsl +

      +
      +            Remove <b> and <i> elements "discouraged in favor of style sheets" from
      +XHTML, XHTML 1.1 (and therefore EPUB) outputs by changing html2xhtml.xsl.
      +
      +Fixes bug #2873153: No <b> and <i> tags in XHTML/EPUB
      +
      +Added regression to EPUB specs:
      +          
      +
    • +

      + Mauritz Jeanson: inline.xsl +

      +
      +            Fixed bug #2844916 (don't output @target if ulink.target is empty).
      +          
      +
    • +

      + Keith Fahlgren: autoidx.xsl +

      +
      +            Fix a bug when using index.on.type: an 'index symbols' section was created 
      +even if that typed index didn't include any symbols (they were in the other types).
      +          
      +
    +
    + +

    Manpages

    + +

    The following changes have been made to the + manpages code + since the 1.75.2 release.

    +
    • +

      + Mauritz Jeanson: other.xsl +

      +
      +            Modified the write.stubs template so that the section directory name is not output twice. Should fix bug #2831602.
      +Also ensured that $lang is added to the .so path (when man.output.lang.in.name.enabled=1).
      +          
      +
    • +

      + Mauritz Jeanson: docbook.xsl; other.xsl +

      +
      +            Fixed bug #2412738 (apostrophe escaping) by applying the submitted patch.
      +          
      +
    • +

      + Norman Walsh: block.xsl; endnotes.xsl +

      +
      +            Fix bug where simpara in footnote didn't work. Patch by Jonathan Nieder, jrnieder@gmail.com
      +          
      +
    • +

      + dleidert: lists.xsl +

      +
      +            Fix two indentation issues: In the first case there is no corresponding .RS
      +macro (Debian #519438, sf.net 2793873). In the second case an .RS instead of
      +the probably intended .sp leads to an indentation bug (Debian #527309,
      +sf.net #2642139).
      +          
      +
    +
    + +

    Epub

    + +

    The following changes have been made to the + epub code + since the 1.75.2 release.

    +
    • +

      + Keith Fahlgren: bin/spec/examples/AMasqueOfDays.epub; docbook.xsl; bin/spec/epub_spec.rb +

      +
      +            Resolve some actual regressions in date output spotted by more recent versions of epubcheck
      +          
      +
    • +

      + Keith Fahlgren: docbook.xsl +

      +
      +            Updated mediaobject selection code that better uses roles (when available); based on contributons by  Glenn McDonald
      +          
      +
    • +

      + Keith Fahlgren: bin/spec/epub_regressions_spec.rb; docbook.xsl +

      +
      +            Ensure that NCX documents are always outputted with a default namespace
      +to prevent problems with the kindlegen machinery
      +          
      +
    • +

      + Keith Fahlgren: bin/spec/epub_regressions_spec.rb; bin/spec/files/partintro.xml; docbook.x⋯ +

      +
      +            Adding support for partintros with sect2s, 3s, etc
      +          
      +
    • +

      + Keith Fahlgren: docbook.xsl +

      +
      +            Adding param to workaround horrific ADE bug with the inability to process <br>
      +          
      +
    • +

      + Keith Fahlgren: docbook.xsl +

      +
      +            Add support for authorgroup/author in OPF metadata (via Michael Wiedmann)
      +          
      +
    • +

      + Keith Fahlgren: bin/spec/epub_regressions_spec.rb +

      +
      +            Remove <b> and <i> elements "discouraged in favor of style sheets" from
      +XHTML, XHTML 1.1 (and therefore EPUB) outputs by changing html2xhtml.xsl.
      +
      +Fixes bug #2873153: No <b> and <i> tags in XHTML/EPUB
      +
      +Added regression to EPUB specs:
      +          
      +
    • +

      + Keith Fahlgren: bin/lib/docbook.rb; bin/spec/files/DejaVuSerif-Italic.otf; docbook.xsl; bi⋯ +

      +
      +            This resolves bug #2873142, Please add support for multiple embedded fonts
      +
      +
      +If you navigate to a checkout of DocBook-XSL and go to:
      +xsl/epub/bin/spec/files
      +You can now run the following command:
      +
      +../../dbtoepub -f DejaVuSerif.otf -f DejaVuSerif-Italic.otf -c test.css
      +-s test_cust.xsl orm.book.001.xml
      +
      +In dbtoepub, the following option can be used more than once:
      +-f, --font [OTF FILE] Embed OTF FILE in .epub.
      +
      +The underlying stylesheet now accepts a comma-separated list of font file
      +names rather than just one as the RENAMED epub.embedded.fonts ('s' added).
      +
      +The runnable EPUB spec now includes:
      +- should be valid .epub after including more than one embedded font
      +          
      +
    • +

      + Keith Fahlgren: docbook.xsl +

      +
      +            Improve the selection of cover images when working in DocBook 4.x land (work in progress)
      +          
      +
    • +

      + Keith Fahlgren: bin/spec/epub_regressions_spec.rb; docbook.xsl +

      +
      +            Improve the quality of the OPF spine regression by ensuring that the spine
      +elements for deeply nested refentries are in order and adjacent to their
      +opening wrapper XHTML chunk.
      +          
      +
    • +

      + Keith Fahlgren: bin/spec/epub_regressions_spec.rb; docbook.xsl; bin/spec/files/orm.book.00⋯ +

      +
      +            Add more careful handling of refentries to ensure that they always appear in the opf:spine.
      +This was only a problem when refentries were pushed deep into the hierarchy (like inside
      +a sect2), but presented navigational problems for many reading systems (despite the
      +correct NCX references). This may *not* be the best solution, but attacking a better
      +chunking strategy for refentries was too big a nut to crack at this time.
      +          
      +
    +
    + +

    Eclipse

    + +

    The following changes have been made to the + eclipse code + since the 1.75.2 release.

    +
    • +

      + Mauritz Jeanson: eclipse3.xsl +

      +
      +            Added a stylesheet module that generates plug-ins conforming to the standard (OSGi-based) Eclipse 3.x 
      +architecture. The main difference to the older format is that metadata is stored in a separate 
      +manifest file. The module imports and extends the existing eclipse.xsl module. Based on code 
      +contributed in patch #2624668.
      +          
      +
    +
    + +

    Params

    + +

    The following changes have been made to the + params code + since the 1.75.2 release.

    +
    • +

      + Robert Stayton: draft.watermark.image.xml +

      +
      +            Fix bug 2922488 draft.watermark.image pointing to web resource.
      +Now the value is images/draft.png, and may require customization
      +for local resolution.
      +          
      +
    • +

      + Mauritz Jeanson: equation.number.properties.xml +

      +
      +            Corrected refpurpose.
      +          
      +
    • +

      + Norman Walsh: paper.type.xml +

      +
      +            Added USlegal and USlegallandscape paper types.
      +          
      +
    • +

      + Jirka Kosek: highlight.xslthl.config.xml +

      +
      +            Added note about specifying location as URL
      +          
      +
    • +

      + Robert Stayton: docbook.css.source.xml; generate.css.header.xml; custom.css.source.xml; ma⋯ +

      +
      +            Params to support generated CSS files.
      +          
      +
    • +

      + Robert Stayton: equation.number.properties.xml +

      +
      +            New attribute set for numbers appearing next to equations.
      +          
      +
    +
    + +

    XSL-Xalan

    + +

    The following changes have been made to the + xsl-xalan code + since the 1.75.2 release.

    +
    • +

      + dleidert: nbproject/genfiles.properties; nbproject/build-impl.xml +

      +
      +            Rebuild netbeans build files after adding missing Netbeans configuration to allow easier packaging for Debian.
      +          
      +
    +
    + +
    +

    Release Notes: 1.75.2

    + +

    The following is a list of changes that have been made + since the 1.75.1 release.

    + +

    Gentext

    + +

    The following changes have been made to the + gentext code + since the 1.75.1 release.

    +
    • +

      dleidert: locale/ja.xml

      Improved Japanese translation for Note(s). Closes bug #2823965.
      +
    • +

      dleidert: locale/pl.xml

      Polish alphabet contains O with acute accent, not with grave accent. Closes bug #2823964.
      +
    • +

      Robert Stayton: locale/ja.xml

      Fix translation of "index", per bug report 2796064.
      +
    • +

      Robert Stayton: locale/is.xml

      New Icelandic locale file.
      +
    +
    + +

    Common

    + +

    The following changes have been made to the + common code + since the 1.75.1 release.

    +
    • +

      Norman Walsh: stripns.xsl

      Support more downconvert cases
      +
    • +

      Robert Stayton: titles.xsl

      Make sure title inside info is used if no other title.
      +
    +
    + +

    FO

    + +

    The following changes have been made to the + fo code + since the 1.75.1 release.

    +
    • +

      Robert Stayton: pi.xsl

      Turn off dbfo-need for fop1.extensions also, per bug #2816141.
      +
    +
    + +

    HTML

    + +

    The following changes have been made to the + html code + since the 1.75.1 release.

    +
    • +

      Mauritz Jeanson: titlepage.xsl

      Output "Copyright" heading in XHTML too.
      +
    • +

      Mauritz Jeanson: titlepage.xsl

      Added stylesheet.result.type test for copyright. Closes bug #2813289.
      +
    • +

      Norman Walsh: htmltbl.xsl

      Remove ambiguity wrt @span, @rowspan, and @colspan
      +
    +
    + +

    Manpages

    + +

    The following changes have been made to the + manpages code + since the 1.75.1 release.

    +
    • +

      Mauritz Jeanson: endnotes.xsl

      Added normalize-space() for ulink content. Closes bug #2793877.
      +
    • +

      Mauritz Jeanson: docbook.xsl

      Added stylesheet.result.type test for copyright. Closes bug #2813289.
      +
    +
    + +

    Epub

    + +

    The following changes have been made to the + epub code + since the 1.75.1 release.

    +
    • +

      Keith Fahlgren: bin/dbtoepub; bin/lib/docbook.rb

      Corrected bugs caused by path and file assumptions were not met
      +
    • +

      Keith Fahlgren: bin/lib/docbook.rb; docbook.xsl

      Cleaning up hardcoded values into parameters and fixing Ruby library to pass them properly; all thanks to patch from Liza Daly
      +
    +
    + +

    Profiling

    + +

    The following changes have been made to the + profiling code + since the 1.75.1 release.

    +
    +
    + +

    XSL-Saxon

    + +

    The following changes have been made to the + xsl-saxon code + since the 1.75.1 release.

    +
    • +

      Mauritz Jeanson: src/com/nwalsh/saxon/ColumnUpdateEmitter.java; src/com/nwalsh/saxon/Colum⋯

      Added fixes so that colgroups in the XHTML namespace are processed properly.
      +
    +
    + +

    XSL-Xalan

    + +

    The following changes have been made to the + xsl-xalan code + since the 1.75.1 release.

    +
    • +

      Mauritz Jeanson: nbproject/project.xml

      Added missing NetBeans configuration.
      +
    +
    + +
    + + +

    Release Notes: 1.75.1

    + +

    This release includes bug fixes.

    + +

    The following is a list of changes that have been made since the 1.75.0 release.

    + + +

    FO

    + +

    The following changes have been made to the fo code since the 1.75.0 release.

    +
    • +

      Keith Fahlgren: block.xsl

      Switching to em dash for character before attribution in epigraph; resolves Bug #2793878
      +
    • +

      Robert Stayton: lists.xsl

      Fixed bug 2789947, id attribute missing on simplelist fo output.
      +
    +
    + +

    HTML

    + +

    The following changes have been made to the + html code + since the 1.75.0 release.

    +
    • +

      Keith Fahlgren: block.xsl

      Switching to em dash for character before attribution in epigraph; resolves Bug #2793878
      +
    • +

      Robert Stayton: lists.xsl

      Fixed bug 2789678: apply-templates line accidentally deleted.
      +
    +
    + +

    Epub

    + +

    The following changes have been made to the + epub code + since the 1.75.0 release.

    +
    • +

      Keith Fahlgren: bin/spec/epub_regressions_spec.rb; docbook.xsl

      Added regression and fix to correct "bug" with namespace-prefixed container elements in META-INF/container.xml ; resolves Issue #2790017
      +
    • +

      Keith Fahlgren: bin/spec/epub_regressions_spec.rb; bin/spec/files/onegraphic.xinclude.xml;⋯

      Another attempt at flexible named entity and XInclude processing
      +
    • +

      Keith Fahlgren: bin/lib/docbook.rb

      Tweaking solution to Bug #2750442 following regression reported by Michael Wiedmann.
      +
    +
    + +

    Params

    + +

    The following changes have been made to the + params code + since the 1.75.0 release.

    +
    • +

      Mauritz Jeanson: highlight.source.xml

      Updated documentation to reflect changes made in r8419.
      +
    +
    + +
    + + +

    Release Notes: 1.75.0

    + +

    This release includes important bug fixes and adds the following +significant feature changes: +

    Gentext

    Modifications to translations have been made.

    Common
    +

    Added support for some format properties on tables using +HTML table markup.

    +

    Added two new qanda.defaultlabel values so that numbered sections +and numbered questions can be distinguished. Satisfies +Feature Request #1539045.

    +

    Added code to handle acknowledgements in book and part. The element is processed +similarly to dedication. All acknowledgements will appear as front matter, after +any dedications.

    +
    FO
    +

    The inclusion of highlighting code has been simplified.

    +

    Add support for pgwide on informal objects.

    +

    Added a new parameter, bookmarks.collapse, that controls the initial state of the bookmark tree. Closes FR #1792326.

    +

    Add support for more dbfo processing instructions.

    +

    Add new variablelist.term.properties to format terms, per request # 1968513.

    +

    Add support for @width on screen and programlisting, fixes bug #2012736.

    +

    Add support for writing-mode="rl-tb" (right-to-left) in FO outputs.

    +

    Add writing.mode param for FO output.

    +
    HTML
    +

    Convert all calls to class.attribute to calls to common.html.attributes to support dir, lang, and title attributes in html output for all elements. Fulfills feature request #1993833.

    +

    Inclusion of highlighting code was simplified. Only one import is now necessary.

    +

    Add new param index.links.to.section.

    +

    Add support for the new index.links.to.section param which permits precise links to indexterms in HTML output rather than to the section title.

    +
    ePub
    +

    Slightly more nuanced handling of imageobject alternatives and better support in dbtoepub for XIncludes and ENTITYs to resolve Issue #2750442 reported by Raphael Hertzog.

    +

    Added a colon after an abstract/title when mapping into the dc:description for OPF metadata in ePub output to help the flat text have more pseudo-semantics (sugestions from Michael Wiedmann)

    +

    Added DocBook subjectset -> OPF dc:subject mapping and tests

    +

    Added DocBook date -> OPF dc:date mapping and tests

    +

    Added DocBook abstract -> OPF dc:description mapping and tests

    +

    Added --output option to dbtoepub based on user request

    +
    HTMLHelp
    +

    Add support for generating olink target database for htmlhelp files.

    Params
    +

    Add default setting for @rules attribute on HTML markup tables.

    +

    Added a new parameter, bookmarks.collapse, that controls the initial state of the bookmark tree. When the parameter has a non-zero value (the default), only the top-level bookmarks are displayed initially. Otherwise, the whole tree of bookmarks is displayed. This is implemented for FOP 0.9X. Closes FR #1792326.

    +

    Add new variablelist.term.properties to format terms, per request # 1968513.

    +

    Add two new qanda.defaultlabel values so that numbered sections and numbered questions can be distinguished. Satisfies Feature Request #1539045.

    +

    Add param to control whether an index entry links to a section title or to the precise location of the indexterm.

    +

    New attribute list for glossentry in glossary.

    +

    New parameter to support @width on programlisting and screen.

    +

    Add attribute-sets for formatting glossary terms and defs.

    +
    Highlighting
    +

    Inclusion of highlighting code was simplified. Only one import is now necessary.

    +

    + + +

    +

    The following is a list of changes that have been made + since the 1.74.3 release.

    + +

    Gentext

    + +

    The following changes have been made to the + gentext code + since the 1.74.3 release.

    +
    • +

      Robert Stayton: locale/sv.xml; locale/ja.xml; locale/pl.xml

      Check in translations of Legalnotice submitted on mailing list.
      +
    • +

      Robert Stayton: locale/es.xml

      Fix spelling errors in Acknowledgements entries.
      +
    • +

      Robert Stayton: locale/es.xml

      Check in translations for 4 elements submitted through docbook-apps
      +message of 14 April 2009.
      +
    • +

      David Cramer: locale/zh.xml; locale/ca.xml; locale/ru.xml; locale/ga.xml; locale/gl.xml; l⋯

      Internationalized punctuation in glosssee and glossseealso
      +
    • +

      Robert Stayton: Makefile

      Check in fixes for DSSSL gentext targets from submitted patch #1689633.
      +
    • +

      Robert Stayton: locale/uk.xml

      Check in major update submitted with bug report #2008524.
      +
    • +

      Robert Stayton: locale/zh_tw.xml

      Check in fix to Note string submitted in bug #2441051.
      +
    • +

      Robert Stayton: locale/ru.xml

      Checkin typo fix submitted in bug #2453406.
      +
    +
    + +

    Common

    + +

    The following changes have been made to the + common code + since the 1.74.3 release.

    +
    • +

      Robert Stayton: gentext.xsl

      Fix extra generated space when xrefstyle includes 'nopage'.
      +
    • +

      Robert Stayton: table.xsl

      Add support for some format properties on tables using
      +HTML table markup.  These include:
      +  - frame attribute on table (or uses $default.table.frame parameter).
      +  - rules attribute on table (or uses $default.table.rules parameter).
      +  - align attribute on td and th
      +  - valign attribute on td and th
      +  - colspan on td and th
      +  - rowspan on td and th
      +  - bgcolor on td and th
      +
    • +

      Robert Stayton: olink.xsl

      Add placeholder template to massage olink hot text to make
      +customization easier, per Feature Request 1828608.
      +
    • +

      Robert Stayton: targets.xsl

      Add support for collecting olink targets from a glossary
      +generated from a glossary.collection.
      +
    • +

      Robert Stayton: titles.xsl

      Handle firstterm like glossterm in mode="title.markup".
      +
    • +

      Robert Stayton: titles.xsl

      Add match on info/title in title.markup templates where missing.
      +
    • +

      Mauritz Jeanson: titles.xsl

      Changed "ancestor::title" to "(ancestor::title and (@id or @xml:id))".
      +This enables proper formatting of inline elements in titles in TOCs, 
      +as long as these inlines don't have id or xml:id attributes.
      +
    • +

      Robert Stayton: labels.xsl

      Add two new qanda.defaultlabel values so that numbered sections
      +and numbered questions can be distinguished.  Satisfies
      +Feature Request #1539045.
      +
    • +

      Robert Stayton: stripns.xsl; pi.xsl

      Convert function-available(exsl:node-set) to use the new param
      +so Xalan bug is isolated.
      +
    • +

      Mauritz Jeanson: titles.xsl

      Added fixes for bugs #2112656 and #1759205:
      +1. Reverted mistaken commits r7485 and r7523. 
      +2. Updated the template with match="link" and mode="no.anchor.mode" so that 
      +@endterm is used if it exists and if the link has no content.
      +
    • +

      Mauritz Jeanson: titles.xsl

      Added code to handle acknowledgements in book and part. The element is processed
      +similarly to dedication. All acknowledgements will appear as front matter, after
      +any dedications.
      +
    • +

      Robert Stayton: olink.xsl

      Fix bug #2018717 use.local.olink.style uses wrong gentext context.
      +
    • +

      Robert Stayton: olink.xsl

      Fix bug #1787167 incorrect hot text for some olinks.
      +
    • +

      Robert Stayton: common.xsl

      Fix bug #1669654 Broken output if copyright <year> contains a range.
      +
    • +

      Robert Stayton: labels.xsl

      Fix bug in labelling figure inside appendix inside article inside book.
      +
    +
    + +

    FO

    + +

    The following changes have been made to the + fo code + since the 1.74.3 release.

    +
    • +

      Jirka Kosek: highlight.xsl

      Inclusion of highlighting code was simplified. Only one import is now necessary.
      +
    • +

      Robert Stayton: fop1.xsl

      Add the new fop extensions namespace declaration, in case FOP
      +extension functions are used.
      +
    • +

      Robert Stayton: formal.xsl

      Add support for pgwide on informal objects.
      +
    • +

      Robert Stayton: docbook.xsl

      Fixed spurious closing quote on line 134.
      +
    • +

      Robert Stayton: docbook.xsl; autoidx-kosek.xsl; autoidx.xsl

      Convert function-available for node-set() to use
      +new $exsl.node.set.available param in test.
      +
    • +

      David Cramer: xref.xsl

      Suppress extra space after xref when xrefstyle='select: label nopage' (#2740472)
      +
    • +

      Mauritz Jeanson: pi.xsl

      Fixed doc bug for row-height.
      +
    • +

      David Cramer: glossary.xsl

      Internationalized punctuation in glosssee and glossseealso
      +
    • +

      Robert Stayton: param.xweb; param.ent; htmltbl.xsl; table.xsl

      Add support for some format properties on tables using
      +HTML table markup.  These include:
      +  - frame attribute on table (or uses $default.table.frame parameter).
      +  - rules attribute on table (or uses $default.table.rules parameter).
      +  - align attribute on td and th
      +  - valign attribute on td and th
      +  - colspan on td and th
      +  - rowspan on td and th
      +  - bgcolor on td and th
      +
    • +

      Robert Stayton: table.xsl

      Add support bgcolor in td and th
      +elements in HTML table markup.
      +
    • +

      Robert Stayton: htmltbl.xsl

      Add support for colspan and rowspan and bgcolor in td and th
      +elements in HTML table markup.
      +
    • +

      Robert Stayton: param.xweb

      Fix working of page-master left and right margins.
      +
    • +

      Mauritz Jeanson: param.xweb; param.ent; fop1.xsl

      Added a new parameter, bookmarks.collapse, that controls the initial state of the bookmark tree. When the parameter has a non-zero value (the default), only the top-level bookmarks are displayed initially. Otherwise, the whole tree of bookmarks is displayed.  This is implemented for FOP 0.9X. Closes FR #1792326.
      +
    • +

      Robert Stayton: table.xsl; pi.xsl

      Add support for dbfo row-height processing instruction, like that in dbhtml.
      +
    • +

      Robert Stayton: lists.xsl

      Add support for dbfo keep-together processing instruction for
      +entire list instances.
      +
    • +

      Robert Stayton: lists.xsl; block.xsl

      Add support fo dbfo keep-together processing instruction to
      +more blocks like list items and paras.
      +
    • +

      Robert Stayton: lists.xsl; param.xweb; param.ent

      Add new variablelist.term.properties to format terms, per request # 1968513.
      +
    • +

      Robert Stayton: inline.xsl

      In simple.xlink, rearrange order of processing.
      +
    • +

      Robert Stayton: xref.xsl

      Handle firstterm like glossterm in mode="xref-to".
      +
    • +

      Robert Stayton: glossary.xsl; xref.xsl; pi.xsl; footnote.xsl

      Implement simple.xlink for glosssee and glossseealso so they can use
      +other types of linking besides otherterm.
      +
    • +

      Robert Stayton: qandaset.xsl

      Add two new qanda.defaultlabel values so that numbered sections and numbered questions can be distinguished.  Satisfies Feature Request #1539045.
      +
    • +

      Robert Stayton: titlepage.xsl

      For the book title templates, I changed info/title to book/info/title
      +so other element's titles will not be affected.
      +
    • +

      Robert Stayton: xref.xsl; verbatim.xsl

      Use param exsl.node.set.available to test for function.
      +
    • +

      Robert Stayton: param.xweb; param.ent; footnote.xsl

      Start using new param exsl.node.set.available to work around Xalan bug.
      +
    • +

      Robert Stayton: titlepage.templates.xml

      Add comment on use of t:predicate for editor to prevent
      +extra processing of multiple editors. Fixes bug 2687842.
      +
    • +

      Robert Stayton: xref.xsl; autoidx.xsl

      An indexterm primary, secondary, or tertiary element with an id or xml:id
      +now outputs that ID, so that index entries can be cross referenced to.
      +
    • +

      Mauritz Jeanson: synop.xsl

      Added modeless template for ooclass|oointerface|ooexception.
      +Closes bug #1623468.
      +
    • +

      Robert Stayton: xref.xsl

      Add template with match on indexterm in mode="xref-to" to fix bug 2102592.
      +
    • +

      Robert Stayton: xref.xsl

      Now xref to qandaentry will use the label element in a question for
      +the link text if it has one.
      +
    • +

      Robert Stayton: inline.xsl

      Add id if specified from @id to output for quote and phrase so
      +they can be xref'ed to.
      +
    • +

      Robert Stayton: xref.xsl

      Add support for xref to phrase, simpara, anchor, and quote.
      +This assumes the author specifies something using xrefstyle since
      +the elements don't have ordinary link text.
      +
    • +

      Robert Stayton: toc.xsl

      Fix bug in new toc templates.
      +
    • +

      Mauritz Jeanson: titlepage.xsl; component.xsl; division.xsl; xref.xsl; titlepage.templates⋯

      Added code to handle acknowledgements in book and part. The element is processed
      +similarly to dedication. All acknowledgements will appear as front matter, after
      +any dedications.
      +
    • +

      Robert Stayton: toc.xsl

      Rewrite toc templates to support an empty toc or populated toc
      +in all permitted contexts.  Same for lot elements.
      +This fixes bug #1595969 for FO outputs.
      +
    • +

      Robert Stayton: index.xsl

      Fix indents for seealsoie so they are consistent.
      +
    • +

      Mauritz Jeanson: param.xweb

      Removed duplicate (monospace.font.family).
      +
    • +

      Robert Stayton: param.xweb; param.ent

      Add glossentry.list.item.properties.
      +
    • +

      Robert Stayton: param.xweb; param.ent

      Add monospace.verbatim.font.width param to support @width on programlisting.
      +
    • +

      Robert Stayton: verbatim.xsl

      Put programlisting in fo:block-container with writing-mode="lr-tb"
      +when text direction is right to left because all program languages
      +are left-to-right.
      +
    • +

      Robert Stayton: verbatim.xsl

      Add support for @width on screen and programlisting, fixes bug #2012736.
      +
    • +

      Robert Stayton: xref.xsl

      Fix bug #1973585 xref to para with xrefstyle not handled correctly.
      +
    • +

      Mauritz Jeanson: block.xsl

      Added support for acknowledgements in article.
      +Support in book/part remains to be added.
      +
    • +

      Robert Stayton: xref.xsl

      Fix bug #1787167 incorrect hot text for some olinks.
      +
    • +

      Robert Stayton: fo.xsl

      Add writing-mode="tb-rl" as well since some XSL-FO processors support it.
      +
    • +

      Robert Stayton: autotoc.xsl; lists.xsl; glossary.xsl; fo.xsl; table.xsl; pagesetup.xsl

      Add support for writing-mode="rl-tb" (right-to-left) in FO outputs.
      +Changed instances of margin-left to margin-{$direction.align.start}
      +and margin-right to margin-{$direction.align.end}. Those direction.align
      +params are computed from the writing mode value in each locale's
      +gentext key named 'writing-mode', introduced in 1.74.3 to add
      +right-to-left support to HTML outputs.
      +
    • +

      Robert Stayton: param.xweb; param.ent

      Add attribute-sets for formatting glossary terms and defs.
      +
    • +

      Robert Stayton: param.xweb; param.ent

      Add writing.mode param for FO output.
      +
    • +

      Robert Stayton: autotoc.xsl

      Fix bug 1546008: in qandaentry in a TOC, use its blockinfo/titleabbrev or blockinfo/title
      +instead of question, if available. For DocBook 5, use the info versions.
      +
    • +

      Keith Fahlgren: verbatim.xsl

      Add better pointer to README for XSLTHL
      +
    • +

      Keith Fahlgren: verbatim.xsl

      More tweaking the way that XSLTHL does or does not get called
      +
    • +

      Keith Fahlgren: verbatim.xsl

      Alternate attempt at sanely including/excluding XSLTHT code
      +
    +
    + +

    HTML

    + +

    The following changes have been made to the + html code + since the 1.74.3 release.

    +
    • +

      Robert Stayton: lists.xsl

      Removed redundant lang and title attributes on list element inside
      +div element for lists.
      +
    • +

      Robert Stayton: inline.xsl; titlepage.xsl; division.xsl; toc.xsl; sections.xsl; table.xsl;⋯

      Convert all calls to class.attribute to calls to common.html.attributes
      +to support dir, lang, and title attributes in html output for all elements.
      +Fulfills feature request #1993833.
      +
    • +

      Robert Stayton: chunk-common.xsl

      Fix bug #2750253 wrong links in list of figures in chunk.html
      +when target html is in a subdirectory and dbhtml filename used.
      +
    • +

      Jirka Kosek: highlight.xsl

      Inclusion of highlighting code was simplified. Only one import is now necessary.
      +
    • +

      Robert Stayton: chunk-common.xsl; chunktoc.xsl; docbook.xsl; chunk-changebars.xsl; autoidx⋯

      Convert function-available for node-set() to use
      +new $exsl.node.set.available param in test.
      +
    • +

      Mauritz Jeanson: pi.xsl

      Fixed doc bug for row-height.
      +
    • +

      David Cramer: glossary.xsl

      Internationalized punctuation in glosssee and glossseealso
      +
    • +

      Robert Stayton: lists.xsl; html.xsl; block.xsl

      More elements get common.html.attributes.
      +Added locale.html.attributes template which does the lang,
      +dir, and title attributes, but not the class attribute
      +(used on para, for example).
      +
    • +

      Robert Stayton: lists.xsl

      Replace more literal class atts with mode="class.attribute" to support
      +easier customization.
      +
    • +

      Robert Stayton: glossary.xsl

      Support olinking in glosssee and glossseealso.
      +
    • +

      Robert Stayton: inline.xsl

      In simple.xlink, rearrange order of processing.
      +
    • +

      Robert Stayton: xref.xsl

      Handle firstterm like glossterm in mode="xref-to".
      +
    • +

      Robert Stayton: lists.xsl; html.xsl; block.xsl

      Added template named common.html.attributes to output
      +class, title, lang, and dir for most elements.
      +Started adding it to some list and block elements.
      +
    • +

      Robert Stayton: qandaset.xsl

      Add two new qanda.defaultlabel values so that numbered sections
      +and numbered questions can be distinguished.  Satisfies
      +Feature Request #1539045.
      +
    • +

      Robert Stayton: param.xweb; chunk-code.xsl; param.ent; xref.xsl; chunkfast.xsl; verbatim.x⋯

      Use new param exsl.node.set.available to test, handles Xalan bug.
      +
    • +

      Robert Stayton: autoidx.xsl

      Use named anchors for primary, secondary, and tertiary ids so
      +duplicate entries with different ids can still have an id output.
      +
    • +

      Robert Stayton: param.xweb; param.ent

      Add new param index.links.to.section.
      +
    • +

      Robert Stayton: xref.xsl; autoidx.xsl

      Pass through an id on primary, secondary, or tertiary to 
      +the index entry, so that one could link to an index entry.
      +You can't link to the id on an indexterm because that is
      +used to place the main anchor in the text flow.
      +
    • +

      Robert Stayton: autoidx.xsl

      Add support for the new index.links.to.section param which permits
      +precise links to indexterms in HTML output rather than to
      +the section title.
      +
    • +

      Mauritz Jeanson: synop.xsl

      Added modeless template for ooclass|oointerface|ooexception.
      +Closes bug #1623468.
      +
    • +

      Robert Stayton: qandaset.xsl

      Make sure a qandaset has an anchor, even when it has no title, 
      +because it may be referenced in a TOC or xref.
      +Before, the anchor was output by the title, but there was no
      +anchor if there was no title.
      +
    • +

      Robert Stayton: xref.xsl

      Add a template for indexterm with mode="xref-to" to fix bug 2102592.
      +
    • +

      Robert Stayton: xref.xsl

      Now xref to qandaentry will use the label element in a question for
      +the link text if it has one.
      +
    • +

      Robert Stayton: qandaset.xsl; html.xsl

      Create separate templates for computing label of question and answer
      +in a qandaentry, so such can be used for the alt text of an xref
      +to a qandaentry.
      +
    • +

      Robert Stayton: inline.xsl; xref.xsl

      Now support xref to phrase, simpara, anchor, and quote,
      +most useful when an xrefstyle is used.
      +
    • +

      Robert Stayton: toc.xsl

      Rewrite toc templates to support an empty toc or populated toc
      +in all permitted contexts.  Same for lot elements.
      +This fixes bug #1595969 for HTML outputs.
      +
    • +

      Mauritz Jeanson: titlepage.xsl; component.xsl; division.xsl; xref.xsl; titlepage.templates⋯

      Added code to handle acknowledgements in book and part. The element is processed
      +similarly to dedication. All acknowledgements will appear as front matter, after
      +any dedications.
      +
    • +

      Robert Stayton: index.xsl

      Rewrote primaryie, secondaryie and tertiaryie templates to handle
      +nesting of elements and seeie and seealsoie, as reported in
      +bug # 1168912.
      +
    • +

      Robert Stayton: autotoc.xsl

      Fix simplesect in toc problem.
      +
    • +

      Robert Stayton: verbatim.xsl

      Add support for @width per bug report #2012736.
      +
    • +

      Robert Stayton: formal.xsl; htmltbl.xsl

      Fix bug #1787140 HTML tables not handling attributes correctly.
      +
    • +

      Robert Stayton: param.xweb

      Move writing-mode param.
      +
    • +

      Keith Fahlgren: refentry.xsl

      Remove a nesting of <p> inside <p> for refclass (made XHTML* invalid, made HTML silly)
      +
    • +

      Robert Stayton: table.xsl

      Fix bug #1945872 to allow passthrough of colwidth values to
      +HTML table when no tablecolumns.extension is available and
      +when no instance of * appears in the table's colspecs.
      +
    • +

      Mauritz Jeanson: block.xsl

      Added support for acknowledgements in article.
      +Support in book/part remains to be added.
      +
    • +

      Robert Stayton: chunk-common.xsl

      Fix bug #1787167 incorrect hot text for some olinks.
      +
    • +

      Robert Stayton: qandaset.xsl

      Fix bug 1546008: in qandaentry in a TOC, use its blockinfo/titleabbrev or blockinfo/title
      +instead of question, if available. For DocBook 5, use the info versions.
      +
    • +

      Robert Stayton: chunktoc.xsl

      Add support for generating olink database when using chunktoc.xsl.
      +
    • +

      Keith Fahlgren: verbatim.xsl

      Add better pointer to README for XSLTHL
      +
    • +

      Keith Fahlgren: verbatim.xsl

      Another stab at fixing the stupid XSLTHT includes across processors (Saxon regression reported by Sorin Ristache)
      +
    • +

      Keith Fahlgren: verbatim.xsl

      More tweaking the way that XSLTHL does or does not get called
      +
    • +

      Keith Fahlgren: verbatim.xsl

      Alternate attempt at sanely including/excluding XSLTHT code
      +
    +
    + +

    Manpages

    + +

    The following changes have been made to the + manpages code + since the 1.74.3 release.

    +
    • +

      Robert Stayton: table.xsl

      Convert function-available test for node-set() function to
      +test of $exsl.node.set.available param.
      +
    • +

      Mauritz Jeanson: lists.xsl

      Added a template for bibliolist. Closes bug #1815916.
      +
    +
    + +

    ePub

    + +

    The following changes have been made to the + epub code + since the 1.74.3 release.

    +
    • +

      Keith Fahlgren: bin/spec/epub_regressions_spec.rb; bin/spec/files/onegraphic.xinclude.xml;⋯

      Slightly more nuanced handling of imageobject alternatives and better support in dbtoepub for XIncludes and ENTITYs to resolve Issue #2750442 reported by Raphael Hertzog.
      +
    • +

      Keith Fahlgren: docbook.xsl

      Add a colon after an abstract/title when mapping into the dc:description for OPF metadata in ePub output to help the flat text have more pseudo-semantics (sugestions from Michael Wiedmann)
      +
    • +

      Keith Fahlgren: bin/spec/epub_regressions_spec.rb; docbook.xsl; bin/spec/files/de.xml

      Correctly set dc:language in OPF metadata when i18nizing. Closes Bug #2755150
      +
    • +

      Keith Fahlgren: bin/spec/epub_regressions_spec.rb; docbook.xsl

      Corrected namespace declarations for literal XHTML elements to make them serialize "normally"
      +
    • +

      Keith Fahlgren: docbook.xsl

      Be a little bit more nuanced about dates
      +
    • +

      Keith Fahlgren: docbook.xsl; bin/spec/epub_realbook_spec.rb; bin/spec/files/orm.book.001.x⋯

      Add DocBook subjectset -> OPF dc:subject mapping and tests
      +
    • +

      Keith Fahlgren: docbook.xsl; bin/spec/epub_realbook_spec.rb; bin/spec/files/orm.book.001.x⋯

      Add DocBook date -> OPF dc:date mapping and tests
      +
    • +

      Keith Fahlgren: docbook.xsl; bin/spec/epub_realbook_spec.rb; bin/spec/files/orm.book.001.x⋯

      Add DocBook abstract -> OPF dc:description mapping and tests
      +
    • +

      Robert Stayton: docbook.xsl

      Check in patch submitted by user to add opf:file-as attribute
      +to dc:creator element.
      +
    • +

      Keith Fahlgren: bin/dbtoepub

      Adding --output option to dbtoepub based on user request
      +
    • +

      Keith Fahlgren: docbook.xsl; bin/spec/epub_spec.rb

      Cleaning and regularizing the generation of namespaced nodes for OPF, NCX, XHTML and other outputted filetypes (hat tip to bobstayton for pointing out the silly, incorrect code)
      +
    • +

      Keith Fahlgren: bin/spec/epub_regressions_spec.rb; bin/spec/files/refclass.xml

      Remove a nesting of <p> inside <p> for refclass (made XHTML* invalid, made HTML silly)
      +
    • +

      Keith Fahlgren: bin/spec/epub_regressions_spec.rb; bin/spec/files/blockquotepre.xml

      Added regression test and fix for XHTML validation problem with <a>s added inside <blockquote>; This potentially causes another problem (where something is referenced by has no anchor, but someone reporting that should cause the whole <a id='thing'/> thing to be reconsidered with modern browsers in mind.
      +
    +
    + +

    HTMLHelp

    + +

    The following changes have been made to the + htmlhelp code + since the 1.74.3 release.

    +
    • +

      Robert Stayton: htmlhelp-common.xsl

      Add support for generating olink target database for htmlhelp files.
      +
    +
    + + +

    Params

    + +

    The following changes have been made to the + params code + since the 1.74.3 release.

    +
    • +

      Robert Stayton: default.table.rules.xml

      Add default setting for @rules attribute on HTML markup tables.
      +
    • +

      Mauritz Jeanson: bookmarks.collapse.xml

      Added a new parameter, bookmarks.collapse, that controls the initial state 
      +of the bookmark tree. When the parameter has a non-zero value (the default), 
      +only the top-level bookmarks are displayed initially. Otherwise, the whole 
      +tree of bookmarks is displayed. 
      +
      +This is implemented for FOP 0.9X. Closes FR #1792326.
      +
    • +

      Robert Stayton: variablelist.term.properties.xml

      Add new variablelist.term.properties to format terms, per 
      +request # 1968513.
      +
    • +

      Robert Stayton: qanda.defaultlabel.xml

      Add two new qanda.defaultlabel values so that numbered sections
      +and numbered questions can be distinguished.  Satisfies
      +Feature Request #1539045.
      +
    • +

      Robert Stayton: index.links.to.section.xml

      Change default to 1 to match past behavior.
      +
    • +

      Robert Stayton: exsl.node.set.available.xml

      Isolate this text for Xalan bug regarding exsl:node-set available.
      +If it is ever fixed in Xalan, just fix it here.
      +
    • +

      Robert Stayton: index.links.to.section.xml

      Add param to control whether an index entry links to
      +a section title or to the precise location of the
      +indexterm.
      +
    • +

      Robert Stayton: glossentry.list.item.properties.xml

      New attribute list for glossentry in glossary.
      +
    • +

      Robert Stayton: monospace.verbatim.font.width.xml

      New parameter to support @width on programlisting and screen.
      +
    • +

      Mauritz Jeanson: highlight.source.xml

      Updated and reorganized the description.
      +
    • +

      Robert Stayton: page.margin.outer.xml; page.margin.inner.xml

      Add caveat about XEP bug when writing-mode is right-to-left.
      +
    • +

      Robert Stayton: article.appendix.title.properties.xml; writing.mode.xml; body.start.indent⋯

      Change 'left' to 'start' and 'right' to 'end' to support right-to-left
      +writing mode.
      +
    • +

      Robert Stayton: glossdef.block.properties.xml; glossdef.list.properties.xml; glossterm.blo⋯

      Add attribute-sets for formatting glossary terms and defs.
      +
    • +

      Robert Stayton: glossterm.separation.xml

      Clarify the description.
      +
    • +

      Robert Stayton: make.year.ranges.xml

      Now handles year element containing a comma or dash without error.
      +
    +
    + +

    Highlighting

    + +

    The following changes have been made to the + highlighting code + since the 1.74.3 release.

    +
    • +

      Jirka Kosek: README

      Inclusion of highlighting code was simplified. Only one import is now necessary.
      +
    • +

      Keith Fahlgren: README

      Adding XSLTHL readme
      +
    • +

      Keith Fahlgren: common.xsl

      Alternate attempt at sanely including/excluding XSLTHT code
      +
    +
    + +

    XSL-Saxon

    + +

    The following changes have been made to the + xsl-saxon code + since the 1.74.3 release.

    +
    • +

      Mauritz Jeanson: src/com/nwalsh/saxon/Text.java

      Added a fix that prevents output of extra blank line.
      +Hopefully this closes bug #894805.
      +
    +
    + +

    XSL-Xalan

    + +

    The following changes have been made to the + xsl-xalan code + since the 1.74.3 release.

    +
    • +

      Mauritz Jeanson: src/com/nwalsh/xalan/Text.java

      Added a fix that prevents output of extra blank line.
      +Hopefully this closes bug #894805.
      +
    +
    + + +
    + +

    Release Notes: 1.74.3

    + +

    This release fixes some bugs in the 1.74.2 release.

    +

    See highlighting/README for XSLTHL usage instructions.

    +
    +

    Release Notes: 1.74.2

    + +

    This release fixes some bugs in the 1.74.1 release.

    +
    + +

    Release Notes: 1.74.1

    + +

    This release includes important bug fixes and adds the following +significant feature changes: +

    Gentext

    Kirghiz locale added and Chinese translations have been simplified.

    Somme support for gentext and right-to-left languages has been added.

    FO

    Various bugs have been resolved.

    Support for a new processing instruction: dbfo funcsynopsis-style has been added.

    Added new param email.mailto.enabled for FO output. Patch from Paolo Borelli.

    +

    Support for documented metadata in fop1 mode has been added.

    +
    Highlighting

    Support for the latest version of XSLTHL 2.0 and some new language syntaxes have been added to a variety of outputs.

    Manpages

    Added man.output.better.ps.enabled param (zero default). It non-zero, no such +markup is embedded in generated man pages, and no enhancements are +included in the PostScript output generated from those man pages +by the man -Tps command.

    HTML

    Support for writing.mode to set text direction and alignment based on document locale has been added.

    +

    Added a new top-level stylesheet module, chunk-changebars.xsl, to be +used for generating chunked output with highlighting based on change +(@revisionflag) markup. The module imports/includes the standard chunking +and changebars templates and contains additional logic for chunked output. +See FRs #1015180 and #1819915.

    +
    ePub
    +

    Covers now look better in Adobe Digital Editions thanks to a patch from Paul Norton of Adobe

    +

    Cover handling now more generic (including limited DocBook 5.0 cover support thanks to patch contributed by Liza Daly.

    Cover markup now carries more reliably into files destined for .mobi and the Kindle.

    dc:identifiers are now generated from more types of numbering schemes.

    Both SEO and semantic structure of chunked ePub output by ensuring that we always send out one and only one h1 in each XHTML chunk.

    +

    Primitive support for embedding a single font added.

    + +

    Support for embedding a CSS customizations added.

    +
    Roundtrip
    +

    Support for imagedata-metadata and table as images added.

    + +

    Support for imagedata-metadata and legalnotice as images added.

    +
    Params

    man.output.better.ps.enabled added for Manpages output

    +

    writing.mode.xml added to set text direction.

    + +

    Added new param email.mailto.enabled for FO output. +Patch from Paolo Borelli. Closes #2086321.

    + +

    highlight.source upgraded to support the latest version of XSLTHL 2.0.

    +

    +

    +

    The following is a list of changes that have been made since the 1.74.0 release.

    + + +

    Gentext

    + +

    The following changes have been made to the gentext code since the 1.74.0 release.

    +
    • +

      Michael(tm) Smith: locale/ky.xml; Makefile

      new Kirghiz locale from Ilyas Bakirov
      +
    • +

      Mauritz Jeanson: locale/en.xml

      Added "Acknowledgements".
      +
    • +

      Dongsheng Song: locale/zh_cn.xml

      Simplified Chinese translation.
      +
    • +

      Robert Stayton: locale/lv.xml; locale/ca.xml; locale/pt.xml; locale/tr.xml; locale/af.xml;⋯

      Add writing-mode gentext string to support right-to-left languages.
      +
    +
    + +

    FO

    + +

    The following changes have been made to the fo code since the 1.74.0 release.

    +
    • +

      David Cramer: footnote.xsl

      Added a check to confirm that a footnoteref's linkend points to a footnote. Stylesheets stop processing if not and provide a useful error message.
      +
    • +

      Mauritz Jeanson: spaces.xsl

      Convert spaces to fo:leader also in elements in the DB 5 namespace.
      +
    • +

      Mauritz Jeanson: pi.xsl; synop.xsl

      Added support for a new processing instruction: dbfo funcsynopsis-style. 
      +Closes bug #1838213.
      +
    • +

      Michael(tm) Smith: inline.xsl; param.xweb; param.ent

      Added new param email.mailto.enabled for FO output.
      +Patch from Paolo Borelli. Closes #2086321.
      +
    • +

      Mauritz Jeanson: docbook.xsl

      Added support for document metadata for fop1 (patch #2067318).
      +
    • +

      Jirka Kosek: param.ent; param.xweb; highlight.xsl

      Upgraded to support the latest version of XSLTHL 2.0
      + -- nested markup in highlited code is now processed
      + -- it is no longer needed to specify path XSLTHL configuration file using Java property
      + -- support for new languages, including Perl, Python and Ruby was added
      +
    +
    + +

    HTML

    + +

    The following changes have been made to the html code since the 1.74.0 release.

    +
    • +

      Robert Stayton: param.xweb; docbook.xsl; param.ent; html.xsl

      Add support for writing.mode to set text direction and alignment based on document locale.
      +
    • +

      Mauritz Jeanson: chunk-changebars.xsl

      Added a new top-level stylesheet module, chunk-changebars.xsl, to be 
      +used for generating chunked output with highlighting based on change 
      +(@revisionflag) markup. The module imports/includes the standard chunking 
      +and changebars templates and contains additional logic for chunked output.
      +See FRs #1015180 and #1819915.
      +
    +
    + +

    Manpages

    + +

    The following changes have been made to the manpages code since the 1.74.0 release.

    +
    • +

      Michael(tm) Smith: docbook.xsl

      Put the following at the top of generated roff for each page:
      +  \" t
      +purpose is to explicitly tell AT&T troff that the page needs to be
      +pre-processed through tbl(1); groff can figure it out
      +automatically, but apparently AT&T troff needs to be explicitly told
      +
    +
    + +

    ePub

    + +

    The following changes have been made to the epub code since the 1.74.0 release.

    +
    • +

      Keith Fahlgren: docbook.xsl

      Patch from Paul Norton of Adobe to get covers to look better in Adobe Digital Editions
      +
    • +

      Keith Fahlgren: bin/spec/epub_regressions_spec.rb; bin/spec/files/v5cover.xml; bin/spec/sp⋯

      Patch contributed by Liza Daly to make ePub cover handling more generic. Additionally
      +DocBook 5.0's <cover> now has some limited support:
      +
      +- should reference a cover in the OPF guide for a DocBook 5.0 test document
      +
    • +

      Keith Fahlgren: bin/spec/files/isbn.xml; bin/spec/files/issn.xml; bin/spec/files/biblioid.⋯

      Liza Daly reported that the dc:identifer-generation code was garbage (she was right).
      +
      +Added new tests:
      +- should include at least one dc:identifier
      +- should include an ISBN as URN for dc:identifier if an ISBN was in the metadata
      +- should include an ISSN as URN for dc:identifier if an ISSN was in the metadata
      +- should include an biblioid as a dc:identifier if an biblioid was in the metadata
      +- should include a URN for a biblioid with @class attribute as a dc:identifier if an biblioid was in the metadata
      +
    • +

      Keith Fahlgren: docbook.xsl; bin/spec/epub_spec.rb

      Improve both SEO and  semantic structure of chunked ePub output by ensuring that
      +we always send out one and only one h1 in each XHTML chunk.
      +
      +DocBook::Epub
      +- should include one and only one <h1> in each HTML file in rendered ePub files
      +for <book>s
      +- should include one and only one <h1> in each HTML file in rendered ePub files
      +for <book>s even if they do not have section markup
      +
    • +

      Keith Fahlgren: docbook.xsl; bin/spec/epub_realbook_spec.rb; bin/spec/files/orm.book.001.x⋯

      Adding better support for covers in epub files destined for .mobi and the Kindle
      +
    • +

      Keith Fahlgren: bin/dbtoepub; bin/lib/docbook.rb; bin/spec/files/DejaVuSerif.otf; docbook.⋯

      Adding primitive support for embedding a single font
      +
    • +

      Keith Fahlgren: bin/dbtoepub; bin/lib/docbook.rb; bin/spec/files/test_cust.xsl; bin/spec/e⋯

      Adding support for user-specified customization layers in dbtoepub
      +
    • +

      Keith Fahlgren: bin/dbtoepub; bin/spec/epub_regressions_spec.rb; bin/lib/docbook.rb; bin/s⋯

      Adding CSS support to .epub target & dbtoepub:
      +    -c, --css [FILE]                 Use FILE for CSS on generated XHTML.
      +
      +
      +DocBook::Epub
      +...
      +- should include a CSS link in HTML files when a CSS file has been provided
      +- should include CSS file in .epub when a CSS file has been provided
      +- should include a CSS link in OPF file when a CSS file has been provided
      +
    +
    + +

    Roundtrip

    + +

    The following changes have been made to the + roundtrip code + since the 1.74.0 release.

    +
    • +

      Steve Ball: blocks2dbk.xsl; template.xml; template.dot

      added support for imagedata-metadata
      +added support for table as images
      +
    • +

      Steve Ball: blocks2dbk.xsl; normalise2sections.xsl; sections2blocks.xsl

      Improved support for personname inlines.
      +
    • +

      Steve Ball: blocks2dbk.xsl; blocks2dbk.dtd; template.xml

      Added support for legalnotice.
      +
    • +

      Steve Ball: blocks2dbk.xsl; wordml2normalise.xsl

      added support for orgname in author
      +
    • +

      Steve Ball: specifications.xml; supported.xml; blocks2dbk.xsl; wordml2normalise.xsl; dbk2w⋯

      Updated specification.
      +to-DocBook: add cols attribute to tgroup
      +from-DocBook: fix for blockquote title
      +
    +
    + +

    Params

    + +

    The following changes have been made to the params since the 1.74.0 release.

    +
    • +

      The change was to add man.output.better.ps.enabled parameter, with +its default value set to zero. + +If the value of the man.output.better.ps.enabled parameter is +non-zero, certain markup is embedded in each generated man page +such that PostScript output from the man -Tps command for that +page will include a number of enhancements designed to improve the +quality of that output. + +If man.output.better.ps.enabled is zero (the default), no such +markup is embedded in generated man pages, and no enhancements are +included in the PostScript output generated from those man pages +by the man -Tps command. + +WARNING: The enhancements provided by this parameter rely on +features that are specific to groff (GNU troff) and that are not +part of "classic" AT&T troff or any of its derivatives. Therefore, +any man pages you generate with this parameter enabled will be +readable only on systems on which the groff (GNU troff) program is +installed, such as GNU/Linux systems. The pages will not not be +readable on systems on with the classic troff (AT&T troff) command +is installed. + +NOTE: The value of this parameter only affects PostScript output +generated from the man command. It has no effect on output +generated using the FO backend. + +TIP: You can generate PostScript output for any man page by +running the following command: + +man FOO -Tps > FOO.ps + +You can then generate PDF output by running the following command: + +ps2pdf FOO.ps

      +
    • +

      Robert Stayton: writing.mode.xml

      writing mode param used to set text direction.
      +
    • +

      Michael(tm) Smith: email.mailto.enabled.xml

      Added new param email.mailto.enabled for FO output.
      +Patch from Paolo Borelli. Closes #2086321.
      +
    • +

      Jirka Kosek: highlight.source.xml; highlight.xslthl.config.xml

      Upgraded to support the latest version of XSLTHL 2.0
      + -- nested markup in highlited code is now processed
      + -- it is no longer needed to specify path XSLTHL configuration file using Java property
      + -- support for new languages, including Perl, Python and Ruby was added
      +
    +
    + +

    Highlighting

    + +

    The following changes have been made to the + highlighting code + since the 1.74.0 release.

    +
    • +

      Jirka Kosek: cpp-hl.xml; c-hl.xml; tcl-hl.xml; php-hl.xml; common.xsl; perl-hl.xml; delphi⋯

      Upgraded to support the latest version of XSLTHL 2.0
      + -- nested markup in highlited code is now processed
      + -- it is no longer needed to specify path XSLTHL configuration file using Java property
      + -- support for new languages, including Perl, Python and Ruby was added
      +
    +
    + +
    + + +

    Release Notes: 1.74.0

    + +

    This release includes important bug fixes and adds the following +significant feature changes: +

    .epub target

    Paul Norton (Adobe) and Keith Fahlgren(O'Reilly Media) have donated code that generates .epub documents from +DocBook input. An alpha-reference implementation in Ruby has also been provided.

    +

    .epub is an open standard of the The International Digital Publishing Forum (IDPF), +a the trade and standards association for the digital publishing industry.

    +

    Read more about this target in epub/README +

    XHTML 1.1 target

    To support .epub output, a strict XHTML 1.1 target has been added. The stylesheets for this output are +generated and are quite similar to the XHTML target.

    Gentext updates

    A number of locales have been updated.

    Roundtrip improvements

    Table, figure, template syncronization, and character style improvements have been made for WordML & Pages. Support added for OpenOffice.org.

    First implementation of a libxslt extension
    +

    A stylesheet extension for libxslt, written in Python, has been added. + The extension is a function for adjusting column widths in CALS tables. See + extensions/README.LIBXSLT for more information.

    +

    +

    +

    The following is a list of changes that have been made + since the 1.73.2 release.

    + +

    Gentext

    + +

    The following changes have been made to the + gentext code + since the 1.73.2 release.

    +
    • +

      Michael(tm) Smith: locale/id.xml

      Checked in changes to Indonesion locale submitted by Euis Luhuanam a long time ago.
      +
    • +

      Michael(tm) Smith: locale/lt.xml

      Added changes to Lithuanian locate submitted a long time back by Nikolajus Krauklis.
      +
    • +

      Michael(tm) Smith: locale/hu.xml

      fixed error in lowercase.alpha definition in Hungarian locale
      +
    • +

      Michael(tm) Smith: locale/nb.xml

      Corrected language code for nb locale, and restored missing "startquote" key.
      +
    • +

      Michael(tm) Smith: locale/ja.xml

      Committed changes to ja locale file, from Akagi Kobayashi. Adds bracket quotes around many xref instances that did not have them
      +before.
      +
    • +

      Michael(tm) Smith: Makefile

      "no" locale is now "nb"
      +
    • +

      Michael(tm) Smith: locale/nb.xml

      Update Norwegian Bokmål translation. Thanks to Hans F. Nordhaug.
      +
    • +

      Michael(tm) Smith: locale/no.xml; locale/nb.xml

      per message from Hans F. Nordhaug, correct identifier for
      +Norwegian Bokmål is "nb" (not "no") and has been for quite some
      +time now...
      +
    • +

      Michael(tm) Smith: locale/ja.xml

      Converted ja.xml source file to use real unicode characters so
      +that the actual glyphs so up when you edit it in a text editor
      +(instead of the character references).
      +
    • +

      Michael(tm) Smith: locale/ja.xml

      Checked in changes to ja.xml locale file. Thanks to Akagi Kobayashi.
      +
    • +

      Michael(tm) Smith: locale/it.xml

      Changes from Federico Zenith
      +
    • +

      Dongsheng Song: locale/zh_cn.xml

      Added missing translations.
      +
    +
    + +

    Common

    + +

    The following changes have been made to the + common code + since the 1.73.2 release.

    +
    • +

      Michael(tm) Smith: l10n.xsl

      Added new template "l10.language.name" for retrieving the
      +English-language name of the lang setting of the current document.
      +Closes #1916837. Thanks to Simon Kennedy.
      +
    • +

      Michael(tm) Smith: refentry.xsl

      fixed syntax error
      +
    • +

      Michael(tm) Smith: refentry.xsl

      fixed a couple of typos
      +
    • +

      Michael(tm) Smith: refentry.xsl

      refined handling of cases where refentry "source" or "manual"
      +metadata is missing or when we use fallback content instead. We
      +now report a Warning if we use fallback content.
      +
    • +

      Michael(tm) Smith: refentry.xsl

      don't use refmiscinfo@class=date value as fallback for refentry
      +"source" or "manual" metadata fields
      +
    • +

      Michael(tm) Smith: refentry.xsl

      Made reporting of missing refentry metadata more quiet:
      +
      +  - we no longer report anything if usable-but-not-preferred
      +    metadata is found; we just quietly use whatever we manage to
      +    find
      +
      +  - we now only report missing "source" metadata if the refentry
      +    is missing BOTH "source name" and "version" metadata; if it
      +    has one but not the other, we use whichever one it has and
      +    don't report anything as missing
      +
      +The above changes were made because testing with some "real world"
      +source reveals that some authors are intentionally choosing to use
      +"non preferred" markup for some metadata, and also choosing to
      +omit "source name" or "version" metadata in there DocBook XML. So
      +it does no good to give them pedantic reminders about what they
      +already know...
      +
      +Also, changed code to cause "fixme" text to be inserted in output
      +in particular cases:
      +
      +  - if we can't manage to find any "source" metadata at all, we
      +    now put fixme text into the output
      +
      +  - if we can't manage to find any "manual" metadata a all, we 
      +    now put fixme text into the output
      +
      +The "source" and "manual" metadata is necessary information, so
      +buy putting the fixme stuff in the output, we alert users to the
      +need problem of it being missing.
      +
    • +

      Michael(tm) Smith: refentry.xsl

      When generating manpages output, we no longer report anything if
      +the refentry source is missing date or pubdate content. In
      +practice, many users intentionally omit the date from the source
      +because they explicitly want it to be generated.
      +
    • +

      Michael(tm) Smith: l10n.xml

      further change needed for switch from no locale to nb.
      +
    • +

      Michael(tm) Smith: common.xsl

      Added support for orgname in authorgroup. Thanks to Camille
      +Bégnis.
      +
    • +

      Michael(tm) Smith: Makefile

      "no" locale is now "nb"
      +
    • +

      Mauritz Jeanson: stripns.xsl

      Removed the template matching "ng:link|db:link" (in order to make @xlink:show 
      +work with <link> elements). As far as I can tell, this template is no longer needed.
      +
    • +

      Mauritz Jeanson: entities.ent

      Moved declaration of comment.block.parents entity to common/entities.ent.
      +
    • +

      Mauritz Jeanson: titles.xsl

      Added an update the fix made in revision 7528 (handling of xref/link in no.anchor.mode mode).
      +Having xref in title is not a problem as long as the target is not an ancestor element. 
      +Closes bug #1838136.
      +
      +Note that an xref that is in a title and whose target is an ancestor element is still not 
      +rendered in the TOC. This could be considered a bug, but on the other hand I cannot really
      +see the point in having such an xref in a document.
      +
    • +

      Mauritz Jeanson: titles.xsl

      Added a "not(ancestor::title)" test to work around "too many nested 
      +apply-templates" problems when processing xrefs or links in no.anchor.mode mode.
      +Hopefully, this closes bug #1811721.
      +
    • +

      Mauritz Jeanson: titles.xsl

      Removed old template matching "link" in no.anchor.mode mode.
      +
    • +

      Mauritz Jeanson: titles.xsl

      Process <link> in no.anchor.mode mode with the same template as <xref>. 
      +Closes bug #1759205 (Empty link in no.anchor.mode mode).
      +
    • +

      Mauritz Jeanson: titles.xsl

      In no.anchor.mode mode, do not output anchors for elements that are descendants 
      +of <title>. Previously, having inline elements with @id/@xml:id in <title>s 
      +resulted in anchors both in the TOC and in the main flow. Closes bug #1797492.
      +
    +
    + +

    FO

    + +

    The following changes have been made to the + fo code + since the 1.73.2 release.

    +
    • Mauritz Jeanson: pi.xsl

      Updated documentation for keep-together.
    • Mauritz Jeanson: task.xsl

      Enabled use of the keep-together PI on task elements.
    • +

      Robert Stayton: index.xsl

      FOP1 requires fo:wrapper for inline index entries, not fo:inline.
      +
    • +

      Robert Stayton: index.xsl

      Fixed non-working inline.or.block template for indexterm wrappers.
      +Add fop1 to list of processors using inline.or.block.
      +
    • +

      Mauritz Jeanson: table.xsl

      Fixed bug #1891965 (colsep in entytbl not working).
      +
    • +

      Mauritz Jeanson: titlepage.xsl

      Added support for title in revhistory. Closes bug #1842847.
      +
    • +

      Mauritz Jeanson: pi.xsl

      Small doc cleanup (dbfo float-type).
      +
    • +

      Mauritz Jeanson: titlepage.xsl

      Insert commas between multiple copyright holders.
      +
    • +

      Mauritz Jeanson: autotoc.xsl; division.xsl

      Added modifications to support nested set elements. See bug #1853172.
      +
    • +

      David Cramer: glossary.xsl

      Added normalize-space to xsl:sorts to avoid missorting of glossterms due to stray leading spaces.
      +
    • +

      David Cramer: glossary.xsl

      Fixed bug #1854199: glossary.xsl should use the sortas attribute on glossentry
      +
    • +

      Mauritz Jeanson: inline.xsl

      Added a template for citebiblioid. The hyperlink target is the parent of the referenced biblioid,
      +and the "hot text" is the biblioid itself enclosed in brackets.
      +
    • +

      Mauritz Jeanson: inline.xsl

      Moved declaration of comment.block.parents entity to common/entities.ent.
      +
    • +

      Mauritz Jeanson: docbook.xsl

      Updated message about unmatched element.
      +
    • +

      Mauritz Jeanson: param.xweb

      Added link to profiling chapter of TCG.
      +
    • +

      Mauritz Jeanson: refentry.xsl

      Fixed typo (refsynopsysdiv -> refsynopsisdiv).
      +
    • +

      David Cramer: fop.xsl; fop1.xsl; ptc.xsl; xep.xsl

      Added test to check generate.index param when generating pdf bookmarks
      +
    • +

      Mauritz Jeanson: graphics.xsl

      Added support for MathML in imagedata.
      +
    • +

      Michael(tm) Smith: math.xsl

      Removed unnecessary extra test condition in test express that
      +checks for passivetex.
      +
    • +

      Michael(tm) Smith: math.xsl

      Don't use fo:instream-foreign-object if we are processing with
      +passivetex. Closes #1806899. Thanks to Justus Piater.
      +
    • +

      Mauritz Jeanson: component.xsl

      Added code to output a TOC for an appendix in an article when 
      +generate.toc='article/appendix toc'. Closes bug #1669658.
      +
    • +

      Dongsheng Song: biblio-iso690.xsl

      Change encoding from "windows-1250" to "UTF-8".
      +
    • +

      Mauritz Jeanson: pi.xsl

      Updated documentation for dbfo_label-width.
      +
    • +

      Mauritz Jeanson: lists.xsl

      Added support for the dbfo_label-width PI in calloutlists.
      +
    • +

      Robert Stayton: biblio.xsl

      Support finding glossary database entries inside bibliodivs.
      +
    • +

      Robert Stayton: formal.xsl

      Complete support for <?dbfo pgwide="1"?> for informal
      +elements too.
      +
    • +

      Mauritz Jeanson: table.xsl

      In the table.block template, added a check for the dbfo_keep-together PI, so that 
      +a table may break (depending on the PI value) at a page break. This was needed 
      +since the outer fo:block that surrounds fo:table has keep-together.within-column="always" 
      +by default, which prevents the table from breaking. Closes bug #1740964 (Titled 
      +table does not respect dbfo PI).
      +
    • +

      Mauritz Jeanson: pi.xsl

      Added a few missing @role="tcg".
      +
    • +

      Mauritz Jeanson: inline.xsl

      Use normalize-space() in glossterm comparisons (as in html/inline.xsl).
      +
    • +

      Mauritz Jeanson: autoidx.xsl

      Removed the [&scope;] predicate from the target variable in the template with name="reference".
      +This filter was the cause of missing index backlinks when @zone and @type were used on indexterms,
      +with index.on.type=1. Closes bug #1680836.
      +
    • +

      Michael(tm) Smith: inline.xsl; xref.xsl; footnote.xsl

      Added capability in FO output for displaying URLs for all
      +hyperlinks (elements marked up with xlink:href attributes) in the
      +same way as URLs for ulinks are already handled (which is to say,
      +either inline or as numbered footnotes).
      +
      +Background on this change:
      +DocBook 5 allows "ubiquitous" linking, which means you can make
      +any element a hyperlink just by adding an xlink:href attribute to
      +it, with the value set to an external URL. That's in contrast to
      +DocBook 4, which only allows you to use specific elements (e.g.,
      +the link and ulink elements) to mark up hyperlinks.
      +
      +The existing FO stylesheets have a mechanism for handling display
      +of URLs for hyperlinks that are marked up with ulink, but they did
      +not handle display of URLs for elements that were marked up with
      +xlink:href attributes. This change adds handling for those other
      +elements, enabling the URLs they link to be displayed either
      +inline or as numbered footnotes (depending on what values the user
      +has the ulink.show and ulink.footnotes params set to).
      +
      +Note that this change only adds URL display support for elements
      +that call the simple.xlink template -- which currently is most
      +(but not all) inline elements.
      +
      +This change also moves the URL display handling out of the ulink
      +template and into a new "hyperlink.url.display" named template;
      +the ulink template and the simple.xlink named template now both
      +call the hyperlink.url.display template.
      +
      +Warning: In the stylesheet code that determines what footnote
      +number to assign to each footnote or external hyperlink, there is
      +an XPath expression for determining whether a particular
      +xlink:href instance is an external hyperlink; that expression is
      +necessarily a bit complicated and further testing may reveal that
      +it doesn't handle all cases as expected -- so some refinements to
      +it may need to be done later.
      +
      +Closes #1785519. Thanks to Ken Morse for reporting and
      +troubleshooting the problem.
      +
    +
    + +

    HTML

    + +

    The following changes have been made to the + html code + since the 1.73.2 release.

    +
    • Keith Fahlgren: inline.xsl; synop.xsl

      Work to make HTML and XHTML targets more valid
    • Keith Fahlgren: table.xsl

      Add better handling for tables that have footnotes in the titles
    • Keith Fahlgren: biblio.xsl

      Add anchors to bibliodivs
    • +

      Keith Fahlgren: formal.xsl; Makefile; htmltbl.xsl

      Initial checkin/merge of epub target from work provided by Paul Norton of Adobe
      +and Keith Fahlgren of O'Reilly.
      +

      This change includes new code for generating the XHTML 1.1 target sanely.

      +
    • +

      Mauritz Jeanson: biblio.xsl

      Added code for creating URLs from biblioids with @class="doi" (representing Digital 
      +Object Identifiers). See FR #1934434 and http://doi.org.
      +
      +To do: 1) Add support for FO output. 2) Figure out how @class="doi" should be handled 
      +for bibliorelation, bibliosource and citebiblioid.
      +
    • +

      Norman Walsh: formal.xsl

      Don't use xsl:copy because it forces the resulting element to be in the same namespace as the source element; in the XHTML stylesheets, that's wrong. But the HTML-to-XHTML converter does the right thing with literal result elements, so use one of them.
      +
    • +

      Michael(tm) Smith: Makefile

      Added checks and hacks to various makefiles to enable building
      +under Cygwin. This stuff is ugly and maybe not worth the mess and
      +trouble, but does seem to work as expected and not break anything
      +else.
      +
    • +

      Michael(tm) Smith: docbook.xsl

      added "exslt" namespace binding to html/docbook.xsl file (in
      +addition to existing "exsl" binding. reason is because lack of it
      +seems to cause processing problems when using the profiled
      +version of the stylsheet
      +
    • +

      Norman Walsh: chunk-common.xsl

      Rename link
      +
    • +

      Mauritz Jeanson: table.xsl

      Added a fix to make rowsep apply to the last row of thead in entrytbl.
      +
    • +

      Michael(tm) Smith: synop.xsl

      Simplified and streamlined handling of output for ANSI-style
      +funcprototype output, to correct a problem that was causing type
      +data to be lost in the output parameter definitions. For example,
      +for an instance like this:
      +  <paramdef>void *<parameter>dataptr</parameter>[]</paramdef>
      +... the brackets (indicating an array type) were being dropped.
      +
    • +

      Michael(tm) Smith: synop.xsl

      Changed HTML handling of K&R-style paramdef output. The parameter
      +definitions are no longer output in a table (though the prototype
      +still is). The reason for the change is that the
      +kr-tabular-funcsynopsis-mode template was causing type data to be
      +lost in the output parameter definitions. For example, for an
      +instance like this:
      +  <paramdef>void *<parameter>dataptr</parameter>[]</paramdef>
      +... the brackets (indicating an array type) were being dropped.
      +The easiest way to deal with the problem is to not try to chop up
      +the parameter definitions and display them in table format, but to
      +instead just output them as-is. May not look quite as pretty, but
      +at least we can be sure no information is being lost...
      +
    • +

      Michael(tm) Smith: pi.xsl

      updated wording of doc for funcsynopsis-style PI
      +
    • +

      Michael(tm) Smith: param.xweb; param.ent; synop.xsl

      Removed the funcsynopsis.tabular.threshold param. It's no longer
      +being used in the code and hasn't been since mid 2006.
      +
    • +

      Mauritz Jeanson: graphics.xsl

      Added support for the img.src.path parameter for SVG graphics. Closes bug #1888169.
      +
    • +

      Mauritz Jeanson: chunk-common.xsl

      Added missing space.
      +
    • +

      Norman Walsh: component.xsl

      Fix bug where component titles inside info elements were not handled properly
      +
    • +

      Michael(tm) Smith: pi.xsl

      Moved dbhtml_stop-chunking embedded doc into alphabetical order,
      +fixed text of TCG section it see-also'ed.
      +
    • +

      David Cramer: pi.xsl

      Added support for <?dbhtml stop-chunking?> processing instruction
      +
    • +

      David Cramer: chunk-common.xsl; pi.xsl

      Added support for <?dbhtml stop-chunking?> processing instruction
      +
    • +

      David Cramer: glossary.xsl

      Fixed bug #1854199: glossary.xsl should use the sortas attribute on glossentry. Also added normalize-space to avoid missorting due to stray leading spaces.
      +
    • +

      Mauritz Jeanson: inline.xsl

      Added a template for citebiblioid. The hyperlink target is the parent of the referenced biblioid,
      +and the "hot text" is the biblioid itself enclosed in brackets.
      +
    • +

      Mauritz Jeanson: inline.xsl

      Added support for @xlink:show in the simple.xlink template. The "new" and "replace" 
      +values are supported (corresponding to values of "_blank" and "_top" for the 
      +ulink.target parameter). I have assumed that @xlink:show should override ulink.target
      +for external URI links. This closes bugs #1762023 and #1727498.
      +
    • +

      Mauritz Jeanson: inline.xsl

      Moved declaration of comment.block.parents entity to common/entities.ent.
      +
    • +

      Mauritz Jeanson: param.xweb

      Added link to profiling chapter of TCG.
      +
    • +

      Dongsheng Song: biblio-iso690.xsl

      Change encoding from "windows-1250" to "UTF-8".
      +
    • +

      Robert Stayton: biblio.xsl

      Add support in biblio collection to entries in bibliodivs.
      +
    • +

      Mauritz Jeanson: pi.xsl

      Added missing @role="tcg".
      +
    • +

      Mauritz Jeanson: chunk-common.xsl; titlepage.xsl

      Refactored legalnotice/revhistory chunking, so that the use.id.as.filename 
      +parameter as well as the dbhtml_filename PI are taken into account. A new named
      +template in titlepage.xsl is used to compute the filename.
      +
    • +

      Mauritz Jeanson: chunk-common.xsl; titlepage.xsl

      An update to the fix for bug #1790495 (r7433):
      +The "ln-" prefix is output only when the legalnotice doesn't have an
      +@id/@xml:id, in which case the stylesheets generate an ID value, 
      +resulting in a filename like "ln-7e0fwgj.html". This is useful because 
      +without the prefix, you wouldn't know that the file contained a legalnotice. 
      +The same logic is also applied to revhistory, using an "rh-" prefix.
      +
    • +

      Mauritz Jeanson: autoidx.xsl

      Removed the [&scope;] predicate from the target variable in the template with name="reference".
      +This filter was the cause of missing index backlinks when @zone and @type were used on indexterms,
      +with index.on.type=1. Closes bug #1680836.
      +
    • +

      Mauritz Jeanson: titlepage.xsl

      Added 'ln-' prefix to the name of the legalnotice chunk, in order to match the 
      +<link href"..."> that is output by make.legalnotice.head.links (chunk-common.xsl).
      +Modified the href attribute on the legalnotice link.
      +Closes bug #1790495.
      +
    +
    + +

    Manpages

    + +

    The following changes have been made to the + manpages code + since the 1.73.2 release.

    +
    • +

      Michael(tm) Smith: other.xsl

      slightly adjusted spacing around admonition markers
      +
    • +

      Michael(tm) Smith: refentry.xsl; utility.xsl

      make sure refsect3 titles are preceded by a line of space, and
      +make the indenting of their child content less severe
      +
    • +

      Michael(tm) Smith: block.xsl

      only indent verbatim environments in TTY output, not in non-TTY/PS
      +
    • +

      Michael(tm) Smith: block.xsl

      made another adjustment to correct vertical alignment of admonition marker
      +
    • +

      Michael(tm) Smith: block.xsl; other.xsl

      Adjusted/corrected alignment of adominition marker in PS/non-TTY output.
      +
    • +

      Michael(tm) Smith: endnotes.xsl

      For PS/non-TTY output, display footnote/endnote numbers in
      +superscript.
      +
    • +

      Michael(tm) Smith: table.xsl; synop.xsl; utility.xsl

      Changed handling of hanging indents for cmdsynopsis, funcsynopsis,
      +and synopfragment such that they now look correct in non-TTY/PS
      +output. We now use the groff \w escape to hang by the actual width
      +-- in the current font -- of the command, funcdef, or
      +synopfragment references number (as opposed to hanging by the
      +number of characters). This rendering in TTY output remains the
      +same, since the width in monospaced TTY output is the same as the
      +number of characters.
      +
      +Also, created new synopsis-block-start and synopsis-block-end
      +templates to use for cmdsynopsis and funcsynopsis instead of the
      +corresponding verbatim-* templates.
      +
      +Along with those changes, also corrected a problem that caused the
      +content of synopfragment to be dropped, and made a
      +vertical-spacing change to adjust spacing around table titles and
      +among sibling synopfragment instances.
      +
    • +

      Michael(tm) Smith: other.xsl

      use common l10.language.name template to retrieve English-language name
      +
    • +

      Michael(tm) Smith: synop.xsl; inline.xsl

      added comment in code explaining why we don't put filename output
      +in italic (despite the fact that man guidelines say we should)
      +
    • +

      Michael(tm) Smith: inline.xsl

      put filename output in monospace instead of italic
      +
    • +

      Michael(tm) Smith: synop.xsl

      put cmdsynopsis in monospace
      +
    • +

      Michael(tm) Smith: inline.xsl

      removed template match for literal. template matches for monospace
      +inlines are all imported from the HTML stylesheet
      +
    • +

      Michael(tm) Smith: block.xsl

      don't indent verbatim environments that are descendants of
      +refsynopsisdiv, not put backgrounds behind them
      +
    • +

      Michael(tm) Smith: inline.xsl

      set output of the literal element in monospace. this causes all
      +inline monospace instances in the git man pages to be set in
      +monospace (since DocBook XML source for git docs is generated with
      +asciidoc and asciidoc consistently outputs only <literal> for
      +inline monospace (not <command> or <code> or anything else).
      +Of course this only affects non-TTY output...
      +
    • +

      Michael(tm) Smith: utility.xsl

      Added inline.monoseq named template.
      +
    • +

      Michael(tm) Smith: utility.xsl

      don't bother using a custom register to store the previous
      +font-family value when setting blocks of text in code font; just
      +use \F[] .fam with no arg to switch back
      +
    • +

      Michael(tm) Smith: endnotes.xsl

      put links in blue in PS output (note that this matches how groff
      +renders content marked up with the .URL macro)
      +
    • +

      Michael(tm) Smith: endnotes.xsl; param.xweb; param.ent

      removed man.links.are.underlined and added man.font.links. Also,
      +changed the default font formatting for links to bold.
      +
    • +

      Michael(tm) Smith: endnotes.xsl; param.xweb; param.ent

      Added new param man.base.url.for.relative.links .. specifies a
      +base URL for relative links (for ulink, @xlink:href, imagedata,
      +audiodata, videodata) shown in the generated NOTES section of
      +man-page output. The value of man.base.url.for.relative.links is
      +prepended to any relative URI that is a value of ulink url,
      +xlink:href, or fileref attribute.
      +
      +If you use relative URIs in link sources in your DocBook refentry
      +source, and you leave man.base.url.for.relative.links unset, the
      +relative links will appear "as is" in the NOTES section of any
      +man-page output generated from your source. That's probably not
      +what you want, because such relative links are only usable in the
      +context of HTML output. So, to make the links meaningful and
      +usable in the context of man-page output, set a value for
      +man.base.url.for.relative.links that points
      +to the online version of HTML output generated from your DocBook
      +refentry source. For example:
      +
      +  <xsl:param name="man.base.url.for.relative.links"
      +  >http://www.kernel.org/pub/software/scm/git/docs/</xsl:param>
      +
    • +

      Michael(tm) Smith: info.xsl

      If a source refentry contains a Documentation or DOCUMENTATION
      +section, don't report it as having missing AUTHOR information.
      +Also, if missing a contrib/personblurb for a person or org, report
      +pointers to http://docbook.sf.net/el/personblurb and to
      +http://docbook.sf.net/el/contrib
      +
    • +

      Michael(tm) Smith: info.xsl

      If we encounter an author|editor|othercredit instance that lacks a
      +personblurb or contrib, report it to the user (because that means
      +we have no information about that author|editor|othercredit to
      +display in the generated AUTHOR|AUTHORS section...)
      +
    • +

      Michael(tm) Smith: info.xsl; docbook.xsl; other.xsl

      if we can't find any usable author data, emit a warning and insert
      +a fixme in the output
      +
    • +

      Michael(tm) Smith: info.xsl

      fixed bug in indenting of output for contrib instances in AUTHORS
      +section. Thanks to Daniel Leidert and the fglrx docs for exposing
      +the bug.
      +
    • +

      Michael(tm) Smith: block.xsl

      for a para or simpara that is the first child of a callout,
      +suppress the .sp or .PP that would normally be output (because in
      +those cases, the output goes into a table cell, and the .sp or .PP
      +markup causes a spurious linebreak before it when displayed
      +
    • +

      Michael(tm) Smith: lists.xsl

      Added support for rendering co callouts and calloutlist instances.
      +So you can now use simple callouts -- marking up programlisting
      +and such with co instances -- and have the callouts displayed in
      +man-page output. ("simple callouts" means using co@id and
      +callout@arearefs pointing to co@id instances; in man/roff output,
      +we can't/don't support markup that uses areaset and area)
      +
    • +

      Michael(tm) Smith: block.xsl

      only put a line of space after a verbatim if it's followed by a
      +text node or a paragraph
      +
    • +

      Michael(tm) Smith: utility.xsl

      put verbatim environments in slightly smaller font in non-TTY
      +output
      +
    • +

      Michael(tm) Smith: lists.xsl

      minor whitespace-only reformatting of lists.xsl source
      +
    • +

      Michael(tm) Smith: lists.xsl

      Made refinements/fixes to output of orderedlist and itemizedlist
      +-- in part, to get mysql man pages to display correctly. This
      +change causes a "\c" continuation marker to be added between
      +listitem markers and contents (to ensure that the content remains
      +on the same line as the marker when displayed)
      +
    • +

      Michael(tm) Smith: block.xsl

      put a line of vertical space after all verbatim output that has
      +sibling content following it (not just if that sibling content is
      +a text node)
      +
    • +

      Michael(tm) Smith: block.xsl

      refined spacing around titles for admonitions
      +
    • +

      Michael(tm) Smith: block.xsl; other.xsl

      Deal with case of verbatim environments that have a linebreak
      +after the opening tag. Assumption is that users generally don't
      +want that linebreak to appear in output, so we do some groff
      +hackery to mess with vertical spacing and close the space.
      +
    • +

      Michael(tm) Smith: inline.xsl

      indexterm instances now produce groff comments like this:
      +
      +  .\" primary: secondary: tertiary
      +
      +remark instances, if non-empty, now produce groff comments
      +
    • +

      Michael(tm) Smith: charmap.groff.xsl; other.xsl

      convert no-break space character to groff "\ \&" (instead of just
      +"\ "). the reason is that if a space occurs at the end of a line,
      +our processing causes it to be eaten. a real-world case of this is
      +the mysql(1) man page. appending the "\&" prevents that
      +
    • +

      Michael(tm) Smith: block.xsl

      output "sp" before simpara output, not after it (outputting it
      +after results in undesirable whitespace in particular cases; for
      +example, in the hg/mercurial docs
      +
    • +

      Michael(tm) Smith: table.xsl; synop.xsl; utility.xsl

      renamed from title-preamble to pinch.together and replaced "sp -1"
      +between synopsis fragments with call to pinch.together instead
      +
    • +

      Michael(tm) Smith: table.xsl

      use title-preamble template for table titles (instead of "sp -1"
      +hack), and "sp 1" after all tables (instead of just "sp"
      +
    • +

      Michael(tm) Smith: utility.xsl

      created title-preamble template for suppressing line spacing after
      +headings
      +
    • +

      Michael(tm) Smith: info.xsl

      further refinement of indenting in AUTHORS section
      +
    • +

      Michael(tm) Smith: block.xsl; other.xsl

      refined handling of admonitions
      +
    • +

      Michael(tm) Smith: lists.xsl

      Use RS/RE in another place where we had IP ""
      +
    • +

      Michael(tm) Smith: info.xsl

      Replace (ab)use of IP with "sp -1" in AUTHORS section with RS/RE
      +instead.
      +
    • +

      Michael(tm) Smith: table.xsl; synop.xsl; info.xsl

      changed all instances of ".sp -1n" to ".sp -1"
      +
    • +

      Michael(tm) Smith: other.xsl

      add extra line before SH heads only in non-TTY output
      +
    • +

      Michael(tm) Smith: block.xsl

      Reworked output for admonitions (caution, important, note, tip,
      +warning). In TTY output, admonitions now get indented. In non-TTY
      +output, a colored marker (yellow) is displayed next to them.
      +
    • +

      Michael(tm) Smith: other.xsl

      Added BM/EM macros for putting a colored marker in margin next to
      +a block of text.
      +
    • +

      Michael(tm) Smith: utility.xsl

      created make.bold.title template by moving title-bolding part out
      +from nested-section-title template. This allows the bolding to
      +also be used by the template for formatting admonitions
      +
    • +

      Michael(tm) Smith: info.xsl

      put .br before copyright contents to prevent them from getting run in
      +
    • +

      Michael(tm) Smith: refentry.xsl; other.xsl; utility.xsl

      made point size of output for Refsect2 and Refsect3 heads bigger
      +
    • +

      Michael(tm) Smith: other.xsl

      put slightly more space between SH head and underline in non-TTY
      +output
      +
    • +

      Michael(tm) Smith: param.xweb; param.ent; other.xsl

      Added the man.charmap.subset.profile.english parameter and refined
      +the handling of charmap subsets to differentiate between English
      +and non-English source.
      +
      +This way charmap subsets are now handled is this:
      +
      +If the value of the man.charmap.use.subset parameter is non-zero,
      +and your DocBook source is not written in English (that is, if its
      +lang or xml:lang attribute has a value other than en), then the
      +character-map subset specified by the man.charmap.subset.profile
      +parameter is used instead of the full roff character map.
      +
      +Otherwise, if the lang or xml:lang attribute on the root element
      +in your DocBook source or on the first refentry element in your
      +source has the value en or if it has no lang or xml:lang
      +attribute, then the character-map subset specified by the
      +man.charmap.subset.profile.english parameter is used instead of
      +man.charmap.subset.profile.
      +
      +The difference between the two subsets is that
      +man.charmap.subset.profile provides mappings for characters in
      +Western European languages that are not part of the Roman
      +(English) alphabet (ASCII character set).
      +
    • +

      Michael(tm) Smith: other.xsl

      Various updates, mainly related to uppercasing SH titles:
      +
      +  - added a "Language: " metadata line to the top comment area of
      +    output man pages, to indicate the language the page is in
      +
      +  - added a "toupper" macro of doing locale-aware uppercasing of
      +    SH titles and cross-references to SH titles; the mechanism
      +    relies on the uppercase.alpha and lowercase.alpha DocBook
      +    gentext keys to do locale-aware uppercasing based on the
      +    language the page is written in
      +
      +  - added a "string.shuffle" template, which provides a library
      +    function for "shuffling" two strings together into a single
      +    string; it takes the first character for the first string, the
      +    first character from second string, etc. The only current use
      +    for it is to generate the argument for the groff tr request
      +    that does string uppercasing.
      +
      +  - added make.tr.uppercase.arg and make.tr.normalcase.arg named
      +    templates for use in generating groff code for uppercasing and
      +    "normal"-casing SH titles
      +
      +  - made the BB/BE "background drawing" macros have effect only in
      +    non-TTY output
      +
      +  - output a few comments in the top part of source
      +
    • +

      Michael(tm) Smith: utility.xsl

      removed some leftover kruft
      +
    • +

      Michael(tm) Smith: refentry.xsl

      To create the name(s) for each man page, we now replace any spaces
      +in the refname(s) with underscores. This ensures that tools like
      +lexgrog(1) will be able to parse the name (lexgrog won't parse
      +names that contain spaces).
      +
    • +

      Michael(tm) Smith: docbook.xsl

      Put a comment into source of man page to indicate where the main
      +content starts. (We now have a few of macro definitions at the
      +start of the source, so putting this comment in helps those that
      +might be viewing the source.)
      +
    • +

      Michael(tm) Smith: refentry.xsl

      refined mechanism for generating SH titles
      +
    • +

      Michael(tm) Smith: charmap.groff.xsl

      Added zcaron, Zcaron, scaron, and Scaron to the groff character map.
      +This means that generated Finnish man pages will no longer contain
      +any raw accented characters -- they'll instead by marked up with
      +groff escapes.
      +
    • +

      Michael(tm) Smith: other.xsl; utility.xsl

      corrected a regression I introduced about a year ago that caused
      +dots to be output just as "\." -- instead needs to be "\&." (which
      +is what it will be now, after this change)
      +
    • +

      Michael(tm) Smith: refentry.xsl

      Changed backend handling for generating titles for SH sections and
      +for cross-references to those sections. This should have no effect
      +on TTY output (behavior should remain the same hopefully) but
      +results in titles in normal case (instead of uppercase) in PS
      +output.
      +
    • +

      Michael(tm) Smith: info.xsl

      use make.subheading template to make subheadings for AUTHORS and
      +COPYRIGHT sections (instead of harcoding roff markup)
      +
    • +

      Michael(tm) Smith: block.xsl

      put code font around programlisting etc.
      +
    • +

      Michael(tm) Smith: synop.xsl; docbook.xsl

      embed custom macro definitions in man pages, plus wrap synopsis in
      +code font
      +
    • +

      Michael(tm) Smith: endnotes.xsl

      use the make.subheading template to generated SH subheading for
      +endnotes section.
      +
    • +

      Michael(tm) Smith: lists.xsl

      Added some templates for generating if-then-else conditional
      +markup in groff, so let's use those instead of hard-coding it in
      +multiple places...
      +
    • +

      Michael(tm) Smith: other.xsl; utility.xsl

      Initial checkin of some changes related to making PS/PDF output
      +from "man -l -Tps" look better. The current changes:
      +
      +  - render synopsis and verbatim sections in a monospace/code font
      +
      +  - put a light-grey background behind all programlisting, screen,
      +    and literallayout instances
      +
      +  - prevent SH heads in PS output from being rendered in uppercase
      +    (as they are in console output)
      +
      +  - also display xrefs to SH heads in PS output in normal case
      +    (instead of uppercase)
      +
      +  - draw a line under SH heads in PS output
      +
      +The changes made to the code to support the above features were:
      +
      +  - added some embedded/custom macros: one for conditionally
      +    upper-casing SH x-refs, one for redefining the SH macro
      +    itself, with some conditional handling for PS output, and
      +    finally a macro for putting a background/screen (filled box)
      +    around a block of text (e.g., a program listing) in PS output
      +
      +  - added utility templates for wrapping blocks of text in code
      +    font; also templates for inline code font
      +
    • +

      Robert Stayton: refentry.xsl

      refpurpose nodes now get apply-templates instead of just normalize-space().
      +
    • +

      Michael(tm) Smith: lists.xsl

      Fixed alignment of first lined of text for each listitem in
      +orderedlist output for TTY. Existing code seemed to have been
      +causing an extra undesirable space to appear.
      +
    • +

      Michael(tm) Smith: lists.xsl

      Wrapped some roff conditionals around roff markup for orderedlist
      +and itemizedlist output, so that the lists look acceptable in PS
      +output as well as TTY.
      +
    • +

      Michael(tm) Smith: pi.xsl; synop.xsl; param.xweb; param.ent

      Added the man.funcsynopsis.style parameter. Has the same effect in
      +manpages output as the funcsynopsis.style parameter has in HTML
      +output -- except that its default value is 'ansi' instead of 'kr'.
      +
    • +

      Michael(tm) Smith: synop.xsl

      Reworked handling of K&R funcprototype output. It no longer relies
      +on the HTML kr-tabular templates, but instead just does direct
      +transformation to roff. For K&R output, it displays the paramdef
      +output in an indented list following the prototype.
      +
    • +

      Michael(tm) Smith: synop.xsl

      Properly integrated handling for K&R output into manpages
      +stylesheet. The choice between K&R output and ANSI output is
      +currently controlled through use of the (HTML) funcsynopsis.style
      +parameter. Note that because the mechanism does currently rely on
      +funcsynopsis.style, the default in manpages output is now K&R
      +(because that's the default of that param). But I suppose I ought
      +to create a man.funcsynopsis.style and make the default for that
      +ANSI (to preserve the existing default behavior).
      +
    • +

      Michael(tm) Smith: docbook.xsl

      added manpages/pi.xsl file
      +
    • +

      Michael(tm) Smith: .cvsignore; pi.xsl

      Added "dbman funcsynopsis-style" PI and incorporated it into the
      +doc build.
      +
    • +

      Michael(tm) Smith: refentry.xsl

      Fixed regression that caused an unescaped dash to be output
      +between refname and refpurpose content. Closes bug #1894244.
      +Thanks to Daniel Leidert.
      +
    • +

      Michael(tm) Smith: other.xsl

      Fixed problem with dots being escaped in filenames of generated
      +man files. Closes #1827195. Thanks to Daniel Leidert.
      +
    • +

      Michael(tm) Smith: inline.xsl

      Added support for processing structfield (was appearing in roff
      +output surrounded by HTML <em> tags; fixed so that it gets roff
      +ital markup). Closes bug #1858329.  Thanks to Sam Varshavchik.
      +
    +
    + +

    Epub

    + +

    The following changes have been made to the + epub code + since the 1.73.2 release.

    +
    • Keith Fahlgren: bin/spec/README; bin/spec/epub_realbook_spec.rb

      'Realbook' spec now passes
    • Keith Fahlgren: bin/dbtoepub; README; bin/spec/README; bin/lib/docbook.rb; bin/spec/epub_r⋯

      Very primitive Windows support for dbtoepub reference implementation; README for running tests and for the .epub target in general; shorter realbook test document (still fails for now)
    • Keith Fahlgren: bin/dbtoepub; bin/spec/epub_regressions_spec.rb; bin/lib/docbook.rb; bin/s⋯

      Changes to OPF spine to not duplicate idrefs for documents with parts not at the root; regression specs for same
    • Keith Fahlgren: docbook.xsl

      Fixing linking to cover @id, distinct from other needs of cover-image-id (again, thanks to Martin Goerner)
    • Keith Fahlgren: docbook.xsl

      Updating the title of the toc element in the guide to be more explicit (thanks to Martin Goerner)
    • +

      Keith Fahlgren: bin/spec/examples/amasque_exploded/content.opf; bin/spec/examples/amasque_⋯

      Initial checkin/merge of epub target from work provided by Paul Norton of Adobe
      +and Keith Fahlgren of O'Reilly.
      +
    • +

      Keith Fahlgren: docbook.xsl

      == General epub test support
      +
      +$ spec -O ~/.spec.opts spec/epub_spec.rb 
      +
      +DocBook::Epub
      +- should be able to be created
      +- should fail on a nonexistent file
      +- should be able to render to a file
      +- should create a file after rendering
      +- should have the correct mimetype after rendering
      +- should be valid .epub after rendering an article
      +- should be valid .epub after rendering an article without sections
      +- should be valid .epub after rendering a book
      +- should be valid .epub after rendering a book even if it has one graphic
      +- should be valid .epub after rendering a book even if it has many graphics
      +- should be valid .epub after rendering a book even if it has many duplicated graphics
      +- should report an empty file as invalid
      +- should confirm that a valid .epub file is valid
      +- should not include PDFs in rendered epub files as valid image inclusions
      +- should include a TOC link in rendered epub files for <book>s
      +
      +Finished in 20.608395 seconds
      +
      +15 examples, 0 failures
      +
      +
      +== Verbose epub test coverage against _all_ of the testdocs 
      +
      +Fails on only (errors truncated):
      +1)
      +'DocBook::Epub should be able to render a valid .epub for the test document /Users/keith/work/docbook-dev/trunk/xsl/epub/bin/spec/testdocs/calloutlist.003.xml [30]' FAILED
      +'DocBook::Epub should be able to render a valid .epub for the test document /Users/keith/work/docbook-dev/trunk/xsl/epub/bin/spec/testdocs/cmdsynopsis.001.xml [35]' FAILED
      +....
      +
      +Finished in 629.89194 seconds
      +
      +224 examples, 15 failures
      +
      +224 examples, 15 failures yields 6% failure rate
      +
    +
    + +

    HTMLHelp

    + +

    The following changes have been made to the + htmlhelp code + since the 1.73.2 release.

    +
    • +

      Mauritz Jeanson: htmlhelp-common.xsl

      Added <xsl:with-param name="quiet" select="$chunk.quietly"/> to calls to
      +the write.chunk, write.chunk.with.doctype, and write.text.chunk templates.
      +This makes chunk.quietly=1 suppress chunk filename messages also for help 
      +support files (which seems to be what one would expect). See bug #1648360.
      +
    +
    + +

    Eclipse

    + +

    The following changes have been made to the + eclipse code + since the 1.73.2 release.

    +
    • +

      David Cramer: eclipse.xsl

      Use sortas attributes (if they exist) when sorting indexterms
      +
    • +

      David Cramer: eclipse.xsl

      Added support for indexterm/see in eclipse index.xml
      +
    • +

      Mauritz Jeanson: eclipse.xsl

      Added <xsl:with-param name="quiet" select="$chunk.quietly"/>
      +to helpidx template.
      +
    • +

      David Cramer: eclipse.xsl

      Generate index.xml file and add related goo to plugin.xml file. Does not yet support see and seealso.
      +
    • +

      Mauritz Jeanson: eclipse.xsl

      Added <xsl:with-param name="quiet" select="$chunk.quietly"/> to calls to
      +the write.chunk, write.chunk.with.doctype, and write.text.chunk templates.
      +This makes chunk.quietly=1 suppress chunk filename messages also for help 
      +support files (which seems to be what one would expect). See bug #1648360.
      +
    +
    + +

    JavaHelp

    + +

    The following changes have been made to the + javahelp code + since the 1.73.2 release.

    +
    • +

      Mauritz Jeanson: javahelp.xsl

      Added <xsl:with-param name="quiet" select="$chunk.quietly"/> to calls to
      +the write.chunk, write.chunk.with.doctype, and write.text.chunk templates.
      +This makes chunk.quietly=1 suppress chunk filename messages also for help 
      +support files (which seems to be what one would expect). See bug #1648360.
      +
    +
    + +

    Roundtrip

    + +

    The following changes have been made to the + roundtrip code + since the 1.73.2 release.

    +
    • +

      Steve Ball: blocks2dbk.xsl; wordml2normalise.xsl

      fix table/cell borders for wordml, fix formal figure, add emphasis-strong
      +
    • +

      Mauritz Jeanson: supported.xml

      Changed @cols to 5.
      +
    • +

      Steve Ball: blocks2dbk.xsl; blocks2dbk.dtd; template.xml

      added pubdate, fixed metadata handling in biblioentry
      +
    • +

      Steve Ball: supported.xml

      Added support for edition.
      +
    • +

      Steve Ball: docbook-pages.xsl; wordml-blocks.xsl; docbook.xsl; wordml.xsl; pages-normalise⋯

      Removed stylesheets for old, deprecated conversion method.
      +
    • +

      Steve Ball: specifications.xml; dbk2ooo.xsl; blocks2dbk.xsl; dbk2pages.xsl; blocks2dbk.dtd⋯

      Added support for Open Office, added edition element, improved list and table support in Word and Pages
      +
    • +

      Steve Ball: normalise-common.xsl; blocks2dbk.xsl; dbk2pages.xsl; template-pages.xml; templ⋯

      Fixed bug in WordML table handling, improved table handling for Pages 08, synchronised WordML and Pages templates.
      +
    • +

      Steve Ball: normalise-common.xsl; blocks2dbk.xsl; wordml2normalise.xsl; dbk2wp.xsl

      fix caption, attributes
      +
    • +

      Steve Ball: specifications.xml; blocks2dbk.xsl; wordml2normalise.xsl; blocks2dbk.dtd; temp⋯

      Fixes to table and list handling
      +
    • +

      Steve Ball: blocks2dbk.xsl

      added support for explicit emphasis character styles
      +
    • +

      Steve Ball: wordml2normalise.xsl

      added support for customisation in image handling
      +
    • +

      Steve Ball: blocks2dbk.xsl

      Added inlinemediaobject support for metadata.
      +
    • +

      Steve Ball: normalise-common.xsl; blocks2dbk.xsl; template.xml; dbk2wordml.xsl; dbk2wp.xsl

      Added support file. Added style locking. Conversion bug fixes.
      +
    +
    + +

    Slides

    + +

    The following changes have been made to the + slides code + since the 1.73.2 release.

    +
    • +

      Michael(tm) Smith: fo/Makefile; html/Makefile

      Added checks and hacks to various makefiles to enable building
      +under Cygwin. This stuff is ugly and maybe not worth the mess and
      +trouble, but does seem to work as expected and not break anything
      +else.
      +
    • +

      Jirka Kosek: html/plain.xsl

      Added support for showing foil number
      +
    +
    + +

    Website

    + +

    The following changes have been made to the + website code + since the 1.73.2 release.

    +
    • +

      Michael(tm) Smith: extensions/saxon64/.classes/.gitignore; extensions/xalan2/.classes/com/⋯

      renamed a bunch more .cvsignore files to .gitignore (to facilitate use of git-svn)
      +
    +
    + +

    Params

    + +

    The following changes have been made to the + params code + since the 1.73.2 release.

    +
    • Keith Fahlgren: epub.autolabel.xml

      New parameter for epub, epub.autolabel
    • +

      Mauritz Jeanson: table.frame.border.color.xml; table.cell.padding.xml; table.cell.border.t⋯

      Added missing refpurposes and descriptions.
      +
    • +

      Keith Fahlgren: ade.extensions.xml

      Extensions to support Adobe Digital Editions extensions in .epub output.
      +
    • +

      Mauritz Jeanson: fop.extensions.xml; fop1.extensions.xml

      Clarified that fop1.extensions is for FOP 0.90 and later. Version 1 is not here yet...
      +
    • +

      Michael(tm) Smith: man.links.are.underlined.xml; man.endnotes.list.enabled.xml; man.font.l⋯

      removed man.links.are.underlined and added man.font.links. Also,
      +changed the default font formatting for links to bold.
      +
    • +

      Michael(tm) Smith: man.base.url.for.relative.links.xml

      Added new param man.base.url.for.relative.links .. specifies a
      +base URL for relative links (for ulink, @xlink:href, imagedata,
      +audiodata, videodata) shown in the generated NOTES section of
      +man-page output. The value of man.base.url.for.relative.links is
      +prepended to any relative URI that is a value of ulink url,
      +xlink:href, or fileref attribute.
      +
      +If you use relative URIs in link sources in your DocBook refentry
      +source, and you leave man.base.url.for.relative.links unset, the
      +relative links will appear "as is" in the NOTES section of any
      +man-page output generated from your source. That's probably not
      +what you want, because such relative links are only usable in the
      +context of HTML output. So, to make the links meaningful and
      +usable in the context of man-page output, set a value for
      +man.base.url.for.relative.links that points
      +to the online version of HTML output generated from your DocBook
      +refentry source. For example:
      +
      +  <xsl:param name="man.base.url.for.relative.links"
      +  >http://www.kernel.org/pub/software/scm/git/docs/</xsl:param>
      +
    • +

      Michael(tm) Smith: man.string.subst.map.xml

      squeeze .sp\n.sp into a single .sp (to prevent a extra, spurious
      +line of whitespace from being inserted after programlisting etc.
      +in certain cases)
      +
    • +

      Michael(tm) Smith: refentry.manual.fallback.profile.xml; refentry.source.fallback.profile.⋯

      don't use refmiscinfo@class=date value as fallback for refentry
      +"source" or "manual" metadata fields
      +
    • +

      Michael(tm) Smith: man.charmap.subset.profile.xml; man.charmap.enabled.xml; man.charmap.su⋯

      made some further doc tweaks related to the
      +man.charmap.subset.profile.english param
      +
    • +

      Michael(tm) Smith: man.charmap.subset.profile.xml; man.charmap.enabled.xml; man.charmap.su⋯

      Added the man.charmap.subset.profile.english parameter and refined
      +the handling of charmap subsets to differentiate between English
      +and non-English source.
      +
      +This way charmap subsets are now handled is this:
      +
      +If the value of the man.charmap.use.subset parameter is non-zero,
      +and your DocBook source is not written in English (that is, if its
      +lang or xml:lang attribute has a value other than en), then the
      +character-map subset specified by the man.charmap.subset.profile
      +parameter is used instead of the full roff character map.
      +
      +Otherwise, if the lang or xml:lang attribute on the root element
      +in your DocBook source or on the first refentry element in your
      +source has the value en or if it has no lang or xml:lang
      +attribute, then the character-map subset specified by the
      +man.charmap.subset.profile.english parameter is used instead of
      +man.charmap.subset.profile.
      +
      +The difference between the two subsets is that
      +man.charmap.subset.profile provides mappings for characters in
      +Western European languages that are not part of the Roman
      +(English) alphabet (ASCII character set).
      +
    • +

      Michael(tm) Smith: man.charmap.subset.profile.xml

      Added to default charmap used by manpages:
      +
      +  - the "letters" part of the 'C1 Controls And Latin-1 Supplement
      +    (Latin-1 Supplement)' Unicode block
      +  - Latin Extended-A block (but not all of the characters from
      +    that block have mappings in groff, so some of them are still
      +    passed through as-is)
      +
      +The effects of this change are that in man pages generated for
      +most Western European languages and for Finnish, all characters
      +not part of the Roman alphabet are (e.g., "accented" characters)
      +are converted to groff escapes.
      +
      +Previously, by default we passed through those characters as is
      +(and users needed to use the full charmap if they wanted to have
      +those characters converted).
      +
      +As a result of this change, man pages generated for Western
      +European languages will be viewable in some environments in which
      +they are not viewable if the "raw" non-Roman characters are in them.
      +
    • +

      Mauritz Jeanson: generate.legalnotice.link.xml; generate.revhistory.link.xml

      Added information on how the filename is computed.
      +
    • +

      Mauritz Jeanson: default.table.width.xml

      Clarified PI usage.
      +
    • +

      Michael(tm) Smith: man.funcsynopsis.style.xml

      Added the man.funcsynopsis.style parameter. Has the same effect in
      +manpages output as the funcsynopsis.style parameter has in HTML
      +output -- except that its default value is 'ansi' instead of 'kr'.
      +
    • +

      Michael(tm) Smith: funcsynopsis.tabular.threshold.xml

      Removed the funcsynopsis.tabular.threshold param. It's no longer
      +being used in the code and hasn't been since mid 2006.
      +
    • +

      Mauritz Jeanson: table.properties.xml

      Set keep-together.within-column to "auto". This seems to be the most sensible
      +default value for tables.
      +
    • +

      Mauritz Jeanson: informal.object.properties.xml; admon.graphics.extension.xml; informalequ⋯

      Several small documentation fixes.
      +
    • +

      Mauritz Jeanson: manifest.in.base.dir.xml

      Wording fixes.
      +
    • +

      Mauritz Jeanson: header.content.properties.xml; footer.content.properties.xml

      Added refpurpose.
      +
    • +

      Mauritz Jeanson: ulink.footnotes.xml; ulink.show.xml

      Updated for DocBook 5.
      +
    • +

      Mauritz Jeanson: index.method.xml; glossterm.auto.link.xml

      Spelling and wording fixes.
      +
    • +

      Mauritz Jeanson: callout.graphics.extension.xml

      Clarifed available graphics formats and extensions.
      +
    • +

      Mauritz Jeanson: footnote.sep.leader.properties.xml

      Corrected refpurpose.
      +
    • +

      Jirka Kosek: footnote.properties.xml

      Added more properties which make it possible to render correctly footnotes placed inside verbatim elements.
      +
    • +

      Mauritz Jeanson: img.src.path.xml

      img.src.path works with inlinegraphic too.
      +
    • +

      Mauritz Jeanson: saxon.character.representation.xml

      Added TCG link.
      +
    • +

      Mauritz Jeanson: img.src.path.xml

      Updated description of img.src.path. Bug #1785224 revealed that 
      +there was a risk of misunderstanding how it works.
      +
    +
    + +

    Profiling

    + +

    The following changes have been made to the + profiling code + since the 1.73.2 release.

    +
    • +

      Jirka Kosek: xsl2profile.xsl

      Added new rules to profile all content generated by HTML Help (including alias files)
      +
    • +

      Robert Stayton: profile-mode.xsl

      use mode="profile" instead of xsl:copy-of for attributes so
      +they can be more easily customized.
      +
    +
    + + +

    Tools

    + +

    The following changes have been made to the + tools code + since the 1.73.2 release.

    +
    • +

      Michael(tm) Smith: make/Makefile.DocBook

      various changes and additions to support making with asciidoc as
      +an input format
      +
    • +

      Michael(tm) Smith: make/Makefile.DocBook

      make dblatex the default PDF maker for the example makefile
      +
    • +

      Michael(tm) Smith: xsl/build/html2roff.xsl

      Reworked handling of K&R funcprototype output. It no longer relies
      +on the HTML kr-tabular templates, but instead just does direct
      +transformation to roff. For K&R output, it displays the paramdef
      +output in an indented list following the prototype.
      +
    • +

      Mauritz Jeanson: xsl/build/make-xsl-params.xsl

      Made attribute-sets members of the param list. This enables links to attribute-sets in the
      +reference documentation.
      +
    • +

      Michael(tm) Smith: xsl/build/html2roff.xsl

      use .BI handling in K&R funsynopsis output for manpages, just as
      +we do already of ANSI output
      +
    • +

      Michael(tm) Smith: xsl/build/html2roff.xsl

      Implemented initial support for handling tabular K&R output of
      +funcprototype in manpages output. Accomplished by adding more
      +templates to the intermediate HTML-to-roff stylesheet that the
      +build uses to create the manpages/html-synop.xsl stylesheet.
      +
    • +

      Michael(tm) Smith: xsl/build/doc-link-docbook.xsl

      Made the xsl/tools/xsl/build/doc-link-docbook.xsl stylesheet
      +import profile-docbook.xsl, so that we can do profiling of release
      +notes. Corrected some problems in the target for the release-notes
      +HTML build.
      +
    +
    + +

    Extensions

    + +

    The following changes have been made to the + extensions code + since the 1.73.2 release.

    +
    • Keith Fahlgren: Makefile

      Use DOCBOOK_SVN variable everywhere, please; build with PDF_MAKER
    • +

      Michael(tm) Smith: Makefile

      moved extensions build targets from master xsl/Makefile to
      +xsl/extensions/Makefile
      +
    • +

      Michael(tm) Smith: .cvsignore

      re-adding empty extensions subdir
      +
    +
    + +

    XSL-Saxon

    + +

    The following changes have been made to the + xsl-saxon code + since the 1.73.2 release.

    +
    • +

      Michael(tm) Smith: VERSION

      bring xsl2, xsl-saxon, and xsl-xalan VERSION files up-to-date with
      +recent change to snapshot build infrastructure
      +
    • +

      Michael(tm) Smith: nbproject/build-impl.xml; nbproject/project.properties

      Changed hard-coded file references in "clean" target to variable
      +references. Closes #1792043. Thanks to Daniel Leidert.
      +
    • +

      Michael(tm) Smith: VERSION; Makefile

      Did post-release wrap-up of xsl-saxon and xsl-xalan dirs
      +
    • +

      Michael(tm) Smith: nbproject/build-impl.xml; VERSION; Makefile; test

      More tweaks to get release-ready
      +
    +
    + +

    XSL-Xalan

    + +

    The following changes have been made to the + xsl-xalan code + since the 1.73.2 release.

    +
    • +

      Michael(tm) Smith: VERSION

      bring xsl2, xsl-saxon, and xsl-xalan VERSION files up-to-date with
      +recent change to snapshot build infrastructure
      +
    • +

      Michael(tm) Smith: nbproject/build-impl.xml

      Changed hard-coded file references in "clean" target to variable
      +references. Closes #1792043. Thanks to Daniel Leidert.
      +
    • +

      Michael(tm) Smith: Makefile; VERSION

      Did post-release wrap-up of xsl-saxon and xsl-xalan dirs
      +
    • +

      Michael(tm) Smith: Makefile; nbproject/build-impl.xml; VERSION

      More tweaks to get release-ready
      +
    +
    + +

    XSL-libxslt

    + +

    The following changes have been made to the + xsl-libxslt code + since the 1.73.2 release.

    +
    • +

      Mauritz Jeanson: python/xslt.py

      Print the result to stdout if no outfile has been given.
      +Some unnecessary semicolons removed.
      +
    • +

      Mauritz Jeanson: python/xslt.py

      Added a function that quotes parameter values (to ensure that they are interpreted as strings).
      +Replaced deprecated functions from the string module with string methods.
      +
    • +

      Michael(tm) Smith: python/README; python/README.LIBXSLT

      renamed xsl-libxslt/python/README to xsl-libxslt/python/README.LIBXSLT
      +
    • +

      Mauritz Jeanson: python/README

      Tweaked the text a little.
      +
    +
    + +
    + +

    Release Notes: 1.73.2

    + +

    This is solely a minor bug-fix update to the 1.73.1 release. + It fixes a packaging error in the 1.73.1 package, as well as a + bug in footnote handling in FO output.

    +
    + +

    Release: 1.73.1

    + +

    This is mostly a bug-fix update to the 1.73.0 release.

    + +

    Gentext

    + +

    The following changes have been made to the + gentext code + since the 1.73.0 release.

    +
    • +

      Mauritz Jeanson: locale/de.xml

      Applied patch #1766009.
      +
    • +

      Michael(tm) Smith: locale/lv.xml

      Added localization for ProductionSet.
      +
    +
    + +

    FO

    + +

    The following changes have been made to the + fo code + since the 1.73.0 release.

    +
    • +

      Mauritz Jeanson: table.xsl

      Modified the tgroup template so that, for tables with multiple tgroups, 
      +a width attribute is output on all corresponding fo:tables. Previously, 
      +there was a test prohibiting this (and a comment saying that outputting more
      +than one width attribute will cause an error). But this seems to be no longer 
      +relevant; it is not a problem with FOP 0.93 or XEP 4.10. Closes bug #1760559.
      +
    • +

      Mauritz Jeanson: graphics.xsl

      Replaced useless <a> elements with warning messages (textinsert extension).
      +
    • +

      Mauritz Jeanson: admon.xsl

      Enabled generation of ids (on fo:wrapper) for indexterms in admonition titles, so that page
      +references in the index can be created. Closes bug #1775086.
      +
    +
    + +

    HTML

    + +

    The following changes have been made to the + html code + since the 1.73.0 release.

    +
    • +

      Mauritz Jeanson: titlepage.xsl

      Added <xsl:call-template name="process.footnotes"/> to abstract template
      +so that footnotes in info/abstract are processed. Closes bug #1760907.
      +
    • +

      Michael(tm) Smith: pi.xsl; synop.xsl

      Changed handling of HTML output for the cmdsynopsis and
      +funcsynopsis elements, such that a@id instances are generated for
      +them if they are descendants of any element containing a dbcmdlist
      +or dbfunclist PI. Also, update the embedded reference docs for the
      +dbcmdlist and dbfunclist PIs to make it clear that they can be
      +used within any element for which cmdsynopsis or funcsynopsis are
      +valid children.
      +
    • +

      Michael(tm) Smith: formal.xsl

      Reverted the part of revision 6952 that caused a@id anchors to be
      +generated for output of informal objects. Thanks to Sam Steingold
      +for reporting.
      +
    • +

      Robert Stayton: glossary.xsl

      Account for a glossary with no glossdiv or glossentry children.
      +
    • +

      Mauritz Jeanson: titlepage.xsl

      Modified legalnotice template so that the base.name parameter is calculated 
      +in the same way as for revhistory chunks. Using <xsl:apply-templates 
      +mode="chunk-filename" select="."/> did not work for single-page output since
      +the template with that mode is in chunk-code.xsl.
      +
    • +

      Mauritz Jeanson: graphics.xsl

      Updated support for SVG (must be a child of imagedata in DB 5).
      +Added support for MathML in imagedata.
      +
    • +

      Mauritz Jeanson: pi.xsl

      Added documentation for the dbhh PI (used for context-sensitive HTML Help).
      +(The two templates matching 'dbhh' are still in htmlhelp-common.xsl).
      +
    +
    + +

    Manpages

    + +

    The following changes have been made to the + manpages code + since the 1.73.0 release.

    +
    • +

      Michael(tm) Smith: endnotes.xsl

      In manpages output, generate warnings about notesources with
      +non-para children only if the notesource is a footnote or
      +annotation. Thanks to Sam Steingold for reporting problems with
      +the existing handling.
      +
    +
    + +

    HTMLHelp

    + +

    The following changes have been made to the + htmlhelp code + since the 1.73.0 release.

    +
    • +

      Michael(tm) Smith: htmlhelp-common.xsl

      Added single-pass namespace-stripping support to the htmlhelp,
      +eclipse, and javahelp stylesheets.
      +
    +
    + +

    Eclipse

    + +

    The following changes have been made to the + eclipse code + since the 1.73.0 release.

    +
    • +

      Michael(tm) Smith: eclipse.xsl

      Added single-pass namespace-stripping support to the htmlhelp,
      +eclipse, and javahelp stylesheets.
      +
    +
    + +

    JavaHelp

    + +

    The following changes have been made to the + javahelp code + since the 1.73.0 release.

    +
    • +

      Michael(tm) Smith: javahelp.xsl

      Added single-pass namespace-stripping support to the htmlhelp,
      +eclipse, and javahelp stylesheets.
      +
    +
    + +

    Roundtrip

    + +

    The following changes have been made to the + roundtrip code + since the 1.73.0 release.

    +
    • +

      Steve Ball: blocks2dbk.xsl; blocks2dbk.dtd; pages2normalise.xsl

      Modularised blocks2dbk to allow customisation,
      +Added support for tables to pages2normalise
      +
    +
    + +

    Params

    + +

    The following changes have been made to the + params code + since the 1.73.0 release.

    +
    • +

      Robert Stayton: procedure.properties.xml

      procedure was inheriting keep-together from formal.object.properties, but
      +a procedure does not need to be kept together by default.
      +
    • +

      Dave Pawson: title.font.family.xml; component.label.includes.part.label.xml; table.frame.b⋯

      Regular formatting re-org.
      +
    +
    +
    + +

    Release: 1.73.0

    + +

    This release includes important bug fixes and adds the following +significant feature changes: +

    New localizations and localization updates
    +

    We added two new localizations: Latvian and + Esperanto, and made updates to the Czech, Chinese + Simplified, Mongolian, Serbian, Italian, and Ukrainian + localizations.

    +
    ISO690 citation style for bibliography output.
    +

    Set the + bibliography.style parameter to + iso690 to use ISO690 style.

    +
    New documentation for processing instructions (PI)
    +

    The reference documentation that ships with the + release now includes documentation on all PIs that you can use to + control output from the stylesheets.

    +
    New profiling parameters for audience and wordsize
    +

    You can now do profiling based on the values of the + audience and + wordsize attributes.

    +
    Changes to man-page output
    +

    The manpages stylesheet now supports single-pass + profiling and single-pass DocBook 5 namespace stripping + (just as the HTML and FO stylesheets also do). Also, added + handling for mediaobject & + inlinemediaobject. (Each imagedata, + audiodata, or videodata element + within a mediaobject or inline + mediaobject is now treated as a "notesource" + and so handled in much the same way as links and + annotation/alt/footnote + are in manpages output.) And added the + man.authors.section.enabled and + man.copyright.section.enabled + parameters to enable control over whether output includes + auto-generated AUTHORS and + COPYRIGHT sections.

    +
    Highlighting support for C
    +

    The highlighting mechanism for generating + syntax-highlighted code snippets in output now supports C + code listings (along with Java, PHP, XSLT, and others).

    +
    Experimental docbook-xsl-update script
    +

    We added an experimental docbook-xsl-update + script, the purpose of which is to facilitate + easy sync-up to the latest docbook-xsl snapshot (by means + of rsync).

    +

    +

    + +

    Gentext

    + +

    The following changes have been made to the +gentext code +since the 1.72.0 release.

    +
    • +

      Michael(tm) Smith: locale/lv.xml; Makefile

      Added Latvian localization file, from Girts Ziemelis.
      +
    • +

      Dongsheng Song: locale/zh_cn.xml

      Brought up to date with en.xml in terms of items. A few strings marked for translation.
      +
    • +

      Jirka Kosek: locale/cs.xml

      Added missing translations
      +
    • +

      Robert Stayton: locale/eo.xml

      New locale for Esperanto.
      +
    • +

      Robert Stayton: locale/mn.xml

      Update from Ganbold Tsagaankhuu.
      +
    • +

      Jirka Kosek: locale/en.xml; locale/cs.xml

      Rules for normalizing glossary entries before they are sorted can be now different for each language.
      +
    • +

      Michael(tm) Smith: locale/sr_Latn.xml; locale/sr.xml

      Committed changes from Miloš Komarčević to Serbian files.
      +
    • +

      Robert Stayton: locale/ja.xml

      Fix chapter in context xref-number-and-title
      +
    • +

      Robert Stayton: locale/it.xml

      Improved version from contributor.
      +
    • +

      Mauritz Jeanson: locale/uk.xml

      Applied patch 1592083.
      +
    +
    +

    Common

    + +

    The following changes have been made to the +common code +since the 1.72.0 release.

    +
    • +

      Michael(tm) Smith: labels.xsl

      Changed handling of reference auto-labeling such that reference
      +(when it appears at the component level) is now affected by the
      +label.from.part param, just as preface, chapter, and appendix.
      +
    • +

      Michael(tm) Smith: common.xsl

      Added support to the HTML stylesheets for proper processing of
      +orgname as a child of author.
      +
    • +

      Michael(tm) Smith: refentry.xsl

      Refined logging output of refentry metadata-gathering template;
      +for some cases of "missing" elements (refmiscinfo stuff, etc.),
      +the log messages now include URL to corresponding page in the
      +Definitive Guide (TDG).
      +
    • +

      Robert Stayton: titles.xsl

      Add refsection/info/title support.
      +
    • +

      Michael(tm) Smith: titles.xsl

      Added support for correct handling of xref to elements that
      +contain info/title descendants but no title children.
      +
      +This should be further refined so that it handles any *info
      +elements. And there are probably some other places where similar
      +handling for *info/title should be added.
      +
    • +

      Mauritz Jeanson: pi.xsl

      Modified <xsl:when> in datetime.format template to work
      +around Xalan bug.
      +
    +
    +

    FO

    + +

    The following changes have been made to the +fo code +since the 1.72.0 release.

    +
    • +

      Robert Stayton: component.xsl

      Add parameters to the page.sequence utility template.
      +
    • +

      Mauritz Jeanson: xref.xsl

      Added template for xref to area/areaset.
      +Part of fix for bug #1675513 (xref to area broken).
      +
    • +

      Michael(tm) Smith: inline.xsl

      Added template match for person element to fo stylesheet.
      +
    • +

      Robert Stayton: lists.xsl

      Added support for spacing="compact" in variablelist, per bug report #1722540.
      +
    • +

      Robert Stayton: table.xsl

      table pgwide="1" should also use pgwide.properties attribute-set.
      +
    • +

      Mauritz Jeanson: inline.xsl

      Make citations numbered if bibliography.numbered != 0.
      +
    • +

      Robert Stayton: param.xweb; param.ent

      Add new profiling parameters for audience and wordsize.
      +
    • +

      Robert Stayton: param.xweb; param.ent

      Added callout.icon.size parameter.
      +
    • +

      Robert Stayton: inline.xsl; xref.xsl

      Add support for xlink as olink.
      +
    • +

      Robert Stayton: autotoc.xsl; param.xweb; param.ent

      Add support for qanda.in.toc to fo TOC.
      +
    • +

      Robert Stayton: component.xsl

      Improved the page.sequence utility template for use with book.
      +
    • +

      Robert Stayton: division.xsl

      Refactored the big book template into smaller pieces.
      +Used the "page.sequence" utility template in
      +component.xsl to shorten the toc piece.
      +Added placeholder templates for front.cover and back.cover.
      +
    • +

      Robert Stayton: param.xweb; param.ent; sections.xsl

      Add section.container.element parameter to enable
      +pgwide spans inside sections.
      +
    • +

      Robert Stayton: param.xweb; param.ent; component.xsl

      Add component.titlepage.properties attribute-set to
      +support span="all" and other properties.
      +
    • +

      Robert Stayton: htmltbl.xsl; table.xsl

      Apply table.row.properties template to html tr rows too.
      +Add keep-with-next to table.row.properties when row is in thead.
      +
    • +

      Robert Stayton: table.xsl

      Add support for default.table.frame parameter.
      +Fix bug 1575446 rowsep last check for @morerows.
      +
    • +

      Robert Stayton: refentry.xsl

      Add support for info/title in refsections.
      +
    • +

      David Cramer: qandaset.xsl

      Make fo questions and answers behave the same way as html
      +
    • +

      Jirka Kosek: lists.xsl

      Added missing attribute set for procedure
      +
    • +

      Jirka Kosek: param.xweb; biblio.xsl; docbook.xsl; param.ent; biblio-iso690.xsl

      Added support for formatting biblioentries according to ISO690 citation style.
      +New bibliography style can be turned on by setting parameter bibliography.style to "iso690"
      +The code was provided by Jana Dvorakova
      +
    • +

      Robert Stayton: param.xweb; param.ent; pagesetup.xsl

      Add header.table.properties and footer.table.properties attribute-sets.
      +
    • +

      Robert Stayton: inline.xsl

      Add fop1.extensions for menuchoice arrow handling exception.
      +
    +
    +

    HTML

    + +

    The following changes have been made to the + html code + since the 1.72.0 release.

    +
    • +

      Mauritz Jeanson: param.xweb; param.ent

      Moved declaration and documentation of javahelp.encoding from javahelp.xsl to the
      +regular "parameter machinery".
      +
    • +

      Michael(tm) Smith: admon.xsl

      Changed handling of titles for note, warning, caution, important,
      +tip admonitions: We now output and HTML h3 head only if
      +admon.textlabel is non-zero or if the admonition actually contains
      +a title; otherwise, we don't output an h3 head at all.
      +(Previously, we were outputting an empty h3 if the admon.textlabel
      +was zero and if the admonition had no title.)
      +
    • +

      Mauritz Jeanson: xref.xsl

      Added template for xref to area/areaset.
      +Part of fix for bug #1675513 (xref to area broken).
      +
    • +

      Mauritz Jeanson: titlepage.xsl; component.xsl; division.xsl; sections.xsl

      Added fixes to avoid duplicate ids when generate.id.attributes = 1.
      +This (hopefully) closes bug #1671052.
      +
    • +

      Michael(tm) Smith: formal.xsl; pi.xsl

      Made the dbfunclist PI work as intended. Also added doc for
      +dbfunclist and dbcmdlist PIs.
      +
    • +

      Michael(tm) Smith: pi.xsl; synop.xsl

      Made the dbcmdlist work the way it appears to have been intended
      +to work. Restored dbhtml-dir template back to pi.xsl.
      +
    • +

      Michael(tm) Smith: titlepage.xsl; param.xweb; param.ent

      Added new param abstract.notitle.enabled.
      +If non-zero, in output of the abstract element on titlepages,
      +display of the abstract title is suppressed.
      +Because sometimes you really don't want or need that title
      +there...
      +
    • +

      Michael(tm) Smith: chunk-code.xsl; graphics.xsl

      When we are chunking long descriptions for mediaobject instances
      +into separate HTML output files, and use.id.as.filename is
      +non-zero, if a mediaobject has an ID, use that ID as the basename
      +for the long-description file (otherwise, we generate an ID for it
      +and use that ID as the basename for the file).
      +The parallels the recent change made to cause IDs for legalnotice
      +instances to be used as basenames for legalnotice chunks.
      +Also, made some minor refinements to the recent changes for
      +legalnotice chunk handling.
      +
    • +

      Michael(tm) Smith: titlepage.xsl

      Added support to the HTML stylesheets for proper processing of
      +orgname as a child of author.
      +
    • +

      Michael(tm) Smith: chunk-code.xsl

      When $generate.legalnotice.link is non-zero and
      +$use.id.as.filename is also non-zero, if a legalnotice has an ID,
      +then instead of assigning the "ln-<generatedID>" basename to the
      +output file for that legalnotice, just use its real ID as the
      +basename for the file -- as we do when chunking other elements
      +that have IDs.
      +
    • +

      David Cramer: xref.xsl

      Handle alt text on xrefs to steps when the step doesn't have a title.
      +
    • +

      David Cramer: lists.xsl

      Added <p> element around term in variablelist when formatted as table to avoid misalignment of term and listitem in xhtml (non-quirks mode) output
      +
    • +

      David Cramer: qandaset.xsl

      Added <p> element around question and answer labels to avoid misalignment of label and listitem in xhtml (non-quirks mode) output
      +
    • +

      David Cramer: lists.xsl

      Added <p> element around callouts to avoid misalignment of callout and listitem in xhtml (non-quirks mode) output
      +
    • +

      Mauritz Jeanson: inline.xsl

      Make citations numbered if bibliography.numbered != 0.
      +
    • +

      Robert Stayton: param.xweb; param.ent

      Add support for new profiling attributes audience and wordsize.
      +
    • +

      Robert Stayton: inline.xsl; xref.xsl

      Add support for xlink olinks.
      +
    • +

      Jirka Kosek: glossary.xsl

      Rules for normalizing glossary entries before they are sorted can be now different for each language.
      +
    • +

      Robert Stayton: chunk-common.xsl; chunk-code.xsl; manifest.xsl; chunk.xsl

      Refactored the chunking modules to move all named templates to
      +chunk-common.xsl and all match templates to chunk-code.xsl, in
      +order to enable better chunk customization.
      +See the comments in chunk.xsl for more details.
      +
    • +

      Robert Stayton: lists.xsl

      Add anchor for xml:id for listitem in varlistentry.
      +
    • +

      Robert Stayton: refentry.xsl

      Add support for info/title in refsections for db5.
      +
    • +

      Jirka Kosek: param.xweb; biblio.xsl; docbook.xsl; param.ent; biblio-iso690.xsl

      Added support for formatting biblioentries according to ISO690 citation style.
      +New bibliography style can be turned on by setting parameter bibliography.style to "iso690"
      +The code was provided by Jana Dvorakova
      +
    • +

      Robert Stayton: inline.xsl; xref.xsl

      Add call to class.attribute to <a> output elements so they can
      +have a class value too.
      +
    • +

      Mauritz Jeanson: glossary.xsl

      Fixed bug #1644881:
      +* Added curly braces around all $language attribute values. 
      +* Moved declaration of language variable to top level of stylesheet.
      +Tested with Xalan, Saxon, and xsltproc.
      +
    +
    +

    Manpages

    + +

    The following changes have been made to the + manpages code + since the 1.72.0 release.

    +
    • +

      Michael(tm) Smith: param.xweb; docbook.xsl; param.ent

      Added the man.authors.section.enabled and
      +man.copyright.section.enabled parameters. Set those to zero when
      +you want to suppress display of the auto-generated AUTHORS and
      +COPYRIGHT sections. Closes request #1467806. Thanks to Daniel
      +Leidert.
      +
    • +

      Michael(tm) Smith: docbook.xsl

      Took the test that the manpages stylesheet does to see if there
      +are any Refentry chilren in current doc, and made it
      +namespace-agnostic. Reason for that is because the test otherwise
      +won't work when it is copied over into the generated
      +profile-docbook.xsl stylesheet.
      +
    • +

      Michael(tm) Smith: Makefile

      Added a manpages/profile-docbook.xsl file to enable single-pass
      +profiling for manpages output.
      +
    • +

      Michael(tm) Smith: info.xsl

      Output copyright and legalnotice in man-page output in whatever
      +place they are in in document order. Closes #1690539. Thanks to
      +Daniel Leidert for reporting.
      +
    • +

      Michael(tm) Smith: docbook.xsl

      Restored support for single-pass namespace stripping to manpages
      +stylesheet.
      +
    • +

      Michael(tm) Smith: synop.xsl; block.xsl; info.xsl; inline.xsl; lists.xsl; endnotes.xsl; ut⋯

      Changed handling of bold and italic/underline output in manpages
      +output. Should be transparent to users, but...
      +
      +This touches handling of all bold and italic/underline output. The
      +exact change is that the mode="bold" and mode="italic" utility
      +templates were changed to named templates. (I think maybe I've
      +changed it back and forth from mode to named before, so this is
      +maybe re-reverting it yet again).
      +
      +Anyway, the reason for the change is that the templates are
      +sometimes call on dynamically node-sets, and using modes to format
      +those doesn't allow passing info about the current/real context
      +node from the source (not the node-set created by the stylesheet)
      +to that formatting stage.
      +
      +The named templates allow the context to be passed in as a
      +parameter, so that the bold/ital formatting template can use
      +context-aware condition checking.
      +
      +This was basically necessary in order to suppress bold formatting
      +in titles, which otherwise gets screwed up because of the numbnut
      +way that roff handles nested bold/ital.
      +
      +Closes #1674534). Much thanks to Daniel Leidert, whose in his
      +docbook-xsl bug-finding kung-fu has achieved Grand Master status.
      +
    • +

      Michael(tm) Smith: block.xsl

      Fixed handling of example instances by adding the example element
      +to the same template we use for processing figure. Closes
      +#1674538. Thanks to Daniel Leidert.
      +
    • +

      Michael(tm) Smith: utility.xsl

      Don't include lang in manpages filename/pathname if lang=en (that
      +is, only generate lang-qualified file-/pathnames for non-English).
      +
    • +

      Michael(tm) Smith: endnotes.xsl

      In manpages output, emit warnings for notesources (footnote, etc.)
      +that have something other than para as a child.
      +
      +The numbered-with-hanging-indent formatting that's used for
      +rendering endnotes in the NOTES section of man pages places some
      +limits/assumptions on how the DocBook source is marked up; namely,
      +for notesources (footnote, annotation, etc.) that can contain
      +block-level children, if the they have a block-level child such as
      +a table or itemizedlist or orderedlist that is the first child of
      +a footnote, we have no way of rendering/indenting its content
      +properly in the endnotes list.
      +
      +Thus, the manpages stylesheet not emits a warning message for that
      +case, and suggests the "fix" (which is to wrap the table or
      +itemizedlist or whatever in a para that has some preferatory text.
      +
    • +

      Michael(tm) Smith: utility.xsl

      Added support to mixed-block template for handling tables in
      +mixed-blocks (e.g., as child of para) correctly.
      +
    • +

      Michael(tm) Smith: table.xsl; synop.xsl; block.xsl; info.xsl; lists.xsl; refentry.xsl; end⋯

      Reverted necessary escaping of backslash, dot, and dash
      +out of the well-intentioned (but it now appears,
      +misguided) "marker" mechanism (introduced in the 1.72.0
      +release) -- which made use of alternative "marker"
      +characters as internal representations of those
      +characters, and then replaced them just prior to
      +serialization -- and back into what's basically the
      +system that was used prior to the 1.69.0 release; that
      +is, into a part of stylesheet code that gets executed
      +at the beginning of processing -- before any other roff
      +markup up is. This change obviates the need for the
      +marker system. It also requires a lot less RAM during
      +processing (for large files, the marker mechanism
      +ending up requiring gigabytes of memory).
      +
      +Closes bug #1661177. Thanks to Scott Smedley for
      +providing a test case (the fvwm man page) that exposed
      +the problem with the marker mechanism.
      +
      +Also moved the mechanism for converting non-breaking
      +spaces back into the same area of the stylesheet code.
      +
    • +

      Michael(tm) Smith: lists.xsl

      Fixed problem with incorrect formatting of nested variablelist.
      +Closes bug #1650931. Thanks to Daniel "Eagle Eye" Leidert.
      +
    • +

      Michael(tm) Smith: lists.xsl

      Make sure that all listitems in itemizedlist and orderedlist are
      +preceded by a blank line. This fixes a regression that occurred
      +when instances of the TP macro that were use in a previous
      +versions of the list-handling code were switched to RS/RE (because
      +TP doesn't support nesting). TP automatically generates a blank
      +line, but RS doesn't. So I added a .sp before each .RS
      +
    • +

      Michael(tm) Smith: block.xsl; inline.xsl; param.xweb; docbook.xsl; links.xsl; param.ent

      Made a number of changes related to elements with
      +out-of-line content:
      +
      +- Added handling for mediaobject & inlinemediaobject.
      +  Each imagedata, audiodata, or videodata element
      +  within a mediaobject or inline mediaobject is now
      +  treated as a "notesource" and so handled in much the
      +  same way as links and annotation/alt/footnotes.
      +
      +  That means a numbered marker is generated inline to
      +  mark the place in the main flow where the imagedata,
      +  audiodata, or videodata element occurs, and a
      +  corresponding numbered endnote for it is generated in
      +  the endnotes list at the end of the man page; the
      +  endnote contains the URL from the fileref attribute
      +  of the imagedata, audiodata, or videodata element.
      +
      +  For mediobject and inlinemediaobject instances that
      +  have a textobject child, the textobject is displayed
      +  within the main text flow.
      +
      +- Renamed several man.link.* params to man.endnotes.*,
      +  to reflect that fact that the endnotes list now
      +  contains more than just links. Also did similar
      +  renaming for a number of stylesheet-internal vars.
      +
      +- Added support for xlink:href (along with existing
      +  support for the legacy ulink element).
      +
      +- Cleaned up and streamlined the endnotes-handling
      +  code. It's still messy and klunky and the basic
      +  mechanism it uses is very inefficent for documents
      +  that contain a lot of notesources, but at least it's
      +  a bit better than it was.
      +
    +
    +

    Eclipse

    + +

    The following changes have been made to the + eclipse code + since the 1.72.0 release.

    +
    • +

      Mauritz Jeanson: Makefile

      Fixed bug #1715093: Makefile for creating profiled version of eclipse.xsl added.
      +
    • +

      David Cramer: eclipse.xsl

      Added normalize-space around  to avoid leading whitespace from appearing in the output if there's extra leading whitespace (e.g. <title> Foo</title>) in the source
      +
    +
    +

    JavaHelp

    + +

    The following changes have been made to the + javahelp code + since the 1.72.0 release.

    +
    • +

      Mauritz Jeanson: javahelp.xsl

      Implemented FR #1230233 (sorted index in javahelp).
      +
    • +

      Mauritz Jeanson: javahelp.xsl

      Added normalize-space() around titles and index entries to work around whitespace problems.
      +Added support for glossary and bibliography in toc and map files.
      +
    +
    +

    Roundtrip

    + +

    The following changes have been made to the + roundtrip code + since the 1.72.0 release.

    +
    • +

      Steve Ball: blocks2dbk.xsl; wordml2normalise.xsl; normalise2sections.xsl; sections2blocks.⋯

      new stylesheets for better word processor support and easier maintenance
      +
    • +

      Steve Ball: template-pages.xml; dbk2wp.xsl; sections-spec.xml

      fixed bugs
      +
    +
    +

    Params

    + +

    The following changes have been made to the + params code + since the 1.72.0 release.

    +
    • +

      Mauritz Jeanson: htmlhelp.button.back.xml; htmlhelp.button.forward.xml; htmlhelp.button.zo⋯

      Modified refpurpose text.
      +
    • +

      Mauritz Jeanson: htmlhelp.map.file.xml; htmlhelp.force.map.and.alias.xml; htmlhelp.alias.f⋯

      Fixed typos, made some small changes.
      +
    • +

      Mauritz Jeanson: javahelp.encoding.xml

      Moved declaration and documentation of javahelp.encoding from javahelp.xsl to the
      +regular "parameter machinery".
      +
    • +

      Mauritz Jeanson: generate.id.attributes.xml

      Added refpurpose text.
      +
    • +

      Mauritz Jeanson: annotation.js.xml; annotation.graphic.open.xml; annotation.graphic.close.⋯

      Added better refpurpose texts.
      +
    • +

      Michael(tm) Smith: chunker.output.cdata-section-elements.xml; chunker.output.standalone.xm⋯

      Fixed some broken formatting in source files for chunker.* params,
      +as pointed out by Dave Pawson.
      +
    • +

      Michael(tm) Smith: label.from.part.xml

      Changed handling of reference auto-labeling such that reference
      +(when it appears at the component level) is now affected by the
      +label.from.part param, just as preface, chapter, and appendix.
      +
    • +

      Mauritz Jeanson: callout.graphics.extension.xml

      Clarified that 'extension' refers to file names.
      +
    • +

      Michael(tm) Smith: abstract.notitle.enabled.xml

      Added new param abstract.notitle.enabled.
      +If non-zero, in output of the abstract element on titlepages,
      +display of the abstract title is suppressed.
      +Because sometimes you really don't want or need that title
      +there...
      +
    • +

      Michael(tm) Smith: man.string.subst.map.xml

      Updated manpages string-substitute map to reflect fact that
      +because of another recent change to suppress bold markup in .SH
      +output, we no longer need to add a workaround for the accidental
      +uppercasing of roff escapes that occurred previously.
      +
    • +

      Jirka Kosek: margin.note.float.type.xml; title.font.family.xml; table.frame.border.color.x⋯

      Improved parameter metadata
      +
    • +

      Robert Stayton: profile.wordsize.xml; profile.audience.xml

      Add support for profiling on new attributes audience and wordsize.
      +
    • +

      Robert Stayton: callout.graphics.number.limit.xml; callout.graphics.extension.xml

      Added SVG graphics for fo output.
      +
    • +

      Robert Stayton: callout.icon.size.xml

      Set size of callout graphics.
      +
    • +

      Jirka Kosek: default.units.xml; chunker.output.method.xml; toc.list.type.xml; output.inden⋯

      Updated parameter metadata to the new format.
      +
    • +

      Jirka Kosek: man.output.quietly.xml; title.font.family.xml; footnote.sep.leader.properties⋯

      Added type annotations into parameter definition files.
      +
    • +

      Robert Stayton: section.container.element.xml

      Support spans in sections for certain processors.
      +
    • +

      Robert Stayton: component.titlepage.properties.xml

      Empty attribute set for top level component titlepage block.
      +Allows setting a span on title info.
      +
    • +

      Jirka Kosek: bibliography.style.xml

      Added link to WiKi page with description of special markup needed for ISO690 biblioentries
      +
    • +

      Robert Stayton: make.year.ranges.xml

      Clarify that multiple year elements are required.
      +
    • +

      Robert Stayton: id.warnings.xml

      Turn off id.warnings by default.
      +
    • +

      Jirka Kosek: bibliography.style.xml

      Added support for formatting biblioentries according to ISO690 citation style.
      +New bibliography style can be turned on by setting parameter bibliography.style to "iso690"
      +The code was provided by Jana Dvorakova
      +
    • +

      Robert Stayton: header.table.properties.xml; footer.table.properties.xml

      Support adding table properties to header and footer tables.
      +
    +
    +

    Highlighting

    + +

    The following changes have been made to the + highlighting code + since the 1.72.0 release.

    +
    • +

      Jirka Kosek: c-hl.xml; xslthl-config.xml

      Added support for C language. Provided by Bruno Guegan.
      +
    +
    +

    Profiling

    + +

    The following changes have been made to the + profiling code + since the 1.72.0 release.

    +
    • +

      Robert Stayton: profile-mode.xsl

      Add support for new profiling attributes audience and wordsize.
      +
    +
    +

    Lib

    + +

    The following changes have been made to the + lib code + since the 1.72.0 release.

    +
    • +

      Michael(tm) Smith: lib.xweb

      Changed name of prepend-pad template to pad-string and twheeked so
      +it can do both right/left padding.
      +
    +
    +

    Tools

    + +

    The following changes have been made to the + tools code + since the 1.72.0 release.

    +
    • +

      Michael(tm) Smith: bin; bin/docbook-xsl-update

      Did some cleanup to the install.sh source and added a
      +docbook-xsl-update script to the docbook-xsl distro, the purpose
      +of which is to facilitate easy sync-up to the latest docbook-xsl
      +snapshot (by means of rsync).
      +
    +
    +

    XSL-Saxon

    + +

    The following changes have been made to the + xsl-saxon code + since the 1.72.0 release.

    +
    • +

      Mauritz Jeanson: xalan27/src/com/nwalsh/xalan/Verbatim.java; xalan27/src/com/nwalsh/xalan/⋯

      Added modifications so that the new callout.icon.size parameter is taken into account. This 
      +parameter is used for FO output (where SVG now is the default graphics format for callouts).
      +
    • +

      Mauritz Jeanson: saxon65/src/com/nwalsh/saxon/FormatCallout.java; xalan27/src/com/nwalsh/x⋯

      Added code for generating id attributes on callouts in HTML and FO output.
      +These patches enable cross-references to callouts placed by area coordinates.
      +It works for graphic, unicode and text callouts. 
      +Part of fix for bug #1675513 (xref to area broken).
      +
    • +

      Michael(tm) Smith: saxon65/src/com/nwalsh/saxon/Website.java; xalan27/src/com/nwalsh/xalan⋯

      Copied over Website XSL Java extensions.
      +
    +
    +

    XSL-Xalan

    + +

    The following changes have been made to the + xsl-xalan code + since the 1.72.0 release.

    +
    • +

      Michael(tm) Smith: Makefile; xalan2

      Turned off xalan2.jar build. This removes DocBook XSL
      +Java extensions support for versions of Xalan prior to
      +Xalan 2.7. If you are currently using the extensions
      +with an earlier version of Xalan, you need to upgrade
      +to Xalan 2.7.
      +
    • +

      Mauritz Jeanson: xalan27/src/com/nwalsh/xalan/Verbatim.java; xalan27/src/com/nwalsh/xalan/⋯

      Added modifications so that the new callout.icon.size parameter is taken into account. This 
      +parameter is used for FO output (where SVG now is the default graphics format for callouts).
      +
    • +

      Mauritz Jeanson: saxon65/src/com/nwalsh/saxon/FormatCallout.java; xalan27/src/com/nwalsh/x⋯

      Added code for generating id attributes on callouts in HTML and FO output.
      +These patches enable cross-references to callouts placed by area coordinates.
      +It works for graphic, unicode and text callouts. 
      +Part of fix for bug #1675513 (xref to area broken).
      +
    • +

      Michael(tm) Smith: saxon65/src/com/nwalsh/saxon/Website.java; xalan27/src/com/nwalsh/xalan⋯

      Copied over Website XSL Java extensions.
      +
    +
    +
    + +

    Release: 1.72.0

    + +

    This release includes important bug fixes and adds the following +significant feature changes: +

    Automatic sorting of glossary entries
    +

    The HTML and FO stylesheets now support automatic sorting + of glossary entries. To enable glossary sorting, set + the value of the glossary.sort parameter + to 1 (by default, it’s value is + 0). When you enable glossary sorting, + glossentry elements within a glossary, + glossdiv, or glosslist are sorted on the + glossterm, using the current language setting. If you + don’t enable glossary sorting, then the order of + glossentry elements is left “as is” — that is, they + are not sorted but are instead just displayed in document + order.

    +
    WordML renamed to Roundtrip, OpenOffice support added
    +

    Stylesheets for “roundtrip” conversion between documents in + OpenOffice format (ODF) and DocBook XML have been added to the set + of stylesheets that formerly had the collective title + WordML, and that set of stylesheets has + been renamed to Roundtrip to better + reflect the actual scope and purpose of its contents.

    +

    So the DocBook XSL Stylesheets now support roundtrip + conversion (with certain limitations) of WordML, OpenOffice, and + Apple Pages documents to and from DocBook XML.

    +
    Including QandASet questions in TOCs
    +

    The HTML stylesheet now provides support for including + QandASet questions in the document TOC. To + enable display of questions in the document TOC, set + the value of the qanda.in.toc to + 1 (by default, it’s 0). When you + enable qanda.in.toc, then the generated + table of contents for a document will include + qandaset titles, qandadiv titles, and + question elements. The default value of zero + excludes them from the TOC. +

    Note

    +

    The qanda.in.toc parameter does + not affect any tables of contents that may be generated + within a qandaset or + qandadiv (only in the document TOC).

    +

    +

    +
    Language identifier in man-page filenames and pathnames
    +

    Added new parameter man.output.lang.in.name.enabled, which controls whether + a language identifier is included in man-page filenames and + pathnames. It works like this:

    + +

    If the value of man.output.lang.in.name.enabled is non-zero, + man-page files are output with a language identifier included in + their filenames or pathnames as follows:

    + +
    + +
    index.page.number.properties property set
    +

    For FO output, use the + index.page.number.properties to control + formatting of page numbers in index output — to (for + example) to display page numbers in index output in a + different color (to indicate that they are links).

    +
    Crop marks in output from Antenna House XSL Formatter
    +

    Support has been added for generating crop marks in + print/PDF output generated using Antenna House XSL Formatter

    +
    More string-substitution hooks in manpages output
    +

    The man.string.subst.map.local.pre + and man.string.subst.map.local.post + parameters have been added to enable easier control over + custom string substitutions.

    +
    Moved verbatim properties to attribute-set
    +

    The hardcoded properties used in verbatim elements (literallayout, + programlisting, screen) were moved to the verbatim.properties + attribute-set so they can be more easily customized.

    +
    enhanced simple.xlink template
    +

    Now the simple.xlink template in inline.xsl works with + cross reference elements xref and link as well. Also, more elements + call simple.xlink, which enables DB5 xlink functionality. +

    +
    DocBook 5 compatibility
    +

    Stylesheets now consistently support DocBook 5 attributes + (such as xml:id). Also, DocBook 5 info elements are now checked + along with other *info elements, and the use of name() function + was replaced by local-name() so it also matches on DocBook 5 elements. + These changes enable reusing the stylesheets with DocBook 5 + documents with minimal fixup. +

    +
    HTML class attributes now handled in class.attribute mode
    +

    The HTML class attributes were formerly hardcoded to the + element name. Now the class attribute is generated by applying + templates in class.attribute mode so class attribute names + can be customized. The default is still the element name.

    +
    arabic-indic numbering enabled in autolabels
    +

    Numbering of chapter, sections, and pages can now use + arabic-indic numbering when number format is set to 'arabicindic' or + to ١.

    +

    +The following is a detailed list of changes (not +including bug fixes) that have been made since the 1.71.1 +release.

    + +

    Common

    + +

    The following changes have been made to the + common code + since the 1.71.1 release.

    +
    • +

      Add support for arabicindic numbering to autolabel.format template.

      +
    • +

      Finish support for @xml:id everywhere @id is used.

      +
    • +

      replace name() with local-name() in most cases.

      +
    • +

      Add support for info.

      +
    • +

      Add utility template tabstyle to return the tabstyle from
      +any table element.

      +
    +
    + +

    FO

    + +

    The following changes have been made to the + fo code + since the 1.71.1 release.

    +
    • +

      Add support for sorting glossary entries

      +
    • +

      Add table.row.properties template to customize table rows.

      +
    • +

      Moved all properties to attribute-sets so can be customized more easily.

      +
    • +

      Add index.page.number.properties attribute-set to format page numbers.

      +
    • +

      xref now supports xlink:href, using simple.xlink template.

      +
    • +

      Rewrote simple.xlink, and call it with all charseq templates.

      +
    • +

      Add simple.xlink processing to term and member elements.

      +
    • +

      Add support for crop marks in Antenna House.

      +
    +
    + +

    HTML

    + +

    The following changes have been made to the + html code + since the 1.71.1 release.

    +
    • +

      Add support for sorting glossary entries

      +
    • +

      Add support for qanda.in.toc to add qandaentry questions to document TOC.

      +
    • +

      add simple.xlink support to variablelist term and simplelist member.

      +
    • +

      *.propagates.style now handled in class.attribute mode.

      +
    • +

      add class parameter to class.attribute mode to set default class.

      +
    • +

      Convert all class attributes to use the class.attribute mode
      +so class names can be customized more easily.

      +
    • +

      Add class.attribute mode to generate class attributes.

      +
    • +

      Added simple.xlink to most remaining inlines.
      +Changed class attributes to applying class.attributes mode.

      +
    • +

      Changed xref template to use simple.xlink tempalte.

      +
    • +

      Improve generate.html.title to work with link targets too.

      +
    • +

      Improved simple.xlink to support link and xref.

      +
    • +

      Use new link.title.attribute now.

      +
    • +

      Rewrote simple.xlink to handle linkend also.
      +Better computation of title attribute on link too.

      +
    • +

      Handle Xalan quirk as special case.

      +
    • +

      Add support for info.

      +
    • +

      Fixed imagemaps so they work properly going from calspair coords
      +to HTML area coords.

      +
    +
    + +

    Manpages

    + +

    The following changes have been made to the + manpages code + since the 1.71.1 release.

    +
    • +

      Added doc for man.output.lang.in.name.enabled parameter. This
      +checkin completes support for writing file/pathnames for man-pages
      +with $lang include in the names. Closes #1585967. knightly
      +accolades to Daniel Leidert for providing the feature request.

      +
    • +

      Added new param man.output.lang.in.name.enabled, which
      +controls whether $LANG value is included in manpages
      +filenames and pathnames. It works like this:
      +
      +If the value of man.output.lang.in.name.enabled is non-zero,
      +man-page files are output with the $lang value included in
      +their filenames or pathnames as follows;
      +
      +- if man.output.subdirs.enabled is non-zero, each file is
      +  output to, e.g., a /$lang/man8/foo.8 pathname
      +
      +- if man.output.subdirs.enabled is zero, each file is output
      +  with a foo.$lang.8 filename

      +
    • +

      Use "\e" instead of "\\" for backslash output, because the
      +groff docs say that's the correct thing to do; also because
      +testing (thanks, Paul Dubois) shows that "\\" doesn't always
      +work as expected; for example, "\\" within a table seems to
      +mess things up.

      +
    • +

      Added the man.string.subst.map.local.pre and
      +man.string.subst.map.local.post parameters. Those parameters
      +enable local additions and changes to string-substitution mappings
      +without the need to change the value of man.string.subst.map
      +parameter (which is for standard system mappings). Closes
      +#1456738. Thanks to Sam Steingold for constructing a true
      +stylesheet torture test (the clisp docs) that exposed the need for
      +these params.

      +
    • +

      Added the Markup element to the list of elements that get output
      +in bold. Thanks to Eric S. Raymond.

      +
    • +

      Replaced all dots in roff requests with U+2302 ("house"
      +character), and added escaping in output for all instances of dot
      +that are not in roff requests. This fixes the problem case where a
      +string beginning with a dot (for example, the string ".bashrc")
      +might occur at the beginning of a line in output, in which case 
      +would mistakenly get interpreted as a roff request. Thanks to Eric
      +S. Raymond for pushing to fix this.

      +
    • +

      Made change to ensure that list content nested in
      +itemizedlist and orderedlist instances is properly indented. This
      +is a switch from using .TP to format those lists to using .RS/.RE
      +to format them instead (because .TP does not allow nesting). Closes bug #1602616.
      +Thanks to Daniel Leidert.

      +
    +
    + +

    Params

    + +

    The following changes have been made to the + params code + since the 1.71.1 release.

    +
    • +

      Added doc for man.output.lang.in.name.enabled parameter. This
      +checkin completes support for writing file/pathnames for man-pages
      +with $lang include in the names. Closes #1585967. knightly
      +accolades to Daniel Leidert for providing the feature request.

      +
    • +

      Added new param man.output.lang.in.name.enabled, which
      +controls whether $LANG value is included in manpages
      +filenames and pathnames. It works like this:
      +
      +If the value of man.output.lang.in.name.enabled is non-zero,
      +man-page files are output with the $lang value included in
      +their filenames or pathnames as follows;
      +
      +- if man.output.subdirs.enabled is non-zero, each file is
      +  output to, e.g., a /$lang/man8/foo.8 pathname
      +
      +- if man.output.subdirs.enabled is zero, each file is output
      +  with a foo.$lang.8 filename

      +
    • +

      Added the man.string.subst.map.local.pre and
      +man.string.subst.map.local.post parameters. Those parameters
      +enable local additions and changes to string-substitution mappings
      +without the need to change the value of man.string.subst.map
      +parameter (which is for standard system mappings). Closes
      +#1456738. Thanks to Sam Steingold for constructing a true
      +stylesheet torture test (the clisp docs) that exposed the need for
      +these params.

      +
    • +

      Add index.page.number.properties by default.

      +
    • +

      Added index.page.number.properties to allow customizations of page numbers in indexes.

      +
    • +

      Move show-destination="replace" property from template to attribute-set
      +so it can be customized.

      +
    • +

      Add support for sorting glossary entries

      +
    • +

      Add option to include qanda in tables of contents.

      +
    • +

      Moved all properties to attribute-sets so can be customized more easily.

      +
    +
    + +

    Template

    + +

    The following changes have been made to the + template code + since the 1.71.1 release.

    +
    • +

      Added workaround for Xalan bug: use for-each and copy instead of copy-of (#1604770).

      +
    +
    + +

    Roundtrip

    + +

    The following changes have been made to the + roundtrip code + since the 1.71.1 release.

    +
    • +

      rename to roundtrip, add OpenOffice support

      +
    +
    +
    + +

    Release: 1.71.1

    + +

    This is a minor update to the 1.71.0 release. Along with a +number of bug fixes, it includes two feature changes: + +

    • +

      Added support for profiling based on xml:lang and status attributes.

      +
    • +

      Added initial support in manpages output for + footnote, annotation, and alt + instances. Basically, they all now get handled the same way + ulink instances are. They are treated as a class as + "note sources": A numbered marker is generated at the place in the + main text flow where they occur, then their contents are displayed + in an endnotes section at the end of the man page.

      +

    +

    + +

    Common

    + +

    The following changes have been made to the + common code + since the 1.71.1 release.

    +
    • +

      For backward compatability autoidx-ng.xsl is invoking "kosek" indexing method again.

      +
    • +

      Add support for Xalan generating a root xml:base like saxon.

      +
    +
    + +

    FO

    + +

    The following changes have been made to the + fo code + since the 1.71.1 release.

    +
    • +

      For backward compatability autoidx-ng.xsl is invoking "kosek" indexing method again.

      +
    • +

      Add support for Xalan to add root node xml:base for db5 docs.

      +
    • +

      Added support for profiling based on xml:lang and status attributes.

      +
    +
    + +

    HTML

    + +

    The following changes have been made to the + html code + since the 1.71.1 release.

    +
    • +

      For backward compatability autoidx-ng.xsl is invoking "kosek" indexing method again.

      +
    • +

      Add support for Xalan to add root node xml:base for db5 docs.

      +
    • +

      Added support for profiling based on xml:lang and status attributes.

      +
    • +

      Made changes in namespace declarations to prevent xmllint's
      +canonicalizer from treating them as relative namespace URIs.
      +
      +  - Changed xmlns:k="java:com.isogen.saxoni18n.Saxoni18nService"
      +    to xmlns:k="http://www.isogen.com/functions/com.isogen.saxoni18n.Saxoni18nService";
      +    Saxon accepts either form
      +    (see http://www.saxonica.com/documentation/extensibility/functions.html);
      +    to Saxon, "the part of the URI before the final '/' is immaterial".
      +
      +  - Changed, e.g. xmlns:xverb="com.nwalsh.xalan.Verbatim" to
      +    xmlns:xverb="xalan://com.nwalsh.xalan.Verbatim"; Xalan accepts
      +    either form
      +    (see http://xml.apache.org/xalan-j/extensions.html#java-namespace-declare);
      +    just as Saxon does, it will "simply use the string to the
      +    right of the rightmost forward slash as the Java class name".
      +
      +  - Changed xmlns:xalanredirect="org.apache.xalan.xslt.extensions.Redirect"
      +    to xmlns:redirect="http://xml.apache.org/xalan/redirect", and
      +    adjusted associated code to make the current Xalan redirect spec.
      +    (see http://xml.apache.org/xalan-j/apidocs/org/apache/xalan/lib/Redirect.html)

      +
    • +

      Added the html.append and chunk.append parameters. By default, the
      +value of both is empty; but the internal DocBook XSL stylesheets
      +build sets their value to "<xsl:text>&#x0a;</xsl:text>", in order
      +to ensure that all files in the docbook-xsl-doc package end in a
      +newline character. (Because diff and some other tools may emit
      +error messages and/or not behave as expected when processing
      +files that are not newline-terminated.)

      +
    +
    + +

    Highlighting

    + +

    The following changes have been made to the + highlighting code + since the 1.71.1 release.

    +
    • +

      Added license information

      +
    +
    + +

    Manpages

    + +

    The following changes have been made to the + manpages code + since the 1.71.1 release.

    +
    • +

      Added initial support in manpages output for footnoteannotation,
      +and alt instances. Basically, they all now get handled the same
      +way ulink instances are. They are treated as a class as "note
      +sources": A numbered marker is generated at the place in the main
      +text flow where they occur, then their contents are displayed in
      +an endnotes section at the end of the man page (currently titled
      +REFERENCES, for English output, but will be changed to NOTES).
      +
      +This support is not yet complete. It works for most "normal"
      +cases, but probably mishandles a good number of cases. More
      +testing will be needed to expose the problems. It may well also
      +introduce some bugs and regressions in other areas, including
      +basic paragraph handling, handling of "mixed block" content,
      +handling of other indented content, and handling of authorblurb
      +and personblurb in the AUTHORS section.

      +
    +
    + +

    Params

    + +

    The following changes have been made to the + params code + since the 1.71.1 release.

    +
    • +

      Added support for profiling based on xml:lang and status attributes.

      +
    • +

      Added the html.append and chunk.append parameters. By default, the
      +value of both is empty; but the internal DocBook XSL stylesheets
      +build sets their value to "<xsl:text>&#x0a;</xsl:text>", in order
      +to ensure that all files in the docbook-xsl-doc package end in a
      +newline character. (Because diff and some other tools may emit
      +error messages and/or not behave as expected when processing
      +files that are not newline-terminated.)

      +
    +
    + +

    Profiling

    + +

    The following changes have been made to the + profiling code + since the 1.71.1 release.

    +
    • +

      Added support for profiling based on xml:lang and status attributes.

      +
    +
    + +
    + +

    Release: 1.71.0

    + +

    This is mainly a bug fix release, but it also includes two +significant feature changes: +

    Highlighting support added
    +

    The stylesheets now include support for source-code + highlighting in output of programlisting instances (controlled + through the highlight.source + parameter). The Java-based implementation requires Saxon and + makes use of Michal Molhanec’s XSLTHL. More details are available at Jirka Kosek’s + website:

    The support is currently limited to highlighting + of XML, Java, PHP, Delphi, Modula-2 sources, and INI + files.

    +
    Changes to autoindexing
    +

    The templates that handle alternative indexing methods + were reworked to avoid errors produced by certain processors not + being able to tolerate the presence of unused functions. With + this release, none of the code for the 'kimber' or 'kosek' + methods is included in the default stylesheets. In order to use + one of those methods, your customization layer must import one + of the optional stylesheet modules:

    +

    +

    • + html/autoidx-kosek.xsl +
    • + html/autoidx-kimber.xsl +
    • + fo/autoidx-kosek.xsl +
    • + fo/autoidx-kimber.xsl +

    + See the index.method parameter + reference page for more information. +

    +

    Two other changes to note: +

    • + The default indexing method now can handle accented + characters in latin-based alphabets, not just English. This + means accented latin letters will group and sort with their + unaccented counterpart. +
    • + The default value for the + index.method parameter was changed + from 'english' to 'basic' because now the default method can + handle latin-based alphabets, not just English. +

    +

    +

    +The following is a list of changes that have +been made since the 1.70.1 release.

    + +

    Common

    + +

    The following changes have been made to the + common code + since the 1.70.1 release.

    +
    • +

      Added reference.autolabel parameter for controlling labels on
      +reference output.

      +
    • +

      Support rows that are *completely* overlapped by the preceding row

      +
    • +

      New modules for supporting indexing extensions.

      +
    • +

      Support startinglinenumber on orderedlist

      +
    +
    + +

    Extensions

    + +

    The following changes have been made to the + extensions code + since the 1.70.1 release.

    +
    • +

      Completely reworked extensions build system; now uses NetBeans and ant

      +
    +
    + +

    FO

    + +

    The following changes have been made to the + fo code + since the 1.70.1 release.

    +
    • +

      xsl:sort lang attribute now uses two-char substring of lang attribute.

      +
    • +

      Support titlecase "Java", "Perl", and "IDL" as values for the
      +language attribute on classsynopsis, etc. (instead of just
      +lowercase "java", "perl", and "idl"). Also support "c++" and "C++"
      +(instead of just "cpp").
      +
      +Affects HTML, FO, and manpages output. Closes bug 1552332. Thanks
      +to "Brian A. Vanderburg II".

      +
    • +

      Added support for the reference.autolabel param in (X)HTML and FO
      +output.

      +
    • +

      Support rows that are *completely* overlapped by the preceding row

      +
    • +

      Rearranged templates for the 3 indexing methods
      +and changed method named 'english' to 'basic'.

      +
    • +

      New modules for supporting indexing extensions.

      +
    • +

      Turn off blank-body for fop1.extensions too since fop 0.92
      +does not support it either.

      +
    • +

      Add Xalan variant to test for exslt:node-set function.
      +Xalan can use function named node-set(), but doesn't
      +recognize it using function-available().

      +
    • +

      Added support to FO stylesheets for handling instances of Org
      +where it occurs outside of *info content. In HTML stylesheets,
      +moved handling of Org out of info.xsl and into inline.xsl. In both
      +FO and HTML stylesheets, added support for correctly processing
      +Affiliation and Jobtitle.

      +
    • +

      Don't output punctuation between Refname and Refpurpose if
      +Refpurpose is empty. Also corrected handling of Refsect2/title
      +instances, and removed some debugging stuff that was generated in
      +manpages output to mark the ends of sections.

      +
    • +

      Added new email.delimiters.enabled param. If non-zero (the
      +default), delimiters are generated around e-mail addresses (output
      +of the email element). If zero, the delimiters are suppressed.

      +
    • +

      Initial support of syntax highlighting of programlistings.

      +
    • +

      Chapter after preface should restart numbering of pages.

      +
    +
    + +

    HTML

    + +

    The following changes have been made to the + html code + since the 1.70.1 release.

    +
    • +

      xsl:sort lang attribute now uses two-char substring of lang attribute.

      +
    • +

      Support titlecase "Java", "Perl", and "IDL" as values for the
      +language attribute on classsynopsis, etc. (instead of just
      +lowercase "java", "perl", and "idl"). Also support "c++" and "C++"
      +(instead of just "cpp").
      +
      +Affects HTML, FO, and manpages output. Closes bug 1552332. Thanks
      +to "Brian A. Vanderburg II".

      +
    • +

      Added support for the reference.autolabel param in (X)HTML and FO
      +output.

      +
    • +

      Support rows that are *completely* overlapped by the preceding row

      +
    • +

      Rearranged templates for the 3 indexing methods
      +and changed method named 'english' to 'basic'.

      +
    • +

      New modules for supporting indexing extensions.

      +
    • +

      Added several new HTML parameters for controlling appearance of
      +content on HTML title pages:
      +
      +contrib.inline.enabled:
      +  If non-zero (the default), output of the contrib element is
      +  displayed as inline content rather than as block content.
      +
      +othercredit.like.author.enabled:
      +  If non-zero, output of the othercredit element on titlepages is
      +  displayed in the same style as author and editor output. If zero
      +  (the default), othercredit output is displayed using a style
      +  different than that of author and editor.
      +
      +blurb.on.titlepage.enabled:
      +  If non-zero, output from authorblurb and personblurb elements is
      +  displayed on title pages. If zero (the default), output from
      +  those elements is suppressed on title pages (unless you are
      +  using a titlepage customization that causes them to be included).
      +
      +editedby.enabled
      +  If non-zero (the default), a localized Edited by heading is
      +  displayed above editor names in output of the editor element.

      +
    • +

      Add Xalan variant to test for exslt:node-set function.
      +Xalan can use function named node-set(), but doesn't
      +recognize it using function-available().

      +
    • +

      Added support to FO stylesheets for handling instances of Org
      +where it occurs outside of *info content. In HTML stylesheets,
      +moved handling of Org out of info.xsl and into inline.xsl. In both
      +FO and HTML stylesheets, added support for correctly processing
      +Affiliation and Jobtitle.

      +
    • +

      Don't output punctuation between Refname and Refpurpose if
      +Refpurpose is empty. Also corrected handling of Refsect2/title
      +instances, and removed some debugging stuff that was generated in
      +manpages output to mark the ends of sections.

      +
    • +

      Added new email.delimiters.enabled param. If non-zero (the
      +default), delimiters are generated around e-mail addresses (output
      +of the email element). If zero, the delimiters are suppressed.

      +
    • +

      Added qanda.nested.in.toc param. Default value is zero. If
      +non-zero, instances of "nested" Qandaentry (ones that are children
      +of Answer elements) are displayed in the TOC. Closes patch 1509018
      +(from Daniel Leidert). Currently on affects HTML output (no patch
      +for FO output provided).

      +
    • +

      Improved handling of relative locations generated files

      +
    • +

      Initial support of syntax highlighting of programlistings.

      +
    • +

      Support org

      +
    • +

      Support person

      +
    • +

      Support $keep.relative.image.uris also when chunking

      +
    +
    + +

    Highlighting

    + +

    The following changes have been made to the + highlighting code + since the 1.70.1 release.

    +
    • +

      Initial support of syntax highlighting of programlistings.

      +
    +
    + +

    Manpages

    + +

    The following changes have been made to the + manpages code + since the 1.70.1 release.

    +
    • +

      Suppress footnote markers and output warning that footnotes are
      +not yet supported.

      +
    • +

      Handle instances of address/otheraddr/ulink in author et al in the
      +same way as email instances; that is, display them on the same
      +linke as the authoreditor, etc., name.

      +
    • +

      Don't number or link-list any Ulink instance whose string value is
      +identical to the value of its url attribute. Just display it inline.

      +
    • +

      Don't output punctuation between Refname and Refpurpose if
      +Refpurpose is empty. Also corrected handling of Refsect2/title
      +instances, and removed some debugging stuff that was generated in
      +manpages output to mark the ends of sections.

      +
    • +

      Added new email.delimiters.enabled param. If non-zero (the
      +default), delimiters are generated around e-mail addresses (output
      +of the email element). If zero, the delimiters are suppressed.

      +
    • +

      In manpages output, if the last/nearest *info element for
      +particular Refentry has multiple Copyright and/or Legalnotice
      +children, process them all (not just the first ones). Closes bug
      +1524576. Thanks to Sam Steingold for the report and to Daniel
      +Leidert for providing a patch.

      +
    +
    + +

    Params

    + +

    The following changes have been made to the + params code + since the 1.70.1 release.

    +
    • +

      Added reference.autolabel parameter for controlling labels on
      +reference output.

      +
    • +

      Added namespace declarations to document elements for all param files.

      +
    • +

      Updated index.method doc to describe revised setup for importing index extensions.

      +
    • +

      Added several new HTML parameters for controlling appearance of
      +content on HTML title pages:
      +
      +contrib.inline.enabled:
      +  If non-zero (the default), output of the contrib element is
      +  displayed as inline content rather than as block content.
      +
      +othercredit.like.author.enabled:
      +  If non-zero, output of the othercredit element on titlepages is
      +  displayed in the same style as author and editor output. If zero
      +  (the default), othercredit output is displayed using a style
      +  different than that of author and editor.
      +
      +blurb.on.titlepage.enabled:
      +  If non-zero, output from authorblurb and personblurb elements is
      +  displayed on title pages. If zero (the default), output from
      +  those elements is suppressed on title pages (unless you are
      +  using a titlepage customization that causes them to be included).
      +
      +editedby.enabled
      +  If non-zero (the default), a localized Edited by heading is
      +  displayed above editor names in output of the editor element.

      +
    • +

      Added new email.delimiters.enabled param. If non-zero (the
      +default), delimiters are generated around e-mail addresses (output
      +of the email element). If zero, the delimiters are suppressed.

      +
    • +

      Added qanda.nested.in.toc param. Default value is zero. If
      +non-zero, instances of "nested" Qandaentry (ones that are children
      +of Answer elements) are displayed in the TOC. Closes patch 1509018
      +(from Daniel Leidert). Currently on affects HTML output (no patch
      +for FO output provided).

      +
    • +

      Initial support of syntax highlighting of programlistings.

      +
    +
    + +

    Tools

    + +

    The following changes have been made to the + tools code + since the 1.70.1 release.

    +
    • +

      Racheted down font sizes of headings in example makefile FO output.

      +
    • +

      Added param and attribute set to example makefile, for getting
      +wrapping in verbatims in FO output.

      +
    • +

      Renamed Makefile.paramDoc to Makefile.docParam.

      +
    • +

      Added Makefile.paramDoc file, for creating versions of param.xsl
      +files with doc embedded.

      +
    • +

      Added variable to example makefile for controlling whether HTML or
      +XHTML is generated.

      +
    +
    +
    + +

    Release: 1.70.1

    + + +

    This is a stable release of the 1.70 stylesheets. It includes only a +few small changes from 1.70.0.

    + +

    The following is a list of changes that have been made + since the 1.70.0 release.

    + +

    FO

    + +

    The following changes have been made to the + fo code + since the 1.70.0 release.

    +
    • +

      Added three new attribute sets (revhistory.title.properties, revhistory.table.properties and revhistory.table.cell.properties) for controlling appearance of revhistory in FO output.

      +

      Modified: fo/block.xsl,1.34; fo/param.ent,1.101; fo/param.xweb,1.114; fo/titlepage.xsl,1.41; params/revhistory.table.cell.properties.xml,1.1; params/revhistory.table.properties.xml,1.1; params/revhistory.title.properties.xml,1.1 - Jirka Kosek

      +
    • +

      Support DBv5 revisions with full author name (not only authorinitials)

      +

      Modified: fo/block.xsl,1.33; fo/titlepage.xsl,1.40 - Jirka Kosek

      +
    +
    + +

    HTML

    + +

    The following changes have been made to the + html code + since the 1.70.0 release.

    +
    • +

      Support DBv5 revisions with full author name (not only authorinitials)

      +

      Modified: html/block.xsl,1.23; html/titlepage.xsl,1.34 - Jirka Kosek

      +
    +
    + +

    HTMLHelp

    + +

    The following changes have been made to the + htmlhelp code + since the 1.70.0 release.

    +
    • +

      htmlhelp.generate.index is now param, not variable. This means that you can override its setting from outside. This is useful when you generate indexterms on the fly (see http://www.xml.com/pub/a/2004/07/14/dbndx.html?page=3).

      +

      Modified: htmlhelp/htmlhelp-common.xsl,1.38 - Jirka Kosek

      +
    • +

      Support chunk.tocs.and.lots in HTML Help

      +

      Modified: htmlhelp/htmlhelp-common.xsl,1.37 - Jirka Kosek

      +
    +
    + +

    Params

    + +

    The following changes have been made to the + params code + since the 1.70.0 release.

    +
    • +

      Added three new attribute sets (revhistory.title.properties, revhistory.table.properties and revhistory.table.cell.properties) for controlling appearance of revhistory in FO output.

      +

      Modified: fo/block.xsl,1.34; fo/param.ent,1.101; fo/param.xweb,1.114; fo/titlepage.xsl,1.41; params/revhistory.table.cell.properties.xml,1.1; params/revhistory.table.properties.xml,1.1; params/revhistory.title.properties.xml,1.1 - Jirka Kosek

      +
    +
    + +
    + +

    Release: 1.70.0

    + +

    As with all DocBook Project dot-zero +releases, this is an experimental release. It will be followed shortly +by a stable release.

    + +

    This release adds a number of new features, +including:

    + +
    • +

      support for selecting alternative index-collation methods + (in particular, support for using a collation library developed by + Eliot Kimber)

      +
    • +

      improved handling of DocBook 5 document instances (through a + namespace-stripping mechanism)

      +
    • +

      full support for CALS and HTML tables in manpages + output

      +
    • +

      a mechanism for preserving relative URIs in documents that + make use of XInclude

      +
    • +

      support for the "new" .90 version of + FOP

      +
    • +

      enhanced capabilities for controlling formatting of lists in HTML + and FO output

      +
    • +

      autogeneration of AUTHOR and COPYRIGHT sections in manpages + output

      +
    • +

      support for generating crop marks in FO/PDF output

      +
    • +

      support for qandaset as a root element in FO output

      +
    • +

      support for floatstyle and orient on all table types

      +
    • +

      support for floatstyle in figure, and example

      +
    • +

      pgwide.properties attribute-set supports extending figure, + example and table into the left indent area instead of spanning + multiple columns.

      +
    +

    The following is a detailed list of enhancements and API + changes that have been made since the 1.69.1 release.

    + +

    Common

    + +

    The following changes have been made to the + common code + since the 1.69.1 release.

    +
    • +

      Add the xsl:key for the kimber +indexing method.

      +

      Modified: common/autoidx-ng.xsl,1.2 - Robert +Stayton

      +
    • +

      Add support for +qandaset.

      +

      Modified: common/labels.xsl,1.37; +common/subtitles.xsl,1.7; common/titles.xsl,1.35 - Robert +Stayton

      +
    • +

      Support dbhtml/dbfo start PI for +orderedlist numbering in both HTML and +FO

      +

      Modified: common/common.xsl,1.61; html/lists.xsl,1.50 - Norman +Walsh

      +
    • +

      Added CVS +header.

      +

      Modified: common/stripns.xsl,1.12 - Robert +Stayton

      +
    • +

      Changed content model of text +element to ANY rather than #PCDATA because they could contain +markup.

      +

      Modified: common/targetdatabase.dtd,1.7 - Robert +Stayton

      +
    • +

      Added +refentry.meta.get.quietly param.

      +

      If zero (the +default), notes and warnings about "missing" markup are generated +during gathering of refentry metadata. If +non-zero, the metadata is gathered "quietly" -- that is, the +notes and warnings are suppressed.

      +

      NOTE: If you are +processing a large amount of refentry content, you +may be able to speed up processing significantly by setting a +non-zero value for +refentry.meta.get.quietly.

      +

      Modified: common/refentry.xsl,1.17; +manpages/param.ent,1.15; manpages/param.xweb,1.17; +params/refentry.meta.get.quietly.xml,1.1 - Michael(tm) +Smith

      +
    • +

      After namespace stripping, the +source document is the temporary tree created by the stripping +process and it has the wrong base URI for relative +references. Earlier versions of this code used to try to fix that +by patching the elements with relative @fileref attributes. That +was inadequate because it calculated an absolute base URI +without considering that there might be xml:base attributes +already in effect. It seems obvious now that the right thing to +do is simply to put the xml:base on the root of the document. And +that seems to work.

      +

      Modified: common/stripns.xsl,1.7 - Norman +Walsh

      +
    • +

      Added support for "software" and +"sectdesc" class values on refmiscinfo; "software" is +treated identically to "source", and "setdesc" is treated +identically to "manual".

      +

      Modified: common/refentry.xsl,1.10; +params/man.th.extra2.max.length.xml,1.3; +params/refentry.source.name.profile.xml,1.4 - Michael(tm) +Smith

      +
    • +

      Added support for DocBook 5 +namespace-stripping in manpages stylesheet. Closes request +#1210692.

      +

      Modified: common/common.xsl,1.56; manpages/docbook.xsl,1.57 - +Michael(tm) Smith

      +
    • +

      Added <xsl:template +match="/"> to make stripns.xsl usable as a standalone +stylesheet for stripping out DocBook 5/NG to DocBook 4. Note that +DocBook XSLT drivers that include this stylesheet all override +the match="/" template.

      +

      Modified: common/stripns.xsl,1.4 - Michael(tm) +Smith

      +
    • +

      Number figures, examples, and +tables from book if there is no prefix (i.e. if +chapter.autolabel is set to 0). This avoids +having the list of figures where the figures mysteriously restart +their numeration periodically when +chapter.autolabel is set to +0.

      +

      Modified: common/labels.xsl,1.36 - David Cramer

      +
    • +

      Add task template in +title.markup mode.

      +

      Modified: common/titles.xsl,1.34 - Robert +Stayton

      +
    • +

      Add children (with ids) of formal +objects to target data.

      +

      Modified: common/targets.xsl,1.10 - Robert +Stayton

      +
    • +

      Added support for case when +personname doesn't contain specific name markup (as allowed +in DocBook 5.0)

      +

      Modified: common/common.xsl,1.54 - Jirka +Kosek

      +
    +
    + +

    Extensions

    + +

    The following changes have been made to the + extensions code + since the 1.69.1 release.

    +
    • +

      Support Xalan +2.7

      +

      Modified: extensions/xalan27/.cvsignore,1.1; +extensions/xalan27/build.xml,1.1; +extensions/xalan27/nbproject/.cvsignore,1.1; +extensions/xalan27/nbproject/build-impl.xml,1.1; +extensions/xalan27/nbproject/genfiles.properties,1.1; +extensions/xalan27/nbproject/project.properties,1.1; +extensions/xalan27/nbproject/project.xml,1.1; +extensions/xalan27/src/com/nwalsh/xalan/CVS.java,1.1; +extensions/xalan27/src/com/nwalsh/xalan/Callout.java,1.1; +extensions/xalan27/src/com/nwalsh/xalan/FormatCallout.java,1.1; +extensions/xalan27/src/com/nwalsh/xalan/FormatDingbatCallout.java,1.1; +extensions/xalan27/src/com/nwalsh/xalan/FormatGraphicCallout.java,1.1; +extensions/xalan27/src/com/nwalsh/xalan/FormatTextCallout.java,1.1; +extensions/xalan27/src/com/nwalsh/xalan/FormatUnicodeCallout.java,1.1; +extensions/xalan27/src/com/nwalsh/xalan/Func.java,1.1; +extensions/xalan27/src/com/nwalsh/xalan/ImageIntrinsics.java,1.1; +extensions/xalan27/src/com/nwalsh/xalan/Params.java,1.1; +extensions/xalan27/src/com/nwalsh/xalan/Table.java,1.1; +extensions/xalan27/src/com/nwalsh/xalan/Text.java,1.1; +extensions/xalan27/src/com/nwalsh/xalan/Verbatim.java,1.1 - Norman +Walsh

      +
    • +

      Handle the case where the imageFn +is actually a URI. This still needs +work.

      +

      Modified: extensions/saxon643/com/nwalsh/saxon/ImageIntrinsics.java,1.4 +- Norman Walsh

      +
    +
    + +

    FO

    + +

    The following changes have been made to the + fo code + since the 1.69.1 release.

    +
    • +

      Adapted to the new indexing +code. Now works just like a wrapper that calls kosek indexing method, +originally implemented here.

      +

      Modified: fo/autoidx-ng.xsl,1.5 - Jirka +Kosek

      +
    • +

      Added parameters for header/footer +table minimum height.

      +

      Modified: fo/pagesetup.xsl,1.60; +fo/param.ent,1.100; fo/param.xweb,1.113 - Robert +Stayton

      +
    • +

      Add the index.method +parameter.

      +

      Modified: fo/param.ent,1.99; fo/param.xweb,1.112 - Robert +Stayton

      +
    • +

      Integrate support for three +indexing methods: - the original English-only method. - +Jirka Kosek's method using EXSLT extensions. - Eliot Kimber's +method using Saxon extensions. Use the 'index.method' +parameter to select.

      +

      Modified: fo/autoidx.xsl,1.38 - Robert +Stayton

      +
    • +

      Add support for TOC for +qandaset in fo output.

      +

      Modified: fo/autotoc.xsl,1.30; +fo/qandaset.xsl,1.20 - Robert Stayton

      +
    • +

      Added parameter +ulink.hyphenate.chars. Added parameter +insert.link.page.number.

      +

      Modified: fo/param.ent,1.98; +fo/param.xweb,1.111 - Robert Stayton

      +
    • +

      Implemented feature request +#942524 to add insert.link.page.number to allow link +element cross references to have a page number.

      +

      Modified: fo/xref.xsl,1.67 - +Robert Stayton

      +
    • +

      Add support for +ulink.hyphenate.chars so more characters +can be break points in urls.

      +

      Modified: fo/xref.xsl,1.66 - Robert +Stayton

      +
    • +

      Implemented patch #1075144 to make +the url text in a ulink in FO output an active link as +well.

      +

      Modified: fo/xref.xsl,1.65 - Robert Stayton

      +
    • +

      table footnotes now +have their own table.footnote.properties +attribute set.

      +

      Modified: fo/footnote.xsl,1.23 - Robert +Stayton

      +
    • +

      Add qandaset to +root.elements.

      +

      Modified: fo/docbook.xsl,1.41 - Robert +Stayton

      +
    • +

      Added mode="page.sequence" to make +it easier to put content into a page sequence. First used for +qandaset.

      +

      Modified: fo/component.xsl,1.37 - Robert +Stayton

      +
    • +

      Implemented feature request +#1434408 to support formatting +of biblioentry.

      +

      Modified: fo/biblio.xsl,1.35 - Robert +Stayton

      +
    • +

      Added +biblioentry.properties.

      +

      Modified: fo/param.ent,1.97; +fo/param.xweb,1.110 - Robert Stayton

      +
    • +

      Support PTC/Arbortext +bookmarks

      +

      Modified: fo/docbook.xsl,1.40; fo/ptc.xsl,1.1 - Norman +Walsh

      +
    • +

      Added +table.footnote.properties to permit +table footnotes to format differently from regular +footnotes.

      +

      Modified: fo/param.ent,1.96; fo/param.xweb,1.109 - Robert +Stayton

      +
    • +

      Refactored table +templates to unify their processing and support all options in +all types. Now table and informaltable, in +both Cals and Html markup, use the same templates where possible, +and all support pgwide, rotation, and floats. There is also a +placeholder table.container template to +support wrapping a table in a layout table, +so the XEP table title "continued" +extension can be more easily implemented.

      +

      Modified: fo/formal.xsl,1.52; +fo/htmltbl.xsl,1.9; fo/table.xsl,1.48 - Robert +Stayton

      +
    • +

      Added new attribute set +toc.line.properties for controlling appearance of lines in +ToC/LoT

      +

      Modified: fo/autotoc.xsl,1.29; fo/param.ent,1.95; +fo/param.xweb,1.108 - Jirka Kosek

      +
    • +

      Added support for float to example +and equation. Added support for pgwide to +figure, example, and equation (the latter +two via a dbfo pgwide="1" processing +instruction).

      +

      Modified: fo/formal.xsl,1.51 - Robert +Stayton

      +
    • +

      Add pgwide.properties +attribute-set.

      +

      Modified: fo/param.ent,1.94; fo/param.xweb,1.107 - Robert +Stayton

      +
    • +

      Added refclass.suppress +param.

      +

      If the value of refclass.suppress is +non-zero, then display refclass contents is suppressed +in output. Affects HTML and FO output +only.

      +

      Modified: fo/param.ent,1.93; fo/param.xweb,1.106; html/param.ent,1.90; +html/param.xweb,1.99; params/refclass.suppress.xml,1.1 - Michael(tm) +Smith

      +
    • +

      Improved support for +task subelements

      +

      Modified: fo/task.xsl,1.3; html/task.xsl,1.3 - +Jirka Kosek

      +
    • +

      Adjusted spacing around +K&R-formatted Funcdef and Paramdef +output such that it can more easily be discerned where one ends +and the other begins. Closes #1213264.

      +

      Modified: fo/synop.xsl,1.18 - +Michael(tm) Smith

      +
    • +

      Made handling of +paramdef/parameter in FO output consistent with that in HTML and +manpages output. Closes #1213259.

      +

      Modified: fo/synop.xsl,1.17 - Michael(tm) +Smith

      +
    • +

      Made handling of +Refnamediv consistent with formatting in HTML +and manpages output; specifically, changed so that +Refname (comma-separated list of multiple instances +found) is used (instead of Refentrytitle as +previously), then em-dash, then the Refpurpose. Closes +#1212562.

      +

      Modified: fo/refentry.xsl,1.30 - Michael(tm) +Smith

      +
    • +

      Added output of +Releaseinfo to recto titlepage ("copyright" +page) for Book in FO output. This makes it consistent +with HTML output. Closes #1327034. Thanks to Paul DuBois for +reporting.

      +

      Modified: fo/titlepage.templates.xml,1.28 - Michael(tm) +Smith

      +
    • +

      Added condition for setting +block-progression-dimension.minimum on table-row, instead of +height, when fop1.extensions is +non-zero. For an explanation of the reason for the change, +see: http://wiki.apache.org/xmlgraphics-fop/Troubleshooting/CommonLogMessages

      +

      Modified: fo/pagesetup.xsl,1.59 +- Michael(tm) Smith

      +
    • +

      Added new +refclass.suppress param for suppressing display +of Refclass in HTML and FO output. Did not add it to +manpages because manpages stylesheet is currently just silently +ignoring Refclass anyway. Closes request +#1461065. Thanks to Davor Ocelic (docelic) for +reporting.

      +

      Modified: fo/refentry.xsl,1.29; html/refentry.xsl,1.23 - +Michael(tm) Smith

      +
    • +

      Add support for keep-together PI +to informal objects.

      +

      Modified: fo/formal.xsl,1.50 - Robert +Stayton

      +
    • +

      Add support for +fop1.extensions.

      +

      Modified: fo/formal.xsl,1.49; +fo/graphics.xsl,1.44; fo/table.xsl,1.47 - Robert +Stayton

      +
    • +

      Add support for fop1 +bookmarks.

      +

      Modified: fo/docbook.xsl,1.39 - Robert +Stayton

      +
    • +

      Add fop1.extentions parameter to +add support for fop development version.

      +

      Modified: fo/param.ent,1.92; +fo/param.xweb,1.105 - Robert Stayton

      +
    • +

      Start supporting fop development +version, which will become fop version 1.

      +

      Modified: fo/fop1.xsl,1.1 - +Robert Stayton

      +
    • +

      Add template for task +in mode="xref-to".

      +

      Modified: fo/xref.xsl,1.63; html/xref.xsl,1.57 - Robert +Stayton

      +
    • +

      table footnotes now +also get footnote.properties +attribute-set.

      +

      Modified: fo/footnote.xsl,1.22 - Robert +Stayton

      +
    • +

      Added index.separator +named template to compute the separator punctuation based on +locale.

      +

      Modified: fo/autoidx.xsl,1.36 - Robert Stayton

      +
    • +

      Added support for link, +olink, and xref within OO +Classsynopsis and children. (Because DocBook NG/5 +allows it).

      +

      Modified: fo/synop.xsl,1.15; html/synop.xsl,1.19 - Michael(tm) +Smith

      +
    • +

      Support date as an +inline

      +

      Modified: fo/inline.xsl,1.43; html/inline.xsl,1.46 - Norman +Walsh

      +
    • +

      Added new parameter +keep.relative.image.uris

      +

      Modified: fo/param.ent,1.91; +fo/param.xweb,1.104; html/param.ent,1.87; html/param.xweb,1.96; +params/keep.relative.image.uris.xml,1.1 - Norman +Walsh

      +
    • +

      Map Unicode space characters +U+2000-U+200A to fo:leaders.

      +

      Modified: fo/docbook.xsl,1.38; +fo/passivetex.xsl,1.4; fo/spaces.xsl,1.1 - Jirka +Kosek

      +
    • +

      Output a real em dash for em-dash +dingbat (instead of two hypens).

      +

      Modified: fo/fo.xsl,1.7 - Michael(tm) +Smith

      +
    • +

      Support default label +width parameters for itemized and ordered lists

      +

      Modified: fo/lists.xsl,1.64; +fo/param.ent,1.90; fo/param.xweb,1.103; +params/itemizedlist.label.width.xml,1.1; +params/orderedlist.label.width.xml,1.1 - Norman +Walsh

      +
    • +

      Generate localized +title for Refsynopsisdiv if no +appropriate Title descendant found in source. Closes +#1212398. This change makes behavior for the Synopsis +title consistent with the behavior of HTML and +manpages output.

      +

      Also, added +xsl:use-attribute-sets="normal.para.spacing" to +block generated for Cmdsynopsis output. Previously, +that block had no spacing at all specified, which resulted it +being crammed up to closely to the Synopsis +head.

      +

      Modified: fo/refentry.xsl,1.28; fo/synop.xsl,1.13 - Michael(tm) +Smith

      +
    • +

      Added parameters to support +localization of index +item punctuation.

      +

      Modified: fo/autoidx.xsl,1.35 - Robert +Stayton

      +
    • +

      Added +index.number.separator, +index.range.separator, +and index.term.separator parameters to +support localization of punctuation in index +entries.

      +

      Modified: fo/param.ent,1.89; fo/param.xweb,1.102 - Robert +Stayton

      +
    • +

      Added "Cross References" +section in HTML doc (for consistency with the FO +doc). Also, moved the existing FO "Cross +References" section to follow the "Linking" +section.

      +

      Modified: fo/param.xweb,1.101; html/param.xweb,1.95 - +Michael(tm) Smith

      +
    • +

      Added ID attribues to all +Reference elements (e.g., id="tables" for the doc for +section on Table params). So pages for +all subsections of ref docs now have stable filenames instead +of arbitrary generated filenames.

      +

      Modified: fo/param.xweb,1.100; +html/param.xweb,1.94 - Michael(tm) Smith

      +
    • +

      Added two new parameters for +handling of multi-term +varlistentry elements:

      +

      variablelist.term.break.after: +When the variablelist.term.break.after is +non-zero, it will generate a line break after each +term multi-term +varlistentry.

      +

      variablelist.term.separator: +When a varlistentry contains multiple term +elements, the string specified in the value of the +variablelist.term.separator parameter is +placed after each term except the last. The default +is ", " (a comma followed by a space). To suppress rendering of +the separator, set the value of +variablelist.term.separator to the empty +string ("").

      +

      These parameters are primarily intended to be +useful if you have multi-term varlistentries that have long +terms.

      +

      Closes #1306676. Thanks to Sam Steingold for +providing an example "lots of long terms" doc that demonstrated +the value of having these options.

      +

      Also, added +normalize-space() call to processing of each +term.

      +

      This change affects all output formats +(HTML, PDF, manpages). The default behavior should pretty much +remain the same as before, but it is possible (as always) that +the change may introduce some +new bugginess.

      +

      Modified: fo/lists.xsl,1.62; fo/param.ent,1.88; +fo/param.xweb,1.99; html/lists.xsl,1.48; html/param.ent,1.86; +html/param.xweb,1.93; manpages/lists.xsl,1.22; +manpages/param.ent,1.14; manpages/param.xweb,1.16; +params/variablelist.term.break.after.xml,1.1; +params/variablelist.term.separator.xml,1.1 - Michael(tm) +Smith

      +
    • +

      Add sidebar titlepage +placeholder attset for styles.

      +

      Modified: fo/titlepage.xsl,1.37 - Robert +Stayton

      +
    • +

      Add titlepage for +sidebar.

      +

      Modified: fo/titlepage.templates.xml,1.27 - Robert +Stayton

      +
    • +

      Implemented RFE +#1292615.

      +

      Added bunch of new parameters (attribute sets) +that affect list presentation: list.block.properties, +itemizedlist.properties, orderedlist.properties, +itemizedlist.label.properties and +orderedlist.label.properties. Default behaviour +of stylesheets has not been changed but further customizations will be +much more easier.

      +

      Modified: fo/lists.xsl,1.61; fo/param.ent,1.87; +fo/param.xweb,1.98; params/itemizedlist.label.properties.xml,1.1; +params/itemizedlist.properties.xml,1.1; +params/list.block.properties.xml,1.1; +params/orderedlist.label.properties.xml,1.1; +params/orderedlist.properties.xml,1.1 - Jirka +Kosek

      +
    • +

      Implemented RFE +#1242092.

      +

      You can enable crop marks in your document by +setting crop.marks=1 and xep.extensions=1. Appearance of crop +marks can be controlled by parameters +crop.mark.bleed (6pt), +crop.mark.offset (24pt) and +crop.mark.width (0.5pt).

      +

      Also there +is new named template called user-xep-pis. You can overwrite it in +order to produce some PIs that can control XEP as described in +http://www.renderx.com/reference.html#Output_Formats

      +

      Modified: fo/docbook.xsl,1.36; +fo/param.ent,1.86; fo/param.xweb,1.97; fo/xep.xsl,1.23; +params/crop.mark.bleed.xml,1.1; params/crop.mark.offset.xml,1.1; +params/crop.mark.width.xml,1.1; params/crop.marks.xml,1.1 - Jirka +Kosek

      +
    +
    + +

    HTML

    + +

    The following changes have been made to the + html code + since the 1.69.1 release.

    +
    • +

      implemented +index.method parameter and three +methods.

      +

      Modified: html/autoidx.xsl,1.28 - Robert +Stayton

      +
    • +

      added index.method +parameter to support 3 indexing methods.

      +

      Modified: html/param.ent,1.94; +html/param.xweb,1.103 - Robert Stayton

      +
    • +

      Implemented feature request +#1072510 as a processing instruction to permit including external +HTML content into HTML output.

      +

      Modified: html/pi.xsl,1.9 - Robert +Stayton

      +
    • +

      Added new parameter +chunk.tocs.and.lots.has.title which +controls presence of title in a separate chunk with +ToC/LoT. Disabling title can be very useful if you are +generating frameset output (well, yes those frames, but some customers +really want them ;-).

      +

      Modified: html/chunk-code.xsl,1.15; +html/param.ent,1.93; html/param.xweb,1.102; +params/chunk.tocs.and.lots.has.title.xml,1.1 - Jirka +Kosek

      +
    • +

      Support dbhtml/dbfo start PI for +orderedlist numbering in both HTML and +FO

      +

      Modified: common/common.xsl,1.61; html/lists.xsl,1.50 - Norman +Walsh

      +
    • +

      Allow ToC without +title also for set and +book.

      +

      Modified: html/autotoc.xsl,1.37; html/division.xsl,1.12 - +Jirka Kosek

      +
    • +

      Implemented floats uniformly for +figure, example, equation +and informalfigure, informalexample, and +informalequation.

      +

      Modified: html/formal.xsl,1.22 - Robert +Stayton

      +
    • +

      Added the +autotoc.label.in.hyperlink param.

      +

      If the value +of autotoc.label.in.hyperlink is non-zero, labels +are included in hyperlinked titles in the TOC. If it +is instead zero, labels are still displayed prior to the +hyperlinked titles, but are not hyperlinked along with the +titles.

      +

      Closes patch #1065868. Thanks to anatoly techtonik +for the patch.

      +

      Modified: html/autotoc.xsl,1.36; html/param.ent,1.92; +html/param.xweb,1.101; params/autotoc.label.in.hyperlink.xml,1.1 - +Michael(tm) Smith

      +
    • +

      Added two new params: +html.head.legalnotice.link.types +and html.head.legalnotice.link.multiple.

      +

      If +the value of the generate.legalnotice.link is +non-zero, then the stylesheet generates (in the head +section of the HTML source) either a single HTML +link element or, if the value of +the html.head.legalnotice.link.multiple is +non-zero, one link element for each link +type specified. Each link has the +following attributes:

      +

      - a rel attribute whose value +is derived from the value of +html.head.legalnotice.link.types

      +

      - +an href attribute whose value is set to the URL of the file +containing the legalnotice

      +

      - a title +attribute whose value is set to the title of the +corresponding legalnotice (or a title +programatically determined by the stylesheet)

      +

      For +example:

      +

      <link rel="copyright" +href="ln-id2524073.html" title="Legal Notice">

      +

      Closes +#1476450. Thanks to Sam Steingold.

      +

      Modified: html/chunk-common.xsl,1.45; +html/param.ent,1.91; html/param.xweb,1.100; +params/generate.legalnotice.link.xml,1.4; +params/html.head.legalnotice.link.multiple.xml,1.1; +params/html.head.legalnotice.link.types.xml,1.1 - Michael(tm) +Smith

      +
    • +

      Added refclass.suppress +param.

      +

      If the value of refclass.suppress is +non-zero, then display refclass contents is suppressed +in output. Affects HTML and FO output +only.

      +

      Modified: fo/param.ent,1.93; fo/param.xweb,1.106; html/param.ent,1.90; +html/param.xweb,1.99; params/refclass.suppress.xml,1.1 - Michael(tm) +Smith

      +
    • +

      Improved support for +task subelements

      +

      Modified: fo/task.xsl,1.3; html/task.xsl,1.3 - +Jirka Kosek

      +
    • +

      Added new +refclass.suppress param for suppressing display +of Refclass in HTML and FO output. Did not add it to +manpages because manpages stylesheet is currently just silently +ignoring Refclass anyway. Closes request +#1461065. Thanks to Davor Ocelic (docelic) for +reporting.

      +

      Modified: fo/refentry.xsl,1.29; html/refentry.xsl,1.23 - +Michael(tm) Smith

      +
    • +

      Process alt text with +normalize-space(). Replace tab indents with +spaces.

      +

      Modified: html/graphics.xsl,1.57 - Robert +Stayton

      +
    • +

      Content of citation +element is automatically linked to the bibliographic entry +with the corresponding abbrev.

      +

      Modified: html/biblio.xsl,1.26; +html/inline.xsl,1.47; html/xref.xsl,1.58 - Jirka +Kosek

      +
    • +

      Add template for task +in mode="xref-to".

      +

      Modified: fo/xref.xsl,1.63; html/xref.xsl,1.57 - Robert +Stayton

      +
    • +

      Suppress ID warnings if the +.warnings parameter is 0

      +

      Modified: html/html.xsl,1.17 - Norman +Walsh

      +
    • +

      Add support for floatstyle to +figure.

      +

      Modified: html/formal.xsl,1.21 - Robert +Stayton

      +
    • +

      Handling of xref to +area/areaset need support in extensions code also. I currently have no +time to touch extensions code, so code is here to be enabled when +extension is fixed also.

      +

      Modified: html/xref.xsl,1.56 - Jirka +Kosek

      +
    • +

      Added 3 parameters for overriding +gentext for index +punctuation.

      +

      Modified: html/param.ent,1.89; html/param.xweb,1.98 - Robert +Stayton

      +
    • +

      Added parameters to support +localization of index item punctuation. Added +index.separator named template to compute +the separator punctuation based on +locale.

      +

      Modified: html/autoidx.xsl,1.27 - Robert +Stayton

      +
    • +

      Added a <div +class="{$class}-contents"> wrapper around output of contents +of all formal objects. Also, added an optional <br +class="{class}-break"/> linebreak after all formal +objects.

      +

      WARNING: Because this change places an additional +DIV between the DIV wrapper for the equation and the +equation contents, it may break some existing CSS +stylesheets that have been created with the assumption that there +would never be an intervening DIV there.

      +

      The following is +an example of what Equation output looks like as a +result of the changes described above.

      +

      <div +class="equation"> <a name="three" +id="three"></a>

      +

      <p +class="title"><b>(1.3)</b></p>

      +

      +<div class="equation-contents"> <span +class="mathphrase">1+1=3</span> +</div> </div><br +class="equation-break">

      +

      Rationale: These changes allow +CSS control of the placement of the formal-object +title relative to the formal-object +contents. For example, using the CSS "float" property +enables the title and contents to be rendered on the +same line. Example stylesheet:

      +

      .equation +{ margin-top: 20px; margin-bottom: 20px; } +.equation-contents { float: left; }

      +

      +.equation .title { margin-top: 0; +float: right; margin-right: 200px; }

      +

      +.equation .title b { font-weight: +normal; }

      +

      .equation-break { clear: both; +}

      +

      Note that the purpose of the ".equation-break" class is +to provide a way to clear off the floats.

      +

      If you want +to instead have the equation title rendered to +the left of the equation contents, you can do +something like this:

      +

      .equation { +margin-top: 20px; width: 300px; margin-bottom: 20px; +} .equation-contents { float: right; }

      +

      +.equation .title { margin-top: 0; +float: left; margin-right: 200px; }

      +

      +.equation .title b { font-weight: +normal; }

      +

      .equation-break { clear: both; +}

      +

      Modified: html/formal.xsl,1.20 - Michael(tm) Smith

      +
    • +

      Added a chunker.output.quiet +top-level parameter so that the chunker can be made quiet by +default

      +

      Modified: html/chunker.xsl,1.26 - Norman Walsh

      +
    • +

      Added support for link, +olink, and xref within OO +Classsynopsis and children. (Because DocBook NG/5 +allows it).

      +

      Modified: fo/synop.xsl,1.15; html/synop.xsl,1.19 - Michael(tm) +Smith

      +
    • +

      New parameter: +id.warnings. If non-zero, warnings are +generated for titled objects that don't have titles. True by default; +I wonder if this will be too aggressive?

      +

      Modified: html/biblio.xsl,1.25; +html/component.xsl,1.27; html/division.xsl,1.11; html/formal.xsl,1.19; +html/glossary.xsl,1.20; html/html.xsl,1.13; html/index.xsl,1.16; +html/param.ent,1.88; html/param.xweb,1.97; html/refentry.xsl,1.22; +html/sections.xsl,1.30; params/id.warnings.xml,1.1 - Norman +Walsh

      +
    • +

      If the +keep.relative.image.uris parameter is true, +don't use the absolute URI (as calculated from xml:base) in +the img src attribute, us the value the author +specified. Note that we still have to calculate the absolute +filename for use in the image intrinsics +extension.

      +

      Modified: html/graphics.xsl,1.56 - Norman +Walsh

      +
    • +

      Support date as an +inline

      +

      Modified: fo/inline.xsl,1.43; html/inline.xsl,1.46 - Norman +Walsh

      +
    • +

      Added new parameter +keep.relative.image.uris

      +

      Modified: fo/param.ent,1.91; +fo/param.xweb,1.104; html/param.ent,1.87; html/param.xweb,1.96; +params/keep.relative.image.uris.xml,1.1 - Norman +Walsh

      +
    • +

      Added two new parameters for +handling of multi-term +varlistentry elements:

      +

      variablelist.term.break.after: +When the variablelist.term.break.after is +non-zero, it will generate a line break after each +term multi-term +varlistentry.

      +

      variablelist.term.separator: +When a varlistentry contains multiple term +elements, the string specified in the value of the +variablelist.term.separator parameter is +placed after each term except the last. The default +is ", " (a comma followed by a space). To suppress rendering of +the separator, set the value of +variablelist.term.separator to the empty +string ("").

      +

      These parameters are primarily intended to be +useful if you have multi-term varlistentries that have long +terms.

      +

      Closes #1306676. Thanks to Sam Steingold for +providing an example "lots of long terms" doc that demonstrated +the value of having these options.

      +

      Also, added +normalize-space() call to processing of each +term.

      +

      This change affects all output formats +(HTML, PDF, manpages). The default behavior should pretty much +remain the same as before, but it is possible (as always) that +the change may introduce some +new bugginess.

      +

      Modified: fo/lists.xsl,1.62; fo/param.ent,1.88; +fo/param.xweb,1.99; html/lists.xsl,1.48; html/param.ent,1.86; +html/param.xweb,1.93; manpages/lists.xsl,1.22; +manpages/param.ent,1.14; manpages/param.xweb,1.16; +params/variablelist.term.break.after.xml,1.1; +params/variablelist.term.separator.xml,1.1 - Michael(tm) +Smith

      +
    • +

      Added "wrapper-name" param to +inline.charseq named template, enabling it to output inlines +other than just "span". Acronym and Abbrev +templates now use inline.charseq to output HTML +"acronym" and "abbr" elements (instead of +"span"). Closes #1305468. Thanks to Sam Steingold for suggesting +the change.

      +

      Modified: html/inline.xsl,1.45 - Michael(tm) +Smith

      +
    +
    + +

    Manpages

    + +

    The following changes have been made to the + manpages code + since the 1.69.1 release.

    +
    • +

      Added the following +params:

      +

      - man.indent.width (string-valued) - +man.indent.refsect (boolean) - man.indent.blurbs (boolean) +- man.indent.lists (boolean) - man.indent.verbatims +(boolean)

      +

      Note that in earlier snapshots, man.indent.width +was named man.indentation.default.value and the boolean params +had names like man.indentation.*.adjust. Also the +man.indent.blurbs param was called man.indentation.authors.adjust +(or something).

      +

      The behavior now is: If the value of a +particular man.indent.* boolean param is non-zero, the +corresponding contents (refsect*, list items, +authorblurb/personblurb, vervatims) are displayed with a left +margin indented by a width equal to the value +of man.indent.width.

      +

      Modified: params/man.indent.blurbs.xml,1.1; +manpages/docbook.xsl,1.74; manpages/info.xsl,1.20; +manpages/lists.xsl,1.30; manpages/other.xsl,1.20; +manpages/param.ent,1.22; manpages/param.xweb,1.24; +manpages/refentry.xsl,1.14; params/man.indent.lists.xml,1.1; +params/man.indent.refsect.xml,1.1; +params/man.indent.verbatims.xml,1.1; params/man.indent.width.xml,1.1 - +Michael(tm) Smith

      +
    • +

      Added +man.table.footnotes.divider param.

      +

      In each +table that contains footenotes, the string specified +by the man.table.footnotes.divider parameter is output +before the list of footnotes for the +table.

      +

      Modified: manpages/docbook.xsl,1.73; +manpages/links.xsl,1.6; manpages/param.ent,1.21; +manpages/param.xweb,1.23; params/man.table.footnotes.divider.xml,1.1 - +Michael(tm) Smith

      +
    • +

      Added the +man.output.in.separate.dir, +man.output.base.dir, +and man.output.subdirs.enabled parameters.

      +

      The +man.output.base.dir parameter specifies the +base directory into which man-page files are +output. The man.output.subdirs.enabled parameter controls whether +the files are output in subdirectories within the base +directory.

      +

      The values of the +man.output.base.dir +and man.output.subdirs.enabled parameters are used only if the +value of man.output.in.separate.dir parameter is non-zero. If the +value of man.output.in.separate.dir is zero, man-page files are +not output in a separate +directory.

      +

      Modified: manpages/docbook.xsl,1.72; manpages/param.ent,1.20; +manpages/param.xweb,1.22; params/man.output.base.dir.xml,1.1; +params/man.output.in.separate.dir.xml,1.1; +params/man.output.subdirs.enabled.xml,1.1 - Michael(tm) +Smith

      +
    • +

      Added +man.font.table.headings and +man.font.table.title params, for +controlling font in table headings and +titles.

      +

      Modified: manpages/docbook.xsl,1.71; manpages/param.ent,1.19; +manpages/param.xweb,1.21; params/man.font.table.headings.xml,1.1; +params/man.font.table.title.xml,1.1 - Michael(tm) +Smith

      +
    • +

      Added +man.font.funcsynopsisinfo and +man.font.funcprototype params, for specifying the roff +font (for example, BI, B, I) for funcsynopsisinfo and +funcprototype output.

      +

      Modified: manpages/block.xsl,1.19; +manpages/docbook.xsl,1.69; manpages/param.ent,1.18; +manpages/param.xweb,1.20; manpages/synop.xsl,1.29; +manpages/table.xsl,1.21; params/man.font.funcprototype.xml,1.1; +params/man.font.funcsynopsisinfo.xml,1.1 - Michael(tm) +Smith

      +
    • +

      Added +man.segtitle.suppress param.

      +

      If the value of +man.segtitle.suppress is non-zero, then display +of segtitle contents is suppressed in +output.

      +

      Modified: manpages/docbook.xsl,1.68; manpages/param.ent,1.17; +manpages/param.xweb,1.19; params/man.segtitle.suppress.xml,1.1 - +Michael(tm) Smith

      +
    • +

      Added +man.output.manifest.enabled and +man.output.manifest.filename params.

      +

      If +man.output.manifest.enabled is non-zero, a list +of filenames for man pages generated by the stylesheet +transformation is written to the file named by +man.output.manifest.filename

      +

      Modified: manpages/docbook.xsl,1.67; +manpages/other.xsl,1.19; manpages/param.ent,1.16; +manpages/param.xweb,1.18; params/man.output.manifest.enabled.xml,1.1; +params/man.output.manifest.filename.xml,1.1; +tools/make/Makefile.DocBook,1.4 - Michael(tm) +Smith

      +
    • +

      Added +refentry.meta.get.quietly param.

      +

      If zero (the +default), notes and warnings about "missing" markup are generated +during gathering of refentry metadata. If +non-zero, the metadata is gathered "quietly" -- that is, the +notes and warnings are suppressed.

      +

      NOTE: If you are +processing a large amount of refentry content, you +may be able to speed up processing significantly by setting a +non-zero value for +refentry.meta.get.quietly.

      +

      Modified: common/refentry.xsl,1.17; +manpages/param.ent,1.15; manpages/param.xweb,1.17; +params/refentry.meta.get.quietly.xml,1.1 - Michael(tm) +Smith

      +
    • +

      Changed names of all boolean +indentation params to man.indent.* Also discarded individual +man.indent.*.value params and switched to just using a common +man.indent.width param (3n by default).

      +

      Modified: manpages/docbook.xsl,1.66; +manpages/info.xsl,1.19; manpages/lists.xsl,1.29; +manpages/other.xsl,1.18; manpages/refentry.xsl,1.13 - Michael(tm) +Smith

      +
    • +

      Added boolean +man.output.in.separate.dir param, to control whether or not man +files are output in separate directory.

      +

      Modified: manpages/docbook.xsl,1.65; +manpages/utility.xsl,1.14 - Michael(tm) Smith

      +
    • +

      Added options for controlling +indentation of verbatim output. Controlled through the +man.indentation.verbatims.adjust +and man.indentation.verbatims.value params. Closes +#1242997

      +

      Modified: manpages/block.xsl,1.15; manpages/docbook.xsl,1.64 - +Michael(tm) Smith

      +
    • +

      Added options for controlling +indentation in lists and in *blurb output in the AUTHORS +section. Controlled through +the man.indentation.lists.adjust, +man.indentation.lists.value, man.indentation.authors.adjust, and +man.indentation.authors.value parameters. Default is 3 characters +(instead of the roff default of 8 characters). Closes +#1449369.

      +

      Also, removed the indent that was being set on +informalexample outuput. I will instead add an option +for indenting verbatims, which I think is what the +informalexample indent was intended +for originally.

      +

      Modified: manpages/block.xsl,1.14; +manpages/docbook.xsl,1.63; manpages/info.xsl,1.18; +manpages/lists.xsl,1.28 - Michael(tm) Smith

      +
    • +

      Changed line-spacing call before +synopfragment to use ".sp -1n" ("n" units specified) +instead of plain ".sp -1"

      +

      Modified: manpages/synop.xsl,1.28 - Michael(tm) +Smith

      +
    • +

      Added support for writing man +files into a specific output directory and into appropriate +subdirectories within that output directory. Controlled through +the man.base.dir parameter (similar to the +base.dir support in the HTML stylesheet) and +the man.subdirs.enabled parameter, which automatically determines +the name of an appropriate subdir (for example, man/man7, +man/man1, etc.) based on the section number/manvolnum +of the source Refentry.

      +

      Closes #1255036 and +#1170317. Thanks to Denis Bradford for the original feature +request, and to Costin Stroie for submitting a patch that was +very helpful in implementing the +support.

      +

      Modified: manpages/docbook.xsl,1.62; manpages/utility.xsl,1.13 - +Michael(tm) Smith

      +
    • +

      Refined XPath statements and +notification messages for refentry metadata +handling.

      +

      Modified: common/common.xsl,1.59; common/refentry.xsl,1.14; +manpages/docbook.xsl,1.61; manpages/other.xsl,1.17 - Michael(tm) +Smith

      +
    • +

      Added support for +copyright and legalnotice. The manpages +stylesheets now output a COPYRIGHT section, +after the AUTHORS section, if a copyright +or legalnotice is found in the source. The +section contains the copyright contents followed +by the legalnotice contents. Closes +#1450209.

      +

      Modified: manpages/docbook.xsl,1.59; manpages/info.xsl,1.17 - +Michael(tm) Smith

      +
    • +

      Drastically reworked all of the +XPath expressions used in refentry metadata gathering +-- completely removed $parentinfo and turned $info into a set of +nodes that includes the *info contents of the Refentry +plus the *info contents all all of its ancestor elements. The +basic XPath expression now used throughout is (using the example +of checking for a date):

      +

      +(($info[//date])[last()]/date)[1].

      +

      That selects the "last" +*info/date date in document order -- that is, the one +eitther on the Refentry itself or on the +closest ancestor to the Refentry.

      +

      It's +likely this change may break some things; may need to pick up +some pieces later.

      +

      Also, changed the default value for the +man.th.extra2.max.length from 40 to +30.

      +

      Modified: common/common.xsl,1.58; common/refentry.xsl,1.7; +params/man.th.extra2.max.length.xml,1.2; +params/refentry.date.profile.xml,1.2; +params/refentry.manual.profile.xml,1.2; +params/refentry.source.name.profile.xml,1.2; +params/refentry.version.profile.xml,1.2; manpages/docbook.xsl,1.58; +manpages/other.xsl,1.15 - Michael(tm) Smith

      +
    • +

      Added support for DocBook 5 +namespace-stripping in manpages stylesheet. Closes request +#1210692.

      +

      Modified: common/common.xsl,1.56; manpages/docbook.xsl,1.57 - +Michael(tm) Smith

      +
    • +

      Fixed handling of table +footnotes. With this checkin, the table support in the +manpages stylesheet is now basically feature complete. So this +change closes request #619532, "No support for tables" -- the +oldest currently open manpages feature request, submitted by Ben +Secrest (blsecres) on 2002-10-07. Congratulations to me [patting +myself on the back].

      +

      Modified: manpages/block.xsl,1.11; +manpages/docbook.xsl,1.55; manpages/table.xsl,1.15 - Michael(tm) +Smith

      +
    • +

      Added handling for +table titles. Also fixed handling of nested tables; +nest tables are now "extracted" and displayed just after their +parent tables.

      +

      Modified: manpages/docbook.xsl,1.54; manpages/table.xsl,1.14 +- Michael(tm) Smith

      +
    • +

      Added option for turning off bold +formatting in Funcsynopsis. Boldface formatting in +function synopsis is mandated in the +man(7) man page and is used almost universally in existing man +pages. Despite that, it really does look like crap to have an +entire Funcsynopsis output in bold, so I added params +for turning off the bold formatting and/or replacing it with a +different roff special font (e.g., "RI" for alternating +roman/italic instead of the default "BI" for alternating +bold/italic). The new params +are "man.funcprototype.font" and +"man.funcsynopsisinfo.font". To be documented +later.

      +

      Closes #1452247. Thanks to Joe Orton for the feature +request.

      +

      Modified: params/man.string.subst.map.xml,1.16; +manpages/block.xsl,1.10; manpages/docbook.xsl,1.51; +manpages/inline.xsl,1.16; manpages/synop.xsl,1.27 - Michael(tm) +Smith

      +
    • +

      Use AUTHORS instead of +AUTHOR if we have multiple people to attribute. Also, +fixed checking such that we generate +author section even if we don't have an +author (as long as there is at least one other +person/entity we can put in the +section). Also adjusted assembly of content for +Author metainfo field such that we now not only use +author, but try to find a "best match" if we can't +find an author name to put there.

      +

      Closes +#1233592. Thanks to Sam Steingold for the +request.

      +

      Modified: manpages/info.xsl,1.12 - Michael(tm) +Smith

      +
    • +

      Changes for request #1243027, +"Impove handling of AUTHOR section." This +adds support for Collab, Corpauthor, Corpcredt, +Orgname, Publishername, and +Publisher. Also adds support for output +of Affiliation and its children, and support for using +gentext strings for auto-attributing roles (Author, +Editor, Publisher, Translator, etc.). Also +did a lot of code cleanup and modularization of all the +AUTHOR handling code. And fixed a bug that was causing +Author info to not be picked up correctly +for metainfo comment we embed in man-page +source.

      +

      Modified: manpages/info.xsl,1.11 - Michael(tm) +Smith

      +
    • +

      Support bold output for +"emphasis remap='B'". (because Eric Raymond's +doclifter(1) tool converts groff source marked up with ".B" +request or "\fB" escapes to DocBook "emphasis +remap='B'".)

      +

      Modified: manpages/inline.xsl,1.14 - Michael(tm) +Smith

      +
    • +

      Added support for +Segmentedlist. Details: Output is tabular, with no +option for "list" type output. Output for Segtitle +elements can be supressed by +setting man.segtitle.suppress. If Segtitle +content is output, it is rendered in italic type (not bold +because not all terminals support bold and so italic ensures the +stand out on those terminals). Extra space (.sp line) at end of +table code ensures that it gets handled correctly in +the case where its source is the child of a Para. +Closes feature-request #1400097. Thanks to Daniel Leidert for the +patch and push, and to Alastair Rankine for filing the original +feature request.

      +

      Modified: manpages/lists.xsl,1.23; +manpages/utility.xsl,1.10 - Michael(tm) Smith

      +
    • +

      Improved handling or +Author/Editor/Othercredit.

      +

      Reworked content of +(non-visible) comment added at top of each page (metadata +stuff).

      +

      Added support for generating a +manifest file (useful for cleaning up +after builds, etc.)

      +

      Modified: manpages/docbook.xsl,1.46; +manpages/info.xsl,1.9; manpages/other.xsl,1.12; +manpages/utility.xsl,1.6 - Michael(tm) Smith

      +
    • +

      Added two new parameters for +handling of multi-term +varlistentry elements:

      +

      variablelist.term.break.after: +When the variablelist.term.break.after is +non-zero, it will generate a line break after each +term multi-term +varlistentry.

      +

      variablelist.term.separator: +When a varlistentry contains multiple term +elements, the string specified in the value of the +variablelist.term.separator parameter is +placed after each term except the last. The default +is ", " (a comma followed by a space). To suppress rendering of +the separator, set the value of +variablelist.term.separator to the empty +string ("").

      +

      These parameters are primarily intended to be +useful if you have multi-term varlistentries that have long +terms.

      +

      Closes #1306676. Thanks to Sam Steingold for +providing an example "lots of long terms" doc that demonstrated +the value of having these options.

      +

      Also, added +normalize-space() call to processing of each +term.

      +

      This change affects all output formats +(HTML, PDF, manpages). The default behavior should pretty much +remain the same as before, but it is possible (as always) that +the change may introduce some +new bugginess.

      +

      Modified: fo/lists.xsl,1.62; fo/param.ent,1.88; +fo/param.xweb,1.99; html/lists.xsl,1.48; html/param.ent,1.86; +html/param.xweb,1.93; manpages/lists.xsl,1.22; +manpages/param.ent,1.14; manpages/param.xweb,1.16; +params/variablelist.term.break.after.xml,1.1; +params/variablelist.term.separator.xml,1.1 - Michael(tm) +Smith

      +
    +
    + +

    Params

    + +

    The following changes have been made to the + params code + since the 1.69.1 release.

    +
    • +

      New parameters to set +header/footer table minimum +height.

      +

      Modified: params/footer.table.height.xml,1.1; +params/header.table.height.xml,1.1 - Robert +Stayton

      +
    • +

      Support multiple indexing methods +for different languages.

      +

      Modified: params/index.method.xml,1.1 - Robert +Stayton

      +
    • +

      Remove qandaset and +qandadiv from generate.toc for fo +output because formerly it wasn't working, but now it is and +the default behavior should stay the +same.

      +

      Modified: params/generate.toc.xml,1.8 - Robert +Stayton

      +
    • +

      add support for page number +references to link element +too.

      +

      Modified: params/insert.link.page.number.xml,1.1 - Robert +Stayton

      +
    • +

      Add support for more characters to +hyphen on when ulink.hyphenate is turned +on.

      +

      Modified: params/ulink.hyphenate.chars.xml,1.1; +params/ulink.hyphenate.xml,1.3 - Robert Stayton

      +
    • +

      New attribute-set to format +biblioentry and +bibliomixed.

      +

      Modified: params/biblioentry.properties.xml,1.1 - +Robert Stayton

      +
    • +

      Added new parameter +chunk.tocs.and.lots.has.title which +controls presence of title in a separate chunk with +ToC/LoT. Disabling title can be very useful if you are +generating frameset output (well, yes those frames, but some customers +really want them ;-).

      +

      Modified: html/chunk-code.xsl,1.15; +html/param.ent,1.93; html/param.xweb,1.102; +params/chunk.tocs.and.lots.has.title.xml,1.1 - Jirka +Kosek

      +
    • +

      Added new attribute set +toc.line.properties for controlling appearance of lines in +ToC/LoT

      +

      Modified: params/toc.line.properties.xml,1.1 - Jirka +Kosek

      +
    • +

      Allow table footnotes +to have different properties from regular +footnotes.

      +

      Modified: params/table.footnote.properties.xml,1.1 - Robert +Stayton

      +
    • +

      Set properties for pgwide="1" +objects.

      +

      Modified: params/pgwide.properties.xml,1.1 - Robert +Stayton

      +
    • +

      Added the +autotoc.label.in.hyperlink param.

      +

      If the value +of autotoc.label.in.hyperlink is non-zero, labels +are included in hyperlinked titles in the TOC. If it +is instead zero, labels are still displayed prior to the +hyperlinked titles, but are not hyperlinked along with the +titles.

      +

      Closes patch #1065868. Thanks to anatoly techtonik +for the patch.

      +

      Modified: html/autotoc.xsl,1.36; html/param.ent,1.92; +html/param.xweb,1.101; params/autotoc.label.in.hyperlink.xml,1.1 - +Michael(tm) Smith

      +
    • +

      Added two new params: +html.head.legalnotice.link.types +and html.head.legalnotice.link.multiple.

      +

      If +the value of the generate.legalnotice.link is +non-zero, then the stylesheet generates (in the head +section of the HTML source) either a single HTML +link element or, if the value of +the html.head.legalnotice.link.multiple is +non-zero, one link element for each link +type specified. Each link has the +following attributes:

      +

      - a rel attribute whose value +is derived from the value of +html.head.legalnotice.link.types

      +

      - +an href attribute whose value is set to the URL of the file +containing the legalnotice

      +

      - a title +attribute whose value is set to the title of the +corresponding legalnotice (or a title +programatically determined by the stylesheet)

      +

      For +example:

      +

      <link rel="copyright" +href="ln-id2524073.html" title="Legal Notice">

      +

      Closes +#1476450. Thanks to Sam Steingold.

      +

      Modified: html/chunk-common.xsl,1.45; +html/param.ent,1.91; html/param.xweb,1.100; +params/generate.legalnotice.link.xml,1.4; +params/html.head.legalnotice.link.multiple.xml,1.1; +params/html.head.legalnotice.link.types.xml,1.1 - Michael(tm) +Smith

      +
    • +

      Added the following +params:

      +

      - man.indent.width (string-valued) - +man.indent.refsect (boolean) - man.indent.blurbs (boolean) +- man.indent.lists (boolean) - man.indent.verbatims +(boolean)

      +

      Note that in earlier snapshots, man.indent.width +was named man.indentation.default.value and the boolean params +had names like man.indentation.*.adjust. Also the +man.indent.blurbs param was called man.indentation.authors.adjust +(or something).

      +

      The behavior now is: If the value of a +particular man.indent.* boolean param is non-zero, the +corresponding contents (refsect*, list items, +authorblurb/personblurb, vervatims) are displayed with a left +margin indented by a width equal to the value +of man.indent.width.

      +

      Modified: params/man.indent.blurbs.xml,1.1; +manpages/docbook.xsl,1.74; manpages/info.xsl,1.20; +manpages/lists.xsl,1.30; manpages/other.xsl,1.20; +manpages/param.ent,1.22; manpages/param.xweb,1.24; +manpages/refentry.xsl,1.14; params/man.indent.lists.xml,1.1; +params/man.indent.refsect.xml,1.1; +params/man.indent.verbatims.xml,1.1; params/man.indent.width.xml,1.1 - +Michael(tm) Smith

      +
    • +

      Added +man.table.footnotes.divider param.

      +

      In each +table that contains footenotes, the string specified +by the man.table.footnotes.divider parameter is output +before the list of footnotes for the +table.

      +

      Modified: manpages/docbook.xsl,1.73; +manpages/links.xsl,1.6; manpages/param.ent,1.21; +manpages/param.xweb,1.23; params/man.table.footnotes.divider.xml,1.1 - +Michael(tm) Smith

      +
    • +

      Added the +man.output.in.separate.dir, +man.output.base.dir, +and man.output.subdirs.enabled parameters.

      +

      The +man.output.base.dir parameter specifies the +base directory into which man-page files are +output. The man.output.subdirs.enabled parameter controls whether +the files are output in subdirectories within the base +directory.

      +

      The values of the +man.output.base.dir +and man.output.subdirs.enabled parameters are used only if the +value of man.output.in.separate.dir parameter is non-zero. If the +value of man.output.in.separate.dir is zero, man-page files are +not output in a separate +directory.

      +

      Modified: manpages/docbook.xsl,1.72; manpages/param.ent,1.20; +manpages/param.xweb,1.22; params/man.output.base.dir.xml,1.1; +params/man.output.in.separate.dir.xml,1.1; +params/man.output.subdirs.enabled.xml,1.1 - Michael(tm) +Smith

      +
    • +

      Added +man.font.table.headings and +man.font.table.title params, for +controlling font in table headings and +titles.

      +

      Modified: manpages/docbook.xsl,1.71; manpages/param.ent,1.19; +manpages/param.xweb,1.21; params/man.font.table.headings.xml,1.1; +params/man.font.table.title.xml,1.1 - Michael(tm) +Smith

      +
    • +

      Added +man.font.funcsynopsisinfo and +man.font.funcprototype params, for specifying the roff +font (for example, BI, B, I) for funcsynopsisinfo and +funcprototype output.

      +

      Modified: manpages/block.xsl,1.19; +manpages/docbook.xsl,1.69; manpages/param.ent,1.18; +manpages/param.xweb,1.20; manpages/synop.xsl,1.29; +manpages/table.xsl,1.21; params/man.font.funcprototype.xml,1.1; +params/man.font.funcsynopsisinfo.xml,1.1 - Michael(tm) +Smith

      +
    • +

      Changed to select="0" in +refclass.suppress (instead of +..>0</..)

      +

      Modified: params/refclass.suppress.xml,1.3 - Michael(tm) +Smith

      +
    • +

      Added +man.segtitle.suppress param.

      +

      If the value of +man.segtitle.suppress is non-zero, then display +of segtitle contents is suppressed in +output.

      +

      Modified: manpages/docbook.xsl,1.68; manpages/param.ent,1.17; +manpages/param.xweb,1.19; params/man.segtitle.suppress.xml,1.1 - +Michael(tm) Smith

      +
    • +

      Added +man.output.manifest.enabled and +man.output.manifest.filename params.

      +

      If +man.output.manifest.enabled is non-zero, a list +of filenames for man pages generated by the stylesheet +transformation is written to the file named by +man.output.manifest.filename

      +

      Modified: manpages/docbook.xsl,1.67; +manpages/other.xsl,1.19; manpages/param.ent,1.16; +manpages/param.xweb,1.18; params/man.output.manifest.enabled.xml,1.1; +params/man.output.manifest.filename.xml,1.1; +tools/make/Makefile.DocBook,1.4 - Michael(tm) +Smith

      +
    • +

      Added refclass.suppress +param.

      +

      If the value of refclass.suppress is +non-zero, then display refclass contents is suppressed +in output. Affects HTML and FO output +only.

      +

      Modified: fo/param.ent,1.93; fo/param.xweb,1.106; html/param.ent,1.90; +html/param.xweb,1.99; params/refclass.suppress.xml,1.1 - Michael(tm) +Smith

      +
    • +

      Added +refentry.meta.get.quietly param.

      +

      If zero (the +default), notes and warnings about "missing" markup are generated +during gathering of refentry metadata. If +non-zero, the metadata is gathered "quietly" -- that is, the +notes and warnings are suppressed.

      +

      NOTE: If you are +processing a large amount of refentry content, you +may be able to speed up processing significantly by setting a +non-zero value for +refentry.meta.get.quietly.

      +

      Modified: common/refentry.xsl,1.17; +manpages/param.ent,1.15; manpages/param.xweb,1.17; +params/refentry.meta.get.quietly.xml,1.1 - Michael(tm) +Smith

      +
    • +

      Added support for "software" and +"sectdesc" class values on refmiscinfo; "software" is +treated identically to "source", and "setdesc" is treated +identically to "manual".

      +

      Modified: common/refentry.xsl,1.10; +params/man.th.extra2.max.length.xml,1.3; +params/refentry.source.name.profile.xml,1.4 - Michael(tm) +Smith

      +
    • +

      Drastically reworked all of the +XPath expressions used in refentry metadata gathering +-- completely removed $parentinfo and turned $info into a set of +nodes that includes the *info contents of the Refentry +plus the *info contents all all of its ancestor elements. The +basic XPath expression now used throughout is (using the example +of checking for a date):

      +

      +(($info[//date])[last()]/date)[1].

      +

      That selects the "last" +*info/date date in document order -- that is, the one +eitther on the Refentry itself or on the +closest ancestor to the Refentry.

      +

      It's +likely this change may break some things; may need to pick up +some pieces later.

      +

      Also, changed the default value for the +man.th.extra2.max.length from 40 to +30.

      +

      Modified: common/common.xsl,1.58; common/refentry.xsl,1.7; +params/man.th.extra2.max.length.xml,1.2; +params/refentry.date.profile.xml,1.2; +params/refentry.manual.profile.xml,1.2; +params/refentry.source.name.profile.xml,1.2; +params/refentry.version.profile.xml,1.2; manpages/docbook.xsl,1.58; +manpages/other.xsl,1.15 - Michael(tm) Smith

      +
    • +

      Added option for turning off bold +formatting in Funcsynopsis. Boldface formatting in +function synopsis is mandated in the +man(7) man page and is used almost universally in existing man +pages. Despite that, it really does look like crap to have an +entire Funcsynopsis output in bold, so I added params +for turning off the bold formatting and/or replacing it with a +different roff special font (e.g., "RI" for alternating +roman/italic instead of the default "BI" for alternating +bold/italic). The new params +are "man.funcprototype.font" and +"man.funcsynopsisinfo.font". To be documented +later.

      +

      Closes #1452247. Thanks to Joe Orton for the feature +request.

      +

      Modified: params/man.string.subst.map.xml,1.16; +manpages/block.xsl,1.10; manpages/docbook.xsl,1.51; +manpages/inline.xsl,1.16; manpages/synop.xsl,1.27 - Michael(tm) +Smith

      +
    • +

      fop.extensions now only +for FOP version 0.20.5 and earlier.

      +

      Modified: params/fop.extensions.xml,1.4 +- Robert Stayton

      +
    • +

      Support for fop1 different from +fop 0.20.5 and earlier.

      +

      Modified: params/fop1.extensions.xml,1.1 - Robert +Stayton

      +
    • +

      Reset default value to empty +string so template uses gentext first, then the parameter value +if not empty.

      +

      Modified: params/index.number.separator.xml,1.2; +params/index.range.separator.xml,1.2; +params/index.term.separator.xml,1.2 - Robert +Stayton

      +
    • +

      New parameter: +id.warnings. If non-zero, warnings are +generated for titled objects that don't have titles. True by default; +I wonder if this will be too aggressive?

      +

      Modified: html/biblio.xsl,1.25; +html/component.xsl,1.27; html/division.xsl,1.11; html/formal.xsl,1.19; +html/glossary.xsl,1.20; html/html.xsl,1.13; html/index.xsl,1.16; +html/param.ent,1.88; html/param.xweb,1.97; html/refentry.xsl,1.22; +html/sections.xsl,1.30; params/id.warnings.xml,1.1 - Norman +Walsh

      +
    • +

      Added new parameter +keep.relative.image.uris

      +

      Modified: fo/param.ent,1.91; +fo/param.xweb,1.104; html/param.ent,1.87; html/param.xweb,1.96; +params/keep.relative.image.uris.xml,1.1 - Norman +Walsh

      +
    • +

      Support default label +width parameters for itemized and ordered lists

      +

      Modified: fo/lists.xsl,1.64; +fo/param.ent,1.90; fo/param.xweb,1.103; +params/itemizedlist.label.width.xml,1.1; +params/orderedlist.label.width.xml,1.1 - Norman +Walsh

      +
    • +

      Added parameters to localize +punctuation in indexes.

      +

      Modified: params/index.number.separator.xml,1.1; +params/index.range.separator.xml,1.1; +params/index.term.separator.xml,1.1 - Robert +Stayton

      +
    • +

      Added two new parameters for +handling of multi-term +varlistentry elements:

      +

      variablelist.term.break.after: +When the variablelist.term.break.after is +non-zero, it will generate a line break after each +term multi-term +varlistentry.

      +

      variablelist.term.separator: +When a varlistentry contains multiple term +elements, the string specified in the value of the +variablelist.term.separator parameter is +placed after each term except the last. The default +is ", " (a comma followed by a space). To suppress rendering of +the separator, set the value of +variablelist.term.separator to the empty +string ("").

      +

      These parameters are primarily intended to be +useful if you have multi-term varlistentries that have long +terms.

      +

      Closes #1306676. Thanks to Sam Steingold for +providing an example "lots of long terms" doc that demonstrated +the value of having these options.

      +

      Also, added +normalize-space() call to processing of each +term.

      +

      This change affects all output formats +(HTML, PDF, manpages). The default behavior should pretty much +remain the same as before, but it is possible (as always) that +the change may introduce some +new bugginess.

      +

      Modified: fo/lists.xsl,1.62; fo/param.ent,1.88; +fo/param.xweb,1.99; html/lists.xsl,1.48; html/param.ent,1.86; +html/param.xweb,1.93; manpages/lists.xsl,1.22; +manpages/param.ent,1.14; manpages/param.xweb,1.16; +params/variablelist.term.break.after.xml,1.1; +params/variablelist.term.separator.xml,1.1 - Michael(tm) +Smith

      +
    • +

      Convert 'no' to string in default +value.

      +

      Modified: params/olink.doctitle.xml,1.4 - Robert +Stayton

      +
    • +

      Implemented RFE +#1292615.

      +

      Added bunch of new parameters (attribute sets) +that affect list presentation: list.block.properties, +itemizedlist.properties, orderedlist.properties, +itemizedlist.label.properties and +orderedlist.label.properties. Default behaviour +of stylesheets has not been changed but further customizations will be +much more easier.

      +

      Modified: fo/lists.xsl,1.61; fo/param.ent,1.87; +fo/param.xweb,1.98; params/itemizedlist.label.properties.xml,1.1; +params/itemizedlist.properties.xml,1.1; +params/list.block.properties.xml,1.1; +params/orderedlist.label.properties.xml,1.1; +params/orderedlist.properties.xml,1.1 - Jirka +Kosek

      +
    • +

      Implemented RFE +#1242092.

      +

      You can enable crop marks in your document by +setting crop.marks=1 and xep.extensions=1. Appearance of crop +marks can be controlled by parameters +crop.mark.bleed (6pt), +crop.mark.offset (24pt) and +crop.mark.width (0.5pt).

      +

      Also there +is new named template called user-xep-pis. You can overwrite it in +order to produce some PIs that can control XEP as described in +http://www.renderx.com/reference.html#Output_Formats

      +

      Modified: fo/docbook.xsl,1.36; +fo/param.ent,1.86; fo/param.xweb,1.97; fo/xep.xsl,1.23; +params/crop.mark.bleed.xml,1.1; params/crop.mark.offset.xml,1.1; +params/crop.mark.width.xml,1.1; params/crop.marks.xml,1.1 - Jirka +Kosek

      +
    • +

      Changed short descriptions in doc +for *autolabel* params to match new autolabel +behavior.

      +

      Modified: params/appendix.autolabel.xml,1.5; +params/chapter.autolabel.xml,1.4; params/part.autolabel.xml,1.5; +params/preface.autolabel.xml,1.4 - Michael(tm) +Smith

      +
    +
    + +

    Profiling

    + +

    The following changes have been made to the + profiling code + since the 1.69.1 release.

    +
    • +

      Profiling now works together with +namespace stripping (V5 documents). Namespace striping should work +with all stylesheets named profile-, even if they are not supporting +namespace stripping in a non-profiling +variant.

      +

      Modified: profiling/profile-mode.xsl,1.4; +profiling/xsl2profile.xsl,1.7 - Jirka Kosek

      +
    • +

      Moved profiling stage out of +templates. This make possible to reuse profiled content by several +templates and still maintaing node indentity (needed for example for +HTML Help where content is processed multiple times).

      +

      I +don't know why this was not on the top level before. Maybe some XSLT +processors choked on it. I hope this will be OK +now.

      +

      Modified: profiling/xsl2profile.xsl,1.5 - Jirka +Kosek

      +
    +
    + +

    Tools

    + +

    The following changes have been made to the + tools code + since the 1.69.1 release.

    +
    • +

      Moved Makefile.DocBook from +contrib module to xsl +module.

      +

      Modified: tools/make/Makefile.DocBook,1.1 - Michael(tm) +Smith

      +
    +
    + +

    WordML

    + +

    The following changes have been made to the + wordml code + since the 1.69.1 release.

    +
    • +

      added contrib element, +better handling of default paragraph +style

      +

      Modified: wordml/pages-normalise.xsl,1.6; wordml/supported.xml,1.2; +wordml/wordml-final.xsl,1.14 - Steve Ball

      +
    • +

      added +bridgehead

      +

      Modified: wordml/docbook-pages.xsl,1.6; +wordml/docbook.xsl,1.17; wordml/pages-normalise.xsl,1.5; +wordml/template-pages.xml,1.7; wordml/template.dot,1.4; +wordml/template.xml,1.14; wordml/wordml-final.xsl,1.13 - Steve +Ball

      +
    • +

      added blocks stylesheet to support +bibliographies, glossaries and qandasets

      +

      Modified: wordml/Makefile,1.4; +wordml/README,1.3; wordml/blocks-spec.xml,1.1; +wordml/docbook-pages.xsl,1.5; wordml/docbook.xsl,1.16; +wordml/pages-normalise.xsl,1.4; wordml/sections-spec.xml,1.3; +wordml/specifications.xml,1.13; wordml/template-pages.xml,1.6; +wordml/template.dot,1.3; wordml/template.xml,1.13; +wordml/wordml-blocks.xsl,1.1; wordml/wordml-final.xsl,1.12; +wordml/wordml-sections.xsl,1.3 - Steve Ball

      +
    • +

      added mediaobject +caption

      +

      Modified: wordml/docbook-pages.xsl,1.4; +wordml/docbook.xsl,1.15; wordml/specifications.xml,1.12; +wordml/template-pages.xml,1.5; wordml/template.dot,1.2; +wordml/template.xml,1.12; wordml/wordml-final.xsl,1.11 - Steve +Ball

      +
    • +

      added +callouts

      +

      Modified: wordml/docbook-pages.xsl,1.3; wordml/docbook.xsl,1.14; +wordml/pages-normalise.xsl,1.3; wordml/specifications.xml,1.11; +wordml/template-pages.xml,1.4; wordml/wordml-final.xsl,1.10 - Steve +Ball

      +
    • +

      added Word template +file

      +

      Modified: wordml/template.dot,1.1 - Steve Ball

      +
    • +

      added abstract, fixed +itemizedlist, ulink

      +

      Modified: wordml/specifications.xml,1.10; +wordml/wordml-final.xsl,1.9 - Steve Ball

      +
    • +

      fixed Makefile added many +features to Pages support added revhistory, inlines, +highlights, abstract

      +

      Modified: wordml/Makefile,1.2; +wordml/docbook-pages.xsl,1.2; wordml/pages-normalise.xsl,1.2; +wordml/sections-spec.xml,1.2; wordml/specifications.xml,1.9; +wordml/template-pages.xml,1.3; wordml/template.xml,1.11; +wordml/wordml-final.xsl,1.8; wordml/wordml-sections.xsl,1.2 - Steve +Ball

      +
    • +

      fixed handling linebreaks when +generating WordML added Apple Pages +support

      +

      Modified: wordml/docbook.xsl,1.13; wordml/template-pages.xml,1.2 - +Steve Ball

      +
    +
    +
    + +

    Release 1.69.1

    + +

    This release is a minor bug-fix update to the 1.69.0 + release. Along with bug fixes, it includes one + configuration-parameter change: The default value of the + annotation.support parameter is now + 0 (off). The reason for that change is that + there have been reports that annotation handling is + causing a significant performance degradation in processing of + large documents with xsltproc.

    +
    + + +

    Release 1.69.0

    + +

    The release includes major feature changes, + particularly in the manpages + stylesheets, as well as a large number of bug fixes.

    + +

    As with all DocBook Project dot zero releases, this is an + experimental release .

    + +

    Common

    + +
    • +

      This release adds localizations for the following + languages: + Albanian, Amharic, Azerbaijani, Hindi, Irish (Gaelic), Gujarati, Kannada, Mongolian, Oriya, Punjabi, Tagalog, Tamil, and Welsh.

      +
    • +

      Added support for specifying number format for auto + labels for chapter, appendix, + part, and preface. Contolled with the + appendix.autolabel, + chapter.autolabel, + part.autolabel, and + preface.autolabel parameters.

      +
    • +

      Added basic support for biblioref cross + referencing.

      +
    • +

      Added support for align + on caption in mediaobject.

      +
    • +

      Added support for processing documents that use the + DocBook V5 namespace.

      +
    • +

      Added support for termdef and + mathphrase.

      +
    • +

      EXPERIMENTAL: Incorporated the Slides and Website + stylesheets into the DocBook XSL stylesheets package. So, + for example, Website documents can now be processed using + the following URI for the driver Website + tabular.xsl file:

      http://docbook.sourceforge.net/release/xsl/current/website/tabular.xsl
      +
    • +

      A procedure without a title is + now treated as an informal procedure (meaning + that it is not added to any generated list of + procedures and has no affect on numbering of + generated labels for other procedures).

      +
    • +

      docname is no longer added to + olink when pointing to a root element.

      +
    • +

      Added support for generation of choice separator in + inline simplelist. This enables auto-generation of an + appropriate localized choice separator (for + example, and or or) before the + final item in an inline simplelist.

      +

      To indicate that you want a choice separator + generated for a particular list, you need to put a processing + instruction (PI) of the form + <?dbchoice choice="foo"?> as a + child of the list. For example: +

        <para>Choose from
      +  ONE and ONLY ONE of the following: 
      +  <simplelist type="inline">
      +  <?dbchoice choice="or" ?>
      +  <member>A</member>
      +  <member>B</member>
      +  <member>C</member>.</simplelist></para>

      + + Output (for English): +

      +

      Choose from ONE and only ONE of the + following choices: A, B, or C.

      +

      + As a temporary workaround for the fact that most of the + DocBook non-English locale files don't have a localization for + the word or, you can put in a literal string to + be used; example for French: <?dbchoice choice="ou">. That is, use + ou instead of or.

      +
    +
    +

    FO

    + +
    • +

      Added content-type property to + external-graphic element, based on + imagedata format + attribute.

      +
    • +

      Added support for generating + <rx:meta-field creator="$VERSION"/> + field for XEP output. This makes the DocBook XSL + stylesheet version information available through the + Document Properties menu in Acrobat + Reader and other PDF viewers.

      +
    • +

      Trademark symbol handling made consistent with + handling of same in HTML stylesheets. Prior to this change, + if you processed a document that contained no value for the + class attribute on the + trademark element, the HTML stylesheets would + default to rendering a superscript TM + symbol after the trademark contents, + but the FO stylesheets would render nothing.

      +
    • +

      Added support for generating XEP bookmarks for + refentry.

      +
    • +

      Added support for HTML markup table border attribute, applied to each + table cell.

      +
    • +

      The table.width template can now + sum column specs if none use % or + *.

      +
    • +

      Added fox:destination extension + inside fox:outline to support linking to + internal destinations.

      +
    • +

      Added support for customizing + abstract with property sets. Controlled + with the abstract.properties and + abstract.title.properties + parameters.

      +
    • +

      Add footnotes in table title to + table footnote set, and add support for table footnotes to + HTML table markup.

      +
    • +

      Added support for title in + glosslist.

      +
    • +

      Added support for itemizedlist symbol + none.

      +
    • +

      Implemented the new + graphical.admonition.properties and + nongraphical.admonition.properties + attribute sets.

      +
    • +

      Added id to + formalpara and some other blocks that were + missing it.

      +
    • +

      Changed the anchor template to output + fo:inline instead of + fo:wrapper.

      +
    • +

      Added support for toc.max.depth + parameter.

      +
    +
    + +

    Help

    + +
    • +

      Eclipse Help: Added support for generating olink + database.

      +
    +
    + +

    HTML

    + +
    +
    +

    man

    + +

    This release closes out 44 manpages stylesheet bug reports + and feature requests. It adds more than 35 new configuration + parameters for controlling aspects of man-page output -- + including hyphenation and justification, handling of links, + conversion of Unicode characters, and contents of man-page + headers and footers.

    +
    • +

      New options for globally disabling/enabling + hyphenation and justification: + man.justify and + man.hyphenate.

      +

      Note that the default + for the both of those is zero (off), because justified text + looks good only when it is also hyphenated; to quote the + Hyphenation node from the groff info page: +

      +

      Since the odds are not great for finding a + set of words, for every output line, which fit nicely on a + line without inserting excessive amounts of space between + words, `gtroff' hyphenates words so that it can justify + lines without inserting too much space between + words.

      +

      + The problem is that groff can end up hyphenating a lot of + things that you don't want hyphenated (variable names and + command names, for example). Keeping both justification and + hyphenation disabled ensures that hyphens won't get inserted + where you don't want to them, and you don't end up with + lines containing excessive amounts of space between + words. These default settings run counter to how most + existing man pages are formatted. But there are some notable + exceptions, such as the perl man pages.

      +
    • +

      Added parameters for controlling hyphenation of + computer inlines, filenames, and URLs. By default, even when + hyphenation is enabled (globally), hyphenation is now + suppressed for "computer inlines" (currently, just + classname, constant, envar, + errorcode, option, + replaceable, userinput, + type, and varname, and for + filenames, and for URLs from link. It + can be (re)enabled using the + man.hyphenate.computer.inlines, + man.hyphenate.filenames, and + man.hyphenate.urls parameters.

      +
    • +

      Implemented a new system for replacing Unicode + characters. There are two parts to the new system: a + string substitution map for doing + essential replacements, and a + character map that can optionally be disabled + and enabled.

      +

      The new system fixes all open bugs that had to do with + literal Unicode numbered entities such as &#8220; and + &#8221; showing up in output, and greatly expands the + ability of the stylesheets to generate good roff + equivalents for Unicode symbols and special + characters.

      +

      Here are some details...

      +

      The previous manpages mechanism for replacing Unicode + symbols and special characters with roff equivalents (the + replace-entities template) was not + scalable and not complete. The mechanism handled a somewhat + arbitrary selection of less than 20 or so Unicode + characters. But there are potentially more than + 800 Unicode special characters that + have some groff equivalent they can be mapped to. And there + are about 34 symbols in the Latin-1 (ISO-8859-1) block + alone. Users might reasonably expect that if they include + any of those Latin-1 characters in their DocBook source + documents, they will get correctly converted to known roff + equivalents in output.

      +

      In addition to those common symbols, certain users may + have a need to use symbols from other Unicode blocks. Say, + somebody who is documenting an application related to math + might need to use a bunch of symbols from the + Mathematical Operators Unicode block (there + are about 65 characters in that block that have reasonable + roff equivalents). Or somebody else might really like + Dingbats -- such as the checkmark character -- and so might + use a bunch of things from the Dingbat block + (141 characters in that that have roff equivalents or that + can at least be degraded somewhat gracefully + into roff).

      +

      So, the old replace-entities + mechanism was replaced with a completely different mechanism + that is based on use of two maps: a + substitution map and a character + map (the latter in a format compliant with the XSLT + 2.0 spec and therefore completely forward + compatible with XSLT 2.0).

      +

      The substitution map is controlled through the + man.string.subst.map parameter, and + is used to replace things like the backslash character + (which needs special handling to prevent it from being + interpreted as a roff escape). The substitution map cannot + be disabled, because disabling it will cause the output to + be broken. However, you can add to it and change it if + needed.

      + +

      The character map mechanism, on the + other hand, can be completely disabled. It is enabled by + default, and, by default, does replacement of all Latin-1 + symbols, along with most special spaces, dashes, and quotes + (about 75 characters by default). Also, you can optionally + enable a full character map that provides + support for converting all 800 or so of the characters that + have some reasonable groff equivalent.

      + +

      The character-map mechanism is controlled through the + following parameters: +

      man.charmap.enabled

      turns character-map support + on/off

      man.charmap.use.subset

      specifies that a subset of the character + map is used instead of the full map

      man.charmap.subset.profile

      specifies profile of character-map + subset

      man.charmap.uri

      specifies an alternate character map to + use instead of the standard character map + provided in the distribution

      +

      +
    • +

      Implemented out-of-line handling of display of URLs + for links (currently, only for ulink). This gives + you three choices for handling of links: +

      1. +

        Number and list links. Each link is numbered + inline, with a number in square brackets preceding the + link contents, and a numbered list of all links is added + to the end of the document.

        +
      2. +

        Only list links. Links are not numbered, but an + (unnumbered) list of links is added to the end of the + document.

        +
      3. +

        Suppress links. Don't number links and don't add + any list of links to the end of the document.

        +

      + You can also choose whether links should be underlined. The + default is the works -- list, number, and + underline links. You can use the + man.links.list.enabled, + man.links.are.numbered, and + man.links.are.underlined parameters + to change the defaults. The default heading for the link + list is REFERENCES. You can be change that using the + man.links.list.heading + parameter.

      +
    • +

      Changed default output encoding to UTF-8. This does not mean that man pages are output in + raw UTF-8, because the character map is applied + before final output, causing all UTF-8 characters covered in + the map to be converted to roff equivalents.

      +
    • +

      Added support for processing refsect3 and + formalpara and nested refsection + elements, down to any arbitrary level of nesting.

      +
    • +

      Output of the NAME and + SYNOPSIS and AUTHOR + headings and the headings for admonitions (note, + caution, etc.) are no longer hard-coded for + English. Instead, headings are generated for those in the + correct locale (just as the FO and HTML stylesheets + do).

      +
    • +

      Re-worked mechanism for assembling page + headers/footers (the contents of the .TH + macro title line).

      + +

      Here are some details...

      + +

      All man pages contain a .TH roff + macro whose contents are used for rendering the title + line displayed in the header and footer of each + page. Here are a couple of examples of real-world man pages + that have useful page headers/footers:

      +  gtk-options(7)    GTK+ User's Manual   gtk-options(7) <-- header
      +  GTK+ 1.2              2003-10-20       gtk-options(7) <-- footer
      +
      +  svgalib(7)       Svgalib User Manual       svgalib(7) <-- header
      +  Svgalib 1.4.1      16 December 1999        svgalib(7) <-- footer
      + +

      And here are the terms with which the + groff_man(7) man page refers to the + various parts of the header/footer:

      +  title(section)  extra3  title(section)  <- header
      +  extra2          extra1  title(section)  <- footer
      +

      Or, using the names with which the man(7) + man page refers to those same fields:

      +  title(section)  manual  title(section)  <- page header
      +  source          date    title(section)  <- page footer
      + +

      The easiest way to control the contents of those + fields is to mark up your refentry content like + the following (note that this is a minimal + example).

      +  <refentry>
      +    <info>
      +      <date>2003-10-20</date> 1
      +    </info>
      +    <refmeta>
      +      <refentrytitle>gtk-options</refentrytitle> 2
      +      <manvolnum>7</manvolnum> 3
      +      <refmiscinfo class="source-name">GTK+</refmiscinfo> 4
      +      <refmiscinfo class="version">1.2</refmiscinfo> 5
      +      <refmiscinfo class="manual">GTK+ User's Manual</refmiscinfo> 6
      +    </refmeta>
      +    <refnamediv>
      +      <refname>gtk-options</refname>
      +      <refpurpose>Standard Command Line Options for GTK+ Programs</refpurpose>
      +    </refnamediv>
      +    <refsect1>
      +      <title>Description</title>
      +      <para>This manual page describes the command line options, which
      +      are common to all GTK+ based applications.</para>
      +    </refsect1>
      +  </refentry>

      +

      1

      +

      Sets the date part of the header/footer.

      +

      2

      +

      Sets the title part.

      +

      3

      +

      Sets the section part.

      +

      4

      +

      Sets the source name part.

      +

      5

      +

      Sets the version part.

      +

      6

      +

      Sets the manual part.

      +

      +

      +

      Below are explanations of the steps the stylesheets + take to attempt to assemble and display + good headers and footer. [In the + descriptions, note that *info + is the refentry info child + (whatever its name), and + parentinfo is the + info child of its parent (again, whatever + its name).] +

      extra1 field (date)
      +

      Content of the extra1 field is + what shows up in the center + footer position of each page. The + man(7) man page describes it as + the date of the last revision.

      +

      To provide this content, if the + refentry.date.profile.enabled + is non-zero, the stylesheets check the value of + refentry.date.profile.

      +

      Otherwise, by default, they check for a + date or pubdate not only in the + *info contents, but also in + the parentinfo + contents.

      +

      If a date cannot be found, the stylesheets now + automatically generate a localized long + format date, ensuring that this field always + has content in output.

      +

      However, if for some reason you want to suppress + this field, you can do so by setting a non-zero value + for man.th.extra1.suppress.

      +
      extra2 field (source)
      +

      On Linux systems and on systems with a modern + groff, the content of the extra2 field + are what shows up in the left + footer position of each page.

      + +

      The man(7) man page describes + this as the source of the command, and + provides the following examples: +

      • +

        For binaries, use somwething like: GNU, + NET-2, SLS Distribution, MCC Distribution.

        +
      • +

        For system calls, use the version of the + kernel that you are currently looking at: Linux + 0.99.11.

        +
      • +

        For library calls, use the source of the + function: GNU, BSD 4.3, Linux DLL 4.4.1.

        +

      +

      + +

      In practice, there are many pages that simply + have a version number in the source + field. So, it looks like what we have is a two-part + field, + Name Version, + where: +

      Name
      +

      product name (e.g., BSD) or org. name + (e.g., GNU)

      +
      Version
      +

      version name

      +

      + Each part is optional. If the + Name is a product name, + then the Version is + probably the version of the product. Or there may be + no Name, in which case, if + there is a Version, it is + probably the version of the item itself, not the + product it is part of. Or, if the + Name is an organization + name, then there probably will be no + Version. +

      +

      To provide this content, if the + refentry.source.name.profile.enabled + and + refentry.version.profile.enabled + parameter are non-zero, the stylesheets check the + value of refentry.source.name.profile + refentry.version.profile.

      + +

      Otherwise, by default, they check the following + places, in the following order: +

      1. +
        *info/productnumber
        +
      2. +
        *info/productnumber
        +
      3. +
        refmeta/refmiscinfo[@class = 'version']
        +
      4. +
        parentinfo/productnumber
        +
      5. +
        *info/productname
        +
      6. +
        parentinfo/productname
        +
      7. +
        refmeta/refmiscinfo
        +
      8. +

        [nothing found, so leave it empty]

        +

      +

      +
      extra3 field
      +

      On Linux systems and on systems with a modern + groff, the content of the extra3 field + are what shows up in the center + header position of each page. Some man + pages have extra2 content, some + don't. If a particular man page has it, it is most + often context data about some larger + system the documented item belongs to (for example, + the name or description of a group of related + applications). The stylesheets now check the following + places, in the following order, to look for content to + add to the extra3 field.

      +
      1. +
        parentinfo/title
        +
      2. +
        parent's title
        +
      3. +
        refmeta/refmiscinfo
        +
      4. +

        [nothing found, so leave it empty]

        +
      +

      +

      +
    • +

      Reworked *info gathering. For + each refentry found, the stylesheets now cache its + *info content, then check for any + valid parent of it that might have metainfo content and cache + that, if found; they then then do all further matches against + those node-sets (rather than re-selecting the original + *info nodes each time they are + needed).

      +
    • +

      New option for breaking strings after forward + slashes. This enables long URLs and pathnames to be broken + across lines. Controlled through + man.break.after.slash parameter.

      +
    • +

      Output for servicemark and trademark are now + (SM) and (TM). There is + a groff "\(tm" escape, but output from that + is not acceptable.

      +
    • +

      New option for controlling the length of the title + part of the .TH title line. Controlled + through the man.th.title.max.length + parameter.

      +
    • +

      New option for specifying output encoding of each man + page; controlled with + man.output.encoding (similar to the + HTML chunker.output.encoding + parameter).

      +
    • +

      New option for suppressing filename messages when + generating output; controlled with + man.output.quietly (similar to the HTML + chunk.quietly parameter).

      +
    • +

      The text of cross-references to first-level + refentry (refsect1, top-level + refsection, refnamediv, and + refsynopsisdiv) are now capitalized.

      +
    • +

      Cross-references to refnamediv now use the + localized NAME title instead of using the + first refname child. This makes the output + inconsistent with HTML and FO output, but for man-page output, + it seems to make better sense to have the + NAME. (It may actually make better sense to + do it that way in HTML and FO output as well...)

      +
    • +

      Added support for processing funcparams.

      +
    • +

      Removed the space that was being output between + funcdef and paramdef; example: was: + float rand (void); now: + float rand(void)

      +
    • +

      Turned off bold formatting for the type + element when it occurs within a funcdef or + paramdef

      +
    • +

      Corrected rendering of simplelist. Any + <simplelist type="inline" instance + is now rendered as a comma-separated list (also with an + optional localized and or or before the last item -- see + description elsewhere in these release notes). Any simplelist + instance whose type is not + inline is rendered as a one-column vertical + list (ignoring the values of the type and columns attributes if present)

      +
    • +

      Comment added at top of roff source for each page now + includes DocBook XSL stylesheets version number (as in the + HTML stylesheets)

      +
    • +

      Made change to prevent sticky fonts + changes. Now, when the manpages stylesheets encounter node + sets that need to be boldfaced or italicized, they put the + \fBfoo\fR and \fIbar\fR + groff bold/italic instructions separately around each node in + the set.

      +
    • +

      synop.xsl: Boldface everything in + funcsynopsis output except parameters (which are in + ital). The man(7) man page says: +

      +

      For functions, the arguments are always specified + using italics, even in the SYNOPSIS section, where the rest + of the function is specified in bold.

      +

      + A look through the contents of the + man/man2 directory shows that most + (all) existing pages do follow this everything in + funcsynopsis bold rule. That means the + type content and any punctuation (parens, + semicolons, varargs) also must be bolded.

      +
    • +

      Removed code for adding backslashes before periods/dots + in roff source, because backslashes in front of periods/dots + in roff source are needed only in the very rare case where a + period is the very first character in a line, without any + space in front of it. A better way to deal with that rare case + is for you to add a zero-width space in front of the offending + dot(s) in your source

      +
    • +

      Removed special handling of the quote + element. That was hard-coded to cause anything marked up with + the quote element to be output preceded by two + backticks and followed by two apostrophes -- that is, that + old-school kludge for generating curly quotes in Emacs and + in X-Windows fonts. While Emacs still seems to support that, I + don't think X-Windows has for a long time now. And, anyway, it + looks (and has always looked) like crap when viewed on a + normal tty/console. In addition, it breaks localiztion of + quote. By default, quote content is + output with localized quotation marks, which, depending on the + locale, may or may not be left and right double quotation + marks.

      +
    • +

      Changed mappings for left and right single quotation + marks. Those had previously been incorrectly mapped to the + backtick (&#96;) and apostrophe (&39;) characters (for + kludgy reasons -- see above). They are now correctly mapped to + the \(oq and \(cq roff + escapes. If you want the old (broken) behavior, you need to + manually change the mappings for those in the value of the + man.string.subst.map parameter.

      +
    • +

      Removed xref.xsl file. Now, of the + various cross-reference elements, only the ulink + element is handled differently; the rest are handled exactly + as the HTML stylesheets handle them, except that no hypertext + links are generated. (Because there is no equivalent hypertext + mechanism is man pages.)

      +
    • +

      New option for making subheading dividers in generated + roff source. The dividers are not visible in the rendered man + page; they are just there to make the source + readable. Controlled using + man.subheading.divider.

      +
    • +

      Fixed many places where too much space was being added + between lines.

      +
    + +
    +
    + + +

    Release 1.68.1

    + +

    The release adds localization support for Farsi (thanks to + Sina Heshmati) and improved support for the XLink-based DocBook NG + db:link element. Other than that, it is a minor + bug-fix update to the 1.68.0 release. The main thing it fixes is a + build error that caused the XSLT Java extensions to be jarred up + with the wrong package structure. Thanks to Jens Stavnstrup for + quickly reporting the problem, and to Mauritz Jeanson for + investigating and finding the cause.

    +
    + + +

    Release 1.68.0

    + +

    This release includes some features changes, particularly + for FO/PDF output, and a number of bug fixes. +

    FO

    • +

      Moved footnote properties to attribute-sets.

      +
    • +

      Added support for side floats, margin notes, and + custom floats.

      +
    • +

      Added new parameters + body.start.indent and + body.end.indent to the + set.flow.properties template.

      +
    • +

      Added support for xml:id

      +
    • +

      Added support for + refdescriptor.

      +
    • +

      Added support for multiple refnamedivs.

      +
    • +

      Added index.entry.properties + attribute-set to support customization of index + entries.

      +
    • +

      Added set.flow.properties + template call to each fo:flow + to support customizations entry point.

      +
    • +

      Add support for @floatstyle in + figure

      +
    • +

      Moved hardcoded properties for index division titles + to the index.div.title.properties + attribute-set.

      +
    • +

      Added support for + table-layout="auto" for XEP.

      +
    • +

      Added index.div.title.properties + attribute-set.

      +
    • +

      $verbose parameter is now + passed to most elements.

      +
    • +

      Added refentry to + toc in part, as it is + permitted by the DocBook schema/DTD.

      +
    • +

      Added backmatter elements and + article to toc in + part, since they are permitted by the + DocBook schema/DTD.

      +
    • +

      Added mode="toc" for + simplesect, since it is now permitted in + the toc if + simplesect.in.toc is set.

      +
    • +

      Moved hard-coded properties to + nongraphical.admonintion.properties + and graphical.admonition.properties + attribute sets.

      +
    • +

      Added support for sidebar-width and + float-type processing instructions in + sidebar.

      +
    • +

      For tables with HTML markup elements, added support + for dbfo bgcolor PI, the attribute-sets + named table.properties, + informaltable.properties, + table.table.properties, and + table.cell.padding. Also added + support for the templates named + table.cell.properties and + table.cell.block.properties so that + tabstyles can be implemented. Also added support for tables + containing only tr instead of + tbody with tr.

      +
    • +

      Added new paramater + hyphenate.verbatim.characters which + can specify characters after which a line break can occur in + verbatim environments. This parameter can be used to extend + the initial set of characters which contain only space and + non-breakable space.

      +
    • +

      Added itemizedlist.label.markup to enable + selection of different bullet symbol. Also added several + potential bullet characters, commented out by default.

      +
    • +

      Enabled all id's in XEP output for external olinking.

      +

    + +

    HTML

    +

    Images

    • +

      Added new SVG admonition graphics and navigation images.

      +

    +

    +
    + + +

    Release 1.67.2

    + +

    This release fixes a table bug introduced in the 1.67.1 + release.

    +
    +

    Release 1.67.1

    + +

    This release includes a number of bug fixes.

    +

    The following lists provide details about API and feature changes. +

    FO

    • +

      Tables: Inherited cell properties are now passed to the + table.cell.properties template so they can + be overridden by a customization.

      +
    • +

      Tables: Added support for bgcolor PI on table row + element.

      +
    • +

      TOCs: Added new parameter + simplesect.in.toc; default value of + 0 causes simplesect to be omitted from TOCs; to + cause simplesect to be included in TOCs, you + must set the value of simplesect.in.toc to + 1.Comment from Norm: + +

      +

      Simplesect elements aren't supposed to + appear in the ToC at all... The use case for simplesect + is when, for example, every chapter in a book ends with + "Exercises" or "For More Information" sections and you + don't want those to appear in the ToC.

      +

      +

      +
    • +

      Sections: Reverted change that caused a variable reference + to be used in a template match and rewrote code to preserve + intended semantics.

      +
    • +

      Lists: Added workaround to prevent "* 0.60 + 1em" garbage in + list output from PassiveTeX

      +
    • +

      Moved the literal attributes from + component.title to the + component.title.properties attribute-set so + they can be customized.

      +
    • +

      Lists: Added glossdef's first + para to special handling in + fo:list-item-body.

      +

    + +

    HTML

    +

    HTML Help

    • +

      Added support for generating windows-1252-encoded + output using Saxon; for more details, see the list of XSL Java extensions changes for this release.

      +

    +

    man pages

    • +

      Replaced named/numeric character-entity references for + non-breaking space with groff equivalent (backslash-tilde).

      +

    +

    XSL Java extensions

    • +

      Saxon extensions: Added the + Windows1252 class. It extends Saxon + 6.5.x with the windows-1252 character set, which is + particularly useful when generating HTML Help for Western + European Languages (code from + Pontus Haglund and contributed to the + DocBook community by Sectra AB, Sweden).

      +

      To use: +

      1. +

        Make sure that the Saxon 6.5.x jar file and the jar file for + the DocBook XSL Java extensions are in your CLASSPATH

        +
      2. +

        Create a DocBook XSL customization layer -- a file named + mystylesheet.xsl or whatever -- that, at a + minimum, contains the following: +

          <xsl:stylesheet
        +    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
        +    version='1.0'>
        +    <xsl:import href="http://docbook.sourceforge.net/release/xsl/current/htmlhelp/htmlhelp.xsl"/>
        +    <xsl:output method="html" encoding="WINDOWS-1252" indent="no"/>
        +    <xsl:param name="htmlhelp.encoding" select="'WINDOWS-1252'"></xsl:param>
        +    <xsl:param name="chunker.output.encoding" select="'WINDOWS-1252'"></xsl:param>
        +    <xsl:param name="saxon.character.representation" select="'native'"></xsl:param>
        +  </xsl:stylesheet>

        +

        +

        Invoke Saxon with the + encoding.windows-1252 Java system property set + to com.nwalsh.saxon.Windows1252; for example +

          java \
        +    -Dencoding.windows-1252=com.nwalsh.saxon.Windows1252 \
        +  com.icl.saxon.StyleSheet \
        +  mydoc.xml mystylesheet.xsl

        + + Or, for a more complete "real world" case showing other + options you'll typically want to use: +

          java \
        +    -Dencoding.windows-1252=com.nwalsh.saxon.Windows1252 \
        +    -Djavax.xml.parsers.DocumentBuilderFactory=org.apache.xerces.jaxp.DocumentBuilderFactoryImpl \
        +    -Djavax.xml.parsers.SAXParserFactory=org.apache.xerces.jaxp.SAXParserFactoryImpl \
        +    -Djavax.xml.transform.TransformerFactory=com.icl.saxon.TransformerFactoryImpl \
        +  com.icl.saxon.StyleSheet \
        +    -x org.apache.xml.resolver.tools.ResolvingXMLReader \
        +    -y org.apache.xml.resolver.tools.ResolvingXMLReader \
        +    -r org.apache.xml.resolver.tools.CatalogResolver \
        +  mydoc.xml mystylesheet.xsl

        + + In both cases, the "mystylesheet.xsl" file should be a + DocBook customization layer containing the parameters + show in step 2.

        +

      +

      +
    • +

      Saxon extensions: Removed Saxon 8 extensions from release package

      +

    +

    +
    +

    Release 1.67.0

    + +
    • +

      A number of important bug fixes.

      +
    • +

      Added Saxon8 extensions

      +
    • +

      Enabled dbfo table-width on + entrytbl in FO output

      +
    • +

      Added support for role=strong on + emphasis in FO output

      +
    • +

      Added new FO parameter + hyphenate.verbatim that can be used to turn + on "intelligent" wrapping of verbatim environments.

      +
    • +

      Replaced all <tt></tt> output with + <code></code>

      +
    • +

      Changed admon.graphic.width template to a + mode so that different admonitions can have different graphical + widths.

      +
    • +

      Deprecated the HTML shade.verbatim + parameter (use CSS instead)

      +
    • +

      Wrapped ToC + refentrytitle/refname and + refpurpose in span with class values. This + makes it possible to style them using a CSS stylesheet.

      +
    • +

      Use strong/em instead of + b/i in HTML output

      +
    • +

      Added support for converting Emphasis to + groff italic and Emphasis role='bold' to + bold. Controlled by + emphasis.propagates.style param, but not + documented yet using litprog system. Will do that next (planning + to add some other parameter-controllable options for hyphenation + and handling of line spacing).

      +
    • +

      callout.graphics.number.limit.xml + param: Changed the default from 10 to + 15.

      +
    • +

      verbatim.properties: Added + hyphenate=false

      +
    • +

      Saxon and Xalan Text.java extensions: Added support for + URIResolver() on insertfile href's

      +
    • +

      Added generated RELEASE-NOTES.txt + file.

      +
    • +

      Added INSTALL file (executable file for + generating catalog.xml)

      +
    • +

      Removed obsolete tools directory from + package

      +
    +
    +

    Release 1.66.1

    + +
    • +

      A number of important bug fixes. +

      +
    • +

      +Now xml:base attributes that are generated by an +XInclude processor are resolved for image files. +

      +
    • +

      +Rewrote olink templates to support several new features. +

      +
      +
    • +

      +Added index.on.type parameter for new type +attribute introduced in DocBook 4.3 for indexterms and index. +This allows you to create multiple indices containing +different categories of entries. +For users of 4.2 and earlier, you can use the new parameter index.on.role +instead. +

      +
    • +

      +Added new +section.autolabel.max.depth parameter to turn off section numbering +below a certain depth. +This permits you to number major section levels and leave minor +section levels unnumbered.

      +
    • +

      +Added footnote.sep.leader.properties attribute set to format +the line separating footnotes in printed output. +

      +
    • +

      +Added parameter img.src.path as a prefix to HTML img src +attributes. +The prefix is added to whatever path is already generated by the +stylesheet for each image file.

      +
    • +

      +Added new attribute-sets +informalequation.properties, +informalexample.properties, +informalfigure.properties, and informaltable.properties, +so each such element type can be formatted +individually if needed. +

      +
    • +

      +Add component.label.includes.part.label +parameter to add any part number to chapter, appendix +and other component labels when +the label.from.part parameter is nonzero. +This permits you to distinguish multiple chapters with the same +chapter number in cross references and the TOC.

      +
    • +

      +Added chunk.separate.lots parameter for HTML output. +This parameter lets you generate separate chunk files for each LOT +(list of tables, list of figures, etc.).

      +
    • +

      Added several table features:

      +
      • +

        +Added table.table.properties attribute set to add +properties to the fo:table element. +

        +
      • +

        +Added placeholder templates named table.cell.properties +and table.cell.block.properties to enable adding properties +to any fo:table-cell or the cell's fo:block, respectively. + These templates are a start for implementing table styles.

        +
      +
    • +

      +Added new attribute +set component.title.properties for easy modifications of +component's title formatting in FO output. +

      +
    • +

      +Added Saxon support for an encoding attribute on the textdata element. Added new parameter +textdata.default.encoding which specifies encoding when +encoding attribute on +textdata is missing. +

      +
    • +

      +Template label.this.section now controls whole +section label, not only sub-label which corresponds to +particular label. Former behaviour was IMHO bug as it was +not usable. +

      +
    • +

      +Formatting in titleabbrev for TOC and headers +is preserved when there are no hotlink elements in the title. Formerly the title showed only the text of the title, no font changes or other markup. +

      +
    • +

      +Added intial.page.number template to set the initial-page-number +property for page sequences in print output. +Customizing this template lets you change when page numbering restarts. This is similar to the format.page.number template that lets you change how the page number formatting changes in the output. +

      +
    • +

      +Added force.page.count template to set the force-page-count +property for page sequences in print output. +This is similar to the format.page.number template. +

      +
    • +

      +Sort language for localized index sorting in autoidx-ng.xsl is now taken from document +lang, not from system environment. +

      +
    • +

      +Numbering and formatting of normal +and ulink footnotes (if turned on) has been unified. +Now ulink footnotes are mixed in with any other footnotes.

      +
    • +

      +Added support for renderas attribute in section and +sect1 et al. +This permits you to render a given section title as if it were a different level.

      +
    • +

      +Added support for label attribute in footnote to manually +supply the footnote mark. +

      +
    • +

      +Added support for DocBook 4.3 corpcredit element. +

      +
    • +

      +Added support for a dbfo keep-together PI for +formal objects (table, figure, example, equation, programlisting). That permits a formal object to be kept together if it is not already, or to be broken if it +is very long and the +default keep-together is not appropriate. +

      +
    • +

      +For graphics files, made file extension matching case +insensitive, and updated the list of graphics extensions. +

      +
    • +

      +Allow calloutlist to have block content before +the first callout +

      +
    • +

      +Added dbfo-need processing instruction to provide +soft page breaks. +

      +
    • +

      +Added implementation of existing but unused +default.image.width parameter for graphics. +

      +
    • +

      +Support DocBook NG tag inline element. +

      +
    • +

      +It appears that XEP now supports Unicode characters in +bookmarks. There is no further need to strip accents from +characters. +

      +
    • +

      +Make segmentedlist HTML markup +more semantic and available to CSS styles. +

      +
    • +

      +Added user.preroot placeholder template to +permit xsl-stylesheet and other PIs and comments to be +output before the HTML root element. +

      +
    • +

      +Non-chunked legalnotice now gets an <a +name="id"> element in HTML output +so it can be referenced with xref or link. +

      +
    • +

      +In chunked HTML output, changed link rel="home" to rel="start", +and link rel="previous" to rel="prev", per W3C HTML 4.01 +spec. +

      +
    • +

      +Added several patches to htmlhelp from W. Borgert +

      +
    • +

      +Added Bosnian locale file as common/bs.xml. +

      +
    +
    +

    Release 1.65.0

    + +
    • +

      A number of important bug fixes. +

      +
    • +

      Added a workaround to allow these stylesheets to process DocBook NG +documents. (It’s a hack that pre-processes the document to strip off the +namespace and then uses exsl:node-set to process +the result.) +

      +
    • +

      Added alternative indexing mechanism which has better +internationalization support. New indexing method allows grouping of +accented letters like e, é, ë into the same group under letter "e". It +can also treat special letters (e.g. "ch") as one character and place +them in the correct position (e.g. between "h" and "i" in Czech +language).

      +

      In order to use this mechanism you must create customization +layer which imports some base stylesheet (like +fo/docbook.xsl, +html/chunk.xsl) and then includes appropriate +stylesheet with new indexing code +(fo/autoidx-ng.xsl or +html/autoidx-ng.xsl). For example:

      +
      <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
      +                version="1.0">
      +
      +<xsl:import href="http://docbook.sourceforge.net/release/xsl/current/fo/docbook.xsl"/>
      +<xsl:include href="http://docbook.sourceforge.net/release/xsl/current/fo/autoidx-ng.xsl"/>
      +
      +</xsl:stylesheet>
      +

      New method is known to work with Saxon and it should also work +with xsltproc 1.1.1 and later. Currently supported languages are +English, Czech, German, French, Spanish and Danish.

      +
    +
    +

    Release 1.64.1

    + +

    General bug fixes and improvements. Sorry about the failure to produce +an updated release notes file for 1.62.0—1.63.2

    • +

      In the course of fixing bug #849787, wrapping Unicode callouts +with an appropriate font change in the Xalan extensions, I discovered +that the Xalan APIs have changed a bit. So xalan2.jar +will work with older Xalan 2 implementations, xalan25.jar +works with Xalan 2.5.

      +
    +
    +

    Release 1.61.0

    + +

    Lots of bug fixes and improvements.

    • +

      Initial support for timestamp PI. From now you + can use <?dbtimestamp format="Y-m-d H:M:S"?> to get current + datetime in your document. Added localization support for datetime PI +

      +
    • +

      Added level 6 to test for section depth in +section.level template so that +section.title.level6.properties will be used for sections +that are 6 deep or deeper. This should also cause a h6 to be +created in html output. +

      +
    • +

      Don't use SVG graphics if use.svg=0 +

      +
    • +

      Now uses number-and-title-template for sections + only if section.autolabel is not zero. +

      +
    • +

      Added missing 'english-language-name' attribute to +the l10n element, and the missing 'style' attribute to the +template element so the current gentext documents will +validate. +

      +
    • +

      Corrected several references to parameter + qanda.defaultlabel that were missing the "$". +

      +
    • +

      Now accepts admon.textlabel parameter to turn off + Note, Warning, etc. label. +

      +
    • +

      FeatReq #684561: support more XEP metadata +

      +
    • +

      Added hyphenation support. Added support for coref. +Added beginpage support. (does nothing; see TDG). +

      +
    • +

      Added support for +hyphenation-character, hyphenation-push-character-count, and +hyphenation-remain-character-count +

      +
    • +

      Added root.properties, +ebnf.assignment, +and ebnf.statement.terminator +

      +
    • +

      Support bgcolor PI in table cells; make sure +rowsep and colsep don't have any effect on the last row or +column +

      +
    • +

      Handle othercredit on titlepage a little +better +

      +
    • +

      Applied fix from Jeff Beal that fixed the bug +that put secondary page numbers on primary entries. Same +with tertiary page numbers on secondary entries. +

      +
    • +

      Added definition of missing variable +collection. +

      +
    • +

      Make footnote formatting 'normal' even when it +occurs in a context that has special formatting +

      +
    • +

      Added warning when glossary.collection is not +blank, but it cannot open the specified file. +

      +
    • +

      Pick up the frame attribute on table and +informaltable. +

      +
    • +

      indexdiv/title +in non-autogenerated indexes are +now picked up. +

      +
    • +

      Removed (unused) +component.title.properties +

      +
    • +

      Move IDs from +page-sequences down to titlepage blocks +

      +
    • +

      Use +proportional-column-width(1) on more tables. +

      +

      Use proportional-column-width() for +header/footer tables; suppress relative-align when when +using FOP +

      +
    • +

      Check for glossterm.auto.link when linking +firstterms; don't output gl. prefix on glossterm links +

      +
    • +

      Generate Part ToCs +

      +
    • +

      Support glossary, bibliography, +and index in component ToCs. +

      +
    • +

      Refactored chunking code so that +customization of chunk algorithm and chunk elements is more +practical +

      +
    • +

      Support textobject/phrase +on inlinemediaobject. +

      +
    • +

      Support 'start' PI on ordered lists +

      +
    • +

      Fixed test of $toc PI to turn on qandaset TOC. +

      +
    • +

      Added process.chunk.footnotes to sect2 through +5 to fix bug of missing footnotes when chunk level greater +than 1. +

      +
    • +

      Added +paramater toc.max.depth which controls maximal depth of ToC +as requested by PHP-DOC group. +

      +
    • +

      Exempted titleabbrev from preamble processing in +lists, and fixed variablelist preamble code to use the same +syntax as the other lists. +

      +
    • +

      Added support for elements between variablelist +and first varlistentry since DocBook 4.2 supports that now. +

      +
    +
    +

    Release 1.60.1

    + +

    Lots of bug fixes.

    • +

      The format of the titlepage.templates.xml files and +the stylesheet that transforms them have been significantly changed. All of the +attributes used to control the templates are now namespace qualified. So what +used to be:

      +
      <t:titlepage element="article" wrapper="fo:block">
      +

      is now:

      +
      <t:titlepage t:element="article" t:wrapper="fo:block">
      +

      Attributes from other namespaces (including those that are unqualified) are +now copied directly through. In practice, this means that the names that used +to be fo: qualified:

      +
      <title named-template="component.title"
      +       param:node="ancestor-or-self::article[1]"
      +       fo:text-align="center"
      +       fo:keep-with-next="always"
      +       fo:font-size="&hsize5;"
      +       fo:font-weight="bold"
      +       fo:font-family="{$title.font.family}"/>
      +

      are now unqualified:

      +
      <title t:named-template="component.title"
      +       param:node="ancestor-or-self::article[1]"
      +       text-align="center"
      +       keep-with-next="always"
      +       font-size="&hsize5;"
      +       font-weight="bold"
      +       font-family="{$title.font.family}"/>
      +

      The t:titlepage and t:titlepage-content +elements both generate wrappers now. And unqualified attributes on those elements +are passed through. This means that you can now make the title font apply to +ane entire titlepage and make the entire recto +titlepage centered by specifying the font and alignment on the those elements:

      +
      <t:titlepage t:element="article" t:wrapper="fo:block"
      +             font-family="{$title.font.family}">
      +
      +  <t:titlepage-content t:side="recto"
      +             text-align="center">
      + + + + + +
    • +

      Support use of titleabbrev in running +headers and footers. +

      +
    • +

      Added (experimental) xref.with.number.and.title +parameter to enable number/title cross references even when the +default would +be just the number. +

      +
    • +

      Generate part ToCs if they're requested. +

      +
    • +

      Use proportional-column-width() in header/footer tables. +

      +
    • +

      Handle alignment correctly when screenshot +wraps a graphic in a figure. +

      +
    • +

      Format chapter and appendix +cross references consistently. +

      +
    • +

      Attempt to support tables with multiple tgroups +in FO. +

      +
    • +

      Output fo:table-columns in +simplelist tables. +

      +
    • +

      Use titlepage.templates.xml for +indexdiv and glossdiv formatting. +

      +
    • +

      Improve support for new bibliography elements. +

      +
    • +

      Added +footnote.number.format, +table.footnote.number.format, +footnote.number.symbols, and +table.footnote.number.symbols for better control of +footnote markers. +

      +
    • +

      Added glossentry.show.acronyms. +

      +
    • +

      Suppress the draft-mode page masters when +draft-mode is no. +

      +
    • +

      Make blank pages verso not recto. D'Oh! +

      +
    • +

      Improved formatting of ulink footnotes. +

      +
    • +

      Fixed bugs in graphic width/height calculations. +

      +
    • +

      Added class attributes to inline elements. +

      +
    • +

      Don't add .html to the filenames identified +with the dbhtml PI. +

      +
    • +

      Don't force a ToC when sections contain refentrys. +

      +
    • +

      Make section title sizes a function of the +body.master.size. +

      +
    +
    +

    Release 1.59.2

    + +

    The 1.59.2 fixes an FO bug in the page masters that causes FOP to fail. +

    • +

      Removed the region-name from the region-body of blank pages. There's +no reason to give the body of blank pages a unique name and doing so causes +a mismatch that FOP detects. +

      +
    • +

      Output IDs for the first paragraphs in listitems. +

      +
    • +

      Fixed some small bugs in the handling of page numbers in double-sided mode. +

      +
    • +

      Attempt to prevent duplicated IDs from being produced when +endterm on xref points +to something with nested structure. +

      +
    • +

      Fix aligment problems in equations. +

      +
    • +

      Output the type attribute on unordered lists (UL) in HTML only if +the css.decoration parameter is true. +

      +
    • +

      Calculate the font size in formal.title.properties so that it's 1.2 times +the base font size, not a fixed "12pt". +

      +
    +
    +

    Release 1.59.1

    + +

    The 1.59.1 fixes a few bugs. +

    • +

      Added Bulgarian localization. +

      +
    • +

      Indexing improvements; localize book indexes to books but allow setindex +to index an entire set. +

      +
    • +

      The default value for rowsep and colsep is now "1" as per CALS. +

      +
    • +

      Added support for titleabbrev (use them for cross +references). +

      +
    • +

      Improvements to mediaobject for selecting print vs. online +images. +

      +
    • +

      Added seperate property sets for figures, +examples, equations, tabless, +and procedures. +

      +
    • +

      Make lineannotations italic. +

      +
    • +

      Support xrefstyle attribute. +

      +
    • +

      Make endterm on +xref higher priority than +xreflabel target. +

      +
    • +

      Glossary formatting improvements. +

      +
    +
    +

    Release 1.58.0

    + +

    The 1.58.0 adds some initial support for extensions in xsltproc, adds +a few features, and fixes bugs. +

    • +

      This release contains the first attempt at extension support for xsltproc. +The only extension available to date is the one that adjusts table column widths. +Run extensions/xsltproc/python/xslt.py. +

      +
    • +

      Fixed bugs in calculation of adjusted column widths to correct for rounding +errors. +

      +
    • +

      Support nested refsection elements correctly. +

      +
    • +

      Reworked gentext.template to take context into consideration. +The name of elements in localization files is now an xpath-like context list, not +just a simple name. +

      +
    • +

      Made some improvements to bibliography formatting. +

      +
    • +

      Improved graphical formatting of admonitions. +

      +
    • +

      Added support for entrytbl. +

      +
    • +

      Support spanning index terms. +

      +
    • +

      Support bibliosource. +

      +
    +
    +

    Release 1.57.0

    + +
    • +

      The 1.57.0 release wasn't documented here. Oops. +

      +
    +
    +

    Release 1.56.0

    + +

    The 1.56.0 release fixes bugs. +

    • +

      Reworked chunking. This will break all existing customizations +layers that change the chunking algorithm. If you're customizing chunking, +look at the new content parameter that's passed to +process-chunk-element and friends. +

      +
    • +

      Support continued and inherited numeration in orderedlist +formatting for FOs. +

      +
    • +

      Added Thai localization. +

      +
    • +

      Tweaked stylesheet documentation stylesheets to link to TDG and +the parameter references. +

      +
    • +

      Allow title on tables of contents ("Table of Contents") to be optional. +Added new keyword to generate.toc. +Support tables of contents on sections. +

      +
    • +

      Made separate parameters for table borders and table cell borders: +table.frame.border.color, +table.frame.border.style, +table.frame.border.thickness, +table.cell.border.color, +table.cell.border.style, and +table.cell.border.thickness. +

      +
    • +

      Suppress formatting of endofrange indexterms. +This is only half-right. They should generate a range, but I haven't figured out how +to do that yet. +

      +
    • +

      Support revdescription. (Bug #582192) +

      +
    • +

      Added default.float.class and fixed figure +floats. (Bug #497603) +

      +
    • +

      Fixed formatting of sbr in FOs. +

      +
    • +

      Added context to the missing template error message. +

      +
    • +

      Process arg correctly in a group. +(Bug #605150) +

      +
    • +

      Removed 'keep-with-next' from formal.title.properties +attribute set now that the stylesheets support the option of putting +such titles below the object. Now the $placement value determines if +'keep-with-next' or 'keep-with-previous' is used in the title block. +

      +
    • +

      Wrap url() around external-destinations when appropriate. +

      +
    • +

      Fixed typo in compact list spacing. (Bug #615464) +

      +
    • +

      Removed spurious hash in anchor name. (Bug #617717) +

      +
    • +

      Address is now displayed verbatim on title pages. (Bug #618600) +

      +
    • +

      The bridgehead.in.toc parameter is now properly +supported. +

      +
    • +

      Improved effectiveness of HTML cleanup by increasing the number +of places where it is used. Improve use of HTML cleanup in XHTML stylesheets. +

      +
    • +

      Support table of contents for appendix in +article. (Bug #596599) +

      +
    • +

      Don't duplicate footnotes in bibliographys and +glossarys. (Bug #583282) +

      +
    • +

      Added default.image.width. (Bug #516859) +

      +
    • +

      Totally reworked funcsynopsis code; it now +supports a 'tabular' presentation style for 'wide' prototypes; see +funcsynopsis.tabular.threshold. (HTML only +right now, I think, FO support, uh, real soon now.) +

      +
    • +

      Reworked support for difference marking; toned down the colors a bit +and added a system.head.content template so that the diff CSS +wasn't overriding user.head.content. (Bug #610660) +

      +
    • +

      Added call to the *.head.content elements when writing +out long description chunks. +

      +
    • +

      Make sure legalnotice link is correct even when +chunking to a different base.dir. +

      +
    • +

      Use CSS to set viewport characteristics if +css.decoration is non-zero, use div instead of p for making +graphic a block element; make figure titles the +default alt +text for images in a figure.

      +
    • +

      Added space-after to list.block.spacing. +

      +
    • +

      Reworked section.level template to give correct answer +instead of being off by one. +

      +
    • +

      When processing tables, use the tabstyle +attribute as the division class. +

      +
    • +

      Fixed bug in html2xhtml.xsl that was causing the +XHTML chunker to output HTML instead of XHTML. +

      +
    +
    +

    Older releases

    + +

    To view the release notes for older releases, see http://cvs.sourceforge.net/viewcvs.py/docbook/xsl/RELEASE-NOTES.xml. Be + aware that there were no release notes for releases prior to the + 1.50.0 release.

    +
    +

    About dot-zero releases

    + +

    DocBook Project “dot zero” releases should be + considered experimental and are always + followed by stable “dot one plus” releases, usually within + two or three weeks. Please help to ensure the stability of + “dot one plus” releases by carefully testing each + “dot zero” release and reporting back about any + problems you find.

    +

    It is not recommended that you use a “dot zero” + release in a production system. Instead, you should wait for + the “dot one” or greater versions.

    +
    +
    + diff --git a/docbook-xsl-1.76.1/RELEASE-NOTES.pdf b/docbook-xsl-1.76.1/RELEASE-NOTES.pdf new file mode 100644 index 0000000..83b9d9c --- /dev/null +++ b/docbook-xsl-1.76.1/RELEASE-NOTES.pdf @@ -0,0 +1,24334 @@ +%PDF-1.4 +%ÐÔÅØ +1 0 obj +<< /S /GoTo /D (section.1) >> +endobj +4 0 obj +(Release Notes: 1.76.1) +endobj +5 0 obj +<< /S /GoTo /D (subsection.1.1) >> +endobj +8 0 obj +(Common) +endobj +9 0 obj +<< /S /GoTo /D (subsection.1.2) >> +endobj +12 0 obj +(FO) +endobj +13 0 obj +<< /S /GoTo /D (subsection.1.3) >> +endobj +16 0 obj +(HTML) +endobj +17 0 obj +<< /S /GoTo /D (subsection.1.4) >> +endobj +20 0 obj +(Epub) +endobj +21 0 obj +<< /S /GoTo /D (subsection.1.5) >> +endobj +24 0 obj +(Webhelp) +endobj +25 0 obj +<< /S /GoTo /D (subsection.1.6) >> +endobj +28 0 obj +(Params) +endobj +29 0 obj +<< /S /GoTo /D (subsection.1.7) >> +endobj +32 0 obj +(Extensions) +endobj +33 0 obj +<< /S /GoTo /D (section.2) >> +endobj +36 0 obj +(Release Notes: 1.76.1) +endobj +37 0 obj +<< /S /GoTo /D (subsection.2.1) >> +endobj +40 0 obj +(FO) +endobj +41 0 obj +<< /S /GoTo /D (subsection.2.2) >> +endobj +44 0 obj +(HTML) +endobj +45 0 obj +<< /S /GoTo /D (subsection.2.3) >> +endobj +48 0 obj +(Params) +endobj +49 0 obj +<< /S /GoTo /D (section.3) >> +endobj +52 0 obj +(Release Notes: 1.76.0) +endobj +53 0 obj +<< /S /GoTo /D (subsection.3.1) >> +endobj +56 0 obj +(Gentext) +endobj +57 0 obj +<< /S /GoTo /D (subsection.3.2) >> +endobj +60 0 obj +(Common) +endobj +61 0 obj +<< /S /GoTo /D (subsection.3.3) >> +endobj +64 0 obj +(FO) +endobj +65 0 obj +<< /S /GoTo /D (subsection.3.4) >> +endobj +68 0 obj +(HTML) +endobj +69 0 obj +<< /S /GoTo /D (subsection.3.5) >> +endobj +72 0 obj +(Manpages) +endobj +73 0 obj +<< /S /GoTo /D (subsection.3.6) >> +endobj +76 0 obj +(Epub) +endobj +77 0 obj +<< /S /GoTo /D (subsection.3.7) >> +endobj +80 0 obj +(Eclipse) +endobj +81 0 obj +<< /S /GoTo /D (subsection.3.8) >> +endobj +84 0 obj +(Params) +endobj +85 0 obj +<< /S /GoTo /D (subsection.3.9) >> +endobj +88 0 obj +(XSL-Xalan) +endobj +89 0 obj +<< /S /GoTo /D (section.4) >> +endobj +92 0 obj +(Release Notes: 1.75.2) +endobj +93 0 obj +<< /S /GoTo /D (subsection.4.1) >> +endobj +96 0 obj +(Gentext) +endobj +97 0 obj +<< /S /GoTo /D (subsection.4.2) >> +endobj +100 0 obj +(Common) +endobj +101 0 obj +<< /S /GoTo /D (subsection.4.3) >> +endobj +104 0 obj +(FO) +endobj +105 0 obj +<< /S /GoTo /D (subsection.4.4) >> +endobj +108 0 obj +(HTML) +endobj +109 0 obj +<< /S /GoTo /D (subsection.4.5) >> +endobj +112 0 obj +(Manpages) +endobj +113 0 obj +<< /S /GoTo /D (subsection.4.6) >> +endobj +116 0 obj +(Epub) +endobj +117 0 obj +<< /S /GoTo /D (subsection.4.7) >> +endobj +120 0 obj +(Profiling) +endobj +121 0 obj +<< /S /GoTo /D (subsection.4.8) >> +endobj +124 0 obj +(XSL-Saxon) +endobj +125 0 obj +<< /S /GoTo /D (subsection.4.9) >> +endobj +128 0 obj +(XSL-Xalan) +endobj +129 0 obj +<< /S /GoTo /D (section.5) >> +endobj +132 0 obj +(Release Notes: 1.75.1) +endobj +133 0 obj +<< /S /GoTo /D (subsection.5.1) >> +endobj +136 0 obj +(FO) +endobj +137 0 obj +<< /S /GoTo /D (subsection.5.2) >> +endobj +140 0 obj +(HTML) +endobj +141 0 obj +<< /S /GoTo /D (subsection.5.3) >> +endobj +144 0 obj +(Epub) +endobj +145 0 obj +<< /S /GoTo /D (subsection.5.4) >> +endobj +148 0 obj +(Params) +endobj +149 0 obj +<< /S /GoTo /D (section.6) >> +endobj +152 0 obj +(Release Notes: 1.75.0) +endobj +153 0 obj +<< /S /GoTo /D (subsection.6.1) >> +endobj +156 0 obj +(Gentext) +endobj +157 0 obj +<< /S /GoTo /D (subsection.6.2) >> +endobj +160 0 obj +(Common) +endobj +161 0 obj +<< /S /GoTo /D (subsection.6.3) >> +endobj +164 0 obj +(FO) +endobj +165 0 obj +<< /S /GoTo /D (subsection.6.4) >> +endobj +168 0 obj +(HTML) +endobj +169 0 obj +<< /S /GoTo /D (subsection.6.5) >> +endobj +172 0 obj +(Manpages) +endobj +173 0 obj +<< /S /GoTo /D (subsection.6.6) >> +endobj +176 0 obj +(ePub) +endobj +177 0 obj +<< /S /GoTo /D (subsection.6.7) >> +endobj +180 0 obj +(HTMLHelp) +endobj +181 0 obj +<< /S /GoTo /D (subsection.6.8) >> +endobj +184 0 obj +(Params) +endobj +185 0 obj +<< /S /GoTo /D (subsection.6.9) >> +endobj +188 0 obj +(Highlighting) +endobj +189 0 obj +<< /S /GoTo /D (subsection.6.10) >> +endobj +192 0 obj +(XSL-Saxon) +endobj +193 0 obj +<< /S /GoTo /D (subsection.6.11) >> +endobj +196 0 obj +(XSL-Xalan) +endobj +197 0 obj +<< /S /GoTo /D (section.7) >> +endobj +200 0 obj +(Release Notes: 1.74.3) +endobj +201 0 obj +<< /S /GoTo /D (section.8) >> +endobj +204 0 obj +(Release Notes: 1.74.2) +endobj +205 0 obj +<< /S /GoTo /D (section.9) >> +endobj +208 0 obj +(Release Notes: 1.74.1) +endobj +209 0 obj +<< /S /GoTo /D (subsection.9.1) >> +endobj +212 0 obj +(Gentext) +endobj +213 0 obj +<< /S /GoTo /D (subsection.9.2) >> +endobj +216 0 obj +(FO) +endobj +217 0 obj +<< /S /GoTo /D (subsection.9.3) >> +endobj +220 0 obj +(HTML) +endobj +221 0 obj +<< /S /GoTo /D (subsection.9.4) >> +endobj +224 0 obj +(Manpages) +endobj +225 0 obj +<< /S /GoTo /D (subsection.9.5) >> +endobj +228 0 obj +(ePub) +endobj +229 0 obj +<< /S /GoTo /D (subsection.9.6) >> +endobj +232 0 obj +(Roundtrip) +endobj +233 0 obj +<< /S /GoTo /D (subsection.9.7) >> +endobj +236 0 obj +(Params) +endobj +237 0 obj +<< /S /GoTo /D (subsection.9.8) >> +endobj +240 0 obj +(Highlighting) +endobj +241 0 obj +<< /S /GoTo /D (section.10) >> +endobj +244 0 obj +(Release Notes: 1.74.0) +endobj +245 0 obj +<< /S /GoTo /D (subsection.10.1) >> +endobj +248 0 obj +(Gentext) +endobj +249 0 obj +<< /S /GoTo /D (subsection.10.2) >> +endobj +252 0 obj +(Common) +endobj +253 0 obj +<< /S /GoTo /D (subsection.10.3) >> +endobj +256 0 obj +(FO) +endobj +257 0 obj +<< /S /GoTo /D (subsection.10.4) >> +endobj +260 0 obj +(HTML) +endobj +261 0 obj +<< /S /GoTo /D (subsection.10.5) >> +endobj +264 0 obj +(Manpages) +endobj +265 0 obj +<< /S /GoTo /D (subsection.10.6) >> +endobj +268 0 obj +(Epub) +endobj +269 0 obj +<< /S /GoTo /D (subsection.10.7) >> +endobj +272 0 obj +(HTMLHelp) +endobj +273 0 obj +<< /S /GoTo /D (subsection.10.8) >> +endobj +276 0 obj +(Eclipse) +endobj +277 0 obj +<< /S /GoTo /D (subsection.10.9) >> +endobj +280 0 obj +(JavaHelp) +endobj +281 0 obj +<< /S /GoTo /D (subsection.10.10) >> +endobj +284 0 obj +(Roundtrip) +endobj +285 0 obj +<< /S /GoTo /D (subsection.10.11) >> +endobj +288 0 obj +(Slides) +endobj +289 0 obj +<< /S /GoTo /D (subsection.10.12) >> +endobj +292 0 obj +(Website) +endobj +293 0 obj +<< /S /GoTo /D (subsection.10.13) >> +endobj +296 0 obj +(Params) +endobj +297 0 obj +<< /S /GoTo /D (subsection.10.14) >> +endobj +300 0 obj +(Profiling) +endobj +301 0 obj +<< /S /GoTo /D (subsection.10.15) >> +endobj +304 0 obj +(Tools) +endobj +305 0 obj +<< /S /GoTo /D (subsection.10.16) >> +endobj +308 0 obj +(Extensions) +endobj +309 0 obj +<< /S /GoTo /D (subsection.10.17) >> +endobj +312 0 obj +(XSL-Saxon) +endobj +313 0 obj +<< /S /GoTo /D (subsection.10.18) >> +endobj +316 0 obj +(XSL-Xalan) +endobj +317 0 obj +<< /S /GoTo /D (subsection.10.19) >> +endobj +320 0 obj +(XSL-libxslt) +endobj +321 0 obj +<< /S /GoTo /D (section.11) >> +endobj +324 0 obj +(Release Notes: 1.73.2) +endobj +325 0 obj +<< /S /GoTo /D (section.12) >> +endobj +328 0 obj +(Release: 1.73.1) +endobj +329 0 obj +<< /S /GoTo /D (subsection.12.1) >> +endobj +332 0 obj +(Gentext) +endobj +333 0 obj +<< /S /GoTo /D (subsection.12.2) >> +endobj +336 0 obj +(FO) +endobj +337 0 obj +<< /S /GoTo /D (subsection.12.3) >> +endobj +340 0 obj +(HTML) +endobj +341 0 obj +<< /S /GoTo /D (subsection.12.4) >> +endobj +344 0 obj +(Manpages) +endobj +345 0 obj +<< /S /GoTo /D (subsection.12.5) >> +endobj +348 0 obj +(HTMLHelp) +endobj +349 0 obj +<< /S /GoTo /D (subsection.12.6) >> +endobj +352 0 obj +(Eclipse) +endobj +353 0 obj +<< /S /GoTo /D (subsection.12.7) >> +endobj +356 0 obj +(JavaHelp) +endobj +357 0 obj +<< /S /GoTo /D (subsection.12.8) >> +endobj +360 0 obj +(Roundtrip) +endobj +361 0 obj +<< /S /GoTo /D (subsection.12.9) >> +endobj +364 0 obj +(Params) +endobj +365 0 obj +<< /S /GoTo /D (section.13) >> +endobj +368 0 obj +(Release: 1.73.0) +endobj +369 0 obj +<< /S /GoTo /D (subsection.13.1) >> +endobj +372 0 obj +(Gentext) +endobj +373 0 obj +<< /S /GoTo /D (subsection.13.2) >> +endobj +376 0 obj +(Common) +endobj +377 0 obj +<< /S /GoTo /D (subsection.13.3) >> +endobj +380 0 obj +(FO) +endobj +381 0 obj +<< /S /GoTo /D (subsection.13.4) >> +endobj +384 0 obj +(HTML) +endobj +385 0 obj +<< /S /GoTo /D (subsection.13.5) >> +endobj +388 0 obj +(Manpages) +endobj +389 0 obj +<< /S /GoTo /D (subsection.13.6) >> +endobj +392 0 obj +(Eclipse) +endobj +393 0 obj +<< /S /GoTo /D (subsection.13.7) >> +endobj +396 0 obj +(JavaHelp) +endobj +397 0 obj +<< /S /GoTo /D (subsection.13.8) >> +endobj +400 0 obj +(Roundtrip) +endobj +401 0 obj +<< /S /GoTo /D (subsection.13.9) >> +endobj +404 0 obj +(Params) +endobj +405 0 obj +<< /S /GoTo /D (subsection.13.10) >> +endobj +408 0 obj +(Highlighting) +endobj +409 0 obj +<< /S /GoTo /D (subsection.13.11) >> +endobj +412 0 obj +(Profiling) +endobj +413 0 obj +<< /S /GoTo /D (subsection.13.12) >> +endobj +416 0 obj +(Lib) +endobj +417 0 obj +<< /S /GoTo /D (subsection.13.13) >> +endobj +420 0 obj +(Tools) +endobj +421 0 obj +<< /S /GoTo /D (subsection.13.14) >> +endobj +424 0 obj +(XSL-Saxon) +endobj +425 0 obj +<< /S /GoTo /D (subsection.13.15) >> +endobj +428 0 obj +(XSL-Xalan) +endobj +429 0 obj +<< /S /GoTo /D (section.14) >> +endobj +432 0 obj +(Release: 1.72.0) +endobj +433 0 obj +<< /S /GoTo /D (subsection.14.1) >> +endobj +436 0 obj +(Common) +endobj +437 0 obj +<< /S /GoTo /D (subsection.14.2) >> +endobj +440 0 obj +(FO) +endobj +441 0 obj +<< /S /GoTo /D (subsection.14.3) >> +endobj +444 0 obj +(HTML) +endobj +445 0 obj +<< /S /GoTo /D (subsection.14.4) >> +endobj +448 0 obj +(Manpages) +endobj +449 0 obj +<< /S /GoTo /D (subsection.14.5) >> +endobj +452 0 obj +(Params) +endobj +453 0 obj +<< /S /GoTo /D (subsection.14.6) >> +endobj +456 0 obj +(Template) +endobj +457 0 obj +<< /S /GoTo /D (subsection.14.7) >> +endobj +460 0 obj +(Roundtrip) +endobj +461 0 obj +<< /S /GoTo /D (section.15) >> +endobj +464 0 obj +(Release: 1.71.1) +endobj +465 0 obj +<< /S /GoTo /D (subsection.15.1) >> +endobj +468 0 obj +(Common) +endobj +469 0 obj +<< /S /GoTo /D (subsection.15.2) >> +endobj +472 0 obj +(FO) +endobj +473 0 obj +<< /S /GoTo /D (subsection.15.3) >> +endobj +476 0 obj +(HTML) +endobj +477 0 obj +<< /S /GoTo /D (subsection.15.4) >> +endobj +480 0 obj +(Highlighting) +endobj +481 0 obj +<< /S /GoTo /D (subsection.15.5) >> +endobj +484 0 obj +(Manpages) +endobj +485 0 obj +<< /S /GoTo /D (subsection.15.6) >> +endobj +488 0 obj +(Params) +endobj +489 0 obj +<< /S /GoTo /D (subsection.15.7) >> +endobj +492 0 obj +(Profiling) +endobj +493 0 obj +<< /S /GoTo /D (section.16) >> +endobj +496 0 obj +(Release: 1.71.0) +endobj +497 0 obj +<< /S /GoTo /D (subsection.16.1) >> +endobj +500 0 obj +(Common) +endobj +501 0 obj +<< /S /GoTo /D (subsection.16.2) >> +endobj +504 0 obj +(Extensions) +endobj +505 0 obj +<< /S /GoTo /D (subsection.16.3) >> +endobj +508 0 obj +(FO) +endobj +509 0 obj +<< /S /GoTo /D (subsection.16.4) >> +endobj +512 0 obj +(HTML) +endobj +513 0 obj +<< /S /GoTo /D (subsection.16.5) >> +endobj +516 0 obj +(Highlighting) +endobj +517 0 obj +<< /S /GoTo /D (subsection.16.6) >> +endobj +520 0 obj +(Manpages) +endobj +521 0 obj +<< /S /GoTo /D (subsection.16.7) >> +endobj +524 0 obj +(Params) +endobj +525 0 obj +<< /S /GoTo /D (subsection.16.8) >> +endobj +528 0 obj +(Tools) +endobj +529 0 obj +<< /S /GoTo /D (section.17) >> +endobj +532 0 obj +(Release: 1.70.1) +endobj +533 0 obj +<< /S /GoTo /D (subsection.17.1) >> +endobj +536 0 obj +(FO) +endobj +537 0 obj +<< /S /GoTo /D (subsection.17.2) >> +endobj +540 0 obj +(HTML) +endobj +541 0 obj +<< /S /GoTo /D (subsection.17.3) >> +endobj +544 0 obj +(HTMLHelp) +endobj +545 0 obj +<< /S /GoTo /D (subsection.17.4) >> +endobj +548 0 obj +(Params) +endobj +549 0 obj +<< /S /GoTo /D (section.18) >> +endobj +552 0 obj +(Release: 1.70.0) +endobj +553 0 obj +<< /S /GoTo /D (subsection.18.1) >> +endobj +556 0 obj +(Common) +endobj +557 0 obj +<< /S /GoTo /D (subsection.18.2) >> +endobj +560 0 obj +(Extensions) +endobj +561 0 obj +<< /S /GoTo /D (subsection.18.3) >> +endobj +564 0 obj +(FO) +endobj +565 0 obj +<< /S /GoTo /D (subsection.18.4) >> +endobj +568 0 obj +(HTML) +endobj +569 0 obj +<< /S /GoTo /D (subsection.18.5) >> +endobj +572 0 obj +(Manpages) +endobj +573 0 obj +<< /S /GoTo /D (subsection.18.6) >> +endobj +576 0 obj +(Params) +endobj +577 0 obj +<< /S /GoTo /D (subsection.18.7) >> +endobj +580 0 obj +(Profiling) +endobj +581 0 obj +<< /S /GoTo /D (subsection.18.8) >> +endobj +584 0 obj +(Tools) +endobj +585 0 obj +<< /S /GoTo /D (subsection.18.9) >> +endobj +588 0 obj +(WordML) +endobj +589 0 obj +<< /S /GoTo /D (section.19) >> +endobj +592 0 obj +(Release 1.69.1) +endobj +593 0 obj +<< /S /GoTo /D (section.20) >> +endobj +596 0 obj +(Release 1.69.0) +endobj +597 0 obj +<< /S /GoTo /D (subsection.20.1) >> +endobj +600 0 obj +(Common) +endobj +601 0 obj +<< /S /GoTo /D (subsection.20.2) >> +endobj +604 0 obj +(FO) +endobj +605 0 obj +<< /S /GoTo /D (subsection.20.3) >> +endobj +608 0 obj +(Help) +endobj +609 0 obj +<< /S /GoTo /D (subsection.20.4) >> +endobj +612 0 obj +(HTML) +endobj +613 0 obj +<< /S /GoTo /D (subsection.20.5) >> +endobj +616 0 obj +(man) +endobj +617 0 obj +<< /S /GoTo /D (section.21) >> +endobj +620 0 obj +(Release 1.68.1) +endobj +621 0 obj +<< /S /GoTo /D (section.22) >> +endobj +624 0 obj +(Release 1.68.0) +endobj +625 0 obj +<< /S /GoTo /D (section.23) >> +endobj +628 0 obj +(Release 1.67.2) +endobj +629 0 obj +<< /S /GoTo /D (section.24) >> +endobj +632 0 obj +(Release 1.67.1) +endobj +633 0 obj +<< /S /GoTo /D (section.25) >> +endobj +636 0 obj +(Release 1.67.0) +endobj +637 0 obj +<< /S /GoTo /D (section.26) >> +endobj +640 0 obj +(Release 1.66.1) +endobj +641 0 obj +<< /S /GoTo /D (section.27) >> +endobj +644 0 obj +(Release 1.65.0) +endobj +645 0 obj +<< /S /GoTo /D (section.28) >> +endobj +648 0 obj +(Release 1.64.1) +endobj +649 0 obj +<< /S /GoTo /D (section.29) >> +endobj +652 0 obj +(Release 1.61.0) +endobj +653 0 obj +<< /S /GoTo /D (section.30) >> +endobj +656 0 obj +(Release 1.60.1) +endobj +657 0 obj +<< /S /GoTo /D (section.31) >> +endobj +660 0 obj +(Release 1.59.2) +endobj +661 0 obj +<< /S /GoTo /D (section.32) >> +endobj +664 0 obj +(Release 1.59.1) +endobj +665 0 obj +<< /S /GoTo /D (section.33) >> +endobj +668 0 obj +(Release 1.58.0) +endobj +669 0 obj +<< /S /GoTo /D (section.34) >> +endobj +672 0 obj +(Release 1.57.0) +endobj +673 0 obj +<< /S /GoTo /D (section.35) >> +endobj +676 0 obj +(Release 1.56.0) +endobj +677 0 obj +<< /S /GoTo /D (section.36) >> +endobj +680 0 obj +(Older releases) +endobj +681 0 obj +<< /S /GoTo /D (section.37) >> +endobj +684 0 obj +(About dot-zero releases) +endobj +685 0 obj +<< /S /GoTo /D [686 0 R /FitH ] >> +endobj +689 0 obj << +/Length 286 +/Filter /FlateDecode +>> +stream +xÚ•AOÃ0 …ïù>v‡zvÚ¤Éu B‚õ€4퀶”!VUÐJˆÓ *Upà’<ÛÑ{ñGð WjU«å¥!ðè­¶P7`5Ú +XTP`›=„SxêÃ"׆²»n}’M÷žÄp<×Ý~Õu¯©xÜÜ.võÄäÌèIn›áóúcCÇ’Îà$Ý1½ô¹dÈ úêœÿß©‹Z½)7cÑú*ÏhIþUÛÁAf’‡bãË êŠ>ÁFÝ+:/>¿ ìÐxËñ/>J%•èªr΢r?,D6 MÙÈCŠÄCÄÄCŠÈc3~é·A²þ? Ï ++Ó2LÞñŽRÇ|·–×-ú›‰Ü‹ú‚- +endstream +endobj +686 0 obj << +/Type /Page +/Contents 689 0 R +/Resources 688 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 696 0 R +>> endobj +687 0 obj << +/Type /XObject +/Subtype /Image +/Width 80 +/Height 15 +/BitsPerComponent 8 +/ColorSpace /DeviceRGB +/Length 211 +/Filter/FlateDecode +/DecodeParms<> +>> +stream +HÇíW;Ã0}T>«™³dÈ2dÉÌiÛ¡*òÇR†H”!ñ±Ÿy2ÅáIq‚–™ÃO¥êÉû8·Ç¢]—À ÎÄàÐ#gFuÛìóÀ—äë²+ÛS½ÙKToYè½µÌ3)ÃV›¦ç¦[Q¥ÞAY›)Ú¢¦~5k¸V0n «‡¶7o]óì¯'N¹RÌ͵‚Õaë‚ßêñ®‹‘8t¥\˜ìð|K#ŸŠ´ÍaÅÙÄL1Fq2‡™ù?‡½Ìa7w<ßž,äíoé/§Í +endstream +endobj +690 0 obj << +/D [686 0 R /XYZ -16.307 900.716 null] +>> endobj +693 0 obj << +/D [686 0 R /XYZ 56.693 759.068 null] +>> endobj +694 0 obj << +/D [686 0 R /XYZ 56.693 759.068 null] +>> endobj +688 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F52 695 0 R >> +/XObject << /Im1 687 0 R >> +/ProcSet [ /PDF /Text /ImageC ] +>> endobj +737 0 obj << +/Length 780 +/Filter /FlateDecode +>> +stream +xÚí›[oÚ0€ßó+üHræ»ã=¶k;MíÖ¤!u}HiJÑB Ӻ?‡\ˆU^µIÄø)†ÛŸÏ5£)Âè"8oÎF´¤‘¤ Š ¦ÐèÝnÒ,MViQ‹2]ÕÍÇbY7ʧææ»brRßêãáex7ú`ÄD„€¢mXþÊÒÕSš–«ê¶‘NPl¤KVIçZ1ßD´jäÏfUÇàl|ˆ#‚„©Rš€ÄMæÁíFæž\Çèçºç ‚2iÚŸ¼µrŠMˆ¨„·ƒr ‚ÈZøi‘—iÞÍUmì”YÓ€9¯{’0"ã=Ûõ6ŒÁÊ,n½–zË)ª7X5›„ÛѪ~ídwE\c`ÄlQ k~ë)©§Å|^äad¶pa$̬Žçµ>”¹l"܃ü6"\ÊÔíu­7[tiC÷ü“Y$¥ÇGö(©³†úûÑÕ¥±#RyÒn‘¦-iÞ>[ü¸7¤™öªí¶j‹ø—0ƃôþ)Í•e÷¤{CšZ’– éëˆA²LæU­ˆ×lGy«Ö”?›äa5+òU•O¸§„w2?Ó´ÉûŒC¬›Ä–þÓüý}þG»üÏg.Efelh—ú ÁQÒ´%Í|á0ïŒlÝ‚“ÁÿÁÉ4‡uNæ"ÍË´:ˆÏe)­ý)Ô=9~Üʱ°Î±u9ÙYºÌ‹¹iIû`±ç¤•U°ÈºêâU’/’iõÐVhùðùjKM–þqAïZWO °%ð®¨8Éf‹:ö—žy´{ ›XÂŽ}ªï„rKo­Þãáe4N²Ä¤[1÷€˜,}u‡[qÐ?q0PÅ»ŠÑ—«8±cV¶Ì ÷EGß®aᾈã"ÝN}Ç¥`YR÷Eœc!í‹8ý´ßÌÒ;û"Α)t[Ĺ^_1¦Ù,ŸšÕrx»¢Úéx#£&ÏUì­hìÉ.YnIÖ×jÜ Û^÷½YÈ1`©_óbáoJËÃp +endstream +endobj +736 0 obj << +/Type /Page +/Contents 737 0 R +/Resources 735 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 696 0 R +/Annots [ 697 0 R 698 0 R 699 0 R 700 0 R 701 0 R 702 0 R 703 0 R 704 0 R 705 0 R 706 0 R 707 0 R 708 0 R 709 0 R 710 0 R 711 0 R 712 0 R 713 0 R 714 0 R 715 0 R 716 0 R 717 0 R 718 0 R 719 0 R 720 0 R 721 0 R 722 0 R 723 0 R 724 0 R 725 0 R 726 0 R 727 0 R 728 0 R ] +>> endobj +697 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [560.952 706.475 567.925 715.332] +/A << /S /GoTo /D (section.1) >> +>> endobj +698 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [560.952 688.543 567.925 697.29] +/A << /S /GoTo /D (subsection.1.1) >> +>> endobj +699 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [560.952 670.61 567.925 679.357] +/A << /S /GoTo /D (subsection.1.2) >> +>> endobj +700 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [560.952 652.677 567.925 661.424] +/A << /S /GoTo /D (subsection.1.3) >> +>> endobj +701 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [560.952 634.744 567.925 643.491] +/A << /S /GoTo /D (subsection.1.4) >> +>> endobj +702 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [560.952 616.812 567.925 625.559] +/A << /S /GoTo /D (subsection.1.5) >> +>> endobj +703 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [560.952 598.879 567.925 607.626] +/A << /S /GoTo /D (subsection.1.6) >> +>> endobj +704 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [560.952 580.946 567.925 589.693] +/A << /S /GoTo /D (subsection.1.7) >> +>> endobj +705 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [560.952 552.931 567.925 561.907] +/A << /S /GoTo /D (section.2) >> +>> endobj +706 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [560.952 535.018 567.925 543.865] +/A << /S /GoTo /D (subsection.2.1) >> +>> endobj +707 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [560.952 517.086 567.925 525.932] +/A << /S /GoTo /D (subsection.2.2) >> +>> endobj +708 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [560.952 499.153 567.925 507.999] +/A << /S /GoTo /D (subsection.2.3) >> +>> endobj +709 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [560.952 471.237 567.925 480.214] +/A << /S /GoTo /D (section.3) >> +>> endobj +710 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [560.952 453.424 567.925 462.171] +/A << /S /GoTo /D (subsection.3.1) >> +>> endobj +711 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [560.952 435.491 567.925 444.239] +/A << /S /GoTo /D (subsection.3.2) >> +>> endobj +712 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [560.952 417.459 567.925 426.306] +/A << /S /GoTo /D (subsection.3.3) >> +>> endobj +713 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [560.952 399.526 567.925 408.104] +/A << /S /GoTo /D (subsection.3.4) >> +>> endobj +714 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [560.952 381.474 567.925 390.44] +/A << /S /GoTo /D (subsection.3.5) >> +>> endobj +715 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 363.661 567.925 372.508] +/A << /S /GoTo /D (subsection.3.6) >> +>> endobj +716 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 345.828 567.925 354.575] +/A << /S /GoTo /D (subsection.3.7) >> +>> endobj +717 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 327.895 567.925 336.642] +/A << /S /GoTo /D (subsection.3.8) >> +>> endobj +718 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 309.962 567.925 318.709] +/A << /S /GoTo /D (subsection.3.9) >> +>> endobj +719 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 282.067 567.925 290.924] +/A << /S /GoTo /D (section.4) >> +>> endobj +720 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 264.134 567.925 272.881] +/A << /S /GoTo /D (subsection.4.1) >> +>> endobj +721 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 246.201 567.925 254.948] +/A << /S /GoTo /D (subsection.4.2) >> +>> endobj +722 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 228.169 567.925 237.016] +/A << /S /GoTo /D (subsection.4.3) >> +>> endobj +723 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 210.236 567.925 219.083] +/A << /S /GoTo /D (subsection.4.4) >> +>> endobj +724 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 192.304 567.925 201.15] +/A << /S /GoTo /D (subsection.4.5) >> +>> endobj +725 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 174.371 567.925 183.217] +/A << /S /GoTo /D (subsection.4.6) >> +>> endobj +726 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 156.438 567.925 165.285] +/A << /S /GoTo /D (subsection.4.7) >> +>> endobj +727 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 138.605 567.925 147.352] +/A << /S /GoTo /D (subsection.4.8) >> +>> endobj +728 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 120.672 567.925 129.419] +/A << /S /GoTo /D (subsection.4.9) >> +>> endobj +738 0 obj << +/D [736 0 R /XYZ -11.232 900.716 null] +>> endobj +735 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F52 695 0 R /F57 739 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +776 0 obj << +/Length 822 +/Filter /FlateDecode +>> +stream +xÚí›;oÛ0Çw} +ŽÖ@–oŠÓæ"é#ö È &ŠcÔ¶R[AÓo_Ê”l'0ÚKÐÁRn0(C2Òïîtü›ädL89NFÉ»#ÉgÞJKF·ÄJfÉ„bÊ‘Ñ ¹œÓ"_)•†>—U±Œ‡·å"TwÍÉåõAYþˆ_.†§éÕèS0C…`Þ˜ØÛ°ú=-–wEQ-ëÓÁº Y°nUm]{Í„%Ô0ïó“ɤ¾09%?ºãDc™õŠ8/˜å’\Ï’Ë+Nn¹`iŸ‘_«+gÄΤ²áxJ†É·„?¹s·uçmŸÚ3Ám4nR*8ç;žÁû”*Á‚9ÃÄj€ql‹1‰çÇ 1<w*|[õ&ôêÂvÏž<Õ™aJúð¼ ?Š‡!«G_Rª¥°”†n±Y5Úû}Ë6Ù®pIƒ?÷€¶]É6tÙ@?G³A÷ +tˆò†´jHÞ?|¤•ÇÈî&p‹lÝðþš +3Èù¬~›:¸{ûYIA…f^k‡ÚBF° š‚Ck +óâšÂ®kŠãb^µ#>V)uÞ£ûuÅý,$ÛØuñ¡œÍÊyJCUp÷®Õv];àÔ Ô3XHkœt´T0Ц}–Ïïóq­ºx÷¯foÛð-¾Ö3?m0qw¸ƒÅ³ÛJÜ'Åô>¥Ö)亿\/ä gôo ·oÃx2¾›†O5™ká.C¶ûËÖßÉ‚‡~ãŸWt˜?ÖSf'‘lgÉn/±{‘Oó6Ó˜•;"°:€Àª™ +¬Š?¡íùh³ñ° dSþ›Í}zMñ:›!Ù£Üõü©èÍè×J2jý§¾o…ZcÇAKhZcñn²·A­ñMÅs«-Ÿ—ó›j1©ÅF­‘ïÞóU0¾5Ç^àÖÀü¡èظU0š_ÉÿœÙC—ˆ©,;o]NpÖ(f8µïªÿV¤ÖÛ#"h\#Ö%¸WE¸(Ûôz„®#t”m: +ZÃTÙ@ÚDÒ¨Ût‹¯²xqsP·yäí6‰—ˆu€ëî8nÛ][–5gÜú×ìXþº[™è +endstream +endobj +775 0 obj << +/Type /Page +/Contents 776 0 R +/Resources 774 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 696 0 R +/Annots [ 729 0 R 730 0 R 731 0 R 732 0 R 733 0 R 734 0 R 740 0 R 741 0 R 742 0 R 743 0 R 744 0 R 745 0 R 746 0 R 747 0 R 748 0 R 749 0 R 750 0 R 751 0 R 752 0 R 753 0 R 754 0 R 755 0 R 756 0 R 757 0 R 758 0 R 759 0 R 760 0 R 761 0 R 762 0 R 763 0 R 764 0 R 765 0 R 766 0 R 767 0 R 768 0 R 769 0 R ] +>> endobj +729 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 748.109 567.925 756.966] +/A << /S /GoTo /D (section.5) >> +>> endobj +730 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 730.38 567.925 739.127] +/A << /S /GoTo /D (subsection.5.1) >> +>> endobj +731 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 712.65 567.925 721.397] +/A << /S /GoTo /D (subsection.5.2) >> +>> endobj +732 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 694.821 567.925 703.668] +/A << /S /GoTo /D (subsection.5.3) >> +>> endobj +733 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 677.091 567.925 685.938] +/A << /S /GoTo /D (subsection.5.4) >> +>> endobj +734 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 649.379 567.925 658.355] +/A << /S /GoTo /D (section.6) >> +>> endobj +740 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 631.669 567.925 640.516] +/A << /S /GoTo /D (subsection.6.1) >> +>> endobj +741 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 613.939 567.925 622.786] +/A << /S /GoTo /D (subsection.6.2) >> +>> endobj +742 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 596.21 567.925 605.056] +/A << /S /GoTo /D (subsection.6.3) >> +>> endobj +743 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 578.48 567.925 587.327] +/A << /S /GoTo /D (subsection.6.4) >> +>> endobj +744 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 560.75 567.925 569.597] +/A << /S /GoTo /D (subsection.6.5) >> +>> endobj +745 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 543.021 567.925 551.867] +/A << /S /GoTo /D (subsection.6.6) >> +>> endobj +746 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 525.291 567.925 534.138] +/A << /S /GoTo /D (subsection.6.7) >> +>> endobj +747 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 507.561 567.925 516.408] +/A << /S /GoTo /D (subsection.6.8) >> +>> endobj +748 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 489.712 567.925 498.678] +/A << /S /GoTo /D (subsection.6.9) >> +>> endobj +749 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 471.982 567.925 480.949] +/A << /S /GoTo /D (subsection.6.10) >> +>> endobj +750 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 454.253 567.925 463.219] +/A << /S /GoTo /D (subsection.6.11) >> +>> endobj +751 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 426.66 567.925 435.636] +/A << /S /GoTo /D (section.7) >> +>> endobj +752 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 398.968 567.925 407.944] +/A << /S /GoTo /D (section.8) >> +>> endobj +753 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 371.275 567.925 380.252] +/A << /S /GoTo /D (section.9) >> +>> endobj +754 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 353.566 567.925 362.412] +/A << /S /GoTo /D (subsection.9.1) >> +>> endobj +755 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 335.836 567.925 344.683] +/A << /S /GoTo /D (subsection.9.2) >> +>> endobj +756 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 318.106 567.925 326.953] +/A << /S /GoTo /D (subsection.9.3) >> +>> endobj +757 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 300.377 567.925 309.223] +/A << /S /GoTo /D (subsection.9.4) >> +>> endobj +758 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 282.647 567.925 291.493] +/A << /S /GoTo /D (subsection.9.5) >> +>> endobj +759 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 264.917 567.925 273.764] +/A << /S /GoTo /D (subsection.9.6) >> +>> endobj +760 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 247.187 567.925 256.034] +/A << /S /GoTo /D (subsection.9.7) >> +>> endobj +761 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 229.458 567.925 238.304] +/A << /S /GoTo /D (subsection.9.8) >> +>> endobj +762 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 201.745 567.925 210.722] +/A << /S /GoTo /D (section.10) >> +>> endobj +763 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 184.036 567.925 192.882] +/A << /S /GoTo /D (subsection.10.1) >> +>> endobj +764 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 166.306 567.925 175.153] +/A << /S /GoTo /D (subsection.10.2) >> +>> endobj +765 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 148.576 567.925 157.423] +/A << /S /GoTo /D (subsection.10.3) >> +>> endobj +766 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 130.946 567.925 139.693] +/A << /S /GoTo /D (subsection.10.4) >> +>> endobj +767 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 113.217 567.925 121.964] +/A << /S /GoTo /D (subsection.10.5) >> +>> endobj +768 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 95.387 567.925 104.234] +/A << /S /GoTo /D (subsection.10.6) >> +>> endobj +769 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 77.658 567.925 86.504] +/A << /S /GoTo /D (subsection.10.7) >> +>> endobj +777 0 obj << +/D [775 0 R /XYZ -16.307 900.716 null] +>> endobj +774 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F57 739 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +817 0 obj << +/Length 899 +/Filter /FlateDecode +>> +stream +xÚíœKsÚ0Çïþ:šƒ½eõ˜6É>3ÍLšƒâ©Á)¸)ùö•-HHJ:NÈì±m­ÅO»’þ^AÐt£ƒcIÁF1…†wH1¬4J)Ç\£á]Åy™gó¼—0IâÏUÏÝî]5s;õýòä§êö°ª~ºƒËA¿w=<³fJ±‘Ò•6¨ŸÊ|~Ÿçõ¼9m­S”ZëŠ7Ö…áXÉ%½´_<6FGÃèWDmqQ$V†#m(V„¡ÛItuMÐÈž³±0)úÓ^9A’̸²û%Dß"òn͵-ËÖY ƒ)Qζ½9í%ÒVçè¶,ܯ bl¿#do7˜]y–¦e¬ºÆ1#·sq¡«Ä¶¬XŠW×­¶mÓT8]5M Û8ØgY‘ø±Çdœæ僥®P7à–ÿÇ-žqSÒ_T¿§£zVXÎJ Û!À´<(‹QÓmi)Á‹c­|c7e-ëï½”Äùͼ¨ó8ত׼š·¤¿ö¨íŸgÙ¤j + ólíÍ[8Þ³ê!¬,¦c[[a€t ¤ñŽá²%=lbxU•íL“í»cw”úš«–úѢΧó¢šZìœR ¼ó„©7aݾô“A¶¨¦vdÆR ,Ùµˆ>“½ÌÊÌ’MçNø¬y&[7‹yY7^«íî²eÙK½¦s'T`#J˜åM—"»JȱÿCÓ“˜bͱ+ƒ}{+fšÛ£¶´7‚’Õù×6Ù+›ë†èv†Þ(ú‰H%æ̼iÚ S'óžäÓ:o&‘‹¦i#Ì°ú?ÝÃÌ‘>þbkÇ`&ö „ùu] sGýtxÞ·AEi iîKZ8ÒçÙô!7¿4€y÷ù +ßø-_<Ù½ˆUšØ`Á¾8®‚´Šà£´7l iû´—)SVÑU^¦IÁ Ø°yËíå"þ®tC|¥¹…tÃAº ½ñÌÝâ+éæc5™4/ŒŒéy÷ézfkñ•DÂ\¨k_Ÿ Ì…MÚø’– ÌØ;kê¿A¿ Þ™µðufÐoºàÛÞ¸A¿é¤?¿oÐo:ÁÛ{*½\çvZŒïKû©Û zÎS`¼»p•7\ +«#‚vcí¶—+ÜúÅÍž&Èïö5ç°(f© X2ÑÑ0.aÉDPC±t#ÙÕvÓÓ‚‰2Ûü/Í_u©je +endstream +endobj +816 0 obj << +/Type /Page +/Contents 817 0 R +/Resources 815 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 696 0 R +/Annots [ 770 0 R 771 0 R 772 0 R 773 0 R 778 0 R 779 0 R 780 0 R 781 0 R 782 0 R 783 0 R 784 0 R 785 0 R 786 0 R 787 0 R 788 0 R 789 0 R 790 0 R 791 0 R 792 0 R 793 0 R 794 0 R 795 0 R 796 0 R 797 0 R 798 0 R 799 0 R 800 0 R 801 0 R 802 0 R 803 0 R 804 0 R 805 0 R 806 0 R 807 0 R 808 0 R 809 0 R 810 0 R 811 0 R 812 0 R ] +>> endobj +770 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 748.01 567.925 756.857] +/A << /S /GoTo /D (subsection.10.8) >> +>> endobj +771 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 731.156 567.925 740.002] +/A << /S /GoTo /D (subsection.10.9) >> +>> endobj +772 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 714.301 567.925 723.148] +/A << /S /GoTo /D (subsection.10.10) >> +>> endobj +773 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 697.447 567.925 706.294] +/A << /S /GoTo /D (subsection.10.11) >> +>> endobj +778 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 680.593 567.925 689.439] +/A << /S /GoTo /D (subsection.10.12) >> +>> endobj +779 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 663.738 567.925 672.585] +/A << /S /GoTo /D (subsection.10.13) >> +>> endobj +780 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 646.884 567.925 655.731] +/A << /S /GoTo /D (subsection.10.14) >> +>> endobj +781 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 630.03 567.925 638.876] +/A << /S /GoTo /D (subsection.10.15) >> +>> endobj +782 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 613.175 567.925 622.022] +/A << /S /GoTo /D (subsection.10.16) >> +>> endobj +783 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 596.321 567.925 605.168] +/A << /S /GoTo /D (subsection.10.17) >> +>> endobj +784 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 579.467 567.925 588.313] +/A << /S /GoTo /D (subsection.10.18) >> +>> endobj +785 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 562.612 567.925 571.459] +/A << /S /GoTo /D (subsection.10.19) >> +>> endobj +786 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 535.775 567.925 544.752] +/A << /S /GoTo /D (section.11) >> +>> endobj +787 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 508.958 567.925 517.935] +/A << /S /GoTo /D (section.12) >> +>> endobj +788 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 492.124 567.925 500.971] +/A << /S /GoTo /D (subsection.12.1) >> +>> endobj +789 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 475.27 567.925 484.116] +/A << /S /GoTo /D (subsection.12.2) >> +>> endobj +790 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 458.415 567.925 467.262] +/A << /S /GoTo /D (subsection.12.3) >> +>> endobj +791 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 441.561 567.925 450.408] +/A << /S /GoTo /D (subsection.12.4) >> +>> endobj +792 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 424.707 567.925 433.553] +/A << /S /GoTo /D (subsection.12.5) >> +>> endobj +793 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 407.852 567.925 416.699] +/A << /S /GoTo /D (subsection.12.6) >> +>> endobj +794 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 390.998 567.925 399.845] +/A << /S /GoTo /D (subsection.12.7) >> +>> endobj +795 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 374.144 567.925 382.99] +/A << /S /GoTo /D (subsection.12.8) >> +>> endobj +796 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 357.289 567.925 366.136] +/A << /S /GoTo /D (subsection.12.9) >> +>> endobj +797 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 330.453 567.925 339.429] +/A << /S /GoTo /D (section.13) >> +>> endobj +798 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 313.618 567.925 322.465] +/A << /S /GoTo /D (subsection.13.1) >> +>> endobj +799 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 296.764 567.925 305.611] +/A << /S /GoTo /D (subsection.13.2) >> +>> endobj +800 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 279.91 567.925 288.756] +/A << /S /GoTo /D (subsection.13.3) >> +>> endobj +801 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 262.936 567.925 271.902] +/A << /S /GoTo /D (subsection.13.4) >> +>> endobj +802 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 246.201 567.925 255.048] +/A << /S /GoTo /D (subsection.13.5) >> +>> endobj +803 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 229.347 567.925 238.193] +/A << /S /GoTo /D (subsection.13.6) >> +>> endobj +804 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 212.492 567.925 221.339] +/A << /S /GoTo /D (subsection.13.7) >> +>> endobj +805 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 195.638 567.925 204.485] +/A << /S /GoTo /D (subsection.13.8) >> +>> endobj +806 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 178.784 567.925 187.63] +/A << /S /GoTo /D (subsection.13.9) >> +>> endobj +807 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 161.929 567.925 170.776] +/A << /S /GoTo /D (subsection.13.10) >> +>> endobj +808 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 145.075 567.925 153.653] +/A << /S /GoTo /D (subsection.13.11) >> +>> endobj +809 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 128.221 567.925 136.798] +/A << /S /GoTo /D (subsection.13.12) >> +>> endobj +810 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 111.366 567.925 119.944] +/A << /S /GoTo /D (subsection.13.13) >> +>> endobj +811 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 94.512 567.925 103.09] +/A << /S /GoTo /D (subsection.13.14) >> +>> endobj +812 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 77.658 567.925 86.504] +/A << /S /GoTo /D (subsection.13.15) >> +>> endobj +818 0 obj << +/D [816 0 R /XYZ -11.232 900.716 null] +>> endobj +815 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F57 739 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +860 0 obj << +/Length 819 +/Filter /FlateDecode +>> +stream +xÚíœÉnÛ0†ïz +¥ƒXîKi³ HÚ4ÐiF¬8Fe+µÕííK‰V¤qÀúdÊs0$A‡äÇe~ÌXMAÇÉA‘¼:’YlS¨¸EŠa¥‘¡sŠ1ºJ/ʪ-Ë,g’¤ïë¦\úÛÛzáoš»ÕË·õÍA]õŸ/O³ëâ3“SŠ­”¾¶ËæwU.ïʲY¶¯uŠŒ³®xk]X‰•°(—Øê•ým¹ä°H¾%ÔÕFERae9Ò–bEº™%W×Ý;g kÐÏ®ä IJ0ãÊÝWè2ù˜G×:Þ×),¦DyÓTd¹$¤‚×YÎ)I)Ö “®U¾A‹ ò7Ç rå1ÓÜ=uUhÓìí>í\‰9s¦ +S¥{³˜:ÃnßÔ³Y=Ïr7)ömÙŸ‹°vWÚòá3̯r7Sm•ë¯Ý +xL—yºG\'Û?²C¢nÈËÔÿn%˜{ê'ÅÙ©ÛH”ÒÃ"½^ß“>ÍïG“ö¼”øî>_ÊWz¾ç•éh1šµ‘¦°ž‡Ê[yÞE¦IZÎî«Qã<^k9 ÞyÆ,ôtÖžñEý}>nÓû,WBÙH?w¹l…@9sÐùŠ¹Ü î(¦âÎðÿwýT“ îbœg<ì° îö’:ˆ»a“^ïÞ+qw2ÜUî×LçGœ€»»pEè2– ÜÍWrß+Þ+Uw¾¨¿ªn¯Âé¸I¿$ïœàòôÕF}¼3r‹à}ãD“aþŸêõÝ᯦œ/§õ|ÙN, +„c'¼^¿üp¨«Pêüž– à£ƒkBg +~€|׋Wƒ‚ß+Þ¦½’ÖuÕ%Ÿ‚O)u»½š×Ô< ÖÚ-Ô¼îÕ<¨áNÀ¶Ý«|P‘’¶i¹úaäö¤¬Ú¼Íl´`×KX€§8\ÞA>ƒÙè3„FžXó DbœhéÀ"±L6Ø#êëu €ÈI«PÒæ%_ÊÒ¼bç-oJ‚lÈóŠuðÞ !aסحÇþ©Ã¾·.“ðÌØI÷×ç¾ï"&Ênóy—?ülHJ +endstream +endobj +859 0 obj << +/Type /Page +/Contents 860 0 R +/Resources 858 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 696 0 R +/Annots [ 813 0 R 814 0 R 819 0 R 820 0 R 821 0 R 822 0 R 823 0 R 824 0 R 825 0 R 826 0 R 827 0 R 828 0 R 829 0 R 830 0 R 831 0 R 832 0 R 833 0 R 834 0 R 835 0 R 836 0 R 837 0 R 838 0 R 839 0 R 840 0 R 841 0 R 842 0 R 843 0 R 844 0 R 845 0 R 846 0 R 847 0 R 848 0 R 849 0 R 850 0 R 851 0 R 852 0 R 853 0 R 854 0 R 855 0 R 856 0 R ] +>> endobj +813 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 747.99 567.925 756.966] +/A << /S /GoTo /D (section.14) >> +>> endobj +814 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 731.724 567.925 740.69] +/A << /S /GoTo /D (subsection.14.1) >> +>> endobj +819 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 715.677 567.925 724.523] +/A << /S /GoTo /D (subsection.14.2) >> +>> endobj +820 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 699.51 567.925 708.356] +/A << /S /GoTo /D (subsection.14.3) >> +>> endobj +821 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 683.343 567.925 692.19] +/A << /S /GoTo /D (subsection.14.4) >> +>> endobj +822 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 667.176 567.925 676.023] +/A << /S /GoTo /D (subsection.14.5) >> +>> endobj +823 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 651.01 567.925 659.856] +/A << /S /GoTo /D (subsection.14.6) >> +>> endobj +824 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 634.843 567.925 643.69] +/A << /S /GoTo /D (subsection.14.7) >> +>> endobj +825 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 608.694 567.925 617.67] +/A << /S /GoTo /D (section.15) >> +>> endobj +826 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 592.547 567.925 601.394] +/A << /S /GoTo /D (subsection.15.1) >> +>> endobj +827 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 576.38 567.925 585.227] +/A << /S /GoTo /D (subsection.15.2) >> +>> endobj +828 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 560.213 567.925 569.06] +/A << /S /GoTo /D (subsection.15.3) >> +>> endobj +829 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 544.047 567.925 552.893] +/A << /S /GoTo /D (subsection.15.4) >> +>> endobj +830 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 527.88 567.925 536.727] +/A << /S /GoTo /D (subsection.15.5) >> +>> endobj +831 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 511.713 567.925 520.56] +/A << /S /GoTo /D (subsection.15.6) >> +>> endobj +832 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 495.547 567.925 504.393] +/A << /S /GoTo /D (subsection.15.7) >> +>> endobj +833 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 469.397 567.925 478.374] +/A << /S /GoTo /D (section.16) >> +>> endobj +834 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 453.251 567.925 462.097] +/A << /S /GoTo /D (subsection.16.1) >> +>> endobj +835 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 437.084 567.925 445.93] +/A << /S /GoTo /D (subsection.16.2) >> +>> endobj +836 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 420.917 567.925 429.764] +/A << /S /GoTo /D (subsection.16.3) >> +>> endobj +837 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 404.75 567.925 413.597] +/A << /S /GoTo /D (subsection.16.4) >> +>> endobj +838 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 388.584 567.925 397.43] +/A << /S /GoTo /D (subsection.16.5) >> +>> endobj +839 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 372.417 567.925 381.264] +/A << /S /GoTo /D (subsection.16.6) >> +>> endobj +840 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 356.25 567.925 365.097] +/A << /S /GoTo /D (subsection.16.7) >> +>> endobj +841 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 339.964 567.925 348.93] +/A << /S /GoTo /D (subsection.16.8) >> +>> endobj +842 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 313.934 567.925 322.91] +/A << /S /GoTo /D (section.17) >> +>> endobj +843 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 297.668 567.925 306.634] +/A << /S /GoTo /D (subsection.17.1) >> +>> endobj +844 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 281.501 567.925 290.467] +/A << /S /GoTo /D (subsection.17.2) >> +>> endobj +845 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 265.334 567.925 274.301] +/A << /S /GoTo /D (subsection.17.3) >> +>> endobj +846 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 249.168 567.925 258.134] +/A << /S /GoTo /D (subsection.17.4) >> +>> endobj +847 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 223.138 567.925 232.114] +/A << /S /GoTo /D (section.18) >> +>> endobj +848 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 206.872 567.925 215.838] +/A << /S /GoTo /D (subsection.18.1) >> +>> endobj +849 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 190.705 567.925 199.671] +/A << /S /GoTo /D (subsection.18.2) >> +>> endobj +850 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 174.538 567.925 183.505] +/A << /S /GoTo /D (subsection.18.3) >> +>> endobj +851 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 158.372 567.925 167.338] +/A << /S /GoTo /D (subsection.18.4) >> +>> endobj +852 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [555.97 142.205 567.925 151.171] +/A << /S /GoTo /D (subsection.18.5) >> +>> endobj +853 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [550.989 126.158 567.925 135.004] +/A << /S /GoTo /D (subsection.18.6) >> +>> endobj +854 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [550.989 109.991 567.925 118.838] +/A << /S /GoTo /D (subsection.18.7) >> +>> endobj +855 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [550.989 93.824 567.925 102.671] +/A << /S /GoTo /D (subsection.18.8) >> +>> endobj +856 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [550.989 77.658 567.925 86.504] +/A << /S /GoTo /D (subsection.18.9) >> +>> endobj +861 0 obj << +/D [859 0 R /XYZ -16.307 900.716 null] +>> endobj +858 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F57 739 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +887 0 obj << +/Length 596 +/Filter /FlateDecode +>> +stream +xÚí˜MsÓ0†ïþ{Œ«oéØ-Ã:4>0“é¡4nË`cH üz”Èn› · +“¤9YiôèÝ×Z¯„p ÇÙa‘=;RŽ:Í5W 9Õ,T(¦0•Uy1/sÂŽÞ6m9Í«fíM×ù¢¹çć}DÃZžÎC:÷¯¬å¾…Ó'Djý‡×·vöŠ[{y°÷èÔ«äüéY»[¶»TÛE°ýUY}Y ôÞñ]w\vŽoNr"´Ù[½cVßý²U°º¾ðÿkÃí~oÿŸ†3Œ¾V–&©“r­\dñrѦץL=X—vå:çC ܨW$â ã+˜TNR$‡@lË 5JM +ŽƒôŠl’"©tE“Ù8H¦+zÔ+8ß± ±8ßáŠxJèD<3(—¾üVLQć@éŠd’¢xfP¤ G@½¢xfPfë xfPzPRR]f8­¦ewY3Ë™î<–”ïD—>4ßÚ›6-ùU.‘ÍÖðý3v!$‘¢vsô²lÓË +endstream +endobj +886 0 obj << +/Type /Page +/Contents 887 0 R +/Resources 885 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 696 0 R +/Annots [ 857 0 R 862 0 R 863 0 R 864 0 R 865 0 R 866 0 R 867 0 R 868 0 R 869 0 R 870 0 R 871 0 R 872 0 R 873 0 R 874 0 R 875 0 R 876 0 R 877 0 R 878 0 R 879 0 R 880 0 R 881 0 R 882 0 R 883 0 R 884 0 R ] +>> endobj +857 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [550.989 747.99 567.925 756.966] +/A << /S /GoTo /D (section.19) >> +>> endobj +862 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [550.989 720.095 567.925 729.071] +/A << /S /GoTo /D (section.20) >> +>> endobj +863 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [550.989 702.182 567.925 711.028] +/A << /S /GoTo /D (subsection.20.1) >> +>> endobj +864 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [550.989 684.129 567.925 693.096] +/A << /S /GoTo /D (subsection.20.2) >> +>> endobj +865 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [550.989 666.197 567.925 675.163] +/A << /S /GoTo /D (subsection.20.3) >> +>> endobj +866 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [550.989 648.264 567.925 657.23] +/A << /S /GoTo /D (subsection.20.4) >> +>> endobj +867 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [550.989 630.451 567.925 639.297] +/A << /S /GoTo /D (subsection.20.5) >> +>> endobj +868 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [550.989 602.535 567.925 611.512] +/A << /S /GoTo /D (section.21) >> +>> endobj +869 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [550.989 574.64 567.925 583.616] +/A << /S /GoTo /D (section.22) >> +>> endobj +870 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [550.989 546.745 567.925 555.721] +/A << /S /GoTo /D (section.23) >> +>> endobj +871 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [550.989 518.849 567.925 527.825] +/A << /S /GoTo /D (section.24) >> +>> endobj +872 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [550.989 490.954 567.925 499.93] +/A << /S /GoTo /D (section.25) >> +>> endobj +873 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [550.989 463.058 567.925 472.035] +/A << /S /GoTo /D (section.26) >> +>> endobj +874 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [550.989 435.163 567.925 444.139] +/A << /S /GoTo /D (section.27) >> +>> endobj +875 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [550.989 407.268 567.925 416.244] +/A << /S /GoTo /D (section.28) >> +>> endobj +876 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [550.989 379.492 567.925 388.349] +/A << /S /GoTo /D (section.29) >> +>> endobj +877 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [550.989 351.596 567.925 360.453] +/A << /S /GoTo /D (section.30) >> +>> endobj +878 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [550.989 323.582 567.925 332.558] +/A << /S /GoTo /D (section.31) >> +>> endobj +879 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [550.989 295.806 567.925 304.662] +/A << /S /GoTo /D (section.32) >> +>> endobj +880 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [550.989 267.91 567.925 276.767] +/A << /S /GoTo /D (section.33) >> +>> endobj +881 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [550.989 240.015 567.925 248.872] +/A << /S /GoTo /D (section.34) >> +>> endobj +882 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [550.989 212 567.925 220.976] +/A << /S /GoTo /D (section.35) >> +>> endobj +883 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [550.989 184.105 567.925 193.081] +/A << /S /GoTo /D (section.36) >> +>> endobj +884 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [550.989 156.209 567.925 165.185] +/A << /S /GoTo /D (section.37) >> +>> endobj +888 0 obj << +/D [886 0 R /XYZ -11.232 900.716 null] +>> endobj +885 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F57 739 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +899 0 obj << +/Length 1388 +/Filter /FlateDecode +>> +stream +xÚWß“›6~÷_Á[ñLLF²IŸ.“¤M›fÒœgÚ™$d›‹à.׿¾»ÚÇqnÒöÉbµÚŸ>í®Ep DðãâÙnñýK)‚,ÊT¢‚Ý!PI¤6Á6^GëM°+ƒ÷á;]ëÜêå*‘"|czmiy0-úo>7Å3c>ÓÇׯ—w?ƒ›UG™”díº¿«µ=iÝ[Üïq°ïjÞÓ,Ž”Ú+eöSU¨¹x±[ü¹ˆÁžâ@ªHeë`ƒú" Šfñþ£JØQšmƒ[§Ù2Q²V°®ƒëÅo Á©Ï Š “b0I&£8É‚MšE±PÍÕÞö]^ô.¤¹ ‡å½U0J°°ZËh i9 »S®·2ìÙUK ¢¨4ÅÐè¶Ç/zÅ|™ˆðf™Àªªó}­I\µ¤æ.S×Õn«öèE]“÷ö)ÇKø}üê—Eð~%·qøÓî××r‚HŸ|íûüå>s®ó1n½Œeø¥ŸÛøa¹Jå:¬–qÈ@œ;ƒª7U©GHÈšî›UçIŠÚue{Ú6‡‘ƒ8˜Ñ èö”·…Fœ—Ó0oK\¬ÃvŽš¥½!!< í=y¿#ÉyØ×UAjWo_ñÁBŠÁrh…i?‘‡ŽnUÏy—7º×ÕøA iH¨5¤?”>X]uî+Ó²rs¶ƒÙ¢dþ†ãƒ”™tÁ´«mЬeø¿è oÍDfaašs a‘`D9¹µº¦Å¦Ìe[µE=”Žu}H¬8áÓÞ¸9{91ÍQOkÝÒªÉKMZ\i”çN#ëo*3pL̇'ð¥Dh5OXW™"õˆ¡ÈV¿¶Î8óæÅï×3ž‚éKž)ŸžÒœH⯼Ô@ÓÑ©oêÇö•Ã¬¦KSqxU[Cf•„§ ‘¦ábÚºjõ·\Ÿ–2¼ƒ7ºŸ—±uI§é~i åª7ÝÝåसÅsy×ÂÝsûê¸dl0ö ŽÝ±ctc/½Qá"¤—ïX1o8ð€«Ž×>L:s˜i¦Ô{ D4úRQæ;Üw´Ûª?ÑŠù;kio;óIsé' »##úŽ0¥Òô«¿4Ô«9^°Ç¬´O|t{ö¿yˉ9ÁÅTX¤r†#óW½Ú»çdP9ÆN஄ödº¾f|öü›ó^ïKÓÄÉ(5JI0€¯RN€©Êí|H’5€B;¦Õ$=׃…”ÄS`Tæ¹ß 3¹=ÃuóŽ+Î tIÃ÷˜ºt‰äP~¡a[¦7_¹=ÐþÇÛSräí©*< +¾Øgf·ˆ/á"y$Hˆë$ví >¡°MZLÛæg¸ÍžàCm¤;îÒ Lh‹8‰9µÉì’ ÙùþÁ»Z ÕÐ9ׯ§æñaw®Ç®…›fU1‰ÄgBEÀŸ“â@qŽ&öxÒ|JT£ŠbÌ×÷É“z³:êVc9g®:Óð»÷… _欅"ïMçÏTí¬dœG£¦ºB¯°Œøgìll劰ãâƒÙqs“a£sò +Ì…“äDÝ#‰:#’ø¼…¶Âgæ±ï +ÉÅNN{­šöZÚåñ««ð ó~ ê)}%ÆÒ’(¢Š;Ý@ ÜÖÇ9¦Ünòv€Bpwñ ”]Kꇫڠ5èvØ[í&0øà1´üø38¨Óq¬YQJNg(9íyK)PŸj +¯^`ã£(©.¶ì×ôÓ`{‰qt¦xùhþzàgÚÿŬ)üEˆé%xÖœÒoœ,Å8YŠoM–b6YFêØ¥P©ˆ„ÊþϨ¿Çů +endstream +endobj +898 0 obj << +/Type /Page +/Contents 899 0 R +/Resources 897 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 901 0 R +/Annots [ 889 0 R 890 0 R 891 0 R 892 0 R 893 0 R 894 0 R 895 0 R 896 0 R ] +>> endobj +889 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 1] +/Rect [331.964 710.801 359.359 720.814] +/Subtype/Link/A<> +>> endobj +890 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 1] +/Rect [363.062 710.801 381.499 720.814] +/Subtype/Link/A<> +>> endobj +891 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 1] +/Rect [385.203 710.801 421.898 720.814] +/Subtype/Link/A<> +>> endobj +892 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 .5 .5] +/Rect [80.603 677.924 107.997 687.937] +/Subtype/Link/A<> +>> endobj +893 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 1] +/Rect [160.266 677.924 206.346 687.937] +/Subtype/Link/A<> +>> endobj +894 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 1] +/Rect [322.2 677.924 421.978 687.937] +/Subtype/Link/A<> +>> endobj +895 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [186.45 650.029 218.318 660.042] +/A << /S /GoTo /D (dot0) >> +>> endobj +896 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [440.493 633.092 472.361 643.105] +/A << /S /GoTo /D (dot0) >> +>> endobj +900 0 obj << +/D [898 0 R /XYZ -16.307 900.716 null] +>> endobj +897 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F57 739 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +905 0 obj << +/Length 1769 +/Filter /FlateDecode +>> +stream +xÚÕZmoÛ6þî_! _`fHŠ¤¨nÐvM·ômK2 @Z²EÛBdÉ“¨¼ì×ïhI‰-Û5Yi÷!#ÑwÇãÝs_°3q°ó¦÷ò¢w|±ã#_Pá\ŒA‘ðI\äzÎEè\öÏT¬‚\ (Çý©VyÙ§YÙÐÓêãoéèeš^•ÿ|:wôåâÔ A>祴s}«|ª”ÎÍgÐN Ú…k´3"¸Î€#ß«ôçÉþqù T˜ßõ^_ôþéŽâp„ï:žOÀÔÍz—_°Â7И/›Eϙà FÔÐŽóÞ_=\9¯8„:„"Ÿnlª…38µMƆúGÎå€`Œ—<†.<õühà2Ö'ȈTã]ö68‡Âè=ZŠ½¨=9Nã8=¢¼%“òUT¹=(q”법ŽËçh$“zrô4¨>Oƒ#Šû×G„÷+áC¥’²5 Âê]%#՘΅ոlgåÐÐʸKOaäq¿ë"i¦rá$´ÙM¯ÒÙ,M¶xƒ!WðÝÞX¬Ýuú0¾…n˜ÔÝD2äy&0ºGÛlt%rùR·V„ñR—B"WŽûL)o8l]d 36HÄ„¬MxY¤ÿ=pí© +’,&vo¦*±ë9J­nµ¥Ø ·ë§¹¥È°P‡‚"&–"+Yõ»O©\y¾Ú®ÔݪØ݉¸ Ù²3ðY¡e5úÅ´&Õˆnäf'¿ÁËÄ÷çeãtƒ}„!¼åPœŒø>¢”´àdgéPeºÄësÜéJ¦£!¬‘ hÿ\v¸ÍÔxéßq:'{@:€1óܤ3Îp»ƒô†üvÞÞX{Hgܤ¿˜Ïã;;l™z4=,æÅ|žf–ø›3Ûêª\GI £Ô²¶D–ýLïÃ×áø§­½K'«Ì’E¦E6Rã4k–Ý™ÇÜe ?|b¬Êo™­Ý#1˜0¯ÊÄ°&0™Z áêË3S_2nËìÃHÀðžÙ3:<þˆRÆ* +¡XÔõa\&Wº˜ïS`„’¸ÝÕ×HrÖY¨7ä· õöÆîê#ÂH½Q:K¯m¹íTÙ£u>F–ÝgQ®ƒ+ c¶Õ(°ßm¸‰ôôÀ£‹ÛUC1Ó |ìbßõ;$R¾í?Àä~/ÔÝÈ·¿xÿîÇÞ êrã¦a!ˆar¸}PB`¢¼œû­2Ṉ•“`O2uϹ§ÑdßÞS) ˆ'iw˜J¥YŽu‡© ùí0µ½±ö˜J¥©0õÙ뎿K +·;¨nÈoÕíµçoDxˆÐ +ª_“qtÛŠ‹]>s±ØO¾ì`A–`¯’¼È¬—éeeøðê“í‚þúÏ4J´å¹Z`kêD%* ´íbÞš;…{„™µÜíKmKnÀ´ƒŽ¹ˆ¹]°1ºåšsø_•ß2Å[kÏÆHR_ózü¶Põz°= >œÛI¾VYn}Ha{lÍÍòÕ;{œ!æ#)½§Üª&P÷}ïû×gbvÇ:,Ï ïî®YC~ËÜmmìåûÈuýý·¬‹V?á«áLé t`YºË½ ½³ »‹'½ê%͹€> endobj +906 0 obj << +/D [904 0 R /XYZ -16.307 900.716 null] +>> endobj +2 0 obj << +/D [904 0 R /XYZ 56.693 759.068 null] +>> endobj +907 0 obj << +/D [904 0 R /XYZ 56.693 731.272 null] +>> endobj +6 0 obj << +/D [904 0 R /XYZ 56.693 701.45 null] +>> endobj +908 0 obj << +/D [904 0 R /XYZ 56.693 673.064 null] +>> endobj +910 0 obj << +/D [904 0 R /XYZ 56.693 627.296 null] +>> endobj +911 0 obj << +/D [904 0 R /XYZ 65.161 626.738 null] +>> endobj +912 0 obj << +/D [904 0 R /XYZ 56.693 580.472 null] +>> endobj +913 0 obj << +/D [904 0 R /XYZ 65.161 579.914 null] +>> endobj +10 0 obj << +/D [904 0 R /XYZ 56.693 542.763 null] +>> endobj +914 0 obj << +/D [904 0 R /XYZ 56.693 515.21 null] +>> endobj +915 0 obj << +/D [904 0 R /XYZ 56.693 468.2 null] +>> endobj +916 0 obj << +/D [904 0 R /XYZ 65.161 468.884 null] +>> endobj +917 0 obj << +/D [904 0 R /XYZ 65.161 457.925 null] +>> endobj +918 0 obj << +/D [904 0 R /XYZ 56.693 410.417 null] +>> endobj +919 0 obj << +/D [904 0 R /XYZ 65.161 411.1 null] +>> endobj +14 0 obj << +/D [904 0 R /XYZ 56.693 373.95 null] +>> endobj +920 0 obj << +/D [904 0 R /XYZ 56.693 346.396 null] +>> endobj +921 0 obj << +/D [904 0 R /XYZ 56.693 299.387 null] +>> endobj +922 0 obj << +/D [904 0 R /XYZ 65.161 300.07 null] +>> endobj +18 0 obj << +/D [904 0 R /XYZ 56.693 251.961 null] +>> endobj +925 0 obj << +/D [904 0 R /XYZ 56.693 224.407 null] +>> endobj +926 0 obj << +/D [904 0 R /XYZ 56.693 177.398 null] +>> endobj +927 0 obj << +/D [904 0 R /XYZ 65.161 178.081 null] +>> endobj +928 0 obj << +/D [904 0 R /XYZ 56.693 119.615 null] +>> endobj +929 0 obj << +/D [904 0 R /XYZ 65.161 120.298 null] +>> endobj +903 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F52 695 0 R /F93 909 0 R /F95 923 0 R /F98 924 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +932 0 obj << +/Length 1782 +/Filter /FlateDecode +>> +stream +xÚí[Y“›F~ß_A•,=lkî#yóY9|Ä»©¸Êö#‰Á¡=òëÓXK¬å-bã”ýÄZ=ÍÐß×Ç f ž=:==“$°`SÁé4P ” åÀupïo\âÂ¥3I/³Â-«á4Ë«A1¯/>É&²ìcõãíÉïç¿â4Ç”‚•²ÒvR\%n9w®X–—qvœ]ñrv¡hʃc V×ó3Ô§Í`T(SåÿŽžž}:¢¨4 +”å¶aÁdqôî "¼†óƒ°&¸XK.I 0®pœ'G‘z!ZXËÃó ͸T³@ ”¨Rsy^ Z¨€56È]0Ý©Êwn€ +ÝLP)¦¥tWý¨¢mý’PÐÊxÍ°¹Ì +,³0v­0ŸÕàMíˆø×® ÖŽX.(^;ÏË,_„IüOœÎÖN°[_ðîX2ˆ#—ñ4v¹Ÿ|‚î»:ó“»â¹ÔOøåã·~‚aù ¾zýl[pk¥·àqíc¸¤ÒtqâÇ›4Ò ’J–UOï=crËäÖ7 Ð%I%ü›‹‹ùp}§ÏÂy2Ë]úÓð˜²ráãt‹Ì­Æ•¾Ûoï•Ñ~•UÀ…ì ¿-ýÝðÛÝXü*kAqÞ„’h5q¾PœÍ¼q~îòq¶Œ‹«=!> +\ªû„„Ò0Põ‰Ÿ+‘òTGQ6#«Aî‹…ONVQ´'¬HRðþ°²­¿#V:»V¤Ãk×x•&W~Î?ÉÎ<%ãE8sK?Ù,õEj™z –‰¢—`“HúiÍüäž¾þó‘¯Æ,9ìÜ“,Ïݤðþ+N£ìÂó1Wž™»³,/œgv§mZ’þŠ¤D6¼ôžRåò˜hÒ€Ù|#sìK>‚ƒ4¢?nØÖß‘º{“ ŒbjV`t7½{À Ò±¼‘`ÖÕ_TcåMêr†°†“`ÕXYLa;ª¡SQRzöËÏ]rV›+E†ÕgO›²rš%I6drpQæëS“y˜ÎšBt¦CŠº«3ã2/_aTŸC¨^W«•³ò¹© µjÜõb§‘BÇt¦–›dúe\òåv=\újœWU4l¯ ÞpYXZ0æIÁ“ð<Žªˆÿ8.oR$wÙÔ=·ºŒ”XqËd‰ gm rK7`w7Ö?è#°™ê/²Ü3Dnx¨›oøÂíbNŠ,¿‘|ßîD‚!÷šMKd !‰›ñ*N"¸\$¾È¡«êÓeI8PÛ_ºÜÒß9Ý9D0´)-Ù¹ov3ÉWSÏdlšg ß~Ðôÿ^B€uë‘ì‹^a(ÞGØ-ó‰'€Ëž3—ýáW( +“š¾ðÛÒß ¿ÝõǯP”¶ ~wøíA ä[§-ÝY˜‡…'ŠÞxŸ`òç]Ï{—É—ËäÀMå¿Ãóз¢\+Ç€/â$b¹[‡io¦áL³£uX¦IbßΚàX— Ó#ÕP‹©íj¶õw¤šÎÆîA5˜&­PÍwG5ñOè}R ·H³cyªy~tÓ8qMkÏ…ƒw­ûã®Q£1½ñNK7Þén¬?ïpChùƒw¾7ÞáZ€¶ö^yGJ`ÍNëÁ‹©Ñ$[ŒRwyž»QúiÕ\ú¥:ž†ËP.m›¢êß›šêöëÖ†‚Á\‡×; +„¢ ”\h5ò\|H=–tœKÔ¥úã»mýù®³±{ð·ÀtÝ{áòÙ÷›vc²nü¸w³ÓŽó0ÌËÊaånéy_ñr¹j3ÓúÂN¤aBÔ×v¶ˆfayG!®¾ÜÁ–_øÃ`^,|÷XÝâl'eØ>6!9“@Ø-ï·µ­mcçë×oB~{Î]÷Õz þ^neb°#B; pZ'Be*ëë{¡gŸö"ôÝ0wÞž?É]xcÇÜÃ{æÿæ^w_‚IÕ쾪/î¾¾r$ ðËo{óõl—ܬ_Ö:ÜÞ+ÊY½÷z—7²Þdc—U†sR„WEvýFV”‡Óhã…ã¸íñ5cÆÞßkÆ-ýÝ—îÆú'.å>¼f5?=^;¸GDXÔ­’âÀoJ­½ghºh—*¾ I}öánÕiûƒ‡¾EP 0!î— )¥®™P‘ Ÿ^.]ÆYú3¡ûš¸ÈL …"Xo¢4Ý+O¯¡e«¾Ïo-(Ó`züÖ¢¥¿ v7ÖŸ)§e¯¯¢Ü}š2FÞkK… Ìòÿ e/¹Ïï ҂译±­¾:›ê̦ùço~tm¿—®­á@¤îan|ª(eïò¥â¿q8h; +endstream +endobj +931 0 obj << +/Type /Page +/Contents 932 0 R +/Resources 930 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 901 0 R +>> endobj +933 0 obj << +/D [931 0 R /XYZ -11.232 900.716 null] +>> endobj +934 0 obj << +/D [931 0 R /XYZ 56.693 759.068 null] +>> endobj +935 0 obj << +/D [931 0 R /XYZ 65.161 752.393 null] +>> endobj +936 0 obj << +/D [931 0 R /XYZ 56.693 709.908 null] +>> endobj +937 0 obj << +/D [931 0 R /XYZ 65.161 710.592 null] +>> endobj +938 0 obj << +/D [931 0 R /XYZ 56.693 668.107 null] +>> endobj +939 0 obj << +/D [931 0 R /XYZ 65.161 668.79 null] +>> endobj +22 0 obj << +/D [931 0 R /XYZ 56.693 623.076 null] +>> endobj +940 0 obj << +/D [931 0 R /XYZ 56.693 597.196 null] +>> endobj +941 0 obj << +/D [931 0 R /XYZ 56.693 559.8 null] +>> endobj +942 0 obj << +/D [931 0 R /XYZ 65.161 559.241 null] +>> endobj +943 0 obj << +/D [931 0 R /XYZ 56.693 517.998 null] +>> endobj +944 0 obj << +/D [931 0 R /XYZ 65.161 517.439 null] +>> endobj +945 0 obj << +/D [931 0 R /XYZ 56.693 475.627 null] +>> endobj +946 0 obj << +/D [931 0 R /XYZ 65.161 475.638 null] +>> endobj +947 0 obj << +/D [931 0 R /XYZ 56.693 433.825 null] +>> endobj +948 0 obj << +/D [931 0 R /XYZ 65.161 433.836 null] +>> endobj +949 0 obj << +/D [931 0 R /XYZ 56.693 391.745 null] +>> endobj +950 0 obj << +/D [931 0 R /XYZ 65.161 392.034 null] +>> endobj +951 0 obj << +/D [931 0 R /XYZ 56.693 349.549 null] +>> endobj +952 0 obj << +/D [931 0 R /XYZ 65.161 350.232 null] +>> endobj +26 0 obj << +/D [931 0 R /XYZ 56.693 304.518 null] +>> endobj +953 0 obj << +/D [931 0 R /XYZ 56.693 278.639 null] +>> endobj +954 0 obj << +/D [931 0 R /XYZ 56.693 240 null] +>> endobj +955 0 obj << +/D [931 0 R /XYZ 65.161 240.684 null] +>> endobj +30 0 obj << +/D [931 0 R /XYZ 56.693 205.928 null] +>> endobj +956 0 obj << +/D [931 0 R /XYZ 56.693 180.049 null] +>> endobj +957 0 obj << +/D [931 0 R /XYZ 56.693 142.652 null] +>> endobj +958 0 obj << +/D [931 0 R /XYZ 65.161 142.094 null] +>> endobj +959 0 obj << +/D [931 0 R /XYZ 56.693 100.851 null] +>> endobj +960 0 obj << +/D [931 0 R /XYZ 65.161 100.292 null] +>> endobj +930 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F95 923 0 R /F98 924 0 R /F52 695 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +963 0 obj << +/Length 1872 +/Filter /FlateDecode +>> +stream +xÚÍZKsÛ6¾ûWp¦‡È3 €/0ít&qk§i^µÜ63qIlHB%ÁÚίï‚$Š–l*²Ú<$Åå¾°ûíbaìÌ윽¸<:9ó±¡( s9uŠ‚ÐaÄEnè\Nœƒ žñ¸âÇCêãÁ[!y¥o§¢Ô7rn^þ$’B|ÖF¯?]¾1CBPäûšÛHÞf¼šs.+õ¤‡ôÀUÒ½¢¸ÎÐGQhä»À/dƒ}!4Pßý|yô÷îØ!Ž  r0"(ÀÔIò£Ÿ°3w ys®ÊÜñ FÔ à>sFG¿aã¼æêŠ"B|¥“eîÈ'Ö‰6:ØœC‚1ny +m<õìxèzÞ€ 0@ÄØÛö68‡2äy‘f{i=9Y&Ž©?¸N‹™þ)5nõ%K+©ïÄT_“y\ÌìâÈyl^ÏãcŠÿ`˜9/ô]OÌoUZ$¼³œÖXß—Ú4´f·öF¡Yk\X?í$mò7½Ûâ 1>ì‰5Cû™'ÅʶF6,èJ6a +Cì©Ø ñ`™|K’ˆ½)EˆRF{ÈuÑW”úƒžMvxJˆ”€Y.Ę—°Æxt$ã[) +ˆ6Báq"’1ä!º©²ï5ÁMɧ­Ç©Xõ¨…Ar*yêr¾žW$¤p ‘ë•Wêw‡²Áa‘SrgÚN¤5n›½+€ÈeÔ +ÐŒ‰¢Þ—¿H@ºü}¬Vˆõ’ЙE4ze†åÌÑ7uÖ–z©x¤à¸Yðç‹Ev»wAŠ©õ]Ä2™÷#•¢]U/â­qç|ÒtÂ+™±LEÑ'Šñü lÞýd°Ì†õÓ­ÔÚɼì§ÉHÔe¡\Îøú'ö‘GÝÃåÅ:ÿ=óboewÈ Ì O :1Æõ¬ßB”üN›7ß¹˜FÌóQ_DÄy®·"n¹.UY5 ˆò3³mE›[——o^ßS]Éÿ_]ç2Ï6hHäaòhõ•BÏI ƒÔõÕýŠúú+Oå\—˳xžÍJ¾¬¯ót6ÏàOîPC} ߣ‡«¡Ðå"ʼƒaE‡ÿ~X±¿²ý±Biê‡&òÉÏy!U¼÷ H‡IÖ›ZmŠ6àËÛ Ï¸[v~¼¿ì€:;JHïHxv¿YÆE–ä_ÕB<¬P%KÑqè!ìæùŽ"º‹·•ðƒ…Ù‡IE-µÞë¶aÇoÅ©2Äpdç +{ØÀ(kQ…6Ç–fØu<;õ +ëü÷…½•í +ÌG˜@Ä컺¡µ½YíÙ,¢g£\Wüq»^S‚{ÀZSÃúàŽãMx…}¼= {wÉoâºLå—~į8 TgÇФŽOzg†j ‚ÿ´ƒó<èZýÐvpîÆîý± `WÆyõmOIÛttrýàñ:90˜¸ô@“’2žJ”ƒŽè&ïÛʹô–žw¸VÎev8Ôîðßµ÷W¶+ç2ª éæO›ï;e˜Æu&¿®‡ÛÎUEÏ3gû´TO¶³.º žôÝ˺aˆHtP$¼3LäE~`çû»ÏÒñ=³tf±ÑNÌËö€PVO,.¦¹šÄ…™•JÖ@¯0¦7 bÚÉ;´ úf2©:@¶€«tV¤ŠI²ä?屬K¾ÐϺ#õ°cS öþ<@ñœg‹îWk{iE8\?wy®„Fƒ‚7Jê‡q©U® FƒáÃ1xiòÞd”¢ª†‹,–ÍFèÙ ‘Û|©~Ó X¬öÉͯu– %W>»1/+—É\nü ¸­4ŸhTúIÞ.Ò$β[+¥¶Ÿ¤EW…궒<¯ÐÆC&¾±€ˆ­ê×µöãÉD$ÕI" + ›Â“dX¸eBAAŒ°Õ)9þÊE¹Œ-í5ËìDŒ¾Lx.Ð}ëÝT»u@€9ÛŲ‘Û¯ŸØŽþPŸ¯œÎ-Bé}F§úp/ mä§9˜ ÁoHJÃj+ ÑÅ0“0†(H[³óÎöº‡¥ïôÅÂ:@˜¨;^ãýë¹myëj‰ÒO´D· ¦a²œFæñgŽ("Å6l€(ˆ–ÐðdsöWR$æpüt4jÇÌú o!–ÖôAOR–60ž4ó®Ÿßÿþ¢·'ƒV©5ê|lž1w«i0x{úá©«aÙñHBÆ+P•h]\ÐC³M ú†ëá- "Mx³Y¥K»\~sÇé>¢÷ìu6ýKƒ‡¢¯ù†50Ég +endstream +endobj +962 0 obj << +/Type /Page +/Contents 963 0 R +/Resources 961 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 901 0 R +>> endobj +964 0 obj << +/D [962 0 R /XYZ -16.307 900.716 null] +>> endobj +34 0 obj << +/D [962 0 R /XYZ 56.693 759.068 null] +>> endobj +965 0 obj << +/D [962 0 R /XYZ 56.693 731.272 null] +>> endobj +38 0 obj << +/D [962 0 R /XYZ 56.693 702.199 null] +>> endobj +966 0 obj << +/D [962 0 R /XYZ 56.693 674.337 null] +>> endobj +967 0 obj << +/D [962 0 R /XYZ 56.693 629.945 null] +>> endobj +968 0 obj << +/D [962 0 R /XYZ 65.161 630.629 null] +>> endobj +969 0 obj << +/D [962 0 R /XYZ 65.161 619.67 null] +>> endobj +42 0 obj << +/D [962 0 R /XYZ 56.693 583.268 null] +>> endobj +970 0 obj << +/D [962 0 R /XYZ 56.693 556.238 null] +>> endobj +971 0 obj << +/D [962 0 R /XYZ 56.693 511.847 null] +>> endobj +972 0 obj << +/D [962 0 R /XYZ 65.161 512.53 null] +>> endobj +46 0 obj << +/D [962 0 R /XYZ 56.693 465.17 null] +>> endobj +973 0 obj << +/D [962 0 R /XYZ 56.693 438.14 null] +>> endobj +974 0 obj << +/D [962 0 R /XYZ 56.693 393.748 null] +>> endobj +975 0 obj << +/D [962 0 R /XYZ 65.161 394.432 null] +>> endobj +50 0 obj << +/D [962 0 R /XYZ 56.693 356.958 null] +>> endobj +976 0 obj << +/D [962 0 R /XYZ 56.693 321.317 null] +>> endobj +961 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F52 695 0 R /F93 909 0 R /F95 923 0 R /F98 924 0 R /F57 739 0 R /F102 977 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +980 0 obj << +/Length 1726 +/Filter /FlateDecode +>> +stream +xÚí[moÛ6þî_!`_`fy|·/[Û%[×v[›ÚbP,ÚVcKž$7YýN/nlÙi©J +2 ŸLSäñtäóÜ‘õÃ>Gu]½î:ȧ‹f„]<ø†Ð 4q]ÑEô¡ý»D·”>Æø¢OO¸Üt]÷¾Mô+ŽCÙ€¸æšÁ‡Ãõ¾üŽ¸î¬l \ ÜHòÝà7l¨f}Gª¯\•ø9pd\·ÿ» Ybà"¤¸Sj ²Of¸È™!ÝÖ-Ò6lè’ZÇÂP¢ÀŒ-ò»±EweÝÙBNÌöŒ©]TóüÀƒ0…ÀàLÝéA(A4È™b²Âô{Ø#uóúƒ˜¤>s”;Š ߉ÅZµ·”*ôS ª’-!W-ù€´$8ÑF GKûò;ÒRge[ÐÆÛÔgQÌ}ä& 0ýn_­É 4ñ ôHNÁ1Ò‰ÿþååau!²Õ‘ Rn«ºÁi -n˜?-qƒˆWf0ZjÈïFKÝ•mAK”&ë[—öê’î%ñ"Šõá.)‰k Té¡ã¥à°.ý­¹Æqqžàb"î4Á‰Q†»MÞ³/ªó0[8#0¨‡áœø@8.Ó©!¿xº+ë`Hi£1‹®ûÍxœdGÜÚô—§Ž¡ü2s<™9’¿Í¦6ƒ8Ïú\¸Ô=Y“?È­Þ«ìöd™d®dÍðá&ùD"Þœ“O@cX,îôâ¤$‚}MjÙ³(½ *Žú-uùé<h›X÷Ø(uÀ2à‚ Ôáèi_~Gzê¬l zâhjóé3‹4Z¯]*L®â&œ¾ý<œfA–»ÆŠ m×Ô/WØù‚ÁŽG¿·ï ¹bãœüvµ°±óyIÚ³šqòÙPœŸG ‹îå¥.Ù£!¿#^;+Û"¦ˆÏëcò˜8úØâË„é&Ë“Õ±.70p˜J< ;⡌ƗW=‡ÑYAwqvã§jyǾ”ÐꆪíGbÿçò +endstream +endobj +979 0 obj << +/Type /Page +/Contents 980 0 R +/Resources 978 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 901 0 R +>> endobj +981 0 obj << +/D [979 0 R /XYZ -11.232 900.716 null] +>> endobj +54 0 obj << +/D [979 0 R /XYZ 56.693 759.068 null] +>> endobj +982 0 obj << +/D [979 0 R /XYZ 56.693 738.489 null] +>> endobj +983 0 obj << +/D [979 0 R /XYZ 56.693 692.152 null] +>> endobj +984 0 obj << +/D [979 0 R /XYZ 65.161 692.163 null] +>> endobj +985 0 obj << +/D [979 0 R /XYZ 56.693 645.327 null] +>> endobj +986 0 obj << +/D [979 0 R /XYZ 65.161 645.338 null] +>> endobj +987 0 obj << +/D [979 0 R /XYZ 56.693 598.225 null] +>> endobj +988 0 obj << +/D [979 0 R /XYZ 65.161 598.514 null] +>> endobj +989 0 obj << +/D [979 0 R /XYZ 56.693 551.006 null] +>> endobj +990 0 obj << +/D [979 0 R /XYZ 65.161 551.689 null] +>> endobj +991 0 obj << +/D [979 0 R /XYZ 56.693 504.576 null] +>> endobj +992 0 obj << +/D [979 0 R /XYZ 65.161 504.865 null] +>> endobj +993 0 obj << +/D [979 0 R /XYZ 56.693 457.357 null] +>> endobj +994 0 obj << +/D [979 0 R /XYZ 65.161 458.041 null] +>> endobj +995 0 obj << +/D [979 0 R /XYZ 56.693 410.734 null] +>> endobj +996 0 obj << +/D [979 0 R /XYZ 65.161 411.216 null] +>> endobj +997 0 obj << +/D [979 0 R /XYZ 56.693 363.708 null] +>> endobj +998 0 obj << +/D [979 0 R /XYZ 65.161 364.392 null] +>> endobj +58 0 obj << +/D [979 0 R /XYZ 56.693 327.241 null] +>> endobj +999 0 obj << +/D [979 0 R /XYZ 56.693 299.688 null] +>> endobj +1000 0 obj << +/D [979 0 R /XYZ 56.693 253.92 null] +>> endobj +1001 0 obj << +/D [979 0 R /XYZ 65.161 253.362 null] +>> endobj +1002 0 obj << +/D [979 0 R /XYZ 56.693 194.895 null] +>> endobj +1003 0 obj << +/D [979 0 R /XYZ 65.161 195.578 null] +>> endobj +1004 0 obj << +/D [979 0 R /XYZ 56.693 149.312 null] +>> endobj +1005 0 obj << +/D [979 0 R /XYZ 65.161 148.754 null] +>> endobj +978 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F52 695 0 R /F93 909 0 R /F95 923 0 R /F98 924 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1008 0 obj << +/Length 2341 +/Filter /FlateDecode +>> +stream +xÚÍ\moã¸þž_!ôZ\4\¾‹¼¾àzíÝÛ½C»I»÷A±GˆÞN’³ÙûõÙÎ&–íxhJF?²cj8"ç™g8CŠFóˆF?ž}w}öæE#K¬æ:º¾4':Ž DÄÑu}8ïr—´îâ’+zþsÕ¹võñ¶jVº»õÿ¨fßUÕýê˯Þ]ürýº¹dŒX¥VÒ®ºÏ¹kïœëÚþgèEz×¢ï]ÆœÄLD—ŠØxÝ¿y±9³º0®ûûξ¿>ûõŒt±Hi¢­ˆbˈ¦<šg~¡Q +¿AÿDZ}Z¶,"Å(áBÃç<º:û÷] ûýåÇ’a8XÌ£XZ¨î%÷ÿW4&±Ô'ÖبqÑí^QØ„!LÆO¬³¾u¨|E˜fCùŠ2kƒêáå0kb¹AÙ¥Àf­>¼_"LáÒdo +Œ[²yF¤XÏßÒÔ¥Ëéß/)úp©)XgöˆkØÝ%®eݸÖ5®Å5ϳò~£%<À›õ?¶o9ÿ¶©r7h¿”ó‘*ºÿ¶"¹÷QÙ4+±ƒçp wëWÎ6›Ã”«S.4€Uqøi9Û©¤+~nðOm.Wò6¬lÃ5<á‹Ç„3¾6åâ+XY ¾À¥i©Ì0è±^ gZÍ…+»¤Ëª b¦ í'âMùC¬,bˆ¿(n‰bk6û”uw8ÈìrçùÝ~WÐÍæÃæû[/»øT5[. +Ü #XTA˜Àe+î¹nÇ%kŠ×–ªÖcù‘s5ô'/Çß ²ö?%‹&ë~»X>ø[—”mU~sqÉxï-Éc›#[¾4”É¢óÉ`ôBv„”ÄG:V„ƒ7\ÎâÙ#6¸YÌ[,9åI‡ÛU¸vERÖÉËÍI‰ìþ˜ê²X¸jm eü¤x•11Ü×·YsŸ¬ÐúϪu÷OXvʺ̵>üiõ{²èª,}¼¼ïÛùàâØX° q DO‰åMùxVÖÓ‚·«™þO=o’tlü-Zdh:«Š¢BÆ»OÆ·ûnóóZ¸†ŸîRé¶*ÐC‘:ôè"èÛ¶jºäH78X Hjˆ‰Ù  ¡ab:¨nÊ„j°² Í)a«ÁÄ[RY!Õ} ÕpÞT‹:+çKêÞò†wì•_Ýb—Æ©{ì\S´GÓ0DÍæ´a³‚°¹ŸÕÑXø)b^3ðòkÚ¥/¿>y ?+#ˆ’b:~V1'ÊÈÉ@?úpeñü¬ æ6p]'€o“YW5XŸW³$Ï~Û‘CØËP‹º¬z²ê»¤œ/ ÄÆ&st0Þ8ì“âãìX¤®²àᡸªKõ«ÜÉÿSP§ÒŒh®¦CѦü@+ëAJKb§—Ùa­ï¦Zt»Á‚þK1J¢…>)Å0%&àì3sC„R²‹‰°z:;ß”hçÁÊz°DˆÚHïÍ—¹}ösßìæîÝçvä˜2+ê¦zÀª[»$ƒwž¹qCJÂì ÅV}úŠ,nMWïda‘Æ€a©iˆ„j"ÅtEšü@€+ëC$´Úº +ú/_;œ'Øz^‹¬­àcù Sxò¡‚HiOI>Òpµ¹,ÐeÄŒ$c†f¦£ WN§«± ä‡!$\Y<IxiãcŠ»¬ý+n×q|¨À»¦Áò ¾ø÷ظۑKõ½1‡û¤²„Ÿ´xî•P¡@õûêÆÁzrµ6ê’ÏÝ3¨«~„¦!¬´bÂbŸ„HÍNGz›âªª 9þ\õ9{ŽEMö߲¶ËK¼V‹ß…¶Õø;X÷çè|eVvM•.fXO·í{›>Ø:ål:ÓÜ”h›ÁÊâwtH+èº|5ܵï¯÷GV¶Î'ÛuÞ%ÍÜuéÇ-iÒ%Ãæ_¿n+ê¾~l^[R îú¤ ! î3ÒŽËsWöë+Ž÷ÅjÂB²€kl§«N ä‡!1\YÌäfÆTùnMô4ì"(mªi^XÎðÚ“x,·pi‰ä'-×qn—j\ni»&«KŸ •3K˜œ°\Ç©!ÌLW®È„n°²ÔÂØó¡Ãïkôñ—=ÉÖW–“W½YÔè´z™®­“ÙÎn!2 ps‹Þ’ˆõ,IúµøùÍ‘Ží ^˜ Ÿ. ¹)>̘ƒUõ !JŸw¢3aè“Ó_ ‰vó Ç0³Ü3;%#°Xy®sTF`^Û _óÀ<&®¢6ˆ¡`eñ„ÀÀ`…°šÒÒa=ñØ`‡kúîwÇÆg¿w;¶:¾R¼+‡ç°^oÞ:Ÿbbòdyrƒ­<$M†o}ã–k_b‘œP9Ý9Éü@X+‹ç&yÊÁtwØäE•.°–ýÉ ,ÞŠ¤üŒÜ,›eÏ@ˆ“2‹‰ûž›ÄàzÇ& ‹¦<å¸)> gÁªz°( +û6°¯MúŸÃîw öûëlº¨FŽ[—»2¿àûwáùÿ®$¬«ÂŸ#ÆÔ¬*êE7vîS4¸ÃÞhbÔtµ¬Mña¨ VO~–àÚ§ôÞØZV»0þçW*ÁÝV÷××± Hì_¦Ôbß-uNãt/ñª]½ð=¥ù÷¼j±/÷×eÌb£#ˆÑS˶Þ8()¡ÚóÂÁÿïmH’ +endstream +endobj +1007 0 obj << +/Type /Page +/Contents 1008 0 R +/Resources 1006 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 901 0 R +>> endobj +1009 0 obj << +/D [1007 0 R /XYZ -16.307 900.716 null] +>> endobj +1010 0 obj << +/D [1007 0 R /XYZ 56.693 759.068 null] +>> endobj +1011 0 obj << +/D [1007 0 R /XYZ 65.161 752.393 null] +>> endobj +1012 0 obj << +/D [1007 0 R /XYZ 65.161 730.476 null] +>> endobj +1013 0 obj << +/D [1007 0 R /XYZ 56.693 686.805 null] +>> endobj +1014 0 obj << +/D [1007 0 R /XYZ 65.161 686.247 null] +>> endobj +1015 0 obj << +/D [1007 0 R /XYZ 56.693 641.729 null] +>> endobj +1016 0 obj << +/D [1007 0 R /XYZ 65.161 642.018 null] +>> endobj +1017 0 obj << +/D [1007 0 R /XYZ 56.693 586.542 null] +>> endobj +1018 0 obj << +/D [1007 0 R /XYZ 65.161 586.831 null] +>> endobj +1019 0 obj << +/D [1007 0 R /XYZ 56.693 532.201 null] +>> endobj +1020 0 obj << +/D [1007 0 R /XYZ 65.161 531.643 null] +>> endobj +1021 0 obj << +/D [1007 0 R /XYZ 56.693 477.014 null] +>> endobj +1022 0 obj << +/D [1007 0 R /XYZ 65.161 476.455 null] +>> endobj +1023 0 obj << +/D [1007 0 R /XYZ 56.693 431.543 null] +>> endobj +1024 0 obj << +/D [1007 0 R /XYZ 65.161 432.227 null] +>> endobj +1025 0 obj << +/D [1007 0 R /XYZ 65.161 421.268 null] +>> endobj +1026 0 obj << +/D [1007 0 R /XYZ 56.693 376.356 null] +>> endobj +1027 0 obj << +/D [1007 0 R /XYZ 65.161 377.039 null] +>> endobj +1028 0 obj << +/D [1007 0 R /XYZ 65.161 366.08 null] +>> endobj +1029 0 obj << +/D [1007 0 R /XYZ 56.693 321.168 null] +>> endobj +1030 0 obj << +/D [1007 0 R /XYZ 65.161 321.852 null] +>> endobj +1031 0 obj << +/D [1007 0 R /XYZ 56.693 276.939 null] +>> endobj +1032 0 obj << +/D [1007 0 R /XYZ 65.161 277.623 null] +>> endobj +1033 0 obj << +/D [1007 0 R /XYZ 65.161 266.664 null] +>> endobj +1034 0 obj << +/D [1007 0 R /XYZ 56.693 221.752 null] +>> endobj +1035 0 obj << +/D [1007 0 R /XYZ 65.161 222.435 null] +>> endobj +1036 0 obj << +/D [1007 0 R /XYZ 65.161 211.476 null] +>> endobj +1037 0 obj << +/D [1007 0 R /XYZ 56.693 166.564 null] +>> endobj +1038 0 obj << +/D [1007 0 R /XYZ 65.161 167.248 null] +>> endobj +1039 0 obj << +/D [1007 0 R /XYZ 65.161 156.289 null] +>> endobj +1040 0 obj << +/D [1007 0 R /XYZ 56.693 112.618 null] +>> endobj +1041 0 obj << +/D [1007 0 R /XYZ 65.161 112.06 null] +>> endobj +1042 0 obj << +/D [1007 0 R /XYZ 65.161 101.101 null] +>> endobj +1006 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F95 923 0 R /F98 924 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1045 0 obj << +/Length 2209 +/Filter /FlateDecode +>> +stream +xÚí\KsÛȾëW v/Òãycf+I­7‰]q^KI¥ÊÞDI”@€ €–˜_Ÿ®P¤€ÉÁ'QÄ §1Óß×i‹€ï¯~º»zóNÑÀ«¹îææD‡a‚ˆ0¸›Ÿ®?ºÄE…»™pE¯ÿ–•®¨?γ¼þP.›‹Ȧ?eÙCýÏ¿oÿróóݘf±JÕÒnËm⊥seQ]†ÙY``v-ªÙeÈIÈD0QĆÍüä…æúMý‡q]ÝwõÇ»«_®H§ ”&ÚŠ ´ŒhʃéêêÓÏ4˜Á5˜ŸHk‚ÇÝÈU %\høœ·Wÿ¸¢ÍBÐÖ‚ð†…ÊîVd/\Z¨®u‚ÕÙi±¿-ø4a”Òëwoêå’ +pI¨”õ½wûåšgI’Ýpuý§‹ú«é2Jû^F7œ^¹a꺹ãÞ¹´þ´ŠfÍweö¼ »¹A×ç¹™‘$ «çÝÍ=Ï^ÑI"¥Ú™f{ÉEœN]g‹, áõç¼6 Ò^‰ ³–pÎvm…©¥~æ\µÆíôÜm¼¬t0Dj³Wácvïòòf¢aEoËh[fé7Æáß2ºOy*’ZØU%¯úó¾m`Ç,䶰ÿFT&Q}¯hHB©N¬±Aî‚ùKhI{ýÛà BK—û jÁ¬í+_¦YW¾¢°°R˜^âCËíÊîæ‹ þð±Lk+·¤ZÉa¼ÞÑwñSk÷傪í¾ß,ºÀª¾æ°­uséȽ•i¼vóäômoË2ï7¥Ãiøcž=.À/ÇO³7ð1Ë*"h þº‡š(¡| üÈßCßÐ0¡V’p-Ïö_£M—ÿ©‘ýÁEiñŒì8Mâ´´¥$š m!ˆÖjçk° C¥š-nܦ@‹|pÛ¢«.9Í>wK$ïd r‰wÇ8QÀœÏãiìÒ²‹uõÂ<$D\±=Ú?SI›Ä¼ˆòöc&X°s !ú ‹mùžXôVƒEˆG5„mšC¬ WvË ž)Åm)€vê +¼iϲéfû_ôõOü‡2oãÚò=7Î[YÄÆýª¸"T4^ô1.—¸}XEé ÚÊ¡ö¤åcôõõ}¦RsÉ8D ±}8p‚—‰[G‹>‘ˆ‚ÌH=^$¢ÀfŒDù~ òW‰( Iy¨J2 UJЯ$›r™å]”¼9“dù"Vnàd!Z¯]”£Ù;Cz…õ#`ä\²Pð×ØË’…¤-˜“–E­—ñ´èC.¾ÄÚàdÁ)¡ÜŒGmùždá­l²à‚ÖÅÛÙ ›³›õ:Ë‘ÀœgȺÀí¿Þcãù´ìÞ'œ>rÜ +à;‹Êè5"üLÕq„)Šuœc›e­£rº|M™ï¹¥–) J14¿°b+{I~‘Vî`0,¿ô-wJå#’‹ %ÀxäÒ‘ïG.þÊâÉE†×*½?2YáK"@/.Ÿ'›lƒÌÆKW”ØÒV |â8ÍVëM‰Ž<¦Y²Y¥=j8ñ¬\ö,¢üÒWœüujÂ0bÃQjR ©;mùžØñUöxÅBÂÒ6yÛ÷‚R +± A/"Ý.]’ÚEXIø—»%7DP;"µƒÓãU»Ûâ=ÓWÕ¼ªÞ…÷Wñaq­¹ô›ãä÷«9Žu˜§2òªÈq~qqfêWÏ€.¡%ÅE}¤P„‡ü 'ù!΢ÚEþ¢‰‡½ƒ¬ÚâÙÓä¡ú²£ jÁFt”è‡Ç¶|OIYäÙf}˜kŸ:”­lx:Çž½ÌÜ“W… HP^Òéò<©:ÝÝ2ôp¶\›]£ðhΖC(cÔxîÈ÷ƒ°¿²xgË5#L²oÞö›·ý?ñ¶\jbìxEèŽ|O¨z+ÛÃÛrE 3ü›·ÎÛr)ˆ¥ú¢Þ–3H,Õ°-‹O¹›÷ñ·ÕëxVŽèoUtÄ“¤Ž|O{+ÛÃßRIžÝŠÞ½?Yõš¶Õ Ï‘ÞFëºÄ{7ärÎÎ%f)¡áx/+täûÀ_Y|Ï;³‚ˆý›cogØÞ”(OÑîc劢ۙz\2ºí>Fêú%J6ƒ£¥Ì·èçÇæ‡ÀúºY‡–06^zG¾§Y{+Ûì«sUÚxuì`iÈ%n…nÿ,—Q90]¦ÈçY¸Ôåà*° $ogók¨ ãmgJ@Z>t{'n°µù¶GôƤ$œØáÉ„ \×áÙ‘ï‰roeñÑš(ùü®É¹µ„ç¦A­67¨–ë&×6ó[¹N ¸&¹ŒÒYâÐ/«æ¹›–ÉÖ笒 J¸¾h»7ƒ9¬øÇ-î“lÚç˜Ò"ÔˆT`B"ìxLÐïGÞªâyâemš#ʹ÷ïZH«txºnÙã¥,<ò¿,ã¢Ìrd3Ì}î¢dÀPÿ&ª_8Ï:¤Ö# 0¢®1PðÃBR¤š_úþ®Ðn¢ +endstream +endobj +1044 0 obj << +/Type /Page +/Contents 1045 0 R +/Resources 1043 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 1075 0 R +>> endobj +1046 0 obj << +/D [1044 0 R /XYZ -11.232 900.716 null] +>> endobj +62 0 obj << +/D [1044 0 R /XYZ 56.693 759.068 null] +>> endobj +1047 0 obj << +/D [1044 0 R /XYZ 56.693 738.489 null] +>> endobj +1048 0 obj << +/D [1044 0 R /XYZ 56.693 693.087 null] +>> endobj +1049 0 obj << +/D [1044 0 R /XYZ 65.161 693.771 null] +>> endobj +1050 0 obj << +/D [1044 0 R /XYZ 56.693 648.47 null] +>> endobj +1051 0 obj << +/D [1044 0 R /XYZ 65.161 647.911 null] +>> endobj +1052 0 obj << +/D [1044 0 R /XYZ 65.161 625.993 null] +>> endobj +1053 0 obj << +/D [1044 0 R /XYZ 56.693 579.45 null] +>> endobj +1054 0 obj << +/D [1044 0 R /XYZ 65.161 580.134 null] +>> endobj +1055 0 obj << +/D [1044 0 R /XYZ 56.693 533.591 null] +>> endobj +1056 0 obj << +/D [1044 0 R /XYZ 65.161 534.274 null] +>> endobj +1057 0 obj << +/D [1044 0 R /XYZ 56.693 488.973 null] +>> endobj +1058 0 obj << +/D [1044 0 R /XYZ 65.161 488.415 null] +>> endobj +1059 0 obj << +/D [1044 0 R /XYZ 56.693 432.155 null] +>> endobj +1060 0 obj << +/D [1044 0 R /XYZ 65.161 431.596 null] +>> endobj +1061 0 obj << +/D [1044 0 R /XYZ 56.693 386.295 null] +>> endobj +1062 0 obj << +/D [1044 0 R /XYZ 65.161 385.737 null] +>> endobj +1063 0 obj << +/D [1044 0 R /XYZ 56.693 329.477 null] +>> endobj +1064 0 obj << +/D [1044 0 R /XYZ 65.161 328.918 null] +>> endobj +1065 0 obj << +/D [1044 0 R /XYZ 56.693 272.658 null] +>> endobj +1066 0 obj << +/D [1044 0 R /XYZ 65.161 272.1 null] +>> endobj +1067 0 obj << +/D [1044 0 R /XYZ 56.693 214.598 null] +>> endobj +1068 0 obj << +/D [1044 0 R /XYZ 65.161 215.282 null] +>> endobj +1069 0 obj << +/D [1044 0 R /XYZ 65.161 204.323 null] +>> endobj +1070 0 obj << +/D [1044 0 R /XYZ 65.161 193.364 null] +>> endobj +1071 0 obj << +/D [1044 0 R /XYZ 56.693 146.821 null] +>> endobj +1072 0 obj << +/D [1044 0 R /XYZ 65.161 147.504 null] +>> endobj +1073 0 obj << +/D [1044 0 R /XYZ 56.693 100.961 null] +>> endobj +1074 0 obj << +/D [1044 0 R /XYZ 65.161 101.645 null] +>> endobj +1043 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F52 695 0 R /F93 909 0 R /F95 923 0 R /F98 924 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1078 0 obj << +/Length 2065 +/Filter /FlateDecode +>> +stream +xÚÅ[Y“ÛÆ~ß_GíGsN*Û±œÈR\‘6©TI~É!‰hÜ#¿Þƒë%öjpúi±d£§çø¾îénÒhÑèÇ‹ï®.Þ¾S4rÄi®£«E¤9Ñ&²La¢«yôåÍ'Ÿú¸ô—®è›æ•/ÛÇE^´Õªûòoùì»<_·ÿü÷ó‡Ë_®ÞÃ0ƈSªÕö¹ºK}¹ò¾*ë¯atY]‹zti81LDEœéÆ7 ÏØ7oÛ?Œëú½‹®.~½` F,Ršh'"ãÑ”G³ÍÅ—_h4‡ï`|"nÉM¤%\hxN£Ïÿº ÝBÐgd¯[:¨nMúʹj¬Ø¿ööˆ4Óõ;–Hmá‹výò©/ªË‰¦fßUyöÍå„qøw™æewä¶L[}°PµÊúχs„a†GF8•«çX®¨!Fêˆg]TøhñpRÚžþôñܱWߪeµl¨vE˜f‡ÚeÄÀBaô?ÜlMwÁ†6êŠeÔ>|êöþ`w¤YsF”µívþ¼«¶»ê`÷«Š¾4ÛÌqrqUÉtWC %Ÿg8¹æ|Í“kœô4Ígk¤eŽ“n¸ÃIÎb䤦¹¨ó¹G®Õ›Íë(d†Éƃɡþ@ ‹€Ê=¾)Ñ0f•ÛÂ/°'ºÀÉ]ýüý ŒB°ÌÉ$Š‡0ç3ŸuºvHæŸñ>)Öqë2~ÊK¿Þ;ŒzE8 m±\Œç,´¡Ä‚ýcá §? áÆâ]†6’0mšÝü!‹§)–‹VwÛ•Ïâ*Á’|¾ÀÉýûÓ$oÀœä.M²5’ßó¬òÖq–h÷‚ôWñë6Cãg^ÅÅÒW=ŒÖ†X£ÎÊV@çøiCܪ>úC(K(pVjDÊâଲõRV°±(‹pV²ÝÑo·Û¸mãj¶:.ÎzVnW ÉÉ~E~ƒô³]Q¢Ù7AŽŸ!§þ×M^x0¶çæ°-|Ùgá1”f‚HnÇÏ¡þ@ð‹{5ÓÄ°.ÇqµÂú¯›$Mq’¾‰!p²×¾@b7­]Ö‹ÁøèiU«{IF#³ÜÆY–dË‘îtšrðin¼³}¨?ðl;àlSEŒêR_Û"Ÿùr”s°°»I†õ%ùmây÷°ß}y¾¬ý}lf%1FïÁ¾ª6érM$e{¡Y¾× n{æ{Õ@€"¼}.Úžr¸Îl”Ø(uL1ýc¼+’êÿ-ë¼÷qVþÎJMýr@Ð* XrD¼–„zúÃH(ÜX< ‰¦.Ö‘ÐÇ|ž,ly$ž­³ü&õó¥ß€¿ÁÖ üf›Æ•?mÜ_çØ +’]Ç)V8ÜbÐ}ó•*úç(´ÏœyV¶³ê©A 1,?Ãñ"¸òŒáÐuC‘<1Ó47œm¼RØŠæœ^aɈ£ãåf{úÙ&ØØlÓÔµô}ȃ¥š¹_Ä»y×(“¹ŸÆÅÀ¬}N“ç¡WúãÓRBÀ¢0wVà1M¸0l1QP „3ä8œRŒ×ÔÓ¹pcñãp£1lŸ–Jn‘]»åSþˆ;ã˜Ö/»²GÙ¡îóÉ˯}û$Ÿ¯ÎùÍÊCˆ]`«~Ø4T^¬¥Â^=ßÜq"åY[š¸võèÔù漂¥m®À4ÆGĶ„y¨ñZ›zú±lìlC Ã%; ¶‚9ö2H÷Ç£ÄÆÚÈN«îÎ{Tís€÷å8}ÖVÎá–Ÿ8ìM²4É´®À‹ëB¼.ƒ=Hõ‚4ØØ ­k¶º»÷üc³-òklØÛ4W¾Ø cÙ]ïºür[·Í¡k>Ó»“—‘Öþ®Ä'%Ûžcly OçØ^È9RåMŒ&=¿X$³¤ßÜÇC=8’IÂÕ}Fï+•´KÚRÎ)ßËL`'Š×X×Ó†Åpc1X”Žh©`0I,횃ð͵]«úhÏóÙØëg)Qj¼Æ—žþÀ 6_udV+»Ä¾P¼‰³;,hk‡:–ŽC˜1D™s†!LÁÁ·'NÀ1ŸæùšÌÊ’ÜnÒ®yí‹i\%›Ñ « Ø#¦ÿ™„Úñ²=ý¸ +6œ0aˆÐ§ÊX)7/»ðÿÔÉ÷¤BÂÒö÷H ¬à,NStS +Lõx” F¨g…9ì²?¸­®¡ëêd Ñt¼tÀ¡ú0,›Š‡²£Äî2ò}ž]×Û‰ìï€ö€|ú??«¼PçéŽî~¾›´ÜöÍx!XûÏRé°Àç/šöœc ÅJ¢ÙÙ‹G¿ß—”ж§yèÏ÷àÓÐ +endstream +endobj +1077 0 obj << +/Type /Page +/Contents 1078 0 R +/Resources 1076 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 1075 0 R +>> endobj +1079 0 obj << +/D [1077 0 R /XYZ -16.307 900.716 null] +>> endobj +1080 0 obj << +/D [1077 0 R /XYZ 56.693 741.863 null] +>> endobj +1081 0 obj << +/D [1077 0 R /XYZ 65.161 742.547 null] +>> endobj +1082 0 obj << +/D [1077 0 R /XYZ 65.161 731.588 null] +>> endobj +1083 0 obj << +/D [1077 0 R /XYZ 56.693 685.669 null] +>> endobj +1084 0 obj << +/D [1077 0 R /XYZ 65.161 685.11 null] +>> endobj +1085 0 obj << +/D [1077 0 R /XYZ 56.693 637.95 null] +>> endobj +1086 0 obj << +/D [1077 0 R /XYZ 65.161 638.633 null] +>> endobj +1087 0 obj << +/D [1077 0 R /XYZ 65.161 627.674 null] +>> endobj +1088 0 obj << +/D [1077 0 R /XYZ 65.161 616.715 null] +>> endobj +1089 0 obj << +/D [1077 0 R /XYZ 56.693 569.555 null] +>> endobj +1090 0 obj << +/D [1077 0 R /XYZ 65.161 570.238 null] +>> endobj +1091 0 obj << +/D [1077 0 R /XYZ 65.161 559.279 null] +>> endobj +1092 0 obj << +/D [1077 0 R /XYZ 56.693 512.119 null] +>> endobj +1093 0 obj << +/D [1077 0 R /XYZ 65.161 512.802 null] +>> endobj +66 0 obj << +/D [1077 0 R /XYZ 56.693 475.817 null] +>> endobj +1094 0 obj << +/D [1077 0 R /XYZ 56.693 448.379 null] +>> endobj +1095 0 obj << +/D [1077 0 R /XYZ 56.693 403.19 null] +>> endobj +1096 0 obj << +/D [1077 0 R /XYZ 65.161 402.632 null] +>> endobj +1097 0 obj << +/D [1077 0 R /XYZ 56.693 355.471 null] +>> endobj +1098 0 obj << +/D [1077 0 R /XYZ 65.161 356.155 null] +>> endobj +1099 0 obj << +/D [1077 0 R /XYZ 56.693 308.994 null] +>> endobj +1100 0 obj << +/D [1077 0 R /XYZ 65.161 309.677 null] +>> endobj +1101 0 obj << +/D [1077 0 R /XYZ 56.693 262.517 null] +>> endobj +1102 0 obj << +/D [1077 0 R /XYZ 65.161 263.2 null] +>> endobj +1103 0 obj << +/D [1077 0 R /XYZ 56.693 217.281 null] +>> endobj +1104 0 obj << +/D [1077 0 R /XYZ 65.161 216.723 null] +>> endobj +1105 0 obj << +/D [1077 0 R /XYZ 65.161 194.805 null] +>> endobj +1106 0 obj << +/D [1077 0 R /XYZ 56.693 147.645 null] +>> endobj +1107 0 obj << +/D [1077 0 R /XYZ 65.161 148.328 null] +>> endobj +1108 0 obj << +/D [1077 0 R /XYZ 56.693 101.167 null] +>> endobj +1109 0 obj << +/D [1077 0 R /XYZ 65.161 101.851 null] +>> endobj +1076 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F52 695 0 R /F95 923 0 R /F98 924 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1112 0 obj << +/Length 2154 +/Filter /FlateDecode +>> +stream +xÚÍ\msÛÆþ®_I?Dž)×÷þÒv:mÒ8‰kw¦–2Ó; ð(b4ZR~}h› ¨,xÛO¤€ãÞÞa÷Ùg÷"ÑmD¢/¾»¾xùJ’È‚ULE׋H1P:2”×ÑõbføÚXfGPv+°¼Ú/ï:ãØ{ДYØî<oºíó~•>ìÙÆ¡œè}û|7·{»ËÌâ—ÝÝ:òÛ*»›¸ÄMtŸÖËbSãom74Í+oÙn°7ðú¹1HMãþþ]ÖU˜·87ÀUŽ|€z€¼7eZÿÖ‚ÂkçÕ™ɇÜ(¡,Nít(¡ °Sľø0ŒVÊP¢ io‹OnŽ4ò%Òw+6FâŽõ¦çäÝ­¿Ũ˛†1ôœó¯¿iÅت£÷î@Û£#y÷3n`œaׯ×Yê(Z}Ø_Ùš ˜¤;àø@iI–g@_Fém¬êÆÌ°°¡=‘"t:·Þ—è×ÁÊbÛ3B%¤ŸŒƒòò·ÛY:ïƒé'¤5}u…¸Žëe5¶{$Å +©gƒ+婱VI B°é,g_~ å+‹°œâ~ƒ4ïÒ"çЖ,Ÿã?0ceÿXÉÏIç ¹=½NË»¸%@ÿ,*w·£?ñ¦.ÒùÃ쮹8„1¯‰V’ êóhj¦3ú}ùF¬ìD}jOºbÀ/ëÛ2ž£©2 n°ÁÜàªÈ‘éKî£~˜þ‚‚Ç~æ“AìòúéàñtnéJWh„OŠ¹Cï.rA«Š²Ž‘a+ÎçÏ2bÀèi˜÷ûÓ¹ê¾ü@W Vv³!¬èj^x[Ê $i*ˆ¨·e±Y§ùAºÿòxÒØ^ÿÇsœ¶à1wž +­ªSÉ´¦©¯ž1èJ-AË‘ —Ér“ßÍÐt¥wm'¬OJ)Àðéê“=ùaž®,>èJi€²®>¹­OZa¸âÏǽ[—»Òg ÈP±H3—ÇX€AãFé>n—#ãÖ&O?nÊ|~G£öï;Œà>èÉéìy_~ =+‹Ïœ¤Ðþ³Kð„$EҦɮ\}rŒ9o ìîŒb´8P¬ÖEî}lHðTîëBÏØQ@X DNW©êÉóšpeDB€ïÒoô)Õ*­ªCêµ½õÍqúõý2^÷kFÇ·ïFß<¥Y|ã²±s%|ÖøÄÒžç¢i¾( ?<€, + ŠY„¦@…ùh<¾É†K¡¼FN+’cz:XÙ—+ÁÊâaEH’ŠÝ½ÇR³dSV)¶üRoÊæ‹6[`‰!²à±*JW÷Ø’G]—éͦƞý`é þÈ°ñ±“†[`jº +gO~ ?+‹'§B0»v§ëeZa›42dL[—\È\)N³M‰4¬7f¶²ò”‰mo| ’MÇÊ9|s[J”ôyº1ïåzß`8™®¤Ø“èÁÊð NAÚ®…­ç»‡ÄyŠ=T»5Öx°u¿§ƒÕ°døyIa ÆîWlŽÛê"ihY×£¸ë?Jªmç"r;¸õÊMÙ©È 1a§bO~˜†+‹'kÜл*ÀÕf½.Jd YÅwøu™d.ÎŒ_Ö«lä*Nk¬tøœm wp®½YuNçR‚<©¡ðïùó‰È\HPSör.@M×c¸/>лCUàÜ\ƒÝ%âŸ#Ó¥j + Kïÿ7pQ¹ˆÅ–­C ÙKæVž­Ÿ|bÈ=eRšžYˆ-õ¤È‚\=³^+¦Cf4˜ Û•{òð$\Y<˜0K²]{Z¶wtOcµ}hdØÙ½‚„üÓõÛ7Cš O,9w׿=ŽfçKíÛçs^lÕ"?̉fÇùÍgà§â óÌÕˆ³™1EÁr>.6c•bÒë 'Ä?AÐéNËzòñ/XÙø'0k’©ÏïñÝÕöS ‰ …›Î‹[ôŽ—Óü®·§³^ºÕÉÈÁ vÖê £ÞúÉÈGb브Wðpïn° '^ 1a—3µ¨™îL¬'? <•ŃµM+ªþBèÈGA¹»ÐÞüˆïª*]ž¸“sÚpKkÎé‘Tðbš6Ȧ|@L§Òg¶ÀP¡«é^¹éÉôË`eø¥$ º£¹7iU{LðÃÇÑEŽæÎ÷XoO²Í¦Ño4 Ó$·í_9<ïâú¬ï%5oM iÿ· ,”z%¦dú”|ºûžü@PVv(†uGe?/FíMŠ¬Z»7x‰~Y=9¾©ús7ÊÀ¾æ›¥õè)ÁØe¿aOú©§;èßæRÁªâù-£ºúqWÿFáÈÅUbþÁÿ¬kôIŒ=ypª«óSƒ°Q í!øà_6 DÙSþcÓyàM +endstream +endobj +1111 0 obj << +/Type /Page +/Contents 1112 0 R +/Resources 1110 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 1075 0 R +>> endobj +1113 0 obj << +/D [1111 0 R /XYZ -11.232 900.716 null] +>> endobj +1114 0 obj << +/D [1111 0 R /XYZ 56.693 741.747 null] +>> endobj +1115 0 obj << +/D [1111 0 R /XYZ 65.161 742.431 null] +>> endobj +1116 0 obj << +/D [1111 0 R /XYZ 56.693 696.165 null] +>> endobj +1117 0 obj << +/D [1111 0 R /XYZ 65.161 695.606 null] +>> endobj +1118 0 obj << +/D [1111 0 R /XYZ 65.161 673.689 null] +>> endobj +1119 0 obj << +/D [1111 0 R /XYZ 56.693 627.423 null] +>> endobj +1120 0 obj << +/D [1111 0 R /XYZ 65.161 626.864 null] +>> endobj +1121 0 obj << +/D [1111 0 R /XYZ 56.693 568.397 null] +>> endobj +1122 0 obj << +/D [1111 0 R /XYZ 65.161 569.081 null] +>> endobj +1123 0 obj << +/D [1111 0 R /XYZ 65.161 558.122 null] +>> endobj +1124 0 obj << +/D [1111 0 R /XYZ 56.693 510.614 null] +>> endobj +1125 0 obj << +/D [1111 0 R /XYZ 65.161 511.298 null] +>> endobj +1126 0 obj << +/D [1111 0 R /XYZ 56.693 463.79 null] +>> endobj +1127 0 obj << +/D [1111 0 R /XYZ 65.161 464.473 null] +>> endobj +1128 0 obj << +/D [1111 0 R /XYZ 65.161 453.514 null] +>> endobj +1129 0 obj << +/D [1111 0 R /XYZ 65.161 442.555 null] +>> endobj +1130 0 obj << +/D [1111 0 R /XYZ 56.693 395.048 null] +>> endobj +1131 0 obj << +/D [1111 0 R /XYZ 65.161 395.731 null] +>> endobj +1132 0 obj << +/D [1111 0 R /XYZ 56.693 348.223 null] +>> endobj +1133 0 obj << +/D [1111 0 R /XYZ 65.161 348.907 null] +>> endobj +1134 0 obj << +/D [1111 0 R /XYZ 56.693 301.399 null] +>> endobj +1135 0 obj << +/D [1111 0 R /XYZ 65.161 302.082 null] +>> endobj +1136 0 obj << +/D [1111 0 R /XYZ 56.693 254.574 null] +>> endobj +1137 0 obj << +/D [1111 0 R /XYZ 65.161 255.258 null] +>> endobj +1138 0 obj << +/D [1111 0 R /XYZ 56.693 207.75 null] +>> endobj +1139 0 obj << +/D [1111 0 R /XYZ 65.161 208.433 null] +>> endobj +1140 0 obj << +/D [1111 0 R /XYZ 56.693 160.925 null] +>> endobj +1141 0 obj << +/D [1111 0 R /XYZ 65.161 161.609 null] +>> endobj +1142 0 obj << +/D [1111 0 R /XYZ 56.693 114.101 null] +>> endobj +1143 0 obj << +/D [1111 0 R /XYZ 65.161 114.784 null] +>> endobj +1144 0 obj << +/D [1111 0 R /XYZ 65.161 103.826 null] +>> endobj +1110 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F95 923 0 R /F98 924 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1147 0 obj << +/Length 2583 +/Filter /FlateDecode +>> +stream +xÚÕ\ëÛ6ÿ¾…Шè2|KÊ=ÐæÚô.×m²ÅHúA¶h[YôIr6{ýl9±åÇMiû²òJÔp8äüæÁ¡h0 hðÓÕóÛ«§/ bk®ƒÛi 9Ña1ADܦÁ»Ñ“›¤2×7\ÑÑk[›jósjËÍzÞ>üÁNž[ûaóÏïo¾þãö%tsÉ•ÚP{[ß禚SWÍcèô®EÓ» 9 ™n‰Ã¶ÿè…Ñèéæ¸nÞ»úñöê?W ¨Ó€J‹ ŒÑ”“ÅÕ»?hÂ3èŸÈ8 +îÖ-b”p¡áw¼½úõŠ¶‚ '²¥-c¨ްôžsµæbûÚÓÐd= Ù¼©#x°‘Ÿ›²¾¾Ñ”Âè“ûÚÏ®o§k.’œ|ªò 5SC°¹ü´?B˜rà‚ÅÍ›ûŠ†$”:à$†›¥ ¦»CÚ£vüîa†)¶ô7tYÓØ—¼"L³yE AP˜v'[“˜Çþ¬®é•³`óãM;ù{É F*‚É¢Í|¾È>íÍý!àÝz²Ç«Ù^Ãö6¸Š$ox÷nnJƒë¦NÆ9²éÔÚºXk0ª94Å5L–K“”Y1Ã5Ï +\»¿ß¾ú¹#ÁÑÍI¹&65é¥2ƒ÷ V ¹&L2%ôg»ûBŸÉ|U|¨íÄt C§l8üÑ TòÁ¨Cßü™ÅCŽ`ZE?ô„GBF­!í‚ý/R,WYQe)’ò2)‘t—ôjkýÀ" +¶÷ Ùy5·«Ù÷øb(Ó\•|L(ÓšÙf@Ù«dUfõ7XöÒ$Eå‡e +®LˆeF +~ï`X¶Oß˼™uÀ2)‰Ü‚Ù÷)Új/²ªB;E²0Õ2™ &5“<)“:³EuB›N½ú·ÜVX—ê4"ǔꭷ"‚% UoYÆNö¬·[ÔEo)Œ‡Ãé­Ša¤ÀþPzۡ立þÌ:è-…`zÈÿ¶L“íoϱÁŒY,s ‹gJ·Àít`ÍymqíV•¹LRííoN‡= ·³2Yλ°õÍyØ:*ê-ÚÁP; @Ä sŒm5ú=•´mí´ +‰„UÒ¶¹Aª³Š4á4NÛöé{j›7³m“1ÑRAg1‘q›rêÇÈP +´‘Q‘ œ?¦QMÏqxù§ÉêùƼHæù¬4ŸMLVäY±60Ú4ȳª® ŽR‚°h@{#9È™ §ûô=5À›Y¼½QRÚÖ¦¡öãQlüóilwÁí¯ç11)RÇ2ÇLn¦¨«cÝ|uº›4«&v@µ¸ØÛ4ùˆ5¢vŠ ]›?6ÊÝnìŠð«ó"œ–v±OþaŒp=\Z©CßSż™E¨ØgÆ%Ùzt¿Ë·~{~.Ž½³~ÑämßSEO¯ë®Âó‹JþraýøËoÏ»CNØùÑØU½\ÕX+{M#%Å ¶ÎëEÎ?5ñQèè³-sÏ)N‰ r8Íا暑1Û +ƒÆDÈá26úžÂðfÖ&'ZðÏégO4L‰gçÕñµý¿7÷u2«ú5ØGQúéiŽðaLí‰H¦ú~j0³­0"k¿¤›úÆ>}Oax3‹ÇS2åœÅ- DgU•Ù¢ßËáB?éu.ÍäÀé|†4˜2’DŠè1Ãb©‘[I÷–zýcG®$ñ€°”0N1\*¨CßSÕ¼™ÅÂRj¸„_Ìoêk~¥Œ™Æ8èiGMÏæGÈÍÍŸkû]”3ƒlœ!CÔ,ý¶HƒoËúþXŒ‚uÝ¥lÒñZ‡"Y ö%ê7A—¬j›¥Ÿ\ôL²ËPD ãTÃå :ôýÈŸY$¢DíX†’\†Vç*S +춋CQZj>9@Â!.žÃû¥9ápœŽM÷pÚº_Œm^9nUfR£½6t9Τ4‡ûˆ"€hÊ¡âá +U;ô=Ô›Y¼W.bà4jËkÌG¬¢` g=Of°Yò饪wºL#KðG²b’¯°%iIqï£eŸ«ždwè=lz½So›Œ,~)T>žŽˆš áÊÔx£¡Šw]¡­" ¢ºÓÈ(ŒìUR,“kFG3ðeÀ¥ÛžiØuhpÛø­ÝǺݞ–˜Ú<·×\îµ¾µNoÏWÌ“kNG¯™µoŒ ¨óú×"IÛ{>„±Ù‘;}3VÃPo°EÃîì(—0Zñeƒ¿)¥ÞÐ:1s€0ŠðÍïrs:„ì‹F¬ÂõЩÖ=‡®ëµçà/òXˆx†óy“.pÝ'ïgŒ¼YÅ;‹<9oñ¼²i6Íz/ºƒEb<±ª^«!j‘*Û»ÅÊÀÉ1K³šÛò_FÙoÜÛ­¿î”I& Wƒ”ñp\ Whѡ逸ÞÌ:”ñP“hk¡\²3õ]61Žõ²oJÛ§=u`‚Vì« +‡ ü;ô=—ˆ7³ø¸‚Ã5jíø÷9ìLQ­J<æc‘ñë{3ëàksF¢÷·E$x ª†ki«º´K¬»jªI²Ì!àáú,lÉU²\æ÷èÌ/ÞÏ^Y>ô(=™_Z—Å™"MBâ1…ÅÜ q¨¼n¾cPlÖÊ¿’¼šoeœÛÉ.ž˜"]Ÿ?w€Öä~”RXÃŽ‡+ðèÐ÷ƒfñÂÂD‘ò‡5Óóç°±ˆ³½>‘îºÅx(hü-ÒmŒ4 ÃáÎÚí“÷SoVñ*SBu›¹ìðŸp-9Ä.)üHp7íÛ[ðrð‘Òæ ž:¾ä¥ÿµ\4è +endstream +endobj +1146 0 obj << +/Type /Page +/Contents 1147 0 R +/Resources 1145 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 1075 0 R +>> endobj +1148 0 obj << +/D [1146 0 R /XYZ -16.307 900.716 null] +>> endobj +1149 0 obj << +/D [1146 0 R /XYZ 56.693 742.693 null] +>> endobj +1150 0 obj << +/D [1146 0 R /XYZ 65.161 743.376 null] +>> endobj +1151 0 obj << +/D [1146 0 R /XYZ 56.693 698.706 null] +>> endobj +1152 0 obj << +/D [1146 0 R /XYZ 65.161 699.389 null] +>> endobj +1153 0 obj << +/D [1146 0 R /XYZ 56.693 655.96 null] +>> endobj +1154 0 obj << +/D [1146 0 R /XYZ 65.161 655.402 null] +>> endobj +1155 0 obj << +/D [1146 0 R /XYZ 56.693 611.973 null] +>> endobj +1156 0 obj << +/D [1146 0 R /XYZ 65.161 611.414 null] +>> endobj +1157 0 obj << +/D [1146 0 R /XYZ 56.693 555.785 null] +>> endobj +1158 0 obj << +/D [1146 0 R /XYZ 65.161 556.468 null] +>> endobj +1159 0 obj << +/D [1146 0 R /XYZ 65.161 545.509 null] +>> endobj +1160 0 obj << +/D [1146 0 R /XYZ 65.161 534.55 null] +>> endobj +1161 0 obj << +/D [1146 0 R /XYZ 65.161 523.591 null] +>> endobj +1162 0 obj << +/D [1146 0 R /XYZ 65.161 512.632 null] +>> endobj +1163 0 obj << +/D [1146 0 R /XYZ 65.161 501.673 null] +>> endobj +1164 0 obj << +/D [1146 0 R /XYZ 56.693 458.244 null] +>> endobj +1165 0 obj << +/D [1146 0 R /XYZ 65.161 457.686 null] +>> endobj +1166 0 obj << +/D [1146 0 R /XYZ 56.693 413.015 null] +>> endobj +1167 0 obj << +/D [1146 0 R /XYZ 65.161 413.699 null] +>> endobj +1168 0 obj << +/D [1146 0 R /XYZ 65.161 402.74 null] +>> endobj +70 0 obj << +/D [1146 0 R /XYZ 56.693 366.942 null] +>> endobj +1169 0 obj << +/D [1146 0 R /XYZ 56.693 340.334 null] +>> endobj +1170 0 obj << +/D [1146 0 R /XYZ 56.693 299.295 null] +>> endobj +1171 0 obj << +/D [1146 0 R /XYZ 65.161 298.736 null] +>> endobj +1172 0 obj << +/D [1146 0 R /XYZ 65.161 276.819 null] +>> endobj +1173 0 obj << +/D [1146 0 R /XYZ 56.693 232.542 null] +>> endobj +1174 0 obj << +/D [1146 0 R /XYZ 65.161 232.831 null] +>> endobj +1175 0 obj << +/D [1146 0 R /XYZ 56.693 188.555 null] +>> endobj +1176 0 obj << +/D [1146 0 R /XYZ 65.161 188.844 null] +>> endobj +1177 0 obj << +/D [1146 0 R /XYZ 56.693 134.456 null] +>> endobj +1178 0 obj << +/D [1146 0 R /XYZ 65.161 133.897 null] +>> endobj +1179 0 obj << +/D [1146 0 R /XYZ 65.161 122.939 null] +>> endobj +1180 0 obj << +/D [1146 0 R /XYZ 65.161 111.98 null] +>> endobj +1181 0 obj << +/D [1146 0 R /XYZ 65.161 101.021 null] +>> endobj +1145 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F95 923 0 R /F98 924 0 R /F52 695 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1184 0 obj << +/Length 2769 +/Filter /FlateDecode +>> +stream +xÚÕ\ëoÛºÿž¿B¸ûp`fHŠÔ£wл¦]·¾ÖænÚâ‚–i[­$úê‘4ÿý(Kv"ÙrŽJ3Á€¢Vä£ÃŸÏ›¤°³p°óâä×Ë“óç;! +=ê9—sÇ£Èó€¸ÈõË™óéô½L¤(äÙ„r|úF•²h.ç*o.Êeûå3ýªÔ·æ^}¹ü‡fB +9o¸}(oY,¥,‹úk=:q=ºçÖ£3ÏG> œ G¡ßŽO°fè§çÍ¡^ýàÉÅåÉ'D³Çq¸‡¼Ðuü S'JO>}ÁÎL§ Îõš2u8Áˆºž¾Nœ'ÿ:Á­$pG"ÔÑd>×"Ù0g!"Øk@¹¨A±yÌù4!ãÓ‹U5m×]©j!P…nÐ<}¹‘Ø\%‰:£üô:ÎÍ­h)²ÅFÆKqFñéÕá§íS)³æ*³ö^©n'b=¶F{;6 òýú¯Ç–ûR1L6D‘Úð.â,’½y&Z4ˆ6×y£¨+ ÕsNô N(Cm˜~¦”wÈÖ@דÏjb^°AðO—˳‰§eú\,“E.³'gBõßÓ8;/V2:—ßEºÒÚtþôµ(þ¨äÛù3qS úþÒ<:SÑTk$ú^$íÛ‡5Õïõʧ *­¤5°úãEW½´QŸ:žV/LÜZ½êûkeežCQ„N.ù]}êpÛww€#ÌÙf€†1©©MùsD<ÒçϱžI-rÈwmÍC! vÍ0_8ÍÅûÖø::AhˆÖ‚ÑþˆÑC*Tr%;ª´ËK[d=ß…J”"*+‘Àhs©²(b•°â F7%®ªÊUU…°Re)g0âé Œ.U¹„J+’ê•Ì·bÕºÀïè£ݺ¨Ï˜á–(¸Cä#¦õ¥¥™@ Û ÖßTå>à¾Rþ~×»cÙ"”ëÖ*­ü”1Ëõ,Qîx>Enà6¡æ°Ù¯r´”Ñ·.9`=›}Ï<ð¹›!µé€ÇÂ,8nh»¯ ªë2Ä­Æ$¸p›1©Ëß0&ƒ“tÊlbÒo«Ús=l*g±PÓ¯2‚úodE¥v‹0òuö¢,—a*uÉa´U!a1WI´ýâ3渽¿ûèéõRE!®Dœˆi"{ƒÔ_öÂåv¢ ¡ˆßçšM,©ËßÐ’ŒÁB,I—TÓ±‚plbÅT—@C‚DVæñ´*Áù$ Z{ì‰Ì€(^GÏT&’ÙØ؆µtÝù€±>âÇŽmÝÊëN½©Âvk6 aq?°[—qÏ·Z—õø›Y®9Xx ä>Öuiæþ"+ªüèçÍß>K'U©®3€. PEr-nŠ1E8¸®(9U”l&RY¬D$G:$®½¶Çzü ­Á,À¶ÀÃÛ’§T°YXåò +\¯r¥s™´8¶zµÃû ¿ÅÙ,‘ hú•Šhg2¿­bîº×ú1Ï%ºžó'æméæqÝÏ\‰¼ŒuÊ¢Ð÷4é‡Å}Ik"®/·I+&ÁÛ+Ò\Ã)%º¤¤é¶?›%e¿¡1;"œW—”m8}:›Õ‹°±Z­Tt"õ ÌÛlÔðèþ¦Ðå,í~§n4Ý.üö<2DÛô“Êh¬çÑÚÎ=þž‡ñÍÂÒãu’˜_/º{fϼºK­™}¿™Ù›ƒ…›½žQäŽ7zmž"Æw`2r­òo"WUL`—*ÏãyÁ¨Ÿ>»VßÕâÑ2œ8Ó8‰Ë›ãJVgn‘Žýûz]öwÓ¼ïðþ +µfý‰©û ~Ì­oñG÷c.FÌb3€‘±[?y|7ÖåoèÆŒÁŽpc”"Ÿ[Gö˜©‹¨Jí›Ú•­út>lnÍSÇ]Ñ}ûî9tU 3QŠñíð«ØxGK!kÜÿ‰å,½æfÛ9‡š"ñ èC:!7dˆQ÷Ë8 <Ü€¡ ìù&×w×foË7õø›ù&s°pßäú>¢d»£-UWrl(ˆÄƒ¨—CÝ?BÈ<žO^–"‰#¤ÊùsÖ×9©®Æ9·¸ÎIuË-ú¿3“7 ¯Æ©ï¡ ›ÃP1t·hsðã9£÷Ô#ïšCo°fããö:Ó*)ã´N–éTÂì\íl¨ºß®ê3„#]¿¡Ú[Û +ƒäùž=atù +ÃØV #ŸØkžôø +Ã,<¢õaÜÖE/ͱUA7ú]Å ðÁ2hž$ ] }SГjÐÆàæ¨q/ùš ×/íydÀï‚v’ê‡:"G¤u¸ä={éò7´c°#ìÅufí–™=M«uìæü3|g#¨ë|wù:3]I€üÐÞO¿¡Nƒ¡ºŽÜV7ÿ…úÆHËÇL]³Ô*;ò–”õ[®ÁßH¥énG +îttX,Z:ì ÕËÔF$lÊ[¢èñ7“…1ØaÃÂX†a!t®ÿX]œ–j‹]+æè û·M„«ªœ?8œÌ›î‡UüÀ y¥,Ê8¢bl°"×ÊioQ¨ÇßЂLÁZ BDIç´èý»›ÎÚïQ5jêú9Òpž§#ØN÷äàº!‡ô$Jä3-P{‹i=þ†Jd l+ ¯©­ £ËßPÆ`áéñ|DÃö8þKèëVöG«û6+ØÊÜÔjÄ!hâ:•àSû³c¿ù¥\BQª,’?š±ÞTƒÖl¢ËßÐ&LÁ[÷ëº÷†™ùÀ¹›É¡gTVîËA> ?òö¸ñõùËW}H_àEÝÄî¿ýaÐ%öö.×s€î«!¬)k­)w—¿¡r[Û +Ã%ˆP{ ±Caƒý\†á·¯„¹ül&óä~ÌpûòÆ#÷LDÉøäþˆ6Ȉ²¬õ*ðÙý$.ŽÜÓÞñ±Ã”q2öÐ>¡MoÍrºü -ÇìË¡.b¼m®_‰ló‰z'é±Ó ¯X«2èêtqäväû‹7O__<ƒ¿ÑmDA¹wuúð#»KÔwÍü<â,ñÏ÷lòÛ‡«Þ + ŽäxÝ°fö†h j#‰0X¿cË–$ºìÍ$a u„'Ò@¹ŽŒáy•e;/8;Òæ¶#Gù8‹’j&xË\ÐTø¶Ô¦ËÞLmL¡*IˆÑæ˜Åä°¿*–ªJfÇí\‰$ž™?Ãv~Å`£JàÄÕNÇÂÚŽ«‘¹]À‹mõÞyÁ:Ã7yÙØ÷«ÿ»I +endstream +endobj +1183 0 obj << +/Type /Page +/Contents 1184 0 R +/Resources 1182 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 1075 0 R +>> endobj +1185 0 obj << +/D [1183 0 R /XYZ -11.232 900.716 null] +>> endobj +74 0 obj << +/D [1183 0 R /XYZ 56.693 759.068 null] +>> endobj +1186 0 obj << +/D [1183 0 R /XYZ 56.693 738.489 null] +>> endobj +1187 0 obj << +/D [1183 0 R /XYZ 56.693 693.618 null] +>> endobj +1188 0 obj << +/D [1183 0 R /XYZ 65.161 694.301 null] +>> endobj +1189 0 obj << +/D [1183 0 R /XYZ 56.693 637.117 null] +>> endobj +1190 0 obj << +/D [1183 0 R /XYZ 65.161 637.801 null] +>> endobj +1191 0 obj << +/D [1183 0 R /XYZ 56.693 580.617 null] +>> endobj +1192 0 obj << +/D [1183 0 R /XYZ 65.161 581.3 null] +>> endobj +1193 0 obj << +/D [1183 0 R /XYZ 65.161 570.341 null] +>> endobj +1194 0 obj << +/D [1183 0 R /XYZ 56.693 524.117 null] +>> endobj +1195 0 obj << +/D [1183 0 R /XYZ 65.161 524.8 null] +>> endobj +1196 0 obj << +/D [1183 0 R /XYZ 56.693 478.575 null] +>> endobj +1197 0 obj << +/D [1183 0 R /XYZ 65.161 479.259 null] +>> endobj +1198 0 obj << +/D [1183 0 R /XYZ 56.693 433.034 null] +>> endobj +1199 0 obj << +/D [1183 0 R /XYZ 65.161 433.717 null] +>> endobj +1200 0 obj << +/D [1183 0 R /XYZ 56.693 387.493 null] +>> endobj +1201 0 obj << +/D [1183 0 R /XYZ 65.161 388.176 null] +>> endobj +1202 0 obj << +/D [1183 0 R /XYZ 65.161 377.217 null] +>> endobj +1203 0 obj << +/D [1183 0 R /XYZ 65.161 366.258 null] +>> endobj +1204 0 obj << +/D [1183 0 R /XYZ 65.161 355.299 null] +>> endobj +1205 0 obj << +/D [1183 0 R /XYZ 65.161 344.34 null] +>> endobj +1206 0 obj << +/D [1183 0 R /XYZ 65.161 333.381 null] +>> endobj +1207 0 obj << +/D [1183 0 R /XYZ 56.693 287.157 null] +>> endobj +1208 0 obj << +/D [1183 0 R /XYZ 65.161 287.84 null] +>> endobj +1209 0 obj << +/D [1183 0 R /XYZ 65.161 276.881 null] +>> endobj +1210 0 obj << +/D [1183 0 R /XYZ 65.161 265.922 null] +>> endobj +1211 0 obj << +/D [1183 0 R /XYZ 65.161 254.963 null] +>> endobj +1212 0 obj << +/D [1183 0 R /XYZ 65.161 244.004 null] +>> endobj +1213 0 obj << +/D [1183 0 R /XYZ 65.161 233.046 null] +>> endobj +1214 0 obj << +/D [1183 0 R /XYZ 65.161 222.087 null] +>> endobj +1215 0 obj << +/D [1183 0 R /XYZ 65.161 211.128 null] +>> endobj +1216 0 obj << +/D [1183 0 R /XYZ 65.161 200.169 null] +>> endobj +1217 0 obj << +/D [1183 0 R /XYZ 65.161 189.21 null] +>> endobj +1218 0 obj << +/D [1183 0 R /XYZ 65.161 178.251 null] +>> endobj +1219 0 obj << +/D [1183 0 R /XYZ 65.161 167.292 null] +>> endobj +1220 0 obj << +/D [1183 0 R /XYZ 65.161 156.333 null] +>> endobj +1221 0 obj << +/D [1183 0 R /XYZ 65.161 145.374 null] +>> endobj +1222 0 obj << +/D [1183 0 R /XYZ 65.161 134.415 null] +>> endobj +1223 0 obj << +/D [1183 0 R /XYZ 65.161 123.457 null] +>> endobj +1224 0 obj << +/D [1183 0 R /XYZ 65.161 112.498 null] +>> endobj +1225 0 obj << +/D [1183 0 R /XYZ 65.161 101.539 null] +>> endobj +1182 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F52 695 0 R /F93 909 0 R /F95 923 0 R /F98 924 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1228 0 obj << +/Length 2585 +/Filter /FlateDecode +>> +stream +xÚÍ\[sÛÆ~ׯÀL_¤NµÚ;€ô)Nm·Žã¤–2õŒÉ,Á%‰ +`´¬üú\(‘(p¥Bàâà`÷|ß¹ì!¨·ô¨÷úäÅÕÉÅ+E½„škïjáiN´ïLá{Wsïãé{›XSÚ³s®è黬²e{¸ÈŠö Zu_þ#‹^dÙuûχ˷g¿]½Ûœ3FB¥Zi—ÕmbË•µUY wg^w×¢¾»Ô>ñyà+úÝý~pzÑ~0®ë O^^|>a žzÌSšèPx~Ȉ¦Ü‹Ö'£Þ¾ˆ 惡ö£„ ljwyòïÚÍ=8#[Ù2$ŒêV§Oœ«F‹íe¯`Hó²¾& RðE3øGW«³sMéé+³J–…M¿;;gþŸgÑ fŒ|-“VLT-±þx½ÿˆ°0Ìçž/@ )êG¬Ï+ +&µÇI„^a½Åî3íI{üìÃð€°@noÐ +fõhWùŠ0Íúòeć¹ÂÜaw½5 y8‚²Àbéµï;Ø[LÆCÒÌ<#>›5ý×:/²/vÏÊò>6«^5°¨EUœ¥¸áÙ7.M ÜÐxm–¶Ä½YY¤¢7Yq§K¤ +H¡[¶ÙÜ}%Iwöᥧ_qÒ“Îý‰*zXxý }^P;¦$YH€é:bøD%mIê~ߘY7æË Ì'@JÓÁv_¾#l•ÅÀ[KA‰b¢N¬qº§Ë²gõò3ôŠÈÆÓ80õσ>Jƒÿœë£fqzQæ6º°ùfö{a›yŽ*¯Ï’bö÷öºá¾L ®žÎ•i|?e“a¢'ß îÊâ]™öÑ ~BWöyc’¸ºב¡ïþó/¯7S¤Ì{ËÇŸ!Þ¦å¦@{Çjeª±£Ž‡sðmèªHɧƒÖ¾|Gh9+‹€ÖVq˜ ¿s6Í­mZ!é:ŸB œ[›'HãJmYÙ9ÖÀ mcã?SØq#º¬˜cãÔ~tvxàü¿&‚ÇBb&Cc+.†BF‚Ç ÄtÙ—ïge@F¦>k1“å6E“áMaòk2þyõÓ[d´ڤýÄâ”`£©ˆ å³Æ}œüéa_wæîÊEœØò"+Ö¤A·ÉÎ^F„DÁá]JD(ÀèÝksÏ8Ñ,˜0¤T;™ÄûòAì¬ì€’JÊ®<öýÉÎë ëC"ð6‹M‚¼÷ Y}õXgÒ€v‚ð#˜äÆÜb}>ð­)ŽrûÏV +Q!%þdÝ“î†OWEAT(@~WQGgY¾è{Áï¿æ¼¦òFät¹zO¾ãÂ9+‹ŽT å]®~µŠ±ÅYƒ˜¥Ø\ Kg3H|Æ®!eß‹åÔ|S®°9R{aÙo@2tk±-L­n‡¦“ø¬•ñ|h9@é€øÁt倞|Gô:+;½>'´£]ƒÝŠ*þXÝùo—· »7 ¶(aM>5_⥩w¥L2ˆÆ®{¬Mz‹å +3G‡åmYõ•EajnÁãUÇN¿)å“€OW/èÉwÄ”³²0¥¼°U”·ï~ø€w6 GöÑ ò4ñNzmzTΘ9¦½sIqçóÿzènŠX®ûiVõ¤iÂ$N,•Kµ3t6öŽÀÌ–Èe*³dó`T‹MU™¿!m°ÏWUvhQPIM=]·EO¾#È•rE SÝVfSÃzU˜Ê.oGv?ƒPƒ® ÅY<®Å¦›‘ËâQ¸ÂbK/X2­âõñÙ§$ðÕd5[ÞìnѶ¾ å²µpAü~Â(<ÔËèŒSˆÞóÒvír»å_êsI„VÛìÐn[ó’$;ãêô¦Ms*Z™t¹mÝ[™Zê—3¦N»+fò°æhmæÝ9Xõ»þ¾¶4#vîÍI|_o‹36:¤¤ Å]¡'ʶâËük¯ƒØIÞmß!ÙŸ—sÎë>¼ ©8¢èý“ÙqõG[¬~cMZfwUïî1Ä€. ¬è‡väI¡H ¦ó=ùn>Â]Y|ÍYÖ½Ûv—ïçslFƒMÄîZU±Åìù&½Ž»´©­ý’ód³ì³àùá²}la +žrïS»øQV&›âɦ¼~‰(‚²)JÌhwÇ_ŒÉ}ùŽtVv@¡YÖ¹º£åŸ/_ÇŒqt??ÜqwÈ2^Þ»ž¾a|#è·×œ‰&7›lÍ÷å;®¹³²øP]ÖÝœ´ dêúd\AFÞßÒºÆçÍ›6c;Jæñ¢Käÿ$ÖÊtKKM¯X§€Ž‰Ñnfm+37•÷þe•X¯Œ]Só䮢U“P>©éö{òáï¬,þx×@ý4á²KAJ››:ZÈ­"d$ ƒÉ&·'ßmrÝ•Ås«! +º¶ŠµI㺊VwßLÆÀBÝxg¶ Ý×g¿V6—#Óµý—:Ƶ§OÅerô{ù^<ˆŸžØõ}’Eý€cO@£"`„N—Ëî‹wĹ«ªx$‚û;%’üéS3]÷DO¾ã¼:+;€?}A„¶[×og›jì$7U´z,ÿø ×\jˆI°èÐ>¡!Ö:¤”Ü—!ƒGË¿œ‰ºßÛ¬Ëÿï*d~HG¡ôˆEHA˜àEÈ÷ÙÌU[ƒ¼¬Ìmu_ƒœfQ‘ˆ¢ !(®Ió›Lòu-Hò_lºz$W!ÄØÓ‘MO¾Ù¸+‹¯G؉Ù¼Š‘¿4=(Ø5§yȹ ‚§=~c*â;£pMc~HÌâ´½Dxcgغ2ÛÑÑ»@0ß»ì;¾aïËw4lgeñ^”+F„ß5¼ËnFŽº¿˜dcÇ-<<ò;vPýâ‰fžHÊÓåÀötjÓï +yÂÞ?obtý¦¬²uü‡yø~oCøàî¦kEêÉw†³²€!)‘¼kEBw$Y„m¥«)íñf4© I˜|ÖŸ#qÆ}göó¦1]’nÖ:‘¼Èrˆ b[ À²¸ö§‹XH‰ Ó²zòÝâ®,>6b¡ MÞQ¯ómÓÞ€¦æ›"ÏÊ£=; |ȯŸLK"z]лz m1ð“”«-rOªÛ|H2Àè1åû‚˜DNø¾ ž|G‹wVv€Å×}!þðî„_/»ÄútPÑI­_kSF`HØÂúçµµ]–Gã³ö£¡zV€2Ÿ¨€Ð7qqmZ|þœt½Åç*^®ø«êæ¡j•ºg"^+<·fát` áÙ§ÛÁÞ“îTWEñ0 Á2¤?¥i†íü7³ ÛgYÿj:^Ü¢3è:Ä¿. Ûúëû·óðíÚg ÷Áþ€'¨yÁßÿ–Í_‚ +endstream +endobj +1227 0 obj << +/Type /Page +/Contents 1228 0 R +/Resources 1226 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 1075 0 R +>> endobj +1229 0 obj << +/D [1227 0 R /XYZ -16.307 900.716 null] +>> endobj +1230 0 obj << +/D [1227 0 R /XYZ 56.693 741.747 null] +>> endobj +1231 0 obj << +/D [1227 0 R /XYZ 65.161 742.431 null] +>> endobj +1232 0 obj << +/D [1227 0 R /XYZ 56.693 683.964 null] +>> endobj +1233 0 obj << +/D [1227 0 R /XYZ 65.161 684.647 null] +>> endobj +1234 0 obj << +/D [1227 0 R /XYZ 65.161 673.689 null] +>> endobj +1235 0 obj << +/D [1227 0 R /XYZ 65.161 662.73 null] +>> endobj +1236 0 obj << +/D [1227 0 R /XYZ 56.693 615.222 null] +>> endobj +1237 0 obj << +/D [1227 0 R /XYZ 65.161 615.905 null] +>> endobj +1238 0 obj << +/D [1227 0 R /XYZ 65.161 593.987 null] +>> endobj +1239 0 obj << +/D [1227 0 R /XYZ 65.161 583.029 null] +>> endobj +1240 0 obj << +/D [1227 0 R /XYZ 65.161 572.07 null] +>> endobj +1241 0 obj << +/D [1227 0 R /XYZ 65.161 561.111 null] +>> endobj +78 0 obj << +/D [1227 0 R /XYZ 56.693 523.96 null] +>> endobj +1242 0 obj << +/D [1227 0 R /XYZ 56.693 496.407 null] +>> endobj +1243 0 obj << +/D [1227 0 R /XYZ 56.693 449.397 null] +>> endobj +1244 0 obj << +/D [1227 0 R /XYZ 65.161 450.081 null] +>> endobj +1245 0 obj << +/D [1227 0 R /XYZ 65.161 428.163 null] +>> endobj +1246 0 obj << +/D [1227 0 R /XYZ 65.161 406.245 null] +>> endobj +1247 0 obj << +/D [1227 0 R /XYZ 65.161 384.327 null] +>> endobj +82 0 obj << +/D [1227 0 R /XYZ 56.693 347.177 null] +>> endobj +1248 0 obj << +/D [1227 0 R /XYZ 56.693 319.623 null] +>> endobj +1249 0 obj << +/D [1227 0 R /XYZ 56.693 272.614 null] +>> endobj +1250 0 obj << +/D [1227 0 R /XYZ 65.161 273.297 null] +>> endobj +1251 0 obj << +/D [1227 0 R /XYZ 65.161 262.338 null] +>> endobj +1252 0 obj << +/D [1227 0 R /XYZ 65.161 251.379 null] +>> endobj +1253 0 obj << +/D [1227 0 R /XYZ 56.693 203.872 null] +>> endobj +1254 0 obj << +/D [1227 0 R /XYZ 65.161 204.555 null] +>> endobj +1255 0 obj << +/D [1227 0 R /XYZ 56.693 157.047 null] +>> endobj +1256 0 obj << +/D [1227 0 R /XYZ 65.161 157.731 null] +>> endobj +1257 0 obj << +/D [1227 0 R /XYZ 56.693 110.223 null] +>> endobj +1258 0 obj << +/D [1227 0 R /XYZ 65.161 110.906 null] +>> endobj +1226 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F95 923 0 R /F98 924 0 R /F52 695 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1261 0 obj << +/Length 1709 +/Filter /FlateDecode +>> +stream +xÚÍZKsÛ6¾ëWpÒ‹5SÁxhoIšL2­ÛÆžif’ +’˜ð¡”íüû._±DI$ŠžœËÅb±ûáÂØ[xØ{=z~3º|%°§‘–Tz7sOR$}O†˜ïÝ̼ïldMnÇ*ðÅUZؼnÎÓ¬n˦óeò©ò&i¿ŸPPè«‹Ëú‡PY¾8úãfôuD@=öˆ'$’šy¾&HbêñèÃ'ìÍ  @\+ï®’Œ=A0¢LB;ò®GÿŽpã |Ð#­n®Á²¶é#¥¢²¢}íòˆTóàå; +q© £v`:µY1žHŒaúæ[‘&¿'„ÂßYLÁc(Ès”§ë,°è>Ž~¯e6±™)lÕ»´ff³Þ`i¼ÿÍØÔ¾ÕbÃ&®4Ðl¬úˆ1+þÞ"u«š,X9³òçõ¶«!@ˆO=ŸiDa‰ÀÕåsaá¸ô(ÒJ{™õ曾ÝÒ¶ÿéîT!FT;@­˜”Ò}õ D$éê˜ ÖÌe„͸“HS}c+…Ù«ïš@Ü +*B5ª<_yˆÿ˜ÌÄùV(îªò>TQQ¤nrùzµJ!`„Û ¹‰¿¸¾vœ‡[¢0[äœT ÆúÄæßÃè€7?/:دkS„i‚’u Bh•¥+ m^溣/¤¦Hú–¨R¤´?X¢vô÷KÔþƺ'ªT06&®ì[à›¢ÈÂ麰ŽÉjµÜ®ë`sijZY“…ÉÂQ·½/Î VmŽœŒÒ‡…Ãj0° exùBo¢…ä1EëÈ`HwlŸŒ+5yo"“4þ…*Ê48Þ5+FŒøOY£b°¹IŸžŽ:1î#ÅÙ€0À$RŠÛú{Â@oc€Ž+Õã6ø¥ã¡"Z-ÍÔµÀÜ¿0¡ëIáo7±»°p56p®™™ € ¸‹¿>ŽIZœÛäEfn{™üd°Æa xšÒâIa8"ž·ò~Ï@à” pTc0Ÿpýý®¿±îG5*\/ê«ð~ ÎÇ¡= òì0 “™½ï¦ì³ÀÌÊõÝM؃‚™Ý¹Íkz¨¯%vÏmªÊ: Êܦ`¢jä¹E£‚#­õ€É '?ÌÉpɽ­¿gr÷6öˆäÞÈÚp¾E{ØÈ$³0p¯C½€{j}©¼¼À‚>éeÅ *ÛÒ Ý[:y‘Æqú“ß4‡ld +1!ÏX4aˆ0zrÑä*Íb“ÔÐóŸ‰òe > endobj +1262 0 obj << +/D [1260 0 R /XYZ -11.232 900.716 null] +>> endobj +1263 0 obj << +/D [1260 0 R /XYZ 56.693 741.882 null] +>> endobj +1264 0 obj << +/D [1260 0 R /XYZ 65.161 742.565 null] +>> endobj +1265 0 obj << +/D [1260 0 R /XYZ 56.693 695.46 null] +>> endobj +1266 0 obj << +/D [1260 0 R /XYZ 65.161 696.143 null] +>> endobj +86 0 obj << +/D [1260 0 R /XYZ 56.693 659.185 null] +>> endobj +1267 0 obj << +/D [1260 0 R /XYZ 56.693 631.765 null] +>> endobj +1268 0 obj << +/D [1260 0 R /XYZ 56.693 585.427 null] +>> endobj +1269 0 obj << +/D [1260 0 R /XYZ 65.161 586.11 null] +>> endobj +90 0 obj << +/D [1260 0 R /XYZ 56.693 537.121 null] +>> endobj +1270 0 obj << +/D [1260 0 R /XYZ 56.693 501.09 null] +>> endobj +94 0 obj << +/D [1260 0 R /XYZ 56.693 471.459 null] +>> endobj +1271 0 obj << +/D [1260 0 R /XYZ 56.693 443.208 null] +>> endobj +1272 0 obj << +/D [1260 0 R /XYZ 56.693 396.869 null] +>> endobj +1273 0 obj << +/D [1260 0 R /XYZ 65.161 397.553 null] +>> endobj +1274 0 obj << +/D [1260 0 R /XYZ 56.693 350.447 null] +>> endobj +1275 0 obj << +/D [1260 0 R /XYZ 65.161 351.131 null] +>> endobj +1276 0 obj << +/D [1260 0 R /XYZ 56.693 304.026 null] +>> endobj +1277 0 obj << +/D [1260 0 R /XYZ 65.161 304.709 null] +>> endobj +1278 0 obj << +/D [1260 0 R /XYZ 56.693 257.604 null] +>> endobj +1279 0 obj << +/D [1260 0 R /XYZ 65.161 258.287 null] +>> endobj +98 0 obj << +/D [1260 0 R /XYZ 56.693 221.329 null] +>> endobj +1280 0 obj << +/D [1260 0 R /XYZ 56.693 193.909 null] +>> endobj +1281 0 obj << +/D [1260 0 R /XYZ 56.693 147.571 null] +>> endobj +1282 0 obj << +/D [1260 0 R /XYZ 65.161 148.254 null] +>> endobj +1283 0 obj << +/D [1260 0 R /XYZ 56.693 101.149 null] +>> endobj +1284 0 obj << +/D [1260 0 R /XYZ 65.161 101.832 null] +>> endobj +1259 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F95 923 0 R /F52 695 0 R /F98 924 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1288 0 obj << +/Length 1715 +/Filter /FlateDecode +>> +stream +xÚíšKsÛ6Çïúœö"ÍT0Þ$šK'N'ÏÖöL3ç@IÄ1Eª$e[ùô]ðáèmÐ]w¦‡„4.–Àîÿ‰‰ƒ·W—“3…”¤Ò¹;’"é:aˆ¹ÎåÈùÚ=סöSÝëS»ŸâL§Åé8NŠ“lZþø:¾Šãëâ/zß.ßA7}B¢°v‘-CNµÎRó3ôNz—ÌôÎ¥‹\ê9}”[öOt½îIq Tš;o.;w˜Çq„DR1ÇUILá¬óõvFð8€¸òœÛ¼åÌ#Ê$œ‡ÎEçÏ.G¯u ™+T>$•q®Á²pŠ#–{QÝæ|íŒq÷ìsùT«c +C@¢.-Æk‡aÜ£¢{D“âÒpêG“j„§~âîMˆnyÇ@ë¨8›ù£òZÿ˜†¼oðõGßÄãÈuÍóæ}ãþŽ8U“a\YNƒh¨7æ˜À° Rœ'Ed õ‘襥b‰²Âê¥b­]îg>óÜøà!.½Ê…óx “¬×—0¢™¿Ìâè×^ŸPøs »4,,ATcæðv= Š ·T0O<s]`ˆ..Š”§œD;ãÕX³¶ûêvä‰Çª +ÃÄ´njY’MûÃðÃ0Ùô°š)ªŽàln0™8ÅÉy™-kóxï8$KÊ€_$ÑÚÜo‚ü1“Çv Gƒ"’W°Û//lßÒ´Ù6T³l8'› ýè»LGiG©y?L·ð—½æó[æÚÒõÁb² /sùgêÁÔq‚l³ËÈ)Þ$»ö÷CXr‰h…`¾Á¿_~üð¼!<Ífá©D“£a˜Â²K`-0Láþ" ²ï‡ßi?Jp8 ²PÏý‰®cË3YÑŽD$w½Öp¼a¿Ž›;kcèwe)Á>/²ù"ÛE€Ÿöóë4ž/“`2ݼïÀ=¹É©öG&±¬ÀX._ª¸iÇ{(ýp¸º.â0'mñm5÷K¼ 8ºòYä*w‘§X‹¹Ê o/W×í7ÌÕÆÎÖÈUŽsùœOëo£‘­rIï+«²$Ñé"¬sC¶œkËÌÓivdÍ5Ü!tB§aœê´±8bÔSÖð` )(ªžP´Sâ=ŸâdæG;þå9­Èa”J6ëp›’Ëk\A£ZÃƺùfÔhìª=4¸2õÖýŽÍ,¾±ÌR6&‹ [Ú5¿M,súe:÷£šÌË$¾}Äm~dIÈ—Ã8ܲÿpHs…saþ”u‡#ÅnU鈕ÎG?šû=‚»P·Àÿ:}ÞeÏ̸;Ù饀J’±ôaaÏm°uHNéh™mÐT„ðAœ·¨¦˜‰Q¯=5µa¿›;kF v«è¯¡¦"³$†Áw]c— Ø2Üj…†ä0ì%Ð" ¢k[µe:úW´’«˜Õ“ev@[ÄÕ“j%&eÀÇ%Ã(âøº˜0e–j r®E.¬™oˆ…¦®Ö ‚05–÷õŸ®±‡K<­0cXÁ¥{a&w +³7óÅàyk1½ÛÃg·ý^Ù´`í™? '‰¾‡í ˆNFƒ,6ò¢hb.…Áà¤âp2°Œ$*8RÍ^eÆ0åa&Zãð†ýf nî¬=‰)w«Bã4N=Ìli ±ÎÐ_¤ÖV-KṑiWcۨ㠴-ÛÓt1›göïou¢m•¯å’2ÛX-ÒŒ„!¯žPèQjJKu|ô¬s¦P}hÙl›ðð`óý i<ëö‚§±³5ÀƒMaXJÀSX¾"ë×T‹¹]»©ŸŒÌj™ý7~¸°UPA”Ŷ˜J|ÈT¤G‡Õõˆ/l© +i•øÉÒöåží¤–Oêffi3‰ç: —¥Ö+ÆA +©*\aŽËVÞJ+¨y!?Ë6}K\cšÑòéñf®þ}+Å7úÜ—â¶V«doçQV׃u¶›-AéE‘W­/ØXCÛ¨ñ£ëôØ1› -õÅ8‰-ƒöCðÝ·kùÚ—5WwâI$šmrÖ.Lj ˆqU•cîÎrìÄÔOñÆ4,‘õ|+3à +ÈÀÝnš—ž:^yfä˜-}¨™?GO”‹„×¢2Ÿ$RÙšZ7ßL5vÕ^…áÅtžw6p¨GWì0UgAšZ }>V;g‘I ûæi­}<ÿÆB`[¢Ý ¯Ç~ä1$™×N·¾›ç8 óÙü?OE‚w +endstream +endobj +1287 0 obj << +/Type /Page +/Contents 1288 0 R +/Resources 1286 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 1285 0 R +>> endobj +1289 0 obj << +/D [1287 0 R /XYZ -16.307 900.716 null] +>> endobj +102 0 obj << +/D [1287 0 R /XYZ 56.693 759.068 null] +>> endobj +1290 0 obj << +/D [1287 0 R /XYZ 56.693 738.489 null] +>> endobj +1291 0 obj << +/D [1287 0 R /XYZ 56.693 696.946 null] +>> endobj +1292 0 obj << +/D [1287 0 R /XYZ 65.161 697.63 null] +>> endobj +106 0 obj << +/D [1287 0 R /XYZ 56.693 662.043 null] +>> endobj +1293 0 obj << +/D [1287 0 R /XYZ 56.693 635.583 null] +>> endobj +1294 0 obj << +/D [1287 0 R /XYZ 56.693 594.041 null] +>> endobj +1295 0 obj << +/D [1287 0 R /XYZ 65.161 594.724 null] +>> endobj +1296 0 obj << +/D [1287 0 R /XYZ 56.693 550.497 null] +>> endobj +1297 0 obj << +/D [1287 0 R /XYZ 65.161 551.18 null] +>> endobj +1298 0 obj << +/D [1287 0 R /XYZ 56.693 508.195 null] +>> endobj +1299 0 obj << +/D [1287 0 R /XYZ 65.161 507.636 null] +>> endobj +110 0 obj << +/D [1287 0 R /XYZ 56.693 472.05 null] +>> endobj +1300 0 obj << +/D [1287 0 R /XYZ 56.693 445.59 null] +>> endobj +1301 0 obj << +/D [1287 0 R /XYZ 56.693 405.289 null] +>> endobj +1302 0 obj << +/D [1287 0 R /XYZ 65.161 404.731 null] +>> endobj +1303 0 obj << +/D [1287 0 R /XYZ 56.693 361.745 null] +>> endobj +1304 0 obj << +/D [1287 0 R /XYZ 65.161 361.187 null] +>> endobj +114 0 obj << +/D [1287 0 R /XYZ 56.693 325.6 null] +>> endobj +1305 0 obj << +/D [1287 0 R /XYZ 56.693 299.14 null] +>> endobj +1306 0 obj << +/D [1287 0 R /XYZ 56.693 257.598 null] +>> endobj +1307 0 obj << +/D [1287 0 R /XYZ 65.161 258.281 null] +>> endobj +1308 0 obj << +/D [1287 0 R /XYZ 56.693 214.054 null] +>> endobj +1309 0 obj << +/D [1287 0 R /XYZ 65.161 214.737 null] +>> endobj +118 0 obj << +/D [1287 0 R /XYZ 56.693 168.192 null] +>> endobj +1310 0 obj << +/D [1287 0 R /XYZ 56.693 141.732 null] +>> endobj +1311 0 obj << +/D [1287 0 R /XYZ 56.693 100.19 null] +>> endobj +1312 0 obj << +/D [1287 0 R /XYZ 65.161 100.873 null] +>> endobj +1286 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F52 695 0 R /F93 909 0 R /F95 923 0 R /F98 924 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1315 0 obj << +/Length 1382 +/Filter /FlateDecode +>> +stream +xÚíšKsÛ6€ïúœéEš© ’¥ÍkÞŘ`\®z|¦wiR/î¶kÁÔGŒ×*¦Ûi§# ¯¢dYÝ +W:Y6Ž^éÅÃË †õ3c’j´ÖóúžMov£œL¾™›H Q,»œ{—ÇãѤó#¶Âš…x˜6³äQšÖ¶ð"Õ8«‚í;ÖMP[ 2HaVi}Oi°'WÚ\ƒ_Ø ‘Ïec½Í"ûïhÌÁ˯ŒNò4y6 +ó,œ„éz’\é8_MÊ5M~Mãí:ù{3×Ö¼XGÖš }Ô—úy¥âø;µ÷‚[–øRù~cË{Œa¹„àë©Fåb Ö‹õ——ûQ +¹Eõ¸”HŠ ˆÒâ~€!æ}îQ¤¤ò2ã-n‡åž¶ÃwïN R„7TŠI!ÝU?ì3'mý†€r™ávÊr¤¨zcK…ÙÒ«ïêÞ ¥ÆpIÅ~µ‹¿Ìçf¾w5AZÁ²ˆv&wÍS79»ÒÖM2Lãe–n7ŽD‰«ÆMðü÷é›×n¢‰^›|£CGÍ:sÜdihòÜu»@|c²øs‹ÐC䚠‡Ð]ôÈõxuáL",®«‹:Z]Îu¬¿—ê²;bëwU]’ÄÓGÚI}E»uìIÀMú=¢¾ ¨”ý¡¾¥¿ê»ëŽú@`pÐÃQ¿Žò¼H'á·ÆžÁâ +òd-·™¶Qš<–MçHª^Ùº n±) ¤T_ú28H¦›C´èå!Ò‡ù~“¾‡y»Kªyå{I^} ÄÛyêYªmM1è¸è®ÄVŽ®OÐK0öÿlæÒÕ%Žr[ÒÅD–µú°<Š1|ÆÚuVÃ`«y½šÚ‰wúç=µ øúµ`‘°øÈ*ºóßË¢¢”tàÿ&²«Šþ§zý–¹Æÿ,NÃOJšc‚2 éù Ȇí ù-ýÝßÝXwä3Á#5¦Î®"®œInÛv³v“›ë|åx¶H3Çò±Ò™áë&>3 Ùµ·6‹fÛ;u©ó!Ãl¢e¦7«vµ{^ß8òZfò4¾t=rl—m4·¢B1)¤kÞr°Ïz+¬­þ·¨«P¡ê¼z—ÎLf+`YýÙÞ´«E-ËÂ+FpÞ#¯(ƒC·èWûú;òª³±àåÈWu>v®-êìp¼C祔/~¾?µ¢ùÃ`zh›])“GëMlÊæÌ¥ŽóoífkÛ3Š%ò‹~;@%”6.šVl›ïi¾Ýfpe«“sËÂ"0y²v%¾vP믔Ðrµ}áµ¥¿^»ëŽWJØÓàG;ø£|D;H±BDÊ/ÙÉm¾²úZí Q´?^HO°ÞxÕÒßWÝuçáqÿ)»A.ä³û3Ko6w&}gh tdÚº¦b%®È Ãhn«ã–=Ç‘ +Å߶œô€.ŽÀ•»Ÿ>¿ïü+ÁÇsõ˜?%üã7u‡ +endstream +endobj +1314 0 obj << +/Type /Page +/Contents 1315 0 R +/Resources 1313 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 1285 0 R +>> endobj +1316 0 obj << +/D [1314 0 R /XYZ -11.232 900.716 null] +>> endobj +122 0 obj << +/D [1314 0 R /XYZ 56.693 759.068 null] +>> endobj +1317 0 obj << +/D [1314 0 R /XYZ 56.693 738.489 null] +>> endobj +1318 0 obj << +/D [1314 0 R /XYZ 56.693 691.479 null] +>> endobj +1319 0 obj << +/D [1314 0 R /XYZ 65.161 692.163 null] +>> endobj +126 0 obj << +/D [1314 0 R /XYZ 56.693 655.012 null] +>> endobj +1320 0 obj << +/D [1314 0 R /XYZ 56.693 627.459 null] +>> endobj +1321 0 obj << +/D [1314 0 R /XYZ 56.693 580.449 null] +>> endobj +1322 0 obj << +/D [1314 0 R /XYZ 65.161 581.133 null] +>> endobj +130 0 obj << +/D [1314 0 R /XYZ 56.693 542.91 null] +>> endobj +1323 0 obj << +/D [1314 0 R /XYZ 56.693 506.745 null] +>> endobj +134 0 obj << +/D [1314 0 R /XYZ 56.693 458.99 null] +>> endobj +1324 0 obj << +/D [1314 0 R /XYZ 56.693 430.604 null] +>> endobj +1325 0 obj << +/D [1314 0 R /XYZ 56.693 383.595 null] +>> endobj +1326 0 obj << +/D [1314 0 R /XYZ 65.161 384.278 null] +>> endobj +1327 0 obj << +/D [1314 0 R /XYZ 56.693 336.77 null] +>> endobj +1328 0 obj << +/D [1314 0 R /XYZ 65.161 337.454 null] +>> endobj +138 0 obj << +/D [1314 0 R /XYZ 56.693 300.303 null] +>> endobj +1329 0 obj << +/D [1314 0 R /XYZ 56.693 272.75 null] +>> endobj +1330 0 obj << +/D [1314 0 R /XYZ 56.693 225.74 null] +>> endobj +1331 0 obj << +/D [1314 0 R /XYZ 65.161 226.424 null] +>> endobj +1332 0 obj << +/D [1314 0 R /XYZ 56.693 178.916 null] +>> endobj +1333 0 obj << +/D [1314 0 R /XYZ 65.161 179.599 null] +>> endobj +1313 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F52 695 0 R /F93 909 0 R /F95 923 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1336 0 obj << +/Length 2217 +/Filter /FlateDecode +>> +stream +xÚÅZëoÜ6ÿî¿BH¾ì]š¤øpI/NÓ«Û^âÃH‹B«åîê¢Wôˆûë;)íJ–%k_?+Q£™á<~3C{;{¯Î^\_pì)¤ÞÕÖ éÄG¾ô®6Þ»Åè°ÒËåxñS^ëÊ^nóÒ^Ô{÷ðyô"ÏßÛ›_ßþ¸üýê³")Î-··õ§DW{­ëÊ<éÄ @ºðt&$’4ðV)éä e°8·?„ +óâÙË«³gØcx\ ¡|O*‚¦^”ž½û{x + ¦ﺥL=N0¢¾€ëÄ{{ö¯3ì,¡I®Z“tÌ™B «G~«E÷š÷nE0Æ‹—E³vû:¶*2ä ÷öUg±mž$ù’òÅuœíìR´³]gã}¸¤xñqIø½±Ö:³Wi¸qku~pD+´=È&CRš·²õ´†T †IGåï*Î"=ò3Ó l¯KhhŸð Ð …}Ëõ7Jù€®Õ´õ>3:ˆ‰ SáŸ:®÷Ë•£^„ûdWêìÛåŠP¸_ÇÙyUèèÜìåRóªŠó¬úì¢rý̾·É£5Ä#º©+ÂÐH6?¯†aO$õD @r@fcG&<ŠT ¼R{Ûãˆp›^½-@J¤ˆèXÆÄPŸÊŸ#"Ș?Çà+°é ÇÙ$¢ê”m–;Ï^¼qé5pz§x@ÅÌúþùf£7ƒH¹Í 2Îøøàýyôa6“ñ6¾™GÙ7‹.ÊËRGõ6Ì£'nñö›‹u³½quËìÚäÍ,²0ÕUFz,au·>E©Á2s½åYÆ™.ç‘–¤:³•áóÔq6~WLB*cÕÁÉo˜aŽÁ•D ²ÒѬ梄É./‰‡üOLâ“•‘ÄÔƒ@`@qe®Ò_¾¼zþõú§‹1õùÝÔÓÐÝïܤÉTò=»?]ò䣞“¯«ªÑSRžR©0&rvˆù`Üà”BtÇïí–Ïõ7‚„9ûkJuO·¡=<Ï3  ‹}¡h@’f£¸ï™ËàAž +q¸ìóMpEìÕL»û`E± ß<ìò?;NVö ê#F]ýÏrh6g°®uZÔs‰gVÿDßÄëDÏ/¤3+"”·¸þôÀ½Ê¯¯mŽÌ£.Ê<2Y˜ ;‹ÉA$"Œý?A‰+ãÚÃcR¯Ï»ñ \Ï“òñÀK»qðhà0â8œ®ì|pàR vo§çk¾¿½wE;T咽=Ìmæ_ÜjË»*Ï1côþ–¢ú¯gïàKGœRyYϤõL0ºŒ£}¨“yÄÿ‰õ& ³ìŽîìó™¤OÔ£!ÍÔù÷ý@Üù›<ßùeé.—aZÝsÊÃÿúSžâ.ýù\<Ü9TmâÓÎy.æŒëÿY¨þA‡Y•÷H½wûþjTåMµ=àÌb€NÔD¬fðKåãaõˆÿiX}º²ó±šÁ/ïN:ÿ]lÂÙP¹1óøðx]jè袙Í_—œ³ˆÛýšóŠ»u Q_‹œŒ+DƒGENàE?BN}¡ëq1‰›‡2° Ç}Æ:Œ™Sˆ-I;0«Ù7ºGqj*_˜ÕE ¬6qa¤7-Ä:bÓ]ۋͦ!ßbWñ.‹ “¨ç¿ÕaÝ”z€èߎ€ËÑžŽpòĺ¾©Ço ŽåËá'”Ë|ã1yRªC š?ù\uA÷i¼ê€5êø.OÓ<ûRµí¡®µeSG¾#UyÚ›¿LC÷¦•B—uܹ-wª×!Œgn­©z7}uùc_ØDwÒŸ¶/O}QÈï‰Ò°|ß­yÀŠ¶Ç‰+dd¸¥Ô¹^PÎÞdº+€`z ’ÚŸV|€ ÑFoÃ&©“pmû«‘RJ!Ae÷ÊGÃ:LšvﱚS`ßZÌHoÒµ.;Å*€= Aô#"²ø쎨 ÄíÅZÛßM ³]W{½q!€ó’“Ñç=ˆ¼Êgçš‹ãy£[Aöæ)á¾ÂŒ£þ3¡±ìÀ°>V®E1W&ÄÍ/$Ú&ÑNV¤E9g¨0zŸå׉Þì‡Ê#Ë +Þ;Ãâóˆ'É€öÍŠ™§Â†µÓI'8sªCV£åŠÂö‚fÍqÛi-¡È»-Wq'a™|ê÷=¡ ÆêusÅQ_7dz´¤ê÷Ðj$Ï“d‚íÊToÊÕЫsL@Ñïƒô:î\‹B‡.ÁÃîËq™wššÓ›rÉðâG³5÷  f}²7‡ V÷!é’ ëâçÙh5þDÛV˜vø²ð³u¨Úµ¦‡–¾ï¥÷ÝF@ .-’µ»ü¹ð÷Ac±»Ž;î&qÖ¤³s¾þ/$zuO21_,BóÃ{|j×ÚQA÷^˜À,M–ê8 6V(‚2Õ’*¿O‰oLÌQ‡QF¨9¿/ó¤²ú´u×,ÇY\Ça2™‡€“w +h§ÄúÐÕøÊpuìy¯¹[.5¿U äâ»$¯te—/ÞX|óôÌÁ0ž©¨OÅW¸0Í;ܬ·y_Ûº“8çÒª.›èå½2’qO… ½¡>†elŠ]ŽÀÉ):*¨·í˜ fîýÖuÇÙ0©\¶]®–dw㣇ltåÂüo!_b²¿CЛC<õAazQvŠ¨4 7f6>†ç V¯°Ñ²"±eo‚#4­>‘Gá=ÙbЧ*}Ñ5>pëŠYö¸†AÔY¥€4{R&«zý¤“ÌqiÐhUç«DokX ]L¹Bü³3dSÍ@1™þа>$œÈ(1aPÁ‚Á1ÄhCE†`>õO= #,Ô×üOÏŸ‡2¨” +endstream +endobj +1335 0 obj << +/Type /Page +/Contents 1336 0 R +/Resources 1334 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 1285 0 R +>> endobj +1337 0 obj << +/D [1335 0 R /XYZ -16.307 900.716 null] +>> endobj +142 0 obj << +/D [1335 0 R /XYZ 56.693 759.068 null] +>> endobj +1338 0 obj << +/D [1335 0 R /XYZ 56.693 738.489 null] +>> endobj +1339 0 obj << +/D [1335 0 R /XYZ 56.693 691.479 null] +>> endobj +1340 0 obj << +/D [1335 0 R /XYZ 65.161 692.163 null] +>> endobj +1341 0 obj << +/D [1335 0 R /XYZ 56.693 633.696 null] +>> endobj +1342 0 obj << +/D [1335 0 R /XYZ 65.161 634.379 null] +>> endobj +1343 0 obj << +/D [1335 0 R /XYZ 56.693 586.871 null] +>> endobj +1344 0 obj << +/D [1335 0 R /XYZ 65.161 587.555 null] +>> endobj +146 0 obj << +/D [1335 0 R /XYZ 56.693 550.404 null] +>> endobj +1345 0 obj << +/D [1335 0 R /XYZ 56.693 522.851 null] +>> endobj +1346 0 obj << +/D [1335 0 R /XYZ 56.693 475.841 null] +>> endobj +1347 0 obj << +/D [1335 0 R /XYZ 65.161 476.525 null] +>> endobj +150 0 obj << +/D [1335 0 R /XYZ 56.693 438.302 null] +>> endobj +1348 0 obj << +/D [1335 0 R /XYZ 56.693 402.138 null] +>> endobj +1334 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F52 695 0 R /F93 909 0 R /F95 923 0 R /F98 924 0 R /F57 739 0 R /F102 977 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1351 0 obj << +/Length 2605 +/Filter /FlateDecode +>> +stream +xÚÍZ[Û6~Ÿ_! /6P3¼H”Ô½l'MÑ&Ù™šEÚZæØjdÉéL¦¿~oºØòŒ'iû0E“‡çús¨ÁÑ:ÂÑó‹ïo.ž]&8ÊQÎ)nn#NO£Œ0ÄÒèf½]ÉJ +%ç šàÙËFK冷MëzãüWS|ß4ïÜË›ë_æÜü Ç,Ay’8j×ú¾’j#¥Væg8DœÎ™9=æ)Ji-”§þ|Â`šÍž¹¡Ül¼øñæâýò8"QÂÏY”æqL£b{ñö­à7`ÅyÝÙ•Û(!QÆa\E×ÿ¾À^x¤‘t ‘@;ÎÁÜñôÓͯVºnÛiŒrœŽ%ÿ¡©ç1ž}˜“d&[=_°8Ÿ‰ª2ƒlVÀH¹9ݸgQ ¥Ðs2Óm¹œS<Ûky°&lËú©f»mj´ÑÛ +6vŽÈg3µßíšÀǪl s_Ã[Êf•¨×vÏD½rvX;ÅF>–%V؉¦K]IoΡ/baÕ3eí˜1ÜZwYÄ$Aqš{Ýy}7{½Û뿳º3pЭ¬µB@‹àÙå¾úcjc7H¡÷­÷ÑV¾ßKåI}EòœeŒ¡ÎSÁïbw䋺¨öª£Ù¥Í­{nÊõ¦‚?]Ök7S4+Oûn§ ª*·»ª4ŒÈ•gìU]Ý{jµß‹¬ ìØ﬛9M€˜{‘…TJ´÷sžÌ¦øünµ ++Ûv¢[gÑ[Ž'(Ki0IY¯äGT•õ;…tƒ”,´‘øØ’„dˆ%Á# ’ňšp=â‡óÞ¿Ì‹3 XÀ °;Á#Á³Œ=IJ†°óûœìaw›²Ø¸áN¶ÛR+ÿÒÊ¢Tž#{‚ç²qOs´‰×v©0çžìÈ{§U âxù­©;°Þ£ì>#,˜J“ JÙ"à©hìÄq>2ÑŸ†˜¶ €ó”À$õQ&_ï—OEµk Ö¯ÁœÛÆƌ꽨 ¹r/ óªrC¹ ¥cy Ë'½Í·b-›åŸ ÷”¤ cJ:\©À:µÐ¥q(¯ÊkÀË–Rkk÷~I½1arµÔÜøöÍy+ ÞXXÑûñåÍ‹›ÿ(or nÇl¬ÛJÕTŽ)7ñB©½~ÆqLÃJÖôѼôHq%v!=Ðýyã¯f}ìVíESYÜ·&‰X˜·zBÿ9C9ëâ[,•nŤîcÂv^öl‚E)ÏK 4G ëLx·‘µãz+v;ç)ðRÖ.“ñlU|æ(Úrçæ<¸Ä³W¯/=©ÅJhÈ8"Ö¿íL—O`쎈gYí<¬ñÜßØ ¡ÊHgÂC¶öèàsƒ0Émhl•Ü¯š…’[Që²PV‚Õ~ „ éªm¶nô+€VgûßL~.å +ö×°Œ|€Œ`P‹›„3%V@–½ 2%§l ¥Í:S.þéH;-Ãl1A?Žãì€þ”#aDz¸êín2{½ +úU:Dn Í'þ ò‚WLºcŒ0yHP»ÏÙô1N!”R–}.£…`b5ñ·£9‡iÜÒ$=Åõb1,Ášåt5ðÃ*Ô:î¹W!†ì¡ÕåšA~2÷'¥OÉQ]‰ÔCÿ°Ž\ËZBŠ6ê™ÈKàv<ƒ²S$LÃYŠZ´s’]=…ŽÀ`Îî(Œ®µrÇ­©”-T0¢ÐO=œì)ƒ’ÎtÊôJym‹U¨Ô'«s%o-‘}åU +(Ò×ÅÇ߶û*4£`쾞²ÎÚ¾Û{A=A¾S›ñàÑWÀðb«?i²¾ík&ÊÌ<›u%Ö‚Ò¬$ÎJì&m’s”±®À„‰bJ:íÎ,šZ·í;àÍe ”u©KQMe]h£HW+}œ`CN¶RŒûéVJh7hÏ~sI“~m¯ô ªzšÄã^kc:–£Uó¨›zñ—l÷öÁ¨XT¦„1¯&Yêæeà&Czb8¼±]ùÝ/&›Ý¢’}¹V¹ß;øóÛ@·T»JÜk›W¯ÎÊ·D ë+SaßA)ïíxºÛ4•Õ¸‘«@¯&ÇÛ±îtßÅÝlʃ¦Ó³h€¼Îõ/_½vŒò7È ¨Âáò*4¢iNåg5x®Ì2g+mi¦*•F¦sA»¶¾G—RMµM C„öÍ|Ó ±íëh¾ö•Ì!Œ; ܃äj6Mrk|ÆPÆ©“†#2Z½]@îóç¦ñWÇ~„­jç«d$ñyrNÝkRs£´Âµat’IsÀºüÓ;Ï'©ÑÜËæÈT"C_øÒä@ÛcØ… ØÁßU³´_m8¨÷Z‹{ÝÔßÌ„b—^*ùL}@·Õ?Ü?÷§8žÛUfÎ qdÎ6çãOZœ"’‚í9 VÌÌ'-3ŸàdåEy–G­Œn‡ß°FÔ¦gH”eq8À&fõçÒ‡Þ†“Cú cVÏ9aø}Zå³–`»ŽÜàÊðßÃÆs« ÷ñn#‹w#_9¦Ág¬ìrîãët+jU W@žµÃµ-¯ûE®EU7º,äyÔ~¹-µi_ÎããL ·¢¬3ÊÉÅmÇX¾a<$¦Z€_?#HNEÐã9“^–Ï ´¬Î Ù¶M«þ^Ôù®xW7w•\­Ý7ó39nÃ_|R|bŽpJþ—ñ™1D’ô‹‡§'8õÏ(1Ä%t Ÿð¿(ÿ”qæë +endstream +endobj +1350 0 obj << +/Type /Page +/Contents 1351 0 R +/Resources 1349 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 1285 0 R +>> endobj +1352 0 obj << +/D [1350 0 R /XYZ -11.232 900.716 null] +>> endobj +154 0 obj << +/D [1350 0 R /XYZ 56.693 244.842 null] +>> endobj +1353 0 obj << +/D [1350 0 R /XYZ 56.693 216.457 null] +>> endobj +1354 0 obj << +/D [1350 0 R /XYZ 56.693 169.447 null] +>> endobj +1355 0 obj << +/D [1350 0 R /XYZ 65.161 170.131 null] +>> endobj +1356 0 obj << +/D [1350 0 R /XYZ 56.693 122.623 null] +>> endobj +1357 0 obj << +/D [1350 0 R /XYZ 65.161 123.306 null] +>> endobj +1349 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F57 739 0 R /F93 909 0 R /F102 977 0 R /F52 695 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1360 0 obj << +/Length 2085 +/Filter /FlateDecode +>> +stream +xÚí\[ã¶~Ÿ_!¤âj.ï—}H²Ý$ER ;óP`7(86m«#[Š.;³ûëKYòf,Û³GKÓmƒ'Ë'ß]}s{õâ•À‰AFR™Ü.I‘T‰& 1•ÜΓ7“×.s¶r×S*ðäïyíªîp‘—ÝA½ê|™Ï¾ÉóûîË?o~¼þùöo¾›)!ÈÑY»©ßg®Z9WWíϾw’hß»dmï\*¤¨N¦Õ÷O”7¨ôäE÷A¨l/¼úëíÕ/WÄ›Ç I„DÒ°D‚$¦Él}õægœÌýoÞÄN¶-׉ Q&ýq–Ü\ýã +÷O{ÛÃöã»'–ýó Š&ŠD°l-·çö~r™Pd´IJ—,Nš‚vÀ4"\í:è “¶u¨}ˆ$Cû¤¤õðô1Kd¨9ƒ³[ƒå2é^÷HôC¸Åß"±wœÄYžoWnv¿þÓ–’7S‰ñ$ÝÀÚÕ¥ÝT™­Ó|SÁ®hÿ´aš÷'O\åY´v›ØGÕÜ­ÓºvsàM¬Ê¼Y®`çù쮥éþ=L¦'ýŸØ¢ø½7ª{TÜá™*D´Ž‡ç}ûxvvž™$%;<¯]UÙ¥ƒ[¾8;ò Ü}]”ivìBŠ±AÝ€Ñäˆ"'>g –ã–÷ÝczK©Ø»…Á£Õˆû±Ç]ã—ö]:¿ÞÞâ·¥]»ò«ë)ñ7;Éò™ÍÜ‹+ô¸ÎþܵèÏÍìá¹²9<·<Òn™==×MjþÖõŽkƒ„?ìý{‹1ñüñˆtG°¡~Ž<ÞD$5FB“hÄØ#n¸³pâJÍ–¦Ä6µ+7ÛYÃfé¨NÍfV7ÛËÎ;‹-³¼ª*T»™3k³*9H¥0ô’’!Gš~Žf¼Îï\Yw¾©íû:ßìTã'{ïiæ ôäÆ"ò“1óxüÜ·ÈÏ`gGð“)D%(.ÒG÷™âɆ/onºe€Š>xt50´åÒAcÍE™¯£D¥…­g«c¡ÇˆÔ¦Å”T>f2Z^TK°F”¨ójI14÷mļwa4bTÅ¡b2^¤>°&(áÎÂEŒ¤ˆ·ò\ÛCu¢)æ¶vQHúÖÀuã]³„5,]‘—õQâ{háPðkŽ˜ºèºCH‚üàÇàý‡Õ¿ê‡1Ôž*4"ó9öTŒêì2?ØÙÌ÷Aæ&f(œÇsX»6- T‡ºL7Ë(J½û¡Ž|ÔÎ ö‡²ÃÇ{J]t!ˆ@³(âÐ¥ ÷Ž=PIÄU7o•1°& áÎÂ¥…8ºÊ'šßù™åáâŒc %(7Ä?2 ´c%ÌS†rÁÑN¸%¢ÃÛ ¸Í +æëu—°'SšPÓüv·¯µÈ³,¿¦ÂÇJ^:·§f+»YîvÂVöšâÉ»k"&ýwÎmº£µ÷ç¼–Ü.ë’„ìIßÄG:JÉ^ÌNùÈüj@î} ?º¥ç/\iÁZUv iV(l¥[Tí4T/gY3$}úß¾<½[¶É‹ážŽ?û%T6™öËNÅ/×0¡Áò¼ì¯í]æÆpŸk„‰ˆÈ}0bo‹}`?ûÁÎŽà¾_Z1λýzehS,óÃ3¢U¾v`“k ì¾(óÂã4…&p¡Û3[Œm6ÕÁÂëÓœ a/77°Ù`gG@–ÄvñÊ÷·?ý8b¼ Ù¹ò¾)†*ŽNo¶oEÏnjոÙeØÃWP¹ôkQÂLoF;ÏÒÍýˆŒ6% )±tbŠ”Š—ؤX°³ðô Åa)Gf´‹ÌÎÜ*ÏæHÁÚ­ý5ÐpZ̳¶c^ +j1 kºÊ¡ÕÃð:cð-Ý»‘¢A A:ÞBdß|²ƒ]…›ÿ‰û²äYSÕù:ý0â}g«ô0±ð§ç§¥ʇWÎÖM Dîk÷K㪣e¢DSÝ`u–h4#—œ_ˆl†ž{Çt[µ?b†!Þ³D”p(‰·°Øäa°³#ˆÈ5òÞþOì™ú 1s³\×9bΈô"‰ñú™-ß:G4bñâÀ~ hƒZ¦Ø/Ž,ȹÌà>ŸDß}0Ûýzш5‰Ç¦ +?‘qsîâš´Îܘ™Âh$cþ…VHFüûŠ}óaŒ vN8ã/ÝýwÅ÷~ ->X¤eU×®2.KïÝÒÁ ƒ_eÊ þòÅ3»g-|Gÿx1ÆPÖkŽ¤ÐHð4û°Ð|ÎÐüËA62 +endstream +endobj +1359 0 obj << +/Type /Page +/Contents 1360 0 R +/Resources 1358 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 1285 0 R +>> endobj +1361 0 obj << +/D [1359 0 R /XYZ -16.307 900.716 null] +>> endobj +1362 0 obj << +/D [1359 0 R /XYZ 56.693 759.068 null] +>> endobj +1363 0 obj << +/D [1359 0 R /XYZ 65.161 752.393 null] +>> endobj +1364 0 obj << +/D [1359 0 R /XYZ 65.161 741.435 null] +>> endobj +1365 0 obj << +/D [1359 0 R /XYZ 56.693 694.144 null] +>> endobj +1366 0 obj << +/D [1359 0 R /XYZ 65.161 694.828 null] +>> endobj +1367 0 obj << +/D [1359 0 R /XYZ 56.693 647.538 null] +>> endobj +1368 0 obj << +/D [1359 0 R /XYZ 65.161 648.221 null] +>> endobj +1369 0 obj << +/D [1359 0 R /XYZ 56.693 600.931 null] +>> endobj +1370 0 obj << +/D [1359 0 R /XYZ 65.161 601.614 null] +>> endobj +1371 0 obj << +/D [1359 0 R /XYZ 56.693 554.324 null] +>> endobj +1372 0 obj << +/D [1359 0 R /XYZ 65.161 555.008 null] +>> endobj +1373 0 obj << +/D [1359 0 R /XYZ 56.693 507.717 null] +>> endobj +1374 0 obj << +/D [1359 0 R /XYZ 65.161 508.401 null] +>> endobj +158 0 obj << +/D [1359 0 R /XYZ 56.693 471.354 null] +>> endobj +1375 0 obj << +/D [1359 0 R /XYZ 56.693 443.873 null] +>> endobj +1376 0 obj << +/D [1359 0 R /XYZ 56.693 397.226 null] +>> endobj +1377 0 obj << +/D [1359 0 R /XYZ 65.161 397.91 null] +>> endobj +1378 0 obj << +/D [1359 0 R /XYZ 56.693 350.62 null] +>> endobj +1379 0 obj << +/D [1359 0 R /XYZ 65.161 351.303 null] +>> endobj +1380 0 obj << +/D [1359 0 R /XYZ 65.161 340.344 null] +>> endobj +1381 0 obj << +/D [1359 0 R /XYZ 65.161 329.385 null] +>> endobj +1382 0 obj << +/D [1359 0 R /XYZ 65.161 318.426 null] +>> endobj +1383 0 obj << +/D [1359 0 R /XYZ 65.161 307.468 null] +>> endobj +1384 0 obj << +/D [1359 0 R /XYZ 65.161 296.509 null] +>> endobj +1385 0 obj << +/D [1359 0 R /XYZ 65.161 285.55 null] +>> endobj +1386 0 obj << +/D [1359 0 R /XYZ 65.161 274.591 null] +>> endobj +1387 0 obj << +/D [1359 0 R /XYZ 65.161 263.632 null] +>> endobj +1388 0 obj << +/D [1359 0 R /XYZ 56.693 216.342 null] +>> endobj +1389 0 obj << +/D [1359 0 R /XYZ 65.161 217.025 null] +>> endobj +1390 0 obj << +/D [1359 0 R /XYZ 65.161 206.066 null] +>> endobj +1391 0 obj << +/D [1359 0 R /XYZ 56.693 158.776 null] +>> endobj +1392 0 obj << +/D [1359 0 R /XYZ 65.161 159.46 null] +>> endobj +1393 0 obj << +/D [1359 0 R /XYZ 65.161 148.501 null] +>> endobj +1394 0 obj << +/D [1359 0 R /XYZ 56.693 101.21 null] +>> endobj +1395 0 obj << +/D [1359 0 R /XYZ 65.161 101.894 null] +>> endobj +1358 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F95 923 0 R /F52 695 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1398 0 obj << +/Length 2360 +/Filter /FlateDecode +>> +stream +xÚÅ\[oÛ8~ϯf66,ï»tÚ ¶{)¶Ítæ±éXˆ,º’Ü$ûë÷H²ÛZ¶œ#ÓJ;2uxHžó«D£ÛˆF¿œ½¾>{q¥hdˆÑ\G׳Hs¢ã(a‚ˆ8ºžFÏß»ÌÙÒ]\rEÏÿí+W¶_g¾h¿Tóõó“×Þßµÿüú៿_¿…i.#F©–Ú‡ê1såܹª¬†ÙY”ÀìZÔ³K“˜'Ñ¥"&^ÏÏ 'ç/ÚÆu}ãÙÏ×gŸÎ§‹”&Úˆ(6ŒhÊ£Éâìãï4šÂoÀ‘&‰î›‘‹H1J¸Ðð=‹>œý献w‚öîȆ¶4„QÝòôçªábsÛ‹+Ò¬CÖ÷$Dê~h7Ð߸¢º¸Ô”Âòícå󗗌ÿUZÁn‡2k©Á>Õë_¶WçÂbŸHt½Âúº¢°_RGœ˜ÄD…‹fß.i‹Úþ«»ð„po&h ³zt(}E˜f]úŠ2ÃVaføö¸51Üœ€Ù†`qµ_Þ¯Ïë,7Œ F[KñOÓéÖñïÒ‰>6ç½°ÕdŽêsܸ4Ÿù­‘ÀÏ‹õ…Ý[ZÃRÆÛ% ó~¶¸[-‘´Ýb™ÙdPÃïç®@®n‘–ešßöðý´æqÀaB4¯ç³r('’±# ç_vU¤ÕÿZÌyël^`Ž6À†áãaŽN@µ„ s:ôÃ0'œY<æèD’„·Gúfnó[7íˆosÀ?ô«žÍ'®¬ÀRw¤þåË!ˆûçhÕÖïeì7ªèØÌõòdó½»u˜§W)Ù;l÷Ž{õ°ÈvØ?Úå¹æ—Õ?`‘JÇ”¨XŽ§NÛôÕ)˜Ùê ’è5ž^ÏS¤q¹½É°iYø¥CŠxÐàT]£Ô/r3¬ÏÒ©$àÜ/\^•#x'¦yýîMÙÕ?bUB¢ÁyM%¶éªD0³T6ÈPѪ„EžX汋¥!dé†7’î´ãTÃ"ÿpÀ¶àˆÎíg,¯'¶%A¦¤ÿªªHoV]Ÿ{€o¬k‡•ëçôµ$†¸þ¤áxfo\6È5æ`Qb3¢kÌ€·¶ÈÂV(«P‹iÂi20¯î=n`îîq?‹iÂS7³«¬jÄ 7Ãg›­°`Wz,ØZ$Òå«èŠCîoé&Uêó·OëHCMÆ·é +y0³¤œ*Â¥YÛæ|:Æ™}éÚsh}Ã'é¬Ý -ä4-kÿw•–óØö€&µpýÁVi9KÝP‰S†JÇCÕý0‰ g/qÊHÂ×wålµÂæÖÞ»Fö…Û?2% • +ëK¨$!”‰çô%T½üäÄ©ýœªeÞ8j,Óž…R üzÄD¿’’°¡£)Á6ý@%fv€Ș(³Nô¿ñùçú„qñü*o,`Ç.¤À>Û4«Ó {²>²Tî‹ ¡"ÜOݦJWíKB ÊöŽ[a½º¬xZwmi »j+ ÎÒŒ§&ÛôÕ$˜Ùj"<Å4±®ç¯6C{+dŽ›ÆKK_–¦Ç¹JP"ž5Æ­çP‚ïú41Ñaù°)’ ¬W—°îÐÓ±pfñ:& ɿĹX¯~–>`ƒÆ6÷úXîõï8c\+}Ø:ôÔb~d±2œª—XQŒhÆxyÜý@I e¶_.b¸”¬³¶ŒÞú÷®ö`°¢³€€ÌÞ9$HOüb‘b‹E,u\éîMÅűˆ.µ$ñWH?½4mÓ”¦Pfû¥ICÄÅe+Mü iúïrjÑ„vá6]Ȧ´šÛ~KüËzy–æwKßhY]ìñÂñ’û©E›O滕ôCM9{¸yb¥Ç'ŸVE%H×vÖ¡¨ŠÁÌpTL¨^G£¯\>­\±8­c R‚Sl0»°6å‰M–I48í`ÂÊ r1¹ÇÚ×¼ryu´S”ÄIòœ1‹äq“ ÿÞ1 ›&Ùˆ1 P¤Éx9äý@À +fv`ÝMëø€eÒ5GÁ‰¦9 ºUlr—ûûÌMoÇ膹©›âO rK[TÊ%MÿÌ|XKÐi̲ðWîXš'YM¯7´C?LÏ™Åë™0æksp™.ÒÌÙãiU´7Ø})í'dí§,SñîS4ýåÒÙâ´ÍJ³Âcµ£nïsEO×Z/³î=5Ij©/1Ò¡¨&ÁÌP“œ Å7EôÇ¡‚tO”HêÏgÍ eˆ'î‰òµû;Àóp‰Ø%°>^¤¸M>PÐCY çU볿JŽ+²|ÉéR–Ä,>ŒSÝJÞá|Cæ'60ÞïKÅ_Ö¢^¬¡)Э®·`¾ÜC5 ®{8:®B™°gÅƉVâ;c å$rPíCY õ2!BŸÊ©`Z­äa­]xtõѯªåª:mVxâ—Ez;ßÛËøç~÷ã±fµ¿^jíØÛzk‘Ñú)Ñ£ñErBͳúœµüÎÏqpZGN#:Ì€&%ã•š;ôÃ&œÙœê8Ô±NÑ6“¡ŸÄœ¥·èÞhÐð›Û®ÓUù» ƒ(U:ÉF`y'¹=ox•ÂÄ£á ¯¥6Væ[Àa*!›zª&ÝÞ‘KFaMWïÖï¦ù°htÉ%œožv›÷àd™¿àêü¾ŸæÒ¤yVýžœ¹½àôüóSçë;nX¸æÛÂN××*ÿõe:ÍÜÀê×¹Y"ÁÕ×èk_ÒáI"¥Ú iê) Åi×yS ,¥ý^´ï÷!Û;qÉ 3g°hSø½M‹;Ûâó?|éî6è<óšÕ&v@"i¡ÆÃç$/©´M> ƒYŃ³[7¶ùïù$[•)ö-5ØgÕ¿{ñ•Â{lF¿LË,¥ƒAªo|—cK.û@>°â‹ßrm¥¯‹t¶x<ѧô( ;ïú’”PmŽyÕ×ÿ¥šfž +endstream +endobj +1397 0 obj << +/Type /Page +/Contents 1398 0 R +/Resources 1396 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 1433 0 R +>> endobj +1399 0 obj << +/D [1397 0 R /XYZ -11.232 900.716 null] +>> endobj +1400 0 obj << +/D [1397 0 R /XYZ 56.693 741.791 null] +>> endobj +1401 0 obj << +/D [1397 0 R /XYZ 65.161 742.474 null] +>> endobj +1402 0 obj << +/D [1397 0 R /XYZ 56.693 696.338 null] +>> endobj +1403 0 obj << +/D [1397 0 R /XYZ 65.161 695.779 null] +>> endobj +1404 0 obj << +/D [1397 0 R /XYZ 65.161 684.82 null] +>> endobj +1405 0 obj << +/D [1397 0 R /XYZ 65.161 673.861 null] +>> endobj +1406 0 obj << +/D [1397 0 R /XYZ 56.693 626.483 null] +>> endobj +1407 0 obj << +/D [1397 0 R /XYZ 65.161 627.167 null] +>> endobj +1408 0 obj << +/D [1397 0 R /XYZ 65.161 616.208 null] +>> endobj +1409 0 obj << +/D [1397 0 R /XYZ 65.161 605.249 null] +>> endobj +1410 0 obj << +/D [1397 0 R /XYZ 56.693 557.871 null] +>> endobj +1411 0 obj << +/D [1397 0 R /XYZ 65.161 558.554 null] +>> endobj +1412 0 obj << +/D [1397 0 R /XYZ 65.161 547.595 null] +>> endobj +1413 0 obj << +/D [1397 0 R /XYZ 56.693 501.459 null] +>> endobj +1414 0 obj << +/D [1397 0 R /XYZ 65.161 500.9 null] +>> endobj +1415 0 obj << +/D [1397 0 R /XYZ 65.161 489.942 null] +>> endobj +1416 0 obj << +/D [1397 0 R /XYZ 65.161 478.983 null] +>> endobj +1417 0 obj << +/D [1397 0 R /XYZ 65.161 468.024 null] +>> endobj +1418 0 obj << +/D [1397 0 R /XYZ 56.693 421.887 null] +>> endobj +1419 0 obj << +/D [1397 0 R /XYZ 65.161 421.329 null] +>> endobj +1420 0 obj << +/D [1397 0 R /XYZ 65.161 410.37 null] +>> endobj +1421 0 obj << +/D [1397 0 R /XYZ 65.161 399.411 null] +>> endobj +1422 0 obj << +/D [1397 0 R /XYZ 56.693 352.033 null] +>> endobj +1423 0 obj << +/D [1397 0 R /XYZ 65.161 352.716 null] +>> endobj +1424 0 obj << +/D [1397 0 R /XYZ 56.693 305.338 null] +>> endobj +1425 0 obj << +/D [1397 0 R /XYZ 65.161 306.022 null] +>> endobj +1426 0 obj << +/D [1397 0 R /XYZ 56.693 258.643 null] +>> endobj +1427 0 obj << +/D [1397 0 R /XYZ 65.161 259.327 null] +>> endobj +1428 0 obj << +/D [1397 0 R /XYZ 56.693 211.949 null] +>> endobj +1429 0 obj << +/D [1397 0 R /XYZ 65.161 212.632 null] +>> endobj +162 0 obj << +/D [1397 0 R /XYZ 56.693 175.544 null] +>> endobj +1430 0 obj << +/D [1397 0 R /XYZ 56.693 148.033 null] +>> endobj +1431 0 obj << +/D [1397 0 R /XYZ 56.693 101.24 null] +>> endobj +1432 0 obj << +/D [1397 0 R /XYZ 65.161 101.923 null] +>> endobj +1396 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F52 695 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1436 0 obj << +/Length 1939 +/Filter /FlateDecode +>> +stream +xÚí\[sÛ6~÷¯àÌv¦ÉÌÁ`vúÐ˺ÝNoÛøagÒ>P$³¡H•¤b§¿¾‡¤ÔF”儺Mûà‘L‚ïù€MV M>¿øäúâÙ•¢IJRÍur½L4'Ú$– "Lr½H^>ùÞ.kÜÓK®è“oªÖ5Ã×eU_Ú›ÝÉϪù'Uõjøç/¾zúãõ—ÐÍ%c$Uj°ö¢}S¸æƹ¶éNCï,±Ð»]ïRb¸M.IÍ®–‚AcŸ<>×Ý…ÿ¾¾øù‚yš°Di¢S‘˜”My2__¼ü‘& 8ˆLmrÛ·\'ŠQÂ…†ïEòââ¿t7ôäˆìmË”0ªL?p®zûËž]A“þ>dw%R[81 `5suûôRS +·Ÿ½i«òùÓKÆi7†Fîšb°£Ô™ë>>?¼?˜fxb`¢»¿î¸¢0ZR'œ¤6Mj—,ß¾¡k÷=î€[¬Üw0f]ëPûŠ0ÍÆöeÄÀ@azx{²5Iy:ØÞ`½J†/ßïfÿ`&÷À#¨ŸÐ‹ƒÉ?¶“¼ìg»Sªaénq 0¸†î®ue“WeƒD­]³ÉæHÀ 7/²:k¡ƒƒ `tþ¹;pâʼÄõ0ïÖTË«o¿;løn1C@Áñh~h?æÁ`=hÎ)QL 4ÿBHjnËy‹'\V#§w۸Řc»`2Ù¯ö æ‰Ï“~BƒœOí'êuVxx +m…Žç(´·JY4ì‡)(,^AÚ¢Á¼Ÿ£h¶›Msô5®áfu›/*ê^œT¾‹j>ƒÀØG¿B%TDsA”Ññ|h?PÀÁ`=Ì5±Ý‘nN¯ò;‡•ðf[çÕéýæEÕäå +×øç-d]ÓʸÈK7Reœï°íbkÏ)N•ÈNe4qþkhmÛ*_Ü]¾ªwÏq+ ƒÂX<ƒ*ˆQ<šŒGöÃd/ce)¡;¦|Z•¯Ú»îÂرϺ<™Ö<É^gy‘Í +7±ÿ.«…ó€Ñ¸vÜúª(ü±‡S²¶BG➉–‚Ù0©ˆGÏCûô ëAOjÙÀOtöÿûmé9 +¦îcÄ}"^"“±~“ÕÙc"Ë+®iZ*ø´TžÕ{‰”ì3/çõYö:_ .èSDWï]×]í–>Þˆ&n#z#ÖÝAOî‡öå ÖCvÅãìÕ®iÐ…¼:Æ èú]¶lÒ u$õ¼½q%ÞfÓíŒåûч-O$“ã+ž?ìÛ`…rÖÝn²Õ¢áužôÜH* ÿÝ£¾[rL¯Î¹ÊÈTª³OñuLûËp¿_º¬l~’7¹Ç:#­ ŒFܦ€9 LÆÛ¦Ù[gÂÁâ×i‘‚{'¯á櫉ƒÜººõˆqo\¾ºy´Ó—u1uÖr°”špɦôú«¢jš¬~ã£H(LQ‘\/ =4¨ÇP¨rä–hº+&þ§—[ö[fY‘ÿ‚•æ¦ËG·Ç;mÁÑsO£Æa†rág6+šÊ3[”% ÁÎ)O‘¦D23mE©OuÈÝ­›í +GÃW¶»ÿoÚuÑΊ·JKm—HyZXÀ­dó?>… TÆ úGöé ÖƒRBÁwi€+ÜÚ•m3í쟿v %Tõ}01ñ+*omI"ÃD|E…YM8‹·Ÿ3²¦´p°x¥1›µ¸ýÞ‚ôÊÌЫ²W”¶úžz$!á*ÞæÖÈ~ N‚ÁzèÄX¢¤ú‹y$ø#\§çôHL¦Dìácú§h°7.EÊ#:$ØE¼rÍÈ~ Ð‚ÁzMÒ}y•ß!¯êWèw «%v3håóÎÔ:kÐÂnÙNí玞f}hQXåå£_¥f\)Ïú¾ £œ(1õƒèïz¶îð'uv½Ý÷cA÷a™ôý­ _²SƒR +endstream +endobj +1435 0 obj << +/Type /Page +/Contents 1436 0 R +/Resources 1434 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 1433 0 R +>> endobj +1437 0 obj << +/D [1435 0 R /XYZ -16.307 900.716 null] +>> endobj +1438 0 obj << +/D [1435 0 R /XYZ 56.693 741.747 null] +>> endobj +1439 0 obj << +/D [1435 0 R /XYZ 65.161 742.431 null] +>> endobj +1440 0 obj << +/D [1435 0 R /XYZ 65.161 731.472 null] +>> endobj +1441 0 obj << +/D [1435 0 R /XYZ 56.693 683.964 null] +>> endobj +1442 0 obj << +/D [1435 0 R /XYZ 65.161 684.647 null] +>> endobj +1443 0 obj << +/D [1435 0 R /XYZ 56.693 637.14 null] +>> endobj +1444 0 obj << +/D [1435 0 R /XYZ 65.161 637.823 null] +>> endobj +1445 0 obj << +/D [1435 0 R /XYZ 56.693 590.315 null] +>> endobj +1446 0 obj << +/D [1435 0 R /XYZ 65.161 590.999 null] +>> endobj +1447 0 obj << +/D [1435 0 R /XYZ 65.161 580.04 null] +>> endobj +1448 0 obj << +/D [1435 0 R /XYZ 56.693 533.774 null] +>> endobj +1449 0 obj << +/D [1435 0 R /XYZ 65.161 533.215 null] +>> endobj +1450 0 obj << +/D [1435 0 R /XYZ 56.693 485.708 null] +>> endobj +1451 0 obj << +/D [1435 0 R /XYZ 65.161 486.391 null] +>> endobj +1452 0 obj << +/D [1435 0 R /XYZ 56.693 438.883 null] +>> endobj +1453 0 obj << +/D [1435 0 R /XYZ 65.161 439.567 null] +>> endobj +1454 0 obj << +/D [1435 0 R /XYZ 56.693 392.059 null] +>> endobj +1455 0 obj << +/D [1435 0 R /XYZ 65.161 392.742 null] +>> endobj +1456 0 obj << +/D [1435 0 R /XYZ 65.161 381.783 null] +>> endobj +1457 0 obj << +/D [1435 0 R /XYZ 65.161 370.824 null] +>> endobj +1458 0 obj << +/D [1435 0 R /XYZ 65.161 359.865 null] +>> endobj +1459 0 obj << +/D [1435 0 R /XYZ 65.161 348.907 null] +>> endobj +1460 0 obj << +/D [1435 0 R /XYZ 65.161 337.948 null] +>> endobj +1461 0 obj << +/D [1435 0 R /XYZ 65.161 326.989 null] +>> endobj +1462 0 obj << +/D [1435 0 R /XYZ 65.161 316.03 null] +>> endobj +1463 0 obj << +/D [1435 0 R /XYZ 65.161 305.071 null] +>> endobj +1464 0 obj << +/D [1435 0 R /XYZ 56.693 257.563 null] +>> endobj +1465 0 obj << +/D [1435 0 R /XYZ 65.161 258.246 null] +>> endobj +1466 0 obj << +/D [1435 0 R /XYZ 65.161 247.288 null] +>> endobj +1467 0 obj << +/D [1435 0 R /XYZ 56.693 199.78 null] +>> endobj +1468 0 obj << +/D [1435 0 R /XYZ 65.161 200.463 null] +>> endobj +1469 0 obj << +/D [1435 0 R /XYZ 65.161 189.504 null] +>> endobj +1470 0 obj << +/D [1435 0 R /XYZ 56.693 141.996 null] +>> endobj +1471 0 obj << +/D [1435 0 R /XYZ 65.161 142.68 null] +>> endobj +1434 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1474 0 obj << +/Length 2342 +/Filter /FlateDecode +>> +stream +xÚí\[oã¸~ϯ¶Í G$EJÚ¢ݶÙnQtÛ$E˜ÝÙ¦c!²èé\úë{$˳±;‡¦h À>Å‘éÃ#ê|ß¹‘Š£û(Ž¾¿øîîâ㵈£œä’ÉènIFde”žFw³èóåªTaÔ‡+&âËh«Ìæã\7›vÑùg=ýNë‡Í?Ÿnÿþá绿Á4W”’\ˆ´[ûR)³PÊšök˜FÌ.y;{"S’²,º$OûùY Óìòãæe²ýáÅ_î.¾\PG4’ÈœGiN‰ŒY4]^|þ9Žfð(@’<‹žº‘ËHИ0.ásÝ^üë"îW"ÛíŸï_I†õ )‹Ò$'4–­äöºˆAÏDFŒäY5*š…€g„&év‚`ÚŽö•/•t(_Ä”¤2CÍðz™%ÉY>‚²Àæ>Ú|¸é-ag Ig‰½â % ï­ç³™šuÿ°¤èó•ŒãË7¬VO¸«¢)–ʪfg8èô»þÂßMË¢y0Ãß‘ƒ¿»œêª*V€9·©ì¢°¸›™êÚ6º2¸Ñ-ÀQ˺´eQá¤\=YÑíCÙP˜æ/f—d92‡áÅý'q?*{5*% €¶sµ™tÇÒwèi‹q–šeÇa3Ôx ãßïã~wÎC¸ÇJýÊAnÅr u)‰ào*7ÏÁ6JáQÖªٶÞ&ŠƒÃ…—Ðt=\ƒ«ÃLó_ÕhœÜÇ¢ZW·ûâ§Xć'@/ÛLÍ‹ue‡ºƒtúíéºzùZ½rXÄJ=ª]Òr +$MiN¡’0d°¸aW¾gÜà­,‚2Aâ ˜Ó>†|Û †Zƒ5ÚÒ¬ªâ“ôþq`®ï³Ô`¸ÍSyB@€¼§…®°Ð’¬·×v|8¥9áÙ )3‹ xŒaéy]üΔ£yø7ò:í|´qF„È6K~”Á¾[”#›L¹\Uj©j‹t›£^ÿøÏ·|'¬Ôa·òÉ‘%þTi£wz}ó–:¿¡iÎ8“m쌰ŒúdÅþî&ú_¦p‰ò¸Œ‰¡ßݱ*ˆ³-‚oôD5öCw£·¶x±ºþöÃÆ’l1©y6Õï7_¯Êöä"È4§ÆÕ¤È ƒ +åâòý\¼¿²øÒ€„‚}- óÎõj¥;2Àg“92nô“Cl¹Påý©ìªÑSeLYßcÃc›õÔ–û)Ã;EU>`ÃtM¢¬±+½°Ëê7¾Và–ʳRç$Óq)«*5.,ÅÂh¥('LdáXjW¾'Ky+ëÀRôˆDþŸ±ÔƒR.)°Õ÷ªMRÎKTøyÊðpÆûZº§éz*ê`¸ˆ¬ç-ŠKlVÜrþÁõT™Sé\ä9áô¬¨HáA$,÷è¤ÒÓz2B „ŠÖoæá‚Ð|?Œø+‹G‰€€W@”Þe÷Ýê¬#¹‹DÎE8ãÝ•ïi¼ÞÊ:o’Éúlz©±ß±“Á:ƒ‡ñ݆UKl)·žáÛ6§»¡œrrÖ¬BP¸”faÝP×Ë"ÏOj²s‚ì´Û-^·ÇöKIì äûAÛ_YhCœ(·ý´_Bo‡x,š²­šíöøΫš¥Ãpp%+°Õ[Ö´,±u‰VeãXYa}e£¾¬ÕÞ +nŠ±ÄÑ\fÒU$à’\“ˆ’”—uUÖÊ!NdDÃà€Ýp)â@¾'Ñx+‹'š¤µÚÀ? C8ÓµZ˜àìáÁ…*š¦¨ï±ýÊf†…-¶µy vˆ,C4x^@³´}Æãú¹Qs8ÓÌ·LûœA"§áö[ä{ÂÙ[Y8ƒ\÷û-ÿ +á3vcÀ¼lŒÝóï#ä÷•6/ÛGXêÙýá›# ì”3ƒÆ|œìÆœá1Ï3 +—Æ…|÷ÜŠæåU>±e>kÿÏ\k[këâôyÊ€%h8–à’ðX0–È÷c eñ,Á!ÜyÞ;ýí¶‰³ù~ÿNHgœ»• ]EØŠ-*ƒLE°ãìB!w9N $®Ê€k£.È÷ă·²x€€»½ÐÂAãK¥öe…Mm±!g‹téu¢L9CkÐÞבþ}ëI Œ‘ge9KH>¶cûtPe]<„‡> endobj +1475 0 obj << +/D [1473 0 R /XYZ -11.232 900.716 null] +>> endobj +1476 0 obj << +/D [1473 0 R /XYZ 56.693 759.068 null] +>> endobj +1477 0 obj << +/D [1473 0 R /XYZ 65.161 752.393 null] +>> endobj +1478 0 obj << +/D [1473 0 R /XYZ 56.693 672.828 null] +>> endobj +1479 0 obj << +/D [1473 0 R /XYZ 65.161 673.511 null] +>> endobj +1480 0 obj << +/D [1473 0 R /XYZ 56.693 626.822 null] +>> endobj +1481 0 obj << +/D [1473 0 R /XYZ 65.161 627.505 null] +>> endobj +1482 0 obj << +/D [1473 0 R /XYZ 65.161 616.546 null] +>> endobj +1483 0 obj << +/D [1473 0 R /XYZ 56.693 569.857 null] +>> endobj +1484 0 obj << +/D [1473 0 R /XYZ 65.161 570.54 null] +>> endobj +1485 0 obj << +/D [1473 0 R /XYZ 65.161 559.581 null] +>> endobj +1486 0 obj << +/D [1473 0 R /XYZ 56.693 512.892 null] +>> endobj +1487 0 obj << +/D [1473 0 R /XYZ 65.161 513.576 null] +>> endobj +1488 0 obj << +/D [1473 0 R /XYZ 56.693 466.886 null] +>> endobj +1489 0 obj << +/D [1473 0 R /XYZ 65.161 467.57 null] +>> endobj +1490 0 obj << +/D [1473 0 R /XYZ 56.693 420.881 null] +>> endobj +1491 0 obj << +/D [1473 0 R /XYZ 65.161 421.564 null] +>> endobj +1492 0 obj << +/D [1473 0 R /XYZ 56.693 374.875 null] +>> endobj +1493 0 obj << +/D [1473 0 R /XYZ 65.161 375.558 null] +>> endobj +1494 0 obj << +/D [1473 0 R /XYZ 65.161 364.599 null] +>> endobj +1495 0 obj << +/D [1473 0 R /XYZ 56.693 317.91 null] +>> endobj +1496 0 obj << +/D [1473 0 R /XYZ 65.161 318.594 null] +>> endobj +1497 0 obj << +/D [1473 0 R /XYZ 56.693 260.945 null] +>> endobj +1498 0 obj << +/D [1473 0 R /XYZ 65.161 261.629 null] +>> endobj +1499 0 obj << +/D [1473 0 R /XYZ 65.161 250.67 null] +>> endobj +1500 0 obj << +/D [1473 0 R /XYZ 56.693 203.981 null] +>> endobj +1501 0 obj << +/D [1473 0 R /XYZ 65.161 204.664 null] +>> endobj +1502 0 obj << +/D [1473 0 R /XYZ 56.693 157.975 null] +>> endobj +1503 0 obj << +/D [1473 0 R /XYZ 65.161 158.658 null] +>> endobj +1504 0 obj << +/D [1473 0 R /XYZ 56.693 111.969 null] +>> endobj +1505 0 obj << +/D [1473 0 R /XYZ 65.161 112.652 null] +>> endobj +1506 0 obj << +/D [1473 0 R /XYZ 65.161 101.694 null] +>> endobj +1472 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F95 923 0 R /F98 924 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1509 0 obj << +/Length 2160 +/Filter /FlateDecode +>> +stream +xÚÅ\ßÛ¸~ß¿B¸>4º Sº¢@s½æp‡öŠ^ö¡@rZ‹^ ‘DE’³vÑ?¾£µ]i×»CSrž,ËÔpHÎ7óÍ2n"ýtñÃÕÅ›wŠF I4×ÑÕ2ÒœhÅLa¢«,úðê7[Ø´µ¯/¹¢¯~umw—K×ì.ºÕþÇÝâç>í¾üçý?^ÿ~õ tsÉI”ÚI{ßm Û®¬íÚþgèE1ô®E߻ԆG—Š$fß?g ÐįÞì>×ýƒ¿ºø|Á@êýe<3C¸2óÁm(?nÁÊzÀS¢¤ÜÁ­r·ÈU]wõziv½J‘fúó¾tS«pçI¬º&·ÈIX`um‘×"û†`h[-,³/Á†M& »›G>ò ÜD2søgºnòî¿;Šð‹M«öž@´ÛÊÕ|AÇ E¬æã ÚNù||a$?Ì…+‹w`Ú³½{›eX#/]! ¡Î–u‘vHl.±QϹE‘Žt€aüïxäs.¯€(,Ó…õzÊn¶îrW +m­¢î¡=½å`°²Ò°¿®Å†„ëõÍh1înÿi.ÀMáFe’³ú\! 4óälØasÐ!Ñ3z\ë*棌#ù¬¬‡Á3MW_=”i·@6uód“y…8cïû—ïŽ;íãö—Ç›?fmß=Ož;$y^æ› ‡Æå*áhF˳rHŠ’oëÏ”1„êýYï*ÏŸä‡ù³peñþL鄈dïÏ~ŦÀÐŒ³Ïi•¥}R¹ÅúÈ¢Àµ\·›'#éµ-f(Ta}iŠœÒµm‘^aÙÄkQH”æHy«´Å² {j®¥|ª³RzÅÁ ÒxÚ˜W°¢Ö'2Иƒ ÝÙŒ€Êl°²€e )õ%õØ],ÛÚ.òeŽ­á,‡äèͳiƒõ®>q9èóÚa$à +Ƚ®U“bÃÿ¸œþ"^ebˆ¼wT“Ãi$? NáÊzÀ‰Rð\æküÛ~£]‚§rÈ?Ï!çß!‰$Òœ3²IÈfÉ7Mî¤âãšT`o|F å1XY<¥’„2í×Úu]»fj÷>}Êø„sGlšæe6©çSiµXŠy(;5òùø‘3_ac(>ÐôCUõ°|)UûtµÊ‘iKÚ¶ëÒ¶× Òu·ÂÂä@[,i)m·Ê«l-Ý´ÇkÛŸ«C*’W£M9„éò˜ÄŒÍg»CùƬ¬‡õ +Nh{öµ&¤ådwCŸáFèúÀ‹=•åú¼W@mÄÇ•rEbÎÏÊÏ(H7lZ~Ö¹…= ¸J‘ÌGÏD ÖÏó‘ü0˜‡+‹‡¹ˆzów§n4—“+{‹%f ¿íÎöT$ +“€<+|r9ñIª.ï +[§7öÁyì…+kW£~p/Ë¿ämF§¸ï% &S“qôCTûH)MýzÅvWÈUš:§g5Ÿcˆô ¡ªz¸-bïC]‹ñ{p†µ‚KÓŧÊÝ6»ña!XuÝ¿2qm0mŽ1…c\yR1ä´ØƒûnaÛÖúÿ\‘̇òq¬¬и!Úì‹cm^æEÚÛi!èÍé3g=ø»¿}ððûçi]Û´ÁæÏè½ ,:Ê´ë¬wée9~&$^óÁd(?&ÁÊzÀ„iós‡’´ÚúÚýé$Æ#¥<' ä±!*áß2㜒fó‘.&dè|v>’fçáÊâíœk°‡äð~ê-z{–¼(8Æxì±›l j·xüØ"híêu?OÙ‰ý¿ 2¥Ub> åb XY (H¼Å¾…>†¥µmʼëð MÕ—óZætçpߧåÔ类 (Âz=.%1±œÏ2‡ò-3XYË”1¡‚ßÑYæ›àWRŒG'Ï3N´%½û×éo™zÙ }CÄ›<1X4)§>E—YŸÿ.àóÑ'–€ªù:’Ðpe= +š +É=«Ùýú¢“V4ÈZkÓ¢uù‰G¿žÙñER¢´±è×æm7.y %ŠP­Î‰tè–p6u±¼?—Q’Í­½ÆŽ>y<'Ö˜4ŸëCùXVu¦$ÑŒr¥Ò}Árºl]}aÀ>j?REïA—®rmýÄ»¿Çù xŒªóiž–yñè/N@-†F#Ð!΋F®ˆŒ'Ž»÷`Üo@ín|õS/OSD)>#8©$*™œCùà VÖœ0ÕqÌ> endobj +1510 0 obj << +/D [1508 0 R /XYZ -16.307 900.716 null] +>> endobj +1511 0 obj << +/D [1508 0 R /XYZ 56.693 741.779 null] +>> endobj +1512 0 obj << +/D [1508 0 R /XYZ 65.161 742.462 null] +>> endobj +1513 0 obj << +/D [1508 0 R /XYZ 65.161 731.503 null] +>> endobj +1514 0 obj << +/D [1508 0 R /XYZ 56.693 684.09 null] +>> endobj +1515 0 obj << +/D [1508 0 R /XYZ 65.161 684.773 null] +>> endobj +1516 0 obj << +/D [1508 0 R /XYZ 65.161 673.814 null] +>> endobj +1517 0 obj << +/D [1508 0 R /XYZ 56.693 626.4 null] +>> endobj +1518 0 obj << +/D [1508 0 R /XYZ 65.161 627.084 null] +>> endobj +1519 0 obj << +/D [1508 0 R /XYZ 56.693 579.67 null] +>> endobj +1520 0 obj << +/D [1508 0 R /XYZ 65.161 580.354 null] +>> endobj +1521 0 obj << +/D [1508 0 R /XYZ 65.161 569.395 null] +>> endobj +1522 0 obj << +/D [1508 0 R /XYZ 56.693 521.981 null] +>> endobj +1523 0 obj << +/D [1508 0 R /XYZ 65.161 522.664 null] +>> endobj +1524 0 obj << +/D [1508 0 R /XYZ 65.161 511.705 null] +>> endobj +1525 0 obj << +/D [1508 0 R /XYZ 56.693 464.292 null] +>> endobj +1526 0 obj << +/D [1508 0 R /XYZ 65.161 464.975 null] +>> endobj +1527 0 obj << +/D [1508 0 R /XYZ 65.161 454.016 null] +>> endobj +1528 0 obj << +/D [1508 0 R /XYZ 65.161 443.057 null] +>> endobj +1529 0 obj << +/D [1508 0 R /XYZ 56.693 395.644 null] +>> endobj +1530 0 obj << +/D [1508 0 R /XYZ 65.161 396.327 null] +>> endobj +1531 0 obj << +/D [1508 0 R /XYZ 56.693 348.913 null] +>> endobj +1532 0 obj << +/D [1508 0 R /XYZ 65.161 349.597 null] +>> endobj +1533 0 obj << +/D [1508 0 R /XYZ 65.161 338.638 null] +>> endobj +1534 0 obj << +/D [1508 0 R /XYZ 65.161 327.679 null] +>> endobj +1535 0 obj << +/D [1508 0 R /XYZ 56.693 280.265 null] +>> endobj +1536 0 obj << +/D [1508 0 R /XYZ 65.161 280.949 null] +>> endobj +1537 0 obj << +/D [1508 0 R /XYZ 65.161 269.99 null] +>> endobj +1538 0 obj << +/D [1508 0 R /XYZ 65.161 259.031 null] +>> endobj +1539 0 obj << +/D [1508 0 R /XYZ 56.693 211.617 null] +>> endobj +1540 0 obj << +/D [1508 0 R /XYZ 65.161 212.301 null] +>> endobj +1541 0 obj << +/D [1508 0 R /XYZ 56.693 164.887 null] +>> endobj +1542 0 obj << +/D [1508 0 R /XYZ 65.161 165.57 null] +>> endobj +1543 0 obj << +/D [1508 0 R /XYZ 56.693 118.157 null] +>> endobj +1544 0 obj << +/D [1508 0 R /XYZ 65.161 118.84 null] +>> endobj +1507 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F95 923 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1547 0 obj << +/Length 2326 +/Filter /FlateDecode +>> +stream +xÚÍ\[Û6~Ÿ_!tèè0$Åk lÚ&-ºÉv7ã‡ih›¶…‘%G’33»è_Ê—v,=‡¦èÉ“/¢¨ó}çF'Ó'?\|;¸xù–ãD#-¨H“DP$d¢HŠR™ ÆÉÇË6·¦¶/®(Ç—ÿ*[¯ßNÊjý¦™m.~_Ž¾-Ë›õ‡_®ß½ømð“›æŠ¤9_K»nîs[Ϭmêö²›$ÊÍ.Òvv&$’T%Wi¹™ŸR'PªË—ëBEûË7ƒ‹OÄ‰Ç I¸@B§‰Ô L“Ñüâão8»kNÄ´JnW#ç 'ÑT¸÷yr}ñŸ ¼Y ìTl߶/?<ìÖƒHšH¦Á¢•Ü~ϱӓ‰„"­tRÙdrPt‚T!Âäv‚µ`ÒŽ•Ï¤+Ÿc‚¤P .³@šê”] ¬¦Éú͇%ºG¸²¶²Ä⌠–n¬çõx¼zø‡å$¯Æ—ó²(ë…ÙáNÚ|±ÿ»Ë϶š&›{üdRÇðÛlÜÌ`7°0•™Ã†6%l\½\,ʪ þ‡‡®e¼§ªœº»Ê³ºÉŠéuÛ±—ÿg\…@ñÀë>ny…p„õÚ¥”ï¨Þ1[…˜ÃÞpg9´nÅWwݘû¦,^½¸"Ô}ÜZº«sècFã ¡9âšDã Žü0 +WÎAB+¤äÆþ½l‚Íýào2 ”&e>¯ÓÎ0/G7ÝñW‡Ç«™¬°L—Û J·Uöò¨2/Ç{þ÷¯Ï+áÍ°;ø+ …bH¤i<¤ìÊDJ°²HQÒ͹ÊíÌ­¹±w@L³ÊŽš êq²6®Ê¦³¦_o›Û PâЎ̲¶°Á&Ͻب¬)¦K3µåz2u鋇ƒ]ù8VÖÒÍé^W@0•=Ñfžà¯Òcð¾‰{Ä\Bb$?gÌ%¸›’Ègº£K1êJ "DÅÃЮü@ +ë¡”!ærn¿ÌÏ+ËikÏ–Õ£ÊB=¤)Æ}äXßä‡õrdwè1‡Ë®ðÕס˜P™ +0±P…ˆ³«s Vo©¹/b¹«ìăT¸ÖˆST¸Rˆ‹xjG~©„+ '—2"Å7OÿmvfíDË”+~U­mô[¶Å¡¾s³V˺-Ά%bgŽºr d¯QYµñ}~j ââÆø|Âeñ­›òâ“÷féâÿ® å'kŠúOBYåì>ŒÂÛ€3bš30Ž¦tä2J°²ŒÂ4¢úϵ}Ö@ÅŒnŠòÖnjç¶hê~ËN¦j²QnOFgÊf:ž íÊ´¡`e=l(U(M7rícÐ'7lsÇöòp¶è< PÊÎMVÔý:¸!´²7/kt™8««h;¡ÛòØs…ž8EŒG =™¦ˆéx¡gG~ÈÕ…ƒœiŽ¤ê-ô”J!‡žY±‰¨€±4¨ƒlÁŽ«.ç@ЗyVÜÔ§¢ž)—zá³FˆLhÄRÑ/ì'¥è™ÀHéˆE,æ‚ Æ‹;òA¬¬èyŠ(õ-bÅo”í÷¾ŽÕŽó²ƒ~ÜZh;£vTfûf’Í%à*¼ý\‚Ùº.«:B"\Ãg.'Ò쬥6FRªçR›Y6eSŽZöûÛz@[ì¬|žæe]›êþÁWk¶Ü|hÌ0·>/ÚΗm– F%.bg$"£:‰©¢ñuW~ £+ëÁ¨N®_DW >Mï3¯ç~†•ž¿bŽ=;ƒ}µki:uÈSq+ì@)¹\6‹esr̘j×æîÈÃb¸²p,¦Z#I6ÿÝÌShõ++êÆ8—ô‘%°‚>7Õ´c<žö\»8 Âÿëð×ÇwµßKjòlê3Þ-wµ‡Äß¡PÜyg»ò¬¬”B’o*:à&­·•FØŸô…š©-öêy¿£ãÎb0+¡»§ú¹^$[õ„¢áeW~ ^‚•õÀ‹tq²»°ÂËj{ íâm|#RÄ#éÈL°²€qsªíñ—©-à•×{lå›ù^euáÈóí'óùú›§Ò€¦*ÇË<¨|ì6Ü£f(=>ÔkšnÂù´esŠ¸ŠWíÈ´ì`e=,›s¤ä¦2zÞ´Ÿ2Ôf~¼wž4•iÄõY+|)uS¦=WøVqº»µÃ? +tív{Öî酠XœK&pÄóù VÖÔíÁaêYœ3MSeC´y`º¶Ð½-àjž8wª€c·m™Ú2­À±.4ÛÉédá@ÙYû T9ƒ”â # *Õª;,¨ˆÉx±mG~Y„+ ' *±Ó”÷ÓE¡g§®Á´âW£>ÎT0ÄÔYOES榤њ{ÐOùªÇ¾”9dÄkÄuäÂ7XYøR…hOÛ™gîE½ê§-ôÉyPã<Ô7ƒ·¿Â† ~þÎóà øøgzVûdzbÿœø‘MŸMÖäÖ ‡•ý ¤¬*²2ž¹6uѧŽxê¥#?ªÁÊz@•HD·§^ÚÖ›5ã~oŸ–¶~¬°þT…(Þ|6YÞnÛ€»ýµó…šèö¿‹á&ÞxÁ%ä=¨® +Ûªv«~r@[ƒ;ïy¢„“ÎËüÓ¶§™ÖÏÕÌòieCöEQóÄ ‘±ˆ'f:òÃØ(\Y8Éœ%øÆýCÛ4п$Y”Y ­ã}xóúû÷ozÎ~¹~7øñ§Ÿ#Âá‚œµÐG˜B)'ÏÚT#E"†ûÄEµŠÇ ÷;òQ¬¬jS·@lsr±„¶c›[knÀ%5x“Õ@Ën3ÓœŽÄƒ…·¼q©ê["øäíÔŽL¾wB÷i R—w?Œ…ÏÀA˜#¹õÏÈAº ¦#J ªãÕ wŇP°ªpþiÏí¨ ÿ¼Îw/LcÁ ;_4ÐÁÀ^¡)l.0Œòåø‘ªå‘ØÞ=ö›ãô5€î‘û¦Ö*E)ŽQ^ÜûW†ú”ÿpý?æwE +endstream +endobj +1546 0 obj << +/Type /Page +/Contents 1547 0 R +/Resources 1545 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 1433 0 R +>> endobj +1548 0 obj << +/D [1546 0 R /XYZ -11.232 900.716 null] +>> endobj +1549 0 obj << +/D [1546 0 R /XYZ 56.693 759.068 null] +>> endobj +1550 0 obj << +/D [1546 0 R /XYZ 65.161 752.393 null] +>> endobj +1551 0 obj << +/D [1546 0 R /XYZ 56.693 709.155 null] +>> endobj +1552 0 obj << +/D [1546 0 R /XYZ 65.161 709.838 null] +>> endobj +1553 0 obj << +/D [1546 0 R /XYZ 65.161 698.879 null] +>> endobj +1554 0 obj << +/D [1546 0 R /XYZ 65.161 687.92 null] +>> endobj +1555 0 obj << +/D [1546 0 R /XYZ 56.693 644.681 null] +>> endobj +1556 0 obj << +/D [1546 0 R /XYZ 65.161 645.365 null] +>> endobj +1557 0 obj << +/D [1546 0 R /XYZ 56.693 602.126 null] +>> endobj +1558 0 obj << +/D [1546 0 R /XYZ 65.161 602.81 null] +>> endobj +1559 0 obj << +/D [1546 0 R /XYZ 56.693 560.813 null] +>> endobj +1560 0 obj << +/D [1546 0 R /XYZ 65.161 560.254 null] +>> endobj +1561 0 obj << +/D [1546 0 R /XYZ 65.161 549.295 null] +>> endobj +1562 0 obj << +/D [1546 0 R /XYZ 56.693 506.056 null] +>> endobj +1563 0 obj << +/D [1546 0 R /XYZ 65.161 506.74 null] +>> endobj +1564 0 obj << +/D [1546 0 R /XYZ 56.693 463.501 null] +>> endobj +1565 0 obj << +/D [1546 0 R /XYZ 65.161 464.184 null] +>> endobj +1566 0 obj << +/D [1546 0 R /XYZ 56.693 420.946 null] +>> endobj +1567 0 obj << +/D [1546 0 R /XYZ 65.161 421.629 null] +>> endobj +1568 0 obj << +/D [1546 0 R /XYZ 65.161 410.67 null] +>> endobj +1569 0 obj << +/D [1546 0 R /XYZ 65.161 399.711 null] +>> endobj +1570 0 obj << +/D [1546 0 R /XYZ 65.161 388.752 null] +>> endobj +1571 0 obj << +/D [1546 0 R /XYZ 65.161 377.793 null] +>> endobj +1572 0 obj << +/D [1546 0 R /XYZ 65.161 366.835 null] +>> endobj +1573 0 obj << +/D [1546 0 R /XYZ 56.693 323.596 null] +>> endobj +1574 0 obj << +/D [1546 0 R /XYZ 65.161 324.279 null] +>> endobj +1575 0 obj << +/D [1546 0 R /XYZ 56.693 281.04 null] +>> endobj +1576 0 obj << +/D [1546 0 R /XYZ 65.161 281.724 null] +>> endobj +1577 0 obj << +/D [1546 0 R /XYZ 56.693 238.485 null] +>> endobj +1578 0 obj << +/D [1546 0 R /XYZ 65.161 239.168 null] +>> endobj +1579 0 obj << +/D [1546 0 R /XYZ 65.161 228.21 null] +>> endobj +1580 0 obj << +/D [1546 0 R /XYZ 56.693 184.971 null] +>> endobj +1581 0 obj << +/D [1546 0 R /XYZ 65.161 185.654 null] +>> endobj +1582 0 obj << +/D [1546 0 R /XYZ 56.693 142.415 null] +>> endobj +1583 0 obj << +/D [1546 0 R /XYZ 65.161 143.099 null] +>> endobj +1584 0 obj << +/D [1546 0 R /XYZ 56.693 99.86 null] +>> endobj +1585 0 obj << +/D [1546 0 R /XYZ 65.161 100.543 null] +>> endobj +1545 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1588 0 obj << +/Length 2169 +/Filter /FlateDecode +>> +stream +xÚÍ\Ks㸾ûW°69ØUQ/Þ¤rÈîf“¤2ö!U³{ $Hb™"µ$e{æ×ɱDK6(Ú=¸H‘`³ô×_£Ñ4Š–Š~¸úæîêëï9Š4hADt·ˆ!#…)PÝÍ£×LjâÒÜLG×ÿÎ+S6§‹¼hNªU{ó»|öMžß7?þwûóͯwïìk&ƒæ¼‘v[}JM¹2¦*ëÛöí8Röí‚ÖogB‚$*špв}?¡V T×_7LDýàÕ?ï®~»ÂV<ŠpÄM#©1D¢Ùúêã¯(šÛ{V`ZE»–ëˆc„ +{žF·Wÿ½BíH ƒ!‘m&¹Þ I'œiÀH4J `;-ºÇ¢ŒºþñîýÏm¿öGÕa@Eûô]7b‹5Eu3vTo«øS•g½™`b¦IY•ðT¦0k\µ¼úðáYXcÆ’DB)P’×fQ_çÈ­tT˜h±oÒŽ_}ù)Acѽ ŒëÖ¾ò9`ûò9²3`GÊå û ‰AÙÀb5'ZÐLe§¸Â@ëÉ:0ó x)Ë"©žòÂÌ·Ù<Î*·æ©[Ë8sÔ JªÔ8ʬª"™nk×èÔ>Ï{e Ý­¥EáÚ¸V’•É¼×µ·AT›—álüP¾§{+;ÀÆ¥eÖÒÛ}9ÃÍ™ã\P;0š¤,‚S·ò=áì­ì8 +Œ4“ømž=ÔVæFiêÖpf[:…ìÜD¦qy +÷Gžy&¬‘Õг|½îÑåë]ëâÛ¡#QåCd—’…С|Oy+;@˜XG¹Ns¹ÝlrW¤Í“¢?Ã99ÃÇÃ÷ù#ĉ‰cœøÂæOGžÛj³;êpö|mÐsv„µ‚y0ÌõäûaÎ_Ù˜³šòn™ýý6]$ÎŽxaâj[×UÙo[Ó[“´·þ„µ¦ŠR÷¹ä@ˆ¸d´É%ŠÉ¸ÑælµÍî' M ÈIp{¤L‡ ð8Ç@u8¨ˆ÷DŠ¯ªî@ᜪJòäföÓíò¨ÉÉáôu"y,r×Ü„]·ÜL î)„|áè0’¥õ#«¹C‘O”ç€8†€Q‡ò=!á­ìL0 +ë+ã8eU\,M5v€’ŒlX±kü9µQ¥]òçŧ‘óˆó©{ï-o›,^;²ñ¶ìeS‡„RTcô¢ô‹p¢Ï ßwIq7ìû¯¼4÷÷®’å*µÕâEV !Â/Ó +—(íÉ÷ó3þʺû¦(Ý&JÊfé¶NÀKN_,"qåÜÝV—SËÇØÑ7•Éz“&‹ä$:O=øŸ,ý亃਴UÅy]íê{³üѱ¡™™²Œ{.u€—bÀMIﶠ »Hhʻˇiçy>›æù}¿Ñ¤ÙžÆÅ~B:ÞVy2 +žf¼÷€ÙhÆH.Ý“ïé3½•à39$ÏÈF/¶Ùnÿ¢¼É+©Ð‡8Ië-Ž‘ÓCYßþ®FiúùkªÙ?üº÷tÍ5Ú°iàÒQŠ„Ëõöä{š§·²Ì“j°¾¤±ÏÌ8ÒŸ͗pÍi±wÌ€`ÁhV¿‰‹x=î¥z™Qs'HJ@Q~Q‚DöÁgäûx[$Õ熻ޙ8+Ÿr“ ˆá©¶*pŽ¨²]Ðá²g=ù~€÷WÖðT J~ÉŸ¹–óØ°æ¼T›?ý½hõuöY™zõp.©€¬?¼ © €´<ŽßÅɼã·Ö©™¢Ãâ2ÍwQûDr +˜²€ˆdõ1ÜÖOO¾'"½•€HÆí¤ÒnU]™"‹ëÀ/N“Ï®èÜÔÁâ6®œ—ã®Ô¶³¤Ò˜‘SjØ8-ó¡­#uÑm'ŠIÕÀ¶KÁ:Ǹ÷sšæ³û!øE( +¸E4Êq0üöäûá×_Ywü­@ÐvGê}îº{t+ý4`\õ¿S¹ÍŠ%ŠÕá¶qzò= É[Ù†¤$Ù¦×ÿ1Ÿ»:ë)âÔ\¾Âêôrh½Ic×Ò´ÇU2[¹Æ Î*¬Ì™eçÏuEo²¤ÀV`öä{²·² Y +èèrx©×ë¶ÞVfêZk•åÕȦù²$ôíî Œ¥ˆ=²€%=ùžì«ìi{µG)ºøqtھرõþD¤ÎG 4J畳yŠ­+6G²±Ø™­¹¦.šŸ"T—ø÷ý䌫 +˜¡"˜ƒ`á2T=ùžØóVv{`{éùÛUJÌ=æÚ9øN»ÌŽÓŽØ±åcR­\{õ2yþ÷¯N»¨q>%°7¾g·æheøÛøCÌ:ƒ€ËÍCùžððVv<¬'Ò]¤‰ËÄ8’Ál[Vù:ùÛUt¦ƒzœ¹$`©@*5.œ‘!ÅB"?BÆ\‚á>BîÉ÷3yeÝMÞþî>2¼ò¡I^ä:WýQ“¢ði‡ ””Å'Åö õ ¨kÇ „p@tb ˆ…K[õä{¢Ó[ÙèÄ hWúS6 ÂnHÎê©FòÀuRa⢨«®E1wåR×jÆM‘×tÉË$“3 ‘Ä/Zæ«ì¼R=.žŸ +³€~Ñȱÿà ¡Ïù0ÿ6¯@N +endstream +endobj +1587 0 obj << +/Type /Page +/Contents 1588 0 R +/Resources 1586 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 1433 0 R +>> endobj +1589 0 obj << +/D [1587 0 R /XYZ -16.307 900.716 null] +>> endobj +166 0 obj << +/D [1587 0 R /XYZ 56.693 759.068 null] +>> endobj +1590 0 obj << +/D [1587 0 R /XYZ 56.693 738.489 null] +>> endobj +1591 0 obj << +/D [1587 0 R /XYZ 56.693 691.479 null] +>> endobj +1592 0 obj << +/D [1587 0 R /XYZ 65.161 692.163 null] +>> endobj +1593 0 obj << +/D [1587 0 R /XYZ 65.161 681.204 null] +>> endobj +1594 0 obj << +/D [1587 0 R /XYZ 56.693 633.696 null] +>> endobj +1595 0 obj << +/D [1587 0 R /XYZ 65.161 634.379 null] +>> endobj +1596 0 obj << +/D [1587 0 R /XYZ 65.161 623.42 null] +>> endobj +1597 0 obj << +/D [1587 0 R /XYZ 65.161 612.461 null] +>> endobj +1598 0 obj << +/D [1587 0 R /XYZ 56.693 564.954 null] +>> endobj +1599 0 obj << +/D [1587 0 R /XYZ 65.161 565.637 null] +>> endobj +1600 0 obj << +/D [1587 0 R /XYZ 65.161 554.678 null] +>> endobj +1601 0 obj << +/D [1587 0 R /XYZ 56.693 507.17 null] +>> endobj +1602 0 obj << +/D [1587 0 R /XYZ 65.161 507.854 null] +>> endobj +1603 0 obj << +/D [1587 0 R /XYZ 56.693 460.346 null] +>> endobj +1604 0 obj << +/D [1587 0 R /XYZ 65.161 461.029 null] +>> endobj +1605 0 obj << +/D [1587 0 R /XYZ 65.161 450.07 null] +>> endobj +1606 0 obj << +/D [1587 0 R /XYZ 56.693 402.563 null] +>> endobj +1607 0 obj << +/D [1587 0 R /XYZ 65.161 403.246 null] +>> endobj +1608 0 obj << +/D [1587 0 R /XYZ 56.693 355.738 null] +>> endobj +1609 0 obj << +/D [1587 0 R /XYZ 65.161 356.422 null] +>> endobj +1610 0 obj << +/D [1587 0 R /XYZ 56.693 308.914 null] +>> endobj +1611 0 obj << +/D [1587 0 R /XYZ 65.161 309.597 null] +>> endobj +1612 0 obj << +/D [1587 0 R /XYZ 65.161 298.638 null] +>> endobj +1613 0 obj << +/D [1587 0 R /XYZ 65.161 287.679 null] +>> endobj +1614 0 obj << +/D [1587 0 R /XYZ 65.161 276.72 null] +>> endobj +1615 0 obj << +/D [1587 0 R /XYZ 56.693 229.213 null] +>> endobj +1616 0 obj << +/D [1587 0 R /XYZ 65.161 229.896 null] +>> endobj +1617 0 obj << +/D [1587 0 R /XYZ 65.161 218.937 null] +>> endobj +1618 0 obj << +/D [1587 0 R /XYZ 56.693 171.429 null] +>> endobj +1619 0 obj << +/D [1587 0 R /XYZ 65.161 172.113 null] +>> endobj +1620 0 obj << +/D [1587 0 R /XYZ 56.693 124.605 null] +>> endobj +1621 0 obj << +/D [1587 0 R /XYZ 65.161 125.288 null] +>> endobj +1586 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F52 695 0 R /F93 909 0 R /F95 923 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1624 0 obj << +/Length 2279 +/Filter /FlateDecode +>> +stream +xÚÍ\[sã¶~÷¯à¤݉Op'ÑNºi“L&éeíΤ³É%AÇ©%A_2ýñ)ÊkÑ–} Ú}%‡‡Äw¾ó ‰®"}öîòì›ï$‰4hÅTt¹ŒG åÀãèr}xóÞä&­ÍÛs&É›”ÖÔÛÃeYmìªÿóoåü]Y^o¿ürñÓÛß.t—9§´”[kö>7õÊ[·»«Ó(qWW¼½ºP1Ä,‰Î%踿>Î`œ¼ùfûA™jO<ûûåÙÇ3êÌ“ˆFRÒ<Š5EX4_Ÿ}øD ÷Ÿs„N¢Û®å:’”ãÊçÑÅÙ¿ÏHÿ$ˆs±=l?¾dÙ=³((Q­åöwIœŸBE t¢£ÊD˃¦°à Pï.°5LÛÖ¡ö%PE‡ö%¡«u…ÇYfzg;ƒÕU´=xß#Ñua‡Ñ!±w\P¼GÏi±ÈM×ÿ‡MEÎqø̪ÚZS­qÍóìiø*/ëo8+píÖåbßw¿ùªÿåé9oî*³¶??ÜÜ–ÃÆ_Áö—½Ú «lº®Iø|>Í?»H¦ ˜Û^ÿ•1¹çü) eÒ§«rf*û¶{¤6½·eñ§·ç”u]\ÛîêüÏÛ¿Wv?ú:ËËùuûûXˆó1¡ÓååÒgl²œ0°–ÂÅ祸®¿ÿºX˜.¬YoòÔ"üH×XÃór½.‹a|Áá`l‘çÑ<µ¶ÊfM;ôân´Äµ+»iì~ÛWa¯ÜuÇd¨Ü·ˆÊ`g=P™pP²‡å0!„ºê‘˜„Ä9º#Sȸ½Enanq ;Äxp¢…Y¦MnótfrÜnÒ¼Á2¨y{v•"³MѬ]´`smmæ6+‹Ú—›Q +ŠÑé0¾o?äÁÎz œ +ÐDoQŽNü~}öÑ¡ë™N;X4¤Ha`f°tÍ]¾¸j²z5pùÅHÚ&ì‹Ôfõ23Þˆ#”š°FÝ·ˆ¸`g=Gx{n¸ïLj› +ÙïM¤Avýº’‰eRÇ bqJ6!cá:h\2±I«t w·fÖ+5óUS\ŸÏË…y$ßl[9òÕoõ±Gwç,ÓÚ>úíÆT3‡{g{«E»[ÿäH4HwØû÷+!ÔùCÉÃÝ!»B¹ç¢ãéØ”>½Ø Äpgñ(e ”õüOmFæ-ìÅÁF1œâAø…æŽmûHJ7iæ¸VLÇÖiöiæzMŽXuš>rÐü%ÍÑÃfsul&%Dè“æMƒÞMsŒ•8ÓÆ–ÙâΣ“Ô¹³ Ó”³HètêáÀ~`š +vÖ#M9»œPß4…©Ób¾*«zdEoSeë´º÷ŒyWÞ”®Üó>ÍÜ­ ‰lhÿ°Zµ8²,|5ž„V@ät2äÀ~ÜÃÅÃ]h \ôªÓ¢ÙäÙ=3ã8^•aGŒÛÌ®°õÓr骽Ž t¡çÊ·©e¬Òƒ {ìí=gä1² +ͨ“ê›"&@%›¸$y¨>°B9¯’ ÕN!40>]âÙ3˜wB]õH;’¤¾jçÅ@V,Ìaϳâºöhÿt½Ç‹µC'7ÕBô¤QÍ8pÕÉÀŸ>‹vÝœ’F5a >­C?¬÷íÆu°³M¤ÃE¿`è_ù÷ôûªl®VŸi(-¾DŽeþ~Ûú2g®)ˆ Dì‡!=ÜY<Ò¹víí‘ÃÍ‹ôÚl£Ï—•…Á.¾jòvm@q=®Þ…N ;ó„€H¦Sö£&ØY¨I8Ä»‰‰ÿ–Íq¥›;÷/P®Ï…B|ydò‚?~ÉôÌÌÓ+áSJæ;¹É•ÉôtÑ´o?0š‚õˆ¦˜AB{öízj1.ž7y:7#Cf…P:îâ~´›ÖÅ R¢ÍËÛ£‡ ‡yÒya.8(¦>÷üçÎ %¦+Ð8cO¸ît`?0e;ë‘2˜½[wŠV^êf³)+;ò¤:ÑÂϯæŒ!YÝ®²9²TÞ¸±>³Þã-¥]8N<ûöƒ'ØYà¡ïÕMeæYmðdsä]#d®wŒüáò矎߷r¨m•ºhGç,¡õ—38™PÎØ·í`g= MØWÎðJqÏî«ÁR%¦EÐ'ÝüÈbIrÌæÇŸÓ¦Êìï[²ô£I‹úYªï‹rãA•˜ nod’»»˜nŠj`?,$ÂŇ“10é½½±Ý@œ´òíµM­ÊòÙoÿ;ÌVÊ2+Üh²–|¯eîæf2kÅ\IBÈtK‘öñì¬þÚé<Ý/Eú6/kìZ‹§KîúeËŠq—¥ðC€PyÒ”Kc »ÕWŸqs÷Jy2]Ò¥Z¹Ïé$­ý0Ї;‹=ÕÚuk¼G±/ƒ¨ÑëúS}Põ¼/¬ªÇUjŸ¿^Ÿý17¦À–Ø–ÙØO (Øâ×Èø¥‰„ ßØ°o>0¸B]õˆ­$IúU7^â>ëô~ÜÍT•éÖαä -.ãš]þó[$ßBò²çÞƒ©«G˜šnWáÀ~ ¬ƒõÀuƒý®ÂwÆ‘dß×7  ^ŸI‰[lJôÑQf÷cÏtñ¶‹ÖÛVó1#?­ÂWó¡Š'Ó¸ûqì¬GÜ´ÓO›q=fÛ–_NïO"6QE€Ó“NÌQƒ˜f%ö¦™ó€O¸5’R"žnQÌÀ~`;ë‡T;O•çœ\úY&Ï¥$øí§ÿÞ+Ԡľçð.Ha”0©:EQ"9éÞHM@ÆrÊÕÛz¥ô1¯ý?ö ? +endstream +endobj +1623 0 obj << +/Type /Page +/Contents 1624 0 R +/Resources 1622 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 1662 0 R +>> endobj +1625 0 obj << +/D [1623 0 R /XYZ -11.232 900.716 null] +>> endobj +1626 0 obj << +/D [1623 0 R /XYZ 56.693 759.068 null] +>> endobj +1627 0 obj << +/D [1623 0 R /XYZ 65.161 752.393 null] +>> endobj +1628 0 obj << +/D [1623 0 R /XYZ 56.693 704.886 null] +>> endobj +1629 0 obj << +/D [1623 0 R /XYZ 65.161 705.569 null] +>> endobj +1630 0 obj << +/D [1623 0 R /XYZ 65.161 694.61 null] +>> endobj +1631 0 obj << +/D [1623 0 R /XYZ 65.161 683.651 null] +>> endobj +1632 0 obj << +/D [1623 0 R /XYZ 56.693 636.143 null] +>> endobj +1633 0 obj << +/D [1623 0 R /XYZ 65.161 636.827 null] +>> endobj +1634 0 obj << +/D [1623 0 R /XYZ 65.161 625.868 null] +>> endobj +1635 0 obj << +/D [1623 0 R /XYZ 65.161 614.909 null] +>> endobj +1636 0 obj << +/D [1623 0 R /XYZ 56.693 567.401 null] +>> endobj +1637 0 obj << +/D [1623 0 R /XYZ 65.161 568.085 null] +>> endobj +1638 0 obj << +/D [1623 0 R /XYZ 56.693 520.577 null] +>> endobj +1639 0 obj << +/D [1623 0 R /XYZ 65.161 521.26 null] +>> endobj +1640 0 obj << +/D [1623 0 R /XYZ 65.161 510.301 null] +>> endobj +1641 0 obj << +/D [1623 0 R /XYZ 56.693 462.793 null] +>> endobj +1642 0 obj << +/D [1623 0 R /XYZ 65.161 463.477 null] +>> endobj +1643 0 obj << +/D [1623 0 R /XYZ 56.693 415.969 null] +>> endobj +1644 0 obj << +/D [1623 0 R /XYZ 65.161 416.652 null] +>> endobj +1645 0 obj << +/D [1623 0 R /XYZ 65.161 405.694 null] +>> endobj +1646 0 obj << +/D [1623 0 R /XYZ 65.161 394.735 null] +>> endobj +1647 0 obj << +/D [1623 0 R /XYZ 65.161 383.776 null] +>> endobj +1648 0 obj << +/D [1623 0 R /XYZ 56.693 336.268 null] +>> endobj +1649 0 obj << +/D [1623 0 R /XYZ 65.161 336.951 null] +>> endobj +1650 0 obj << +/D [1623 0 R /XYZ 65.161 325.992 null] +>> endobj +1651 0 obj << +/D [1623 0 R /XYZ 65.161 315.034 null] +>> endobj +1652 0 obj << +/D [1623 0 R /XYZ 56.693 267.526 null] +>> endobj +1653 0 obj << +/D [1623 0 R /XYZ 65.161 268.209 null] +>> endobj +1654 0 obj << +/D [1623 0 R /XYZ 65.161 257.25 null] +>> endobj +1655 0 obj << +/D [1623 0 R /XYZ 56.693 209.742 null] +>> endobj +1656 0 obj << +/D [1623 0 R /XYZ 65.161 210.426 null] +>> endobj +1657 0 obj << +/D [1623 0 R /XYZ 65.161 199.467 null] +>> endobj +1658 0 obj << +/D [1623 0 R /XYZ 65.161 188.508 null] +>> endobj +1659 0 obj << +/D [1623 0 R /XYZ 65.161 177.549 null] +>> endobj +1660 0 obj << +/D [1623 0 R /XYZ 56.693 130.041 null] +>> endobj +1661 0 obj << +/D [1623 0 R /XYZ 65.161 130.725 null] +>> endobj +1622 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F95 923 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1665 0 obj << +/Length 2304 +/Filter /FlateDecode +>> +stream +xÚÅ\Ýoã¸Ï_! Í ߤڢè^Û½âz{@/y8`÷d›Ž…•%Ÿ$ç£}G¶¼Ëq<4E÷!°¬PÃ5¿™ß G¦É}B“﮾½»ú惢IJRÍur7O4'Ú$– "Lr7K>]ÿä +—5îÝ WôúǪuÍöp^ÕÛƒvÑÿóÕôÛªú²ýòóíï~¹û¦¹aŒ¤Jm¥Ý¶Ï…kεM÷o˜%f×¢›]jC ·É"©éçç +{ýÍöƒqÝ]xõÏ»«_¯ˆ§ K”&:‰IÑ”'ÓåÕ§_h2ƒÿD¦6yÜŒ\&ŠQÂ…†ã"¹½úÏíW‚‚ŠÝa÷ñÝ É°ÌðÄÈ”0ª;ÉÝyEAO©NR›&µKæGEa'–0ivl³nt¨|E˜fCùŠ2b´EÍðr™5Iy:‚²õ}²=ø©·Dx„[Kì—ŒHÑ[ÏÕãæá—“|ºÑ”^?ÕnŽÙV¸q¿få,se[?ãÆ?æE¹páT] ÙÄ!'p/á®pƒó7.C.éÚ5m^!…vþfoàžeí¹ƒ¦¸!ÌÚx˜Ú—ˆ©`e=0%À)½ÅÞªòò ÒPÝÖ¢(Í‘òYƒX•ûw A¶'f% KÓXpäó0½üÌ!$¾Ô}ð-‘`…´ÞÕÄÕí»Í=߶Ùs[•zwÃøΣ5®%OMñçíˆE»,º¯È•Ðoçñ¢¢¶”¸«XÈCp¸²xk+ˆê´yƯ]Ö"AܸUV£G·n¹*²Žòç¢ œVËÕºÍËûÑãY5{)ØÍ£óSZ§DRÏÊ÷åZy°²Vn IùÖÊÇ&¯ó9˜èý‰cBÆf=] Ñ!omâÐŒr62bÑ,!+Ú±IÓØec…¦¶šz"¥AƒÔÄ‹DJ bE¼šß@~jÕţV)C×»=Ç:Gªi”jA[Eˆ†X‡ª¶Ï#ß?6—ZU«u·N³3ç?2ɉ5i<ìËA°² >gA»‘³rõ2oÑÏuZ•]Ü ¯]¶ñ¸·ÙÒœÝUëµ]Ôœôƒ‡Ï0÷ÄÚe¨ªf)áÔnÍòneóü ëk'ëûÁ#ÛœþSp?:}›o£Íè_w@ºÊu»Z˜‡5ì¢Ü‰jB™9ƒ<}ÌÖlÿ»eOß»¬l^°§¼-Ü*»™ÛwÅñª”½87Ëò&¯ÊWJý×ß$í…aPL½PLÚ”Û©ö™Rš0úõˆmpA¦°&JÅcsÒ*BÓxe·ü0‡®,ÞcHk‰°}•éýl†937.;[@6ŽM«²é—²z,Üìþ•(Üu0ézÆÝÎYeÞùvxî.¹ÃÊý:/kµª«©kÊÿ§‘ ™!ñÚò¬¬ÐŒ!’÷ÕŽ&_æEVÏãBЛO³ƒÝÈÓ¶öËLϾ…)[­\†$ Øy]aѱ̀u{Wç­÷N­Ô>ãUòa¬¬L`NøÛÂ$+Ÿ} ÿl&(5%Ì^´G +C¸QcïðÌÜ“G!MrC‹Øz#™&BÅk½È4õ`e=L¥DKö[!­ÂÒVu¾ÌêçÜ{kÅM«rvxe8¿Øæ‚#Uø^ã§@i¼®™ü@ VÖÃ@©%Úö]3e×æ„í³Â6Z¼Z +·ÆƹÑ-dfESycËRj×Õ¦±é×0•9iä"•DŠx ð@~˜‘‡+‹7r‘voŠô ð±êÖ6Ò2¦mÊ8–Qˆ”)/Ú3"´%JŒÜ3’­ÛÊosN(P#âÞœ†h¯Kd ?Иƒ•õ0fE‰Mû.‘ùҵ匃‘ßÞ@ïw­êj‘à\ê.¤$ |I q0‰]¡}, =¸zIÌÒiŒmî5Ô(%ÆÆ«ç äB-XY¨QIè.y{?›EØ‚Fo—üí1Ÿµ ôÞây;='˜Ë«q“SÆÐX ó.§ö’@æFkå¸@†·ÌŠÁë0íÄç®%˜4‹l®Ü—ˆìü0`‡+‹6W†ìê´èzt[Ü“ôí¿ÛÙf'‘ EYµI3:µËÚ¶Î'ktê>­ê˜Eqvë5N“^¶½sKèÈím]O+DöG7ÁÞ7%bv¸qÈ"v¸ äz€`e=<È•»·Õ²”Ðu anŽ‚ÿz‰ÞDÝXÏÙªÂäEKÛÌ2ÂÅ9¥í»¨Ìæ¦?d‹â¾v_!T»ùæ%0Ê èaD<1M‰`ñªÛùa +W"¦Ñôku{‰†òžzdö/Ç‘¹bí¯o‡ð¼lò™‹< : L‹¬i^Óç3Uô ”a=ÒϬ’QC$É #J÷Eˆ?› ÌÎèäÅȼ|ÈŠ|æY^Å+ŒgYM^ÒX7l7)¸º¨¿–žÜ‘ß±MgËA ñí0Æ‘6^;ò@~ ³ VÖÃÙ2MÌîwŽÂ“–T*køÛÀC¿¢YØ·ÕVà²ÚE]­ïãn3M«Â£Bnh}îÆäiŒPNT¼¬{_| ‡ªêa¿TËúrªg:<ö›`eå19XÖzYztÞ_»§Ö• ú#°ýzÙC–øå8Øö> endobj +1666 0 obj << +/D [1664 0 R /XYZ -16.307 900.716 null] +>> endobj +1667 0 obj << +/D [1664 0 R /XYZ 56.693 759.068 null] +>> endobj +1668 0 obj << +/D [1664 0 R /XYZ 65.161 752.393 null] +>> endobj +1669 0 obj << +/D [1664 0 R /XYZ 65.161 741.435 null] +>> endobj +1670 0 obj << +/D [1664 0 R /XYZ 56.693 693.927 null] +>> endobj +1671 0 obj << +/D [1664 0 R /XYZ 65.161 694.61 null] +>> endobj +1672 0 obj << +/D [1664 0 R /XYZ 65.161 683.651 null] +>> endobj +1673 0 obj << +/D [1664 0 R /XYZ 65.161 672.692 null] +>> endobj +1674 0 obj << +/D [1664 0 R /XYZ 56.693 625.185 null] +>> endobj +1675 0 obj << +/D [1664 0 R /XYZ 65.161 625.868 null] +>> endobj +1676 0 obj << +/D [1664 0 R /XYZ 65.161 614.909 null] +>> endobj +1677 0 obj << +/D [1664 0 R /XYZ 56.693 567.401 null] +>> endobj +1678 0 obj << +/D [1664 0 R /XYZ 65.161 568.085 null] +>> endobj +1679 0 obj << +/D [1664 0 R /XYZ 65.161 557.126 null] +>> endobj +1680 0 obj << +/D [1664 0 R /XYZ 65.161 546.167 null] +>> endobj +1681 0 obj << +/D [1664 0 R /XYZ 56.693 498.659 null] +>> endobj +1682 0 obj << +/D [1664 0 R /XYZ 65.161 499.342 null] +>> endobj +1683 0 obj << +/D [1664 0 R /XYZ 65.161 488.383 null] +>> endobj +1684 0 obj << +/D [1664 0 R /XYZ 65.161 477.425 null] +>> endobj +1685 0 obj << +/D [1664 0 R /XYZ 56.693 429.917 null] +>> endobj +1686 0 obj << +/D [1664 0 R /XYZ 65.161 430.6 null] +>> endobj +1687 0 obj << +/D [1664 0 R /XYZ 65.161 419.641 null] +>> endobj +1688 0 obj << +/D [1664 0 R /XYZ 65.161 408.682 null] +>> endobj +1689 0 obj << +/D [1664 0 R /XYZ 56.693 361.175 null] +>> endobj +1690 0 obj << +/D [1664 0 R /XYZ 65.161 361.858 null] +>> endobj +1691 0 obj << +/D [1664 0 R /XYZ 56.693 314.35 null] +>> endobj +1692 0 obj << +/D [1664 0 R /XYZ 65.161 315.034 null] +>> endobj +1693 0 obj << +/D [1664 0 R /XYZ 56.693 267.526 null] +>> endobj +1694 0 obj << +/D [1664 0 R /XYZ 65.161 268.209 null] +>> endobj +1695 0 obj << +/D [1664 0 R /XYZ 56.693 220.701 null] +>> endobj +1696 0 obj << +/D [1664 0 R /XYZ 65.161 221.385 null] +>> endobj +1697 0 obj << +/D [1664 0 R /XYZ 56.693 173.877 null] +>> endobj +1698 0 obj << +/D [1664 0 R /XYZ 65.161 174.56 null] +>> endobj +1699 0 obj << +/D [1664 0 R /XYZ 56.693 127.053 null] +>> endobj +1700 0 obj << +/D [1664 0 R /XYZ 65.161 127.736 null] +>> endobj +1701 0 obj << +/D [1664 0 R /XYZ 65.161 116.777 null] +>> endobj +1702 0 obj << +/D [1664 0 R /XYZ 65.161 105.818 null] +>> endobj +1663 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F95 923 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1705 0 obj << +/Length 1829 +/Filter /FlateDecode +>> +stream +xÚÅ[KsÛ6¾ûWp¦=È3‚7ÀÞÒ$N§MÚ©­Cg’( +–8¦•¤b»¿¾Ë‡‹–âe(:'R¸Xû}»‹i° hðöì—ÙÙ‹ Eƒ„šë`vhN´ ,D˜`¶>L.]ê¢ÂO¹¢“?|éŠæöÚçÍM¹jÿ|íã_¼¿i~ü}õîüŸÙoÐÍ”1*ÕH»*ïSW¬œ+‹êoèz×¢ê]jC ·ÁT‘дýs ¼h. ~Ëgofgÿž1O(Mt(2¢)âõÙ‡h°€ÿ@"CÜÖ-×b”p¡á> ®Îþ:£íLУ3²“-C¨ntúȹªµØ½öâšÔãÕ;–Hmáºñûh›'åçSMéä7e…Ï~>Ÿ2?ç©oÈ]‘6Ò`ž*Õåíþa]˜á …Õ«çŠÂ|IpÚ0È]pýpH{Ò?}Ü·„Y¹ë ̪ÖCå+Â4ëÊW”S…éáárkòðÊÖóeÐÜ\¶ë¿·–;Å#&¨^Ò—‹…[ìÀcIÁ‡zÁ‹ífãó׸ªaßdþ6u‹¥[»¬ÁÒÓo%Rz^&qêöè ÖH™!ñlh_þ@¬lâ”(&Z&ìcØ•›WüÛY¶íƒÇ¯L6VÜ­£$CÚYé‘Ú:¤=>‚[/k”5ã Ì#×£¾Bƒœƒ¯¸ôsKRúªŒîË/®"^m³›iì×kŸõðÚ‚.z<‡¡ 8XÊF{Gþ0°WvmÑ ¾^׋ä ‰í²cèõ㘱†isÊ-KÄ>Ï]ŒÄôÊ#–îîÔ¬ðk$ø}šd7Å·¢_CD)VôKY‡œ'Eÿ¿Q¶€(¼ìƒ|!‰jDèsA”ÑãA_þ@èV¶ô¹&¶zr +è3%áb~ +ú¸Nj;‚ˆ1¿?qȈk6ûóUÉ?}}`ÛÉ 6 +®s®$»ö=¥2)! žÏs÷ ÉZùÈÊì‹š $öÌŽ‡Õ}ù±:XÙXeŠ„´Ý€·t2³ó×HÈm]Q&>ëiø R|ô)JÒh~4];öÞÖDwÛ:¸I +¼Õ’®‘ÉÅ'—0ëß9Ðh0ÆgŒ”ÕÄ05BÞPú¸Gä~’ÅÇ‹€Ï„b46êÈÆFÕų‘Ò!¡–}Þeúž{LK—¹<*“lÙ#PÇ5]De4°äp»rÈ(d[ µÝÁÏš“ÏêO& +®–Êg%’]úÙ‹K~wI¹j¨ä"Z¥ËÜ}æàÔ9Xĺ—pЌ۹„UãÇã’}ù¹d°²=¸„s•îÉ%sW–ÉŸdèÆØMÁË7/_¿sb.ûûêÝì×w=cfU…†ö91+CA¨Öß´Ò +Âèˆe&ià*Ç+3uäípeñ •F)ve¦ÌC`ŒÝQ—ŠÌ°‘Br‡v§è¾(·›dѵ3lb§Û…+°õ³Üȶ›ÜÇ®(|^J>RE‡ WÑÏ°mQtE0õÀLò²Õõ©¤MxêK#SW*Û6S,æ5#ÌŽWµëÈÉÁÊ" iÄâú’0ŸmÕ.wU¤-þΑ»lW>Çn´]&ôxõ(Û;dØ•V–°Ð<«cŠp+¾¿c㊈[É$z¼jXGþ@ V¶‡_c†hÙ¦#ï}ŽÝºuÑÍéÐmt•ˆu–‡"Ì£é¯Çú)l|‹—˜a‹~K‡lGiÚ%ħÈæYër±(ûÝ9HŽX’Ú%Ìh$Ô‘?Œ„†+‹'!a(±¼­Ë½L!uÍ¢{Òâõ¦9t±a›Å‡jŸÓãœu¸žù•³IÅ© Y—Ú¾®pÑ ”šdŒ~IÈzMzÿôi¼HõnOoÎûòšó`e{˜³´ÄŠ–Èñöƒ­÷ÿ莊ÙÏ!s#½Ìœ M›(ÖßZäâ’¥žµbÎYi¥:ñWiR”EÏT°#n+°ÐÃÇ«—wäƒòpe{@™rBëýUF„u.ëMŠNÐfžÌÓÄWVÖóÌΫÔØDÿèIbËTÈ4Ô,TĈ1*×>ß’”Ц6Ú÷ë­ÿÓ´´è +endstream +endobj +1704 0 obj << +/Type /Page +/Contents 1705 0 R +/Resources 1703 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 1662 0 R +>> endobj +1706 0 obj << +/D [1704 0 R /XYZ -11.232 900.716 null] +>> endobj +1707 0 obj << +/D [1704 0 R /XYZ 56.693 742.989 null] +>> endobj +1708 0 obj << +/D [1704 0 R /XYZ 65.161 742.431 null] +>> endobj +1709 0 obj << +/D [1704 0 R /XYZ 65.161 731.472 null] +>> endobj +1710 0 obj << +/D [1704 0 R /XYZ 56.693 683.964 null] +>> endobj +1711 0 obj << +/D [1704 0 R /XYZ 65.161 684.647 null] +>> endobj +1712 0 obj << +/D [1704 0 R /XYZ 56.693 637.14 null] +>> endobj +1713 0 obj << +/D [1704 0 R /XYZ 65.161 637.823 null] +>> endobj +1714 0 obj << +/D [1704 0 R /XYZ 65.161 626.864 null] +>> endobj +1715 0 obj << +/D [1704 0 R /XYZ 56.693 579.356 null] +>> endobj +1716 0 obj << +/D [1704 0 R /XYZ 65.161 580.04 null] +>> endobj +1717 0 obj << +/D [1704 0 R /XYZ 56.693 532.532 null] +>> endobj +1718 0 obj << +/D [1704 0 R /XYZ 65.161 533.215 null] +>> endobj +1719 0 obj << +/D [1704 0 R /XYZ 56.693 485.708 null] +>> endobj +1720 0 obj << +/D [1704 0 R /XYZ 65.161 486.391 null] +>> endobj +1721 0 obj << +/D [1704 0 R /XYZ 56.693 427.924 null] +>> endobj +1722 0 obj << +/D [1704 0 R /XYZ 65.161 428.608 null] +>> endobj +1723 0 obj << +/D [1704 0 R /XYZ 56.693 381.1 null] +>> endobj +1724 0 obj << +/D [1704 0 R /XYZ 65.161 381.783 null] +>> endobj +170 0 obj << +/D [1704 0 R /XYZ 56.693 344.633 null] +>> endobj +1725 0 obj << +/D [1704 0 R /XYZ 56.693 317.079 null] +>> endobj +1726 0 obj << +/D [1704 0 R /XYZ 56.693 270.07 null] +>> endobj +1727 0 obj << +/D [1704 0 R /XYZ 65.161 270.753 null] +>> endobj +1728 0 obj << +/D [1704 0 R /XYZ 65.161 259.794 null] +>> endobj +1729 0 obj << +/D [1704 0 R /XYZ 56.693 213.528 null] +>> endobj +1730 0 obj << +/D [1704 0 R /XYZ 65.161 212.97 null] +>> endobj +1703 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F95 923 0 R /F98 924 0 R /F52 695 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1733 0 obj << +/Length 2709 +/Filter /FlateDecode +>> +stream +xÚí\msÛ6þî_Áé}¨}s‚àKs—™&×´¹ks½Ä3—›¤Ó(HbC +IÅN~ý$e›”d/ BîÍô“i +\,@<Ï.»ÄÞÂÃÞ÷'Ï.NÎ_pìÅ(hà]̽€¢ ô"â#?ô.fÞ»Ó×2“¢”gÊñé+Uɲ¹œ«¢¹¨–íWÉ3¥>4ÿ¼}óãÙ/ÿÐÝLA1ç´7ÕçL–K)«Òü¬{'^¤{|Ó; BÒÈ›p‡mÿ4ÔÃèô¼ùCh`<ùîâäã Ñâ±G<  ö½0&(ÀÔKV'ï~ÁÞLÿ¦@,Ž¼ËºåÊã#êú:óÞœüû·3;3B=Ý,äq=%[á,FRúV­Åö1ïÝ„`ŒOåÏ›i;®Û³ª'RÄüæá‹í„ÍU–©3ÊO/Ó|ÑÜJ–"_l§x)Î(>ýtFøiûÄTʼ¹Z‰Y{¯R7ï¡îZ+{Ó5‰ +C3àºo¹Þ« ÃdÛ(Q[Ùeš'²÷š +ò›ë¢Y¨;ª_9Ñ/pB1Âqû"ßSÊ;íjMë—ÏŒbA´UáŸ2­–g“@Ïé ±Ì…Ì¿9›ªÿŸ¦ùy¹–ɹ˯…Ô¿•eªòòWsÓ'Ís×íæ©^rç*×-Åz™&èJ*ÛÌ$ºZeOÚ9ã·4aQŒ¸¾luy1Ñ}|}Eš«z0zm›ñ˜?ßwW¥Æ ©Äâ¼^•æ>Çz³À£(Žb¯Þüö2ìHÛw·ƒ(D\OeÛA#˜˜Ö¶ò9"éËçX¯ý¦ =܆h€b l-°XxÍÅë³¥´U<Æ(ŠHËÎ µºÝŒ ‰tíci1ÎÐÝ•o‰nke ›è>£6š÷SšÀ½Þÿ¤r¦—NÞ_kzÍ€#B&ºˆãcz¾Ü„Fƒàq"q·<äý±¹&œ=éeâGî¼gR¸ÃLW¼d¬U…»Îzâoµ±Üçª(dŽ¦•²rà¼e"_lÄBŽ?²sÜFp Såé—¾ }³±>ôÜóL•Ð8ɳÍâPè“­í»‰A¬É…•Ç8F Ç 3Ä4>†þ¹oh¸ãª®|K²²Vv[ùL{ïq‡­ Á²\¬d¹ tÃ)“LbˆCÝDfi% tLÞþpñÓÀmJ&W2¯F®Ä Þ~¬ –£HE–~Ù)ýjßÙu²SæÔxmÔÖºò-±f­,Ü—æÔGq µ\+‘õü}ÿ+è$M‘„Ó¤°8BAøØ1aÃæ»3,ÔÆ:rw0Õ“o·|í•…› +iña{(ðLŽÖ±NÓêQϦÅTARÚíí{š÷/psÖõ¸ÇØ‚€»;îéof[÷Qd¦Á=Ù(Å +Õb°ÆÉ•óÆ4ž¨Ã'æGu|Á»tå[²‹µ²Ø…™ì76ðÄi›JL£¨S?ú›ìö×ÉÓ»·àýî ½y«“ƒ##𿦨j0I™³È0<*I‘&ã’bXÃîHʵ=`î"{=ùv$e¯ì’ÂúYŸ»$)ã2ü~èiG›ÿnòcsøyÔS?4©ünòü DéÉ·ä kepå7Å'Ï3)òñwl…\l2QìæÙ§‚/d.›4—q«W¯Óm é9 +\øàj ý‚þr÷¾ÿÕó·ŸŸ~ÝJ¿½â`ðËIŒ©í¿·£¯n;wÿ¾ ùnŸ‡ •z ~'C@ 1Ö&@s/a7¥&[ÞBšWõy-PÇ°—v¤ëq]©š–M¸ed¯UšWðúzp”#ËtOîÓ=¼æI“Ÿ­2œÉ}ˆo¾Üâðß_–16à»}Žx'C¹íîË£Ø×mOQàe"$]&BÂèñÊDz'<…œ'™(Ë¥!$ÄnKC5ÊÜÒôäÛù¶öÊÂ}[¢'èº:äµ\©Oã&Òå¦âîßMiïþõ°%\÷)ûé}”]¦3鸰ÑÛe¸PDêÉåžO´9!¾7!µ«Y¿ù?êËT¼Þ­–iþIdél ­„+ w¶÷Úì!4]sçQ«`ˆ>^L¦§™J>|ܨJ®‹!e|„ÆNKc‰œ–Æôä[Rµµ²¨š’›Ò˜og3 -´+~x<òvwž^¼a°)¯ùj@üc]¨i­s¹4°fOÜžœ–àSAèj¸ÇîTåè5ç¤ÂâpX•Ó“o skeáU9ÄÈmQ~ÃÑ;kæÉÝ÷b™–Эw%õÞ{§øçðFVlJøw½®#]ȺÔ]@7új%«%ü;7%Ø•Ó*Àk6š‚P@„0w¶8ÐFÚ?j$ ÛåX'ø##ì·§ˆKh6DÍñÈ“eÏÞïaO¡11ƒ•Kèº6_«p& M–KµÉfgä€ßåReÒÊpæŒÍÑß¾¾ã[^Ë=_ øúüé>~¨¿7ã‚´é –vÅÛ™bkUá–8ŠÞÖ°à`:ƒ‰ª¶j]vœÒ;JµX _<-Ôe)‹rÜ$½UšÏš@Qƃ üÎÊ™æû ~ÈÊÿ±Lh +endstream +endobj +1732 0 obj << +/Type /Page +/Contents 1733 0 R +/Resources 1731 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 1662 0 R +>> endobj +1734 0 obj << +/D [1732 0 R /XYZ -16.307 900.716 null] +>> endobj +174 0 obj << +/D [1732 0 R /XYZ 56.693 759.068 null] +>> endobj +1735 0 obj << +/D [1732 0 R /XYZ 56.693 738.489 null] +>> endobj +1736 0 obj << +/D [1732 0 R /XYZ 56.693 701.156 null] +>> endobj +1737 0 obj << +/D [1732 0 R /XYZ 65.161 701.839 null] +>> endobj +1738 0 obj << +/D [1732 0 R /XYZ 56.693 649.179 null] +>> endobj +1739 0 obj << +/D [1732 0 R /XYZ 65.161 649.862 null] +>> endobj +1740 0 obj << +/D [1732 0 R /XYZ 56.693 586.243 null] +>> endobj +1741 0 obj << +/D [1732 0 R /XYZ 65.161 586.926 null] +>> endobj +1742 0 obj << +/D [1732 0 R /XYZ 56.693 545.224 null] +>> endobj +1743 0 obj << +/D [1732 0 R /XYZ 65.161 545.908 null] +>> endobj +1744 0 obj << +/D [1732 0 R /XYZ 56.693 493.247 null] +>> endobj +1745 0 obj << +/D [1732 0 R /XYZ 65.161 493.931 null] +>> endobj +1746 0 obj << +/D [1732 0 R /XYZ 56.693 452.229 null] +>> endobj +1747 0 obj << +/D [1732 0 R /XYZ 65.161 452.912 null] +>> endobj +1748 0 obj << +/D [1732 0 R /XYZ 56.693 411.211 null] +>> endobj +1749 0 obj << +/D [1732 0 R /XYZ 65.161 411.894 null] +>> endobj +1750 0 obj << +/D [1732 0 R /XYZ 56.693 370.192 null] +>> endobj +1751 0 obj << +/D [1732 0 R /XYZ 65.161 370.876 null] +>> endobj +1752 0 obj << +/D [1732 0 R /XYZ 56.693 329.174 null] +>> endobj +1753 0 obj << +/D [1732 0 R /XYZ 65.161 329.858 null] +>> endobj +1754 0 obj << +/D [1732 0 R /XYZ 65.161 318.899 null] +>> endobj +1755 0 obj << +/D [1732 0 R /XYZ 56.693 277.197 null] +>> endobj +1756 0 obj << +/D [1732 0 R /XYZ 65.161 277.88 null] +>> endobj +1757 0 obj << +/D [1732 0 R /XYZ 56.693 236.179 null] +>> endobj +1758 0 obj << +/D [1732 0 R /XYZ 65.161 236.862 null] +>> endobj +1759 0 obj << +/D [1732 0 R /XYZ 56.693 173.243 null] +>> endobj +1760 0 obj << +/D [1732 0 R /XYZ 65.161 173.926 null] +>> endobj +1761 0 obj << +/D [1732 0 R /XYZ 56.693 132.224 null] +>> endobj +1762 0 obj << +/D [1732 0 R /XYZ 65.161 132.908 null] +>> endobj +1731 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F52 695 0 R /F93 909 0 R /F95 923 0 R /F98 924 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1765 0 obj << +/Length 2204 +/Filter /FlateDecode +>> +stream +xÚÍ\Érã8½û+19¢ÆB€`Ÿz™©^¢·±ÑQÝX‚,NQ¤Š„¼ô×Or‘mÑV9!ž9‰–ÀDxï!‘HšF×¾?ùöòäËw’F)IWÑå2Rœ¨$ÒL‘D—‹èÃìÜæÖÔöôŒK:ûµt¶î.—eÕ]¸Uÿã?Ëù·eù±ûãýÅϧ]þÝœ1FR);kî>·õÊZW7?Cï,ÒлMï±JHÂut&Išôýs =û²û`\57žüëòäÓ ó4b‘TD¥"JRFåÑ|}òá/-à7p€Ä©ŽnÛ–ëH2J¸PpG'ÿ>¡ýHнá4KdÚÉÎxœFUç”"IëÅî¶èã”Î~¸üåçl¾éŸíéÈÂ@pAR‘v.w£¶,ó¼<årv›×ÝWó•)®wã¼2§œÎnN™œõw\Y[tWk³è¿såãd´}ƒÇ}3“$ižºí{åÖùêe/%%‚±]Ãy¹³_gÅÜ曑$&¢»®:”ýQ'–„ê.b¢8ï¬þɹÜk×zÛ¢ n|Ð$VzçÂyye+wz¦`t/œ¹weñÕéãðçî1Îæåz]ä®Î;³·Æróñý>PÞ,á‘ Pš6@i¾—`«ˆ“T§Qe£åSdìY{ùÛçhJ¨ÜÙï첦q¨yI˜bó’ÂLÀˆa:xÊERž†»ÚÚ«®£îâ¼çÐÞŒ>¸ ²"t7±ß,{ xnHÕÌz½ÝlJ€ªq£J¨†×¶°•q çPíË<+>âš:S][¤¿ ãÌU#¯ã>ÝS†#Ìf É=›,—’„P˜Ü.ø<¬Å*f„ÇÉN‹õ‹Züû© 3S™uý5Öÿ{5ÞòQh"¤O‹á™àÓhñÂ.Í6wÐœ[RmPänÕc ÂÀ$›NeŸ)ŸLöÃ9ÜY¼$ËD’ØW‘ûÉFÊ·ux•E Ü×-ÄpmsUvµuH‘- \»&Öõ\›êãvƒ]<®ÄXª”p*&ã½P±Ób'„Åâ9ùÅl«ÌýÝéÉOÖõ£ž\ÁF¢¶šÌA‘ÍäÌCNDû€dB9áðì@›Éädß~ œ;ë!'ð!ÔƒžX¤¢\³ÂÞâ¶kªu¶é‹þ‹÷=Àî_¸o¶¨gWne +:/ W•9Ríú˜ãõ†Y‘¹ÌäHwf¨Ÿ¯ÓI¢t:Köí²$ØY–0ý˜ß(—#ÏëÃH³•µx°··ü±²ÅÈ>¿Ì×ÃÛS«+ƒ5Æàì0áÿ¶U‰³{còíptÛþ¤’î=l/bÍ*L%û»VRØŒˆé8ºg>¢¡®z0”jBY—E~?2Þ]¹ñ\nolîG~,?*,Ò²z“›{ìzÞ¯-ƒq{]Z~ƒ¬n³#SäsÜ®ÊÜw‹Sûu6GöÃHî,ž%qš*û„ö³…äðk9 –³:Ê›¬Xs¢ÙtÉ„ý@i: 2¯|…ÏZ5gÏÛ¬^Üî¿to«ÞÆeõòY”ó:ââ„è =öì¬â$ƒêƒßwÖ¸-6ûxþ™ƒIX»c‰-D“ôM# ÎÓãY±°w¤©H«‰+I/>ÁESà [Óé‚ +!\<]äÀ~ ‚õ •9÷åßµ¥eÝ ¶\ý·ì•$z‰-gqóö\¯vXI_™›¬¬ŽMÊò4m«åÞÙ–d¯ç+ÿ³Å.žàð¸cº²U à•ñ›®Äœ’$ÿgA6gŒp9a*x Èt¹ý@¹ vÖCn¨ R+Ï ^[„6î‘F_º‰­M±Mù r­*°(F +$øŠ,tjYqÜP½J¦!’'õ¾ù0L»Š‡4K9Q¼Ož¯”)rž2—c xªqY‚/­ì<þ,——sƒü£Ëp_Çs¢‰ÐÓí—ö쬤5#Jõ‡ˆ­N}æ 1Ì’ˆôM ™lÞgùMºë¼¬ëVŠI[ã‘9{d‹DEf˜€HOLw‚8°ˆì`g=-a¼?Aü{ÞçùžÚ³"^Š~ÀÞ¸»ŸÖ®©îæ6O÷ÙÞ€ÛMZËíuY”õÆÌ-½è¬Nk²„‘Üf ·ò`vªacÁ§#¶n›ÓÕtu°«xV§6Ì“Ôžo¶`C&¯Šðu‹¯qß~…éž,ïNX±{ìYÿ¼²¶8V-tz¶uàóÙ?œ‰)¡*=æÿÍüŠ]ZU +endstream +endobj +1764 0 obj << +/Type /Page +/Contents 1765 0 R +/Resources 1763 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 1662 0 R +>> endobj +1766 0 obj << +/D [1764 0 R /XYZ -11.232 900.716 null] +>> endobj +178 0 obj << +/D [1764 0 R /XYZ 56.693 759.068 null] +>> endobj +1767 0 obj << +/D [1764 0 R /XYZ 56.693 738.489 null] +>> endobj +1768 0 obj << +/D [1764 0 R /XYZ 56.693 693.613 null] +>> endobj +1769 0 obj << +/D [1764 0 R /XYZ 65.161 694.297 null] +>> endobj +182 0 obj << +/D [1764 0 R /XYZ 56.693 657.757 null] +>> endobj +1770 0 obj << +/D [1764 0 R /XYZ 56.693 630.63 null] +>> endobj +1771 0 obj << +/D [1764 0 R /XYZ 56.693 585.755 null] +>> endobj +1772 0 obj << +/D [1764 0 R /XYZ 65.161 586.438 null] +>> endobj +1773 0 obj << +/D [1764 0 R /XYZ 56.693 540.211 null] +>> endobj +1774 0 obj << +/D [1764 0 R /XYZ 65.161 540.895 null] +>> endobj +1775 0 obj << +/D [1764 0 R /XYZ 65.161 529.936 null] +>> endobj +1776 0 obj << +/D [1764 0 R /XYZ 65.161 518.977 null] +>> endobj +1777 0 obj << +/D [1764 0 R /XYZ 65.161 508.018 null] +>> endobj +1778 0 obj << +/D [1764 0 R /XYZ 65.161 497.059 null] +>> endobj +1779 0 obj << +/D [1764 0 R /XYZ 65.161 486.1 null] +>> endobj +1780 0 obj << +/D [1764 0 R /XYZ 56.693 439.873 null] +>> endobj +1781 0 obj << +/D [1764 0 R /XYZ 65.161 440.556 null] +>> endobj +1782 0 obj << +/D [1764 0 R /XYZ 65.161 429.597 null] +>> endobj +1783 0 obj << +/D [1764 0 R /XYZ 56.693 383.37 null] +>> endobj +1784 0 obj << +/D [1764 0 R /XYZ 65.161 384.053 null] +>> endobj +1785 0 obj << +/D [1764 0 R /XYZ 65.161 373.095 null] +>> endobj +1786 0 obj << +/D [1764 0 R /XYZ 65.161 362.136 null] +>> endobj +1787 0 obj << +/D [1764 0 R /XYZ 56.693 315.908 null] +>> endobj +1788 0 obj << +/D [1764 0 R /XYZ 65.161 316.592 null] +>> endobj +1789 0 obj << +/D [1764 0 R /XYZ 56.693 270.364 null] +>> endobj +1790 0 obj << +/D [1764 0 R /XYZ 65.161 271.048 null] +>> endobj +1791 0 obj << +/D [1764 0 R /XYZ 65.161 260.089 null] +>> endobj +1792 0 obj << +/D [1764 0 R /XYZ 56.693 213.862 null] +>> endobj +1793 0 obj << +/D [1764 0 R /XYZ 65.161 214.545 null] +>> endobj +1794 0 obj << +/D [1764 0 R /XYZ 65.161 203.586 null] +>> endobj +1795 0 obj << +/D [1764 0 R /XYZ 65.161 192.627 null] +>> endobj +1796 0 obj << +/D [1764 0 R /XYZ 56.693 146.4 null] +>> endobj +1797 0 obj << +/D [1764 0 R /XYZ 65.161 147.083 null] +>> endobj +1798 0 obj << +/D [1764 0 R /XYZ 56.693 100.856 null] +>> endobj +1799 0 obj << +/D [1764 0 R /XYZ 65.161 101.54 null] +>> endobj +1763 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F52 695 0 R /F93 909 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1802 0 obj << +/Length 1881 +/Filter /FlateDecode +>> +stream +xÚí[YSä6~çW¸*‡º-%O›ì•Íæ‚IU›<ˆ±fÆÁcOlsåק} ˆmcLí¦ò@aìv«%õ÷õ!CƒE@ƒ7{ßM÷_+Xb5×ÁthNt&ˆƒi|Ø?ò‰w…?˜pE÷ÎJ_4—ó,o.Êeûðe6û.ËΚ?NŽßü9}ÃL#V©FÛqyøbé}YTat]‹jt©CrL±a;>· 04û‡Í/ÆuõâÞ«éÞß{ ÔÓ€JmEZF4åÁlµ÷áODð Қಖ\ŠQÂ…†ë$8Þûm¶+Aw®ÈF·´„QÝØô窶bóÚák©ç!«w ‘ÚÀƒZø'wžÇå?Méþ;ïÒ"K¿9˜0.ãÅ2Ÿ’Ùy>óäj•4ŠaÉ*ÝÕ¯7Û“…-b!ƒ(ÌV“­î+ +K'uÀ‰56È}0¿=»-m÷ß½;·VªÕßèe•ðPõŠ0Í:êe$„5à p{ß5±Ü7µÖ—/‚æâ¨õƒ­=ݘ-!Ò4[ûû:r¥¶\á®®àC½õ.E +æ>Ë.ÿÁj®ˆŒ|1ËãugéÖ 0‚u;®ø·Ûñ{7ô¨"†=yGÙ©ÏËxÇ¥».?o힬\¾ˆS’—>¯÷m#zûYœ¦Í3äòhÊåx¨ÔFªÕh°ìè†ËáÆâ© p€âÍοˆÐ™¹ ïJ$€OÁSp¢'¯~Å žž/p‚—KŸ"%!ÚÄé¢ ðI{ãî[û«,BH\ )¬Ši=,(³‰Ÿ—¥/m¡¡~NúÒ0´bòiùËåeÍ¢kR”  X.òiÙ$d0ÙæH•‚ËÖ ?(e`£7W¬¹B.¾uz79JleÇ#ÇmýÉq°±=ÈQ«6£þ~éÒ…ï ¨v‰¯ûn·x“–d=Ǩ±ç ݬêÓ£ÜËMO=ǬžCì”+Î×ë,/?GF0€`U*7>·Ô„çPS{ S(Bm[SܾwîïÈÝ'rC gÏ +©!\?m$\$YQD~NN“lvv¼‘Iâ¢|@ê€U¥gôH¨¬%2ãEBeLtŒ…´ŽþaPn,kʬiß2Á•eŸB؃‹¶ÇõiíU+ +¸SÐôP;µË¯‘mðþâ‰{ºâ±¥Œ"Š?k®‡[r†ª©¥ðk—»ªýÒ£¥ À6Ž˜5+©gãeÍý¹b°±=¸B/mz¾ß'.çן_GNAÁų¢„3¢µyZ”¬Ü™'×Þå$¯Ê“¢B'Æð.k?®ñÓ#d[ÿ@„ 6¶Bh…ƶ7ûsv‰sz¨?£Ä#CMå8IŸøUÛÆ@4þ²´tqŠ¥«vµBŠbƒ~äŠ%²ó—Kt‹ÒçyÇ‚œ#-¸‚£‘¯6Tö6ëÈ*6Ë6sWïVäŒÂ¬ÞnÔÚí &\µ’éæärž%ôs+¯Õ·fu“¤=ë\ºN÷/˜Úoß8õ>m®V.jïAñ|s ÚâÖÐÌH†zġ %áœm„gÙfŒ"Ng¾sî +d!‰h®óæ´–l/<‚ý²!\p"ÂÇä7ïâüÌ5ÄýcVø³ m½zñò§WX·]UvD¢PWi1Qwô#êáÆâ‰ZRPÏ[¢þ!%çE7åØMTs$­w\Ö؃‡K‡ E¼Z'ñ<öÑnÛõâ/i‚Lî²{Z²Âwê°'+)6Ȧ~æï=8^Xà])Ÿ3±¡&ÔˆGÐÓb_CO¯Ý2Yä>}C nõˆ S"¡¶õd¨ÁÆâJ(`C®n3h99~?}ûûi…‹V¾gÓZ(A„4Ï +ÁIh§B•›V‡[W‰1?dL*ùx@ØÖ?ƒí ãmŠú")}žºÒ£û”~µÆ~Ï€”+\ê±±1®R‹èžÏ8+»ºï‡ñ>}l‚ñi§‡m¥J> endobj +1803 0 obj << +/D [1801 0 R /XYZ -16.307 900.716 null] +>> endobj +1804 0 obj << +/D [1801 0 R /XYZ 56.693 742.924 null] +>> endobj +1805 0 obj << +/D [1801 0 R /XYZ 65.161 743.607 null] +>> endobj +1806 0 obj << +/D [1801 0 R /XYZ 56.693 699.628 null] +>> endobj +1807 0 obj << +/D [1801 0 R /XYZ 65.161 700.311 null] +>> endobj +1808 0 obj << +/D [1801 0 R /XYZ 56.693 656.332 null] +>> endobj +1809 0 obj << +/D [1801 0 R /XYZ 65.161 657.016 null] +>> endobj +1810 0 obj << +/D [1801 0 R /XYZ 65.161 646.057 null] +>> endobj +1811 0 obj << +/D [1801 0 R /XYZ 56.693 602.078 null] +>> endobj +1812 0 obj << +/D [1801 0 R /XYZ 65.161 602.761 null] +>> endobj +1813 0 obj << +/D [1801 0 R /XYZ 56.693 558.782 null] +>> endobj +1814 0 obj << +/D [1801 0 R /XYZ 65.161 559.465 null] +>> endobj +1815 0 obj << +/D [1801 0 R /XYZ 56.693 515.486 null] +>> endobj +1816 0 obj << +/D [1801 0 R /XYZ 65.161 516.17 null] +>> endobj +186 0 obj << +/D [1801 0 R /XYZ 56.693 480.702 null] +>> endobj +1817 0 obj << +/D [1801 0 R /XYZ 56.693 454.325 null] +>> endobj +1818 0 obj << +/D [1801 0 R /XYZ 56.693 414.438 null] +>> endobj +1819 0 obj << +/D [1801 0 R /XYZ 65.161 413.88 null] +>> endobj +1820 0 obj << +/D [1801 0 R /XYZ 56.693 369.9 null] +>> endobj +1821 0 obj << +/D [1801 0 R /XYZ 65.161 370.584 null] +>> endobj +1822 0 obj << +/D [1801 0 R /XYZ 56.693 326.605 null] +>> endobj +1823 0 obj << +/D [1801 0 R /XYZ 65.161 327.288 null] +>> endobj +190 0 obj << +/D [1801 0 R /XYZ 56.693 291.82 null] +>> endobj +1824 0 obj << +/D [1801 0 R /XYZ 56.693 265.443 null] +>> endobj +1825 0 obj << +/D [1801 0 R /XYZ 56.693 224.315 null] +>> endobj +1826 0 obj << +/D [1801 0 R /XYZ 65.161 224.998 null] +>> endobj +1827 0 obj << +/D [1801 0 R /XYZ 65.161 214.039 null] +>> endobj +194 0 obj << +/D [1801 0 R /XYZ 56.693 178.571 null] +>> endobj +1828 0 obj << +/D [1801 0 R /XYZ 56.693 152.194 null] +>> endobj +1829 0 obj << +/D [1801 0 R /XYZ 56.693 111.066 null] +>> endobj +1830 0 obj << +/D [1801 0 R /XYZ 65.161 111.749 null] +>> endobj +1831 0 obj << +/D [1801 0 R /XYZ 65.161 100.79 null] +>> endobj +1800 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F95 923 0 R /F52 695 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1834 0 obj << +/Length 2077 +/Filter /FlateDecode +>> +stream +xÚÅY[sœF~ׯ */LUhÓÜÉÓú¢Ä»±³Š5•J•“‡虡 4K7‘Æ¿~Oß`JRÖµö@7ô9ç;·ï ß98¾óÓÕ›íÕ«cßÉQž‰³Ý;I€’ÔÉpˆÂÔÙ–Îg÷­)átã±ïþÂåúrÏz}!Žfó+Þ0öEßü~ûaóçö_ ÆÃåq¬O»§šò#¥‚ËmŽ ¤'¡”%)JƒÌñb”§F~èÃiæ¾Ò?8Hä‹W×Û«ÿ\a8Þw°'(ÉC'Í1JüÀ)š«ÏúN { Šò̹SO6NŒ}„ \×ÎíÕ¯W¾AŸ!88@9ƱTÊ%(ƉV*U:Ø—œÏö}(ª úaã…Qäb”F(4Oát‚ ù™>u{¬ ¸ýô?|?¸ßàصÐsÖ˜­Ý&ðÝá`Ö«vá%7˜‰F¯¤ÈŒS(Õº™gÝp‚²T"¥ž9V‡c ÿDÕ^}º~ýîãõŠ=^ò“ؾ4ƈŒ†sp#¿,QÛ#7àÜ\ÎZÎûíÇϵ‹D^©·Q†p4êu×W²b U’.H${ÎìÃ6Ç85"湬zª:Ë9ñWäç1ðm{"’ÕÊ Y‘û`à¨è8›Iu+À–ÝKóxÇò‚0K“õi3C^ßU⨯äã­‘†±;xaZ<à RxÊ%­¨¾–•ç½¶·’Õ8\H²îèt5‡>°kªj6Øep,v‡.ͪæÕüÕ™mËÄÑÈâ@¹KÒm”™£šª°œ•“(®Ù&(ðL".¸yÁ T–©B T2>ImCæP‹®7Cù‚JÈROæÌï°cœ-›Ýw8ÃyŽãçSMz3ìž›÷o™ŒIÛ›M“eÓ&;~°0gÆL^—lg?nT‡JX|®5\ãtCÚ/|µÛv³«¡¶ŸTz±ä ZîŠ;göÀ³À¤AxYk‹ƒ‰q°Õ0ÕZ`Y¥Œr),ËÖg^ÃM¥»<|þŽ;±¢+°Z\Š>&°?¢ +øµæ«×[ÑWšêIX·ØüP}%zå©O›$vÑS¬Ÿôî Ǥ’Ã-¯´Ó$Ù +(ÅÉúÙúKNbµ}2êó1 ìªE8\ðç +Ü@W™YüP•PŽõ¸gÃX•fjÏù4hÎ&ˆSgµñÒ@WúóH]`ðU ß0Y¨'·×r&°¥D®p2@ÍB/ëyHÏá²îõò¼À†ÊKµ52XU®…5ÚòÁh«$fÿŽáµ<ëNñ··zhÔ‰FzKʲ¶6"Ì^ä±þUé+eˆ¾ ~Wâ\ÕVºéeNTçÆöØ0®éâèb‡üöP_>l?^¢ÖÏ~{{k,¸` $Ф"½p˜ÿƶ„,íþ6½2_€hÊqÏ›Ï}#ÿ™1K¥(¢‘RIâ¿ÆsŽÜ‡ð‰$~Égpš"Fß\ÙšHÝ2HU®ˆQ’> endobj +1835 0 obj << +/D [1833 0 R /XYZ -11.232 900.716 null] +>> endobj +198 0 obj << +/D [1833 0 R /XYZ 56.693 759.068 null] +>> endobj +1836 0 obj << +/D [1833 0 R /XYZ 56.693 731.272 null] +>> endobj +202 0 obj << +/D [1833 0 R /XYZ 56.693 684.614 null] +>> endobj +1837 0 obj << +/D [1833 0 R /XYZ 56.693 648.51 null] +>> endobj +206 0 obj << +/D [1833 0 R /XYZ 56.693 618.892 null] +>> endobj +1838 0 obj << +/D [1833 0 R /XYZ 56.693 582.788 null] +>> endobj +1832 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F52 695 0 R /F93 909 0 R /F57 739 0 R /F102 977 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1842 0 obj << +/Length 2158 +/Filter /FlateDecode +>> +stream +xÚÍ[ßsÛ¸~÷_Á¹>Tž©ü @0}:'½´¹Ü]»37“Üt` +”8¢•¤ì8}—"åH”d-EÑíC"˜‚‹Å~ß. õ&õÞ]\ß^¼úIR/$¡âÊ»=ʼn +<Íw;ö>>ÙÔšÂ^^qIG¿ºÒu3vyÝ(§Í—o]tíܬþã÷›—ܾ‡a®#¡”µ´›ò1µÅÔÚ²¨¾†Ñ™§at%ªÑ}€kïJ’0hÆ zôªþ`\U?¼øÛíÅ.ˆ§ó¤"*^2¢(÷¢ùÅç?¨7†ï@â‡Ú{Xõœ{’QÂ…‚vêÝ\üó‚´ÄZ¦FU­Ëízª±KSwÉåè!É&õ£¤±‹©?Ò¤(ë–‹ëÏhj²ÉÚzåÔ4_OÍ%§£ûK&Gð;k³º57ãæY‘d‘mÙ›‘À'´nçõ*‘•mÖ“‚q&Èp5%X !ˆ®l]Í&¶ÕÝû|Å(¥£w6+m¥ÏײY£M»€î¡äq“lÍ7ÏÒ}ŸäjlX‚ïc3í“ ¨Vo5ö¤Rt¯’>h(ĺ_äz™&Ì+'¡ŽIó}á\¶Ì Ê®œÙ¯tÐÄWz­Â/ æ_¨¤åþ§V`ê›yRN__^1¤.2©}5{$_çé_뿘™“ÔÖŽª±ªwÛܲ€{JJBÙ +ÕsIO¾ò8 uèåÖ‹7\~[Úþ§»€e©ëjÁ¬êÝW¾$L±¶|IauÀŠ˜6é@‘‡gPv%0ŸxuãSÃ[Ëü¤x@„ÏêÕÎìÖgìʬUËûs’O¦É7\çÚ?p}ãÜÍq=ÿ‘>š×õÚÌ’ÜÝow>î“>#lÕÃ'|$mÅ4aò˜šež”ßjì½·&+\Ö‚§Í*xbñHA­‡Ã£ ì4[òû᱿²ðH)‘¬É!~í¸ëª%þ¡y¸ëð££YæR;žØ9Ä™¢õóÑé2ô Q÷—#‚«üÿ­Ë&U|žàÏ–û›þ;ê‚©@%D€„ úÃ!`[~OôV)xoòîd¾H“8iÁà Õ¿™&™-Á¦Ì(SS&.k£ Ÿ>S/ŠHc%å' ä“»³yÙ@¤4åNHï7r¸æYdvŸ-ÊÝge¾ûÌÄõ³:%–Šù:$šj_(…Ô’1úÔbu ¹ l"ÂÑJ‘z8°n‰ï‰Õ¾ªv€*U°-ÓOÁ +»HUª½V rW‡cÚ¼Ú¡dol­Žw.ʼ­Ça®pH™ËÅÂåHòd2-;Ø¡¥ÄóS#ÕHa»»4ÕŽ÷T¬’– Æ‚[Õ€†}%`uE€ï­üôÛ3…õ¿/Än~@e¾/ÏV`!X‡³¦pJØxkî“qMëor3·ù:hÄΕ™+-ùZ`Ó*¿"': Q‹)#êmñýˆº·ªx¢¡$ZèC»ŠƒÌ`pÝ¢©fçåÑÈeq’#k«ªä9'´öìÜÆmNüóaÆE–#Ò$›Ù ¹ —´7q½mÛѢ¡ŸµJ図•šh`‚§Ч aê^]¨›>WH’šm†£ó“À¶üž,Ð[Y hI¨V0–OtÖÖ,J·@ú`î"[è\)‰qýÀ¹‹FKî VÙ³Â`YØx™âúÚ> endobj +1843 0 obj << +/D [1841 0 R /XYZ -16.307 900.716 null] +>> endobj +210 0 obj << +/D [1841 0 R /XYZ 56.693 733.012 null] +>> endobj +1844 0 obj << +/D [1841 0 R /XYZ 56.693 704.626 null] +>> endobj +1845 0 obj << +/D [1841 0 R /XYZ 56.693 657.617 null] +>> endobj +1846 0 obj << +/D [1841 0 R /XYZ 65.161 658.3 null] +>> endobj +1847 0 obj << +/D [1841 0 R /XYZ 56.693 611.465 null] +>> endobj +1848 0 obj << +/D [1841 0 R /XYZ 65.161 611.475 null] +>> endobj +1849 0 obj << +/D [1841 0 R /XYZ 56.693 563.968 null] +>> endobj +1850 0 obj << +/D [1841 0 R /XYZ 65.161 564.651 null] +>> endobj +1851 0 obj << +/D [1841 0 R /XYZ 56.693 517.143 null] +>> endobj +1852 0 obj << +/D [1841 0 R /XYZ 65.161 517.827 null] +>> endobj +214 0 obj << +/D [1841 0 R /XYZ 56.693 480.676 null] +>> endobj +1853 0 obj << +/D [1841 0 R /XYZ 56.693 453.123 null] +>> endobj +1854 0 obj << +/D [1841 0 R /XYZ 56.693 407.355 null] +>> endobj +1855 0 obj << +/D [1841 0 R /XYZ 65.161 406.797 null] +>> endobj +1856 0 obj << +/D [1841 0 R /XYZ 56.693 348.33 null] +>> endobj +1857 0 obj << +/D [1841 0 R /XYZ 65.161 349.013 null] +>> endobj +1858 0 obj << +/D [1841 0 R /XYZ 56.693 301.506 null] +>> endobj +1859 0 obj << +/D [1841 0 R /XYZ 65.161 302.189 null] +>> endobj +1860 0 obj << +/D [1841 0 R /XYZ 65.161 291.23 null] +>> endobj +1861 0 obj << +/D [1841 0 R /XYZ 56.693 243.722 null] +>> endobj +1862 0 obj << +/D [1841 0 R /XYZ 65.161 244.406 null] +>> endobj +1863 0 obj << +/D [1841 0 R /XYZ 65.161 233.447 null] +>> endobj +1864 0 obj << +/D [1841 0 R /XYZ 56.693 187.181 null] +>> endobj +1865 0 obj << +/D [1841 0 R /XYZ 65.161 186.622 null] +>> endobj +1866 0 obj << +/D [1841 0 R /XYZ 56.693 139.114 null] +>> endobj +1867 0 obj << +/D [1841 0 R /XYZ 65.161 139.798 null] +>> endobj +1868 0 obj << +/D [1841 0 R /XYZ 65.161 128.839 null] +>> endobj +1869 0 obj << +/D [1841 0 R /XYZ 65.161 117.88 null] +>> endobj +1870 0 obj << +/D [1841 0 R /XYZ 65.161 106.921 null] +>> endobj +1840 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F52 695 0 R /F93 909 0 R /F95 923 0 R /F98 924 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1873 0 obj << +/Length 2513 +/Filter /FlateDecode +>> +stream +xÚí\koã6ýž_!ì»P3$EêÑ.ÁtºÛ™Í&^`iQÐ6m £‡W’“L}I=’H¶ì«PJ:E?E±¨Ëkòžs¼2¶Ö¶¾?{=;»x˱å#ß¡Ž5[YEŽkyÄF¶kÍ–ÖÇÉ• ¥Èäù”r<ùä2+/WIZ^ä›êæ›dñ:I>•ÿüïúÝùO³Ô4SBÏy)í:ÿÊl#ežéÛjvbyjvÇÖ³3ÇE.õ¬)G¾[ÍoS%Ðõ&åBýàÙw³³ÿŸ%[Äâr|Ûr}‚L­Etöñ'l-Õ=¥b¾gÝ##‹Œ¨í¨ëк>ûÏ®V7V„Zj˜ËýbIjáÌG;¥R>² -êǬS‚1žücöþ]õ½¯ªZÊíTOÏê[%a˜œS>¹ âuùÑb#âu½ÆqNñäæœðIõÄ\ʸ¼ŠÄ²ú,O6¢˜[iû07ñr]ý‹¹7yÐ:ˆaRZ$µì,ˆ²µÏ¹ áò:-­5WcJÕžµƒj ò±]Jý‘RÞWhZì>Ó:xˆ9^­ÂU2—i~>uÔª^çâsžÄ_ŸO UÿnE*"tw+çß”÷—Éb® ÝeaõI9DÆyõ¿þÖúv9½2G­þó}Ó”ù—ZŽç!ÏåÚôç+³dŽE‘ïùV*­ÕcËiH;üéþ®‹|âÔ”‚‰m*Ÿ#â¶|ŽÕž©µ…ÌðUò©?€²…Àtm•WÌ›_+îD1+màÕrÙ°—}9 +wz{³Ýv›(k ÖÄx›¹Æeè“ÚÖ÷ŸšD7 Ù +³°o&ß*—wÀ‘Ë •‹uM(¢ãï¾S®<Ã)Âä)dú^ì”-ÿRráRÄÙ›.6»øÓ´t;s‘f}h’)…ÆdI› ìÓñX²)ß%•íÁ’¶Š&\ÿž%¡@°a±¼…²Ø¶Ÿi7;†òF†@Ú»aãñîö±üU§.ÅC…å÷Ðÿ#=\Â=šÀjA]üåjNÕbDl{<85åÂÉXÙp¢6b´DÓì•ÀqÄZÆ2{¡Äq»ûÆ]¾ÝQräØÈM°Þ(w¾+=‚;/ñÖ×ȱJÓ\6ž‘7幩²Ý&M¨ +H+`Ž»êÛTÞ™ŠW¡Ø vÕ£ä8]E"ý´Û±xh¶‘O&öαA¤“€=r¾èþê*¹ wK™½Té,WA³H—=྇³“†Î}QÂG3ô–|3C7W¶›+My]sg/ÎýH¾mC‘Cm®Gç"ˆ¡b—Ë@§r"„æ<ë`1°{3uW=’.òñÊ&-ù†6o¬,Üæ¹gUÙäZyêíU›,‹ÿL0áÄÃÇ)¼mÑ÷{Ä÷ ‡o)CÔ/>TÊåÌEŒÜ—rÙÁRî{oÅ9Qá›J”ñDf¿íºn¤Õ]Ô’cd“k»6GØ3©í¾ÔjÈP‡%yTDe™7Rñi]–xTÓZSx#Þˆåæ:ˆÒñا%ߌ}Ì•…³s}ÄIÅ>—ÐlNhºg"bèùÛUŽnç¶ê•B}fš¬Vûl)ÀLP“JÛ] E¤²GÜ><`šò cªì><\ET«é!^€þHlö§ ž™ãÊao¼enÊ7\fce{ðwQáùõÂowé6É ©d6ì1Ž¼Û†Á"ÈÃÏÐì"Fô¯fmtþ¥;ßg‡3N¾œn÷çHZ.Þ¨ÞEUÆld3<ð5å‚ÏXÙàc*Ø®›H¶©ìQhߦÉBfàzb¾I“ÝèÏòyx Æ…‰C¿9ÎËk8,Xã\ë] +%¥œc÷5b›"{Dnˆ74aSU{X°Jt׫ +I»<‰D,DØ"ñÓ':shH,¶[‘Êì&^˜üŸs¨I¸ì +ê=QÏY™°}ŠêHQåT òr7?R‹à/_‹ÛƒþæzÌþ%õXY +›p­ ÷ôòƒ­‰‰øã•lJÔöŽFÒMñf$m¬*œ¤meô«HúRäмv•&lä¥ØcñIšC7¡µ‚WËd>pOÙÚU±Hnd:0Á‡ºCè +ò\ëA<øj¾ ÖA=Wù®<†Ézº›xÈvÉs6‘QŸ#•Ë–ó ¾È¶rq¡™ÿçTª{™>QÎ~ÖŸ¢´nÔ½· +B™]ÜðÂÂÐ]¶dÛÊÍðGê0OùDu‰ëcmL”ß_‘ò +FØÔS+áX/¦Ê…ñ»%ߌ²Í•…s6u]äQÖ›³õÙh¨hšÎÑá»à`kÜ8â4æ­? q;}D¼ Áµõ(&«E»uÖ|º/äÕýyv{™OÃÙ±wÇ+6·ä¢ÍXÙhSszuZP¿£sàä–#ü×îìñàIñߎ4Kî™ úðïÇw?Nn¡F ŒJ²$ÚkD˜W½oÐã\„rŠ2^Á¾%ßÐTGS¶Z FÃÇ+>µä.†©²Ý(e ù¬ŠË¦Çq’m’]=<”+©"µ…´C¼‡ƒ†æàó_¾º ]°”œBÄ£4{âøOf¹Éû.§éÇöó¬o®P‘ˑ’Ž2™²y|(“¨ïfGî΃y$ÁŸt`µ>/é >Cž=^[hK¾š+ ƒˆï!B«.ÿ1þTê˜~h5øÁérÑl}^*âVû1Ú‘s¹úEp?øuÈ[h@·é|¿#¥¸u¼Ë=Û ­Jªß8Ô/m}$ž!Çÿ2ð]ƆŸø·ßJ}yà%eõl4ð6å‚×TÙnðR‚yaì¾”#£ ü›$ß.B‘A&¯Eþ ®‡C–Æ©FùCŸ÷‡ WGÞã÷×SÐÇ s?ÍØUPïW†Zò ™ÂXY@!ÏÓïK;Š•0b¼"ß»»ÀLýåÏyƨ8òþo†ïoŽUwccªC?L«sEÇÊïÒþ +v™Õµ +endstream +endobj +1872 0 obj << +/Type /Page +/Contents 1873 0 R +/Resources 1871 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 1839 0 R +>> endobj +1874 0 obj << +/D [1872 0 R /XYZ -11.232 900.716 null] +>> endobj +218 0 obj << +/D [1872 0 R /XYZ 56.693 759.068 null] +>> endobj +1875 0 obj << +/D [1872 0 R /XYZ 56.693 738.489 null] +>> endobj +1876 0 obj << +/D [1872 0 R /XYZ 56.693 691.479 null] +>> endobj +1877 0 obj << +/D [1872 0 R /XYZ 65.161 692.163 null] +>> endobj +1878 0 obj << +/D [1872 0 R /XYZ 56.693 644.655 null] +>> endobj +1879 0 obj << +/D [1872 0 R /XYZ 65.161 645.338 null] +>> endobj +1880 0 obj << +/D [1872 0 R /XYZ 65.161 634.379 null] +>> endobj +1881 0 obj << +/D [1872 0 R /XYZ 65.161 623.42 null] +>> endobj +1882 0 obj << +/D [1872 0 R /XYZ 65.161 612.461 null] +>> endobj +1883 0 obj << +/D [1872 0 R /XYZ 65.161 601.503 null] +>> endobj +222 0 obj << +/D [1872 0 R /XYZ 56.693 564.352 null] +>> endobj +1884 0 obj << +/D [1872 0 R /XYZ 56.693 536.799 null] +>> endobj +1885 0 obj << +/D [1872 0 R /XYZ 56.693 490.184 null] +>> endobj +1886 0 obj << +/D [1872 0 R /XYZ 65.161 490.472 null] +>> endobj +1887 0 obj << +/D [1872 0 R /XYZ 65.161 479.514 null] +>> endobj +1888 0 obj << +/D [1872 0 R /XYZ 65.161 468.555 null] +>> endobj +1889 0 obj << +/D [1872 0 R /XYZ 65.161 457.596 null] +>> endobj +1890 0 obj << +/D [1872 0 R /XYZ 65.161 446.637 null] +>> endobj +226 0 obj << +/D [1872 0 R /XYZ 56.693 409.487 null] +>> endobj +1891 0 obj << +/D [1872 0 R /XYZ 56.693 381.933 null] +>> endobj +1892 0 obj << +/D [1872 0 R /XYZ 56.693 334.923 null] +>> endobj +1893 0 obj << +/D [1872 0 R /XYZ 65.161 335.607 null] +>> endobj +1894 0 obj << +/D [1872 0 R /XYZ 56.693 288.099 null] +>> endobj +1895 0 obj << +/D [1872 0 R /XYZ 65.161 288.782 null] +>> endobj +1896 0 obj << +/D [1872 0 R /XYZ 65.161 277.824 null] +>> endobj +1897 0 obj << +/D [1872 0 R /XYZ 65.161 266.865 null] +>> endobj +1898 0 obj << +/D [1872 0 R /XYZ 65.161 255.906 null] +>> endobj +1899 0 obj << +/D [1872 0 R /XYZ 56.693 208.398 null] +>> endobj +1900 0 obj << +/D [1872 0 R /XYZ 65.161 209.081 null] +>> endobj +1901 0 obj << +/D [1872 0 R /XYZ 65.161 198.122 null] +>> endobj +1902 0 obj << +/D [1872 0 R /XYZ 65.161 187.164 null] +>> endobj +1903 0 obj << +/D [1872 0 R /XYZ 65.161 176.205 null] +>> endobj +1904 0 obj << +/D [1872 0 R /XYZ 65.161 165.246 null] +>> endobj +1905 0 obj << +/D [1872 0 R /XYZ 65.161 154.287 null] +>> endobj +1906 0 obj << +/D [1872 0 R /XYZ 65.161 143.328 null] +>> endobj +1907 0 obj << +/D [1872 0 R /XYZ 65.161 132.369 null] +>> endobj +1871 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F52 695 0 R /F93 909 0 R /F95 923 0 R /F98 924 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1910 0 obj << +/Length 2325 +/Filter /FlateDecode +>> +stream +xÚí\moã¸þž_¡O…4 ß)n‹ÝÞîõzÛÞu“+Ø[,d‹¶ÕèÅ'Ñɦ¿¾¤%'¶%Th&w@>E‘¨áh8Ï3äph-"}{ôöüèô=ƒ‘’cÏ#ŽQŒ ":O£O“*WI£ŽO0ƒ“UZ5íå¼ªÛ ½ì~SÍÞVÕEûÏÏgŽ?ŸÿÃts‚ŒµÒÎôu®š¥Rº±Mï(ŠMïœØÞ)@à8:a@Š®BŒ@ONÛ?sûâÑ»ó£_#1¸$‘pˆ£Yqôé3ŒRóÌ(¨Œ£«MË"bL¸¹Î£³£ÁÎШh/íŸow${ #A%@[Éö>ƒFOÊ# d,£ZEóAQ® *¶´‚‘mí+ŸÄQ_>ƒ;õ°kf$–Pv#°^DíÅÇÎÍn|n<±Sœ"@Iç=ß«ººT–}:áN¦•^ºµ<{÷ƒ[äLoˆ°iÙ¨")u6s“Ûèz=ÓëÚñ˪¹[»Ùr]^¨Ô­±úq=uì~­Wkí8׎½—ͺÎÊ…[k½Lzýï¹Ù7l†@q`ûò=æ­ì€·»rôÀ$¿J®GçVeêìXŽ Ku@À¶óë÷½Dní²Ò"ÉÌ‘Ï~þûù??Œ ˆ½¦Æ @{ãqL!°q×`˜Ú—`ÊvÆ€ à€|O¼§)|UÁ.0ŒÅ-»l'ˆ=w{ó¦»s×G'ïVý¨ô¨WrIA(ØHôäû …·²ƒ–çR&ekù“A ·½¬ÖyêJW³|ªßQw·ÿ<ìl=Æ6wþò°ÝOÝîÌ=ÏruØS›@­êÃÏ­¦ÍXÇfÊp8ïË÷±·²î„Êc³Ö¥-ªí|œ‡Oï¡ßaŸŒ51Zµ}ùž£æ«ìð xŒ^©÷•zÔËÛŒK0ïË÷±·²#¨—S 0~îô…KåècÙÜ5¹¢ažVníÊÊq]¿L\“{šé¬rüò"©/Ö«±0`1 Ô+å;ð÷nÖ½Ë_sb¦ì„´ö ÆlOåžSí j`Ûø{•éåñæcß'Ë|aøäÍq›‰L«™õ<ðµÉÿÔ¶˜fåi³R³SeW_j•ä¶Á{ ÔÓ~£ …œVu6b ë×6uo>öVKÀÌe§Ð/¦QÁ›+Ô^¹e86ËFÃåÛ9€£€3•}ùž$ç­ì’ÃæÝv ÿš¦ÎÙ©ÒZÕŽØ]¯VUíH }žÎdU—ªnœr[yÚAÖTÎJ×X?gÀpà(ªivà™ŸÝâsjø}V¦ý¹Ñã`GpLŸ“i™$@ |X¦µ”™Nue½f‡Eólzº%á!zýFý7ùÏúLÕÙTzÞ5Ú¾œnYlf6,Û2aÌ-Ã¥äzòýØÖ_Yw¶eB(žÀ·«:+29O—‚P®*¦j„Ή£®F ëúj^•c7™€ †øYÙ†JËß Ùh€¾ÌÖ¾wNžl¨yˆã€lƒí„Û–êÉ÷doeG° !31žmÂÐǺQý¹ÍÙ²‰uÏlž¹Nœ¬ƒWEö¿Ä}˜'ןBn1:–¥°qøYI +ryü,,µ»ú4Í›Æ QsÏt˜Í‚³•"lÅyЊ¯ž|?–òWÖ¥ì8ÞT|a©¿ 3]\¹/uR/”¾OüN~ßK*v'ÝÕ¹ Z Õ“ïé{¾ÊÞõ4»‡[5ãÛÒ§"Ϭoç?¶LtòÐ;MsßÀ~~ãýwÞõ;ú<ìZ‚ý©qœ)ß‘î¿ñæªTu¢]#üÝ2§µK”Ó µK=ùž¦lg f&†"Üú¼'ßÓÁ”íŒA1 (\éAO¾§1¼•˜)»­(zžZ.J ,\š¾'ßs,|•¶<¡7E8S†€HÎxûò=ç«ì°ñ01Ñ¿l5Fràšg½²]ï…ê¸òÇUòÕÒuwúÐr¯ÑX&ë—ëÇØS*YÚŸÇ<X(ƒV^ôä{ÖWÙaÀ" &/ ØŽÖCâ!W’¯8ƒ3"Ûu_(œõäûáÌ[Ùaœmô¢¯ñáv?üøþÐPx…ë8¸2@c,Ž-œ“»ÙpÂÑm6\ÞgnÍ÷|¬ÖeªëlÕeÞͪÃèÄÌ;É^çÛCÒó*Ï«cÌ&W6¯¹¹5[&åb{¬z™c8¹cDˆÕòß…¥f<Ú#6cöÿ6¼œö +endstream +endobj +1909 0 obj << +/Type /Page +/Contents 1910 0 R +/Resources 1908 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 1839 0 R +>> endobj +1911 0 obj << +/D [1909 0 R /XYZ -16.307 900.716 null] +>> endobj +1912 0 obj << +/D [1909 0 R /XYZ 56.693 759.068 null] +>> endobj +1913 0 obj << +/D [1909 0 R /XYZ 65.161 752.393 null] +>> endobj +1914 0 obj << +/D [1909 0 R /XYZ 65.161 741.435 null] +>> endobj +1915 0 obj << +/D [1909 0 R /XYZ 65.161 730.476 null] +>> endobj +1916 0 obj << +/D [1909 0 R /XYZ 65.161 719.517 null] +>> endobj +1917 0 obj << +/D [1909 0 R /XYZ 65.161 708.558 null] +>> endobj +1918 0 obj << +/D [1909 0 R /XYZ 65.161 697.599 null] +>> endobj +1919 0 obj << +/D [1909 0 R /XYZ 65.161 686.64 null] +>> endobj +1920 0 obj << +/D [1909 0 R /XYZ 65.161 675.681 null] +>> endobj +1921 0 obj << +/D [1909 0 R /XYZ 56.693 631.176 null] +>> endobj +1922 0 obj << +/D [1909 0 R /XYZ 65.161 631.859 null] +>> endobj +1923 0 obj << +/D [1909 0 R /XYZ 56.693 587.354 null] +>> endobj +1924 0 obj << +/D [1909 0 R /XYZ 65.161 588.038 null] +>> endobj +1925 0 obj << +/D [1909 0 R /XYZ 56.693 543.532 null] +>> endobj +1926 0 obj << +/D [1909 0 R /XYZ 65.161 544.216 null] +>> endobj +1927 0 obj << +/D [1909 0 R /XYZ 56.693 499.71 null] +>> endobj +1928 0 obj << +/D [1909 0 R /XYZ 65.161 500.394 null] +>> endobj +1929 0 obj << +/D [1909 0 R /XYZ 65.161 489.435 null] +>> endobj +1930 0 obj << +/D [1909 0 R /XYZ 65.161 478.476 null] +>> endobj +1931 0 obj << +/D [1909 0 R /XYZ 65.161 467.517 null] +>> endobj +1932 0 obj << +/D [1909 0 R /XYZ 65.161 456.558 null] +>> endobj +1933 0 obj << +/D [1909 0 R /XYZ 65.161 445.599 null] +>> endobj +1934 0 obj << +/D [1909 0 R /XYZ 65.161 434.64 null] +>> endobj +1935 0 obj << +/D [1909 0 R /XYZ 65.161 423.682 null] +>> endobj +1936 0 obj << +/D [1909 0 R /XYZ 65.161 412.723 null] +>> endobj +230 0 obj << +/D [1909 0 R /XYZ 56.693 377.004 null] +>> endobj +1937 0 obj << +/D [1909 0 R /XYZ 56.693 350.451 null] +>> endobj +1938 0 obj << +/D [1909 0 R /XYZ 56.693 308.446 null] +>> endobj +1939 0 obj << +/D [1909 0 R /XYZ 65.161 309.129 null] +>> endobj +1940 0 obj << +/D [1909 0 R /XYZ 65.161 298.171 null] +>> endobj +1941 0 obj << +/D [1909 0 R /XYZ 56.693 254.06 null] +>> endobj +1942 0 obj << +/D [1909 0 R /XYZ 65.161 254.349 null] +>> endobj +1943 0 obj << +/D [1909 0 R /XYZ 56.693 209.844 null] +>> endobj +1944 0 obj << +/D [1909 0 R /XYZ 65.161 210.527 null] +>> endobj +1945 0 obj << +/D [1909 0 R /XYZ 56.693 166.416 null] +>> endobj +1946 0 obj << +/D [1909 0 R /XYZ 65.161 166.705 null] +>> endobj +1947 0 obj << +/D [1909 0 R /XYZ 56.693 122.2 null] +>> endobj +1948 0 obj << +/D [1909 0 R /XYZ 65.161 122.883 null] +>> endobj +1949 0 obj << +/D [1909 0 R /XYZ 65.161 111.924 null] +>> endobj +1950 0 obj << +/D [1909 0 R /XYZ 65.161 100.966 null] +>> endobj +1908 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F95 923 0 R /F52 695 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1953 0 obj << +/Length 3097 +/Filter /FlateDecode +>> +stream +xÚí[ësÛ6ÿî¿‚Ó›¹“f"„ß¹™›I/¦MŸ£Îõ&éX„$N(Rå#Žû×ß. DZŽi+ºÞ‡|° â±X,~»Ø…–®³r\çåÙ÷ó³Ç/×IXŠÐ™/P°0rbî1/ræ©ó~r¡r%k5‰À¼)USqYVThÖ¦ñY¹ø¾,?Ò˯ï^O›ÿÓÌ8gIµwÍu®êµRMÍ0;wb˜=ôpv?ŒX$bg°$2ó{>ŒâÉczpâÀ³çó³ßÏ8wî! ωÎBW8‹ÍÙûß\'…6`€ùIì\éž'à.^åÜywö¯3×HÂíID8Ð- +-KÜOwCb*a‘æÂsÞϸ뺓ó©çNd%7vuû²QŸyB¹•Û²Ìór*‚ÉUV¬¨j±–ÅÊJz-§Â|šò`bF\*UPi#SS×”»íÐsÏ»¹yì³(Âuë¹··ñèÅÌ ºnuV,Ô`—9‹|æR¹"l°¾,fBxŒ{ +LʉÖ!‚¡Ì™Oìš©|5å Çš^peø”iJ…,XÙ6Û¶a—ªiT5 ‚ ÛÖLò2W¦—^£ÂVß<†]nÖÔš5†zª–z²6o¨ân…Ì[ÃJ­š>¨ªd@Š¯–¦É®a0¶¶ßÉ9ªLÌü0î«Ín-3/à“¬¦gQ3dVçEÑd¡ªFfµmdõ±Ýî÷µ¹TiŠÒµ¦§’‹5•VªP•llà–Æm%n VÕ­íÛ¬eC¥ó²nÞ-ªlÛPoZ µ-«rcû«Õ–a6ßÖpµIðB0/N, 冧€ë.ã¸Ú8ùÜ7\ú :´¬»ÊòœJï¼MMµ¤~E B2£qÿð© +ÀæBmT¨Á^©ª³U‚Ò³”†Þf[•¨§VY±«^8¶þÞʾ¡É€ÓG-kCž˜ö]bšê.¯m·a§[PëÅpÞ [/baÐÁ6?ˆ’É¿§ þÓ‹7¯Þ¼|BÎɪ;3ŽÆöÄÔǧˆü‰Åa¦…5¸!3ÛggTðŒù5•Ê‚žK%›¶ÒLjHÅz½X¨·j‘}p]± w}ÁsU¼Á.i$ïå›_LÛ†°3ô +Ãã)@˦ãÖ”Ê%=¿[ä²>›:[|‡'T0y:åœOæÓk³Ç¼’ »@a]›JÓ¨O,¤ªÊp÷Æ”QÁkØ0Þ`w*6Gá1„}z+X0€ÂâuÙR¡SýFÇ“f´ˆ6JÜm¼vjNCИaéÒ©”L±Ã!Á”î±'¸Þc|Ö×u£6u¿òjiýÂ@êöö_»=Å—Ážbp\ÓKfègEÝÈxD¨6fZ¤é$¿ÎŠös;Ô á“« ‰ÕDVõú±¤‘b Ö®åd'ýFXOvrØUÆv? Dîs/´§ˆ ì>àp\O2Ž7ô*y0â|?Öã¶_fíŠ@L‚É›·èìÌŸ?¡æ¹åzÏ/Ñë[þ×–PÏÄ„moDœ°Àû'¤5©™›°gtx"ÖèbÛžÑÅ&2ºØ`dZ` ž$ÌÉHïÙPp&¯ 'kiX,JzªŽwÃjAõ;–£>Ë᤭É1ßñM^¼¥ŠK¹øˆ©*RvpÑ–¹ù«ó à!ã¾íòÄØùˆ$IÂÿpWÙ’i\È¢/aªîïEÐÛ +Ú¢}‹Y Íä#a•=-ª¶(†‹ËãªÃð¾Çžu!·ì ã·TЧ¬fá] Ûšsi_(¡Š „1,A_€°8í^pž½ B',Œ²®M”ÓÉ`?ºKÂ…]ƒ‡È–³­Å6]ÒLf±ƒ+ǘCŒ¢ŽãÛb¬OY˜™.Jðsa©!aïyÝ”Lž„_UÖÀªØ¦Lû¼É‰&ˆÉâãe?þx©Â `)„Èc}àÂ+˜Áðà+å,÷îµÃµ7'!PŒìD˜cïcé€W>¤¸T€ÀÆÌ°‚‡–|f5ÁjåPáÂÜNôvÔ2î¹Ìõ ÈÍîõ€p“„߸ó¸Åãzê#b\׶¦Pöîžà1Žê‡Qø8‚êóÈžiVÁ!•ÅàVbÂÆÂ]x,‚ƒç¸ßò¼y/g.¡(xâÚþ3xtRå:Ü›¦.ŽU{µ‘YÎð_SÚ`òêï'œ¹Ü;úû1 <ðO¦þúÇ©ÿñÌŽW?ö˜çX<Õ¡ù((ÔÕW×} ¢[TêÀ˜ Áíö®ÊîæžQÁŸÕÏ84~˜0ZO†à>ý#|4³÷@p„÷|!ø\6ŽÛ_Œ&Fõ<—e>ò°ù"ù<ÏÆcRúg^Öª^qcË_„‡™ŽG ¸Žnô¿ÙúËœF>‚ï~ +±s<4¿,ÀßÆ¢;ò˵.¶Û¤»XuÑmy¿b»(7›²ÀÈÖöeëwIU¾]gF¨Á‹>Á°û%ðƒërà‹»]‰Si\´€¿ÜF1?],¢˜ÅBœì€Ð?î€9žÙñA²ˆA@ü[ü§É"ŒXžîêf@ÿHTËì­nˆ8ãÁ· ùÿ$Hpî'îé®nôDå±ÌÞŽÊÐeܺ=ß‚äoAòŸ$c~VâŸîòj@ÿH½<–ÙÛõÂáyß‚äoAò­Š"tþç ƒd …©°» Y¸èج&wŸ§E1}ž†t¾oãÈÃa3(€ýµsnÒ¬»h“^ÌW¦)Û âea31€nMlùïŸ)œ*(=Ðr®¿˜5h‚àUAIô}“xß‹ÝŸ ‚Û ¬i/fjÛ^š™e…é©«AþÔ@&øQõ“|ÏqM²Åìê8ÑVNMžsZ^*“î UôUôû §tÞ4Ö¿ÐDÖùªR{û· …ÛsO±ÃÏ*ÍäŽNÿn ¦ea¾Ø€fº:ÀjóùQ¼ûî¤>pMáÅÁ~&Éå@ +¦`éR0ÓrÑÚOâ¨K1pf>Üx~?¥´÷ÕcVÐ'<˜ÂùÔ\©Hˆöå¬RK2°×¨\¯A'¬LO­ñæ¦ÆB*¯ËáUÍþ'¬Kx‡‚Ç}„å‹ÃSgÖÂÎJSªÕ©¬±¡ù´j ¯P˜Û«¢QU¡¹•9U=ËVYc_ÎÛË<«×„jx×_Ví†^qï_=;a¾5¹ä`ª¦¢»'ÍfÚçβ_×å"뜒a†ÿÍORÓŽEØ>‹ZÞi[7Õõ4 &}&öÓWi4ySZm”—¥Ín:Ë¡•,ÖJfwòÀ•™Àok»+(ÜœÇÏŸ>ûùyO3}Øê»Ì “‡|×ú_â9ê +endstream +endobj +1952 0 obj << +/Type /Page +/Contents 1953 0 R +/Resources 1951 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 1839 0 R +>> endobj +1954 0 obj << +/D [1952 0 R /XYZ -11.232 900.716 null] +>> endobj +234 0 obj << +/D [1952 0 R /XYZ 56.693 759.068 null] +>> endobj +1955 0 obj << +/D [1952 0 R /XYZ 56.693 738.489 null] +>> endobj +1956 0 obj << +/D [1952 0 R /XYZ 56.693 540.31 null] +>> endobj +1957 0 obj << +/D [1952 0 R /XYZ 65.161 540.994 null] +>> endobj +1958 0 obj << +/D [1952 0 R /XYZ 56.693 494.012 null] +>> endobj +1959 0 obj << +/D [1952 0 R /XYZ 65.161 494.301 null] +>> endobj +1960 0 obj << +/D [1952 0 R /XYZ 65.161 483.342 null] +>> endobj +1961 0 obj << +/D [1952 0 R /XYZ 56.693 435.966 null] +>> endobj +1962 0 obj << +/D [1952 0 R /XYZ 65.161 436.649 null] +>> endobj +1963 0 obj << +/D [1952 0 R /XYZ 65.161 425.69 null] +>> endobj +1964 0 obj << +/D [1952 0 R /XYZ 65.161 414.731 null] +>> endobj +1965 0 obj << +/D [1952 0 R /XYZ 65.161 403.773 null] +>> endobj +238 0 obj << +/D [1952 0 R /XYZ 56.693 366.685 null] +>> endobj +1966 0 obj << +/D [1952 0 R /XYZ 56.693 339.175 null] +>> endobj +1967 0 obj << +/D [1952 0 R /XYZ 56.693 292.385 null] +>> endobj +1968 0 obj << +/D [1952 0 R /XYZ 65.161 293.069 null] +>> endobj +1969 0 obj << +/D [1952 0 R /XYZ 65.161 282.11 null] +>> endobj +1970 0 obj << +/D [1952 0 R /XYZ 65.161 271.151 null] +>> endobj +1971 0 obj << +/D [1952 0 R /XYZ 65.161 260.192 null] +>> endobj +242 0 obj << +/D [1952 0 R /XYZ 56.693 222.032 null] +>> endobj +1972 0 obj << +/D [1952 0 R /XYZ 56.693 185.911 null] +>> endobj +1951 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F52 695 0 R /F93 909 0 R /F95 923 0 R /F57 739 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1975 0 obj << +/Length 2206 +/Filter /FlateDecode +>> +stream +xÚÅ[YsÛ8~÷¯`ÍÃU5Fà±ûädrÌ®3G¬­ªx ’ñPxÄöþúm´%ÊŽAÓô¼˜Ðl4úøº¤±³v°óþäõüäÕ;†Å œùÊ ( +B'"òBgž8ŸÝO"¼³SÊ°ûkÙˆZß®ÊJß43ùs¹|]–[ýãÏ‹óÙ_óÁ2§„ ˜1Íí¢¹ÉD½¢©å4¬NœV<¹º„(¤‘sÊPšõ= ÃÈ}¥/„òÁ“·ó“¯'Øc‡8,@Aì9aLP€©³ÌO>ÿ…æ@äÇ‘s¥(s‡Œ¨À}æ\œüq‚&ðFÂ=t¼ýh™þü0ÿx®÷I1jàÕŒ`w-%_Ç°§_꣇‡:™Ï"ì–À%ˆÝºÝíʪ‘{Å.»v¡Ç˶ٵÍOrÜw¹¡mªtiH;‰`XK7J¢HI¤~ox­‰Bzˆ'‰HÐìÔ "w®ì¨øÞÙH hS‡ÒÔi½/aR =½…¨x#3^$wû¾`´øµMã:uš§ïªì9Öžºïö„újÞ7Úé­žcEz¹÷¢hÄu£ù´»„KW¶5•ùL?]´ùBiË•¾få’g]pløŒb÷ÛŒ0×ìÁèüvéd°üŸÊ¶HÀä;Í&ÍwJ¥ôºoòÈa‡ƒ·¤¼/2¡œËs/1¦ë¶Ò?©Ûˆ|—qe'ð‘ú¦XVe‘þ7iY˜'Œ#w¹á_6J3’Xú‘¾•Â–RZ%ZP5ÓÓŒtÞ¹9OľÂÐU¬T‰vöÈýQ_~—Ï󵨕/ûî… £{H¹|Â~Û‰â·ÕŒ2µû¥@¥ö²6"šû»´ª›[ej§JW‡ÎÂϤ‹ë:3ôà›¢¨%é@ü§ôh Ô=#®Ž\=$¤ZnÙª!µgvjÖz>s¯ª´iD¡§RCûûM³QV– +=䬶œïЃy¡F9}Ïšimè5Ū-–M_ ÉíK º#°üZ,ˬ͋ûŒx•&ÍÆÄZjtûæìü¢ pgå +BèL ~§GB¨â†5¿[Ýׯ>½=ûùã[tþËkHas“¤öM@âuOÞúP^V¢seuå@à)QŒÂ˜Â C]^›wè¶*³¬”¾w¥6®8Ô=7é|ªóˆ´bÝM³áÍã°c‚Im±=ˆ%(ôÕ÷•ÎøGÎOHž!‹•À ž›Šõn`†Ð;ŸO ÆX£®v‰{t‰Uy”<®“ƒ-Ûmt?‘Üã‘Æ:C®Mz8Ò ½[ƒ/ËQz„ SYIÄÚ£¿KJYOß ¬ªŒ|)C„ü êDø˜‚2Dv‰nrø ù>U_äi³ùÇì”PÜ¥£Wi‚®óLs‡—ÌååýaýU ©ãGRÕ“ej1?p N¢Ø©„³Ú/—xÝ?zÌ>dˆú¤[@3&’z,†H@úüc€ÒlVØ/%Óø„U «µ£o>™ÚòÀª·‚GˆQ“æßlÄr jߎyAxI“§…]‰X¥EÚXW~¶bh‹5¯Áp¿ |<> ØŽÂ—Ä®ØgÓbD±‚~€È8Fx2$Âé0âÿHŒ-ìŒðÀÀÝ)Ö›²ªÄÒº4È òiùÚ2›«s ++Ê•-ú‹'Ç%ìö§¡G>…¥*Q7ee«´<­ë´W+™©ƺáUóµ-›£]üðý]lÅÍS«Ï“×øE‘ ÇÈcÞ´Èô…@&Cè±é‰F°0˜ ™züÇ!Óxa푉ÆRR¿C¦|HÓ2ISö…?ÿ±Ò*ŒK«ª´<:ÛòujÙé” ~ÃëMj_Ÿé%’ÄRË‹ +º¹Þ»è‰ÒY2æ•|i ¾¼¸1'ïlÏãü(†>-î°äûØPE{T!¸>íhNmñ# #äò¾´ýØùþüqÈ®ùPÈÛr½ þI¶2b ˆØaaS²\Wbe[óC-–Ö¨ _bÙ5©¥÷¥%Ç ÿ&l¥ùÀ~ƒ‚9Ù„írÿÈ„3ZØ 'ˆQÔµË ±*+ñÔÒ‰b/ÚÓQÃSõtùVÜ¥ªÇ·ïA„NÙÎQù‰Ã„í\ÿH+ìÃK=Dºæí;ÝCQ솔0¶/°Šòj`ÓÓkïîÄ~ÜI€¢—m]Hì#¯³|?QVWbm}ÞøºÜæ—žÏ2Ëb¡âEñ£cÒÇËü9ôSÛgn§>€0v”ïJ ZL6¼]?5{“#E/Š~ˆ¼€NŒ¥DÎö ~ ¢xÐùþ„ˆB!p¢éÞM÷øD”ÑÂ@£04Ùe',ÏGsQ×Öç³öç +/¹‰,õ¹µe½’ˆ¢IW©­N£Â£æÅCþ#½x´°¼˜D("&/N›ëŽ^Ú?¥ØTÏHdý^iÝ ]è¸W°ý> endobj +1976 0 obj << +/D [1974 0 R /XYZ -16.307 900.716 null] +>> endobj +246 0 obj << +/D [1974 0 R /XYZ 56.693 563.932 null] +>> endobj +1977 0 obj << +/D [1974 0 R /XYZ 56.693 535.591 null] +>> endobj +1978 0 obj << +/D [1974 0 R /XYZ 56.693 489.198 null] +>> endobj +1979 0 obj << +/D [1974 0 R /XYZ 65.161 489.487 null] +>> endobj +1980 0 obj << +/D [1974 0 R /XYZ 56.693 442.507 null] +>> endobj +1981 0 obj << +/D [1974 0 R /XYZ 65.161 442.796 null] +>> endobj +1982 0 obj << +/D [1974 0 R /XYZ 56.693 395.816 null] +>> endobj +1983 0 obj << +/D [1974 0 R /XYZ 65.161 396.105 null] +>> endobj +1984 0 obj << +/D [1974 0 R /XYZ 56.693 349.125 null] +>> endobj +1985 0 obj << +/D [1974 0 R /XYZ 65.161 349.414 null] +>> endobj +1986 0 obj << +/D [1974 0 R /XYZ 56.693 302.04 null] +>> endobj +1987 0 obj << +/D [1974 0 R /XYZ 65.161 302.723 null] +>> endobj +1988 0 obj << +/D [1974 0 R /XYZ 65.161 280.805 null] +>> endobj +1989 0 obj << +/D [1974 0 R /XYZ 56.693 233.825 null] +>> endobj +1990 0 obj << +/D [1974 0 R /XYZ 65.161 234.114 null] +>> endobj +1991 0 obj << +/D [1974 0 R /XYZ 56.693 187.134 null] +>> endobj +1992 0 obj << +/D [1974 0 R /XYZ 65.161 187.423 null] +>> endobj +1993 0 obj << +/D [1974 0 R /XYZ 56.693 140.443 null] +>> endobj +1994 0 obj << +/D [1974 0 R /XYZ 65.161 140.732 null] +>> endobj +1995 0 obj << +/D [1974 0 R /XYZ 65.161 129.773 null] +>> endobj +1996 0 obj << +/D [1974 0 R /XYZ 65.161 118.814 null] +>> endobj +1973 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F57 739 0 R /F93 909 0 R /F52 695 0 R /F95 923 0 R /F98 924 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1999 0 obj << +/Length 2242 +/Filter /FlateDecode +>> +stream +xÚÕ\moã¸þž_!\?ÔÎ\¾‹º¢@oïí]‹^\Ñí¡PdÚÖF–r’œ¬ûë;²å½XŽ×ÃPLÓO–mz8Î3ó̾»x{}ñæ[E£„$šëèziNt&ˆˆ£ëYônò“-lÚØË)WtòתµÍîr^Õ»‹vÙùu•½­ªÛÝ›\ýpùËõŸaš)c$Qj'íªÝ¶YZÛ6Ý×0;‹ Ì®E7»Ô1‰¹‰¦Š$q?¿Ð 06“7»Æu÷Ëo®/~½` žF,RšèDDqˆ¦<ÊVï~¡Ñ ¾ˆLLô°¹Š£„ ×Etuñ÷ Ú[‚‚ŠÝe÷òÝ#É`ó(– aTw’»Ï=¥Ž8ILÕ6šŸ…@Âd¼Ÿ`'˜u£}å+Â4ÊW”‘XÔ Í¬I“”Ý +¬Ñîâ§Þa ·¾ ·žØ+.‘¢÷ž¯ªòÞÖ­m]à´´èÝTS:yŸŒ¤ÿàø“«'µ©ÖufqcçyÙV¸që)°¶)ò†ÖežU3¤Øl™ÖiÖÚºÁZëpÜ?€xfL8$Ê÷D‚·²HÊb½CB»L[¤c-‘+ «ºÆºÌ¢ØÜ-Ÿé'Ýð7îaiKÜÈMµÆ ´³iMô8¤Š)rí‡+™1Ç4áàÎÁ0w(ßs¾ÊžFKˆb=ïøUôt¶È˦µ)2Uó‘¡ú1cSÁÜÖ¶Ìl3̇p“¬Ï‰'„K +tâõ˜…ö|N' É~=8WêÖÐ .EwƒÌÁD¶èÖ°]u7y¹5ÄÕ*o—_\N‡7E•¥…}ó>%SÿYhÃÀy ŽŸšp

    ´}³L/9Ü_25éqc¡ ß^­ÒYÿ-áíÜ ðos3#Ië=d³S: +³;‡í¥ÃâfvÐsŸ†ªdw]ï:ÕäÐ"SÎa‚Ã…"”³P)šQˆ. 6ºHC¡Ô4ᢋÔP˪p%ý@¾_tñW]d̉‘±st)í¶W³ºƒÀ2$ÝÛï>;MþÁJ…°¹NÌ~R¦«£áŸ}º˜WèC[çö}‡Žó€Q†èpÞüXº§/{*êàÉšcúTðM¹(òf9\à©£ vÿ¡÷¼\·«SÙj¶m‹öÁñ»r뺶%²O;«²õj8Ú{H E†dáq(ßÞÊ: BÑ휻ꫨš£®çÖþ¿c ÓFÄÿƒVÈUÞóD+Ä–¥mžï$’hÅ_²„“œÁã@,«ëd—m½qaZŒƒ B2-Ú•+™Ö¡|O$z+ë€D*A|ï +óü–i5›²M? ·»êÚy·K$†Äì%A!bM„Q¯Ü!f÷1„RP¹†ÛÇÈ÷…¿²xP•*•3(ÅYµ¾+Æ&j›»ªqŘâÛyIuç#¤xE ã”ÄqÀ¼  1,\~ ßdÞÊ:€Œ Âhï +°ry‰…нY1z ‘¥ v àaik‹ßÖï\Ò±ÑðÄùµó€A’=?Ë*-‡§‰~›å,t8¤h£ÂÕûù~ží¯¬ƒgS0ìD¬l›ÎÒ™ò&@Û ÂÚz°#„œ§Eq“f·ØZ¶è"þ©S@ç·×ví}q“„;9ï‰oeñhà #lÏ«Ëê7諸•výœÖ%3ùüÿ ½n ú£ÉK2@S+óŠ œ<&Pc3@.»ÿVÌ“‡ò=#ƒ·²‘A*Â÷ÅÀlÐnƒ~š¹´£ÄŸCJÍòr^ý)+Òæh»ù§u™ ÷‘NÎrŸkìAï&D¸pØ+z‚¶"°å]’„ë( ä{ºº¯²§[H¡uçد›åŸ$˜N´užÛbæÚ~àÜJ_´ýÀ©"Úðד|X¢ eÛÀ¼UáÚù~ˆôWŸ|˜1DÈÞ~LgÖ…—ŽÞ|pªçžÎã yUa;¿®s{D<¿Àú}, MÂq¢|O· ¦lo Ý~ +—5ò=á«ì1"c’;55‘¼/§ŸNOز«¬°‡õËþŸ:¥i¹i—£ë&½9þÃÀ'Ž‘ܬ[‡Ñeå2únûÏ¥zؼ=T÷®a2ïéõÞÊ"2“’b:Å0²}8¯ÖåQGìã@îýºi2H±¹”{XB=v3ö®€D£aµ®§fPtsîtÂ@¾'¼•u€‚”8ñ~#¶tŽ1Pâñ€,ã@¼§YC©Ú[‚%DÐpGÑò=má«ìiŽÁ»îc22Ç@ö´«ì\(ÆS¥C  FÇd4öÙÍg6¥ÝUzÁ\ÿP¾§ë{+ë]#ºo¿Ùx|û·ëïýýÜù¼§G´çœBÀ$šü¸7ý¤œçXXÈ ŸpqIL„‘Á p(ÞÞª:€R¢÷³Zb[îU‰ôÏaÕõ‰ 2ösb*9ìO>'ß90ñ<[â©8Ú®Øç» W4u&–fת…§Cñ~xòV'“˜ñ€ûyáZ/©Oþ;ÿX–]EìÑ=â=ŸÜã«jÿzôà?I ÕÉsžû÷_qá$Ï +endstream +endobj +1998 0 obj << +/Type /Page +/Contents 1999 0 R +/Resources 1997 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 2039 0 R +>> endobj +2000 0 obj << +/D [1998 0 R /XYZ -11.232 900.716 null] +>> endobj +2001 0 obj << +/D [1998 0 R /XYZ 56.693 759.068 null] +>> endobj +2002 0 obj << +/D [1998 0 R /XYZ 65.161 752.393 null] +>> endobj +2003 0 obj << +/D [1998 0 R /XYZ 65.161 741.435 null] +>> endobj +2004 0 obj << +/D [1998 0 R /XYZ 65.161 730.476 null] +>> endobj +2005 0 obj << +/D [1998 0 R /XYZ 56.693 683.85 null] +>> endobj +2006 0 obj << +/D [1998 0 R /XYZ 65.161 684.534 null] +>> endobj +2007 0 obj << +/D [1998 0 R /XYZ 56.693 638.303 null] +>> endobj +2008 0 obj << +/D [1998 0 R /XYZ 65.161 638.592 null] +>> endobj +2009 0 obj << +/D [1998 0 R /XYZ 56.693 591.966 null] +>> endobj +2010 0 obj << +/D [1998 0 R /XYZ 65.161 592.65 null] +>> endobj +250 0 obj << +/D [1998 0 R /XYZ 56.693 555.92 null] +>> endobj +2011 0 obj << +/D [1998 0 R /XYZ 56.693 528.661 null] +>> endobj +2012 0 obj << +/D [1998 0 R /XYZ 56.693 483.517 null] +>> endobj +2013 0 obj << +/D [1998 0 R /XYZ 65.161 483.806 null] +>> endobj +2014 0 obj << +/D [1998 0 R /XYZ 65.161 472.847 null] +>> endobj +2015 0 obj << +/D [1998 0 R /XYZ 65.161 461.888 null] +>> endobj +2016 0 obj << +/D [1998 0 R /XYZ 56.693 415.262 null] +>> endobj +2017 0 obj << +/D [1998 0 R /XYZ 65.161 415.946 null] +>> endobj +2018 0 obj << +/D [1998 0 R /XYZ 56.693 369.32 null] +>> endobj +2019 0 obj << +/D [1998 0 R /XYZ 65.161 370.004 null] +>> endobj +2020 0 obj << +/D [1998 0 R /XYZ 56.693 323.379 null] +>> endobj +2021 0 obj << +/D [1998 0 R /XYZ 65.161 324.062 null] +>> endobj +2022 0 obj << +/D [1998 0 R /XYZ 65.161 313.103 null] +>> endobj +2023 0 obj << +/D [1998 0 R /XYZ 65.161 302.144 null] +>> endobj +2024 0 obj << +/D [1998 0 R /XYZ 56.693 255.519 null] +>> endobj +2025 0 obj << +/D [1998 0 R /XYZ 65.161 256.202 null] +>> endobj +2026 0 obj << +/D [1998 0 R /XYZ 65.161 245.243 null] +>> endobj +2027 0 obj << +/D [1998 0 R /XYZ 56.693 198.618 null] +>> endobj +2028 0 obj << +/D [1998 0 R /XYZ 65.161 199.301 null] +>> endobj +2029 0 obj << +/D [1998 0 R /XYZ 65.161 188.342 null] +>> endobj +2030 0 obj << +/D [1998 0 R /XYZ 65.161 177.384 null] +>> endobj +2031 0 obj << +/D [1998 0 R /XYZ 65.161 166.425 null] +>> endobj +2032 0 obj << +/D [1998 0 R /XYZ 65.161 155.466 null] +>> endobj +2033 0 obj << +/D [1998 0 R /XYZ 65.161 144.507 null] +>> endobj +2034 0 obj << +/D [1998 0 R /XYZ 65.161 133.548 null] +>> endobj +2035 0 obj << +/D [1998 0 R /XYZ 65.161 122.589 null] +>> endobj +2036 0 obj << +/D [1998 0 R /XYZ 65.161 111.63 null] +>> endobj +2037 0 obj << +/D [1998 0 R /XYZ 65.161 100.671 null] +>> endobj +2038 0 obj << +/D [1998 0 R /XYZ 65.161 89.712 null] +>> endobj +1997 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F52 695 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2042 0 obj << +/Length 2844 +/Filter /FlateDecode +>> +stream +xÚí][ã¶~Ÿ_!¤2\‘)*(ŠînÛ4A¶Ewh€Ý<Ð6m #‰Ž$Ï¥ÈeÉíHMq6yYÏŽ5GŸÎwn<¤Ã`„Á·o¯/^ÿ…A‚Nxp½8A<¦ˆÆÁõ*øtùAeJVêÕaáå?u­ªöǵ.Ûêm÷æ_õò­Ö7í~üø럮¿7·¹Â%ŒµÒ>Ö™ª¶JÕUó¶¹;„¹;§ÍÝ#£˜ˆàŠ¡$îîOc#0—¯ÛLx󇻾øùña€ÆOh'ñËüâÓOa°2ï(JDpw¸2¡Üüœ/þ}vš ÄæÇæåÛG’>pL‚8bH`ÑHn~OP"’7W'A©‚õII“òÂå³£˜ Ðk£„$3€=,7AûÇÎPŒ†*:Êx‚pÈÛGum,¡y6§åŸ®x^Ê…¾^ºÜÊb£*ØÅwªŠÍå +xåB-å¾^lØQ§Åˆ6­·°++÷t¿ÿªûåøÏ.K%3 ]f«ô£äžyô(w$0vå}ùŽÄpkA *Ž:Vé}¹šP©nÍ£|½•õ™&tšœûz«K %\ZÔª¨S]È,{€R_ë +̦ZîqyÚÆ E-ü±tGûvzÚ–IŒ°­-?ãs +]ÀžÁ®TkU–ê”Û9íµË›ýv&?™™¹ªåJÖrˆúëçQËb$SVé— Æ´Åcc=ögó}ùŽVï Ö«cŽˆ¹ç :Ok˨l +9 +úSü˜ü4ž[UV逵>Ńg]n¥Ê>‡,¬só/~Õºäi½ýæÕ&‡‰‚µ*êòÝWTØJˆ‹&»†,ÔcéÔ—ïÈMg°Ü  +IW:ýg«€b£ +UJxà3™ÙN‚Çfè°O¦‹*¡C4; U²x¨·`Å »F“TŠ’ű¿zn ßÍÒÝÁÂ-=J"rÒZ:8Ã9:3è0|,ZI<^NϼÉšº•ÐüvºÔ‡é|Ë1Éï +[$°¿2} ßÑÆÁZظ ‡]™¾+å²NÇe÷×S³ñÅÃìY÷»6FSÑîå +Ü×¥Îg¾ùS¾aÚÒ¹@‚ù+Öò-ݬ…¥ÇFAѱX·ÚZ76=u¥ºßeé2­¡{'‹zÞ*dîé®.mï—+‘Q¿àâ%‹•(2ÒYä©XÉpX ûZ¨DÔ€I°¿B%2¥YHý­«ä;Þ¬á C´ËÞÖû²Ùäa³ñÚµU+h{¾/ì.­—۹㼌YÊlæÝbq¶ÿÀ +#ú’þƒ&áãV«ÙýÇRç¹.,ZT8<öçAhÌ ýµ!òÝ<ˆ;X¸¡±yºIwÄÀ›˜èÕ~¯îÁ^A—›ÑÆ<çÆ}»åzSêÁæÖéìÚxÉ›™[èïdžf™mÊKy„Häo\v ßÑ~ÁZØ/;ž¦òö3exS¤Õ¹ž˜rŒQGL¢÷äˆß˵NÖ6ýñ‰#¨G7ŒcdrfÜ—ïhÆ®`O- QŒ `Ë¿å²½M^^´m€›š8gBÐO(ŽPD_”€$Áˆrå¾Lëÿ¶´û^É¢ÒÅ‘xU]¦»¢²Hˆ08Xâ{$‘¿î`Oºï\ƒ‰)Ç£7>¨\ßBÓpƒ«Vù.wØriŠ¢ñ²é$á6'ö$=uq–7ÃË9}ùjá(û«– Mœ:ý‡à=så +ZâB²ÜÄHØ•¹êó=£Žj;»œv,AÜãá ùŽLukÁU£ äX±ÞéòæÌcÀºßÿÉΈÿü|ÜU™ÊUQòÎ&-›¨1ÞÃðºGQ~wÞDý3žÎzØ»ÞB“;7šV_nÕû‰n™EBš¬„‘M€(E13'@ÍÂVª +ýoåsú³$æ3 Lð8ä9ïè[ÁZøVÌ>y¾‡gA+µÌd9ÐuHkˆVKæ— SúÜX\¿“åÈaŸvï1?Ì|j¡G:Düú4â#£,>äiN“1L /º¦……±|Í숌Ò2eSˆáØÀ`W³°a]’ø[ÍÈwsCî`ánóaÝŠ†&(û|ÔÁf&}î3q¡µP©nÓ'Η;¼3" u×V« > endobj +2043 0 obj << +/D [2041 0 R /XYZ -16.307 900.716 null] +>> endobj +2044 0 obj << +/D [2041 0 R /XYZ 65.161 760.065 null] +>> endobj +2045 0 obj << +/D [2041 0 R /XYZ 65.161 749.106 null] +>> endobj +2046 0 obj << +/D [2041 0 R /XYZ 65.161 738.147 null] +>> endobj +2047 0 obj << +/D [2041 0 R /XYZ 65.161 727.188 null] +>> endobj +2048 0 obj << +/D [2041 0 R /XYZ 65.161 716.229 null] +>> endobj +2049 0 obj << +/D [2041 0 R /XYZ 65.161 705.27 null] +>> endobj +2050 0 obj << +/D [2041 0 R /XYZ 65.161 694.311 null] +>> endobj +2051 0 obj << +/D [2041 0 R /XYZ 65.161 683.352 null] +>> endobj +2052 0 obj << +/D [2041 0 R /XYZ 65.161 672.393 null] +>> endobj +2053 0 obj << +/D [2041 0 R /XYZ 65.161 661.435 null] +>> endobj +2054 0 obj << +/D [2041 0 R /XYZ 65.161 650.476 null] +>> endobj +2055 0 obj << +/D [2041 0 R /XYZ 65.161 639.517 null] +>> endobj +2056 0 obj << +/D [2041 0 R /XYZ 65.161 628.558 null] +>> endobj +2057 0 obj << +/D [2041 0 R /XYZ 65.161 617.599 null] +>> endobj +2058 0 obj << +/D [2041 0 R /XYZ 65.161 606.64 null] +>> endobj +2059 0 obj << +/D [2041 0 R /XYZ 65.161 595.681 null] +>> endobj +2060 0 obj << +/D [2041 0 R /XYZ 65.161 584.722 null] +>> endobj +2061 0 obj << +/D [2041 0 R /XYZ 65.161 573.763 null] +>> endobj +2062 0 obj << +/D [2041 0 R /XYZ 65.161 562.804 null] +>> endobj +2063 0 obj << +/D [2041 0 R /XYZ 56.693 515.297 null] +>> endobj +2064 0 obj << +/D [2041 0 R /XYZ 65.161 515.98 null] +>> endobj +2065 0 obj << +/D [2041 0 R /XYZ 65.161 505.021 null] +>> endobj +2066 0 obj << +/D [2041 0 R /XYZ 65.161 494.062 null] +>> endobj +2067 0 obj << +/D [2041 0 R /XYZ 65.161 483.103 null] +>> endobj +2068 0 obj << +/D [2041 0 R /XYZ 56.693 435.99 null] +>> endobj +2069 0 obj << +/D [2041 0 R /XYZ 65.161 436.279 null] +>> endobj +2070 0 obj << +/D [2041 0 R /XYZ 56.693 389.166 null] +>> endobj +2071 0 obj << +/D [2041 0 R /XYZ 65.161 389.454 null] +>> endobj +2072 0 obj << +/D [2041 0 R /XYZ 65.161 378.496 null] +>> endobj +2073 0 obj << +/D [2041 0 R /XYZ 56.693 331.382 null] +>> endobj +2074 0 obj << +/D [2041 0 R /XYZ 65.161 331.671 null] +>> endobj +2075 0 obj << +/D [2041 0 R /XYZ 56.693 284.163 null] +>> endobj +2076 0 obj << +/D [2041 0 R /XYZ 65.161 284.847 null] +>> endobj +2077 0 obj << +/D [2041 0 R /XYZ 65.161 273.888 null] +>> endobj +2078 0 obj << +/D [2041 0 R /XYZ 56.693 227.622 null] +>> endobj +2079 0 obj << +/D [2041 0 R /XYZ 65.161 227.063 null] +>> endobj +2080 0 obj << +/D [2041 0 R /XYZ 56.693 180.797 null] +>> endobj +2081 0 obj << +/D [2041 0 R /XYZ 65.161 180.239 null] +>> endobj +2082 0 obj << +/D [2041 0 R /XYZ 65.161 158.321 null] +>> endobj +2083 0 obj << +/D [2041 0 R /XYZ 65.161 147.362 null] +>> endobj +2084 0 obj << +/D [2041 0 R /XYZ 65.161 136.403 null] +>> endobj +2085 0 obj << +/D [2041 0 R /XYZ 65.161 125.444 null] +>> endobj +2086 0 obj << +/D [2041 0 R /XYZ 65.161 114.486 null] +>> endobj +2087 0 obj << +/D [2041 0 R /XYZ 65.161 103.527 null] +>> endobj +2040 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F95 923 0 R /F98 924 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2090 0 obj << +/Length 2055 +/Filter /FlateDecode +>> +stream +xÚå\[oã6~ϯ¶/°áð*’ƒ¢è¶;é¶ØîÌN²@i‹Ž…È¢*ÉIÜ_¿”%wƲ-§hŸ¬Häááå;wG·Ž¾;ûæúìÕ¥À‘F:¦qt=‹bŠb)“Ñu}˜¼7¹Ijs~AžüÇ6¦îg¶êšyÿñŸvúµwÝ?]ýûü—ëÜ0„ -DGíªY妞ÓÔíg7:‰”=fíè<–HR]¤e?>SŽ T“WÝ¡qÛñìÍõÙ¯gđljDŒbÍ"© Š1¦‹³¿à(u߈k=¬[."A0¢,vÏytuöß3ܯ>¸"Ú\#‚㎧Ÿ)k.6Ý^]º&ëyð¶BTKÏ[O­2ñT­%¥;¼kŸT´0îTé‡ê¯þä¨>lÜgÍ(qç@’u²0cñÄw£[÷bg£Á S'>ôxܦˆÀ`f=ˆ’¢~{ ƒV +M±è$óÓ±ž7‹²YÁÁ¿ŽØÆ® '[h¸:¥ÖÒ m-_Zk¯Ñ"ÆSÚB¤õxNö€~˜Èg.2„ó=¨ìƒ\ßÿ àöL@ µÐ)£ÉvÙ”K`Ûn)€2y«™Ü,LÑÔP[!r[·!5õÔi²ÃÃó°ça6^:g@?–ÁÌzÀ’+Äh‡J;ó4®ö¦P¾BOã]eî3»¬½ClóäUÎ +§ûÍÇn, 35“W‡×òëÇE¾“¾:Ü1D»çª+1BÛ qAœ·F)qsHˆc—Þ”™‡ÿÄDT1Ïâ”!ÇÓúaú!œY¸~àT"¢{ýð¿2MÀê!µÓeká$Mf‹#ûwÆ”>Õ +öÖ¸“_}nºS÷‘ˆS.˜VˆnLäã.’úÎvL93]·`R"NãÑ`7 »pfá°cëD6ïvôM‘ÜäPØ-k -1ð»Â“c€ò°ÿö=pVP“Ë!!ÀQóL:µÌNõdÂóMɯ—ðxooLÕt²ãªIVÍGÙ‘©yôœ8-¥FÌ}áãåIô…G0³ÂcªîƒÞ—oßØA¯Ì¯Ë¬2àøGÜà¡JÊ +u°ànYŸ^ à‹¦Êv+Ÿ‰#ª^ ·gŠ>¢Çoú¤U D¥zYÉCµp—Œ'y¨sƸ/Ý2 &y™…KªÜR÷žâeöµY +[xmázHHöéôŒW.ç&·Ó»1*w,–å>d<­øÓ›™$OxUÕ +“¶4à´· v¸#%­1¨J¢xÄd÷6ù0˜³ +G©ÆHiº)® TçNíb‘@Õ—i ôRûb™7Y UÓS[®ªìväznó4 ¤8ŠGɈïüWŽî.˜øþS™ÿ7÷ +endstream +endobj +2089 0 obj << +/Type /Page +/Contents 2090 0 R +/Resources 2088 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 2039 0 R +>> endobj +2091 0 obj << +/D [2089 0 R /XYZ -11.232 900.716 null] +>> endobj +2092 0 obj << +/D [2089 0 R /XYZ 56.693 743.105 null] +>> endobj +2093 0 obj << +/D [2089 0 R /XYZ 65.161 742.547 null] +>> endobj +2094 0 obj << +/D [2089 0 R /XYZ 65.161 731.588 null] +>> endobj +2095 0 obj << +/D [2089 0 R /XYZ 65.161 720.629 null] +>> endobj +2096 0 obj << +/D [2089 0 R /XYZ 56.693 674.71 null] +>> endobj +2097 0 obj << +/D [2089 0 R /XYZ 65.161 674.151 null] +>> endobj +2098 0 obj << +/D [2089 0 R /XYZ 56.693 628.233 null] +>> endobj +2099 0 obj << +/D [2089 0 R /XYZ 65.161 627.674 null] +>> endobj +2100 0 obj << +/D [2089 0 R /XYZ 65.161 616.715 null] +>> endobj +2101 0 obj << +/D [2089 0 R /XYZ 56.693 570.797 null] +>> endobj +2102 0 obj << +/D [2089 0 R /XYZ 65.161 570.238 null] +>> endobj +2103 0 obj << +/D [2089 0 R /XYZ 65.161 559.279 null] +>> endobj +2104 0 obj << +/D [2089 0 R /XYZ 65.161 548.32 null] +>> endobj +254 0 obj << +/D [2089 0 R /XYZ 56.693 511.335 null] +>> endobj +2105 0 obj << +/D [2089 0 R /XYZ 56.693 483.898 null] +>> endobj +2106 0 obj << +/D [2089 0 R /XYZ 56.693 437.467 null] +>> endobj +2107 0 obj << +/D [2089 0 R /XYZ 65.161 438.15 null] +>> endobj +2108 0 obj << +/D [2089 0 R /XYZ 56.693 392.231 null] +>> endobj +2109 0 obj << +/D [2089 0 R /XYZ 65.161 391.673 null] +>> endobj +2110 0 obj << +/D [2089 0 R /XYZ 56.693 344.512 null] +>> endobj +2111 0 obj << +/D [2089 0 R /XYZ 65.161 345.196 null] +>> endobj +2112 0 obj << +/D [2089 0 R /XYZ 56.693 298.035 null] +>> endobj +2113 0 obj << +/D [2089 0 R /XYZ 65.161 298.719 null] +>> endobj +2114 0 obj << +/D [2089 0 R /XYZ 65.161 287.76 null] +>> endobj +2115 0 obj << +/D [2089 0 R /XYZ 56.693 241.841 null] +>> endobj +2116 0 obj << +/D [2089 0 R /XYZ 65.161 241.282 null] +>> endobj +2117 0 obj << +/D [2089 0 R /XYZ 56.693 194.122 null] +>> endobj +2118 0 obj << +/D [2089 0 R /XYZ 65.161 194.805 null] +>> endobj +2119 0 obj << +/D [2089 0 R /XYZ 56.693 147.645 null] +>> endobj +2120 0 obj << +/D [2089 0 R /XYZ 65.161 148.328 null] +>> endobj +2121 0 obj << +/D [2089 0 R /XYZ 56.693 101.167 null] +>> endobj +2122 0 obj << +/D [2089 0 R /XYZ 65.161 101.851 null] +>> endobj +2088 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F52 695 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2125 0 obj << +/Length 2115 +/Filter /FlateDecode +>> +stream +xÚÍ\[oÛ8~ϯf&6,ØvÚmbº—iX Zblm,Q#ѹ̯_Ê—i¬ÄÎa(yö)¶L‘ü¾óñ*8™'8ùpöÃåÙë÷'Ê$•ÉåU")’i¢C,M.‹äËùOfitg^]PÏÿné6¯l»ùàÛßÙük¯7_þóùÇW?_~ôÝ\‚2!6Ö>»û¥éƸ®ÿÙ÷Nå{—¬ïË¥T%e鶖yƒ©:½ùC¨ìo<ûÛåÙ/gÄ›Ç I„D2cIš$1MòêìËÏ8)üoÞÄ3•Ü®[V‰ Q&ýçeòùì_gx;øàˆìló ,7>}¥T¬½ØÝöú½o²~Þߣ—Êÿ°nüI¯ÚÒýúêBb|þÑ躳õ›W„ú¯z嬳9ºë–Ú4(Ê›²+mÝ_Útá¯ï¥ÿóaÿ±ýd‘”&)ó®qÖ?v]`?ˆ\&e*KZ“\=|Î=kO_}ÜUˆ(¾ë`c˜ô­cí D$Ú˜ Ô¤‡‡k@¢Œf#8»6ØΓ͇Ÿ¶‹bo‚wŽ3‚¸ õ<ÿµ(L±·*[J¾¬'¹²EyUæÚù‰î`·8 k×­šÆ¶Ö¸6ƒúÜ QÏ•©ÝþsùñAÛ nûl Ìþl5˜^_þQ‚ùÕŠ ¨¡~ý¯¨9ð÷0‡`Š¨"/àwú¦,6ñ¶Õ•iw2_Ú®Óí}]ÈŒ"F²éèB*‚<ÅNÅûæãÈ"ÚU8WHÅ‘äi0WÔ¶­ô²üÕ ñtqOç]£s3.¯ü¶¾¾9ð戞‚F&6}cK(½–]ï@YÏaíí¬ÝlδðÑŠÕȓйVßÚzÑV À/Lñ`ar•!!³Ç|Åo4™×KßZ¥ë·mså˜ÔË.L¦ã€}û‘$í,€”@XIßCÒ›_榇âäócìÅ2'ô”Lr¾VÓ¿sc && `”!‘NÁöíG®Þhgb•HõWú)}_ÞAcØÉÆI–½9® wK.(E«ÃŒº°«%ð)V”ÎÀ†}”ÒÀ`¢kËÙÊMÛ: ¦y¹>^ +)FB©SÒÈR$S>ò¼¬—emøG(ÿ¨„LÇ?Î(t2þØãŸxgáü#F˜Kh „­©š¥†¬Ïæ¥3³r¶,‡úõù=ñ%”H÷iý2¾>©nçÐí|ÙLzn=ߌ«ÌÁ·æÊøîóÁÒ*ãT!…'QÆÂ/å4cÓa{ß~$¶£…+c¿ñ·É‘Cxù#t”GŠM—±ØåhgT(Dè6c©ëâeðÚ^þî°[X%Ý;7œåâèŒôäj;ܽëÌÈKži¼¾‚Æ©¨Ùf­Î¯{ñÎQ‚?iêSP¿ùÝ¥é{™0÷)°Bæ=öÍGÒN¬«¬C¢»¼Á'{Daò¥n×e’qõBn«j(BŽï(gK›_´ß¨œJ®t÷ãæ +ûG ›wëõa×N”& ns~xŸG"öaŸ’SrW¾kœŽÌA…ÍgÖ^Wˆp> qIQb2Ø£¡xgá<Ä%÷šm&õßM¡ÁÕÏÊtžõ„žÙPþ¬êJ»|uc[[})èx¯þ²ô¤ cQÅFgW]¡»[3ƒ>9ˆÑ !G8brºÀ?° ¹hg GR$yœ³ HfbÓÚ«r . +æ Ý8ÓŽ«;.ß~x1v½†béIË=Ly@ +52vûLŸoˆ˜,õÖ39|™L‘`édð؃o¼³pø²#EÃ+>î¾±O¥ ¾bëI¿4ºûÚ6Ý}W”7OÝñ—ã¹ß,”OXè{'P¼1¯?i}ƒq‚$ãc–W¯lóàp¡ÿF|mÜÓ‡w¦ $ó¾¦AÅ(%ÓAö#!íl$ixęμ½\˜ ç¦6í°®r|cYÖ…¹—tkz»0uË`±Ð@Ðo+Ý^wÕVFú“Ñì”lD3¾.‚Œýç­neÞP UÞžNG54eH}+eN5ûqTï,œjhšú’Átt\Hý¤ÝâÓã¦ÒËÊïê íôKe9íR–˜<õÖÅK€Yú]Yö"ÌU½Ú@ôsUºÅ •åp2…0pgMiŠ°œ®`:° ÎhgÀÉ0b‚ìÞÒ©àiõU]›Ü<>Su8ítçZ=¶ÒÈm]”ðÔ>ÑpÌ]ÓúQ€µ ŒÙ”HDðtEèýÈ•ílÀÊ%bÙ¶½’ÝÈ¡¢Ñ]WÞ7‘!¼N"Dž’×I†Åôÿƒ×‰ê_”›°RJd†ètškß|6¢]…C£IÈmÊíÝãúÝ÷‡÷LnäS¬W6à…²î\k±ã/©x0›r^Üagÿ59ôØpCv ­é´œfîc+xëxë1XˆPˆÑéŠ û‘à‰v6=²x»e}6š‘·ý‘îÀu,½Úöئ®¯G~ýéãªs+ Í–zX¹ˆ|DÄØI „QÄÉØ…†ÜV­MíBÂõžˆ + „ijé* û‘Øv6»„£T…§6s[Œü–]¹Z¿îŠ.ÿñvd…«Û!Ý4Æï³îÆÝd{o]™/ÍKÓ³ÏÃc$Ø„*rß~$š¢ @fHÑmæî xgóaë?ÑžOÍóñÓfaëò w¾âáï§I™I¯_€Á#K‘àS¤ý§ŽÞc ýG'ÿèCéQ +endstream +endobj +2124 0 obj << +/Type /Page +/Contents 2125 0 R +/Resources 2123 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 2039 0 R +>> endobj +2126 0 obj << +/D [2124 0 R /XYZ -16.307 900.716 null] +>> endobj +2127 0 obj << +/D [2124 0 R /XYZ 56.693 742.142 null] +>> endobj +2128 0 obj << +/D [2124 0 R /XYZ 65.161 742.431 null] +>> endobj +2129 0 obj << +/D [2124 0 R /XYZ 56.693 694.923 null] +>> endobj +2130 0 obj << +/D [2124 0 R /XYZ 65.161 695.606 null] +>> endobj +2131 0 obj << +/D [2124 0 R /XYZ 56.693 637.14 null] +>> endobj +2132 0 obj << +/D [2124 0 R /XYZ 65.161 637.823 null] +>> endobj +2133 0 obj << +/D [2124 0 R /XYZ 56.693 591.557 null] +>> endobj +2134 0 obj << +/D [2124 0 R /XYZ 65.161 590.999 null] +>> endobj +2135 0 obj << +/D [2124 0 R /XYZ 65.161 569.081 null] +>> endobj +2136 0 obj << +/D [2124 0 R /XYZ 56.693 522.815 null] +>> endobj +2137 0 obj << +/D [2124 0 R /XYZ 65.161 522.256 null] +>> endobj +2138 0 obj << +/D [2124 0 R /XYZ 56.693 475.99 null] +>> endobj +2139 0 obj << +/D [2124 0 R /XYZ 65.161 475.432 null] +>> endobj +2140 0 obj << +/D [2124 0 R /XYZ 56.693 427.924 null] +>> endobj +2141 0 obj << +/D [2124 0 R /XYZ 65.161 428.608 null] +>> endobj +2142 0 obj << +/D [2124 0 R /XYZ 56.693 381.1 null] +>> endobj +2143 0 obj << +/D [2124 0 R /XYZ 65.161 381.783 null] +>> endobj +2144 0 obj << +/D [2124 0 R /XYZ 56.693 334.275 null] +>> endobj +2145 0 obj << +/D [2124 0 R /XYZ 65.161 334.959 null] +>> endobj +2146 0 obj << +/D [2124 0 R /XYZ 56.693 287.451 null] +>> endobj +2147 0 obj << +/D [2124 0 R /XYZ 65.161 288.134 null] +>> endobj +2148 0 obj << +/D [2124 0 R /XYZ 56.693 241.021 null] +>> endobj +2149 0 obj << +/D [2124 0 R /XYZ 65.161 241.31 null] +>> endobj +2150 0 obj << +/D [2124 0 R /XYZ 65.161 230.351 null] +>> endobj +2151 0 obj << +/D [2124 0 R /XYZ 56.693 183.238 null] +>> endobj +2152 0 obj << +/D [2124 0 R /XYZ 65.161 183.527 null] +>> endobj +2153 0 obj << +/D [2124 0 R /XYZ 65.161 172.568 null] +>> endobj +2154 0 obj << +/D [2124 0 R /XYZ 56.693 125.06 null] +>> endobj +2155 0 obj << +/D [2124 0 R /XYZ 65.161 125.743 null] +>> endobj +2156 0 obj << +/D [2124 0 R /XYZ 65.161 114.784 null] +>> endobj +2123 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F95 923 0 R /F98 924 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2159 0 obj << +/Length 2727 +/Filter /FlateDecode +>> +stream +xÚÅ]mÛ¸þ¾¿BHvt’"%ê®í¥÷’îoÉ(mÓkueѧ—ìn~})K¾D’_†¦è~²W¦†#jžá<Ã!w~¼úööêÅ+Žƒ%‚ÛeQÅ ! +ãàv¼»~­2%Kõü†r|ýw]©²ýºÔEû¥Zu?~¯çßj}ßþñï7¿<ÿpû³é憔pÞJ{S=eª\)U•ÍϦwÓ{6½³(F1Á GIÜõÏ°‹ëí¡QsãÕ·W¿^#$àŠ’0ˆ‚"LƒùúêÝ,ÌoFÄ׋Ô¨õ²Ðë^Ëîú³îâø¶ë‡4_è‡rp×µ14Ž߶•Zi˾ÞÞ¾õ#ž!¨õR3–æWë=ðy½˜"*Èèý›¬‹´úÔb÷g%óRç;ønR ÌF E!Iüa6Ïæ ²}ñnˆuVØH0±n.y»YÈJ-`\èy½Vy%«Tç@Øš9&{¶ÔÿÉäLe#Cø¢Z ÛCAÅÂLéä’ ‹8GŒÇƒ.K˪´Á3Z$Ì#îB†xÈý¯/ßyÎÊZ@/Œ‘ aûJÿºX@WÖ›.ª‰!ׄ©—ÄæAùÿü Ö.:¹Ì2]W[\œíLX×¼¤wÀEax†wx­gʘGMWò©úìÚ€ÚÂ;ðD4„Ç›sàÂH$Ä›sÈwsîÊÂ7„'I’ŽZ!Þºà@ú.Óe)‹' ôe%g Ù†ôU‘ªŠæ2]·V¼H?žgn¢ž˜ÒKâ™G ,¦Å³ñîk™Ùà™-÷h†‘±?@÷å;ÚYY @3fˆuÌX¯7™ªÔ&üîòŸ¾9<973:LøæîaˆRsÿŸŸ‘gßüå8‡Ç!iÞu¿õiæqTø³»¾|G»sVÖÂîÂQÒ¥U¦ÊôÉ•Ög;Xjž4L.ê`1C˜ò‰é”™ð2eá` •B8¢þ,!"8ôfèùn†î®,ÜЙˆP˜t9¬Ÿò‰YÏÖ aŸOez~­Ìd «‘ô?÷¨Î%)­TgO´ò^©«¬ô2gËÓ#\jè3ÊÊrºb±ùdþòQ쬬ŠcŽXØ- Ès±y°éZ©Î¬Pò~_ õs|$”ReA¿ôÔn +š<ù(³zäpÌ£‘>§šÔál$tyhßë8â~·÷Ü®R` ó s¥FN÷4Ö ó#Â_t ßëÎÊZ`=bˆÅ]Š«Ló¹š º® “Ãrê~5Í侂b¦¬‹B×ù¢ô °…‡\A±0Å\}<†zH«Õ Ë{¼¹Îêu>¦§‡ïÙƒ|¥‘žAƒ}Ž¥þ’ùŽÈvVÖÙ> endobj +2160 0 obj << +/D [2158 0 R /XYZ -11.232 900.716 null] +>> endobj +2161 0 obj << +/D [2158 0 R /XYZ 56.693 741.747 null] +>> endobj +2162 0 obj << +/D [2158 0 R /XYZ 65.161 742.431 null] +>> endobj +2163 0 obj << +/D [2158 0 R /XYZ 56.693 694.923 null] +>> endobj +2164 0 obj << +/D [2158 0 R /XYZ 65.161 695.606 null] +>> endobj +2165 0 obj << +/D [2158 0 R /XYZ 56.693 649.34 null] +>> endobj +2166 0 obj << +/D [2158 0 R /XYZ 65.161 648.782 null] +>> endobj +2167 0 obj << +/D [2158 0 R /XYZ 56.693 601.274 null] +>> endobj +2168 0 obj << +/D [2158 0 R /XYZ 65.161 601.958 null] +>> endobj +2169 0 obj << +/D [2158 0 R /XYZ 56.693 554.45 null] +>> endobj +2170 0 obj << +/D [2158 0 R /XYZ 65.161 555.133 null] +>> endobj +2171 0 obj << +/D [2158 0 R /XYZ 65.161 544.174 null] +>> endobj +2172 0 obj << +/D [2158 0 R /XYZ 56.693 497.908 null] +>> endobj +2173 0 obj << +/D [2158 0 R /XYZ 65.161 497.35 null] +>> endobj +2174 0 obj << +/D [2158 0 R /XYZ 65.161 486.391 null] +>> endobj +2175 0 obj << +/D [2158 0 R /XYZ 65.161 475.432 null] +>> endobj +2176 0 obj << +/D [2158 0 R /XYZ 65.161 464.473 null] +>> endobj +2177 0 obj << +/D [2158 0 R /XYZ 65.161 453.514 null] +>> endobj +2178 0 obj << +/D [2158 0 R /XYZ 56.693 406.006 null] +>> endobj +2179 0 obj << +/D [2158 0 R /XYZ 65.161 406.69 null] +>> endobj +2180 0 obj << +/D [2158 0 R /XYZ 56.693 360.424 null] +>> endobj +2181 0 obj << +/D [2158 0 R /XYZ 65.161 359.865 null] +>> endobj +2182 0 obj << +/D [2158 0 R /XYZ 56.693 313.599 null] +>> endobj +2183 0 obj << +/D [2158 0 R /XYZ 65.161 313.041 null] +>> endobj +2184 0 obj << +/D [2158 0 R /XYZ 65.161 291.123 null] +>> endobj +2185 0 obj << +/D [2158 0 R /XYZ 65.161 269.205 null] +>> endobj +2186 0 obj << +/D [2158 0 R /XYZ 56.693 222.092 null] +>> endobj +2187 0 obj << +/D [2158 0 R /XYZ 65.161 222.381 null] +>> endobj +2188 0 obj << +/D [2158 0 R /XYZ 65.161 211.422 null] +>> endobj +2189 0 obj << +/D [2158 0 R /XYZ 65.161 200.463 null] +>> endobj +2190 0 obj << +/D [2158 0 R /XYZ 65.161 189.504 null] +>> endobj +2191 0 obj << +/D [2158 0 R /XYZ 65.161 178.545 null] +>> endobj +2192 0 obj << +/D [2158 0 R /XYZ 65.161 167.586 null] +>> endobj +2193 0 obj << +/D [2158 0 R /XYZ 65.161 156.628 null] +>> endobj +2194 0 obj << +/D [2158 0 R /XYZ 65.161 145.669 null] +>> endobj +2195 0 obj << +/D [2158 0 R /XYZ 65.161 134.71 null] +>> endobj +2196 0 obj << +/D [2158 0 R /XYZ 65.161 123.751 null] +>> endobj +2197 0 obj << +/D [2158 0 R /XYZ 65.161 112.792 null] +>> endobj +2198 0 obj << +/D [2158 0 R /XYZ 65.161 101.833 null] +>> endobj +2199 0 obj << +/D [2158 0 R /XYZ 65.161 90.874 null] +>> endobj +2157 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F95 923 0 R /F98 924 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2202 0 obj << +/Length 2874 +/Filter /FlateDecode +>> +stream +xÚÍ]Û’Û6}Ÿ¯`%«©Ú ðƵU›lÖ‰_{¶ì*'‰‘¸¦-HÍe¿~A‚šR·†@8yÄi¶ÀsÝ Œï-<ßûáâ»ë‹g/"ßKQ“Ø»¾ñb‚âÄ£8@Aâ]çÞ§Ù;^rVóË+ù³7¢áµ~y#¤~Ñ,û¿ÙwB|Ö¿||ÿêò÷ëŸÔm®0Fiik’×KΛºýXÝ{TÝ=Ú»‡q‚B½«¥Iÿ+ƒ =Ó?0‰Û?¼øçõÅ.°2ï{Ø‹b§—¤Å>ñ²Õŧß}/WŸ)P˜Rï®»råEØG$ˆÕëÒ{ñë…ß„¯\l_¶?~xbYNˆ—„¢˜¶–Û÷ JiêáöêÔ“Ü»9hé¤ýáíG>FILAwx: +1JI:³A¹ðô‹w=PÔw*쀲u¬¹,‹ê3Ðp³d ìJ&9ì“Ÿy»v³†]wW4K ÅöË.Uä¯ýþf¾i £Å`WæÅhvK­ DT!Óµ†ö-©eí¬µŠpØGÁJÕ’UyÉ¡«^— ødÿ@r«hÅ«frjßñ?·Os…È!SžZ·ä‰¥£,! ”j–Üï ‚ß ‚³¥ä@T³¦‘…Š—¼›GÇcìõ²â6SÔ]ñÈò¼6ˆEµ˜˜’ÍRÔ@_…š=¤)бMˆÝA}hßìÖÎÀLj¨{vpßOOû¼bs8$Úô~âÀO'vø|ئ€]77›¡AŸç \Á.¥Äʇö-Qní¬Êý‘>ó)*h¨F/jµYÍUŽCƒ§h*±;EtþæGþá‰(çk^å`NŠ +˜b€S¡[Vnx=qDØÔÆ”ˆU ï“Ð%Föí(aï,œq¢c͉%›üQíËœ§6³z)î€\«r7.ì§ÛAók&Ù +xmÍ›³få•â9î> vê#?ŽÜ}hßìÎœí#ÖJ’³ÁÚ· kg ˜Ÿ¨:æ·ìÔepã¤DUù0u1£RLÊF½Y¯…l¾ˆhq:&DZõqFƒ¡}KX;k@ƒ£0è—ààÎXYN´o‰w[g£;òQ˜ôë(Çk°jÖŒÇéÓ˜ãh3©Ë àD)Ъ‡3 í[‚Ä™³ý`®8v6ó–CaëªÁô@(Š¢^v$º–µ€ÆÁÛÉ‹i7¹™<, ¡ºXdQŸ¢Ö%³3¦ í[RÅÚY®àEi/"ïÍ8ì«ù¢‚*² 8›ñ»}IÑWGVw¶=©ÚF–Wzû«ã3gÅVPIñ@:8{8ý‘;…ydß’ÖÎPÀQû†.&ÎBFΞUŠÅ¿GV ¦8ÆKçQªUWLÙ·c‚½³p&Di„bÚ Ëªå?& +GTh)ÑV†p·@1²o‰#gÎöƒ‘èªÕÙ` í[†µ³¤Jåi¯Ù~`²§ØGûR: ¾¬¦ž[o¥‘È'—šsÞp¹**hu_ÀÜ®™N QŠ"쮚Ù·D°µ³VDý>CÒëàÓ6b°º.Õ´69ƒ + ûábÛWÀï¼+VZÎŒ'úwÚN~žp{š¡–Qœñahß’ÖÎð!ˆ†ýòâöã/ Ú¿Íï×’+J@[;ÀëPÛ yî–|·—ɲx_3ÙÙ¦d¦ý Q ¥ +gxÚ·Ä£µ³x }Diâºïµ¨ê†UŸvÊŸ‰âéóSñšd˜’Ô<ü’N–p†öyK°Ûºj€u’ª[öÚ~Å3õ˜,Àí@M¡çŪ‚,2UCæ«;7 ¼ ¯pL_AËcÉo9+ÏMûOãk±ÁÀ‡ö-ní¬ÄqûV/ÉC‘˜ ^Wã`÷—ÃaßÁ"°^”±ZôA›U4æÙ˜…À^ èJ^-VÊœUךìS¦äñC”wbþȾ%y¬5 O‘͸Žˆ‹ÝSoAÐþŠVДç*šaªµ*W°Ù·ƒ•;gûÁ Zöp6Cû–ƒaí,œc!‘ŸM²”¢Þ¿ÍákœPU*§'wÅ1øVm ­~æÀ¬üµÐ½kà*[ò¶…œí¤„§YšhýÁ0‡ö-ií¬0õ3è¥öFŠÍ¼U¹…h¦ßᶖB_hcŠhôD NPÆýè‡eÿO}Ži‡8‰Òî þHŒ0 ˆà~tÔÇᘴØW_ìÇëׯúã8žâ{W$D䱩ŠoOþ(KqI¢Ù];ÄÝ[ºª?dÉ.‰?»½ÄѬÿ‹9WÜì^­XÞ¿§hýx|Hwkåíÿo©J’öœ½á¥Y•{T%hèãíEÝ‚Eg³.ZÉbx:‰Âs€ˆ~-õ™&h8Wcõ õB%þÛ÷¿ ®Á"õ\·.üÜî¼ìÀò‚-Ë…äÕ7—W˜<öK¢ûº|®/¨*±nÂ'Hˆú¶© |ŽÏ}AÛaí. ÍÛkWáñ%ˆƒž„œx?êŠ}FŸ-I'>Âm6L.xî‡.PܲÒøÄ j9‡Åѧ¦£A¡Ói#BÃÔlbTX¢!vpˆ¨ÃýÈ#û–!ÀÚYƒ€© ý@¿Ísh™×4P1ÏÕ) -Â&?6eÉn¹ÍŽè#‹ 'lMÑì|ÿÓ4SY}ÚÉå>¼š"M]æż,„Ax!IŠH¸ /Då¿ŠµÎÂËȾ]x±w^H¢Ï­3‹/¬Ê–ª’X›êP“·¦¬!껨 ꋲ&$(¢dZڨغbå“4ýµJÐnŠ’÷¿¶•H3/Mx¥J°ÄòŠà΢3^ í[òÊÚY^©„ÉßJ/«¢) K[Ù’gŸ‹µ•g‡×VV\‚wF×Þùz37IÎs²+`#¸ØYKq[äP|TÞaàãz#d]“‡Žþ·¹˜›v’V€¡îº Gö-™hí¬U²î'á¶{*‡*ºàã/·a|Z ¼5X\}Ç‹²|8W$í¬Ò §Ï=gûêg©zŠ{©áíüß<¦/óö¡Ý\ÖGŽ¼:ô×ï9/Þí_UNƒ0 Âã7ç˦YïtË>{f„ö#ûÑ„\œ›ànEË]/ÆȾ%l9ÛŽPºÓ‹Fö-ÃÚYcŠ’ >®´›h·A¼ûŸ>ë¬I¹9JëÅ[ðñëÑ ÷ºÉé¯ù¢Xl  Wà£0À%N4 o{\ŠM™OÛ¦¦ÛEMñ°¢º[mÙ·$·µ³än‹‹¤­ÀÑ©¡ä¥JQEeú º?®ÅFfSX ߦ­gOŠêÙ…iò%¥åDØ(8£ê|ÓÊÇ•Ž8XY/wuå­}ÿÆ&lÚLÏù/6ÿZS “ +endstream +endobj +2201 0 obj << +/Type /Page +/Contents 2202 0 R +/Resources 2200 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 2039 0 R +>> endobj +2203 0 obj << +/D [2201 0 R /XYZ -16.307 900.716 null] +>> endobj +2204 0 obj << +/D [2201 0 R /XYZ 65.161 760.065 null] +>> endobj +2205 0 obj << +/D [2201 0 R /XYZ 65.161 749.106 null] +>> endobj +2206 0 obj << +/D [2201 0 R /XYZ 65.161 738.147 null] +>> endobj +2207 0 obj << +/D [2201 0 R /XYZ 65.161 727.188 null] +>> endobj +2208 0 obj << +/D [2201 0 R /XYZ 65.161 716.229 null] +>> endobj +2209 0 obj << +/D [2201 0 R /XYZ 65.161 705.27 null] +>> endobj +2210 0 obj << +/D [2201 0 R /XYZ 65.161 694.311 null] +>> endobj +2211 0 obj << +/D [2201 0 R /XYZ 65.161 683.352 null] +>> endobj +2212 0 obj << +/D [2201 0 R /XYZ 65.161 672.393 null] +>> endobj +2213 0 obj << +/D [2201 0 R /XYZ 65.161 661.435 null] +>> endobj +2214 0 obj << +/D [2201 0 R /XYZ 65.161 650.476 null] +>> endobj +2215 0 obj << +/D [2201 0 R /XYZ 65.161 639.517 null] +>> endobj +2216 0 obj << +/D [2201 0 R /XYZ 65.161 628.558 null] +>> endobj +2217 0 obj << +/D [2201 0 R /XYZ 65.161 617.599 null] +>> endobj +2218 0 obj << +/D [2201 0 R /XYZ 65.161 606.64 null] +>> endobj +2219 0 obj << +/D [2201 0 R /XYZ 65.161 595.681 null] +>> endobj +2220 0 obj << +/D [2201 0 R /XYZ 65.161 584.722 null] +>> endobj +2221 0 obj << +/D [2201 0 R /XYZ 65.161 573.763 null] +>> endobj +2222 0 obj << +/D [2201 0 R /XYZ 65.161 562.804 null] +>> endobj +2223 0 obj << +/D [2201 0 R /XYZ 65.161 551.845 null] +>> endobj +2224 0 obj << +/D [2201 0 R /XYZ 65.161 540.887 null] +>> endobj +2225 0 obj << +/D [2201 0 R /XYZ 65.161 529.928 null] +>> endobj +2226 0 obj << +/D [2201 0 R /XYZ 65.161 518.969 null] +>> endobj +2227 0 obj << +/D [2201 0 R /XYZ 65.161 508.01 null] +>> endobj +2228 0 obj << +/D [2201 0 R /XYZ 65.161 497.051 null] +>> endobj +2229 0 obj << +/D [2201 0 R /XYZ 65.161 486.092 null] +>> endobj +258 0 obj << +/D [2201 0 R /XYZ 56.693 449.064 null] +>> endobj +2230 0 obj << +/D [2201 0 R /XYZ 56.693 421.596 null] +>> endobj +2231 0 obj << +/D [2201 0 R /XYZ 56.693 375.013 null] +>> endobj +2232 0 obj << +/D [2201 0 R /XYZ 65.161 375.697 null] +>> endobj +2233 0 obj << +/D [2201 0 R /XYZ 56.693 328.445 null] +>> endobj +2234 0 obj << +/D [2201 0 R /XYZ 65.161 329.129 null] +>> endobj +2235 0 obj << +/D [2201 0 R /XYZ 56.693 281.877 null] +>> endobj +2236 0 obj << +/D [2201 0 R /XYZ 65.161 282.56 null] +>> endobj +2237 0 obj << +/D [2201 0 R /XYZ 56.693 235.309 null] +>> endobj +2238 0 obj << +/D [2201 0 R /XYZ 65.161 235.992 null] +>> endobj +2239 0 obj << +/D [2201 0 R /XYZ 65.161 225.033 null] +>> endobj +2240 0 obj << +/D [2201 0 R /XYZ 56.693 163.126 null] +>> endobj +2241 0 obj << +/D [2201 0 R /XYZ 65.161 162.568 null] +>> endobj +2242 0 obj << +/D [2201 0 R /XYZ 65.161 151.609 null] +>> endobj +2243 0 obj << +/D [2201 0 R /XYZ 65.161 140.65 null] +>> endobj +2244 0 obj << +/D [2201 0 R /XYZ 65.161 129.691 null] +>> endobj +2245 0 obj << +/D [2201 0 R /XYZ 65.161 118.732 null] +>> endobj +2200 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F52 695 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2248 0 obj << +/Length 2869 +/Filter /FlateDecode +>> +stream +xÚí]msÛ6þî_Á釻äæŒà`Û¹™¦½¶é5™»Ø3×™$ ¶x¦H•/±Ý__P¢›ˆ²Ì…@¸™›|H$KàrIî³»Ïbáè2ÂÑ'ÏÏOž}/p” DR_D’"GŠ0Äâè<‹ÞÂ-ð%Šs‚8¬ç»ªÜ<ü;9ö£¿ŒÚ¯Ú±÷ 9•?é¬qƒÞ4Åøì_>{Z­oar&Õ`%ràUYx¦¦í X›¦+Ú¼¼„ ·žceJ Âm½[ÀUÎ|ñ^G–vd³Ö)p¸Þ}Lâ#p• !ûÕo1Ç[Ïi½Ú‡Q1âÖ‹ cN·òv ·ã/ïœQ*œÓÙ•ïét¼•8%VÒ:85b¹½›p©ºúÌ=×WýI›þåÇó—?¯n7r¬õßÖº]êÖÁmÖu]ü==¬Éó®ùîÝ¿ð»7$Uƒ÷ÎØ5p‰ âˆDÔ‚.˜gØ•ï鼕uð Äzc2¤¦iU¾7ukj˜­dÕü9¿\‚M·¯óv Yäöêuá’=8ùGWWÓT3ç|U x~´«^ €J†(÷!!^÷yàÀ¨d‚£C |K©»£ˆ n1=%ÔþñR_™‹¼0ÀË—Ê*#y8&e‚8Á¼ÞH¾Ÿ×óWNÂdL­9Ðí“ý&ËL3ötiÒ+ ÏÓ%PèRƒeB9Å{]çUº¬vfL©ÐÙ,º¼ÈöÜù4€„…(—áì{W¾§}{+ë`ßÒjÊØÖ¾»2ƒFôoo/¯óÒ1 =_æ 4åî.€a*²»,ngÆãJßB9yYÃÿuUCSp®d9ù±®hYܦÙ*\ùn$ßYÞÊ: K`ÇCù®­«nìã¦sº”´ÁóëÆŒ’0oïm öê¨jÏáxp³6i ´`´‚!¸¨†^Ry{»˜ ³ô•†+?ä{‚Æ[Yа)2dݦẖ„A2†K•1Ø{"©Ä²*]TÕú£?} °ÕGÒp¤A¨Ř³â‘|?+öWnÅ"±â²}¸z4 ¾ã‹Ãõ/cŸò^áð‹‡ƒ…cé}‘—¸,Ëvµ7Qôìðe6 Ï"÷&¢Oå{Ñvóy±ÃâÇUæIŒ‰XYP…ãÍ#ùžðVÖŠ"ÌèÈÛ¼*g¦7y³7#Ö#´îÃÊ4Û±YD½f(‰qš0-tz5o o<;¾­A…ãÝ#ùžøðVÖ1A8xwŸ”Ï\Sq0“u]¥– ‚ƒo© Táë¥)¡•ixä}•&À¶¤IE§d³¾ksÊ¿mÖÌÚTÇÞšŸN)²ç“Ö¤wôëvŸsš7ï&;|Ÿ¦ÍRÚÛ Â­CÉ÷4K_eû#É‘âê„ÐÔz+h÷C­Ó«ýõ\ ,O5|%(Ô5êºÖ·Gæ›%P‚<|o®M ½9|uY]­×{í-àB  +‰ø1ë4Œ $…üDê4ŒZm’€ë:á(fá˜îH¾§ñVÖ!Ï! +a:0Ýo—º¼„–RàëFÃ]þ5Û_;«×~…”éÀ8¶9&— +/j2 =ÌPdÆ»ò=‘á­¬2úÙCyÇŒ0¹ÂxA”![hÖóSZ(Ÿ†ô☆ÃvYu—Ëù›^î+ÚMB‚&)ŽäûAÂ_Y8$h"Á)nÚ¼(ŽêêÒ´¹<ŸK!˜Éƒ,ÝÄÌy»áÖ=5§[¤D8š?’ïiÜÞÊ:·²¯|Ȉ¯j—-ô¢+´Ëý”Â&Gnö¡ñÀa«*ƒ‚Ìj]èÖ|Zeúƒì)xÝy1F* WfÉ÷„…·²°è»‰ÔPxø\¦R¦÷ŽVÚu½ Jµ-ìŠ÷4v_Ul]2D©ÚÚú§X£§Üê¬H¸ç¶+ßóÁù*{°FOEZÿ\£^£§l[D +f–»ò=ÍÒWÙÃîƒÄÈçýÿe‰žÒm9(˜ïÊ÷´qoe‚&ȉÁìÁ¤ÝröÜ4à6¢™û‰3ݱ ¾šKY +Þk•Ï¼¼ùC[Ï|ÏÓel ïÖ®Ù,éëRÓÙ]ùžØôVÖ›$Aìn×®Ös*Á•>ù·÷fy³.ÀØ_‚1U[Ë~ˆ©­tj[›1Ħ·µ¬`€Ø•ï oeâwÛ|õ ¼fã4Z¹T*àF«] +…¹k!ã%eàøQŒ7´88ò×.oͼ;'­kÓ¶·¾pœ„I¶µ±P0É÷ƒ™¿²p˜‘¤ßsxXè ËèdšB'g ”Ú§ÜtsÏëæå6väóo‘¦F{eÝ ,‘äQ’©U> endobj +2249 0 obj << +/D [2247 0 R /XYZ -11.232 900.716 null] +>> endobj +2250 0 obj << +/D [2247 0 R /XYZ 56.693 759.068 null] +>> endobj +2251 0 obj << +/D [2247 0 R /XYZ 65.161 752.393 null] +>> endobj +2252 0 obj << +/D [2247 0 R /XYZ 56.693 683.362 null] +>> endobj +2253 0 obj << +/D [2247 0 R /XYZ 65.161 683.651 null] +>> endobj +2254 0 obj << +/D [2247 0 R /XYZ 65.161 672.692 null] +>> endobj +2255 0 obj << +/D [2247 0 R /XYZ 65.161 661.733 null] +>> endobj +2256 0 obj << +/D [2247 0 R /XYZ 65.161 650.775 null] +>> endobj +2257 0 obj << +/D [2247 0 R /XYZ 56.693 603.661 null] +>> endobj +2258 0 obj << +/D [2247 0 R /XYZ 65.161 603.95 null] +>> endobj +2259 0 obj << +/D [2247 0 R /XYZ 65.161 592.991 null] +>> endobj +2260 0 obj << +/D [2247 0 R /XYZ 65.161 582.032 null] +>> endobj +2261 0 obj << +/D [2247 0 R /XYZ 65.161 571.073 null] +>> endobj +2262 0 obj << +/D [2247 0 R /XYZ 56.693 524.807 null] +>> endobj +2263 0 obj << +/D [2247 0 R /XYZ 65.161 524.249 null] +>> endobj +2264 0 obj << +/D [2247 0 R /XYZ 56.693 477.983 null] +>> endobj +2265 0 obj << +/D [2247 0 R /XYZ 65.161 477.425 null] +>> endobj +2266 0 obj << +/D [2247 0 R /XYZ 56.693 429.917 null] +>> endobj +2267 0 obj << +/D [2247 0 R /XYZ 65.161 430.6 null] +>> endobj +2268 0 obj << +/D [2247 0 R /XYZ 65.161 419.641 null] +>> endobj +2269 0 obj << +/D [2247 0 R /XYZ 65.161 408.682 null] +>> endobj +2270 0 obj << +/D [2247 0 R /XYZ 65.161 397.723 null] +>> endobj +2271 0 obj << +/D [2247 0 R /XYZ 65.161 386.765 null] +>> endobj +2272 0 obj << +/D [2247 0 R /XYZ 65.161 375.806 null] +>> endobj +2273 0 obj << +/D [2247 0 R /XYZ 56.693 328.298 null] +>> endobj +2274 0 obj << +/D [2247 0 R /XYZ 65.161 328.981 null] +>> endobj +2275 0 obj << +/D [2247 0 R /XYZ 65.161 318.022 null] +>> endobj +2276 0 obj << +/D [2247 0 R /XYZ 65.161 307.063 null] +>> endobj +2277 0 obj << +/D [2247 0 R /XYZ 65.161 296.105 null] +>> endobj +2278 0 obj << +/D [2247 0 R /XYZ 65.161 285.146 null] +>> endobj +2279 0 obj << +/D [2247 0 R /XYZ 65.161 274.187 null] +>> endobj +2280 0 obj << +/D [2247 0 R /XYZ 65.161 263.228 null] +>> endobj +2281 0 obj << +/D [2247 0 R /XYZ 65.161 252.269 null] +>> endobj +2282 0 obj << +/D [2247 0 R /XYZ 65.161 241.31 null] +>> endobj +2283 0 obj << +/D [2247 0 R /XYZ 65.161 230.351 null] +>> endobj +2284 0 obj << +/D [2247 0 R /XYZ 65.161 219.392 null] +>> endobj +2285 0 obj << +/D [2247 0 R /XYZ 65.161 208.433 null] +>> endobj +2286 0 obj << +/D [2247 0 R /XYZ 56.693 160.925 null] +>> endobj +2287 0 obj << +/D [2247 0 R /XYZ 65.161 161.609 null] +>> endobj +2288 0 obj << +/D [2247 0 R /XYZ 56.693 114.101 null] +>> endobj +2289 0 obj << +/D [2247 0 R /XYZ 65.161 114.784 null] +>> endobj +2290 0 obj << +/D [2247 0 R /XYZ 65.161 103.826 null] +>> endobj +2246 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F95 923 0 R /F98 924 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2294 0 obj << +/Length 2281 +/Filter /FlateDecode +>> +stream +xÚí\mÛÆþ~¿‚p?ä ôÖûþâM§6´ê»´ìÀ ¨½q©’Ô½ä×w(J‹:I³¢(çC¾ÜIÔrv¸œç™Ù™!itÑèÝÙ÷Wg¯Þ*9â4×ÑÕu¤9Ñ&²La¢«qôáü½Ï|\ù—\ÑóŸŠÚWíÇë¢l?Ô“å?É÷EqÛ~ùïå?^þrõ#LsÁqJµÒ.ëÇÌWïëªùfg‘…Ùµhf—ÚÃmt¡ˆ3Ëù¥Æž¿jÿ1®›Ïþvuö¿3âiÄ"¥‰v"2ŽMy”LÏ>üB£1ü +élt¿9£„ Ÿ³èòì_gt¹t늬dKGÕ­N9W -V§½z C×!›s,‘Ú‹ÁÿŒçeZÿúòBSzþ£óªÈ_¿¼`¾Þ”ñl’&y¨²V ,U#³ù÷ný"áÖ0Ã##@)š‹lŽ+ +K&uĉ³.*}týùU­I{þèæÜfåj‚V0kF÷•¯Ó¬+_QF ¬f†Ïï¸&Ž»#(»XÞDí‡÷KX»+Å#hqW¿ýxÍ6%E÷¼šÏfEYã7°B l`‡˜NoÖ‚òdy`óŒóªLFÏâz‚Ób—ñÔ×¾<ò2\þûnà +jø«[œö&+*_á¦Í»+½8ü'f­eÚ,Â9ØüÚá[þog7Ê ·ìÈì–LæùíERL§EÀpÚq"˜Žá´e|ÀP·.¾¿õVOoÚJ¢¥ ¦·iZUi~ƒäÂYœø-ÜoÆBXÂN ­‘ÊŒŸŠrç-.þgÕä ÅtVä>¯C !A '„„D 5&Öå÷EoeP! ±\´÷ômúp˜'Ø:ð~âK¤²d|ÖÖq¥y•Ž±áD~]àFÂÆa +ê"u¸G/D^ —`çã Kc³²˜ù2{\½™*`ÍSrµD qˆ³N“Iì³TÑz +YKO—Ó´~¢§YÀKÊÙf¿8-) Œ–:òûÑReñ´¤œëÜò¶wX+&õ4ûTÕŬë…/¶‡ù‹@íãýtäñáøH°ÄS#‰'Îf“xäë4‰3ÜE9îìLàªÿŒÑÄ(>œ‘®Ëïi¤½• 0RK •­^§X‹¨ý’à‹kܸ«7ÈMbå“:-r¤AÖX¡>k*Ýá_mÞYÔ€hZv$Né¹”¢ÄJw€çú!¾KÇ­·zÓ$ÊÃÜ•„ùíþŠÃ5s;¬ËïI½•  !gê´¹³åáo¾ÝŸÖ"u9‚Ó„ãßþewÆ ÑÄl©!x¯Ëù3¼µ A¸“2•„ruLèf™¾nì­ Õ|8bVFÅ`ÄБßú+‹'i5ŽýA ¿'b¸1&OI RÂI 7YQUqùÂtv@špã†cuù=Y ·², QÚ~Ä Í|<«ÓU‡¦$çDˆ“ê„sD2sä +všgiîBÔ#Õ€…:a@y7\ñº#¿_Ñ_Y|!,hjEðF"Æ&%§³,Æ:ItûJ’Ö~”Ž²´K9ûýä6˜<6…­4¿E^i\ÞxäÆ*­Ž¸Ìâ]áÄfÑ“—þÚÃôIÇtºÑµ¥ƒDB¢„Üëò{‚»·²p[E¨Õ@$”X¾,%là ¶^#Àe(3\’¶#¿ç*÷V6€B•#V/“sq>> ^ËÃ/¶Çll£'¿ØÍŠGg¤g­mGM¨ò’—€išæB¬dä¾kTÆÉ­¯ŽÝ„DÙ“&…… DõÅc7N‰a&uĨá’Àù=‰§·²Äá’ýN:«ÿú°,Z¯wìA'ÅýqAŒOô¤–úV@ ø\È—î÷¹¿dù®sÚ?GéáZ6[O_ ¹;KŒŽü~Ðí¯lt)‡m™¹¿‹³9¶ç0ƶû-AãM+ÛŽJKQ–¾š9>ñM¼„\jg£²ßX?²x“ŽŽ‰OÏÔ­öLrøã)û!f ±¶åwä÷„Xoeñ㎶jAž?ç›vð}Ènþùgt{\Åö°þß±-¹wHØÇU5Ÿ¢[Æ&qýÅ{Hɧ¸óe‰î¹>ÆMß?£‰5Ã%:ò{⯷²økªázÕLj%@غú2Ç6 þü  Æªàˆ »+Nžv«ž/¾Í)y+8™ ñ 6.3‚XkO¹[å +$ù¥w«\2Bn·ÊaWNlkîÈïɽ• à!ˆá­÷>ÉÀÁâû‹±ùí¦õ­›4ßíFY‘Ü=æ[âä‘iýxÜh»íîëjüjG[t£Dê˜ò|ûîÇ"7„ž¶•šSIØA­Ô»Xh’‡{?B^9s ÆÕÌ +Âì¨îÈïÇBý•Å³³š¨:ªò?úɹë4Cï°“Iwä÷„poe ,˜Ã2íýfç7]9*ð)­ë²˜f†îÓ|\ÜoxO04E÷dˆê"p®Ÿ¯ÞnÌc_ Ñ Á˜d'}Ys#;½ï‹‘/ë%tëø±þÍó¶è --†lVnš(ìU^ß´½UÅcÖqbõo/É N….ô.,?gYÈ£X×ßô÷¦ø· „\Ø8½;¸†Ý„FC8ô7ŽIØujwÈ Çþ¸e‹° +endstream +endobj +2293 0 obj << +/Type /Page +/Contents 2294 0 R +/Resources 2292 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 2291 0 R +>> endobj +2295 0 obj << +/D [2293 0 R /XYZ -16.307 900.716 null] +>> endobj +2296 0 obj << +/D [2293 0 R /XYZ 56.693 741.747 null] +>> endobj +2297 0 obj << +/D [2293 0 R /XYZ 65.161 742.431 null] +>> endobj +2298 0 obj << +/D [2293 0 R /XYZ 56.693 696.165 null] +>> endobj +2299 0 obj << +/D [2293 0 R /XYZ 65.161 695.606 null] +>> endobj +2300 0 obj << +/D [2293 0 R /XYZ 56.693 648.099 null] +>> endobj +2301 0 obj << +/D [2293 0 R /XYZ 65.161 648.782 null] +>> endobj +2302 0 obj << +/D [2293 0 R /XYZ 56.693 601.274 null] +>> endobj +2303 0 obj << +/D [2293 0 R /XYZ 65.161 601.958 null] +>> endobj +2304 0 obj << +/D [2293 0 R /XYZ 65.161 590.999 null] +>> endobj +2305 0 obj << +/D [2293 0 R /XYZ 56.693 543.491 null] +>> endobj +2306 0 obj << +/D [2293 0 R /XYZ 65.161 544.174 null] +>> endobj +2307 0 obj << +/D [2293 0 R /XYZ 56.693 496.666 null] +>> endobj +2308 0 obj << +/D [2293 0 R /XYZ 65.161 497.35 null] +>> endobj +2309 0 obj << +/D [2293 0 R /XYZ 56.693 449.842 null] +>> endobj +2310 0 obj << +/D [2293 0 R /XYZ 65.161 450.525 null] +>> endobj +2311 0 obj << +/D [2293 0 R /XYZ 56.693 393.301 null] +>> endobj +2312 0 obj << +/D [2293 0 R /XYZ 65.161 392.742 null] +>> endobj +2313 0 obj << +/D [2293 0 R /XYZ 65.161 370.824 null] +>> endobj +2314 0 obj << +/D [2293 0 R /XYZ 56.693 324.558 null] +>> endobj +2315 0 obj << +/D [2293 0 R /XYZ 65.161 324 null] +>> endobj +2316 0 obj << +/D [2293 0 R /XYZ 65.161 313.041 null] +>> endobj +2317 0 obj << +/D [2293 0 R /XYZ 65.161 302.082 null] +>> endobj +2318 0 obj << +/D [2293 0 R /XYZ 65.161 291.123 null] +>> endobj +2319 0 obj << +/D [2293 0 R /XYZ 56.693 244.857 null] +>> endobj +2320 0 obj << +/D [2293 0 R /XYZ 65.161 244.299 null] +>> endobj +2321 0 obj << +/D [2293 0 R /XYZ 56.693 196.791 null] +>> endobj +2322 0 obj << +/D [2293 0 R /XYZ 65.161 197.474 null] +>> endobj +2323 0 obj << +/D [2293 0 R /XYZ 56.693 149.967 null] +>> endobj +2324 0 obj << +/D [2293 0 R /XYZ 65.161 150.65 null] +>> endobj +2325 0 obj << +/D [2293 0 R /XYZ 56.693 103.142 null] +>> endobj +2326 0 obj << +/D [2293 0 R /XYZ 65.161 103.826 null] +>> endobj +2292 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F95 923 0 R /F98 924 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2329 0 obj << +/Length 2627 +/Filter /FlateDecode +>> +stream +xÚÍ\[“Û¶~ß_Áqgêݙƕ¶ã¤¹L2u'÷¡ÛÓáRÄ,Eª$´ëͯ(Rñ’¥ƒ±é“( <8Ïwî–¾¿øúúâÕw1ŠC׋ ¤(ŒIbQp=Þ_þ¬r•ÔêjF¾üg©UÝ^.ʪ½Ð«îÏoÊôë²¼m¿üûÝ?®>^ÿh¦™‚b!ZjïôC®ê•Rºnþ6³“@šÙCÖÌÎÃET3⨛ŸsC0’—¯ÚBÃæÆ‹o¯/þwA y@„(ŒYÅ…˜éúâýGÌ͆ÄcÜïF®A0¢,4×yðîâ_¸[ <º"{ÚX4¾ÙÜbpR[ ^d¹*’õ€ëóhŒœùKŸ¾#Xœ™µKÄ‘d¤Ë&©ÌÒjUÁdbðâFÇÝ«<Ÿ–"Xlç7+½Îÿ{\jÆnúé · NnUšò$MËm¡áØÙÝõŒx¡îͪÎmÁb$$÷Æ>}G0:3kÆ!ihF­Ö›<Ñ +*7@QÜ»2:÷w§ç,5ؘÍ1 ÆeÛl¡kÖGÕÆçµ:/è"BÂüûŒ~qÈ¢‚þûÅ&V‘ðèŽBúÓ.}úŽÚÅ™Y íB"cÞÅ@}±ÝÌÁ:H—“ãïp` tYn¶CŸ{÷óŸHdV&­XÀŸðõ#ÎØP#˜[Èk(Lèj4ƒ?íÓwPgf-›9y—Ø»^©coêD#/†oeöâ´3´©XÄ ¶­Üjc‰€c‹0Þ¯ $\c‘î¸/]ªú`‰_žÈ(ÁÈ®’; IaéhŠ˜£(½!m@ß iîÌ‘fœC¾K>¿9ŒÖO¤:Þ|ZçÃá¯m2grPGö~•¥+ s˜ÔS{†u¿ìpþ†¥*T¶¤ p~ø6î.É·jäEœG‘4bÍb(êÓwD‘3³(’aÚ%ò+Uos ÎÏCÅâê·EåhŒÊm>÷àÝåý–òot +4ûRè$+ IĹMÀ#IýÕÈôç̬âB†Ž‡Zã^Ü”Ë,V9'9´ü•l6y6u†q¤Äw^‰láEû¤°´ÊÕj‚× +O!’Œ=gBS0Žx3Ùê2›²H[ +Ê‘$Ì_ÚR†¤ðWÐwTUÎÌZ¨*!Âɾœ¿.ïÀÐ>žBzÿçq@Õi¹9°6_~<‹©y–‚ƒ»EU®'6Õ:©–JCcÁ*Knò©ëJ`V­ÊZ3/Dïw2b%‰2"Üi‰˜ãn|4(BÜ`²3ƒêL‘ü\î™Â}úŽvfá&@–¡™+DDÒ} ¼P•*:p» Š™¿ +Ï€¾Û:»3 W•<ˆR¾÷ê ž•qôÁ=÷“·h £Góå ’Y1WÀÀM’ÞæYq[O´ókY€Sƒ@ë÷F?l ZVUjêÊ}Y =µžŽâ̇æïz½½)‡>}GåàÌ,\ sÉ »êÚNè è×õS³Â<©¬}ÇuvfÖB ÑfûÆ~¸ÿr¨†NgLËÂbð*hœ#r&¿ú÷¼¬UíXW%–,[ö0BØmG‚m|É9G¡œzÆS:c83@Å·cpÃbîiŸ¼#`]YµÀ+Ûï$8ÜŽÑIòK«ÒÈËéú&oª—‰ î–¿–ƒ]ß™§rYÍ¡N/ô¬ ­I¬Ùyõ@Â1ñß>}Güº2;W"u Á¿œ@e6œñƒÆÃX¡;-hð’‹Þ¡›¨LÞÚôúž/º-ߪÄfÇÇa Õ1{ºóî¨6˜¿ëWuhtîûÀÞ 6ŸÌ_µi@ß¡ÎÌZ˜X,ïÒ?oËy¶ÈžšÂ…ƒx<€ÖºÊnÀÍâåÞww É, +6,&æÓß¾§}7‘tg.’,æ»í™;™œ$Òi;ˆÁ/FJD¤¿­´Y¸HÄC&èç~%ó·>ÁæIÞ&Å&¹"ørib|©öûêÇN8˜5ºü\?î¶ðçyyE… {‹eûSºJŠå~‹ÿ*¹¢øòËŠöj̻ߌ·õû9mRˆ=ššHŽ¢(Üaë†ÛåQ&FŒýÀ´ÜÓ¯³&ùÜ?j iC´½®Ú +Puf´ Ïdd.Ì'RÀ˜™ÕPycäôº1,mèønéÕ>p, K•EÐHc¶Kùz ©¤»´‘/ 2 ï¦AÜ™…k*‚µ¯¶Î³åJC»¹“ù/ÛZCm`½IRx AUn¡âdnÜ£LgP·Nª[UÕ–q bD£ð9s:Ô|ÆŒy‚hSÀ*tõðh#ÔVgy¦lpË#dØôˆ["û˃è;âÖ™Y ܲ )öæãÚû´…ÖHŒ|Ô*ÕÌbCf=ñ†ãM¥R>XJ&`uâS£•eè Nv’Æ°7‰@oˆéÓwDŒ3³ˆ¡í¬bÀQSú(à­óiɬ‚æ³|ïuU…†Æz5Úµº;(Â$–"ÆŸµ\b ÂØ—÷{“—é­…%±ññ}ž`e¢ºæà2_*¡OÞM#8³ +Wĸ١è¢?ø&ÆçÀ.5UÝ$:6Ê©â.«ÊbmÈ×Óöµ]_ÿçɹÛóFª(õ´ì‡ùÎ ÒáÃÞù÷Ó;KõD¢±ç=ŒŽðÓŽó¡ž8GÌç`„1Ä=ž6 ï¨ œ™µÐP¬‘‡½Ç2÷VíÒ/6Aü¬ÑàG™TÆ{‡«I¥ ôx¥<[pŽ¡ŽÖÓò¶Ê„aÄɳn= X"ùÖ%] +Á6ñKÄbûd„8ó·¡OÞM±8³ +×+Æߌ(Ý÷ŠÉâ6¡¶Áå|áµ\g®€uõTÞÄéussk,}6h GrĹ¼æÁ9ÄÜÄ\aü”cˆ÷8! +endstream +endobj +2328 0 obj << +/Type /Page +/Contents 2329 0 R +/Resources 2327 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 2291 0 R +>> endobj +2330 0 obj << +/D [2328 0 R /XYZ -11.232 900.716 null] +>> endobj +2331 0 obj << +/D [2328 0 R /XYZ 56.693 742.033 null] +>> endobj +2332 0 obj << +/D [2328 0 R /XYZ 65.161 742.716 null] +>> endobj +2333 0 obj << +/D [2328 0 R /XYZ 56.693 696.065 null] +>> endobj +2334 0 obj << +/D [2328 0 R /XYZ 65.161 696.748 null] +>> endobj +2335 0 obj << +/D [2328 0 R /XYZ 65.161 685.789 null] +>> endobj +2336 0 obj << +/D [2328 0 R /XYZ 65.161 674.831 null] +>> endobj +2337 0 obj << +/D [2328 0 R /XYZ 56.693 628.179 null] +>> endobj +2338 0 obj << +/D [2328 0 R /XYZ 65.161 628.863 null] +>> endobj +2339 0 obj << +/D [2328 0 R /XYZ 65.161 617.904 null] +>> endobj +2340 0 obj << +/D [2328 0 R /XYZ 65.161 606.945 null] +>> endobj +2341 0 obj << +/D [2328 0 R /XYZ 65.161 595.986 null] +>> endobj +2342 0 obj << +/D [2328 0 R /XYZ 65.161 585.027 null] +>> endobj +2343 0 obj << +/D [2328 0 R /XYZ 65.161 574.068 null] +>> endobj +2344 0 obj << +/D [2328 0 R /XYZ 56.693 528.659 null] +>> endobj +2345 0 obj << +/D [2328 0 R /XYZ 65.161 528.1 null] +>> endobj +2346 0 obj << +/D [2328 0 R /XYZ 65.161 506.182 null] +>> endobj +2347 0 obj << +/D [2328 0 R /XYZ 65.161 484.265 null] +>> endobj +2348 0 obj << +/D [2328 0 R /XYZ 56.693 437.613 null] +>> endobj +2349 0 obj << +/D [2328 0 R /XYZ 65.161 438.297 null] +>> endobj +2350 0 obj << +/D [2328 0 R /XYZ 65.161 427.338 null] +>> endobj +2351 0 obj << +/D [2328 0 R /XYZ 65.161 416.379 null] +>> endobj +2352 0 obj << +/D [2328 0 R /XYZ 65.161 405.42 null] +>> endobj +262 0 obj << +/D [2328 0 R /XYZ 56.693 368.678 null] +>> endobj +2353 0 obj << +/D [2328 0 R /XYZ 56.693 341.41 null] +>> endobj +2354 0 obj << +/D [2328 0 R /XYZ 56.693 296.222 null] +>> endobj +2355 0 obj << +/D [2328 0 R /XYZ 65.161 296.511 null] +>> endobj +2356 0 obj << +/D [2328 0 R /XYZ 56.693 249.86 null] +>> endobj +2357 0 obj << +/D [2328 0 R /XYZ 65.161 250.544 null] +>> endobj +2358 0 obj << +/D [2328 0 R /XYZ 65.161 239.585 null] +>> endobj +2359 0 obj << +/D [2328 0 R /XYZ 56.693 193.328 null] +>> endobj +2360 0 obj << +/D [2328 0 R /XYZ 65.161 193.617 null] +>> endobj +2361 0 obj << +/D [2328 0 R /XYZ 56.693 147.36 null] +>> endobj +2362 0 obj << +/D [2328 0 R /XYZ 65.161 147.649 null] +>> endobj +2363 0 obj << +/D [2328 0 R /XYZ 56.693 101.392 null] +>> endobj +2364 0 obj << +/D [2328 0 R /XYZ 65.161 101.681 null] +>> endobj +2327 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F95 923 0 R /F98 924 0 R /F52 695 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2367 0 obj << +/Length 2651 +/Filter /FlateDecode +>> +stream +xÚÍ][sã¶~÷¯à[½ +‹;‰¶“™¦Í¦ÓIz‰=Ótvó@“Ä./*IÙñ¿/(R‰IIæ@8yYÛxx|߹ዃM€ƒ¯o¾¼¿yÿAà@!%© îפH†ADbapŸo¿Ó¹ŽýnE¾ý{Õê¦ÿu]Õý/ívøò/UòeU}îÿøþî›w?ÜÿÍÜfERBôÒîÚç\7[­Û¦ûÚÜ‘¹»dÝݹ QH£`% +‡ûsa†Ñíûþ¡²»ðæ«û›ÿÝ#$IÅ‚P$1 ’âæã8HÍwFÄU<F Q&Íïypwó¯<̾8#GÙ\!‚e¯Ó'JÅA‹ãeï?˜!‡çàÝ5â22_›%ÛX矰Àmaþ%ïVãÛ»"k·¿·"Ôü¡Ë´ì¦ýØä½`3eìîÇ×ã‡5KDB„L!n¦ÕÝHÚùOOo@Íc(y¼A/˜t£]å D$™Ê˜ ÐÌä/W^"EÕÊÖ› ÿå» +£e=*ÎŒ¦ïW÷ƒ¡ÁK$œÊ >ÖûŸw£qæÒ÷çܖU9½º<úþþ?0ª}»Û·SÉ¿»(ùpQš5»<~†Ýa]Um‡d‹g°“_î‹]7°ÁÙxœ"!ÆðyƒüX¾#䕵€<Å(¢ƒ oö;³IíN „ Æ‹p$xäb¼.ü¼hÀ¥¢ˆŠÐ“oã‡\wÖûý—ÍsYí^ü½o³ʯv»ªæ?6æ>ónñç!L$Š„Çi,ßÂÎÊZ@˜bDøâ3s6É6®ãVòºÊ d&»ßf ”L&®-rgØ8—zë+ºqV6Þ°ŽŠ÷‡õ±|G¬;+ku¬‰è`°ãB[:Î&3ÆzaÇ&ÎtÅlQ•U³‹¨)÷‚ñ¬Yx¢NÖër˜ïYBõåB_ÌšÈwc–»²pf !JÙ/áE û"ê hÞÖn,ßqí¼);LFØ×F¼MÆX¾ãd8+käP"†‡ ?åMeé"’ZÇ-Ôð–úÉ¢Œ{¦ªþJÉñ!¯’Ïã›6®¦Ý®úìWm=ÕeÞȾ:á úcùŽÐwVÖúæ'ãÃC«‹]·ÐÔš ‚  ÎÛUî轸õJ€Ö´:N—õ|WD)¢«JxÃ÷KéŽèvTÔÛ‚# {‡ ¡fW•)8]|ÔõCÜfÅYËÊPÈÂ`ECÝó·—l–yBãØ_Œ;%— È'³1Ï>"NÃ75?ÔÀù2?Ó×/²ÒØmcˆ@<òi0G‚z´GcùŽöÈYY {„»V­áíº8M¡Ypg‘,6T(4—Ñ?Ã’•à(ãi lkz‚fu§Í翹lR€óÞÙ_g¹†›ás=³”d&FÒßöäD¾cÜ•…3†©®3lØž„";kã‘ïFtwe-˜ŽMØφ°ÅK}±?­Æ¡Ýòr=¶|Ìêª,à‡áÀ+K`;–ê&Ñeƒu˜&Ž³Ü Q„°ò×Ù8‘ïˆ]geáØ%Š ­õ1I³G˾§²ZºVþ'Ÿ7‡¾”ÚصÍJx3`a!3e˜½¥ƒ!æÖa¿–„ˆf@C=ºNÅþ.'òiꬬM¹@|ð0n—/.~(ǹ4è²Êõò›’çÓ@*~oþÐ}Ü\«Ï³dòdËw$ƒ³²d` F^fVÞjÙ1üˆ‘ÅOãÙdKoáíâÍÒo¥A»©ÁVËú4ZãËüµNä;òÄYY žP†D8D—¬!`/Ûâè†ãÙæ Á߃kÕ¾N–~ùÌ®´JšeÏmØèÒøFp=æô5¢yN`…˜Ç¶©‰|GN8+kÁ B‘ü©mªI²Ì,ïÂ/¿Ú‰MªÒ$\Ý4ù³M\M•Ë‰Øáó?¾ÒGy¾‚ýÅÌyjÖG£©1JcñnuVÕ¡FQùs›’kt²ðÓä}#ÎÜûÂêô<ÈmRívWèül"}h¢ÎýÊ\³XBı¿¶˜±x7¬;« +ǺÂHªaŸüÐÓlL0? +6»ÖL^ÆÍz­¨õ}Óÿ !09âÄGkÌÉÿ5Ã1ÂR]ó_Íüa +endstream +endobj +2366 0 obj << +/Type /Page +/Contents 2367 0 R +/Resources 2365 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 2291 0 R +>> endobj +2368 0 obj << +/D [2366 0 R /XYZ -16.307 900.716 null] +>> endobj +2369 0 obj << +/D [2366 0 R /XYZ 56.693 742.454 null] +>> endobj +2370 0 obj << +/D [2366 0 R /XYZ 65.161 742.742 null] +>> endobj +2371 0 obj << +/D [2366 0 R /XYZ 65.161 731.784 null] +>> endobj +2372 0 obj << +/D [2366 0 R /XYZ 56.693 685.211 null] +>> endobj +2373 0 obj << +/D [2366 0 R /XYZ 65.161 685.894 null] +>> endobj +2374 0 obj << +/D [2366 0 R /XYZ 65.161 674.935 null] +>> endobj +2375 0 obj << +/D [2366 0 R /XYZ 65.161 663.976 null] +>> endobj +2376 0 obj << +/D [2366 0 R /XYZ 65.161 653.017 null] +>> endobj +2377 0 obj << +/D [2366 0 R /XYZ 65.161 642.059 null] +>> endobj +2378 0 obj << +/D [2366 0 R /XYZ 65.161 631.1 null] +>> endobj +2379 0 obj << +/D [2366 0 R /XYZ 65.161 620.141 null] +>> endobj +2380 0 obj << +/D [2366 0 R /XYZ 65.161 609.182 null] +>> endobj +2381 0 obj << +/D [2366 0 R /XYZ 65.161 598.223 null] +>> endobj +2382 0 obj << +/D [2366 0 R /XYZ 65.161 587.264 null] +>> endobj +2383 0 obj << +/D [2366 0 R /XYZ 65.161 576.305 null] +>> endobj +2384 0 obj << +/D [2366 0 R /XYZ 65.161 565.346 null] +>> endobj +2385 0 obj << +/D [2366 0 R /XYZ 65.161 554.387 null] +>> endobj +2386 0 obj << +/D [2366 0 R /XYZ 65.161 543.428 null] +>> endobj +2387 0 obj << +/D [2366 0 R /XYZ 65.161 532.47 null] +>> endobj +2388 0 obj << +/D [2366 0 R /XYZ 65.161 521.511 null] +>> endobj +2389 0 obj << +/D [2366 0 R /XYZ 65.161 510.552 null] +>> endobj +2390 0 obj << +/D [2366 0 R /XYZ 56.693 464.373 null] +>> endobj +2391 0 obj << +/D [2366 0 R /XYZ 65.161 464.662 null] +>> endobj +2392 0 obj << +/D [2366 0 R /XYZ 56.693 418.09 null] +>> endobj +2393 0 obj << +/D [2366 0 R /XYZ 65.161 418.773 null] +>> endobj +2394 0 obj << +/D [2366 0 R /XYZ 65.161 407.814 null] +>> endobj +2395 0 obj << +/D [2366 0 R /XYZ 56.693 361.636 null] +>> endobj +2396 0 obj << +/D [2366 0 R /XYZ 65.161 361.925 null] +>> endobj +2397 0 obj << +/D [2366 0 R /XYZ 56.693 315.352 null] +>> endobj +2398 0 obj << +/D [2366 0 R /XYZ 65.161 316.035 null] +>> endobj +2399 0 obj << +/D [2366 0 R /XYZ 56.693 269.857 null] +>> endobj +2400 0 obj << +/D [2366 0 R /XYZ 65.161 270.146 null] +>> endobj +2401 0 obj << +/D [2366 0 R /XYZ 65.161 259.187 null] +>> endobj +2402 0 obj << +/D [2366 0 R /XYZ 56.693 213.009 null] +>> endobj +2403 0 obj << +/D [2366 0 R /XYZ 65.161 213.298 null] +>> endobj +2404 0 obj << +/D [2366 0 R /XYZ 65.161 202.339 null] +>> endobj +2405 0 obj << +/D [2366 0 R /XYZ 56.693 156.16 null] +>> endobj +2406 0 obj << +/D [2366 0 R /XYZ 65.161 156.449 null] +>> endobj +2407 0 obj << +/D [2366 0 R /XYZ 65.161 145.49 null] +>> endobj +2408 0 obj << +/D [2366 0 R /XYZ 65.161 134.531 null] +>> endobj +2409 0 obj << +/D [2366 0 R /XYZ 65.161 123.573 null] +>> endobj +2410 0 obj << +/D [2366 0 R /XYZ 65.161 112.614 null] +>> endobj +2411 0 obj << +/D [2366 0 R /XYZ 65.161 101.655 null] +>> endobj +2365 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2414 0 obj << +/Length 2860 +/Filter /FlateDecode +>> +stream +xÚí][Û6~Ÿ_!ô¥ °Ãoº´ÝŦ»I›E.»X ÉmÓcíÈ’«Ë8ì/uqÉ–u8éK<±©Ãcò|çNÚun×ùåâçÙÅÕ3î:! +=â9³•ãäùN€)¢¾3[:q±¹||I¸ûèUZȼùs•fÍźýðŸéâç4½mþóßë?Ìþ¥¦¹Ä…œ7Ô®‹ûXæk)‹¼úXÍŽ@ÍîÑjvæùÈ'sÉQè·ó3OôƒGWÍ &^õàÅÓÙÅoX‘wìpy!uü#Ï%Îbsñîƒë,ÕgŠÄÂÀÙÕ#7Ç."ÔSÇÎõÅ.Üv%ÜÁÙÓf!®×ðôž^s±ìê™RV= æêƒzðËh±2~ïr·Ø¨ñãKÏu]o¢býÃãKLÔÊ"Š£â}ÌㆮZ±ŠtõòK÷»ªÂ>q|ªøa´ú®ÕûÜU+Ç<‡ 0L:«/¿\‡Úñw' ÂÛOÐÆÕhSúa÷és#_-d†/7ÞC! '`¶&˜Ý8ÍoZIèìêžqŠS Toî“åR.;¢pHÉyWox”ÄQ";cÔ¾qøУMš¤¹ü F=(#…ÜlcQ ±2.zD-„úÔ@ô^‡ÑçDüÕ Ï ¢8´‡>/ÀH©)[àë’7Þ1«pèyCk Ã2Múüý0˜ +6æ©2gll™GÉ l¨€ [”y‘n`c3yå”×"…SógHr ¸Íä]”–ywô8Æ|eº]l]ú† 0fV>Ež"_£`•&E—Ã0X‰MßÃöíNÄ%p‹wk™L6ó8]Üæ°±é +jý>Pƒ Dmº.Ó±Íúqp³êGþ§T‚.pxˆ#ö€Ó¥ocf5€£ȧ nʼïÿÔËýS6ŒžgýÍ{÷¡q'ÐIÄ1¤< ¯Tæ"»™Ø:(@&çbq«-¸bœžÓ±ô(Eœ†–K™,“*bÖñ,‰bÈ÷,z–X…ø8°§ºô µƒ1³Úsºmžb[„Šé  +jOæ`³ ¥øïk  -‹þßëE%æÃ:®r¨Ó( +èȸ®¡”’^§;ØÀ›,]­t˜veÐìa«Kß[ÆÌj`Ëe(dmö,SjQf9Ô¹J +™PIÈn¡Yr;µYîDíÛ'|ƒ·o^@¿Ø"KûÎGmt`V…‡A•×=£aå>G>÷Î`Xl>ߊLlÐÇœwÞø$;ãk¤dÕ-fT9g( ö2ª=úfÚÁœY¸và<@˜½vؤwPoD¢‘P=´Õ§Ç‹L'][VZ­Jñy t <Ǭ·ÇÂÑé–¯fèIœè­¿@É( +|n/]ú†x1fV/ÌW¯m «”erNýCsvK¹e\<0­qbd¦¼5x¨*2Ní†CƒÝy/Z"áÌEAp^ƒ‹}îËR ƒëèËüëÔö–…>RßÆšþèÑ7ÓæÌjè×EtŸôШ`&;Õ’`ÃbÍE®e’³XËf£3‹"º“†´ F¬h¾•‹hAc\¡¶²ÀCnh/aÜ£ocfá@aAˆhÐàä@ô—Õ­ÛQYÓ°… $˜›²š`À©zæï=ôÃ07ëL®4çˆ6B9B¢u8™ŠY1¥öpÐ¥oˆcf5pà+‡´í¢\Fé‰e,'FKyô¹ÏyŒAý·NwÉ´)Q°'|#™‰j#_½ž=½†–BE”&+oŽ ³ÇÔ«½lC¾¡03«!Ìž¯¼ßÖQ>â~œ¨žo•‚1ȤË3¨LjTæ¡eñoÛV'º]+ŒSD°½¤E¾!쌙ՀŠS¹Û&-¶™ÜVU€å´!»Hîm8Toß<Ÿººå“6ŽYP‡^ÞðÐCxƒ].Fáö{ô áb̬\Gœ±.gpž¡Îÿ*ŠeŸú°ôE͡·3Š í5+ô芇5fÛÅ MÚÆÚbté.†1³X!ÕÉÐ ++ϲyŸ–Ð6_iɨLÜ7WØyZf 9ñôjA:dP¸ª+™Ù½®æÖ©kXé7„Š)«H©ú©¼¶¾‘M;®Z‚ñKÅÌŸAÊq •ä²ÐÜǃüÇ(¢hØ$lAªGß SæÌj€ªâÔ ÷í f©Ú}Hq ôº¶[)²c àïNô:<, VO~7’•:!w® 8ÈGNÐdœ¬!§Kß9ÆÌ‘CCùü외©r½« zX î7Ê£‰CQhœ…Ë¡ç¶Ò¹˜CO %©î9ê7!k°èÒ7„…1³°ðCä‡m¹eÎ)=®HtÝ…¹\p ”—ÐC"Ö¬¥€žbL¨€—¹ƒ´\…×ä…¬¦Kß4ÆÌj€Æ P@Û²NÝ5=ç5ü¿Î^¾°Xý¹Nu]ø5ÝN}¤W‰)’(¹Y•ñÛbÇ!Áâ½’K¾!$Œ™Õ€÷QðùÀãÔ×ÉSSãñ¼µÛ0ö#ð3VtwÆÚ„©5Äté"ƘY Ä05'fƒÉŸÙ&"ç6’B·€Ni“¢´&›]ú†²i̬†lRþù-¨íkèôðv¢aÝ$³|ò´Š‘wõ5GôG«ã0 URÑ^£GßÆÌjÀ€0†ŸŽ’+Mš[y­ŒËb³å@™~|Ãq ³¶ßò†Ûm‹Õf%Hؤ?l-E¾ÙZ3{(è¾ÒóDí˜K‘ë·Ýç? ›îOwK€ZC4ŽfTWÊõ)ÿõD á[?ʱ¯„ŒBMªÂš€wé +¸)³ƒNBµ¸­›ýíD7SQl$üêjøÝn§±•·2K¤Žp¥½kuÔ['˜Ù–sÑyº*vGΟzd±Ñ}£—éâ@ʯ~º²§Œ>KE쬷5u… ;g,£d•jÜD8©æ²w~’0‚\×^$Ö£o¨¦Œ™…» „qDB®×o&ì£j¶FÊÁ‰(™¶ñX7åF1!4êìиéõ?Þ¾|újödöüõ+Íè‰PŒ\f/zêÑ7]cf5D—2Di=kÏtZ¹w5“Û4ƒöÎC3­Ð+¡ÄøB‚M”Ão}}òvöëë7Д{s7‘ý€6Kâ"×^{p—¼¡È›²ª!ñ¤ºË¾my> endobj +2415 0 obj << +/D [2413 0 R /XYZ -11.232 900.716 null] +>> endobj +2416 0 obj << +/D [2413 0 R /XYZ 56.693 741.747 null] +>> endobj +2417 0 obj << +/D [2413 0 R /XYZ 65.161 742.431 null] +>> endobj +2418 0 obj << +/D [2413 0 R /XYZ 56.693 694.923 null] +>> endobj +2419 0 obj << +/D [2413 0 R /XYZ 65.161 695.606 null] +>> endobj +2420 0 obj << +/D [2413 0 R /XYZ 65.161 684.647 null] +>> endobj +2421 0 obj << +/D [2413 0 R /XYZ 65.161 673.689 null] +>> endobj +2422 0 obj << +/D [2413 0 R /XYZ 56.693 626.575 null] +>> endobj +2423 0 obj << +/D [2413 0 R /XYZ 65.161 626.864 null] +>> endobj +2424 0 obj << +/D [2413 0 R /XYZ 65.161 615.905 null] +>> endobj +2425 0 obj << +/D [2413 0 R /XYZ 56.693 568.397 null] +>> endobj +2426 0 obj << +/D [2413 0 R /XYZ 65.161 569.081 null] +>> endobj +2427 0 obj << +/D [2413 0 R /XYZ 65.161 558.122 null] +>> endobj +2428 0 obj << +/D [2413 0 R /XYZ 56.693 510.614 null] +>> endobj +2429 0 obj << +/D [2413 0 R /XYZ 65.161 511.298 null] +>> endobj +2430 0 obj << +/D [2413 0 R /XYZ 65.161 500.339 null] +>> endobj +2431 0 obj << +/D [2413 0 R /XYZ 65.161 489.38 null] +>> endobj +2432 0 obj << +/D [2413 0 R /XYZ 65.161 478.421 null] +>> endobj +2433 0 obj << +/D [2413 0 R /XYZ 65.161 467.462 null] +>> endobj +2434 0 obj << +/D [2413 0 R /XYZ 65.161 456.503 null] +>> endobj +2435 0 obj << +/D [2413 0 R /XYZ 65.161 445.544 null] +>> endobj +2436 0 obj << +/D [2413 0 R /XYZ 65.161 434.585 null] +>> endobj +2437 0 obj << +/D [2413 0 R /XYZ 65.161 423.626 null] +>> endobj +2438 0 obj << +/D [2413 0 R /XYZ 65.161 412.667 null] +>> endobj +2439 0 obj << +/D [2413 0 R /XYZ 65.161 401.709 null] +>> endobj +2440 0 obj << +/D [2413 0 R /XYZ 65.161 390.75 null] +>> endobj +2441 0 obj << +/D [2413 0 R /XYZ 65.161 379.791 null] +>> endobj +2442 0 obj << +/D [2413 0 R /XYZ 65.161 368.832 null] +>> endobj +2443 0 obj << +/D [2413 0 R /XYZ 65.161 357.873 null] +>> endobj +2444 0 obj << +/D [2413 0 R /XYZ 65.161 346.914 null] +>> endobj +2445 0 obj << +/D [2413 0 R /XYZ 65.161 335.955 null] +>> endobj +2446 0 obj << +/D [2413 0 R /XYZ 65.161 324.996 null] +>> endobj +2447 0 obj << +/D [2413 0 R /XYZ 65.161 314.037 null] +>> endobj +2448 0 obj << +/D [2413 0 R /XYZ 65.161 303.078 null] +>> endobj +2449 0 obj << +/D [2413 0 R /XYZ 56.693 255.965 null] +>> endobj +2450 0 obj << +/D [2413 0 R /XYZ 65.161 256.254 null] +>> endobj +2451 0 obj << +/D [2413 0 R /XYZ 65.161 245.295 null] +>> endobj +2452 0 obj << +/D [2413 0 R /XYZ 65.161 234.336 null] +>> endobj +2453 0 obj << +/D [2413 0 R /XYZ 65.161 223.377 null] +>> endobj +2454 0 obj << +/D [2413 0 R /XYZ 65.161 212.418 null] +>> endobj +2455 0 obj << +/D [2413 0 R /XYZ 56.693 165.305 null] +>> endobj +2456 0 obj << +/D [2413 0 R /XYZ 65.161 165.594 null] +>> endobj +2457 0 obj << +/D [2413 0 R /XYZ 65.161 154.635 null] +>> endobj +2458 0 obj << +/D [2413 0 R /XYZ 65.161 143.676 null] +>> endobj +2459 0 obj << +/D [2413 0 R /XYZ 65.161 132.717 null] +>> endobj +2412 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2462 0 obj << +/Length 2449 +/Filter /FlateDecode +>> +stream +xÚÍ\[sã¶~÷¯àìK¼3õYÜ 6/I&m:¤MÖîL;»y€$Hb—"’ZÛýõ%:‰hK:Å/k­‚ßwn8I I¾»úæîêÝ_%I2ÈSÉÝ´Ëþâ·Õô›ªú´ûÏ¿o¿ûóÝßÝmn(…LÊ´Ûö±°ÍÒÚ¶é.»»ÓD»»+ÞÝ]¨R¦“ YÚß_¤N`ª¯ßíþP¦º^ýåîê—+êÄ“„&RÊx’faÉtuõág’ÌÜ5§ˆL'÷Û‘«DRŒ+÷¹Hn¯~º"ýL§b÷±ûóÝï$»ù )KR‘%ª“Ü}/‰ÓS¨„A¦³¤¶Éü (ì ¸*Ò§ìÓnt¨| TÑ¡|I(¤J£îðûiV±le·ëE²ûð¾G¢{…[,ˆ-{ÅÁ{ôäóí»?,&ùp£¹¾·¸qSSî t·ø¢ÿâù/®[œÐy^Îp#Mùˆ¸i̤@>“Ù´KGMÔØ™iÍpþtp¶?±«9ù®L]æå;cÈ©ÍËÆÖE÷ ¸g?žHÈR ZÇ#á¾ü@+ëABî¬hªv$4X<¬,öeáÆuž5°Ú´ëÿÛ@³,ÄÆøûÜÍ>9,‡¦{ãö‘1¹§òà]h,d7ø‡|º4¶øH$iWî_úvûà·ŽË?¿½¡l;­ó +šb'ôäó+ç=9cñ|œÒ¸{–XôÈ£W¸²xz)ÍA¹@hûfo,ÒÈM6‹q æ<—-[´5®æçÓñ ÙÀú®iU¶u>A»ƒÖ”SÛŒ;__ÿëîoÿ|ëih”Ê@ûòy¬¬R—}dlǃÆNÛ¼zŸÁñðäniÊOÈ·ÜV¸qßš2·nì÷6Ÿ= <‚£´ã›/ŠúûUÓfdJÚ‡uÕ<³§ù k*öåò!XY>(§)ç;> 10ô +¿‘ñ&$™^2RœEaUƒ..7ƒ|ótu5¨Âuhì¢Âç½Øœëúðuë©- +ÏÙ:;zEöì4/Sí‚ÐxÕ‚ü@^+ëÁKÍ€ð¾Z°2õ§ÍKÌMƒeçÍzSçÕ)´ÈK;©­ù„õ+. Æš}¬\Zdk–7ëÂ<k’ÜJH¥ºd.)%-X¤\²È›¶ñÈ%¥pÚ¤Y¼dRrêHÏ0쉴 ¡ªz˜.½{¯_ÏfØbz!WõØUêÚ–3[£+êÓÊ+ejF®3öb;¤‡ÔÕ=*N’¹‹*^Ad ?ÅÁÊzÀ˜ `¢/ˆÜ"añXmÎk|8’Ýc[,¾t‚Ž _‚yíææxpØEhÞaC‡u]-j³êâ_çîz‰h°÷åb=XY¬S¬‡:ÚV5›éë8'>®ù=döPÀD?áÒ|¶#×ýüÆÐo´’ƒÈ2 "^Éa ?ŒáÊz‚0àœ>¥6ÏA#ìzm!e(縭D½9’‡ñë7'ì·5eƒõ=ÖWùį̀é4žµ¢ã¥êùxVgѵ¥}bÖãá+ã2àÚΑïx]å)Ø2–†º_Ç1¶—äš¿;LÀºšÏChŽ]\i +”Å[›È„t°²Öí×­/Ño|³*B'³WJìSÃ/ÖxTêên›ÂØ7ÔáÄnëCXú ü¢ BR`ìµ4Tá´‰¸oBpœÄ« äÚ§`e=ìç uŸTU%v ½¨dð¥îq› +šµ™b·BÌ[;n'Ég[OL›¯!Ãü¬¢ýqÛnÚsQÖ=º“øñ¬i:MšñJùô VÖƒžŒzêì³-¶7³ã62ytP-j³^z¿\ŠKú?žq<‹äÿ6m^äí£‡äÚ铦ñ\ K¬@Òx»–òÃ8®,žc<• I¿k íØüL¼-?çuU®lÙŽ¼· )òŲÅúí¦ëSÂ:»yU¶ã*[V>5ª»»ÿxÚ®(H™ÅÃø¾ü@Œ+ëq%@‹~«ôYÛÞ¸ÔpÙ–oÎ%(©^É2=gN›LD´ÏT@ÊãUò±¬¬v©žxò³Ü/óÖ>OŽÛ| +Twí6+ÓŽ¿n Mü†¦ë_A|ÒúW›z˜>¥[¤_ùLkÐüµ4è°Ôi£"6è0•B¯6±/>Œ÷ÁªâiÏR +4ët~0ØŒÆÑ2/íó@ëx]´ÛM;òv@ŸÖ[ôÙzfk;Ã7ÞàBhí*ÿßK¢Oóñ6“ñ»/?À¡ÊƫꎌéÊS‹ûØ€Ù%Ô­oo8Ÿ l|õØüRœ·8uä¹có­ïBÀ.èÕµÓ&̾ááÞ«Óô²ˆý—ùôVÖÃÀ‹ Xoß×.6v_vÿå›”‹Ã¾`êÙÐ0—ólúÑ50lŽ…?vW‘Á·ºNl{o­o·siáñŽïÈÄ{°²xç8ë»u¶­Îçúfô6^Üâ$Ä3,(mÙlj;öb/¾m÷€ØÀqeòÒÛº3$—µä¢=XY´³¸bO ‹#¿ÙÆ`¯,š±wUû˜ùÐ6~ýŒQ ú¢9½K嶷~ýTk`$bNOÓX<³°/>Ì*«Š7 +T\{.µüa=ŸmÝæSSü¡EcAʧ:÷ÌKãë?©!‹XüÈdJ°²TQÈ´/'4ù¤ðè]öˆzvýhÙùç”R—ÿnÐûÉæc#7Þ { ¨”Ày¼‚Á@~ %‚•õ „ÔðQb8¿gÆ/¢¢’í`¡,ƒWs"¥N±}… ’Äk_ÈdE°²¬èÖç²~™|·ú1Ã,ø#•ëjƒ>G#o ;ö©f¶ªÊ¼+²yT"AÒ‹žØ«("csóËÝÅÊe¤5 W_:ù^ »•L߃ïÿ´€\K +endstream +endobj +2461 0 obj << +/Type /Page +/Contents 2462 0 R +/Resources 2460 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 2291 0 R +>> endobj +2463 0 obj << +/D [2461 0 R /XYZ -16.307 900.716 null] +>> endobj +2464 0 obj << +/D [2461 0 R /XYZ 56.693 759.068 null] +>> endobj +2465 0 obj << +/D [2461 0 R /XYZ 65.161 752.393 null] +>> endobj +2466 0 obj << +/D [2461 0 R /XYZ 65.161 741.435 null] +>> endobj +2467 0 obj << +/D [2461 0 R /XYZ 56.693 694.321 null] +>> endobj +2468 0 obj << +/D [2461 0 R /XYZ 65.161 694.61 null] +>> endobj +2469 0 obj << +/D [2461 0 R /XYZ 65.161 683.651 null] +>> endobj +2470 0 obj << +/D [2461 0 R /XYZ 65.161 672.692 null] +>> endobj +2471 0 obj << +/D [2461 0 R /XYZ 56.693 625.579 null] +>> endobj +2472 0 obj << +/D [2461 0 R /XYZ 65.161 625.868 null] +>> endobj +2473 0 obj << +/D [2461 0 R /XYZ 65.161 614.909 null] +>> endobj +2474 0 obj << +/D [2461 0 R /XYZ 65.161 603.95 null] +>> endobj +2475 0 obj << +/D [2461 0 R /XYZ 65.161 592.991 null] +>> endobj +2476 0 obj << +/D [2461 0 R /XYZ 56.693 545.878 null] +>> endobj +2477 0 obj << +/D [2461 0 R /XYZ 65.161 546.167 null] +>> endobj +2478 0 obj << +/D [2461 0 R /XYZ 65.161 535.208 null] +>> endobj +2479 0 obj << +/D [2461 0 R /XYZ 65.161 524.249 null] +>> endobj +2480 0 obj << +/D [2461 0 R /XYZ 65.161 513.29 null] +>> endobj +2481 0 obj << +/D [2461 0 R /XYZ 65.161 502.331 null] +>> endobj +2482 0 obj << +/D [2461 0 R /XYZ 65.161 491.372 null] +>> endobj +2483 0 obj << +/D [2461 0 R /XYZ 56.693 444.259 null] +>> endobj +2484 0 obj << +/D [2461 0 R /XYZ 65.161 444.548 null] +>> endobj +2485 0 obj << +/D [2461 0 R /XYZ 65.161 433.589 null] +>> endobj +2486 0 obj << +/D [2461 0 R /XYZ 56.693 386.081 null] +>> endobj +2487 0 obj << +/D [2461 0 R /XYZ 65.161 386.765 null] +>> endobj +2488 0 obj << +/D [2461 0 R /XYZ 65.161 375.806 null] +>> endobj +2489 0 obj << +/D [2461 0 R /XYZ 56.693 328.692 null] +>> endobj +2490 0 obj << +/D [2461 0 R /XYZ 65.161 328.981 null] +>> endobj +2491 0 obj << +/D [2461 0 R /XYZ 56.693 281.868 null] +>> endobj +2492 0 obj << +/D [2461 0 R /XYZ 65.161 282.157 null] +>> endobj +2493 0 obj << +/D [2461 0 R /XYZ 65.161 271.198 null] +>> endobj +2494 0 obj << +/D [2461 0 R /XYZ 65.161 260.239 null] +>> endobj +2495 0 obj << +/D [2461 0 R /XYZ 65.161 249.28 null] +>> endobj +2496 0 obj << +/D [2461 0 R /XYZ 65.161 238.321 null] +>> endobj +2497 0 obj << +/D [2461 0 R /XYZ 56.693 191.208 null] +>> endobj +2498 0 obj << +/D [2461 0 R /XYZ 65.161 191.497 null] +>> endobj +2499 0 obj << +/D [2461 0 R /XYZ 65.161 180.538 null] +>> endobj +2500 0 obj << +/D [2461 0 R /XYZ 65.161 169.579 null] +>> endobj +2501 0 obj << +/D [2461 0 R /XYZ 56.693 122.466 null] +>> endobj +2502 0 obj << +/D [2461 0 R /XYZ 65.161 122.755 null] +>> endobj +2460 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2505 0 obj << +/Length 2303 +/Filter /FlateDecode +>> +stream +xÚÝ\[sÛÆ~ׯÀè!•gªã½c‘<%“4m¦WK™éŒ\Š¨p ZÖ¿ï‚€Zij^®œöÅ„ÌÅÁáâûÎ ÑmD¢Ͼ»>{ûI¢ÅTt½ŽGšràqt½ŠÞ_¼3…I;óæ’Irñ׺7Ýx¸®Ûñ ßL_~_gßÕõÝøÇ?¯þüæ—ëŸìe.)…DÊQÚUÿP˜ncLß _Û«ÓHÛ«+>\]¨b¦£K I<]_h+0ÖoÇÊÔpâÙ×g¿žQ+žD4’ +T£8¡ ‹²òìý/$ZÙï¬ ÝïV–‘¤Wö¸ˆ®ÎþqF¦ VÅápøøñ‰d»4fQ, D ’‡ÿ—Äê)TÄ ÑIÔšh½( +{®Šøñ£`:¬ö•/*:—/ …XiÔžn³‚„%'Pv'°½Æƒwí-ÜaAì8).(>¡ç{“»»¿,(z©¹¸Ïû ne6€µ²^ãÖ}4íMÚç%nµ©>æm]•¦)qüŒ~“ö¸•›ô#ò·¥¸eE^™›Ö¤wûË÷nò3áÍb Z‡ƒ÷¾|Ox{+ëoníS¬Fx§ëÞ´X `AÛ˜*¯n‘RÓý…V'˜þcáŒo»n[6}^W¸+ä'Çø¶3-Rè­©L›Ånùjö£ìnünq7.zWJPÌ¢-%öå{RÂ[YJÐ$¼ÿ}Zõ§FÌ‚[\#MhÓ˜IßI—zÛ7Û~ŽÂß¿ÌÉ©ð½Áò·®«K¤ÄÛ¶^¯]ùB$°€ÒžxO¶øªê@¢AJ=’e“fw¦}8-¬KÓu§Ž¹l„Ôç6–ëš4C»°´Z!ã¾¢Æ~hg;hj<(à ˜¦>9ÆÂçaš7%L*N€«ÉÔ~`Lîé>CœaAÆÅɳMjŠD’¾´ÿÒ7» ¸*-¾~sIÙÎÈ –>ur”J@.ËRÒþ¡‚‘™|?+â¯,ÞŒ(e5å|¼·yµ2Ÿl$Zb}YקUfV¢ªïq ›¶^m³Ï÷(‹Ä¯K‡d«ÈïÐVbÜÚ­ü‹|ƒÐá¼ÛL¾'0ƒ);mW Y¸dq&ßs3|•=äd,­äAÍ4RCø@¹89îkÚ¼Lgîÿ¿\ôY&««•ûyýàÃç§!Î$H.í™É÷¼¹Á”6ƒ +P4Ü^ì‰÷Ü +_UœA'SLÛ‹é;Ot}u>[Š,ÿôÁÜštuÚæÉ¿¶k%UZ‹ –†fò=)à«ì2àJÅø'7ô|0qGÊøè +‡E{÷åjýXGžœu–m±m†´?qYÉT'&™C·o!€9NJ!A«pIÜL¾')½•uðKÃ(œÒºzÛ¢ã=×vè2h–n;lE&ïOëen°°N{S9öS´™*œø}Ý«/5.pP7BÔã$ä.ÙžÉ÷$¡·²$&X’)y@Ûáò¡ûõVCŒDwYÄ‹À-S¤×lÒ[ãJŠ¦±.ßåߘÅð«£5&óÑgRYjÑðª‰$I€(‘¼)êìÎ!a‰ÕFðp £°y3Ñ2˜M˜É÷³ þÊâm‚H(p»A“c~¦ñ>ÒdÙtÍœ¸GØtcÖu‹í-æec“€sU æ”òg÷ðå¼rT¾GÛ³ÜÕƈ8ÊÂÕLfò=)à­¬4A¹ó4Zkºmu +ØÙ—mµ2]Þ¦7’!÷›¼79]ŽöÈô¶À÷ !âA ú›—¹7LS;‚Ø⃪pU™|O{+ëâaŠ@Nuó)-›Â¸6ªg𛃹ʷËö¯4m¶msìx̪Î:gìpû©_3Ê‚S"P”ÕVâI™¾{¨êæÉßÛ>/òþÁ%ã8¡ã0š,÷å{ò×[Yþ2Š?vÿª´4ÈÔ|ÝÖÈ‘•>ïm õ›õ¤%Úaë$M^e|ªgåÞš¡ýtâA¸Ö4…õ™+ß`wwÂ%=ÇŒhàš‡Ãÿ¾|Oü{+ë€ÿ¡—Ó‘7¦¿7éŽvV¯ÃV“Ömzë0åòDMQü/1åÙ>¿x"_Ó‡rÍ@hÚ‡" lseT‡ó\Q2\õr&ßÏBø+‹·\ Ðbª^nÑSÌaž±qvÚ#W¤;ËO$á5~_ç^nðic‡w“\W©Ø“îIOEà/9hý䙇gJòôH†7Ž>÷FÒ#>‡" +Þkœxe ãç5<ʤÇÉ bPôUÇÌ8ö3Ô˜™{^Ê©€˜(ã„C49ûò=Ž·²fÇn5yLL³vè^¯þ=o·m¬#Ó"'z ëЂ% Kh®6:“ï‡aeñf‰J¦·)l¬3°·ÁµxÈtš½jñ [EE°çÔÖµƒfV©D¬ 2!!IÂUgò=Ñë­¬zElŠûÖÛŸá·fmÓPì8mð3<)W94*‘uœo¾þãßÞ]!©É_¿pÄ‚!âUIÌ$ô˜ÅgÎé3 YútÆ÷Ô¤¦Ib1nr&ßÔþÊ:š0ó#QWØ·ÛT«M>ôl쪬«| ”«c¤ƒs“×ä90%‘ªÈ»¾s UlDD’"‰öå{’È[Y<‰¨” øTþ[œ¹˜—»Òï~8­“K«ïÀw*ìˆÁŽTa_€²ÁMþô÷gK!Øòµñ —¯ÚR Lô·YSj•‰vlê’†ë(Ìä{ÚoeìÑ ÉÞøxH7T1½y®»¼~{êQúÿð½Lï:þ—ùýû¶^îà(¹2\UqOºï|ų.‰A ýøÒ•Ãâ¼Ã˃ +2Q?xɪ°YÜøJ×w¬þ¨*OÔ +endstream +endobj +2504 0 obj << +/Type /Page +/Contents 2505 0 R +/Resources 2503 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 2545 0 R +>> endobj +2506 0 obj << +/D [2504 0 R /XYZ -11.232 900.716 null] +>> endobj +2507 0 obj << +/D [2504 0 R /XYZ 56.693 759.068 null] +>> endobj +2508 0 obj << +/D [2504 0 R /XYZ 65.161 752.393 null] +>> endobj +2509 0 obj << +/D [2504 0 R /XYZ 65.161 741.435 null] +>> endobj +2510 0 obj << +/D [2504 0 R /XYZ 65.161 730.476 null] +>> endobj +2511 0 obj << +/D [2504 0 R /XYZ 65.161 719.517 null] +>> endobj +2512 0 obj << +/D [2504 0 R /XYZ 56.693 672.403 null] +>> endobj +2513 0 obj << +/D [2504 0 R /XYZ 65.161 672.692 null] +>> endobj +2514 0 obj << +/D [2504 0 R /XYZ 65.161 661.733 null] +>> endobj +2515 0 obj << +/D [2504 0 R /XYZ 65.161 650.775 null] +>> endobj +2516 0 obj << +/D [2504 0 R /XYZ 65.161 639.816 null] +>> endobj +2517 0 obj << +/D [2504 0 R /XYZ 65.161 628.857 null] +>> endobj +2518 0 obj << +/D [2504 0 R /XYZ 56.693 581.349 null] +>> endobj +2519 0 obj << +/D [2504 0 R /XYZ 65.161 582.032 null] +>> endobj +2520 0 obj << +/D [2504 0 R /XYZ 65.161 571.073 null] +>> endobj +2521 0 obj << +/D [2504 0 R /XYZ 65.161 560.114 null] +>> endobj +2522 0 obj << +/D [2504 0 R /XYZ 65.161 549.156 null] +>> endobj +2523 0 obj << +/D [2504 0 R /XYZ 56.693 502.042 null] +>> endobj +2524 0 obj << +/D [2504 0 R /XYZ 65.161 502.331 null] +>> endobj +2525 0 obj << +/D [2504 0 R /XYZ 65.161 491.372 null] +>> endobj +2526 0 obj << +/D [2504 0 R /XYZ 65.161 480.413 null] +>> endobj +2527 0 obj << +/D [2504 0 R /XYZ 56.693 432.906 null] +>> endobj +2528 0 obj << +/D [2504 0 R /XYZ 65.161 433.589 null] +>> endobj +2529 0 obj << +/D [2504 0 R /XYZ 65.161 422.63 null] +>> endobj +2530 0 obj << +/D [2504 0 R /XYZ 56.693 375.517 null] +>> endobj +2531 0 obj << +/D [2504 0 R /XYZ 65.161 375.806 null] +>> endobj +2532 0 obj << +/D [2504 0 R /XYZ 65.161 364.847 null] +>> endobj +2533 0 obj << +/D [2504 0 R /XYZ 56.693 317.339 null] +>> endobj +2534 0 obj << +/D [2504 0 R /XYZ 65.161 318.022 null] +>> endobj +2535 0 obj << +/D [2504 0 R /XYZ 65.161 307.063 null] +>> endobj +2536 0 obj << +/D [2504 0 R /XYZ 56.693 259.95 null] +>> endobj +2537 0 obj << +/D [2504 0 R /XYZ 65.161 260.239 null] +>> endobj +2538 0 obj << +/D [2504 0 R /XYZ 56.693 213.126 null] +>> endobj +2539 0 obj << +/D [2504 0 R /XYZ 65.161 213.415 null] +>> endobj +2540 0 obj << +/D [2504 0 R /XYZ 56.693 166.301 null] +>> endobj +2541 0 obj << +/D [2504 0 R /XYZ 65.161 166.59 null] +>> endobj +2542 0 obj << +/D [2504 0 R /XYZ 56.693 119.477 null] +>> endobj +2543 0 obj << +/D [2504 0 R /XYZ 65.161 119.766 null] +>> endobj +2544 0 obj << +/D [2504 0 R /XYZ 65.161 108.807 null] +>> endobj +2503 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2548 0 obj << +/Length 2670 +/Filter /FlateDecode +>> +stream +xÚí]ßsÛ¸~÷_ÁÉ“3S#Äoòútis×tšv{¦íäî– ‰ŠTI(Šï¯/(R“Å…@8ÎM_,K–+àû»‹%Ë ~¾z{wõæ'1ŠÁÝ" D˜"*ƒ»yðéú£ÊTR©×7„‡×/´ªšEÙü£Wí—.fo‹âsóæß·{ýëÝ_Íen0F1ç´[ý©j¥”®ê¯ÍÕq™« Z_ ‰$‰‚ŽbÙ^ŸÅF Œ®ß4/˜ˆºãÕ»»«ÿ^a#> pÀ1 dŒ‘I0[_}ú5 ææ;£bqìö-×Ç!"T˜ÿ³àöêŸWa;áàˆd³áP4:ýBßkqèöæ'Ódÿ;XÝ'BLDæ‹}ãél•¨ì—‡zmþâ×7" ¯oש^ýðúóF'÷™B_«ìÍ—ÕC^lž¼OóEQ¿m.j†³¾nýòsw ÌôaIŒ²æWVDý9Í°2GqPª`ñô—w¤þôø$6?‘.ÐÆukWùaûòyˆ‘4# +¹ÂST“xe÷ËeÐüó±…IgÊŠS‚$'ÍÌ›yÏ—jÞAʱ¬àÓ~Š“,ƒ5LóJ'ùLU°æÅ¢Ó®ýôj?=îu]mNõ¸ÁÃ=ò^‡ëWƒm÷²t1•N¯ Œ 1)\1ð:l1B0¡ž,FaÌniaD,cØŸI‘áˆx3 =ùn&Á]Y¸IQŒ‹Y2ZõU— ¬i–æ +Öò^™EØöö/°v+•Ì¡–(Ï &Ö./Ž,ÏÍ° ¹»ûPÑ­Þlu·í8Á"j< úœÆxM3Oæ>+fŸm gˆñÈ£aõÇþ LW¾£qVÖÂÀ0dôè®ïŠò3Ôé8…ô¡¶µÃódæë"OuZäÕ©E»FÝ0IgɶîÙ§õÎ;ézS”Æ+Ò–ýrÏXvÑéf Ç8EŒsÈ™?wÄ;â×UU øRŽ"ôíá»KÊ<Í—ý®m:?/ïk†Ë*0ŽŽ!ìŸAàÖp©4tñœ«\÷,€Ñ|¢ñs\sÇIB0âöÇ’®|Gš8+kÁÂP$â†'—6ó"3n"pY'fµ)ííüƒÊ²ô[žXz ¯æiµÉ’èÏÈà kÙ‹]‡Û­Ôz€‚ãÀâÏëKò8B„½`•›‰ûô%¹¬ØŸ/Ù“ïfdÜ•…cÌPµiÎçs(Þ~ècýÍ0÷ß}€Ú–YYT{§Æl꾇ñ­-¦s ld.ÁAóŦnœ·B"áÏÁíŠw$•«ªœ’¦/9d€€©š:ú¾(Á;<›ýy·X¸`Hpü¬ cˆÄ‘§É™YªlÖ$¦,<®I¤cé=]ùŽôqVÖ‚?D¢˜µˆ³R%nj?+xt}_dQÓµNu¦ Ü[oTCó´À4éºø^ÉŽ•=¸Õc¾IJ ªm×L=ˆüÑ¢+ß‘ÎÊZЛk\µEY¬¡Ëu"9p •šÊÈÝø#Æx²ân“:̬À! 6ä°÷¢B‚$õœtå;"ÞYY ć…ŽTVÐm/X»m]W  (»õ똆ëÄ&ÜÊ^Žb–Å1’ü9ýC&cDcéÉ?´,¸aÆÅ—˜ûs¯ÇWx³ =ùn6Á]Y¸M`‚¢µ‰«ã”è~fϹ|åô[ç³bóP¦Ë•†6ϵÊu5múqSª/*×æ*‡- +ØÏX* ÃSnóË"ãÌ4æ¢FòsZ&*ÃÜ“e*ÕÂÌkùð¤:ð1½Ú¾·n™ ±$¥í—qV¥ô—êÉw´_ÎÊZØ/¢Ð¼îçÌ6fS¤PrWéojÚL’—ªjQGè©äs+±tòj¦ût¹ì§qÇyfâC=«ŸDcŠ%/dg‡FÌÑOí' ÛŽ¬öc2p> +ê"U›d.ZÔ;¥òé«'64Û|®Jx-fúBÊ-¨y¨¿²Ýž|GÂ8+kAQ—oV[FÖDA{ÖM|JcÄbO¦~“”É}Ý©ûÖÍl>0Îhß …®4DQèq—Ÿâzü%Òzò±í¬¬¶ Eøpƒ—Å.?8ŸµNr‹ƒ½rl,zTÛûJi‹›²X¤™ÍfÊ—YZ­À ÉZiè¶>xQ1ÁžYQ涖'ŒPäöñŽ¨wUÕô¸vCŒä•™« œÇ€FP§?ì,íÁ>q~hž.ª4Æ;…oKÚxbïNÑg¹$–(öèôä»a×]Y ðM n—v°ù°sßÙX¼ªØ–3ui= ‰ÌJêož»òçÙ›²í`HBì/7Ö“ï8ÎÊÂAOê-ž°ÍÁ·|wÉ÷¶Â 4—ÿï×!¨Ÿ–‚7¼Óþ-:×?@)l&)äþnïÉwD­7eÛÁà …±¿í¹ž|ÇÁpVÖ‚Â\"µÛsï‡_’l;qnûÅ„8ÛJ¹DS+iåÃÙøM•Å¥÷ÑÖ„¯ÞØÖ•ïÈ6ge-ØÆb„[z‰Æ•ƒµ<œðr©‡8ƀߕ©Ö*Ÿ6{ÊAÝì¤W‰¾h w¾íZªmKzmâeo,ëÊwd™³²,£1Ñ^f 87$Ù×u6à“‚üú‰Öez¿ÕàÄG5é=26kuH†.× ¼*?u³áØÍÞ+¨ 9òÆùEšÞ¿ºòù嬬¿C<”g(•ÉLÝbzη°Œé [–j–.ÒoV"ú]¤Ô¨¯`ó(uÄ;bÞUU ÈcŠ8ksÓžüsxys}Âxƒ|òÀj±…ž„fh‘o?¶"g¸¶¹4³‰ã&gå à=ùn÷§l;Q„(ó—ÎïÉw geá|ÇõI•íÑpÿ¨½]Z)Ož?˜x¿[W¶È'©²€Æ¡*Së£2ìq#"›¬™7Þtå;òÆYY ÞD!²Ý€†í/ ¿%ÌäH]¤e¥ÁµûÂr`»&XŽgjœ*¢Iyy£JW¾#Uœ•µ Šˆ‘<°Ù`øûHÓCÃm(¡à鱉'/¾×Ewœr¼Éy£\W¾#圕µ ä­[wÚGœ/xyÊÉ.úùçPÆ!Ìš“7wå;BØYY 3‰dÌ·#ý¿ŠóûI¼Œƒž6I&o ïÊw½³² §ET|— ŸuB÷X Ü“ï8ëÞ”mïó.ÞÆ¢#Þq(\UµÀ?f(ÆÑ¡ÎNÙU{¹‘ ~rÆ®ðP¿/ K¬s;a“Âð†Á®|G:+kÂîå~?VøÌá Å—t}B‹Ñ|“æË©º|ôú+OG+DM‚Á»âÝpì¬*Æqÿý«>g«„VmËb£ ¥ u̾M–êb#5AÙ²žüd¸©·3>}#xLPÀ{{¬UG¼ãS­UpDPÈÚûù²¶Óõp€C¼“l³J¯¤ûñöOïß{Ùó=±> endobj +2549 0 obj << +/D [2547 0 R /XYZ -16.307 900.716 null] +>> endobj +2550 0 obj << +/D [2547 0 R /XYZ 56.693 743.028 null] +>> endobj +2551 0 obj << +/D [2547 0 R /XYZ 65.161 743.711 null] +>> endobj +2552 0 obj << +/D [2547 0 R /XYZ 56.693 700.44 null] +>> endobj +2553 0 obj << +/D [2547 0 R /XYZ 65.161 700.729 null] +>> endobj +2554 0 obj << +/D [2547 0 R /XYZ 56.693 657.457 null] +>> endobj +2555 0 obj << +/D [2547 0 R /XYZ 65.161 657.746 null] +>> endobj +2556 0 obj << +/D [2547 0 R /XYZ 65.161 646.787 null] +>> endobj +2557 0 obj << +/D [2547 0 R /XYZ 65.161 635.828 null] +>> endobj +2558 0 obj << +/D [2547 0 R /XYZ 56.693 592.556 null] +>> endobj +2559 0 obj << +/D [2547 0 R /XYZ 65.161 592.845 null] +>> endobj +2560 0 obj << +/D [2547 0 R /XYZ 65.161 581.886 null] +>> endobj +2561 0 obj << +/D [2547 0 R /XYZ 56.693 538.22 null] +>> endobj +2562 0 obj << +/D [2547 0 R /XYZ 65.161 538.904 null] +>> endobj +2563 0 obj << +/D [2547 0 R /XYZ 65.161 527.945 null] +>> endobj +2564 0 obj << +/D [2547 0 R /XYZ 65.161 516.986 null] +>> endobj +2565 0 obj << +/D [2547 0 R /XYZ 56.693 473.714 null] +>> endobj +2566 0 obj << +/D [2547 0 R /XYZ 65.161 474.003 null] +>> endobj +2567 0 obj << +/D [2547 0 R /XYZ 56.693 430.337 null] +>> endobj +2568 0 obj << +/D [2547 0 R /XYZ 65.161 431.02 null] +>> endobj +2569 0 obj << +/D [2547 0 R /XYZ 56.693 387.749 null] +>> endobj +2570 0 obj << +/D [2547 0 R /XYZ 65.161 388.038 null] +>> endobj +2571 0 obj << +/D [2547 0 R /XYZ 65.161 377.079 null] +>> endobj +2572 0 obj << +/D [2547 0 R /XYZ 56.693 333.413 null] +>> endobj +2573 0 obj << +/D [2547 0 R /XYZ 65.161 334.096 null] +>> endobj +2574 0 obj << +/D [2547 0 R /XYZ 65.161 323.137 null] +>> endobj +2575 0 obj << +/D [2547 0 R /XYZ 65.161 312.178 null] +>> endobj +2576 0 obj << +/D [2547 0 R /XYZ 65.161 301.219 null] +>> endobj +2577 0 obj << +/D [2547 0 R /XYZ 65.161 290.26 null] +>> endobj +2578 0 obj << +/D [2547 0 R /XYZ 65.161 279.301 null] +>> endobj +2579 0 obj << +/D [2547 0 R /XYZ 65.161 268.343 null] +>> endobj +2580 0 obj << +/D [2547 0 R /XYZ 65.161 257.384 null] +>> endobj +2581 0 obj << +/D [2547 0 R /XYZ 65.161 246.425 null] +>> endobj +2582 0 obj << +/D [2547 0 R /XYZ 65.161 235.466 null] +>> endobj +2583 0 obj << +/D [2547 0 R /XYZ 65.161 224.507 null] +>> endobj +2584 0 obj << +/D [2547 0 R /XYZ 65.161 213.548 null] +>> endobj +2585 0 obj << +/D [2547 0 R /XYZ 65.161 202.589 null] +>> endobj +2586 0 obj << +/D [2547 0 R /XYZ 65.161 191.63 null] +>> endobj +2587 0 obj << +/D [2547 0 R /XYZ 65.161 180.671 null] +>> endobj +2588 0 obj << +/D [2547 0 R /XYZ 65.161 169.712 null] +>> endobj +2589 0 obj << +/D [2547 0 R /XYZ 65.161 158.753 null] +>> endobj +2590 0 obj << +/D [2547 0 R /XYZ 65.161 147.795 null] +>> endobj +2591 0 obj << +/D [2547 0 R /XYZ 65.161 136.836 null] +>> endobj +2592 0 obj << +/D [2547 0 R /XYZ 65.161 125.877 null] +>> endobj +2593 0 obj << +/D [2547 0 R /XYZ 65.161 114.918 null] +>> endobj +2594 0 obj << +/D [2547 0 R /XYZ 65.161 103.959 null] +>> endobj +2595 0 obj << +/D [2547 0 R /XYZ 65.161 93 null] +>> endobj +2546 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2598 0 obj << +/Length 2713 +/Filter /FlateDecode +>> +stream +xÚÕ]Ksã6¾ûW°rYOUŒ!@€ä×f²µ•¤²±+»›I0I,ó¡€Ôh¼¿> HU†”d6Ô„²¹X²D6›þú‰¦|oåùÞ77÷7oß ßKH²Ð{\z!#aäÅ4 Aä=.¼÷·?ª\ÉZ½¹c¿ý¾jTݽ]Vº{Ó¬û/ÿ^¥÷UõÜýóŸ‡oßüúøOs™;JI"DGí¡yÉU½Vª©Û¯ÍÕ©›«‡A{uF$b±w'Hõ×¾!Å·o»ÊÂöÄ›¯o~»¡†¼ïQO„$L/J( }æ¥ÅÍû_}oa¾3 žÄÞndá ê„æ}î=ÜüëÆï%1~=–Ìá%xf>-6±MÜ2‘ô‘Zµm6[àb²„¸1p°õ|P…ÍÊE–¿7³zç§PŒ'»“ÌjèýÛâ æ$à‰; é#qàŒÙ^‘IyÊb@) +$«gýf;pÈ»þ<¿ÙTûXsl&¦ü¥Luu™Ç8wÜ¢»y•ÊüÈÓŸ—á­Üç(ò¶÷ˆæ•Ôöé#Õͬ…G47Ѹ¯]\žÐœÇF ‘QÐ/­–J«2…2õ²¸¬îË Wõž…JײÌêÂVÑE—µ;Sô!}¤¢£™µPtÁ §žk•gPµ©Ê™ã¢ƒ±;²¥ä[šoÖrf¼åÕÎ%‡Z©¥úrŸ¸Sß!}¤ú¢™µP_اþ®L’©>S—gõ2³…\TÁáÉhúÂ1ä§Õ›uugê=¤To4³ê0ó¾Øü—IHw:kUºÊ^iW¬p¦,CúHeqÆl/ ?"aà®ð;¢–Ùó lK…ýé…ߺÑcÃûzàP¯·Ëå±/˜ÈxUlòqÁkºž¶[géhtõ![€sh©úIKýb w‘tµ W>¢Óp<³pß ’¶GÝm—Û2m2¨‡n[ø–š½WÔÊ=¥ª;`PÔA‘­TÛ0‡zhTä6ºÊmcwgz<¤Ôc4³z'Ä?l¬8mA'ª0äoä3¸*ž–™®—O×RË´ªí¤Wåõô:|nYÅ™E´¯>8ÃÄ€<XV-ÅÄç}9Þ¡‚éªjƒJ+hýä"ÍQM +šögr¡1Û #è +΄1¤–Ù³upÂ(›»ŽS˜Àߢ*Óh‹ƒ/ê[éÕÌ]+—wXVº¹«[,e1^ÆiÓA»Ò‡3´ é#Ñ‚fÖÂG°€0ô>¢/Ö3ÇG¡/´´?RE¬’V 5÷í۶؎@<­ß~Wq¦ßCúHýÆ2{^›)#,é«úŸM¨£Êä+Õ+3L¯4OºTßÕJèãVÚ³½0â.t&Œ!}¤0°Ìž ‚xâ“à°'çnjóãbîLôþ~Œ¤·çtÿµe#áI¦ÏÆ~o¡ÍBË}Ûa¿'è÷ÖòP2j¹Ti3wÙɺΣ.t“!}$LÐÌ£%„Ó¾nZŽša¯o±y|ü/p]OLGL¯X+Y‡F~@¹^®Xí%!ºÏ™(†ô‘²À2{ÞÄ‹ˆð$™x›y`s©vV“[õ¼ñþüf©›yGêj«SÛ?”0†šÊ¶Kç,&Ÿ8Kß6Yž5/ƒéœ~xèn0ŠAìИé#-šYø`:7tÃH¶rÕhy¬® +èLœZ6†.0S~ÖÛ¥µ«ô9 ’øš +bJxÌA¨Ç(mƒ¡ ¢D0æCAèº+½èã0„gŽ¡ m{öz¬ :jþv`[‡¯­š½²CëÄáôõÈ\òRºqÐj Øvÿ"TvÕÚ Üä2…6hK`>Wodj] +xBBß]ÿgD‰H4³ˆl;¬Ißš=À4Æù*HÛ‡¬.— ¥ë´ÒÇ3t“;b [TYo5|'´ÓÜTU^C·?ÛÆÖA“»ëùŒè#‚fÖ!œ’$è{>¹ú¸ÒÕê”BSˆšæ9plj5Ÿò™ObR½ú +Þvÿùëvà”¬Ï‹ö¸õ·Wú³ËbG,"aì®·4¢ÄšY µ»¢> h5bv™Ve#¡>ìDѻ蛀q“ßDWM¥ÚÕŽG©Ô¢JŸªêÙ"“b %1£î2)û$ÝÕ3GôqhÂ3 G‹9¡¼¯Ký0sýÒêRðñS5?lñò„èÊÏEÚ­•žÛ¯Òº¹ÅBcT|w¥‰}$ ÐÌZ* +íñÔ:°þ×Ô͉dáü{îŒÞk»“Ç+øiB µÌʬºƒÎI6®è™0úÂÝ•Fô‘¨A3k# °ÃpÙìm"°)<á[¦+^54'Ú6ðÝs ¸N`éf&@åpd]ÁS=iÛi`<2šç® 0¢Ä šY Ì´]̨â‹lµnæ­ |ÈÔÎB[Q#= +ÁI’„×Ì—cÄÙÿOë‰QóJ‡ “A«dÎP7¤DšY ÔùœpÚ·&´O7œ~&ºëc»-ÛéFYšÄû×+‚“F‚˜XÅ8ÛaÝBnÈ~3»B©ÑöéãiæF(œ)3¢C(žY8B©ˆHxxÈÌWðé£ÿ¥RW'B¿Ÿ/9©¾ä$ðŒÑÃ1õë=lÜfæÃn Þ€ðÒFÊÛŸKq·iD 4³PáÆ„žMoLJ–³WÝÛ@-—•Æ—®?ÿ|†&\ ~à`¹‚¢ádb#ÜáÃmFô‘@@3k„@èðpð-U-™¦í3/–†±>Õì¼»›|ºË‹E ªÄYY7JïàéŠKý •ÊvÅåxÇ4,%\¸›ÔÑGÂͬ,7Qk?©aáÚ•‰p6gwÆL¯5azD¯™D$‚¹þÕ°/»/¶k÷×9õ›iÜ'~˜\ò“i¿;G +endstream +endobj +2597 0 obj << +/Type /Page +/Contents 2598 0 R +/Resources 2596 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 2545 0 R +>> endobj +2599 0 obj << +/D [2597 0 R /XYZ -11.232 900.716 null] +>> endobj +2600 0 obj << +/D [2597 0 R /XYZ 56.693 742.142 null] +>> endobj +2601 0 obj << +/D [2597 0 R /XYZ 65.161 742.431 null] +>> endobj +2602 0 obj << +/D [2597 0 R /XYZ 65.161 731.472 null] +>> endobj +2603 0 obj << +/D [2597 0 R /XYZ 65.161 720.513 null] +>> endobj +2604 0 obj << +/D [2597 0 R /XYZ 65.161 709.554 null] +>> endobj +2605 0 obj << +/D [2597 0 R /XYZ 65.161 698.595 null] +>> endobj +2606 0 obj << +/D [2597 0 R /XYZ 65.161 687.636 null] +>> endobj +2607 0 obj << +/D [2597 0 R /XYZ 65.161 676.677 null] +>> endobj +2608 0 obj << +/D [2597 0 R /XYZ 65.161 665.718 null] +>> endobj +2609 0 obj << +/D [2597 0 R /XYZ 65.161 654.76 null] +>> endobj +2610 0 obj << +/D [2597 0 R /XYZ 65.161 643.801 null] +>> endobj +2611 0 obj << +/D [2597 0 R /XYZ 65.161 632.842 null] +>> endobj +2612 0 obj << +/D [2597 0 R /XYZ 65.161 621.883 null] +>> endobj +2613 0 obj << +/D [2597 0 R /XYZ 65.161 610.924 null] +>> endobj +2614 0 obj << +/D [2597 0 R /XYZ 65.161 599.965 null] +>> endobj +2615 0 obj << +/D [2597 0 R /XYZ 65.161 589.006 null] +>> endobj +2616 0 obj << +/D [2597 0 R /XYZ 65.161 578.047 null] +>> endobj +2617 0 obj << +/D [2597 0 R /XYZ 65.161 567.088 null] +>> endobj +2618 0 obj << +/D [2597 0 R /XYZ 65.161 556.129 null] +>> endobj +2619 0 obj << +/D [2597 0 R /XYZ 65.161 545.171 null] +>> endobj +2620 0 obj << +/D [2597 0 R /XYZ 65.161 534.212 null] +>> endobj +2621 0 obj << +/D [2597 0 R /XYZ 65.161 523.253 null] +>> endobj +2622 0 obj << +/D [2597 0 R /XYZ 65.161 512.294 null] +>> endobj +2623 0 obj << +/D [2597 0 R /XYZ 65.161 501.335 null] +>> endobj +2624 0 obj << +/D [2597 0 R /XYZ 65.161 490.376 null] +>> endobj +2625 0 obj << +/D [2597 0 R /XYZ 65.161 479.417 null] +>> endobj +2626 0 obj << +/D [2597 0 R /XYZ 65.161 468.458 null] +>> endobj +2627 0 obj << +/D [2597 0 R /XYZ 56.693 420.95 null] +>> endobj +2628 0 obj << +/D [2597 0 R /XYZ 65.161 421.634 null] +>> endobj +2629 0 obj << +/D [2597 0 R /XYZ 56.693 374.126 null] +>> endobj +2630 0 obj << +/D [2597 0 R /XYZ 65.161 374.809 null] +>> endobj +2631 0 obj << +/D [2597 0 R /XYZ 65.161 363.85 null] +>> endobj +2632 0 obj << +/D [2597 0 R /XYZ 65.161 352.892 null] +>> endobj +2633 0 obj << +/D [2597 0 R /XYZ 65.161 341.933 null] +>> endobj +2634 0 obj << +/D [2597 0 R /XYZ 56.693 294.819 null] +>> endobj +2635 0 obj << +/D [2597 0 R /XYZ 65.161 295.108 null] +>> endobj +2636 0 obj << +/D [2597 0 R /XYZ 65.161 284.149 null] +>> endobj +2637 0 obj << +/D [2597 0 R /XYZ 65.161 273.19 null] +>> endobj +2638 0 obj << +/D [2597 0 R /XYZ 65.161 262.232 null] +>> endobj +2639 0 obj << +/D [2597 0 R /XYZ 56.693 214.724 null] +>> endobj +2640 0 obj << +/D [2597 0 R /XYZ 65.161 215.407 null] +>> endobj +2641 0 obj << +/D [2597 0 R /XYZ 56.693 167.899 null] +>> endobj +2642 0 obj << +/D [2597 0 R /XYZ 65.161 168.583 null] +>> endobj +2643 0 obj << +/D [2597 0 R /XYZ 65.161 157.624 null] +>> endobj +2644 0 obj << +/D [2597 0 R /XYZ 65.161 146.665 null] +>> endobj +2645 0 obj << +/D [2597 0 R /XYZ 65.161 135.706 null] +>> endobj +2596 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2648 0 obj << +/Length 2638 +/Filter /FlateDecode +>> +stream +xÚÝ][sÛ6~÷¯àä¡ufjw‚íS»Ý&ÙÙݦ±vf;I( +’¸¦H•—8þ÷EªcR¦u`ÎtŸ¬XÈááá÷á\Aã`ààõÅ‹‹W? D(’T‹u )’a C, «àÃå{é¸Ò/¯¨À—ÿ.j]u×EÙ}¨·ý—?ÉEqÓýã¿×ÿ|ùÛâæ2W„ HˆNÚu}—éj«u]µ_›«“@™«KÖ^Ë…TWEa}AŒÀP]¾ê~*Ûÿxñ÷ÅÅïĈÇ „D2bA$1 ’ÝŇßp°2ßTp{X¹ Áˆ2i>gÁõÅ/¸·6*¶Û¯ïI6ö ! B!‚e+¹ý½ÀFO.Š"¥Ö“¢ ` +/Ð &íjWùIÆò&(” +t…ûf–(¢Ñ Ê–› ûð¾G¢y„,ð{Å9AœõèIŠ²ÔI­WLK >\IŒ/cزRoJ]Ui‘ÃÖ¿…-Kóº,VMÖvY4õ¬7v§ã(pSÀÖÛ¨c7ÕøÖ`0øH"¢”? å;ÒÀYY 0³…²£ÁªèvOÀã>Ö¥†­3ÝCAú¿¦‚Âyx7ýo_|$Œ£/ÿ¸ºê—L’­ªu dZ®õʯïßÂWÇ{øˆž¼‹ËÛmšlméB$¢‰Þè2”ïHge-èB"$HA¤Àg} ÞÛRàºÛ4Ëæ%`^ÜŽ€vùÍã̈׵.¡›;ÔTÉ6Î7cÈ·'ÝïÈeˆr—xjâçiHÛ‡2Â(T} ñ‘R1Ð~#…¸Á9îÿË3ÖYKßzw¸Çƒ ®wi½ýö塇b­¿¿CŸ« h©2ÂüÅ”2Ä›Ûòµ;Œä»íîÊÂwšôFu÷o$Ç2Nnt\l¯²4ßÀV·éháF續k°à:­MÆ5³×o`ë*­›¸xù8·¥0yãþ >”ïqge- n Ä)é0~¬IYTãXìr:ò:ìz¥Î=s4Uo‹J; ̨†÷Š °««¶E“)ÿ ìÇaëôzmnЖÜäç¡ðÇŠ¡|GV8+kÁ +AŒc§+ éþbñë““£þ›Ç#ÿ¥6¸I¡µÁc©wqšC9e\¼®Ü{½n²ìn:Pœô´5èYˆ(‘þ@?”ïzge-@Ï1˜w /uÕdÐê:!Tf^”»8ƒ–š*mO;«’A±†­kö{]> òP˼»¶e5‰·ðW[Éwd†³²Ì ¼O ܽaÀÆ&Ÿ•êYZŒ‘"ÌSB›æëÂ"™‘IfÃÈ_2+F„o Éw±»²p ÅÇ}6Û@Ãæ]|£á!óeÕ,·f¯„'z·ÏâZÏ›œ(=£ü©ïÜ™ï÷ÿY¼ùùýµ¯„VH“#JêæCùŽ0wVÖæ¡IhyÔm~~÷ëû·¯ß,œrÄ/#lã2)à\*‹õÊò¦Ù;TeÛKBöœ^Lp†Âc¥~v/¶ÌŠäÆÆ1fî•{tc&NÀÔ_j>’ïÈoge-ømâ>vŒfÀ=FÃ# Ýàsh7²,hw_›2Þei/Èê:yj”)(F˜Éçä'B$ñÄÏê./ö-?¿ë¾\ɲ(lËUˆWþËC‰”ò×cÉwc¬»²pÆò6È=Ž$èÝÚDIšª.vP–”Ààp¥×ižZt ùö..ÜÇ]Yvg÷YíN—ñî´¤ªÒ'šá<ãÌó÷ØUŠw¤ƒ«ªl0±0%ê8§öt·°¿¹NžÕ pŒ¸’žœ€ÎWy;Wj³ë3ŒBA=îú$B¡O”å;ÂÜYY œ·1á1—ÀÍ…¿d]¢oÉC ¸ynys'5Œó4 +)æ/ÉwD¹³²('Æ@´o÷'«bÃSC|Ž…‰gŸ5ÄgŠ!yÚÜÛÔÈfgg!Cò~3aîµG"#Æ#ùn˜wWŽyÖKG'ÿýjÝΪÚ>î¾Õ‰J×3.ÆuåËuõ‰I‘¯ùʸÍyž#Â`ŠùKIGò!쬬„…@˜öÅĪ¡Î¹àæ¤{>Å«€QD¦Oº_?ùûÑð Þ5Yî3 ²ŒwHNK(Aƒ'ÆL´=kj̈@ŒùJ ã}Ê{õѦN³´¶™2g&ž”˜ù‹§hÄ‘äþFpGòÝhà®,œ4 +QÄúâm[šÏ3muruIÐ ¦u‡;*èˆaÏ|-ýàÝ}4elýjÚm¼ûñ§§t;Ë5j)©ü¥Ó#ùŽTpVÖ‚ +Ê\3ì›{ërTý?–›~lã|ÿ?‰2Ëõ‹ý‰ÛyñxX—µGÝg»êñ,È€:”­MYjhoó!j]¾:RR3¶#ùŽ÷¦lo Ùjço¬r$ßѮʞr;Fr«¦É¹Ž¯w8sJ×u=Œh×ÅŠ¡ûOº\Æuºóq~ ê²Ç÷wE^T{[88¯'*0RØ_Â3’ïˆxoÊöÆ`RÜ_f$ßÑ®ÊNÓŸ3DŽïŠ9CÿýÌï·ÈÒͶ¶(lJ}?è¹±˜Zêm +]CÏ„?2\¨:%¥>-\~uôT!3/CñŽÐvUÆšðUª–’­uúÊØ㘄]—æ¡Çwà÷»´¶øôXåùÇFÚ”ÓßüH¾ãƒó¦lo Ü%ÞŒ1”ïh We§7èöW¶?—ú8•€v±ÛöÌñÓ»ëùßVs’•>²×ÃG·ñ.´:½ý‡Ï˜ßH$&þ*u#ùn„pVvr'Q„>N´>:þWàñ–;èp±ž ‰ÉNŠL;œP¶9 @T—ìyƒÐP¾#„¼)Û#äGþª!#ùŽÆpUvÒÁ0DLq‡‰3h7t•V{2Á.õzæWPüŸ¹·g9v Ø?d—-z£ÌP¾#e\•vAæ +œ +ˆ úR§ÔÏ?JÑ%CÞåP¾ã£ô¦lo N%þæ‘|Gc¸*;í +8GÊA«2¾¹”à^…þ‹ºóìe‡¬Ð^âáêKÕÞ¤K¼™b(ßÑÎÊ›¶„R$T? oGÚ ìâ•žûÍazî“£ÐKWÆ«e=³žñ²€¾Sl­ãº)¡¶¿Õ¥~j˜`…÷÷–‚‘|GÎxS¶3FÔ¥?¾l1ïf +WU§?ÆH†–ú-?œ?Ë=Ó*µ=‡:561é˜s=ó û½‘ñÑKÕÎsVu)‡/˜Å»ÁÔYUxKGE($ýŒÞ!+²™AŽ+p%G~¶{û¦íqãù!Yêîà5øÔñA-öÀñóoŸˆKÑïP¼ã[Ó]U…s!T(ý^ZW:³=ép›ÖÛÙ‡Q§NÉ<ók—²1À;ÚOzÉÝχþÈ ÇËè)ãæÄäÖ +endstream +endobj +2647 0 obj << +/Type /Page +/Contents 2648 0 R +/Resources 2646 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 2545 0 R +>> endobj +2649 0 obj << +/D [2647 0 R /XYZ -16.307 900.716 null] +>> endobj +2650 0 obj << +/D [2647 0 R /XYZ 56.693 759.068 null] +>> endobj +2651 0 obj << +/D [2647 0 R /XYZ 65.161 752.393 null] +>> endobj +2652 0 obj << +/D [2647 0 R /XYZ 65.161 741.435 null] +>> endobj +2653 0 obj << +/D [2647 0 R /XYZ 65.161 730.476 null] +>> endobj +2654 0 obj << +/D [2647 0 R /XYZ 56.693 683.656 null] +>> endobj +2655 0 obj << +/D [2647 0 R /XYZ 65.161 684.339 null] +>> endobj +2656 0 obj << +/D [2647 0 R /XYZ 65.161 673.38 null] +>> endobj +2657 0 obj << +/D [2647 0 R /XYZ 65.161 662.421 null] +>> endobj +2658 0 obj << +/D [2647 0 R /XYZ 65.161 651.462 null] +>> endobj +2659 0 obj << +/D [2647 0 R /XYZ 65.161 640.504 null] +>> endobj +2660 0 obj << +/D [2647 0 R /XYZ 56.693 594.078 null] +>> endobj +2661 0 obj << +/D [2647 0 R /XYZ 65.161 594.367 null] +>> endobj +2662 0 obj << +/D [2647 0 R /XYZ 65.161 583.408 null] +>> endobj +2663 0 obj << +/D [2647 0 R /XYZ 56.693 536.983 null] +>> endobj +2664 0 obj << +/D [2647 0 R /XYZ 65.161 537.272 null] +>> endobj +2665 0 obj << +/D [2647 0 R /XYZ 56.693 490.452 null] +>> endobj +2666 0 obj << +/D [2647 0 R /XYZ 65.161 491.135 null] +>> endobj +2667 0 obj << +/D [2647 0 R /XYZ 65.161 480.176 null] +>> endobj +2668 0 obj << +/D [2647 0 R /XYZ 56.693 433.751 null] +>> endobj +2669 0 obj << +/D [2647 0 R /XYZ 65.161 434.04 null] +>> endobj +2670 0 obj << +/D [2647 0 R /XYZ 65.161 423.081 null] +>> endobj +2671 0 obj << +/D [2647 0 R /XYZ 56.693 376.656 null] +>> endobj +2672 0 obj << +/D [2647 0 R /XYZ 65.161 376.945 null] +>> endobj +2673 0 obj << +/D [2647 0 R /XYZ 65.161 365.986 null] +>> endobj +2674 0 obj << +/D [2647 0 R /XYZ 65.161 355.027 null] +>> endobj +2675 0 obj << +/D [2647 0 R /XYZ 56.693 308.207 null] +>> endobj +2676 0 obj << +/D [2647 0 R /XYZ 65.161 308.89 null] +>> endobj +2677 0 obj << +/D [2647 0 R /XYZ 65.161 297.932 null] +>> endobj +2678 0 obj << +/D [2647 0 R /XYZ 65.161 286.973 null] +>> endobj +2679 0 obj << +/D [2647 0 R /XYZ 65.161 276.014 null] +>> endobj +2680 0 obj << +/D [2647 0 R /XYZ 65.161 265.055 null] +>> endobj +2681 0 obj << +/D [2647 0 R /XYZ 65.161 254.096 null] +>> endobj +2682 0 obj << +/D [2647 0 R /XYZ 65.161 243.137 null] +>> endobj +2683 0 obj << +/D [2647 0 R /XYZ 65.161 232.178 null] +>> endobj +2684 0 obj << +/D [2647 0 R /XYZ 65.161 221.219 null] +>> endobj +2685 0 obj << +/D [2647 0 R /XYZ 65.161 210.26 null] +>> endobj +2686 0 obj << +/D [2647 0 R /XYZ 65.161 199.301 null] +>> endobj +2687 0 obj << +/D [2647 0 R /XYZ 65.161 188.342 null] +>> endobj +2688 0 obj << +/D [2647 0 R /XYZ 65.161 177.384 null] +>> endobj +2689 0 obj << +/D [2647 0 R /XYZ 65.161 166.425 null] +>> endobj +2690 0 obj << +/D [2647 0 R /XYZ 65.161 155.466 null] +>> endobj +2691 0 obj << +/D [2647 0 R /XYZ 65.161 144.507 null] +>> endobj +2692 0 obj << +/D [2647 0 R /XYZ 65.161 133.548 null] +>> endobj +2693 0 obj << +/D [2647 0 R /XYZ 65.161 122.589 null] +>> endobj +2694 0 obj << +/D [2647 0 R /XYZ 65.161 111.63 null] +>> endobj +2695 0 obj << +/D [2647 0 R /XYZ 65.161 100.671 null] +>> endobj +2696 0 obj << +/D [2647 0 R /XYZ 65.161 89.712 null] +>> endobj +2646 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2699 0 obj << +/Length 2731 +/Filter /FlateDecode +>> +stream +xÚÕ]ßsÛ¸~÷_Á¹Î4ÎL ñƒ½§Kïr—6w“Æži;¹{€HHbM‘:Šíþõ%:5%Ë\„“>d,KÐr ~ßâÛ]ÁÑ"ÂÑg¯¯Î^½a8JQÊ)®æ§ˆ‹H’Å"ºÊ£çt©U£_^P†Ï©[Ýì^Îk³{Ñ.û¿¯³×u}½û埗ï^þvõW{™ BPÊØÎÚe{Wêf©uÛtÛ«“HÚ«ó¸»zÂTF ¥¢¿>£Ö ç¯v?åÝÏ~¸:ûýŒXó8"㈧q$R‚8¦Q¶:ûøŽrû™u%©Œn¶#W#јÛ×etyö÷3Ü϶.v/»?>°l烉„!Idg¹{Ÿ¢T¦éF§‘ÑÑü¨¥Qû Nöí3Làt…‡³ÀQJÓ œÝ4‹h÷âC;ÃÛ[•t·JÚ)—ã)"˜ïnÕ¼¨TYÞmïÏq[ÑÇ Žñ¹‚ [©ÌÔ°¡"A×›¶-ªÅ¤~ÎTv½0õ¦Êãí¬¼êß8üây“­«½/lÍýŠ>þ½yQ–::Vßî{d“Ý{ƒÛ? Ô=ðãI‹›`ÀÚ÷¾·³À%"I£Ôá÷ÆSYg×°¡õ6®Õ·­;Öô>zÐñ±‹ƒ±::Øe2Ö¦^µ‚ .‹æ€ÝÐûbQÁ.ðþx_6­4ñㄣ1 +H·‡Ö=ÉÈÑ~ˆ5™p1´ï9¾ÎFaíÜäˆÚ+l£ÌÅ—òº&lÚ¢,Ú;hØX­KÕé¾iWá£Ökð2¼‡Mà€è²:×®„·ÐK% ‡ô¡}O¤{;ë°Âb†h¿ÀÎëjé:ÿv„eSY€UYTúTà¿|度ðÔNnšü6ËJx÷€·íñŸ‡ dŸŠqÁcÉîîýJ)¸¼ÃQb‰û|³žiÓ¾Üþ­—­ºkëêÏ//µ¿=×UkîÐmSõ+·À•4õùÓŸ^¨8³É–ÆÞ¡y?òz» +àîg·mZÈäîŽÚÛ¶Þ˜uÝ^Y.4С7° ŒôvMÚË`Ÿ\y]ƒGQ5­Vù´ëØ¿7M /³Reñíð6k•éGÔ4î5‚òQ$%yÖc”$ô„ôs‘-•.»¿±]mó†]4Zíò>uYFãˆ(F‚ˆ€§H°p%ª=ûž¡ÈÛY‡XDb„“¾Dõ¦¸…ŠdË“EµÒU;-Yç…²µ“ù—’¼`™£U¶tÈÌmÀªÆéa“+Áj­¡}Oôz;ë€Þ8A˜Ý÷¡8èT±ÍÊýT™½àH» \]ª:Rõ?@e·‰Fµ,Óë¾ÌžÚá§I‘ ×­š÷$ƒ¯«\ 6óN{Mæ’F( RntYNkñx^À@Wj~VÉ”¤ Še(É´.:½ôíî“殪×~_+£VèöFÏo|.—ŒNWb&gV"b;IáÖž}?Vú; §e"ì5e/°¾ƒwÁ±~¥*‡M#óM•mÑÕÃךn'!pûHMÝjãXrø 5À3Ó(¨BÕó¹ÎÚ@•²Äþq8õ¶gß“ÞÎ:PÃ^ß7-Œ×jíì„XßÀ¸úRz¢ÖL+É~ºúù+Ê™…]Àø?0ï‰q_W ÎlzÍ‹²~¾/FvéÛNzONÐ!×sµ)V?©rÍšÇ&ãÅq +©ª)ö÷blŸáé=àq‡®V¹P›$]Oây,å(f¡ìgÑ ++á9 ©I1CœŒICûžAÉÛY‡¨„í[Œß?rrS›k¨,]ª*/ÁÕ~h£ôoû,úãqÊ}€/ÒkS·u{·Ö>UžÙú¼Z©Ðußè²ØWL£´‹m+p89ºgßþÎÂY§¥é}㶚X4Jªc#×”§vD©Ù¦TÆgïåx%s¶il¸‚o¤Êkh^æ ‘g„Œ‘`á10ïÉ_Wè Âq/][c¥×¼ÛÏÖug¦í´eƃîhÏ%ÀÂrR/ €"½h,Cï¦ÎX·ù¤Uñ®Äô¡DžCûžÔðvÖ‚#,R÷Z;4‡n“(ª\W-T¼Á^óº,ë°ÎƒñQEæP÷yŠ$¦Ï™5ʼn@q÷ÈôW‘5ű@<–ᲦØ&‰\Ô‡Cûž¤÷vÖô´ƒF¯ß›z­ ôñëÂrtaT&Ëš]«áS³Pƒ{ƒÇ¹Aáîš÷®¯«¸%)¸rÍç#!%×4Äg˺ÈÀ2Û›ƒ=™_)zÁÛK¾ûåòmò8“ÛÔ™oCûžtðvÖX"œôâ-Ûc4guÕš~D»4õfܱ¿>³~þ`©Ý 8(T€矮'6 +lšÆ%àäÀÞ³ïlgáÀ¦©ÍØ{\ŸÚ…ïΚºÏ4ÓÝq=õ¾mÅuU4«©kHŽ!ÁhèÈÚuç•É$‡ô¡}O¤{;ë€tɉIÿ¸úT¡g¼Œ§SÇZ·E¢˜ú `­6Î +A”áêµ{ö=Yáëìq¶Ž]YâÉ%Ý1«Þc?ŸºTéĸ‚®UÛuó1ù3²n¾†R ˜4›5ü~pº±XºöF(·RŽlCûždóvÖa â ¢¤¯ +Bë™Ñ +ª¯ÔÿçöOpš¼R×úKÆpÕì0xŒ³&Ù• +ƒ±fhß“5ÞÎ:°†ÅˆÞŸTsP(å§P®­n´ù45Æ´Ó“ÑNˆœé¥úTÔæ‰å€<{S…|Îþ¥ bq¨?’×Ù¬®¯:$”$H’8\‡„b›Ó³€thß“ÝÞÎ:°ÛN5¹?ÆᄼG›§s]Ë×gìŒâ^ÂIΟ“pDXQˆp(ûÔ‹ª6úþY£Â|„K$0 G>Â:‹áª{öýÈçï,œ|öÂñ±çŒz€sœ$ùlÝu𔊼p¬¸|ót^õþíIJ³¨²Ú¬k‡fl1y{ó@lŒÓÊ.ëB†«îÙ÷D½·³¨gaÑW­V*­MQæ§nA!IŒDÊž5âS‚âûSý'ø'œôHA< Ä"vUå"\órϾ'Þ½uÀ»•s]×óÕŒ^Ø|¨oÞW̶¥Å|Úmm›J7™E’«f9ížÔ™xê¸L‘ áÌм´½]…#;íµ‹Óžº*ðS¾`àz†j·+@W®;jþRÚ 4Ðkñ˜œû‘iB“ºtÙÄA°p*bhÞóðk_WáÈ“ᤗWKUAO>‡“ïUUh`úNyw"ó‰ÚD0;åSJ“ƒÿö'±zkwºëÿúó_FfS™ +endstream +endobj +2698 0 obj << +/Type /Page +/Contents 2699 0 R +/Resources 2697 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 2545 0 R +>> endobj +2700 0 obj << +/D [2698 0 R /XYZ -11.232 900.716 null] +>> endobj +2701 0 obj << +/D [2698 0 R /XYZ 65.161 760.065 null] +>> endobj +2702 0 obj << +/D [2698 0 R /XYZ 65.161 749.106 null] +>> endobj +2703 0 obj << +/D [2698 0 R /XYZ 65.161 738.147 null] +>> endobj +2704 0 obj << +/D [2698 0 R /XYZ 65.161 727.188 null] +>> endobj +2705 0 obj << +/D [2698 0 R /XYZ 65.161 716.229 null] +>> endobj +2706 0 obj << +/D [2698 0 R /XYZ 56.693 669.433 null] +>> endobj +2707 0 obj << +/D [2698 0 R /XYZ 65.161 670.117 null] +>> endobj +2708 0 obj << +/D [2698 0 R /XYZ 56.693 623.716 null] +>> endobj +2709 0 obj << +/D [2698 0 R /XYZ 65.161 624.005 null] +>> endobj +2710 0 obj << +/D [2698 0 R /XYZ 65.161 613.046 null] +>> endobj +2711 0 obj << +/D [2698 0 R /XYZ 65.161 602.087 null] +>> endobj +2712 0 obj << +/D [2698 0 R /XYZ 56.693 555.686 null] +>> endobj +2713 0 obj << +/D [2698 0 R /XYZ 65.161 555.975 null] +>> endobj +2714 0 obj << +/D [2698 0 R /XYZ 65.161 545.016 null] +>> endobj +2715 0 obj << +/D [2698 0 R /XYZ 65.161 534.057 null] +>> endobj +2716 0 obj << +/D [2698 0 R /XYZ 56.693 487.261 null] +>> endobj +2717 0 obj << +/D [2698 0 R /XYZ 65.161 487.945 null] +>> endobj +2718 0 obj << +/D [2698 0 R /XYZ 65.161 476.986 null] +>> endobj +2719 0 obj << +/D [2698 0 R /XYZ 65.161 466.027 null] +>> endobj +2720 0 obj << +/D [2698 0 R /XYZ 56.693 419.231 null] +>> endobj +2721 0 obj << +/D [2698 0 R /XYZ 65.161 419.915 null] +>> endobj +2722 0 obj << +/D [2698 0 R /XYZ 65.161 408.956 null] +>> endobj +2723 0 obj << +/D [2698 0 R /XYZ 65.161 397.997 null] +>> endobj +2724 0 obj << +/D [2698 0 R /XYZ 65.161 387.038 null] +>> endobj +2725 0 obj << +/D [2698 0 R /XYZ 56.693 340.242 null] +>> endobj +2726 0 obj << +/D [2698 0 R /XYZ 65.161 340.926 null] +>> endobj +2727 0 obj << +/D [2698 0 R /XYZ 65.161 329.967 null] +>> endobj +2728 0 obj << +/D [2698 0 R /XYZ 65.161 319.008 null] +>> endobj +2729 0 obj << +/D [2698 0 R /XYZ 65.161 308.049 null] +>> endobj +2730 0 obj << +/D [2698 0 R /XYZ 65.161 297.09 null] +>> endobj +2731 0 obj << +/D [2698 0 R /XYZ 65.161 286.131 null] +>> endobj +2732 0 obj << +/D [2698 0 R /XYZ 65.161 275.172 null] +>> endobj +2733 0 obj << +/D [2698 0 R /XYZ 65.161 264.213 null] +>> endobj +2734 0 obj << +/D [2698 0 R /XYZ 56.693 217.812 null] +>> endobj +2735 0 obj << +/D [2698 0 R /XYZ 65.161 218.101 null] +>> endobj +2736 0 obj << +/D [2698 0 R /XYZ 56.693 171.306 null] +>> endobj +2737 0 obj << +/D [2698 0 R /XYZ 65.161 171.989 null] +>> endobj +2738 0 obj << +/D [2698 0 R /XYZ 65.161 161.03 null] +>> endobj +2739 0 obj << +/D [2698 0 R /XYZ 56.693 114.234 null] +>> endobj +2740 0 obj << +/D [2698 0 R /XYZ 65.161 114.918 null] +>> endobj +2741 0 obj << +/D [2698 0 R /XYZ 65.161 103.959 null] +>> endobj +2742 0 obj << +/D [2698 0 R /XYZ 65.161 93 null] +>> endobj +2697 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2745 0 obj << +/Length 2637 +/Filter /FlateDecode +>> +stream +xÚí\moÛÈþî_A ÎêÕ¾“ÌõŠæ./×6¹\m÷Z 9¹’S¤Ž¤ìäK{—o±E‰òÐËuŠ¢_,š\ÎwŸÙyfvHì,ì¼>ùþêdöJ`ÇG¾¤Ò¹Z8’"é:aˆ¹ÎUä¼?½P‰ + +uvN>ý)+UÑ.²¼9(WíÅYø}–]7ÿüëòÍÙ¯WÕÝœ‚|!i—åçD+¥Ê¢º¬{'Ž§{—¬êK¹ÔsÎòݶÁ´@×;5?„ÊêÆ“—W'¿-;ÄIŸ9®OÄÔ ×'ïÅN¤¯i÷=ç¶n¹vÁˆ2©çòäï'¸‰þïþÈt}p,Ý>P*jmºÛf¯t“úyxu‡¸ôô…ºñÛ8\*ù€.×ú/9;—Ÿ^®ãrõììœPýO¦3GŸŠ¤‘ªÇ­\ý¼Þ}b=OÄ¥ŽË|ÄhýÄÕyõøqéPä{¾“+gqÿw¤>»ßõÓ“ÓvÐ&UkSùIúò&ÈÕCéáþôKäSekùÒi.ZìÌi§8ÓXÓà­§öUüIE;@ؗ伯§{“góD­ao54`-£¬1¨‡[ÎUœ.aMUèƒÅ)¬Ý"NT¬PÝlk·T©Êƒ²¯íÃD\Ä1·ð]ù†7VvÀ)Ö m¾FÌîîÌê»Q{bàž’¬Ø»©¾ò;âQ—øâW« ½â©Ì`í^i¬XÛ7*ŽT^<6‚q"Lñ±^LjOéiÐØñbqšÄ©áƤGv…=7&]‚‘Ö¬¼'ßÌÊÍ•…[¹ty½¢Ôsû<Š «}±Ýl²ä‡M¡Î1TEvPE™oÃr¡ 5:´|T \9Noà’l6*ÈÁJAaž-#•”áÚƒñ®|C+;Æ’!ÎÛ#Û–›m ÅqžgÛŒûùgX»¯Þ¾9É?ã±G +õ™?w{e°Üsµß¿e'ªÐQ–«8Öq ¥rP.ûªâ7Z3¡]ù†&d¬ìq¯ lã2rŸu_o7}VÄ`<붺ír€ +QÿHO5±Á/` ÷K«à&\Å×%ˆ’KD±o Ò +S®ðw"ö‘ÛÑ}Yö'€`ýp/7Ûy›Ç¹Ï2±sN9"š®º Ñ"K’ìŒ +ØjoZŸÒl2]v9¥UpFñéͧís¥ÒæhDí9=E_OußZÝ»¾‰Ç‘ëÊŽ¯ªÃR©ié…Y'[sPõòZÚ‚¢ÍqÞdÃÐîhœS¢)›ëê˜tÁ«ÿ¦ªX¿FÌ«`•,s•vtz§³b£ÂÙÅËç/Þ¾ü¶iõålõ„s$ó,»þXBùˆ,!0âÂ"ñÌGÜ·G¼{òÍ–[ceWÁ)r½–f3Ì.Úiì¯ß_K«I‡­Fiv ¤âA±·lUû€±Ž« Á_ŽHs´j¬_éÚ³jîëÛ#Q=ùfVm®,œDéÕ£^AêYüE埡qo¼ŽËøFÁšÿ3N£ì¶øš‘zg@ž®J›W|¾x½IÔZ¥ePÆY:2ÄiLrâÇÍ·iÚOì™pÅxü;æ¸5tï^+qm?m›s =s"Ê}{æ¶+ßÐÜŒ•˜›'Öì’ë_ÑmT–ª€ÆAM –‹ö#t$Ü[Oä:$ž6ùÔl—$#m«Xé•DAmæ—~H={Э®p[-ã3~E'À°vÄIqÈQKaaÅÈ]‚èfÓW¶o@ǯïÛýN—Cfúe°ñ #Ö_‡4R¯ .GÂõšIÛqŸ·¹ èjt0V>!ÿå\è>„uþÛ7uó¢ÐÞ¹è"N ¶N}9Z2±H}u„1µç‹wåúbceGP_êUf_OâmRgҌۻŸ_ï&NÕ´}§Ô9m7I%”éFšSsóÖAS™l‚*<`Ð̓>Á:²'•iMÝqâÌŠ''an¯fª'ßp‰0Vv]'.b¬ÍÕܹ¨U«pjK)‚µ™ââ„hÈŸÒÅ3Ï«k'uñ†i0×C.áö\+«ª?ï’Ñ“ÛMO¾™Ý˜+ w­L3êÊF»ZCp)B§×àÆP_f7ÐðÏq¿.ãôÇ#Ì(ÖAZBÓUyÜ…« k®K©hââÄý!»s'‡Õx,Õ˜ö( –AœŽœrôFêA²o%IÆôjé>´y3qÝësªÚΣŒ¡™ÄÚo·»Vo5ùƒf—^g*O÷?"’f‚!ïiw’43Atê¤G¸YJ´l‹›7L#IXܼéÉ7t³ÆÊŽp³„ÕfWÏé?6QPÂ}'4:)ã2QÓ:xßp“X5»/ÓfœÁj.·q4qø>Ê[g9°¥úTÅùñ#’Ð¥…b¤kóÓíNQ_ût‹»S=ùf뉹²ðp—aŠ¼nwÊÜ%R_jîô”‘ºá®8|òj&õ)¨öy‹Y°Šß¶êceSY¤¢Y˜¥¥^P¶YìeŸû7YÏ(SÉ‘Í7ì¨f:ô.c=½ùìÊ74ceáî˜j +Þ¦=þ’Æe ­I W*¼ÞnfËòZåˉݲý]xÄ{›å×à·.nâÉ+à¶Àéú)ËKh:úÏ£l>6µG9EÌâÖNO¾¡%+;¹@ÝËbà҉ƀšv.bZ¼ƒQž^¨8I>?¶>›Voaö¤®™Hä +ùµƒUŠ5]fÏ;Mz0±÷znO¾™M+;hDÓÖª° žÁï¾;ž¥{} ¶g +7®Ð9Xrø –HE›-¦ÿ{ò §Úš²í`TÔÛbÝ|O¾á`+ ÷EÄuër’¿‡o +ÔdÔßjÿïÙ‘z¾+ÿË6ЭôC‚gÇë +?ŽT&ŸµUÉaö^DíÉ7„§5eÛÁÕ¯½„jO¾á`+;ÂV…¨÷j[í¾ÔCå³gð|¹ç›&'ˆ{ɨž|ù0Uvxä9¯_ĹŸÈ;RÔ»M¢i©Á<ùJ)Ü0Wø + aQ‹ÞvG¼!h UÆ cwù– 1S•R#;`@kÐRõ).JðVFõñš±À!þýŠß鑳+ß:¦Êc‡R$<ÿh½Ñaq­Ê ìÁ{ˆq{©«ž|Cš*; CBd“£°ñ)–çxPàbÄ7f÷6­Dß„T¶À³+Þ ;¦ªCc$]29vVô­Nðy˜å¹‚–È­ãµ*?oþ{ÀæIÄ©½,Ï®x3°™ª:6ÏG.¡_Í[ÞÉáŠÁI^W4ÇÐðk›Àvy‡£}¨Û«Ö>¹#Þð;†ªôÑC®`ÿæSóØ{9ø;fÚ!ToãõZ7¿‡¾•Ì1ÂÒ̧’ÿ_®< +endstream +endobj +2744 0 obj << +/Type /Page +/Contents 2745 0 R +/Resources 2743 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 2545 0 R +>> endobj +2746 0 obj << +/D [2744 0 R /XYZ -16.307 900.716 null] +>> endobj +2747 0 obj << +/D [2744 0 R /XYZ 56.693 742.321 null] +>> endobj +2748 0 obj << +/D [2744 0 R /XYZ 65.161 742.61 null] +>> endobj +2749 0 obj << +/D [2744 0 R /XYZ 65.161 731.651 null] +>> endobj +2750 0 obj << +/D [2744 0 R /XYZ 56.693 685.074 null] +>> endobj +2751 0 obj << +/D [2744 0 R /XYZ 65.161 685.362 null] +>> endobj +2752 0 obj << +/D [2744 0 R /XYZ 65.161 674.404 null] +>> endobj +2753 0 obj << +/D [2744 0 R /XYZ 65.161 663.445 null] +>> endobj +266 0 obj << +/D [2744 0 R /XYZ 56.693 626.55 null] +>> endobj +2754 0 obj << +/D [2744 0 R /XYZ 56.693 599.175 null] +>> endobj +2755 0 obj << +/D [2744 0 R /XYZ 56.693 553.059 null] +>> endobj +2756 0 obj << +/D [2744 0 R /XYZ 65.161 553.743 null] +>> endobj +2757 0 obj << +/D [2744 0 R /XYZ 56.693 506.771 null] +>> endobj +2758 0 obj << +/D [2744 0 R /XYZ 65.161 507.455 null] +>> endobj +2759 0 obj << +/D [2744 0 R /XYZ 56.693 438.565 null] +>> endobj +2760 0 obj << +/D [2744 0 R /XYZ 65.161 439.249 null] +>> endobj +2761 0 obj << +/D [2744 0 R /XYZ 56.693 381.318 null] +>> endobj +2762 0 obj << +/D [2744 0 R /XYZ 65.161 382.002 null] +>> endobj +2763 0 obj << +/D [2744 0 R /XYZ 56.693 324.071 null] +>> endobj +2764 0 obj << +/D [2744 0 R /XYZ 65.161 324.754 null] +>> endobj +2765 0 obj << +/D [2744 0 R /XYZ 56.693 266.824 null] +>> endobj +2766 0 obj << +/D [2744 0 R /XYZ 65.161 267.507 null] +>> endobj +2767 0 obj << +/D [2744 0 R /XYZ 65.161 256.548 null] +>> endobj +2768 0 obj << +/D [2744 0 R /XYZ 56.693 209.577 null] +>> endobj +2769 0 obj << +/D [2744 0 R /XYZ 65.161 210.26 null] +>> endobj +2770 0 obj << +/D [2744 0 R /XYZ 65.161 199.301 null] +>> endobj +2771 0 obj << +/D [2744 0 R /XYZ 65.161 188.342 null] +>> endobj +2772 0 obj << +/D [2744 0 R /XYZ 65.161 177.384 null] +>> endobj +2773 0 obj << +/D [2744 0 R /XYZ 65.161 166.425 null] +>> endobj +2774 0 obj << +/D [2744 0 R /XYZ 65.161 155.466 null] +>> endobj +2775 0 obj << +/D [2744 0 R /XYZ 65.161 144.507 null] +>> endobj +2776 0 obj << +/D [2744 0 R /XYZ 65.161 133.548 null] +>> endobj +2777 0 obj << +/D [2744 0 R /XYZ 65.161 122.589 null] +>> endobj +2778 0 obj << +/D [2744 0 R /XYZ 65.161 111.63 null] +>> endobj +2779 0 obj << +/D [2744 0 R /XYZ 65.161 100.671 null] +>> endobj +2780 0 obj << +/D [2744 0 R /XYZ 65.161 89.712 null] +>> endobj +2743 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F52 695 0 R /F95 923 0 R /F98 924 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2783 0 obj << +/Length 2497 +/Filter /FlateDecode +>> +stream +xÚí]íÛ¶ÿ~…m¨¨’")2X +´M.]‘¶[s$A¡³è³Yr%ù^öײäÄ’%™4Í´œ/V$êáOŸ÷GâAïÖƒÞ«‹o®/ž^Qè fÞõÜc°ÀãÈ~à]GÞÛÉÏ2‘a!/§˜ÂÉY)‹úpžåõA¹h.¾ÈfßdÙ‡ú?ÿyóúòýõ÷jš)B@PZS{S>&²XHYÕe5;ò¸šùÕì„ ÀÜ›R ‚f~JÁ€OžÖ?³êÆ‹—׿] EzÈ£ 0á{@€AìÍ–oßC/R×@÷î7#—E`Ÿ©ãÄ{sñ¯ Øp*ˆÕaõój‡²â +° +8âåê<‚ U£…—Ko>Hé } +C]ú"0®5Ã.X؃݈…âçfaÈF,¶0@Õ 3ݬÜLžßzõÁϯ.¼·Sá¤Xdë$jÆ4³ ½‘zãîÂ$n“l.€A,¹ZßèQç¥Ìõ†æ2d§·š”5ÙPiOkdkyZ"¿LŸ®ÖÕ™`¶é[ +¦-ØaÁô9@$8 æçÌ¡‘òN¦z#ã¹æ¸RoÜ",ôf©æ¢ÞæájÏL5ûÀ¡>îR·ÔF; Ãºˆ€8?ëâY\†é£‘2¦Úˆ”däNÛô-5Òì°N"°šá¬“gB'—²Y–Îã|©7¸\„åIí³[÷£/Âqq,^ æ@FÝ p›¾¥Û‚`îŸâ“ pš•ºæg–¬#Møç‹+m«fàèzd3!/Nk¨{¤|ðé—á­4àg©i˜ÁX]Üt¦@mú– +d vX |uáÔ +d¤švýú§oõ&qúáÿNϪLOûû°OÛËSÔ¹¯†‡k­«°Î4¨MßRƒœm˜Aê2˜3f´é[2Ãìžü  + š&ÒUœÆÅBFG)gsCÀ ÷=`¬¤ +B#c™öëʉ³elÓ·\Fg`fàM +êŒ-ò–¬°„:,¾˜J›ò6: sò!\®º]Ý÷ååæ2¿{ÆÉ:—Æ"‹êÎÙ2µé[®“3° 3`8cF›¾%3œ­™AEÛ¹bF‡¾3¬Áª00Þ9ž?WÂËü&+ä©ã¼R¥néäNæÚéOxÆ©.é_Ã$ùU³k:×­ÝH}D™q1˜rˆï®Nסo)ÂÎÀ6ÌêPÊ3Úô-™a V?Ƥ¯6Iì•r£ÚïèŽKûBÑw‘’bžg¹&’2_§û­EDMžÕ'+ €"w[‡¾¥|Ø‚–ÅI²U Ôå©c=gükÓ·äŸ-ØaþQ8iÞàübX¾·/€v$öÙ³á[^j;LméðF·r_f&e¡?Só"Ë8vÍþq6[/eZö=ÜÓá‡û¥ù^F52þƒŒËEïx%îtGÜ ')¥µ¤¿ƒ6£øΨ@y1¼3Õµ$~¨pWFèз´$Ö`5<5§r¦¬œ7míû,ÿ`°°J~ú*šÓ‘;äýÊ›ày(ƒÑ{::>üf¯ø56ºXəɓöãã·ÌTî­Ë$.ºú;På±#lZ&}ÿÖ‡ï¿ÏÅ®¾þÇë—/L3Ìs˜0´È[*ž%ÔaŽ…š€Ÿ=øÙƒŸ=ø‘ÕE#gv¤MßÒXƒ5ðà¨:%ÎüOçÁ—Qñ˜f«".z<8:ƃS7`w5ü}KÕ³;ìÄ!°©ZõOÓpQ×Â\q¯Cߎ{îÀ6Ìàu)È3Úô-™a V¿bJ8PàÓuå™ +9¹@‚¸èÊ“ ®H9[Æ6}Ëet¶a«ShgÌhÓ·d†-Øa f*ö š*/ÆĪ3¨±dkž:s¶Tmú–Kå là ¿1£Mß’¶`‡å–`€)û=åvhôc,“¨èµîÓšG3åKiªH>U+ðiiÖ¬Š¦kìÿ­·ÄÀÕÒTlöÄhv— H›ø«ºÜå ‚êY¾»þáõw2Y5»[ìî­½iõÉ-o–úz»oÆN3p–méq:“?”Bù×Çy½OhsE=q•%ê@`MéÆ´5®›Y¢µðC¸Îãò¿µ|/ôÈÒg—S„«Úšç˜Î²å2KÁÇüí ùDßm]šKиuóýJ‚Ü™ú};ëfV?Òô} i”àë(’‘á[Ì=IúH}ò¾§t4R_X…y¨ù™R.e—òó'ä[Çr¯VþäPxœÈYi2Ë_g‹žš8kïu†É“§_CÓ-¨V‚â¸ía-FÛjú–Jf Ö@É”§Û¶švá÷^Zi :½¢öå¸Øœd`¦ï`´Y>®¤áC„i䆣¥|(­˜3RÔWqcXîGŽºu$r•Æº+€wè[êš5X]CŠAÛæÚõ"ÖþÎþƒn~"“þp6ëÕJåGƒý¨iÏ[3FAoµ¿6LŠìIJmdlàˆ°w¸GA‡¾r؃5P…m»C•€io6°ÿ%œÖK–÷‹x¶ÐlHK¹,NÛ=Öí[ßk⮽]Õ½~w]>¬z¢ÊêÅH0n!ÞHM07ëÛ¾¥û b„û êú,à»|†<ÓJˆÉÇ<Ÿ÷æù/gURžÄ«Bþ±S}9Ið}ÿt™>®>I™þ‹ð.Žê<ÿ[•…É|›æ7Ï`Þ«»óÝe÷ˆ ÀwÁP‡¾½·«oï‘Àº›ýE÷»™ByÝm²Ìã›uyŒsˆõ¿byÔ5¥=/À}zÅ|ØþëîU±F{¿ª8T!ó¥icqeüvã‹ÚV…±¶³ÊºÝÐè÷²ˆ qh(HåÜu*;ô- …5XCA€¨ 8š¤èǺ!ÿGÅ1yCGÊÓî)±ãª5ä„Ýwv4tƒ¨‹‚}V›€ê´ý´]‚#ÌSîÎ,°Ãºe›¼Q°†j`Pº­Zž[øÖÀA=âpø­n‹ºÛÕ—q¡“m±P·ªP¤âèÁ¬Ð{lW¥­ Nfõ÷þ^©6Çü¹†ÿÙƒã/ +endstream +endobj +2782 0 obj << +/Type /Page +/Contents 2783 0 R +/Resources 2781 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 2826 0 R +>> endobj +2784 0 obj << +/D [2782 0 R /XYZ -11.232 900.716 null] +>> endobj +2785 0 obj << +/D [2782 0 R /XYZ 65.161 760.065 null] +>> endobj +2786 0 obj << +/D [2782 0 R /XYZ 65.161 749.106 null] +>> endobj +2787 0 obj << +/D [2782 0 R /XYZ 65.161 738.147 null] +>> endobj +2788 0 obj << +/D [2782 0 R /XYZ 65.161 727.188 null] +>> endobj +2789 0 obj << +/D [2782 0 R /XYZ 65.161 716.229 null] +>> endobj +2790 0 obj << +/D [2782 0 R /XYZ 65.161 705.27 null] +>> endobj +2791 0 obj << +/D [2782 0 R /XYZ 65.161 694.311 null] +>> endobj +2792 0 obj << +/D [2782 0 R /XYZ 65.161 683.352 null] +>> endobj +2793 0 obj << +/D [2782 0 R /XYZ 65.161 672.393 null] +>> endobj +2794 0 obj << +/D [2782 0 R /XYZ 65.161 661.435 null] +>> endobj +2795 0 obj << +/D [2782 0 R /XYZ 65.161 650.476 null] +>> endobj +2796 0 obj << +/D [2782 0 R /XYZ 65.161 639.517 null] +>> endobj +2797 0 obj << +/D [2782 0 R /XYZ 65.161 628.558 null] +>> endobj +2798 0 obj << +/D [2782 0 R /XYZ 65.161 617.599 null] +>> endobj +2799 0 obj << +/D [2782 0 R /XYZ 65.161 606.64 null] +>> endobj +2800 0 obj << +/D [2782 0 R /XYZ 65.161 595.681 null] +>> endobj +2801 0 obj << +/D [2782 0 R /XYZ 65.161 584.722 null] +>> endobj +2802 0 obj << +/D [2782 0 R /XYZ 65.161 573.763 null] +>> endobj +2803 0 obj << +/D [2782 0 R /XYZ 65.161 562.804 null] +>> endobj +2804 0 obj << +/D [2782 0 R /XYZ 65.161 540.887 null] +>> endobj +2805 0 obj << +/D [2782 0 R /XYZ 65.161 518.969 null] +>> endobj +2806 0 obj << +/D [2782 0 R /XYZ 65.161 508.01 null] +>> endobj +2807 0 obj << +/D [2782 0 R /XYZ 65.161 497.051 null] +>> endobj +2808 0 obj << +/D [2782 0 R /XYZ 65.161 486.092 null] +>> endobj +2809 0 obj << +/D [2782 0 R /XYZ 65.161 475.133 null] +>> endobj +2810 0 obj << +/D [2782 0 R /XYZ 65.161 464.174 null] +>> endobj +2811 0 obj << +/D [2782 0 R /XYZ 65.161 453.215 null] +>> endobj +270 0 obj << +/D [2782 0 R /XYZ 56.693 416.608 null] +>> endobj +2812 0 obj << +/D [2782 0 R /XYZ 56.693 389.434 null] +>> endobj +2813 0 obj << +/D [2782 0 R /XYZ 56.693 344.322 null] +>> endobj +2814 0 obj << +/D [2782 0 R /XYZ 65.161 345.005 null] +>> endobj +2815 0 obj << +/D [2782 0 R /XYZ 65.161 334.046 null] +>> endobj +2816 0 obj << +/D [2782 0 R /XYZ 65.161 323.087 null] +>> endobj +2817 0 obj << +/D [2782 0 R /XYZ 65.161 312.128 null] +>> endobj +274 0 obj << +/D [2782 0 R /XYZ 56.693 275.521 null] +>> endobj +2818 0 obj << +/D [2782 0 R /XYZ 56.693 248.347 null] +>> endobj +2819 0 obj << +/D [2782 0 R /XYZ 56.693 203.234 null] +>> endobj +2820 0 obj << +/D [2782 0 R /XYZ 65.161 203.918 null] +>> endobj +2821 0 obj << +/D [2782 0 R /XYZ 56.693 157.548 null] +>> endobj +2822 0 obj << +/D [2782 0 R /XYZ 65.161 158.232 null] +>> endobj +2823 0 obj << +/D [2782 0 R /XYZ 56.693 111.862 null] +>> endobj +2824 0 obj << +/D [2782 0 R /XYZ 65.161 112.546 null] +>> endobj +2825 0 obj << +/D [2782 0 R /XYZ 65.161 101.587 null] +>> endobj +2781 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F95 923 0 R /F98 924 0 R /F52 695 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2829 0 obj << +/Length 2150 +/Filter /FlateDecode +>> +stream +xÚí\moãÆþî_A¤ý`ÑzßÉM“¢½\î‚ iÚ³¸ËŠ\K¬)®BR>»¿¾C‘t$êÅK-©¨?‰^gg_fžy†Kcoæaïýśۋëw{ +)I¥w{çIŠ¤ï„!æ{·±÷ñòƒNuXè« øòo¦ÔE}ygòú¢œ77ßšè1÷õÿºùñê—Û › !H Qk»)ŸR]̵.‹ê6ôN¼z—¬êKù4ð&)¿é_Pè—×õ¡²zðâ»Û‹_/¨Çñ„DR1ÏWIL½hqññìÅp @\ÞçµäÂ#Ê$\§ÞÍÅ?.p3øàŒ´º¹BËÚ¦O”Šµíc×ï@d=^= .¸±~>$ñÕDb|ùm.tþÕÕ„PøKGi²,4z,ÒZLS¥¯úy¿=@XâSÏg +1Á«VíÃtqéQ¤ååÚ»ÛÑ–¶ý­»Ð1¸ÕtP+&•´«~ˆ$]ýäÃLÙô°¹Ú)ª0v­0ŸyõŇfù·–²5œÁÖ +X½¢ïu¦ó°Ô[[`W™÷q½èIëÇ-QPš†Ýg.©â»$µ4!ÌbKÁØR0×)L€¥ðÌ;ÁÒRn™®fIv–9=ªwýÈ[£ ;å™)ퟴ¥`±Z.Mn+¬u7h‰ÎŽxP¶>aŽë áó7)qˆÌÄ6nx e´°²­ß1¬8kVp !„a<^Ϧµ—ÂB†iaìS‹ÕàˆóÀEüDO©ªàôü)\åIùŸ?ÐaV˜ìt•E‹ñTúQÐ8ÖNïèwÛéîÆÚ¨ô9¬пÆq;šýõ‘^¤Ý ÿÕaéÏI9ïŠO‹/CÈÌ,ƒ8¤p]Íß|qXõ¯«¤Í¡ñ‹ãR@Ε}zùc4_e÷=qmVú´cØõŸ›f ÑQ˜¦Åi¨ÿ²KHâƒñणßÑÉœíád’!á7T«âeVóÿl¤çrïVûòø¶¤ÔÏ߈Ç&*Ÿ–ºç ¬ºïhKýX:MÎaßÒ‹e•©§& x/£Áx¾¶­ßÑלíák‚"Iš”ævžX»ExoK +éßÀ8D®‹“:Ê¥vÐòðÄ€ áÌvnvòßÃV˜ÜNp®Óe_ bbRçÛúÃÙØÎÁ ’¢©àõ"©Õ¦)ö¥†Ÿ°ÀGâÿ<‰æÖìiQ [˜Ú"í<´œ“Ùª4«Ô•ôãrOV óJ^¨pÜhKc¦«Ù¾¥û‘<`ÙbˆÇOiµë}¡6 ªP +aNë [9EwWü3¼"âòáŠBú¾ ‹½ åˆÞƒnËåij®¨€L%›ÕMÑ<Ìfm9}VZ*ýÍS­³újÆMlÈçš{]›a}“€#ß—-uþwøÎ÷[)0b„´‚‘iõIéNYbC´¾Îë—h{v&”Uå .¢b†¥ùí8zð|Á +¤?Ï‚ÇK‹:úÝ"¿»±ö‘_0˜ %_yþ+Ïwæù‚øHññÒ«Ž~G's6¶‡“Q‚hû‚ö•ç¿ò|wž/0lcEÆóµmýŽ¾æll_«N øÁ+Ïÿ?æù\I„Í9:úÝœÃÝX{çà@›Q¯<ÿ•çŸÀó¹b@ºÙY‰>‡_‹g¢Oð^¦ÿÁ¬²¸Ì“ÿqŠŸ1J;ÎáÎñ9AXŠšãû'Pü›R?èšà¿Òвûij¢û‚ÆÓûŠßÿéªÙíy¼HifòE˜&½^ñ3å#ÁÆcþ,Høã%JýnXàn¬=°@¡@4Xp—Vm©w U®¦öˆTœ!)J÷í¢-½â/‘9±ÚÕ´ +Û܈1±M¾|¿ ©‘}£1.㦱-^ôñ Kév†ñ¸çPUŸ†Ëu:úÝ|ÇÝX{硪:Ü$€áNÿð™íÕ4KÝ9m;Xè2„BË*@˜ÅiÒ…«Ãgø-sŽdš&FgeþÔ©"ˆâ³ú;•P¡=þ¤úc:2÷‘R#:ò¶~GGv6¶‡#CòAƒƒoê†ùæÀ:¯ÖqR&&;µ|M¹@göJ‘ ÁpÞ›hjÌýdYUGw¸ð¤FÎöF~Gr£a­jòÌ¢›zÂöG + ¸|þè0‡àç+R_Y®¡°ùG|í#¾vïèwtfgc{83äC¸}íþA/̃µ;o‘9 K›4î‰ö±^æ:²ÿ°,2ÙPünÜ8–"ÌM|jŒ!*@Qç 2Ä—ë­ÃAôRGÉ]s “VT8ÝF“é=5ÆìOÕ7‚ˆuÔvN?z!²ªiÉñ‚ I2ÞçýnAÆÝXû Cª\­­ÿîÃÏKméö?ßÁŽ?¡Rf;¾}¹ËaáT/€ ô´&Y,sû˜`_üeðnv˜åî0«ó}“J8GRŒ—Jtô;z¹³±öߤ’Šƒð&•ø'¤”錄ï¾ý·X,‚¤> endobj +2830 0 obj << +/D [2828 0 R /XYZ -16.307 900.716 null] +>> endobj +2831 0 obj << +/D [2828 0 R /XYZ 56.693 741.959 null] +>> endobj +2832 0 obj << +/D [2828 0 R /XYZ 65.161 742.642 null] +>> endobj +2833 0 obj << +/D [2828 0 R /XYZ 56.693 684.809 null] +>> endobj +2834 0 obj << +/D [2828 0 R /XYZ 65.161 685.492 null] +>> endobj +2835 0 obj << +/D [2828 0 R /XYZ 65.161 674.533 null] +>> endobj +2836 0 obj << +/D [2828 0 R /XYZ 65.161 663.575 null] +>> endobj +2837 0 obj << +/D [2828 0 R /XYZ 65.161 652.616 null] +>> endobj +278 0 obj << +/D [2828 0 R /XYZ 56.693 615.767 null] +>> endobj +2838 0 obj << +/D [2828 0 R /XYZ 56.693 588.425 null] +>> endobj +2839 0 obj << +/D [2828 0 R /XYZ 56.693 542.472 null] +>> endobj +2840 0 obj << +/D [2828 0 R /XYZ 65.161 543.155 null] +>> endobj +2841 0 obj << +/D [2828 0 R /XYZ 65.161 532.196 null] +>> endobj +2842 0 obj << +/D [2828 0 R /XYZ 65.161 521.237 null] +>> endobj +2843 0 obj << +/D [2828 0 R /XYZ 65.161 510.278 null] +>> endobj +282 0 obj << +/D [2828 0 R /XYZ 56.693 473.43 null] +>> endobj +2844 0 obj << +/D [2828 0 R /XYZ 56.693 446.088 null] +>> endobj +2845 0 obj << +/D [2828 0 R /XYZ 56.693 400.529 null] +>> endobj +2846 0 obj << +/D [2828 0 R /XYZ 65.161 400.818 null] +>> endobj +2847 0 obj << +/D [2828 0 R /XYZ 56.693 353.943 null] +>> endobj +2848 0 obj << +/D [2828 0 R /XYZ 65.161 354.627 null] +>> endobj +2849 0 obj << +/D [2828 0 R /XYZ 56.693 307.753 null] +>> endobj +2850 0 obj << +/D [2828 0 R /XYZ 65.161 308.436 null] +>> endobj +2851 0 obj << +/D [2828 0 R /XYZ 56.693 261.562 null] +>> endobj +2852 0 obj << +/D [2828 0 R /XYZ 65.161 262.245 null] +>> endobj +2853 0 obj << +/D [2828 0 R /XYZ 56.693 215.371 null] +>> endobj +2854 0 obj << +/D [2828 0 R /XYZ 65.161 216.055 null] +>> endobj +2855 0 obj << +/D [2828 0 R /XYZ 56.693 169.18 null] +>> endobj +2856 0 obj << +/D [2828 0 R /XYZ 65.161 169.864 null] +>> endobj +2857 0 obj << +/D [2828 0 R /XYZ 56.693 112.031 null] +>> endobj +2858 0 obj << +/D [2828 0 R /XYZ 65.161 112.714 null] +>> endobj +2827 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F95 923 0 R /F98 924 0 R /F52 695 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2861 0 obj << +/Length 1710 +/Filter /FlateDecode +>> +stream +xÚÍZKoã6¾ûWèè5Í·¤öÔÝvØ>€n´Àîh‰¶ÙèáŠrìüûŽ,9±•¸¡,+é%f¨ápHÍ÷qf(ì-<ì}½»M?ì…(”Tz7sOR$}/ 1ß»‰½/ãÏ:ÑÊê« xü{^j[7çyQ7Êeóð§.㦳Ôéªæ/Xö£a<‘€fcÚWŒ ˜CðC‹Ô-7”Ê"FÂáP*‚€ ‡é±ú~ímª;DeÀ‘äÍéóÁlÛð9·2w”S³D»‰ª,vŸ-Ý$— 31Ù¢#%H?€ˆ€¼&%H!þå(áù® ä`EÈ!ãH01 +õ÷„aoc;àù( ¬~¥*Žµ#ìzµÊ G8TQ¬“ Þ®Gµp<,•5ŽÌ-U¡¢R;šbw1tWCà!€Õ^À8@’±Ëø¹SÚÆ" ªÄf0‹42Š[úû¡¸¿±î(!Œ Ãÿ Š£µ-óÔXõ$œ>9ĸʥj¡=ƒ&>¥¯ a! +pðÆg°`¢—cþpè=Öß½½í€^ÎaƒxýJtG¯ÉÀ¿uªc£òÙß:*ßô©.U¬JÕNŸ‘«ûUH¼*îíüíªMU‚›¨R$λ*ÓîîSzX LÉpX†`aIÃrK?,÷7ÖË<ô¡Ü “¦•Ú>ÂìÔ.¦T¯cB >Ý>a_¶å}žÝéÂ:dzõÂu_Úe„üÃC‚°ÏãZyœ/ÂCâ‚#J›:%<&¤eý„`X×ubb½¯äòö&”#&»ÙßÌó$ɯ¨oª·³ë‚ì'[ìo–êŠâñÝãfÄLë¬n¥*núÊüñꡮ±ƒ¹I'ùrψö”,<<ˆEù^»5Y¤[wr†hÝ.êt¼#J"ŒBC Ÿ“öüf`/tò \¦ð—Ô{šr¹'òy>ýMÝê +h /Ë4yèst)2ˆÊda0„Ùp,ÜÒß…ûëÎÂ,ˆÑÎ,-5Ò®.•³N×âæ*L¾vTš6N{atæ^a­MwOŘO)ùòî}¬¿§{÷6¶ƒ{ûX¿¹ÇYg±kMëýýbc²ŽÇõÍÒµÂfËõ|8ª\/’û ã1U÷3G¿ÍrLj "ör鈯¥vM¨ì¹Tô2²$`c¸›ã–þžÈêmldIŽ8nNŽ²È׳§¡ö ³µ£ÓĹ+'[­Ó˲78ì­£sYçÒ½ŽJדÖ­ÎœZ¹.)»/—gG"t1ÜRKOÐô6¶hCœ7±¸N¬>7cÜ…¯z} ¢âœ<â“)nUü’[}»Ïv™Â*Q&ëP°aÌð#†bl¸›“–þž¾ÛÛؾ‹ÁH8pÁƵˆj—ùæ 1ÖjG]§³vŒø²KbŒ§¯Z¡˜$$úlAäÏ+&ÆzfM©ÿ£*"ß¾*²9i$ »`Y¤úp2lÊ"t ²ˆÞ–:« +wvjÕ6Ï$Ÿ¢(QÖj;E SšE–ûŠÉðV%*£²QžNÿ°‹‹P9¥’êÃ1<¥¶ô÷£ÔþƺS* AC©…ÎT꺖²È1ÛJÁÛRõŸÎyÇÑ­ýؽ^iåeS õܸ +©§‡º&s™Ä”ªt\îÚ: +掕€Eëk°}rzYöîIùbÇUn”@€`âH{ò•<ÇËðœäÿ„‘y¯ +endstream +endobj +2860 0 obj << +/Type /Page +/Contents 2861 0 R +/Resources 2859 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 2826 0 R +>> endobj +2862 0 obj << +/D [2860 0 R /XYZ -11.232 900.716 null] +>> endobj +2863 0 obj << +/D [2860 0 R /XYZ 56.693 741.747 null] +>> endobj +2864 0 obj << +/D [2860 0 R /XYZ 65.161 742.431 null] +>> endobj +2865 0 obj << +/D [2860 0 R /XYZ 56.693 694.923 null] +>> endobj +2866 0 obj << +/D [2860 0 R /XYZ 65.161 695.606 null] +>> endobj +2867 0 obj << +/D [2860 0 R /XYZ 56.693 649.34 null] +>> endobj +2868 0 obj << +/D [2860 0 R /XYZ 65.161 648.782 null] +>> endobj +2869 0 obj << +/D [2860 0 R /XYZ 56.693 602.516 null] +>> endobj +2870 0 obj << +/D [2860 0 R /XYZ 65.161 601.958 null] +>> endobj +2871 0 obj << +/D [2860 0 R /XYZ 56.693 555.692 null] +>> endobj +2872 0 obj << +/D [2860 0 R /XYZ 65.161 555.133 null] +>> endobj +2873 0 obj << +/D [2860 0 R /XYZ 56.693 507.625 null] +>> endobj +2874 0 obj << +/D [2860 0 R /XYZ 65.161 508.309 null] +>> endobj +286 0 obj << +/D [2860 0 R /XYZ 56.693 471.158 null] +>> endobj +2875 0 obj << +/D [2860 0 R /XYZ 56.693 443.605 null] +>> endobj +2876 0 obj << +/D [2860 0 R /XYZ 56.693 396.99 null] +>> endobj +2877 0 obj << +/D [2860 0 R /XYZ 65.161 397.279 null] +>> endobj +2878 0 obj << +/D [2860 0 R /XYZ 65.161 386.32 null] +>> endobj +2879 0 obj << +/D [2860 0 R /XYZ 65.161 375.361 null] +>> endobj +2880 0 obj << +/D [2860 0 R /XYZ 65.161 364.402 null] +>> endobj +2881 0 obj << +/D [2860 0 R /XYZ 56.693 316.894 null] +>> endobj +2882 0 obj << +/D [2860 0 R /XYZ 65.161 317.578 null] +>> endobj +290 0 obj << +/D [2860 0 R /XYZ 56.693 280.427 null] +>> endobj +2883 0 obj << +/D [2860 0 R /XYZ 56.693 252.874 null] +>> endobj +2884 0 obj << +/D [2860 0 R /XYZ 56.693 205.864 null] +>> endobj +2885 0 obj << +/D [2860 0 R /XYZ 65.161 206.548 null] +>> endobj +2859 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F95 923 0 R /F52 695 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2888 0 obj << +/Length 2827 +/Filter /FlateDecode +>> +stream +xÚí][sã¶~÷¯àìKå™@‚ Ó¤“¤ÙM“n6éÚétf7YS$C‚–__P$½&)J€ ¨é¾X”œïÜp1tîè|ñííÅõ„>öÛ¥ãcàS'@.p©s»p>ÌÞó„³’_^agï2ÁËæq™̓Xµ_~—EßfÙ}óæß7o/»ýQs… i¨Ýˆ§„—+ÎEY-GGN G÷Ýztϧ€âÀ¹" ¤íø„J‚4˜]7/ûuNj׷¿_ I:È!>ðCס!>ÄN´¾øðtò;ÉðÂÀÙl[®‚ À®/Ÿçæ⟰•ìI;²%áV$q/ú Sòkänùè::®„pöË¥ g¬`ëî÷½”®ö€ë·Tn;É-³$É.1™mâô®ù(Z±ô®“õŠ]b8{¸DdÖö˜sž6Ok¶h?Ù§ ÙŽ-¹þ46 +<@iýË·cçS<ºpÉs³(먗qñÁŒ#@]€›ç¢ÑЗÊÆ®–rN¡ÛPýˆ1éµÛòºÕ¯æ!žt,üƒÇbuyåKá¾a«ä®àé—WË÷<¯æ€U"KØœ'àq4T¥¾Õ„ë—ïûš"õQìøAJjM©?'Pêç;„AèÜY¾TµÝŸŽ „Èïh£ºµ)}†ô ”S!E¦2ÂKØø Äá ˜Ý,îœæá}‹£ÞœvŒ`è5SûŽozj0¦#aUOüV[¹à…ZóÚ6)5¬hãÙŸÛ4º€É.³gíì3tXC©'熚hèÄëØè·Î'@t DbU‹?þÈYZfÏlžp°¬ç̳bÁ eIVÔhýKÓ£iñ$9[,¤ ÜýeÛ]´Ö¼`Ç B@äcËÐG‘Áç'Ô<)šOJ¦up€!¶gúô ­ƒ1³ÖÁ•î‘†Í$~³Xð…Ž×qYÖ®S©qÁ—yUäYÉKµ,UdcÁ˨ˆsgi9a#ëdœážøPJ?Oë›eXø£àiYKCÃ7“Œ}{è#2Â>µ†¾}3ô™3«Ž>P@ºHýõóܩ龌>•Ú•Užg…PküÍ"›sµ¦ßÅw±`‰Zã׋X¨ÿ4®)Š8¦õ§{‚„QL1I:«D^‰cm ©ƒ/œÓ¶"ó ß;qP±Ìòqi£ù:Òìxrtˆ-š—Ïsí™>}C³c̬†Ùñd²Ý†KX/cU¿/VL¨¦9ÒÛµ!_ž83yóó/»Œˆ”2ÜŸŸ(+ æS{E²íó/^ÔBÙÅÚßSU@i¦8¡+^(z†'>6˜@ÙdʈÔ#ÞYM&B€e1ãhÅxò(Öò/jlâÍZiå\³$qz_VpP¥2¡’oùâ… ­›ðt‘Öµ>Ù¶ò]„ Û,³T€Äz2V2B©=Ãì…ø(°f˜ôÍ ³9³ê†Ù ]inÚbeÁ×Ùƒr>ÆR c»ÕGšÊùû[Òñg{L#?Õ’G ,{âkë¤Ì& +_éÑøRݬá¥Oß/ÆÌjà%ä½vÝ¢)à+Ç1\µÂ°dU¢ó¤Ê-‹5B¹„¢ÆŒuÓ8œgÉâØÈ£ÒÅRtNoîPB-ºóy½ìR‰tÈ(¸ŒëâÞ:yõüGFû€†žE7ëb¸ÄžÙèÓ74ÆÌj˜ ×»ÚEÏTkõĆ£ª5Olj–ÔÈNfÞúͦRsÀy–9ê$Uµ|¬¹ôãajoíp@ß(ÆÌjׯmf4Ò½Iùÿúþ퉽ÚNeÓðíµeW×ÿIúU=€æ*æ×»:}1ÍͪàKÍ1â5“ìè@³Ö#d¯P? ocf5€€<€a[¨gÕ"ÎöˆyjzâßÙojì7€«l“U 7€ïxÊ &T仟o_ß(®LðH ‹[Ó…ø¥¦UwC{U†}3e6gVC™¡ °×VvÄWÓF)—æë&SnUuò%?No>bt’Äaù0ì©p¡½bÅ€¾!쌙U‡b€ƒ6/Í žóT9óPMÕYúd# úõý§^Š‹åÏhÆQÞtÓ1¼UC.—zöÐÒ#oSV5° àâ ÁÊ"gÕÈ'|H}Zu…(ây%ø±Å3קöv­ èj‡5f[a¦hcM}ú†Â0fV+$j òƒ¢j>e•¢eSÍùµJyÚtFÝX—YUDüÄÃK*šîІêÎIžŠâI7óšº5¬ôébŘY ¬Ô{ŽH –F4=…òb¥2ÄÎTaó9GÙm¤Òr¼ãäÀ<ŽÊ‡Aå65 k êÓ7•1³ ª·®…n·kÁ¬R;Ùt'Š{MYžsVìªÿ¾Ú³Åá¸|Xö|u ({êzܹ +lÊ9æaäà¦àd 9}ú†È1fV9ØÄõÎ^‰;U­wYdëSÇG»½òÁÂ!9€?M Oëy‘ÍÙò»cä©àâ´žÿï·?½µ¸ús“éÆð™jÚtÏO„i qÍY§wË*9r;ìAHà×··ä2 o sfÕ!CøÝVÀ³˜¯©†VðxÞµÛ`¦àg\ÑmÜ9Œº­™ZL¼!^LYÕ€K€“éÈçZ“Î +gžÅ©Ð]=Ç~S ´¦™}ú†ªi̬†nÒúî›öȼªãW6Ï2ŽSÕ½';ŽäýwC«ÿåt~çrÇa¦¤h }ú†00fV>4èJ­»‡NZWy£|¯Ï#[ç ŸX¥?<ß^S³6ß}ú†ómÙVnSý°&Œ>}Ca˜2;VuJ$åšÍ>ntýËiçýX&›C4Žf¤l=Rè¯ö,!ü¿åèVB£7• +k +Þ§o¨à¦ÌN+8¦ ìnfûëžýLBä# ¿¾žî°Ùl4¦òž)×Q®¬¸¶ÞÃÌŽÛÛö´.³¥Øì8n¼¯K´Öh} Ö‹,iùõ—×öŒÑ'MP@þy/¬CaèqÖ)­,EQßFWVóR€5Ë5ÎS¢@2gñ9D%ÅÐ^j6 ofµÌ™UIQ€ìî+¯8ÿƒkÞÇTŽ ÜGäzÓíuí€öžšŸò.kň[jrb, …ƒkª|çàéiËtüQº¡Ê¼*â¬Ò­ ©Ûk/)Ð7 1³¤ 6PV¯c¨–&6«Xð2g?uaΕï?ˆÓ’Ê… ¶T¾¹6/²;é„ë[w”™á":vK7"Ô^¢; o¨ÃÆÌjè0 ·¯[%V]~‰¤N0åÆlxÿhïè¥ÂÔaä¬ñ–Qd)ÞêêG2ÎJ+–€%K’9‹îÄD}ÐáÅíSÏM›*Ò¸©õK©$ÇÂÀbxC={‹¨ú†È4fV™·ûç‹Ñ]tûöY‰“2X®ã2ŠÓeöu”°rç¯ö¤rLœþp©ê®Ñ/'¿á¨ã2‹ƒö½GÝLÍ Véz[NWFµ¯±«fþJë,Ùá­ÇùÕeÍÝ%°çÜOºñv(…m\Ý4ú?"ž´íÍ–Ý#ò©­´“ +endstream +endobj +2887 0 obj << +/Type /Page +/Contents 2888 0 R +/Resources 2886 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 2826 0 R +>> endobj +2889 0 obj << +/D [2887 0 R /XYZ -16.307 900.716 null] +>> endobj +294 0 obj << +/D [2887 0 R /XYZ 56.693 759.068 null] +>> endobj +2890 0 obj << +/D [2887 0 R /XYZ 56.693 738.489 null] +>> endobj +2891 0 obj << +/D [2887 0 R /XYZ 56.693 691.479 null] +>> endobj +2892 0 obj << +/D [2887 0 R /XYZ 65.161 692.163 null] +>> endobj +2893 0 obj << +/D [2887 0 R /XYZ 56.693 644.655 null] +>> endobj +2894 0 obj << +/D [2887 0 R /XYZ 65.161 645.338 null] +>> endobj +2895 0 obj << +/D [2887 0 R /XYZ 56.693 597.83 null] +>> endobj +2896 0 obj << +/D [2887 0 R /XYZ 65.161 598.514 null] +>> endobj +2897 0 obj << +/D [2887 0 R /XYZ 56.693 551.006 null] +>> endobj +2898 0 obj << +/D [2887 0 R /XYZ 65.161 551.689 null] +>> endobj +2899 0 obj << +/D [2887 0 R /XYZ 56.693 504.576 null] +>> endobj +2900 0 obj << +/D [2887 0 R /XYZ 65.161 504.865 null] +>> endobj +2901 0 obj << +/D [2887 0 R /XYZ 65.161 493.906 null] +>> endobj +2902 0 obj << +/D [2887 0 R /XYZ 56.693 446.793 null] +>> endobj +2903 0 obj << +/D [2887 0 R /XYZ 65.161 447.082 null] +>> endobj +2904 0 obj << +/D [2887 0 R /XYZ 65.161 436.123 null] +>> endobj +2905 0 obj << +/D [2887 0 R /XYZ 65.161 425.164 null] +>> endobj +2906 0 obj << +/D [2887 0 R /XYZ 65.161 414.205 null] +>> endobj +2907 0 obj << +/D [2887 0 R /XYZ 65.161 403.246 null] +>> endobj +2908 0 obj << +/D [2887 0 R /XYZ 65.161 392.287 null] +>> endobj +2909 0 obj << +/D [2887 0 R /XYZ 65.161 381.328 null] +>> endobj +2910 0 obj << +/D [2887 0 R /XYZ 65.161 370.369 null] +>> endobj +2911 0 obj << +/D [2887 0 R /XYZ 65.161 359.41 null] +>> endobj +2912 0 obj << +/D [2887 0 R /XYZ 65.161 348.451 null] +>> endobj +2913 0 obj << +/D [2887 0 R /XYZ 65.161 337.493 null] +>> endobj +2914 0 obj << +/D [2887 0 R /XYZ 65.161 326.534 null] +>> endobj +2915 0 obj << +/D [2887 0 R /XYZ 65.161 315.575 null] +>> endobj +2916 0 obj << +/D [2887 0 R /XYZ 65.161 304.616 null] +>> endobj +2917 0 obj << +/D [2887 0 R /XYZ 65.161 293.657 null] +>> endobj +2918 0 obj << +/D [2887 0 R /XYZ 65.161 282.698 null] +>> endobj +2919 0 obj << +/D [2887 0 R /XYZ 65.161 271.739 null] +>> endobj +2920 0 obj << +/D [2887 0 R /XYZ 65.161 260.78 null] +>> endobj +2921 0 obj << +/D [2887 0 R /XYZ 65.161 249.821 null] +>> endobj +2922 0 obj << +/D [2887 0 R /XYZ 65.161 238.862 null] +>> endobj +2923 0 obj << +/D [2887 0 R /XYZ 56.693 191.355 null] +>> endobj +2924 0 obj << +/D [2887 0 R /XYZ 65.161 192.038 null] +>> endobj +2925 0 obj << +/D [2887 0 R /XYZ 65.161 181.079 null] +>> endobj +2926 0 obj << +/D [2887 0 R /XYZ 65.161 170.12 null] +>> endobj +2927 0 obj << +/D [2887 0 R /XYZ 56.693 122.612 null] +>> endobj +2928 0 obj << +/D [2887 0 R /XYZ 65.161 123.296 null] +>> endobj +2929 0 obj << +/D [2887 0 R /XYZ 65.161 112.337 null] +>> endobj +2886 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F52 695 0 R /F93 909 0 R /F95 923 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2932 0 obj << +/Length 2902 +/Filter /FlateDecode +>> +stream +xÚí]ÝsÛÆ×_ÉKìë|_8é“ãÚgÒ6µÔigì<@ä‘ÄX­üõ= #¤°ÇÅYvÜ‘"‹åÞï··»÷ê-=êýtñãõÅó×>õ")®¼ë…§8Q2ADà]ϽwOÞêTÇ¥~zÉ}úäïy¥Ëæí"/š7Õªýò¯ùìÇ<ÿÐüóŸ«_žþvý³¹Í%c$òýFÚUu—êr¥uUÖ_›»3/4wW¢¾»T xè]ú$ +Úûû¡„Ož7/Œ«ú‹W×ÿ½`F<õ˜ç+¢"á#Šro¶¾x÷õææ;£‘Qèíö-מÏ(áB™÷©wuñÏ ÚZ‚ž´ÈA¶Œ£ªÑé=çþ^‹ÃeÏ_›&ûß!ëkB"Uh¾Ø7þ[2[Å:}O}Z­Í_öôRQúäjT«ž^2nþYÇ1­Šu¼!åö¦ÔÙù"I5ù¸NÿÒ\q¿‘Îâ›TÏO|[nãFþ=¥dß¼mÕzO©Ñ„1úékÞí—é±ú§Õ/?ummÂîÂØCŠÚÖõç>5='•ÇIF^¡½Å}ãv¤ÿtxÊà Á¬n•ï¦X_¾O L§AîpxŠD<š@Ù½Àbé5oÞ¶Hì ê ¸`Dí{qÏu‰CAÞ»=>Ê| l¹Ø†Ó¬ñ<ŸÁV;(am Æ•žçÀv«ÞïÇ8 ˆaº;vå#!ˆVÖ‚œŸ‰³Ž]ÍG¤ý`ØOZeqEã-.h=§Å:[¦I¹‚áhñÚIr?ì ¼å‰×“–2ƒ¡àüÿVÛ*4öPîÆ+˜Hƒ2g΢'ç,ðÊÂ… +QFü¾_Ìç`¿¾ŽWߤÒt„Ž³9tÔ]$Y¿wÆyåGDJî÷]ùHÜ£•µÀ½1PÐŽ‘`,¯Lo¥I¶„µÎ°vÇ0:PÜýœ6øš'‹….tV%&°ƒ]r£MȨ3XãWÇ4Ž]i¾P¸ÃnW>»he-°ëMÖ€ì@²|àˆ/Oû¼W6>¯Ì·Åì”GïgŸ»Ë%{ò‘ýìLÙÖ\™°Ê]VÓ“4ZY Ðóˆ„~뱯W Ðîâ»ÇöÂq¡¡ ÝYŒCÐH j©ªoScç f>QT¹CmW>µÎ”mA%Q2pgŒ®|¤1ÐÊZPؤu‘hkÍo'·qºÕÓFf_L’³-5.%š*]:»`ãw]äýæÏ€®ÇšÖÛzòqlÃ+ g›™{Ê2J¼3¡¬åaBéÜqŒ1¾+’ª‚æ* "§i¿ªks§Á^­âê,CüAŠ“ýZÒ]ÆYîÓeg$ëˆGr «ªÅBE(k§BÓ\2ìã:=ÃüþqUÉͶW= îô5|ªËÐ +È\=šê2úµŒ"™«™,?hòygìêÊGÒ ­¬¿ŸP?løUGMñ¬©<XX&tÀ¶=K 4ÿº¹û+êÔ+JBæ®4Ý“D=ZY Ô+IÚ➣èܤÐâAVV:ž?RZµØ¦)pv$_XTÛ‡nä²mέkú²©X9xW>àΔm!BF=ùHc •µ`»4 +Û•ÿ¨ã]2Ìö' +üÁÌûÓ³y6±¥Šš†êT¯uVÙ“¼)š9#NW>’8he-ˆ#á¼€fí_@yJ˜É‘ºHŠ²/60H-îÀÆÖW†=5NÖT¼œQ¥+I´²Tá”ðú“š*6X§þ.ªôЄJ(xulbãdù×:èŽSŽ60g”ëÊGR­¬åhDm纎Ç(ãa¢èd—þü‰«(£–QSdráž|„ñÊÂ!,£©¾áuä_måeôa]crùûÒ‘€G*j÷0 " ¾J¸÷w “{¼+ÙçΔm¡š’‹3ctå#VÖ‚æUªè°ÆNÛ­ž¹X: lª]î`í|ñ\l[Ø‘~S¿p†Â®|$ +ÑÊZ Ð—Ägì+rħ£ˆ"¿MæºÏ5l’l l½€&ŸBþò¼ +Í8’eS^p†ä®|$’ÑÊZ Y +âûmmÿßÚttuѶÈ7º¢¡NÜ·ñRŸí¬&Xº _oX=ÒlâÛ¼ïLÐæMï Ú]ùHhc•= dÁ‰‰ÃVχ–·_·_bóp±#N7«øfà‹+ê^\½|óÆÉìï‘¡¡þ!ਛ+"ØgÝX,© ’>ÎÆb UDdT‘»Í¾"äD†î’ž|iñÊÂÇ#ú{M­7ûB÷êE¼M+nàuh¡Ð@y32-¶¼ˆ€Ÿ»K"{ò‘ s¦lk E‰¯Üå2=ùHc`•ò+ðäZMA¶æ9ZÚ?6Ð}÷À쌮1¼ùø»‡ïã>Þj?þþ´æ/LòË<«Š<F±/ [~‰«d¸e$¹Ún6g­×2"ŠºK†zò‘TÀ*;¤Bhâ3œ Ÿ“0âˆqÊþi´ï¾ø_Y2Ë¡G3ݤùìƒ-DH”t—6ôä#A€Uö´?”ŒDB€â§“ã•ÎúÁËÃS˜/ÎíkPr³­&N“cèÂ×ɳdÛjÑ¢ÈmÏ[<0>ÂÝ:ž|$;ÐÊâóƒÓæÚ@N%ViŽx¨ÓkVnµ‹b$”ºËÁBíñUe>õz¤YO\(+«¤Oíq¾0Eîn‘MO>’/he-øÂ)¡Ì?ì•(KøéUE¾]—Ä¥Å@3ܳùGåk¼£i“Ÿ;ëè®|dG;S¶1$ ©»Ý=ù8cà•…Wqx–³´z±Ð3è´'ÜAB'HMX‘-õÄÎÔb+uvÞÞºòjðtËRgº€Ÿ˜:˜×u<Ü—œ¥#ɬª4 ÂD[ì\çÐ¥ï_Î4øÌðLðë$ËŽÌÍ<›˜Iq©Ã8€ƒ¦Xà Á]ùH£•µÀp ŒÚ9_é«Õ|xLåå6«C—ƒ¶ÏžŽ•dãÙLgÕ°1R“=Á»X‘«¦¶âŒ3]ùHΠ•µàŒy=œ¬ Ž$fyv«‹ÉO5_Â÷%ëro†ÓQЩfî7¥gpèÊGÂÁ™²­1d“:3FW>Òhe-¸!´-ÈþZèÛ$ß–ée@bµšÞA—Ô¹Jó«U^:ª‘Æg®6g=õÝUR{ò‘@Ç*{Ö‚!%d² ToKp÷fZO¾”b[êG;LÃje†ÅÑwÐ#[³ÉâaÝ{œ[¬)³8ãVW>’[he-Έ8,spè5Çd–Kð8mªÎz±+ًΔmŒÁ¢&teŒž|œ1ðÊÂ!Í¢ˆHÕ–T_L{Ü]¡KpôYê®ãÞ—Xµª×ºî“DgDèˆGò«ª Âø´-™:­mîh0r=X"Ñ»ú!FÓÎÀç”uv›yV¯HšxÎ|·Jf¶ÏÎ`$\¹[Ý“D8ZY ˆñeôéÁ/wµÆ¯¸Å™Ô0‹xgY¾´;ÛÛ¢"lV³}°ÞâÇFx >ç^&C"ü蜽ñ¶Hªß›÷ÏÆÉ—yvØãq¨Iª—qjðœÌÌû$ûpïépŸÚúÖ„"U^Ü}jµ—0ÊGùÆx@¤p—¿õä#] ZY (( ¸o½ $ÉLP¶Ž«z2´Ý +úÜ‹£ÎRÅ뉜ŸåëÍöH> +v\)ÃÏê" *}!'vma—TõFvɼZY0?2*Ý?zj⇔(ænb¬+G{´ªpÖ‡‚´#ÅË4.,N^úõ ´b/Ï>ŸÄDeêþ#ºÐÌ<~¼žeQÑ9Oÿ'Ƙ< +endstream +endobj +2931 0 obj << +/Type /Page +/Contents 2932 0 R +/Resources 2930 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 2826 0 R +>> endobj +2933 0 obj << +/D [2931 0 R /XYZ -11.232 900.716 null] +>> endobj +2934 0 obj << +/D [2931 0 R /XYZ 56.693 741.747 null] +>> endobj +2935 0 obj << +/D [2931 0 R /XYZ 65.161 742.431 null] +>> endobj +2936 0 obj << +/D [2931 0 R /XYZ 65.161 731.472 null] +>> endobj +2937 0 obj << +/D [2931 0 R /XYZ 56.693 683.964 null] +>> endobj +2938 0 obj << +/D [2931 0 R /XYZ 65.161 684.647 null] +>> endobj +2939 0 obj << +/D [2931 0 R /XYZ 65.161 673.689 null] +>> endobj +2940 0 obj << +/D [2931 0 R /XYZ 65.161 662.73 null] +>> endobj +2941 0 obj << +/D [2931 0 R /XYZ 65.161 651.771 null] +>> endobj +2942 0 obj << +/D [2931 0 R /XYZ 65.161 640.812 null] +>> endobj +2943 0 obj << +/D [2931 0 R /XYZ 65.161 629.853 null] +>> endobj +2944 0 obj << +/D [2931 0 R /XYZ 65.161 618.894 null] +>> endobj +2945 0 obj << +/D [2931 0 R /XYZ 65.161 607.935 null] +>> endobj +2946 0 obj << +/D [2931 0 R /XYZ 65.161 596.976 null] +>> endobj +2947 0 obj << +/D [2931 0 R /XYZ 65.161 586.017 null] +>> endobj +2948 0 obj << +/D [2931 0 R /XYZ 65.161 575.058 null] +>> endobj +2949 0 obj << +/D [2931 0 R /XYZ 65.161 564.1 null] +>> endobj +2950 0 obj << +/D [2931 0 R /XYZ 65.161 553.141 null] +>> endobj +2951 0 obj << +/D [2931 0 R /XYZ 65.161 542.182 null] +>> endobj +2952 0 obj << +/D [2931 0 R /XYZ 65.161 531.223 null] +>> endobj +2953 0 obj << +/D [2931 0 R /XYZ 65.161 520.264 null] +>> endobj +2954 0 obj << +/D [2931 0 R /XYZ 65.161 509.305 null] +>> endobj +2955 0 obj << +/D [2931 0 R /XYZ 65.161 498.346 null] +>> endobj +2956 0 obj << +/D [2931 0 R /XYZ 65.161 487.387 null] +>> endobj +2957 0 obj << +/D [2931 0 R /XYZ 65.161 476.428 null] +>> endobj +2958 0 obj << +/D [2931 0 R /XYZ 65.161 465.469 null] +>> endobj +2959 0 obj << +/D [2931 0 R /XYZ 65.161 454.511 null] +>> endobj +2960 0 obj << +/D [2931 0 R /XYZ 65.161 443.552 null] +>> endobj +2961 0 obj << +/D [2931 0 R /XYZ 56.693 396.044 null] +>> endobj +2962 0 obj << +/D [2931 0 R /XYZ 65.161 396.727 null] +>> endobj +2963 0 obj << +/D [2931 0 R /XYZ 65.161 385.768 null] +>> endobj +2964 0 obj << +/D [2931 0 R /XYZ 65.161 374.809 null] +>> endobj +2965 0 obj << +/D [2931 0 R /XYZ 65.161 363.85 null] +>> endobj +2966 0 obj << +/D [2931 0 R /XYZ 65.161 352.892 null] +>> endobj +2967 0 obj << +/D [2931 0 R /XYZ 65.161 341.933 null] +>> endobj +2968 0 obj << +/D [2931 0 R /XYZ 65.161 330.974 null] +>> endobj +2969 0 obj << +/D [2931 0 R /XYZ 65.161 320.015 null] +>> endobj +2970 0 obj << +/D [2931 0 R /XYZ 65.161 309.056 null] +>> endobj +2971 0 obj << +/D [2931 0 R /XYZ 65.161 298.097 null] +>> endobj +2972 0 obj << +/D [2931 0 R /XYZ 65.161 287.138 null] +>> endobj +2973 0 obj << +/D [2931 0 R /XYZ 65.161 276.179 null] +>> endobj +2974 0 obj << +/D [2931 0 R /XYZ 65.161 265.22 null] +>> endobj +2975 0 obj << +/D [2931 0 R /XYZ 65.161 254.261 null] +>> endobj +2976 0 obj << +/D [2931 0 R /XYZ 65.161 243.303 null] +>> endobj +2977 0 obj << +/D [2931 0 R /XYZ 65.161 232.344 null] +>> endobj +2978 0 obj << +/D [2931 0 R /XYZ 65.161 221.385 null] +>> endobj +2979 0 obj << +/D [2931 0 R /XYZ 65.161 210.426 null] +>> endobj +2980 0 obj << +/D [2931 0 R /XYZ 65.161 199.467 null] +>> endobj +2981 0 obj << +/D [2931 0 R /XYZ 65.161 188.508 null] +>> endobj +2982 0 obj << +/D [2931 0 R /XYZ 56.693 141 null] +>> endobj +2983 0 obj << +/D [2931 0 R /XYZ 65.161 141.684 null] +>> endobj +2984 0 obj << +/D [2931 0 R /XYZ 56.693 95.418 null] +>> endobj +2985 0 obj << +/D [2931 0 R /XYZ 65.161 94.859 null] +>> endobj +2930 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F95 923 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2988 0 obj << +/Length 2142 +/Filter /FlateDecode +>> +stream +xÚÍ\Ksã6¾ûW°²‡ñ„@’S&»™ÝÉ£*±·v«fr€IH⊅¤lÏþúmŠ’cR~4QÙ‹IK`£ ö×ß×(,|¸x}ñî{ICŒâ*¸žŠš…$Œ‚ë$øtù«Ëœ­ÝÛ—ôòç²quw:/«î¤Yî¾ük¿/ËU÷Ï¿¯~|ûÛõGèfÆ1RvÖ®š/™«—Î5uû5ôÎ ½«°í]¨ˆD\3IL´ë_0éËwÝqÕ^xñ·ë‹ß/˜§ ¤"Ê„AdQ”q~ñé7$ð8@„ÑÁݶeHF œgÁÕÅ/t7ÃãáÈìû†0ª:ß>s.·Þì/{÷=4ÙÞh¯ÑD( _lÿ”ÆKë²ÏTÒ&‡¿ìíLQzy•§Íòë·3ÆáŸÜd¾)âúKQ®ë´&u;^ä>Ϻn` ÛžÚÇþÀƒc¢<ŽÂvÚÏ%…*àÄhT.˜?¾çžµ§?=ì€B™ØwÐfmk_û’0ņö%e$‚1Äôð81ÜœÀÙ­Ájt'¿î£÷÷Ž‡œ„”uÏúÛ$qI/2-Ÿ¶Ï¿…ª!ÄF¯!tCv^qù8ŠF\¶7œ?k[ÙÜ5®Â›ß^÷w[Ÿxdjð×ÒÍç.npmÓþp#°Ç4¡è&ƒFß¾'4¼ ÎH(x ãµ]8d ”›f½A>°“ÇÕŸ…¡g›/±·8ŒÝg±xýÓc£(…5]”÷í{F¹·³#¢ì†ZtQþDÜî†|6{9=ºûØ­l$[l2k‘“¸¹ÝdH«·6Û #ýAÛOß<"[Ôéto^º´¨g‘¼[ÎG:´: º7«Ê¨Ñù¨²±:UiN´äéÔžFmìÍ&³i–Hû2KFèU…$bf:½ªàM—­úæý’•·«ø\¥ K**¼¼¼=¹\=’]"mQâÚee±êƒ×a%ÑPŒLö}ûžqïíìˆÀ—’P­»À¿qi±À=…MVz¡— ²¥-´Ž,FD4R Ü8‡¼÷:-blÕ›&Oñ4²¯šhÆÏʾ<"RFÇ°¯ÝTióߎs?:PAe±g]È™#ëª\»ªI]=†g¡Ü\Lȳ`Q¨éŠß}ÏŒãí숌v£½»rH,­œ[:{¡åÂABC›w çÒbDq™mrlr+ŸíW/¨ýÍÁ%—_½ÂÊ×Ëɵµsy}”ç/$»SOï•uƒ½(n†S ¯¦i‘t:)<°ï‡Pgñ•Æ¾Ø"tªú·].ÁL›äŸS̈‡ÉÎZiʈ®ø‰¹.-`Är›‘òæ?.n¬÷MwMò² ‹Ê®—i\wߴЀþh²·ã~ßt Np³¸#´!Nw}¦ª]ÆèÃë΃¯B¸žŽd¥lÓ!¸gÞÀ¾®ŽÀ/hz±[WîÖU6CfR dÓ¤Œ7¹+Û@|!!ŸÞ{¹]gÔì¬@Ñj¸:1s[¤sW7$-È­IÒj„p• \#Ã'ÄXÔa8¨úö=QåíìX1Ùl· ù¯²JÐŲ_àSA´ç |¡4Áúiélâ*—°Ò36/ËæÙ6È‘€ô§¦CˆZf:ÚØ÷Cˆ¿³x„è3Òrô’åæëMµ.kw,H„¢ ÍYAÂexbl²´X‘E»µè4ºoêey7 !%lB²ÌlŸüdPèÛ÷„‚·³# À9b—Bÿ¹Nlƒº0Úo/{bbA¢qÃÔöxFÜ„Fâ“—G‰»'¹k–eò4‹¬¬k`”œ´*d !Ý$áÀ¾|üÅÃ'Œ4al—\¯Ö.ËÐb =éw6 F Tª:+Ê$¢f'FY åa¹iž™aÀŽ†`'œô„6Ó¡ªoßUÞÎŽ@U’h¿ø»ÌVPˆ"ÁbomšÙì>®}€ )/·Ø 9h|?Äæñ¸mW­ÎŠZªòĨݫIR»5ɺ*ì¨ÊŠ›²ò„r’k#rº¹‡}?äú;‹G.×ræ¸eU¹¸9_qÅuNˆs+F =fâcZ­lƒàžW 8.ò%‡Ì9áœRÔNeì{F¾·³#"_À‘ŠÑs +yYa÷?R7±-±¯(¬°ÛA‘+l€ã'Ö:}o+åS…Ý~³M?Ù,·ï¦2÷—Ù¿³¨N[–³a›ËY‚î½ô£V€À]›6#€nÓROؾ}OÀz;‹¬nw’AN aÌ÷æÖU7¶Is¤bË\»¤t´^ã ×´:ë, Ŧ˜8õlF¾ u“µm–#XŠ>›²°b x$ç“ÅüÀ¾_Ìû;‹')È1Dïå +<¼1/ÇTñˆÖm@ g7VXBK±FÓ"K ·+î°T gÖ.C…á9áÌ kéù¶÷eA⥭lÜ.oUn]¹z¿x>à”¸˜pB’ 8êé&$ö=îí섃 Q8Z†^÷¹­=-VG%4„™³nrb,"F°ÿÞ£Òï„ļªÅtŠ}ó~ ðvu&ÀQ¶ÿY„Qk\‰«ã*]ã· ^N{ž Îɽ¯¿'ó~³xjyî/,Ò MÄËWîÖÙ ÿÒðÕÇWaiÂYòžu¿˜öuÒ†ÂÈìè¿Ý?Ž¬³ï°ï![d=žÖ«Ó#OëM[ã×-ð«^Ëòî´Ó‡ªtÍ4tŠµêƒN”ЮŽû»)ÿìƒ: +endstream +endobj +2987 0 obj << +/Type /Page +/Contents 2988 0 R +/Resources 2986 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 2826 0 R +>> endobj +2989 0 obj << +/D [2987 0 R /XYZ -16.307 900.716 null] +>> endobj +2990 0 obj << +/D [2987 0 R /XYZ 56.693 742.577 null] +>> endobj +2991 0 obj << +/D [2987 0 R /XYZ 65.161 743.26 null] +>> endobj +2992 0 obj << +/D [2987 0 R /XYZ 65.161 732.301 null] +>> endobj +2993 0 obj << +/D [2987 0 R /XYZ 65.161 721.342 null] +>> endobj +2994 0 obj << +/D [2987 0 R /XYZ 56.693 676.323 null] +>> endobj +2995 0 obj << +/D [2987 0 R /XYZ 65.161 677.006 null] +>> endobj +2996 0 obj << +/D [2987 0 R /XYZ 65.161 666.047 null] +>> endobj +2997 0 obj << +/D [2987 0 R /XYZ 56.693 621.028 null] +>> endobj +2998 0 obj << +/D [2987 0 R /XYZ 65.161 621.711 null] +>> endobj +2999 0 obj << +/D [2987 0 R /XYZ 65.161 610.752 null] +>> endobj +3000 0 obj << +/D [2987 0 R /XYZ 56.693 565.733 null] +>> endobj +3001 0 obj << +/D [2987 0 R /XYZ 65.161 566.416 null] +>> endobj +3002 0 obj << +/D [2987 0 R /XYZ 56.693 522.638 null] +>> endobj +3003 0 obj << +/D [2987 0 R /XYZ 65.161 522.08 null] +>> endobj +3004 0 obj << +/D [2987 0 R /XYZ 56.693 477.061 null] +>> endobj +3005 0 obj << +/D [2987 0 R /XYZ 65.161 477.744 null] +>> endobj +3006 0 obj << +/D [2987 0 R /XYZ 56.693 433.119 null] +>> endobj +3007 0 obj << +/D [2987 0 R /XYZ 65.161 433.408 null] +>> endobj +3008 0 obj << +/D [2987 0 R /XYZ 56.693 388.388 null] +>> endobj +3009 0 obj << +/D [2987 0 R /XYZ 65.161 389.072 null] +>> endobj +3010 0 obj << +/D [2987 0 R /XYZ 56.693 344.052 null] +>> endobj +3011 0 obj << +/D [2987 0 R /XYZ 65.161 344.736 null] +>> endobj +3012 0 obj << +/D [2987 0 R /XYZ 56.693 299.716 null] +>> endobj +3013 0 obj << +/D [2987 0 R /XYZ 65.161 300.399 null] +>> endobj +3014 0 obj << +/D [2987 0 R /XYZ 56.693 255.38 null] +>> endobj +3015 0 obj << +/D [2987 0 R /XYZ 65.161 256.063 null] +>> endobj +3016 0 obj << +/D [2987 0 R /XYZ 56.693 200.085 null] +>> endobj +3017 0 obj << +/D [2987 0 R /XYZ 65.161 200.768 null] +>> endobj +3018 0 obj << +/D [2987 0 R /XYZ 56.693 155.749 null] +>> endobj +3019 0 obj << +/D [2987 0 R /XYZ 65.161 156.432 null] +>> endobj +3020 0 obj << +/D [2987 0 R /XYZ 56.693 111.412 null] +>> endobj +3021 0 obj << +/D [2987 0 R /XYZ 65.161 112.096 null] +>> endobj +3022 0 obj << +/D [2987 0 R /XYZ 65.161 101.137 null] +>> endobj +2986 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F95 923 0 R /F98 924 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3025 0 obj << +/Length 2324 +/Filter /FlateDecode +>> +stream +xÚÍ\Ïs㶾û¯àôбg*˜ÌL»M7ÝM6“®}èÌn”Ù¬IB%©x¿¾"[”d=‚³‹¦À‡Gà}ßû@ap„Ágo¯Ï.߉0HI*™ ®—dDÆAB9áqpŸÏ?©Re­º˜1žÿ¬;Õö—KÝôÝíðå÷zñVë»þŸÿ\ýtñëõèfF)I…è¥]u¥jo•êZó5ôNƒz—ÜôɘÄ, f‚¤ñп A`œœ_ö”IóàÙ?¯ÏþwFA|Ð@H"SÄ)%2dÁ¢:ûükäð(@¢4 î7-«@Ð0.Ạ®Îþ}#n  Y,Ò͌£”ÐPöJÁ×4Úè1>|žÑ0 Ïi.Xx®¿„!+‹úfxɧC #Â"Âå êz¾¥.K}ÁÄù½ynskq›Õ7ã€ßfFòoTœOÌ•ªû«*ˇ{~œ•Mß úcß4‰H›×ßô½jô²8 &¼6KÒ±åB´E½P“™§$æ„õ×Mo/d{tà•) ¥€ ˜Û÷R¿0&¶ÚmÔÝØCdtHH$“Q…Es—]Ì$ òºUwß]Ì(ƒ¾¶%ë_D¸îåÅ‘æã‡m[ §1 d’$ÆVÌ}‚åE2`$…—nT°|j[ÒößÝí ŽIJåØA/˜šÖ®ò¡’Nå‹& ÓÃSàH’²ôÊn67Añi@ÒÖlŽŠ'”°0ê'õMž«|Ëv%´Ì¤×ê×°YÅàšZPíûÂ5ÎÊ×p¡ëNÕ®ñªU“uØÑš?àÚýëúãOÈ–ª\M)ÏÜÿŠp¸¿ûä9°E¹ÎŠÁŒ]‘!çÎLH;QÈ(C± G`û± øÜu«ƒ‘‚‘¾„ü>é¹jºžý®ºì¡ÓõȃmÎ* hŒ@ŸüÇðSæÿ¶å;òŸ³²üÇÁûÇi?¯ëI*fv§Æþ÷¿ÆÝ>Æ‚Û‡ŸØôRÔm§2$Åè%®Ý6ù¨Æw‡_èÕôùìps¬&\Å1P×5Å|Ýa]H;q!ÇÇ xäÜ0¶å;ÃYY `0N"ÖãBK¤[d5Ò#¢‘Ö [Bœ[”X5×m§«â÷‰ÿ†W%X¦1$‘7µ/é ¤K){LzÄÞ¤çú":ÐeûLº#þüt§; "g@ÈÉéR3Q"rHu>0ª4‘UWmBšÞñWEw;ºý*»S—áÏ&ñsoœ) @u(™?ç/B“,û㸉|7ŽsWÏq‚‚­ ¾ÿ·¬)ôéfFlà|XtáYž]¡ë§KízµÒ 2±CF§÷䛵‹¢ÈõÛÚÒ‰Giò”ŒOnàùn…ƒ¦§½…c]sQ¯Ö:Ž«²Îz¶@9!^3Õ‹bFXD¿Aòà“»óFþ‘ „ÓÔ6¶å;bÃYY<6"um3…8“ÏçeÖ©¯HŠ¾ÅJUËl]"Q÷Ë÷ïÐd®šgdèWR_³j…­ÒUzl©$JÈÓäê˜ÂȈJOLÉùå|]”ùåmW•¬ÑË¥E)¢ ›ˆ±Á¯•Ü5%Ì.›¯Ë ë ¸¸¬Û]ùøÛó6>ÇØV%àÿ®[¤Ø\c“×¼hÔÂ6Âç #"Žý!b[¾#"œ•µ@D"H2ߺ&«Û>ƒ*Ðè@’ž‰,y÷6ôà[ö;Š# *°Æ^´Ò‡öÄü³Êš¬‚¸Ý1%’&þ°±-ßÎÊZ`ì[zöÄ3‰­ÃaååªF/í—E‹.–”¥¾G‡zxCÜ”Y¬ep™ÉÒ×L£x$HLÅKÒ¨lÝÝï}òôA…>.¾?¦O&ŸœÁ¿³ J[‹$ŠsÐLpIg‰SÅʉ|GpVÖ‚XB„ŽÓœ+Ë%b‹ ¯v<" +ªš«¦=mvfçc^ÈCÇ=þõm|1Ugsô6.ÈfïN¼„áwŽ‹—¦&ÇÉ„r’p“‰|G¬;+ku³*ˆ‚I£–ªQfu™¼,ÖxèÝ°ÙÆçÁ‹%‘|MŸÇ’˜¤œ}“¥Cf¶œÊÔŸ×c2&!õ„mñn8pV›ÉþÝgƒ¹&ñó·ï}Ô±tè§ÆØ>ÔzÕb“Mž€^⨲z•ÝXuðåën +Û7'òñ㬬€DJø¸…ãí@°ÛŸ•å§ýÞü|õþ嶰NBùªKbŒ›ó7é·é×ÌŽÉDzôkaJóWêœÈwD¦³²ȤŒˆ1ÃoV‚+‹ªJQ]‘•68¡½€Ó´Z6x +*šªŽ¢ˆ¦ aÒ_Ír"ßÍÈÝ•µ0rÐTˆ¡fù‚Rl¨µ7"9í²ë›ÅBJ‹ööÔ‡šÌ¶F,Œv·{7NH«xèoƒÓD¾£q:+‹7Nš†D¤Ã§ý+•Î…t%«îo*•Y÷ÒõÝ#ë¶Ú¢ñÎòØaßòÇiì€d¯j%ñXLÚïh箪Z˜yœɇz)âÆÒíƒaéÖºÑÀ9”Œ^¶n(ÛJMÆ÷;'Èl±cQ¥£1'Üíh„m6CEH¢(ñžÍäz13•ò\̵¾³Hjh*&O‹R–ÁüíhšÈw¤ge-¸†3’ÐÈv‰ + ö=‡3/Ÿsyà *d{;é»Tú|ûéñŽçIǘ¾Eó$¯ÈRÒ„é/õŸÈwD‰³²(a”$ãoÌ>7?pLÚ«]¯ë¶úÔ¡¶P‰>M›[ýrÆÉwG/mñ~K†« +Ûòñ㬬~ÌÚd:Tj½g{é‘\þº1»6±‰|«+üV£y©*ßëꇋlÍêþ¬-û¬üyvÚ»ã¨H! üU3¶Å»aÂYU<$RˆÓÇß@ÃoüÞÂ`s”)©‡Ôcç—Ò"sþ;}É¥ý{KÊ +endstream +endobj +3024 0 obj << +/Type /Page +/Contents 3025 0 R +/Resources 3023 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 3060 0 R +>> endobj +3026 0 obj << +/D [3024 0 R /XYZ -11.232 900.716 null] +>> endobj +298 0 obj << +/D [3024 0 R /XYZ 56.693 759.068 null] +>> endobj +3027 0 obj << +/D [3024 0 R /XYZ 56.693 738.489 null] +>> endobj +3028 0 obj << +/D [3024 0 R /XYZ 56.693 691.479 null] +>> endobj +3029 0 obj << +/D [3024 0 R /XYZ 65.161 692.163 null] +>> endobj +3030 0 obj << +/D [3024 0 R /XYZ 56.693 644.655 null] +>> endobj +3031 0 obj << +/D [3024 0 R /XYZ 65.161 645.338 null] +>> endobj +3032 0 obj << +/D [3024 0 R /XYZ 65.161 634.379 null] +>> endobj +302 0 obj << +/D [3024 0 R /XYZ 56.693 597.229 null] +>> endobj +3033 0 obj << +/D [3024 0 R /XYZ 56.693 569.675 null] +>> endobj +3034 0 obj << +/D [3024 0 R /XYZ 56.693 523.06 null] +>> endobj +3035 0 obj << +/D [3024 0 R /XYZ 65.161 523.349 null] +>> endobj +3036 0 obj << +/D [3024 0 R /XYZ 65.161 512.39 null] +>> endobj +3037 0 obj << +/D [3024 0 R /XYZ 56.693 465.277 null] +>> endobj +3038 0 obj << +/D [3024 0 R /XYZ 65.161 465.566 null] +>> endobj +3039 0 obj << +/D [3024 0 R /XYZ 56.693 418.453 null] +>> endobj +3040 0 obj << +/D [3024 0 R /XYZ 65.161 418.741 null] +>> endobj +3041 0 obj << +/D [3024 0 R /XYZ 65.161 407.783 null] +>> endobj +3042 0 obj << +/D [3024 0 R /XYZ 65.161 396.824 null] +>> endobj +3043 0 obj << +/D [3024 0 R /XYZ 65.161 385.865 null] +>> endobj +3044 0 obj << +/D [3024 0 R /XYZ 56.693 338.357 null] +>> endobj +3045 0 obj << +/D [3024 0 R /XYZ 65.161 339.04 null] +>> endobj +3046 0 obj << +/D [3024 0 R /XYZ 65.161 328.081 null] +>> endobj +3047 0 obj << +/D [3024 0 R /XYZ 56.693 280.968 null] +>> endobj +3048 0 obj << +/D [3024 0 R /XYZ 65.161 281.257 null] +>> endobj +3049 0 obj << +/D [3024 0 R /XYZ 65.161 270.298 null] +>> endobj +3050 0 obj << +/D [3024 0 R /XYZ 56.693 223.185 null] +>> endobj +3051 0 obj << +/D [3024 0 R /XYZ 65.161 223.474 null] +>> endobj +3052 0 obj << +/D [3024 0 R /XYZ 65.161 212.515 null] +>> endobj +3053 0 obj << +/D [3024 0 R /XYZ 65.161 201.556 null] +>> endobj +3054 0 obj << +/D [3024 0 R /XYZ 65.161 190.597 null] +>> endobj +3055 0 obj << +/D [3024 0 R /XYZ 56.693 143.484 null] +>> endobj +3056 0 obj << +/D [3024 0 R /XYZ 65.161 143.773 null] +>> endobj +3057 0 obj << +/D [3024 0 R /XYZ 65.161 132.814 null] +>> endobj +3058 0 obj << +/D [3024 0 R /XYZ 65.161 121.855 null] +>> endobj +3059 0 obj << +/D [3024 0 R /XYZ 65.161 110.896 null] +>> endobj +3023 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F52 695 0 R /F93 909 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3063 0 obj << +/Length 1750 +/Filter /FlateDecode +>> +stream +xÚí[ÛrÛ6}×WpÚi¦‚q'Ð<5q’isqk»™Ì$™ -AJTIúö÷]Š”mR7ÐÕL«“&ÁÅØsvÏJÂÞ¥‡½×çç£W{iI¥w>ò$EÒ÷aˆùÞùÐûÔ=5‘ RÓëS»ïã̤Åé(NŠ“l\Þ<ŽÏãø[ñÏdz·½/ç¿Á4}B¢°v–ÝE&“¥ùm˜x +f—,ŸKùTy}´_Î/ ôU÷¨8*ó;/Ï;w˜Çñ„DR3Ï×IL½Á¤óé ö†p@\+ïf>râ ‚eÎ#ï¬óG—+++B=æ =_’…q®Á²p +n“ÂŃާ>Áw_Þffš†ñtñ~Wƒ²ÂÂùbÕFqÅ=*º7áô²¸4ÓËÅ:ƒÅÝëÝò‰ c¦ÅÙ$–ײøa3æó‚ÇóÅ‘ïço=ŸÛlò"€Êû¡ƒx1CN¦¶ãù Ñâ<)âUW¥O¹0§pBÂåž~¦TTÆÍýÇÏ}PˆKµpá ³q¯/aq_ãè21ÓŸ{}BáÿwÁ73 +#SØ‚(ËÍå‡×Õø€w">õ¤È/â#¿.0D—EZi/1Þèq@T¬­¾º> endobj +3064 0 obj << +/D [3062 0 R /XYZ -16.307 900.716 null] +>> endobj +306 0 obj << +/D [3062 0 R /XYZ 56.693 759.068 null] +>> endobj +3065 0 obj << +/D [3062 0 R /XYZ 56.693 738.489 null] +>> endobj +3066 0 obj << +/D [3062 0 R /XYZ 56.693 698.306 null] +>> endobj +3067 0 obj << +/D [3062 0 R /XYZ 65.161 698.99 null] +>> endobj +3068 0 obj << +/D [3062 0 R /XYZ 56.693 655.973 null] +>> endobj +3069 0 obj << +/D [3062 0 R /XYZ 65.161 656.261 null] +>> endobj +3070 0 obj << +/D [3062 0 R /XYZ 65.161 645.303 null] +>> endobj +3071 0 obj << +/D [3062 0 R /XYZ 56.693 601.891 null] +>> endobj +3072 0 obj << +/D [3062 0 R /XYZ 65.161 602.574 null] +>> endobj +310 0 obj << +/D [3062 0 R /XYZ 56.693 567.377 null] +>> endobj +3073 0 obj << +/D [3062 0 R /XYZ 56.693 541.189 null] +>> endobj +3074 0 obj << +/D [3062 0 R /XYZ 56.693 501.401 null] +>> endobj +3075 0 obj << +/D [3062 0 R /XYZ 65.161 501.69 null] +>> endobj +3076 0 obj << +/D [3062 0 R /XYZ 65.161 490.731 null] +>> endobj +3077 0 obj << +/D [3062 0 R /XYZ 56.693 447.32 null] +>> endobj +3078 0 obj << +/D [3062 0 R /XYZ 65.161 448.003 null] +>> endobj +3079 0 obj << +/D [3062 0 R /XYZ 65.161 437.044 null] +>> endobj +3080 0 obj << +/D [3062 0 R /XYZ 56.693 394.027 null] +>> endobj +3081 0 obj << +/D [3062 0 R /XYZ 65.161 394.316 null] +>> endobj +3082 0 obj << +/D [3062 0 R /XYZ 56.693 350.904 null] +>> endobj +3083 0 obj << +/D [3062 0 R /XYZ 65.161 351.588 null] +>> endobj +314 0 obj << +/D [3062 0 R /XYZ 56.693 316.39 null] +>> endobj +3084 0 obj << +/D [3062 0 R /XYZ 56.693 290.202 null] +>> endobj +3085 0 obj << +/D [3062 0 R /XYZ 56.693 250.414 null] +>> endobj +3086 0 obj << +/D [3062 0 R /XYZ 65.161 250.703 null] +>> endobj +3087 0 obj << +/D [3062 0 R /XYZ 65.161 239.744 null] +>> endobj +3088 0 obj << +/D [3062 0 R /XYZ 56.693 196.333 null] +>> endobj +3089 0 obj << +/D [3062 0 R /XYZ 65.161 197.016 null] +>> endobj +3090 0 obj << +/D [3062 0 R /XYZ 65.161 186.057 null] +>> endobj +3091 0 obj << +/D [3062 0 R /XYZ 56.693 143.04 null] +>> endobj +3092 0 obj << +/D [3062 0 R /XYZ 65.161 143.329 null] +>> endobj +3093 0 obj << +/D [3062 0 R /XYZ 56.693 99.918 null] +>> endobj +3094 0 obj << +/D [3062 0 R /XYZ 65.161 100.601 null] +>> endobj +3061 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F52 695 0 R /F93 909 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3097 0 obj << +/Length 1639 +/Filter /FlateDecode +>> +stream +xÚÕZKsÛ6¾ëWp¦i¦‚Ïö”L“LÒ¦¶™‰s %Hâ„"’ò#¿¾ ‚´EZN ÓLÓ)p±»Ø7ù «¯GÏg£“WiAE0[‚"!EBÊ`¶>OMb¢ÂL¦”ãñ_Yi +w»ÌrwS®ë‡/²ùó,ûâ~|<{7ù<{ b¦„ ͹ãvVÞ$¦XSö1H'é"´Ò™HRL9Ò²–/(0”j|â.„ +»qôr6ú:"À$à R$0 æ›Ñ§Ï8XÀ3P1­‚«Šrp‚ Ü'ÁÙ蟮-[¡I®+“4Ì™F §<&ºÒ£Ù|šŒ«sO“øâºHÊú€ûækP†BQ³™5¦[fI’M(_ÅéÊ-Í×QºjŒ½Ž&/'„ëƤîn-êµ2»óH%Ô¾“MCRÚ£W²AÃéd +Ôk+’Œ6æY#§ˆÓ¹é8Ÿ "êîs2¨m x"N”½A‡Žë9¥¼EWi]…³:(Ä„jTxíò¸ü6™ +°ô[¥E–þ1™ +?·7å:KOìQÐöƱ„¸³\íåu;b Ή¤pB…”ä6bì:ÇLi¥ƒÜËýiq;¼z_€”HÑpŒ‰¥îËŸ#"H—?Çà°—„ýôHSýÊV óUànNë|j9´Q\D1s~ýÇiÙŠ‚ûœ Á¬×ëØþ1anŠ]âË4ó£+ÊE¶óä/ýèROÙ x'ž‡_G…aUF¼(Wñe‡‡|óÌF—Ã¥A›Ï4è­ìi ¡±¦9fOÿîÒÔÌMQDùgäšM<Ï’,-|³g“]šÅãýÂIUŸºúÀõþÈR÷gÁÂœý]%U4°«P˜?Âp¸tjóï™N½•="hˆ`b©Üúl±èðƒÑù‘-w鼌³Ô·SEž­â뮫½h·QmLir?òË(ÙuX×OÎ1Çõúý½ÞѤÅ.7Omhòžu-ò†É·9XÎ7&Šná{ñåªMSAÎ1ÃõÄ­öˆ$bòv|žú ï’ —Ûmþ=s»·²¹­8ÂJ‚P¨ÚÄY³(ad\uÛ5ñíQ\+D ÌÐþý Ý_Ù#Š(hÊ›÷³S³M¢¹oÒ, ¤Ø<òN²¦¢z¿ežmžø5Á’í&[ì|'ð«¸\ qdQ{ñþ城 µ†Þ½yþñìÝÌ×@p ™nrãPŸB=\Íi±ïYrúªê_q8gHHåüž›&σy7¦O5{Ÿºöwœ<¼ÃÓ\Ø=íg‡ÿÃ!ïªÐ¡ ­,<5³‘AAÀô§–+ÊSj˜·È}³ýøð„#ÐfÀR„‚\®µù÷,F½•=¢©Uó%ave¢/¾ÕÈ{ê(Íuù¤¯¦I\–Ñ䘹ÀN|R–h4€Ù]˜_ï2q„Ð5žB‚)wØ“T{‚Œ +kІà 8TÒ`‰-‚¢áýÏ^•Yb’·¹¥MœVX¬\X˜e·šžcL¯ÝÒn»€yÖQV‹nPX¨ô nñõ˜2ªÇoJGá8Yܦ¸ªí{üüK´rh™ +ÅHr9\“¥Œ#©Õ`M¶Ã¿_“í¯¬“¥LW_uܧÚí6‰}›ì6*çëC_4#RÀUûv=Ê(RXÿÌñ’”æ½ ×\“`/ˆUm+øpXE‡¿ è¯ì€)¢Í÷Ì#ÀŠÊËñ·È‰°Õñ"üg‹]õAîÌ”&‰†ê®øÃä½?ç&-ÆÔtäÃSŒ17bþß7âev@?ÂcüÉz0ÑQJêÁet‘@ÿí|¯8ô_-†ú1ÕúRB~| +endstream +endobj +3096 0 obj << +/Type /Page +/Contents 3097 0 R +/Resources 3095 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 3060 0 R +>> endobj +3098 0 obj << +/D [3096 0 R /XYZ -11.232 900.716 null] +>> endobj +318 0 obj << +/D [3096 0 R /XYZ 56.693 759.068 null] +>> endobj +3099 0 obj << +/D [3096 0 R /XYZ 56.693 738.489 null] +>> endobj +3100 0 obj << +/D [3096 0 R /XYZ 56.693 691.479 null] +>> endobj +3101 0 obj << +/D [3096 0 R /XYZ 65.161 692.163 null] +>> endobj +3102 0 obj << +/D [3096 0 R /XYZ 65.161 681.204 null] +>> endobj +3103 0 obj << +/D [3096 0 R /XYZ 56.693 633.696 null] +>> endobj +3104 0 obj << +/D [3096 0 R /XYZ 65.161 634.379 null] +>> endobj +3105 0 obj << +/D [3096 0 R /XYZ 65.161 612.461 null] +>> endobj +3106 0 obj << +/D [3096 0 R /XYZ 56.693 564.954 null] +>> endobj +3107 0 obj << +/D [3096 0 R /XYZ 65.161 565.637 null] +>> endobj +3108 0 obj << +/D [3096 0 R /XYZ 56.693 518.129 null] +>> endobj +3109 0 obj << +/D [3096 0 R /XYZ 65.161 518.813 null] +>> endobj +322 0 obj << +/D [3096 0 R /XYZ 56.693 480.59 null] +>> endobj +3110 0 obj << +/D [3096 0 R /XYZ 56.693 444.425 null] +>> endobj +326 0 obj << +/D [3096 0 R /XYZ 56.693 401.575 null] +>> endobj +3111 0 obj << +/D [3096 0 R /XYZ 56.693 364.579 null] +>> endobj +330 0 obj << +/D [3096 0 R /XYZ 56.693 334.756 null] +>> endobj +3112 0 obj << +/D [3096 0 R /XYZ 56.693 306.371 null] +>> endobj +3113 0 obj << +/D [3096 0 R /XYZ 56.693 260.034 null] +>> endobj +3114 0 obj << +/D [3096 0 R /XYZ 65.161 260.044 null] +>> endobj +3115 0 obj << +/D [3096 0 R /XYZ 56.693 212.931 null] +>> endobj +3116 0 obj << +/D [3096 0 R /XYZ 65.161 213.22 null] +>> endobj +334 0 obj << +/D [3096 0 R /XYZ 56.693 176.07 null] +>> endobj +3117 0 obj << +/D [3096 0 R /XYZ 56.693 148.516 null] +>> endobj +3095 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F52 695 0 R /F93 909 0 R /F95 923 0 R /F98 924 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3120 0 obj << +/Length 2932 +/Filter /FlateDecode +>> +stream +xÚÍ][—Û¶~ß_Á“>Ä{Nƅɤí©8Nsâ6õnzrŽˆ„$Ö¼¨$´ëí¯/x‘½¤nƒ¹î“´4óÍ|3`±·ò°÷úâåÍÅó8ö" *¼›¥'(†XàÝ$Þ»goU¦d­.¯(ÇÏþ^jUwo—eÕ½ÑëþËïËøeY~èþøíúçËßo~2—¹"EœwÒ®õ}¦êµRºn¾6W'^h®.Xsu_( ¡wÅQô×Ì ÂgÏ»BEóËW7ÿ¹ F<öˆÇó‚ˆ ©çï~Ç^b¾3 + ? +½»vdîq‚e¼ϼë‹^àþN`£bó¶yyý@²¹$ ^àGˆ`ÑHn>çØèé ¢(Œ¼JyË£¢ `!"~°»@'˜4£]åsDË瘠@„ +<¼ÍE4š@ÙV`µòº7o{K4°µ¿µÄ^qŸ ŸõÖó¦LÒeª’ÖŽ óÞ] Ü&làª*·àX•o2©’몪ԃ‘f²ì?8ò“0Ùra {—ê5ld¾ÍtºÉ¬îp}dŠ{‡ †ó¡c(ßÎÊZ ƒ÷ˆúŒèC–ZWéb µöheåVo¶8¶ªše°qYUªÞ”E’+ØO–åØp¿9ŠÍCp3Ÿ¢Ó`þ¥R·i¹­³ûGC„DõÍ‘¡|Gˆ8+k!Nz2aBB4æ; ´f 5Ðä7U¹N©Û§^§cƒk?9>n¨²H&`\æ¹*€s¬å½Åô¤¶q,ð——ck83Ì‘§ Ä;¢ÌUU áqî@& ¨sW_:fÝ¥àÀ!·5P(tþªªF,ÎÜ>ƒZr&\¼„FÏ=ÏpJåÀ¡HjÀ»Uåee±R•%^Eä#FÈl€ÉwC¬»²pÈŠ(@<Š:ÈV&É¿•Å^òíi;Lõ´Ä°(õ¤!ÉDRCÆò©sŸþñË¡pkž;}¿ )Ûo¯^ÀGÆN_Ử¬¡ÉÞb»:t•?@`Î#dž""ˆQêR9òº_žê ="hPF;Û}O)Ìcdï!ò q_AÛ*Õÿ½lgú“’E]ß\^jþ\Ur³Nã}¬3èÜkó¯ÙêB‚Ó–½Î澆òÝ—³²î‹sb¾«Qn2CëB&Œ› í cþÓ º<ö9Ds†O^x¹“U'¸fžr¥‘hõÑðèZU@l†«¢NGéúÎœ‡“or5>©+¡ÍGÁÄ®D&yYØøJéŒ~ÄÀ0 l>?2”ïèGœ•µð#ÄG˜tOôUÑÔn€^d¥ +UIB TåÈ•’G ª„U%ëÎÄÃ:˜ŸLTšN‹¤ñ4óH¡ÅÀ~)üÙèT¨Ù)À?º¶o ‘?0D?0‚í¼Ê{ìãne, + + Í »1W@¯bè½A¡?èGòÝ@ï®,ô!G8žÀ +îîæÆHˤ’‡aK>f»±CùŽ7ÖYY¸7åEØ|Ñ'•KU©"V£¼®×ºhq§˜¶¨WJêQ,9¿0MúpcäPÎÅ &B"fã\´±µ€GIç~g%„"6žÁf"?Þ¼ù¹ïxÈÛ°wE©!K}åâf×}°,³¬¼¤ÜPiÃŽÛâµ,V»~…µ¼¤øÙí%áÏú_,”*ºw¹LúÏtù¹©¡óÂìÁµIè£ ;?¼Öyv@C*ÉnP\îdשÁ¨gÂÛÜŠî}ÕuZ áݸ¢„˜˜7…›˜©¶¡¯qlµñG$š‘­úQÓ¥1[Éwó¯îÊÂý«1“ õëE’ì9˜sY짇 b€ñxUõ3ù8œ3ÚôF2Wcáþê¸ôMUÆûiû j\B©‹¶ciô›¯žŸIÞ¡%n¹¨u%cíÒ;rn~!ÌÇ6FòÑବBŠø® øh:~"9d>Îô%-ö³°ç'êNV&&¡ËÛ=š¾C82Anü@ Š§¬ +ùæ5 ü1±65¬CeMº®ó6Unç|§z½‹¹›´ ¶ßvßÔ÷E¹±¾¾o®Ç¢ƒ/3Éæ|½VCñŽÎÆUU _ããVÑö!×K`¡ÈŒM2pÅZ&Ú±ãi»­àM…Ð,ΓÖÂkèà^[ÊyDÂÝ¢Ù,v(ßÑd•µ°Y™Ì¿O”–Û"¶{W0u±m¼ž:Ë¿¦ 4ºÖZÂkàxÙ—{¡ ßÒy+&¼%3³YñP¾£;+kaÅ$D!ÿÔ¿\ÍO—`Gv?±©$ªŽU‘HðâÔçËâÞ +¹Ð¾½B˾¦ì½HÆõgé¸éñ<°ž¯h=’ïˆge-p`˜^õ¹?4N'‹Æïï?†£È³Ì^dui ¶›\$ó •/Ô^=äèèO¥ià],ãznu,bHøó•FòÝ€á®,,2×d}àˆÛ³Íé€4q7e.?@—= Ž?S²šš©Áã飗\Î#%lÄ|HÊwDŠ³²H ›•ý¶†z˦9 ¼ô> G»Õ»u +Í>¬3S¨ö™–´Þ†ÀšÈ÷!Œä;š¸³²&p„IŸ.ÜÊ š7Æë4K %8BÎ?¢€=iëk6%ÁLEJ¹\f…Iæã–ŸÎV˜dM«ÞŒ«‚#ùŽ6שּׁ…Í3†(ݵÂÞªJO¾Ez#¡ Ðd¶Ùñx _´ýNDœžY ’vÛN2u™Iñº¬fÞ0srÄØB0_®<’ïˆge-A)¢¢Ï•]Kw“lc^¿ ”ºø·Šµíf㛵,>Llº×X—»Ö*-Vef[äg8lãúl¦>”ïhêÎÊZ˜:!ˆáÞûƒm·R›²ÚÛ(kÃw°áYôIe©É^|ñ˜EÙ·å¢ÙÈР¼×6ýde]ËêÞ‚èÐ 0¯3®ÀRÑlŸÍÔ‡âÝ,ÝYU¸¡S!ŽûØq\n'Ï¥íÍL½µº¶½~’ÞN›¶¶RMF—kÆD…a­ìI÷ RŸ!ÿƒJÊ8b!ŸÑ‡Pùt¾ØH¾£qVÖÂPs«‰ÿ˜¥2µ’YQêºnðD‡E¹§w Y+‹ÆʽÖÍSy£«U5íFñXfñ6ÛçôçqG˜õ|u³‘|GX8+k "P°;¥oò5Ø`î$t9~ê¹JÝ®ÓZ—ðø·§Qçs¯_ë}Î=m϶ÜlöO‘4m׶H´¥c³!i(ßIÎÊZ ÉdFAÔŸÉ–7»?,šÜ[£²xzË4S‡é¿:Ó£¥2ë}ÅÐÙÎøZ!ŸåqWV&†r²LYÜÆý=€S}º ?v°"AÜŸï·‘|7X¹+ ‡‰|²Ïç¸ÍÁÀà©œƒíygòζ¾$>à«UX‚¦~$ ä)S?"¢/\ ¸Í=fËúˆµ,n6ï1”ïè=œ•µðíŽÓ¾óá׶ Çêí¦)•N¡®ÿõÚþ”‡| í>‚îR–¥ž‰:rrÍcÓú¼ï_º­Ü斿͆¡¡|G 9+k!Ÿ"úÇ6Ÿ>1‚ÞH½†noÍ;h”65§ROØš³tý©0궨Agm¦‰;?¢a<ß‚ÈP¼ UµÀ#ƈFÖpLÊxÛtÞYœ]4ý¶°d±^?²#(áà™5»$ÔGmA§ëæ<4Þª©7ôý¨²Ë)k¡h©Ð\hŠwC“«ªG±Fˆ±ÝBÐI[º§šw¥]NZC¿µá_‡«†_×{a泯O×vÀ;œj >5z›³TÖ ûd¾šçeá–±Zá¦94ÊŸ!¶ïý##,¢Çü›ÿRó'3 +endstream +endobj +3119 0 obj << +/Type /Page +/Contents 3120 0 R +/Resources 3118 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 3060 0 R +>> endobj +3121 0 obj << +/D [3119 0 R /XYZ -16.307 900.716 null] +>> endobj +3122 0 obj << +/D [3119 0 R /XYZ 56.693 759.068 null] +>> endobj +3123 0 obj << +/D [3119 0 R /XYZ 65.161 752.393 null] +>> endobj +3124 0 obj << +/D [3119 0 R /XYZ 65.161 741.435 null] +>> endobj +3125 0 obj << +/D [3119 0 R /XYZ 65.161 730.476 null] +>> endobj +3126 0 obj << +/D [3119 0 R /XYZ 65.161 719.517 null] +>> endobj +3127 0 obj << +/D [3119 0 R /XYZ 65.161 708.558 null] +>> endobj +3128 0 obj << +/D [3119 0 R /XYZ 56.693 666.08 null] +>> endobj +3129 0 obj << +/D [3119 0 R /XYZ 65.161 666.764 null] +>> endobj +3130 0 obj << +/D [3119 0 R /XYZ 56.693 625.528 null] +>> endobj +3131 0 obj << +/D [3119 0 R /XYZ 65.161 624.969 null] +>> endobj +3132 0 obj << +/D [3119 0 R /XYZ 65.161 603.051 null] +>> endobj +338 0 obj << +/D [3119 0 R /XYZ 56.693 568.3 null] +>> endobj +3133 0 obj << +/D [3119 0 R /XYZ 56.693 542.423 null] +>> endobj +3134 0 obj << +/D [3119 0 R /XYZ 56.693 503.797 null] +>> endobj +3135 0 obj << +/D [3119 0 R /XYZ 65.161 504.48 null] +>> endobj +3136 0 obj << +/D [3119 0 R /XYZ 65.161 493.521 null] +>> endobj +3137 0 obj << +/D [3119 0 R /XYZ 56.693 451.043 null] +>> endobj +3138 0 obj << +/D [3119 0 R /XYZ 65.161 451.727 null] +>> endobj +3139 0 obj << +/D [3119 0 R /XYZ 65.161 440.768 null] +>> endobj +3140 0 obj << +/D [3119 0 R /XYZ 65.161 429.809 null] +>> endobj +3141 0 obj << +/D [3119 0 R /XYZ 65.161 418.85 null] +>> endobj +3142 0 obj << +/D [3119 0 R /XYZ 65.161 407.891 null] +>> endobj +3143 0 obj << +/D [3119 0 R /XYZ 65.161 396.932 null] +>> endobj +3144 0 obj << +/D [3119 0 R /XYZ 65.161 385.973 null] +>> endobj +3145 0 obj << +/D [3119 0 R /XYZ 56.693 343.89 null] +>> endobj +3146 0 obj << +/D [3119 0 R /XYZ 65.161 344.179 null] +>> endobj +3147 0 obj << +/D [3119 0 R /XYZ 65.161 333.22 null] +>> endobj +3148 0 obj << +/D [3119 0 R /XYZ 65.161 322.261 null] +>> endobj +3149 0 obj << +/D [3119 0 R /XYZ 56.693 279.784 null] +>> endobj +3150 0 obj << +/D [3119 0 R /XYZ 65.161 280.467 null] +>> endobj +3151 0 obj << +/D [3119 0 R /XYZ 56.693 237.989 null] +>> endobj +3152 0 obj << +/D [3119 0 R /XYZ 65.161 238.673 null] +>> endobj +3153 0 obj << +/D [3119 0 R /XYZ 65.161 227.714 null] +>> endobj +3154 0 obj << +/D [3119 0 R /XYZ 65.161 216.755 null] +>> endobj +3155 0 obj << +/D [3119 0 R /XYZ 65.161 205.796 null] +>> endobj +3156 0 obj << +/D [3119 0 R /XYZ 56.693 163.318 null] +>> endobj +3157 0 obj << +/D [3119 0 R /XYZ 65.161 164.002 null] +>> endobj +3158 0 obj << +/D [3119 0 R /XYZ 65.161 153.043 null] +>> endobj +3159 0 obj << +/D [3119 0 R /XYZ 56.693 110.565 null] +>> endobj +3160 0 obj << +/D [3119 0 R /XYZ 65.161 111.249 null] +>> endobj +3161 0 obj << +/D [3119 0 R /XYZ 65.161 100.29 null] +>> endobj +3118 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F95 923 0 R /F98 924 0 R /F52 695 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3164 0 obj << +/Length 1408 +/Filter /FlateDecode +>> +stream +xÚíZMsÛ6½ëWà(ÍT¾A´§fš&ÍÄi¬Cg’h–T“„JRvòï»)[”e Å4ÎäbÁàr±Ø}»K’ "èåèùlôìwIÁF1…f—H1¬4Š(Ç\£Y‚ÞßÚÔÆ¥L™$ã?]eËzxéŠzP-›‹¿¹ùsç®êþ>3ù0{ ËL)ÅFÊZÛyõ)µåÒÚªô—auŠ"X]q¿ºPk¡©ÄF7ë+ +u4~VÿP¦ü£³Ñ¿# +ê ¢H*¬ GÚP¬CólôîA \°0ºÙJfHR‚W0NÑùè¯i!‚.± Êmý=±ÜÛØ`&P+…ù>9–›Í¿*ÇrE1Û#Y}”d_Çž ¯='Æß~[»¸ï¡­Ýí§×r¤Zfà8ȇ+Púû¨þƆ(f8 Ìü`Û'ĶL¨»Ãô÷soc;€9bPÑ¿O²eZAé_•l7˜qvK¶ÑQ²}ë6yâóïÛfÙâ3a¿ Üx2šþ„){Ðìye¯mM­Ïã4Ý1ëEêæW%K.®<·þR ìM&UÒLn?`¹+²8]uj{©OXB‡ãbªàØ(†+_úû•¯þƆ—/ª)æ ZÎ\²IãBXîPpZVô¹›À¯6eå²UyôÝq(¹Q©¡ÎñáÐÑÖ߽퀽€¦ÝOj]Î:Á¯Å«ø"µ'~×P³:¾§R`b†x¹zïóSáŸ-›/ùúô?Ò¼‹c +endstream +endobj +3163 0 obj << +/Type /Page +/Contents 3164 0 R +/Resources 3162 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 3060 0 R +>> endobj +3165 0 obj << +/D [3163 0 R /XYZ -11.232 900.716 null] +>> endobj +342 0 obj << +/D [3163 0 R /XYZ 56.693 759.068 null] +>> endobj +3166 0 obj << +/D [3163 0 R /XYZ 56.693 738.489 null] +>> endobj +3167 0 obj << +/D [3163 0 R /XYZ 56.693 691.874 null] +>> endobj +3168 0 obj << +/D [3163 0 R /XYZ 65.161 692.163 null] +>> endobj +3169 0 obj << +/D [3163 0 R /XYZ 65.161 681.204 null] +>> endobj +3170 0 obj << +/D [3163 0 R /XYZ 65.161 670.245 null] +>> endobj +3171 0 obj << +/D [3163 0 R /XYZ 65.161 659.286 null] +>> endobj +346 0 obj << +/D [3163 0 R /XYZ 56.693 622.135 null] +>> endobj +3172 0 obj << +/D [3163 0 R /XYZ 56.693 594.582 null] +>> endobj +3173 0 obj << +/D [3163 0 R /XYZ 56.693 547.572 null] +>> endobj +3174 0 obj << +/D [3163 0 R /XYZ 65.161 548.256 null] +>> endobj +3175 0 obj << +/D [3163 0 R /XYZ 65.161 537.297 null] +>> endobj +350 0 obj << +/D [3163 0 R /XYZ 56.693 500.147 null] +>> endobj +3176 0 obj << +/D [3163 0 R /XYZ 56.693 472.593 null] +>> endobj +3177 0 obj << +/D [3163 0 R /XYZ 56.693 425.583 null] +>> endobj +3178 0 obj << +/D [3163 0 R /XYZ 65.161 426.267 null] +>> endobj +3179 0 obj << +/D [3163 0 R /XYZ 65.161 415.308 null] +>> endobj +354 0 obj << +/D [3163 0 R /XYZ 56.693 378.158 null] +>> endobj +3180 0 obj << +/D [3163 0 R /XYZ 56.693 350.604 null] +>> endobj +3181 0 obj << +/D [3163 0 R /XYZ 56.693 303.595 null] +>> endobj +3182 0 obj << +/D [3163 0 R /XYZ 65.161 304.278 null] +>> endobj +3183 0 obj << +/D [3163 0 R /XYZ 65.161 293.319 null] +>> endobj +358 0 obj << +/D [3163 0 R /XYZ 56.693 256.169 null] +>> endobj +3184 0 obj << +/D [3163 0 R /XYZ 56.693 228.615 null] +>> endobj +3185 0 obj << +/D [3163 0 R /XYZ 56.693 181.606 null] +>> endobj +3186 0 obj << +/D [3163 0 R /XYZ 65.161 182.289 null] +>> endobj +3187 0 obj << +/D [3163 0 R /XYZ 65.161 171.33 null] +>> endobj +3162 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F52 695 0 R /F93 909 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3191 0 obj << +/Length 2717 +/Filter /FlateDecode +>> +stream +xÚÍ]sÛ6òÝ¿‚Ó‡i&Bð»÷”ºi’6i|¶;w½¤sQÄš"t$h[ùõ· ~™¶)û|s/‚»‹ýÞ±³q°óîä‡Ë“×?ù؉QÐÀ¹\;EAèDÄEnè\®œ/³sžqVòù‚úxö«¼Ôõ(ô@nÍÃEòƒWzò‹ó?.4 BPìûÚ…W”ºˆ¸>Š"OCýJ©ßÛWÓZ«§hˆD–„s±ä…œ/àî…d)òïç Baº/DÂWUÁŒö°+å%ºÝe6(¯þÞõÕ”œ„Ô "@ uQë>åóDÅNÁuW?zÐÆWï"C{‘E µû¹ð}D2„ïc0n +†®í(¦ñØ`±qôàÜSO²–ðˆ€—ÐH±§w¡‰)¸aå´i¾åE*•IMÚÅù~`Ó³…Y¸û +˜Û†ƒ%Ó€¯ ±›¸S;– A÷"–òDñBk,×^ÝûRMڲ꣙`bJ¹@^ÌúðŸiÏ&ö !…&š°išq¤¡¬Ÿh)¹7r¾š¶‚Ѥ}K>Õ8÷r*æcìry˜ÈL¾fUvŸ•M°ï9aæžÿ»é›ÉU YÏñÑöGvÍu¬=c7eje*3ŽÖ"—hÍvivPqö¯zg"v{‘sx”±%Ïd +Yµ‚P I†]kwK¶T ýàhi¿CŽÅȇ¡!è+Æh ¸=šÈx— âÑŒñ#¹/çáúðŸéážMì2?/$¶ˆØT+Žˆ€rzà8ćö(6O6b"¿œ!CÕ°ñ;–ì‡>r±á"qGkS¡©ºžg“òñêCIÉ·ÕGZöRw=±Ækf`Ù…d¹4e‡ªC*S¢€ÒÛº&1›Y¾2ƒÕª” +#%N™nòTIøkΤŠoÝèûïòÃÁ™:…ůüF¿›‰„eé7&S‘©ë>Ó+Õ~Åä X˜u[ŒÃ~-û÷y„uAæª#ó•Ê›9x+¡'9¯­'=ª”¸H0ûÈäuÊr%70Þ–¡[Ä+5÷Ú¶Üs¢5NƒÎðÛ~ãÉÖ¼|ºMs^š Ò¬f;_™çŸD¾ñj´bçŲ~V³êƒdY;kxúÛUÁÒÜœcÀ~ô ca˜ÂøÃÅç 6ue’ÊŽ¤JÕ>0º¢k{Ët™¥bS°ýViäA¯ŠJî+‰&Ë5°'–ƒJš`Úqp4 m€ê > Mß]Û‹cäÒ°W|sÉ‹¦p·õz‹Ä§]ûFZ +Å‘‘rªú ¶Ûl  ²ÖÜådMÛc Èóݾ4£Z‰¤ÚA˜ïÈ£'„}1'Ñ rÔ²lŒ<ÍKYTIÇ¿bŸ}€_r¬½é~‰GÀa­yÁu?¦Cº`In™Ô£r›îf‚뙫'z"[`ÖûÁ$Ö\aÒ¸BM§ŽWŽý¢ð=øí?Ë2=8û0,¶ –΃¨ô aæÝÊUKU=ì«Ù˜‘jM72Q¥fßû–m×íxkläoä«|GÖ¸Ñ岯Ænº™¡¢²²j•ÖBÔZÝ¥Ãó‘O­V^f \„|ŸØM7¢X•é7þR-ä&*Ùíñî÷¹Ê.kö+c}X« +µê[ Ž¿Õ1>ÐÚDÃõk€e•b}·A×ñ*Æ¡wwð€;îæô€‘Em³¯Ë›aIY¤:ÆCdyXS\p¨Êi·kiÑŽå‹=Ûð®O~šéG*þå +V©g­^ëy+3õ°Ú«äÅn‘e)ÍB_”‘ ¾c[ÛÆ6L|ƒ +´¾Ü³„[JŠt¿o`)'÷gU²˜c?4Þ÷—Ÿ>ªÜÍÄS5øé3ü»q×pÍŽ¬z´ʇ¢ù‡,ä ,CLvj3µ¤±ÒçS³µµÊ¾Úùr£¦þÛñUÊÚŽÒÝÛNiö—1ŃrËm]šzþ0ÌX…œæ sÅ¿·,ÙŽ`€ˆ§ò=‹aÇ6u¶ï,<8‰çöC9‡‰ OŃy5QHI×Å= <ÀJ¢ÔÂ¥Þl”Õª|À±]§+~L+zv'(^2Ž!ˆIHçTîˆglIˆQÐZþ£â¤AƒF…q…A mŒó@¿ºÍ^4äÆ<ñ²€d¿ÖTx¢,DŸ¨ž~— ÉXÝäüA)ª"áß©ÝÄX ¦³Ú4`¡Ö{nkfÁâ®uªWj­–J°a½T§ìì`à•zØpU¶(Fl| ªýW dë$`D¤. +ã†y¯Ç ¡°1–1¼:qãG`´ÙàZ©9¦´Â^ë÷ ÃÍ+Úñ²jÕ¤ÑuʶðöFsd¸ ¨ƒxÚ8 ÷¾Ú2cÚ(Ë«äV%*y*"ž«.ÑjŒ^Œp›JwrÚ7µ¨ ?ûC‘n¶r +?Fat7Y/Í™jÿKg€^ëffÀ”y8$hª,Ñ7x&[¾Ùê6e7*ŽTàÀ±ØðÊAÉGC}åiâ›ß.ß>¿“9FÀ¼ yCsôÓÏg¿Ÿx÷þrLŸ1Déšáêc9¡(ðƒ~ÎðÄ’)Ñ´¸G*ŒÓ§å PfoûX`eÇUƒ!-wzª¯³I83¼nö•Èìo €:݃us5ªväúë­fʆÔ#R·y èä%ðèt-KK…ÜݧÜÖBbPn¹r‚µÃt`â߶ÿJòö›(sìã9Hq?åÛ¹ÿ È +endstream +endobj +3190 0 obj << +/Type /Page +/Contents 3191 0 R +/Resources 3189 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 3060 0 R +/Annots [ 3188 0 R ] +>> endobj +3188 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 1] +/Rect [359.467 429.64 460.541 440.544] +/Subtype/Link/A<> +>> endobj +3192 0 obj << +/D [3190 0 R /XYZ -16.307 900.716 null] +>> endobj +362 0 obj << +/D [3190 0 R /XYZ 56.693 759.068 null] +>> endobj +3193 0 obj << +/D [3190 0 R /XYZ 56.693 738.489 null] +>> endobj +3194 0 obj << +/D [3190 0 R /XYZ 56.693 691.511 null] +>> endobj +3195 0 obj << +/D [3190 0 R /XYZ 65.161 692.194 null] +>> endobj +3196 0 obj << +/D [3190 0 R /XYZ 65.161 681.235 null] +>> endobj +3197 0 obj << +/D [3190 0 R /XYZ 56.693 633.746 null] +>> endobj +3198 0 obj << +/D [3190 0 R /XYZ 65.161 634.43 null] +>> endobj +366 0 obj << +/D [3190 0 R /XYZ 56.693 596.216 null] +>> endobj +3199 0 obj << +/D [3190 0 R /XYZ 56.693 560.058 null] +>> endobj +370 0 obj << +/D [3190 0 R /XYZ 56.693 193.564 null] +>> endobj +3201 0 obj << +/D [3190 0 R /XYZ 56.693 165.185 null] +>> endobj +3202 0 obj << +/D [3190 0 R /XYZ 56.693 118.601 null] +>> endobj +3203 0 obj << +/D [3190 0 R /XYZ 65.161 118.89 null] +>> endobj +3189 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F52 695 0 R /F93 909 0 R /F95 923 0 R /F57 739 0 R /F102 977 0 R /F105 3200 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3206 0 obj << +/Length 2185 +/Filter /FlateDecode +>> +stream +xÚ½\[oã¶~ϯú” —¤HŠjŸv»mN÷Rà$)P`·8`dÚV£[%9—þúŽ,yO$ÇÎÈ´òË25’ó}s!ê-<ê]œ¼»>yó‹¤^HBÅ•w=÷'*ð4ó‰x×3ïËé¥M¬©ìÙ9—ôô·¼¶U{9ÏËö¢^v?¾Ï£wy~Û~ùãêÓٟנ›sÆH(e+íª~Llµ´¶®šŸ¡wæiè]ùMïB$àÚ;—$ ºþ•>}Ó~0®šO~¾>ùû„xê1O*¢Bß BFå^”ž|ù“z3ø  "ÔÞýºeêIF ÷\'ÞÕÉOh7Tl.›‹'’a>XÀ½@„„QÕHnîK +z +åqêÐ+­7ß) +Û¯ Á¦ƒV0kZ»Ê—„)6”/)#Ò¨žN³"! ìZ`¹ðÚ‹ËÎa ׶ Ö–Ø).~g=ïÊ|µXÖkØ-Ëûr®(=]¸vuŽk73µÅµ¼ë%®¥Ízí`ˆ¤»±ýÀéCšà¤Ærä¶L+\Ó|Žìº¶‘{Ç´~æ-NôÜÞãVug äÀRSÞÚR <ÜÄ–&«SÇù®õíÁ¢Çeßì_jÆÙñ¹MúúdœHßo¡ö•sÙÓ}OMðmˆË[s¶úǼ²·?œ3_’<2‰}Uä›í¾%*„$¾š}ùŽ¨pVv*„&Jv¨ø ëƒÚ5>²[ù¹*,Àg°Œp*JpˆëƒWE Àø$J³1¢ ›/¦C a ÁtÈwC»²#«ŽD/ðqô¼ÌS\Ë “Ýä Ò_]WfaLv»\­’WêW’ 'WüøÑ™]£èdz'¼5.b“Ê'RL‰, ©–Ó!«/ßYÎÊâ‘%¥$:èu¹Jlud“åej’øtx·Hòª2å#6ý…T «ôµ‘ÌQ/-RƒYåeˆ#“aÇ„]dÜ1‹çs[¼f`fò‰™ àˆ~;ùJm‹v¡~Ò( 0Úµ9Çr†`¤á·É Ý—ïigeÖ|i} ².Ü´&B’“-Vfavh>D¹þë:4¦e‡äVŸãhilò•JZ§ð—uAb×Ës«Êÿ}2õ3®*Çx8 +i`8aö% žhÊÒSÁa ß îÊâ=œ€8Uò?å),1ž…— +´KDÇšŸãd+ûÊ}¾¿Èù1OMŸk=¦aꘂÙa¾ØP,§›m“'·£ÝEa{÷¥rF$ {B¹£„Ž*‹_Ùò&Æú»y<ŒQFp”!¯ÊQB…ÀüÓd¯™ $dH40ÆB-¦‹±òÈYÙ ñ<ÛTʼnÐÜSÔ¶<î~M”gµ}@†v¥‘v¾›G²Uz3Ðwÿ&›h]Çõ°ö²Í ÈnäëâûàÚ¦Á{\Á;ƒÈ›M‰wʉâ½/ßïÎÊŽÀ;•0ÕÞM‹2¿Ãw¶¬†[~G8Ø—ñͪÎËC]§†`¬ê5¡ä +8šÞ›U×ÿ´Xú`MVmaiu;K¾ +åþtXòaÈTM‡¥|7,¹+‹Ç’Q‹¿)þ¿-Š$ÆB©0õ õí~`2äTûh×>¡Át†Ï›© dس|Hl%ô¹5ð8ŽƒQH“Ì´\1ÀDé\Î;è\oŽWÍó.Oï›jÜúÖ&ÃYYš3tÆäi÷ĵY{•šYwÂúo§¶ÚZŽÿ¤o¦ µAb´KG_ú>i¶‘^ÅYdÇÂÀX9¡íuÙ&#ý9çàv¸]hDNU076©ÈC…%.8Ü6œ÷Š0NFùnÄá®,ž8¸â»€?­­IÐv– ËÕØcMK7UÕY®5«í=Ú=ÁñÚ0Ñ:W+lQ°^šÚi|/#d}J‰MgÀ}ùŽìªìns>¾ÞÔp$ݽÖ÷K›aÒ!­(¬)‘e.¬AtEž¡7{g“­êYÃ×{‹Qquä}3ŸÛ]I¼y¤(óÂâÛFvÄIáalþ2~TSqšÎ—ä;Ú·³²#ì;h¶ýZóÎËEfR{\‡d°›"1öŒ61ƒLkyxY”)Ÿhùº>G€›ãS•8š<.«ËÇ1^ÇgD06¡Ûá”9!,ûòaé¬ìXr¦zó–å<ΰ~'É <®êbU¿Ò˜òý[›™©ÍˆŠÈ€,ñ/•Ø´H†ÇŠAÌX ЈПÎDûòMÔYÙ&Ê8 tW‰FGUŽu0‘©ìao vw¿ÛmCϽ–·¿ÛŸïØĦ`ÛÕsí¯ì( Ë(Îæ96,[Íç#Ó1[G[ήñß#-½ÉxþÿÄÑ ½/ÞÍÎUaæ ¨ÞóAà@ÃX¬*ƒ>‰†®aÅY”¬fHe¿ütÜ<%ÊËÒVE9?–¦‹áU÷7˜GÜt)ÿt[µ}ñnpV€½yCç}ŠÄu|‡\«‹U<³ãéòúýÅsu`l讑zŠ}Ý­ÿ*!(¡*<äŸJü ‘õ[¤ +endstream +endobj +3205 0 obj << +/Type /Page +/Contents 3206 0 R +/Resources 3204 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 3239 0 R +>> endobj +3207 0 obj << +/D [3205 0 R /XYZ -11.232 900.716 null] +>> endobj +3208 0 obj << +/D [3205 0 R /XYZ 56.693 759.068 null] +>> endobj +3209 0 obj << +/D [3205 0 R /XYZ 65.161 752.393 null] +>> endobj +3210 0 obj << +/D [3205 0 R /XYZ 56.693 705.992 null] +>> endobj +3211 0 obj << +/D [3205 0 R /XYZ 65.161 706.003 null] +>> endobj +3212 0 obj << +/D [3205 0 R /XYZ 56.693 658.929 null] +>> endobj +3213 0 obj << +/D [3205 0 R /XYZ 65.161 659.613 null] +>> endobj +3214 0 obj << +/D [3205 0 R /XYZ 56.693 612.539 null] +>> endobj +3215 0 obj << +/D [3205 0 R /XYZ 65.161 613.222 null] +>> endobj +3216 0 obj << +/D [3205 0 R /XYZ 56.693 566.543 null] +>> endobj +3217 0 obj << +/D [3205 0 R /XYZ 65.161 566.832 null] +>> endobj +3218 0 obj << +/D [3205 0 R /XYZ 56.693 509.001 null] +>> endobj +3219 0 obj << +/D [3205 0 R /XYZ 65.161 509.482 null] +>> endobj +3220 0 obj << +/D [3205 0 R /XYZ 56.693 462.409 null] +>> endobj +3221 0 obj << +/D [3205 0 R /XYZ 65.161 463.092 null] +>> endobj +3222 0 obj << +/D [3205 0 R /XYZ 56.693 416.018 null] +>> endobj +3223 0 obj << +/D [3205 0 R /XYZ 65.161 416.702 null] +>> endobj +3224 0 obj << +/D [3205 0 R /XYZ 56.693 370.3 null] +>> endobj +3225 0 obj << +/D [3205 0 R /XYZ 65.161 370.311 null] +>> endobj +374 0 obj << +/D [3205 0 R /XYZ 56.693 333.368 null] +>> endobj +3226 0 obj << +/D [3205 0 R /XYZ 56.693 305.959 null] +>> endobj +3227 0 obj << +/D [3205 0 R /XYZ 56.693 260.067 null] +>> endobj +3228 0 obj << +/D [3205 0 R /XYZ 65.161 260.356 null] +>> endobj +3229 0 obj << +/D [3205 0 R /XYZ 65.161 249.397 null] +>> endobj +3230 0 obj << +/D [3205 0 R /XYZ 65.161 238.438 null] +>> endobj +3231 0 obj << +/D [3205 0 R /XYZ 56.693 191.759 null] +>> endobj +3232 0 obj << +/D [3205 0 R /XYZ 65.161 192.048 null] +>> endobj +3233 0 obj << +/D [3205 0 R /XYZ 65.161 181.089 null] +>> endobj +3234 0 obj << +/D [3205 0 R /XYZ 56.693 134.015 null] +>> endobj +3235 0 obj << +/D [3205 0 R /XYZ 65.161 134.698 null] +>> endobj +3236 0 obj << +/D [3205 0 R /XYZ 65.161 123.74 null] +>> endobj +3237 0 obj << +/D [3205 0 R /XYZ 65.161 112.781 null] +>> endobj +3238 0 obj << +/D [3205 0 R /XYZ 65.161 101.822 null] +>> endobj +3204 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F95 923 0 R /F98 924 0 R /F52 695 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3242 0 obj << +/Length 2051 +/Filter /FlateDecode +>> +stream +xÚÍ\[oã6~ϯÐv_’EÃáT/ ´ØE»Ûíä¡À´´LÇDdÉ•ä&é¯ß#KNÆò8CšfЗ±"SÈó+Ç8»ÍpöÝÅ·7oÞ +œå(—Tf7‹LR$U¦ CLe7óìýå϶´¦µW×TàËÿÔm‡ËEÝ Ýrüò_uñm]ß üòßn¾‡i® A¹ڻíÒÚ®í¿†ÙI¦avÉúÙ¹THQ] ”«q~©PéË7á²ðâß7¿_€ÇÉ„D2g™Ê ’˜fÅêâýo8›Ãw â¹Îî·#W™ Q&áºÌÞ]üï+®È›çˆ`9Èô+¥b+Åî±7oaÈö=xÿŒF\jøbXÀzf›îêZb ¯o»ºúâêšPø³s¬zhË Ö©ì?¾ÛCØ¢h¦XŽì ¼a_`X/.3Šrg;ÒÚÇïN@5Jï&€I?:_ "É_`‚,•Ï n·D9ÍÏ ì°¹Í†‹ŸÇýßÛËàŒ -Çýÿf>ßÛþCœìýv¿»hmѹºÚoƇ^ºjQ ß*‘Ÿ8íf½®A'àÈWû¨@–8BûŽ|§fÀ%zí~tÅÒØòW,p·‚ÉÈÀ•ë–'óDBæLÆ?©‹ñdü›àÇñ/^XþI-¥ô‰v~ºÊÜû4¯EÝ4Àk¿ÁKSÍKWÝú®~ãÀ¶øìj¿qàèW¶³êÒLÞÿÓìQ (™N¹÷ñ#•;ZØåVÑ>ê•»¨«Î¸ÊoÒùŠ¹m [Í·BÌ6ž|¨<õ1@ØbéÊyc«S=›”a¢Òiæ>~¤f&v\ ébÀ ~äbD @Si3™›¥ó$F»¬7¥§»šy*übÓ@ÞÕxG¡®òv˜õ©öÿ¨ +ñ“ÖsQMõ¸Ovšc$‡t ™{ôc–P  +÷<ðÀŒz˜ HÅpž§cÉ>~$K¢… ` §°ºcöþјâÙ0ÛÝoª¹¯ÚÆ“2ÆwຩgfV>úòeå‰[û3v]šÂ— ÷þKк•+Mªéf“„)É|¤žÇŠ æŒ Nõ æa!þ4Í€´ò¨|kº”§åRG ×ùj ¼–9ÈÛBb4 + /ÈkV$fS~JõÁl×ý9Ô¾·¦jŸ«~kPq9C\ˆtI<ÏÓ%eü8~Ç ëOp¡RzÜüë¹[¸åÝnïWÇùö´ÏÏêþÅñÑ`É2˜¾ì(}óĹélç&žêE?Ü[©•oˆ×Ù¸¬Îž· q_7w¾J@Ö.XºÜe‚©ÍÑÂh³âHÓ1w1M½ñ°~1¥©|+·§w!5<]i™öëªDþ¡uŒ")F‚÷¯)¹ †—zûß±Qõ¡ÀÙ5e(Wt— Ú]S¬,ë+*.ïû``{«€Øàv×4[š+Š/ÿ¸"âr|bfóÛ«•™÷€OµíÜ ìóÜDs¤”ÜyšÁÿOä#qHTñ®¢´Cn]UØIÛ4˜"<\7C³í¯Ä5ÉsD)—†©)=o¬¨W뺂$!À+rÐf–“t^‘Kp»Œ%³#ü8;/¬¿á0§¢m°µiÌÊv¶iÏë F‚øpâúZûûÆöLñßt®tÝc„§ 0”\b 6Í(˜3QgŽ‚ûþEã!³S\'d<D®ž3Ád|´°Œ§áÝiŒ€Î[XLèÝz;ßË4ÖäÐýðÖžÜDçX"бìÁGjY¬¨J¸„ŒÕ”ŸŒoÃÖ·YºpgVÃÃXw{ûïD*!L^øà…ä0½&¿©ï“Íþ˜„¿3¤ù«–c˜m&"ÑaW•®².‰AÜL¸Lç’˜$ˆèt]É ~œ±ˆÖßZ0 ùâ‰]ÒÊtÅòÌfc 1p]Ç8¯‰XxŽkŸjžêè˜ÐˆäúU “ªó槥k»3bŒJ$†S¨‰ÌHðt!Ä?Ò,D `ˆ†x…üEΈµkSL[B ×ןúRˆ)÷ÙyjÀ˜Æ™Yi{…žNñùËS¬í‰aÑ g>ru ¡0—co;C(q’P;ÓŸ5xêýí0x¿7v†jŒ´ÈÓÙÚ·%“Y™=ô8+¨¿…¡ŠA3nüvÃ<Ýþí½›ÛCS@>Aí&¬)}îlÚ(±_(œ­›LEç¼Oñt]ãf›ÃrØõKŹ“CÚ+ yÕœ…rþÜE<[ñ,8W¡L J¶‘)刊tmä ~¤Áˆ6ÀdPЮlî|O´ºÎôÿoÄ“HÕfŽÅ7àqžu‡™›•®¾mÌzù`>*Ìù·¯…övï”D嫦}»‹ð3§Ûz¸·³/¯ž›"è)ÁûäB#¡æDi$Iº¼b‚Gáxaý)L4A9&M¯ÊÞ{Ÿ7\8ÿÓc¡Í4ï„Ålæοëe|Ü×ͼužÜñ"J I_µãECŽÑ¢ú30Çàêy ûMSÔ{ý¹ótžþ¹>€ ¦æˆÅýÀ‘σWàa™ŸòÛ +ÿîþ"ç +endstream +endobj +3241 0 obj << +/Type /Page +/Contents 3242 0 R +/Resources 3240 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 3239 0 R +>> endobj +3243 0 obj << +/D [3241 0 R /XYZ -16.307 900.716 null] +>> endobj +3244 0 obj << +/D [3241 0 R /XYZ 56.693 742.141 null] +>> endobj +3245 0 obj << +/D [3241 0 R /XYZ 65.161 742.824 null] +>> endobj +3246 0 obj << +/D [3241 0 R /XYZ 56.693 696.892 null] +>> endobj +3247 0 obj << +/D [3241 0 R /XYZ 65.161 697.181 null] +>> endobj +3248 0 obj << +/D [3241 0 R /XYZ 65.161 686.222 null] +>> endobj +3249 0 obj << +/D [3241 0 R /XYZ 65.161 675.263 null] +>> endobj +3250 0 obj << +/D [3241 0 R /XYZ 65.161 664.304 null] +>> endobj +3251 0 obj << +/D [3241 0 R /XYZ 65.161 653.345 null] +>> endobj +3252 0 obj << +/D [3241 0 R /XYZ 65.161 642.387 null] +>> endobj +3253 0 obj << +/D [3241 0 R /XYZ 56.693 596.06 null] +>> endobj +3254 0 obj << +/D [3241 0 R /XYZ 65.161 596.743 null] +>> endobj +3255 0 obj << +/D [3241 0 R /XYZ 65.161 585.784 null] +>> endobj +378 0 obj << +/D [3241 0 R /XYZ 56.693 549.197 null] +>> endobj +3256 0 obj << +/D [3241 0 R /XYZ 56.693 522.037 null] +>> endobj +3257 0 obj << +/D [3241 0 R /XYZ 56.693 476.996 null] +>> endobj +3258 0 obj << +/D [3241 0 R /XYZ 65.161 477.679 null] +>> endobj +3259 0 obj << +/D [3241 0 R /XYZ 56.693 432.594 null] +>> endobj +3260 0 obj << +/D [3241 0 R /XYZ 65.161 432.036 null] +>> endobj +3261 0 obj << +/D [3241 0 R /XYZ 65.161 421.077 null] +>> endobj +3262 0 obj << +/D [3241 0 R /XYZ 56.693 375.144 null] +>> endobj +3263 0 obj << +/D [3241 0 R /XYZ 65.161 375.433 null] +>> endobj +3264 0 obj << +/D [3241 0 R /XYZ 56.693 329.107 null] +>> endobj +3265 0 obj << +/D [3241 0 R /XYZ 65.161 329.79 null] +>> endobj +3266 0 obj << +/D [3241 0 R /XYZ 56.693 283.463 null] +>> endobj +3267 0 obj << +/D [3241 0 R /XYZ 65.161 284.147 null] +>> endobj +3268 0 obj << +/D [3241 0 R /XYZ 56.693 239.061 null] +>> endobj +3269 0 obj << +/D [3241 0 R /XYZ 65.161 238.503 null] +>> endobj +3270 0 obj << +/D [3241 0 R /XYZ 56.693 192.176 null] +>> endobj +3271 0 obj << +/D [3241 0 R /XYZ 65.161 192.86 null] +>> endobj +3272 0 obj << +/D [3241 0 R /XYZ 56.693 146.533 null] +>> endobj +3273 0 obj << +/D [3241 0 R /XYZ 65.161 147.216 null] +>> endobj +3274 0 obj << +/D [3241 0 R /XYZ 56.693 100.889 null] +>> endobj +3275 0 obj << +/D [3241 0 R /XYZ 65.161 101.573 null] +>> endobj +3240 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F52 695 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3278 0 obj << +/Length 2216 +/Filter /FlateDecode +>> +stream +xÚÍ\]oã¶}ϯú´û.¿%ö¢@?¶[t{o‹ÛM lû Ët,Dµ’'ÿþŽ,;Ëk‡Ec;2=IgÎœ!GÆÑm„£_®~¼¹zóNàH!%©Œn‘¤HÆQBbqt3>¾úS:môëk*ð«ßM«›þíÂÔý›v¹ûð­É~4æ®ÿçþýúŸ›÷0Í5!H Ñ[ûÐ>ºYjÝ6ÝÇ0;‰˜]²nv.cÓ$ºHÅ»ùeãäÕ›þ…PÙ}ñê盫OWÌãˆDB"©X+‚$¦Q¶ºúøŽæð8€¸J¢Ívä*#Ê$¼/¢Wÿ½Â»+O^‘½m®Á²÷éoJÅÖ‹ý×Þ¼ƒ!ÛóàÝwÄeôÐÌtݾ¾–Ã駭)¿}}M(ü›®[Óš =4Å¿úUZ§+ô°Ñ³ƒºlûùàJvSv/¿^¸s$¦QÌÀu¡ºkЮ(—E*QQ­£Åó“>°öå£ÇÐ'ã½Q‚·úÙˆHòܶÀÅpm¬?‚D +Œø9¹5VßFý›?w¨8¸Ã{‡E4IúýÃ|~Šc;ÑÇí=mÖUeêÖnpgV?¥å<= +>¡Ýãï¼ÊK‡Á€R;/Zc{Zvãnþøé„›/‡•ê +'^O³æ(fÓ’DfV•):š°âRŠpJx`ß3¢½uˆhPŠ˯"‰äåâ¨ÔyóŠã´ ë»À@Êø¢A 2%cdàÛô>Ÿ÷1üS—2ë}o›ñí²ÄÏp‚(¨©ŠAî„Óû~!ìï¬CƒñNþ'½ÓÓ>Âði­›ãˆð_`MËf£kK«3½LïõÄ]Kµ¢Ü¤–‹ai3vAéÅ£Š#ø»$³Ð ³Fü>¯ïÒžY~3¾ÛK‘7­K7• %2`7å¡p¸n}OVñvÖžU(`€<Û9´m*[åM“—·>zgö觖Um2=_×®m”C°‹®öP +‚ÅãÑVÿ,Ÿ¹y¶{37Y×9ô„ççn€þ+×yc¤Â.MâŸó¤ G ×0°ï×ÞÎ:Ä5!(Ù·$;ÄuÉW@Ö„Ñí+/훲ÌÔsël×ýð Þr¹!oÓ£&¹ÓWº{È|lùA@xŠ8œJØ÷ý¿³¸•œìêÜßõÆn·uZ-ÇÞ¼Ó¨HK[ñk Ýu]Ú†³-gÖ©Ù>Š4OÞ…¬±¿­q|ƧÏwýo@"?£' + ©ö©÷oÌ÷£’g£bÄ!Vwc®mC;!@^Xèú:Œ›óŸ‡ûᜧÂÝÖêSà9•ç +êP „!ö Ü…w…ò7¶W=HŠpŠì{ª·³ö„Jb8ÄwÅámÍ™¹uÍÝXkøûÜZÇØÚû´LíF¾½7uzgîSÇþ”}.›‚X".Ü1Üu…B~XWõáQðÉm¢q¸}ϸövÖ!®‡ ;îtNOt¸îÿ:÷ +Û®C.Œi¿.ÏÇu9Þ± 49xžû4s`¬¦¥¡¼,òÒ¥sŠDÜ°£p¸&‚Có~üâíª=½(ŒˆrmZY˜Š¸<-öÐ겱߳°^®Xér-Mnûk4imÝ˶Â*¬+(ýéêÌsw/‚?aHi8?úY;ŽîÛ:]ÕîÿSø +endstream +endobj +3277 0 obj << +/Type /Page +/Contents 3278 0 R +/Resources 3276 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 3239 0 R +>> endobj +3279 0 obj << +/D [3277 0 R /XYZ -11.232 900.716 null] +>> endobj +3280 0 obj << +/D [3277 0 R /XYZ 56.693 742.564 null] +>> endobj +3281 0 obj << +/D [3277 0 R /XYZ 65.161 743.247 null] +>> endobj +3282 0 obj << +/D [3277 0 R /XYZ 56.693 698.188 null] +>> endobj +3283 0 obj << +/D [3277 0 R /XYZ 65.161 698.871 null] +>> endobj +3284 0 obj << +/D [3277 0 R /XYZ 56.693 653.812 null] +>> endobj +3285 0 obj << +/D [3277 0 R /XYZ 65.161 654.496 null] +>> endobj +3286 0 obj << +/D [3277 0 R /XYZ 65.161 643.537 null] +>> endobj +3287 0 obj << +/D [3277 0 R /XYZ 65.161 632.578 null] +>> endobj +3288 0 obj << +/D [3277 0 R /XYZ 65.161 621.619 null] +>> endobj +3289 0 obj << +/D [3277 0 R /XYZ 56.693 576.56 null] +>> endobj +3290 0 obj << +/D [3277 0 R /XYZ 65.161 577.243 null] +>> endobj +3291 0 obj << +/D [3277 0 R /XYZ 65.161 566.284 null] +>> endobj +3292 0 obj << +/D [3277 0 R /XYZ 56.693 521.225 null] +>> endobj +3293 0 obj << +/D [3277 0 R /XYZ 65.161 521.909 null] +>> endobj +3294 0 obj << +/D [3277 0 R /XYZ 65.161 510.95 null] +>> endobj +3295 0 obj << +/D [3277 0 R /XYZ 56.693 465.891 null] +>> endobj +3296 0 obj << +/D [3277 0 R /XYZ 65.161 466.574 null] +>> endobj +3297 0 obj << +/D [3277 0 R /XYZ 65.161 455.615 null] +>> endobj +3298 0 obj << +/D [3277 0 R /XYZ 56.693 410.556 null] +>> endobj +3299 0 obj << +/D [3277 0 R /XYZ 65.161 411.24 null] +>> endobj +3300 0 obj << +/D [3277 0 R /XYZ 65.161 400.281 null] +>> endobj +3301 0 obj << +/D [3277 0 R /XYZ 56.693 355.222 null] +>> endobj +3302 0 obj << +/D [3277 0 R /XYZ 65.161 355.905 null] +>> endobj +3303 0 obj << +/D [3277 0 R /XYZ 56.693 310.846 null] +>> endobj +3304 0 obj << +/D [3277 0 R /XYZ 65.161 311.529 null] +>> endobj +3305 0 obj << +/D [3277 0 R /XYZ 56.693 267.712 null] +>> endobj +3306 0 obj << +/D [3277 0 R /XYZ 65.161 267.154 null] +>> endobj +3307 0 obj << +/D [3277 0 R /XYZ 56.693 222.095 null] +>> endobj +3308 0 obj << +/D [3277 0 R /XYZ 65.161 222.778 null] +>> endobj +3309 0 obj << +/D [3277 0 R /XYZ 65.161 211.819 null] +>> endobj +3310 0 obj << +/D [3277 0 R /XYZ 65.161 189.901 null] +>> endobj +3311 0 obj << +/D [3277 0 R /XYZ 56.693 144.842 null] +>> endobj +3312 0 obj << +/D [3277 0 R /XYZ 65.161 145.526 null] +>> endobj +3313 0 obj << +/D [3277 0 R /XYZ 56.693 100.467 null] +>> endobj +3314 0 obj << +/D [3277 0 R /XYZ 65.161 101.15 null] +>> endobj +3276 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F95 923 0 R /F98 924 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3317 0 obj << +/Length 2664 +/Filter /FlateDecode +>> +stream +xÚÝ][“Û¶~ß_ÁIº;Ó…q'™Lâ¦M‰;®½3錓ˆ‚VŒ)R%©•7¿¾à­^R·AP¦}±´xxH|ß¹á€ÆÁc€ƒïo^?ܼú›ÀAŒbIeð°$E2 " ƒ‡yðñö½Î´ªôÝ=øöE­«îë¢(»/õ²ÿñ»"y]Ÿº?þõáÇ»_~0—¹'ÅBtÒ>ÔÏ™®–Z×Uó³¹: "suÉš«s¢FÁ½@qØ__ÆF`ݾê>•Í‰7}¸ù÷ 1âq@!‘ŒYÆILƒduóñÌÍoFÄã(ض#W Q&Í÷,øpóÏÜ? Ó^ž6¡?å;ÒÈYY …ÆñÞ©–úqcÈ1uHÍ#ÿêðô¶6S׺„MÞJ%Ë4×åóA_!¨Ñ•ÌÜFäbt|îÆ1½Ó–œ ,ø9î'5ŽXg?cë•ù—tŽæÃ*­—ƒRóU‘£ÿÒäô`F›˜zô:#˜?ºŒå;ÒÅYY ºP°ÑnfÿÒX@ç`ÆÎ3°9†ú…:­M 4ñ ¹‰Í§ÜüÓAú·§lU™OoîôY‰Úì¸ÊÓg¥«uQÖjÑvÎ;Ílðû÷X¾#¸•µ7¡Ær‘ÝuºÆGñJ›‰¬¦3òõñ™üIC¹ÒfS¯7õ…ú!pœÇi¼v‘gÏ°‘éÂ2"q„(ÞX0‘ïÆwe-X`4C¦Ù‚Û"Ô­õç:S3 xÓ +Ê€%î+ñ›.4Ô%¤‹3óÓF8>©7*ƒ’!)L–Nì€Qˆ¨ð—kOä;RÂYY8%DŒ‘à}ô«,B“)h¿9î +ƒŸr›VÖᇆfè;4úã.ûp:¿—'QP ³ì€¹;MŸP"û˱'òéãªìa²„1QŸQ7ißa„½+õSZlªìÙà·ºÔ6(®Á +Ézµ®Ÿ/ z?ÎÈÝÉŸ&ˆAc‘?‚Œå;ÄYY ÿ"#ÔÖ[Êl0(‚‡9àXÿws–P{žnµu( U7ŸŒÇ×,¶ #ÎÄ…×z>—zaQcÔ(256A"$ˆ¿2ÄD¾£5pVÖÂP‚"Ü—!¾Ï¡%¶ÚøšLÕúÂå°7—]¾P¥VSJ¾:ìnšá•®ÏË r…ð˜èå;âÌYY œ¹ïýwª¬/[›]¤Ÿ/ŒÄÙæqßÒ̈ … ¬³zÇ#Î+€ù°úeñIïÄY+‚C™#ƒ”kú"$½°/j½òZ=êÆ!õ­I±Z¹ÎëÇæéSZ¥ÝÚP¨ÒI[kµpe<4÷Åþ\—…þV‹ÆâÝ Œ³ªpûÂ%G˜DÖ~Ì蚘¤OE +íbج³4»ÑtTu»ÔÀøQçºT»kPG2²ÉͬêºLg›ZWû¬éŸ;šmç1 +CâücùŽèwVÖþ‚!läöjéÞ§}Ü[-‹µ^l²ÝòÈ—üå` 8+*(‹ŽøU‚…#A¢0bWõN”¡HÆžÚL`²RÙ ß³Nm¼a(ÆÒ£×ÁF÷WoœÈwdž³²ÌÃÑ!~Ûtw^¶¨1Ÿ-6y’¥0b~÷è"ŠòП™æµÎ§Ž÷¨whOû6« ŽîÖçErf>p’j,&Oþ +‹ùnLpWÎ Dþ°h [xãç,YÍmèP›Ë³ÈÜb|Õb3Ó†#áÉÅteHmžóbmáa˜Q‘P%:Æù+ÑMä;òÊYY ^q3Ó‚xô0VŒ‚;°[m¼Z“õZ«òÂyÝR=ï§Ýîq¾Ï‘qD±¿2ãD¾#Wœ•µà + û2#tbw}:hy¯«º(ÁÑÈlØ¿l*š§¥2üL%Ÿ.ˉuê°5ÁÆ3‚(¹j1’á1L=ùâ}EIç R46*3µG…ÈãšúX¼›ÕqVnthŒ‘”öµÇ\[m[=߬ªK•Ô´Ì‹ýëÖǶ;©Yv0Ñ; ÓP"N©?å;âÈYY …1 +q_az³¸J»*`@~ùÞ¼ââ½ûp¸Q*Ó+CuÍ-º?“^»Y‚péomg"ß‘ÎÊZCF(ìÓâyZ™çùg»†Õ¹;½Ú¬×¥®*ó+8Ø_¢=‘ïˆ2ge-P&L¼÷‰ök¨Mœ¼ªXé:]A×@ž‹ l`©á}ø^ú­· +l%¡Þ4¸Åh©Î§Ùip†÷—BOä;²ÀYY p‰"6¤ÐËiSschØÔpŒ„¸jÚFIˆ$÷•¶%ËMþé¾yÑÆ‹¼í±TëešØt‰Pó$dè1S#±D¡¿{,Þ ÜΪZ`c„qŸ©ýn’€îPÐ -ŒÀíÿY9×UR¦ëÝý¡îýp+=OU1ûUCcŸ4¯j•'Úvc‰„“GèŽå;b×YY8xI#Ìûì0Í¡%ºJ7åh‰¾×&Ý[¤ÙÁ¬ÈyEpSùë^ª,77™«Õ™ñþi^„EØ_r8‘ïÈ ge-xFh(šø/†Jåɪ.¡ÝÐ=co¾³|िOtpîDgó3Uí¡ìi*J†"î/ƒžÈw¤¢³²T”!"¬Ï Á¡xºv¡«h_¢!¸›²oœô½‘zo‹î¥yï N×æO³HPEþ2ð‰|G9+kÁ¢¦Õ&^Šqnôÿg—! +¾þC`µw†pbPãïåùŽÐvVÖÚ\ Jø—ª‚×?³Lg—†Y©ð*P÷†Wè[÷ÀMZÀ$΢ýæ»K§þ™~TY³JœXJÌü(ýuOä;òÀYY 4=QÃë•TJ\13Ó`Ç1¿¬Ì÷Õ€x´Îvv0¡]µÐzÇòÑ묬z)C4î;½wú÷OG¾pûØ,¬mnšCaTêEš· •çWå^ÎñT¾¶3ÜU½|,ßäÎÊZ€œPĆ÷éŸgyÞVjc¦°DøªklC„ËktFŽ$ïû߸±z2>ç?ø.Øºß +endstream +endobj +3316 0 obj << +/Type /Page +/Contents 3317 0 R +/Resources 3315 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 3239 0 R +>> endobj +3318 0 obj << +/D [3316 0 R /XYZ -16.307 900.716 null] +>> endobj +382 0 obj << +/D [3316 0 R /XYZ 56.693 759.068 null] +>> endobj +3319 0 obj << +/D [3316 0 R /XYZ 56.693 738.489 null] +>> endobj +3320 0 obj << +/D [3316 0 R /XYZ 56.693 691.479 null] +>> endobj +3321 0 obj << +/D [3316 0 R /XYZ 65.161 692.163 null] +>> endobj +3322 0 obj << +/D [3316 0 R /XYZ 65.161 681.204 null] +>> endobj +3323 0 obj << +/D [3316 0 R /XYZ 56.693 634.09 null] +>> endobj +3324 0 obj << +/D [3316 0 R /XYZ 65.161 634.379 null] +>> endobj +3325 0 obj << +/D [3316 0 R /XYZ 65.161 623.42 null] +>> endobj +3326 0 obj << +/D [3316 0 R /XYZ 65.161 612.461 null] +>> endobj +3327 0 obj << +/D [3316 0 R /XYZ 65.161 601.503 null] +>> endobj +3328 0 obj << +/D [3316 0 R /XYZ 65.161 590.544 null] +>> endobj +3329 0 obj << +/D [3316 0 R /XYZ 65.161 579.585 null] +>> endobj +3330 0 obj << +/D [3316 0 R /XYZ 56.693 533.319 null] +>> endobj +3331 0 obj << +/D [3316 0 R /XYZ 65.161 532.76 null] +>> endobj +3332 0 obj << +/D [3316 0 R /XYZ 65.161 521.801 null] +>> endobj +3333 0 obj << +/D [3316 0 R /XYZ 56.693 474.294 null] +>> endobj +3334 0 obj << +/D [3316 0 R /XYZ 65.161 474.977 null] +>> endobj +3335 0 obj << +/D [3316 0 R /XYZ 65.161 464.018 null] +>> endobj +3336 0 obj << +/D [3316 0 R /XYZ 56.693 416.51 null] +>> endobj +3337 0 obj << +/D [3316 0 R /XYZ 65.161 417.194 null] +>> endobj +3338 0 obj << +/D [3316 0 R /XYZ 65.161 406.235 null] +>> endobj +3339 0 obj << +/D [3316 0 R /XYZ 56.693 358.727 null] +>> endobj +3340 0 obj << +/D [3316 0 R /XYZ 65.161 359.41 null] +>> endobj +3341 0 obj << +/D [3316 0 R /XYZ 65.161 348.451 null] +>> endobj +3342 0 obj << +/D [3316 0 R /XYZ 56.693 300.944 null] +>> endobj +3343 0 obj << +/D [3316 0 R /XYZ 65.161 301.627 null] +>> endobj +3344 0 obj << +/D [3316 0 R /XYZ 65.161 290.668 null] +>> endobj +3345 0 obj << +/D [3316 0 R /XYZ 65.161 279.709 null] +>> endobj +3346 0 obj << +/D [3316 0 R /XYZ 65.161 268.75 null] +>> endobj +3347 0 obj << +/D [3316 0 R /XYZ 65.161 257.791 null] +>> endobj +3348 0 obj << +/D [3316 0 R /XYZ 56.693 210.284 null] +>> endobj +3349 0 obj << +/D [3316 0 R /XYZ 65.161 210.967 null] +>> endobj +3350 0 obj << +/D [3316 0 R /XYZ 65.161 200.008 null] +>> endobj +3351 0 obj << +/D [3316 0 R /XYZ 65.161 189.049 null] +>> endobj +3352 0 obj << +/D [3316 0 R /XYZ 65.161 178.09 null] +>> endobj +3353 0 obj << +/D [3316 0 R /XYZ 65.161 167.131 null] +>> endobj +3354 0 obj << +/D [3316 0 R /XYZ 65.161 156.173 null] +>> endobj +3355 0 obj << +/D [3316 0 R /XYZ 65.161 145.214 null] +>> endobj +3356 0 obj << +/D [3316 0 R /XYZ 65.161 134.255 null] +>> endobj +3357 0 obj << +/D [3316 0 R /XYZ 65.161 123.296 null] +>> endobj +3315 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F52 695 0 R /F93 909 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3360 0 obj << +/Length 2383 +/Filter /FlateDecode +>> +stream +xÚí\[ã¶~Ÿ_¡: Ô ¯™^€¦›&Ý$º3@ ìæcѶ:ºx%yn¿>”%gÆòxæHÝvÑ—¯LQçûÎ…‡ÂÁ2ÀÁwgß\ž}õW…THÃàr„…Q C, +.ãàÃù{“]™73*ðùß‹ÚTíÇEQ¶êU÷åÛbþMQ\·ÿù×Åo~¾|g§™‚”­´‹ú>5Õʘºj¾¶³“@ÚÙCÖÌÎÃET3TÔÍa+0’ç_µ ›ž}{yöéŒXñ8 Q¨X)‚BLƒyvöágÄö;«âJ·Û‘Y F”…ös\œýã w+­ŠÍÇæÏwO$Ûõ  "®Áa#¹¹.°Õ“‡EJª 4Áâ¨(èL"£Ý­`ÒŒv•/ I_¾ÀE¡Íðt™C¤¨š@Ù­Àr´Þw–háÖøÖ;Å9AœuÖóç86ñöñ—|˜…ŸW›õº(kØຎ³¦øýåO?õÜÄë?hp¸.‹µ›ªJò%l|±Ø·÷”÷ ¹³o!"¥?ûÞ—ïhßÎÊ°of * +[û.Êe®3 i ÁhØ°ù*IãqOÿèÌ›zÕ³V{“¨½0ŽˆR.œ{äï¡ÛÛ9Æl0kÆGJÅžî½(·†ÛÁ?%ó•6éG,pÙÉ›í +\dI½úúÍŒÐí +oòëÙ¼ˆ º«Rà*„ªñžþO(í7ŠxfO¾0Ý•…3”Ù€£}¼ÿ\™fó_.MnJ]›#fÿÌïÎS³Ôi^ÔÉ|Я’ü¦SdŠ¼ÈûóÏŽÏÿ`J ÛÔy<Ð]„F˜QV¹/ßÑ*•`•‘̉j­òËM5Ä`’xÀàžwyyð"I ÜqAÍQ§Uqõ×~wtx«òbR_{ ðG°;{ Mýíí‘xšB!1ÐÜ—ïMge@Ó.³·Ð¬Á#É«Úè©#/Ë/sp8ßÏkºË_¼à|÷‡ã£w>1>4»?}ñ2ò®t5€ZF'r¯›=·9/áþÌ~_¾£Ù;+;Àì…MÐ1í˜M½Þ“îÆiLœòÖ+]»1ðë®àß› +8Gß;§hî_Žâwç$r`˜M¢…ð˜}ùŽ€qVv`¸Íøy—d£·@0#AØ]ŸÍ^FÔnnzÄ@â¾ûÕm¶ /hÙ®­IMfò>d_Ç Q¡?<ìËwă³²ð@â’ïâ&(ƒ¯ôra5¶R†(ŽNYƒ²£ˆ5¨·úƦxÛ[þKi9¥ÜžîJ³PrªùRú«9‰ÈÞõceor(ôä»AÁ]Y8„´æ&»¯ïuC#$Bw:ÌpdäÙƸªi£s›­«©ýØ%6³C–©ò ßOƒ&g6`¹¡NêÔŒ¥@E“S2  §dÀ4©êjrn)Ã#2†$öWßìÉwd@ge0  ıTǶ{;ƒ~¡Ô°>(0¼ÈvÑoe±Éc(Ó–´w£ËD_¥¦1æ©ÙÑf™®kèî:8mlôÖ9蛢Wȶ–$žXg1Evœðsܶš(ùdT„¸Åa7f¥J‘äþjŸ=ùŽ°uV[),\C;—ͺ”6K*&Ë+hU) Eiƒ¥¤6#õnUgésÄÕìç®aÛŸ6Iy ÄaVÄÀv—úEn|®š÷:FˆBRðS \Eˆ 9eÀðÉZ®L= fà2B!æþ‚ÙÛåþ*j=ùnìã®,K$üÕöÅ;BÞUÕœ$I—£}> $øI+ãL2„¹ÓŸ®7eR?´^ó± A‘ïÜf’§I>¤'Ùø—*êÏo²¦•ŽùÃPO¾ˆÜ•…ûMÖ„Ü”ìžé5°¶:Ojݤ•Ð>ðMveJh-Ú{•\¥I±,õzu? ·øYe:‘¿ùckк™Å„BŒŸ´8ÅXˆ$Sœz_د»ƒ$µ¾¯!»Ö6ðEw·æê÷í÷í…_C€×‚F+Å*FšŠ°¿L¶'ßÂÎÊ€pfÓÇb•‡ãŒà6±ÜÜ‚Ï.’ÜM¥ëºL®6ÍYaàA±819´jÞe\%£·¾aû‡fý³U…‚L˾c‹ ATb$Uä,hØpýíÉw# weádA›H‹†ÿdq?pV4CG7ÝÑf¡ÅIQÇ9âb̹Ïw65Ñ-¨~(*s½ƒÜ2-ªJ—÷CPÆ8ò‰1ʬD={ò1æ¬ìŒ5¡íZNÞoR3õAü¼é­H“°ûÜ°9·Îªô•±jpÇÜ=´`í­³´dÀ•µzOÐçŒvâd±°)G>’AO¶[D E‘ô×EÖ“ïigeáÅ&jãyÜU—ž¯ „ùr£—£ÃEŠŠ;¥ã"2BTEÓ†‹»÷dY‘? ÷__Ð]Ìtž,LU÷Ç ð{$ŠàSQb-PH}=ùn0qWîùˆdeDwïyZèy]€Ë>à~êaq²"†»`èvJV€;ªS`‹@sh Ü š­S]½©×$š¢ ¿RKO¾£};+;À¾…½´k$ßšá€]‡–ÿ*e¼éÚv Æ˜éêäñEZÝØ8¬-à ùPÙ0 ý½­'ßEÎÊ@ßßW”1´‘ j:&‡7‰_™º†Îh’LJnªºÈ’}Ð{7 ü#Ìæ¬Ø_«'ßÑ€œ•`@ÌΩº"Ö…1SÇ–¨Ïãº6½Ÿ>¨]6‚›šàýX> J=ÐÁÁ {9F8TcÞ×û úßk +endstream +endobj +3359 0 obj << +/Type /Page +/Contents 3360 0 R +/Resources 3358 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 3239 0 R +>> endobj +3361 0 obj << +/D [3359 0 R /XYZ -11.232 900.716 null] +>> endobj +3362 0 obj << +/D [3359 0 R /XYZ 56.693 759.068 null] +>> endobj +3363 0 obj << +/D [3359 0 R /XYZ 65.161 752.393 null] +>> endobj +3364 0 obj << +/D [3359 0 R /XYZ 65.161 741.435 null] +>> endobj +3365 0 obj << +/D [3359 0 R /XYZ 56.693 694.948 null] +>> endobj +3366 0 obj << +/D [3359 0 R /XYZ 65.161 695.237 null] +>> endobj +3367 0 obj << +/D [3359 0 R /XYZ 65.161 684.278 null] +>> endobj +3368 0 obj << +/D [3359 0 R /XYZ 65.161 673.319 null] +>> endobj +3369 0 obj << +/D [3359 0 R /XYZ 65.161 662.361 null] +>> endobj +3370 0 obj << +/D [3359 0 R /XYZ 65.161 651.402 null] +>> endobj +3371 0 obj << +/D [3359 0 R /XYZ 65.161 640.443 null] +>> endobj +3372 0 obj << +/D [3359 0 R /XYZ 56.693 594.804 null] +>> endobj +3373 0 obj << +/D [3359 0 R /XYZ 65.161 594.245 null] +>> endobj +3374 0 obj << +/D [3359 0 R /XYZ 56.693 548.607 null] +>> endobj +3375 0 obj << +/D [3359 0 R /XYZ 65.161 548.048 null] +>> endobj +3376 0 obj << +/D [3359 0 R /XYZ 56.693 490.209 null] +>> endobj +3377 0 obj << +/D [3359 0 R /XYZ 65.161 490.892 null] +>> endobj +3378 0 obj << +/D [3359 0 R /XYZ 56.693 434.294 null] +>> endobj +3379 0 obj << +/D [3359 0 R /XYZ 65.161 433.736 null] +>> endobj +3380 0 obj << +/D [3359 0 R /XYZ 56.693 377.138 null] +>> endobj +3381 0 obj << +/D [3359 0 R /XYZ 65.161 376.579 null] +>> endobj +3382 0 obj << +/D [3359 0 R /XYZ 56.693 329.699 null] +>> endobj +3383 0 obj << +/D [3359 0 R /XYZ 65.161 330.382 null] +>> endobj +3384 0 obj << +/D [3359 0 R /XYZ 56.693 283.502 null] +>> endobj +3385 0 obj << +/D [3359 0 R /XYZ 65.161 284.185 null] +>> endobj +3386 0 obj << +/D [3359 0 R /XYZ 56.693 237.304 null] +>> endobj +3387 0 obj << +/D [3359 0 R /XYZ 65.161 237.988 null] +>> endobj +3388 0 obj << +/D [3359 0 R /XYZ 56.693 180.148 null] +>> endobj +3389 0 obj << +/D [3359 0 R /XYZ 65.161 180.831 null] +>> endobj +3390 0 obj << +/D [3359 0 R /XYZ 65.161 169.872 null] +>> endobj +3391 0 obj << +/D [3359 0 R /XYZ 65.161 158.914 null] +>> endobj +3392 0 obj << +/D [3359 0 R /XYZ 65.161 147.955 null] +>> endobj +3393 0 obj << +/D [3359 0 R /XYZ 56.693 101.074 null] +>> endobj +3394 0 obj << +/D [3359 0 R /XYZ 65.161 101.757 null] +>> endobj +3358 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F95 923 0 R /F98 924 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3397 0 obj << +/Length 2586 +/Filter /FlateDecode +>> +stream +xÚÍ\m“Û¶þ~¿‚“v¦¾N ’i§3I;q㸽SgÒ±ó¢pç(R!©{ɯïR¤îDêm!ñѸ\Ï.öÙH™Cwߎ/^¿Ô I(¹tÆ7ŽäDúNÀ\âúÎxê|zu¥­ +}9₾ú9+uQ_Þdy}QΛßdÑ·Yv[ÿç—ëŸ.¿‡×Œ#¡µ´ëò1ÑÅ\벨~†·3'€·K·z»'}âóÀ úÍû}ýàÕëúã²zðâûñÅo ÄS‡9BºŽ2")w¢Åŧ_©3…ß@â…s¿n¹p£„»®çúâ?´ zpD6²½0*k>s.ÖZl{ýš¬ûáUÏÄ“üP`6Ñyy9’”B÷Õc™¥__Ž‡ÿæúF§eþHŠ¤–#U‰¬þ¼k÷f†ùÜñݸ"¬úXÝFÌ“'a:¹vn¶;Õ’¶ÿîî 8h¿_‹eU[[é‚0ÉÚÒećÂÈßžlIBZ+º—Ïœú⪙ûÖ­çºX-—L<ªqeM¨†qz“µZ‚J¯›»¼*ã2ÑXɸvÚBGeœ¥EÏ}›ND·kk\1³8ð÷°G  œ•¹Gxç·ªvÿÊ +}»qK•«y¸×“¿×¿NâIg•whnL³h.vëNý x‘Ö#£¸ÈdH ü +ôˆ°`8·"N8çƒ9–Ž|;×b¯,Þ¹È@AÃ'ç¢ÿP÷ ª,ãt†k_íZÄbt*Š²|Š~C™áÚýxýkÅ¥ªr¤«˜å\Ç$}F8D7ƒá¾-ß÷ÖÊàÞ÷È&*üYß›Àm–«åüñÜÉ;Œ +…Ä)°\å)Öœ±`œ`û­ ¬x½ˆèRç–³ðlûbƒ©(»1ÎúîW‡e×ë]M)‘Ïhó‚n–ÞÏÔÛ´ +¶ZùÄ[mÚŒ°¦-)q鉴«k×nŽÿ¾kîíw2w¬Ô'ä+ÛT;„Þê²zÔ¿ÂŽ:1×Ã9Ô¶|K‡j­¬CÀÝ]·Íñëô²)²å½B.ðË<»‹Ñq Ö¡½W©Âµ|s—åê6»ë4G Kµ–/É!$wIà»ýfâ4‰S½Å€²™PæÆå€\€×þp&Ü–oiÂÖʘ0•Äža¢!RIÒo,%ª( Vv` y˜(Œ7XÄË×NH„Û!¯ç»à»šðÑ-Q…ž}PéR]2ˆe!¦R¹ÙݲCSgTyXñœ¡k6Ò$IvÉLl:«oEsð;›6suÉÁ·\2ñªyb¢uZ_-Ô´¹Þäi7Nßv·^Íø¾Üã‹JÛÙ^%…m®³ƒk¹EœFº³áLZ_çõ6!Ò¯‚ À‡ A¸8‹8Ä0:ùL-ð/kr^ 0ƒƒ…ó#ur$Ô<æ¸Ã º0|Ãí´éÈ·sŒöÊâ£CM3ŽYKlÊ{±ëå¶Vå<ËM²aÍîƒ'tZ… ØÀ¸ëmObÙ 9Ìýp%“Ž|;¨Ù+‹‡šs¯¿qŠSeËÇ<žÍË/OU\°Ö¾T—XËŠž£ÛßuŽly?צ™R7`$ r8à·å[ßZYàWØ°)4áR ´ÈTŸ(1È×2ß'bÈOO0@©xþdNï¦Ô‘ogJöÊâM‰Ua¢×l·ýhpfjÿæûtM¢g*I3 ÿ=³fÏÞŽ£î»ã×ä V×û9ГŠtÚŒ„ ÃR-é–·TÔß"Xñê¥"Q‘îûð:y÷œ`…Øjµ@gX³|ÚÁÓYUêçS;!n8`áù4Ú&Io¸ÚBG¾%â­•5À¼ç¯ß¹Æü¾:ý¡)ØWx¶¤r]}¤¨ DGÌc@AÝŽXC~1m¢·ýi«¾¤°êÄp©Ý¶x;S²VÕÀ’*EÛ|³(³üý6W´óèýuš#™µ<^.{ÿ„×~ÖuÒ>€Ì:\f¶-Þ¾ÖªâáÒuÅo^ûLhàG"ºóWZïÞ1ý†ëÿê¯|; +endstream +endobj +3396 0 obj << +/Type /Page +/Contents 3397 0 R +/Resources 3395 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 3239 0 R +>> endobj +3398 0 obj << +/D [3396 0 R /XYZ -16.307 900.716 null] +>> endobj +3399 0 obj << +/D [3396 0 R /XYZ 56.693 741.963 null] +>> endobj +3400 0 obj << +/D [3396 0 R /XYZ 65.161 742.646 null] +>> endobj +3401 0 obj << +/D [3396 0 R /XYZ 56.693 695.785 null] +>> endobj +3402 0 obj << +/D [3396 0 R /XYZ 65.161 696.468 null] +>> endobj +3403 0 obj << +/D [3396 0 R /XYZ 65.161 685.509 null] +>> endobj +3404 0 obj << +/D [3396 0 R /XYZ 65.161 663.591 null] +>> endobj +3405 0 obj << +/D [3396 0 R /XYZ 56.693 616.73 null] +>> endobj +3406 0 obj << +/D [3396 0 R /XYZ 65.161 617.413 null] +>> endobj +3407 0 obj << +/D [3396 0 R /XYZ 65.161 606.454 null] +>> endobj +3408 0 obj << +/D [3396 0 R /XYZ 56.693 559.593 null] +>> endobj +3409 0 obj << +/D [3396 0 R /XYZ 65.161 560.276 null] +>> endobj +3410 0 obj << +/D [3396 0 R /XYZ 65.161 549.317 null] +>> endobj +3411 0 obj << +/D [3396 0 R /XYZ 65.161 538.358 null] +>> endobj +3412 0 obj << +/D [3396 0 R /XYZ 65.161 527.4 null] +>> endobj +386 0 obj << +/D [3396 0 R /XYZ 56.693 490.557 null] +>> endobj +3413 0 obj << +/D [3396 0 R /XYZ 56.693 463.219 null] +>> endobj +3414 0 obj << +/D [3396 0 R /XYZ 56.693 417.287 null] +>> endobj +3415 0 obj << +/D [3396 0 R /XYZ 65.161 417.97 null] +>> endobj +3416 0 obj << +/D [3396 0 R /XYZ 65.161 407.011 null] +>> endobj +3417 0 obj << +/D [3396 0 R /XYZ 65.161 396.052 null] +>> endobj +3418 0 obj << +/D [3396 0 R /XYZ 65.161 385.094 null] +>> endobj +3419 0 obj << +/D [3396 0 R /XYZ 65.161 374.135 null] +>> endobj +3420 0 obj << +/D [3396 0 R /XYZ 56.693 327.668 null] +>> endobj +3421 0 obj << +/D [3396 0 R /XYZ 65.161 327.957 null] +>> endobj +3422 0 obj << +/D [3396 0 R /XYZ 65.161 316.998 null] +>> endobj +3423 0 obj << +/D [3396 0 R /XYZ 65.161 306.039 null] +>> endobj +3424 0 obj << +/D [3396 0 R /XYZ 65.161 295.08 null] +>> endobj +3425 0 obj << +/D [3396 0 R /XYZ 65.161 284.121 null] +>> endobj +3426 0 obj << +/D [3396 0 R /XYZ 56.693 237.654 null] +>> endobj +3427 0 obj << +/D [3396 0 R /XYZ 65.161 237.943 null] +>> endobj +3428 0 obj << +/D [3396 0 R /XYZ 65.161 226.984 null] +>> endobj +3429 0 obj << +/D [3396 0 R /XYZ 56.693 180.517 null] +>> endobj +3430 0 obj << +/D [3396 0 R /XYZ 65.161 180.806 null] +>> endobj +3431 0 obj << +/D [3396 0 R /XYZ 65.161 169.847 null] +>> endobj +3432 0 obj << +/D [3396 0 R /XYZ 65.161 158.888 null] +>> endobj +3433 0 obj << +/D [3396 0 R /XYZ 56.693 112.421 null] +>> endobj +3434 0 obj << +/D [3396 0 R /XYZ 65.161 112.71 null] +>> endobj +3435 0 obj << +/D [3396 0 R /XYZ 65.161 101.751 null] +>> endobj +3395 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F95 923 0 R /F98 924 0 R /F52 695 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3438 0 obj << +/Length 3271 +/Filter /FlateDecode +>> +stream +xÚå][“›8~ï_Ae¶Sµ­ vjf&ÉT¦&³µÓý°UIÔX¶©æâA·÷ׯ08eðíÈ%ÙÚ—¶ÛƇƒø>«„ë,×ùå槇›Wo׉IÌwæg„‡ND=â…ÎÃÌùpû‡Ì¤Pòå ÜÛßËZªîí¼¬º7õ²ÿòu™üT–OÝ?ÿ¾ÿí姇_õiî(%qtÒîëM&ÕRÊZµ_ë³S'Ògç^{vŸ‡$d‘s8ìÏ2-0Œn_u/”ñö‡7onþ¼¡Z¼ëP'à„ǞƔp—9I~óá“ëÌôwZâÇ‘³Þ™;u ó¸~Ÿ9÷7ÿºqû‘pOŽÈN¶êòN§Œ[-v?{õV²½¿ýMD|é/¶¿O“¥ÙG7pë\ÿ¥/ï¸ëÞÞçi½üûË;Êô?jS”+ò¬²º/³2yÚû?-æåàß,-äÞYªjµ÷¿,fE{«ö>jênÀã`OQ?ŠI ßöª~t]­¥î—w´{·½V}ÛËm_~Ž¿F ™zzŒ|¯ÿöóÀÕwÓç#q;•tæû>vüÓðˆÐÈß LÛ£±òB9Ë\JB}#!gØ#'1‹'Pv+°Z8Ý›?zt¶SÜ£Ä×´½‹?/E±³@e9¶°ÐÇÎ4˜°£Ë9ì¸Ç2ž_Ÿv`Z‹,MÇêk}Õpø£Û¦˜Éªå ðÒšzÕq K;.ÅJ,¤}™G4$z†±ó¡|$ÌÑÊÀœ¹$ ^ó#7LJN¢›u—e…æ#9u% +µ•,€ð©KØq’•_àßÎ_àã‘!!:»œ0Îío( ÷»\Š5ô å#ÑcMÙ~0XL‚À^by$9he ¨ä1ù}bùÇb³ÉaTR¨²¡‰ã›ÿ‘0ÌÐy•±³F»äŽ5& å#™€VÖ€ Œ’(êsϪÌeæÐÛ€OPÌ6ÚÁI[¹ ?t$f>cÞT_ 5 :؃lØl¶~¡šÖ1ÔSG>¦åeV¸]rÇ+†ò‘¬@+kÀŠV.óûÈ~Y*à<6+¥* ‚Îœà-×°CWBÁqØÖß<–ÍÔ“~ÒTÅ¥ó¹cmKNRµ|6åCw [|ÉÇñ¯,œAÜvŽôµ‘ÕÂ#e0hTÙTÉxÊä¡Šrjøš› t5Êkp¿™z|¿t2‹Â€AXu k<ÊGò­¬¢˜¸»v«ºœÚßîœxø®j±'jk—or¸MGX»ÇñÈ[lKÕ~$¸G"×^&x$9he àÎCâFÑ®¤.¿Rmb +? +îÅó4°Þ<4·×z{àä:0ÐÁ4u®‚.çb%CùH– •5`IÀ Õçܲd%* ÿZVÖ÷“'oŽÕÄ_/[Û1g»Ùš½(Àýj¦P÷»¤Š5¨å#¡ŽVÖê¾~ i_<2sž÷¡ÅZTðiy–Ö)4ñ”,eò4š‰3äu kw|(yÇ­)Ûí¢Ekƒ1” ´²ðgagÚb¸†šäG¡Œ’§2‘J‰j3­QV3YMë©fµª´®S·9ž²0—ùîvœ5ˆå#!ŽVÖâ”÷™S(bê´Î¤ib~½L`ÇF©}™jB³¸‹q•à4.“J®¡x³‚:ÿ‰h ºB{„ái­&,ÓÌ©GÄõíeNGòq|À+kÀ­©çõ™Óq™y/½*çsƒÞsh¤\HÏA"ý7˺„‚5˜ å#afMÙ~0Â.n´6CùÈÁ@+ çœÆħ}_îÏY©lË·¡<ôÏßk/:ñ÷ ÔÔhæO×v_‹"•À˜ù7™jï«6¶¥à'Ô¦/ÿüööY4!ñH4cU53ˆô9ÔY™<¶kÑá!󳂮 jb穯¡y™§¦0’Ý@ 4S™,SùjÎ~©À-ï…ª¡¡ŽªEݨ« _û1Ìô¯'·ð½˜0YÚàËVÐ`1ñÜÀÞ"|ŸFÄóíEt#ùÈù­¬ÁÄ(á^ѽMŸ¿í|ù,òU¶UšuEuz¡Åt1ƒÏ}à¸ËèÂd&óƒuÙ—9¤IãE-ìP>âhe ®åò00-ËC[*D.m0ÖòÊúºýxU•mæL‚yºh*i¸ˆ÷ˆã~â^̉Ïìˆ#ù8ˆ£•= h/ŽIHû>“>Ή..šþ.#¨‡äÅñ÷‘Ú÷¼Ð% ,yHýJ]ÉãZnq£"Ï wíU¹Fò‘ìB+ 7 ^Û.÷ëI^—Z€Ó"Éhße&àÀ˜-NÏ÷™,ÆVï|Vp%êe6”éüÊh—ÔŸVB楇©ÚË<Õs1÷íÕGGò‘4B+k@#Ÿ’Øë룩iA¨, …Ï…,dö³ŽèLúâÏFdé<…†I-W¤ˆ¢&öéŠÃYëÌE¾)Yª–˜•šžð¯j°)Óç`– öþî„Ð1pµBalÏb³˜’ˆÙkMÉÇM5xeáS ‹õ«Ûg·ÞY±‚Ç·.º0‰Éº¦z-ªBG`ÓÏÂÛEÊÜÎ˲n˜^t}° 1XnÀ"—DÜ^géH>ähe @ù„úñn´¦¼ŸÁ«qrÙnݲ0èÀ×Ñ =Е°ÚÙ|ºg0=,|C­ãÚ:¹öZDGò‘˜µ¦l?†®o/®ÉGZYëb3]@Ñä²’3nÖKƒÃÛ]R#¯8-fàDû¾Ç3Ûùˆ[Ó¦³+mëeöû¡†½p$ x´²€×ñ û°’í^‘`ìüïi3à4ÿïÿ|xs4›2·¦C+c9Ü`‚]ØU&ÀÕ³Ö0¥—Ù«¹Žä#i€VÖ€¾K<Ú×\³TÇÊ —&”jòU‹05íöËÉWÏí®píÚoôf6¹¨ž®làÕ#ýÃù¸¦ÍÓd§vºÌƉËí•kGò‘ì@+kÀŽ¶d÷èï:°…þ‘8˜ë±1¾m¼ø­]¤5Þ’ ]ÚeW¬Aw( ]´²Ðmwâ¾0»í2ð¡3ùZLÝƦ•4…]:õj}àfê¤0<·=ºÐ•KÐÎaaÚëÀÜ.»cdCùH’¡•5 ™÷ ' Zjñm¾‚œ´–yú9kŸb4­äí +;ÁpÃßÚT”VªžœVã è"Yhìj+Cñ8ª U…3…¶HadÄ”+]!h·Ü%´P²™6Ò>ž—¸°êi›ÿ2ØXWl?bÜ J£.¯hCùH> •5 D€îöâ¨Ê•¬²Í7J(™å³ŒA1‚†]Ö͆ò‘p°¦l?¼Ë½XŒ¡|ä` •5à÷wé®Ñ([[&›•ÙOìXw.ä_ž……QÉ8 +íÞ 9ùÎÑÆíjÚmߦ[¬b(I´²„á~_¬H„’¶¶VÍBÓ¡¾Ò5ï?~qn5ßóác„Y1ƒ-Ò‰;ËוXM«¸>¼Ì!¯ËûXãÐP>’Che 8äS£Ý~!Ö"浞öÚG[L¼UÞÔ*&=:W—åN¯ê‘ó¶-¶„ntl÷.°ËéÄßL¤ýîOJñcï»Y®A]F‹«5bJ‚Ð^ëçP‘K¸Åý ÅãàVïÈ#=¸¯×¥Qƒu·‡û+^r‘•õÔ1Øjö@?«*™Ô‡UðêCÂ÷7zDÛÅ}8v;¸ÄåÛüò‡O®3Ó_ýªeøq䬷æN ÁÉ<®ßgÎýÞ ÿ ‡ÔÑç +endstream +endobj +3437 0 obj << +/Type /Page +/Contents 3438 0 R +/Resources 3436 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 3492 0 R +>> endobj +3439 0 obj << +/D [3437 0 R /XYZ -11.232 900.716 null] +>> endobj +3440 0 obj << +/D [3437 0 R /XYZ 56.693 741.747 null] +>> endobj +3441 0 obj << +/D [3437 0 R /XYZ 65.161 742.431 null] +>> endobj +3442 0 obj << +/D [3437 0 R /XYZ 65.161 731.472 null] +>> endobj +3443 0 obj << +/D [3437 0 R /XYZ 65.161 720.513 null] +>> endobj +3444 0 obj << +/D [3437 0 R /XYZ 65.161 709.554 null] +>> endobj +3445 0 obj << +/D [3437 0 R /XYZ 65.161 698.595 null] +>> endobj +3446 0 obj << +/D [3437 0 R /XYZ 65.161 687.636 null] +>> endobj +3447 0 obj << +/D [3437 0 R /XYZ 65.161 676.677 null] +>> endobj +3448 0 obj << +/D [3437 0 R /XYZ 65.161 665.718 null] +>> endobj +3449 0 obj << +/D [3437 0 R /XYZ 65.161 654.76 null] +>> endobj +3450 0 obj << +/D [3437 0 R /XYZ 65.161 643.801 null] +>> endobj +3451 0 obj << +/D [3437 0 R /XYZ 65.161 632.842 null] +>> endobj +3452 0 obj << +/D [3437 0 R /XYZ 65.161 621.883 null] +>> endobj +3453 0 obj << +/D [3437 0 R /XYZ 65.161 610.924 null] +>> endobj +3454 0 obj << +/D [3437 0 R /XYZ 65.161 599.965 null] +>> endobj +3455 0 obj << +/D [3437 0 R /XYZ 65.161 589.006 null] +>> endobj +3456 0 obj << +/D [3437 0 R /XYZ 65.161 578.047 null] +>> endobj +3457 0 obj << +/D [3437 0 R /XYZ 65.161 567.088 null] +>> endobj +3458 0 obj << +/D [3437 0 R /XYZ 65.161 556.129 null] +>> endobj +3459 0 obj << +/D [3437 0 R /XYZ 65.161 545.171 null] +>> endobj +3460 0 obj << +/D [3437 0 R /XYZ 65.161 534.212 null] +>> endobj +3461 0 obj << +/D [3437 0 R /XYZ 65.161 523.253 null] +>> endobj +3462 0 obj << +/D [3437 0 R /XYZ 65.161 512.294 null] +>> endobj +3463 0 obj << +/D [3437 0 R /XYZ 65.161 501.335 null] +>> endobj +3464 0 obj << +/D [3437 0 R /XYZ 65.161 490.376 null] +>> endobj +3465 0 obj << +/D [3437 0 R /XYZ 65.161 479.417 null] +>> endobj +3466 0 obj << +/D [3437 0 R /XYZ 56.693 432.304 null] +>> endobj +3467 0 obj << +/D [3437 0 R /XYZ 65.161 432.593 null] +>> endobj +3468 0 obj << +/D [3437 0 R /XYZ 65.161 421.634 null] +>> endobj +3469 0 obj << +/D [3437 0 R /XYZ 65.161 410.675 null] +>> endobj +3470 0 obj << +/D [3437 0 R /XYZ 56.693 363.167 null] +>> endobj +3471 0 obj << +/D [3437 0 R /XYZ 65.161 363.85 null] +>> endobj +3472 0 obj << +/D [3437 0 R /XYZ 65.161 352.892 null] +>> endobj +3473 0 obj << +/D [3437 0 R /XYZ 56.693 305.778 null] +>> endobj +3474 0 obj << +/D [3437 0 R /XYZ 65.161 306.067 null] +>> endobj +3475 0 obj << +/D [3437 0 R /XYZ 65.161 295.108 null] +>> endobj +3476 0 obj << +/D [3437 0 R /XYZ 65.161 284.149 null] +>> endobj +3477 0 obj << +/D [3437 0 R /XYZ 65.161 273.19 null] +>> endobj +3478 0 obj << +/D [3437 0 R /XYZ 65.161 262.232 null] +>> endobj +3479 0 obj << +/D [3437 0 R /XYZ 65.161 251.273 null] +>> endobj +3480 0 obj << +/D [3437 0 R /XYZ 65.161 240.314 null] +>> endobj +3481 0 obj << +/D [3437 0 R /XYZ 65.161 229.355 null] +>> endobj +3482 0 obj << +/D [3437 0 R /XYZ 65.161 218.396 null] +>> endobj +3483 0 obj << +/D [3437 0 R /XYZ 65.161 207.437 null] +>> endobj +3484 0 obj << +/D [3437 0 R /XYZ 65.161 196.478 null] +>> endobj +3485 0 obj << +/D [3437 0 R /XYZ 65.161 185.519 null] +>> endobj +3486 0 obj << +/D [3437 0 R /XYZ 65.161 174.56 null] +>> endobj +3487 0 obj << +/D [3437 0 R /XYZ 65.161 163.601 null] +>> endobj +3488 0 obj << +/D [3437 0 R /XYZ 65.161 152.643 null] +>> endobj +3489 0 obj << +/D [3437 0 R /XYZ 56.693 105.135 null] +>> endobj +3490 0 obj << +/D [3437 0 R /XYZ 65.161 105.818 null] +>> endobj +3491 0 obj << +/D [3437 0 R /XYZ 65.161 94.859 null] +>> endobj +3436 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F95 923 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3495 0 obj << +/Length 3389 +/Filter /FlateDecode +>> +stream +xÚÝ_“›8ÀßçSP{UwÉÕŽ Ø<íÞ&[»•\ÝÍÌU]U’d›@^À3™ýô' žü¯åF›»{™Á¶hñS«Õj ×Y8®óÓÕwW¯Þ2׉IÌ)wî槄‡NäùÄ»ÔùðâFæRÔòå5eî‹¿«FÖÝá\UÝA³ìüQ%?(uß}ø÷í»—Ÿî~Ñ—¹ö<3ÖI»mžrY/¥lêög}uωôÕ¹ß^=à! iä\3‡ýõC_ £¯ºåí‰Woî®~»ò´x×ñÆ }'Œ=Â]ê$ÅÕ‡O®“êß´$ˆ#çqS²p˜çês}œ;·Wÿ¼rûšÿ߯™í5‚˜x.ïtûH)Ûh³=íÕ[]ds?A{NDé6…ßgÉRÈü£Ëܦн—×Üu_ÜY³üîåµGõ‡FÌrI>×ùëîÇú©T«Ï³\%÷;Ÿ³r®v>æYÝÔ;Ÿ+9—eS=í|%Ë´«ø˜í(D1aú°Wõ£ëjí<Ï}>òº£Í½ê§ÙÞnûï§ásÐôx!uB?&eísh¿g®~ªw(‰£Ø©¤3ß­ø´Ãßî_€¶5n/Ð öÚÒXùŒxÜËg®GBý !WØ…’“˜Æ(»X-œîধs@ÚVq_kÊ‚mË}U#Ó¡ûÂœ0J™ÈºÕ¬¸¬±Êʬ´šÃÊÍDr_ç¢^Šë{ù¶ÿâÈy©j Ï%°^Ò±6þ½07²‡çP>O´²xR—„qߨu3-b´²»1‰üÞ(²z±ÎÒ=2^|éà¿9G!ª{YOýæ´å*¤ö#ʬ.ÌaÔ$W*]'Ð>!+/kyý×ú‰Râyã1#ÌnCñ8ÚЪÂaãqD¢0ê`«zWü(j×קÑy\jöH ‘­éº–ÓÚq‘7²*E“=¤êÒötžÀ( Ü÷ì!8”d­¬„QHb/î ÔƧ‰~B5ðiÖP[³yê9¬t%W•¬u·,ÚŽ¹žÚ‘Pc¦ÏÃúzäLíÁ3”„­¬<¡¾&?É΄޺î‰J0A¹÷„Zn+ùëºzr«*SðòÊGý?ô|{8å#qD+k€£¾¦ëzµ¬2‘g¿oŒÈ¡¾æ\‡ +æ²Ø‚í c–boÔû—ãc մΑçOºÎ£Éº…54‡ò‘h¢•5@“1â´Gó©n &§ƒpho¬ºÔº3N𘸧äùõé³ö+ð<ÅAÊ°FñP>’b´²q#¿£83íèáÖOñÕÄa¦úy +V>QБ¼/úù@œö³LÖ{AàóxÓ.Èa ï¡|$Þhe ðö}âÑ>Â}\àÈäL.²²œ<¬¾ªTÜË:939WðD ô”®`·Q©ùÜ_¯ ›Ø› ÉGâ‹VÖ_ª+ˆ÷ø6\²^`¹}‹ONÓu·Ì€¦¬ {. ±¦ÙC&Ú¹êiÛg)¡nÑì™;ÐnŽ±÷P>n´²p{¡Û¹ù±Àã]ú¾³}ÜŸh8³VÐÄo묂B t€rÔS;5À+ß|ÿ8wº®öú²³x³x0²E÷P<n´ªl».¡AŸsº??=6L¹¨ ÖvžåÒÔÓÛ\“†|xn À\ÔE…¬A7”¤­,;Å„Fýü“,S°k +õ:›»ÈböîØ¡r! 5Ê|é'Öpòˆ…]ðÆACùH‚¬)ÛWïbÖ*c(Yhe š‰öÑç¿åª†‚<[4õò¸vzÂð¬-ÊûzÚ Ým¢ gq[È4—O:Îç›ë†äÖhÊGÒ†VÖ€6ÆIàÑgŸá!ƒÛo w©-14 ¶–x+`/aþðX@ý‰:\ε0Œ%Í­Tm™cA7‚·FûP>’v´²´Œ¬<ƒ¹ÑÍb–C'Z³f9qDïÝ~©žgÇïÈÖØÊG²cMÙ¾2h7¢²VCùÈÊ@+kШO˜ßÇ¿G/ +õ`MÏ¡ƒn‰*ÛÜxpoXJžURÜ_øp»±–5 ‡ò‘@¢•5Ò£„…}\¯^‰ì5[Ⱥ³[‹:i¢yùJ©ðèÉL“ÞÇåÄÇ, +2]«D>Ù®6˜|©ÖóZ+àÝa@hhoMTÀ}â{öBX#ù8ëWn=}M÷Ù«o³ÏðÄ+žaV&ªªdÒ€»´B4ÍäSÂ¥¸AkâATY»0±EþÒÆ0J|f/>6’Ä­¬žŒLÒ]³ï}…ˆÐÚS“¹aÊþ±È}Õ›'i¸TæÌRY]ÎlŸÿ±] ‰ëÿ-}–ß,vZ­KÚ fŒä#­ZY« ÝkÎûÐÝ{quçÖÕä¹f"®ÉhéÊYÔÓ..kEf¿Ët¯÷Áge«J›#É•i²†3xöB.#ù8ÂñÊ ÷㈄®¿ NËD¦Pdö4i {–뾊x)­å7͵o:mîG%U›' Ê©‚J’µöbMƒ×~€Ù‹¹ä#[ZYƒÖµ]k?V}/bÊʺe"ë¯>¸û4ÊTjòÅ ²šz‰*´O‚&ŸWò!SëÚ´•„þfÓk­d(ÙJÐÊ´’“0겪m¬ý”poÇ &¬Ç[ÚÏ€Žâákà ~Ìšd Ñ›ëÍí¸^¯„›7l !±6^ŽëëÿÌ·—#;’lBhe šþÑ>j¾S%ëÒ`©a­¬V +º<§ Xí'<îæha;)±nT!“Õ YÊ +žg~¹Czx] Ìb—1Ä«ªí, ïÓ9ïg’TÁ»÷ŒÌ ¥–t~´q 4Û?MÁƒ2qÈ´“Ë‘WÐ%QðÕGR$KC5Æî|C "Âbï +ú”º]’7´²¼…!ñ£>R»YÕU¯”ÁIf¶,ÓÖ¡8~›5_Ù 0…‘w#k0å#aD+k£¾fûÒ=³í/z¨ê sÛ˜©wÆ•à5óÉý +Ä~1¯ 7Á;Ï?ëÂÖøÊGòVÖ€ÆHÀùóNup[ÙÎájßqê½bÿuóh«+UL|ívCÆJBß·Ô4U6[7Æ(¡÷¡ÉG¢ˆVÖÅ Ìí£Ó“Û£ÿã©9ƒðœço/Ö؈G¢gKÕ¾&¼nLo­*†ò‘uVÖ RJØ6·í­IBƒÉìxØu:×aª%^¼ÊÄs»a³5€†ò‘¡•5ÈóïW¨.ŃœxçÄÏ É2ËS[{,›* ¦Y½ÊÅ“ñ:ѸXÛ"r($ZU]—ðíî±&éb¨-1F[ zùˆï¾H~r†âqXSµs7º±ö6æx䢑ªórDÂíŸg#od) +hª–²‚¾yt8¹&g3{~°¸$0BYè\{„ñÞIùë1AºúBîì”Ü,°˜xÿ³;;9úrwÔ'¡àî¦Íåî|;00Û=q\âòÍÈíÃ'×IõO¿hdÚ5Ç›‚…ÃÚYXŸëãܹÝáë?ª¼ +endstream +endobj +3494 0 obj << +/Type /Page +/Contents 3495 0 R +/Resources 3493 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 3492 0 R +>> endobj +3496 0 obj << +/D [3494 0 R /XYZ -16.307 900.716 null] +>> endobj +3497 0 obj << +/D [3494 0 R /XYZ 56.693 742.03 null] +>> endobj +3498 0 obj << +/D [3494 0 R /XYZ 65.161 742.713 null] +>> endobj +3499 0 obj << +/D [3494 0 R /XYZ 65.161 731.754 null] +>> endobj +3500 0 obj << +/D [3494 0 R /XYZ 65.161 720.795 null] +>> endobj +3501 0 obj << +/D [3494 0 R /XYZ 65.161 709.836 null] +>> endobj +3502 0 obj << +/D [3494 0 R /XYZ 65.161 698.878 null] +>> endobj +3503 0 obj << +/D [3494 0 R /XYZ 65.161 687.919 null] +>> endobj +3504 0 obj << +/D [3494 0 R /XYZ 65.161 676.96 null] +>> endobj +3505 0 obj << +/D [3494 0 R /XYZ 65.161 666.001 null] +>> endobj +3506 0 obj << +/D [3494 0 R /XYZ 65.161 655.042 null] +>> endobj +3507 0 obj << +/D [3494 0 R /XYZ 65.161 644.083 null] +>> endobj +3508 0 obj << +/D [3494 0 R /XYZ 65.161 633.124 null] +>> endobj +3509 0 obj << +/D [3494 0 R /XYZ 65.161 622.165 null] +>> endobj +3510 0 obj << +/D [3494 0 R /XYZ 65.161 611.206 null] +>> endobj +3511 0 obj << +/D [3494 0 R /XYZ 65.161 600.247 null] +>> endobj +3512 0 obj << +/D [3494 0 R /XYZ 65.161 589.288 null] +>> endobj +3513 0 obj << +/D [3494 0 R /XYZ 65.161 578.33 null] +>> endobj +3514 0 obj << +/D [3494 0 R /XYZ 65.161 567.371 null] +>> endobj +3515 0 obj << +/D [3494 0 R /XYZ 65.161 556.412 null] +>> endobj +3516 0 obj << +/D [3494 0 R /XYZ 65.161 545.453 null] +>> endobj +3517 0 obj << +/D [3494 0 R /XYZ 65.161 534.494 null] +>> endobj +3518 0 obj << +/D [3494 0 R /XYZ 65.161 523.535 null] +>> endobj +3519 0 obj << +/D [3494 0 R /XYZ 56.693 477.269 null] +>> endobj +3520 0 obj << +/D [3494 0 R /XYZ 65.161 477.558 null] +>> endobj +3521 0 obj << +/D [3494 0 R /XYZ 65.161 466.599 null] +>> endobj +3522 0 obj << +/D [3494 0 R /XYZ 56.693 420.332 null] +>> endobj +3523 0 obj << +/D [3494 0 R /XYZ 65.161 420.621 null] +>> endobj +3524 0 obj << +/D [3494 0 R /XYZ 65.161 409.662 null] +>> endobj +3525 0 obj << +/D [3494 0 R /XYZ 65.161 398.703 null] +>> endobj +3526 0 obj << +/D [3494 0 R /XYZ 65.161 387.745 null] +>> endobj +3527 0 obj << +/D [3494 0 R /XYZ 65.161 376.786 null] +>> endobj +3528 0 obj << +/D [3494 0 R /XYZ 65.161 365.827 null] +>> endobj +3529 0 obj << +/D [3494 0 R /XYZ 56.693 319.166 null] +>> endobj +3530 0 obj << +/D [3494 0 R /XYZ 65.161 319.849 null] +>> endobj +3531 0 obj << +/D [3494 0 R /XYZ 65.161 308.89 null] +>> endobj +3532 0 obj << +/D [3494 0 R /XYZ 65.161 297.932 null] +>> endobj +3533 0 obj << +/D [3494 0 R /XYZ 65.161 286.973 null] +>> endobj +3534 0 obj << +/D [3494 0 R /XYZ 65.161 276.014 null] +>> endobj +3535 0 obj << +/D [3494 0 R /XYZ 65.161 265.055 null] +>> endobj +3536 0 obj << +/D [3494 0 R /XYZ 65.161 254.096 null] +>> endobj +3537 0 obj << +/D [3494 0 R /XYZ 65.161 243.137 null] +>> endobj +3538 0 obj << +/D [3494 0 R /XYZ 65.161 232.178 null] +>> endobj +3539 0 obj << +/D [3494 0 R /XYZ 65.161 221.219 null] +>> endobj +3540 0 obj << +/D [3494 0 R /XYZ 65.161 210.26 null] +>> endobj +3541 0 obj << +/D [3494 0 R /XYZ 65.161 199.301 null] +>> endobj +3542 0 obj << +/D [3494 0 R /XYZ 65.161 188.342 null] +>> endobj +3543 0 obj << +/D [3494 0 R /XYZ 65.161 177.384 null] +>> endobj +3544 0 obj << +/D [3494 0 R /XYZ 65.161 166.425 null] +>> endobj +3545 0 obj << +/D [3494 0 R /XYZ 65.161 155.466 null] +>> endobj +3546 0 obj << +/D [3494 0 R /XYZ 65.161 144.507 null] +>> endobj +3547 0 obj << +/D [3494 0 R /XYZ 65.161 133.548 null] +>> endobj +3548 0 obj << +/D [3494 0 R /XYZ 65.161 122.589 null] +>> endobj +3549 0 obj << +/D [3494 0 R /XYZ 65.161 111.63 null] +>> endobj +3550 0 obj << +/D [3494 0 R /XYZ 65.161 100.671 null] +>> endobj +3551 0 obj << +/D [3494 0 R /XYZ 65.161 89.712 null] +>> endobj +3493 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F95 923 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3554 0 obj << +/Length 2192 +/Filter /FlateDecode +>> +stream +xÚÍ\[oã6~ϯЇM€š#R$EÍ ì´¶ƒ¶@gò°ÀLh™NÔH¢W’“L}.ÎXrì…RÚ'ÓuxD~ç;Òö½+Ï÷~8{syöê­ð½ˆD’IïríIFdè) ô.WÞÇó÷&5º4 &üó_meʶ¹¶EÛ¨®»›ßÙøµ7í—ÿ}øùâ÷Ëw0Ì‚R ÑJûP}NMymLUÖ·atê)]õè\†$dÊ[…Ýø!¡:Õ~P&ëϾ¿<ûÿñ¾G=!‰Œ/Œ(‘>óâììãï¾·‚{ á‘òîšž™'¨OX ¡zÎ~;ó»™ðAźYü°'æƒ†Ì ¹ ŠªZr}‘HE­{G^a¼õQIOÊ„J:”/|JB©P#ìÏ‚$‹&P¶X\ymã}˜áf©x½T!,«õe»T•m–æ¸ïãBúþyaÖ©‰+\çêZ#{®õô2kp£:š|•7Æê&%RÜÞõ;öV¬g;¬œ(XêÙ°Ú—ïˆUgeG`5P„òŽVb›W:É‘ë•Ù ¡•ãzþ±Åb Mò›¾¢ð¤»pä™ÿ¦%ÒWÉ +×±L²$ÕÅX8²€ÌÆ}éŽPtTtYH¨R- “ë,ɯg \G¤—m¶4H‘vÄɃbvq³çI^™"×)nˆ[]3ˆ§Iaq9’}ùŽ œMÙn2@»H±ù&£/ßq2\•=´È5agX˱N¤*ŒÎÀ`°¸¥¬§£4HnVé3\´™×l ëËw³²#\R±KIWfd–÷Ó1þëøâ•XÀ%)2 ÏLY~žï7é6¿™Z(Ú&–ºLâ±èæm:7ºûòÑí¬ìt Ÿð°+f&öHÊ · 2Ù–Øš[‚ìwk +$ü€“×ë$†'îA×ÊÆÛ:ê)Ç"1„±ùª-ùŽHtVvƒˆÚ%xøêoW$œ´â’ÚjÚrKãÃí¶ˆ=ùק½Çr‹T;_õNQõ,û幞¶Ö¤ó³™AO¼£¸ª:˜"BteG$Z—X^šª2ÅÔ5rìèwúÙå@Éaj¯\’Ën%Kðøg»»Êêå EÔl¯v•B ûÚ… ‘Ãò õá¾/X]ûß”¦Û*Ýߨõ½ƒä_vÞõr· »¶ij/˜8¿«ÃôæRíw¯v۶׺–z{AÅy÷ÄÒ˜¼mezÕ]«ì—½ÝflPúËØTq†õ&j3¶‰)ÉAà ØõkâÛFl™ä±ìƒ1â·í¢Ýs&ýyY€·€t0‚Úg­ÔOŒ‰^¿øá`œ +¿èm‘T^4 yi]ió× Êàë/úƬ“Ô q#@ E.¸9© ÊÉŒE¯¾x7sVAbj‡D°ŽÄÞ&÷جx¹½z¬ú ©ð£àõiOÙÇÆdq^ ©}…ÞûÙ¶Öa…cËÄæÓÆ{¦ŽËRÏïKd.©êê#H\PJ˜˜Ä÷I­ãp®[ø úNß&«–‚¾-tfŠu³KæìÉ÷æ!(ŠùH¨>‘Ãé|åÂ|7rWÏC<¯îw>|ÄžPn‹L§ÉŸfDÕ­ÜèI=º°[LQ¤Áö¼Ž¾µØ3à·WhB»»N uÁ¿Üº°ÈêÞlŒ.Њ`Sá`¬~¯œý4y“q1_š4ïhÛÎÊ"lÂr_I+å»j)ÌôUVs_úål +µç;Ư_ömFøæø#UR¥CüçtàõÖÚáß¼;D½Yxz˜É  -ÈŒ,[p4qÂK¦¢à/‰ÜUÆ  ÍEßé:a¼­SGý£I7ÿì„ô}«¯×Rø͆ùdiP3FØe¤ÁÄéî=F„,k ä|aÀá3ÖÖòÝœ†»²ø€0àŠ„´s?e›öÜ6,|ûþñì”> ‚ y—¶@–ä+s?mh´osÏ=¨pFx ^2‹ („WŒÿ ׯã<:Ÿá²Hí~1‹áä»®»²# 4éO"×Zˆÿt„‚Mìš(¥Ž‚ʉ·ÐGpð^‘`À&¡w¶¸™6~N +º)옽ûñÒKejL…Dòà´9 5Æéû‡öÜó˜=c¥>Xö,¯rô¸W—ѱž ºƒ’XwÄBðj¾ +ü@¾#c:+‹gL‚ ÙhÊœç„êUjËRSZ&Ë4±W…Þ\ž¸Šdã‰uÍ4òÔa½ðìR3ÉMOY ‰Ú•b =U¦§ïkŸs*/^ZœPÞ—©hºÄ”ÓæñóÓ•¹5mtûF§é.´]¦6¾)ÙjyS·ÿ¾ØùæU–².$jw0º[×Xiâ*±y¹wsw‰µRÉQ¯Ê¿xUŸ‚&ÔhѶ…ƒ0­Y’óEÙ(RŠù|Æ@¾›ÏpWï3¨„K¼ó¹¹ûS²rb¯1æ¼J otx›²Ä*1Ê!¢½ðA‚}µL×?¼Ëu>ºXIë¿ +ò%“uDàØtdV™l“êÊ,6xŸÜg;bzcw›G˜jQnL\wÄ•ÕŒ§D(UDóñMO¼#ݸª:‚mÌíN‰¬G{ÖRÊGþß‚×? Šžó÷+“F +endstream +endobj +3553 0 obj << +/Type /Page +/Contents 3554 0 R +/Resources 3552 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 3492 0 R +>> endobj +3555 0 obj << +/D [3553 0 R /XYZ -11.232 900.716 null] +>> endobj +3556 0 obj << +/D [3553 0 R /XYZ 65.161 760.065 null] +>> endobj +3557 0 obj << +/D [3553 0 R /XYZ 65.161 749.106 null] +>> endobj +3558 0 obj << +/D [3553 0 R /XYZ 65.161 738.147 null] +>> endobj +3559 0 obj << +/D [3553 0 R /XYZ 65.161 727.188 null] +>> endobj +3560 0 obj << +/D [3553 0 R /XYZ 65.161 716.229 null] +>> endobj +3561 0 obj << +/D [3553 0 R /XYZ 65.161 705.27 null] +>> endobj +3562 0 obj << +/D [3553 0 R /XYZ 65.161 694.311 null] +>> endobj +3563 0 obj << +/D [3553 0 R /XYZ 65.161 683.352 null] +>> endobj +3564 0 obj << +/D [3553 0 R /XYZ 65.161 672.393 null] +>> endobj +3565 0 obj << +/D [3553 0 R /XYZ 65.161 661.435 null] +>> endobj +3566 0 obj << +/D [3553 0 R /XYZ 65.161 650.476 null] +>> endobj +3567 0 obj << +/D [3553 0 R /XYZ 65.161 639.517 null] +>> endobj +390 0 obj << +/D [3553 0 R /XYZ 56.693 602.366 null] +>> endobj +3568 0 obj << +/D [3553 0 R /XYZ 56.693 574.813 null] +>> endobj +3569 0 obj << +/D [3553 0 R /XYZ 56.693 529.045 null] +>> endobj +3570 0 obj << +/D [3553 0 R /XYZ 65.161 528.487 null] +>> endobj +3571 0 obj << +/D [3553 0 R /XYZ 56.693 480.979 null] +>> endobj +3572 0 obj << +/D [3553 0 R /XYZ 65.161 481.662 null] +>> endobj +394 0 obj << +/D [3553 0 R /XYZ 56.693 433.553 null] +>> endobj +3573 0 obj << +/D [3553 0 R /XYZ 56.693 406 null] +>> endobj +3574 0 obj << +/D [3553 0 R /XYZ 56.693 358.99 null] +>> endobj +3575 0 obj << +/D [3553 0 R /XYZ 65.161 359.673 null] +>> endobj +3576 0 obj << +/D [3553 0 R /XYZ 56.693 312.166 null] +>> endobj +3577 0 obj << +/D [3553 0 R /XYZ 65.161 312.849 null] +>> endobj +3578 0 obj << +/D [3553 0 R /XYZ 65.161 290.931 null] +>> endobj +398 0 obj << +/D [3553 0 R /XYZ 56.693 253.781 null] +>> endobj +3579 0 obj << +/D [3553 0 R /XYZ 56.693 226.227 null] +>> endobj +3580 0 obj << +/D [3553 0 R /XYZ 56.693 179.612 null] +>> endobj +3581 0 obj << +/D [3553 0 R /XYZ 65.161 179.901 null] +>> endobj +3582 0 obj << +/D [3553 0 R /XYZ 56.693 132.393 null] +>> endobj +3583 0 obj << +/D [3553 0 R /XYZ 65.161 133.077 null] +>> endobj +3552 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F52 695 0 R /F95 923 0 R /F98 924 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3586 0 obj << +/Length 2436 +/Filter /FlateDecode +>> +stream +xÚÕ\[sã¶~÷¯àä%r§:Á…à¥}ê&MšmÓIcw¦3»y€)Èâš"’²­ýõ=¼e-ʲÑÓ¾X4ßwnļ[y?\¼»¾øæ{żâ@ÞõÒ ¡q 2ô®Þ‡Ù/&3º4—s¡Ø쟶2e{¹´E{Q­º/¿³É;kïÚþsõË_¯ßc7sÎ!Vª•vUí2S®Œ©Êúkì{öȺw?!‘7W‡]ÿ¡Ba4û¦ýà"¨¼øëõÅoÅ3{*€ –^s˜ð’õŇ_™·ÀïPðãÈ{hZ®=Åàuæ]]üë‚u#ÁöFDxØ,Tq3$½p?΂V)Ÿ¸Q£Îû0猱ÙÏ—’Ít¡×ýë=\ რ:!×ýÀ-m–ÙK¡fi~ÛÞJV:¿í‡z¥/›Ý_r5랸1&o¯ÖzÑÝ«ì—ùhúF¥¿ôÍ#°~ñ¦ïÍ1eRýÞ,±½ô2Í3˜pŽ“¬½.Z˜Àþ¨Ì…À¥À œR&[©…P{í]øµøAÔ«ð“Þiõùràð¾7:/mþ§Ë9øïªZg+“màf[U6‡ÜÁã:ûsÛzø5BöA‹Z|¶ÝЩ'êøQ +/;…>2ƱÎ~¿âíUóFõú¥êöAŠÔâ¡ð‚(‚(T5HëûŠ!äýÀG±Woù•{Òž¿{ØAB̃¾ƒV0¯[»ÊWÀ>”¯§‹ÒÃSÆ‹ø Ê6‹[¯½ø¥£ðžzÅ#‚ù¬ì"]¦f±‡ÃCaÈë'…Yn¶ÅÆ–†Ö¾2ÕÀ>Ì€ +ÐÇ¡ ]räóÐÜw¶-PÈc>;×zË43Ï9™˜¦…Π³T—Ï5k¿XNÏNGbJrJ,Ó‘s_¾#9•AN‰ž1ŒÛIü>}¤2³Ú!+‡TûcwãÈ3Ï$I/íšÚr­³ŒÖ´÷í§Úa "ßÔ>0œ¤(>³}ø¤ïuCn“cœ¡OM|â ¨XÁtDU/‰ œŒ¨ùnDuW–NT… úpþ'{O%êÂ$UjsÚ舒m²]›¼!Û.iízˆáê3Íz0Ó:Xv=™*%Ñ"U–Øn5°†¯ó4ÄL’EÓÑh_¾#œ•A£0€&Á¬iT˜Û-’c˜QÖCþÕñémr8S™‚6yk¬ÒÜ»!‚¾¢z2<~KÏ£ü|¦Îìyn Žƒ® ¤rVU‘búgÊ1îG¢Z¾œÐýˆüÈŸŽ7ûòyã¬ìÞˆB fŽÿ²Xü/fpJHðcõ¦VVìøT?¬¨ÁRJœ:½Ù]]åᣡ]o0‹È‰r3so²!3»ýâ2_J|½Ü>Ça¹Ä\‰œÖî¦*ªKUoª™®88ïÈgeG8 |Ñû8bµä`)æåæuT@Œëh|äõ§mIe25Ek­¦úu=0PÚT‡IÊ+O‘—îj3”/ÒÇSÃN©pÿM+­R„ ä¹+­‰Î2 þûbi æ±2yY×OGDžU &,}ÖY©dÓ•>ò ³²# ‹AÅ]ÙîÛL#ö–Ä[Ýý¯_XcîÁ1äÍ×/ó² ØÊó® ×¥¢ŸÕëÓw½H&AŠ7­ÅŠˆÏ¦ªÅ꛲*tRAn«´Ê ˜\ßdf1‚ï"Dý +¤BÅàGÓUHòÝøî®,ï(ìk#–:rópjÌp܇v@»tµ«¥ç©ì~JLWRÈw’³²#€¤8D¼+)þ¸¤&,ùˆ:ÁgSØ‘ñµ„Þ® ·hBN"ŸÅýÑÖÝêQWâû7,Úèg6sRkíB† &Üf8ïH geGÃgõÛ i¹Éôîÿh‡–Õ¹@Qn7˜½•¥ƒýÒL¸ o ßfÎÊŽ€™ˆ!ê·á½3‰Þ–#¶†W隺,¸³[jQSÁuçëˆ `Fðƒ&›É‚õœœ ¡Ùë,à +ºôu ß‘ÎÊŽ`Ç[ýO´‹ÅahdSÃÁ›&j<Š±©µµÎ@}>¡Ü¢+h+Ñ“4¢rÑ„I"ˆÄtIÚ@¾ªÝ•¥£xªíß›…&—îqÊ£ºãž Ljˆ¼QZm+CUgsÞšMa–™¡4Kzès`½_g‡ +! +¦K òÁë¬ìð¸êÛ1 5þÕ¹­M=1 9{jÏ·±}L\z³™éÅÝvsÒƲîî E“«¿eƒ@cÓeƒùŽlpVvêuž¸ËŸ©:¼^Òx ©‰€Ì,büüñ/±w½ .°c~[ÜéÂn©ëväMŽô$;IÒE}ˆ/Ë© ö§Kmò9ã¬ìÎȸù©“†3h>M‘èòü{œì’ØÒ”‰ÞPc*z"h“d[T‚¡¹Oí¶Ìv§–R¸ÄY Þ4½A€0ÿ”3pïS¤u›ÒüÝ–æîKJSܦy½òd`™Y]AµÛ<ýy†vEjió +–zf»§ßÕ+°¬ÏÂ-¦€Äf¶€ÇÉp†#Mxìµåbº5ûâÝL‰³ªtK ðy·«æÇõ¦ ú{DÕTº>“2ÒDp9Å&ƒ_˜òA|ÊLýTQ +endstream +endobj +3585 0 obj << +/Type /Page +/Contents 3586 0 R +/Resources 3584 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 3492 0 R +>> endobj +3587 0 obj << +/D [3585 0 R /XYZ -16.307 900.716 null] +>> endobj +402 0 obj << +/D [3585 0 R /XYZ 56.693 759.068 null] +>> endobj +3588 0 obj << +/D [3585 0 R /XYZ 56.693 738.489 null] +>> endobj +3589 0 obj << +/D [3585 0 R /XYZ 56.693 691.479 null] +>> endobj +3590 0 obj << +/D [3585 0 R /XYZ 65.161 692.163 null] +>> endobj +3591 0 obj << +/D [3585 0 R /XYZ 56.693 644.655 null] +>> endobj +3592 0 obj << +/D [3585 0 R /XYZ 65.161 645.338 null] +>> endobj +3593 0 obj << +/D [3585 0 R /XYZ 56.693 597.83 null] +>> endobj +3594 0 obj << +/D [3585 0 R /XYZ 65.161 598.514 null] +>> endobj +3595 0 obj << +/D [3585 0 R /XYZ 65.161 587.555 null] +>> endobj +3596 0 obj << +/D [3585 0 R /XYZ 56.693 540.047 null] +>> endobj +3597 0 obj << +/D [3585 0 R /XYZ 65.161 540.73 null] +>> endobj +3598 0 obj << +/D [3585 0 R /XYZ 56.693 493.223 null] +>> endobj +3599 0 obj << +/D [3585 0 R /XYZ 65.161 493.906 null] +>> endobj +3600 0 obj << +/D [3585 0 R /XYZ 56.693 446.398 null] +>> endobj +3601 0 obj << +/D [3585 0 R /XYZ 65.161 447.082 null] +>> endobj +3602 0 obj << +/D [3585 0 R /XYZ 65.161 436.123 null] +>> endobj +3603 0 obj << +/D [3585 0 R /XYZ 56.693 388.615 null] +>> endobj +3604 0 obj << +/D [3585 0 R /XYZ 65.161 389.298 null] +>> endobj +3605 0 obj << +/D [3585 0 R /XYZ 65.161 378.339 null] +>> endobj +3606 0 obj << +/D [3585 0 R /XYZ 65.161 367.38 null] +>> endobj +3607 0 obj << +/D [3585 0 R /XYZ 56.693 319.873 null] +>> endobj +3608 0 obj << +/D [3585 0 R /XYZ 65.161 320.556 null] +>> endobj +3609 0 obj << +/D [3585 0 R /XYZ 56.693 273.443 null] +>> endobj +3610 0 obj << +/D [3585 0 R /XYZ 65.161 273.732 null] +>> endobj +3611 0 obj << +/D [3585 0 R /XYZ 65.161 262.773 null] +>> endobj +3612 0 obj << +/D [3585 0 R /XYZ 65.161 251.814 null] +>> endobj +3613 0 obj << +/D [3585 0 R /XYZ 65.161 240.855 null] +>> endobj +3614 0 obj << +/D [3585 0 R /XYZ 65.161 229.896 null] +>> endobj +3615 0 obj << +/D [3585 0 R /XYZ 56.693 182.388 null] +>> endobj +3616 0 obj << +/D [3585 0 R /XYZ 65.161 183.072 null] +>> endobj +3617 0 obj << +/D [3585 0 R /XYZ 65.161 172.113 null] +>> endobj +3618 0 obj << +/D [3585 0 R /XYZ 65.161 161.154 null] +>> endobj +3619 0 obj << +/D [3585 0 R /XYZ 65.161 150.195 null] +>> endobj +3620 0 obj << +/D [3585 0 R /XYZ 56.693 102.687 null] +>> endobj +3621 0 obj << +/D [3585 0 R /XYZ 65.161 103.371 null] +>> endobj +3584 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F52 695 0 R /F93 909 0 R /F95 923 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3624 0 obj << +/Length 2144 +/Filter /FlateDecode +>> +stream +xÚÍ\Ksã6¾ûW°r² ’»§L“LRÙlìÝMÕ$˜‚,”(’CBöx}š¯H¢GNS$U9¸D ÍFèïën4õ<ê½»z{wõæ[I½ˆDŠ+ïnå)NTà…Ì'~àÝ-½׿˜ÄèÒÜ,¸¤×?eΔÍå*+š ·n¿Îâ·Y¶i¾üzûãÍïwï¡›c$’²ÑvëžS®qeÕ ½3/„Þ•_õ.T@z I¢ í?P 0¯ß4Œ«êÆ«oî®>^1PO=æIETä{AĈ¢Ü‹·W~§ÞÚÀ"¢Ð{ª%·žd”p_ÁuâÝ^ýûŠ¶#AOŽH§[D„QÕØô粶¢»íÍ· R?‡¨î ‰P!44˜Ý›ÂÝ,¥ðøúÙeé?nŒÃ×¼ÈV61ä)+–¥ý¿!Ÿ¶É?É®Iï–Ö¤qÝÔt ƒYõZ}¼;˜<p/ð#úa5 Õï’  +åq…‘WouøÜGÚ>ÿëËxH ê:h³Jz¬~I˜b}ý’2Àxbz8ô E"M`l­°xðš‹_Z'9šðÎpHµNòåryä#/õxê©.wyž‡ „+Ø¡²éNr¾"‚†…$ ý3 ÷ÞÝ î‡¬4›oK³Ò»Ä‘]j]y,×»tA´a%²5n-Ú]C€-qÏùanßÊÛtiÒ¦ +‚'ÞÛ$ˆH¸l­úR†0úçk®3@%QLÎx ¢öŒ29à{úÇ~¼±xÀË( ‘h¹ÿ?ùR;l8Îu¡Á› 2z‚¨í'í±¶ªë§- Øê³£·¬ª{uQ*‘…„aJ*Ùê´£‹;k\ò|ÈÖAÅ¿ÊRGVzkÚVYæÒÌRšœ$F/w ÄË!G°¦œE¤¢PEÏÉ"FŸÍÈ"ÇúG²Èhc°ˆô §þà”¾Š9ØZK;¨ñi½M±2È ÐZˆ±»Q­šHQMfpQ>á²!>m5Pš¸1Å€Ó6^0‰ÙšÔ ¨ +$SP£Šá YÛóÇôð>Ö?Þ£oZÍs ïÛ!+e®ñ€Eªl\iêê>×ÕX ¨Å¦,³â|`Sø Õ%-B +¹ ›¸Ì϶y–V@®ƒ\?˜ƒ?Ý"`Påúó¡[@v öô19º{úÇ¡{¼±xt²IÀ[Âÿf›»ç‹çXÜN½{à²'˜˜G“ i óg¤ ÓãÄï“,ÞœK:1cxêééÀ£àÀ’ƒ¥]ö™$ÙS‰vI‡Þ|Òøˆ7ínVícØÚ[¤ä^Šˆ G$.à'6aézoï›Õ ‚Ϥ¬öñ‡„ &k³æ AT`Ît¬$‚G;Á`Ò. ¨›n¦]PúŸýÁbËF,ë?Y·ÆÖ–e\Ø_\b×ÓËÜÄV#càV›]Ž]W3èÙBöïoÿ¥"Š ©5â!`¶¿‹ÿ×€¯".Jy>$áœOœ„oõÆg£ RèôaPÚíU#Ÿó| cÍÇy=ýã8o¼±xÎó!íæaë _%º°«g좷F¦§Û]âlŽÍ*ÂI¶‹7ØS3Ò€Â|ÜÙ¢G'R_„RyQ<û²¦iál—äI)d¦ƒÌálN$CzÄ¥?’õDòhc ™…DŠÉw»»‘ÁÛžÄgn¸î<=ŸÑ‹ÞÕîòÙÀdœp%. LQH_£¿KmLõ0›¹ÜÃrtöôCçxcñèäOÂÁ•Å<ç]›ÍeüšÃ+ÉíÉ`ÇY±D÷€­‹†¤ä±mvê#]!é\bá°ÉcROÿH¯m쯇 +»˜ôöðÃ!Å;{¯œéBzÄ=R¡ƒP‹Å3Ö±qÐÒáÀ擳ðzä0®¿JXÿúÅiݶÌZøöG´?Á!:©ð@*€ØÇ;™ÛÒª¿*Æú¶öózûK¼÷y +ïX­"–G9LŽÓIhÉ…d$ ÛUµ/°£îDùóí2ôôdÔÑÆ`T÷òv—á{î,ΖØUB]¢7Ÿ-:‘ÁÚ{"w8¾~Ì +½ÉõÀÕ6î ¢ÄEϲpæÆ'>˲n¶9}Ÿô÷ºÎÁÀ¢BÒ*gÜŠ`äÑ|0ïéóñÆâaÎ"EXGšƒÎºè倴»r 4ÜPN—Ñ7n<ñ›l烳Ð0H<":ßÚ=¯,Ñ!0) “Ö7*j¡ý4ŠQx°ïìÃ:¿.AìqõÜ'*`ûPÒ¾¬œ$Ù —×OÕ}õOñº^Ïo¾¬õ §×7L^·wÜ“6W[˜ËöMçlÿÆs“ˆù}³ž PË­_·4õ^E+\‡²Zwi«w _¬|sB›ë¢y›4Ú¢ ~üM¹4/ÖÉÿ~*·Nq–®ìÃ֭·30 Bù|œ{¬~åŽ6ϸ%>óÿ&+4_!7ž—»þð«åY}Ûϳ¤no‹]Š$ýw;óÐ+Ãp.õç Üÿ%rmª¢sþIÂÊo\â +endstream +endobj +3623 0 obj << +/Type /Page +/Contents 3624 0 R +/Resources 3622 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 3492 0 R +>> endobj +3625 0 obj << +/D [3623 0 R /XYZ -11.232 900.716 null] +>> endobj +3626 0 obj << +/D [3623 0 R /XYZ 56.693 742.442 null] +>> endobj +3627 0 obj << +/D [3623 0 R /XYZ 65.161 743.125 null] +>> endobj +3628 0 obj << +/D [3623 0 R /XYZ 56.693 697.701 null] +>> endobj +3629 0 obj << +/D [3623 0 R /XYZ 65.161 698.385 null] +>> endobj +3630 0 obj << +/D [3623 0 R /XYZ 56.693 652.96 null] +>> endobj +3631 0 obj << +/D [3623 0 R /XYZ 65.161 653.644 null] +>> endobj +3632 0 obj << +/D [3623 0 R /XYZ 56.693 608.22 null] +>> endobj +3633 0 obj << +/D [3623 0 R /XYZ 65.161 608.903 null] +>> endobj +3634 0 obj << +/D [3623 0 R /XYZ 56.693 563.479 null] +>> endobj +3635 0 obj << +/D [3623 0 R /XYZ 65.161 564.162 null] +>> endobj +3636 0 obj << +/D [3623 0 R /XYZ 56.693 518.738 null] +>> endobj +3637 0 obj << +/D [3623 0 R /XYZ 65.161 519.421 null] +>> endobj +3638 0 obj << +/D [3623 0 R /XYZ 56.693 473.997 null] +>> endobj +3639 0 obj << +/D [3623 0 R /XYZ 65.161 474.681 null] +>> endobj +3640 0 obj << +/D [3623 0 R /XYZ 65.161 463.722 null] +>> endobj +3641 0 obj << +/D [3623 0 R /XYZ 56.693 418.298 null] +>> endobj +3642 0 obj << +/D [3623 0 R /XYZ 65.161 418.981 null] +>> endobj +3643 0 obj << +/D [3623 0 R /XYZ 56.693 373.557 null] +>> endobj +3644 0 obj << +/D [3623 0 R /XYZ 65.161 374.24 null] +>> endobj +3645 0 obj << +/D [3623 0 R /XYZ 56.693 328.816 null] +>> endobj +3646 0 obj << +/D [3623 0 R /XYZ 65.161 329.499 null] +>> endobj +3647 0 obj << +/D [3623 0 R /XYZ 56.693 284.075 null] +>> endobj +3648 0 obj << +/D [3623 0 R /XYZ 65.161 284.759 null] +>> endobj +3649 0 obj << +/D [3623 0 R /XYZ 65.161 273.8 null] +>> endobj +3650 0 obj << +/D [3623 0 R /XYZ 65.161 251.882 null] +>> endobj +3651 0 obj << +/D [3623 0 R /XYZ 56.693 206.458 null] +>> endobj +3652 0 obj << +/D [3623 0 R /XYZ 65.161 207.141 null] +>> endobj +406 0 obj << +/D [3623 0 R /XYZ 56.693 170.984 null] +>> endobj +3653 0 obj << +/D [3623 0 R /XYZ 56.693 144.125 null] +>> endobj +3654 0 obj << +/D [3623 0 R /XYZ 56.693 100.588 null] +>> endobj +3655 0 obj << +/D [3623 0 R /XYZ 65.161 101.272 null] +>> endobj +3622 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F95 923 0 R /F98 924 0 R /F52 695 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3658 0 obj << +/Length 2036 +/Filter /FlateDecode +>> +stream +xÚÍ[ÑrÛ¶}÷Wp¦/ÒL @€÷>µi“6“´½±¦·3I +²XS„JR‘Ó¯ïR¤l‰–ìeI&}±h +\,{öõn<꽺úvv5})©’0à7[z'ò4󉯼ÙÂ{?zgkr;žpIG?¹ÂæÕåÒeÕE±ª¿üÎEß:w[ýóÛõ›ñï³×ÐÍ„1JYY».>%6_Y[äå×Ð;ó4ôøeï"PDqíM$ UÝ¿R`PéÑ´ú`<(¼ú~võçóÔcž Húž + (÷¢õÕûß©·€ïÀ"Bííö-מd”p?€ëÄ»¾úß­#AO"Â=h¦d¸ÉÁ¸ £Aåć±½‡½÷F)ý’9¹”ò$Noê—<1D„ ⵩Ù!|K—$nÌåhW>·¿­LzsøÊ”–?Ž™ÕOÌ­M««µYÔ÷ +÷0*û¾Áõ‡¾™D©òõ÷}o2·Œ/¸ ¯Íuxh¹CyœF¶1ò FÐê:«ò…œF^™H¸€±¥~eõçò¤ÝÞÝ}>ˆÒMD .¼ss›ãIQ¾.̧¥ÿO‡«÷°“5xIîò¤² YWš-?^æ d9SÜ ´&ZÉ2_Êû’Bö‰Àã$„Ϭ·î@)²àÐAe˜•­»Ú—„¬i_R¦‡cð$äaÎî f7^uñ®FÓɈ׌p*ªýf±8I‚Çv\å¨çÛÍÆA + —ü„j˜Ú®á ZžonŠ"‹çÛ’0qí·‹Ø–ØµN‘AÛ¹l‘ÇÙ[$J@z¨. ¹ðy™k_ªŽ¸–ŸåÚ7ñüßͯÉY9LIÜïY)`* ;0ëÛa“TÒb YM²ë¸X(^…Üíì™5ÈD‹©µd-­‡£Ö†ýnÔÚÝY<µJE!@5µ¾Ø'8’)R³F’[bÓnlƒ¨À«I}ãñS£A:[Øõ&1Òa@-ÎaÓÆÙ=`ùºØAu|‹³¼ñbÏSÊc:ï7§ö;⦳³-p#CÂY-Sbd‘™×pLÀ¹+V¸–Y|³*šÉ:½œ¬‰]h,šyÝ¢`ÆÉןµ`, T«‡‚Á?[0ÌÆÈË%ù¿»l(.¸èsP庿Â)¤¨ >Pá0ÓÿV·ájºpÑÜ¹Û ˆ´Év³¸'ðg³Jh WP!ˆ‡#ƆýnÄØÝY<1 +¡ Ó51~£'&l1Ar¦ÛM¿y³çÆi^˜$¹@vggý6Û¬w5ÔŒ- LËÊ@øþ1o÷€SûÐÙÙð἞jkQ%Þ¯G¡Z“â³eñ¦øBÀéˆË¦c¨¬]Óò×-·s|³Í6.·mÑÁ!ÇT8:NíwDGgg[ ƒ„ué…†»TH‚ÎûMð¥‰â$.Ð ƒÊ鎟ҨҿrKÙœŸ åÏC‹A¥Ê‡CÖ‰ùŽÀêêj \1I|ª+\å©Ùä+×Ô{û!*«ïËÃ1G&¼ßÕŸì J•€U’‚†„úì³*IdÓBRœ’¿]¿™\›;—>!$å—’¥ÊOJ…xÁWxi²¹ÏM>ø]–¢Í6‹‹¿*ÁøºÌɇ]¾;“˜”«ižEÓÈ­§éÎ$ùjº¿=ýÕfsSÄkò‡ùhjÁùäuôä‘'B‡à¾8øòR´ŒÑû+V]á²×/÷½E8œbõ)|3\Erj¾ovvÏ›>„+}¿µˆ•Kk·ˆ—q9ä°D˜£gfSô<‡£7-#·n[´Ð·qäÒ6r¸¹·øĺbfÖ¶°YÏ…Ÿ¹µ)Vìc‹)En›ž[“5”O„ÿ@‚ÖôQ#E ¶n3A2éñü×;Âö»A¼»³ŒkI¨ }â³ð0Á63åùÀ*(,Ôp%gÃ~ÇÀvvOž\s¨\êÃAÃÀu›c}‚ãåÏÈÂu[l¶ÿ †Þ­l†ä¸ë__! Üíz¦AôÂ]šm‚œn2³­ž£Glmú>ŸSÏ`ùÅ‚-„{MO£®éqOÿ˜6Nû¼DX«÷2È«+©³­”F¯úx .S} ýSŠ>.8áŒõ¬Wö¢+Mù±¿=}¹‡Ê‹*·1¢ep½Â}‚ÐÃéÎÙþHé`³î©ýŽ³ngg[̺\y8ïÜB²ìõz¿d{cS›ÂkÁn¶= éÒö“¦þǵûaööMÏwjôÙ êûÃ!ìÄ|G€uuµ¾˜O‚âÞles´`-¢6cmjæ vË;syÞbM=³K¨@ÓÈö¼Ò=›ÄDXjÂ.;›Ì,Ù¹l§¦I!-ÐÁÂøj8=Ý°ß ÝmÊI k=ýc>X~›÷=ýTr£åÖï6ñS!þ ¦½+:À¨M^j¨)ÙpË ûó²³³ø¼d!xZeå/ûÃìöÔ2¾ë9{çÛ›s‹ _±@IÉü1b©á¨¾_ŽÇ3ìßð5¤.²º½+lš?Úk3ÉùšÈ0€ýXPBƒðŸü øoÇh@Ö +endstream +endobj +3657 0 obj << +/Type /Page +/Contents 3658 0 R +/Resources 3656 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 3492 0 R +>> endobj +3659 0 obj << +/D [3657 0 R /XYZ -16.307 900.716 null] +>> endobj +410 0 obj << +/D [3657 0 R /XYZ 56.693 759.068 null] +>> endobj +3660 0 obj << +/D [3657 0 R /XYZ 56.693 738.489 null] +>> endobj +3661 0 obj << +/D [3657 0 R /XYZ 56.693 691.479 null] +>> endobj +3662 0 obj << +/D [3657 0 R /XYZ 65.161 692.163 null] +>> endobj +414 0 obj << +/D [3657 0 R /XYZ 56.693 655.012 null] +>> endobj +3663 0 obj << +/D [3657 0 R /XYZ 56.693 627.459 null] +>> endobj +3664 0 obj << +/D [3657 0 R /XYZ 56.693 580.844 null] +>> endobj +3665 0 obj << +/D [3657 0 R /XYZ 65.161 581.133 null] +>> endobj +3666 0 obj << +/D [3657 0 R /XYZ 65.161 570.174 null] +>> endobj +418 0 obj << +/D [3657 0 R /XYZ 56.693 533.023 null] +>> endobj +3667 0 obj << +/D [3657 0 R /XYZ 56.693 505.47 null] +>> endobj +3668 0 obj << +/D [3657 0 R /XYZ 56.693 458.46 null] +>> endobj +3669 0 obj << +/D [3657 0 R /XYZ 65.161 459.144 null] +>> endobj +3670 0 obj << +/D [3657 0 R /XYZ 65.161 448.185 null] +>> endobj +3671 0 obj << +/D [3657 0 R /XYZ 65.161 437.226 null] +>> endobj +3672 0 obj << +/D [3657 0 R /XYZ 65.161 426.267 null] +>> endobj +422 0 obj << +/D [3657 0 R /XYZ 56.693 389.117 null] +>> endobj +3673 0 obj << +/D [3657 0 R /XYZ 56.693 361.563 null] +>> endobj +3674 0 obj << +/D [3657 0 R /XYZ 56.693 314.553 null] +>> endobj +3675 0 obj << +/D [3657 0 R /XYZ 65.161 315.237 null] +>> endobj +3676 0 obj << +/D [3657 0 R /XYZ 65.161 293.319 null] +>> endobj +3677 0 obj << +/D [3657 0 R /XYZ 56.693 234.852 null] +>> endobj +3678 0 obj << +/D [3657 0 R /XYZ 65.161 235.536 null] +>> endobj +3679 0 obj << +/D [3657 0 R /XYZ 65.161 224.577 null] +>> endobj +3680 0 obj << +/D [3657 0 R /XYZ 65.161 213.618 null] +>> endobj +3681 0 obj << +/D [3657 0 R /XYZ 65.161 202.659 null] +>> endobj +3682 0 obj << +/D [3657 0 R /XYZ 56.693 155.151 null] +>> endobj +3683 0 obj << +/D [3657 0 R /XYZ 65.161 155.835 null] +>> endobj +3656 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F52 695 0 R /F93 909 0 R /F95 923 0 R /F98 924 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3686 0 obj << +/Length 3471 +/Filter /FlateDecode +>> +stream +xÚ½Ërã6òî¯`Õ"UY0A ˜=M&;ÙLev’Ø•IU’LA3©ðáG¾~R$EÏ@C+$ÀF£ß 4ä{wžï}wñÍÍÅÕê{1ŠYÀ¼›ÇÄ"ã…‘w³ö~[ü,3)*¹\Ô_ü¯¨eeš›¢4zk;¿-’oŠâ£yøõú‡å7oašÆ(¦Ô@»®Ÿ2Ym¥¬+Õ ³cÃì,T³¡(àÞŠ¢8²óGF|qeþဩ/þssñ×ð¾‡=Ê‹C/Š1b~à%»‹ßþð½5ôˆÄÜ{Ð#wÅ> +BíÌ»¾øé·”ð <ÑX“¤Nb„}fú`ªñh?ô~[aß×ë^ý*2‘Ûåõ‰ ´BDüعi ·)²¬XtñæwæU²ù]Kê­Xþâ~‰éÂ~q+enZ;±¶ïêâÀ=7 }˜s‚¢H-\ÏýXe«å +F?>ƒ+¬:âQ;<)ÚYª4Oäˆñ˜†|Ó.¸ !qVÁˆ“ü¨¿Áˆg-DáÀa¼Eá] +4‘Ùï>õëüÅËz_ïÒzûõr…xx'>ÊMšÉ›>½¶ÀÌ"¨&Qÿ¾ +ˆ<ŽxŒ”ð¨÷ÔQ$Ì PÌc¯”Þ¦/-hÓo'à [ Šv«ÑsáS„ç>°Èç2C_“ŠƒøÕË;Ï4~¶ª5ào‡8¨;·šuÓ”¹\¤â(›âo±Ù¸ ì B§¯‹VF?Zü)J7È·Mš­Ýëon¶iå½”»â^:nͯÓ`kžŸaâ¤~D Oä|Ò;?Sxç¢z‚ìFùuUoŽp#¿|¬e^¥EîÈÛªÙv¬<³ÓÀ{Yž€Cá¨l÷ûüÐ}™ºâ +ÞíDyeàÂ9>ŸÀáÏ”ØÙÈž ²Œ 0Õ"{Ì,KïEŸ1cß;ÊÃSѸ ¥t˜4e)ó:{rÞT*¬r“²­œ§ÀŸK#yœO,‡ðgŠåldOK +1u?@Pç(4Ž¦FŠ2Kåi†ñÜvzùisÖ\ºMcCú¬ÖìïJ•[œ(Þ!Gâü³‰÷þLñžì âM€@6 veƒqv`E¼XžÖ<óÿxóÀfÊ ˜2ü’O4eZÿm²··RäU‘·¹‰á£«ªL®’bw•?ˆ¬Ú^é×W¿ÈòVÔéý !Ø û{æ›!Ó&„Ç¢’—ß}RLŒý®…MË‘î>Ð1¤1A±¾trž¦ÍGÖ]ÓhÌŽm:ùj½v5Œ»bnÒÄÈ=,/\à +Q¿p’ËÇ`IdYÑÔ'$¿iRä' ¯Ò¿qÞ‹Rìdíê…]³äZ|”Ž¾:Í]m¯H’¢É§É66QˆHx°Ä·ƒxoP„(­³r4"”‡(&ñùt|¦ŽÏFÖAÇ9¤ÛœÁ\ +Úêãý”Ï6ôÎH×ø™d‹ê –3b(ˆlfx&em*W{ì¼ñæ½c ÞÔû#C¨{Ô¦òóîa+]3Óë_¾s4ßÅà AWDZ–ÑdŽîR€ý6M*gŽíÄKoRYÿU=±Åg±¼ðß?³!3Æx¬€Ÿî?¶Ã9Ÿ3®P;r–¥ô“€I ‹ +qÜr†bׄ…Òù$ø' +y Oð ',•x,rFÇù‡~}õF«Êk#Û.YËÙÝCzÆ„•#v>§;„?ÓëÎFö·`2rr¢e_ÖØÞÉ\–¹î—¦Ž¨Šº.ÓÛ¦v=ËrÝ{ë;—èßmÜoÞýàºû¸þb”…³í¥Å8:ŸŠ áÏT±ÙÈž b—ø´«»¨œ3Ö:Ùº +­ÌÅmæz„QU5fóêù´”BóÄ×4÷4Úg"qµN·OΧ>ÂÕÞå:ÍÅØŠœ  $fÓómšàÏSùȺ+‰cDˆÝ4ûÞ1†(ÊÕK{ “qœxNÒä©»7t6Úµ|¬g¨Ñ)r QóùÎÐgÊäLDOH‘6·[#5„?ÓLÍFöCE¢a`¸øºØ§Îå‹÷®›«Vؾ°´ï¹³ËÕNqp!Geg³ ‡V'ìqcŽXdƒÉd¹¶­n• i ™§+·9ò1í8ôËÍCš'Y³n«¶Ó*ÙymK¶U wcË»A±ƒG]Ïm«˜Ä4ÖëjT^=Q^¥wyª€$üuSÊAùø×#{H££jô®ûÕ¾kêbébgü»)Á±êÿwd.¢|2O2‡Ä~h¨£ßhx @—¾‡~lRmÝÒP H•W!˜ÁªwU@wä†æ¡­ˆ4ßðÖ}-ÞêÁ#Õ ÀNpF[ÛÛ­é˜óbpÜm1Ûå¢å +“ÅÍ’]Ì46ùÓí‰zØ\ÂS@•´8Û {Öª´€ t¯–*²Fñ“ņøQ¯¶ûAߕĈS>^ ªlÉèhIH²ßWÎyôL&°‘ |KLqûž€ äT^õöÉ`¼†ˆ˜©Ž.Õ²H믖”.*3_¡Q{Ü1šò ¸»Š0¥ž…¼79D,«`Øê[ÐRuT~Ë&õ²'É‘`Óñü úO­¿“ùÊ°p¼1²¯ž”%Ì;2‚åسÔúQ¡$º[¡=í훣îËMYì¦.æ¾ûáchð¿×™M— ü“¼º––÷5²2E“K|£ æû×_–€!³¹Ø·žR˜žŽ™ªs_Š0÷©É¼TŒÝÙ[x0÷”a\Ú­a“†ájøzë#¼[ßTØ Øï;½&LX· éù$x²tAfP›C¨ž.T€÷Ö½µ)B Žžé4À~ØåúæÃàN) µ€ÆV¹(ïa®ž,æ—æÉd2ýѽX^=j °qÁDÒ‚9Ó÷Z\æ¥9ª‹d_¦Šzûiríaðé$EÕ'Ž’½ÌA’rvHR&"P†ÈÇt„…Ô¦#j>+ªÆáÈpLñÕrFyÅçˆN'xÞ–¼5Ò·ÇüÚÓª÷V츱ZêUkˆÍ“Ñ!èæ¹'Ð\¥.YfºíÈdÂMŽ¢³•M&…$©c£öÇÕådð‹¢pð™4f &= A†”ò™±Yú”.QDdockdìwË¿'dæE?õí9ÿeiM¹§û{JÀÁÝغw®·3,Ã==ó°)û(dbŒ.!ìý\‚*mŽcÜý\B»ÙvøÉ +D,¡ÔoDLü¶ƒlå'ŠÌš÷>HepÐÛÈÐôµ›!WæK.ä±NBô+±Ù,C mR›‘ÛœEu‚"¨@5k¿ÒŒóž6èQ:zSý;¡`Ùo¥y©•KcRK+^û=´ƒ8B$ìäÅfþÇËöPÒ’©MÁ‘ÆH§†¿«Ú~“)üŠ€]V ¢ñ‘V @‚Ìö2”1-rnGƨÿ6Ãî»õt£â«÷¯GK²Åm-¹«h¶‚~ô« Ä7É‚ü¿ ×w +endstream +endobj +3685 0 obj << +/Type /Page +/Contents 3686 0 R +/Resources 3684 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 3708 0 R +>> endobj +3687 0 obj << +/D [3685 0 R /XYZ -11.232 900.716 null] +>> endobj +426 0 obj << +/D [3685 0 R /XYZ 56.693 759.068 null] +>> endobj +3688 0 obj << +/D [3685 0 R /XYZ 56.693 738.489 null] +>> endobj +3689 0 obj << +/D [3685 0 R /XYZ 56.693 696.656 null] +>> endobj +3690 0 obj << +/D [3685 0 R /XYZ 65.161 696.945 null] +>> endobj +3691 0 obj << +/D [3685 0 R /XYZ 65.161 685.986 null] +>> endobj +3692 0 obj << +/D [3685 0 R /XYZ 65.161 675.027 null] +>> endobj +3693 0 obj << +/D [3685 0 R /XYZ 65.161 664.068 null] +>> endobj +3694 0 obj << +/D [3685 0 R /XYZ 65.161 653.109 null] +>> endobj +3695 0 obj << +/D [3685 0 R /XYZ 56.693 608.471 null] +>> endobj +3696 0 obj << +/D [3685 0 R /XYZ 65.161 609.154 null] +>> endobj +3697 0 obj << +/D [3685 0 R /XYZ 65.161 587.237 null] +>> endobj +3698 0 obj << +/D [3685 0 R /XYZ 56.693 531.639 null] +>> endobj +3699 0 obj << +/D [3685 0 R /XYZ 65.161 532.323 null] +>> endobj +3700 0 obj << +/D [3685 0 R /XYZ 65.161 521.364 null] +>> endobj +3701 0 obj << +/D [3685 0 R /XYZ 65.161 510.405 null] +>> endobj +3702 0 obj << +/D [3685 0 R /XYZ 65.161 499.446 null] +>> endobj +3703 0 obj << +/D [3685 0 R /XYZ 56.693 454.808 null] +>> endobj +3704 0 obj << +/D [3685 0 R /XYZ 65.161 455.491 null] +>> endobj +430 0 obj << +/D [3685 0 R /XYZ 56.693 418.637 null] +>> endobj +3705 0 obj << +/D [3685 0 R /XYZ 56.693 383.429 null] +>> endobj +3684 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F52 695 0 R /F93 909 0 R /F95 923 0 R /F98 924 0 R /F57 739 0 R /F102 977 0 R /F108 3706 0 R /F110 3707 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3711 0 obj << +/Length 2425 +/Filter /FlateDecode +>> +stream +xÚÅYYsãÆ~ׯ@UR1™ +GÜp^²ëb§ìͱzHÕ®@p(¢„ƒÆ±’üëÓ=Ý3HVÒ¦â'ÌÅžî¯ï¡ï]y¾÷·³·—gç±ïå"O‚Ä»Ü{I ’ÔËd(ÂÔ»ÜyWÿVµ*µÞ±¿zßj á¾ëi0xó]W¾íºkšüçÃëŸ/ÿ×l¤yµã]­†ƒRã€Ûp»ô2¸= ñö(IEdÞ&yÊ÷§9L³Õ9}dàÏþzyöË™ò¾'½8Izi.Eâ^Ùœ}üÙ÷v° ˆ(ϼ}²ñbé‹ L`\{Îþuæ3þ ‘ÔAÄÐŽr!ý„xú±h¯¦âŠå®vª«O¾(†¤jéÛíæhÏá‰ZµEc ,Ú ŽÅx uÍðrO5A$r?Ãùf·SH#JW­Zñê'ìÜüh%€¢QŽPî "tšð(ºiõ @8A®åÊbˆ‹­Ú²žvĈh¥"1VÇ«áëM(ýÕ#­ß¬aÒõ×|¾®®qA3¯†o­IƒFtù{ØOrvƒÔ_}F=õ¤h½Û/é kJïÑA.2™,¸¬íÚͯªïP'i웟,zf—î¥Å›j<ÐjA Žž`63tRG"eùÜ(­Æf¾øTý#š1¡ää¤0jêºÓÖM°¢U |ó§ ˆç>nbxXÔL…Å :¦í®ê‡§àTñ ~`Ô…¦ªÐa%f@ŒÐxÇþD\ t/ÄWíRŵ›óߣ‚Îõì|ßu"[bÕ påæ'â9L›(ˆE”3Ëþ­Ñ|’lÂ3ü&C)¢Ðº b¦!\D°N’Ìœ=í½ -¥{Ã&L!‡e’ ÓF¨º芢š­êű+eò ›sd +™Ù«ýZf+}þŽdÔøTªØHðË@3áøåÅZÆäja²ºø~cÆaóÕ¤ó<¬b0[Ê3ë{†P3-ÇÄŠÀüzìˆNt/M1ŽU{E›ÝžÖ9ˆÁ +Ý4Ð2Ä–'¡HN:Ö\.°ä"ˆì)kBpØ}Ê0tæ¢0Q|/÷~òcßA +±½-šc­`]¯¦ï®ŽuqgbœIP'Q(L.‰BÅÇ—E ó’8±·0|ì1ŠîUqœ–Ê®îlTŽ}Ã1ÜT•ÅhS_1žj=”E¡¢3e{= Üâ¾UºV ÙÂy>Ùß±m› n³¯áÝ•gO‡š½iGÕ¶,Û÷ÝdŠT,=õà¥%‹¢„õ¬ÒŠ]öÃtŒÕ8UǬ Ì”ºhÙóˆüÂjör9êÈL¤~æfbLhÆDSEÝ•E áG-–J‘H¤­w± +\N_‰>ç’n)Èò\žÒ,àH„`@ëKCPŽ¢²$‘%é@¦à!Of°§¤jâP™nãAy¼‚î1ÛÓ0—!™xì¨u¯0,Ž?ë +™í”&ý< 16n3WelÈÚW[„eÕæ mÉCÑ\6‘ÞÙïÊN»#N,¤çà$¼ƒÆŠ_ƇÅhrŠü …uÚ+jˆÛÎòèµ®ôq^ÊTIQ|£zæ«q”Á ðúkx·¬l–ÚeàÏMªàFêì–BtY´&p±Ÿv½cBõk#Õ¯j÷rCPí¡hKcC…9PÜbJ`†¬`.ya4xß™†V&Ü]Áà}Ü2ôõLÇ#ý…pn@¿é¬·ƒm.a1zàÅ^éÔX2©“MàìviD}$ N<†¬ªkh*ƒ<_½©]½‚ƒ3æ.É]Cp©bÈ°é®m`cx÷6¦ø~jKtêLønÄ«è”]kö”›0Ó@óPm+Mö…Êtß}6aA«ÄÚÅ D°| +Aƒ ã‚g_ܶÜà$¦ÏÌ ˜&ºí0!Nú¯Þ6õ·k Í+(›$ŒrÂÌ_$^µûŽø8Ù€&‰zt¹_RãA•×6*b§]w:ä&™±:|à'Xü#݆«æ6ݾ‡lhø¶ü¸ §”O ú÷Ø’ ä\wÂŽ1¾™)¸íïø +9+lmï¸ÍÇ̶yHh€{™µj4Òè@?†d]4eS',™‘‘‘ß^ ˆ›¦„8b+7ÙõÊ©€ìsãàšÔ¼õ[ºwו“qçÙá¦j«¦¨Oíåít|¹Ç|ùW`e] K¡Ú¾ >nL]Ùîêû/%š€˜ýÖÄîzMM……·a081,0˜ü…#ìÆT¯sD0˲8Õi<0ú¬bi¢Ÿ¯@þïÄq÷ôcLÐRÅ[n! Ó-³RõZÄRÊät0¼ÔY}L¬¿ÓûÔƒäê¦QcÝl}<Ð §zœ¿]@%a¾µì’±Aò¥IÊÏmUntçv›ÖÌk̼OœÆ®.¶ª~ñCô{‡zÀ± ¾àÒGìC"_?‡Ø•M:Ä…‡88išü‘†5ÈO9'÷‚ü¾hxn~ùÍAµîéiÆßDÅ ȘóÕ7D\Óþff]ìæöO¶•?üî6IäŸ?‡22A ßÀuÀÙ+¦U‚1ÓŸ«±¨¬R°Êäš~¿ 1R·môñÉÕÒ%‹½rBš®2çi¶ôóÎdÞã6…õŠÊ"×L¥H¥&Dë‰jàI_¤q® ° C‘á=ˆŒŒà×÷ޥ㻮iºv¡Éò5ÄaÚVÏ“qt*è…§×,ijŒÊÇx 3Æα¯BßLB!Àm*|äeöþ÷N™ov``‰ïŸj,œè7 8@ Žw%ÜÁès&VãYz—£¯xòy’ø™åϯéRøpxJª¿`X±àê³êï J`žÓ›fý1áŽñùÄÿ ¸.cÄg…®Pµ‚£¥R-áÖ6Ñ=çÀ²—`MÃÿWŠ/˜º¿CÓHmËÌHyVlu)97ï^SϘj}xtßwÍRŽ(Ú;{Üœå”>—~é?ìÈ~’¿æ/ìÿÂZc‰ +endstream +endobj +3710 0 obj << +/Type /Page +/Contents 3711 0 R +/Resources 3709 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 3708 0 R +>> endobj +3712 0 obj << +/D [3710 0 R /XYZ -16.307 900.716 null] +>> endobj +434 0 obj << +/D [3710 0 R /XYZ 56.693 268.753 null] +>> endobj +3714 0 obj << +/D [3710 0 R /XYZ 56.693 240.367 null] +>> endobj +3709 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F57 739 0 R /F102 977 0 R /F93 909 0 R /F113 3713 0 R /F52 695 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3717 0 obj << +/Length 1220 +/Filter /FlateDecode +>> +stream +xÚÕXKoã6¾ûWèh5WoK½mÒ¦i±tã ¤{`¤±-„"’Š“þúR")YŠƒ¤EªdO")>¾™ùæAºÎÖq_g'ëÙ»³ÈuR”Æ~ì¬7Nì£xå$^€‚•³ÎËù €,–~äÎ?1 B77Œë†Ü™Ÿ?³ì„±kÝùzñañmý»:féy("½Û…¼' vR4¿Õéž“¨Óã 9=ŒWhå'Î2BéÊœŸ¸jÃU2§?ž7 g¿¬g73Omï:žÅ(Ng•z(v}'+g—ß\'Wÿ¦‰³og–Nä¹ÈbÕ&ÎÅì™k4á4â;jÚ*J[•ØÍÃyn¬Ay!ò[vs¹ô\ן}6b*UéÀQ›Åk«° #„-üh¾/èVe;L·VÅ;¼ðÝùí‹æfÅÕ­çfL²ÞíÙ +l¶—„hµjnÏÞ°#ø”4aÙ)³;‹‚f02²‡Vòt›kj ¡&–^š"ß÷”ÐÊŒn wýË÷£Á¼ñw„;AaœXHïó|±Œ•zE]UŒKÝiØŽª¡VƒMgK˜˜ßëPÉ ƒ“GÒ/õQ +6Jýè%ÑJ|Eq¶Gg(eÛ?PVK0=¦¿Y-$+‹¿á`¹nª=šTˆìŒ˜Ýx …Á¥RòU-a)¿6612aªW0Òì^2nþ(.低­ +šÃªð­Ë+àl6r¨ÅÄ›±f ÝÒûü »Å/ Ї9žíNcĸ#½þi§¦ý¨jÑùŽ(-µS†DÖ*_`Ï™õŽCP2¦¹e—åfaÔ¿/änD[S¹€›¡@â•xöPÅŠgˆÞ–Tx9·„†QÆ[”*º½šG#q¦|Æ@ÅüZX×Òß÷T¥XwÎY-²jx-ø @It‰78šxÏ×?¼íÔ»“%9‚ÐQèz/–|}UmyªvÒÉ×ÿ®’oüÿ£½Q¾„QA‘dÙ(‰Ù…픺‘â¦! FGI/gYÝ8 î­?ŸNëˆøñ€2ܽżhê Rùh|Ñ{õSt¼™H°¥bwê~hïÍ- q†ÛœŒ·møÍMb”é”çòaØÉuÙÛVù9­-Šãdfg±-8.AÚ˜Þ‚ANëê6¸&òpñ¤d> endobj +3718 0 obj << +/D [3716 0 R /XYZ -11.232 900.716 null] +>> endobj +438 0 obj << +/D [3716 0 R /XYZ 56.693 759.068 null] +>> endobj +3719 0 obj << +/D [3716 0 R /XYZ 56.693 738.489 null] +>> endobj +442 0 obj << +/D [3716 0 R /XYZ 56.693 543.889 null] +>> endobj +3720 0 obj << +/D [3716 0 R /XYZ 56.693 514.881 null] +>> endobj +3715 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F52 695 0 R /F93 909 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3723 0 obj << +/Length 1745 +/Filter /FlateDecode +>> +stream +xÚÍX[Ó8~﯈$ZíÔ“K“¦Ë,,bˆ)ÒJÀƒ›¸mÔÔÎÚeøõ{œØÎ¥`W#؇ªNâœËw¾sq|oçùÞ‹ÉÓõäê÷Ø÷Vh•„‰·ÞzIˆ’¥—Š–Þ:÷ÞO¯II° ³yûÓ7LÑ.·Œ· ¹×Ÿ±ì)c‡ö⯛W³ë?@Í<Ð*Ž[i7ò¶$bOˆê1h¼´'‘Ò¾H–h¦Þâ½Ô´ØíeyëÒŠ³Œ•À'ý¦"”ú†iAÊvýŠ99óºâìS‘[¿­M[‚eÍõ'×DÈ!?FÜ›·žp+ ï—+”œzÑÿ.¶\ê î‹l?,1ÉA%g¥0Ûx®!yøêÉ›íò.k51e>Œe?)DZQ\êÑSKeM/ß—:6'ÆzoYˆ L!~5Òí‚VøËí(p=“Ùö_$–ñ2:ÿB8»t¹b˜ß%‰qÊP¥Õ£±©`­ëåDÛ1¦Ž€ˆ‚wz{€Z*ÓÛ´…}à͵ÂsœD½É .¾QsIp¶ï ³[•:ÝÃ>BÒÊ@;¤—¸ý»j º›Ò«-c(:Ùˆ7rïÁ§oûÓï™oɸøa>C#Æ~»¯–’€0ºÇZòNh?.>Ñ‚\¢ Ip>L–f‡ú]Œ*ågQb±ï#¡!Û ×‚tdwäÎŽ³íÖö>ÓŠð­y ËGb”-ãœdÒV[¥™‘óX£] +6´Äaô¿®Á}ðctÒƒÐ.¼ÅµnÏê +l´{HŸÎJ7L9#‚>’Æœ¾uwG¨mÃô$Ÿ+p‘äGp“ÏX5íK·:E4S{5Õ¤bµ¶˜c× ÅŠ„衪×uõÓ:œ ¹ÊW!9¥òzîW¨d.Qej¬ê îâ|ç«LÈÑü$ìÅ q»g.ñmÙÐ}IIÕÆä9ÌMŒŽ»›ƒû„mÍ›7æ²Vï·«ª ijÓMÄbÇú¿¯Žqr‘ÄÂÑeL;N *¢%¬à;æÚ(q µå8tN¥ÔpÌsxû XÄÉ2JmxTŽ½13Ð$ —•ùÈnÀÁ:ëÒÝ䯥AØ#žÑÄ»éOÕ~Ñ0Å©,DÕÕ³®^tErÜÌ2ØU¨öd@IñóÓò5æ‡Z{ ‡¥#¡r»P‘C¾éýg%tgÐî5ÕM‰Û@Œ¿Bˆç¼Ð‡©½ëßÍ,pפ*qf°ÃeiØ!ÅpZî:¡>YˆñÀøî—0òÃŽuPômçI8„+^ŽªîbID†«¢;‘Ï«6¬éjBÀpvÈ‚GnÞšÐÚq˜2ù-×ûY="}&ãIŽiP|uÚgؤœ[lSpç5·oÈ® Ô^žj9ëeùmØÚÓ|60ñì¢)®n«Î­Á,« ÈãŠ>2ЀM^Qâ +Ýåðf¯B709gÚTÌ#$+>ZÞŽR² @(h¸Ò²Y ¬9 ã·²Óõ]m˜«ãƒy-Î> Fwü±Éý›ïƒ>« #Ttý¦AW ÕqÛÖL +xÝqØÓÐÐ;‹/$ïØŒf<Î÷žŒrÔddLE¸ lAsPOò»¾™z;Œ²€$±g!ÎtúÕÂƭߎÄø±#¶¬”µ#Vô¥\ß\¡ëçÎ’â”k +Áà£Òvp±Æ©Ù|TŽ°:wÑS·“6)ëù•øa$Èe¦‹öŽoOgŒ|´5”"”Æ©ýh;?Ú¾EªÌÂpðÿþZ[Ýe#LxQœÜÓ·Z×—õ…üdõ_>¬ÿx«v +endstream +endobj +3722 0 obj << +/Type /Page +/Contents 3723 0 R +/Resources 3721 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 3708 0 R +>> endobj +3724 0 obj << +/D [3722 0 R /XYZ -16.307 900.716 null] +>> endobj +446 0 obj << +/D [3722 0 R /XYZ 56.693 759.068 null] +>> endobj +3725 0 obj << +/D [3722 0 R /XYZ 56.693 738.489 null] +>> endobj +450 0 obj << +/D [3722 0 R /XYZ 56.693 122.884 null] +>> endobj +3726 0 obj << +/D [3722 0 R /XYZ 56.693 92.499 null] +>> endobj +3721 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F52 695 0 R /F93 909 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3729 0 obj << +/Length 1423 +/Filter /FlateDecode +>> +stream +xÚÅXK“Ó8¾çW¸€Ã¤ ++–¿ØÚ, Å µLT [‰]ãXÆ’ á×oËzÄvÌ KÍÎœ,ÙR?¾þÔݲçìÏy={±ž-^ž“ $ôCg½uB…‘ã%ZFÎ:s®.>Ð’Nç®x\ ·¬Q‘ë/Yú‚±k5ùxùvþyý¨q1FI(i—âXRžS*¸ü Ú±ƒöp)µ¯ÂE~ì¸J"­?öA`_,Ôû¡Ü8ûs=û2à Þs°„(L–N”`z¾“îgWŸ='ƒo`Z%±sèVî{È_†0.ËÙ?3O#áý#{• ì…ʦO¾tVŒ·›çâl9ɈÑ*ŒáC·ùy–Ñlw‘±T :0å`O*ÄZQ·•¤Ú¡¢BÙSD+²)Ͷš4ðNЩù:/øØiNÓë¢R‹R¶¯KÚ…ONy[׬#õ‡¦EµÓo‹’.j"ri?7Ô­ÉŽk|…ÈÕ²'Ò 5,ª´l3j&êÙ‘G:ÚŸ?JÆÂÇ8ˆƒx¡¦×U±ËEyœr—¤)+Ifv +¦ž/IUÐRßÒ"£g^× ûZdÖokÓ–Ñ6zÒÐ/-å â>⊫íbxåwË•ŠzÑÿ)¶<ÕAÍ‹4Ÿä«DÃJn–Qð\Còäíów¯Õð+)[5>e6Œ%XsέJr©G#RY*kzéø¾Ñ±9°æZ¯-‹kjSðgFº¿D ÆJú›í(r=›Ùö?œ,ã`Å*÷;mØÓ)_ õO§Äxe¸¢ôhOìY°ÖõEÜ1¨ªADÑœôöµ\žWbÏmY²ÿm€ž’éj…ç8ñv“ ¿ ¢nJIšŸ ³K¥:íÀ CôVÚ!=$ê±è Z€MñbËŠ‡Nvâ @wàÓíþôÃ{æ[0Î~Ä€ÏP爱ßÄîÆ\âCåò—ÿO2±T”ÈpÑ@î“È@zÛ“•,%%ª ›åaHò7me\ŒJ·µŠq:þ6Eu ¤TmL–A‰bÕ8‘¤9à;NýÊ<·3¯­ÜgÜ®kø2©X†YnÚúD-v¬¯ñçϧ)½µí“x*s¸g‹à;i´QüÈÝ xXQ'´>Æ« Œ–± ©®G(^šrs)(Èee62ê8ئ§ÖA^Ò)¥ÜvFSs*´Ð¢ˆÙ´,xmÛ¦Î9ƒ=Ñëé7 ÞÅO‘“OV(Éï½Æ›”ŸÑoHVTµû ´wИÔЮ†×›£€nI[>\/r»¥†;D–À– ¶/¾“Þñ5gäTN•<>ì,:}ôžãò7ûªmâ9;¸ÐW¿;ãÔк$)}dûGé¼ζa{Ãdh¹‰ #H$ƒM+¨Ë©˜â#× Më”h6tˆ$͈©Ó—¯lØAÆá¤Ñ˜Ph4 •€îßZVŸ¿ Âà2òEfÒѽDŸIe» Ž< 3{˜„;?m}j™‹»•Eºl0“á¾_”Ç37}.Ï\Æú~.—(–—wi*^¡p°É¹r±'«Ê<©ú0¨k3Ù®Ð2Ôü_› +]Ó:÷(É’Vò•-ór’“¹%wŽƒ ½cCi¥F{’éwóŸ¢Ó=ÀÇ+E¡A[üØÊÀCKŒÍ”ù¸DG¿B0Š0Âjܨ(C8e· /Ž` Äóï6AËëiX[KõGRZ´»gjÔšòËÜSã{ê­X}4ÇÚ ’ÏE}tÍDÖìÇ8ôVQä©äXM²èƒô^ß@¡àá)ÔÜ`f"?NîŽC+Œ¼0ÐZÞ‡u/dëÐSÛ‚«ÁûšVï·Û"¥Ã²ÐW>õŸnåÕɯü¦û¦n3 +endstream +endobj +3728 0 obj << +/Type /Page +/Contents 3729 0 R +/Resources 3727 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 3708 0 R +>> endobj +3730 0 obj << +/D [3728 0 R /XYZ -11.232 900.716 null] +>> endobj +454 0 obj << +/D [3728 0 R /XYZ 56.693 299.263 null] +>> endobj +3731 0 obj << +/D [3728 0 R /XYZ 56.693 270.255 null] +>> endobj +458 0 obj << +/D [3728 0 R /XYZ 56.693 215.132 null] +>> endobj +3732 0 obj << +/D [3728 0 R /XYZ 56.693 186.124 null] +>> endobj +3727 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F52 695 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3735 0 obj << +/Length 1776 +/Filter /FlateDecode +>> +stream +xÚíYKÛ6¾ï¯ÜCl`M‹zkƒ’¶i$-šÝ’h‰¶K¢+Rko}‡/ù¥ ¶iAO¤øÎ|óÍ iûÞÒó½Ÿ.žÝ\̞Ǿ—£< ïfá%JR/Ã! +Sï¦ôÞŽ_ÓŠA'Ó öÇ¿rI…é.xk:re'àÅ3Î×æãÍõËÉû›pÌc”DZ‘v-ï**V”J¡¦átìepzªÓ£$EiyÓå©=? A`šg¦ÁA¢6^üxsñ×ñ¾‡½8AIziŽQâ^Q_¼}ï{%Ì(Ê3o«WÖ^Œ}„ ô+ïúâ÷ ß"á!x8@9ƱRÊ ãÄ(…c­„Ûå½bß÷VW“iEcŒRŒ°5ódÀ$HQ–b#ìfÅ,¦®%¦©Yã@î6%‘gÉO€×ù¦ß¨€ýñÓŠ7K3±eru$½éê9µâù´óIgÙï|?ØMp<¦âÒê'mÛUW:&È펲J-(‘]k+V¤YRqu –2hæ[óßÁš1€ù´,iiäˆn³á­ãÙk>VD%±[±mB¤Ëš”ÕÃÿ0L#”¦}®)îÓ1ÌP,sÒ”:TžðIy:BB8D8 La¸'Õž¶'šg‡9蹪‰¯JB±Þ’¶4_`ΆH2g“wfˆt’³r7m–h'*3¦bE·Í-_k¬Õ×hÍ]ÜTIwýTMåŠÛ3È"âŒ&‡Ø9–|´°ük¡ú˜³ûr£>ƒ7¤RV]ý½âÄ4-”ÓSõr®¯{ê«bkÛdÇ›O"0Hþç¿}ÝÄ_ð¡¡(Š?éqž£ Àÿ“þ “^9^+évìéÞhž¿SÎcÛá…x¸Ñç1~ÔD¸ÿ.XÕûÃÞ~U—7{£ÌíWÛß8qöö«õí÷üæûÀè£ûç›W/¿îø^ɺºÑ%(òñç+kpuÂpCüø{çÛŒñè[ñø[ˆñ/ê¾WÄ!߇³¡˜u <ÄÄF=7 ú^=­~ŽŠc§nZz ·ÿÞ^ÀC>G?/ÙúY†7ê%Éþ¦ÁEËk+N=¸z(!Ží8±ÇAÃü-Ôî׿ô<ûR©,·!=5k¾×V–½ž¸Z?} ·ä +1Ááþ…ôUŠá¬A×®wMÛ[VÐÑ^þɳË!Ñ ]I¹¹šÍ¶Û­ 'Ì]£ß8bö°óþD§VYdŠ‚n¤…‡2€¬íùYí}çǾ ²ÑZB˜u5øS»zFwð²̤®½Heh‡ùÙá¡u½´iLgfÍââH=欳{7ÚH¢`=™]°†ØTùhöè$gÖ5<›[Fª‘áSè~"XÅ(Z¢C÷íni;2R.j¶¤+´S‰ ý ÀI=êÙŽäèÍ€óýòŸ¥KçØ~ª›A'D ^Vñv9Ó*L?8÷:~§¢aÚÇÖÔ=½×Ñ:!£ô€ž%׿LjïØU[VYŽ«7•-†8uµ€”ا¾Ÿ°¶eËÕ}|Òs5û¼½/Ê¢"bu¬|¿ïÀ`S£ù©Ç¥œ“ëˆQ +ì––¬¥…|2ü+ à Ñ'^Û¥M8{ÑqöÌ­]îkÑ€KI©œê ãyÁHÿ]ôÕÚ©P“õ©óŠ®mû‚p@k§ÅC ôéK6LÝ +fjÌL[c+6Ÿ9û\uT)‡þ¡ˆ|ä'ù§üAñp"Ää +endstream +endobj +3734 0 obj << +/Type /Page +/Contents 3735 0 R +/Resources 3733 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 3708 0 R +>> endobj +3736 0 obj << +/D [3734 0 R /XYZ -16.307 900.716 null] +>> endobj +462 0 obj << +/D [3734 0 R /XYZ 56.693 759.068 null] +>> endobj +3737 0 obj << +/D [3734 0 R /XYZ 56.693 731.272 null] +>> endobj +466 0 obj << +/D [3734 0 R /XYZ 56.693 637.689 null] +>> endobj +3738 0 obj << +/D [3734 0 R /XYZ 56.693 610.404 null] +>> endobj +470 0 obj << +/D [3734 0 R /XYZ 56.693 541.333 null] +>> endobj +3739 0 obj << +/D [3734 0 R /XYZ 56.693 513.426 null] +>> endobj +474 0 obj << +/D [3734 0 R /XYZ 56.693 425.531 null] +>> endobj +3740 0 obj << +/D [3734 0 R /XYZ 56.693 397.624 null] +>> endobj +3733 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F52 695 0 R /F93 909 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3743 0 obj << +/Length 1476 +/Filter /FlateDecode +>> +stream +xÚíXmoÛ6þî_!xÀ6£K²Òb@³¹ë†µÝô%Ñ’`JÔHªŽÿýNI[ªR ]ŠX?$¢Lñî¹·çN²­Ì²­Ÿ'×›ÉåK߶"n`m¶Vࢠ´VŽ‡¼ÐÚ¤ÖÝÅ ¡ 2[¸¾}ñ†I"ºå–ñn!sµùK®Ûu7Ýþ6{·ùÔ,E¾ßI»•JDNˆí6hw¬h¼Vû2Q讬…¢Pé_-A`¸º¸ì.Ž´'ëÍäï‰âm˱ü‘g…‘ƒÛµ’rr÷ζRØh­¬ýñÉÒò¹^kjÝNþ˜ØÊö£Ѳ—rì ÃtïºþÅð¸¾^¾„#'+´ V°q<ü"MI:[¶r]»ÈeI®kR©¬IÞT»ÞV9.‰$\ î‡ëCwMÉ7TÎO²GðÓF)eÛî3™w«BtWRÖòðLí6r¶¨@y…iwg¢ÞÞ´Q?.D?Î…r`ÜT™#ÚG´‚‚wË3”’u×éóA¯$y?|ÿ݃Ÿ=¿4?L癲Œ§„Y¯…‘J4\+ȱ²SeÓ¶ DôEëS–Ä`ï”/`­c’ìpF´ð´A©ÈžÑQ† &àVÒ{Û·¯I‚¡µÛí 3+u ×ÞbT!/ñAG³cçL+‰€_—z§bÊ91Éñ{¥ë C;Îjd­;ËV“Í–1 õO暇àæ˜ó11Lˆ©Q%$ߘΈE‘«N=ñ0 úŠí»EF”ˆwJ?èÐzfÙÈj7€a¨MáÙœô›îà 6 ªy«®@±ýiëž±Ž*XÃAãôª{î…²®)cµøónºÕg¤"ü Á°Ù×'ä‘VXâ¢í²Ð“U@©v/4‡SÃÕ^`IÒðSlª怄Á¬QI1pZZÀu8åÞxz˜v\uck7n$Gº·Ö´n=Ùª{›éóm“üRe,d›:#hnÖ/×7ë7?®o烤_W-D~^óÁèµ/tºÆ§X)íHoÞnÖ·mDë¡D‘œŽy¿<Å ït!$¬¬) š*yÑ`߉ %Ò$(0:Žù RCÛ`Vˆq¬X‚'Žõׯ„Œ±ô<£ûA:ÊU(_3NÆsR»ç#þ¬I‡î„é† 2¬€KI)N1ÃÖžhј +6†ÆgÎÒFWÕiŒ‹›L f2wÅ-žÞ!2ŽëüŒòàÔ¼Û÷ò´,´‹bÊ’Ý´W££=.é |Q¥pV‹5¢ú^—‚™3Ó†Çc„hN×ð¦Äªî¹q{ñçæÕÛ›ÛA ?¸f F’ßg^%\~l ¾ü$R?†Ñ[!ÏžnVrœˆ<'rÞr.»·m—~ü›Á×Àæ†òF^,䮢§#ô¥ƒlx—þ,/–_€ÐǾ-/m01ú”OËÿj+n +endstream +endobj +3742 0 obj << +/Type /Page +/Contents 3743 0 R +/Resources 3741 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 3749 0 R +>> endobj +3744 0 obj << +/D [3742 0 R /XYZ -11.232 900.716 null] +>> endobj +478 0 obj << +/D [3742 0 R /XYZ 56.693 662.341 null] +>> endobj +3745 0 obj << +/D [3742 0 R /XYZ 56.693 632.895 null] +>> endobj +482 0 obj << +/D [3742 0 R /XYZ 56.693 579.152 null] +>> endobj +3746 0 obj << +/D [3742 0 R /XYZ 56.693 548.764 null] +>> endobj +486 0 obj << +/D [3742 0 R /XYZ 56.693 326.269 null] +>> endobj +3747 0 obj << +/D [3742 0 R /XYZ 56.693 297.261 null] +>> endobj +490 0 obj << +/D [3742 0 R /XYZ 56.693 150.92 null] +>> endobj +3748 0 obj << +/D [3742 0 R /XYZ 56.693 121.474 null] +>> endobj +3741 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F52 695 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3755 0 obj << +/Length 2042 +/Filter /FlateDecode +>> +stream +xÚÍXK“Û6¾Ï¯àm¨”…ø–÷;ÎÚŽíÊî¨j·ÊÎ"!‘;$¡ðaÍä×oÝàyÆN|ÈAE¼ÑÝøúënqçàpçŸ/¶W?‡ÜÙ°MäEÎvïD‹b'>ócg›;ÝËJ¦\­½»T/;lîU‹¾ ÉŸTöB©ìü÷úÝê·í[¸f-Û„!žvÝßU²+¤ì;= · 'Û#_ßD1‹½ÄY‡lÓýIƉ{…áEzãÅ«íÅïŽçŽpˆE߉7‚EÜs²úâãoÜÉa`Á&qNfeí„‚3Ï ]9×ÿºàd >³ˆçm„µPöð b¡ˆP(BØ]Îǵàœ[[=_­ý p‹ã¤æÔÈ`”Ž=V²–MŸö¥jpm+ÊÖ¨½ëô'|7mr«Ó'»d0œ ÀbøÈè­7Žmý¢ýF/}_º*Üö^U€4™-ü˽\…¡Û}ù$p@y‰O6%?Õ,´ñÜíëwËó‚ð½²ÏeŸ–¹FjG'*«tWÙaÂðÛ²½!ýe凮êä IjOrו½œ{Íý÷¡W?ÃÛM\tÚ`È#œ}|~uu[W‡¡XöÇ•ÇytÅã«\e; àõj­}íÞïÛ3h?âqës÷m-¿Ï¼×RU6´- ŲUUÖ oNCÜR< ãE:J¼GÌ5Å" ýúúוÂ¥îO²:å3ûnùP¥k$3ÎÐÑ"o>¼¹çK` öy­Gº™èþYo®N:ôªlryû„5güMyn/ÁÉRŒ¦‘Îo pcn`£ižÛ€j³|^‰Ð¥ÝúzݽE‹ÂRpòBåNŸdK'À×°¢&úý3'~­ÝaA™ã&Ù¶ª¥£€çò!“4³»ÃÑL¶à- Â0~7niTŽßvÒë{p§q$ÝÒRà·’-˜C÷À+áÔ>éH U\§£¿C3ºÒíýÐdš¨à}ס»ÿY:øt²‰®ºu*ý@Ç‹fqf_ÐÆ}¹‰³¹Ë›²ÞÉö’¶¶vÔXØxÿÕï'Ñs‚ÈƨÜöp³)Èå^Ÿ™U3“ˆŠú|㾡=ªÍe‹»Ì«Â²/ -Í¢=­(”#±žaïœ[ÙÐõª.ÿÐÀ®!z­Ò;{K H™ÚPÂñ≯y¢:ê×2„N9å>Ú³—‰†I-47%xø'Ï —X XÑ×Õ•ñÏüv=¾ »íªÇ ÈT‚o9ͼ»æö?{Ü^}‹hâë{ Ùh.Ê¡¯¥¼ƒ39†/X›3ncŽ3 äèÐÚ2Á°éè¸Ç¸«îÓƒ\” õqËk“cfvÖ)HæØ®îN3UJ´³¤tNÏ@?ò!z¦¬þ%›R¤K¾ÆK¾…%dÓ¾O=¡ù3î‰Ó,ƒ )i=ˆÝ¦جÃ~I; ”͘ˆémñÒ8¼vÑȨ†+ÿ‡K^5ÈA ;?–Z¾´1éÁ#_"Ï‘ŽHã#Òø=Ò̽¾þ‡ œ|c¦¸‡ŠÅ3>›/¦6O´ÇÚð0÷åÂfØå'”ûèWÊƖɹMMË‘rÆ0å7gbV%?H¡Ðç,7¶|­’È·5>ì>Wå¿Tu Añ|]0? +Ÿ6ÇLÛ¯ÓÑòÛéY¥ ’€ÅqdAš}IF?a~8Yö—,úz>¾7ÇÁ÷]~²#H?š¿ÖŸ¦C”_²Â‰‰ Fœb‹nØjÛ˜Y˜=¶ÑË4e°Ì"Sê³G‹$ËW:¢DßAãk[WÕ‰äEÐ-]jÑ…ŽÓ¦¢`q@¶þÁÌèÿËg2 ï5|/¡.3óŽ‡É“qõY¶Uz<ÚGÐ)?ŠC&‚„êÑÄ ð%eÌ¢$x"‹½>È^M©âT¦ŽŽ¥šéÉÛ^6V _ûÈá÷~ä®O€TÙ &{³ůNèenHò1ƲR.hË;K[¯FÍÿÞÔ%“3ò˜}Gú +bƃïI_/ï8ì…·u¦‰nè\CYÑTw×õ²þvE‡t€–~ý “Ó!%4¹mÌ!rîñ€3mþÌßâÿÊnK +endstream +endobj +3754 0 obj << +/Type /Page +/Contents 3755 0 R +/Resources 3753 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 3749 0 R +/Annots [ 3750 0 R 3751 0 R 3752 0 R ] +>> endobj +3750 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 1] +/Rect [489.208 664.578 561.28 675.481] +/Subtype/Link/A<> +>> endobj +3751 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 1] +/Rect [80.603 654.68 119.866 663.526] +/Subtype/Link/A<> +>> endobj +3752 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 1] +/Rect [102.521 633.32 422.322 643.218] +/Subtype/Link/A<> +>> endobj +3756 0 obj << +/D [3754 0 R /XYZ -16.307 900.716 null] +>> endobj +494 0 obj << +/D [3754 0 R /XYZ 56.693 759.068 null] +>> endobj +3757 0 obj << +/D [3754 0 R /XYZ 56.693 731.272 null] +>> endobj +498 0 obj << +/D [3754 0 R /XYZ 56.693 338.81 null] +>> endobj +3758 0 obj << +/D [3754 0 R /XYZ 56.693 310.424 null] +>> endobj +502 0 obj << +/D [3754 0 R /XYZ 56.693 183.57 null] +>> endobj +3759 0 obj << +/D [3754 0 R /XYZ 56.693 154.562 null] +>> endobj +3753 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F52 695 0 R /F57 739 0 R /F102 977 0 R /F93 909 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3762 0 obj << +/Length 1600 +/Filter /FlateDecode +>> +stream +xÚíYQ“›6~¿_Áøåîš³‚À€ÉÛ%iÚˤI›ót2“äAaÓ‰"q>ç×wÌ¥Î'y¸±v÷ÛÝoël×ùåìùêìé«Àub‡^è¬2'ôP9Kì#?rV©óñâ=e”Hz9÷÷â­PT¶ÃLTí@mÍâK‘<âKûðáöÍåçÕk3ÇÅAОv«öŒÊ-¥JêeŽ%H}-}F(ò–Î<@qdä/C80Z^Ãp¼ë`'QûNcºž“g?»N +k ZÄKg×¼Y8v‘ç‡0fÎíÙg®A â9ðZÄ $öðEŒ°¶JáùvŸóqŽ]×½xõΘÕ0ð<´ íæ•,Œ‰K/¸Øå|ÓN%[Â7â-¹ôÜ‹»K\˜kJy;*Hjæ”8ø¡‘ ÊdãåE‘6¸‘‰ ýð-}%öd™ó„ŽœŒQä"ÜŽ«64Љ9ŽcäyŒÆÈ?y^0xoü;Ò{‰áÒªt/Ù3)*u9cF4ZzD”ªòu­hûÈÅ®ÔRC¨Gj'æ€iÕ>Éz-a‡Ý.²Ú4ÂkÞ*7Çð‹`ßm]–y*WŒ&MÊéÇÙkrGfWæáwZ1û@xjfo^¾™™9c÷aµÅ ÉÔæä6BÆ9©Í¯É†Nb*xû›0"¥ÜsQÊ\¨JP;úänÎ¥¢$BûW-Õ¤L±£UÏÈ¿úF–“Fæ)›lD^3)¬W{èÍ’'Ofã­/ôÜ„ßVÛœW–F¬9ÀóQŒq{Àu–ÑDœ]ýöÆhýêÝXý‚ð’l¬KD­ÊZK^0ÑÅëº6‘ˆƒÀó}ϼ²Zø"§LP„Ùó*'ÆW×fן Vëº2gÞÜÌþ{\û××iJÓ ' "²T4£ºA¤V‚‘5eíBI*R´Ãœ‚íƒv‰|sË¿H†®-ܧ´}Ó•ØYBÚ3Gª6±QàF E Ã&?5+º +.Þt"Š’QEÙ¾]Úƒ‰ÆöÞ¼¸ƒœ"eiݱÞPV4¡iG ð7Ñòp„Âåâ9ð=%U¥‹ŸÑPQ°•¨Ik¾Š”ÞwzTmE:™)]Œ´56ío0õƒvúœò ËåöÜ5Yv¾&2OÎOIo©)k…HkvˆÉ¬‚! ô^Q.sÁåiKÚª®¸åTCªk(4_æk‘îGd¢Äè ¨…ÜÒ{Û…˜Û‹boÊÇ©°ðp¡&ˆ'7¿4‡0ªNN†­ð„Y¦¾#šµÕ0È æÇ> endobj +3763 0 obj << +/D [3761 0 R /XYZ -11.232 900.716 null] +>> endobj +506 0 obj << +/D [3761 0 R /XYZ 56.693 759.068 null] +>> endobj +3764 0 obj << +/D [3761 0 R /XYZ 56.693 738.489 null] +>> endobj +510 0 obj << +/D [3761 0 R /XYZ 56.693 229.998 null] +>> endobj +3765 0 obj << +/D [3761 0 R /XYZ 56.693 202.502 null] +>> endobj +3760 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F52 695 0 R /F93 909 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3768 0 obj << +/Length 1670 +/Filter /FlateDecode +>> +stream +xÚÅY[sÓ8~ϯððÒ²Ó¨¶“8 o…Â.LÚf€ÙVMe)HrÛðë÷È–äKÜ”îtÊĶ,ÛwÎùŽë þ½¾¾›…Á-“8 ®VA£d,¢ šÌƒ«<øvü…0‚y9ŽgáñG¡‰ª/WBÖzcÏEöZˆëúæëåÅËW@Ì8ŠÐr6«O»Ô;FÔ†­Ì2H‚HO&Fú4™£y¼Æ3´œ[ù‹98_ŸÖ?Qœ˜£·W£Ÿ£Žƒ(˜%(YN‚ù2BIY1úö# rXÐt¹n«7‹`…(ž$pÍ‚ËÑçQh=Þëwöt‰¢0©uúdzJ‹þv÷{ú¶4g,Ð4YÀBµù,ÏIþrœ„á±*·[!u}S9Ô\T5’¬ˆ$<#—Z0œV/l±ÄE}Iyýû=œ…_á¿èŸ«/êG˜[1ï> …B”z[jÔ±£gû¸V|-Q2ŸÀö˶ÁRÜ*g1¶Ï°$•®Ñ$B³p¢Ñ|:©7ÿU­h,‚ÖãL[F4a»z}‰æóÙÀÆÊö¤½SÜÉðvë‘îzØJ’‘œòµWø ·âhŽ’ÅÔú+z}!XJÌ×NCMÀV\åà0d&9¹ózDoD®†@à1’mZbê õ5Ç…{|DøšQµ9²B…}œbE³£çEÒGrkuyÉöb3Ë» ër§ WTpõûJGOœúÀ‡m>sgL“¼UŠªeß²Lp-cÞ`xÊD}/V@'.K8Øl³Lð¾8M5s Çk¢^¹3â ZFÍ’¦ˆrNá8e$Õ$׬‹­÷+kàã_DŠ¦Py¸æd…K¦MÝ:±ªUUÉ[ÒE·ÕÀ‘‘Â[DÑSé²s>ÇÊÁÐéO‘Dù”¼»-e"»îìªÐãEÖ¾²Îæ¤LBõЈÑ몄o„|¼×~Ç/-a¾qÑ®b\E÷>sýÅËRK{ezy×Eµ‘½öcÔr]Ó©nœ©8Ty*}«Û>¢V£ž9¥jò¦mÅ #VUûÕ}<4ÝÊâ€Ù ’²R¦Hpäó$èXIQ´ÕªÄôtÛB]¼µbódt`Õ*CÁ}læW6 ¨ö(rƾîK¢ÔCJ6•º‡½ß‰²KCzâ÷ÑãCgëB©´(è/¬©ØCK†KE<ã!E·‹¦Ä%\ÆJhÆ3ÀcÐEòtç ó´UØZ3úË9óm%³Ë•67é÷ªp +¼k¿2ž¡º5ç`ÍkïµX8ÜÌc˜âÉÓvóZüWÌ\m¸Á’b_2„cmªÏñÉbú9+âKžÜ ¡þÝ’‘¹‹Òå‚Û¹ÇØœîVxSçÕ\ÅôPÔ€úŠ5‡àÛ˜è½ꤎñ ¦Ì Ð‰ùs¬ª=_8÷ÃøÓTz;{v£¥=g-®¨´¡Sª‹¼Or=ä§[hB=‰,+o +šw©Y”Dh²´3Ê´?Ü̃ÖcÊW¢G9êêºÇàZÖزÓôdwqT@òåCV·ÍtšwWŒ.pÛë%”;G[b¯ô´L¡UùÎEÆŸu9õKÍÍ™ZÍvnxà +®¢ÏV+Êh«N{>ˆ´ªêÏ âsaòp¯ìmMŽ•-5S¢o ±7_ÈŠ{:æ €§ÛRn}§¤ƒÁÞ[°0aêßS¢ãÛÃÐ#¼ŸÖÝvÀë>µNz:KÒ¦…ïLi¹^{AJ—«U¿­Þ:ò¹&F*Ýb®˜·@ÛÕÅ–×ý^Ãó^10vþÑùÑŒ¤€â‹rÂhA͸è A3FöÙ0€È>/hÄ4„%'⌫[Ò¥mÊD±wÔCSèÕ§7ÖÞ7Lx> endobj +3769 0 obj << +/D [3767 0 R /XYZ -16.307 900.716 null] +>> endobj +3766 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3772 0 obj << +/Length 1575 +/Filter /FlateDecode +>> +stream +xÚÍXKÛ6¾ûWèP v±¦õ°$«=åÑ6 6E›u€I´DÛìR¤JRvÜ_ß‘ER–VIÛÀØô˜’Èy|3óÍp}oçùÞÏ“§ëÉâ§Ø÷2”%aâ­·^¢$õVA„¢Ô[Þ»éÂVd6cú‹ÐDµË­íBïÍÇç"*Ä}ûðûÝíìÃú¨™Ê⸕v§OŒ¨=!Z5ŸA{à­@{5Ú—IŠÒpåÍc”¥FÿjÓÕtÑþaÒœü¸žü9 @¼ï^œ $‹¼4 Pâ‡^^NÞ}ð½¾h™­¼ãygéÅÂ(5óî&¿M|ƒ„ÿID¬ìe†?imz†ñÙŠáqû»ø Žt2Vh™¬àC A]UBêÙ<ñý©»ž òy{rdàØòÚÊ+"•àÿZ|mýßÜR!IÖô@-ñŽ ZRÕ~ÆL‰vuÜÞ®ò}Íï)ZèA`Ó8ëYEhéG­â A}«½wóÀ‰/ènÏàŸ6R@þ†Kä/ øk›ì[Á˜˜…ñôØœ;¿Ê÷˜ïlyìñ,ô§‡YO͉ iœhV%.Ì;-º:ëî!¬–(M‹Ýþó–¦K†Ýœ «CQž“A©(õQЮe[à¨|‚ºÌÒ³ûÙ5Rï%§šbÖÆQõŠ`k^ž¸ÆÛuÏÙÞ®JŠÄ%£ªù¦Ð—¤B2š +¯1¯ð,ð§ þ'ê3ùý|(sw£VÆ>Š‚+æB#er!ʮĒ(Sé[!4‡ÖÒ>•XÞ3à… ­«Ú$ÌKîòBï±î‹±G%éµ CÞ°£ý~"º—Œ¤@ÊÅ/À7f|¦\i ±Qý\ÇEÑ ´-Ù<,jFù½=c6Õzß4ãfm]²uf÷˜„¶c…Kb!=™“ÆRbÊÆý0Dœª›vQPU1+”•Æ õ-ÔÂC¯Hßw¦õÏ("Õ݃ΑYrü¸á{.ø·^—"mGoæ IÙ<6༽ `‹«mrBY”´té}À¬¶I¢Æ £ášæ6âZ à»`ÓŠjƒq-Í)¬Aå¦Ö€áùùUm ïE–Ú¸sðâ?à_ïK.¨jžë&›k¢ÄÎ oÈ–»w\o«ZVoºöÁ.W•>œž¸%R’HÄô¯¦¸ô.©`S¸ÐT³ÑBpµv3°Y’R¬t%¬OÙÔ»S¤t½Ý«ôhKjG8Ј³‘ò1 \[yµM­† IFx1 ®ÆOˆ‰zÜ¢|RÖ;NŽL† +ÂhI54D8Þ0»­Â0L˜h¾4¶sÁçiÜ}ïÇþ?M/)È×LÃŽÀ¡SÓ5¡1ì±µ -™w\kßÂßè6! •ØÃÐ ‚N^14¦ ¼k<»ü¤ÙÊ4êÇnŽ/¹Íµ‡Ùx㪶ïÃJ/8ÛU W5—¶%˜…Ò¥™þ¾;i/˜¯)ߊpv¤çý0ù4#PÐÇr˜·fXºò†“òd)ÀX]BŠÐʶúg¢:Éf²u¾°=ã–ì0ƒù„æ£Üï)ƒìà7nÎÝÕõ\ÌX—;nØùúƒkK¥}'8Q™òŒ —@/c¶1 ’&æÀèî^õYâƒî4~¬è í"Iwp|gÅ<Çœ6V|·ZŸÔ©€ÊŽ±­rï¿èªŽ^~EM‘àRý¿ïŒÕ§lŒV(Š“ëÝÂQx½Ûâ‘K¨*Èúœ ˜ÃÂ.¨›h;y¹È!`í’à|F¹‘t$ŽKžùz­ ÜRÎ9ç@1çgPc…È뎬 s©ŽÎxÙÚgD=îüö¶*.G‚|D¼½(œ+߈Êa&uq Ê?D×ÕÀKZ6$âB~V``ù¨ W_uQäÍŸ “ë×·ƒLVÿ”ʸª Áu·1:º6Ç\ZØÁ¸S×NŸF3ÐÏ÷VTqt"~dF}33µ;ªžÊÏÏN&¢Ãiérº|0Ì Fºòà"d‡±ö¦â&,uyWéD:)PQ{âzæýc&òûÞ©~öŒýzé#?ɾäïÏÍH +endstream +endobj +3771 0 obj << +/Type /Page +/Contents 3772 0 R +/Resources 3770 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 3749 0 R +>> endobj +3773 0 obj << +/D [3771 0 R /XYZ -11.232 900.716 null] +>> endobj +514 0 obj << +/D [3771 0 R /XYZ 56.693 694.564 null] +>> endobj +3774 0 obj << +/D [3771 0 R /XYZ 56.693 665.877 null] +>> endobj +518 0 obj << +/D [3771 0 R /XYZ 56.693 612.177 null] +>> endobj +3775 0 obj << +/D [3771 0 R /XYZ 56.693 583.49 null] +>> endobj +522 0 obj << +/D [3771 0 R /XYZ 56.693 276.351 null] +>> endobj +3776 0 obj << +/D [3771 0 R /XYZ 56.693 247.664 null] +>> endobj +3770 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F52 695 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3779 0 obj << +/Length 1466 +/Filter /FlateDecode +>> +stream +xÚÍXKsÛ6¾ëWpr²f,„ñ•['m:IÓÄ:dÆÍ"! P@вòë» Š/ÙNÇÓôà1@ØÝoß·ël×ùmöj5{þ6t¥‘9«ù(ŠÄ P;«Ü¹¹øLÁ™/üнø“KRéᆠ=;óòŠg¯8ÿ¦'_®ßÏ¿®þ3 ÏCiêݮ呑jGˆ¬Ôk°î9 Xe}Å(ög¢46ö“6Œ“‹çúŸçGjáìÍjö}æÁö®ã9a„¢4pâÔC‘ë;Y1»ùê:9¼Ð2MœCóeá„ž‹ü ‚1s®gŸfn Ø¢ƒDˆ¼Èsâ F8ÙøÂ!V‘ ’S‰ýF®åŽ DJ¼f$ÑDlÂÕaGzá»Í|¹îEÉËÅ"ø¥žòZîkiÆæ“ÎæÁɘ~‰(Hi?/ÍçT2²Ç[•5§Õì9­ö In>*¶*\Ø‘Jb³¥ÒŒK³…rË>Ôa =±¡ª0§\ùÛ ÝÖnN6¸fžy—g¢îbDGƒpꊖ[ã_7ŠI 6"Zå·PàA"î 5[Û~€RS!kV‹5â%jóò$ű¼èzÕ˜¸¶'¢âeç©—Ÿ)Œ^U™mUmMå¶=”Ía .@<9ã±Nf½ß RU9yò¨.dÌüÈk”˜¬ˆqñ´©ÓÓ¬®$/è,)K†ëÊZL’¤AgMìyËX“\!3U;¦xTq‘|}´%3®˜pºb• ãfô‡óMcÓ¸{Ôÿwç-(ª¼æ·dL %ÐJÕ§œ{)¯»ÖÔBWKÓµZøÀî~®Á3ߌEÃÿ¢OÐ2JàE³øežÛ˜Jr0ž˜2”F ÀJTmzLé \ ÎÇt^¦`eédæTµÍ`KJ"p›+,xÝ’ÒByhžçysV:§Á@>a~œ€ÓF]²£Ó9XxÖíÓá½?“: :‘ÑÓ&ò;P$F%© © O8L`9`oZV—™ÍƒEú™v㙞}RžÈâØÉVyâË2-šÙŽ2Èoy_2_–ÕôQ¥²8Øê¡–`õñµ‰÷5ãm=í±Ìvzè…nêzÉ9?IÖ.)1UõžÐœˆnU½®…Òcvì“;άü¾úð~LÊJÉ»~M¸²±|òöãx‡½à·´ËËÿYy¾+©¤˜ÎR¬Ž¥Äw†évÇàO¶¬l¿‚¶PÄŒVê]5 +Âw áôE $òµ#^„’Þ"çfá¹*ÿóÌpfûô.€±¿DAdXÙÀ†3Æç~xqhU2è°¶öΰÃsN×Ü /ÌŠ5bnFÎÍ3¥žöbÑØîÁè%KÇ‘Ržq1ðáÓÂq»9¨}FÅ.òôXèëNH×S×€% àjâOPŸq¶#-çü` +ÃmsZJèÃ(ó@SÉ.ö¶*ð7²¡vÖ¯úÇ×økiôƒ~K)躖V(ˆì7O“Q]Z„UEÙŠ‰“x¿?µ1«["ÖÐÉ%NŸ‰ê“ *L ¨ìÊJ•¥}óì/-_¿HUÏ8:•$¸ÎáuA*褕­µø®b“$›šïTîì‘ÉlÓ²&ʯ_VÝ·XPÕ>¢~‡ÈÀa@š-8à„UïŽì‰)X¾œ>°mJÛ%N)¯®aO @ÃA<)æçŸóE°\Z¦œVØ+ö­"PCùö?6ô+5PªÕU#R¶kÚߌ g<èÀ¤Ù\ß«Œ ^ª&¢clC-2»˜± MÒ}J+.j‘ŽQ+Ü B%ÅýzætS÷x1<«Wî=z5~w ù±Îá(ÙÀ‚ÿk±ßð ÿ¼%Z.ßPúû›úYq K¢ôßüªø9–œ +endstream +endobj +3778 0 obj << +/Type /Page +/Contents 3779 0 R +/Resources 3777 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 3749 0 R +>> endobj +3780 0 obj << +/D [3778 0 R /XYZ -16.307 900.716 null] +>> endobj +526 0 obj << +/D [3778 0 R /XYZ 56.693 422.8 null] +>> endobj +3781 0 obj << +/D [3778 0 R /XYZ 56.693 393.792 null] +>> endobj +530 0 obj << +/D [3778 0 R /XYZ 56.693 222.03 null] +>> endobj +3782 0 obj << +/D [3778 0 R /XYZ 56.693 184.411 null] +>> endobj +534 0 obj << +/D [3778 0 R /XYZ 56.693 136.655 null] +>> endobj +3783 0 obj << +/D [3778 0 R /XYZ 56.693 108.27 null] +>> endobj +3777 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F52 695 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3787 0 obj << +/Length 1622 +/Filter /FlateDecode +>> +stream +xÚíXÛnÜ6}÷WyÒ^.©û&(Š¤MÚÜš4vI¸ãe-‰ªHyí~}‡·Ý•¼vÜ -‚´O¢Hg4sæÌP88 pðÓѣӣœK´Ì¢,8ýdÊò  1Šóà´ +Þ…oXͨd³y”â𡘴â·µv‹?Šò‘çöåíÉ‹Ù‡Óg fNZ¦©=íD]ÕL®SR/ƒv =‹µö$ËQÁà ‚50%Ë"ؘMŒ¢8ƒqœýz„'ðñg'KDpfmzE©±Â‹ïæ)ÆáêbÕl§x¥gLIزY”†;O•êùjápPÌNIí ³ó=Nqov_¬¹T¢¿šeiˆW5C]/:Ö+Îä1ìÎóðÐNºít:[gÔ%«ëØŒ„L!VHZG²@IVŒ£YŠVõ¢®y{f£N»ŽÑž¶¥ƒ„øhŸÅfŽ·öùä•Û;¨nPh‹À@L¬ž—¢âï1ŽXuö|‹U-Êst)ëc‚âäÌ3ßþ±VÁ<Ádºp¹a+½BöDŒ;zÆÜq‰—2"rqG·ItÙhq>€üOuèã—['¸ð‚VnnÏxNíðù,NC!Ùù»sY=ÎoGøÉÐu¢W.á]¤£ørÉEëøaÃÕÚ1ÅP׃Z{Úhiã@¢Qß +w¦hë«ýͼåŠÓÚâq†7Á#&×á?ðœu=Öøïy Ø! +€DòtièÁ;/ŽQ»P“ESç Þûùôå G{ûH‰±óý©'ÔZÂpÇ6ÁÊ5mÏ<¯©æ‘‹IC'±bÌeUC+7§ÄŽ§n`³nR$(Ï5!ÝkÕÔ,Œ2pñ›JáÏ–|›êÛ2@PŽö¸0ÅMAb x؃Š$û §7]äAgV¦°‹“/»l »øFØýÌêîèe_ôÖ‡­L1ŠÉ„_œ"\Ü~Þ,tÆZÖSÅoA?|ø¥îH–!—öÙ +Wæu2¤}¬ÇYhVhwÁÚsÃ÷›e7â°Ø0Úº“Ôš*;ºƒ]-ikg„ÖlýÞ÷Ü8BÛ œ(ôÊFLWÉ^4NjP6¥…Wºgû ¤Ìµ2ï\³YûÐZ{`àáK¹óˆb}#}VMé_íÒO2æóCu÷‹ÍfcŠÔ0TŠfÑ «]D' œ/H²¨Vmu‰t8¾×‰ô]¬ósÜ.Ü’›:„ ?˜ƒ‚F´>‹«`–ë¡=GJ”AO†j¡ä¸2ÂŽ\&Ü™|nûÀü©qÉA²y=‹HuËòuWºî&ãÅiöåÈ&Š‰£»‘Í7r3cÊÿˆÿÄÂÒE„–„¤#º(Pá9™ÉÂý\Ð4–$>›ÓFžp‡=¼ÖïQßîþA¼îÅï¬TF³ýUПvðÆØ 7UBÍÿd½˜Ú·—Ò:_lÚsÏ×îImõ/ò€Cë #’~ª¼ÕÞØÕ5öÓÉo¸ÚPå»Ò•ïNÝš ÷uÎ1xÉ! +‰'Woe¿ÿ ‡V•×ÍŠõãtÛ2Ž1Q5ô[/ ÖC{ì2|7Š“Û‚˜¤î' $˜XºÎ^i DK7õ´Ÿd»N*\]C›DBn: XktïæãàÍ„† `  x9Ô´Ÿ%8<¶»Û1È vŸÕ㔤aÍW=5 /ÛÙWCUvzå–×\¨›¨ï9×n÷wŒÏk.x¹»k+_,ÛjǨ>¤£Ìpw¨J”ƒ¬,@ ˜Wîš4(Bb8[ñ·(ÙÑ’Í%T¢®Ûjj˜®Ù\6×? +»ïù6v×6¹ß6m5þððʼnO¼jÚ1™´˜ôS m5-ËýqزOxšN>qbXéÁú‹­+ ã¦à…ÙßÞ<Øç =ÁPå ?Ÿì9)‡oŸš$dŸååþÝö4÷\òßÛöPæm¢‰x™¡.N®7UÈš(‹ýwS‘Ü_ü> endobj +3784 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [173.304 230.848 208.492 241.752] +/A << /S /GoTo /D (dot0) >> +>> endobj +3788 0 obj << +/D [3786 0 R /XYZ -11.232 900.716 null] +>> endobj +538 0 obj << +/D [3786 0 R /XYZ 56.693 657.341 null] +>> endobj +3789 0 obj << +/D [3786 0 R /XYZ 56.693 628.975 null] +>> endobj +542 0 obj << +/D [3786 0 R /XYZ 56.693 557.382 null] +>> endobj +3790 0 obj << +/D [3786 0 R /XYZ 56.693 529.015 null] +>> endobj +546 0 obj << +/D [3786 0 R /XYZ 56.693 409.63 null] +>> endobj +3791 0 obj << +/D [3786 0 R /XYZ 56.693 381.264 null] +>> endobj +550 0 obj << +/D [3786 0 R /XYZ 56.693 284.688 null] +>> endobj +3792 0 obj << +/D [3786 0 R /XYZ 56.693 247.711 null] +>> endobj +3785 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F52 695 0 R /F93 909 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3796 0 obj << +/Length 2305 +/Filter /FlateDecode +>> +stream +xÚ½YKsÛ8¾ûW°<©*‚Ið\Öã$oMkvw*™$BË|(Ûûë·nP¢,'NR™!4n@¾·ö|ï·“_ç'g/cßËYžðÄ›¯¼„³$õ² daêÍ ïÃ佬¤Pr:ã±?yÓj©°¹j;lè Ÿ·Ë_Ûöü÷ê÷é_óÂ6³ `yãjWú®’j#¥VF »^»'¡Ù=JR–òÌ›Å,Oiÿ<€Ólr†Ÿ€'fâÉ‹ùɧ“–÷½À‹–ä¡—æK|î-ë“ù^2P€EyæÝØ‘µ>ãaíÊ»:ù׉O–ð´ˆ[;ÊYà'¨ÓGÎc«…›æ}˜Å¾?½nײ‘ÐeÛ !Ú~ϧq<ùcþêí{ü-šoßýùþò·Wsü©äÒL&+—´J-š­X;Û·½Þöz¬14hÍ¿¢¢ê·Û¶Ó>tJ7kü½ìÚ­Û¸»>ÐååÛ³wÏ_~]“ø{4ùv¸Q· ­~º¶%€²–>Tì')õÑ÷ÃVheÀ{ྲྀ+=œËEUQhˆ…› ï¶RýT•œ@Â×}'Ÿh*§A<¹õ&|r¶ë›²l Ð.-“|"´îÊÅ”û“^ËzºIk„{kÙ±t¬fŽ´³rÔæ:#B³ltKêªäJ;až0“;)\¯ÒRÐR6r[Ñ4¨ üªûjf¹*cQ’ùJ—[gße[õu£˜:£±˜ÊqìÜ᪭ªvÊãÉÍPåÈ…Ô¢¬$y¦*•“…l6¢YZˆ«7ž¿»$}`ÈÀz#h‰0¾ølÌIê,¤X¤ >UÂòü ä G‘†¬ÏF@fähç–8aȲ„ãùƒ f'ð9m]Cl ßïs+,À#&É× 8:íãÎh±B´{ïö²ˆ¥©ÉvïåC:† ã½a?dA8/Yò1r +¹ó¢8ØáVUO¯§EóÝC©øº¬²s¼P`p ¶¬¥Þ´a´‰P™×mQšà”ÅÓé, |2Í™Ineq;kÖ ´x0Ž«Íðó¾… ƒWZÜi´æÞÑÝVà¼áà÷ÈÏ9Ò ‘qP±Á=Cö¸ïÇ(d~˜¹ÅþJuüJ,d¥èèaúÌ‘‚ª~¡K • ÉÄ#Yÿ€Ý¾ÂÑWûæ*]WgÅbE ´p2G"ÇM„¹J2VÛ²“…¥©û†MõIîÆ6½AÞŽ÷(*­Þ`ëÕüõï”y½‘s's~ȤI@ö¶6z:cÇþÈØoÚ*)lÿgš™T­6?SÇáÿ¾" Û@èA±÷­¦ ‘n§yÀL.,™£J˜ø­ç"MÉûHáåöüÍŸDz(h #gé_Þ]<ŸF¦‚`2Ÿæ!4‰¶—¢W{4º#µeÛW{Š]%Ü]÷Ûoµ- dPçêB@Aaˆ¹Ð…‰ÔŸJb`ãûѦ,†€éä +ìÙÝ=DYÃ@´-œ€}êK©+²ÓVt¢&:K9óó‘=.WÆ Áä²k±õÑ}›'ÌB®L2}¥¡?€Z,äé¤Á[ž`cÔ4nì¸ÎTMN´€:Û4ùä´.§ÁDAJ\Ÿbz‰v´Ý2$-YôÈV4';CÀï¾é"?f c»Òì@÷ÆtÆñl:‹}—+´W’€J> +š¦mfÆ\Orª[c\Ð Š»p:%f‡Z©Wnv·êÇö¶¢Nîrb'•’”Âý‘Çß¼5¡6øçylÀódr×öØË@ +ù¥´>#~*)8OÔmoÃDG]ä\ŒåP2 v•”¥9P/àÜáf R“ªhY¶!j+­±¡Ë@ìØYT¹n,,Eƒ‘ówèuùÌÏ¢q¡EÃîú+œ_ øë³)HEÕË/fNX3{lhg‡v%J±,üËñl`¹aC3Òˆ-E‚Ý Â†1=HããÒ۹؟l{Õxý£:ßÖvÓcO?¯K(åeei¨6¤Cl[—zóýí|¥MÞ ƒdÒˆZÂoiI `²ê\kò qÀ¨í»%µ‹vÙcZ3SJ…½ÃP-k(«ÜÊu'I°„{&ñ™ÅŠ‡ÜÖø“@ŠƒˆX“I©ñ»ê`úM×ÂÔ.¦&…Á˜q‡«?Þ_ÁØ3JS7Æ^Â06¡Krw±ÂÞp\uàâ;‹ÁÅ/DW•’æàÈNვé1UƒùêMI=xe2-ÈôæÐabCÙŽ²& ã¡Ã úÖ­`Ó´4h+ôrƒæ  A% mwcptü@Èù¾Í¾#cþÃl[Á9WX4ŒÞ4ÌÁ£,‡Û©Õ'pܬðGÙ@½÷©à ýœœ ñ)ªe_9¨š§ïBµU?L=îÓsfH¿æT 7Ʋ³-ŸTY ©Õå"£ŸM\ØY—ëvG@S…Yv<ˆð§ |Nù¥ð)GTÅ°e|Á´àˆ•\j0g˜f“K%e­°Ù.ŒŸ>—mO+5ø€RÊ )…°‘w¨3öÑËÇ<Ò¢%h5UÖÛên Ÿ˜wB+¤5ùÁùì“Þ¾Ø>Aa·¡ZvIÝQ +C›ž7Åa!àN¾WH[dµÝõ8±ßroHÿŽ ðÀîfžDô½§ª]iª]ä) +é%ÏÁý…TK,+¡Š†äªPäžbÆäs–ñýôZ—jY6p¿½±¹ÙcŸ¡÷Ž©W’ +Úq¹í4o‰%„­LBÅN1mœš.ÉìÙ0VüÅáA¬À‡óîÕŒ»Lçh§=,œ‚ãzQ+òFPˆâüK€gîr8¬Êô†Ñ¥®œÕâ–U²YC/¦ïÐÎŽf}<>3IÖ<#qÒ¼èïOû» øñgòÑRôð2³½ýðŸ-jøËŠBù¢j•v@ýÒ½Þþ@­”äü[/§£·Œ8y6Öâ ˜dgpòq€?Ú®Çþ03…p’Ïÿeÿ<€‡ +endstream +endobj +3795 0 obj << +/Type /Page +/Contents 3796 0 R +/Resources 3794 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 3793 0 R +>> endobj +3797 0 obj << +/D [3795 0 R /XYZ -16.307 900.716 null] +>> endobj +554 0 obj << +/D [3795 0 R /XYZ 56.693 595.527 null] +>> endobj +3798 0 obj << +/D [3795 0 R /XYZ 56.693 567.142 null] +>> endobj +3794 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F52 695 0 R /F93 909 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3801 0 obj << +/Length 2025 +/Filter /FlateDecode +>> +stream +xÚÍYÝsÛ6÷_ÁéK¤™"ÀïöîfÚÆÉ¥½¦½Xéu&éDÂb’ÐP-ÿ÷·ø¢HE²e7éÜ‹ˆÏÝÅîo‹U¬‚0xuñÝâbþ2 ƒ)IƒÅu”fAŽ#eÁ¢ +ÞOÞ²šQɦ3’„“7B1i›×¢³ µv“/Dù7¶óÛÕ¿¦¿/~63ŒQ‘$–Ú•º«™\3¦¤žî8È{iîqš¡ŒäÁ,AEæøfùdn?˜¤zãÅåââ¿ȇ’¥EdFiH‚²¹xÿ{T0 ¸Èƒ[³² "¥Ð®ƒ«‹_„NáIxÚqp˜Z™>’)ü¶àý, ÃÉ·UŪé,J’Éßv²þZ±fSSÅìP3ŪÊõß¿šõ;¤„›¢7SNÜB©:¾i%v`+é²6“ñ„J;FýZÚV´m¿×+Ø.7fê‰nx»²]±U¶Ñ[M¯Næo^õ’ióå(Nó± GfŽ,ÇTÀCA& Û«:>%Éä)N&¬“‡;y[ÖÛª'ÈÝ‚áÙtŸÖµmMÇëø~£k4^ënÜYõ¸ÅØžî'QñaHXõµ=Y)šF´óMžc[J3ûù‰—kÊêaª~±¾j¸Za2óú|‘ä~0½Ù6K¦}¬È&Z¢Õ¶cò98ëŽÂ9ìÈ 0°k•ÆŠ´íëN4ÖÏÂÆÏbiœ'ê¸ –ÚJÖ‡È'1ŠsìñkG~Í:­×"ŸpÇ¥ö»é˜tggµ:8-Ïâ„èí†ÿ( SÏÔ¸Q¬Ct«DM—¬>"URᢗʉ &€«r²„ÚŽ÷bí—Ñ) (ð#xe"P0‹ÃåF _Û•Æ]H‘:,ɤæRÙ–¸¶S½mìð­×Ï`ÓhI:iî$œ’‹­¬ïì˜R´Sý6ÞÙñvÛ°Ž*.Z;µÑÛ*^òïzví1ÍÆa¡”‚’#ŒcREå øïµ±ä6>!g(Œ£~W±PMQ^ôðE ín¶¦Dåbè:CI‘Ÿ¥Mé×æ82½Bœ©®½S¢}z@Òº4”Ê5¯«Žµ¶§ýüVG:«šJî# q›+4ÔÇêåGV*9†€ŠóÉÊꢊ¢Ñt†z^8üÊ8ïª7×Òv³žpŸ•}Ò´wÑq&ìôÏ–¢míG@9É{ÐT‚Éö™>«ãYŠVQîÌ!7¬4ú)mßt×àkÚhTöרзñ­?'5ºÀdBªÃg– $ÂgÙÅ~œI’1>àÝ µÍ§ÄTÉnFÚE¸%P–FÞDQ„r3jÆ8GäÐD8]îk%OyD§ªÀãÔ~á“…káÕaƒ¿Á;mW>ïu7ƒI6ìÈ’yWhhŸ{ˆ}âM¿çóeYí±ûä„Œœ¤ûRx’¤ÃDÒ_ÈRm»³y;:€81aŠ@,F÷ƒüjˆìßhMÝ9 ÊÎqÎ8Ê\¦âÏ7ßi"$›£òÉ!^µ¢cÚU¿ÌÄÉ©åK­ó-D´kꇗ·ËM't˜±|LŽ÷‘¶mùe$ÝÐ{ÝÂkv”òs ü‹^O!Ù•_FìÅ4‡>< ?—ÀC¨œKsvÌ©bôëc ïzð2Þ|Âi”M¼ÑˆrWÔÌÌÓóÝ“º>¼bGi]w8Ë5:^:|Ù‚–jëlºwì=Ýö—ü»·¯$8Eû7 ²ÄƒÚ÷Õ–±ÊeŠîÆ=+À((H§¬&éN´iZÇŒ?äñ#ísfºM÷^þüÿæ]‹cV…Gwœ|¶ô"Ÿ—Þ}[颀Núsb¢¿†[ŽFF=v”·•Å…ÕŒ”浪«'`×ÁJ9i»·¦^ôjîkœzœºÕp£mL•Ë°¦n­.p8f“yœ¤aj-ªçºSc¾â­ó6½\—ÈÖêcž¨gj7>«zq-æº|«ݬ]ù÷Ìãž3O}bnôÕÀT_*í_™kXìæ×B([&9|d&ŠÉ¾*aêÈGªŠú÷eÃ[ÞlÏ€¯ÖÊ—%2p%@ëCjÚ@PLm7NKiø—{nŽ‚À"æþÉÄî–-õ Žþ‚BÆÐm…xÞdû +#nwF!Ç ðÀZÓ$™8Õ¥|†âöÊ)Š“º!_®®±Üøת³ÿ[ƒú†îØÿÀÓÔºcnÁØ'õˆÕ†„ƒ%…‘Óîp뽓ÚÞe»ª¹\ÏD«v¿‚KF +³¹è]K7{×z¦õ+‡{,£­ì¹ìÿw8áýãÛÎý›á{Ysáôú#×ÅxÏÐ\ƒ;†ÆúZ´Í£¤ßÉèþìh’ 0yŸbptQI¸6JïÎQãâܨçKŒù£Ðwìº8DaZ<åºÿZæ» +endstream +endobj +3800 0 obj << +/Type /Page +/Contents 3801 0 R +/Resources 3799 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 3793 0 R +>> endobj +3802 0 obj << +/D [3800 0 R /XYZ -11.232 900.716 null] +>> endobj +558 0 obj << +/D [3800 0 R /XYZ 56.693 538.461 null] +>> endobj +3803 0 obj << +/D [3800 0 R /XYZ 56.693 509.358 null] +>> endobj +562 0 obj << +/D [3800 0 R /XYZ 56.693 306.166 null] +>> endobj +3804 0 obj << +/D [3800 0 R /XYZ 56.693 277.78 null] +>> endobj +3799 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F102 977 0 R /F52 695 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3807 0 obj << +/Length 2155 +/Filter /FlateDecode +>> +stream +xÚÅYYoÛÆ~÷¯ Ò ˆÆ³réEÒÜæ6m’¶±€[ é%,ÂG!G±Ý_ß3)Ê”%Ç°ûÄ!g;ëwâè2ÂÑÿÎ~œž¿8ÊPÓ8š.£˜¢8‰RÂK¢é"ú4ú(K™7r<¡>(-7\ªÚ ôÊOþWÍTêʽüyñnü×ô¸fBÊ„p§]èÛR6+)uc¦áv¥p{ÌÌíûôŽ0 ž¥Ñµ]¹ŽÁˆ²ÆetqöÇö’À%Îæ"8v4}¦TX*¶èÓD`x£}-ªCCz¢áVüæö;)A‚´‹Ð&¿”¨Ú®AXc!F^;4«HNÐŽ¥ ÉJƒ²´Óû~s-g0Ay:Õ¼]oJ¹ +Œ¸|XÊ\oké^jùe+m^È軌SA¹›ÑÊ=óÅÂÍ–+% ‚|»`w.$£¼,Çd¤ÆTŒ®Ý{ ]#+îe^«¦q+j¹”µ¬æ²é¿ÊǾŽ‰y†s·ÁÜîUÉ02FÚÈ}…ããš¾¼§ÅÉ“zÚ}à¶çn;èömÞæïòµVµ2f2ŸƒÏùó܃ÙÌ/˜Õ2÷Ah£ŠJ7Á9Ýs[—M‹t1J$áø™Æá‹ž¯Üð;ÀyÐìcn p +$ʽH <ú/Òàî‹ ÷«œuïμùm7 øÕa×\Æ5¼MßuFÆ1 MzÌ9­Ãæ^9ײ,½R\Á¦ñÐ:ÙcÎmñdë|VÙ1Í rv[éªË—ª€+æ¥^w…#na5F0Âqv” 0ë¬Ã»!Ü„¤ˆì:”60„YÚ!g­6 Ú"ð”k]3ÃÊV{>LÔ÷𰛦ÉqM†ûC¶ÀžÃ¤‘B ä'fQmF|°ò‘YbHg}¡æ3H™=çœø4qÀÈq¼›^ßÇSg6†®<ªfštÝ kEå¡c²võKN³ Ñ$鯆3Æ( ‹^™½‡w߬„Ìàg½.ÝÈÐvóÒ0ÎLøw[lc¦›|íG;ª1¯×+YûÅ(ÄÖ¥=¤½„9ÙÚC‚>ÌËæòºXHa­tn´â_[úÀÚ™ÊM*7"Míe­ÌÂPC-¤™šŸd¶Â‡@ê\®T¹CiL#ÆıÊdWyQنŭ<ܵ¶å@wrór]ç›5OKã ˜^ïQJ”]çÌj˜ºf\]æ·P*%k1Š;›9K£–Ø’ß2iíþôû‡C#ö¨·¤ =xÙ„s`¥§ÅF´Eµ• Ÿû0)«lã@‹¡ëF˜œ8@mÑ%s'÷nœçùØ)h‡¥+ð= 3Y7a9 !8}–‚¡’;¥ëpÍ7d_X@EÓÁ«šõ¸cDvRõlüN8mÿ4UÕª,ÛL\BÌr¢MxíÓ³×ö™šìC½>§¦¾ùC ˆ§â¡mnšíÇ;ÅÁ8ØWÒ/E}å«¢_Ç BC#¯¯%žÝmËÙ¯ÍÜKÈœçÆ^ÝÄ0'Pý´^ ÕˆÌã Q¿Q~6Ç-iCý†oMhY\nëAŒ¢‹vqÄœ¸ÃäËÐÉâ2ƈÓø&Í?”¶púŒv 7npPûÿ31C€}˜Ñ×&_ñâÿZä½êx1 ?bœD~xA<õÒ ÷‡A×Û¹!î'ß3äšÄŽ“û;F“¶YtbÒs8~Ðá’»Ò¬år^æMs¼7a£–M³ó?Égãñ^¹ùÖÀ[J}Ÿ7%£¯—ór+Ý÷ÁzêZ3z eptѸ+UMþ–µ2•Ù]¹‹¢”ävð%ÿ;…RÞ†tßQÚ# e‘Å|÷÷‡_˜ŽÅè•/„æa÷ÏÓ÷ïÜ~Pí¤p1'ÞMýÝ¡þ·ª Àǧü¡é]+eÆJÉ•Æ~ÆDúþ|wÆïÊ2?e¿6çA˜­¶ÐÍÚUá «÷‡÷Å|•ËÒâ×Ú ˆw (Uû¥ùÐ/vîÐßð‡ý7tgÓ +endstream +endobj +3806 0 obj << +/Type /Page +/Contents 3807 0 R +/Resources 3805 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 3793 0 R +>> endobj +3808 0 obj << +/D [3806 0 R /XYZ -16.307 900.716 null] +>> endobj +3805 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F102 977 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3811 0 obj << +/Length 2352 +/Filter /FlateDecode +>> +stream +xÚÅY]oܸ}÷¯db xhQ))E6I³ÝÝ8Ic-ìƒF¢g´–D­>b»¿¾÷ò’š‘#gìEí¾Œ8$Åsï=÷ò›…·øéèÕÅÑé[á-–H_...Òg2ZÄ<`A´¸ÈŸ—ŸT©ÒN¯|á-ßë^uT¼Ô-ú­m|£³WZ_ÑŸŸ¿;þíâ˜fÅ9K„ ÑÎûÛRu[¥ú›av¾ˆavàì¡ŒXäÇ‹•`IdçOB0Š—§ôà¾Äþ~qôLJá½_Éd,¢„3éù‹¬:úü›·È¡ ÀÂ$^\›žÕBpù„r¹8?úç‘g‘ðîEÄ&Œ{’ÖôÅ÷…Y…{mñy%"òv¨³\]ÎzÌ“ÂõKëÙÁ$,=p}>¦mZÝ3˜`a8¦‡¾z»—!Ûb‰CD¤¶®è©&Kkª¨t«¨ +‚ª(o©vmëò¢ËT[;t®·ÊõÖµ";û2a2”Ó¨Run£2­ó;Q©¡d#¦·ÜuÇÈ^—`LûæÜç/C6†-:’¼ß‘ºÛZ7Öcx¾ðO_ÎLì³0ö]|R—5@ž_gBTðÄu £[Ä¡dƒ}œ×àO‹;”w(ìᎠ4¸#™Å(EeË,-!¾¤Xž`¯d Õeè4=•¿Ý] ó¹ÛÞŠ¢/Œ“~b£Ï‡Ùúa'LìÆ@ceºªÒU§ÐA‰#¾, ,YG†šj(û¢)ýƒpíÓ:£Í¢gCZ›ckGÏ¡£ñ<3¾£R;Á¬ý|0 î·3 X¤½í‹¾œÛKº Gµ“6@O>d»B]y‹‹2XKdŸšV£ªUžvÛÂ/ˆCxÑ”½lgKZ3Æ€wv<+m†¶àšsµÀЈízO$úT­'Ž!©'‡¹®µð ;¹$é=åý˜çdV¹c­HÌ[4Š˜ìE¤‘mE}©gp’¿?f±^ӭʨ(–Æ0Ĩ·õb~N¹ ìæ¶-6Û~.kžùh—4(ïYÜ#ŒBɼpä#/g•‘/ÇumH¢{kdå8^^l)`PÈÕ1—ÂJR¦†ç”žÑù®/YlÖžïîrÂwÈ?€@'¦¦  ¡+ÛdІçGÌËéPZ=¼ÒÅ]•Ý*ÔÀÓüü=¡çLÈzU5%NÇn*t]?~F× 8bš}¡Ñ0o÷õrlµëRgW+ÐÏ›Vut^åè[,±ª¨‹j¨è-7LŸ®KŽj’HèÚQ} —;ú 8±*ôß*tNÓC ´ªÉ“8öü I;îR7œ©›žÖÑÍøÞ*ô9)Ÿºš'Þ²†müGµlïÃß·hgÜ=¶¡$ħe7` :%Œ°O#ã°ÐB4»ÆK7ÄØJ¹ídŽç¹w´èÔk‚øå#·¿Ä4Šg‚¾yyzz]\,•¾U fåñrs +N´iÓf[dôæôO Ü×x²ÓMzú2®ßéÍÓdjR¯@О˜oMrWýàôHžÏc/kE.õ-ž"fј‹ -deÚÍùEÝùÃ3 ú5 o*-±àz˜€À +8 €SÜÒŸYÆçQÂÂ`?‡ß»8ÞxbŸ!qP"/,a…$M3Ÿc3˜jù¦p°èÞöÏmMa+zmI€ý` ;µ†¾ºVY:tÆqAê¤xúƒ2`¥ – –5wãu½ëâ*Ú(ÏOø”ö…¢Ü«/6µnÐ9ý©+ò‚]È’=éSc¸Þ^cîHIPl;ʧ`ýcPnI?ðPr8€Ú~–ÿ ­d•'§rÒ%…7é±ï-¿âK2U•Ñùsm*vp(]ˆ< ·ÑÔ.¯ûOê³×ùA´KXÔ¹º™ƒRU²'«é*Íqœ¹ƒœóuÇ‘ kÕ+ò;£4Cõƒ=Œ™ÐO;7¬«‚Ãj +y`ÔÛáhO‡^ùË!ò©1~èǧ¢ÙnYÔ³!ñ7ªå¹ƒ&¨äxä}ß(óìnÓg:g±CiàáU#£æ–²8»¿F½o.Ù»¢›¿ò ýdÿ³¹Ð¶(s8|Ø뻯܉曯 ï:Ž +Jb²EÙ:DàÁ÷ÍEìóä¤å9NËçÖ±f`ö!’ny:KhÃ¥ãÇ+§ÕÁ}ì÷.8o{â Fï8¡9I!Ó¦iؽGIk§ý×ql({ +Ê܇fóE1ù3ß™ÿ ŠÍ6 +endstream +endobj +3810 0 obj << +/Type /Page +/Contents 3811 0 R +/Resources 3809 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 3793 0 R +>> endobj +3812 0 obj << +/D [3810 0 R /XYZ -11.232 900.716 null] +>> endobj +3809 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F102 977 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3815 0 obj << +/Length 2872 +/Filter /FlateDecode +>> +stream +xÚ½ZK“Û6¾Ï¯P)ªv ’våàØ›d³ö&ëQ*[eç‰Ðˆ5|h hÆã_¿5²½»>L‰ Ðýu÷×Í g·³pöÓÕ««g?Òp–¡Œ6[mgŒ –ÌR¡(™­òÙûà(—b±$4 þÑ(!íã¶iíƒÚ¹É×Í懦¹³_þuófñçêØf‰1Ê(µÒnÔc)äN%õ4ìŽg)ìÎ"½{Ì”t¶¤(KÜþI<³˜0ýë¿®®þ}…A|8Ã3ÊË¢Y’aÄB2ÛTWïÿ g9ÌÁPœ¥³³²šQ"1x.g7Wÿ¼ +&³ñ²ã áÙ3} „šSøŸÍÞ/i/ó\äöþµX<Ø/{ÞòJ(ÑÚ;c8£¹t¬7ÈRPybŒè;!ö¨%WŽ@EÅo:´…×ÖðdË î‚1(ÔÛŸ¿mòâC‘?‡­Sm¦gfw$ju †À/`Æ?>ˆ5Là0v3;U•£ß¤ÉéŒûUÆÜ”•ÏîðÜß@«à~i0¼ úX•zÃ<œb—fmÅkûüÇnÁK¹+|™¢˜R0èƒÐ§Íò–ï­¬ßëbÓä®rÏ7îq³ƒãoÀ>Û¿ÿ…„a¸4/Êûçà9,EæþgLYUçÍf ®>J}õ(}á…:¥èI ýñÑ-Œûuæ´Òc;ì´õKÑÞqûø÷EDƒFŠ»¯WÖ¯µ?(+ÎIm/퓨ìgÎÁã0 ªe?šõíš;)BµT 6;ÐlN4\œbw <îE-a9>Õ->¯ÜmãÔ’ŒÔò¶³ŠRï®*-ÔßT…ú/°tsØï›ÖÝ,[}~(•õO½c'Q¦Î±K¾å„“ E÷?¹ÚÅŒãx[(QŸ|œáµWj  ô£e!m€… ¡8Í. ó §G <³Á#ÇF-™›#s5ïûãÕîèçO呯 â÷O¢-W:*Ä8(› /¦Om›R„ÓÔ›Mªglë×hûÊÁ1 +q‡‘wb+ëf/ ™÷ȸ۶ØÚƒÖýäû}ÛìÛBßàt+y†øŸ®>ãĹQç¼VVü¶9°ÁcQÛOÙÚ@àŠa¼*!òH;ñ&˜DÚìÔjW88’ŒBº£ck‚£Ö·.WÜ&ûµØñ ƒûÂãD<&4Jb'ÝEoœ>-{8g¨$†ÌØyᦩáJÔÎÍ +ï”×9=–j?¯Þ¾9rM€è²Ÿ»Qc¬p€Jíþãþ²”͵³¨#Q€k>?H±äJµÅZï}Pb)H}?¯µ”hJ:EØßL;Ü”Õ1¢ÆN5¿çv_“ø¢,Xƒ;ÜÙ¡[ç&îdg P +³L¯ªÜC{â ПÀk Ã‚ßZä@ÑY>. œnÔÎ$8€=šÑg”Æ@×Ø^;Ÿxê¦OýpCg&ŸìÊÒÏŠ‹×;È%>Jˆö>ÎÊá·VùùÃ~Ì6ÚEà£ÁiGC8c'8>U^LÁzxwf‘WäDB/²“Vlë­Q®Kd@QŒÝ<óˆþ9öóiôqô:“Ã4ì5Φîœq‘)h´‹u.>^JÇ:¹sê:˜œrI˜ ‹ÊåÕ¹gtéï]³þ7Š?*¸ÀWS«¶‰ +#Jà„Ñèæ¨>T°5’BkXy©ãQer=% ‡ÉXr«cùÁ"Ù@08zdÂåÄ„ ôx ÀCua‡¥Q< {Š²È¢(#Á`Ù,­eã0DÌÔUÃuŠ°c`¸POADõš| +{i·J»d!¤O18_’]fãÊ-#ÂFþß84yþª]`Íð*,ôŸš|¯†zf>©« ‘ž7K±1ʈ{!¡¬m¾°ùWoE—ÒáÉ°=Ú%÷®´í +›áõ´ÉðzèÇ_;)¶"YÆIæssDpP5Z€-Ûò£Û*¶1iAOYqLk¤‘Ž a«Ýg´§•C×aöYºÁq·®/^˲ô%::3SÔw&çŸn „-ŠÈå-!Ê0Úmé£$‰®ÙÅ(y„Nìp;Ñq ß6ýíµg íG¹H‡ ‡JÉ€Ù[«N(lšuyI”¢ç•}é,Ð-r<¤È¿Ÿ+¾.56Î4á èýÔÄ©X‚h€hGÈ&cA1í$­ô±.åS[ï9wÒ–¿i|š¿=é+:µêx ‘,{‰<¬ÝÙå8—é!;Ö×CÞÑv㵎Jz}‡¤5$ é£ùDß‚·ëBµ¼uWÊæöa'Í?길ÅH’±Ë½Çn'ßíN¾¨Ë8õ?=p“e_ó/=ÿÈÇA +endstream +endobj +3814 0 obj << +/Type /Page +/Contents 3815 0 R +/Resources 3813 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 3793 0 R +>> endobj +3816 0 obj << +/D [3814 0 R /XYZ -16.307 900.716 null] +>> endobj +3813 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F102 977 0 R /F93 909 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3819 0 obj << +/Length 2596 +/Filter /FlateDecode +>> +stream +xÚ½ZmÛ6þ¾¿Â@¾ÈÀšKRï ú!M“»ô’&—5p=$ÅA¶è5±²èJT¼î¯¿á›$Û´w›\î“)’’ÙgžOî&xò·«ŸæW7¯c<ÉQžÐd2_MŠ’t’‘…éd^N>YÅŠ–Mg4ÆÁ¯B²Ö4W¢1 ¹¶ƒ?‹åOBÜ›‡ßnßNŸÿËÌAyi·r_±v͘lÕ0¬N&¬ž„jõ(IQJ³É,Fyj×ϘfÁù!4Q/^½š_ýqE@<žIœ $'iNP‚éd¹¹úô;ž”0@QžMvzæfŒh˜@»šÜ^ýó +[Mà³q²£œ˜=}¦4Ö»p¯M>ÍbŒƒeiuÂeŶÅt¥O ‚ôi#%9ͦ!¼¯e¶¼d‹ÂÎ;ØA˜¢$ÎÝ<¤Õ:#8C”DЈQœGfì(ùgŒ)+˜ÎB¢¾é·‚$Ûl«.=lªk‚hjv73?Å‚5Ò´oe±—¢><ã,CQ—CrPatYo`)¶aµdV#_¿2g„æ4]ës8‘£C€õK9 SŠƒ®^®Õcˆ•é®Ù”ÆÁÎtn‹¦Ø0ÉšÖ ~Æ1.¤l¸yY23­‹ƒ!b&Éu!M±R²Vl)ÍHÅ[ÛÚ6¬…’‹Z©3õ ZTby¶Ø‚º8k¯=Wæ…YgTÏÿd¥~zÁI„â8ë/ø²èY™Gé¡_‰¦dÍÙb°Ýô© D Êàz¿jëqü¸ U±`•G …5óܳÁ)XŠºôHN0ŠÁÛñWhà¾O¤l ­¦àvEWI³ó[Ê¿pÑ5¦KY±úm¡p2 bpxx¯ëÂÂm-¬k.«Mk¹.ê;ç_ÖÚ-Þt  ²Åçe×Jw¨ ÙJÛñªrâÌï¦Ó^¦Z¢±}€û¤Ä±l5ö ò%@¥~À—VáKBžC?MU¿öRîýYzÜÿ°c È3; {Û›±í!}%c#§¯Ì|§—ã——f%x}Ü?udr·çãpî”×N$@Ä·}‹Ñ¿ðæ¾0ÍLÃ8-»¿Òá7€tD1€Ø9þ÷”À©DÓ3,‹Ú4X],*f;á|¦µ)šûÖ4¹žH‚½vÕSŠe§ö`ž{ó p-y}7HBZÈÄô(@Ї)‰¶ELý>HV·ÊÈ$àN‚Û-Í×Kf–ÕäÜÞÔ)ƪ·ÁÞyÈRÔ²UÕ{ÜÞüŽ ˜4À +* pÚLŒ±Ò1Yˆâ(qóU4K¶RE®kŸx!€SébµúÄg(†7O##ßœ¦‡ÚÃu¢¥$9]gÇK¹öŸ‚dÙxk³Ž%0QXzù«VÀ.¢LqJ BÐä­ù‚¾z—vªe5æiYØ ‚v×x*ά‘̶\átˆó±ùê—jÓjâ=»Ù5Ü åÒþºiÊ‹íêvÃàÌe·´ó[±±­oZw B-fíÉ<üöêƒÏíú—¬]£q¦ÇmXK¹ýáæf·ÛMé†Õ°±´››†­@…`øh-7Õ³÷Üvò?¯ÕÙD³)lÌÁø#Í4ÿ\«·˜&ÐŽ1ý¤ßaz: 8g5¢hxˆG®áP/²ß†Íé_=khÃ}dRâ<ùQ W È3Ò8×¾à 9¤ú,$è;†d‚“ÿ>÷ÖãOpfBjf/j¾î3‹ªÚ1 Zö´ÀŽeZñÇüaS”¶O[±Må3Ö&Y„Ò´w~eO~jáž@-…“Ýrƒ¾ãL¸Aî´Ú˜ü…1 +WL TÇÎè#y2O¤À,ú<‹ƒ<“›)=Þ¼|p.‘}CFöH°/tZåIUàr‡rA;OÒ³¤¶Ûn…Û{èP«4aº7ÕC­Å*fG2Z­µ1òäÑs†ýˆÅ‚Ãï§Ïò†ÀfY!;µÔCÃþè˜Ê$ÕÃ3‚Slž¦‡aæ"Ç’µ­Ö‰zæu+›n©ÈºéP*ÕY³áÒMZV]Ù¿ãØOS•éÑ0¢—QaFÓ+óž“æp¦'w#Æ#t°@Fˆá>¸5àüûéÛ–TæÔSõ0 ‡¶äàÔÙ@[Ö]}¤X¶|U¢/BM$ :p)˜/_§IŸ}ê*‹Ïo2”æý¬Ýš«,KmÛF›àšZƒÂI›!zÖÃ)"s{Ú‚Š(èÚ¦œLiKÚe´:LsÇ¥Ý×| +a_¼¼y+æÓ4rÕ¦0…às\sø™·Àö•zŠD—ÝÛlŽ’¸GfÃŒÒÄ0î4uLlozέºÊŒð•éÛk +…¦‹ÐsÇjG4Ï+eŠ +ëiƲ͈"¥;VU׊ê„Á^‡L˜Ô²ñËvÂaÃ$Kñ`ŽI¯Mù  to´–ÅäPi;]¨e7¦õ|6pã‹yvf}NßÞLÅYë{$¶Té"ÃÓ‘"é ;õíú +{>ôÿÊPoÇa¤\èý—‹• 2²pcÞ\ª´’0æš<­T”;Iú`Ww±>b9æ½Ò–K Òð‚×ïmh•l]FP`ëQߘŸƒÒ‰ jã¢JŒ öWEæížþ¥\·¨Úõ×—m_86é# +1l«×á\¼ôag†’ÞŸ¨€ÃùD# “' CØßCarÃñ‡ãÕñÙò`ˆð@ûTã[4JNjëpo)NžùgqÙQ:¾¶’+U~áª$á|”þµTâÊ9I +‡C¡R=ýÔÕT·©öæñŒ§D@‡«Yñ;Ei<ß$ F¦½ÞB¦ÄÒBmÃ[XÑ@°邤Gv†6Lô_.Iª$¼V'+ª³ÛMc’lØî©À‘<<–ÇÌa|õ {LÎïß*U…ù‘è™-‚Ä®i~ˆ¤Õ%Ý€=ìÈ^mçÌÕËeôû}ÿqqÆYŸóŽ ÃÄ8ú‹Õw^£õ4ö@Œ…Üò‘þEQ*æ¢Q>lë‹òÒ¢ê˜évüÂns Æòí»…Ex_ݯg²F\›n-²µûpÕxÃùMq+·µ¨<8 ×ÜkOI¸ÚŽâ–=µÇD3óIÉaû{/¶'ˆ„#¨Ôò´6•|9:Þ^+Ya÷bNfL•‚îÒcƒwÇUFâŽÛÊþEÉÛmUìÝѶ ÍiáÂïYu(]\{¾•ô ö_XÎÉ(*áh€áË+›¼IÓË +€½uö)݇H “8K2dt¾.êûöð\E]HQÙB³dË58%¿?÷^Ë~œB&€Ò¾à¥JxQš{ø#=éù#±c–?:™æ{È‘Ñõ´ÓÀ[Í{RÁ*EÎåf(Kßn¸<ä5¾?Da n_ñýÿ¿*Ñþ +endstream +endobj +3818 0 obj << +/Type /Page +/Contents 3819 0 R +/Resources 3817 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 3822 0 R +>> endobj +3820 0 obj << +/D [3818 0 R /XYZ -11.232 900.716 null] +>> endobj +566 0 obj << +/D [3818 0 R /XYZ 56.693 517.591 null] +>> endobj +3821 0 obj << +/D [3818 0 R /XYZ 56.693 489.898 null] +>> endobj +3817 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F102 977 0 R /F52 695 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3825 0 obj << +/Length 2501 +/Filter /FlateDecode +>> +stream +xÚÍZ[sÛ6~÷¯à¸/ÒLãB`²Ù™¶iÚt“¶k{gw&éEAס’Tl÷×ïÁ™²ä¤ÞÝ—˜@ààÃ9ßù¬üpöíõÙÅŽƒ%‚ëeQÅ ±8¸^&—²i-§3ÊñägÕÈÚ>.Uešµë|­²o•º±/ÿºz7ýíú'XfFJ8·³]5÷…¬×R6µî†ÕI `õˆéÕÃ(F1ÁŒ£$vë'1L‹É…ýCh¤?<ûþúì÷3Óã€ñ9eY©Íž½{Ÿ7>ÆÒ²,ÿKž¶‰År4„y³Q K·™J.¿ÊZ:'mÔxÿ¸|7„­íÑîV¸çL•Mš—­?´™aˆäšǧ:ó£÷vÍ0÷‰N`9Þ…FÞc³RxÄí±îa¥§vX1LYzL:‚¿õ”LL¢g —ù;º_ÏBx|’M&“¸)™ª*YoU¹ÐðŽ„t„Bž*HW"˜«ó¢&¥CB*Ä'BÚ®¿­Ô +´[ +¤Eqo'_È’À<ó¤ z?9nòÒñü~Ï׺oR¦Íc¼ÑЬ~¹K7Àý/FÆþed«E$y +-u½:à 2rÒ¢‘©í}•¯Ö͘€ç -kœwqüê¼(gùT¸?Cš§\¯9‚WçïÌWSímÍ~þW o"@Ò‘Áž¿+À­]°EÂ8 +Sl¦¸^§åM= ÿ«Ô‘èU#ÁëTaI²’ØYß«…Ë: Õ©°œz‘­wåÍ,S›*Ñ]]|MPÈ_§å/ŒºG¡'!{înåºƮϖ=-ÙГ”ènc{9VU¹9:Ö?4I+ílƾ¶$9á{CÜþcû­#ë÷y¶Ne¡Ã®Ù8í§1Þ€ø–J3MPãpÊO)¨z"‹ûùü*+ÒºsDÖWݨÞm·@8uoÛ®Vˆ’•Ž¬¨p¦n2‰µE+~–aÂÒ±^±Wлê@Xäõ¶HïÇx9$êžS,àH„¼‹æ²¯Ý3À›eÈK·»õÕ®Ùî²óÉ7K ̪ ÷µ+à{]6Z½$Z·}ó‹K¿f6÷\±F|rZL.Õ0à˜ ª¶½ ·è`âƒAš$Ãõ`¶§ÕFÂHL>k\¼Ý@.Ò!:ЇÚ,Uõ$ùC÷HàÐ[^nÒúh.¨ws§ô`#°ÉÒA¨ Î…YüõäŽ!ÙËN•Ú òS^Ý8íü·)ƒŒWË›G:í*†E¢½}‰Vbò%Áª§7ÎaM¤ü#uƒXó2Ê$NPÈZyùˆ5Š;MeŠ˜Ô~2w5úAÇ—YÏG+,5y{XTãÆ/\Kî SZm@‡” ýz“–Ût¥ó-JšË,ÝiQIâ»@CÖ¶¡w¡Gçî«l²¯l´„Ò¯ÿÞÕû /zíùªTÕ¸0¤"FQWø?†V´Ð22Ô0÷ær.uDc¸Õ‹½n%ßIo(Š胻qNQX|H=¼W_{™ñ:Õ¢ð“þÇk·_2Y䙯08^(ÓбB[FWR2lh¼±hçà*»#]4é‡ÝØö_Èà¿V°I0ƒ#4‰ª;˜bLG¢6—5Vû:~»ÕfÙÛUUmÒ"ÿCÎêmj.ž°6ßIÀK —9­Ý¤sW– —íS™ j' ` +ΣG2¿À½€ª`»Î³ÚËã°—j.=+_5é}cïÜ>ÏïlžnëÖRc¨…,Ë›ôÐGœ&£·9¾rNwêU;ºÉ”°íöš{¿¦žçó"WÑ"ÎmSõÉÑ«#Üî|ÚeŽŽIˆïjáù¼’ŸF–¦q2¸Ý€ +Ž‡ Øã1gÎÝnÖ‡SÔ·¼¨¤/â~×Ä¢÷ñ%)ð¸xv¨I(ÓF>& û`Êž¢ rw=³Q ¨Ûô¦f:wþ<âGbx«‡EÄôŒát5(Þ¾v„`ÒC¥ï|\O¾C„Ž1BÀÜ ¢D¼MÇ\ÊÔ`vßd¸ïŸ5Í9Ìÿ9ñ›õúOðŽªÑ߀1•6&ƒ·¡>¢Z(C¢+x–ùjWÉS juHâü†]Ž÷‘FžÏ!~õTØ»>Öxa*ÚQÇC…u׆&õ‘U2½ÐÿØKI¡4T'½sØZþº¿¯m[ç¦+j¥Ó\’LÞº¾NY™; 'Bt‘`W)%M¾q“xÛµËÖV…õªº n>Œ9Êg\Ïÿײ’Ãd1wï²Lç…Ï$·¶¸å{«çÒŽq×/y,'h¤¤=ñ¡gc{Ü°ÿëy¯Š«ª|ÑÞ2¯àzgœ¶ m‰Ž“òîX:ÝîʬÙ]à‘rQr€ýÂY ôå°pÏ Û0‚ +ïÆ¿BÞ‹$h,T¦Å¡•A¦e¼üPw¿>dØÁ ™Õ™ÒÇtÆ°8xuE0Aññ‹P¯Þ”z§qX«„M;z™]ÿz¬lk¦6[ûIØûÕ–1ŽB²®ý©µ›vÛp¡šÖÞ“}“TžtZEæ‹;ÏÝOKæcÿÍ#ă·~ÆÿòøÅW +endstream +endobj +3824 0 obj << +/Type /Page +/Contents 3825 0 R +/Resources 3823 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 3822 0 R +>> endobj +3826 0 obj << +/D [3824 0 R /XYZ -16.307 900.716 null] +>> endobj +3823 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F102 977 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3829 0 obj << +/Length 2542 +/Filter /FlateDecode +>> +stream +xÚíZ[ÛÆ~ß_!, +”B¬Ñ ïtÖ.âÄ1\4Ô»m +ØyI#‰5oæÖnƒü÷ž™9ËDynE_–äÜÎeÎùÎEKg»½ºxq{±ü> ³„$¡În·³Ð%a4‹™G¼hv»™½uÞˆLp)æ 7 ÎuÙi^·em^š=N~W®_”å{óñ›¿Ì¾ý3Y0F’ 0§Ý4÷™{!©¦:›Å@=ôu?ŒHäƳE@’é'1ÅÎÒ<˜ª/o/>\08žÎØ,I˜x³(a$¤îl_¼ý™Î60 ?‰g½2ŸŒ× á=›Ý\üõ‚¢&èYسý„0žÞ¹n ¹°Ûfo¥Î7›ØŸnâpxxÔ¹Ú¤s7p>šÁuÆ¥|vùËô˯‹uY4¢häås3¨yU‰ÚlåuÙxZÙ6UÛ˜ñr‹‡áf\±Å]Yfà~rŽïåêŸbÝH2_xÔw¾ÉdùD­ö>`¸Àã«&- »ójUëkŒ‰Æ㫴 ,«Zð÷—Ëçæú³´zÄ|òm#Ð\ ƒÆ€ ƒðÞ1hM Àg†ÎOsæ‚jß\¿¾~õTI8/Äš·Ê&=ƒý¥Ò ¯÷¼Øáh•ñµÀq%šiS+œÿîõßÍÄJ4! +3ªíYâôàZÔ¨¶{»N›0X‡6a_™‹éЄÐÌ‹-W$Ñ؇†å‡„1×.äêª?q¬K¢Gºðƒ˜DÞÑU¡©¨[©“*K +b'ç÷ê%qº›ŠY漉9 œ»T6i±3#ßÞÜà¢ëš=Ç3÷|·õQíÅsVZ³êm dmo°å6{3Œ÷#e›kó³öTXR Ü7g`/m¶13…0þ¥èÕ– WL!P +ª¨Íú%£æªÌj16C³í֢̲ܶRѳ·ûò6ÀíÌ Cåp€¼ÒúÞ{¥#¤Í-sæQ Ùf͘­Áá†ë:]™û‚ý«R‰e4g4´`‰OÜh¤§à© FLÈ púÞcÜÄ#ÔëD¾D|¹Bq +ž‹g—;â/cc¿Ÿ_-ùsÃha-vǸrU=È£KX-MÚdb‚A7$q2`ðjõü (#<ØÕr|TÈG˜ê?¬/«Žq€PbËÊÙy¶YuÈ’óf_íkÃO™<Axì˜g_±gÞÕR‘±$—ÈáÉ·Š “\›P€"»>#ñØFÞpƒÂàÜå[:Á C ¤:TOSŸ áG-­Ôef>´SkÄð¢‘?­™]'ó&î,LÈ™„Zp²èÁ[áÖ}»ªÈÔ#’,G¤ÙéNuÃèQ^àC¤õÇõ½:S‡ß‚ À¹†N+5©I»àEëJ½\¾£Ô+y3i(~Db¿µªKˆrÍýt¬òë­_e:¸"É ×õÄ*Ñ£Äcá8‘}f£ ”æ¹BÑjQl¤q­Š#É%ÏñMå òqâ¼D46y$ ÁXÇ}H{:•„ ]È,ÙclÚ¿ŸÉy=g±³K‹ESV*¯Èviu÷õÉüªlš2?]ò«y´0ãHï·gbÛtÛµ6ন;rÏßNÖO:ë] ñâG©Œ~=%fîöÍ©&õp§È¡&µ*Têöß­‰Õèj·pß‹ƒUh€yHª1PŽ\C±Wãa`wûÑQG>¡ŠA›@ðæ(•¨Úº*¥8“h\ñp9$ãœJc¨:¯6éGº£|F§ƒ&ík):Ò€ÊÇôÑZäT¦÷Z-NBç¾lÍ‹!¡ã |iðL Ù®’£$8ÎzÕ²IXd6h➘σZëœ D‰=¯5þ†ÜÉàE9¸yÓJÞÎpBCâ2ÿq†œôP>(%<õJZë¼^6È‘*$ 4Ó9²âË&¥æ øãG¬ +¹§ò»cï!Ý4{öèÇä!Xý/ƒò ö|&³ÿƒò'@ÙóC¹IAë®Øàú}“gK“w’;™=aÄ¥fûÂ<~H!ç™*Yš\U,fø&Wõù¨Çµ°M àÝ × ëz½o õ<bŠWò¡M…eµÈå<ö†*^CJ×õdy6æ I˜[,­„µ;>tW÷¶àÝj¤Wõñ°ç5°½iõ‹†zGz¾Vw€ìü4Uu#˶ªÊºéÛ²§Vû„Òì!1~?eÕ œÃ®y2•ÔC è|£õj‡Åº%ݯUwmJéABX÷¼ð¼À$]ªø/Q—Ø©4©ešz¶¸…¨m;1¶?GijqÛÊãnb)JñG~ζ,õY»ÃŸºµÝÌ{ó€…º¤Ðs^cO €…G XÓ´T‰šF—Ú<÷Ú¾¸Åª¦D¤ã»]-¤´þ4•Ž­)`ÆjVé*KK IÚ bœZ—yUœØÙh8‹]žTBL²Vdž FA…%é]VJÉëûyØ£!äÝX½\ý±çxê ¬)hL·;ìl8œÕ&I€˜‰ãÓ™»ƒXÁT §d`ǘ5w¸@‚Å€È'½i¾5¹T–>0Qr—k6¿$ðkOEwiýØ=—ÄQ‡ôï…¨ˆiN}$ÍùN¶žÄBæx¬óáaÔjÚLUpå›q<ò"˜1舌é¾’eÖ6“ÕGè‘°¯iþöæõG°Þë +n¹XólÝfèüð½­ËܼÁ<]©V'sóÅgi¾Ã:ÄS}ªä¨T¯Õ_¾Ã›¦NW +@Š'æ±VÿÞ†ý&µè£ržµøy¦ÚG¥(¼mö6Lûa> úe²kôhý˳·&£Á 9àˆl ‚Àë ¹¦‡¦f:ÅõÌêùO\•«:}|›fB5ݧ“k7ì¸7€ DŒa} =UßÑöˆ Ûž\ØýTSC™®åðw(§4&=:ûÝÕ¼ÚÃ!èÑÁÍËn0›ü5!èÔ¸áx(ÙáG?+¥…êh}P îƒÙ„Ù‚‚ûÞ0Oýg: «}N1Ìì'€,‰I%Ÿd‹„—±óºqc­›aøH†€nƒ£þÙ96Na˜0ÅA'AÈ’t±c"Ú<úZ¦þ+§x&ŸóOÿã"ê +endstream +endobj +3828 0 obj << +/Type /Page +/Contents 3829 0 R +/Resources 3827 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 3822 0 R +>> endobj +3830 0 obj << +/D [3828 0 R /XYZ -11.232 900.716 null] +>> endobj +3827 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F102 977 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3833 0 obj << +/Length 2934 +/Filter /FlateDecode +>> +stream +xÚÅZYsã¸~÷¯P)/ô”à=û4›Í&“ÚI%±«’ª™} DÈbÌCKPöx}ºÑ‰’½“­Ê‹Eâhôݚ拇_üùêûû«ÛC¾HYÉhq¿]D’Eñ">óãÅ}¾øìýS•*Óêz%Cîý­é”¦ÇmÓÒC·³“?4›ï›æ‘^þ}÷ÓõÏ÷…cVB°4 ‰Ú]÷R*½SªÓ8 §‹E§G>žD1‹e²X…,íùi +ãÄ»¥!#Üxõ§û«_®ç ±#¥þ"N‹¸\lª«Ï?óEsÀ ÒdñlVV‹Pp&ýžËÅÝÕ?®¸Õ?«G;H™àñôEÊÐpá¶->¯Bνy®r«•çkÁ½†^ju-Cï™^öY›UªSí±"wY—Eý@oÍ–~«CÙ+X^‘€£°™“2f2Dq _OY[ºSu×¾XõNŒ3$n1ص‚•ú=­ ¸ðJ&!K@Q+¶zòE¶.žÁ#¶nUöȲ-¼Ìœ'@w¾ßøþzHîýk§êë•ÏCã93gðGòo=4ßíURh:«nêÕ¯ªmnàU¤^ÑÑðsQ–ôô jÕf¢· ÌaX\¬ü(`1O¬7[?0œ™ˆó¨²ÍnÆVQÄPNË×`Ð ÷2`\¸5M„Lˆ·>`a»ÅlÖà"MY§¯\+tß®™Õ<°Æcs‡2pæcÐéŒh„|« ˆì»Å›¦î²¢ÖDÜèj_ª™3bŸ…þkzÃãÐ@gIÊp~yºkM|âz¯6ÅÎ%F<VLëÕà2aé(™&À'ÌYy@Š>E¹/Ós¡BB ÅùP¸lŽ„%Q¿¹O;t ‰ ``_f#ŒYÆá3>,@O~ê¿îÄÉàéêZ„Þ×ÚwDš´ Ç•ˆN$ÞýÎê#W[Ì›XsÊçm¤Þ’^¿ðgNÍ"3žªyÓTÄ°L"ȯeÙ˜ükrszëšÉèUïA@P3ˆ½ûë„27ÎöûViMZUçŠ\'MŠ†aª€ð0˜#à0,Óƺɪpì8Tf,ïc0]Ê‚¯™>ƒ™ÒTbv9ÒT_¾Uµï^èÑù9>£¦—KR+è˜!mË9pp\زÖM´Eü—–zQw¨GW(m\ÛÅ­¶‡Ò®´5ð¥9¸y ä =J”GóNÊíÓHáàJ·Ëºs4ÊÆ ‹tôTNóe£ ©(ôþ |EqÄ(Þï¡n?Ú)#LywYEwM6eNãTëa|ß6ÈÀS‘“¢a.«iŠâ%«0™™‰eÙt–¾ñ8²ã‰Èñ’FófcIXRUSƒ9¡°ånÎ’»!‘žÁkVY½7tƒ¹›}Wí9m}(5Zã$ª›¶ÊÊâWµrÇÑ­hr“•åÔ!@Eˆ¼@t&5I™0¼Z_ E:©„€uÛÅ)Ç"Üï +ã9ÒÛ€}ŒÌ2$*m«6´\ ¯9tûCGƒ[Ô­@1ÿrÿé§Z÷÷~ÄôrC“UVï³¥möñÁò÷;{Ö$ââµrÖ Ä(=½kƵ`9¤©ŽâÈ@Ef´UU†… Gm¤Ã6S+žÝÁ(kÀ5y°±S¸_Uû ´.Õ*2ü%2o@pö¢;qØ'žAÁÎÙ$Ú&?lì¸n*5ƒ¥‰¹‡€izÖ?5¹-Òï1Û"Ú¾ÅÜ ÙW]Þ@u•ßÁ¸0ã&1È0ž$Çã_ŸÕ&ÒÔN캪œ +’ñÌ„Xt:ãÈùßÍ…ó‹Éy…º0ÌŽÁü¬=HDvÚŒê[›'/@ë0ôØ× +³<^$4T§²ÙŠ~>`wU¢ÏtÕàwUÑí¦w«³a„± ßv boùÜfû=.²ª!! O-iÊ°N&Ûøb}<µZýBs°‰ˆAñ†êXB½¡Uƒ¸”™àÍD.jè½Ï=]m'Àç[»vgò= þç íÚ%äÅzÉæ`r,Z÷þæmê—¹ü¶ +ë žN.–s`.f~ÒÃõk0þÓ I?d2C^%E˜k•€œn£ÑçK7+ÇP9ø딃0/Òèr.£ ¼»÷É:;+´JîYE”Ù²Ì@2;è€=½¡ïÁ¢SYnyÛÚ-ÆF+ÿ„79g‰Œ¦Á€˜ /5Iœ˜`TÏàÃŒïÿ™Òݸ֎ä«éÍwƪߦ¥ðÛÂt,`8Lɳlú>ä3ŸŽ ;‰BÁ! ?aÂÜ¢À_¥g¬Æ±ð2? +{ éôáðz¯ R€>‡ßÖJÕ®|äjªõþb®5È Üæ‡&K™3\ÂåÂîÙ›ÆÑ\âjSo'('©Ër-µÍØQ*“M<©”ûoo']Ð%bÓÆY¸T9¸Ú=NQDVê®;ö\äÝŽºièöW=Ì­WÀ¦­ímÕVú¡iܽn´¾´g]Úµ>»%™aÑ”½‹;拦ÛOÞÑ®³®¨ôNÆtfî2ØÝD0Ü£”ˆ›[=þ*¼SP‡'õtí{™Œü9åÂ*?šö»ZñÑê 4=6園1dG¬ô‚–‡²VÙ3vY>¦çTTxT¶¦Œ¼cYŽÕÈ&1DñGÞ7gUçô8mA½óàãòC·kZmlÔgC@|Ý<óôê9N2>ÆÅ2ªN¡_šz·4@ÒÀ²±²aÜ\0`8£Wª+6‡2ké}$û;Z8ØB˜Æ :†¡QÏQúÃø¦i[¥÷Mm/°›YT˜pêÁFÚ»›y;¢Êü8ì¡*tÀ©Ôæ€njólfC›1[ã‚ÂÉ}º©#µ¼ÐPÝ_LC^Ÿ±(Ð +(Õ¶£¸Ð_‹Ä{0]/äÃhÆmÄËh› +|T¿²’& "ˆ]{ ƽ1˜Ÿ¿‘ÇÚlWbRÃ0q`õÄ„» +ühÀÎp•ë>Úf~„­‹zÛ8XÎ7A»Ï/|‚„$Ôð®0 ò¥œŸµ _ÇÓàEÔMú„[tªËøë ÿ´"Œ9O{’’_]M¦íï "5f ÿN÷›¨fÐhêïwxÝ™ë/D, +Û6MWã73–èÜOEî¾áRÆØë›~kùˆiœêL·ÃGc'¯r“ªž[Ô€èÐ:<â!“ÊpiUj•?ô»Íó¸ßÛLÕ†Õg'¥Ï¸/'ÍÁ9£N6¾VŒþÖcÔÁø#àŽ÷ yô ‡2鸿ԟ<óóTºà0£pÄظŽ.÷+Îe$ÿ8Òò?ö]‹9D\Î!þ8(gEª‘õŒþ?—þc¤B)ŵ#0Ù÷構æzð’ƒq׈ç‘À©}ñ3Öð©Åµ>ëüä}XÍLÁ1=4Îû†$Ð;;˜ç^anÿi½…c¸Õ‡ÁÌÇ!õƶðÍN(Œ:·ç½ð+&sÿ+pÆ£ô[þUè¿-‘2 +endstream +endobj +3832 0 obj << +/Type /Page +/Contents 3833 0 R +/Resources 3831 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 3822 0 R +>> endobj +3834 0 obj << +/D [3832 0 R /XYZ -16.307 900.716 null] +>> endobj +570 0 obj << +/D [3832 0 R /XYZ 56.693 466.386 null] +>> endobj +3835 0 obj << +/D [3832 0 R /XYZ 56.693 437.627 null] +>> endobj +3831 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F102 977 0 R /F52 695 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3838 0 obj << +/Length 2398 +/Filter /FlateDecode +>> +stream +xÚÍZ[“Û¶~ß_ÁÙ¼P™ lŸl'iÝ©“I¼éŒJ„$Æ© ×ê¯ïÁ7Q»O_–œsp®ß{[{»{ùt÷øÅ^‚0ïiã±±Øã$Daì=eÞ;ÿ7Qˆ´‹e@±ÿs%Ec†›ª6¹³“?Të—UõÁüø÷Û.~ú°Y‚J µ·òXˆf'„lÔ4p'î,TÜ#`G¡·¤(‰-‚1PŒ¹ÿh$`jçÝOwÞ =âQ†XzqB÷Þß½û{Ì(J¸÷¬Wî=J0 +BãÂ{{÷붪ÀgUâhG "˜¡ÞÕR¸mÞ»%ÅØ‘e"3 +ا%ÚT¥Dæœ@AŸ3R$cŠb¬dÐÄdº*„ÕÆqÀO· +íDšååÖª?-oà“P1ò™|fè ÂžL.çÉ$(ì¨Ò:Ý7WYƒœuUp 7SJ3Ê˾$§üê€3ïXŸÑ“»Ñ§ó–ƈ|<-2ûÞTYþã@d\könEó˜Uë86úÔÅä¯0Oóú°H”fI2?ûéY¬`:p›‚;ëé³u6FŸöŠ,ÆêvºUŸÏí3G^šÇ›|½KEñS,÷ð×ξÝçr7vâ%áÀ tЛ\=$ÁeWg( bg›M[®›cYš¼ÉËM5cLaÖÙR[ï JãtÈâPW²’ÇÃœ³Ä!ÂôÄMÀ7UÌšƒX監öÒ„&鉺Ú,êoÌkã¼ê½Rm·[,õ?¥ûC!,á—¯ŒÛŸGã”øÒFÉëÞ4ŠÖé9Â!ùUrDêr&Ä øãøfåA&:ŠU+­´!ÈÝapcH­Šjíê4dÆÇ’‹Ç/sÉìÑš´ü‚~&Âìì¹é®à³k‡Æëâv&Ü¿E»B2]1"¬ ˜FlÏåÿ«/¨i‡Z46 ›O"C:ÊëÍK|Tq–­ýYm.Ês„£øVùsû,«rùQWL¥eys(Òc'ÒL4QŒhÝ" E4tëT]ožÈá¤sÊ­£° ØÔþ%•Œñ‹_ ¬.j¾ÝèÜgÎÜ)÷ÿÅ·j{ü‰JìÍi™Î°6߈F^wqQª¼Í2ËË‘šóYÆ(ˆ:WÙäÛŸs•`‚¬œõ1$dÆRB®YÅuý/‡ÚUá9™?5o‹¼‘f¤ã7Á¾òJsN»Ñ@C#­hW3í(EJÇlu4O“$`ÐtÍ„¡.ë´l€â>•yUvjMAŽsÿsKé¢[V“d„µ9D¶ö]oò)BA…Qr«‚ùÍøû‚§, ˆ?æ_– Nâ½UÔ Jý³…z”/Øå|Á‡ùb9— L™ÆŽu¸óuº¡w²ÉYU…Úòa?Äã;0ë‘m_a}´€ü¢á³zœ&§¹¾ök¤ªÈ#Ú£áZl@Õõñzî…LÑVHôg› YO‹0 9œœä_űé#ìKüLl”¶Ò¶J ÚÆøúB@-°XøÏz]]š&LO­ÀFßï*(õlï´¯?´»°¶Ü¡¯™·µEã0µd <³{3[Š#„·èŽA&ìâO©.KA}‹e”„J+¦c¤€Z —Yý)ØÔ`iŒëy'¸Ë$÷Ö:÷¶][:2©kŠ›)岿€é +ÎXßzªS:¯U'FþŸYDØúQ%†„ÚÊÁücÕš† ×®…6š0"­„ƒ±Ì¾t_µºŸ‡©yx”Dˆà›lRò <ÒÅ%î¥Ûk(ƒ••R_hIt.‡7ÐÉ™êA}åb§Ga~“oK×i) pΣy¿:Ú¾&ÂóIáh„”Ý%F:†³v¾£#@“ßÝü|t3êÛ°&šÄðJXWû}U>v YŸáã‹ž^Îðñ87èÏÊ<‡ é×@†W®é^íÒrkƒûá¦p°[aP a üÁy:lÁí9ÍØxרÀ,Dß«7±ÿ¢hìôë´ÎcX–+/ù˜gmZœnGCš°³Í¼ç=ôÍç\®w.Ç8TóGÛؤÒ6SÏ5þУ+Àsž’ûÊáPÅa9†B“Ú0Î5Ÿ‰BNP„éÏ1›³}û €9ix´ÎÞ L#üvWjZ³ã‘f®š,e )P–×ë<Œím¯Zm…Ø ­ Ó>Ö])éÈï´†ÎãÔÉàúâZ¬eU‘;õ ØŒ< ¼pÝ£³ Ì·2/r92Gô o8CÐÁAE½B3Abï ÃÉu¶z1Êj©J(jâ£ê‹E½‚©½¥h;‡%ÿ•%¤ÙÁ6¹««v»3+  ‡¡©9 !Ñ¥ÙP¼t”«ÅÄe:“ÂåÚMm±WEÕ8ÿøŽQ$ñµXYztíwbç‰|³o±“IwœLlL&U@­ÈK3¡S‘ye¡0·s‰ÿýªhë•yçâi¸×¢ìÄ¡²Õ¿žþþËoogÛq2¸Œ[k1Nô Œ>é,)ac/ÓL—‘DK`?@g€Ùe—1i\üM%œYÒyÓ™Ui+wU=!¥Õ§Z¯s«>ª–ÒÙ Ž+¤¨óþЩ1.·©Ü«N×jC_èò²‘"ÍÆ—ï?LŠàx=ŸÒ75r&¢"è8X2W>ˆPÚa1àÄ}¥"Ö„­’EV&u©qè xkZ„ÆüX `Ø»´šýü–àag¤ +q½O a>nÌ}pQÐÁçÖä¸ÿµ•$×ØJKêt üÓÌD×"xšh4csI«Ìá:é»Äµ´P=!ò'P]%µW!‡Ø-Δyùaì Ï]÷eCâä›$0 Øg)…ð­}ºÆÍÝúª§«ÿÝ'Ӫηy €tˆòÌ#Ñ…úzþcKtåcKx ñ‹ø‹ó{“ȃª G‹esH×¾] ¯ð”Κ3 +P÷)U}”ÙÔév¯¬tí˜[­ûÿˆ{ÔlÕ"å}ŸGîݶÌÝ5¿þÊh Ö—³Ù„s(R¼† î{gCzc}èâ_VaçþõBuÉ,ù’ÿ¼ø/]©fö +endstream +endobj +3837 0 obj << +/Type /Page +/Contents 3838 0 R +/Resources 3836 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 3822 0 R +>> endobj +3839 0 obj << +/D [3837 0 R /XYZ -11.232 900.716 null] +>> endobj +3836 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F102 977 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3842 0 obj << +/Length 3649 +/Filter /FlateDecode +>> +stream +xÚÅÙrãÆñ]_Á’]e*µÍ…ËyÚ#¶×å++¹âÔz p(" 0kõ÷éžž@º\•Í‹swOßݾº^ñÕ·'¯.Oο ø*aI(ÃÕånJF«X(¦¢Õåvõ~ýÎ&mÍÙF|ýSÕ™–š»ª¡F·w“oªìUU}¤Îo?œ}¸üÀl„`IÐiÝmaÚ½1]‹Ó]¬b€*„®|¤Õj°$rðpb¯ÏéOÈwžüãòäçó•X! µŠÁB.WÙáäý¾ÚÂ`Àt¯nìÊÃ*œIB»X]œüó„;Rð{IâÏÖ <$¤~—2°Xøm«÷›€óõËíÖlÏ6*Œ×m_×UÓQÇ 7MÞåå5v’õ!-iôwÎe„ÅN^vµRwRm²—dÔ¯ú®îÝÁÛ¼1YW5·nG¹¥£'‡ÔuSÕMžvÆ#våwåæMÞís‡L·O»#@ÈƘé0>få: Ö ˜“„ë×UÙ5UQ $ᬦê¯÷؉œ @î͈û˜eÙ¯‘Ò" àA-€+;Pœ Ly¢¦¥ð ë´I¦3 ÿ;x›ò"uH +ÂÆ,M ™<èÀ_„€´›\1\wùã4Ôx ³lò둼¥%“Ž¾NÆJÄ«–™2½"¢&zr]Í×/€UïfŸg{šNû®:¤]ž¥EqKC[\}ÈK«»Ð'4¡QÂAØ +ÖÕÎí.ÝÿTlp€P¡ÅHaÒ˜0g"XJua,2b~¿èÅ’p“âÙ ÓeŒ£·ÔßÒDUŽæÅòtp"*"aq0ð1‡ <ãLè¹e¸2 ‚GÒýy&LƒânfÐÚªo²Eè +l‚Žü±ïÌ΀Üß.ÁWŒ«A¢™c¶JXk KÀ”Ö4÷º¨ZË%×_\…ØSNZì°ˆ¸C2ëõå>-?¶´ÆŠ8,ycÊÜòªI·À¤-- vÁ0ÝF@ý¯ó2-hxgÒ®o uóGoÚY¤Bòºj;+ñо}ÏÍ ÈÊ!ﬡ[€”¨[§YKq49غ9)H‹ù%Ë mÃÞÞõ®/¨“;éÈQì@}kT¹G +ÊØ…«­µ¨fû5 ˆD^›ö|[eWàÄا¶xÎDþæû./òŽl­Š–lèïGPÄÔ¨"ÝÁ©< _AöÇ.cãjÌ"¥v,ï ¢[zåøí$MÚ9úµ¨)RÁŽ8²êÈs¤V?è*¦mñ*£¿+àÀDÀiЯæX ³”nÓÎqäs[cœØË0aQ‹ý'dÌ×Yu8Tå9ý9 ²A “>.h·ä>NŠù|’Òœã ÑÙF$–øw—SQv6ú1®ª'… 2w’ÜÇ”8`RzJgU} +¼ïx¦„ö+QLXÄd<8³Â\§ +‹7wÇçAäMŒØFƒŽ_’A õvàÙé²:“èµíøÐW¦KXˆ@èA½þù—¿{ûíw— ¤R=`æc8"¶Y7$ÖéŽB‚„~#Ì$HŽ¹ø¥à×Ëï~~w±€S£w5*baLpЂ9ð)*Š/+5 ¢§1TüÂEÙ’ˆ>Hå—¢·@wUocÇ(´¶‡¬%ÅòƒÀ÷Hyy¯?Ö2~‚CL 1^ºìÒ¼lG€ ô—,ŽÕSÈ´Ñä-Á±·A£eÜApJéMéÕíƒq‡ôadÒ#„3&Ó»!`Ffðïë ¡.yâ £Ž-0Œ¸(²S•—»jbÓþç¾éM“¶C¸©¸wA*HWÍGü³I„,°†káR’1˜x4§ ²nÀWµ´¦oé…"º¤Oš ¡žâ´BÆG+3:-r}fÑ0 ¥il³¡p>ltf¼æ¡B4)Lq7ü¢sŽì*çõbÁ"ÍB «k’­¾±N]éhý¥Ýd‡]ú¦#›Â@k:ê[ÂÁ@Ymmò¦#Ÿ°ÙmYÑOÆ ÿÍM´'è°û„Ž©(xJ”²aY]ôît?áÇGð#'0ìãõrª@¬ éwÇ;-3O}ÂPèíÒ€LäÙb¼t,]>Tò~ +:ý†¸ ¶ê]€š;FêÛ»Qç$:Î*²½É>ë‡êÉ’cÐJ±‘î[LÁîÒ\‚ê‹ÁØ 2í\\qB˜[DVÆÞŸŸã¡pÓû”×ÍŠvÜ‹‹ó%Éæµ@öÌ2Òç½Ø8ÅãN©mÙ~>¢?K¡4¸Ëð±K¢‹¼ŠuLp0À9N=HqÐÍc“4uÐLÌ[ ¤1¬J×0¡ìýΪ/²`YxÈ¢1özXx2"Ü•vÍ»l#³Ž¡s̳Ž\Ï­ÅTÜmv¯Ã +9xùÔÌ4™e¦‚+ª™'zÛ}…’ü"'‹^ ~Ó«ø–òÚxg䦯“~ôéôÁ {Êëöï³¥¥”Î]±Î3··¯çgԹɼ?-ÒÎ…òK2û²h«S·3ÝšM;û¢ó‰'˜‚´èÍB©s±n6ŠA nº=3Ÿº&•ì~b…)¯ÉÃΘ ,-Ø5•«Eh~L Å}¡®¶îäÙITüh¹¶ÂÔžû‹X“6» ûtÀòxÇÑ™¨Ó¬n*ªnŽò¨¥í½O‹¥ ¤—‹[\ ŠU­{ö‰Å}®Ð€Îà1„Ç*Öb0σ±;Yfð"2ŸWŽU™ •êFHµ¶N3³i»&¯ëÁWùZË$Ñ ¦‰ÞB€ë +H>Ú ÉŽ*É…º‹âÎI;#ýçu¿É?ù`O†c{=ýBÒB¹[‡eÜ%?ÙS2d컪êJ|iAÊj±þV+s¼gpÃ!¤@Ûªû… ¯x£Ð„Žý®¡‰Àð(n¹ã©Ð…b® s¾ØèÊBÓ*žgmk3ª1_Ø +¾òw‡Öàl°í%Ïå^ò óE(’@I$ëÓŸÜ)“Ò½/ZâÙHšö”:IHŸŸ`£*¶Ã±Yß`ŒooÃ庪MIÊàÉCIuÄk±$îÊ¥óŒô•qŠwa²fÐ&”è«¢µC£\û(V‚ßðÈkeU^7€Ga+€í±Wñ¾ô}vcõpKQ˼ +ï‚êìã‡gÖT¯Š*ój*Ä#jÌç-_þ/ÖSM<Ð÷•åÆãø) +&ëò® õ–ÜÆ'É7˜|åR RÛù$µ–f %4LKR+ƒÐ˜¤8z}:¸õ ;uK©p¬×Û¼­‹ôÖCùOïNwÝ™_éâEH¹ž…« +yãküÓ­Y”ŽEç¹µý pèÏ( +"ùÚÕUìŸ>"›ÐÔÍfà;Zr&„†añaP8-W3DØð¡šñM_fímYÕmÞ.•ž Q +¦%Z||)²ÍÌ3 `ŇÌ`€Ý=C½~…„CNëŠ8…qà–h@ð Íì#áñ¹¡ç#؃\‹Óh„ž˜ë44¼Šù÷.—³ãTq¨¬¼Â†¾Ì‘>Âs>·¹,Rƒ¼õD€I Ì*)Öo 6Ê;ãßÐRz À-Hs†£·•È+(È–K›huÖ¤µ;ʽ©íS|$4ý—"e¬-5‹9jÀ×O—Ð~`á+ʾ*¯‘þQZñŠx^ÑÐ[úKhåbilK§08j€V ÐÞ™ºÃ©u$ÚrõÜÔ0AÙpTî0¼¡H1¡¿mN@Œµ5V¾ Øä±8¯fÄ%Hè£ +ûø ]Uºèåΰkö‚•ÓwoOiÂ…Î äšeêÝeçâ“vÞ¥U›ðã °Ïé–:Öh‡ƒMæÙf²>}eX<Z|RÌÁ@­@¡uºôg–f°ì‰çÊÒËkã¼øéø ÆqÉT? §ªéPWu·õb½š“Çm¤âéìò>@ó…cQ7‘V_9¿ð„ŒK°|Áï 2^Ñ\ù”Þ•ˆ|L5« ‘õq3/ÑK©£¡¨èÞÚ'ÑÓ÷•ösÓù8éîWQc8æE;ALâ'Y8fdå5~›iírSÎ5B-þð“hpçI4/!ØÜiøpækæÖÊÏ‘|ýj¿B“ñÑ{ D…“ñr&ÈO0ÜK»{éü¨ëw;:òÆœ™‘†™hqNµ^èÕ¦ÚVJ`X·&¿Â}½MgðåÀW¤Àʇ|°oR'–ø±–ýFBúšæˆM¼¾6¥i–««JFLÕÕ´ïöUã_@!“YòÐ4a0Ô¢ÍèKKzdµœÀœCýmU~u&àúÔ=¦˜}•] v¸œ#¾sö jÁ¤èÍÓ–Ž-*z®¡¯Gp /f* ÖÀ¤­CЕƒ¡á‹Á x(Tå9ºÚî–fýõ2ûÉ®éÝy9€[òÊQ‚0xîë1ÙxâW0ûÑÄ„]”1(È=Ó-†æþY,m[s¸¢÷)éÞؤs¡%Ë9 V0õXà~ùý1}8sO;œ$Ù’[öµxéh8ICp°¬ÜlUúw5ä–PŒÁeŒ•íûED‚ˆÄÓO@öœþ¹7Çƨ›`^zÒÐéÕX’ç‰õU³óºlïœ]îrågäAF¼ +PÂN§“_\þ`éß3Í¢ñyÙ}º7­–û7*+ù¾¢¯é{ù[3ªÎ)`uî^Gw‘ºªôEgÀ2Qð¶èìýÛ£õ郵ükŽdék`.>ù+ÿÆ+ +endstream +endobj +3841 0 obj << +/Type /Page +/Contents 3842 0 R +/Resources 3840 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 3822 0 R +>> endobj +3843 0 obj << +/D [3841 0 R /XYZ -16.307 900.716 null] +>> endobj +3840 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F102 977 0 R /F93 909 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3846 0 obj << +/Length 3405 +/Filter /FlateDecode +>> +stream +xÚ½ZK“Û6¾Ï¯P)sªF_ÙÚƒ8›¤’8뙭ݪ8J„F,“¢LR¶'¿~»ÑHJœG²®½H$výüºI¾¸[ðÅ?.^Ý^\ñEƲXÆ‹Ûí"–,N©Y˜,n‹ÅoÁ[]é¼Ó—+ñà—¦×]n›–.úü¶Ù¼jš÷t󟛟.¿ýج„`Yµ›þ¾ÒÝNë¾Ãià.)pC䮀}¢ÂÅ*bYbù .b’×ô'dŒO^¼¾½øp!€>_ˆE³8 I&XÌåbS_üö;_0;`*KŸÌÊz ÎdÃuµ¸¹øç·¢àŠÄÑV<¦M½“22»p-~[EœßìòýJHdVB"A«?u×ÓèWBªËä +ŽÃÃ`ùC}h.E|ÄMk€JQ•û;ºk¶$*Ø„•Â]I3 2â´¡—ÿºýþÍ[ )dÐéM_6{+ßñQÁÒ0rÏ°%Ñ¿Ý•m4/ +»÷îx84mOÃxód!‹¤£õMSUùz†e(a›™[f-au{Èýè*XIàà¦ÕE5Ãl¥xÄšÆØšÞ´wû¼ÖslG#¶çKeèüz\W%˜eû¹.Ãt|ŠP ¤YÅ°ˆŸž!ªR¦„'Ê.W!HáeÕ5HÞ)C†#eà ù\4Çþp´ƒ³&"Bð)¼‰l·eUæ˜F,˜J¼:ñh†pÙÛ=lveU´z?:»ÙåÙÞÐéWaÚ +•Õ–ušcgL¼/¸Óû^£Á6OFA×·0ÙѬ=b€4«¼‡¹õ¥äÁ±÷Ú¦2½ãŸ;}š€"!s{Ú@g-%ŽÝ‚×EÙ :Ï7 #ñ4¸½„³¶ù¾«ò~ð›0 t¿a a (òEYX1Ò}ÕXaƒµ˜MShÙ@ŒßVy"E4u5£ðt\7űÊÛò²$3†C™yUÑæ„• o$ÑIÌšeÄ"xÂ.‚!RÆ=ÃI#•/Ý–Þq.?›ðirú#£¹s[Ê{ºút)`IG[Þäd–3ŽÌAaƒ'[Z…q”ûm3çC²¦÷·¾!vûÆò]kby(7ïq n·NîJJŠ“·iÚâyu’ukÝçfænÓÔ5¸Ý|²ùX×kd—åÞ>•ïW‡üÎ.èšc»iº< bW‚ØþÜ%ŠU__¢Aà“ø`wLÙ箺L¢³¢¿ŸËÍ.×úc_£EÒðM]ö»i²\Ç)p„”*ŸH©7>À$2X7UAW>ú% +—sFÇ3–p>ìò®ìæÜ.ðá´Õu~øû‹W/–èX Å™µF{ÑÄíu[nèêm~_7ûâÅe‘Œ†ŠfS•Û^·ø˜°Ò€½öMSÑŠ xx1åý¶·ÏݵàL2 +¶tK*¢ë:o½Ý )g7BÅ,K“©Ý|B¡ù/Ù«%]y‚7ΖïD¨¶n‰î6ùÁA¼¾™v³2, ãðy2ŽÂ™Ó@¬cI>ß!6hgêKdò¸A¾, +£L’ÜÌ£¤4b¡O«7úÝTC<5<3Àî”’Á·èéU‡ÏÒà³{àˆ° ÿûœ"„e›0X €ù}CÿÍB¶Û­¹Xâ^––ÐýAÛ¥†ÝÁ˜çü)C4½0³/ûjI­Tú•ÙÔZ¡Æ@Áày”‚˜Œ›T¡‰˜8rnu×±ÃíúÞëÞ"X ÁæL3N!·³îá©ñá u‹LMZMƒæ$]ÚÏ85˜½Š=Ïï)Z+«DØ?IsºŠv'xʾЭ;iÅSöyeBòªƒ+4wÌ9”ËyÊxt"mEQ’>ž)E‰ +éš4nˆê¶.÷yÕy5XsÇG-‘ÐbAœoìþFûÒûîØjK€JEx¤ëýCÍÑ4–i5]æù{|“¯?÷mnùòÍèЬ;Ð FëÞí¤˜«Hç¡3‡ÔïSø׬VeÆÔ°Ê¢©HŽÎ ‹;p¸´ÿwº·sÚPŽ–ÓL/lÊ–®¼†y[…‹àÀFíhvtá>ÚMÞiÌ`?øÏç¼£s:@Ô¼ÍçN-Fu*ò×7èÌrÝj80d§V¯\Â!xÀ7éTú_ Å9ÏFaý$òþ4ûäûRWtý“.Áú‡:‡¼ßجGö…cÇnwu2æH¿¬r°ÄÒ’y ¼ÁrNˆcÚ!ø9aմ嚦] g>¶z’fÿ$®Â0ÜÙ<&ÿy¼F³PúTeGËuüÿë~¨í¨;aÅ7 ò1 €|MÒõT‹å|iḢ0\g ŽAãÍÙ8ëdÄ­År×ö«eW‚?gœ€ßÜfg¼ì¶SJ:wV2`a¤Ž˜ºÈûÜ¢ãþHHŒ‚ÏŒ2_¼†Ð8¶(su›÷^TÖ—“ªà[æA¨¼ÜêYx€î)}†2†9Ú=Äñí±:Ù)ì<ÿ£DŽÀ”. 9@x謓¸rÒbËDOùˆËtd¦€z×€­‰ªÍøâ!;kÐbA;—§+Î ¦nÕŠþÎ}`®ùeÐÚ™.Ýì­1[³js0&ÝžöJO<ÇÚc}¬úr…Én® • “‘/š?æ-F +°÷ö~A&Œ«¡Ø±°êë9»ÍE, ã‰Où³ò`¸#¶nuþž‘ÅœóQ̲‚=(°§ïôž@¨oLy+¸ÌÔèL’i…¶ÏS˜î‡?tÛ þ™I·„ƒMW®¬;jºÃ&'°`±R¬ Rb4È«£mù˜Ù¸/6Õ ä—8»ÃãIYû‡}è!ÆÆ7€ñ¡¨\Ø.Ù1?`ÇDfáÓ†œr¯Wjçnô¡'.)!ÄX¦c—¼³c…Þš&(tºÏ%ªCeÁÒuö"ž;1sðÎdÚRÆÔé:ŦqU5&›øœFT&ÂLN·¦Z°…„Ip{™RôÆ9[ìÑTmQ˜Nm»† ûÁÅ Û…ÍL-:YMÇ]1Õ¼ÜE§T¯†—}cv†æ¤ä«®ý½C8­ÏE(éåòA¨šëô|rËî=´e ûw­Ê1Ü,mž\ÛÅc´RÚÂêÔ[ˆhžwŠMR¦L*ùTh‚Ud“lxGAúƒHybØ®ZÞ˜w·T0ç„ü¡·“vÛbè;c¥‹'u+ðœßßþüÓ­ûõÛï0¾\Ѥƒ°®ª¿uÅù$ââµvê ØÅý®9R/@^º'²G*d„i¥žu :|™Içéæ ðZà ôÕ¸°ÎSºëV‡¦3E×+rçýnž^©Üwƒ¢Gô‘g0bú!J´MqÜøWµžÔöMTܦ#÷Ta5ɶ™”Ô±«&`ÜD0qÆÓôtüó'½ÆúÄ(»¾®&¤T:ž™‹Ïg9(égT0_þã^!3 ³c&BÍÏZF"¶Óf´»¶‘ò€mJ®Ú”\³{|”ПFdþZg|Xbç-‰2jÛ²,”,‘öc”ŧU™àP–ýz‰¯ýpŸ3Ñ€ã[ʼnÏe®,sÁGŸû€c>…¬µöoÒ += dãwž£BQ1Ô*‡‡ö¦,ŒÎz‰àåÞù†w$°æÌ ¹¥ÏsØIE+áÀ"”tð§¾Zùå±ÚÕJEÃÑÛëmÓøêl +#,[žÓ<ºíu¹/ëcí”w;Û5Z HÀP1œ~Pø `Uár»§€@äyípk’c©ZsLÿ”9Î}¨8ã Þ¿ðqà_⯠+endstream +endobj +3845 0 obj << +/Type /Page +/Contents 3846 0 R +/Resources 3844 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 3849 0 R +>> endobj +3847 0 obj << +/D [3845 0 R /XYZ -11.232 900.716 null] +>> endobj +574 0 obj << +/D [3845 0 R /XYZ 56.693 239.626 null] +>> endobj +3848 0 obj << +/D [3845 0 R /XYZ 56.693 212.04 null] +>> endobj +3844 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F102 977 0 R /F52 695 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3852 0 obj << +/Length 2705 +/Filter /FlateDecode +>> +stream +xÚÅZY“Û6~Ÿ_¡š¼H. Cðf¼Þ*Ç96Y;[ëÑVm•ˆ„†Ì€„BBO~}/A3Û•< $Žn|}7å-nÞ⇋o6WßGÞ"CYìÇ‹Ínû(N)P,6Åâýòe”ttµö#où3´ÓÃoõ@”fò[žÃù­~øÿõ›Õ/›Ÿ€Ìc”E‘>íZÜ3Ú•”ŠNNu¼HzHê!OÂ`±ŽP–úØ àÄ$]^éìÇrçÅw›‹ß.0œï-ð"ŠQœ‹$Ã(öüE^_¼ÿÅ[0 0Kwje½ˆ°‡ü †1[\_ü÷Â3Px'!±g‡Â^¬™úàû‘âÂn[¼_Gž·$E¡¯ßö{ÞŠT{rc°jõ–š·-ÝÑ–6¹EVp UЄ’ œd(ÁS °ª¹5ŽyõCäa»WÓFØC9RYã,B~”ÀPõÒ·¼¨>xžO‹¯WëKN[RwWUÓÑV I Iæ‘á;Š–ècÍžc„õñkýóŽÃ¬¡x-ȽàͦuŠÂ8•L ÌÌWƒYóÖ€™—Àm.h;¨~ËU´¼ß—´ÑÜüÞÉ7 +; º2@ìc9N,|uëR@u §©]_Yꇶ¡…%i@÷³Åéy –y ä ;‹ø «L§VëuÁgH&zX2?Ó•-ïôiDˆ¶Ú®|oytÝQ1È«&¥ѷ4,߶ڲŠƒ¾¶÷¨c0ì8³kIS¸ŒQš$Óóêê#-çE`ÌI/:+¤0ádg iÌn Ö°où®h÷—†T0œ±’Š5 +vàÒî ÐIc{ã¼<€ÖžwÀDŒ÷þxŒœ€|ÜCŠJÒ!ð)òãÞíˆJ0—µø)J2ß®º+«¼ÔlçPä¬3—hi'¡~â;=/Ax0ÔóV>‘蟎J´„!£àÐûJ¾6«x}õ†oVIh•$HÀ’ÃdÖ¾­:úÐÜ8¸ ± +@1›¡8ê!'ÒW%ñr+]\’,_áhIA×ÔÛCGw¦gª~wÏúQnÞÜІÂ%Wêy'µCÛ',ã±?=óÁ‹¼;ÊØsxLƒå½ŠD°F”¼£ãÍf±v½¨ãµY“:Ê ÃcK c÷µ Bý´»˜éTIk=z±~0êÓ‡ÆèƒtJQ³+%¼uÎ ð|2½HºHl¦•U °T˜É‚ã™wt+7y¾™3î0eJ‚½‘;rcò?Uí-Ñï‚h PÞ~¶Í«Üá¤÷5á’:Ý­¡‡½òÜeð1ÂAïfeܧ#Ï6 ÀÆn™V0ÉË~O;e¼*úíô¯<Æl®L Û–ÎJ åôÒè,ß ¼ÏYs:Ý'Jà‘ ÷Š1®?7ˆPŒ{ç*Àœ°ñÜç¢Òé>g!R–ÚÜõ›,ȪÑØÊ‘HZ^Û\Rî¼90ÒZi2Æ}A6éy0Ëk {À_á®é©›ö©ôÍ]UЗ—øÒèÚöWš sKKéñ;êc¾ìÝ¢³-¹/ÈAp©ÕÕJ!¥÷z³edK™Kµ ºgƒáVÉi«*…!a´EDö0˜šÛÒ\Ãlàêw©w„¨~ÏÍüÌfÂÙç3 Dl6ÝðfýmùsýZÙ>lþ_59;hPåÎFÿNΉ÷ Wb…—lâ‘Ì­/ä§1àÓ§›ÿ¼~Ükêó~4ί£ )ö:A‰áEßLI$ô»$3¡$!hí¯Û‰Š1ëº=#÷öjû¶ê«r>S±à`:°ÃÃØÇÁü>ƒ0nc€NŸ&”5W<ÍÀ%wV;Env~uv”Æ)Ò¦º)Is;s“ +ÎîÍKš—`’Õí©Î„:ûÑ„"Ï©ò«à:›bÈ Â$sdþñLŸM`3g=SIt®òƒÓ =œŽ#©x é2¡Lfj¢–ù‘ñFµÄûKdB¥cÜ‘bè¿)¯ŠJP`g!y(H‡&½! ”§Êéy%ØÜø q~¬áQÔ§øH ÖZs¯çš}QvñüâÁUÔ&ª=DYS[dòeÿkæ•?ÖÊ,#¯,ùhÞQö%àkûšŠ€¢ÑUÑ Nq"oðjÒ}I2#„‘¤ÚÌøëúŸ~¶DÍRƒ«ù)¢>ÔŸƒ|;ˆðŏʼ>ÿšA¾5»Ìk¶mÞ¾‘óC›ScTðLÁ¦TsÆÄ,$—Q=VÝÊÓä1P’øÇ-:)ÉvzK鉬Ë: ‘?»oÄ>™Ä03”ý“¿QÓ5³*N´IË 'ȃO‘4ÕmÙÒÝg`yÔCíÑûß»7SÜú©oŒ…9©š^!N¤¶lB/9Õµ]=ÓŸòâ2Ops>£é•y½\gXÉ£ V‡'afT<‚ßryi`,áR¿ÎûÊ€ÆáÓxR¡Ä©ØÈyÛÒnÏ›ÂÝíƒz!LÃó@}}ÏOFé•NA +±Ð;Òž>Ôµ7¼`@õâÔá…jûžI4ÁëúÇͺê?blïgº6Dx3Óêï¥è=¬|øHjpþ_;ÖþÃqUÙMÉžâÁw½¼ta6©Gs¾¿o«›R¸2PÜ»ËÁŽ_^²f]†€úH:ªËQ]óòòn¹¬¤vö_IAà—ÿÔðf)ätxê/Æ…ÏW8Lâ¼ÊéjçšÔ¶ù@Aí8+žÞ­kÞ˜Š&<ÝÅôG½it”LŒrJSÔ„/\åŒ9cpû§é3dçǯÇ÷+Ïílê|bEõ ÝGŒ¶5Õ¼[5Š'P;Ö¤R±Ù »ªP…u’*GÑ«lnÖ½S,Ì`ÓZ¯í-–©³ž–»·œ3Jš‡ölÙ¡Ýv'·¤YÕ‰‡w8a´ß|ãØ‚·ª;Õ¦ç+½üG¬%ÜDè‘jéÄ2·ƒêZeÏ–]Cö]É…juÄ [X¥¿ItzCj%K«‰,AP^®íDã(ÛÊ3¶ò‡¹~’‡˜U%)b !Vé^‹ùê=cä"ů‡NïñŠuóœÁ%T«&#é/-“VƒçÄÈA”¼í ÉADÖÕËOA¢Å<õg£«•d¹¥¦Ñ­V~ +¥€m9Àt%Û ~fºh~bËœtZ%¦ Ju™–ÈKé›î7<îþL/d¡—+ ཮H’I¿1ð-Ýd÷Õ™fÁÉf£ÄÁÚ³çn9JÈ‚$\V‚ÖR C/\jH•`®ö´íx£ÆjÖfÓ­¾´4 mMAèîœ> endobj +3853 0 obj << +/D [3851 0 R /XYZ -16.307 900.716 null] +>> endobj +3850 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F102 977 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3856 0 obj << +/Length 2387 +/Filter /FlateDecode +>> +stream +xÚÅZY“Û¸~Ÿ_ÁòU5 A‚¹ªÖÉnâÔz·ÏCªì} $hÄ2Ej ÊcåקqòEɳŽ÷eHáh4úüº98x +pð÷»×w?0d(Kh`#%ð^ïîþu‡/‹‚!’ 3Dpb˜y[oŠS±ùÃbÉy“ïåÃ>¯PQmDÕ¢UylV}Þ—÷‘?.–q”„0ÈŸ„|ØÔëÈ}–j:õ<ëæ‹j[ÛIŠÇ›ËB¶ÒÎF0;!_¿¶µ4 ÆÂ>5Jp·B³Ž€e5K§g??‹•šŽÇÓØÂÎæ´Hü Ä-:—‰e܉¤Ï·ìù8AŠuÛä4íO ÂBѬò¶ØË««Ÿ‹M»s«K’ápio‹õ.åÌp»‡¿vöݾhwÚàœ¥KŽâ„ÿñÈòÿR6\õ~É0¿ÛlÄÆx„âÂØÞ¨zÑ}Þžo‹v@¡‹ƒ=#3ü}ò‰âg qd +ÙnSùûËrÿNäUr"E\:'cÀ:yÆ#1(±:2E{ 3F<¤y?‚B6°–Ꙫ3ñóƒ ¥ˆ³ì¸Ú;ú‚ 4ß.OÆ£„²B(2ç&$›w“‰âEëÏ "Çü­nÒÛª/øí="tÞØ!¿P…¶Çj-OU}…TÅð„69äÙ Í\;‚1”pÖ?âÐÔmÝžSÖ’BYÁÎì4¢ÜØ©:L£˜íI›iD"“ ÔDѲÁÖ ëUãJ´~·P%ëç|(…%üúͽÅg\ŸÐÇkë&o:Õ(ZÅ[Ü÷†[DÉKx_–>7 êRÈ®îá +¸¡P]Ð[}jUÖkçQç>3ô¸$›õ8>ïq½¼µœv'µG‹ÒuSÎÎ3.fg/¹ð@x—{~m_{Þq'ü¿ºñ_wyõä« Ú!Œ0ÅŸ_áWsÑtšxè؈íºÌ¥œ®rpÔ¥y<!¥ÃA •l!ò BÁz@H_ÕÀ:À QϘXÔ‰Úñã³"Ž¾=¸Ú’âéR^•]¿”©â~Ü ú0;»9Âqz+“ü“c }ïyª‚•‡2?y–&LaÄh| ' 1o’ +o@Œñá¸srèzÍ" +¹¿!$|6^¥³ñÊÃ^È:§˜KíùÛ‡Œ‘uÏT—îˆïàÁÚb+d{ÝÈMŽ©nˆ#5e´$J¡À÷¶²-J ·¿d+tYú1$ºdi´7eäÚ¥•kGño¹5œ¡ž=§‰0Ñ ŒÚî#¼iö-uQ»Ñ€níyѶf^ŸD%TMeÓ-Yxš0/ÒÇ1ÔÛ&¯$PÜçmQWžC”K“4ÚßsS´­óo—UFÍ€e«àÕé&£" Dص§¯ ˜ß\Ú̘ʒb(¦RþÂxpæñãï7dá$óƒßØy{ϨB¾XÀû •ö´u]ª-ðC<¼µ/f=²Ÿa}|å£ÌÔ7ů¬&ÀtŠXWg¼¼ >ÇP„³‰üË©µ|NùÆ'“˜·zû-œi@ø €ÐÌg]Xà²îD%e7;†xÌ&ÒmAºUãö|ß¾1 ¿3u€N»ûo4ûmÙ¢Š'å÷dØÔûáçóv™î'ÞÜ ÛÖ_ËÜg ?î¼ ;/ܵûr¸ŸÏØ]Ù(›_B¥¿W¿Á1Ì—à«æ·mŽžD‹~=¢-OóÒK©!ºKjÞô-M½MÂت8’ËVÝ[—Óih¿²©¶?@Âg½®©LçGO­ê£-Ï_-  +­§W®Ð|<ìÂÆžÖËŠúðcc;0µ·U1ÛLº.˜2Jht‹ð >5)ÙmrxC)©˜6LŸ¡QœÃh›5-!ØõŒ»$ûʪÇVvË¥#“»NœSî}Õô`l(ïA »sø¡Z•ÿô³úöø½r¿ŒYP•„§úh xRz-´Òì„y”y³ <ÔmtØ—ïë£n"ÂÔtíÅà»7é„¡Œ‚™Æ]iÇÝ^×)ð²²\ꞤæDÑa€ •‰_% eñTé(´ÎwÀs'3¾:¹ïxa>ÂTR´­ïœæÚj²º›î" Éouo~Ù½}€íÆn®a£u½ß×Õä¿–¤³à‡ÍƒŸô,Àvô'™þŠwê¿””ê’ì%ÿ¤ô?ÀÃL™ +endstream +endobj +3855 0 obj << +/Type /Page +/Contents 3856 0 R +/Resources 3854 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 3849 0 R +>> endobj +3857 0 obj << +/D [3855 0 R /XYZ -11.232 900.716 null] +>> endobj +3854 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F102 977 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3860 0 obj << +/Length 2683 +/Filter /FlateDecode +>> +stream +xÚ½ZÝÛ6ß¿Âب]Ä´H}§‡ær)R\Ó^v+ä–h[·’èŠt6›¿þ†R²¼òf7‡ÜCV‡ä çó7t‚ÙvÌ~¹xq}±z³œä Kf×›YÂH’Î2’0]—³wó·¢\‰Å’ÅÁüÔBáëFvø¢wŽøR/¤¼Á?¯þ¹øpý+°YRJò8ÆÝ®ô]-ÔN­ ¸ÓYÜ“Ðp€}…³eLòÔñ§A ;¦Ù|…ʳòâ×]PØ?˜ÑYœ$giNI°YÑ\¼ûÌJ $ʳ٭ÙÌb&ð^Ï®.þu8UgUâ÷ŽrBƒ…zÏXl¥ðËfï–qÌ.KQ‚œI/dÓÈv:íº»ˆL>©ú£ÂáÄÍ÷¼ãZÁ¶DïˆXÐxþIwœ‘†"µh·0ú©1KB»‚ú£Mñü¤å ûN!jáÖES!±ÄãüV;.ê÷AèþR¾j*½»Ú2#Qb4 ÆdñÃù²ãª×ØœÂx’5±ìnÌÃ(: À ë_ä§ÚÀ6þatÁA;ŽšÙwB©J¶ +çîΫI׌"Bix䚨±û~%$H˜ŸØÍK®92Ù.¬¢«Ú-2[.‘æÝ×B‹á˜4b~4ü ¿{gr1[²Œ’4HÇö°áFÙ\ºÖ.Òù÷v‘®Z-qã81~[ÅÁ@+K§fHï¸öËŠúp4.pøG¿q +gh5ˆ§€›áÌûú !…iìÕôöA}Æõ÷õá¬ÙH‚Ô9 »—á€foˆjHŽYšœ*°Jûòå£1{X +Því«Åš«ªpµbð/»bä_8ÖJt[û¾†µ§“‡íNô8ƒ˜(:(ë%£…[sã+8`NdžÅN7ýü¾¶ñ ÕGaH̓sŠ ­3JbšûI&œŸ£Æ¢8&,ÉÇÙʈkþY/{·Z™M?˜Eï hG¥ì¸¦ÆY·¹Fg RpÉJ‰ÂÇéüÒìv‰ïÖê«AúÑi‘$N¾tƈÄC°·—²8ƒã—ìJÑá+†jðV)¨!cƒ„²u/¢Ò&Îýèp‰Ô$$eìq¡äƒÀ´´ñbÞçd_ŠZ*pfg;ÊHGy»/NÓ¢&‰óGI’ ìÝm½¤PB“ŽLþZÿ°ˆl ׺Œޗʨ-íÖù|Ãy uÖÁ5%ѯi·ê§“©­èCÎp_níaºÇ¾…lj58OgdœòØŸk%ŸKXžl)6já=š@¡Vðß‘'›5¤?_ÛOëú„ hh°d›N6È) +ÆŠâ« f[MΖˆàÃA83ú¦Á(%u3RØxÅhOÑ÷Ð ,˜€'SËyMm°d9{2,ÂuÓp + xg*Á#áö|+Ô +2Ñú‘‘Ž­O;º´&€`Œ¾) óBÉf¯±¾…™óc4 ëPhë-xû§¬eíÂä†kÝO›D\4ÏÛôˆëÕ¡-Ô]+÷ªRÞž@.³!á@òKæ/€#†_!žÀ‡AŸ¼6ÀØÚƒDȈÔ>Þlâ`­Ò5aæøA&†™¾›pM&™5Æj©3Ž˜—pn,CØuÁ rbURÝH¥qÁ¡­Œ ¼º6Ä,kñ‰!X)¯”ž³Ì,î âùK¡ö•v¼M 4i/Œ¡ +!HÅýÖ¥N¦ûióæR;Î.:¾w[I|îø‚NLÀ©è0ø·›,£1tBÑcÝ%± º› ðkoX¢Zài¼Õ1›Kzî" +]À›wæ"‡€!"×øÍñm䑵êÊoÔ‰}Í‹~«ÊIx[Y i$ÁGY!ašô¯ +}FÇšëY ŸT{QT¼Ælm£ÀS-±í/_¾}}‰W¨rp.¨‡-w"ÃÞ®*ÍkÄÃ9èPiÁKü°5éKb~Zóùå ËÄÊÑáä{LŒÆÆ)!œ®ýž­èáuî­2á<Ð> ½7™jK ô“ä8ô!gk©ïöS2×pH:F‹î&ƒóFIL’,iâB_×µ,nŽ¯EFÔ“zJOéU[W­ðË“qqNNŠ³5—›ËÒoYxO!!®ñžB-^eÜ÷›4…ªÔOµ¡²õ8»7Û«ßÿð0µ‡-8àÿÄ»ïêjäWŽÝYˆ ³¢#þsâ÷·LÇÚ|+×¢sàùJó;W‡_‡^®úKÍãSƒ$ÎFãTŠÄ8ô§è‹uLUA§uA¿.Þ +{ñó˜.Ň¼höÚ¹ ƤoœÜ4 ›DÓßr¸Œ±5‰Oç¯7Ö)ý¬ÏíIÖ°z&eM‰Smü¥Š>–+™ÒüÃÙ¥jKŒ´‡fí¬§„¡š–Øbë©fdX×™®ïiKàXÍôŠ®WŸfú/\ó¿Êe6èúùTšÆ$ŠûBU•ä–[x£¾x%okt<½A6­l—ŸEgÛe¨ðî’·²\qλˆÎ_ ûÖ^t¥k?(×ÿÁ "K°72[Èö‡…$œ€J¿‡r¢]/àOwp¤õ>‚ÁX01Àï/Xe!›o¢ÛÒ»ª÷ÍáêⶪëqqÖÒ ßní-á€Ðÿö¥ÒÆt¾ÓM½ZW뺒¾ÅFÔÌ‘Ìe²l!èúútL-‘]e[RWìèñ‹IkOÊI[€Š{Lv±vºùã÷ ]8X Cµ¨Ö# È”,»Oùt+Ö@ÊÓcÒÄcÇÌS˜Y-1 º.0Ž~ä¡“ÙøÑ“Ë\ÿ6Œ×j÷õAé;k{[uT¦‡\8žÐ«&iß«Þ±'€\}¤j©C7Ù-¡]e”>œ%7rd‹ÜC¦~ÜY¯³öKÏÛ/gHlû Aqt’Þç3åSÍòÈp\(ïƒú”‘8é1zÍ×¢žºvÎÉp5z[•þgƒÞΧ?PCÛÝTŸ½oô€Ã^M÷øx÷›F’(Ë¿p‹´K\0$Ñ©eŃ³OÊ›ÒìJìщ=›7Øx¶“ýÜäÿŸu‚îTÿô@OmçgLÌuÐëWýÓ¥4ë²ê›!út$BŸŒDèÿ€D¦þcCdºÍükþ_ÃEW'‘ +endstream +endobj +3859 0 obj << +/Type /Page +/Contents 3860 0 R +/Resources 3858 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 3849 0 R +>> endobj +3861 0 obj << +/D [3859 0 R /XYZ -16.307 900.716 null] +>> endobj +3858 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F102 977 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3864 0 obj << +/Length 2993 +/Filter /FlateDecode +>> +stream +xÚµZYsã6~÷¯PyB¥,˜àÍ™ÊC®ÉN’Ifc×n¶’Ô$AË$Á%¡±_¿Ýh€‡LÙžTå‰ 6úüº’¿¸Yø‹ïξº>»|û‹œåI,®w‹$`IºÈxÈÂtq½]üæý"K):¹\±ïý¤´ìh¸S- ôÞ.~£6_)uK/¿^ý¸üãú{8fÅ9Ë㘨]é‡Rv{)u‡Ëp:_dpzâéŸFáb³<µçs?Šiæ]Òƒ ~yöíõÙÿÎ8Ð÷|',ÉÃEšs–øÁbSýö‡¿ØÂpÀ¢<[Ü™Õ"æ> ÂÆåâêìŸg¾U…R%Žv”3à…˜ú=bÃ…ûlñÛ*ö}ïËíVn­Zî–Ü÷½ÔrÄÞ½4¢•Ô²=Öä^ÔÛ²¨oèMíèYJ]¬`{E^ŒÆ"d.RÄ(Žáë£hË¢Ó²ÖíƒÕïĺ)ó£ÌmÃV°³{M;9(n ¼ +²˜e ¨‡g÷ô ±.%Â%¶n¥¸eb/3rP^ö'¾^®¢À÷þ½—õrú±ñ™Ã#æÑH¨O<4ïíuRttV­êÕŸ²UðÊs¯Ð4}W”%nd-[¡%½ |DØð¸X…IÄR?›ú³á„ìD옡›ýŒ±’„¡œ–¯Á¢ùÜíyÒöQÌ8©å#Ç©ÛÌf-Îóœ¥in-R~'ѵšU=ð§c{ÇAä짠Ô1kxðR929t›7ªÖ¢¨;"n”Õ”ræŒ4dqøœâcæ§ñqp ·d\'^§[¡x`×ÈMñ»ïó8QX1­[ƒÏÄ1Ò‘Ï|D,å)†çaŸŠ… -æ§cáisd,Kú{à¡M`M)6F˜³NŒÓ'œ˜ƒžÂ<|Þ‹³ÁÕå’ÇÞýF6šH“6á¸R€à$Qæ]ï­>¶r‡È)ÀšS>ÏÑQîÓëï~ì §fB3ªy£ª +‚8È@زT :g±·~ A¯]*‚˜‰xê]/3Ân\;4M+»Ž>he½•ä¸h@¦) Â`0Gä{ÀpG0§'»â± àgú(̤HSQŽðâ4e³YŸÁeÕè:?Ç1júüœÔãrú"Àr®>8Nm¢u mQÿ¥¥^ÔõèR¥Í’k»ùÐÉÝ¡´;m|P—$—B>¢GÉG Ò¼“r{)\Å¢÷BŸ¢Q*',ÒéfåüºT¡•ÄÞ+úI’&ŒþR÷­]2Ò$‰w%*š¸ÒT©Ê-ÍSº‡ù¦UÈÁÇbKš†5QÓŒ¨ÍÌÂy©´¥o\¦,Ëx"²|N³[µ±“$-NÉJÕ`OHm[·fÉŽýHÏÔlV[½;èÁÞªÑОªË~öeÙa®5n0”Eµj+QÊ•‹9‹7¢,§.:Ú@ì=*ŠN€Sd,ˆžM±œÅ<Ÿ$C¨w ¾K+\»0Îx°ð‘šH¢Úvr£í¢e›{ê ›ƒ¦ÉJêv œÿ¸~ÿãíûðÍ[D˜ Z¬D݈ÙY +Áö×{{Ö qóZ:{PÙxÝ^ŒsÁv@*M! d #3ÛÊJ`nÂYìðDª•§›3ûZ‚ÒZpGløîi«Q`¡u)´.þKdÞTÂâ¡ =„b=ƒ‚!¢Å€­Ú6v¾S•œ)¨‰¹›(ÕºùÐ}¯¶6Q¿FÄÅšûñ¡c÷]y6xóÜÌ c€0ŸeÇó÷wr ynöº*'¤¢l¼2!–<^qäÂ7X`vŽ19 @^!7 «ãCx4¿jâ‰]6³Ý¥ÅÊ'êë8öØ}…ó7snò$¡!CÈÑVôx_€áe‰N£«ÁA®ªBï§Ö +Z‚¥T}Iøtöµª1ÿ·ÖÕ>«ÕgSt'9Šÿ8àü#ɳ§¼+ä¾Ó‰‚æá–"ëB—ÒŠMÄÿE­{þ®´xÐÀøi©£§¥~‡ù«V¶¿¼ý–¯x ð|J׸æ¦Ú`GâÂôq09Éó9Á›Ð M‹’¶Aáã‚>\ÐÃ| KîÙ)ôÚ†ÅÈ 0³ >óØ,²u©6· Bƒ¤~1ƒÿa°0롽в‚T³5ÄO4E}³ò éU½l™ª…jðäЈòô¥D‰±ð_b}.²¨×C)Ö²œK„ Ñ wKð6ˆ€z;×Ãú, +ûOÿ“ü\fùŸ Æ÷¾G,r>J‘‡–¦Ð‹ñÙMïŸØP0?œÂîÞ¥¯ZiW™Êzœ¦¶3Yqwh!™Ù€Í¡Ó + h¼ØR£›†q¡ë24Œ”«”¥è + »Ïg2œãLÆ1Éé£L–ϻԓÙ ZcÇcÆ$c÷™àø“Õ\nèéÌSr6Àç·Ž\îIö濘îø1 i†u‹Ïßí­ áË*äNÞþM> ×)€þÏ’ãu"6AT£¦Q€¬^8 ²ÑZ-ÓÀФµŒcÿÔÒ ä£ò@oÔÕÚvµD‰"_pšA00ƒ{“RF +4X:ø¦qöï˦‘ õÚTlp,õÇ'xC)f OC +«¿²ì£íáQ“9Ó5s²hÀÑ^p/)·3ð’…,ŽúÛBÌdI£1k]Ì‘"À:PW»¶ù3ä3'é˜|}[";˜=º YÊ“ÇçÜ[½Ÿ—‚gÙøj:Ç68Q8z”õ¡E.¢ Ëp@04U=<‡„/ ñ­Ý*Á‹Í5)¾aËæV ooWÖIVMúùØ}ÍG5 ¨¦*í®-QÓ`àÓmö§[†›¾/€ÛÀèûΠ$ôÑaÖŸèå×o?ÌUÜù·²Û@5ã\χ{­›×——wwwKh—]ݳª.[¹‚ã3,ï_ýl:Áÿ¾EÙl#ø¾âs­Ô­Åó09Ñ™$§:“tXpÁj‡pŠ‹G¡1ž³¨>þRQ%®?þ<ž9Ã8î3›ºÙá1ø¹Ö`œÀ¡uvÕ7Y¼åë¾#0W*ãj>­Lòù|,È´¹›»ì>éVûo]-0êçû¬?Îñ\—GN{ ·Þ÷¬'lµ£–³~T.k获Ffkè¶ÂCŸ 7쇟u!ðˆþ_ëùã‚÷YçäœCÇÛß3–Û™û`苪Ìü¨ö3}¼õaA:Üc:;»ëâ¾;¤²¯;u}8Ô‡•ØÊ©ô÷úPùŽîg³ˆ¥ÃTg»â›Ðw´o”; +jw1Òߢ@˜»ðié—[v+AÄ™Iö°$HŸŽ–í @JªÏ +)]ì(Êç›o¤-áí­i¶aò0·}­¡OlK15¹ê_1-¹Ú¤¿ +ƒÔñÓÌ×=;ýÝ׈›éñ™½ƒ ÇÅ¿ ²‘󺾒(\’UàLîÞêÍTlÜ+A¿ÙîKÿFl~?ªÐ +iîM%‡‰N sMCeZ¯ÌÞ +Ä+MLÕ‘§îúV*q‹Þ!iÿè¿Rôlå¡“ÓSX:PÉ /T2ƒÙFÑŠòˆz¥ºÙ°MÝŸá¥0?[ÞœtÂ>Ä ¨/j]¸e0TjHÕÎEû„4ý½`¼‚—Îv$ËÆ6¢¶Ø³56 6¾Ï¥KwwJÿ»*ùzQ¹›ê™‚æ6†ø+DýÙ’gær^oÔ€·»ý’b%À_ÄÌ¡8kzxûB‘Ÿ€i¸WÓ˜@?2½ Ê‘Jš¢[k÷^<¬í7¶D„þ3%¼kz³²ªÖž¼Ù+ò”-½«šž…¶4­„{è#-7ÐER• #ôüù'© 9nì_±sZ Îý_&ò!äåï2ÿñ1ÎÖ +endstream +endobj +3863 0 obj << +/Type /Page +/Contents 3864 0 R +/Resources 3862 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 3849 0 R +>> endobj +3865 0 obj << +/D [3863 0 R /XYZ -11.232 900.716 null] +>> endobj +578 0 obj << +/D [3863 0 R /XYZ 56.693 240.288 null] +>> endobj +3866 0 obj << +/D [3863 0 R /XYZ 56.693 211.621 null] +>> endobj +3862 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F102 977 0 R /F52 695 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3871 0 obj << +/Length 1689 +/Filter /FlateDecode +>> +stream +xÚÍYKÛ6¾ûWèh—=›S‚¤ŠlÑf ¤@’-Ѷº’èHr6é¯ïP$-É–½rš,rH,‘ÃáÌ7‡£Yìlìü6{¹œÝüêc'Fq@g¹vŠ‚ЉC,t–©ó~þVä‚×báRÏÿ¨õãZVú¡ÙšÉW2y)å½~ùûîÍâãòwØÆ%ž¯µÝ5_sQo…hj5 »'‚ݦv÷`ûÐcŽë£84û‚Æ0šßèBµröz9û4# ;ÄñÄÌ c‚L¤˜½ÿˆæÀäÅ‘óÐJŽO0¢,€çܹ›ý5à +<€„: úq‹‰UîňàÀX¡¨5îsÞ»c<_."<—2·îõÁ,¨‡X`t,-pk™çrAýùCVnôP²ååÆB½å ŠçŸÄŸ›+!JýTðÔŒ5²‹G»7ØÜíM"…¡ò»Ý»9c"£øÈJ%Ò*¯³2Gñ¬ý\i– !&.%!"¾QÌ´Ö”úÇØùÝ­Tj7S­ö–ß/ž‹Ó\ ÃÖ•,Ž¶òZGYŒ( ;ʦÊV#®z/¶r…L÷ù’_êÜ€ÜN¶ÎC ¾Dð>yzõ­L3e£HY¸Œ`ïMaÌ¿÷ã±ð¹ÆÝ â.òØÇMÿ›Ù»"k¶ÄŽ)êFÈ À$ÆPÐEãQŠ¾[@ÑJq*½}ósóôAVi‘5B̾Q)C„ÑiDåi +=¥Ó;F]fžoÅÀžB”Í3 XÓˆÊÂY¦ùi¹Ö¿©X+*ñ}Þè¯ø¦â»­@eXÍÔ @#—‰ú ”µ ßì8DÒ-eUð<ˆ€þÀÐà¹ÖÛ¬÷»¬‘¢/…¡§"Ý£«¶+ynÔoÀø»F(Bõ9ó’çùQt » @Hýï›U•¥±< KD£ ¸Ñhàk*“œf·Å¯³8„§ãðOQìrÞ»ePØ¿pÍáY…RÙ€¼wµƒ„ÖH¼kËž"°úä2¹¯{to Šav15 ²UžÉöd¢6Gm“˺æUf³œ6ýð ž Eè +ű&NãÂ0Ñ[”‡Ñ{ûúÅ«Û×0ÇNç´kn½‰ ÂY& wÂw¬ü:aa0•…#~Ô"i2Y¬qIͶx%¼·~± ¼³½ÏõàüZÃî Ú/Ðc·Ž„Åé¢èÑA ÄÞR‹¡YË~†äXˆ4ãrõ˜¦Kî„?(Uz¦J:©èÄdé?£Øy:ÑÇ“åU· ùŸ&'ËÉý7%³±h±G£åMM)Wä +25\ƒ _u}á'»¾ÞµŸˆ•y³–ë7}oL‰»˜þž„_%¾ª›ŠC)Âì ø¬sþ‹ùü;ÕMCD½Ã§igÿ +(ë1ý‡|?:Ò¿‡júÞ|ÄêÄ“á=GL|ÅâË°>z#ϦÈéhXðRI5ßv‚7ûÊÖB¶ŠúSIðÃÞ ¨:Çê…(‡ØVâób$«¯#aò +ãã0e%ÄéP¦m³Í6‡ œnA ½ „sA ù„}{%G§btjú£Ó*ªG«‰3ÔŒ'Þ„ +¥kªŸè¢ìX?*蟒áW¶bÞªÜ~^> endobj +3872 0 obj << +/D [3870 0 R /XYZ -16.307 900.716 null] +>> endobj +582 0 obj << +/D [3870 0 R /XYZ 56.693 759.068 null] +>> endobj +3873 0 obj << +/D [3870 0 R /XYZ 56.693 738.489 null] +>> endobj +586 0 obj << +/D [3870 0 R /XYZ 56.693 667.177 null] +>> endobj +3874 0 obj << +/D [3870 0 R /XYZ 56.693 638.418 null] +>> endobj +590 0 obj << +/D [3870 0 R /XYZ 56.693 183.094 null] +>> endobj +3875 0 obj << +/D [3870 0 R /XYZ 56.693 146.098 null] +>> endobj +3869 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F52 695 0 R /F93 909 0 R /F102 977 0 R /F57 739 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3878 0 obj << +/Length 2390 +/Filter /FlateDecode +>> +stream +xÚ­YYsÛº~÷¯àäÅÒLÜéºÎ8©“ºÍMÒØmo'¹3†HH¢C*—&¾¿¾ç`!Evœ´O àà,ßÙ ×Ù8®óæèåõÑòuè:)I#/r®×Nä‘(vê?v®sçÓì#/9kø|á…îìhy£†kQ«A»Õ?þId/…ø¢&¿^½ÿvý¸fA)IÃPQ»jïJÞl9oün§N·G>ÞÀõqà;‹¤±¾Ÿº PŒ“ÙR}¨áÉ£‹ë£Q ï:Ô #¥¾§”D®çd»£O¿¹N¿$Hç«Ü¹sBêÏ`\:WG;rµ*Ü‘J<‡z$¥4D® ñ "!Wž+™0§œO êºî²S8F\-æ¡’A'{ŠÖµQ`}¨ê¢ÊÊ.7ÚÞ±[£ï5gmWë]Ù–UÞÀÄœ&³f´êv+®%kõ]Í=wÖmÔä³ëzßæ4œñ†ôȉIêûJKçæ¢Ýê‹ÌÍ#à}¨Å-ÏZ5¹É…ýÎkqhì|·eu‘™XdÅŠ[Ø!W‚ÙŸ‹*/ô¯—uÑlÕÏnè¾a¼,2Q½÷MwËjàñ¹„JB‚(š¿²ªb9Ó6þETQ*Vpþ¾.îÌoºê–­ +=»ž'€Í<x‰ÍhqW”zþOœó²ÙŽë, #`ï;†8Ïsž£„þ¬éö{Q·j¢• «{žë;­]¿÷ ½iÇÚ‘uüëZ¡F%[w=‚ „ÉH Z¼(!IàC’I#û–×–XåÇ$ +³ï¹…TH¢€š l¿ç`ÅoJO\ÿé”0–Y¨x‚p:P4Dà°¹MF¸0zz5_³Œ?$bO’v£®jáÆD2ê Ô04Út:ÐáuùšBö8 ‰À!'º!h(i" 3iDH½c-©$MèÄrÓ¤$€&ªþQ‚qH|z`J5se0X2H[áqv}’ñ3lÇAÄfêläèz?än2í°¦Ètž3žg*šû(¢nã^€U±* RX]’º=²Z4I k^ó*_ž +AØ$Pëü¨÷8×)±Ø茯²ÅT +nû=‹€Âl;+$¢¸…•ÔQƒ·îx^0±’™×¢˜”Ð8Ñ™JË^Àþ#Ô…  ¯Ù#fÇ츚ßèçù½¯Ô$ ®Û‡,ý.·"md{ô£‘Ä•±k·ûm­ë“©y|§š‡¦I¼ôiæ¹øõÃÅÇË_.Þ]ÏS(ÞB%à§Ñì²ÊD ³VTX‘JÇÁUYÈ*Ç(‰¨»jŠVï:,HåBQÉdwH©7N°ÿ°Ÿ[~"â|¤³+á+ð=c[-¡ê=¶Û—|Thþ,(˘öÂJ•H:ððD .º¬='Õ.ýýãåCW^¸÷?²|®ï³hÐqó ÏøÐØ +›ò­±Åc(¼!b^ò“‘ñ‡’tt $RÈ• äJHÅÐM)۶ݟ,— ±X‹4¢«32I*Þ.uYº^–YWCØl—_•Ë Ÿ•Â¦ “·~Ç=mžÇé ÑX96\Ç¡„F}ÀÇAtèß1@ÙB¼vHímÑ–6š^ +UPOS¶$@nÀLÚš+G’éqð½)*Y–Çj>ð/§XMï8ÝVHLDòÜidÑ1 w‹þ6ÀÚšlxÅ룛²hZU,Q4äÓ±;™ö¯ç¬9*9Øš^²ú—5Š¿îû:Qv•½‹ʇ ÉVT•Ã#çà=õ”ì0~¦¦Ÿ†qyD›€Ž9ä»Iv"r -‹a I `IqÃÈP‚F§úbG–?€u˵÷béĨ‹¯…i Á-1ÀÝËàânüX2 âƒdehÃÒ¾0—…o¶EÆõIŽ%akŽ•ù‚ØfK±aH°|Ou׋?ñŠ­J®'X….º“é9”íµØ×k5uÝ!óü¡|qÓ³‹Yß°{lÞ9B·áýÌrN wšM7pi’œžV.”+ó‘r7~ý1ÙHëè>€ å†RºñƒþžV-8 ?pÉZ<„â]¿ka’pBëäE¦43S„%³;Ñ©¥¯sŠ|¶jÆÔgÐãØìa2vqƒ áäð¦æ(‹Ôpj®Lf7§[Íå¾ß?®%¢ië.ÓX hÌ—Æ8;R@n{ýÄÀ¬µŸ<Ø"Zìƒ-HŸ9^ä+£˜Èuµ’þøl-ijêÒ`ì÷ÑáÌÖqö‡“w¼l[”ù8¼ö°3¦{H¶Àúi……ÖÉ|HÙW?†¢ÁÏ^m…h´¨ëZìlz}ÿîBmïß½ý—éß{üJî%5¬±°¾:±Ñ<=puînZV.ôìltD‡½Ó,#êgjáÅ™õ¦Ç,vv~ºÔ£Çv½|Ò®Wý.rº$9;]J¥Z0`ÈŒLð¾kµOL×Eµz[D¾ÝÂê”Nò¦±¥LÄhKõ‡åQ™÷ëþ·{سTÈJßøúˆˆ<×õåóq8}¥CÖˆÁhxdÆçE¦>H±i©ïÔTÆ(Qaµèd§kêõ ÷Ê6Wd$ÃJE-3=Ú‰FP–Ñ‘¡sI%ª…V¯ZùFïTÕ·æ2Õ1¾±k²[†ïéª ‰qø¤káÚ#-)šÚ8L@øÒæ†:xšêp` ð‘*ÙÀSÓrN1Õ2+Á"§2l‘ñÖdCshÅó?¨‡ßƒÐ¡~SƒÍ¯ñe{b‹ŸÐÌ¡÷¿PÑÙã'ô~øhüDêÑáb€íÌ(¦‘Ê ô‹ƒThw¬_½„ÄÁ¤@Æ4ÃÙ$è¢ÆÅ—í°ãhú3€ýW—E{ +endstream +endobj +3877 0 obj << +/Type /Page +/Contents 3878 0 R +/Resources 3876 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 3882 0 R +/Annots [ 3867 0 R 3868 0 R ] +>> endobj +3867 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [305.796 714.391 393.287 725.295] +/A << /S /GoTo /D (V1690_MAN) >> +>> endobj +3868 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [289.228 696.458 373.232 707.362] +/A << /S /GoTo /D (dot0) >> +>> endobj +3879 0 obj << +/D [3877 0 R /XYZ -11.232 900.716 null] +>> endobj +594 0 obj << +/D [3877 0 R /XYZ 56.693 759.068 null] +>> endobj +3880 0 obj << +/D [3877 0 R /XYZ 56.693 731.272 null] +>> endobj +598 0 obj << +/D [3877 0 R /XYZ 56.693 683.517 null] +>> endobj +3881 0 obj << +/D [3877 0 R /XYZ 56.693 655.131 null] +>> endobj +3876 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F52 695 0 R /F93 909 0 R /F102 977 0 R /F98 924 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3886 0 obj << +/Length 2548 +/Filter /FlateDecode +>> +stream +xÚµZmÛ6þ¾¿B(îí¡fHŠz[ô®èKÒ¦èK.k +$ýÀ•èµYREº›í¯¿¡HêŦ×N.÷É%ÍÙgž÷¾»úz}õìEŒƒå M‚õ&H(JÒ #ŠÒ`]oÂ×¢\Šëqøs«„4ÃMÛ›Úڛ߶Å×mûÎ\üzûãõoë@ÍŠ”DZ‘v«k!·B(©oƒvd =‰´vêS«å©ÕOpÓ,|f~Mô›WÏ×W\Ä Jò(Hs‚Lƒbwõæ7”pV€XžÓ» &Ñ(qÜ^ýû +[Sà…Ih¥q>ØÄ g9"81«¢ eX†{/x³"ãðÅ/‹éó‚5(CQb¥¼¥4>”ƒ¯ÊR”Æ> x°Ó¯G)ŠIOom£D£Vê±Ö˜‹£LfãÃ]ßv¢WöÌZt– –Åîñ^‰¾áõê¾çݶ*<² ÅI6¾P‹,çs£á|¦4öñ(K"1qïV;~/J®¸GKŒQŽÇ}€Ûí¸2‚¹R}uwMq¸W- ¹Š†’Œ€û(_bpð/Ê}×µ½2ÆÉap/ÑsU5÷ž½š£›ù¢³Š¯6•¨Aj +Š^pÕöÿüìoÿyþúöå/?öì_ž½p`L#'é-Æt±X˯Ï_™A»WÝ^¡ëU”Ñp½­¤™ÞñwׇC ¦‘O˜wñ©ÃrŠpœ,£S-Ø ‡r Ssýç5‰CÑË +Îr˜¨sã×Çðç5C^Õü®fZmûv¿uvV²×¾¢¯Høʸf¥¬ï½Ób~¿*úöŽÛµ¼¼½ÕÚ”fЂl;÷êÛvÑ•Ðëy€u:G†8îE®±¾Žâ°•;Þ¿Ó‚óP>îîÚÚŒ·°„Z»\e`úR˜yNYIe7™‡•Ú¿‘‡íÆÊä;ad˜Mçá÷ëŸ~´÷&Єæy&«ÚÞÜ„P6¿Ãùkh¸:Á ªkZíÞ +!¥˜ÀÙBûÅ%®ã+ Ëñ˜ô•Úr;ÒÀëÆÄw6­™6§_ï…¹´ "u Þ«¹”f¸]3¥=É=~cpP8u‘¡ÆñFšú`)wkI¬uµ¾™uÍ㎞v?Ķ‚Øè ¾¯!ZB8ƒdÉ–!Ô‹¼s8ޢ̀ +xaÑWòì-Pš ^ÿä†æžpþ7(Ø(1KÄÇÂ! Ðèb»áÃì"ž›³:HùíÌþ–6ÄKbk3n VÁ>‡! IÅìñÚ˜Öâõœ”ÌðÚБ3õ>õþg,Æãl:ûÓ1³õb–è=6cÂÑh³£=Åp²À§>ÍžœËBÂö/1ˆ6æp5ññª!_M‹¾kûñlaiOžw]]¹•©Öü +^líŒ{=,D]š€¤@C¢Øšà ïYûCxÉD}è¡*O=¤àDI”Øu5Wny¼q8ägë½ÝÖû}Bv¢°RmÜK•³—¾U’œ!:ÆÙß=kKÑä^·Ó^—ƒ¥€Uåæ±øÂEY0{æˆø`°Í?ÄéÎ1ÍMûþ¦ÂÉd|ŒÉ&*¨éðÇƆÁŒ0.½ø” l© h äGqþt[O´À›ïƨwOTá²æj¶“#b@5ÉÏÙ‡El’Îָ̃b/U»«þ:A£eÙHöøt.”ebÈ}£ •Ðòg¤^¯Áðƒ(!á7Þ}[×nyÓ+c’ P'ÍÖg("äp-¨›¸™')a.=ž‡&c>ѺI%¯Le€:ÌR(R•‚R5¤Ìœš;Þ}R¢KAŒ$—Áœ§~2D¦Ü»i[LœÍ>|Ådóg— t6ÊŒ²tëôŽË2!\6äaP>™[<¢äRÙ”}fÏšDtdt8rÿïYïØpC³¥IΤ7ÿ@ùΨ{ä¾n¥¬­ûè1ÉN%x’ê*Šýÿ·ZA*«þå‰U.k}Ë=¨NЄ7CBóR =Ih âŽ.ÛïKH¾÷Ö»ŽòØÐÆ(gac +3/Z`‚†öŒ9Ó{à5âå®m*Ùg0)…$Š“s˜¤Ñ.›Yâ#e¸Ø¤hQÐlK2`tYZþèjtæCUùD/àcºhšÔ%}|"At‚™0d»³Ankë=×mᨳ«±®°TRŽÙ·RÇÀ)¿ã3”±åAÅÁ›b;‚Ö‚Þ9 2]/êBJ¡M{S5'ˆÆ²î¢wݬ¯uAƒg9âæü |Ç'J‚ü$ @¯Ê> ,þ<Ûíø{TŠÎˤÙ4‹<Ì°×q|°èÃv銀G±@"ŠP¦»¶ay¦ß‹º»¤ezÆÏ‹ºê\›Z˼¨!Q)¶šAZ¢È!Õq)žÞ/>Ú(óoT'ÐOÕ^Q’ÍøÑ]Â^ê}‘ (§²7íï´k¸Ð½%ýk“9ä1cÅù±ï6·—¼ûwy®óô¹WÊ}ç +é“—BýJÒ³}Çk“4‚¬ìó.BÁ½&î0cÀ@s²8{BI¤Ð—H¤¿1%çK(R–]åßrŠºÒv†ŠÙ¤Rý}ÄQîî)ÚHbHE‹Ï*íÝï¢PE{ +㳃ºRÛ¬\ºf‡¿x]¶8ÉŽW½¿vGιf%íéïkŸ¬\ÈNf¼/|ۀѸ‹/«Ý=’}:®¶_zä ¾;ÚË÷'G,å½zy\/Ä(e——£¦~§óö‚ }t\N§s@p!l³„NŽ0mÌ_>ƒ¾ +ˆŸ²@²D<3£?å4\›+ç¡0\t¤™{ØŠÆŒ€­î+®?Ù­"–4+舳0<nƒã‘ZÇ‹bAB„öµÏlš@6"4¹€á€š¢*gŸ¨‘ûÇðÆ\د&ŽÍ-¾¦3x…˜á{ÍOn¶½Ø<ñuÒTq(C<ûJ=rDü?vu¾ï¢`áÈÖÊ[G)?_¬ŸÝËSe«ÎvøÃIµ+S‡‹É?|„D ³m)6úk2­ê~ïD÷,Åéa7³0ÑpÜ–1SiµË"WzUrlnÏ OWôšù÷)³Ò…9|ÿ¯`á$ÿ˜¿Wü¯ÃÕ +endstream +endobj +3885 0 obj << +/Type /Page +/Contents 3886 0 R +/Resources 3884 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 3882 0 R +>> endobj +3887 0 obj << +/D [3885 0 R /XYZ -16.307 900.716 null] +>> endobj +602 0 obj << +/D [3885 0 R /XYZ 56.693 759.068 null] +>> endobj +3888 0 obj << +/D [3885 0 R /XYZ 56.693 738.489 null] +>> endobj +606 0 obj << +/D [3885 0 R /XYZ 56.693 369.916 null] +>> endobj +3889 0 obj << +/D [3885 0 R /XYZ 56.693 341.531 null] +>> endobj +610 0 obj << +/D [3885 0 R /XYZ 56.693 311.688 null] +>> endobj +3890 0 obj << +/D [3885 0 R /XYZ 56.693 283.303 null] +>> endobj +3884 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F52 695 0 R /F93 909 0 R /F102 977 0 R /F98 924 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3893 0 obj << +/Length 4417 +/Filter /FlateDecode +>> +stream +xÚ­\Y“ã¶~ß_¡JªbNÕ +æ}¬Ÿâ\vbçðŽ«Re§Ê IÌ„L;;ùõéF¼†Zi4û2ÂÙh4¯ปÃÆÝüåÍ×÷o¾üsän2–Å~¼¹ßobŸÅÉ&õ$›ûbó“óƒ¨WânëG®ówÙ Eɽl)ÑMåeþµ””ù÷ûïîþsÿWfëy,‹"¢ö¾{ª„: +Ñ)¬†Ñ½M +£ÇŽÂðIl¶Ë3¾ç¹@1I/éÇócìùæO÷o~}ã}wãm¢˜ÅY°I2Å®¿Éë7?ýÇÝP°0K7ºe½‰<—ùA éjóþÍ¿Þ¸FîY‘XÚaÆ<7&¦~öýHsa»m~ÚF®ëü¾(Dq· ¼È)›²+yõrëˆ;(úxmY‹¦ãµQýé$ÛŽ2Z :ш–wes Š\6tZ´ÒbÇ’oî¿ÿŽd \jY†ÈvàfÌ q¢šã®ì*aD>]à27m+Þum¹»ó]§ï ù}+kqƇÜÓ/²ñ|pÏKX T«ned/c~2Œ Z†’aZi¶aœ°Vi¦;÷ÇRëHäÈ›ƒ 4/ +S:HÓb«ž‘UO”\UÉ;?rµd±¨lª²1Õ†CK6Õ¥~v#·‘¶NÉÕڌߚª]%ó‡9-èë½[Oè‚úƒxv»V|X[$”ÙfoWEÓ%æy.ª2~ÌÒì"™qµòV6[» Ó̬ƒQþ§zm5]–ÄŸÇM>ŒÑ•²¹qÊ~<êëéT•9?C,‚›¤×뻣l;U+ô’ˆ^r5½8”͉Ö¶]˜²Ð»žµ¼ìÎM2 `¿ˆ’hÅ´³}Z¡‡,ŠÒ«×©³,zŠÙKH­1ä{,ò®Wˆ¼âJ5¼¾MæÛ0C£”ÌíN. q#g‘?l«\Ö5oŠ5OX|IæsB'°Î­ì;ø½QM#™lTÇ›îœne/ ÔŸQ+=Åë ¼ã;¯fIÔ¼¼Õ&Nd.š¼½™ÌÈMÛÊöŒ:]c¦!©›ý9WÝ`ñC€9Ù|ˆ«x̼ðêýM£<>ƒ5sqBsxfþpheÁõFlÏ?¾zvû²çVã +Ln_¶ª{ÅÂ.I¥¨?)ÙŠòÐœŽíú¶Ô"¿þhÜ÷MþyγC%•ºyŽëÿЗ»¾ëÖÙ»H3dY8è*óu¤sÑ$"!B¨â»U|wYÁ–”œö7³,¨o_K®T¿;ÃX°$»~†GÞˆË_-«£lîËü&|3#U‚óÔîy.>©OlæŒ yáIü žr~º¨/謟{/gH­: /d¿uhþB†4¡¦‘gº†cé èÁâòêõŒÕ¼}è?ÃÒÕ¢èŒí¹¼3´ÀÅ*Ψ¦¦u½ jiw@±ØOç; Wâ6Ž˜Ñ›•§O9«/¥Ã«[½d²;‚ŽE{«Ûµ õ¸1ÎïÄó‡Ol©—j!Ø7ó4Lï$Zu'^£pS¶ŽºÍ ˜²$wgàæE”8áEªîœ#qQ—¨Ç„uN­,úüô¼&–’1-K¬¯w«Ëx ^œ“«Oݶ,ó½ ЈÕ@Ã50}Bé×^v·*Ãdb6s.ˆr+3áªhõo–Ó„­S‚ïªÛuaÂT×·à@WýmÄÖAzÇ7m#@Ré xê>iÞw7m£9%8ÿoÓ$dZ!nSô%Ø~ûRTÅ­Ø|:·ö†á¢3ÖïTÞ–«›ù*ßjÂVÖý±ëæ8᫽1Ï =Õ;Y}†|·¶.-ƉR–ø ”¿îx]·†­þš}4¼û›Žþ9!ù š›·Ñ`r:@GçLáuZ6r´²ºý1Ô·å-1¦9 %Ú²Yù^åAŽ¤>ð×iû@èQ¶Wøwvº º |PþÌõÍX|ݪú“=ÈÐ^8ù±oðoåÞј'ãÉóáXªN®Æ¤£˜ùž7ñ©¥T þÄëOÌýìº~%h`¼ +Te]V¼¥JÛ…îç –aß)$Ý8b”ºN=–Ýqe~èÂF´¯^sYæ—ÏN¼mdwÛÀMœâu3ïò£±‰Ë´ô'ƃîuñªþþ(knnõßçÇ–#ABžëüA:‘U¥WD_ö·²?Æ=ןÊ>‰§'f#ï¶1¬§¹Îl\ NóÚÖôà0 '¨oð¢Èas]Ù ©™öú.«Tå¹ û¨ªw0©0t¾ãÓ‰S§âÍ¡çú*9NôE¢äþƒ-«OUÉñfzÄþ Ð™S ð ðR™2;)+ÁÛ·Aõ9Póq6¡k7Ö\‚A<Û[škäiìÄÚ}Έs( Â‘,B?ÍÅX=N%Ioñ.;ñõ5 }»ùF6Ûÿ‰VR)*=é7T¡­à}Õ¡¶½¥'0_P·'jß7žÊ²5]ʆÊ9e'‡BíÂèòDzª¨lgJ0l +’ú€´³k©CµÞsPÍ){¼ƒ‘OGaF¡Ñ|z¡KèšLO91SÌ”}œ²–$‰g&G”ÀÛÅ — ó3ÌCÊ0©m)ö¥¸Ú–Š-­£¯/Ì£ŒÌ#ï8E•faÐð¾Ëž©²ç‚.×|í|t7`T˜7}(@óx'@ •TÂT€T¨0 ©ÈâUµ¢R5<Ó¡Zzr°DÑÆ™–x¥©K÷‚Ì7Cµâ×^¨æ½¢ÐùÖ Fo5ôp’šz \Ü.XDT2l(Í´ÙC}Kñ5ÝâÄ·k‹ÌþB5Ní¥ÔÓïVІ‘NqIN"×/= V¿èHµ\·'ZÛÔ3ZC5Û-••M^õÅ@eÐ<Ã6ÑÒÀÊÿöª+‘qzœ€Š”fLµ¨Ê;˜âÝÖs bÀÃ@âƒÒ Ó…î+C_·]™÷M9êb~;“£ŒöOZ_õûcéé%ËlÞ; +^§=÷R"Á… F‹.¿‰úû`qT[>!;TrÇ+zqã:E©Àñ9 ²Ý™e‹V>eq!ðw«öÕM™—yc€´aºÛ~õ%„ˆj|°boîgÀÒ$™</_’Ù§Nݲ4b©kÞ¼á3;˜V–âî@-Ì2c„ hbƒ©€Ä8m²“€-tJ¯²®’ÊTj3¿ÆÄC%šxh«´7VþÈyO²Q¼Ú #cô¢Í°PIù ¨åAJÓļ¡‚Ô#Ùg¨-»9¼R†‰ÉêŠâ«;„Œhë§êOC/sËüË7£f|AEÍ°%F¨3´?´f”-›½¤n…w35­¶ç¦s ó þÄLÏÁF ]£b˜HIFŠ6‰cŠÔQéJ¹ÉÒ?h€ÒnÈÜèÎTª„i§àÁ/`oì_àvÒ`ì¯èƒìKíEÃ*ýêÍC¢»<Ë©%l‚a•%ÐÌ¡—sš@²’¼’¥e*ðYè%£Ÿ)Ãcäc.”*?hÅ +^ã£Eõ¤­¡£NxO¦‹v¢{¤=Ñ|®.rć•îꥸœ™ï|AT†­¨½Í ’Ší‹Œr†NÎÍxÖ:è NØt]›qü|ƨpÒèUÝ[cÎNP#;A–E¶b>¶kw¯5Ú0´¹«ô£Dß@9ø5sƒÔTá!KS„„Ðý‰~§VVÏÂ'ì?•4ÄäÞ’‡&φz’=% +Ü‹°*¦üQ›­¦{6Ž0, ú€Lò¶Ô¡G]ŠŽªƒ[f'©–  ›¿%˜G–°7+ØYX/)Žœ¿áXBœhžqfí&tX'TMÃCí³“ÊèÔ"ß ±*CŠªŒh¦5Ó"™H š„I&Y‚`B[ã´ |WöÚDÚœFicQ³þ=Š7O4 7ŸÖ 3 +©–£jh’è²ê”Ù  u¼lÈNAžD­÷8Š— ö:¶Óö ¡&mL[aà_¶aÈÝÙé ¸"0‘éeàfNÛ7”ЯÓDK-ø=J‹5!SKÕQŠ&Î*M ë¸!cQ2$õÓ_L€žÕ¼ƒµ^Ã4q¾î ŽVmÖXÉÚ¤ðÒX«ù8¤yؤ è¹êó£é®Š†ÑVk³×ŒÚ“l Ù¬§ñ‚0L쎞«¢¼ÙVîYÇ+-6@S7¦w‹”£§×z£Æ‰² [7öí^søU 8ü5ZâØÖ€4¨€!!Fm3Ôñœ-”šÄô°R¾5êÔsO Yxj]Þ,YÿÙп±:…Œ!PDÏ‚5hý›‰<ÒÔÊã7”ÃQó¾m®Ãñ ¦ê-Á%4Kkoý—¹nôyÁF,€—‡^¤”¾þ åúýÏkßR&nxÝv‰NðùnÍ&Ä^푺2„­-ÎàèÌ£’óÆ¥¼>z¬Q<4.éþšò²t|ÛdRª+–u`XÇ< øÂ0h1Ì€üŸ˜&Ì “Éž‡‹Òц]2Ì““”ñâ:†0US(¤OGZ 8F“Õ½2áàxüzfáVz!‹²`Õ¯dÖn0c2V£} ²åÍÂ| |Q¶î¹²O­FØ“`ò¥Ì#9çƒ “Ô[ÄÞkÁö£Ehšõm¥(x<9zžó’ÆÌMæþôä¨Ë@†atÕY÷-CübG¼å'ÚÇñ'¡]ÌÐ…¦ÇBÚò„ ;Db03Fb„B €¡hÔΡ ÌVÃ#,7EtÞÏyI /ïîðõŸeöÕµ#xÍÚ•]ÿ©ó®æ§/{S5Z ~ +cë¦?lZ†–¸é3LÙÆ–ìcÊâûʆ}lèt¤§C˜-Ä̃ñ’tâq<d†‹# 0>jp ¨’cÄò¤'¤LSQâ˼ „^ø-$51xJì£=•9Ò/`´^ÅM`QJ˃AwÈ)ùÝoSßw¿‚u,›-õ¾ZźÇé'm^Hnüê@8ü’ÛëåÛð¤‡Þ à<41ß&B¥¢Š’@‚ïÊ +?Ë!JûE-‰‚ÙÏ9©RÒ¯½ô¡Ü/ú‚Ò?Çþµ7nº}• OB©$°:7qH}¹®Ö$1( +wK^-£¡«Šó 9U¨g6Að\+¢Ç¦RŒÍ»&3‹œÆr[„žH){³˜“:4«~µXªš*É‚@ùÔ‚Ì•'¦K:Ò%&ˆ¥ã—:9 +ZkÞš ±™½ßY¹èM]æ‡ÙÝ .©b&´ ÛA¿WžÁ,!*lL˜v§GtêRã¯*ÊPp *ǧ§ÚG +Rë²Nêõ}œha“Ð, +”ƒ´aEŽ¸4è&¹C…Á C†›ApÉqÑ–ÇŠvWv-×±3l *‘Ûë‡ÔFá·fJs1€ÙDo%¶ò]úÕK¿y +ÂéiÆ‹Ó°>9‘ZÓˆÛÄIvdœut +Ì…Š×ÆéìK_H»ÐJ]wíx\3ƒ£Ú… µ£A ·GŽftpûõt +â3€”ùÙBb“ÈT+ŠJ娣tˈ9}ŠQ¨O ,€£æ¤—›JaìeÎï›bè¬ÅH„PÆwt É ¤ßq¿Et•hÖ‰ï0"¶õ(ƒÛæÛ÷ÿئi”m=£ÆÈ}¬¨d# '?*a–᪺<;újl²’xÊ™/í7ãyg¿9æ¦e¹¿m67¯úkf¼Ÿ²ŸEw²&VLíé’ÃdÌ÷ÔÃj¥á+çÒ|F=ù¸,ìÛÜ*dÞ˜ YðdoF#×Z1Û¹/7ï,X»ôÕaTú}0¾µó þúY¢£ûq˜«à)\û7!xÓîoø/ÿKCÌ/ +endstream +endobj +3892 0 obj << +/Type /Page +/Contents 3893 0 R +/Resources 3891 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 3882 0 R +>> endobj +3894 0 obj << +/D [3892 0 R /XYZ -11.232 900.716 null] +>> endobj +614 0 obj << +/D [3892 0 R /XYZ 56.693 538.389 null] +>> endobj +3883 0 obj << +/D [3892 0 R /XYZ 56.693 510.269 null] +>> endobj +3891 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F102 977 0 R /F52 695 0 R /F108 3706 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3897 0 obj << +/Length 3415 +/Filter /FlateDecode +>> +stream +xÚµ]sÛ8î=¿ÂoQfjUõ¹oÝmzíMÛÜ5éÌíìîLd‰Žu‘EW”šÍ¿?€õáÈÉÎvîÅ"A_´·º[y«œý|söú]ä­27‹ƒxu³]Å'«Ô®HV7åê7独e®åÅ:ˆ<ç³ê¤¦æVµÔèv<øV?+uOÿ\¼øã柰ÍÚ÷Ý,ŠÛu÷XK½“²Ó8 »û«vîÂöI(VëÈÍÞß÷}À˜¤ÎkúøAŒ+Ï.oξù€ß[ù«(vãL¬’Ìwc/Xû³ßþðV%Œn˜¥«3s¿Š|Ï D ízu}öï3ï4+"×ýUf®ïÅḊˆð<'/˪«÷:u±ö³ 8¡ £T¨ýÞëÇýFÕúô|‘m—W ­èµl5ÍÚçÔØåç|¿ð#‡‘åôi¤,y#EÞnÇ[PgÛª=µȦ¥%_›ªP%OßÔª¸×.t2á\ÃÆqä0yZíåF•KÂ{Øá¾IäTš¾¥*ú½lºª¹#@Þð÷p¨«"g •uÞ!ùØéÍ>ïvܪîv5é”ÓitJÄJŸ ò§o +^«¶ôyæbÙñêÛO°„=°š@WÙæjõùì¸,ìeBøÄ2jþîE2–Gò¡±Q}GÍ8¢o±Ëۼ茱rÇo·ËÍÌ`Š×ý#@H wP5ù¦¶}8uǤžüÖWØýŽ?y Ñ@¤Ž"á\µ4k-­©5ã"æ/È6­kÔÊ,têêþÔC’μ‰oòNÓØzM_Ý™ÀxÎ#Ä|h;YÜïóöž»pHPL)œÅphŽ*oJÆ©£Õ‘>à$šê@>˜½HMSX¦ÝòÎ ÉGP¾~è/qd*O´r(O²(ºyëèdö„F£aµ¨Šœ÷±4ÉÜÜ0ò[ÐTØê®ÍKYž %ŽØL0\ÈmOb50·lB)Ž=;â-·B  æ`ì;ª.Ɇƒå56<46?èóŸ.Öaj´TˆÄ¹ÕýFz2ŠBÄ`ÿç4hÔÝ4xò hÔg²ñ¡ØÔaJÅH¸ç=™“„Så w‰qØ¡·Îç†zë.}ÅÆðr¹d1g@„‰$Á¶dM†`ÁŽ±Š²9b °4œÒÄCu˜:G Ÿhå‰ßB5]«ê…Šº]«ú» âñ>ú3Œìg¢ˆtÐȼquׂµp͆.nòT!N8!²« ¿½Dé„úV‘ÌĺU‹!x ñË*n‰% †£ý5ÓÑ~’Ö ÝÄs Üäààë\ÞfÎDPƒQ‰vUÁ£èr55Qâ•q1Z°¦¬É·Gtô²b4l¡C +þ²¡Ñ. +ÁÈÈ–Q{¡sêNíbæH]äÉþKˆŒämˆ›É!,Š'f:o…‰ˆì#èrYitŸ%Z1‘¸ÈéfÃ#zajÅKªº¦Ö07fó0pö‡¾c šnßV‘¸<ƒ9Ò >º«œðQõvŸ†B€I‹¹âÈ1âTÎœV[ê£@eyòîQ4³0Ø' cZÖF"qQLv0²48ªÄ&jOcÅ<€ïÜ„ƒ#À…M3–¾ÒD7%ãx¤o)·Æ|ôuÇÛŒžžS*r4Oãs¹ö¤µ!‡ +!zßšÁ65kŸ “¸ÝÌQF?ÂÈÚ,˜¿WÆ ãäáâX`ZÔÀ-”#>h|ë9• +)ààà‡’ˆÀ³`#d¦|r`{K¼ÔySkðÐ F™”+ XBÐP¼AÛ¥‚YOc9}n1F8çuM®±±¸Œ½'€­Bþ^•æHÑýá Z¦T1.…6&j9mLĘz“È+Lø‡ý­ÝSÅŽÄÌâ®-0A…<“ š‚£´gn”7al¿&.xrDhG8:& +öØ1ÍRê-Ì ËÁÆÔ‹þÉäÁ6/æOã0¤¼S^ )º\{ÕæËgÞ,†ùé\‘º¾mô³g¥ŽalóÚ²ó9:×ÃV#O§Ä‚á5~Wv™^+h¼’¿{^`Kc@[z ^"w{Äû™ôœáV‚ä¼)ˆÖÌËxð&(~„D® ·m[Õò‡Ùx°kµß~R¶ 2xŽ~A–mõÃT©P $6y÷‚´lzÓÛÖóºÕ˜hWÏŸG;±xåq*ȨÀßAÔHÉ©‰X¦'Ç°Íi<¿¤¿A4ŸöÛ:ò<çzRt[f³ÌÇØc­¶kY$&¡ZÆ™ +|ðx&ƒ÷à×/5µÈ.CVÞ3 }QÑ·˜2Õ¶.$<@ÙP%€V=MûDº^0Í=¢\ˆ’ƒØM³ÌÎb÷ +f´b +îª1Hb¹°ÌXIÉ'.vª*¤žÑ\7Œ²¹MãØQææÐs +„†q4— ¥ ÇùÜï7¤Ö²‘’ò€p£c†C\æg”ZdC|§1hH…Ú @_QÇ&Fä’‡¹v&}õ·Þ”Ÿ°½E¥ ³cìrC¶Ì¬fŽtøÆ aááÕì$¸%rÓG^Š¹˜Rì '¹š[cgujb1!¨Ü:º-²9u%m‘ñHëºÑX‹²ºjl>:’; +Ès>Ž”23=‡Òlðy_qµ…®óÜáé;•úwþßL™‡&b‘×à¤[©õSF¼UÍù…ÙåäèOÏ-Qå|:¥,ÄPûÇ¿Àƒ¿{àÕzá¢þzácY¦§@‘ƒ]Œ-)†h1¨>í‡ä,:–"hêêë’Ú&‘IC§oJÙâÍÄÔ%ôlB +3&‘8*FsÛÙ)T+jïõ9õMÓì©Mº’ ›ÓÁÌ^C˜4ì<¡“iN»T†1g;½Pœªt„±‰lZè -¸i”ø¤Ô‘º‰Úu¯‹(àÞ¼ð)j¸aî`CN¡ŽFÔ&ãA†,ìñB¤Ë{ŒB[ÚEøà†Ä“Zfnqm/ 3í¸Ly÷˜ÏR2ÍùíÍÂ'Í~°QŽì3Ú—µÎÑpwl’:_.ß]~¹üüËåµK¥¢ã<<"6gl½æíÓŠ!7ðcÍœ¡ñcPgìÑž²ü²Ÿ>-Ž5Çv=ñÜ8LÿZ`ô‹9_IŸ1ZáP¡ÁAÙŠ¸Ž=Snƒ_oÞ­S—ÉM¦’n0Ü +NÌXZ0K‡@Ð^"× VzÀÁ½ò;» oÑXJ‚OI3•[˜Ðæ0T-O‘ëeÓË!B1V²ˆiu¤é''ž/ðM0¦hx:?ãg;zdŒ¯)óš6à V7°C´ãÕôbS3lÅãü±A'0Í…§Í#BS1ÀîJ/£\f›ñ+klt›–ÏŠ M‹&EE„.<¶ë] +.Ū]ü¼Ú½aŸg“”7Nù2ÒˆMõpf¡²dnùãÉVË¢ Ç·?¶+8Ç–¸^<˜2Sö¯ñ~- ‹b7L¢):Cl#u'O<åø£º1œÉ<‹ZR¶bÂÊÜ$•0ÚŽêÈÙ$LÀN»©º6o‰‘õ¤PZÓ µå? À³)6 ôψôKre/¤ e!&ÆqÆ•8vãÑ”}~óér骆 âàEÉ%Ôë_?_ýëúÃõ’Ä®Hü—qùƒ½zóõæýÕ—T"Ú‡=ÙZk:5?ñ„öU(š‡¤Üfb¹Wùû¯Äøw‰¦Ôw£lˆÀ`Ê%NÁ¤‘òWK w=1¨Ø›*.)Ž²©qŒàÞw…Ky‡ö©÷èáqäÈ°Ðk^Õb©c[®ñ_%õ‰ иlîÀ=ïÀ Çaæ| ¢nŠÉøÈ7˜I›BãN6øwƒ'¨øo#Ø4®À¾±b£PŠujUä5 ÏÿÛk3˜•ÙºwW¼yû½¿ù´ø‡=ùCÚûÛß3Ž_äÚ½&-ë Ã߇r­å~SOê›wò#ÁY¼Þ*5¾¸ˆ:y7Ÿä Š 5ÿãaýpoÞ/†©;ÚÒ}^´œ ÜvUgëdTžo“ O©ÄóªÝ{iÉ!£ËÎ¥ìòªÖ®»TN~còç  "„ !†ç5ÿBx¾pÈ,qÃñ òäáf V},y›MéÈfH”,ñ¶Ìæ€õÁ\ lÆZ‰a7É2°‡@Œü â¹>eÑÐÉ&ËHHî*À{ƒêÀ¯ïÀ¹$>º¿V$^H§8Ç]Ln•©?×BÍ_*þ̱üv¤døß«çµUq[°"{áÿ ÀÀm_¿ öó +ÕÒ¿ÞB"€ìïüéíO¹Ÿl +endstream +endobj +3896 0 obj << +/Type /Page +/Contents 3897 0 R +/Resources 3895 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 3882 0 R +>> endobj +3898 0 obj << +/D [3896 0 R /XYZ -16.307 900.716 null] +>> endobj +3899 0 obj << +/D [3896 0 R /XYZ 56.693 398.257 null] +>> endobj +3900 0 obj << +/D [3896 0 R /XYZ 56.693 372.418 null] +>> endobj +3901 0 obj << +/D [3896 0 R /XYZ 56.693 354.421 null] +>> endobj +3895 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F102 977 0 R /F113 3713 0 R /F57 739 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3904 0 obj << +/Length 2643 +/Filter /FlateDecode +>> +stream +xÚÍ[moãÆþî_A䋥洷ï$‹k^ÒÚ$M»@Ë¡Ç“V6aJTIÚÎõ×wö…’H‘¥5¯sµÜ™yfö…;8¸ pðîêííÕëïbK*ƒÛe )’a†XÜ.‚÷“ŸU¦’RMgTàÉßòJ•¶¸Ì [¨îÝËoóùÛ<°?þuóÃôÃí_ÍŒ a©ÝTŸ3UÞ+U•ú5p'AÜ%ÓÜ9°9 fÅ¡ãOŠa4ym„JÝóêÏ·Wÿ¹"@$ɘaLÄ4˜¯®ÞÀÁÞˆÇQðlZ®A0¢LB9 n®þq…*ÚO£ ¹SM"Bdò,­pwÕÃ,ßTi¾.Á‡ð€˜ãÉ»Ûï¿žÎ$”þYªâº´å“õc’Mg$‚ݽu³7³™-Ü«d¡Š.MîèŠ4OŠ1›<£x:ãt‡e6Ýr  Å„XåÓ]’¥Ÿö:š7¶z7¶æÈL›Ã®GÕ NGЕ™²´uߪ¹Z}ª™’8Žetšån˜-Ä×ìíЭZ/,ŠïUáÀÔ…-ÜÜÊùÂsZÝ»Ò}:¿ß54ìEâ\³#‚£˜E0n  "_.ÿ½JÖ;¹E”!Â|Û[›äΉR¨¥*œ,UÞ’óiJˆŸæeݯ¨\1_¶[˼¶Úú½q´¶g´ÜbFÁ£0#MìTi•)=¦RÍ5ü¬EˆÆ†úµ*æ~i÷æ$X %jZ9²d8Ù³ñS1åxòÊêè±L×w-½­“•º œAp"{–=ÆQ(ã³a×Á»m錩Êå0)ÃM…Qðªq aåï±´‹³eþXÌ•³ô"©” ²g‘?Ëâ·Æ²!ŸÀä—ª²Ò?ÄäyJ |¶oŒŠ¡rž¯«"Ï\¥ígkÕÚ8TGƒÚÚPUÁ¾HË&ÑUR<ØšÇ}~t`ˆÆ: Ð ÎçŽarÂÕ |–v–>è‘©ZH'â2ϲ\‡g‹xx§•½Î+U6©ê>©™Ñƒã….û®š:X&öñq•®ÓU’]ÛŸjJÄä×dµ1Æ$ÈÂzkDêÇ»ætËÒ@0X''˜îu=x¬d@QÅA¡‚åþüÞ Ö]{È€‚n¢c` ÝÚ—¾@D’6} xx4ˆÃþÚG¢˜ÆþÂÖKž¶BÐ/ÕbF°fâÖ’o\ÌÐÅ]` ?¿»jaoKêÿ8Ôž°ìŒ£p³« Î|/6;ˆâ Iâí©ÑÀ“˜ÉYЀ#Ac3u! +>Õ¦ÎIý4$xLÏùšäýá+j¯ëñX &œ"™ÕÇ÷xD`'IÆÓt“¾§ª}…í×uăù€Ye¥ªäbm‡AÇÓv“¾§¶}…í‹tåÙúqu`Ûð,ú»uM±D2êƒ Ð†éÇ.Å· éÑ0Ñ¤ï‰ _a{1;æ:‡Üä"†Ø÷üRD3»W ÑMúžˆö¶Ñ#¡?aüßý¤ŠæÖCŒ‚É_xB".càÕ¡T\ +ÓÛ+| §QOí¾g4Ô7é{¢Þ[ØÕõúƒ®¡;Ñ÷iá²ú16ðt+ɲ±–†Ÿ’R Än²Ùdé<é„%:“ŠÓà$v“88›ô=Áé+lÿ’†b„É°£ ¿E ¶›²Ñôݤï©o_a{¯2#\ßæò¡ÿr}S†±ÏЮLý]ЈÀ>>ã²Vëâ.Õé0q0£×Ç;7ª¾Â¿½‚þQ_5»Þ]ñrÃ*ÄYÏ(G!¬Xf„"F¥ßé ѬF÷Æ8–ìÇ?ô÷Ë^#¼KvwEý Hü£îeš¯oà×É_Ðâ\#ˆþa<é›æöé|ÁØÅ|[xè!¦¯©PØlwøV¹ëûúŽ>s9LP°÷í7Y²v«¨¥.GÕ×ÿÙ¤¬Ô¦<¨Û%ðÙ7É.u€ºô`UUjµ©\“º²,ÕêSæ(%&É + +‹´Q>[ïò|qm_ØPU¶šïG® £Éû¿¬wBv¤ -v;ßòtÑÄf00&mƒ±>ÁtÉÊÆ‘±¢tVü!.+íUןÛæä( +·©=:ÿÁ²ëÊÓ J†¤pHĶ@5çkKw~Ÿf ] M†Æó½¾v –wx·ÒÊI¡X'Z8m¸ÝV[D0€ð6³°bõŒV„ˆð¸k´F¦NQ¥Aœ~V.w„Ã$ +›æ³|ëÄ%“»©˜$éúUdÕª®MkÇ©‡Š>t;é ê ÷Ô£ ¿ê8RçªíåbíƧ§ñ:¬7VX'oèé›mBqùF jJ&Æu¡üѺ½f}m[íxÓ¢ žmNÔ”÷6z”ö§IDÒ ×ŽvåÆP)˜ˆm¶âD2FŽKM­/ KHXó-Øò25GUѨÄäÓA>¦÷§qd2µ:Rë0,iåðÌ:¾ãm3ë[jœuh˜R$LŒßOqrMÊz±RÇl—°ÖµË’²ª“÷ ˆS35¡mc(æ.šßN#  c^<Ù¹6æSºP¶Âä_™’Kì÷à„NÒeý^uú8L˜ÄíЃ´È˜,ÓL!µN j/:G¤¾¯Üp{àµÎ׳ÿª"w"Ø(õ¹Ãˆz¯æ;ùLÁ¦«fî'h¬Cl˜í"ØþÄM tJß%5Ìéq¸jxZW^9‡Í¢Œ/I+ÿ(Àh +endstream +endobj +3903 0 obj << +/Type /Page +/Contents 3904 0 R +/Resources 3902 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 3882 0 R +>> endobj +3905 0 obj << +/D [3903 0 R /XYZ -11.232 900.716 null] +>> endobj +3906 0 obj << +/D [3903 0 R /XYZ 56.693 537.733 null] +>> endobj +3907 0 obj << +/D [3903 0 R /XYZ 65.161 539.193 null] +>> endobj +3908 0 obj << +/D [3903 0 R /XYZ 65.161 528.234 null] +>> endobj +3909 0 obj << +/D [3903 0 R /XYZ 65.161 517.275 null] +>> endobj +3910 0 obj << +/D [3903 0 R /XYZ 226.558 517.275 null] +>> endobj +3912 0 obj << +/D [3903 0 R /XYZ 65.161 506.316 null] +>> endobj +3913 0 obj << +/D [3903 0 R /XYZ 65.161 495.357 null] +>> endobj +3914 0 obj << +/D [3903 0 R /XYZ 65.161 484.398 null] +>> endobj +3915 0 obj << +/D [3903 0 R /XYZ 328.775 484.398 null] +>> endobj +3916 0 obj << +/D [3903 0 R /XYZ 65.161 473.44 null] +>> endobj +3917 0 obj << +/D [3903 0 R /XYZ 231.937 473.44 null] +>> endobj +3918 0 obj << +/D [3903 0 R /XYZ 65.161 462.481 null] +>> endobj +3919 0 obj << +/D [3903 0 R /XYZ 377.194 462.481 null] +>> endobj +3920 0 obj << +/D [3903 0 R /XYZ 65.161 451.522 null] +>> endobj +3921 0 obj << +/D [3903 0 R /XYZ 350.295 451.522 null] +>> endobj +3922 0 obj << +/D [3903 0 R /XYZ 65.161 440.563 null] +>> endobj +3923 0 obj << +/D [3903 0 R /XYZ 425.613 440.563 null] +>> endobj +3924 0 obj << +/D [3903 0 R /XYZ 65.161 429.604 null] +>> endobj +3925 0 obj << +/D [3903 0 R /XYZ 65.161 418.645 null] +>> endobj +3926 0 obj << +/D [3903 0 R /XYZ 65.161 407.686 null] +>> endobj +3927 0 obj << +/D [3903 0 R /XYZ 65.161 396.727 null] +>> endobj +3928 0 obj << +/D [3903 0 R /XYZ 65.161 385.768 null] +>> endobj +3929 0 obj << +/D [3903 0 R /XYZ 65.161 374.809 null] +>> endobj +3930 0 obj << +/D [3903 0 R /XYZ 65.161 363.85 null] +>> endobj +3931 0 obj << +/D [3903 0 R /XYZ 65.161 352.892 null] +>> endobj +3932 0 obj << +/D [3903 0 R /XYZ 65.161 341.933 null] +>> endobj +3933 0 obj << +/D [3903 0 R /XYZ 65.161 330.974 null] +>> endobj +3934 0 obj << +/D [3903 0 R /XYZ 65.161 320.015 null] +>> endobj +3902 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F4 3911 0 R /F52 695 0 R /F102 977 0 R /F57 739 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3937 0 obj << +/Length 3059 +/Filter /FlateDecode +>> +stream +xÚÅiã¶õûü +O±æŠ’¨#E"W›b»A3“ Àf¥%z,D–\IÞÉä×÷=¾GJòhföHÚ/&Åë|¬nWÁêo_Þ\¼üV«\äI˜¬nv«$IºÊd$¢tuS®Þ¬0µÑ½¹Ú„*X¿nÓSw×vÔö<ùu[|Ù¶¿ÐÇ¿¯_]½½ù€ÙH)r¥è´ëá¾6ýÞ˜¡Çi€.W@O"„ø4ŽV%ò”áKÁ‰i¶~I ÜyñÍÍÅ.$œ¬äJ%"É£UšK‘áª8\¼y¬J˜ Dœg«;»ò°R2a”@¿^]_üë"x”Y*‚4_¥q.d2ß±Ý]Õ›€Lž¬·÷Ðfɺ4»+¬õ©x¹"՚狽)1YÊ|ƒ1M ´-b„)À|,°R†™4Å+ŒA6±[§-#…T‘[rÇ Ø–Ð‹¹6»åË3ùZBZp®Ý’•LE’%Þ¤µ}5T­»d;j.öÔ;ê[C—nÃéê±;½qØÎF*òlª“(ùÔ ü Ÿ(àœÇµ#\ꕦ/ºjë¾zhC¸}çCT®ÂÌIñ“E{€ÓË˼»a­<Â…¾¯Ê„qAI]“°èª"g¬¸õáf÷‹'o†‚àÃz¼’m`ÈáÆ#:=ïh¿EP.,ÚVî*Ó3ö§Þ“|¸3À‡_]ý‚öË|Æ8Xÿíõ¼ãõ77Wy¸Þ„ü}ýêšã¬ª€¿äAxþŸ_}µ<ÿ´= +f:òéDÓíeñ{@½—›ýþ&ûÄ–®1µ›ÐìaÈh£JtNUN:z¶ O! õ Ö³–mŽ"‡¨N~8g²ÏåL]m;ÝÝkž¼»SS P¨Ë—×_Sb*šüõ«Wn6’íƒ#pôß¡0WL”†¹‰^,§aF»^|pqÜþžº,§$^÷Ü:^°×¨$u>‰š¹"À@s:lMG}KÀID> ¼#æ\Ò[n¼Pj}Ý2ºÕ@Ó¨Œ”»eôuçQ¼3 è-ÄBÞ„±8lÌÑn ¾f~óÅ’ËOc‘eÞ=¿Ö6šTæ'&{Á¡C“øD€Åy‡RxÚ„É(H Û0 𠥕™°j0!Lly*˜´†æxÀˆ[1ªœu¤©o!Z¸¤ŸîÅ]Š'æÔ0bÓôð=X|ûš8y`qæËh¼ß?MQ³­ˆ¡guÚöˆP×Hb¦lN€Ã$$¿ +Ï„¿˜…ÊËÛÒŒ| ÒÈÂÌÍ3 ¥ˆéŽ}\Ý ŒòàîVoíf¶3ç#òcw¶‚fþ|ßùéŽùf¹Py>×¹ƒFHydó§0·™ÑRü¬D˜$ÏñrO9½?Q‘1óïö•nŽi›MåíìŽf­ƒYËÒËÌ…[=x37‚(L=Àe £ D8å5á@Ãs^ÃŒåuºxõ·ˆíЛzÇçS.?=jԢܷ’@dn¹:7Þ¸µ;¾Îßû< ½‰oZ²zyò¼â +êl33%Wpšê7=Ìnî ¼ñ=L¸‰v³ª9„Øòü²f…!Y‹”(;ÓHE r/Ü\e@†ó©>luŽÒ ^ˆ3ë¾râkòø­†1™Ö™líîyF¼kWÕF˜Ø`Ê@4XéãC0¶^•Bª?€ôž83BáÔ5‚Ì@åj®Eb)!ƒhR©ÄëøãŒÃŒ8õ)ö 'u†Î¬Ž‚ ]‰m\”Î2r‡Ë³$ö(ñX2zŠŸdÈF>0Ýa’ +•Ê9Ýs-П*ÉôL‹xp¦D³¢£âŠ„ͳfEG¾‰“a”Éy&A:ÖºðiJÕ<¿¡í ŸÇ!«DÈ4yгàú¼µ èDA +]°Hãx^IÌS,%úa,æ½dcÆ¡âqºö8:»•á'£-£ýn¨EŸ‚Ú¨¹pƒôKl«¾@lÞüµ¨5ÖÀˆšþBÍ%_ßË·OcçÈžD_ñg`7–b?†ES$˜Eê!½gBæEÙ%¿/wžEaA@éï«>-›lõf£@ãÞ@42<\YœR]ÎŽÍ<=DKı‡9‡û·Oæ a&ëvÎJšÑ¼¤ù¡¥K5–.Ñ9»,<²/Nâ8Õ£`´å…“YÅ¥K»ŽWºÄÉié’óëY ÀçîΓ__ºŒ.ij¬ÖŽ©yw•M¢ªÜéVKq€i&{žØ´=®’)>Øhºï,–„ú% •z@TC½mO¼…ч"†á° ‘pÆÕÚdÊ*‚g´Åé€"+é›ÓØ·5øHÔóú–ZLÊé™>&•R¤.ŒÇc9Gx1ym&¼T/±e÷€êöЀÂÛ²yú™ÎÔÚ¢i—uUؿDzJ(Il±ÚÎÏ_Í‚é«|p ƒ]*óòÚ؇Ÿ ü’#“Oƒý¿œÝr4ô9;°)‰P¶<ø„‰/D«%è?ºXì¨ä¹˜Ù)¬ }ÎË=ð!ñ9¨MÑ1Kº±Rd“âwœ¡øê”âyéyâµTŸR"Ÿ§> endobj +3938 0 obj << +/D [3936 0 R /XYZ -16.307 900.716 null] +>> endobj +3939 0 obj << +/D [3936 0 R /XYZ 56.693 408.219 null] +>> endobj +3940 0 obj << +/D [3936 0 R /XYZ 56.693 394.894 null] +>> endobj +3941 0 obj << +/D [3936 0 R /XYZ 56.693 380.946 null] +>> endobj +3942 0 obj << +/D [3936 0 R /XYZ 56.693 367.437 null] +>> endobj +3943 0 obj << +/D [3936 0 R /XYZ 56.693 353.051 null] +>> endobj +3944 0 obj << +/D [3936 0 R /XYZ 56.693 339.103 null] +>> endobj +3945 0 obj << +/D [3936 0 R /XYZ 56.693 325.156 null] +>> endobj +3946 0 obj << +/D [3936 0 R /XYZ 56.693 311.955 null] +>> endobj +3947 0 obj << +/D [3936 0 R /XYZ 56.693 220.986 null] +>> endobj +3948 0 obj << +/D [3936 0 R /XYZ 56.693 205.604 null] +>> endobj +3949 0 obj << +/D [3936 0 R /XYZ 56.693 191.656 null] +>> endobj +3950 0 obj << +/D [3936 0 R /XYZ 56.693 178.456 null] +>> endobj +3935 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F102 977 0 R /F57 739 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3953 0 obj << +/Length 3991 +/Filter /FlateDecode +>> +stream +xÚ­Z_Ü6ßO1è/Q,ËÛ»‡$×^shÒ»föЈÇÖÌë±'–íöÓ)R¶gÖÓݶ÷°;²$S)’?RöW»•¿úçÕ«›«_Eþ*YÄ«›í*Dœ¬R©„JV7åêGï;]ëÜèëuùÞ»¶×†šÛ¶£F¿çÁ´Å«¶½¥‡ÞsýóÍ¿`™µ”"‹"¢ö¾¿¯µÙk݆Õå*…Õc…«‡°|ªÕ:YÂëKÅ$õ^Ð b|óêË›«Wèû+¹Šbgj•dRÄ~°*W?þì¯JD˜¥«;;󰊤/C»^½¿úÏ•Ï¢ð/ŠÄÑ3!ý˜˜ú)"Ë…{mõã:ò}ïÛ¡?ýõZù’„ £»OU¡yw‹¾—7%ô]^ŽýÒË;M¦½"ïŽ$k[ …ÈLàKĬI|ø‘ÿþ-ü—,Í9ãA("»©¸èCz2* æän.’“"g +bôf¯Ï•áÍÑã®k·¸‰í¢‰a(©Ï~’*Ä•ûÃg ˪HIä&kSäGýÖ¡·¹|Äí{í\ô]{` ïóþ”¿¦ííÁ\+8l™ŠNÏg^úØç›Z‹Sý®SÆ)L΂GNÁ;MêC^{쫶9±émÓwm]WÍîĈ¤Wëf×ï©$hûF 뫾æyǼëyíDbáÀ„±HGY‹›¯D,S«ñ Ìþ4jZJï5s¬KÇS×»ýÙÒŒov¸”„µCGø7¢ß K_ò_ìuͺHS‘dÁ©.P˜u$A +ùA÷º»Ž"ï\cA"üÌ©,zªÊT8© Ú¤2h˜£.ªí=i 'ñyönŠ¶ä‘ˆ‚½y±§ìœÇ|§¿Àf6+Pº«ÜvO…¨€}œñLˆ´´W]’ ?ž›µ©Uó^ú–íÁ‚Æ×7o¿YZ|ÊHÄAvª˜b?4·º{ +*R¦Ô….æ\]2ôE”Æ¿ÓÄ”T£¾°M^f8;mŒU vüäûœ8`€ž0ê0ôt·×–Bàít£»¼ߣ]‚ÖTh;vIkq4^ÐÚÇ¡Ò}}¿¨4"M¶¨5\ ´f%Œà?9ÕÉè#.©2ŒÀÓ;ÚVƒ¿ÁJ¢„L‚§© Í,xš•ÝX&CØŠ¾–‘÷ šO’Á@oѵƬ;½… Òh„ŠkHúëL¿®­ê?!]/†4ð:cÀ@j ²¥M‚DpÌŽ@ €LfÄŒ.ú¥è*°ÒQwÏ‘åX?>Ên5t^óÃ5"N2ÖX :Hg´ð´—Õ§'вü.cü‰:‘Á}ÓMeJöÞ!úyuzì•Ì½’¤#kq6î±è«>¯«_uùàÌe"žŒ_?8TÊOØ–Î6šÙ${šø ªFãÔ‘o$=Íkìm#õ궠},¬™Ó‹G=¼{ùöË HnbŒ4.Q5¦×yIhF¸ÜÀ>ob!qƳd. Ä8 +Ïv½tÂAy2›p@)ä¾zÓßéC‹‡ƒNHI@‚,æ˜ÚõÙd%ŒXà†6šìšc’c»û;­›E‡ Ž,Mæû,õvɤ% äÇ3Ä48܈D@ÄK™ò(Îç‡#x,é}~ ‘nwŸ/§†2ž­[”H Bìì!ÃÚ§¶*/¤©$—QrÆ;è¥×af)=Å‹+Ÿ¯9ªølñßs–o®A‰C׸íòe2Õ¶.Ç£}Èû~ÌOê. ê‚|/žðDÔËÅ“B]ëù]4S‹ƒçn -Š¡sF ^ÙÙ~ÁÂÂL=áäùB†#—°¥Zo²¥swQø +Щ”òiâÝv -+ý$†¸×”º#)'6–.qˆ‰iÀæpªëÊEÕ‡îcîÅUÞ«Ak¸_²ØX@ªä¦ÿmFÚAÔâß?«ÌÇ?[L³I¹{QAÞ WÁalÆ-MàjÜ.m>! ½9=íá¯F¡÷„ZVXž†b1H”µÊ¼6B’ÀEoè·™oâr´¼¦§ ÙéÀÄžñ¼Ž~?´÷l4yMíœÈžÛuîÖ®z} ÖzM!¤SG©MÑU.Ÿ‡]J©re_oè%0(Ã]ÝXôLÐyôÚPê³VI:WãXÞŒœ‰µRr¦ ¥Ð¶Z‹ aÀÚ%M1ôËu©ó#iªáÑ X.’EɈáÉIÉødÉ¢<¶^m=z¦èÔõUJ· r¹Õ®iÉ>,ÿ{í^aæõ yM B•?M˜vÊñ£g +ÅÙQ"^ØÏ€Ãë*t®à\m]ˆ55ýŸ¯áˆ³ÏK½Ü¡ +hrdnÔ êZêu3÷œz¦:k_Ðf‡œºzO”y 8¡o–Ѥˆr롤ý¤óryjËåDyV ·¬ÃED 96š—´Vguf}Ïk»JÀÊÉe&íÙ2NoóÕEäÍŽÛ)ñt5e¿(nìü`àÝZzF=Û¶ÁíNT ˜Z /¾cñŦ¨ +r ®ÓDAA þ‘ 9ðt"@ìÀòÔÐXà‹Më6ã^8ª­¹Ì¶°ÑdÈÆŽ1zk¡LaO’÷‚_›¸èà0³ŽI)ÖiØaÇqx1†‡"P£9c}|ûjÛ¶¶ñÝR´= +ãü©g)½ÙäÝÓHîf§¸Æ¿ -òvÁÍuƒ-[êqÁÃ&" ½¼°ØN Eº +ä‚X j[ 1ñǪ-[ˆ_Lý9ÖÓ|ïÕLDvX»{D:»1åYÒ8Ýðë¸ÂÈ‚O·ÄÜ ÑÔŠÇÅßÿ÷Ý·ÿ~ÿæ=“¦"¿îÀLãù W ?ª»¸¡Là¶ËÚb­žò>S'—`c*òìp¿ÄX€ÂÈ¡”š.b”+ècëÔ$EœCAùÔÝÌÐ#d?˜_Ó¼€¿`Ù)Àd7±¬@·Ý=7{rÖÆñe}*Þ~´†[kªüá$:û€3XÐ ‰¡&Ö#”½‚©ë±Àf)W<ãÃ’Áâ€s'2`ŸžN,‚Š²2Fñ¥ðêoø)X’ÝAŠWychü‚ÇNN’ßKYW$4R­@WÂ)Ö¸8N`ïÎó팢Á?hk;¡Œáœ*@NÖ˜–n‹HÝ‚ŸÀ±tK·4*Á”tVre=.| sºq%=• +åŸÁ +äÃríïðÑj%AŠWe6Ld.ù….€ldêÐÞäÅ­l`o‘UæO !©kKó¢l­Kkh0kÓ —Ú{u‘Û2î"yK¶]k$4­ €¡ «Áïü:| LLˆR:X4â.\Û†Šz’=E0Ý; §n|½àï6&†ÄiŒ8e‚æäž98#èjÇts½‡STp1`^˜*]?§LÛßO5ŽpÅk¾'Êñ:«³bé’—K™'Õɱ˜©m®É5‹ó‚f7FÑbü¶¥:ÿ°å¾Ni¡s¥ûó«îÚõ]U:úãÆ&o>nÌ?¹§Ÿ| Iœ{í7Ý8BÀŒ«ÜÒIù?šXÌ¡ÔJ ‚—üiBÌá-N.bÕ\ÌXºø8@²¼äú2Mðƒ+NˆXbÉ~—ËžÄEW®Ñô™E«øu¦ M>V©ÅxÑQÅ›_ŽL™ÁÅmI ±6úCÛ`˜øÐÀrEžÁMoa™L¸ú 7*ؼadsO½½•AËàz0W24FuvhLñ7_Ïy»öHž FmyD&Î$‡Ð\5vu¹¾–ž)öm[S×-¤­ûÙµ;êœß“ãÀ‡bèjÈèŒÖŠÓzO^ðûå!/¸‹ïuÒqì‡õ÷×!žýr„ØmÓD¼s÷ðý¾²_©À[3J$êš›îV‡OvWÉÀ^eÞê)ÛæÐqBÕÜÒ +øÙç#cï„~ ï– `_ìS] ŽèSªØ{ÙØ\1¥sk”û!WdUfÁŸ!:QYñÁñ Ëþ,«”£µ v.H¨¯‡`FÑåGjqZŸ*=3x£åþÜm£;X¯í¾¿·x­P¸¥7n2k‡¦C¾wƒîM§ó[³t^¸<ȸ'–˱Q YJø¨ÉÆ"=©ÄFÕ_!À +¤‡eÒP÷Ï—Wð}õØ +ÊŸß*M°ø¶ùw÷6«âê³*( ý|Ú3º2´Nbåò?n—úèB†%ÍÓ ú;ªú9à8I*/\ºH7v`’ã+ýÖzÛŸ]òuÕnß»p5ljž9ãžH÷¾¶u ’Ò!?aÃöV9rVÆ̶ø‹ÊØ1‡Ó0¤{òøD´–že|vчŠ²Ð½Ï™Š+[Uí`u!¹Öü6^VÛ»"ö«¶lä»êt8~©‡ü׿dñl–qÆ¢ŽÕÌÓ³«275ñ'8fƒ&%ä`ºuÛ÷Ô[3\á29üR™ÚÌ +&„™-&¸²•b\«YUfÂ@œ0pˆB¶ºx®D0PÜg íÇå +9åWË%®u˜Ò׬'>ב-.õ§/ç5^ÅŸš[VI¼7ÜË P±w%p7bqåñ½ibÓ±Ïm Ãü‰¿¨@M`ÎÏÏèR[;Q¢Íx¥¯Æ2ëɪ“à#Xo Ï8KÔT¸g¾·\s ‰<¨¿-}Þò‹æŸ¸Áa.„6¦ÀÓÒU•ôçW]¿ñçÒÞ¡/|HçÿÀ÷Ýÿoï<† +endstream +endobj +3952 0 obj << +/Type /Page +/Contents 3953 0 R +/Resources 3951 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 3955 0 R +>> endobj +3954 0 obj << +/D [3952 0 R /XYZ -11.232 900.716 null] +>> endobj +3951 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F102 977 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3958 0 obj << +/Length 2388 +/Filter /FlateDecode +>> +stream +xÚµY[Û6~Ÿ_! ¬ ÄŒHŠº¤X`7›¦EKwÇÒ+Kô ;º¸"•÷×÷P$%K–Çãtöe†’HžÛw¾sHûÞç{?^½^_½|Ë|/AIHBo½õB‚ÂÈ‹1E4òÖ¹÷eñ_^ðTòåŠ0ñ±V\šá¶nÌ@ÝÚoêìu]ß™‡Ï×ï—¿®ß˜Æ(aÌìv­ö—·œ+©?ƒtìÅ =¤Zz⣀z+†’ÈÊǘÁŽQ¼xiþaê•W?¬¯~¿Â°¿ïa…(L¨%…>ñ²òê˯¾—Ã7ÐIìÝw3Ka¸ð®¯þså[Wø']âö„ýÐ(õ !¬ÓÂ-󾬘Êz‰Ùâ«þÃsc",vƒ]H¨Õîöyhø=ÈÂúb$ÖGanâ/¾O +Ž–«€2ˆÂ’°Åý2d‹ËõÉ¢Þ‚slc‘Pf¤¨[i¾dM-å +Äñ†W™¡-y¥¤Û¥*öÃ>N÷.˜8-¼ ) +Âd ¥†K½kˆÁNmOèì o¹ŽÁCš©Î(=MšÿÆI0ý§õ‡÷æ•<€e÷ÂìÔÏ/_è!µ{f|§Ü§ÔŽªÚª°d‹ýŽ7ÊLµ_µ§äHY¼¸áo`9hšC`i@!ÊÌͳ´•VCí¦ 9Ê' ÄN,¤ÿ½Úƒ&î…q8›UÞ–<…,Í£°)]¦•ìÒ.hƒÇ _ņ4€`öx*|䤠< k§D]™±!”é¨nŒuÿ“íæ–§¹}¡Ñ™#rÞÈ¿›WÂn`gâLMm°cždÝ6ïüÉkéñnæ *3ø*¤Ø|,ËbÚ*XìdOÁ@{êû.0Î5Õ‹Áë{ãT#¿µRõÔé^ªÚÅàn‰!žn5f™q~J7P˜úïºRM]ÜÃçVj'vi‰ Ò—%ˆ”6 Áë({fòãŠBâÖ¡ &h¢ "OCÅ[ñ`©±GÜà¡]‘f®¼ÜºÆù¦Ín­;v©óƽvWjWm¸vwž;)®î9·Ø†Tlt{‰‡ J Öhƒ}mØbL!xjö;ªwuQ%ÆÏø¶"°Ud÷2€Œ#ˆ¡[  ª4£¢ÎÒBü‘Úl7²ÝíêF™“:0x«½–6R˜GÍ@E†cà¹ü¿UjF?»•°m—ÓFh•›(wͨh="W9ý?¿F[mÀ;ßÿ™šÿñÇ™Z‚#äÓØa*ß¼:QLQŒ'ÅD#Ÿ%‹O:t†šˆ«~¤4[GÀk]fG†ßàSjþ•¢ªí²Í’@Âܬty}0¯Ú]Übv~ìöäfÐÅÙ7cB«ËÚM)SÑkbÙ,²š„ #G»Ùª4R-²úˆ"7oyÓÔ),B4H¦üÒUŸ8Yt%#7cÛ˜ jëÚ¼~—ê½M}0olIà•´I»¸6k7Ü<ÿ–6۸ݙÿ÷BÝšYðª©;Sa™y¤h¤jÚLµM×¹¼ä@jEiÅx'¶»VFÇJ/³Â,ô’¸ìJù À®¡Úg~Oš€k É®vkB¨ò1Õ~HÛF¨?ÌÃ;žV²®&½-„2ðmbH%n š¦ƒ ~GÖ*?V  ËE\CžÈ5þS¸ÆÕõæ°…UV´¹£YY—öý–§:Pö½î xáúpoÖiSì'zûéåÏoÞšqݪ]«¦îNÍ¿ª-7Ü.êÚUMÌ&ý'ÚÜ@&ʈtˆPB©± ÁÌO“ +d'85øäñúóaÂt)µ‚&`ÀŒn—„s„KªT#Œ¾Š¯$4Š“:èÛxæ„ð¯¡, {èP U¸w­Så‚P¦ÍÇ‹aAªu–SggÐ[Ôåxý EÙ“­úVÎ`!-¹ÒÔLOˆ±¾ÇØÔùIðAú'èJa›P” ‡ +mÉܾ!Š£h´-4d§7)Âq_^\ûcͤ1 +8¡› ±EÛ¢¾G‡PÁ#Š—С(>×"Ái-¤ìT‹íœã‹?‡²x%ògGßqŽäû½QpvÚȱSõ\›ÂF§\€™3y&”m¡Ä®˜;¤bá¥+€+4·sGlŠ¢¤‰«áß–UŤOLh‹±Ù<…Á1‚ÅýªmýJËo-qL9â´+åà4w`©…nFÇÞƒB<9!ŸœŽQ€z«þ 6µëk‹¹T„!<ÀÜ\šè¢Ù§ÉVÜ@íŸ6*‡[®pB<Ÿ†‰™*{›6yV÷i=-³×¡îà.{(+¡Šiq>ÉëšØ'¹T€º=Îä_@º8•ǧà‘ˆýu~;GÃJýWEº‡nk.ôÔßž6þñÝÌ~ 4ýõ\Ú‚gîððaò~7 Òç~^bŒI>î Ù%µè‰ŒùŠšV8ŽÏEmª ¹ê±2þö•7›ZÎ¥aÀ#½!}ã4¾t«êQs%%ŸSÊÚ]¹ëÚ©º´&ÑÅt=ÅØéúž¸£¹sF9ðs ¦ds‘’¤0”>‚œÀi/É5ÃÖ³B= °)…Rý­Ðþ±ß/dvËËôå›õ›#Ì_œé8—€HÍ¡ƒŸñM?¤sw ›e|]ËØù àg +yBP,½pçš*;¸Õœ¹}¦øðYL“‹âªÓ,_BcKƒ3Ž „j†.g~D“BØ{P +è~¸ä™:ÕŸ>âÇ)ÀÇT2ö¦;5Îÿ²ƒ©üäplç˜;F,ŠMƒcšß3Òv@õîR☨ŒaÑ·µ>îÚ•ë?üIÿß]ÊLN4DQܧ_UW7Mº»Љ¢4/ë +Ú?hLÎÔ¤r&Áç¸t¨ÊS1祬(…f' Æ7c£Ø;÷¨€\ð³Î_i]ôÕÆ&mV÷"W·36À)9 ñ‘£ÆH]t]ðJíwsœÈBD†;ð^Æ¥ì/éDe.'‡ÆþሒxbÂŒ4( !;ñ#ÉÜoÕÀØ>ôèßðSõŸ1C'ß +endstream +endobj +3957 0 obj << +/Type /Page +/Contents 3958 0 R +/Resources 3956 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 3955 0 R +>> endobj +3959 0 obj << +/D [3957 0 R /XYZ -16.307 900.716 null] +>> endobj +618 0 obj << +/D [3957 0 R /XYZ 56.693 656.223 null] +>> endobj +3960 0 obj << +/D [3957 0 R /XYZ 56.693 619.227 null] +>> endobj +622 0 obj << +/D [3957 0 R /XYZ 56.693 552.466 null] +>> endobj +3961 0 obj << +/D [3957 0 R /XYZ 56.693 515.47 null] +>> endobj +3962 0 obj << +/D [3957 0 R /XYZ 72.912 483.808 null] +>> endobj +3956 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F102 977 0 R /F52 695 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3966 0 obj << +/Length 2440 +/Filter /FlateDecode +>> +stream +xÚ­YKsÜ6¾ëW°| g׃|Ó{r¼²ã-{ã]Mm¥ÊÉä`4,‘Cr$+¿>Ýh€1%Y®½ ènôãënŒç\;žóîâ§ÝÅo#ÏÉXû±³;8±ÏâÄIyÀ‚ÄÙíÏîe%E/7[?òÜ«Aö4<¨ŽÃÑ|ü§*~Rê†&¿^}Øü¾û°Ùrβ("jWÃ}%û£”CŸ;wRàÈ=öI8Ûˆe‰áÏy “Ôý‘ÜqçÅåîâ ô=‡;QÌâ,p’Œ³Øó¢¾øü»çìáHÀÂ,uîôÊÚ‰¸Çü †qå\]üçÂ3ªðT‰¥fŒ{1 õ›ïGZ +»Íù¼<Ï}»á‘«“$î òJk+‰Ý»r8ÒÛŸw?ШÝÍ©¥ï äZ6Cÿ¦ièŠý^îéKj[Õ ´•®Õiµ…(¡¢¥È¡eÛçµÙÆ M~]¨ÊîXš9aíŽOï_‰µ)©†®Ì7¾çž¹íÑZzA#jKÓã çIÎ}ð˜Q}tÖvª•ÝPnµ'lCŸ3/áK‡ýŠx`£$¶´^®ñ‹˜q»¢l@/µ¨–\×)û`Eþ ÚDó[(ó”ÑŒ²V˜hVÕ僶ÂpÉ£UÅZ°|Ù\¯ÐÏÀdaj·°ÍÔí¾®z…ŒüÉcøÜc|¦0@Ûj3iÊB If0=Ⱥ­wʶsâ=$ø㺉X2yÇJá ãi´B;¯Tqó‡0e^4 +¦µçŽb0#‘÷{hZˆ†¹¤g ç—õ†»…rÏŒª"6M—ktguÃIç h´ãB5ƒ(4®ž«¦º_‰ež†,ŠG7Ö¢Ðyáýý …‘CVh†œE^0’ÌÕþ~…*DFÙE¯VÀÓ n»l ’ÛÀK}PhÆ¢àq,}mµ»Üø‘{‡“ÈmE'jpÕn͇²”¥“ïÛ£l`-»•].†²fŶ°{Õ‹¢”?jöîXGbJþ¢ô­,Êýy;ÓÅÅҟƽð–U ÞÕHšä744¤!oÅ©#ÇóÁ3ÈÀ Ç+a]$î-&sz#›Mè¹·e§E"ùݱìiÖ™ÔÂáT³Äz?>O=ªGƒ2$‘É—A6öýÑ,JQÑ2Rô;¢<ÓÎô' +šhï'­( iƒ ç5C£š­ÖF“ 7Ütî\kqj\‹‹o­øOD&/Ë?å¾*ûU"—3I{-(­õ†`’Ç=dùb(UCS­3xî˺÷Av`;zE©·ª¤™÷÷u®*4kæÂ×€ˆ6Ò0®¡ÍB¨@¹Ö èwöÍŒ°v4•&…Â'#¾´ØU× Èœ Ðå÷ôÜËÆžªá1£œáûB½S{~fÛ ã鳌 ÙÚŸ‰¿R¢!x6YƒÿˆÍ +É7Tâ›X1†À ß®~µðé)1q(}fõCBí,‚öjn}l*Í-'ÍD·Ñ½ë›4FïtÈjàóM3ªW¶­µ5lCŠƒÝz"õƬ4t ` /ɼؤêriP;"T@Æg¢–FÈ»£lÐàA6­•˜è¾Ü€Áôr­iÕ¸y+;DÂ8âô(ZjÁC:F¦˜Oqšë‹sAÇÝÓˆîŒqÑ‹Ë/R+«(!²^Ðge(½x BDãô£"µÒÎ÷t5ª{@Ä8îšÝ¦ò4¬tÒÄvjìÕh¤s'¨5E½«^š¡ZœÜ”N£±Öêc,öh%xà™ñ7Áÿ•9Æ+¼Å‹ î™uÁ„+7ÉÇž½Ä·‚n=p,è#EkWš$ À¶¼°»½ÎÍ|¢ O:QšÒ)¾èË Ï–'š²†þN †V¡öf¹åÒvà†Ö@= þAWŽM’sÌ“5 +ŠìïO¨°øú:—Þ¡§«îFtÐÀ˜w6Ûn¦v‹!/þFOÅþnJ^Y¿0–ü].®åÒ[°þ[iïGPú„Œ >*'®»MIú×gµ~æÀgUŒŽ‚Ì\vÁ ‚ÎܦdË?Ezz§…Zƒô0bÓ=d¡êV5X? å`ê…ϧ!ãI¸¼<ʦ‚ïì߃˜¥Iúñ§îÉhÆ´ðÕÿ<Ä·Ÿñ7ą̊üƒAnÿI€ÿôY„¿­ëÌ%ú¨íµÿëBzÎì{þ®û ‘óc— +endstream +endobj +3965 0 obj << +/Type /Page +/Contents 3966 0 R +/Resources 3964 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 3955 0 R +>> endobj +3967 0 obj << +/D [3965 0 R /XYZ -11.232 900.716 null] +>> endobj +3968 0 obj << +/D [3965 0 R /XYZ 89.4 594.066 null] +>> endobj +3969 0 obj << +/D [3965 0 R /XYZ 93.036 486.04 null] +>> endobj +626 0 obj << +/D [3965 0 R /XYZ 56.693 444.326 null] +>> endobj +3970 0 obj << +/D [3965 0 R /XYZ 56.693 407.724 null] +>> endobj +630 0 obj << +/D [3965 0 R /XYZ 56.693 377.394 null] +>> endobj +3971 0 obj << +/D [3965 0 R /XYZ 56.693 340.793 null] +>> endobj +3972 0 obj << +/D [3965 0 R /XYZ 72.912 292.384 null] +>> endobj +3964 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F102 977 0 R /F52 695 0 R /F108 3706 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3976 0 obj << +/Length 3159 +/Filter /FlateDecode +>> +stream +xÚí\[sÛ¶~÷¯Ðä%ÒL7^rÚÎ8—6é8MNä9ÉLÓš‚-6©’TdŸ_Ò"EÑdhö´¼Ø ì.v¿],°­ÉõÄšütòìâäôGnM<äÙÄž\\Ml‚lgâbŠ¨3¹XN~¾‘ð31›nMIr‘éæU’êF¾2_$Á³$ù¬>.Îg¿]ü læ#sMm‘ßF"[ ‘gò3pǸÛTrgÀÞat2çÈs Œ è¸ÓSý [ŽÐH–²%_-õ¨d›o¶¹¦¸ÍJb ÿ&‰¥›SëŽã:I…þ¼çðÄ6O +‡‡ïÆáÉ=Oôºª†ü¼g+=T#3q&qVÕ‘‹˜íV¡Ô'HÔÌ9wÄŠŠYÞ(›ž©Ÿ¿¦eœIÙ¦?©÷/•Å­ß‹ìð»ÕâïÅ&òƒ2œCˆYžÆÛµHÃ`V„ÁÔdÜíÌE Îp[ÌíÎq+Ó“xþè.¿l*7Zì;ÓÏ Ú'”~6sèô?3P÷™Ô:7Jþ¨~¡Ú/ £ÀÏ…zóZµßVÞ·8ºn·õV9HÂíåAîÖHf$úb$…—éÉ饻 ƒg6„1™K•1<-gHNÇ™¾Î5R†e¦…*åãSqt£ßjËÊ–rIùu?<(îêó¤T'XbÔÊ@ ††!f:hbÔ‰mÅë`-ÌÃ`ùi$±ˆ¹T\m#Ý6‘Z•hϯ.Þœ›–ˆ6º¥Q 3@+CjF¿Ü¦ÉFøæé}ëk_‡R¢2H–ÂI“µn½Kâ|›&þu´—úÁ/ôHÃKéNÛ\'·õ¿H'›wA²^oãÒ /ÍïäR©¯ÛgÏLZ´Ø‰¥ˆ÷üqÄ]¬]È9f Â§U0zï¸Id\³Ä£&¼¾ñ?Ï°ŒÚÙ·i™‹ùym&:²i #›¿ûé]R™®Zcûƒ»uØC©F-ÖóƒX¯™²‡FÊÛd›6e°I°ÀÛ`·ÛÕû£–Þ´Gç$½®÷>ÅžçµHcêr•!Ç{_¤~œÁ*µ®yÔ-DQU%"ã!¶JbËÚ±ÔÈ8fƒóE¤r?@ácX?ÿÐQÓh„Òñ4]¥?LÓCemÑ«k!Jðìp­ê •`ÝÐonCJ°Ju1w´x²L‚K™Kuä7¾=Fŵå©=R˜jA &hélÓTî«»Xåëh%÷JMC>¼’ó½’ø'‹Y¦“»×ÉAì.·œwtK€¼å°ñܲJ˜[–µK$਄3Q›he3ê…žG§]c%çc>žQªô‡e¨¬-±’»ˆYôc¥)vŠ•k‘¯’e¿h¹ŽŽä"ǘˆ8H–²ŽÒƒÍ‡×¿¼xûaQ¢ +A÷°“G‡qªYœ|=’C˜Ûã!¹J’‡ÊÚ‚d±™±F²:¶êdYè ãžïŒïcërÐÇÇ_þÇ~øît<Ãˮȧzg>ò«ô‡!¨¬-ȧ6b.ÿû ?XmãÏú$¸ë&÷pAùæ)}<…èâÈhžR¥?ÌS†ÊÚâ)âsbÿ}<%SÇ Ýaw4Õ}L*6©È _Ñ%øÑ&>_´ð×q¬«2£¹J•þ0W*ëÑ¢7Å q»(zŸŽ\õîaðd²wbðç÷^ö3†"AŒš2ÒëxÆÔé›5MŠÃBÊhy”ÌXq~ /›µ=®òSS;((´Ó‡Ûó#§ÛÛˆzåu¡ê) d–Ýf¹Xk6òÄ7•'«ê‹ºû$åIï!1d[å `¬Q¼ó£l…TÐAí‡î˜[ȦüîÞ•:íb²¨çâêiWyÀ©Ï+}yq®›±‰ð¦x´Ã-b[à>ãU¦kô¹úpY;fŒó›"ÎMaúwÿ‹_?á•‘ÿ¦¬£™‡(¯,]£?LÍCe=ž|€#!»R8lŠ/Že®mçEÚUSÐï[’…dݧ¬‚CŸŠsÏÜ¥pຈòñê­5úÃð6XÖnÍ0²)ã}Û„A4¢åÕ,²‚¾†'¬•ãÕtkô‡~°¬= Oa±viq!f©o«w-²×Š­Ç ¹·Ç³»EüVfˆYöŸ’ÊÐÍLÐ~›ÊðIíÖ–¹‹e®ùêëmàäæéQ*Š¿§ØÉ´1I£å#Ó±ü‹šlU^û1—º!ƒ4ô“M~w»ë6Ù>–T"C2¿Ý„E·{üââi~p1î>Íb?k¼| »ìØxùVþ ÿ.kwÿÄòO–èC¥[’pꎷüÕèÓòPY§[Ø… çào ×ø k22Þº[£? qCemAœí!“û'}üfÀÜÞ{㧙H³#^$Áv-âüÙVþuBú£äIz{PÔëu­…¿ñƒUŸ[(7"•¥Ñ}ÀïþMó±ZíÊ…M5ãcÜùÀœ#fw([£?Ì%ËÚãÎæ.r¸Yìš÷¨‰1Ä­ñkô‡i¨¬-‰9Èñøß/ -Î>¾SƒþÁ¡¨ÛÌÀ(…=ÌxG5úÃ|a¨¬-¾@mȵíÿ·/äÇ.S£°¿ÆþJužÃ‰<¼ AÜ︮F¼ËÚcOI`ó^üÿŒb±cµiÍîòÃÌ>PÒ– †ò°{oP»éVÁ{íì)S‘%Ñ—^7ò$‰ú¬Íï Øú|sþ^øËf}!ié’Ãh˜¬ÒÊ¡²¶ Ò¢ŠÌ}¨¼ý†Ê?•®®JŒÊ*ùA˜*éqHzô^4¦ßÐØÔÿ¹ŸûQrý¾™SO(:zï?«äAq°¤Ý35— ‹áÈáœÃ‘có<›;øÿnÌB–í}Í¿wûäZxr +endstream +endobj +3975 0 obj << +/Type /Page +/Contents 3976 0 R +/Resources 3974 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 3955 0 R +/Annots [ 3963 0 R 3973 0 R ] +>> endobj +3963 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [381.086 698.453 395.81 709.357] +/A << /S /GoTo /D (V1671_FO) >> +>> endobj +3973 0 obj << +/Type /Annot +/Subtype /Link +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [483.555 619.791 567.925 630.695] +/A << /S /GoTo /D (V1671_EXT) >> +>> endobj +3977 0 obj << +/D [3975 0 R /XYZ -16.307 900.716 null] +>> endobj +3978 0 obj << +/D [3975 0 R /XYZ 89.4 725.356 null] +>> endobj +3979 0 obj << +/D [3975 0 R /XYZ 115.223 646.694 null] +>> endobj +3980 0 obj << +/D [3975 0 R /XYZ 108.398 587.239 null] +>> endobj +3981 0 obj << +/D [3975 0 R /XYZ 158.958 539.74 null] +>> endobj +3982 0 obj << +/D [3975 0 R /XYZ 56.693 470.78 null] +>> endobj +3983 0 obj << +/D [3975 0 R /XYZ 56.693 453.501 null] +>> endobj +3984 0 obj << +/D [3975 0 R /XYZ 56.693 422.697 null] +>> endobj +3985 0 obj << +/D [3975 0 R /XYZ 87.079 424.156 null] +>> endobj +3986 0 obj << +/D [3975 0 R /XYZ 87.079 413.197 null] +>> endobj +3987 0 obj << +/D [3975 0 R /XYZ 87.079 402.238 null] +>> endobj +3988 0 obj << +/D [3975 0 R /XYZ 87.079 391.279 null] +>> endobj +3989 0 obj << +/D [3975 0 R /XYZ 87.079 369.362 null] +>> endobj +3990 0 obj << +/D [3975 0 R /XYZ 87.079 358.403 null] +>> endobj +3991 0 obj << +/D [3975 0 R /XYZ 87.079 347.444 null] +>> endobj +3992 0 obj << +/D [3975 0 R /XYZ 87.079 336.485 null] +>> endobj +3993 0 obj << +/D [3975 0 R /XYZ 87.079 325.526 null] +>> endobj +3994 0 obj << +/D [3975 0 R /XYZ 56.693 273.059 null] +>> endobj +3995 0 obj << +/D [3975 0 R /XYZ 87.079 274.518 null] +>> endobj +3996 0 obj << +/D [3975 0 R /XYZ 87.079 263.559 null] +>> endobj +3997 0 obj << +/D [3975 0 R /XYZ 87.079 252.6 null] +>> endobj +3998 0 obj << +/D [3975 0 R /XYZ 87.079 241.642 null] +>> endobj +3999 0 obj << +/D [3975 0 R /XYZ 56.693 201.13 null] +>> endobj +4000 0 obj << +/D [3975 0 R /XYZ 87.079 202.589 null] +>> endobj +4001 0 obj << +/D [3975 0 R /XYZ 87.079 191.63 null] +>> endobj +4002 0 obj << +/D [3975 0 R /XYZ 87.079 180.671 null] +>> endobj +4003 0 obj << +/D [3975 0 R /XYZ 87.079 158.753 null] +>> endobj +4004 0 obj << +/D [3975 0 R /XYZ 87.079 147.795 null] +>> endobj +4005 0 obj << +/D [3975 0 R /XYZ 87.079 136.836 null] +>> endobj +4006 0 obj << +/D [3975 0 R /XYZ 87.079 125.877 null] +>> endobj +4007 0 obj << +/D [3975 0 R /XYZ 87.079 114.918 null] +>> endobj +4008 0 obj << +/D [3975 0 R /XYZ 87.079 103.959 null] +>> endobj +4009 0 obj << +/D [3975 0 R /XYZ 87.079 93 null] +>> endobj +3974 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F102 977 0 R /F95 923 0 R /F98 924 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +4012 0 obj << +/Length 2601 +/Filter /FlateDecode +>> +stream +xÚÕYYsÛ8~÷¯`å%TÕx3•ÙªLÆÙÍV6S{j¦*3I܇ {ý6.¬È~Û›q4úøúëöööþ~õÓÝÕõ»{9Ê“ ñîv^ $õ2¢0õî +ï³ÿ‰UŒ +¶Z1ö?òž ý¸ã~èæãÏ|ûç_ôËï·VÞýŽY‚ò8Ö»ÝöÆz!?ÃéÄËàô$”§Gp|…Þ:FyjÎ'$ƒÓÌ¿ÖÿHÈ•W7wW]Ø{Ä‹”ä¡—æ%8ð¶õÕç?±WÀ7Eyæ}S3k/&aÏ•w{õï+lTUI–"œæ^åˆàD õ¾Y­CùÞäSìoAGâxFäà‹úAŒF÷¢z¡—ýqP1ý,|¨ +=cƨ~*Ƕƒèy]þ—ö%7§WôuæxÞô´lÊf¯?"¿¥­YÏ:¡'Âq« ö¿é¯eã2’èY«­ ¥k«obf LÏQ +WÓÿ‚x9íó:ÆØ¿¥÷RR¹[ÁÑ÷=k/^ÉÃ1xVÍåøWù‡zælQæZkœ¯ãµ~êæîÙÒíºg aÀšG”KsÂ]à ‘8ÓŸŠN0Æ3¯—.1ðñ®sMƒ Ea~^#o´˜ÍPo˜‰¾Óÿ˺å]O›^¿nVö‡½~‘îr¯”$Žì/³Ä›¢Xè×­Ùçì|ÓÐM{«X†É*–#Ë!„¢Œ3µ¾ØìøjÀŠ^.X+ ˆ‹`ËPœdvoƒ-£8´SXÓwý¦rìÅ(r;±4^õî£ø¡o‡þȽIŽÁ5’'kU ­4ß„Œ§bgÂ8²Òt¼b?Š¾ã°§’'àqIþ-ÔíŠR<¢…ðIJ0˜î©JÀ©ß0ƒ,Îô 08â:Ï.·pl¥;<´ÖО¡¯¬ÛÐÕŽûä9Âáè!ýöú -môÉDåÀ ´`™ßs=Ò™£ F^”MϪªÜƒ½ÐCß:Ú¶ +GÕÄÕe„R_X³Š°ÿµÖ°ú82× j s™Òbp^‹ŸX[Ñ­õ&ZU‹'ȲÀ^üußÿíõ5üq¨(Æ(Ç“ûh«¿•6ê–±*q\ðzË ›«çPo ‹$‹åí6{7R$@6F¤ EÍ´+Ê-z 'ŽPŠÓÑ *pÃH¸Ñ£þWÃ=L˜rKY¨QHQî¤ÓîXÇ,ô*Ê~J6Ú³àá@%*kWxt¹‘œVVãpç 1A8 /ÓÜϬíØnW®Üýëƒ3¬0àG>ƈ8ÐâlH¥)ʣѳ¦ˆ5É'ƃM°oooMºj€$Ð>’ã«¥91.ºÙo2ÖX¡éÀÝ*@zëòü ØxŽí4è—}Å\à áè׎ý€d¦³Ý¸® 81pÑ1(hãr]’¢hr]Ø«º– ×v@Q³l‘ä¥EKÍ“ +Mx"þvE€Ú ¡ß¾J£Õ sÿ:ÊAO‡Rè%5ý²‚ÌÌ,{= ˆr£ù¥u’$¢fèÀ”HEp,éß 4üM4š}ÆfÌìòöEVÿÕêgi”}V¥ÆkVÞŒ'ŽlÊ/ÅSæÝ\—.<ÉPr’%U|! !(/.Cx“'Ã(œÈ‚|QeTE’Á«„¢M_Zb°ô·f:jéæLÚ—êœÒ$קí;®K¿–=­Ê­>ßíàiŒ¢IwãyŠÉ)órëâ¥K£àR˜$ÇÈéàÈ18ò[¨Y`Êêeóà³<™s!KtÖÚ¡06îkj3Ôv¼¥{ÀK´Ó;HD™/ï­M¼¥q‚Äo¸zˆý‚o™å•¨ðá™&VäXñG|8ܼ ¨ýX-ï&þoÒ¶%äuõ©àzµÎCê$ÃÅõ¸Ä\Èg©çäL®çѢЂ×LA ªÙ•·6×ZDóçp±õÖèœ*|P®ÝÎRÝXÔV±oØXië1é!&6E5b„­``ĦY¨Ãà³LωcÐkŒ­ ±V– ¤‹)T•u %v]9ƒ#Ä s›Ô²’eb-ØN+ª~VoºÂ1Ž7†#Á®ÃCL¸vtlƒ»ÄN¾ƒ¦AÞS!íÆdô«÷oïÞ|øàJ +§‹Ì•*í¢ ¯²ívè'<œÏáÐèkÄ<`ã´â{‰7 +œ”ÅÅÙãðÀlÇå³ÅWï9¯\ +4!LG%Ô=g—ôË ™$(ÈQÛ,¹¨m– òÜ6ûhZ¥hƒ„2Õà¯6ÔÉú—=(Ú÷]i†í£Oµ(íØqtêK=Xt3àö¾ÙVƒ­i°·Lë©ã& ¹WÞ\ÖÒè3o?©OöÉæÝ…½ ¥¥ŽÛò›0¿غ\, ó¨ +µÞð^[6O½$)8£ýÐK šNç¡™E@™NÎyŸ|9ÿÌ#>:¹ÌBj{•e'í¬„k} ÿÀ©ÓgÈø¦¸<)ÉÐ Gœ¸‡,ò^–S µIi¦ŠóFX“ UmN}Éì—ü8Z>Yþz$¡Ö:ŒO +€—ÉW`†µŒ[·yå쑨No6«"!ñ"µAõÀ ¯t%º WeVþàÚ=†½‰{ïb‡vÝ;+¦EYúÝG«ê f‹¡’+¬_ÐÿÍà< +Šªø;á8]”j€¼UHH°¿Öl]EÀ¥’ðÉûŸ¥žY2GÜïoÙÊ6Q‡d·kh¥µÿˆÒƒ4˜¨5ÔT™Ë”ï'¶$HTשS÷U¯­AÐĆŸLöq¼T?£ÛƒÍµ‹¶ÚÆ5ïÆ8ƒÁZ\§¼I·i$º‘übÚ´Ôð¦|ržÐîÁQýCËÜ5K\=ÁÜ4-‚|z0ª6RÃÇ KYwƒîq«w=uúÑ°éQs@¨¤4 ½«…Ó,?¦²3ÙΘšE¢’LhÛȪûe£à`í˜èâþo;(à™j#Ë×Ê¿²­ÌVnU«MÎœÿÜzÚVSä> Üžw¥]&Y‹œ.û—¥jè%$ôßÉiª Ÿ¡ªgÐJ ÔÅÕzÚU%î,Ûi2ÝE5«åƒêÙ†¶ª•#ÖXŽ_|ÏþJîrâ7²ýóÝÂÆtç–þìúéj(œäÏùåþ@[U« +endstream +endobj +4011 0 obj << +/Type /Page +/Contents 4012 0 R +/Resources 4010 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 3955 0 R +>> endobj +4013 0 obj << +/D [4011 0 R /XYZ -11.232 900.716 null] +>> endobj +634 0 obj << +/D [4011 0 R /XYZ 56.693 700.821 null] +>> endobj +4014 0 obj << +/D [4011 0 R /XYZ 56.693 664.356 null] +>> endobj +638 0 obj << +/D [4011 0 R /XYZ 56.693 288.073 null] +>> endobj +4015 0 obj << +/D [4011 0 R /XYZ 56.693 251.609 null] +>> endobj +4010 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F52 695 0 R /F93 909 0 R /F102 977 0 R /F57 739 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +4018 0 obj << +/Length 3207 +/Filter /FlateDecode +>> +stream +xÚ­ZK“㶾ϯÐ-šªL|ú;qì”íM²sH•í%B½Aó‘™ñ¯O7º‘wwfíh4ýøºÁ`sÚ›Ü}õp÷Å7q°ÉEž„Éæá¸IB‘¤›L*¡ÒÍC¹ùiû]ë¢×÷»0¶?šA÷Ô<šŽÙ_þ;2æ=uþûîûû_þ Ëì¤yµwÃs­û³ÖC¯au¹É`õDáê,ŸFj³‹EžòúRæ@1Ͷ_ÐC† μûûÃÝow蹉‘äj“æR$A¸9\î~ú%Ø”ð8Qžmí——M,ªÚõæÝÝ¿ïEðA‘8ÚQ.dS?‡al¹pÓ6?íâ Øþµ,u‰|FÛF߇ñö‘v))»Íˆ)fQó,­^†Ê4¢S{]‹Kñ$JÝgÑ”¥"Ïr7¹-ºâ¢ÝÑ¢ƒÁg¼Æ®¡sD6Ž4ÌK1ƒãe¯»ª9Q6ıý´ Ñƒî†¢â–'q¿SY´}8W=¶º»TtœpÖy"TÏýÙŒ¬*†ž´4µ/ůN“®ìA§¶òûß½Œ·ºf+šÒ½,îÀß2ªy1±!t)槸ËD”d¸ ‘fÑKÎzåxU*béOèhÌЀو^·ø.u'Ú΀ԆJ÷k'œ(‘e±›_ CWíq·ã Ýþ†¹<Á/Å°0Ǻjü÷¨&µýœXbiT,©”aÐ,a3í8,ÅRDAÄR/2¥²‰š®È+“"μ9T—“軃h‹UýO@ýCé…Óý)ì@ÿá ¢tpôÛ‡¾§ MC°OœJ·ÝŽÓt[3Ûzé¶r‹¹}¥¼D¶}<ÃDÏ:f·@ »©uð̶I€›ÙÊI7ÎÊÃþyqª½w  7¬‹Ã™ÏóRœøkä¾ÖXÉw*Þ¡A'œËm×{w>?Y ;K"o +UcµÖ¿…uy·ƒ(aìíàͪ'IxCý©¸´°éW¹ÈÒO—KêÇê4v–øŽNQ幈ãp~Š^œCç×u½_[a ”"‹³%C±ÿäîBˆU2Y¬Ò›¥¦ô£kA¿èƹç–õçP°oØ멧ñêY5eeÕ¾*Ç¢®YY«#»y­Ë[+ó©|±Y• 4C/Ń¹´¦öÅϪ9Ôc æ n‡ÇÖ„`!Î×"©R![¶Dc§˜ö3u0µ\(ÃoiN¸=œ‹ EŠ^Å0¹m5ˆêÉ‘bš̚׃=°B…2€3æúd·‡ñ6ßÚýô†Ϻ¡Qt+‚ÊÁ†¤Wsϱ3+š¡dJD©ZEù¶âUÓü®;ƒH O<È<°SÐGÎ ½-«CÐXõgzqë¡K¥×,4žýX gç<ÒL$YÆ‚a Ö¬ª,ô€áÂÛ¡3=G¼N!ø7½ÄÞÍ>ÜËlûöëyNõùð R¯»ç±y/8BkQ›aÕ ƒHä*Y=Å1é°åÂ÷NÝ ©åÄZü‚OKùøC=Çõ,¯Ô¤Àb'‡×õ­g¡ÃR‘U¼™ÿMâÁ…¦8¨A%n°Ë°Î­ãÌò5.‹þ×}¡‡ƒBòŸã¤I/ê Gìüt1àâ_ÎèÀQ¥S Z ®ÉrÊôt±åmîƒz>vê>£(ð¢X@¶‘¼NZŸGˆÐž}àÍäh¾œÈ‡ƒˆø˜xv2†È‹î-)äeŸ+ ]æÛ¶.úlêÒ*4 BAȺ (;Ë2¸ .‰‘Ù\–]ן¥DDâ§ù¨=§ éb²Fz_›ÃûOAH”÷ VÜ° Ý°Œ¡ gƒ8ÞYB²•ÊE¨˜YÌgûøuËq’‹èªXîHwÈô +iÂïÐgì4"Þ⬿ÜC£_Y Sè0›¬de²²H¤g3ü’€×î[Ìì&ùÜó}oÑË…‡`Ë’ÒÁd¦ ¸ûŽù+èÑ6‚cóèöP!lDæD)fÛ§¨ -ÈÀø À ä«ð5:O¯Ñ¥.ÍÔúâac 2½ÅBC5|Ò7D!@ ðz Þ÷ÏÄÇÅ”:݃ì,¬7ÆxàÖâ·3ì²>.!X䃢H Ÿ|óÖ)‡y¢@DÑR“oóÏÏðëQ²}W<Ùj4û±m=yèÐ~¡Qð[€¦$vqtq0äÈx´5Sï0ŒD|µ^ý4”ÅP¬©w,®Y‘÷šXåS¶¯ +fÐ2LE¸\W”úXÄ°+—«d8Ýp¡Œs( &!Þäw çÊg `…V)\X˜ˆ zŒIoÆW"ˆsEŠRÎ{¡ãkPõ®Ô÷°èMéÒŽ8‹_¦<÷)°OdÍe€ÐÃ9ªd Wyºå³D7¡ñ…¶$#j†ÎX@Ÿ  7ÖzàŵŠ»Æ2ŸÆ 4h›qá·ã~GyS¡Ã²ä;ô›¦){°ñ Im +Sƺèhí¡7Ày47ÇoÐå‚E;\½×g*ÂUfä¡Ç{Øš v¾ûáÛ·ü¥=t§®ê4¬Ì¡­a…®·óóÍßq{õ?)ûŸ”\T±ßwŒ÷ì ;¿ÔAêPf³­ÜõLˆŸ-ˆVw‹ø;—‘¥è#lÐA*®Ñ¦f†º",:Ð/˜<ë ·6×’“3°'ó™=>'¥išt&•óÕ½¦^–@ÑöÓû×Hþ;%‡þ\Å’¯æäÜ«HqvKEÞîýØþ9ÙÔÌUˆâZ!ª0\qÒ‚3ÀUCÌÉwa#ß)IøVIIˆØ¬úù4ˆ7©jU¸ì—ݹÄ3 > endobj +4019 0 obj << +/D [4017 0 R /XYZ -16.307 900.716 null] +>> endobj +4016 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F102 977 0 R /F57 739 0 R /F93 909 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +4022 0 obj << +/Length 2820 +/Filter /FlateDecode +>> +stream +xÚí]Û6ò}…à{8/sEê;h 4i›Ë¡ zÝ=4@ÓY¦-ÝÊ¢OÙMýÍCYòÊoܽ‡ÃÁ¦Èáp8_ÎÐu6Žë¼¹xusqõCà: KB:7k',Œœ˜{Ì‹œ›•óÛüYÊ´‘— ¸ówª•i®UmmNƒß©ì•R·æãýõ—¿ßü–YpÎ’ 0Ø®ÛO¥lr)Û‡auîÄ°zèáê>,ùž³XÑú\¸€1ŠçWæ‹g^|sñï ø]‡;AÈÂÄs¢„³ÐN¶½øíw×YÁPÀü$vî4äÖ ¸Ë„B»t®/þqá+Ü£,±¸ý„q74D}"ÐTØiÎo‹Àuçß®Vre6SôÆ|ÄáE,à @êÙ«åZ-*i!Ç«¹,q{È]­2Ù4Eµ1\-ª¦­»¬-TEÌWæ/y0ÿX¬HZ·4”n¨oYËô¶acÂqÌ|ƒ˜€qÒþ )Û])·²jÓ=5jmþ%Òr_4mOøòR¸óŽ(ꪮ±›ç ®=Ÿx"@òAÏ(¹N»²eÅöÀîŠU›O°Œ»>‹Ü¨çYZ§[ÙÊú@O7uºË‹ìÁþE±0Ä€àq\w»ªÛ …÷fBîÜu™ M"­M7SôÇ ÔŸ@Šª,*’—4 >$˜ã„Ä?à·DkºÛÉ´n¬É¦ÔýþûŸM£R—"˜ß‘ò˜]ô?«"SV¯²Ø›w«‘$``Ä6­Q½wç7¹¬iJÑôK‰t5ø ’Š6ƒ‘*ƒ†;":Ë`ÿÖáÔj{HÃkÜÓxòSz{ÉQK' ÕcßË«‘€\• Ë’‹„6‚þÛÍO?‘ía«,¹M«¶Èhoí;EÓøˆÜO‹2]–rÌŽ×××–/è:(ƒ‹¾R<Å|'v +ÕgÍvµ¬•šÚt3!ÂÞÚÊ4“¹*W(P/Œç­Ƕ’¾þ'ó¬·Ekúî›rÑôç€éÓÜÀ†2ªÍŸß6fr?˜©íÖ(Äw<_ÒZªkw]k¦,åZó]ÃåZÒÎ"OÑè@Ú Mo÷1»ƒÙa|š†½SÕ"Ë»Êè ºÔnqs ‚.+Š 'Lo#­¾§dY_¥^íëY±š}3¢rl†ûíXn˜Ã€ è;³¸—DB-×`®UfI½+ÀÓêÖ= B²XðO·_fwoqUáÏÇœ¢¸`¨~ Úyµ™TXpæòþœ@’.¡‹)¿žåj+gšÃáâñÞ« Ä÷h5²¦Mëv +[ñ@Ô?‘Œªú«àÌKÂ#Ô‚¥},T×ÌŽm~ðDŠá$Á‹’C‚Á0qø±ÏDDÆA~äWïõ¡ZùÀwRªÌÎ0‘A(Ñ%ˆþ#Z‡¬ÓÒ†-m–Û`Ó:üݖ¹,w‡'¯—‰˜3Ó~ŠÊc0¤ºý"-öJ5Uam¥TYjó׶èœTuµlØý¶3!ÚÇAgA@ ¸ÜDBDtH„ î ðƨ—…s‘¥ 8E¬‚ÇwGΤÛ.íl£6ˆèàÐO­K1!Ûf¿á{- /ô‘.vHÄ„[ŒÁÄýþö á¤}YAè¶häç×ÁU‚9¤©– FâÀ3~?‡> ýàij‡ cˆà*¸=ìß ÕŠ.úö=[‰GAÑ µÇÑüÂøÜŒäÚú ±”­ ù5¬ª´,þ°¡ÀÀçÉü´:vdÕ6W=±¤´Ü”v‡‡R'Ï©m +5JG°FóCˆZŠœa¨,( +Õ_ýq,æ¼€ë&ǦgæÁ†ÔHç@cAGÌ &Åt‚i vË€˜É™VùÐÜ`ÔÚЋ.‡­GÏ^h?Ü#"šÑd$Û¶Y–Ï´BèY)Á¨ŠHìÃô©D@¯Ô:€ì•m;gzõËT]ËÌÞhUSì/š8F4í´f2Ëg&4+fã^ÿ!3 +uJˆ6:¸hâ–XO3„×¾!Y‡/¾Ÿe¸ M-øï´{ÂŽ\ßv 5ÔYøü¤:êïšÖ´2ä8ÍË Wm÷º +]eúÉ.cšÆIÓÚÒüej)FÖøìéUͺŒ½ð½pI­Õx3¼Ì1 + h|$<ð+SÁJá•·/.2/îã/<˯t(Ȧñ3 ã>j2Šæ…Â^<ò‡ØUTYÙ­dcúá®[«]]Ð-dÌü6á-‚VÖ,C€ÃæÞ‹cÈƉ‰(ËìK»V«ûÅå=ùæÈÞðÚí}¯ª'p/üÄÏ’Œy¯Ùvâ"¢5$+ù·iz³çó9/φÕÐmãß›q¢-ô +Ç àèð#L´aàFÀ…Ð'NœZ:ëafm„mº÷á>g~Û bŽÐçâù!þÀå,~Ê +ìc'^r>±:é8:É{2}Et¦|E*þêc¿àÑj rpÚÎ_‡˜ÃpÒ¬¾¦@<[5OÀ?AÍ׳ãàyÛî`¿º:>áîîîž=í=XÕ›Cè+ž$É#ÔP¦{4å8ôMVÍZÕÛÃ9³SMÏsYJ÷l–1ƦeœMì>´LóXÌ©lðbm|]ù‰–3lÙC›œe3™cµ/¾¯6eÑä/)Oj¿‘õ6­èã,Û‘ëf/óƒüéwºóñê–­K\ñI%.Ÿñ‰4ÖAeë¬öUÂcEª²!¦Rz¸¯®U]"ð¥²ó>ñ¼FA¦EÙÕòÁ‹«U·/ÑP]f·J[[=¬‡/çªý˹añ°»Ìý D-‰E6°Äõ>_`÷óâÑ<ƒÃ¾‘¦Kا¹d2œÐÛ3‡þûIG/0½ÖQ§»]ˆ¯€.ùvÏç+‹Ë"~”U…þ”è'ba`­°†C¦¶oz‹1Ùñü}Z%'[Yám¾yq¬Êö  ¬h²œk…—ªã!„YºìÐ÷­yi9=Æ1Å(³oôpjþ–V"Ïå™Ê û` ûGD÷¸`ÿJë©Ç4 £þåÍ]Q–fÙ½ÿÀ‰³ÐoÚ 7 æ ŽŸä5Sxp)p$ ~Ï×$ÇhŒ™ØoÇRÖ¾!z°)X0vS5}|—|É[Íÿ_]@à +endstream +endobj +4021 0 obj << +/Type /Page +/Contents 4022 0 R +/Resources 4020 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 4034 0 R +>> endobj +4023 0 obj << +/D [4021 0 R /XYZ -11.232 900.716 null] +>> endobj +642 0 obj << +/D [4021 0 R /XYZ 56.693 530.759 null] +>> endobj +4024 0 obj << +/D [4021 0 R /XYZ 56.693 491.705 null] +>> endobj +4025 0 obj << +/D [4021 0 R /XYZ 56.693 354.275 null] +>> endobj +4026 0 obj << +/D [4021 0 R /XYZ 65.161 355.735 null] +>> endobj +4027 0 obj << +/D [4021 0 R /XYZ 65.161 344.776 null] +>> endobj +4028 0 obj << +/D [4021 0 R /XYZ 65.161 333.817 null] +>> endobj +4029 0 obj << +/D [4021 0 R /XYZ 65.161 322.858 null] +>> endobj +4030 0 obj << +/D [4021 0 R /XYZ 65.161 311.899 null] +>> endobj +4031 0 obj << +/D [4021 0 R /XYZ 65.161 300.94 null] +>> endobj +4032 0 obj << +/D [4021 0 R /XYZ 65.161 289.981 null] +>> endobj +646 0 obj << +/D [4021 0 R /XYZ 56.693 224.696 null] +>> endobj +4033 0 obj << +/D [4021 0 R /XYZ 56.693 187.699 null] +>> endobj +4020 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F102 977 0 R /F52 695 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +4037 0 obj << +/Length 2522 +/Filter /FlateDecode +>> +stream +xÚµYm“Ô6þ¾¿ÂÅ¥jgªv„%[~á.—: R!!ìæ.W[3ãà7l™…üúkY/~;,uŸ,Ûrw«ÕýôÓ²ëì×y~ñøæâá3ê:1Š87;' ({È ›Ôy³zÍsÎZ¾Þê®~®oÕpW5j úåÓ*y\UïÔÍï×?­ÿ¸ùÔl0F1¥JÚµø”óöÀ¹håkÐŽ´žÔîƒúÐ÷œ Eq¨õc‚Ab­ª &üòâû›‹÷ä»vh€‚Øs£À%NR\¼ùÃuRx ?ŽœÛ~fáPì"â0Îë‹_/\í +wââ`‚bŒ©´Ê÷Dq ¬"qo„ùÊy³Á®ëŽœ%-EF®^æØÉà¡ íeýT íÓj§®Û5qWÝ^ݼu]òqéÊxž•©dEÝTò͇þuÁKÑ¢©]REn¬U½%„Î §`÷‹2ËAl¬Ú®®«F¨µÍ]‰¬à­`E­ž¿zÔàYSjTVkBW·jú§ªSOVªA×ûÿø.ÝΤ–‚‰oüw1^mŠMª¤üðèå£ëßýSÍ•ºî¹6.éš­æ¦Lp)V½ÊÊ>ü"äÑ4Á2¹i•tÒi°»«¥)מͫ„åÙ_LdU©ž NÇþH'ܽz1õíÆhQ@ƒÏï€QN¢UÎ¥ÕžÊ-!á*PozÈ+øN¤%}€A€öyäËÃ.Ea‚ü^gË“~!Ç‘èÁDf^ÊkqPr³R]Û5^©¯Ñ‘YÒŽ¢ÎÁz®±îÀ„2[+F"9Ÿ +ÄnÍ‘õa ŸÝf¹»Õ!bR%H9\êP{ðÇz!"4œî¯V/¥ÑèÝâ¼Ö‰Ö Ox³¦t¥càæé,kU—ëp`y¿6%¬3XÈÔå … =c«_' ϘLÕQtE®-èDÝ ô™€¡Ÿ˜§Uy¹Æàm%Ïšuýoéàçêfß°ú%zIÙN…ä Pa µöKÁ!lcê[wf:¦€3€ægÿ³… +eº6°ìŠ-l€ß@nÓ‡ÍfdãÔ³‘ ÜYæŸ>·HâùÈ ãYF Ö‰*g[ˆçãåÆŠ}›&,ÊJ;ü/ÞTóíóÖ]žç“ñ¾·*²¶ÍJ‰÷>Y]òrŸgía“³rß±=ß”¬à—j&¢ÉTyè=óûÀƒWªÃ»¥zÕHâÛ•¼óuÝ_¨™s½kê÷ù.Kô)užV72Úx¬Už_“G–4 .ÃF\†ïG1Ehí| 0ú ã ZðW$Ñ“ +´'6MÛB5L«jøŽƒ‰‰ R“è5k`_o“*²@=ïÁ÷ ¥|Ǻ\œ ¸yÄ&Øc·ÜàØ°_c>øæÁÜ$¤(¢Þ=’‘% TviMÀf¢ÈÚÇÒB";ÿxr=‘‡pdhp×Ä‹¢kJK~ÀŒÝ@4¯Ôð?ëHBy ×O¸H4\÷ªç‹Ç> QHÏ[ü3@é×ü½ü· òi€)á“’_Tf~ÿþ•~ăøcGŒëK²_…5Ð¥úÀËcºqÌLŽxÈqõ'.P\lŸ€å»…í!û±Eĉ¦c™Ÿ@ÑõÜ-ßge È´ •º(vœ,ã­KÝ´â’`OÿnRO»÷æés˜‡ ¹$Q_D¦Nò¶©Ë7É‚3‘±é»««Å)uˆ<Ì“%*©:…­cN>û¬áËÊ¥¿"jrˆÅÖíMU‰1¿ZÈMz›ËWK"}GÄÌàÛr‡ Ï¾4ð~‡Dë–¥j HB£‰lhD_9Rš"÷©Ø¶˜©6÷\ˆ»GÁvŸT¹‰àì†&Ø67¥‰çy«Ã³`ïÖÁÜ•ƒFagkˆ¥Pa¦Sªv`2 +T•1_ÉM`¸ÂA(K†ÚÌð>g­˜hŸrZÐÜå½Âë0?çKé£Ð³—7ÀoÓl) LÝ\k½är=fŒÉsž aܽåBÓ1–»y€RçeG]ç™L|`Ý6÷Ã]ߢz„¬~ä¦ÈÈ繬ñr¤Šíð™ÜšT}Ò»]¾±Mùô`ñj"pÊ +ª|óI?ï×*GŠÕ¶êFúCή›¬°s!ìÈS€IJüÕ5p0Vp5ï6“-Y¯R&óTü ’eŽÃgd^eFå½¹ÓdS.Ý&Ϫrz’1a,Š´5YŸbK¤‰BI"CÝÊó“+õ Á†â5£?ÀŸ¹Ž—&µÂÞCÔ÷– *­¥ªŒƒ’x˜(O3„]÷e)ä—ÚóÇÔκ=˜Qfr>^ÜN‘‰™ôžqä(˜é]kžd†¿Ž¬™z)Œ&y_¼Ù·Ò[ŠÌ_ØÎ8@ÁÀg÷yÕ¶~è³ûŠ]…nx²ëÚBSôîj|J&¦žKXi'Cý›cgï¬f5rœµDÂŽçŸç›WY¢=»z¦n×0s84o¥Tj.œÝrÐr-1$Ë”½A³`Ζ٩$ȦppeÙB~J`C/<™QáAÞA¿f(0±úSþ1Í>,e‡Üa1—(- +;¡/%w¹ÄdM $LvùÐZBK7:IUMVMU/Çuµ–Û+"5›|šø&8/X^óbtdkƒº])»$õ5y^ÔUÙ¢þôlJ羸´¿iU +^<5'ùê·oi÷|Óò÷ݨÝM•/ÊYÛ6-çÛ¼JÞÝÏ°ßÌÁ•\ p4À–o‰ÙÜf©8HïàÁ1¦ÄôÙBÔG>òýðÎü™t?ªʼ'3²p@ÿìjËϳp0pè28KyóPÖ ÛöJs ©”½IÃÛÖœ3äÐ3 ÅaÃr`Ûó +1Œº¡°>ûåÕWœ¸Á/ÛONz:J&8.9zx†ò¬|·ˆãЃ»Å«å|k·ߦ•´¯0>™qeuLªO‡rÝG‚Ó4»ǃ5lPÔ.œQRrfÉ{®C÷ rO˜i!nä™Dõä~oš‘ãØõ tqó‚y'`^-I‚æÍJÚfÛ<«ú³à%ièÐÍ;·)O·ÒÏb‹gSWÞ*ïÙ`ºëÉHÍ¢ÁÒäÐ",©RSù«9]JºVTÅä/¡­½sö¿¯ áżÁ¦è3OÃ×Úù‰Q-{ÿ,aùÿ3\äI\µýS¶'èòù¶>4ò/æÂ/`gᨵ[¢/ȧްù†àœ4c'm‹1|qšxx!´ùÑ=ÚüKù[§³—ÓVßnvèlÿøe­8‘Îw6=Ë>Žk¹þ77 +¦oD•L-X8üÔ×þ ¸å6I y2õÉÒoßE.lß=þ{ÿ ¼;æ +endstream +endobj +4036 0 obj << +/Type /Page +/Contents 4037 0 R +/Resources 4035 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 4034 0 R +>> endobj +4038 0 obj << +/D [4036 0 R /XYZ -16.307 900.716 null] +>> endobj +650 0 obj << +/D [4036 0 R /XYZ 56.693 759.068 null] +>> endobj +4039 0 obj << +/D [4036 0 R /XYZ 56.693 731.272 null] +>> endobj +4035 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F52 695 0 R /F93 909 0 R /F102 977 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +4042 0 obj << +/Length 2663 +/Filter /FlateDecode +>> +stream +xÚí\ëÛ¸ÿ¾…p(¨¾%¥à^M[Úëe È8­MÛjdÉ‘äx·Eÿ÷’%Ù»‘VÑ^òA´D‡3¿Îp‡ÁÞÆÃÞË«¯®¯žÿQ`/D¡¤Ò»^{’"é{aˆùÞõÊ{=ûA%**Ô|Ažý5+Ua›ë,·rë>~“-¿Ê²·öÇ?_}7sý˜fA +…°Ô^•w‰*¶J•…þ ³/€Ù%Ó³s˜ÞçÌ[ún~B)PôƒÙsû Tê‘Wß^_½»"@{ÄÉy~HÄÔ[î®^¿ÁÞ +¾ˆ‡w4=wž Q&¡x¯®þ~…(ð½"©hó,-S?R* Õ0ïõB`<ûrµR++€}ž-UQ åö¾Eë,+Ó“ðÊÌ> µ,i%Æ<;l¶ö‡hwûczk›7sŠg‡ý‘­ísEœn*Å´¦:nUj[†ÛLÔœŠÙû93•ØW›\E¥ªu¹Aµ×©õ"ýåÑÎ6 +' £q®…ë‡(à0Ð+³%ÚE·h¥öåÖÁ£© Ÿ"Nƒª÷q/¸–YZæYâV $â]ä–eiµ¤u=àÇ×öGäåêÝAeÅôÍ}~ÿ§ïßüíëJDÙaß‘Ç‚Š¨ ú‰åÛ[#òÝ^OdÈ:IC„CR‹#.Áônnrõþ‚0$AB°ªï:ÏvÀ$ w*ÚÝ$Ú&YX¡Ð‚¾Æ©}&qQ¿6'³(]Ù—fšÁ•ý^£$Êãèéç3 û•›Ë Þ +÷ÉzøRD;÷ª¸KËèÖ¶è]7í*sD|Ùö|v¨4Lwå ^Kßï Êâ°ßgyÙqeàêv*-$nTyT•ñ\…FOº:Yh^½u}u7 –;(–—<%G´ÅSQ› #—fšÞq.Ŭ½x@õE!!BCl“8*ÏÍpWƒN]{Sð—ˆ\€Т’Œ[Zße_•µÑ 9Ź¿ áÚ¹ÖHa¡ÔªØéu³Ð73éwÆVN ù@¶i+ûh£P Ö•€»)Ðí.¹°0 ˆ¨ö9šóDûJ=“Q§žº¬ø)êýªâ¥â®Ì£´Ðì5—;ÛÚFZ4Ö¹Ú¾7F†^¼Ic=ç2JËäÎâžx}À{ ÷KpÁµB0Žt“¤-þz×Ê2­2jŸ¸jï ÎCvÆÖ²r¤rÕFœýÆ[ì£ +»ïQbVPóö*«vš +±çóߨVï°@­zýxÙÞÃaï'>…íàÂ}½‡ë÷ûHPÚΕ·nnÚ-j—ßžO  +ÀQ» ,a¢{¥/‘¤K_`‚|ðP}fh4…4Ϭ‰gZ›Lͦoœ­ÛïœQêùƳ´yÎÊŽ½Î^<з²ÂÖ˜K]×î¶;Á￸†(/ãe¢ºCîa&:æÑ~o¾­³ë¾I²åÛ3žþÐñƒƒ Ç þƒAl¥t!TYÇEËÚ{(¥(tB7d'3Ð6ý‘:–Ùû ”À3ø9ísé'³å!L}âvAç˜?…Ýó²à€X0}Ù°¨òhUñ64ëßt’+ AlrXÙ|º”ÛÌ„’¦i¶,\CÚˆ`4é|?Å@}™íc6À‡UœCfœÜU”Mj á ÅìÏ©}»Ï£%Hé,†p軵ìDf—N!u™%vîKá‹}þ´Î^<³QOce}='$* p2çä°§‡œNæ9;ôÇyÎÑÌÞë99äÆ”}ØsjoØÏj˜¬º†¾x€´ ¬‡xže¶Ûg銆,áä@? GŠ¦Ûg;ôG¢e4³gò;ÇÁÚh3ˆúÎ[šã«{BªÏC†ì‚)ø×2Ë kPçB%ë3ö_ Þ•_“7½qÅ$”O‡«6ý‘¸Íì\±1B݉Ý@£T·åÃδIùp;çqRo…S°”Ó)¼M¤ÂG3;@á4@L°G(ü­Rû +?ÆöÀ¼g÷ôœôQÉ1º+ ÂÁþtðhÓ ÑÌ€ñ ù#à±ÎÒ!þ ˆÿ}aOúõý¶zD÷¤vöÛÞÇ >Ý[‡þHfv€Æ±Dœ‰é5~Tñf;ÈÆo²dõX g!<ƒp2}wèÓ÷xfûë›…âtÞ6¥¾×Ñ.¶Nhëû?÷ùÕÅä c eé¿_<ï{>‚ѧ8a>F¾ïŽÚ.ÿ¤u’Ñ7ßg‡Á¦Ë÷$*$œ.ÒîÐiwc™½7߇ëtºõqþ!§ŒŸåáƒ\…ÂN5´ÚôGBk4³\:§HPúËáÀã¤DÔŸ.WìЉ«ÑÌÀ#HH— |Úù>Óy ™.¡ëЩÃÑÌÐ!ÅHbÞN)<ƒ¼…‰éºý‘ÍìãI.«ÿ“ÎÊ)$#,œ.KëЧÄñÌöW" $ÿQJ|ÚD›ñéâý6ù‘ +ËêýXÑàQúûgÄyŠÔ™J†0uÕ×B͆’ôø©¨ùE«åüúf~ÕW—c^ ç#Êùz ]äèR¤nÑ'û²Ô¨ó |0HS!­JU®33óËU¸^­*ܧdö¥)þ…OÃ9±ÅÓðö¬0Þe©}Ú² [ü öqЮTh0È©;’€Æ>*li´OE  úØu¶Õ®‹©h€Ö]v°¥©ë‡ÆétC‰ÞÎ ž©jXÕ087Mah±ÈÄÔeèï™ã/u½€å8o6jv}VÎå†^¨ÚøI—‚dÏ\AFƒª.k5ql·h¿Ø«e¼¾«oDÔÕnÍÂm:›Ê%[^›vKd]K£:¼ïñ¥!â!Ÿîø‡‚i‰ sôý‘ûÁXfï=þ¡”À.@©”û¿«”ëkH`9bÂ3ƒý‘8ÍlŸÀ‡ç`R’}îqOß°‡„É %:ôÇÁd:f0ä„{‡þHaŒeöÜB|”5›ðŠ?Å-‡‡Í­š~Üݤˆ‡(›`걎˜øÉ O:ôG‚j4³½1ñ} îÿ¬g·½½¤Bý˜¹áoNqpUNyß ÀWÍ ™‡*äÎÖ@B.×û’¬”õ%ÁØ÷ù!Mëä`«¢•Mòši¾D oÏ.û2Œ|ºnÊ|n*畾x AV¬Ã¿(1õð®D ÷k¦osµFúp¥‡ÝÊðˆêøìr#C×ɶùó”2·º5:_ÓO•Fæú®n[¢Ï]ª§ß,ó¬(l¦†ì*5˜Ïf[ã©íao—âÕ-^Ê$"„¶“¸•Zë¬/:$NÅGý3;$«vý¿ÅY‰¾áp.º·_ÛW?pñúe•ÙŸÃIÞÙ¥ÊƵNÜ rš¸q%Ds÷lnî“wî•w™÷AË”õãþ•=ìóL[Iœ¥Q²XfÉa—.ŽñªÜj€¹ š£´‰íçÌŽI­ú®/ýW +#,ÃÇüO +ÿñ¿ +endstream +endobj +4041 0 obj << +/Type /Page +/Contents 4042 0 R +/Resources 4040 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 4034 0 R +>> endobj +4043 0 obj << +/D [4041 0 R /XYZ -11.232 900.716 null] +>> endobj +654 0 obj << +/D [4041 0 R /XYZ 56.693 661.367 null] +>> endobj +4044 0 obj << +/D [4041 0 R /XYZ 56.693 624.708 null] +>> endobj +4045 0 obj << +/D [4041 0 R /XYZ 56.693 566.675 null] +>> endobj +4046 0 obj << +/D [4041 0 R /XYZ 65.161 568.134 null] +>> endobj +4047 0 obj << +/D [4041 0 R /XYZ 56.693 526.737 null] +>> endobj +4048 0 obj << +/D [4041 0 R /XYZ 65.161 526.139 null] +>> endobj +4049 0 obj << +/D [4041 0 R /XYZ 56.693 470.729 null] +>> endobj +4050 0 obj << +/D [4041 0 R /XYZ 65.161 472.189 null] +>> endobj +4051 0 obj << +/D [4041 0 R /XYZ 65.161 461.23 null] +>> endobj +4052 0 obj << +/D [4041 0 R /XYZ 65.161 450.271 null] +>> endobj +4053 0 obj << +/D [4041 0 R /XYZ 65.161 439.312 null] +>> endobj +4054 0 obj << +/D [4041 0 R /XYZ 65.161 428.353 null] +>> endobj +4055 0 obj << +/D [4041 0 R /XYZ 65.161 417.394 null] +>> endobj +4056 0 obj << +/D [4041 0 R /XYZ 65.161 406.435 null] +>> endobj +4057 0 obj << +/D [4041 0 R /XYZ 56.693 362.981 null] +>> endobj +4058 0 obj << +/D [4041 0 R /XYZ 65.161 364.44 null] +>> endobj +4059 0 obj << +/D [4041 0 R /XYZ 65.161 353.481 null] +>> endobj +4060 0 obj << +/D [4041 0 R /XYZ 65.161 342.522 null] +>> endobj +4061 0 obj << +/D [4041 0 R /XYZ 65.161 331.564 null] +>> endobj +4062 0 obj << +/D [4041 0 R /XYZ 65.161 320.605 null] +>> endobj +4063 0 obj << +/D [4041 0 R /XYZ 65.161 309.646 null] +>> endobj +4064 0 obj << +/D [4041 0 R /XYZ 65.161 298.687 null] +>> endobj +4065 0 obj << +/D [4041 0 R /XYZ 56.693 231.322 null] +>> endobj +4066 0 obj << +/D [4041 0 R /XYZ 65.161 232.781 null] +>> endobj +4067 0 obj << +/D [4041 0 R /XYZ 65.161 221.822 null] +>> endobj +4068 0 obj << +/D [4041 0 R /XYZ 65.161 210.863 null] +>> endobj +4069 0 obj << +/D [4041 0 R /XYZ 65.161 199.905 null] +>> endobj +4070 0 obj << +/D [4041 0 R /XYZ 65.161 188.946 null] +>> endobj +4040 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F102 977 0 R /F93 909 0 R /F52 695 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +4073 0 obj << +/Length 1808 +/Filter /FlateDecode +>> +stream +xÚ­X]“›6}ß_Aó²öL¬ øè[“4M:I7Í:3I2 ²­ "Dv·¿¾W€„Á8ëlób,çá:;Çuþ¸xº¾xò‚ºNŒâ€Îzë¡ay¡³Îœ‹w,gIÍ–+BÝÅ_B±ºû¹²û¡öýŸÏEúTˆ/ÝÅ?ׯ—ŸÖ‚›Æ(¦´³v­îrVïSµþ¼c'什ûà>ô=gEQöþ1ñÀb-žt_˜úÉ‹ß×_/0Øwìбç„1FKœ´¸øðÉu2ø"@~97íÊ¡ØEÄ àwî\_ü}áö©pO¦ÄØöc„Ý  ê#!´Â<æ|XQ×]¼LÊ,ïÓ‘ä|W¬TÝe*¤d©ÊïºË›=+» €í6¾v†}¹^6[?u*+ë½P}¶&‘(6KodRõ¥Iº¯ÜÙó´»à¥ùïØiYÇÖЖïÉfüy‘Ð.Cãý¯—’m™dejÚ>eÍke…Jô( Ø'ûAŸúý4ü¦+ª¾A”è¾ë¦ª„47“Mn\ßpµï~M®x•³Ù‡°eÛ@j'ESÝ[ÌzÜ$/®¦Û"®NvxÞ¶®U5³•PàÙ’můíöV©È›¢¬g¢Œ"D»>;10Ͼ햚—*tïÀt©=ª_ì¡ÐóÎÛèûz(Áà†ȧ6"ÅUΪdÇ®už€¢Û"Ÿ CãÇáAzä,@ +…CF2v›ño÷vôwÆÃÛåÐõçÛ¶“«x¹;j(˜; ^•¾é6Óý–cJ¶$tqÓ]lø&ç¢E·%]ôx +,¥±vZO÷ÌAÌ2Ö'tlûñ† U¢²)6L¢í„K‰#äQ <çLû(ö‚Q3¢óíS÷p’î·?µ\ß‘Ïð- ÀAè+âÓ¡Æ>F!=ÚĪeþ•OAEÐ1ÿŸ°‰„‡³ÐÕž)MŠ•yw!¶¦e:=P&òËCwÈãA‡}ÆýáþZˆèÀœíAÊ;”}ƒà‘ò®˜Ï2¨ œ"Sm}Ïš£kÉ aY9–Éd«V…ÈúkA&+@`²ž +‘qiq!ø{¬Ý¬¼·ü¹—Gô{gòÈ›¤+^_ú<)¿ [étØ!ëž<¡ô†·S%Ðd ÓË«ý/Â… De–zü³½7ÇK>Ì‘íà&çýqê ¼(žŽéq·z€û$8S]Ä9w³$î¢ÙM8~¤ox¦öOöŒïöF®&yÚ[qÐ;ÿS;cybÚò&y‘=JåÃKHûxþ\”—K-úÍ$YÈg´WE~9vk'æ£ë’œ•Iaã„Àõm³“AƒÙ§>g›£o_ý”ˆ¡ÅR6Róëeöì`h;¾„>×5 1™—I!ÀúÀõZÖj šãzN ƒ2<š`-ð™8žà>Ö>Zõ÷ù¿l|tÙ6åÁRƒí:åsH‚䉉x#²;ÔAÒ–çde€Ü!ãÂRðŒb  ½2øGK¸½ƒâ®ô¤é›áb+Eqz®hw³íXo¸nµ\@ï_gR²Ë%¥íÖ•ÂK궛´‡þÞŽkMiµ'¬¶¾§£#‡ÝIw§)ùצí3ÇÈßÉÓï²-a"™°Üaˆë°ý¼šI÷ÓÒÙreLÁDMè¡?ï¤ÖZ{õüä›ÝŒ²V¦µdÒ’Ç„Pô¡‹Ãç=!­Z˜¬Aòü{LfÃÜë·/‡¬<…NuNžÎD£Ï 5·l¥EΉ=8σ6ͼ Êš*ç)³iò»Ih¥®Ý +ˆ¬I-Yðge³Ý¯s°ï +ñ]«3o÷çDˆ\{`­ 9Õ„™u5ÔÞÆ3°`Éj»‡ZÉ&UdG¯†í|œßöýÙðú Re*†âÍPLOì>Øצ•/§(.:Iq˜BÒhüã#d;QÝUlFïØBµßM)d€• óS›y£îû×ð‰Ç½úrýæµ±a^$òíÄwZ×(c©ÉÀ zf¡‚æäd:Œ=lZŸõòMœo…)XK½£è[Ùœ£–øÔ³bRqƒyµ˜ÂWÉ[n$F7Xyf½nì ê±ÿÇ“CA2åÖ>õ0©Ô£q&æÞ/û.rƒø!¯—ÿñ£ +endstream +endobj +4072 0 obj << +/Type /Page +/Contents 4073 0 R +/Resources 4071 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 4034 0 R +>> endobj +4074 0 obj << +/D [4072 0 R /XYZ -16.307 900.716 null] +>> endobj +658 0 obj << +/D [4072 0 R /XYZ 56.693 421.881 null] +>> endobj +4075 0 obj << +/D [4072 0 R /XYZ 56.693 384.108 null] +>> endobj +4071 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F93 909 0 R /F102 977 0 R /F52 695 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +4078 0 obj << +/Length 1558 +/Filter /FlateDecode +>> +stream +xÚ½XMÛ6½ûW½Ôb.?DIFOIÛ)ÒÍî¡@’ƒ,qm&²äˆT²Û_ß¡HÊúÚµw ôdQ¤†3Ã÷fƒ]€ƒ7‹W7‹«×´‰hÜÜEQ$„!7yðaù^"Ubµ¦/ÿ¨´Pöñ¶ªíƒÞ»É_ªìUU}±ƒ¿¯ß­>ÝüÛ¬ Aέµk}_µB+3 »“ Ý#fvaû8dÁš£Mìö'4‹q²¼²?„FæËů7‹¯ öq@¡hÂxCP„i>á ‡9ð…›$øÞ®<œ`DYÏEp½øk]*ð %4 máÆ+o<Œ'‘õŠÑÖ ÿUðaM0ƽdOß âÂì'rB!è˜Z[7>îƒöù#ÆônEøÒç;ui+Ê—ßí`»¢xÙì:cìÇ(Ù8_?RÊÇÞrpöež‹ÜzÕ»_¦µLKû¦¨²´ÿ¤ZVåÔ<`(ÜüÛ2&€;Yî¬My8Ö•yõ­ ì J­~lç±í`$½‘~*tuZ¦ú™Ð.UEQõ²¤„>™½ö±ƒ_²ÝÇÏ ¿;Õ\Ü®o +çÞ7ã[Z4bD¤Ú:­ÄÑ»ãN'«Šî¥t—ý ?¸OÜìQ8›?¿|wý<ÿ{èPÍñXÕúän i DËÜÐ@: Æ!|ßÚÔR¶ÛZ|›$6~íGÌqãë Ô’Ã(+Y])U-nE-ÊL(øˆŒÂZ“Cíb.º3Ø;ÅÓðâ…Pœˑ˴Ú~™>^‡‚ÒéŽ ÇZ–Àß5ˆTe!KṒƈħŸ D¤Zø½+êûáê±£5{†ŒvÉ]ä˜ÆÍ(¢q·z1‡”ðدwéáXÌZŠQÄ“'XúÚ´ujÆTÈfçŠ:ä¦[èO—D×Qtj‘r3æ×B¶3‘Ïç,\‘“Õñq³$B!Þ\vÜ¿§_L31†xرӀ,-ËJ?”´˜#Fºì:pH :›Cú"ré®ûuäجŒp™Ôº–®Š‹çU¬.®ˆçZÔ®šø0‡Oa©?3¹ P؈_³—»½¯¬@ખžDzï›ØÞÍÒ­(ÜTZ¯H²ÜM $#¨Z—E÷¦€:˜Ö÷U²G[ëp»±ªÁ^°­Ó3ì"=“ ü4=c>°ç›çHª:øWJ-Óâ&cO±mÏZ” + ê‘è3­ +mÈõb¼ÃœTº©ö‰;¯³Îhª³]ß4h`4+—:3ȪR§²l§"«˜Ík³y­´ÀqŠÃ±Ø¥ƒøíT—(3he|2 •€Äµg`ÞCO¹·OS$Šz9" SùìJ#ÌoÞv óäƒržG`֯ݧm^…Q2ûiþ¹Q]_µöžiî¿Ë\ï}|ßœxz‚úÁ©mx4\ù˜¯Ž÷z_•íïçXŒ¨þ®¥Lêl#Mà""¾–/ù/Cl‚šÍšÂX[n=JMNDþP&†5«êÚ¨Œ±Plʼ£¾¨ëªV”̧TäR´ŽÍ¨ÜW?¦n%3Û:à®D“®¡zÊÊxŒøäàZW¿ •Í{Çl£™j[ôçüH»3ß#€dHV`OOÄ6]±oÏ€Qn×Vk™ì˜d§Aƹ…0¥dntV{gZ3ºZ“ezpZ$À›^rZ3ö·ï²ëM‘(„_æ~Oò©[ywLõ~ݲqMÙ…ìwÈa(æ&•~á¯îAë ª*Ùª6» +‚¤¯5ì\LzÂcÂÜNn Yíêô¸‡+ë¤>£û€£g»‰Ì|‹7ݧ•iepþÿÿ] TßëmqVüN#²Ë< +uùx’£»5ˆ®ÿX¦!‡ñŽ˜ªjêlŽÅQˆ8 ÔE¨H‚Á«ÑB Ä­ +/C±C}㨢³ÿ8‹î¦ÛûÓ­­s©*42ÒA^eᆇ ÈRášèŸÕq”ÿ¹¿ÊàR‡á–úŒÊþ, > +endstream +endobj +4077 0 obj << +/Type /Page +/Contents 4078 0 R +/Resources 4076 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 4034 0 R +>> endobj +4079 0 obj << +/D [4077 0 R /XYZ -11.232 900.716 null] +>> endobj +662 0 obj << +/D [4077 0 R /XYZ 56.693 759.068 null] +>> endobj +4080 0 obj << +/D [4077 0 R /XYZ 56.693 731.272 null] +>> endobj +666 0 obj << +/D [4077 0 R /XYZ 56.693 493.155 null] +>> endobj +4081 0 obj << +/D [4077 0 R /XYZ 56.693 456.158 null] +>> endobj +670 0 obj << +/D [4077 0 R /XYZ 56.693 214.055 null] +>> endobj +4082 0 obj << +/D [4077 0 R /XYZ 56.693 177.058 null] +>> endobj +4076 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F52 695 0 R /F93 909 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +4085 0 obj << +/Length 2617 +/Filter /FlateDecode +>> +stream +xÚµZm“Û¶þ~¿B“v椎… ’í§:®Swâ´ÍÝL3cgÆ IìQ¤’w¾þú.Þø"Aw»ý$»‹}yv!¼Ø-ðâû«×·Wß¾ex‘¡ŒS¾¸Ý.8E0ÏjªöÓÏ+–^ù›ÅË~×¢9šp‚pfé~¤ôŒKf˜\Q¶|X¼lÔþ‘Šù¾¯ïÊz‡,Ó§®³%$BŽé²µ=”UeŸ6j%K)îì«ðãRsû¹l; í6êÛ®9”ÿ]ÙÔŽN%¥Òܘwv%:·Z‹¾ð±æÕŽY«&-ß~ß]£Ên@ÝG1F‰âÝÖ~ñØô×+£ô9{kcÂ똂=‚¡Î,ÙnÇF¥½²¯Õà†ý©ƒÔNñæåSÞÔ¬»kûzJd'§0ÃزõÓmkNIÏ5V.°Iã:±–‹ò¥4ö’U“˶]æÖ`KØ* 0qóA!¢v{lU)ëâÔ¾ÖQ +vË2ÐD>Áž¶³›þxl”S‚–¶¬{/ðQYï%–¯ûƒTÆ*üt@V’%ˆ¤ƒ)6ªJX@B!§~-D­ƒèºáð†(ööïgÂR–¢”%/öÏEáe¸Ý‹ÒÛB.*gåç®jÈò§ÉÞ®Rð0íRÞMl;Qû^4y¯Ïw¢·vg½ÑX–Êún>rûæû“3 öÄ(•Ü‚¢k0¬ Â<§£ªj`Ë®ì*i-Û0$6•q0¶µ¿ÎOÜèGÌð7F+zé|åwnå7°ˆ8‚ýÝø¥G­#Q¡Õ:¢|<56uN¶´êÖ‘åÑÅÉb çB#d”RÄ œ;#ÛÉZ±D]“‡,2FœÖk8aSgÔ`ƒO.‡£yð±ã™nðr8|™›¸zjÐ)¸zú²£z/ +­±XÓVй·Á"ô–Qæü&:wð¸1ÙÚkT°r² —&3ŒKÿR*M"ÄSâõd¾G[½=²Ÿ¡¼©`û@P£Š£AïBÔc”]¦ìâ~”eˆ˜©× +eŠhòô¦ EYü„@ݾÌïjˆÛ!¡Fg[øüËá<Óìä¦Û?©8’¢ˆñÑßæNxÒ$Î…cí¥Jo~FO’ q^I—Ÿ u6p°õN^‡Ò <šÊ,ëB~:xÁeɼZ+ &9ì;ùߦ®íÓ^T+²Ü®U¹Ûwf=7S‡2»¢…ù=„E²ìõÒÂŽú˜eß„ý1"¼²Ïrvöåx/ôà½A¦õõŠ¤K7¯뮇¤ld qtÃz—¾öÍù¬T4#²O²ûŠ€æãëùqÄ»‡(£ä}!Û\•&ON$GOÄ(›¤ôºwâw,¥$£&˜IÀÔÒß(BÉ&~g-äVôU‡¶U#:”W"ì8†$róÆÂb2 nx‹€l3ÎŽ£˜ Q +û¾HÌ·ålÿS|.u~bBÓxpèvŒi)DËÑÅ.‚<‚'ü7ƒ<“y5矻¹áàéÓ¡lÛANŽø—ƒûR)<OÄN~>ü‡Åù!³&Ód#Ôî9%åRl ÁƒÎD€6c/†wªéê:°fÙ“®ÂÁzÚDŠ—ËOòÐ裸÷–ñhym1œ<® \×î°®íìV5‡s‘8B”óY¹P!ƒTÔTG©ºR= +ï1;ƒ «ÒELiwl5Z×µw§.¼éac7fẛ ín™E²îykã,å‘8ÇÙc?øÿ>ßÛ'#SkãøFN€9õ& ieóo°—u~ .ù=Xun«Kó~¯‰ªwÓHMÀÚe-}ÎrYòò™­Upd_½Á}ÙôíµeÞçÀ¾uéŸê'Ž9Ô€?¡B»ûŠ¬ò/%ŽÎÛ{UiÛÖ¶ì|\€_ø@ë„“ +j5d8‘¡÷Ó{éÝí¨ÍL•º|ø¢"ë$ vÇfîÐys8Š¼óå`ëžZ4­Ÿ›óøÜM_¤ÎüÓî×+}Šˆvwê|ïCd­1r˜±$!ÉeÆžçÍagGxôOCÊö¨SŽi+ÚÀÙæ5×ĨŽÍÛ ì¦ã/fWã¸læ(ÌF•ÅNî¥(PY_¨@3Àû#„8©òƒz°±Ïç‘dq¦1dÓ—IóîDçfC¨Øê]·º‚5Žn±¥=¤ØAl(ÿzûþ;’WRÔýѾlíoYçJ +—}câ|?6ý¥t E–&‚9úàˆÊ--;GËMéø¢O'§¬óÏñ¨£“.õ³ûbÞ¿ù€^k¡¾a‚/´¶¾8œW+PfCB„ðÅ „˜@­ÂÛáÆFtl“È¥y¸”NgO#–ÁŠ,€¨.÷²—¦7ͤjgïU™»"Hë£éêñÂ#,Ô¬i<Ô›rS•Í²Âþ1Üùal,çƶ[ Ÿ 8$!VÕHT!šXptR"žW$MC eºÇ’ü_*’ò QíCYtû`EEIž>cÂS:ce¦«ð²¨©›…M'*½-©ÐýÇù $Peð@oû:oëæØ–!øÇD’t„Ò…ü“¾rQdŠúèˆèZû&ìµDaQc%ÔµÖý†Io×DûhÛoúcг¾hºò¾l5<èÌ pð~&¡ïºÄ @ðy¤á°¨ÙCÝ8Û7Uì¹D(áðätÇç{xizó¤ÃÙÒݧ¼óè­¬ï^ù2n–†Üh¿åÛÔ¢r Ÿž'tQÈ (A©i²¾¨ÜÞŸq>"uÊ60„Ëi¦wn'Bé;#c$1ÔŽµ%‘辇&^ÛOmÞ‚Óºkía‡6Ö´¸«æõ„+Oõ˜ùÔ>¶Py"&Nš´+HçýÀµ[ÜÖò•Ȫö»›bµ*D; ©“,©˜ åð'È–JßoÍY»€š0ç¡"qš ùË+w{/,Ùÿp¦)ÝííÙTPå¤Qá»YU㇦¤ñ¦ð ïNÞ»+ oùJ†êr +õü_+¹$°2——îņ =^ yøçÚ¾|±Ø©òñòu¢Sáñóhû]°àÎ6!RlD+QQªp¢‹8 ·qCˆ1 àüà¿?ju; +endstream +endobj +4084 0 obj << +/Type /Page +/Contents 4085 0 R +/Resources 4083 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 4034 0 R +>> endobj +4086 0 obj << +/D [4084 0 R /XYZ -16.307 900.716 null] +>> endobj +674 0 obj << +/D [4084 0 R /XYZ 56.693 759.068 null] +>> endobj +4087 0 obj << +/D [4084 0 R /XYZ 56.693 731.272 null] +>> endobj +4083 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F52 695 0 R /F108 3706 0 R /F93 909 0 R /F102 977 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +4090 0 obj << +/Length 1429 +/Filter /FlateDecode +>> +stream +xÚW[“Û4~ϯðÎL­XòžZØB™¥-M:ÓvÇV³Ž,¹Ùô×s¤#9É®Ë/±t$ëw. ½­z?Î^¬f‹—Iè¤HYê­6^ÊHšy9H”y«Úûà¿ã-/%Ÿ, ý×Bq‰Ëèq¡vöðQ½â7ï—·óO«ŸAL@))’¹-Õ©årǹ’ú¤S/éi¤¥Ç >‹#/HH‘Yù”¥À1Ëý~ô^ÎnV³¿fø‡õ’”¤Eäe%iȼj?ûð)ôj8 H\äÞÑÜÜ{ ‹RX·Þröë,´®¿êÇ;. STê#c‰ÑÂ=ó>Iú¿iGE`þ÷Ë%,âÂW ’+$|nøœ%þñ z…GÕ®ìËJñ¾‘ª©$^k6è +æÅZšG„²D5*)IÍ+Ñ—ªuè¥îYNrw¹‘(®]ð…÷âl³ØœÊu£õúlÅwRñ²Æ±ÁïÏLäõ~_Þ5݉۾<ìš +Jü¬[QÝ$"®ÀÈÚóN}‡ˆnsúLÃm‡ž£Qàÿ³ò”$aâÌRjù„é,%yQ¸[òVk¾ÑÂÊ¡UH(ÝBñ9Mü{õå;Ü:è7}3¡ÉÃ1B›ælÄ•z#€fw\ƒ)`E +n‚D ð‚=ºçuÍkÔHÊŠåÀd­S0*"RÄ™ÞÑïuHë[d$Š¿ª/…ÄcEbõMþYßw˜Úÿ¢Ç˜;õy¥LZŽP„@ðÖ…ehKÅG³ÌwÛœ/"åȆØ|cCÔÉ£óňif1­¿kn lIÀÌÑO–ØñƆÿÎÊßwÜÂäЋŠK9ÊQåjà3Ü ®´ŽÐ„c©«¤5@©¾YÏÜtÆ—ÀŒ^h¤.†Rµ%”†i½Ÿ@ÓËæÞ¸Óú EoGà;Ä_´Œ9uÈØ©}Ëîõ/¹—í {i6bOíJ›iδª.üåì|ÿÓê—[{a7tþbP‡Á²<_Ÿ ½awí$Еy”‘‚ÒD+Ð8#4ɽ ‚ì¡*¥GCðÜ›¶6Ú@“ê±iÊ û! xe y­æ9h¯Òxl z—X³Ü¨íÀ@ÇÚ añ¬Ñ•æPS”P£Xv™:|»XTŸ%‘bè+Œ·œt\-@££¦N‹ZTkèî ˆêâÝÍíÍóåM`qwü®Šûë7«›%¹ßOa ÎIL/ŠIA$_8xkø!ú17JÀ)ŽxW}9ªt£Ê›—x€žjZ ¯^=k“Šm”MâäùZ„Nj¡‚/óqÌÿ >ãÌ…ÿ¶Bé›1HüŽ€=žè~„ÎnÐgr'†¶Æ“5GZ%:Ù¨  +Øö‘_¶VHŠ4Š]ü¸Öüþó‹îæåTÀ“šâø ìjc¬åÂ#êJÀÉêµm+L>p§ÝÉjl*è„™P¬qqhiì5øŒB>¢üŸ—™1¨ÃCÙ¶ºè³Ô?6jgš<Ë|… +7/š¸ë9Çå‘ó;©!Fþ[‡? ïx{°—ícÞÉ¡çŽ]h[°ÞoÔÉÊØàw´Ì;{´Ìì. »µåP_7ƒµdq˜+M1ÕJ”Õnj0?KÄŸáò(­Lìª'رH¯ËÊNþ¥…·¹¬sù4¶AˆÚÞ&ßI çA¯«É¨SFŠ(B^é°† 'Wøv Á‹=€ÍÌ=š€B¯ _½À¹%~Î@ÍÙ@dg 4º«g u=˜©÷òdñŽÓÔ…mEOÒÚN'Úe”^#¦+Gg£0ŸP ¢|Ö +®NÄiÛórœîpðéußÐí§þÅPÑÒâÿü9úcjªM +endstream +endobj +4089 0 obj << +/Type /Page +/Contents 4090 0 R +/Resources 4088 0 R +/MediaBox [0 0 595.276 841.89] +/Parent 4093 0 R +>> endobj +4091 0 obj << +/D [4089 0 R /XYZ -11.232 900.716 null] +>> endobj +678 0 obj << +/D [4089 0 R /XYZ 56.693 640.283 null] +>> endobj +4092 0 obj << +/D [4089 0 R /XYZ 56.693 603.286 null] +>> endobj +682 0 obj << +/D [4089 0 R /XYZ 56.693 560.436 null] +>> endobj +902 0 obj << +/D [4089 0 R /XYZ 56.693 523.44 null] +>> endobj +4088 0 obj << +/Font << /F50 691 0 R /F51 692 0 R /F102 977 0 R /F93 909 0 R /F52 695 0 R /F108 3706 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +4094 0 obj +[700] +endobj +4096 0 obj +[600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600] +endobj +4097 0 obj +[556 222 222 500 222 833 556 556 556 556 333 500 278 556 500 722] +endobj +4098 0 obj +[500 500 167 333 556 278 333 333 0 333 675 0 556 389 333 278 0 0 0 0 0 0 0 0 0 0 0 0 333 214 250 333 420 500 500 833 778 333 333 333 500 675 250 333 250 278 500 500 500 500 500 500 500 500 500 500 333 333 675 675 675 500 920 611 611 667 722 611 611 722 722 333 444 667 556 833 667 722 611 722 611 500 556 722 611 833 611 556 556 389 278 389 422 500 333 500 500 444 500 444 278 500 500 278 278 444 278 722 500 500 500 500 389 389 278 500 444 667 444 444 389] +endobj +4099 0 obj +[600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600] +endobj +4100 0 obj +[600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600] +endobj +4101 0 obj +[277.8 500 500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 777.8 500 777.8] +endobj +4102 0 obj +[277.8 777.8 500 777.8 500 777.8 777.8 777.8 777.8 777.8 777.8 777.8 1000 500 500 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 1000 1000 777.8 777.8 1000] +endobj +4103 0 obj +[600 600 0 0 0 0 0 0 0 0 0 0 0 0 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 0 0 0 600 600 600 600 600 600 600 600 600 600 600 0 0 0 0 0 0 600 600 600 600 600 600 600 600 600 600 0 0 600 0 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600] +endobj +4104 0 obj +[556 556 167 333 667 278 333 333 0 333 570 0 667 444 333 278 0 0 0 0 0 0 0 0 0 0 0 0 333 278 250 333 555 500 500 1000 833 333 333 333 500 570 250 333 250 278 500 500 500 500 500 500 500 500 500 500 333 333 570 570 570 500 930 722 667 722 722 667 611 778 778 389 500 778 667 944 722 778 611 778 722 556 667 722 722 1000 722 722 667 333 278 333 581 500 333 500 556 444 556 444 333 500 556 278 333 556 278 833 556 500 556 556 444 389 333 556 500 722 500 500 444 394 220 394 520 0 0 0 333 500 500 1000 500 500 333 1000 556 333 1000 0 0 0 0 0 0 500 500 350 500] +endobj +4105 0 obj +[611 611 167 333 611 278 333 333 0 333 584 0 611 500 333 278 0 0 0 0 0 0 0 0 0 0 0 0 333 238 278 333 474 556 556 889 722 278 333 333 389 584 278 333 278 278 556 556 556 556 556 556 556 556 556 556 333 333 584 584 584 611 975 722 722 722 722 667 611 778 722 278 556 722 611 833 722 778 667 778 722 667 611 722 667 944 667 667 611 333 278 333 584 556 278 556 611 556 611 556 333 611 611 278 278 556 278 889 611 611 611 611 389 556 333 611 556 778 556 556 500] +endobj +4106 0 obj +[333 333 389 584 278 333 278 278 556 556 556 556 556 556 556 556 556 556 278 278 584 584 584 556 1015 667 667 722 722 667 611 778 722 278 500 667 556 833 722 778 667 778 722 667 611 722 667 944 667 667 611 278 278 278 469 556 222 556 556 500 556 556 278 556 556 222 222 500 222 833 556 556 556 556 333 500 278 556 500 722 500 500] +endobj +4107 0 obj +[556 556 167 333 611 278 333 333 0 333 564 0 611 444 333 278 0 0 0 0 0 0 0 0 0 0 0 0 333 180 250 333 408 500 500 833 778 333 333 333 500 564 250 333 250 278 500 500 500 500 500 500 500 500 500 500 278 278 564 564 564 444 921 722 667 667 722 611 556 722 722 333 389 722 611 889 722 722 556 722 667 556 611 722 722 944 722 722 611 333 278 333 469 500 333 444 500 444 500 444 333 500 500 278 278 500 278 778 500 500 500 500 333 389 278 500 500 722 500 500 444 480 200 480 541 0 0 0 333 500 444 1000 500 500 333 1000 556 333 889 0 0 0 0 0 0 444 444 350 500 1000 333 980 389 333 722 0 0 722 0 333 500 500 500 500 200 500 333 760 276 500 564 333 760 333 400 564 300 300 333 500 453 250 333 300 310 500 750 750 750 444 722 722 722 722 722 722 889 667 611 611 611 611 333 333 333 333 722 722 722 722 722 722 722 564 722 722 722 722 722 722 556 500 444 444 444 444 444 444 667 444 444 444 444 444] +endobj +4108 0 obj << +/Length1 1465 +/Length2 6153 +/Length3 0 +/Length 7141 +/Filter /FlateDecode +>> +stream +xÚwTÓ}Û?R"!")C›ÞFIw§4ˆÄFlcÒÒ]Ò"Ý J +¢4HH¨(ïPïçyîçÿ?ç}ÏÎÙ~W_Ÿïõ¹¾ç7¶ûüò¶H˜ +å €$ŠÚÚê`É88 áXgØßz2cG"$þÃC ƒ`q:%ç¨D4Üœ`!XT|O‚@â;"Ñ%ˆ;Ü -Ð@"`2E$Ê ·wÀâêüýà‚rÀââ÷ø~…ä]`h8‚hC°0\E(Ä`€„ÂaX¯¤à’rÀbQ@ ‡‡‡Ä#€DÛËpó<àX€> C»Ãl—:ØhdC8æ·Ái‡õ€ aœÂ…!0¸7„- ÀU¨ktQ0Äog­ß|€?‡ €ÿ•îOôe"8âW0 +Eº  /8Â`w†tU´°žX>a{éqÆ qñwÜbƒsøÕ: "¯€àþÁ‡¢á(,Fw¾Ä¼Lƒ;fe„­"ÒņÀbÈ.ûS‚£aPܹ{ÿ × ô@øü-ÙÁ¶v—0lÝP@#ÜÕ ¦®ôǧ"û·Î†ˆ€Äî ‰‰`®˜'ÔxYÀÐ ûe_ªqü|PHÀæ·ƒá~È|0w‹vƒùùü§áŸ °…C±˜=Aöïì85Ìî·Œ›?î 0áè€.?ÿz²À1̉pöú·û¯•u•5uõyÿ@þ—QAé ðá𠊀`°àîÁïŸyþu£ÿ¥½ÿéî?2ª#ì€Ë—(pÇ÷7÷?Ôàú³7Ü€–ÐAâ pý›ÿA" (î üÞ‚_!ÿ?ò_fù_ùÿß©¸9;ÿ²sývø츳סݰ¸åÐFâVñß®&°ß­ ³…»¹ü·U Á-‰<ÂGt~°°Hø·ŽQ{ÂlïñP‡ßdú{¸Îpì>¿¼xpQ ÐÙp»uÂ].ÜÌ~› Ü"b÷R†áVíŸ}(# HÛË@ÐhˆŽ8IàÆ-¯-Ìóç@‹ à0ûìh²ËA ‹€¸(¤‡éô{„8û/“¨ hyùáNè_:è|Ùߥâ@ÝÐh\§¿„ëòoù×Mƒy dS“H¨dˆcmHÛQµ<“ÿê°ÑvÚ‘© ÿp¡% ¶GyÌj)Á ;kZ³Leª¬béØ¡£àz”3ÿa×g¥ŽµÞKø€ŸUeÝžÕ&nòâàÊD¢Ï!óIÊf¼§&) +·%JÐ=x÷Y¢©:Iemí{ 8(}ÿªíú˜èÁI[ªrO#´M§½³º4K‹ŽYÜøË'}l‹M¿áªÈý_¹Ÿ\ž/Ç<ŒLÕɸ£)Õ~L–àQEµØ7Ð?KÝÍò*:PÃ=hõ;{–ZY²ŸYIøj•ñlþõŸ¹%î[4>6ª7ä¶l{ž/p§Õêì8¬ìlY°q%uÞs°N²‹ñ>f¡FÍÒ*¤¡ó +Ö¢lgrÂY šúd1Æ]épµ×óŸXœ4ÂC5½¦'ºFºi¦ª›ô†pñi'HŸ—¯|ñkàxën†ßúWu +õŠ2/]÷¦Ÿ]p~/»söìW脉 ¹XšC›¡Lñ¬xHk€)µ…;<­Òè:°ásßÕ"³oáóüÝövÎiתhD,MŒ÷bݬoFáÓ“m0ðM=4½&FÑÛÃeéÀ·ÊsÉB«ÏYäWáÝæ"òuñõ㤀5çÙfGTH,½@k䊙åîˆýÛåøq¶x¥:yÏOöéÞö"Ûð„ÈÜKcN¶¼Ï¶ð3:d¨zo¢²û7%Ç:ìEûò{Èñe¦ø.~È´¦êh»Èƒ†Îô…'[xhû}ÚyóéZWhÄ©—Bán«#ÚI+ºr”~ü7f¸SÑêõo$<‰i“_ÜkÉæ¯ašøz­­T:D@üÙ笭=!{&ÆÝ,éë¬æíV¬6H«›ß˜ Nzƒ¯6î˜ÜaýÊ€¿Ò˜ùz²³| ‚ÑçI*äضÜiñˆÑyQ1®&³¯ä·ÿd&;¾Ç,ùzÛ×ú°ãƒÊ`ûÒëÄ`›ö–,2ˆ¯u»Cl‰Í#îWfÁÛPsNcÒ÷ZS¼{^Göd7Ò šBó9‰ùÑ ÎùÇ6í&-ÓI+²&gaoãÝu„þîb‹U,L®ªŽßÛ7%>Ù.Ð$>Äý¸/=S!ÌàñFhäɧ<>Ë›„ŒïÞƒ-$òÁPa+âåÍD4³§½Ã'àmÞÑiêñ+”_LjPÈ,¥Ó¬ç‘íž2vÔêNÌY- •^9fè÷GùyOÉWVè6iTsÎb+Þ¦³ ¨Ú½ÜÌl56ãÃÙ@ÛF¶ÆI[áüÃ"Ê) ¾åwÚ»PÍ'<³“’¼Þ#7¯šÆTÑxS8nê/xôÈ@\{mDWÁ±ê'-ÚTœ¡²°wïã¥#6íZ¥¾;jþ|<ÎîÔì|0ÏaµçÂnA•.¾Ìßœ·zË ¢5øˆqö8Ípä>Øç]à FZD^äã÷9*Ó>6†/‡ÚìˆÃ>}Í«ð‰ÔÛâŒèì$0Í_(^<9üÖ° #xcz¥Þ0ïc?ò›¾GÆø’YøíLXË6p‡4²u…ù=×é×æë~!yáصiÓüàÖ;÷v\±!‹v'~4k£IÜÕab„úã¦É^·h¤²0õ‚ŽÉº–mKÁ­Tמe·†.úÈLÄóÊ«ž)º VAÃå~OQ3·l?û8Ð ËDÑD]µôP*þ.ÓÛ³½ÞM° ÛšZ.Êu4È’ ®Á…$™kzZäY`§§·ûöö¯ŒÞ©Ð„n¬Y‘‘íÉü|óÓ9*]ÈÃ|£ùÍà‰WaÀÔ]Ô böt£afHq@m@¶ˆžà! úì&¦~)3ÕQðÑÔX¡š@”Ë +­}ç(j©™ÅV÷zºÓ¼¼á°¢ÂÏžy'Ó†–«ÁÛIIOß+Y×w}ñ°¹;Û‰|E‡á@¸bœXø8}o¡nöÂQž'ÓÚ~,\¯¬¦–”«ø³ä``µ…kˆ"Êfý­œäQ—"ž8lƒSÅœ+š,ÿgèqÜq±ì0},/êkZ[«Õ^eèUê1;]“ùwøË¥¹¥nÇ ¹ÃøX'`B%g•Èþµ7c¥Ç ï?’Öð/h™?(³ù"lšc>rr¤“Qžpª ¨e3íéÔŠko1TcîGŒ{evÃŒz{/~bBå g³¢¡B¬Ã¾¬€*‹ô•5&ï–À9JÎdÆ$Õ÷F`¹†0 8¾dߨú•Íï$öâö£@M|çv¢ž®‹y,¤^dµ~5AjjÀ:Ž“›d§ÄªŸf5^HÏwŽ•ßR= j ^¦<ôjàFÜ’mÍ1^Òhd¸}LÌËÚÏä Í3§óž²K«  Iý`§Î3gnÇ ¯MC'4ÎÍÑöãY%U¢kYe£.QÇCþl1 ·s¶4ºÈÔ¸™Ñzq ,z" ém´ü€2Ã"N4_è¥õ<òuÏïщüŒ¸Ë$‘ü/ßÈŠNë¾l|CßÀ-ÅÊ5íƒ÷ðí÷Ó2Éש{G#V¯­þâùàxפ+[iSl=š}gÜw'‡­I%ja`(ªùœqcZ+QÒê™­^Š†:{ckJ—Y?×Gz:}×õ‡æô þv“Tâ|)ÏEë>ݲŸŒû{È_l=c6à#’?‘ &!ß”ŸèYðræ +ZÖºÒ2‚}‘ÇJ°mGóíË:i'Ãs¹1ºÓ8CZñ¸åü"]{þé”ÉW1”Õj¨5úë5âÛwHzž½¦ŽßQv4&òÉG‚ k’µÎÆD¼L4}½Æv—S¿ûN7b¯:*Øn„KWzO MwNjø·­™×¶7œ¿²>sÏ;G!ÐÁF×´MÊ2>ß0ãÇ®§§mTWÔ +zg¿ÿR„N&e Š78wÏY¿°ÉX‹ÂËmÅSߢe±âÎ~¾;a£R¾n€¥(2‚Š|y«¸$„ì¡êóÔRzÛ!ŸÕøè¬G§˜å> @+úk–]¯çš WJÐ"¯vz2k>[62ú,CÑ5ÕüéD=ORMp{WÙü?AùYÓ—ýëëÁ¥Þ/SVŸ +‰(7ÇØ‹ÊȵðQqŸ%šèö“ó8T™rƆÁn¢ Œu YÂ^²oFk"W pîB ×Æw…Ú3~j§¶-9½)NEK{§/4oWºDÏÉÍ[Êÿµö¡óAëx' »>ŒÔeBÉœ "¶3å?ø½ò{$9±él¢ü™˜‹¼÷Ôþç,BÛvÉ;+éþôÄ£ ¥í¨…¶ƒÔ›Í ŠªÅ×uÞåV?î^ð•h^ý&JÕ)¿p8Ñgm½Òî($Ç¿…÷ îIÀŹQ1ω(Óû +kK‰ÓñR›«÷cØQŽ½]ØP^xé<¼²P£l"§éçà¥QQÏàw̺Yk¶c¨_>ÙÃ×X5ÅÍ«ÛÇ·ÓdJK«€¤>pX÷òµt‚r©§ULí›#g¾¯|R¡ÕáÎG Ç\%tÓIÒx¿½enfžzÐ|Žbpþ ‚”PÖ³+—%¨¨Åºàq/Üš/"*Ç.è¯Â3ÙAžNlgŠé⟭†ù_ø9ùkÊ}þZþšbPUºÛò¹ÃÇMn§ªÌ8©˜Íxü‘ÆòÖ‘§ê…@| å½îaXƃèoŽUË*´†³mï(øØ!ÛÁŒú3Õ'»¤ú‚Â] N`d ïÚ#’𡵀WÊ›á6ÛÑ|Š•®»]œag¦7¶Ô 2{'ÒÑ/Î4¾zsñéT†´vOXjEÛÞBÉ~™¨¬Ê²{¯8|“¸æÙd‹ Ñ*lb׉8?x¸_>•ŠkÊB{…á5%)íÁlœe`Åè{Ýä繑w^ÒÌ{¥–Þ"Ê1 ÞìçAƒÐ¯ó A'ƒ(Ô“—òßñJÐòЗÖDoÏ¢ÛZ†T•&8×eo‡ +n,V2Y'g/ˉG³¥!Êi%B S-ô±ä_(½;ªþbäyuh$Ư<ʸšˆ|ahói®Cd¥ª©ãçKÁ¤v™ç_4=]…ºŠßXaKX*27âÞùŽš|àˆ I¯)ÇËUµ& l Z.¢ëŠ$r¹XÔdÊaëÓ÷‡æê&$«?ö}xâçb’µÁÿ£A{I~Øc±ñ‹Ë‰™:ëÂ4ËÑZ%bÚ€ø©9Ë*!”º ʯŸ§:‹žwx¨jmsår[¬0£‰k~§ßÒHèF•kFýÄþöò®"ÑçîÑÍûŽçÔx±²i¹'³ƒò,ãMk"¥‰v‹>&I5ÁÊЗµ²ÎõµPZš•s¼ûE‡{l0’‚™M~,øñG #°/ÞF*,9qöÌé¸ê³@¼1š„Ìλòäm/Áò—"1UêHÔpÛ›­Þ&íãÉ'ˆ³×ìPƒ€-&¶²„œVPrÔ§i¹P¶”Fÿ%Òñ»b’×=Ý©¿ØŲäZnVKÛ+~ϯœ“=^ßúà}U2ÖÊ"± íûs¨–X Äþ$ïÚ]U|vOÕþqKÚñ& Êciqöý«?ú¶èÙ3yšDã÷OúДûlÁ¤¬°rÉõÁëc&=¥¶þ‡ªç å´¥aR¼Ây9ðJcQ¬'¼:ʸÌõZüPsÕó¤ +ªIÔgûB+^ “³f1‚®.ßÎes>i6žHúìï¶Q…uæ¾~R¢“¿=AµHÜî´µØm»èùJÝAYº/¸$¢È"Á 0Lèô£hý¦tú5SpŽ¡ò.EQ8aúùf9iu*Ùû¨Û™W‹‘~ Ó"Aî¤a ’éùÛÀŽ°ß6ÓûyÆ/{¸6¼çG7]|Ü_>îÒÁòäýÈ€Rá)¥× 1&[Ib&æù3³7…Y8JJ‰TJ·Ó®Í}­e¼B ¯›ËU†ycWÃÁ5{ŠVšQ»#ÈI”ÆŠ"×Üö¯Ž´YÞb“vSÞÕÛHJ%áÚR’’¬s¬îh:Y˜R_=Äвä7.œÊ×Û‡©&¾Õ1è‹‚ö +Nülý€¦›[¾÷^ñ±¥¢BÞRôz5­ô:nÔ:e‡6ËÙµ‚KÐb®#]Æ”­¹žªcù"[2†§þ ·ŒMÛ¹N{“Úú¾¿Á«´æÜ…¬òñš&Sf&gïndú!» )»ù‡ ç$J¨oë“™ÑÓr×`¢|ë<4àÙ¡‚÷¶¤4E&¡êÌ£GÞbT÷ Ð(ΰZöH§ý•·rË$ ÅiÑ퀈×)·hïÔÂ|OÓölª>ÝN'¿†Õ +­¥DøŽŒo¶ëÞæ^p}·J¥’Œ%MÑÍÅ/ö¬-jí!Šž¦øXlµÖ#}‘HuÆ›Z5¦+¾&ï7Dÿô!ù’—%%Ÿ´§UÌ«çFD/žt.<Õ% wT˜^“ • ù¼ªDô"/žÙüñž—RÒTÇU“b«» 6Ñ‹_njuëEÊŠ.8â éżäÐÈ6DÝê——ã\ó’{ù•îÓx˜8¿3 —cì…Í*´/6†‰:–¢é97mW׿ÅH·zà•÷Ç’Ÿ²ò°>QaÞIå/íš©;¦~ä î/š}^g[N@¥ü(ñt€³‹6è#qoIáÑ#­YPýÿûåikÅkxA÷\a†…t%R6Eä(¶¶i~¬kh¢kÆ<ö]X@דÝ3Áó3õÇG¦Í yåƒöbšª´Vß@ul“È=ïb“àïCƒp‰>b“6ÞÂTͺ¶ŽŸ“†„ŸŸa\à ËÛ‚DÑÓ›;Z‰œ&fQÝméñ€eû²Â-[™˜Èp|Í«™r§Bï~3Б{Z@÷—=áFñ‰‘ì<÷Ê„¾ Çèé42¦) m]&J”b¹»ÏŸ;T7ìù³>S‘·À;ƒK¾Né¥\0v ý¼ÆóvUòæÅÄÛ}û¯r˜AÚûÈ»¨Qà ŽîÕ+üúy\2E<Ã'¤c¥_úE"ÚÖ·[}ÕDÜ^YëÝ/8œ â¶þñ,UO¯¯qƒëçÕCáDúä:Ë’àù Zí…*d ‰ˆ*µì[}íRŠÅ®€ó÷CöË7QvÓ ø‚s¼v‘^0¥myaKüWÍî-s-2¯fWÒz…ÎFö.¹¿"D7ØL¶ɆãN”o6öª·l‹ñª¾b=öÊœ +ÿ–xE-oY»0†:äXÐ;sÎ,6¶¨«¸ŠýEqT@Îdyï©Õ`þ¨ëŠåEÛ2Ti–óñ]Dâ…©[à G*Wÿ¡iSR¾L&Ž(K:`hâ–:áõ×h†²¥x¦Ï»5ã¸-ÇAÀÿ0)å! +endstream +endobj +4109 0 obj << +/Type /FontDescriptor +/FontName /EOEKOR+CMMI10 +/Flags 4 +/FontBBox [-32 -250 1048 750] +/Ascent 694 +/CapHeight 683 +/Descent -194 +/ItalicAngle -14 +/StemV 72 +/XHeight 431 +/CharSet (/arrowhookright/greater/less) +/FontFile 4108 0 R +>> endobj +4110 0 obj << +/Length1 1432 +/Length2 6046 +/Length3 0 +/Length 7021 +/Filter /FlateDecode +>> +stream +xÚxTTíÚ6Ò ]Ò HwHw×Ð ’3 3À ÝÒ%%Jƒ€„4JJ— ˆ‚”tˆ ßèë{ÎyÏÿ¯õ}k¯5{?w>×}_÷³÷V ±€áQGÀQ"‚ÂÒ=cKa€°°˜ °°(!‡ ƒü-'ä0ƒx"¡¸ôX¨xBìQh™ª= +m¨‡€´½`1€ˆ„´ˆ¤´°0@TXXêoC„§4@ÕÞ +è ´p’Cáîç urF¡óüýàñD¤¤$ù»”Ü žP= gr†¸¡3‚ìac +Aùý#·¬3 +å.-$äãã#hï†Dx:Éóð| (g€ ñô†€¿ ôíÝ   rLœ¡È¿ÆG”½'€À  ‰vñ‚ƒ!žtv€±–.ÀÀÿËX÷/~ÀŸâDEþî÷¯@Pøog{áæn÷ƒÂŽP` ®+ˆòEñìáà_†ö0$íoïm…Ù;  ~oÝ ®d°G#üƒ ò„º£‚H(ìF¡_aÐeVƒƒUnn8 +IøkªPO]w?¡?Íu…#|௡p°ã/`/w!S8Ôà ¢¥úÇ-"ü·Ì ‚ˆ KIHˆ‹ ˆ/ÈYèW?wÈoåo1CP€;Âàˆ† ‚:BÐ7¤½7€òô‚ü§âŸ+B +B NP8á¿££ÅÇ¿Öèþ{B}VÂhú‰„]ÿz²F3 Œ€Ãüþmþ»ÅBf–Ú*æ| ÿK©¬ŒðˆJ¤$„"""IIq@Ð?ãü«£ÿ-ÚCÿìî?"jÁ©¿@ «÷7ï?Ìàþ36<€fÐG ù pÿ›þ…Å…Aè‘ÿóüvùÿqÿW”ÿ•þÿ½#u/ì·žû/ƒÿGoï…ùý±@óÙ …ž =zBàÿmjùk õ `¨—ÛkµPöèQ‚;¡y. rOPøÞ_r(Rê ¡(ó_\ú»è0(D ¡¿Î´—°ðéУrEŸ-HtË~« èÉúg^58þ5‚¢â{OO{?B4Ð+q@€zVÁßß Â(´ 1àˆð$üÕX1Q€Ú áƒ8¢~©~KEBîè!Àè¡G]è_š$yyz¢•¿‚ÞÕßëßâ .Ì!@2‘./#;.ê”|6Æp—WºâR,ûcÅQœïŸ8ëâåjL{(ÛkhGç+¢§æx.Æ}¾É[ÊÒ,Da¨õ¯)  }?yãa#è&$Ç­‘¦2‘ÚYa[q¥›Ï]EIöˆm¾øòüº ¹ù@jà(=#cÍb@%*tíb>²de_A [>$K¢ð´Êö2Ñ2¸Æ|M:WîH ûî·f•”3üéÓÛüþÇbÇÅ:½µ5Ñ”tTþÚ¬#iƒtÔ©ùÚ¯œÊâg*™)lt%nÑœKXv’K?fŠÚSżšœôUÂn6{5 Äçä +z–Žm×óL¾ Ó¶¤Å9ó×=fWæ¨cœ gÖŠÁ +{±i˜¸ ]‹7z3ˆ²òsK]ÌÍ xÁb6_&i/ìsSED­3å`÷??S–˜ÝGÍ?\Éf(é9(ZXú¬.+^#wù¿=ë‡VY°¤ÃO·ZÞv ÷Ä!ؘ¨§ÃR,:swûvR_i‰Ÿ½#7ãU“@Õë¼GtÛò$$Ï„`Û»4d(JÍO²%›‰‘™¿7ÑÝÄÈÖ'°”ŽR +!#¡t=¨`zñ¡Zbô©\x‹\æýPáàÅÉ£[ª†{Édõk· {¾ãؤ8x ‰âÛèv=p¶+ÓçÒFÝK6ï¦\m)[N‡IÎ-*ÿ4 ±¥,~Xè˜ø#éÛæiÓa¡…RCìX\F÷tÈší³Q¦ÎIŒÙ¯'÷z;¹27}5›.Ï°(†5¤Ù"K`UÍÉâm*Ÿ¨ãL­ìu;N[ð={F›O¿‰XËÜ[s·ÙjÒ?tÿQ顬 +  åš’[«Ñ å” +À&Š5 Q%þvŸ‚Ø~²)\t.ˆáìØL¸SÐù@S¼kÅþ¨%ž¼áRÃý謗ñe[=£ö ?è«$\ýþo ØÇÏBoý”ÝõÁ»›Öæ ªáz­¸±–÷–ËN¢[È‹-“gG‹-€jGº×¢k¶¢­·kZ+š™„"w|§é¨†v¸º;¼èÛÄg—æú,LF¹jÇ¥û9­É3˜§?83Ö²a,ê74CtÉ1œE^0«8|-­™â‹«\XJK{¸ñ#½g|Ž´ùz»û, Aç0FïR,ÛAMˆQõëJ·èu²wвHJƒ¡é$V­Û /g^þؤýfDþÓ5c.“Ó=ú5{ÐK‘ûn%Šw´Œræ¶éÓü€Àµoß ƒìÅ6ÔËaX™]'÷}±«ðžO£Ò4Í•Ê{jVeX?˜-Mþ$Vi¦Š0C4<^ôn+ØKSèiÈ`‘Éȯ—ù(Ï9°VVÕõ­ê{sfî)£}o#•Ìùì|CUgB:’E[þ‚Aš‘|ÒNW +šDGئ’Öг²!Çg!—²¬5¤éïÊ :‹ðý‘Â?¶g°âî_¾Ÿßšyˆh·yÏþŠ3aãäØšü>,3yý²•32òPÊêª O.«ÉF_¨=ñ æJõÁÂdà +MX§1[‘LòVæ•— †q¡’øqŽ„²ùb±7|1Çd ¿&'¹~¢ƒ-j꼂ÒZwL $( vj`H±p&‹ïc.”äÖuÈ~Ü>´¸Ö8óy6 ’X¿"ãЙù½rû¨€Ñú~Eÿ9MøúFµÙ‡õñÁˆnûŠ\ëÓ-…Y~"ÌýcT,=Û™L"õÆ Ö»Ç¶ ×h{´A*Å`ƒÜg5t?'x“ÂpÞê)qÞñF¦¤áAÖV÷Àº÷<³”+‘yM“fšŸ» ½êÐû5@º ݾHþ¤ô‘Q¤uõ§< 6Žð@ȧÖ­ú¬1‰Ä‘#àû—W­Ò7ïx†:“ÔîÎo•€¹ª{7ºZ›‰ÞŠb1ô8¾&Å,t3$̼Cä6UûàŠ¾¯X—äþÄëÓ…DÐÈIÓ‚j³:>OW³ä]›ÎÇÓ“æžìox|ïA–~™ýcí%…y·)mõF®íð„)Ìp¯¸Nó'ê'Ï*PÆåCÏIÁ +Ÿê-¨±)¹#,#¢úÎ]õÍ›,_ï«ÏËn)5dm»6,öâ-ís˜°ç ÆTººÞs‹lÇH'݆ºE fÞîUÜ£3Üh£®‰,ò{B˜žüÁ›…â/8åy!s_†Z(éÝˬ4½Ý÷B5gL4»¨ù(¬+MHnôP¥qÛ[ÿ`“MC"ˆ¨tø¯°ÀºI¤HéNÊë„ ¾ÀÍ:îõV³Ù¯ËñåÕ0ÉpGs*ÿ%ÏBÛ}¹l\•÷F¢-ô¥ÜÝ´½™õчtþBšü§u{D¶Æ©Þb¸'@ú}EXmß½9žþñeˉÒàJL5~lÃÛºù¥õŒÖ7(XWý¸æu‘†I˜/r\¯˜) +ÇÛø©H.u,íÂðqýCË|¡)Â#‰_ž eKœì= gfšÿÖXÕk¦í¦ ˆó?Ù¼?ÐØ]"¾qñ3ÉM ëm2süòx…ΣlÔIe˜.õ$õpþu[î-)œö “X•¥¡>Tp[jv4N‚‰wÿ±T€çĬ֣"„K­é¾Î¥¯KQ› ?îØŸƒHÝÜ˯D½Zy0UÝCÃXbaçÍ@8â´ã¸“KvÒ²s"°'"tA’P(–À«&~÷18æësDRV€µJ¥<ûO,u'ÖÉXÞgˆ6Œ—øwú?ÂöÇJÆjÇ÷“ûu| >%ºçóŠØP’„ ÎÅÇ>ïÙ­'Ò5‹ >}{suáFL³'¶æ Úd+µKi¯°}aø +ÊB¿îþú¬?‰y™†)î'h‘ŒÅ8=ö‚çëÆb“¢}ŒÒ3°ˆNa±kUÕh¼Ë§ªb|¸°ÿJL+,q¯’wí+Ì ·9ü#ghµ_¶Î[<§/îCiù ÷u=Äž¹×o•~÷9S„ê]µwáiîîµê¼Uåßê—²½= fÀãpIøíçäÓXŽR¼µ {Òߺ6å;r¥yÇ–t™1Ç©{¥Ò8íÓ\dø˜¨Û…cx&?(¥9õÖéðî„Yèô`.š5sù/<8UbúÀC?8›¸Ý0kÒ‘AÞ›“²¨;¾L¢½{x¼m£ +-¿¶*=’FÊ>ùØ"ÚÃú•jÉ4æ20#ë.îwq³È]Ç)Óø`XÐùÕt ÜMB.ú{¦GÜ Ø‹»…Ì•úZÆœ´¾‘ÎKÈÄçä®Ê_ÇÿF.Ð¥JTœ\e(\2ïÛ,QÚaVmÓãyF²Ám!õr†¡Öáâ,”QþJ[<¦ £„È™ž®›ú²>çæ~| ƒhT¬«_Í +»±=ÚQš+[5¤ÞîVf6; f?’R+n£Iq‘#|d­¨ÚzàƒSkK*.v^¢~à4ÓÝpï‰rÎÖzÞžRyÅJ§Çˉ£R–å×KS÷šðâ™cž§Lˆ¼:Ò¾#¨>áŸ3î/”8]ëÀa|êù¼Ì*õÓo»ÏDMõ?ïœv‡øžk°ß2D–ìLµŽßÍxU~çãD—úXN¨®>75\Ž¶æ#ë[,¼#•‚¸B›>¸}qF÷Û¸åúƒZ:{õ9µÜ|z&oÁúÖ-òuXqFCb~Ã6m¦¢¹uñäþ;×;³©8²~ùú^Äöx;%åý‚¥‡˜(ýÆ’¾X˜èK²W%-ëž;z¤!ÍÆÅ_n,³àMôቸ¸9ɳœå¼6ILƒ©\W E ÒUÚ+ÎWC²ËãýÏŸw1OÑï×QÜì,Tòe€HjB›e‹‚ý¸Üö²9¦ÛaR]˜e†¾­s•êçi4®àdË“`ö—½v±n¤€ŸˆYÈkù+,¨î‡Êé_DÝêt€3%xÜq°ä–g[¸Ï»õ¨kh̵ÜOì±ñz§¹ÖCœ¬ê³Úzaý<”¨“!…zü4@-z¸¤÷‘OØÝJ¹ ;µÙʦ3=*ÿÌß•ÝÕ•ÝúÞn-5öȱ¥è²–¬]Û'5E¦׫3½²µëŒGGóUuL[vA$)„«¸3Ïð¡`†\ÝF'W<©7Ü–Z) 0»ßdìf©7¿(MâkJ7¾xºb©Éä ’Þ´Ú®9Ðâ1hdc9•KGÂOø”]½ü]–¦ê±½‚û1žßÔãV*à‡º\{xÏà€r îÙÂY‘†Î<й!X¿Ñª[kØv'6TÿÈ„ÆiÚ‘`“@v&+#á*ì–Ý=ô[YMdN›«ãzå»].i8Þ‡‡å¡ä«ú¢®ŽÅö'/mI±'!d;ÇÞ+;ݧ!:‹æùz3Kb +ï“+ôŽ­¿K›ÓÉP‘{³¤D‘eãX¬ÊàD*³¤Ä•YP& W´d +YMžÇo¿BÒìa™Z¯¿ˆH“›²ˆÿyû:M¼ñu|¨g¨JÞO®6šw-ÌA«+؆¸ÕÏ äY_ãj¾è/ͼ:¹õðô|¾pˆQ7 s7¢˜Î)‰B‘bžyiøËè8Ýûp2•È,óÊ‹‡m»Aæò£qfVwçÈÑÕ7•à…níˆv¡4u6 SÁ:aùM\ÌS¾:†3‘ÂtlÃ3USr»a_‘ÛKû¾më•÷•¬£>WŸƒ„¢vGBÄÉŠÍVG*øªÉK^U×¼¾b’Œo0E†ç¾˜«ðÛÜîKÇ3)LP¿ÒðtZ5Åí#eOŽyœÀX—ÜÔœùI£r}þ~Áãâ¢Z\=ïen—;¨²ˆµeñ׉bø×ý<ëqë~CÌQsÚ(ƒùTúX7Á„gI5GFV]w&³ú².w¿àÿä +ßìë©¡œ'y-ÄBzõP/ä hŽ[z’\¯p½Fù ç³N¬S vEÿÖóžŠMRJÅ„|“ê À,—ýÇ€N ¡NÐçâ·kÇ^ªÑùéq$A'œ¡×}÷¥¯çÊÚ7轕A|!jÝ| +DC⥱œ0©S‹V ü$Üé”@K}SZ¡•1Ÿ‚klj0 qUq³*ù\e )æj~éZR\щ9bQËñò€©”&Ÿ”ºGÖ´ìå{ýÅûº°Ë"ò=‰YŒ–N»èg…âs½T­ð¥mbTiÓ¼7nDôìCúV!‡µ©Þc=3uêaañ›q>W­ Qs)yǬ ŠW²É‹¾æS1TLsÕM[‘Ketio [Yã—Óƒ”9ÂÂÁ!+êÝxçBÌ$K +êžy„¸¤+õòÏô»!xši1ø«}ÇO‘µHßýÍYuòµõ˜yœ±}ç²Û­$&i£0Üø—¦œÌP$“`kÓr½ª;–+_ÿ裿ñ¤ÁV)Ç~a ¾ \ô鵌SŽgÕY‹›a³Ù˜úîäñSJ¸ÞQm€[ÆMîç°#è½`ž«rVed7l-žÀàû×];Šaü2÷´ì€–år-‰;*Y:×*XB>uOܨðª>¿caøƒyJE÷´ø$µ…Æ7Û‡àsW)S”zËR'q0[äºZºüXt`³Œ6i?‘÷Ž –µ&Vû 9\ëÃpf<›ÆcSz—Äå*ÜH¿ø#”·ï¬´Ø0•ÆëŸ-ÕK0[zå3¾Í7ÑÖó°ZßÏ\>Çk/UȺUu˜ ðèÞÄ8æq;)úX;–šåŒôXí„ï&ˆ¨ßf¶!Uó®&\5Èóž®el½åMDè¹aÒ²t9"¼ð‰ÊáîYÞ-«<¿‰´YvlˆHõ¢ë¬øc°‘Òžw”b@ŠŽŸ¹|÷Qìºüejí¦Ÿâ—þ›VÓ•Küß)ôjÊ ‚²Ždý”$+`¬œ¾ÉmG8Š1ï3ñÀEØ‹^ë;1zÆ0¿°e‡œsy R³Ê/ŠýnL¼ÓÛñÌföE-ÏlŽ@À+ƒäÖ:ƒ¹KQ2£òžFRß·[»ø,±†ýø§>ÊN“©«×Æ×íylï+ayGgþ2­õÙZ~³ÕÞã¼Ù‰s÷,wÕ#z¥ˆ«Øá|ýT,3Ö;‡2>ÿÒÇÁ¶Ï³%än4x±´ðº’V´É‹0[ ’&~Á×·P‡,{pÌEOUßZö-ûó¦C¬áKúÓ£:cE¡Kÿ …ŽÞÏ›ƒl)t5˜CRÇÿ¡>UQ|äæÕÚ9ÚÿÄLtš\Nï‚’‡J L4höù¹ô4½é‚èT‹üHìû·él¤Ý†æmO# ®¿M¥Þã5ðÿÑ&j9qeTYr^-œŸŸ LÞÛ‘Û•¤È°¤Íi<»x{´Ã¯$ÖZVÏÊW¸ÏY!¶¶G +6êón¾4ikLI¥ÜŒ5+È™0OÓfÛr[0W;ÝzêYyì þ¤ï‹ê[çvæW]z’GÕc[Þ³åM8æ÷•‘r%ÛŽo{Á\ – ­zÁØÌY€ñ¶Jé‰V¯+yýÅ)ÜÏÇ7î ¢¿C¼»/±tFàÝŒ«ÎïÉÏìK¢ c +ºß·Ó3Å+hYFíJ³Õ²Ö±[ò.H–A@†‰fœsƒº«¢iLg » Œì‚7íµ&7E§¢ñ= ®·>é+êÅïÞS›ŸHØÉl+í¦€Bm4±qøßtäPLù™æË4okjœN¬<‡}Ûdo·ÚwH{…; ;Evµ¼£ý£HY±¯‘øáÉ;Ö.¶?ßcLè‹¿¶jàµ$åÐ×ɨÄÍç ~I*J Úž¡íÎ#&âÁëÛ“dØ0F¸ÒÂ>­DmV°ÿžuÕÉ‹Æ}ÇDV©Çúþþ±‘z‹ÒWqÁÐ<€+/uƒ&]vc ÿ`B`n¥akÊ\q'óeMÛ×ãG ìôUçQuŸ±ÑŸ$¥ûjjݬÁfš[Þ ¶%–Rn'˜O¼ðÊ3ïÉúÈè&'H> endobj +4112 0 obj << +/Length1 1360 +/Length2 1006 +/Length3 0 +/Length 1841 +/Filter /FlateDecode +>> +stream +xÚSiTWÃmpQPà º«ÁnÖHš¥‘fDP¡¨zM—tWµÕÕ„H"ã‰ÑaDe :jd dY<ä A– '.P˜°›¸ÄDã1š©nÅ™9}Îëzßýî}ï»ï~.ŒMðáT £HÆ“ÏEüATˆ$>$*”ñæ"ˆÇÅ%‘`p^ˆã’i5A‘þóH!4D£ Ë•R$ˆÔ(ßð…þ|^â÷‚HÑþ@Œj H¹ ’"¡šãB© 4‘)güÁì'pÃÜßÏÏÇÔDJHJ)ÊÈ¡’=C ÂÈ”p ”3ŒÊŸÇÓét\T©æRtæ&w #9ˆ‡jHk!ŒÂA4ª„sê¸('ÔÓ±JÆèPP$Õl–†Ä! Ø €IˆQArš5Mð3ý|.¶ÜL¶±Aš’Q £”*”4d& +b¢¸Œžñ(‰‰¨BM±ù¨%hK0Ýa¢8€²"g$ª1šP1j®šPeòŒeØN‡’x¥TB’QsŒ÷4ÄØÖxs¯œER:2g #H\fƒkT¼?‘Ä. ”ˆgh,Ä™Ã2!Ÿï·Ñ À]ê19ÏxL¢AMA¾f•äæ¨(±b`.!ƒì'Gj!`h ÌÍ™X¸ãðù'0dÀL‚äÌUga(›Þ³ƒ@zŠ°sȈñ7ûµ5œ"†9ºé­y‰±›S¶Š6Ì©žSzãɦW/dãÌ’»°Ül#^4Á„Æ¢ÄÌ%çU•2 +øLka›øBvfLÜfläžM±ó Ûœ¶!cþo6…)åÿyÁXå·ØáåK…i +Åm–ó?TI( 3$4&¿LاÍ-…8¡Q¾•0(k™©˜m"¡#ô%L>=I&²6Y˜Jbnô“—@PšF „/äðYãáPošTÀã’敆É2Šæ†Ï÷<Ô¸²0gAiLCÓ¬•LoÈžûboò-„zˆqúz), `ç'Í“µ¢5:ϱËBòQnÄk´ÇwG5­ì?øþwNײªªj)ÿ°†¤²û¶¿h[këWî!Žè‡ïsȶ{Èònð3-RqÆéÁ4‡ûx~¡­ƒ]I[µ«okºCnóŸ=E]Å1—NÝg¶ýÀ×}«Ë|»v£ÃHj}K’×Uí÷¾Üá”j#z±OÛsUfœø:Hr7œ¾k¾kä@Ùã¢g¤}§8Ï1²Êã+AÙ2/ëˆPù˜•õ—R^ÿ¥@I£™üûŸƒÜä[ýNCgËÅ›Éô–âíZó-híö<ôûOáÎØ ·±æ4ÉhcqruàýOŃ×}o7÷¬²þ¡&» ñXœÚíòJ[ü×;”±•gŽHíŸ8ãܼv¯tÓþºìc=ÝâÛ[¯¸S~?;<¯«àVS¯Ÿ!üoõÇVQ’þ 7üÝÛuÞ¹þøßÖsµý×¢“‹Æìñ ’ôð|§÷ª&ÉAK)ZÔ4â.Ìêª!J+Ê#÷Û¼§Ê=­Nù>Ç·:?ÐÕØL"iXùÈá¸Òè›_Äv…7Å¿Š¿QYX”„\|¢oŒçtÞ4ë³1?-yºÿbÐOmSâ +3çÂÞH½wöÝ=š žqZÞ®Î:ú1q5ݲä_Ñ{žï +Ý©ë´{vbóÑÉ ÉÂÉ牖¢÷ƒKõ¿6ÆÖ}dmïÖŠÎýãdÝõâ㷼υ+ˆ2ïáÅþâ7«Ö[9í (¾ƒTÖœÞ\¾w¨üzjý¦E;_ó¼6ù¤ìÑ•Ñþé:¶¯n¸<6áòýx ´=jÏj´è®ZÚY¼¢ÓéÕdÊ>úÐ_O´Ï««yÃèÊÎÖ…jhS¬NY[¡ÎÚóøÊú#Ï÷û \¦+bòÍÊÃ솺[^Ä>ÿ}ú(¹Üa­_ÀàDß­£ë/-~çKùòqWóo_—ܧò~ç”_纎WêIÙu¤D[¬ ªæWïøPy° =Kß¹ž²Rt(/OŸý2Ú1êô¬;¥òcíÈǼ%Íõ?Úàéf¢CKU¸ ¯zøé**ßõp÷›¥Ïï}”ŒÓqcX$ Y$=sóq¸.vé:ÞÀêH«+êÊeb¯!¦þ˜®¿§aÒОøíÎhŸy¼´JÝF“§Ÿžݶ캤ó§&²o®éÊÈÙWÿ´&Ùâ+û¬²-MÛK‚l?kÔyë¯önÓZ>°ZÏzO„ZmPìø¬˜’ü4‰4´r±–æÔº¸·»Z …Øù·##–,‘]Ht«l™ð8WjÆ S%½ïž ïë쬿žfoÇ3o Kÿeó_ÃŸË +endstream +endobj +4113 0 obj << +/Type /FontDescriptor +/FontName /TPKZYA+LCIRCLE10 +/Flags 4 +/FontBBox [-2000 -2000 2040 2040] +/Ascent 0 +/CapHeight 0 +/Descent 0 +/ItalicAngle 0 +/StemV 40 +/XHeight 0 +/CharSet (/a118) +/FontFile 4112 0 R +>> endobj +4114 0 obj << +/Length1 1606 +/Length2 7713 +/Length3 0 +/Length 8530 +/Filter /FlateDecode +>> +stream +xÚ­VeT\Ý’Å‚“` ¤qww kph ‘n »qK ¸‡à4hp÷`!¸÷à.CòÍ{oÖ7ï×Ìûq׺§ªÎ®]µëœ{hÔµ8d¬  (ÎÁÃÉ- +‚-0U(D…Cê`x0 +`30ȹ€Ìá`(DÞè¬ò K//€GDD› uòpÛØÂÌ:šz,llìÿ²üXxüÃó°¶^\AP'GþñÞ¨ච€5ØSS7x T0+uŠ ÈÅÜ Ž°p[TÀ–  Ä°†ºþZ,¡+ðïÒ`œX20€9æ²?l¹[‚œ~»ØN G0 öðÃ6.æøCàPb逰úMàÁn ýCÈÉúáøà{S‡Âà0K°ðU]^á/žp[søïÜ0ðƒµ~ˆ´‚Z"~—ôÇ÷óà…›ƒ!0äÿË°ÃœÌ=r?€9¹€ÿÐ@ÀÀ›1`¸€lÌ]¬@0ØÌöïîü«NÀÿ¨ÞÜÉÉÁãÏn蟨rÃa kNlÞ‡œ–ð‡Ü6`6×ïAy ±†x¸ÿ²[!œþás¹üióï™ay an…8x¬@ÖØ\@(ü!%€ùÿ¦2çNäÿ€Äÿÿ#òþÿÄý»FÿãÿÏóß¡@sLJøë‚<Ü0P€ +à÷ó¿bÍÁÿ&úïz ¿þ;—pó‡6È@l¤àæäþˆ)€ÝAVê`¸¥-ÀÚÜá¡Gì:+‹zÐòO<ÜÜóiÛ‚-í!¿›.ð— ±ú;óyþðæ’×74Ð`ûûmú'JýAu¸¶‡Ó±ÿ®CjõÏÅo YY¨;À‹ƒŸÀÁ+$ æ ñøü›l`xþµV5‡»€Ý¯JææùSø?ÿZÿ æÄjõ{J´à櫇Áú§á·Ûáâò çŸ³þPð?ÖFrYbOÿ€ZŠÚ%§¥À?‘döÉ¿îlçAí}çTX­—ã_móKY)1»©xÇYóMô®ÁcbÛévU™u­¿ý™S["h?›Â‡Ž¥#‡`ž±Iˆmí-—I!^ÊŽ^„ׯï*‹h†‚ܺk?‡44M +nÐ)¿5ñ¹`þ:gñ§sÍñ'¦?szìk™Tý´¿‰ðSîöãûÍó3¦î¾Þž¶ÃG«ÏÙ2¢±ÄÌI|¶iâáf.'Õ–w®\…WX[C ÞD¶Óߢp_âÝlÕ;b‰[ÙÅ™™ƒRZ•1÷K¨.Uc¬‹å¤½7*ÙM|¨†GÕñËã‚jÙ*C_*Ù+Ä'M•ã¹‘Ÿ™w´=RÖ›Ó;àݽ¯…ályºb¨æ=a­=|ÐAÿ¶Ï‚ ¼I{:1לéÍ‹ÁCˆ’¸«cÞÖhX/¦Ç‰ž VªÔÜh<)ËpO9®`ÓÞ.ñ]îÍên>gËÆ>5²y›\­ l?éšq’ îv~ÖL®]O>´Õn¤ ¶®ƒ¹ý¤~áç}¶ìŽRþÓ¢àoÆð¦êò4dûA‡ùGaUøç‡%̽5Ýz#¤²î @¶I9™Ëþ«ëL‚·Îo™oƒÅœGÞ%_îèŽG_I8?>y£Í¯¨Öä}R#F&ªå{‡áÀø‘òÅô‘ßPصþuseóq)4»0ì3¥°Lh䤢£SÎGïhf©riü;nèh àè|ctQùM‹’b­lÚ·Žá¾‰]6ªe|±q“g\½£Gôq†x¾µõ¿ÎßÒë>jŠ¢BÓ+Ÿ¸h>š¦5½âMkù.Â5ô%²Ôîqøò£X7„/W—,H5ö3ýc-§Û¯Ì$óp\>Ïèq +ãاÏ!¢MêoP¦O®Qƒ§"ß&‰i9G$OD¤ŒÐ}Vy–^Û%1“¨ ˜w/&»§»0}¿Sš/7U•kܼ©"Ÿ‹& ¿IÛ$æÁ7¿‹ð×°,HðY/V>¿[nxö¯¿ÙÊ'Ée¡?c^|âAÒëàm¸•š‚ãâíà8”AКÜåÆ¡Ô„~±¦ë¡–¹K5u[vK\{¾¯w˜£êÎøA tâ>0]jýî:/¡«þ ¦¸‡ÒÑë^îÑÒ‘åË+Ã[ÉNŒ¾[ßÆnl[QåFàá»f«ø™;·ˆóMi:²´Ÿúæª`ñ¢J$XíàRȃñäZ=á$ú,d˜&¬­!\–¶ßÀÌ`÷¨Prшwì}8¹²p+WUÃ|¡uüz2S˜àÊ붗ÔŠ6ªæ2ƒ~¥Óö³7B’TÔÁ!Ô“Í¢>V,ì:ÁÇpzsÔûÍ;v)ÍÌ3J¦ñ»ˆ&K¨Òz5À­eíÉ4|¸À/~—¬k—·ØÂ> +Œƒô-§ÕûÿêMœô¡y$89J6°gÙŒ2Ö˜$˜ÉZË$¢ì:ê´ G¾I‚Q?É‹S¢­eÔƒåoÚ‘äQÁ>wwû³œª[Kâa8"ý¦ £öóNÈ\ãuÙª^hÛŒ‘¸ùZqñºyµÀ‡/û’Ð(±“Y+Û¿§Ä¸(J4?²_ ÞrÚÄ”¼8‹óöM<’ÃŒ"»I·Ì +äµNëgùõÜ·ëŠëë4àÓùrW4QÔRWËødk/±¿a¾……؉¬¸€YÕyQÑl +ÔÇoæí§«'ÛÉ6zÂÐÍqgˆÜ€©”_6”°ð’ž²åä3u(òuu0þßAÒ9¸ä”\/Õ Þ[Ü-Äó„ÜGß¡]]ÉVùÈ÷¸=Ó¥Ô¢¬êäÎ/e”©[1Xù¶ËW†gêÆÊ£¢ ­ñéÊÚȾ"N2AÖ)a|ïÂÊœ‡Ñ»n×3±'f§cÆ—º7GC“)Â1»mFé8·Qde Egˆ]÷ä¾¹*|ßý|½«^þ³¤¾9ÏY|ÛÁž[a Ÿ7Žÿ¥‘v”1°û†t +鸪°võ§=à¥E³m©bsÏXfHù–Fç ÚâDÞ®cÏØÆÆ2‰fø0»_®ëUÞ?,f“[L.½ò0WP‚ÑtW¿Ÿ¢ü’è"0Är’[«ẩ¡´Ÿ~ošÒU¦mãà|›¿üá¤/>ïê QoUx˜ðþµMÙ /4Y©‘YQ¹4¿ 8ã;ž,BTjÁ‰3¬Ø`—WiQ) ­f-$¨° î'¿ÿð¦§dñê)°"q:Ý:7ÒcD”CÀåBÞTªb8 fÆùF6=g¿<—Ñ2rGéípQ¹3ZDÈEBnbS©¢B)cå ¾³Øw嚣[VPphueÊûÅFäÏgEÇ#aè„€¥…¨jn?0(¾6?!@?cå?'ΕTÌãfŠñ‹Q +Ö÷w1nßf¦c;ühù994úÖÆâ·^ô– +5÷M·mCÙí¦ç+?%eûüznÍRº“j+Yþi%ÓXöFŠ@ZO³4^õÍ2JïU¨®šß‡ìŸ<Óqϵi Ž–Ý­§8±×5Ç'†T?ÁQ“¯ÌRö€Þ±]üTö0€‘Ãç^Ñû¶'ìlÚ [þrô@tíuntžŽõ÷œÝæÂlóUÛ=w¶–Çb*÷—x™…‹ÇN[XRAÑŠ#JˆÀÊË…ãÔ²yá¥H63»ªæÉ’÷EXc/•Ä>_IÃ*.±$µ{&w±¶7ó¥9Á³ï•&’%ÑfÈE6Ò®ˆ‘;™óuè8®á3¬•ßÖÒxÛlȧ¸pç)¸ëö*9ô2N>]þŒI˜Ô•>ã³a]ávk¥ªG• ”µñ¼D[*¡GÕéÖ¦ Ä Â”=êcý9”'­K}ÑEj†˜ƒîg-&‰£=ÎÝáN“n©r=¸uH9..’ ^öûª¤·ý~Ò"ùº:2c´—¤C,náuh²!g&ïá+÷4ÛÞ7ÛS#"'Ç!~Ì9ÓkÏÕsëpÍ#[y%ðzýøâ#±°¢j[íw`V7‹¨ˆ·ìåIŒí2¡ä øГ”åŽ±zð#/­kÞŸ&¡˜"QÛ,ë\`–qÎkQžêøž0»žCªMŠUoüÕ¯tod?ZÞ¶£Ïƒä³E™ù,¯šœËkrÕŒdáÑž’YÍ +¹_²éKìi/¥ôñäUØBW°K¼Ë ÷1>ý@?ð6­ -*ßI©VrUdγ†QüÌ'àᨅ¡cûÂÈ]W&C+Ö+NbR¿Õ^±œ¬ît|.³¹ÕhÕ%‘^„uò¬ksm³Û1¼`¶—!Åþ…´¨.¤­ÌWÇ8T‘,xi§dû´à)®¿eíØH»ä5Ý‚§À׌vk‡™0p>£À\¨3õuc(hXXJMy}&yÔœòÑZÆt+îµhéwhYIŽ½6߸øl“Äh@’­ò;Ï‘ælpݧ·¾ø¶#|E» gO‘­o[ÏVe˜_äc^dj]j={¦,Ü?m§šKE÷²ê¥a€ÐPVÕ¦˜·÷AñÚF–fz[¡Di˜^t7c,sÀQƒ2¢1ìl—2ýÖN\Îëc ï„Ö°§Ã…AÜ<_©‹.!å„Ñ»Û.› âîÆÌ®þÆM·“áõ³žÈë7/ÃÚ쟨=ïTié±ãj›,RK{à“’…,èÀ“ÏÈø^§Nf*KF•×·¦9ä*ôù× Èèëa®F¥Q­5ÈLjôÀ~ EW¹/AQ‘]½˜U÷…·Éƒ‘*ìu?ü®® r%ôœJuqh‰“Ûta"Í%ÁÎö”O–®¯ßi"pëÑÉ«Bð¼Q‰Ž¹ Vp;Ùæ"\Ä! -Ü›RPõ!w˜„‡•¹¢þ}áüN3Üϱv>eg7ÒxùËɘ­`pv¢vÂ^˜Ðé¼ð{AþÆmÓ!¦²z€¡Xgû!J#7ã]ÚúuŒ&t)r ò¸cà͆“ć;î)‚qS4yì° +fDzq ²ÖU¿±3jà9~JÜs•W–G†KäjáY¯OÓæÎÓÑ8q¾¶X=Ï°‘T¬M}» W&ßoƒCËŠÚå>±ݽò¼ü@óìp-Š›f¢sqÕ©[â0£= Ýת5IFõ׌œß´žðΟ/J1ôõŠÏUˆXJä gW«/<Õ­Ø›O3 êuùeêƒøÅ/ã9Ò³ø\>´ÏV1ƒœÅÂ5”ßp†M*ÎýâÛc[óù‹jU½OÇ,5bªà7æµf!â:v߸%Œ‚W6†å)"¸ +`EgkªÜŸ¥®ÝÚ*˜ûžºN'ê±3ôarŽ¤èo ž+@ét"Gïf ]ɬoÙ ÓcUf¾Fi–Ĥ‘ÿÈVnŸìåuDò¦?íæÔ¯)œ»pbü1üÃïCÞ=ß Y]õZç€' ¹9Úº°*âõñ¬mb¯c ÂW|ã¤K +×:ÂÚóLì)‘â|Z+m +jÿ¤ð¥MK;ÞÓ•Ù¢þº!¢‹ª•´§ú&Ϊ\ââ ¥ú Yõú]MÃXN°1æY0”-ܤÌÞ©!´„ýd_„»ýœ.ñéË=b+Ì° †>|pÆŒ`æJ˜¬èÅgZ~ü¥¡ Íb¸cÏŒÅÞø„þ<Ú«Wx©DøøMO><­‘ÁÀÂ9VÊžo.~Sšï#“~¯«ò-õ1)[Z¼ü­0~ {q~?Ea½`®ëÒXZI*UŽR4Úþdªv‘¨.f2dú”çs©OqÝ“Šp¹Ké÷q«Ód^rÊW©Ÿ.¹v&Á¢wôv•o±K}ãëb»^@s +1þ1xý£àT¯ŠfcI 9Îôì+¿”þÈùjœ žeëlìÆKX^åeˆ Í,hò†’Lþ"ø2ØÒíq†aæVt@ðãñ›ÅNgS!òH;Fcý×%c +ú¦ßUü®'êÝÕ•å"Äø†‹©ZsãOÜÔ÷ª)›V_m™áò}_¢1ÖD^­Sý+'G%;øÇW¥Wh®St¥í#£.™ˆvëŸS‹ó“r§Ž7ؘ2¾Ëf)6ôˆ"D ¿qö7hvCö8ª‡ÙÁÎŽÒHAV׺ȸè@´%{#ž T)† (!ÏMêݛ㢭L«X*÷±ÅíwÙždï0¥y‰ÚÓ‚°L¤ú0|eò»õŽ…õ ˜$7È mua bâW¼aÏÄ©§øԌڊì“ZÕ¬I‚R;9„К›~Þ_¤8ª¡ø#5`åñŸÔø‡P¦XY¦—8à†ˆP¨R…?¶Ó ª;ÙLFKA{šÑ ¡ñró}Øvç£ÆäŠ ®fQŒèš(ój4°ãœw¿³yÚV=K?ŸŠÂ~ªCñ'Jž1§ò,Š/Hª [‹Îx¦ôHÇì.ô ´+ï‡}Æšm\ZׯœA÷†? …Oßù+&¤N·X\­­«'B$sR¡ +£wót VHzÈ`)¨ÖÂf^U±¯( jÂAÀ±Iéz8Oa££_Šå¦ô^Ç-ïý)ÌÔZ"é؉˜X7ÆEžmNaÊâì+DØÐ6é4OÛÊ´"(Px ±3U.©ÍܯQ¹܉S+üíðÅ(è¨îöUÊ:r.IDüã,«ÕŸòbƒýS"Þ4-ØÆX?ë%ôôÌ ª.„šC]£^]ÄæÈ,›s«j°þ^„MÀórŒ°ú8_zôi\6ÓÃÿº5ºZêê:%лrÕ¢‰ôuúÊ'¦¦ê  ¶Þårµ¿Àlmp"C¬cujwµŽS8W¬mŸékeF•¡´ü"ô…¹V¾jUV=~àg²`=&övLçsFûǶï·e7‰Ÿ(õRx6P¯6™Ãt)]òÈÔnpÔ(5+®…ÎÆùü7L§M! +XAîw;$óh8"Ÿ¿Ì‡LonÁLèÒ6 €»^C‰³¥I.'çË<”yë…ÂYNÖ6ýý¸b”wågW ¨Êñ“xzL.r‚›ñdÇ:¶t+ ¦Ã©§;‡AÏ Éiçð”½4¨1·'IuÒ&¥&Ú)™øyåê +€§úay¶‰/ rV¯#Ýí—SýÐE¢ž×£ÝÆìz,®§o¿à¥uîšvfÌ&Ï$,†eÛæ]Õ%W+N¦¨½}⯑µ»u±´à¹%"ÃxÆAPò¢°É³4ŽP” ÊP£§ŒÂ>Ú<o Â{¿íÍçµúÌØVPg6¨¾Ø”Ræj9F5RâÜԀѰݯÕÖ£÷Ôˆ¬X‚z+`L$g?¿»åSS’`GäW&ÊÎÞívF­X Té­—ÉçcÆs_,¦"wL.êXÛ´]!×^„w@hq´Y›4”h“¿»û”ÙPʮٴ’©iÙÉÝ^—$‹B,õ'òºTùL»zŽx–7éL1Lí`Whä[!5RdÞÇèÈ„Q·f²9Œ¹þHe–q}X%Fu¬‰]:n£Ïgô’l¡ÝÍG£¯Oµ„×ÛN˜°-Áƒ»,ÂŒM㛉‚1BD8 m„«ˆùdÓ\kþÅñh#ÓmÙB©‡!lÚXNH¯¸ÆÀƒ”úÚiœÛ8Çy[±)lâÑ™tÊÝ}Iΰ4•‰ +y,ɜݱ‹¬ž0U·íh|ƒd±ð5Ëgkô_„ôótþÜÂÚ7ÄDŒùÛöñ›Ù<‡©^„Û>¥QjÛ鮣Oô¨–å‡.ÊG(\¥¦øå½ü³†À®ýÊ€èÇz#€ïŸ5UJ ñ²äÖhðÍŠ\ÄwÓ ‘•¼|K†˜A]˜í¦}jêEið<ÊÏ`—ç¹Øü~üç묭òågäh…ùe<+ûU/¸<9­¤d§({Ž²=’®[m7'° Ûr‰æõ:%bJDù0NÚŸq¬ÐK<|¸KÎ<[W +Nyû¦÷¡(NAïXËÎΗýŒD„µÖ‡Åœ¦¡ƒo^¼aß#.eÉgVºñð¢NÙÇ·ñB¬Ÿ³l¬´^™Û#L‰ŒøÄ‚ÇE6{ü»…¹ì(bÄžO¡"¿ŽÒ(±sÚDµQØä%®;Ƭ†=ÔÏYx‰Ž¯?®Ôí,Söù"ÝTmœÛ×<ʱ©¦{¢Ó.´ˆâf|J£Ë®-¡z£‹Ÿß/üU|7yï–RPåÔŸOµ)#´)–wã§Î(±æÜž…ð£NF‡ =›,¯©Ã£"Ã:LciòÁªÍe÷mõQ]¯{:@!ýX«ò5éÕÛÕˆ€æ: ec¢› +ôÜ;•AâyAgñ-÷Ÿ3FïTÃ4½]_›0’dqÅiPm‚vÌHœÆìà±´°è7sÊÛÏžp ƒ?àÓ¾u]{Q’°”@3—æbYäPN«†Ößo÷,+—É—É3Ãáé÷ëâó6ªÃëì…¥Ãní1-¿ Xb©)Êz> tåÝ‹Qžò|å7d¢ßÖ­l6›“BQw§VêsÓ8ÇgvËØ0÷õâ»°FÍÛ³@´á‘Α÷Éú¯Ö#ú-ujêï¤Â'sÇWý‚¸˜Ç9Û––ï?nÐNTþš\½zŽÑ¢¥`HæçKmj‹²çGêwK2Æ<¿<Ûi´¸žºWù"ØkÑ×dòâDõS*sÇc–©Àü¥ÉÙµÐK¬úYìw0PA•}“žÞ¬ +ž'²±¨mtóÑDK@ó—ÄÃYŒV_/1›/–çœnŸ>³"qn16Ü~ñ_ Ž¦™\†Û&ŸH2Ù$é~äwWÙFÝ#F[%ÙˆRTðû(žT¬G¾¸Õ=þBºLyuv™L-.°‘œš8R5S&®ErÞ#\å÷õÈyí&í—ÿRcq§SS5P T»íqçu‚ÛbLÈâõõrÒ×#Â3Ì¢‘_·ÆÞŠXŸ,ÑšŒ:ò»5¢é·ÚGà b˜SÓè¤WÅ´Ñ¡‚7º¨ôñþˆèQIº’ýÀ{7 bËpaÔòÂnM[½´½2w_KÛ¶&ž!7}Iʽw÷´^´¢;îCËXº‡ZJmÔFIþíÒ¾o?E)ÌæÃƲ¾Ø\ìˆñ—2d–nc¶qm@©66¸”k÷v}§& ŠíQÒ°%ΰ/€âAŸn¼±#³lzpRh9ñ5î~‘ŠSmÏ92Ž?îÇ9JdL>˜Ãy¿Í3ÚJ»>E¾ÌÆ­Äi®\}½6¨Óõî›Ï)ÂÒÎî½F¤„vŒ^wUË µª>^=–ò¬©Üi5è9ˆÐÒt— ;kG‡é¢Qô'ÝÐr>¡áU¢cz#õ…†…©ð?šx¯×•tÄf1ëT +ûämÏýÙç;§ÔÌXnzïwÝp¹XÖ5@5Sù¸Nj˜‚­&ÆÝwñ¨Dúã)§¼KxxΧ5o™!~´™'iÀÍYÜ'½g4O¦ç×MT7·­È![¼G§m¤;RÒ™.¿Fö¾œ"TÃ>íIzßzu¤Áu‹[; ãÄ÷íéð*]ø1¡¸CûÇ7œãùBPιϤÜÇ-~lõœ&¹Í„Q»ÎIâ¼ÿÒ@þ=&€u_¿œ©~™$æú”QºÒIðw¥gÿ×ůéF,`T±k!Û>i÷ٸK•‰{§öÇFß6 Ã£í¬ƒ¥›’sµÒ/ù¨ªæ~*<)ÛI9ݤ“²M´˜qÜñ+´<0˜qáumÚ¯hx§!ŒU_Ä¢žˆuÛãIΜòÕP˜9êqÄ‘ˤ1…ë}šDË\)_õ¯qÇHqÚIFËÌëbÇ"”¡ã{Af`²Î–â ñÆ-|î 6@MhZ¤ ¬r¿žö8k/Ùñ®ëôfË/ç~'¸uÍM÷®cŠ°¨ò ǵWÙM«×Ùj±ínŸ¾µì2.Ðú‡Ø÷V¸½—5@B{Õã6Äî«uöú™Sï&Ó•µ8\>VŒ^ i¤*eúPˆëNPvÿÊÞmÃJW3à´[RšäUAîS…iÿ„#TKÌóÀòÜÇÇ°¥³«š8½Y²qbŠÖé›M£1Wö—ú9ôv;A%yk`ÉñA‹_cRÛÓï%>% fcr/Ä?œ#B‰“ Zn."ìKÚ¬“œ÷`TÎ1­`Õ¥| ž›8¦ù¥¼ZU²m\m#•5‹ãH«i°Ÿnú!”^K<<5à[ÑÐäZ× ïX̤6•3;ñ…·÷ðÕÇÏ (Âä_>hÆÒ(¡Îôæ +Å«{QûáëkçÙ˜W}—mµ¯47š¶`!¤ã_J?¢ÓH—c&ªíü¬‰î0é ÝE2ŒÆfR#¶uN¯‰î[|sÆ4±Ùˆ„n;:,}µAWÍXêÑfM-mÐ ß+/b&œo#º°›ñµxä÷󀾿™µbdí“^gQ¸ó›ÀgVÁ²µÕPÐ$k7QÕ”­êt9Ã[Ã`ú +endstream +endobj +4115 0 obj << +/Type /FontDescriptor +/FontName /DQDZYQ+NimbusMonL-Bold +/Flags 4 +/FontBBox [-43 -278 681 871] +/Ascent 623 +/CapHeight 552 +/Descent -126 +/ItalicAngle 0 +/StemV 101 +/XHeight 439 +/CharSet (/a/b/c/d/e/hyphen/i/k/l/n/o/p/r/s/t/u/w/x/z) +/FontFile 4114 0 R +>> endobj +4116 0 obj << +/Length1 1624 +/Length2 7166 +/Length3 0 +/Length 7996 +/Filter /FlateDecode +>> +stream +xÚ­tuXÔm·.!¤”Ô tww7(90300Ìà0”4ÒRÒ!-(RÒHƒ Ýê‹„t7C }Ï·¿}½gÿµÏ÷ÇÌõ{Ö½Ö½îÏÃÎbh§B8€ÕpŸ¿ 4@êæà顇€ëò)#` pˆ²³« Á@W¢ÀÒ 0  +v „¤¤¤Ù*w_$ÔÉà23¶à~ü˜÷ß–ß.ß!w‘P'8€ãîà C¸»á¨;Šÿu   @9ƒ( P10|¢¥¯àÒÐ7h€á`$0ô¼+Å  uÃ=ÀÜ €ý}8"à èïÒ<ø︔<@€‡;Øzöq»ÿ†xî`¤ÔÃãîõ8!pÔ]Pîóýpg‡ þrG"î<Üî°;2C„Êà uGªÿ­å DýÎí½ƒÈ'áèù»¤?ØÍŠBáØõ;—‚z¸Ã€¾w¹ïÈÜ‘Ð?2<= p§+à ÁN@$ö𸣹ãþÝ× øoÕÝÝa¾¢¼þKå†Aø …„ïr:¢îr;Aá„¿—E A„ÿ¶ƒ<Ýÿ…y‘Äõ{g¸ïDA8ÌCô¨»”®ÿÝ”ùÿsCþŒø?2àÿÈxÿÿ†ûÏý·Küÿ{ŸÿI­î ƒéÝîàïGp÷Ê º€ßï à÷CóÌüÿÄÝ 0ßÿ!꟎à¿•þ&û'¦…ÞµC ît7>!a~Á¿ÍPu¨dE9: @Ø]·þØÍà 0…ƒï¦ú§¡wA‚‚ÿÀL¡Ž®ðßíûÃAÿÔ~7¨?ÊtÍM5ôôÿOoëOû@™úºƒÿ7…ô_‡ß<ÊÊ€Ÿ¸€OXB )*” +ø2þ¡ú÷YˆBB}V‚ü‚‚B€»ÿýþ}²ùÜú½3&( t·fÿeø ;z"‘wÓýsóïŠþ×ùσÁ>`GÂo3G™0—ô¬ TM^ߪUW‡v_¸{i­iQAðD{PzÔ¢Ô;ûëÊpþ#Ò7M¾Ó[î¿V´yVû;¨aœí©à½|†VîÎò-WClKïgl[ÄúíOé.Ü{*.h¾º4ddl[rË8Ò"‚ÄßGs³z?`;s' tL«yEÕJöƒ¢ªpk›#y}ÆÙ3𹯷ý§s…þqî+v Màë-–”¯=ò¤ÖñçÒK“d™§- +áOéümO¬uÿz³Ñ@ä’dO g´iãï½cºÐK€”«(úoxêæ·ˆ`?=’«ÅKù9)k¯;48_‰É[);k§"ˆù «‡jó„F=Š<¿¤9 ˸È@h1†i¯°ü‹}5žCÆ{íO¬ûX‡øÎTŽç¡=‡\ÏeKDHîÛPb+O†ŠÕ¤‹Y2¬ô­‚‡Ùi˜ÉCîÉÞhøí°˜"³²:%ŸÍFx6‘’µçš1"Ć˜—KUÉ Êdo>ŠcºØÈ>öVëߊ–ŒæbºÝ¥}DïDžþ¡oL{é—œOô¯{?ØÇ)”•ÎD†›¾\nÏ\U^:û½%’™ßh<ú^ÌmoLõ•2ê\ºZûHïÂÇKXhÍx–Üö#u¾ühUÒИÉ;&! ·÷%ÅÀ¶«‘}3zÝ„ãz!ãCÞŽyÂ%‡ÝŒ‚¥©ñXv· +¥h¼%ÖÅüø²_vD8œ_#CöY*èD"ÑfÌ;‹fCω–“_›$^iÒ+*U§/°¤Ø&:óퟖ ¢ET.ÑÔF–r¤ ( ªæ›p”ËÍ!צ¦&yð@Ù!¸;´™)%Z¿ªû¶¡Rkaú~÷ &@!C•5m;¢Œ÷*ÎüØ”]túàÈñRWîRÂ_kTobÔøÊÊÿ¸qŠäg^["uó}%5Áóɱ¯'ÄAEx‰\¹RªåIúqVt„Ç7—¸?ß?½]ÿêoŸöJ¢"&ÁÌSÌÚ¬=/l½¾¦™tÿÿ6Ýg\jË)šó} ˜k &S-mŠQ”s‰>YìŸb5UÏ7$XlTZ>ùTõ3œ*NítC=cü•Ùú>_g7T‚B„;TK]_¢äüˆm3ƒÊ¢µ¨u7ÞŶÿâ¥ynOÀj=‚ü)û}>'¢.ü’êÐwGxÝ Tè3`³7cœFûK¨5*Iù™.t¨Å­8ê'»V—"ιä#úOúVüíî”Íe«¾P`Þ߶¢˜ê ¿º +fŸøk&ƒùBÞŸ ÎHLê¹÷Ä_`’)æƶ³Øp?W`¾êD̲(2@Ýäu/ÑR1þªÕì’žYA³\eøe%ç›Ê²nýlÌzþ#9«tyoá£ÜÇ⣕|ß¹f„zŸ´^ñŸª©$®gD }Ÿ| ù«„£ïEm¿‰8ÛV”’OÐN„‚¥óeû;³ØÉ—g"3˜S,Ô§xÇ  w7bhuòý€â®yK)íWk÷5ê«E90|8#óSƒ€DØ7‘)œE–­¾³û¼µ«–uö÷„¸{9‘õE°Ø]ÒCÈCÌ(cðùY6§ë?·Þ†ÓËëöÐ*öZÆ͸uOêžÇ€Z¤ñnö#®z6E%~qÔ”¯uƤmøža™bøj!–k5¼Da&ŒVîÈRÂÝkYhД­¤æ´}ªë;8£*tJÇ?9ôPqe­ò òf–Ãj×ÆŸá—xaÝ3¦Å>ĉ>¸ÍcÄàQJy›E´TrFu`䪕¡¼ +¿JÅ…òu8Ø|Bž–ÿt÷*8“ƒ-ùõ|ýˆµåFsš9"Šåì³ZM§ÉËøáS[i2ÍjèÛôM³‡¹ÌÙW¡]ÙrsøõÅFU]a)×&jVm¬ò³…Šƒm¿¥4*õo¼Gbl>HâÀ9©#˜±Ÿuéz7Fò÷ã8V®ë¬¡JqÏõFNx”lÄUÇKQp,å^ÿj|ÖÎÖ6yíÜ¿¢Z Êšµ +pOÚ}ÛÁîç-áó¥å†_“ìélNà„…MÕW- eô…nnñ8ƒoDå!WölÙg ¯ 1Uï'¿ÚÉÆLNïôý.µ4DÅsúâË +sPÐb¹sÀ7JŠ"¦î…Ú±µ]ýRNR97•÷à>áOBGy¸!«> +‰•Ä[îµZ«&¹?«²¬\ø¿:åªèºŠìMJ!²%ê[>\\¸´¿£ÿ"ÿÙ„ƒ6žû¦Koº¤â…´NÉb-h ûxž¨W¨§òWÓ-תØÌméÚõÈk¶Ðb¢‰ñ_ÅmAk†j|¹Ò"sÅ +uEV·ËS#³ÜŽŠ. )ùÚ4µäñ†e?f'çÊÉ‘oôUŸr=<²hÿuùéz=#ZœñÍì»—iYßÛU®Œµì ÍÕÄ™ýÑ߶Z›R‰¦z9¼\G|Ý{Hw:'¿d†S6¾lè²0Ycrú®¿±uËZ›qtK ÖæF.4$^•±Í*eH‹‰ñh ü=oLí·5 +óÏ4Òê£%1+9B™)>L’n $Þû¹6;¸§E–2‰-B+¶”¤÷Ã^zä@5̓¥ãg²±Ml'6ÚNB Ó¬ãjV¾ý©Ög2á-ˆ·»Ë°žF4Ë5/!ai¶N|ëÛMôš:¼Hèœ.L䀹û6ÍWr•_­t~ÙÙ™œ\'­sº‘T@˜ ÁXc¤aEi2àºN9sÎK?>ïƒO)Vª×ºß"Á.#;A²Ò<õÈ^šÙFƒ4R¬–çPÌ>7øçM›¶ƒÔ’èß1v¤Œ„¹èË*]Â)¥@-=›Í3­.ÌäCsSÅCH¶&Ï FCÌ4‡¹Ÿ¸X×_Œw°çËèJ³cýÉËØSO¸áj®òí%ÊÂà({Âœi_ +!^IuM+& [hÜŠÓ1îÛÔG׶PŠÝHzzŠ½ú\AebwÉ”6,$¯¸°½ÂA7šóñE÷ÃØ-ß4Rn«òÆ‘ÃUH-Hr® Í§î@‚{—L¾ BáA脱!yŠ„/:ª…T ºK·##Î.Ì­Þ_ÄrÃ6uy‰.¦¤»ó|Ǩª<#0 p£ãÜMÚ’ÿLi¿©™‰EÈüÚAï{ëMà8÷Ì‹Õ’5ü^ïmÎùq“ËÅâlP÷›¾Æ÷m‡¨ü8¦§¹|öVckšÔÐ42‹Kf}Ñ®¼ECz´•®iÊÖhV~‹vXVÕŠ‰ þF¤fã¢^HÝ"m«çÊï½Vb϶x¥lrùþ†¼°ÃÞ™6qpUùUm+óÒš6½œ)J»:¾>´ÏÆyê:`ä_Eo[Z€®qÓêÖOÈU('wøñ´HJð¦3«e®ê ’FÆàgoÕà·uô‡’ýp|ðž­ò+6îjUÅ h9cù†e9]r×#•VÖ +í!ÉMR³5`2¾Í—7tè\Ö„lD}ÀØ3µ.!¶L+C¢Û­êÇq™v}þ¯‹ _—æ–JªI"LìÄ8)å¦åÇ$ßèìœïQØûœb3\=²Ú{@A~„!¿[b h²ëkZâ!"-ÃûÅOÄ|_0ÀtÅ÷»¢”Æí­°µ¶w ÜôªÍx^5;µ-.ªÜéuð&ÐF˜tð”QôŸ”|U³KƒØÍþ-#ºÃD\Lr$› 9¶akÿâ/ˆ?ñ .¬TÝz/èXµfŒ™óv ôÅ«°÷:Vxqm^ȨJª³œ{_LãÁìdcú˜/P—>ç}jqóܘ˜Iqªå‹ ö1Nm¦HTž+}8åóšáù ´t?ÙÏ#0z…¯kq&Ãt\þe´Bƒ¨b£{½ƒ‚džZ¡“Ë#ù)*/{Û¢a·aÞKõ¡® LÕgÍé1+ŠyÎVbÎs}ß—ÁÛ·llÂÊÉ’ è,XLyë꞊ ¨$Ö§3U$ÉòJmY’šg¨E «uO˜H€R0òq[&|›eˆl¾t¹cñøe*¨«ã§b¶i™°¸<‘¢Ï{Œ‰ +®,oeÕÐÉ1]#/µ!ë•/%ãxVÑÔS‰‚ŒˆWgž›¿²¥–a÷Ñ›Îu½Å_»¶éX›pæUhÖt³Pr⬇ðÙ°¼W©œnì˜0dxj£qïÎsfÑTSy@ð>Añ™Ï¦:0#-ßš=ú4ú +ÊþHK(ÅñŒ,¥XúoàuCJþ…¢X ˜3t“ò™L‚ŒºaÝð¯³(4ÍÖð‹M7ßç‰S1¤È“|L´M? LrÅÁ£2y_–)Dè©|­}ã)˜8#1¼ÔwU¥=Æke +àŸì ¬íÛ£xáÖøÈñíŽâ +‘”Õt¢nѵ~¢¤£% Ž\l×ìݱ´§ÏfÉt, • :Mo°Ó+K¨ +p9>T­?¹­ìì]0¾)Âd h,ÕÒÉñ-)nšÓøÀ;p#ošÐEÄØjãz²ÇzÁYxõjöìäV„åŠAÆ™l“u–šB‡Qô¥˜”Y¨xxàõëɇ˜Qþ‰Õ59Ó̱ôÜIWv¥rú^?:&‚¡”Oü +‰âÅ ±†ìÀÙ†õÏ0„Ö¬¾G‘­I–{ᲈá·bÇÒ®)k2Æ$°­˜*¸}ƒýµ…êˆ2‹Ý,±]•ùäÅq<ªéH³ýèä1©g/ê's›àÓ(b•¦üÅ0µ •ð•¾rS ÁËI_%õô‘Ý\Yã³³¢‘]önP«njq¯GÃÔëW*õé6.¢SÒBp­9ªO¡?õcäeÊ—z/Ø(³o“®s„)˜ÛwftÅ„îÙý¥A!¨ÁZlÑÓqHGN}ØßÈi¹Âȼºå¢KþöÐ((¢Ôª-‚èæÑÖRc,«AÁ¢gÓÍ–Í8ñ˜˜½­…´mN£÷_ayÅÁŸÏx/íEuæÝ“œ)éDh«¹çŒN)¢Ý£©¢Dø-q 3(צŒ¹fíÚ! ý3ôùýûçrr0¿ +ŽJE-;v,Y hô¤…”Ù˜8™Cÿ5·CgEµ°!6\ÔÎdµÏ àû²¥ºŠk.½PÍ@ê8±ˆ^ýrndÄ2ÂœXÎoN½<èMÏz#½ô²~^VGíÑ‚™qPj|Œž·^õõùì.*—9ß=X±@¼_mhÀuôŸî…ëD}ŸæêsÝŠ&3F+g¯ã°È(F¯GáÒÞßœ¾÷%B2µßcã A#>¸Y±ÏìûÒ:ؽVÖ¬~òÓ¶s.̾yŸð‡¨ ƒü[gã nD$I— …û緥絷~~&Zòe[‡s$=E˯ã¶OÔ#Cüݘ"kuöH©GHJQ-þ+)6™ITëp×`ëÅ'Bºí$ëß…¯Çô0!škÓ †y7P ûò¾C¾švÃÓ¿xu×ìç˜'•9:·'/ég&¯ãÔ¸õó“’,G­Ê®Rrî¼ÖÛïTmxsBá—rèO/,ÜZ ¸ÖúÕø±ý¡•Ytæ³ö«7Îä½°ùo0ŠÜ¸-#šÚ~^ò K¾ƒJÊT†EPò€ÿÜüÛ&-oÜ{:c†Ï›µE|®š;@)ð¥ËÃÝSŒ$€äËÛE «WŠ¥ŽÑ*ó©=[;ìZä<÷%Ýù[—€TUêç'¤"½âe+®i…8|žÞÎåçú¼^ZDêmpR¹xô±ë#ƒ¡$>©÷©~X»9!ÃÌ ¤vh}3ÚCíàž¯„ê8å §,yä´O×Õ_¼À¸ÍD²r––âs+—>e`/cÝÊÑ”ø°>Y9~“dh]K§Ð‡Y×ýü¡1’ìvÞ®(æ8ÏR "H³ôk‚dT2ûY1”Ô¡9úðÝΦ!U™^Ið[ÀÜu8ÿ“HÑa"ž3„{%éœÁ8xJ°°ŽdÕ㯠7óµ`\ÛÐS¯¶œ¯ôÊ;Û*JVÉWÖ¾h}õ…xº%jœ0.²»''m©2Ólfðýušr0¦WÃ|ØæÏl1ïÎâÂNÞ~Òô‹1‘‚=¿(6Š>lQëþ,”äáF¿ % >ʃ¿Þ»b‰¯8‹z¶KPkÍ=(,_ªUÜÇ_–ÀÃÈ{0žÁR¯¶Ûl6(­_íwN7#–\•óc·Ž2U²né_j~õÁAõM’x׸‡¼Ð¶<Ïó`i‹ G5i>„$©8ØcÊ>¯²SNìqÌ Û‰1—•·Yåñ4¯^̹T–+÷’Þ?_­íMSÙGó´:›l¬â}–+aŠ?üd—’7ÿ‡ö“‡h<¯ôÆâÅNŠ¡3h™Òt|ÈûKîáf+Ìh‘žç¾ ãÜ…'¶LмñÓg/¸L,Ì[K&ÜVr>`7¼uÏì$¼7Y“Èl»ló$×dß‚œý`Ðm¸°è̸–ߦ߹_u™µkk_"¨h`škkKôdW1X®Ø(ò~æNÙeŒžX7a•£½áP!MÉŒDí4n§§?5ÀŽ¶Zð«ø°k§r šÂ>hùî€2<áÔ—}ͪçÇÒ}oOS"_°éUƒ&G$G6ÄæùÔ׸äŽ~‚4®º“3/Ç,»D²ôÚëT<Ð5T‡Ýs¯7 ,ŠÈ/¢5p*Ûy»œ29Pã·­0‰ŒÅb›‚ŸD> endobj +4118 0 obj << +/Length1 1612 +/Length2 19759 +/Length3 0 +/Length 20600 +/Filter /FlateDecode +>> +stream +xÚ¬»c”e]³%œv¥Í“V¥Ui۶͓¶*mÛ¶••v¥mÛ¶ºž÷íÛ·ÇýúûÓ}œ1öŠˆ5cFÌXkìýã+(Ó šLÅ€vÎtLôŒ\9K[#'Y  ’©¹ ௑ Žœ\ØÑÔÐÙh'bèlÊP75ˆ˜˜™Lœœœpäa ½‡£¥¹…3€JUIš–öûZþ yü‡çïN'Ks;ÅßWS ½­©ó_ˆÿëʦ¦g S€™¥)@X^ASRN@%.§ +7µ3u4´(¸ÙXd,MíœL©f@G€Í¿c ‰å?¥9ÑÿÅtœìM-ÿn3u76µÿÇõ`oêhkéäô÷`é0w4´sþÛg ÀÒÎØÆÅäífÀ²wþ°ýëû ¦trv2v´´wüͪ "öožÎ†Îÿäv²üëÍþFš]þ)é_¾¿0½Î†–vNgSwçr™L,ìm =þæþ fïhù/.N–væÿÉà;ÀÑÔÜÐÑÄÆÔÉé/Ì_ìºóŸuþ·ê íím<þµø¯¨ÿÅÁÒÙÉÔÆŒŽ‰ùoNc翹Í-íàþI;3 €‰ñßvûÿð¹š:þ«ATÿÌ õ_†&@;€‰©ƒÐùoJÕÿÊôÿ}"ÿ7Hüß"ð‹¼ÿoâþWþ·Cüÿzžÿ+´˜‹œ¡íßø÷ø{Ã2€îCÇÿO¸¡­¥Çÿaà T7ý7ÉÿIgÿÍ´3ÿ+#=ã¿–Nb–î¦& +–ÎÆ3C›¿ú—]ÕÎÄÔÑÆÒÎô¯¢ÿj&€Ž‰‘ñ¿øT,,­íþi=Û¿]¦v&ÿ•ü_‘þEA^KVFE˜ö¿Þ©ÿŠRø«½³Š‡ý_bÿ³Y ÉÿZüƒ!$txÑý=tÌ,ö¿ 01ùü²ý †é?ײ†ÎŽ–îí¿%32ý«ðÿùûÏ•îµ3šü3+ÊΆv&Çëþq»8:þUõ_'þoÁÿ±þ× ›šº›í,¹ƒ¬Ò2Óë°r‡ÆE´ûz˜À‡‚íKUŠ +ük€Ý~iaÛœ•ïµÁôM“\Ÿí §öûR4#=˜6”Ý)¦—ùø>¤Ô½(´ z¥ßÒÏÔ£¼®æe¶ ´ØÕvÆ•ôJÞ¡&;Xa®ž¨ýI] üÑÉí}Sb1~#7 ÖžžQ$?=RŒ vß@öîãÑæÄÂ’sbù&Ÿ'9{8Þ7B¾ºr¸íp+"WÓŸ%µEùŒ8]i +6{A…p´Xa“§Ï(úå 8—+çb2çû-Š5SOö51ÞLô¯`›`ÉÙ¨·[Ñu·Œ ¿gÁ´šó²¯Äð¹—í»G²îÙ5 ÷,F°ï’ôÜü"‘0æ:wùm“ã׳ +Z ãf$–á[tWÎ,x{'ã¸ÆbxÚcú£„é±l\¼¾yË»;'Žzž¡Z:îVæá;lˆ¼©·7›ƒ?‡¼ Àcßqh ÷».ø :;Èô†pzZ²uZÊ×ïŽV¿Þs}B¡À8tijvßY²Ó}Å1>Öìl!ÚÕH«­]¬l¬Ba$”ä×”Ë÷“/ðÝ6VǽïM±ªæSÔµ?ð­[–ë/Q­Û+Ãþuö>àØl¤‚>°û͸ݜÚ90^bËcBD@·¥˜µT¿¾âËGÒå4B=¢ß^d -9Omxeg|‹—>˜FÖ'QáÀU½ÑujxÊ÷‡3ú~ÖKwy…è‰êOzëŸNUzúÓצ›·3¬ÓMÊLš}ÝH-É)áGdz؟Y©\¡UˆÁ\*tm9^I"Õ")µ-)]ˆµ£žBØjõ=¿^´õËBÍâɪÙÓšEôŠ§~É)ºË)‰1pQòn#å/s[E!zÔNܘ·ûÒ-¥´1ÍMSÇŸÄ­ß®u€P¼ä+ö8B˜Æ|ï)~?&W“»šŽù¾–ò°%>»Nõ«„9@Uxú±xTŒñ¥¤ºÁD„¯uú±?ŒGÍðÞ¯S¯1Á…ÞØË eõœ]~¬`z¦¡­å“ó6 <²X„½%Ï+–Ü&Õ»ŸÞOØtDuƒlá.ð¦Â]íý‚B>p‚кvÄ©m +aι<µEpV̤ó“óÉ‹$‘,ioßÄMÿ̸—¼ð(au’‹»õ!tw²˜óhÇЂaø/ò¸vãÇÿÔœVÔ¬w—[›>6,ÒÍ…²‹úMüùPb%ó¼T¿ëÏ3Õ;úNÓ™G‰Ï‚*Îï÷ýR£:ë +Yßhm·ËæWiàшÌç ‚ª÷)ËÃB"ŽYÎÚÁ¬Á²Þ¹=fdêŽ[#«nõ¦²$P‹¤‚Aóy.Äþ3Ñ +ÒCHè$kã4º¸éàÀ*TG’—Nb¼ÆÐ@™T[Ú¤F¹Ø){œ§S <‚”©²haØ¿vqä¤0eçdo31êª-2Þ{ºfä3"g6<ºr–›ç´g,1Æ^åפ÷4BšèýVŒË4‚ù‚Œ9ónÚ2oì– +8;Þï¢C¤ +¹J€|{75þã_5uÞ:rM̼ª@†š Úù³®#n!æjƯQù:—¸º)i”šraw.ÕŸÎIàËŠXˆ'Ë{î'Üj'»G³jù6r¬›Z§‡LûýÅ’§/¨ß¶ÊO<¾Â‡ºïɬ\zM’Ž<¹GÁ΂Ÿ•ã‰ö}Ás+×y;ÄÓ$±‘oLx1@ñ!/ð&ÝQø¥@–93b±¬ÕèÇkX-½K\5#H-mÔE1™ÉË\ý–"„}©Kw <ÒÍÄ蜥ažo[EŸ ÛPÒ΄isSÆ,Ö)¨BÉ5‡‚·RÙ P„¤šó8‚ÍfÁm€î}ø4…IÓî+xÄHÍņ-T÷}„-WàS.Ûí‚ÒÖ—‹tµæ–¨=W™¯õ¼:yÀÁ¡b+ÜhH$fŒüz—ŽüsUº×¦9e&²_îy¦4]/ê2Šl)@…ú«qÔIöŽ”êbÒ´Út9¿Â~A˜ÊfI|†çœ†çÏÛlµÔsCc2YÁçnÈdUz]v[«¼Ø…êÈU'¿Êcm%n:-ÆN÷^Ë{‹«eEG¹Œˆ6?ZvéÝã÷ºÚëioÅâ‚ŒöWˆ€“õ:á){y¬ÎÞW"_Ãä‹o ùöˆ_º–Ncð%nåõ%to¾òu—¡ÆD¢­È3?ƒºƒ·ð¿„V6Š„ábÒ@ÐYÕå•)‰[‹m±¢Ì!é±%g:X(˜üò»l‘_+yz}ÃͧÒɹø•°ÎÊ^km0Âç-¿ú5²Ú +õ7ž‹õ÷EôösƲ{y2E^•LBàí˜`T¦Îµ_PøVâA+(oËß­••'†¿x‘ŒM“‚›ÊÉâ^ó;d6©ÍTúKYåÀì`Loü»ý’”‡oìñ8¨å—òj.RæÛ-%ôãïÃ0 —$Óƒþ“ƒ¡‘ãÍ/9µ‰©’œÀêÖŠ'›fcªG®nûÎõC¥wJß D:u¤pó +o»¦7\È—OÞ_o•¦—Ø?¬ˆŽ3'A4‰‹ÔÈs»·_ZϺ^AæÌ<Å.ˆ,¿ñetL‹9¶7Zñ%›)Bjw=-í»…yÓ:“ftõÖ’2­SóÕ=ƒíH£š¯é +±Ë,hC×hØÐbCѦëLå ü>žP¢A’íõ²J( \ +OôñB©p—뮹P?ݺEç6m`G/m–ªggÔâhaºT+³â¹y Ÿ}¢$]7éamº¿¤«Ùö¶Ä‚»^Øo}cŸ§Þ˜Ëñ7¡cñKP*‰½ã²ñæIœš½Éó¯ûÊ`HÊúr¹Oö×7Ú6¡œïhÉ ƒ]f\kxw9Läû ž +ƒó«}R?%K0mžŸÌVìíЊú›„é|6·Ü¼uá7Ü3‘KÆÚzljIÄ>LJl€¿*ž)¡Šã—~ÁÎiS°}½”B¯Šô¸/ÇÄ44ï>OijÎk`’¬˜’Õ¦¶SQ3ØainCì’ëvl—‚øª‚ŠÔ²y2O0ïI|ÐÌ÷"°L3¿ƒ}E„{KKë°¥ÓÛTDŒšY)!Ò§a˽7çÐ)ËÊE6ã¤Æį'솦éæ×dÛ FÑsCrðïZ‚šÊâºK +cþϺÖCÀá¤ÝV£LZÆ4‡ßÊø¤c]gz§¡I[%ýMj·œº [?Jv_ͦn*P¨ïß(ñasÙ¼#ÍŸ]ƒ¿júŽ¡‡ÜÌEID:¤œê€q±.ºþ‘ͺàf:•Ì6É'¸~"rüR*+IÍýq”âb$sÑ,GuÓ¦³G¤'Û“¦ôÐä%?EKÔ˜t_6:éï[‘1¿¼±ŒYíµYø“PÜñ{]>§y÷º‘>ÎCë ¹¨n«i³¾8´©® aÔª©·~kz(Ú åì+ ó’³ÀýX +ëç—†çT?H&'ˆ~ÌM;>•C茸´#äúŸÄæù<·¨w\þn_‰â‘(Êm5¥¹þŠ?»c™ZÂÙì¡{´«ÅRLž@û@ž°ÚHÛ ‹c æ#3J´I@ÚAgöÔ¥„Šr<™‡œ@ÄÚY±_á/9ìýÐÊÅ[+^½‹Ìç=8·%j¹/†Þ+,‰ï*ªoI ÁëNç¹êkL“G{êrX r]ÀðûàƒÓ°j©˜éŒWÁ9ÿS¬Ý · Ôx·Þvá¾Éi¨C߆‚äKDUÇÖ.²þ.ÂÉŸž:AB^È7Ôõ€&XSÛ~ÔÙz7}0_ÝŒÒk¤YoM-‚´<ºq<~Ü ';ÈEHÑxFûS绪¨çé,qÞe‚ ,.C‹sU^ågþAÃ!ÂÞmð>ødÀ†ÚµtÜÈçPJÁvK®ÃRi!ЪhêÊÜW¦[ï²3Gv­HVüZˆ‘d$â/ +¦^V ¹ÙIÝÆ_ÉÃÏã<÷vgI`}¯^ëH=2Š0y±¶À¬c¢m uÐáÝ-MUßu÷,¾hÜñ®â ƒüt-ü3 ïo*d/¢]®ê–ñpü¦/³eÖBÙž0ÁÛ|-ݼÁïLÞˆM'è +ÿ™Ü•º‡v‘ºG?ÑkË«.E›KÓ\mƒ©Åy†IŽö{× ËdÉbp—–º¬=¦l‚ÍIȺž¶l+ û&˜Ï5!'<ü"–QK >SwÇHÆŒ¦ÅYwÈï6-îŸ?faN]–åU}Î8WÞ„ÙOªp&ìä@–S*k'rm6ü©Z +„¢”}ï ê> ¥8Ð;nòylrE$¹CØ^%ê(W“Yq†ÖÁ´ïè.¤ÕÆH›IË/o£ -ý)¯kuPîwxÂèÇ$¾-_„¤Öî’D]µ†HüuÉyѦH»© {Ã`…'«BtJù(P<&ß" ÁàÒm½^æ¼úµüî©i‰FRn,Uê×ÝÆÖÊ,)É+â|ì¦uø:5r³y1#yt«KbŠðÎÀóÄýÁ!m„פ1&äžÅ5»Tö1ÃÌ64oŒm Ý÷9dÆC©ÉÚÍbŽ· +ÕÉ&€HÕSŠž>ù€D•*4"LSQŸ#ŽºÞvYNp7·À˜íI>ñÖNoPu´|µŒÅ¦+êXüMY25mN3÷\”šèV­¢ª”0ˆŒÔ­>/4jÄ7â^0F3*¹ÀÞ.ˆ`ƒ²A6g[DYŽîJg*õùܺ†~N! ëVB‘Gé£ê B£iˆ@ñ|¾™‘†Þ¦òV»^Ø›_U֫ljà ¿œänûCN®ä@þ§˜l¤Ñ¹bÒêtdL0 ,ôJšä” íÌÎñføý•f€ùB]å£Ëêi_VŠˆ¿Ò¤öNgÇ~ŽˆÓ˜E~ˆ¡K¡BdÀòt3ñk)Ôà§7³F“guÀdqYõ‘ž7)žÂ3Ö‹TIbvÍmË'¸‰›9,²ëÉ#B\óÞ°Ú¼PŽÖ4,¸ïÎê½”u׸äw«_øA+Äb¿}í‰Æ]o¯üÆ~kwªq×.ïÑü2'*‡J+—L +M/|ë¡/± Õb- ã ‰È}Ûí#_«a[Is^H¬ÜàèQ3½ÙˆFÜsÏv7t]• ./€€“Q¸¦Ð• §µ×ˆö;ÊñĦÿ-[û½8±u$ Ÿöw,íMæìŒ)ƒ^ÃoÛÁ÷WÌ{BlŸLPYuƒ"/»ÄÈzRb®CÒzLÄbº+£“~–K4!ÝäÛÛðµSîìjⓦËUÚ]ïî¥Ú´Nø36j¬Ý¨à6q£ä¤´ÞõNçžÏ¼­ŸË…‹Ò£föbÔ›·›Q%]Õ\-)áÞÕôÀúÃÈdÌÑ\]· 'ÕßU'[óç†&A¥ZÁjÙÇ~»ü(—{rدi]ɵ`p5ìlù¶¶ŠúDºó!WZYÝo©Iñ’¾³Ìš$öîÌ‹«Ûo•œìÛå~Úéh€ÝU2š>Ó§4"tö(ñ|×_ Åÿp§¡ÆN’à6ËÈ»meŠ®}NxÐvá(v5ü¨ü$ ¬'Û½õïq´ƒ”iÜ¥ t2aí–ÏT‘Aõ9â³{ñäSúà +¶¡ªÝÒ ”ƒ¿Û!€öŽd ¼Æÿ9OÛ”H­kÓ¸MÈ´ž½?wý–ÊêhÙÏ¢óè}¸)¤Ã`äó˜’=}œÈEŽþE—¦Î’ÿŠBöx¼Ú¾9vÚo¹Dè*âÕCÖÜEíâ»EjÞK•ÀœäȦÄ|_déÿð¬Ößx^JZø…nºD&q$%Í1Ø«ãÒ;PÊCB5½oRèß·ÝËqZôV J•ð²) ÍIÄ«p,ðNÞ¿H41ÚögEÄûáXÔ©ÄÕµ1B)1V#pa;Õ!pUQêêÞ›ø+­°dá1ÔÅ=®À… o܃¤(S[ö§Û1ô b¦ÍÚ*gÒdf®ðåjI©ÇTÁ»KXÿª¸ÝÌŬ](º¼}§Ž‘ÆáÓƒ×`s/”q1MÓ°hH @—J4l`ÒîÅä—Pµ¬iÒvÚ˜;f³·µLœ8¾{¶µm ÂÌ¡ï`+ýZî¬wA>¤¾¸ÁPIç–QGËm Ôžviy7^i7w¿ùÛóìicœT¬çêó-«ä¯§ ÑP4 ö‹=/f¿¬îæ±x¦RÛÓ^–žùonE’ ¨Ø¸4;¼å¾j—B§ÛŠøý5®)\i#›Êù`—ÙIÔ¬^¸EQ×ÞÓå…R>MQ„jŒö»5™J‘büû:ù§ ‹ƒ¯ÖâN?èèý‹v†Ûž³\K8A¶ÆKŸ^3úyö–†ávMpg´©bÌgä(šÚÜWa1S~±Sü"“R³åF¢ôS¯Ž!«4k<ìšç©á÷l† +~Bg7³™à›ƒô<¿½&^L|hÓNZ¼ð×ïÓ²«Á]‰q«ŽÜGÌÝ{†u8ˆh¨|B«*_Öp’;AGjs#ÈÂ¥¤ÖÙ*ì +æ![:²tê_2t¶ +jëÛ+ BgR•¥6„å  $òߺ§e£–ëL:ô€˜ƒÒ‹= „—B$W°o¨¢ö3²Y`"+çOPþ]´¼h퇄±¿‰èñƒ4–£ôâØ"¿ š0Våo|Ñ@¯ÂfâÄÞ>:‚pø"1N2+gh DHea–¡÷œÏ&Ï=á]ˆ~„ÂIYˆã—”VeÎ|ÕB¾Ê²HßìÞ—½ÅÜ õ¿LÕ#]ÃæËO0Í-Æçi0ŠÎ*ÃÓ…ýz£øsÚ &o¾”¼{Pºi"  “gÕÐz‡œ§àÈÊ#AJ„eWIc@¶ÑÅ<¦)Ø#y§E¼)ÏaËÿM4Ã¥™%‹•¥Lé ž¯BN"K‚qUõ£§1¿wVCœ/B¼Ê¾OäÞ ˆ%ˆêôÛS*|(Ä_er(ÊlÔÓ88Ás@Ø&éjžî¨<‹V†­öÁ-½¼Žô™áðGò +D_Ó®+„u8phãh“ô\ Æ9ºMf +sš$ˆ€|è]]œs‚⨠ý=“y»´«7š^¥E,ËÎ wÀØÿm:'›©^²7ìŽþ›döÃK0::µ[»{¤èB† ó£õic0í‹Oo“‚ŽÇ3¼°ž¬ÈŽ±ë¨ Ö¯A¬íêçû· åÖ,Oý‡ÑHcH ;ƒÅiò‘f'ž”¢Ó]BéÅ —ž¤Œ$!Ö\&D-ÅÄc1}º YµæÉ'h~·fRã½›|O,ñJÎ=Þ‰LßtPs‘ÒáζÝ@0λ£º=›¼ø¢Òô|OºSXXö8•uµdÒ|iÁ—ÙI­`ÓаˆÎkØI%TCE§Üa^VhOWÚ»[ ‹Ùz1zù4.?Q ÏVùªÇÝ êYÕÄÍüÈî'HJöJÄhß'wÐC £Žg}àÿä»;ìâö¯ú‡w|?ôŹàX¢ìJ|SíðíÇzœ€Óõ†w3C:¬ÃxAjŒ]µO‘¯xËÓPSÂg\C &x;:f&ØkŒÄv€Éæ÷:æ:ûí&î½®+ªO]¡œDÄƱ|Q Ì™øÕ õ»@R© íÁîØü¬pcô ,³C +àvfÍŒÀùÁý*ÜÒ';ä ¤$ø­r¸qZ…g.œäÇ×IÌÑÙÊ©ùÒ+4SG[íÜëÛÁ«•NZaÏ¿‰!ÊW>¡H½¥š³ÿÔd)#¤™Â™©Øì¾³Üm!ÁÃKÁCŠTÚ—…¥ß ÚM +Ÿ1Œ"X­ãMÀZdŒBÐ|àõõɶœl6A8(Ÿ§•Ï¹`¨Í¥QŸ;cÈ*"ÒoX;]‘œ2Ј,ß%èü“0‡ìyÕ'Ú=,&\0œÎkÅñ²TÞZ|;ÓBÓaOö÷w’LÂÙ^¡–ûœ›!¬B:«(b¿<î;Ø|ug¶. äÊák›g,ÃaøT šôZA)"&EÂb;B³¸üÇí¾€äBŹ„o\¹08Æ_Çt¨Z ªJæ +Іá{Z?«cŸÇ2\ÇꀤÎO䘰sx¬p”J@,‘ßyÞÚ6¿Òö®SÌHg‰—‘j.ñg)Æ ó“Íø߸PÙ¯Ž¡ût´Þ…iôyGN`ÄŠc™„oo@h–èQæûZÇ{Ã(=k 0ùÀ4|ìÎB¡öÔ‘× ‡¹ý>Ý + æ['ÅU|öqkUÔ^î¦(ˆd-]_g• +aòÑ”‰÷ÄÆû6ÌãÛœY« °º®oCð]§ãÉîõ~„+ÓÖnÛ¬ÅÐD•¨–8/f'NñÜGÂît™:`*â…|¹jάn¸'J¡‘ÝБE7ÃúÙÈ’Þ—ïIÌ +¶>¨´š’äçy¯i6iç[î"Lõ èîÏŸQ¼7Ñ\^‘µ?X¤¿ó2Àµ¾·Uov%‘¤rmÛ±â!iÝbÃqÁˆ;#R Þmõ¹!`dSùE/¯ð)&!‚d±"ñ¶ÂáI9òN²ú¢h[#p^xYî#ìLt¸lKtͦÚƨc‚ AÚèQ{…-É9+Uÿ¶¬ßËâ õ[ tGßæ\æ”åS46ü)KÐÄjŠÐ:¼È5S²0ïD^C׼īšs©ðŸ+&¹“®{–ã?.`°Âõ @ôÉjï­øXÊ3zÐü¨“ƒÔ¿²‘Ϋ€}¬ÇapÞd@õÔŒÜ]-'â`‚\\ƾb V=7ò˃¹©3r'¶1Ï]Üaxý¨.RL³`#²HOW nည’ß°|„ïì:&žåó2§¯¯qu,yB4ÎnyŒ¡óÀöUº„ɬPšz½TmîÉmp&i…O–W•‚Ýb¶ÜZ@uÁ«òµ‘ò`ý5}ÙraÁý~«bãWâ(ñYcË¡&>ìŠî&mkÜÕ¿iÿ,ÄQ6Aþ Ž )&›™à4)TÂà·/Gœ&ÜÀs'ÖœP5†h¡­¹ôµŸ¨™mc‘Y<¤{Yº9-ÆàšÛtY¹N¢‡;;ìü ¢OiÃÊ~žDÖ>_‘‹v=ˆ`³]A4°}æ½7DÑš@«̧.}êÄâH´'è±óà³bCyÖÁŽñ¿W3Í!¯ëŒJcÞMw}ÕzÑn¨Ô}…Eñ¢* +ˆ‚pöîÃ/Ÿ6ù>ŠÚ’Žz„n>ø3»Ž…ÇÑ ~[¹U TÚÜØøµÇkß =ÚOЧÓul´LôîÙGÍâ©›hç;‹²fU½§w‘¥½À[ý9gû“-IGusÁŠÔ‹69ö’–fã sýaÔÃï™ç*0Z6B(¡sîŽtKùÄ{Õ˜å4o0 ýÛáu^²É% +*É nLcs_øª ª>ùµäxëÕ¬ßôS˜‹|Y†¾*1HìÖüH)Sd•£WͶìøÆBV­s~YõýÅÝ•eÉiefpÔB >ô‹ð9"k¡¢²;icGdv X\{?nx­è®ÑAöuZh_æ{FÀÅdáµÙ |P$§¬T%µèÇÄGLx#¹I˜I™±î}ÑoÓC¿u?òú£+ø`o@EŸHG”>w†ëùxZMlÜJ°öˆ9ð³öÓ ¿âŽpfâŠ@Ÿ§qŠv0D *?ùìAjt°×£"¶0Á«{ÿ/6 y×;¨‡:þ&Hz®³xÒÓ $Ð]UÔfèþý‡!=ÏOÙ%­ŸIÇ‘1P_ÕïÕˆFȺúÛÅ;¬Pöœö"Ñ]o¹ËÄho橃d¹á +¬¶$.nD<¦a´/¤¹à•˜,_†…Aμš}j'gf¡·ºÓZÂ.Ù-e >î¼n±N㟓¨¼U¨aå4ôýØ'ï"ówœV 9aú !•{oÏöRð$¤ìjÐÝKDÅìuà3›¢;otá`yºc ÔX¥×`F©_ZB„ÿüîHdü²O…Aö¾…)¼cJȽ;@¨Iâ—ÉÆw-3Ú9™âžŒÕ·ïq¶ +ɼO:RNcg÷í‹Fb«#‚AvþÝ{úåZ›Ñb쪻ÓÂ]Ðb}»Î¸1Ø@3ÞÙÙ\ÂœZ—S.ê"ºŸúõt^ùŽëÛ @£îyÜ„¼‡ÏÛô;ct‡ôq¾C†A’8ž•ûÑDjSjë6Rë‰Öø\ÇüYó€³ê°ÑóRðïrT ɽۖÞJ«¶UýU3gw·ˆ“‡A™+r&ž¥îu3ijV#½#=¿—híU>>ªZò'ÓSz~²ô™5ØòA÷ŒùFáà~Ua7è¦èmó›}ݧËág_ýæ—¦•–—îXÊ|ïþ_˜m1€'ü-/<,xí¼N¤dzƒåÓ6¯PY T?fŠÎ9¡.L³Cn½Ÿ¯nÓHj‚ÏWòº¯…Ž¿¥ƒ“sgÆ‘uá ÞpJÀÏ›Fì"&èŠdáý=¶X]îäû4*…N»ÖÒG¢äÄq4™„ÁOÎýFiŽ ¤T¼ëCXr3¦21©¨Ø/9jêÔ=ŽNlWW 3xý¸PîÆb-xŸÿЛŠ›°ÑEr­V½Éí܃Ê4y)P¡%Áܯ½ hüÌÁ–MìõgDdÂZ§Den0ž‘-q¼Y¸[f&xÕ*TžÍ^HÛ»¹kÙc,Þc +y«>ä—ï«ñ…i=­ÃüÙ«H`›‹$,Ý…«†Ê´Ô¨‰R\7ÊÉÁÖÞ>xÖÀÝçö(Œ^¹È:Çи·üŸôSÁeU8@V¢"-/'šÖGªÏ§Ý£HÍoLáá.S§øÕ Ú> +ðAÑô(,Ñ¡ u´R Žª¥©ʫ퉾ú_ÖCK/uk (x¿·Ÿfµ®í!€ø$vTëmMÌnßDÅ2GÄ„è2‹7)š%¹. +‹£I½É+“øíÊÞooÝH‚¼ÃF{ +¾!Y­\¸IS:W…;¿b˜×Ã#LH€…ÑêEl6ä\«héýÜ0aÆ“qM ü–=¢)ðáܬœOµµ×²²„¿ ÝeþnUÛ^q†J…É;ÃÏÇpÀ‰x蟕õA~ïÞ¤9 „;TFܱv¥‚ùÚZ]ÉA¨Ú=Ô´(p‹——oY¢ìKûA¾8mIÛ)NDxœE $ƒrýè Š£y‚|–§oD„À§øçO†µä•l,Ô ¶[ÙùUÆÖå–C­¼$: Ôý »ù®- •%Á+É·Àª×çfÛßÀÛ)"õB±|Wuü]½Ò?Äëƒ1÷•jXÈ•rvþ¸Í²P*Ö†w ¹ÞŸc{œñINX|Vêû¹í()æÁܦ¼¨ž<™g§!V ¡áülðߪÓ:¹&¼&[”µŒxðÒsôœÖ„䯑»pòâVñû²/nÙê"‹¤0¬>¸k +H<ŠE5Z“$¥” óÚ˜rzŸ=w¯Î ]³È~· @Í&¸<}Fuò.þœ¦¬Åé\Ýy3ÈÝŠ5<Ügr¬"áÏTc¿±K¶7Iª8ÿ@}cÕÉZ•ÑÛ$#Cá¯ì ,½þqRc€L³xËÒD©ž±Iµº?ôy¢ò7Àßð©Ì°iâóÉ$Š/ÞmŽ%b]70CœŒk.—?;§-aድQ+D:‰©ÊˆöÉ lP\5Í-R­“ád eÇÌ.<¹~`EZX÷tkSþc˜ÈúéqèG±W3ç´cŒ"DÁc«LçF—üÐ#ß­Yø0{WQØñÅJL­Cõp¢ «ÏOØþkÜbyå0¸OCo#×ð¼|ŠÇxlèÃÚ +yiáêùZý×]ðŒÁN¥ò{ ¨Û=©fÍ8ÉÀ>¬æöóʦ¤ß+k~¢2Å?šÖ¾V>ÅØÊÔLË¾ì… Zx‚!jMÏ¢¼Dõ@”tG %XÂódš áǯÆ. UÆ­¥j'fT2º×³-^O¡>ÖÛövíY—W<Û¿¬²±û^„ñŒ"ûÊûGð³ ¬MÿôAbÀ΋ÃR+ÊláÓ'‰†3HƒÅõÛDMÖ¯Tˆ4†I@ùÑ,­KŠ3ÙLÂ4Æšô>@ç +º 5GÌYc~×ö<á.~æ¥/GÏO0™]T2ÌÒœÈl«Òn‰ïðàd¢>}¬3“ Þ«¿{ßM_Ÿ¤¤¦í‰´©Êì]¶TçxŸI#hžCƒÕSóÇÞ^OG@³Ž½0ûΆJÃ^nX»A ±Ýª·r¼Ú +£´Q ì§öqÕP9_7h‘d%*aÏàeŒ¥¿àG +òôÎNŒáG@6:ã'ï§sÐvyW'm©®t;*.yF>ÊDÐ ÚnÑ‹Ü…?»Ôô¥‰<¢kʤãÕ^ªišnSW •†£Ú„צV?Ÿ^m¸œ‰CÓ%€ßÛ½çGkR—Ù°^ÔÊ1¸C)ìyÿH´n¾ÉYÒ¢åuŒ|ƒœ´6Õpªû8Bª<¹:pxy /ŸñR¿nÉL ¯?Ò‡=JHx¥'Ýa=ÝÄĘúF2½Bma|o䱜{JNuYjXŸex¬ËkväÕš¦½àÞ8©±ÂéC–`ƒoB51ÿûlömeèäU.p-äïËÁŽ-¾ö×*úéÆOÄØĽR¤Òüt ³Äk[  ¯0³Ñ­‚÷ ÐCxÞ³Ïêþ‹Õ Is²òµR=âã}.)ÉA/ËÄi²—àGêžaÛæ8”N u"Q»2¦üîa :k.œvÃÎ ‰•ÿ^ÞBV%Ùò4xiE‰½±–É›û]:o pÍ›m-EÔÐSxÑIÆ­u-…ÑM­E²h(}*”£‡·´A`A—,Raå™_²å¬¯cí|5$Ðʇz IcðÛ}2zþb¢šãWÄ‹ïÈB˜¨Ÿÿ¢ßöW<ÃFÊ‚®Oí¢ï«‡Q× +8–0c&íf~³—v´¦ wvº‘ïcÔáÍZ·Û–=54]wdp*á§>…4…hh>ô! ’­ÄÀûï(CæcAs¿¦Ž]ÄQjg!—ñJË_ÀL¹,÷'r+sá0#¯µ™©Ö5ÞÁ)Ïå§i Vݾ5p íçšB7pUp_ŹO‘0ØB +Ò’lz N¡ºúû”´…•ÙNkY ’­^òô×÷œ~ÒC‡i3ãŸ,¨R2¿À}ÜHô†Ë¿“Z+¿)ê>JDÌíóU=ÂŽÄE=·äšõó|óf<Œm•V86ê¹õñèÁâ:5ŒKðá’r|ÃH#‰…Ͻr¶ÏɼðɪÅnÏ**]3Í +g½ø£™1^ËÁE?ƒ14P°JO·Ö;ßëT>iE‘,²‰¸Q¼‚ipØèÆD¸x Šª à&ÁjC-q4\šŠ%”®fSJIzµNöâ4å7 +† VNËzÑgè!˜Ä¿[Bä‘i|æà5éΡ¦ÌÑ€æC×ZúÃKe¼Œ”¾³—ÙÊÚé+kv0àáyCìÅŒéÝø§ZÏ‚­ñ0:ÆÓ¦GY…EP;×öñ aŸ¸ÒõhJoÑL=›ƒÙ½že……Á»Êr–2^bkU­âïV(—žêñR§’bc6îWQ¬®šÁºr½ ‘†8J1ýÙgåY•¥\$¢øµç_{oê‡ËÏç6Ë{uÛÝ°£’Éî*Ø£q䡬¸n…£­ÚòuY ͘0U$Û…í¢”¦˜ÊÙÅHÝ̈¶Ì®Šº“ÎOp‰d×~J¼Ý‚ûcåãÐ`±ß/y8 ]õ²F–¶¹ÍÑ:>Ýöéø¡ð½£2Á’gü]¹º—ô來C§z`Ü}´’‹(‘£Ã²pFà!²5=Ç­aŽ@à`‰Ÿ){Ñ$kTa̧ÇPÑ…ÃtßYkë×Ù<=ü€B »ÑùÈú'ÈEê•JŒ>ýW´wÚ¹#誤=á¶t×ÉüRIn¸±ÿm?xWVC6S~ 29|êý˜ç‡Ã +ù +g·ÓíP‡¹»ùÄ1¶\Ôù‡Ð ¿cÚ=›gAY†.ô†œÅ Y`ÖõÕ(›.ahØ0Â=ž)¼léÓ߯¢ ··8.á¼eŒÞ²¬ÊŽíÙÓŒòÈ5«¤pQÖ“Ú†–]+kâ±¥CS4¼¶4Ïy‚?Þœå]q½ðAáV´èºïN$; £1šM­jëÊÐþ`‹‹¿Ÿ„VpºfÚ'µsA/ò½¬F”>ÿá#”Ú/_íÁ®Š @xOŠìÌR˜Ñ/Ñ@_ÄaÐk²“ Lmë…å[8Nq{ÅžãîØÝü½øÛÂ"bu4þL¤¬0¦?Cƒ†lF6Præ’ClGþ¾B œg»‘¢í*¥}º­Ú#&žV§”hߺÑ;§÷ó'³¢ÐΟ¥?NQ(CЇyvÜ—5„zÊ—¯¼¯l_ß{èôª¤ ÈzÕD¸`?H¼¬P"–»…+,m…tâSOŸ™6æ ¶·ÈÈ*í¸¢)Xq’ôAæŽ?q¤‘À !;K˜ÖÇu%*ôÐ>ˆ¶1`JnË,­1ÝL$ÖâFìüüJ +‚”iä:WwêðSGã[®&t8¾Ê&Û Î„ ¥nŸLS‘ä{ †«T5,S™ ÒQö +#8÷Y[ï%*&ÉàId³±/fzn‰SÎxÎåÝ÷…}ŒÓ›ñv“ªë† k.3š³åZR°ª +ü$UâQø´¨ì6tIþnPõk[B[„tÅ6Ôj“» ä\˜²Ì—²y… ÍþÐpÊhò/X+àß#B±Ýý¤{ÒÛؘ[߃¯J‰%“,vÛäNq’ÈÅö!ÚYò_  un™`qiBbîLi÷h˜ÑIÕpÜa½x+áÒ9eã‡ÏáŠ-ðR"9-ĺòñð[篸Šm0J·jô%q9’ +¿RH‹}%Õ™ÈR ²ÅÏRàbÊ-Rd>jÀa~OŸÂn6­Í¶ÌžûU}àŽyvƒX½y\_žãAn(c_ë³#㙨ÇwÒb—úÖ÷¸7]G¸ÈT®ÀZf +}P¥’ßù›áÄïW Ó$™Zè7•ð‚}iߊñ¡õãT¬¹›ï…àï7L D·Ä +y(åºßð}¶/ÖMof9ôÆÜÇaÊoíï²þj¶Yñ4MžtŸaª¢Û 뎖cÏngj¯œ‚°—&Ÿ½¨ä­ êßå5ˆäý‹÷ãº%ÚÐ9NüC¾sf‡+ª¹AQ‰Ed<¡ŠôMÞ[¤d†§–m¹øªQOD–‘Lï£_j*03pˆ9øÈýxšy¿$× yµWÄùal¨<%eòÉw8ä»õÕ‘Ö> +Öý‡ú©jŸ­CENBÉYs‹ž"(5ë®úWòu¬Ô~½É’?øzûK5‹¶¯-~ Ñlï"›ëPùÓ[²‹ºË³³·›GNü¨èl$÷|DWM”רBÁ +ŨËØ`=¯á{ý×Ø28JTÆÜ¥ *qð2l TI^èS—c_;ƒEmrN*ö{7Úe-š€Ö …/aÆn«æáå?þq?Øàæli#Å]ŸB¬a¬¨?Ý;vvóm:ëî{ÈdQ-þÊž6_ŒŸ~qíUeô!”sSN:¹£å•}æëÝ9V6Zö@”Ž!´×)òCÛ>g÷SøÂÏG9Óèkë«S(ÎÞܘUÃO¾ó°ú|i¡ËÊX˜GŸKŠ Õ,Äýø}y¢cŒMÃßp)µpÁ{ â½b¬›EJ2HxŽOQ|G¡zGªûŸ@~Œ±!ö‚‘Á<Þ$NÿÐÑ`;‚ô­ßßÕÁ• †áŠã)*vAÌ%ì j쵨ROüxK@v~fW6qîÔëô®3(âMØ÷4¿gbÆ4kwJJ\!]8Q©-u#7ÓU¬âÀbø2Ù=óiòñ)z³–J»ÇšÂ)kc‘/¼ö–rÔ¡r¿×ìm(¼‘äg Š¢´)yà8)") –ÖÌ:„ËÖ àÈ îúqô ZcðËR¦“2²æ¥Ï—Š.r˜SI‹ðá°Åšöהʥ¡N¡ÌX³¯¯]þÚ2ºf´«]Ýõâ€9\®ÜÞ +Y6¾5äÁHh=/Ò#ŸgÏ5Ópè>Í9¯|BQ ¹§äŒÌÉ-Ê#&8{‡–)ä]$¦O˜Ç^òjGU®ŽlU_ûʲ¶àn®­’YìOHÑyF/Aû¶âˆ²r2h!ݼ긧™à{KÑ}¨ê©Â?+@t_¿Ëx/ä9„§P1Ïj–âyv8‹«cÔikŒ¤ÖMWê0C8"çÞÕý©šòDS•àßûZÞZ¿ž.u}U¹!ȇœŽN°Tlì«ù¤TÀ¯~Óá6®–‹õ:QXÜHt¨žðäøÁU늅ªdQr .PN€1ʤê?7ƒrà M^ž)2NIWseçÏ]‰òCS¶NUþöñ;wª—¬ÓY áùNW÷ªÅu + +/n‰2+g >"F5:$P£çø@EÞ~yöDÅЛw^´z%áK±'“’‚!£€ÍମÚ9H ¢ÚVÞ,} +Új¿(XytyZ¼üZ 9À¢(<” >Û<«*ºÉŠ„‚SäL·?Ô¢èÞCË_ùšYºëu…f ¦êgƒS‰lgœ` gRi9üë b¤mÕƒfùx:nš¤ZaFGãëWk^§Èñ¶5‹ÃÅH,çˆx•|,ÁóYƒC9iÿtL³SF:KªVP(ÿÑq<Ç›1ŸÞ<¯Íh¶XžÄ!úC’'Ža¾gøCïÀ‹ôÄyELÕË +ËOÃ$œ¨?ùÞ›ëˆí¶g}§ê²†Í%øw ø2 PÓê« +¤“ìóýºn†+|Ø͆=Æ!Þb62ÖFòŠ«f`ö7:fæËð©øn¨o…z’Yξ˨àwšg8µÐôù +¹ðâ 2¿äHxN ¢Özàõ}ŸÒ‘¿ Øâù…&Zò¶êTV­êòJŒmE|6ÏôÚFÎfkÝï¶+_LüE´îrh›Ã guXÍ +kU½°:/Áû Ð>òz¯–nÏv˘̠“À; žªNaàtC:ç«]%SFNPžØUåñ˜&ÎØÝHjË«¬ÁßÕMeÐÏä ãÞé冥.cªm¹«ÇpþF.Ò}AåÙ_¥ñ]Sñ(‰g« ˜ìÀ DI¼º®”"„?Ï°JÚ¥Br„¨§9(”ð×$®¡§hÓL S¡²È”›â½^Ä‘<¥n¬ûôŸÛÓújMÄŠß×Bèå±ßCvˆƒÞÆ÷‚û×):r²”KÖçÙ<ûÇé3Z^Ì’1Qò5¨u¾uuN´h‹ÅÐõF çüN´ùËÖ úOˆ¤ô¨=é\-o‘@ëxƒ¥ã4Y˜;›,ÊŽa,:FªÆ.A_–€ÕýÙñ‰.ô§ÚÕnê¨a¡aÁ ŦƒQ_Û¤IÔ;-´­æ öÀ¢Qéopf™O6"C<—Fí„2»ŸŠÁ>–HÈR_VÐ4‰¯5ûŒÎcƒ–ïÙôÌuªN")£¹Fµ½y¤®É(A0ÂËž¦Ÿp{T¶‡gtEìL$ Š£knð¶Œu¹EãÆ‘£þ@ç)mMÂx-ʧū©W¨ŠàÊz-à€¦ŸüdR«ºÇ«e!ÚqÂó³ÍÞ#ä3„Ξë"œUqD œMýÞ\8³„è½^÷ˆˆžÖ÷4I9îåË¢ÞÕšìÕ"©O$î)´Ò´ÊŠãtÍœï]±EÓþﺈàÌù{g +ÓSç,ºgÁŽª’p®‹à§-ó&:~b»6d9Gû¡·˜O²N©&΀HrñYCºÛ6 Õb'5³¥YŽ ffÄ=èEGÔ’Oýž”·onE×>Gw/]å¯ C/9â­Òä‹y¼Ri›¾U²Ò­Ûc|‰t«¨ +›ë¯8hîM›CEÕ¥RzÐ.¡&{šÉyÑŒºj8þHÁ榙Èø‡Þʽò•‘×z2PRr‘z˜ñ¼Ä¸"†þjE5T'ÜŽFkzµF21ÜÔ9Kþk¶;öZE`{ !«Œ 6B®×ÄK®¢dàcLBëa÷îúšÿv÷äEšZï³=²lå _lj Û-V§.2…'oxèøÂc†.%>ˆ;jèC4U4ÙZâ¬ÝWˆ¶É„ù'oWàs¢Ôð ¿óÅæ,ªàS"ì±a|Æï/49_ÊfÅKƒ¾$¢±)€å´q羃UYçv´ÝöÉšù!Zý:0Æì»'M3½•íA¤SÊØ¢×!Gi\˜Krb:üúÇ­ßý<ÒÄx…ó1œ6h§¦ã¥ôFˆ*¼†äles°>ì$Êf³Ídf:Y°'"v?EbØ€*jÞ*L¥Je0&׶`æáË?hĉAøåaÅU›ªüì¯Á¯`Ñc€)°ŒþÐ –(ú)ò'ܳ +êgùÄ,×wÏSU^·>š!A=G»6S¤HÅ +V«CßR7Dr=/ w¬„s¢†±Ah"˜äÀæòáê“i8£`ê·DV&=ÛZ!m·ft'-ç.ªx[…« ý‡´˜ºbmp·ÅŸ([NŸêaü8÷~ª$И +ó‘SLý¬¾¸¸ ¿‹ðÙ[¡ñ£—ìæ+1'":÷ûÞã†3'‡)€jNq 噟oÓÓøÀ% @±Xn f: ý2üi°3ƒ$KfÞÅíý½`gÕ6H‰¥hx…y +Ðow——êži¢ø|ˆäæuâð4ƳËÈ{w;[»&vg…¹X1 ™ºÑкžÉžeZÿÓœI'çüñ¿w‘²{Þ¦ý'ß)šË-Oeþ)¯oõÁò4 LV‡]FÞ¼xl@Q/”åçø>D£(æP+¤—Ù .Èc`ß;öÛƒ¯ZfòùÚáÎ7g{”ç>åŠì媀 ]Œ}˜0(§´}˜žI” ð4±±-jGF _`¶í†rÒR8æu½kŸµ©-á +å¢#oÚ\^ Ë³ƒ¹/ƒYKæaÇÉ6m]>Ïú/è@iHÌ;ð ¸Ëëúú†¢#½]¨¸Çœä“C‡×*Í”¤,?#}¥íK®fA‡_ô-~á~JÞ/›îs2h’¢ä'°?ÇöîT^y¨A¶ö8M&òO ¹2V>Þ¹º§7Ç<¿{/F3²b½Û×­.ÊÙºJ2¡×e®weâ½ì1΂Ï^QÝ„¢¸*#núEž.5qZŸÀ_<ãѱþ@V˳ޥÆ&ãi}¬ŠÝ·›¨© åƒ~^þ·Tìê@;tXµ¢[¢'p7®Åˆ}GóEé^òØó3±ôs¸•jÞÚvæ+Ùmnµ8CoÅ¿wm²Fh z¥Èx宦û$ª€P©ù}턨k‘=ÄE ÝjËá~ISÎäÖ[=©»IÁØoÙ @è¡~f»þÙÅyŵ0³¦;9¾õeyd$”ù_L7úz +ô°¡IÆú•£6RmŸé`Ö°ÃÅ.¤Q‰É¬­°|Y†sóÜa´*è8 °%ˆ Ð$²,ÏOfT@*ºB§”v›{žD€fxxÇ¢êbÎXåj~/³ýÐQ!;5]B˜Cн‡åÊÔÿÏôó§W“ƒ.Cì~Jb(f3}yX:¦¿­¦åG=m€-ˆc>hË£«„í›ÐæþäoX',Ù½Ö‘üã‹ig +z…6ˆãªÝ†ë[ÜBuyà]Oo0¸«rnq¦f_ðX>8¡³œbLO³Ù‡¼Kb’Ã"«& +!Ktöæ¡•¬váâaïS°äqPà>Rè `pªm›ý€v®SñH?·Hž[M!%¿¿Þ:£Ï¢-/ æ!½š°+#l +ሜS‘ÿ[…U¥q5ÀE›‡æêlà°þ#÷Á –²X­~[€ëè ã¡Á bò8i™ÐÍWèªh‹§›áwR3l¶ ä—Œµ·BZn„Ô‹Ñp¯Üç,’%ß cˆ¯N´S>:eç{¶ÍŸªAÂÙª íÒãxrf„,V_A% +™",e:Á— +œ]u(èM²:ïk×þ†~¬‹f4 ®sÊ“îqÙ§=CÈj¬ôöôˆ>Rö~“ê*ròKes\„œ$•þÛ `„‚¤ +‹ýÁß­w†ª_H†A ÏA92™ä݃S!Ýìâ´‡0QÀ7 Jˆ]ùîY‚¹“Ã)³øýCç«ÎDm-ÒÛUl—`Ç]-иˆo7Õìæ Ä`ôl7L$$Ÿ ä¶M±L/í¿J¡Uz¼•v¸èÏY·0q<@Ñ·ámD<4{é¥e©\JÇDQ`[`ÚãGùÚÍïA–Y®*Yvíû‰– kÐG«‚ìÃÔ¹Kýä¨N6Xå=|Ÿ|%s6ê캭4µ‚ߺ»°[ŠJ"yY å8XzÚ‹”âvžê\õr»yŸ21Úƒk4 ‹Zåj%eÙÝœñ—3[iGI¶%)ÅåŽKò"tÓö9ÆÄMŠê˜Ý¦>{‚KC:@à¨mp¥îó‚Nw`+=SI ¸aYV¸ŸæØàÝoó&t7Yå+¥WÍ}¾i¥'2É‹Ý´Ž‘D³ñ–X¦F7Ê>ö øÅ©[¯·ß&rÙzZ5W4m˜â»åVûߢòÙ ´ß¬)i›ÚÆ°F×@ÏQZŠ}…a˜o¹ÌÙ˜Sq~ª„ÄŠaß0†eìgæÄŽ³«Ý$º ÊE@È •á½:ó=gÍ6…e»z=‹à,„I©™¥tûݪõô„qeƒ*àb10¿ Ý©8HÙbÊ4νúPŒì¤ˆ!ö}ø¯éé:ò9ªÓVèȹßÎÅÊ;Uþ[¸èÊpµÑY‹ó 4"ÃÚnLȲ])*Émü˜Ú‡gæÎm€†9ÖË_Rƒ™ßÄß…2B?C½øÞ6F¥[®c±Oîæ³ÛÒP[ƒe~Ã\Ú>‹°ëTß%bæF€M‚ËPAðó _gKÝ&ÀTÓÆô„=·Ã2}µ…±¶plxrj¦Q +Ö½‡é½ó<šl lA˜\>g¥ç¾¨eTãþÖT‚Gù+~O]Ã]2&/¶Ò4>Çÿ/é]/2sO~°Ê{µè_æ8¦Úgh¨­¤ƒÇ«ÃBX‹%›Véî.=\Û>X§V%1Wg ,³HP÷íLw`çø°]™¡A“Çn±h|÷ÓftÓÃpei;eåùeKz4ÀŽnœ  ^Kw’ ¯‡A"nÝ*i¿á€Ò;™-uD«ŒwB¨ä§v$c|ˆä¸%©9UÆX%ØB½Ýhmc%H Y&M†>äq´H@“ŸÍ(ÓÍ­µ¢à+ç2Ð?Nˆ™ïS h4q¾¥s‹.;…1í¸Ø÷TI ?Š—i&h‰Mñ#2æ°Ef¹gyœ¯áG&àlRZQ$&æ±bö ˆÍ©ÆUr±qÚY=VʲÁIŒ” 8é‘õùÖÙ_næc +Rq„Ôž§Íºè¼»4ÖtANÁÉ`›oíÈùCØÃä}tÅ-¦gÞçæÅi4¿gž5I‰;|'‡‰Í0„4…ã +šg¦äðÏÜ5½ +jí?èUý8ó¡´á²ïQ®•‰„Ö¥€\ϹɊ w”>baú­—öØIZò±"0ŒGèBvõÚh3Tŧ1"5ï.€Üº÷Çb³¾´ß@²r2!H¸½–ÞüÛÝÛ›7õô1­'$Îε,†&P|zf«è# +áòWJ„ù´~• ÿ܇MB]ÏSZcã²k¬ªÙ w·`P°kƒ“S»/Í>Xm\•oz± ¬@²LæÏËÌß~©Öa»¿w$)†‰ÅAt º"²&<ÿ¾MŸWƒfš¸œq$+ѧ¢ò +endstream +endobj +4119 0 obj << +/Type /FontDescriptor +/FontName /OZMLTC+NimbusMonL-Regu +/Flags 4 +/FontBBox [-12 -237 650 811] +/Ascent 625 +/CapHeight 557 +/Descent -147 +/ItalicAngle 0 +/StemV 41 +/XHeight 426 +/CharSet (/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/a/acute/ampersand/aring/asciitilde/asterisk/at/b/backslash/bar/braceleft/braceright/bracketleft/bracketright/c/caron/colon/comma/d/dollar/e/eacute/eight/equal/exclam/f/five/four/g/greater/h/hyphen/i/j/k/l/less/m/n/nine/numbersign/o/one/p/parenleft/parenright/percent/period/plus/q/question/quotedbl/quoteright/r/s/scaron/semicolon/seven/six/slash/t/three/two/u/underscore/v/w/x/y/z/zero) +/FontFile 4118 0 R +>> endobj +4120 0 obj << +/Length1 1630 +/Length2 9604 +/Length3 0 +/Length 10449 +/Filter /FlateDecode +>> +stream +xÚ­weTœk–5î\ ÷Â=8Á]ƒ‚P8EáÁÝÝÝ]‚{€\C 8 Np ¹wº{Vók¦T­÷9ûœ}dŸ÷YUôÔêZì’Žf YG(;S  +¶7suQqtPf×Y¹ª™Ù/=½4d +;:ȘBAÂ=@dàæp ¡Ñ¤ÊO.9GÝ5hùYqw«:ä·#Š‰Hb•Ï'óslñtM—Kïýf"%Ü“ßqÓ!¼Â"šü›¨¿›)[/,³:[nGp*ÝDón\ÖV44ÝÌ èI€óî7ý{fþ<#íL/¦XŠ#«V +JóÜ•[“ã¯gÏ®¹ÉaÞµÀßoö ŽìM,µŒÎªÃ¨ ÚÎ’Ïô¿ 2X§âîÓ2›TçÃœžÊ°—¤jÜx¶ñØ)Ç&£ây÷Ó3£š%0™ê•Ž¯Ë0€y À쬮þ=ÿ©Ý¾Ji’*Í,¥y{_ÅÖ¼¿!YkVh&*ÜM±Ð‘ä–]Û¶ u w3"胈TkÆ0­§·°¤ý0¶ º!:rÈh|Èz‰Ø4s6Iì[7*úØÊÁɹ½˜õ):ûÇÎÅ= íjrþŠŠá—êÊUÆ{O÷7l±¹û¥4×æ0­Ù†Œ¼n)çþ8¶¿{– +_fñ 5­… +îŸÑ—kÏoá| öæxŸ(i³7dÙž‚ÿ^Ô?¯ðYöD58oôh’%ÏŽkƒdq/Ÿ ‹&çÊZs“¿Á³&ª™Ø*U±”cÿû<ºüyŸ“]„£âõ„@3*Œ?q3«‚¡YŠÄ˱®f¾³¶ôÖX9"è\κŠ ++W²¿:)ÿjJ£ÔêÇxq†Áyóg¢Ç‘×&&)gïl iñmN»Å¹IZÏ=îdºÏd‡Ü}Ä‘À4òìR“õ +¿ÞGØæúM`:ÿÇ`8ÕŸÚdï¹hÆduZê +!ó:H 7üÀ½ôÚÆdËž•†+›Ü óN…–ü]þ{$Qûh-õHÏþu¨ʶê)£<ÇÊ/£{Š³N^ƒoçÇ¢­,ê1ÁDnvU•'0ôSþ©â—x¢ý×VJêQêíé“÷‰=~E„™ýž¨%Õ¦Æ|Ù0ƒž'^‡=êMÿã|Úô—qK[OØ®¸ÌuñÂç¦ÍÄhaüŽ=¾vTæ7½ãg±²ÈÜ6%%T²–Vh=6é4Ï%ßwcU)ý™Ö_-ÚQ¹fÚz~ç¯ +cz÷ïÊ…­µO˜žÈ8toËÌ‚l)y*ÆÏÝÔQ5ºeEaX6y*#·§·©{…˜$c¿ÛÑÈi5w9º ÓnàÓ%nw²ÓeéÄ%ÔbYô:ÝpFē܆ý´ùÚŠiô;ëü††\ÍzÜnQßîåÙŠCrýï¨I‘<@ž—eŸ<£©4voø‘oÌù{ÓRmP’-D÷“$IÇè“jÌ÷ ŸÁsÒhï{»¶€=°Ú¤Û×(ƒ†©Û‚›m±½”›Øk,·U–€u”=Ѭ»’K~Zazhû«ò ‡h$ ,XC ‰6:ëѽXxë‡W˜™hœ[ÝxfïˆÔ ;Î-¾µà&YÎô&¡3/YR#ºüc46r3a{K‚_jÇÌ‘Ö¨®år‰M‹?€yªß|ý ÕDLÌùßt5\…ˆñ/£PX¨ŽÎ`YÍXéfmä—€ 5Ú°Y´•xC6±±–—ÞÁ{«À}Ô˜­Fá«?é£\Ò‘»¦²¼äBÊ'hî™JNòÙÕ?ô#vE”œnhÓá®È"š8ÂäˆóR%É||^¿Ue²_.íþ'¡‘3~˜aœ47íqcOdË™„zòSÇVõ€V†nª±Mäg³5ÞÍÒ<œxŸ 5÷zzû¯Ïi'NÌ3©'¥×¹« ý˜èô»ë•u—͆/&sƒEåFE†ß]½Ö6Z§ì](™ÈGàj”¬—2p,¨IýS´úéï›ÌoB5~›Â1–&:PÓö„©yÚô‡Ê$“†)7¢‘4û{ˆÂ"´±à“¬ÉÇÀ …nvÞ8À¹Sž]o´Ø„ø:JªÞ£ ƒ†æ©ÞŠ‘òë#ά|RàÄF¹GŠÉ@°°W­psåÊ‚ÜC)<Ž¾à¼¢“þçC{bþqv¼ÄÉô³yi™•šøcá½ó)wö½ø¹˜7ˆj5öFlï+‡çõ!<Š¬æj1¬Ò' +"úx?´oÖ_eýäÑkÂ(”Ö™kg€G¾²¹u«gÕþ°i·â~;þáç;ðñ;”ûË’~©ä@ù‡Û«[.ÅÐ}Œåâˤ-$&œºš‘ Åà-‹¥Ó[­·búG^¤—ÀŸ®žœ²¡!pYGkk”” dú„N!1¬»§=ä,º¢-/…ÉèŸIÏT|€KLþÑBÁÏÊ°Äa`™™€W»ÉOŸúæ‘®]x|ß“Z]ú[3«i’óëÊ Ì «v±Ü÷¼É¦ýåɶ­\©ýw۞짟vž"llïúIÛûEãçѨ³|›ª/¥ü?-ŽHX1ÁþÖJ´]ÊJiÖÞ<`k®7© +CO³axCU¾ΆˆÎ•çUò˜á‹b™2'ʆø!| w³ÆT™‰n‰‡ªè/Ëå`smWrgoݧôŽ•e¬ð´ÚÑÿn•`ý·I®¾*xOÈí4³ÒeªðºŒ©¾¶Qeb³,ê\®»Cw{ŸEPö$–l$ð o‚·'“6ð]€J¹ÿ=X󅱼蠻÷ë3 ?G?›ó.öç„DM—~‰·ùl +-iË:™ ]ͽE$„Š ï;Âê9FLâÃ|Œ¨Zíáþ”Yì˜Cñ”2gî +¨"M½H`æ±ußw_[Û1  ¸‚Qy“ÿQ&E_ç¦Óœ"2œûÑQ”ÚÄã6¤à«!{“fåè +Ý鯆qÔt&\UC´yòüUÅL·ý>€Èvä—£™ÔÝé6 m6†h8燉•ï•-`{¼p!¿oõy+ˆ„¦€–+ òu<ÜÒOÉAW®Sµ—Œc +…W{°eh¦g˜V^ñoQ´Þßãî °£XeÍñÛ® ¶Qq=JÑ®¥ñÙÏÔ‡oYågwØà€µS5SòÝ?ß.7o#½!œöõ„sFóH3Ýu4ß Ò¶‰ûN^Øosùî|Ö—.綣#£ÿ®éÜ­OŽ¬-0Ûݤ§ïX–+{ïWbhí¶‚om†ÞÞøŠ®Ýb\g‰¥·×œ€NŠ¦ +ÍàÛ6AÈ„wΘ W¶ç.÷c&´ O>L­Cp«ÐÀŲ§ÿé•´Í«£nƒê 4â¥q‹GR2ðFpçò+æ,Y¬<(#’ÐƹSÈ[-Ö„ +l²Ôàw‘6 ´òEÑ1 ÄBY +DFD}Ó¿˜w姮š®YÒÍ¥,5 3ïìö¹_‰ë‰®Y+Km9S©fæjò¢¡šRÖ; ÊÐËð)úS"mŠWG‚J¸ÝGËD ‘,¦ÐUJ#3Õd$44;©úÜœs‡åZì?kÝyҚν®U2ž¯îfÇõ=·{7ݬ +p­OÈF„Ö|ðÕw»÷•a¼Ï÷W8ïÒº.úr†ºº¾Œ,\çÒM\ìa^`?©VÁ¼GX{w²·~3ß«*‹ÚúýýÅ|÷VxèÏ gλ矤â|-ÕzóÊÎR +Š {u½&xß]C -1G³ßWF‡YZD¦¦i)æø ^åa½º=¹ðÝw“Ñ5O{núÖ®”l}µIÖ9àTI +%1X¿ÞZßò^â +ÃŽÈiùÝ·ïe_-0K¯MùlÄ#w±ü³ž‹ôf[Ÿ_¼gߘÙ\•½ªÈðl¯Ò=@`‘©‰ïÉR”-Þ£ >Ú[1`õ’é"ÔÒ+Â!Õió{]?Ž¸¼Û™9{e¨v¸%ÈcÂû vgm’$K#az~Û3·ßñΨ Lᬠ+ÏCkÐáïÞïö(Ú`¤MC%Âm»9YË–„•Jè²’‰idiv‰>ÿ4ìK®‹¯úy|ÓÉW;p]M@š=¯kÉÄ{E¤>D÷´Àfhhp„ôI¾ÓÓSb¥.˳ ¬ŒõÅ®býY·­µ±‰{¯È/j‰"à³¼™¿é$ÑË$æÊO‰Œôï1ŠD¥£Ênu°vÏ]e\¬FÛ®Î\ÚáÉ6÷Ï»Éeï!M ƒóÝÈ_¦4 GL­‹ Úéux¿yíÄKcú÷‚UEmS\BÏåìhÍÔPƒCE~žLY+}S6ÓãrØùŠRþL,ø…Ì~ÓO[õ3onœ¾bËÉûÞ^áVA’^ä¾€@£ÞÞˆ ø¡C¶†V²“ÅÄ}+ð¹Ô=Ú¯ãTyá²Ý]÷½ùè`²;p,ê|çX™íäÁ/PìÁEú@ç a[¼@üùEßÏÆ“ñ|J¶‚” Šx‘Ãh¤òJȯ•c‡ -|OM‘2îé^SÕ¹o,oïÂáaãK”AÝä”õ+°5q㶑²3ìê"‰©ñÐ[±MâºúÌc‡ñA +Øiúºk$²Yú¦K1’Óã¤FþÑSáF(¨ÑeDwG4ÝEÆtåΙ訪RsJ°´vFÂbV˜ââd"¸Øi+3ª¾³Î ;æîSòl.ue<Ñb¥»ôWø1’úC¼ŸN ½ 6ý©ú‘ó6±Î]cB‡oèE$h¾"<¬™ùÈݬ[Mĸ5NÉ%mºLs_uœ­N=×sˆ0ÛÂx¿màÿ€ÐûéDÑp³uz?ò³,)k21„£åé÷,œÿ°ˆ{ig@åçñÃ}ÕǪ…›öî3¶äÕ—Âò¢ƒ=RÍÑŠ†ë×4:MW¯wR…â0mG©¶?vÃAà›HÅóNËEFDÑf +þI x™:£Y¶†(Cá"’¤!$ú’Pƒza"žL­xlbl`ó*…±Ûè3@')Wü÷<Ê‚jåê§â™Žk"T¢á’€¶@òFéžcv§R{æÔ5cXHý×R)nùØâv5£ +ñe|Î/5²„±M¼¨]Š5ojz ëî®vŒâTù+õa¾Ãß̳™¢JŠmîÓÇjì¯B<ª'`Ç·Ð¥•{!ß‚Øh™ã7Èúè$Õ{;1w¾ždHΫÄ4ÆwÁ¦êZè:þ¼_×Ö +Ùl?Ë8¨Ä9+|³4W„Ž¦_ž&¡‚&iðé€ û ‘™–^_mó¬ã:,o¼#ZhëÇ„«DBOƒD¯òv؇^Ñp‰4Ûõ%’ÔºÕŽhò‚m]‡ž—$èü¤%~xK¿IšŠx¾+ˆ ™^=V°ÇèÎdÜ+†(Rü¸'á̾Ì~{bú ž}»/Q#IêAVèÂD ì6Zd¿-Xe]ɦ¼MH£M½Â¢ã$~±Ã=¯ÿéëpù«Bv9ÆÍ#æŽEïT¤yù£±¸r¢–†8¼ÊU¨döÓôŸÞù'éЯnýøp〱¾FJ¤®â}žú däáLÌPœ‚ƒoœ<‹nû]QÆ‘o'9Ž¯[ Ë]«SX+Ooû㯱?òÏÞh«Ãs—©áS„y\$ „6ÐWÎØÚú|Á”9ôI2-Q¥ä8šhù¡´Òªlp÷ÞBæIŽyT )¶z+›ÊD•Ä}-ÇjšÏµúö•tÑO*þÒ.?X–\xòÎWŠS…0ÎÐaE`d¤³òsúyYæŽerõA¢[Ô++›œ:ö%P]䬟c¡x¨Óùc»wSÐÛ +íla|ov©%È·a—Ù:-‚ ñú¨FC¿–ßë›x~±ÉÚ²¨gG&t-Çò)Ȁ„W²^x•›°0‹£ôdÚ=ç‹ÐʇÜãÔÏ•j…C3,<¨ø´ƒX +«ùþÌ´õ§û¸}´½†£š±vïaE/³MTdx­*Dß­,«ÌlûÔTö.iýG¢«"tôè£Ûf §ÛWÉÙ¤0ÙüÔ%/õîB¨¸>²i¯Q}}FºHµ¿)™`"J¸ÝÄ ‡¹¾¡ìÆ‹A_· ;•WMmóÂ’ÈR1&ÂÁ.Fo×ËvövûENøÑzæ¹vYÇ|m€þ9:÷øÌýÄpŠÉ5]”ÙšM·39ZÄ‚1²ó#šœYÉ·°\“Ð,ãÖ«WÆQ³ÚKçnZ“™«÷Õ¯T‹(~}š .fNeïé©2Ë9ÿí Y,ªþî+‚ŸKtD9®Úb%d7pÇ, ÖæÈ~=³9©ã·Î@5þmÙÝ ãsZýœ³ï¶ïEH™Í–Á‡—±1v›Å±¢0€ÃÊôÀ]‹Çk6:ûŽ$Ó¸Ûp%þ„V€»ø1¡J6È?P›uÜ\·(å‡w" ñü‘o5{NµËZž¸Š>ïñµ?V·à£ô¸š~ÓÅû›²«mæì°RÙ» ôÈj¸Ó^8ñ¦ê¦ÃÎI=±N6”r¼]2‹¹&ú~÷Œí¬ãF éšó1­Ý¶Vžì·å¢µÌìænµ쳨‹>œ(ûW%Ñ~_¬/¶ýLx;¬lH0,3šB4¡­Êy=š†ÄʽÝjN¯Ÿýãå8ùr TÛõ’¥YtÒˆ…A¾ ¤Žfz„_1ÐVI>àkO®Ÿ„¾ù¢ô¶Ž§Jþý ëÇ)ýYÍ•ˆB –¹úl74ûÁbGL`cx +GŒ,%‘«r±ÚÂÒþö=ULÝ–£\ñ¨QÎ%=ŠëÿÚk™â!á¾™M(#—Jª'ú±/CÝhû8Pv˜r:ÚØí.ô¤ùD ÔÐ$J÷Ñr/2•‚ë ·_•œ;ù„c|Æ–>ꤛ0ó±ìòAuÜeìo„_¶´f€¢¬+´†J“m™B§®~>ÜX¨’²§²zšÕÁ`U¥¸¨ˆÐÂõ± µ| ¿¨<Œ¬9ëEËáÌPÂZæm2ü ÍãG¥íQÇ4‹ŸK¢,§B8½5>CËgöáÇ¥reòwGó³{æ‹ŒÜ;>ÑÖ]ÁýCŒx†{ñËcp&:d„Eß&Ñ&5»%ºÔßÌ‚1R@œvë«ix†0úoü²j¸êG4q@bÎqßùß P¤¥mÂTW=ê„L“Ž…¹”sì ÿ Ÿ9„=£Mñb'};4¡HíES+1•£ú-á`~<¡Túü:ÝkhǺüyœ]¯óé„ »±fN*^ ›z¨0`ÌSšé'ö<&Ñ¢ýütä½oHçgïk}•‘ú!#ŸýqØŠÓ\ÞŠôà¨&%„9B.òN¶³UKÑÛ# ï›÷Èš‡¿Ò¤é¤ºÃwIbÏôÐEË5BÛ=¢ÖÇP­-Ê#>êrq§€J(`™à»ò @R¿€d½Ü2þ>÷„÷õnäÉ{ã¸+Ÿã[ÝC[ :}RlÞ¦iéÌšaèªúéÊhºfüÝUè*“€Ì«ùùm£?\ø)^çï+ÍZàÞ¶kMÀœiI Ýb‹“EH«³»_žTG´@-!èñFËÍ ¤¯jøÀâ—!¦àû%Bk¹X=Î ~R—Þ:Æß’~ãFm;PƒÖ²ç*·{hU^~u&9… +kAì–ŽÏfÒ.¦n"%C{ÊÃíl!4[ž¿¦¸ÅàL94ÉÛr™$Áª‘?™Bƒr„~!µÑÌû…‘tRx}n?? T¬1Î5qñ¬Ñx2¼o¬yË4îXž¬Y/ijy‰–æ¬×ËG”ãÊ‚«¹†Ò¿L×Ýßt¶¦Tïwg«v£þeÇ‚díéÛ{\»MW,™ÚòªúÈ+W»U‹7^ªÞùe®ǧû0q°†™Kãˆ.a½ÄÖ·¨¬Ø†éÈ]׈lK% CÙŸ‘}”Ï}Ýýá~»j¿æ(-¥dNäÄÌK¶¢žÆ@¬g®J{ZÓ8)½b2˼1»Ï`”?,O¦™Ü™H…‰v|3;sƒõEonAY–tCÚ”­üCï!¦¥ïÎ"8ÿ‘£|ÇwpQo랇*…¢Xƒ÷ì]ƒdU7üP¾´Ê`Ýýý*É +\+½WŒî¶{“ pA²ÝC]°[ú&ç´)ØõZjËrtÍ=«~…i;RFÁ‘÷IgÈÓ9C“Ô¯xw²Kbˆ¼$’-¯`£ëZîÄHùéóÝàÑ»IÄb¦D¢2ÒP±Ž*…Íùµ¯+íD1åꮞWg`oÒ(K$à}S<‚3»ÎR4WZkjeŸ2ž°{Ãñ¤ ®*öF*apðÉåŠÂ ®‚²à‚»æíÞV‰(š¨îaú`™àcj7ÖÙÖõÞÔW$s¹Œw4¹ˆì_c¼´6Üè‹:ÈŠÃ0³[ÑuGy½'Á}[ç^B4ørÅòÈ-˦6\eÙŒåÎb«0>&éw¥·!êm9ëD§HÒ~ϱ䤾̸~ÚÒ¤â…M,l6=båßVŸ-S2΋ѽýÖ¤„­ ÂâQ¨¿/È@ácl¨ Jª—ZŸ·Úù¢ž~ן‰m“›&÷Í´®F//#½¢¯¥Tnõþ¡]Œ`ìÎt;ö}ïá¬mc¹i ¼6ËÖþó3~s¶ñY9Êožµùò•™+oö‚˜u¾íE¾ÐíÄhâÙºÀo¦Øsa|ø¨k\§OIýmx‚nèhº8>Æ„*ù¥Œ–‚¦Oñ®Ü»éªy3]ò"ùd’¾"‡³¸×5SŸ-òØz¸^{i,ål|ÉJ³ÓzÛq\ ·€1ºûñšL+¼ +‘K¿Eõ'*Êi+«³@ý›à:Z’/f5gC$q¯®]é>\~¥5ü¦pº.Õ…¯Ú:³í‰ ž-Ö¿é!Z¯ üYÜìdÝYÙ>ythèP˜TÓ¤~P Ü<뾪€ö/Íñ²ñÚ˜½Þ$Æ‘qSÌÆôÛãÖü<ü]è×[j{˜]aÄy¥êÃÖ"lj Ýžgp"9ðófÌØšD8ß‘dIËxû¦V Õž‹²]\s_‰óÄÿ—Qqï35(ÛM;ª™ŽLH£Õ/½Pí(ËÖÅ~¾ÐMtªÖ‹£ Æcý!²3ußÁ^9´¢h<ŒÄߦ³>½å=,Ë‚KÅöÁ„}=yïo«ŸŠ–9Fcæ×ψ=áYÙKgâ[©7Çö Š7QŽq?4ž/ò_-xpô'“ž„PÞÝ:Æ+?6·„w±º07¡åI<žm¼!rí-ó‡®b*'­ÜÚسÑ°1JcõR´:¨¸:/¸¶IÙ8R†ùÒd7„»m†‹²%¿Ôˆ¥šŠ3=ÖËiÈúÏË+ù™–KPÚ\ö}kß¡ÑxO±ê-’\Z5÷ù°¸øå$Ÿ äË!tõa‰E¡ÕÄqãÌ}TIB0=:Â&Æ\ÛÇÀû”áï£ Ÿ.ò¶@ú1-OŽHuè½ù:´J¶(¥:ðydô(”V‘vº{à!É¢~“X¹ÈWtÎ݃Xë•ÄÈùšç{+Yô+‰õ«ä¥‹6¸Q¬[Ka Þ·¿Àܬºp¡½üÂ|*#zÁwõÂvƒÆ¹ŽÎ¯>?ô?1åÊ­g­sƒ¹·S©ÃããÊÙŽ, 9ŽsœšÉµ‰¨D´ ¹Rjl}JµÚð÷òùbÒ¼‰%¿ÝQˆumcêÞãÃúN^"8¢ªã û61§¤Æ‚·Œ¨®™˜Ú€(>žÜ3}}çxÊ7ä;ŒÛ;eÍô ?½»~Øm±,q¬&¥/Ô“ª àÉ>^ÅЊøãuž” cÍšôË­¾s(‹¨ Ö­Åk²ë\šJ’̺…4æ2Uu1tÅzÜ»–|7ªòs4Ú‹«DvÓNdGs1ÒNøéø4ÄúÜf iS®)Ê=Ðx]²oâ`8‹²Ðñ¨æƒnßµ{ü¨Ô&^ÆôáÖE ÊL‡ª<ž]Yóœ\Zl¦ , +£(JD¹G“˜—”Ô²ñl¾p™‹¡×V«Có%ÂÜÔç`’êºyj(ºo”Ëõa#M˜FsðÒ2ÊÐœ¨4ÅÈÍÉ':ðDØt»Þª?êÔåÆ,n)näÆ$Û;›qP®&€Ÿ…“{}ý£ºÈÃ;Ï»§]'Ä˜Ú pYÜ9 ÛœWæ=IјOѯmü§©Æ¤‡9˜½[v¾ÇÝ¡î˜Jÿ†AJéªé&)ĈzXà°ðf˜Ð°eÊtiø½sõ—/Õm%uØ,ó|ã,ÖTº9ѴRëkDQ…À»¯zcBÎqÌL ¸•c¹°ƒ©V6mßB|&–¬ø³Fq\…«Ô¯6—4¼æ>Ÿ˜‚¯«aø¿î§²&ð¬ßÏûÍ>²[œ÷Þþ?FªÙ` +endstream +endobj +4121 0 obj << +/Type /FontDescriptor +/FontName /CFFDXI+NimbusMonL-ReguObli +/Flags 4 +/FontBBox [-61 -237 774 811] +/Ascent 625 +/CapHeight 557 +/Descent -147 +/ItalicAngle -12 +/StemV 43 +/XHeight 426 +/CharSet (/N/V/a/asterisk/b/c/d/dollar/e/f/g/h/hyphen/i/j/k/l/m/n/o/one/p/period/q/r/s/t/two/u/v/w/x/y/z/zero) +/FontFile 4120 0 R +>> endobj +4122 0 obj << +/Length1 1608 +/Length2 10628 +/Length3 0 +/Length 11456 +/Filter /FlateDecode +>> +stream +xÚ­veT]Û’5Npw;¸»»»»;8ÈÁœà\ƒ;ÁÝ=@p î.÷¾~ýz¼¯u÷=Æ^UµfͪYkíMK©¡Í*iãb”sCX9Ù8„j g+OmK° +«”‹“ àÍÈ‹LK+í´„€\À2– @hZ¸¸œ‚‚‚È´iW_w=À «¥ÏÈÌÌò/Ë_!+ßzÞvz€ìÀº·/ “‹«3 yƒøoÔ{ ÀäH«k*ªÉäÕtò@0ÐÝÒ  ái岨€¬` #ÀÖÅàôÀÚlú«4¶7,I€%ÀÃh zÛô±ºþåb¸ÝAoïÀÎÝ yëÄ[;yÚüEàÍnëò7!Ww—·ç7ߘ†‹ÄÃÚä +¼eÕ‘ûOˆ½%ä¯Ü 77ÀÅö-ÒÆÅÚó¯’þö½Á¼y!– °ôü•Ë +°y¸:Yú¾å~suýMÃÓ¶û€;ÐÎÒÝÆ èáñó†ýWwþU'à¿Toéêêäû÷n—¿£þ“ât²eCæäzËi yËm#³ÿ5(Š`['Ç?ì6ž®ÿôyÝÿnÃ_3ÃøFÂÒÆìä °Ú"³«¹@ÞRþg*³ý߉ü ñÿ‰Àÿ'òþïÄýwþË!þߞ燖ótrR³t~€\0€·Æ øëŽùÿb-AN¾ÿMô¿êÿÁð¿Q„X¾µAl÷&Ç?Œ 9ÐF±¶ØZ:½õèo».Øèîß´ü»VN^Þóé؃¬Á5OðolóïÌßäù›7»œ¡¶¬– +ó¿ß¦Gi¼©Ññu}#öu¨ºØüçâ/ ))€+'?7€•›ƒÿí°qpyþ›|qþk­j qùŒßŠæàü»ôÿxþµ2ý7Y°µ‹Í_s¢ ±Û¼Öþr[{º»¿)ú÷i+ùŸë¿‡ôZ#/λX ‡9¤f¤AªrúGeŒ»;9aû?ºÕêä®téJX,³xúñ‘­n\è¥ÙwîÀõy[‰ig°߉¾#xò4€š±ë;Ö +]+?óN(»YZÚ¡~´ßé¬Êœ‡ÞÎƨ¦–YáÙx+·û»Ó[Æ`j¯ïÁ¸47®èÖ_kbñÚ0ë °«òé÷ooè{‡úû:ÎỶI˜³c‘h…- “(“ ¾îWµÖÏÞ¬•BY‰Ç(­»ØîРtÒÀíH’HÙŸ˜¦Šr¯}¶nX +œ•Þ#þ£Ä5NVmêÓÖ>ÄR7Ø2iðÖ–"*Ïçy,¶bo å§L¿M¯³³tþTGK‹ ß+òåV*ÒÆauÖÎÿÃwä×iÚì¤@‡^®4nêý'R/$;]ƒJy¢§?“o§wÎ/ªÙg¼.¦ú“â(¬2Y–ÀfŸNh«j›èoÔÕ¯ÅÝmkØ6£ƒ¤ç‰F²±òž^¶bR>yíY¦ÔqSI\¿ÖœDõ +’lÆlH¬—ç4éô†lî´*'_aŸË1߃ < ³8ø^gBùâ“…;Ô8Œü‡Bm¥jf‚0nÄwQγÛÄ¿ÐŽ(>GÍõ­9)]ÒNúœ—ò‚‹ FÆÜèJÁíd>ÙYHt“˜g f–dáä"FÈöûiä°õ§âm¿3—ÈeCÔAÌ—?{êÏ-Ï=}A{È Åg‹úâCÀßð­åÆíÎl·*ê¸pÔ9ÕbKaú5V +Ã&ù3w)U% 8cäß´u¢·PPB18üûo^Ùós>;F·¨TMñ-!Š—u ¶`).’J±ËKeK4ÁpAÛ-æ<$ÅÝ—õ`RPþ¼é¿Àë30 çF(ñµ •÷tµ~•ì{ÚøŽt`„î½ô+I؃б+ö¡cÌ ¿çs½šªü‚$T»Š‡ÎþQvÈ‚dº€³˜ŒKíËAÜ8ßMÄùtßDªù~º|Ûª,"m3!-”|¥:&5|$0FhýçÏè¤Ôg^©$‚ñ¶SåÃÛµãápÐ$Ü´4ë1•D#—±s‘lô4Xž£·r¬ 1fëñ‡Ó´g]ë0+j»Ô¡& +©Á™´ E_BΰÿHeDÃxë²b6ß¼c×ûÓœ"ö"mý•ü@´eõÛËSP÷x†e|K<)Å€„NRJ©×&°úJç%E‚¡yTgûL¹¥0¾”³; }(£Ld²{ûBÊ´BuE‹Y×ç Ô2$0Ž +_ÍÓèd ¦št ¶ ßòíüº«-~‘s‘GžÓ çcÁÆ (™‰¹KS¶oâ +«¸> Ö[êt¾18eò ô8v 8?ÉsIJ]¥öcD&¬  ½¿ú~p(lµiוH¯k(üÃÊa&ñUí +éj1öÏ~ùñ2KŒg)VdeÃÇ«3V@ˆÒ|ëV/ŸòT¿z&AÜ +džW ¡°íkp´a¿í9v¹’îÀjË–@×&Íœ QKw¡Göú»£ÐCr +[’À“0&uÎàO¤«¥é–«Ó«VMG›ËS¿£¶BÒ{þ”Ž€ñ ©•è$øú¡ýä~$çêK~ÜuÂ'?¦HkRtÈ™(ÇQd}§ì E%›åzÔâ‡F@x çh6Z„žª¹O_V¾‡:êÜ(¡š_ë=+ŸŠƒñÜ1óò”8°Ôa™sÞÊ5Ñ°5 ê¦èÔ} /sì>/£÷½×K½p\Ûܦ¨Xص—¶)wÓWgµÓ܆»Õ¡ÈÑS¨u34&û•ÛÀêØ)ó‚2}*õ¹ú‡ÀXGb¦ö2ƒI8èKL „Á¯tø=%<äõ³3´®Ú¶óËùFáY×]¸nQNNÊü±‰ãÑê'}Õ‘jÚa_Ól¯R^ +FΗƒødˆ +þ¼ÀéÙÄF„æü¨ˆ×Bü&­ìV©(]Ê"´nx‚§ìt"•å;Ýõí»áCRFÑØ&Ý «ˆa<Èõ#|ñï_ÉÛ¼[îa¨‘aŸÂÔNîe#GcHS£À™¿E¡ŠU÷;£òÏDî>³´ò7Ò£a¦Ú½Ü`;£¢7$­JÆÒ¦ìžM–¯…{r¾©”i¡°ÅŸ¾gÔâ +5ãØ:æEýSá›A_DŒÂ.¼ ˆ˜!«-ÂNkO¬=/qïTÇ +‚oÏÖ`lH;¤ÝúΓ;¬¢ª¶=¬ý¡ÿ0ÚI6‚*r‚I+Q½ÑKWïà°…z*èÃMÞLá!FP›p<Úž.ĨNgõ8ÿ‹íCmnðlRÓØQöwŽÇd´ëgÒç˦ª>‡\ü(èÒÂ8Cqªn3pÉôªkSkâèؾät3u]ªÿèsW/ÔÎÌéÄwhÁ ¤ Qú‡#S8’¬8»Þ>þGB@ ñô®› + æö‚¯ FµÚRéÆí—kÐ`“ÚîV¢½5}ÛNp±ý=Þº&NöÄ&ÓP“œƒiÞgò<úëí +™XJWó¡Q€Í Û™xÒoJÒš‘¤ïž4ùÝš!V—YºêJ¬¤Íô6PìF?wùóà’C¡´ŒµmØ1çßñ &‹?ºŽcT«£3Üz'Nz°ÐÛ!ï6`²;u¾x™3=Ŭ§~°±ÓÒ¿1¶G?ºrÛR›ƒãÆᵟSƒò>;çÏy×"Ø:$fD­–ƒÜÜÞDDåVw…ZÜé7¿d”…ïu=Xáˆôþ•ê±Ê„¡,úvÞg1ÞÔ[D&`ŘΊt¬OOö{·†zoœWÊÎ%OÒ‰úÓ…u‘ XS¬Ô„Ã-0¸AÍ “‚ †K7=“õé² K&*|žÓ¹‚ùŽþ×5¾ú¤Ç£ª¯k¯[§xó«³2Õ–éƒ:£¸2•E‘S°âûòX ¢Ña†¤]c0ªŸ!ä¬n\¼Rªõ[“(ÿ´÷÷îk,P‡ óx˜E3Øc9‡¤þÊê™±-7í`<Q¶S5½à¹ÎÞ„q¡LäžPh"a!"ò´,Y9åèÛNhIcÿ +L¬[ + g‚¨§öp“Ý„küÀÀ $¢»-‰’ +¶›X°áÓ]¸Ô°+@jÜå„äOÆÊš™‹}XÁTúQ»k:×Vq‰Ð!eXÖŒ Sÿ¸“þ*瀺ڟ´íáÕ©šïCžç*éé`·§ÑýØ4=¯µñ*D†1(×€¸ìûSÈS–ùͪÐ+VèAÖû¸¯EsØéï´¶¿¸9@« l±Ô'îº eáHÙëÀ_ú| }hôS× †¯ïus¥Òý)Õ9 BÊû•p'DeÓû4Ûê›­/¤³ß•´, üN3"ëtà«tP~¸* +ù>PÉÔH"IŸŽ•EëÒôÁëW;CÍ +~7³ÊôÖâÛ/¾U +¯MuQºéÝU´´ˆIÁºÝr»ø×±õNy[æݼÈO}Êþ…<}]»e%µv=»ä¦,¦ÌïËo¿ºÕm „s›'á1¥+äTMoØ~Î[X’ôsj öM,Á§‡jKÇ“-è6]¼bë€ìk«k @ð§2“KC3¬ºüJ;V×Çg¿¬G1h<^蘼iòŸú ¹=ÇHŠ²lå}6Nî´»²^u’“öª¾0ç’Z““ê÷ä˶eºÉÊõä «Ü¿D€Èß…š“vèÀÊ%Äß #TOåéH›«‚ô½«¬iü'Ï4a~¶y:’lÇ» BY9áYTOç«°Ë1!V¥ŠJÈÏ.Y´r +Pü`ê×”h4[«|r=pæ«LÚL¯³™ÚG.¤Œ“ü£2*6ªëŽ'cr˜ùpêè'JîÍ‘$•!œpíÀåŠñ’\·*û).%lç";¥_óg7Iì:;¼ÒÇÎó´ÑVm8óÁ* º~yúDî]Mïy¡¤‡4>>¨!ü06hSÈ·ßœü·Iç¯ØNb\Ú¹B-ñÕ\/e»]‘N±™‚.ØÌïþVg¦jÀÔÈŸØÚ+š¢½®©#KÅàE³ëÛˆ`…›>µÓœ3úî°Ìz¥‡8Þ‘°ÇmWrìâ?)ÌO¨4‡L‹£;ÁëíCˆ'ÖùP°L¯×WˆË¿°Ë&çÆ&ô¤R€8ö®j™Ø¯~ d¤oÁL¡¦ÒÚÛ×9PÅÊÏ$®¨ÖÐ&K~¹W;^òTü<†Ö7²è†ôg{Ûjç3£ÈT› ÔBÓÈ\šÂÞüŽmæËŸ>Ãl›Z™i©›Rج¢Oše[tXÆèñäqñ' â\ËÇ” ¢»Âï?$÷Á¯‹À:À¦¼P/ù†¿Ç‰›yF 5³é«¦æÄ]gcKŽ‚¥YTÀü3¬cy1!YÜq*ôE¬oéazÊŽíæËŠR-uŒñ¬X*ç¹C^¤z¬Í‹Dˆœ1ØÒò~r?*2‚ŒÜ%}rs¾úŸÇêgÄ®S¤J6uQ8†ídQx»<5Ää¬~þu,NöÂuçúþÈå­,–èL$ñK'¨0m›v×Hh(´]õZ‹'7ëX}.ÃÑ™jdîdŠ66í(Z²’¼P›ºSvä‡4Ùuïø~õn ©‡ª~ÚHtIù܈ÉXìÃJùD]ÈìLWPeÈQLaZa¢‹TL|!~ƒ:™e×;éªÐv©àË×Cú­¥_c 1f¶•S®èçzŽD”K•DHa\xÅ|*u;SŠPöîƒÛD’‚"ö|¯P©36­ @R .(¬È(¯ËZMV5 lØK®Ô ÝÃŽ2U)Ûé-½6´/ƒpùSõ9üÊ3íòßþÀ)š|\¯Ó×Z:PR¶ƒ€ôªå‘ãyv>­1ßõ¯ÚqǤÙÍS+ËÌ·@.Ö¬é!Œüç7Xè{¶cSÐ嚦!ë"ž¬òýþ5üÜòB+¶‡òK OÄ=˜‘GçÛêÐAó•…=ÇùŠ5LÜæ{S.aµ­[;‡%ýþœÝù2ïÁ<¬%óaï£Zv}y‡ùO°úâ9ϳ¬dE-ÎØÆ) µ88]ºQYÝ}ž¿b`Ì JHf5¶)œŠ9UƵå#æ(úaÔ²ý5+qwBD›„æ¹ÅÂßw¾”k’e„).7B¶úyt~ÔàW¦ åSú½O3„[L ƒB;^d•Š°“¤h‰¦ù†y¨“õÊ‘^¼rýpßVÍn`[|°½¸®b<ÈÔj7RÕIE4Ã}¾ˆö,L>›r×nðVuøCtÄ¿všy¸ÚR%bçÚQ~¹[P‹ò®ƒ W$—´Ç“×!ØIþJÁ&ÔÞÛýmà'B±QžÍÊž~¶!ãnC ²™‚žÙS{—Þ‹‘/íUláÞ ¯¥~Ý«ŠgJ&€;!9ƉU‚z1ËD +&¸~£á¢#ô)žS8fƒ¼Qã#uoÌ)”øø¡ý¨Ç:Ñç€éùgv%©|8p„óŸ(žÉš¯ù#‘ì;ƒ‚O6}¾äÝûbÔ³¨Pqå+ñ›ô‰mņ *ª¬R‹ý*±ýbÛ@¬åz c.[”Q¸^ø*‹Äføá­ŽÄ»ûZ)?æ (d0‹}ŒeÖ×Íû¼¾A„WÛ-m¢Šå)²}A¢3ÖzÎÎE·"Àß7\;@ÕJ±'Á¦7‹’ob!³s¿ÞÑ~"¢¤x§™Þ³b¬†Y~î¯Éz‘ç¿¢ðr8N¢VÒ0 +Û”[ƒ>%-b?‰{E ùÚÏ­G)»}ÌÕ«áÓˆW|IY…TòÀò•äèQêÌxòͨÍÖï§âÈœg.’ýHEßçýYõáãu¶¿|ôò½S?f¶³kš&HAtƒÓ@)(”ѯHUfy÷i¾ò+›æ5ºaÚW™ST2_©ÿž?ì)é’®|Nœœ=…êʼn\ë裰ÈòØ ¨÷|IýpàhbU„f¢'Ä秒ȭ7ŒRžÞ6U½6ë¤3.^¾³ÝD;¨|‘f®¢Sm•ób¯/)[£ƒ–»œîÀŒ_nçØe¢¸ú¦¦¢¤u²„É çV-V÷÷ÀæOª½Ô(¹1vPªœ+ßuhSÀÃÛ|~Þñ;ŽWZÏ>Œ`ôr; … , ìé®\: +´)~Ÿ1åÖíJŽA]8†{^\’âúøÝ .íqõÝ%pXY»Uñ%žº³Þ Uo“ùoÿžûÙVL¿)Ú wq¼–CÖZ³#‰éK¢5çOÊ߼⹯bpÃöU ?4Âh¯\èJ§µòè™S<{²}=Á=—z8ðøp÷È9±Æàå„ì{…x®\÷8v²¹‚ ²%cu:Àž×†Ô ãħ=òsá ®áé–Óš`àÃâaþ÷gB“àšh“AÛ­Y2±§N jhyîFÁ:¡‘[eñ‹u¡¢bQ»ªpÆ™e1Õ©;f>/Vgâº÷T5õ ®Dš=è[Q¡JISöAÓ,NA{äšÂÒÉýÈŒtÓ4Át¯/§ugÆ2(#Ï-½ +?ÇÝÃfó3èR1ŠßuÈ}}”‚ ÌÄF Þ]3'·Å"ç ’Úc¹EUy+Í'r¬hų‹b˵ìuç…–f`)¨f¹  67‡bÿfËꎎµ_$´Ih +¤¿/ì-W +Ó»…RŠgn™ëyÙÑÀüb;·Í“Ù²|ñQŽÚh~ŠEíp©F¬\²3㼋hLŸŒ-Â¥{t¶`AŠñÚe2ë[`o‰&1ýN“\­ÙhWÀ×¢çÀ¯wðª:|UZ<ÏPÁz”Ú-A\Z„qûÔã8»ûNü£È&.1f.¿ÒuÎõþ¦É»Ê{ßµ Bã3åqÄ„÷LžÁÈÄIÁÄÈ gu2¿cëzÐmÖñ®œ’8©2b.f†XU¶s÷žk·óó+øƲö †ÍË\5$îPòØסÊø^¨‡Æ0÷ zTiƒi qb©-©1 vf‹SÞÃpe>©¯”Ap' G<ÞA]'P p|¬ ˆ‡[5Y°€Ù•Œ‘R{–°ÓEaW-µ¨hÝ.†OjUžÑîMö? +¹~?J#6 bZîEk[ž¦ÝçâLXÃ@ýžxþLbŒ‰Àßþþw½Ï=V…Ö*9㉊_Ž:ô¼ZceeÂ2pã:‘¬âL”æ÷zió€t¿& …äü Oæ*3D ”#;Õˆeñ<2<Ø×ú(t©ßs+TZ_?ü:à0qÓÆX$"\÷ÅsNö@ã:º@ÔA¬1|ºÝ°Á‹*Ò6Íãú©²Ä Ü.¬`2¡ü€É‰Æ;ëfˆßhùÂ¥ó‡ ZóØŒ,ûbaøÏõô Òê•/ÙtPÊÇcÅ_k2«ÄgÂoö=íŒ÷Á%y)/V“µôC¬îR¶¥ÚUl]rvßDo¸UóqÄŒâAÙÄ£=ÐWa³„”ê2Ñ#9¥Îo.(œÖÀ5¢  +šéN‹–²åA·a·ëƒRþVôŸi:(ÄÕ‹èÒÅÏlí!‡DÁˆ¤(ȨEŸ›ÅW ¢ ‹=—|ÔÁa²½:ñý$3¡|¢]&lÙÚ_Ÿe(ÇnÎËî "F?~ðòðmÇ*4iwgqî®#²€ õ¡—V0`kdõdz–»w;þpoæ¼ôâÃͧ©Zqù­Lkõ'|Œ)QÄM\dÃX„V±Uz·Çê“xNDõœÌ¡wø™r}²8?gÔjYVQäP­7ç‚!Ã9£A<;åtÔ2^=kÂí-Çh>`€ÐÚàìÈm„¡_là~69­|^3¶l±´Ëb_æiµ wl·©B |W]ú9'k­)‡X=a)±!èÚQ–0—óz™4½‚A©d¶g¶A•s‰òË,Ó(áãêØœŸ6ª.šÕª´^Ú/J¶‚F”¨ß„\5ï‚Uܪ¨»~ècÂHåëp¼–gŠ"#‘:†Q}ŸªŠ«Á¦y»¾¡ìøè ?׌ñ=ûbø{%Àüe䃎 ™VÃ`Ú³›3tG­ªN "‹‚КÒÌår;úå<¥âïûC/Ãﮯ'^¯ ÐRûàî£÷¤˜È*šyü'Ò½0Pñ\Øs»£Yqš”cÔ +^*n¡í³µ¯PïvœÊEH䮇Þ1Ü@56Ñy>zðT12ÖH ¾|S_ +‘?ÚòoòâÕÙ~çsúböY\ÃhÞVÛ$#Ÿø˜2óçŽÐœ {O÷z˜U¡AêkÞõ6&Z†ãÝÞ^ëj8pÛ¤ +#š–FˆÒ0cáGñ·\k$òO‚få +Àá>§÷7ÒóÊå~ÚH¾SÈÒ¿òp?òLDÓš®¾à^ž>3Pcí«¶ìÌï$æ/$-±×p!ÝÇ—ä¬]ãÇ’UŽ:ó¹1fÂ65 L¢NúS¸°@IDõP#ßëx$#Ç|DâÃbï0s–Ù(Ò?BOU*Ù¨ð8WÝùJ‹/®uœo"jæÏXì©*eл³Nôçá0ý²h!¹+1q¯ VíÎuíœÚ¤'±81Û`‚_ª”û¤–!_…EIf­¸Ø„ ²&$q–ØrÂÂóU~ñWf@Ðð¶ÕŽœ€ÓcÁmö:­Þ'øQ qX ª²!YÀm‹ë×™Ü â°ÆB²ü£ biNtì1û¼ÿ‡{Zô%{s¾Ðv«Ãý œ¨—Í$[öþ5» æ²>&Cn3Be¹d´J®–¤„ËÖ‚r0Álè!TÚ„¶ŠÊLOBÛ‹Q£‚ +ùsTfxñ:ÇéÁg:ÄG³+˱Üž‰ ŠT3/”hQÓÒ1¶'¬Óñ©Ÿ[®|Wbø’5®˜P îóχéFr¸Ç-!>Á*N:Z[J‚ë·žëìjb†_ŒCj“ô&¶³ƒM´ÃQÖ4nÈGt9Bzù9æL¤ê’…Æž Hz8R)!âIJ×õf… ©v™q +Áìaìï¾uðX¾GIêå—m +Š°¼~ì°y4d‹þY>9ƨ¹.ŸÀ(Ïø[ɵmå¡S Ö.£HpŸR Aª°Rø8\D>Srlô Ãî5U*Ðu@µÜxK@|"0óä.§ä„ÂÅ.wÞ4…KK4WqóésÜ»Ö1H ûEªˆøzÜé,íuå<ŽMÑ­j !›¾ÛR'sÕÒn}]Z˜šNûböÔôVÎYXIÏÖfâÇ å÷—5c«årßo}åªãŠ¬#æ "2Éù`~Bg|ëé“ô4€¬¶‰ºj¦CØP‚Á–)²Ù¬Ö[“Ä-êªTª¥é±ÚcÅ`ÃlV›a¶5ΩêtýÐÎìÞñúH<%B:ãàúMÒ©Ö…Z Šºl_`.·{ïÓI‘Õ<¦7È­ +ØDCþ1½ Ÿ•ÊD&ídhÉøŽ¡z/hH‚cæd=ûCô›C£Ì^CÏ·lIý%pŒgïÚëŒÔe|ÀVŸ} +Êæ44”Ž=aÌ]Ð0x,»MM;A@EÐ×´Û}û;-¥v­Í ûSò Z¡'éJ!Ú:EÈ@iLFD²¦w)~ºt©v#â­^¿ñûR¾Yw‚ <›°rëH…‹Üê TC\—Œ&Èžõayïx`¥¹û®#zE½Ù—~¶<ñ~6Øà ^pÂà'Súþ¸ÁÏ<~¯˜mjÖ!ÁiÖÚ•¥±~¤SõKÈRmŸ¨ñ] +«°w²?,qøñÇT)éF +UO”óô5g3äÎj} @þyæQ0mÉÔYmBó¡-irŠÑЧì£Eíp©ªÄ8 ø VµŽèšëéÂeGDë¿”¦yF~} ÔŒ¹ú±to¾íÓ2ý n ßé&Í7 +^§$è`~Ñm1¥„;”ã:‹É]rù60+MuBå›.ɺ2äV›… ÓúÊþªQÜÕÇEÍTÄs|Áíùçîœ4!Ò¹ç@/.²5¼2AÕµõ™Z£q™ª[? +,Æö´7Æy\]ËšøÕ²aS#ÆHÆ—hû˜†¸T0óHü„­ê‹\'ùh‡/µiÔÎÍíº“Y‡µÏÿdu§]4;@;4«]Œ5 ãìÝ’`ø0N[ð€b–ÃqZÞ.Qò$Fi—M{%át±$_Œ´‰0–«n¨¢î–ØN¹ŠÝY°¥®ÕM©æÖ ’Ø–+'3oªl³ qñÌ —)?ûÄ>¢+[3c£yÞ†O²è/©×jÛ¯"ìûè¹H¸°xz2­ÞVöa]ËoCqwû2ÓøЫPq;™QŸª(½ó†Qh`5Jž‰‘<Óš»êpøƒ;íC>²§£ÎÎ î¹ÌÔÝxÊ^l8ňۖ÷7®åµÎƒˆWFÔCFçoÀ|áë2±ÅØG‡r¦™ê\øÏf] i|ÜÀbU¹l˜äÅtF^îUªš´M]ÅÚ ++®îÖ"ÕÏHb¹åºDí}]h¸*É€Ÿ³p!{4V¼Q¶Ð1Åê4Z‡ï8 – D”eàOÇ.PŠåñ ýÚn¼Ô‚\œ_Nj” NýåcfOGÍòUÄèëJA¸ÃåŸ QRöe5êun5Xˆ¬ò(“n}„Î ¡cƒVÎXzZÁ¤ÓºW–p ha¤Ø¨a§ Ÿ*Wº™á6¿ùoô˜Ž7¶ŸÐeû(FÒ–¸x™ƒÛª ïz]Š¿´NûrÒà +ð0ð…8*qŠ\Oû®ç3$ŒqsV„ÏÛz:âÔ}}Ž¡¯å•E¬œ£íœ=tÙÁSØBÍ€D>k}*&_]\v7ÈåmäÙêu@¡›úiVþ󱇫BÊ\'Xiú“Ѻ)Ò/,uÚu/Êíœ{yÉôè?ôƒø¶èÕÏDf'`>œ^ +O/q®‹1ÔM)“qÝ•|UERùžSƦèögcMrµ­ú)V=ãÐyËÓפì5•ÿ2±®Ù™¬Ý ¦8…0qñ©TQŸ=#ØX’!Á3 +º‡´“{&õ¦ºlS“JkqÊÁÏXÁCÊF¶Bº-Ò—+ß½ÓA´³REï+ìr[¬{ãûÔŠÜx5 ˜w£–Æýª5ß´’ôdÜ´Ä|6}îÐ'+Mþ<²¤Mi¹½ât•pÚ›Œ’d"Ý(³É‚‰­kçßô(^=[,¥½úƒÔxéÑ5nß´ö[U‚ŽÜ1Ô—Rÿ|aª¥éh™¸Ç!-·ž‘¸ƒCc€lxMwã,l‘”Õù‚-sï ­®ÄOï¦|³(Ðl5+j¯q,f÷JþÙñž¿þZÛ¹£QûêÄ;a[4-ßxÂOûBâåÐ'ÁÑ¿*°Øä¡)3üëò‰&]4øácNJ¤ðMídAgÓ¨½`µYçiaÆ: Y1Õô^ â²c£š;Ì,3r¼þÔ.‚,ú  DzµŒ°5CÛ,äØN¨'w õJÒ‘'¾]ý׋0›•E[ä±MJ~ …{ùr¶Åï"Ê©‚cMädÚï_¾JhÝ2¤Q¹nÀfV*sj+²sjd!OkØs]㥷Z~-ó0Í«n=Øø`qYÄxUó^¡áë—QB…C•ià—ì°Kï+h<®(Lj%dq—~£bÏ…ËBcêü°1'C5Ò‘ôDzò¢åÊ–uÀÍF9ªJ{Ûu·0:D/qŠÈû¹WIOó2žczƒ²ë€i´<è¦ô×ó¹ŸßÙ°ÿô”û ë_Á“ å(ßEõl$Þ±#dí©×̧ù ÄŸS¹¶$¸¥_¬Š.É›“šá˜¢ó*éx/ü +WÎU,íT JKªˆ{Ĝض#];.¡%Û£&£­ ŠÚÌŸìÔí’f f­ýUßÔ×~Œ+Ú-g3 +RäBÂíÛu—gT‹&÷ëCó§í¿÷ÜùÃ0zþØ&<¸Ó_ag]Ë_óÁD¥FÕµž6Û|À+›v£I躋ïÔÎxEævIõ ?øäµx¾-'ª/ßLX‹ƒ"bÎ߈þ%f¶»þSC*è•|i~¾x¤åÖÇM^Ÿ¦&ŒžÇHY®o£Þ¿wKBà>üõJÇ,qîZ]·?6SìïÕ—F³Ÿ-¿göèAÈl™Õï|r'·vnr…R7ûùuÄ^pi“ĵ†Â!°oQט±fU?Ž…ý5íÁjCƒûhMJ£ÐVQí½!¸o‘.„âªÎWÍ^ï(…8Ž¤£fÔØæ‰&hiz/haÝ›ag†(ï_¬÷¨ê'ñ9ceó9¾ùùʯœ-ƒôý‚³ÏÿZ.½R +endstream +endobj +4123 0 obj << +/Type /FontDescriptor +/FontName /FYSERL+NimbusSanL-Bold +/Flags 4 +/FontBBox [-173 -307 1003 949] +/Ascent 722 +/CapHeight 722 +/Descent -217 +/ItalicAngle 0 +/StemV 141 +/XHeight 532 +/CharSet (/A/B/C/D/E/F/G/H/J/L/M/N/O/P/R/S/T/W/X/a/b/c/colon/d/e/eight/f/fi/five/four/g/h/hyphen/i/k/l/m/n/nine/o/one/p/period/r/s/seven/six/t/three/two/u/v/x/y/z/zero) +/FontFile 4122 0 R +>> endobj +4124 0 obj << +/Length1 1166 +/Length2 6149 +/Length3 0 +/Length 6914 +/Filter /FlateDecode +>> +stream +xÚuSu\”ÛºQº[rè†Aº»»;``˜Aº»»‘Aº†F:¤Q@@@i¤äâÞwŸ}Ï>çþ¾?¾µžç]o<ëYLtÚz\2vp°"æÁÅË hB\l<Ýõ@0u.]°ƒ'àa21éC< àÿ 970ȇɃ<x}GO€È ð àŠ…ExÖ@¾¿án¢m7ˆ Ü  ö»A!°Jnëé†yèyººB!`;]°;ÜÓÍì. +°èì?«äாnG«®ç߯ˆˆÀÆ÷/ v‡8ÀÌ /0îú»ÒC +%0 ìöдÝïXm{‚Äã÷¸VGWQW{øãv·ç†=xØU€ÙÉÁ]~'pÇü­™<Ä lû0”/Ï?us†Á½aþÿÛC`vŒdçéÊcƒ<÷«Èÿoð„ù7æöŸE€Ïàç°­#Ïï’ú¾®à?HÞß0fèï +w؃ îà@ˆ=øá‡éïò<Ü<Áþÿ—ø÷&//Àbë°;<\ÃßÙ`°ýŸ{ ‡Ä`äyÀßß¿Vj‡A}ÿ×¹€<êÊÚjÊÿœý_Q²²ð‡”\¼Bü®gÂNyÈ("À÷ÏŒÿÒâ/þ@µAÿíøwJ˜= òç8:þ5’ØÍýÁ›Ö?lÌø÷üšpˆ-Àú·uÌÀ×<üxÿ«¥þÿ¯Æúg EO(ôUXÿ”ð ‡;@ð[(Èí?ÂA.¨ï9ðÏ@#ðŸîÿò¨x€ [˜ô_2AÜ!>`;mˆ‡­ãŸvùKe»?Þ!Xîùý’\¼¼ÿàô!¶Î0°»ûÃ]üAavÿ(©³…ÛA`=W‚Üìþü¦m=ÝÜäùã‚Îþµ·‡<4û€m1—á¶bNMW 2”Þ\_ßó½4¸¸÷¤åÇL„"oq?ê×$w®¢ä/9Î,×w”¬3CÑ@AŽJ¡THòv‘íâF#$Š$|¤KqÈÝ,®)Š}ŒÎ:}|G‘š@ž]´'ç;¤|DW}aÂ$)7I¨' ¦¾2ÝÙ}®…JISý²Ckw‘M„ôgØw-ehŽ(êüh·<Ð),:KµçÍÌ5‹ª)Ö›ÃK¢Ú.Bë…ÅYàù(%L¦cJ“*!ÑîÉžg?»Ô¤»‘{9ËãŠYvNy&°~}eŸÇF%OO¥^ÅÆ%'Ÿ +Pw[²E§Ì](èšaÅþÈ%³>°©÷¦[ó«*,f ÷TGSú¼¹rÕ6ñlüC×G¸ý©ƒEBÄ0qgÛÀu®á¢ Ùê¬Åø¶—\·ÚÆÖR£9 ’U0¼>=ÌKþf?@EϪïeŽ R2‚ßID¦Lü¨ÅšÜ]—R†N»_H½3¥wdùÃ’ù §võÅ€ÿŠ­ÛZA¸zYçkɽ²ÒMØbK:$v¹W–‹V#žÆ·j3QèÉ»£w}Ô%ÌÚtÙ »0£bô|WÉüý›¹Ûkq³ÑkÝÊf;ú…Iª5tY šûN`¤.^.”†ÅÈ.6± e¥XYioa3þê&Vo-¦5XÿÕª ¤8!»”E©¬>œçWd° ´Ú(ƒ)9f+<„Râ{lü°Tc.‰Ú¹aŸµê™_¥Í Í MC–Æ´»õnÏæKÉhWÎUì½P˜ô+v‡ ô¦>4jÇׂP)æ rõq«¼YÔÕ©¬ÈâÔv2ë ܸ„#‰×ÒéXG½ÚÜK›ÏMãBbªvÛ0ŽZ8}Ü°òšŸ‰*.£zµ£íï·Šr¿/ŸÞ¼¦î§^%o2}0¥¬€ñâK˜÷ªµ=qÀÛøX@IÝ‚qãðòf˜A:ï!Ž¨*4‰çªó…‡v +–p†Ä´áù¯½ .w¹ŒRuºk›nÝZ¦€Ú¿C2ã(œÃˆ¾µÛ™ž¨Œ^9q¥á%©˜nçq¨#v„-pG‡ò¨Úﲆ†™,Ç·rP»…ÝÀ,¾FfOXš90"“B?•Ëç›»dÊ‘ä6C¯DŸZ"àñsýÅ…†OW øÒõÎÇz‚UôSRJC”ûf›+e㬧”{žÏû±çÂ’ÙÂøøYÑi1Θ»:'U=$¶ÅüÂ3/˜‚KDZ7±F…˜èŠ.‹¥ñ™ÙHòÇ‹÷×Å3|äò× Ôã¹/ÍÜôÞùDŸT2Ì­uÅzE8ž`eJw½úòTæåm:*.çh,B’¨Ý¸wÝ´>õ'×¹ÚIÜ;}Dkߣ«@ëïH]‹×ú,tW¼‰‘–¬Wdz²Ü b¦Mbß̧J•{›@•‹þ‚Ö'R³ö"Oj¡8`…àæ“DíÝU^YÎmŸb—Ž~žñ|õ|?Ï®wIýÖ,A5¾r,Á½„Èï zÐQ*¯´;÷.Ä[V‘Ï ֖諧½bäIŽº-ä g“rÈYˆ'h}yŠoìò~s¹Âp¦*ÂDŸW‹˜]ÓÚ)N)A|¸Í„AŽ[º›˜Cx/[õ÷£é=–©†8uF+_Îí +ŽgŒ ë¶Öîé9¦6"N>u5+™[®1ô&¢´º[lÉkÞ¸t.EÇFÈx1bòä&GÞa§‹Ær_ÿóUCS—A’‘„1>Û¢{’uºÈqRt+D«Ë3˜&ô¤Y>oȼժÅAßM+p%ƈŒÄü>K'Ë;Bˆ’r²¼A hÒ÷ÿ¤ “¬r§²pkBžkT;ó6âdŽ¼ô?™iÊ("˜#­ÛÑ°Ô’1é¹n_¶fd·YØÏ©š0°a ™,µ¼î—îÓi7|bTùóÍ*0˜"²Ýó%*õà +Ž(Â%_U@:Œ•Öš—œÍ s–èZ8ÒiOª6>ÖΓ½å-.q±m¿\;¿>ÍgÎÆêOg^r¬góQzãf£Z‹­8‹§£V^o¥»#á#šÎ89LdÊIr +<ÊÆ•µ8U™VVtc§Å]£îslæB|S3GSŠwÄ=(uKà0ú1“y2m ®Uµz6|ØÂHšC·Õ˜Ó³CÉ6¥BG››!‹BTΉ£¥kíMª¾'ðµÿÅfa"é\qŒRºY—›áÂíä¶#È*ÃSDÛ¦û¼‘š-ÇB+œ-…‚Z[&Ø&ù®Ì3 ß4íÓ6XÚy*'"8¼«Ám®½Ž˜²kî fïKò€>áçäÅæjÛék 3Œ2áOôã{h~MË ͳî¼WYöýMùˆô—Ùš0ÝWv!a÷^R¿sqN¨¸µÖºéʘ÷–ö1ÙZÓÝòtÔ<¥úséÁuŸœ€»ƒ*’{‹: •¼OîµÀ¯«Z×ý¬9Á¶+̘tôÏøcbÙ)ÍMN»K¬¹Ø,TÜß~ªMb);,}Çy—,w‘úójZOô|€NµåÛ,º"åÑy…75jè]»5ÞÓ + ¦áS‘0ö׺iÈÀ¨à+ ¶xG¾m³a°­ž”ñÞagÔo*ƒè^b"óOÔ„IG‘D ¡â]Ì:žT”–gUsÏ[üxó½>:,½ 'Á+½Àenú‘r?Ì«xyŒ'õF èÍj|ñÝÜ¢Bž„·žz b EÊ'‹ +ám»v³ÂR‹¼-z½Û†ò$€³f,bb,ˆ¦?Aä8y¨YUDB=u…ÈÉ¢íJE·¿S¢Dšy† ’Ïׂ%1)ý^ÿ»Ük‡áÁ€Øe“Ù•æÄè³éE2âÇ[™hœÂÅG嚥vaY§Ås}BLÇ´_ ³(\A#{É?Å÷ƒXÜSÀæÒyWaÊ v«BQÕjÁõ0ÉqníˆÚÊònΣRÂ¥†GFÓJŒÆ£lhúõÛ=Ä)JÐZxʶJëÚØ]PÄÕD_âxFV(pb0¢D +(Ó®fd+Œ‹·_‰s½øòEEkr\ r¤E… ýÙ8’ÙJ3ýêéu]¦íÀI‰ dÄcbmªûðìî'3ê+t·‹‚c<ÐfûÏÈ‚ŠÎ_[Æ)û¼D UÄÜÏ;i·Š³é:›Åø5ÚoÖªrÎz¢Ò»%"šŽÍt–Ãó¿ózþè}5ƒƒoôk^àK†ÖÚLÃusêTè£ëÛÇ¥ª«!ž¶éŸKüâ¿Ï‘¢‹g´Hß~G ìÎvDÍ +Ç5¤‰íÜ}®Ä}ñÎG&)1ÃEß(íãÛH{¯ˆ»yÒ"hãÍ Ôy'Ç–|±ÏŸýñäžÇŽ³ÉÓe±2EP‹tÃÈÔßjG†06¿Ñ—še¥5ªQãq6u ë¼²ï&M&t ö¦ÆäG‹_ežÿd(ùÑÀ§æp½5/œÇ¥Lø…vkSŸ³Â­ Þ“€ñ­'Nà©EÄ!DiáÔ4Ч-ô­Ùbá ì·*ÅfÉyh‡ÞMÕÙìâo9U”6ŽzOR%}œWeÆ"¤ÂLŽ”¼•%•ò…\r]Ɖ=jNBeŒyßL½Gω$¹a—òVzšO¶Ò…·~,§:¦ñÑ~ïàçlD˜TÔ±’'»–p„§è‰–s"²2ì{…Œ!–¨¢#þ-kÜ©Ä´Œ€’Kѹԡû>ë’|£¯B=„”)Æü‘§ UØýÚ"—Áî"vª,Eëú|½œ3ðè&+M€“sÖY öÍÌòíÝÙÒýE¡¼úÞÄ&ÅK ­8’·o+9˜ ÇüD)ÃóBÛ4bŽ¥·5O"ï¾ÿ ÷ óó—~®Zþõ3Q`ÈÏ…"U9˜ËO†9E)A™ »2ï®òéiÜkœÁŒãè9Ð Ú£«{Ѳ€gRÓûêÔ $¸@J5#ÓìÞ“^t¹áPpÎS‰jù›ú@ߺ5àP㾆}R7ÿþöM(‰SVýBçø‡Nýþ“#"éƧ¼BŸ¦³3¦Xx>úuF[%5²*±»”Ñçk¸8’¥ˆq÷@œ¶u½ÝT õa6ŒÇ3Ü:ñì•|8ÕYF‚™uõeõíó0w]æÁÏ󄙌•jVáY¤däSœD®þI~K{vµÅ RøŸb‘ {»ÅsuHæ”V&ÒljÈ2Øfæóu~Ý*Œ†B7ÜçËð9¯|Îã™GDz7”ü`Oêb’7S Jëˆ|±L¢Zô [«h©Û^]v0À£{Íß‚‘ dQӠųÖ8ƒG ë&I¼/žÖ¥º§­Å®ä-ÑbŸ?Ô}ï£kPµÂ‚4¹Ã`³IƒÝè—ÙãöužkÛ™Œ«Éñ‹8Þz–†°ÞþW9Ý0§©‚0œí–›ÓןøeêZ‘³‘ñ™Ä¯2Õ·£~e9_„7ýÞn`~ è³¤ÒÝcû\þ¶¸—!ËcÁ“™ƒÑUžÓ‘r®ã€ÑVG7Ô*Ö€UçT) yäˆ=V^ „¸™Oñc¾9îÜöåˆä9>À¤·"ý„z>¿[4âÜ*ή%Æ6Z”èÓÈ”â}L=’Ž]´tûÞèm7CÊVŒ¼”Ó"nƱZˆp-O#â ‚Mš¿É^‚7“>z\×Qä{ro©¯¾Ò֑̔{—óˆüÓÚÛëp–ä Íab߆ÅA4t~ZRã:â±®ÝdÔpóeØ7ªžŽm©öagfÔi®€6»$O +ƒäb•»“iT±ŠcTõQ¿ž¥‹qþä6¿ÛÕk²_ø‹=2+ Ì5sb(éº-õHòn¦bìýE63(• { ¶ KQ¿ïEÒô×S–>"t½øH ÝH†Â˜yM–zjŽÄÜö!&íS£íÃ÷ß% T©È=­ œÂ®'ïD(ÈašV!#X(mÓ®›dû2/pŸÕ†ŠÆعrgIÜx¤êë¯En[ÅŽú±ª £žd@•V”“-æ‘u\»]­(ovH g€MÓ:t¬[¾Ž8wl涽ªÊ'\<&!k" '€íÔÞ7~Aö/@i ¼ˆ‹wIî#³HòÝvL£=ŠÿÙ†þÓð©#Å +ˆº9Y+è2ò(`RÝä,²‘p˜:À®Ç€8®Ü¨q#,34IÉ 94¼È¤z{#ÚÐÇ%¡|TQEíµÎS6º<Ü»¶‘º ³S’¢JÅ:~ËÜ™_♆*¼zé*D‘˜¶a2t;ýCª<4(á†uØF¦’ûf¾;•9˜ŒÄ~XçCÈþn‡8M°Cy^¦·”¯m Æùú×1o†Ìý—æÒêëº*ë(S¤t÷1¥¸Ê­£û ´ùžZœWù1K!Y²]ùsEè"›°Eñz¿–/Mý|?9ìT*Œû†ËúáƒcqíÉ¢#9ºý·.$G¿ÕbÛuÖÖÍ®—¯Wú½^`zV_a,£qÂWî+è9beƒš‚è|OVhk_ûàHºvh( ,©•Ûž˜T"icžIܤ>2· î,‹óK²ðE§°q£®1ðçæT¢ýRÎÊÆ™äÅŠnŸÞ™k&¢;PÍ~ÈÅ þ°—qõ‹÷€§P’"D4w¯«Úÿ6–ÏÂÆrV—mÑeX®7m.Í wÃu«c9¨ÄûE¿GtðuÍ&9ºûž~랥a"ÁÂû–]ð×îˆX·É†|+æ<Ê4b|$2ÚëBÆ´v’åÒ ëGs|!´wž‡Ç†gk§+jË`~ù´ +O/R¿µ\2nŽ×—¶ÎkD§`=-w{÷E×Þæ#*.ú(Ÿ³³„(;‘˜óÚôD–.¼*ÀO,Èv„€`7L½­—Ó©,Ö»!h—ï¾ó”ÛÒAƒá`‰áí3éæ|ûôIÎt!×uÖªláÇ›ŸeÚ¡¾<æµë!æÝ=õ|K:tÓ«}Ò’UïÍS_ ñ³V¿•Ö^µ^ÂBÞWÛ<ËOä9<¼Ò®ÿP$܆ñNÏ—ÌIªž±:)êBkò-ú|)ï ¸f9Ë'j>8\Àzþ‹¸GX¡­ÜgsÞò;¾m#²©ä\øã²›ÛiÝBÓ+MGéôÆQ Ú×*tEâ£ãúkÈíkQñ{šMÌ;Èì5q7j:}•7V +¸ò¢uèTßÁ1÷Ì™Ò-ô*vÞOñ¤E$çÛÆB6ÊéÄZ£*î%ðÕ5å½P¯’p±Å¦‹OL$·9®XQ6_^‘׳³Ø¼8x\”³_Êl]®÷ÕœŒ“t¤j$üŠªcÙ]6ìÑÐw«Â“zeóñ¦·yª’Cªð q'b?ãæ‚xÂp‹ëòð}½¶þ•qûÒt6n!œ_æImó+zÿ‹Üæ‰DJUõÄËÖ”9à½ì©&áCü[ùVñ¼ýf] +M¼,Üæö­˜Òó´Bvõ÷Ý'«7¹ÐÇ…Nq°0?®ïgÖ]ñ”Â\·I{#,Í{eKűzœßÕ^4"JZÈg^×>íZI EhJy¿(˜ —ö2ÍLc’ªDI‚¶eÕ +mØ=Í—HëvÉYËCø +SpqϨ¾ÒñÑÂÌàq>SÀÍdYz÷ÍŒ4¦Õ\‰…1:QÅre«ô•„~¯»eÓØÒ ’®Ôëw¯Ñ³Tê*uµÍ³§â¶úÁÂ/Z¢[Êô!‚4ñ)›ìƒ ‚p£—uºš{ÓÞx4å’ù(ø«”)½ë˜{míLìé®á£ûìh“¸Üá]d©ÕÏ™KÊvB›µ&r½ð¤T׋Vûç‰n÷mÊØhæ~®wfÃ9 ›l¤ó¥O(¡ç[•]³á¹šŠFgIkðk"¹|Á×™@ ¹FGé÷–=“ÜšD‘ˆâ•¤ûšy¿ž;Ä䇾 æyÿxWu$‰AíýÙ[&ïÐWF +ÙŸEHYÙk×÷é2]KŠ³’|:}„ë•¿¦h*Û¯ ­EY°Ñ×CËŠ?}§s.šàŵ½fèeA¨›tv$ä*À³¸'Ž©†æÑ€|ŒÛ[Ÿé÷ ÷—:Öo19H6œS«J =g²Â™Ô;4Oßö¾Ü›¹¢0Þ5ÉÇW ~O´BïÎMaï÷£<õ²)uq%YÀ„ö¨|»öc\‡%hùÍ”å+'¢ÿ2K¼ +endstream +endobj +4125 0 obj << +/Type /FontDescriptor +/FontName /LHPKHM+NimbusSanL-Regu +/Flags 4 +/FontBBox [-174 -285 1001 953] +/Ascent 712 +/CapHeight 712 +/Descent -213 +/ItalicAngle 0 +/StemV 85 +/XHeight 523 +/CharSet (/C/O/T/a/b/c/d/e/eight/f/five/four/g/h/i/l/m/n/nine/o/one/p/parenleft/parenright/period/r/s/seven/six/slash/t/three/two/u/v/y/zero) +/FontFile 4124 0 R +>> endobj +4126 0 obj << +/Length1 1199 +/Length2 2227 +/Length3 0 +/Length 2969 +/Filter /FlateDecode +>> +stream +xÚmSy½>÷ûûï9ßsÎ÷wjµ‡§ž-a&W£ÆnPhãIbºêmi¼\&$ +åqà¢.О ’¸Ìt q>^t@ ±C4€AãÐf8c´àŒ6úé³q€ +…w d3 ¦r€É¼PÉõä±X ¤l90M98€*¨pñÌ€=ÌŠbC4:ÐòÞ¼U[GG÷·ƒÅb ¨Ÿàr X+8„ƒ ˜µM@á2A¶ pÊ‚¯•„§@Ü…¶-:—Ë°¨$P`ÓçPõ™ ×@[P,žI±‡C8ˆý 6H4e°˜†!L8‚½(D…˜”ïíQx,o&Æ7:ü 0!~Ûh 0A¢±h3 ÀH2Ý`!µW übÌ$&%6š³*‰Ác!*(ø!¢9¤pà²y`lôÿÿ¾!0€‘¹@H<Éov¤þ¸H\6 ø£õÑh €^ø~K™Œ¨ßîn¤P0°u!zû8é,Öÿ/O;;X@«‡15ô ÍŒ FÐ'ÖÄèOÖ_züÔâ»ÕƒýS+ú7åF&°?Zhù³­pÍÌ* õ}´µó»Á\ˆ Z¿Ç(m‚Là‡Yt¼þ…/:dæpä1ß•Ñú! Є¸ ª0‹³  Dþ¿(R(ĈZ$îOÇ­à…ø‡îOø»-“Æ=Œá#Äq„"AŠÄ%ÓÌÎO¹)ßô€9Њ BL0`^tˆÂ9Á£|‡@&å¤x&¦@LàÉŒ(‰MùeX€É<6[ Ó÷—Äþ¼S!A‰  ’=]0Ù<1¸<ñ¿Ô¡7øШ~ƒ÷ô¤$Tî+²ÓS†¨mRçïRªïqùt%[>ãMDú6dnbšç'œÔÙCMÖq -' q'¯n/J-äi,YŸµüܺ»_{ŽbÈcY3ix¤ïÀ™{õZ¥s7Ñî$dø{8Ø”xfçxíæX¶­Þt€¤GÙU6ç/s˜PªCÈí MǯY–W IHÃQB9ÖӪݣ»ûƒ¦×«$n+]Áƒ13$|kqÞ åŒF™Åú¦&ïÜ+Š°ŒÍqHÜh”ž>3 •¢%ä—UäÓ~hS%'\nD뽧¾ûz™Î +℧¥)]ªocpºù½:×FN6áaÍø©Àýã©¡å"ϧ„Ûân¨¢ò€V(ÖåIJûïn^½E9Sb\ƈvGZ Gö¦G­údù:í„M˜ÙžÈ3W§Da…vSÄÅ×:3Þ&Ö©}y&”›®Š¸Fâ¸Fmçý5ÍqšVºwíJ?örùJG;ÎèÅ`F©Qï?¿^Û˜B%…µ)È›6™›¿n̸þ‚áS4k›‡A\©k£MYÙ~y“my}¡¨w¼Ä¡ºŠÇ9·+ù‘j¸Ð÷.–Þt»3k{>¾ÆCŸ +,úµ6ä·¾ºVþpx„ý±VòqÏ]6ßfõvÁ=ÉI1(¶Òߎý sün«ÀÀú¦Cæ•ŠCÖ !t™Ö»Œºõ®ºfÑBù9i0o.¥ÿBU°¼ä2ÔåÖ¯:*kŠDQÊ:RÓ*âÁôq …î;ù3¸¥È·.˜ömÏ Q…8^ÆlQudŸL<*¹uàÞ›ves0êÛ&ÝRqanŠEйŸ {ÌÏÆ 6Ϙ—m5ˆäµx]vë“MîDÙÒ +Õ +ˆ[ª:r5G…éc!Ã…S7JÅLЗ/?wÁ“Œï˜´—sÎú–4ðiùgËó"‡ÞIFúó‡ÆðÞqp?DW¬±=ôòÊ(—QHC¨T[3?êß$ +W<»ÿZI’pjsö4jy”ïµÝ¯D-V8užö"–mžäÍ!9¡Î·[íXÍOž iÔ|²p A:Ô êÜzÚqeïiÿwj±Œ«­ò(ë"ç̈Š$cL§sÌç£mGªPϸûŸL*£–R ü(ÊN÷~ÛÔUÿÞ€hÃ;¢å›dþlɾ•ŠJç±u*U_W®s®Òu~›oüãµÅ>™=š.–ú­«ï‡è ¡eõ»¢³s¼Î=OÙ³o¸óøTY%fðƒò«æ¼ú*öUMôD{…vƒ>;¥.TÈïÛÓY*{% Þ…8sáÃ=ZÿÞWŕLj_"cÅ™ M®´#äÎó…SÕ·HÎ+€¥%~îTe¹Iæá´©>æ< éÇ/ê‰v,Á —Êûmß}oÝwݶƒ(Ÿx‰]š/ÏŠ™•¯û/º¿Á~ +endstream +endobj +4127 0 obj << +/Type /FontDescriptor +/FontName /AJQUXG+NimbusSanL-ReguItal +/Flags 4 +/FontBBox [-178 -284 1108 953] +/Ascent 712 +/CapHeight 712 +/Descent -213 +/ItalicAngle -12 +/StemV 88 +/XHeight 523 +/CharSet (/h/i/n/t/w) +/FontFile 4126 0 R +>> endobj +4128 0 obj << +/Length1 1626 +/Length2 15301 +/Length3 0 +/Length 16145 +/Filter /FlateDecode +>> +stream +xÚ­¸ct%\·%ÛvNl;©Ø¶ÛVŶmÛ¶];©'v=ïÛ·oûõ÷§ûþ8cœ½0×\k®½Ç‡‚DI•AØÌÁ(á`ïÊÀÂÈÌ P°²3qsQq°Spà‘cšYþÚ9à((DÆ®VöbÆ®@^€&Ð 4°²Xxxxà(¢Ž^ÎV–®juM::úÿ´ü0ñúÏßL+ {åß/î@[G; ½ë_ˆÿëDU àj ˜[Ù¢ŠJÚÒ +’jIu€$Ðèll Pr3±µ2ÈY™í]€4sg€í¿S{3«Zsaü‹%ì0¸8M­þ¦=MŽÿ¸èŽ@g;+—¿ßV. gc{׿3puXÙ›Úº™ýCà¯ÝÜá_„þFØýõýSrpqu1u¶rtü­ª$&ñož®–Æ®ÿÔv±úë8˜ÿ4s0uû§¥ùþÂüõº[Ù»\ž®ÿÔ2̬\m½þÖþ æèlõ/n.VöÿÉ€à ´0v6³º¸ü…ù‹ýÏtþ³OÀÿÖ½±££­×¿²þõ¿8X¹ºmÍáXXÿÖ4uý[ÛÂÊŽéŸ]‘¶7w°0ÿÛnææø>w ó¿DýÏÎÐü%alæ`oë0šÃ1)8¸þ-  þ¿S™ñ¿Oäÿ‰ÿ[þo‘÷ÿMÜÿªÑÿv‰ÿ_ïó…–p³µU0¶û»ÿ~cc{Àßw øç¡q³ûÿ¤ÛYÙzýÿ%ý×hMà¿ÙŠ8ØšýWŸ´«ñß‘Û[ü•…™‘ùßF+ +O ™’•«©%ÀÜØöï¼þeW·7:ÛZÙÿêú¯‘X˜™ÿ‹OÍÒÊÔÆþ8þíÚ›ýWú¥úy&Eq-qIºÿÃãú¯@¥¿Kàªæåø—ÛÿlEÞÁìþqðø0°prØØYþÞ½¿„x8™ýþ%ÿÄòŸgycWg+O€îß¾™YþÕýÿüüçIÿ¿ÀˆÛ›:˜ý³6ª®Æöf7íþq›º9;ÿø_—ÿo×ÿqþ×Ξ@S¸õS¾ëŒìL×ìü±1Ý¡ð±PÇòfµ’¢À:‡þ€Œˆ=žj£÷úPÆ–9ÞÏN¯åsÇ_2´GX¶TýiÀëB?2šÁ"ÔmÊn.º£`&ƒrÄÌ ÍŸß?åv!t8™5Žög”U ÊÞ¡çºÙœa~?Ó’¹b?9"ù›¦7Åcö ´€ 5Ÿ_P&Ÿ>?QLŽößBþ§ˋ‡¥à3ÆöO='Iqõ2r~h6ý„|uçrQŸtsÔ‘YeL4kíÊ’7¯Ý¦ Èf¦«ÕbÜ_®¯{º·“OÕÖ±{*Sv«?]j”t‚hY&iNÈ"©„|UOxŽmu…Ÿ<~‚[àbæ`j€”a«iè Ž´@<a †¨õdO˜ôægåH/ j4ñçPx0É:Šö> žòŠ„ñ\Ahgy¯ÝM ›@m”jU}ƒ¹%Žoé^uÙ¥ +ÏÈã•+àÙð¦¾Ù™0Ï/@ƒzàKL¢™ÔŠ«Ý3áÅž(}"-~ßÉçe¨[8Ý°†õ‚Þ³ÚXÁÈ<ÚIÓz°¨aØþâÇÿZýŽË8ý”àgé¢Ýñ§²(°š5Øð‘ùMœŸ°ÊQÙqš–Çb“ Ë ƒ–là$ÛµÀÓ:ˆ=¼•ºoEY<žžQp•žqFô“qS²‰ÖõMž]Ñj-µàdS-Ø+È?»—`T1Ê¿Üiai§Eц0'êò؆±‡O¨Ã—3@ˆâ¡¥Æ2Ð ½7¦?'R튑@kqN+‘NhIEÈÇJŠÍà +Ö`;!ÃvákQ_Ê«}¤á;_‚õ' 31<¾XÆj iC#½%'õÔG¨×§ÁÜEЮ ¹.çÝæ°Cöý3ë?íOßvŸ@ô?uâ[}sêw͹$á§÷ª™ÄJF›²Ïn£-iC ?Íû'˜Ók¦ì²Êš•[o·¯YTñž§º(ÞØMk}ñ„lA™4£xÐyðh a/`vy"'æ­ ‡'Ц]U°y$Yãó Ò68?oà‘ uô‹¨n0¹ä9–ô‘<Šòx²=¨ÂîÁ¦ƒ:ØoçkKU…ê²}è¾6¯$|áô`í–˜ù%2ÝÏ}Ó×HgÿJ·t•™+?r€¯€^ ¼ñ„ì‹>C{ ¯0Y'PúÕØÚ]ï)9Ò#ÏKfaÑF‡I?hÙÜ™r ¸FÊs <`Úþ&¯èxe:ÍhŠ³¸xõ…€jã"«Òü¢ô Õísm•“4êÝ1'ºRĬ«1¦A~ +¦[i†H·°ã7hlîæSش׿®—u&;OnŽ>¥²S?M Fà-«Û'üÂäÛbXWjÛ ©oʨ_¤aUƒóör‚üŽ½ZŸž&C‰"t‹³1ú@2f,S®²ž·Ï^}66S ćß{À$±Ï”‰×6kA½„CiÜÈäVc1f¬Q³7FÌÑrïþêÌb¥K?MÀñX-Ž®0¦‡×|-¤jâ`Lz6]dC-SΨµZ GBë㻼¿®[ü²)aÄ—s˜æ +Ãð#íë¡uikb]ö&¤þç£m%ÃJ¤@Û}=t³åÌýõDë·š¯Â‰SͪkNsýß ++¦Å0°L%¿ ?o5Síx¡ SFŠªË4†6¾q†æ °ª3á¿ Y>yà/~DÑykãœ@à&…vêe{rµKµ›z»FâªnláñƒÜŽÈÌÅŠ(a¸nÝ jÉBL.&WO½ÝC±Œ~¼…ÇJÍ®+ä%ÈmÇŽR%üâ~ÄŒIƒ“·ÏDT5̢ÒhÀ®½äNé‵SÇ”£¢Î êb¯ˆ_õÀsñýñÝðV†ñ6·Þ÷b„šÊñ«o¢Ç©-ˆ­8º-/¢è§<¨+¸WéœTjñÞ"áÊï‰åY×y)!ˆ´üþ•l‡‚Ü̃¤ªdÜ4“)/üÛzÀGï‘b– +šFé)¹„„ƒÁ£Ð•ˆ:ušþéIòú£VÑWã€TŸ|•Z'’ë;1S-ˆ*83•1þæl&Pou¾¸Å‚[(5zf‰8Š„¡þÆß8kàØ +¿v­ÚF4L­ÌŽ>v¢:¥n¥í8^ØõÄÄÅ'àwˆ­]&3€%Â#Òü½0Yú°/í«­×U°Cëº7/Â+S£Ýd˜ŽI³i`Fu1?Û‹”dtÚò)[¢ éƒj‡œ¹©xõ«(ïÒ±ÈÇÕJ¶a#ÊUIüÅ^Œk‹Âοšû)KÕÂù«“"‰Å¡‰KüÚ~/×v³.+Åvלj¤x =Wël%÷Êù=ø¶ sfÿ…jH“ëÈ)o’zˆ†=§š~5~ÃÐ „ OË<±}†Ö‰-MÌ|Øú’}mMßù°rþïXL@ÿ” ÎöÊ"Šá^$[eËè4ñŽRbyëë¯S"L¦¾Ó¯hÙIÁxY:Å%k6Æ(ûÜn€´¾º;‚ ê˨¥\`ÓB6Š©ÂŒ‹u‰-B*eÎW‡fSöÑ@¡ìY|?Ŧösa,j *a‚íNÍߣœÊYÉú˜ý:†¢'7©|7} m¯@ÔÏË~6kGbäø–-%¿pK-•ª[ý÷PV@쨫 +²ˆXÈÌ>jùŽÈ2Ýw rôÇÛÕBRvT >k7ÎI.œÅ.y^Œ÷©:Ôo6ßÈèVš!åÚ%v¦CrJ'z#+iO%ljÖFX:Š.°Dû`>Üi™®Ì›4¾B2MêúDéEÑ.JR¯þ/ã#ˆ!;Sg`ÓZ¡‡Yr¿´pòƒô+!è÷™[F©(AÒoKñ㢲5s®!/éåصµ•¨ãñ®?ý+éÔ³óò-…¶%¦Wºl¥KÄc9vóuíqW< ¬hR g ÔgÛíµ¦¨¸AM!dE˜ Æ;É'¿QÏŠTû¬—*ùj\OP5·:€P §>[ø„Cê³Û1ZË©Â_?øjH´¨jÇáÈpülkÆâc‡A%s'î[‡V]GïW5·’º²3ýÍÝž–\´Z¡üik-ÞlÉÎÀ@ã–\4)ÿžu„Vçs‡'|ãݵ:ÍØ;Å€ÿœc³1zLÌÅÚ‹ kúzÝ)ƒþ󣤠°~Æ‚Á70A¨ã²GJ1HPß¹6@&>¤z‚¾_Õ»8)DŒêþ'e˜ßˆAFÖ2ìà'X((XYÜ`À Š•J@HqepÄ‘Ù¤kÙÀ¼w„|ú‡ulËâÏú‡IˆÁlW +éªjbfdÚ%Άû ^UUÔO»~÷îà’È]pJ¡Q;C…c.û0ñ«…2¥3½>kÁ¹~–w†j‹&7OÂ7|o¶ä}’X¶RêE•c!›ŽñÝ•j rP7´C´ %ºõÚ ¡{2 `ôdH–ÚÃj÷­>¬ß Å1,‚`}’M‹ÿL³‘»}}/³/É  n°`ŽpP¸0aúy…±Æ´!©Ø“Öjaòü1PX +«â>Ý›\P»Ç¯88óÚ˜6$M´r_V͹`?%Þ]e”>Ю—¾Yùý›öµCžÿ-Øa{ù×zÙés oF»^8¯ ›aw(¦ˆM ë´ J§ Ñì¸lÑ*øÖ½]¤|>+¿¢`‚ªž´¼ÃWzÄ[éµNàõ¶M&u¦6Èž*Ôž™¥éÔocU7ÈQ!=kÖ³Š[ ]2•9R%3ôãh:® :}©ÌÔ3å¶H±Ðõ¼· žÁ"•³»X(MÛõóÚÃs:¢ßïÇkmÝEºHËóíò^Vw8éG8™ÛE¨Sž !¡ÄŸµÓÀ‡S–à °o­oâ®4¯†WÜ õ»ïCÝe‰~$Ê&¤ïTç–0ÑÔ1§>íθòÁ–‡«ŽÍVêþ3涿Xæ€çJ@Ϭ¡´ÎsY€o_‹*ºÈá{Ý“º« õ’-@œ鎿ݱ"ë&„×A^ϱ{Öi\²µ¯‹ëyçb„`ˆÞÁ¾¥­2Sÿ°+#:K¯$ÐÁGò{œïä"|¤jã@ÉCqj›x‹~pv YU÷+Æ“ø0¤µÚÏãÜkÊís§¬K4ëˆú ÕleyÔGJ·SnW•cÿøÕÈü&•XW—Èžcæ}gµæ¬~5ÊéàÐåÊ‘Ê€Ó.½`Ø‹WS~/)¦ÜÕ±_©}FìMóã« Ê䊘Y1˜‡/]…Ò:-š¯OØßÁ_ü'ÊÕ•…GÕ&Þ¬ê.ö\žBvxMò»k™ÑX²MBîoÒÏÜ£ÊËäfÈ]ɘ¸k«ùJµì‚ j÷F—Ï4«{ú™ÌòJvz=Ã¥ñ‡p. $A™o¿yq?{DÒ ÅWqÈ•<{鯢‡Qjv¹<çß‹7I¢·š¥ôÜañ}-;pú2|žnD½ žJ4"âc‡Ó-% “¶A=dÀ˜ãV§sK§îSŒý¾˜¦ž°==dEˆ£PtqغèNE»ÃÞraïWAô£ðLÌ&šj*„ßûHÝm +'}=Êð¼K9L çyÑ°m¦†kô…„©ÝqZSWTrÚëŒxý.¥ÝÞ`%X‚÷Æööš„ÃáÄ|?'X®5y&Ñ +ãÜï&àÛÒ ÜÐ05öç]cÚ¤R¸û"7”úk¼2ûdhp‰žƒÐ¡-+™$ÒĈæSÊÃéÛ&µÏ×ÐLø”9*t:¯À•ÆÔI<Ø–ÇDz€ ä(}勤¥À8?ÿ‰j=£K‰Ö·íÎ/8÷Ÿè¢¢w_cÚ]¹”PqKìï)À°‹O.Ö*"vI;×1œ8|€å£¡Xϯ¥T«t¿räJVñ÷ž«fšû žø¼ZV¯ Ý`˜|ºLÖ=Á-:ê„Ü%i¤ƒÑ!™D¥nªZ[#–Œéàòý’Õ"¸Ò‰ÜæŸWåÌ¢r{»¬=¿Is¥ô£)1B¼«@)˜.@Þ‹„–8ÅæòÖ¤gTÃøñÁˆömŨȾâïL”4ëL3n¬4œ")T@ÚÙtXLipÜãš« Œ¾…ÕNIׇ½šþù>sG_†Ûȶ.5õ„h–AIQ!BÎì-k1›ÞkÙ±úͽ¼¦Þ•Xû¬!v7ÝfW/ÍRÚ‹µ•B‘”sLÅ\)S÷_Èaà.D‹ózÒüvÒ…nÇÙ2RÛG–dÓ¾šó  È(Z¬í%Xs}ùejò£üù— æÝ„ U’º"=EOý\·´Š÷ZhÈ‘luÍU©a=œ ¬vÊ¥ ‡ +îÁ5úò +'ÃzòËz5Ød +Æ7X +<äƒ_¬ÈT{ÔÄâCø½[õ;7{ˆ“’¥MdôĬ«-B:쎾¼â³jX3}2[ˆ{PIP5¨ëÈÅ;Áóú`hA_F +_±µÁEaÞfÐ'‘G ÞC.MíÉ êe + MíeH·®øÞ-W¬ó>À +`>’JV-LÎD˜h¿’‹ÐvÔïâ’¨®¥i Æ¸3´@%¡¯dV¶ ÿÞÞ³“µ^»Å<í=ó«^з5¶oë’¥)öóýr³*U!Áþ˜dŸKwÙÿj"åòÚ>ÜÓz‚Œ ¡ŽÈî=5$ í½aïÛñØ÷#„¾~4DÐAj½t’ õrÿ~‚—'<€F%é,¿¶‚6ôÅÁ(Á I=³/’\Èc¶hJ",6ÞÉwâ¬U”§pmá‘TãXÛ!˜œ—Gx$ÖÁ +&ñìÙqøÐŽŽ/ˆþ ˆ@T[‘k²$‹éDp„ Sy9õ¨¸×Ü?O±~pùîa鸞4†‹pëÐý¨É?ìÔVœ¡ßxðü2j¦8ïd×GWd!6ôÐpëû«ëdîjÏ5y–Û…a<ŽõƩ狪k€‹öàûü¹Vó…´óºŠŽÐLÂùhÐ%yL['–¨J>37‘YÊ•…QNå-)Í¢I üüÅý\]›¥•¾¯!š·Äy/¤2Õi1ÎöãýpO›äìyWÀ +džA çðñ6îr;_Mµpt +ÈŠ‡“¯$&R9“:ÍXê2âÅpP@“¢Lß.Ûóƒ†QU§4ò¬?ŠäÃ!<äYä¤ìj¸-5µúLî¹åËmØöY^ÍỘüiv½©R©…ñı§†Ö÷5klHv:DúF;ñs–H9ßoÎådÖ4 &ûä% /[;2>'f5ªÖ~=…<:z?l4.ì1{yI˜+Ö}y”Ô Æå S£ Imd•Úʺ¡gVÌÑSÜ8Ðæ¿^ZO¯&LÚ͸4Ñ}cÎr??ÙfjÖ›= ÂjÛ0ƒ>0êpÞÓiýµùeƒF„ЂHʼmK¶‡_±p½5ÅòûN«¢Gì6î7eáµNÚ–Ÿþ´“ÎýÞ7¹-¾iìËaÊšˆ:Š§Å›Dä¢m@+;®¸q;;÷EÇÅÒºj$oÑš‡Z²„ø1uI;ÆßG¾m—S“¢àÈÇnÈÛ±IÇæ=ÃL¯9ß +:HejÑú3+ÔÉÊÈÞ3ùA³œ+étœÂ dêÅb{ZðÓÖU‹Ð&ßOÈ8©:ÓCoÖ2§ÅùVC2bÊTnM©ÔܲKBzÄ ®ŸG„€JƒGUî¼4T?¢ËR@‰Ä,xO¿pcj•£DÕHÆ„û<Ù‹+ؘÅL–~ìôÎAór¢ã-бŠó_j U}ð½Þ„÷ ÕÔRëÃĦ¼ˆµäÃã.­ 7÷©Fßâµ7à Ӟ<ƒÕìïõ9åí½Ø9k¦›ìâöoºá­_Z¬ ðw¯õÁfX?C"µkBxe|õn 8ÑõL8"ÞŽª¡Éñ]ˆÚ̘ˆp-–tË(nÞ+Ss_”Þ‘()‡z5ÒB4Æ笚ɕrDŠ ›.ÄH˜£|ÈWè3ì,ïÂäø/aés“Kêo—>Ço¢{=œäÒËpmQð¤å^«kX&¹„PR$fîI®¥óƒíbÉ(Y>fW¬ƒçÑr³@ÄÅ—ƒñKúãîÖb['GÒ±U}ÄDq"oŸÔÑ€_ 8ª­5©§ì(§:­m†·› òš„½sî1ùŒ T6-Kõû”@ÎB'žHC/¨]+”<†ó¨l‘±d$àÁÐ<‘¶Üj¦–KáP›ò€¶'áoñ˜ÀÕ ‹¾åÂtl†°ŽŒz²?¾nÎíÙx¢°ÑA‡÷`’PÉk'3°cèO^Aá}“§Ïï…5 )à¤âÂâÏ4 E*æZîÔàÇG¾Ó «DgúãÒ*VÞUˆ½“),ov£ÑËÉ#Ú$V¿u ìžTÖï6·(o¨lŽr•±1˜’Ø8=lЙ.¯Ãuvƒ¢k<^¥7ý§øû‡}½cÒQª©ÕÜ"K|˜çvjp’àÔ啸}§Äû0Ü•ð¡‹¾Q+mýO‹¢-Ä{· Ö=ô’”>›<ô-¹ç”_„F3#Ó.°Òâ&Èôø‰‡‚ocýAß=õ,+ªòÑÎPøÞ + E?›Qžü7<˜g5[‰ÅŒý¿?×4âdõX"ŽuCNÒ–ðÄO·jÿ3¶ Á-9T)å +ȶÍGHlU¶¹)á«ä˜)Fú©óBiE;ëttNŒ€M/D^:¢Ôõ M^}‚ò>;.EØE“š&¸§Àa\|0G7€aÛn¥ïsLÏÆžB@û d> &­ï‘K1 Rõ’°U{Ýr¦ÍNã‘Tg7%ÌÊu_ÉñúÝŸ +0PNò±ôKdI/Ø +áxÉ/ÝÀpÈfù¬ÞÀig»¿žÀJÉd^ø]’,Ó¢·äÒ|¹¨Ëâº7dM#õ˜ƒšøT8 ë;Ù+ÓW~˜”tÔ^Ïw3 Í']K¤ËGC…e¨”þ’QØFL¤éÑá(ÖÉë±öÞ}á(-ñ¸ì†1Ãcyäo}°®OÏ”³V}†¼ñ*PØ'†‹$ª¿Ý +GsÞP +**’k6Û±ˆªç¶SYÁí¦hpC"Ϭ¹w7HƒižT5"©š˜òm‚ÞþH#tµ+…4΋šWünó9`‘RZBl³÷‹1iâËæ©áæàyób«£Bf)Y•r:iÀhW‚äP) +ƒ&tÀ7v˜\ ³Øwî„žÃù·· ÕûÕåt³XǬ¢É¡¦CYòa,ͨp)‰ DæõmnìÒ—7òè@Àú[ž\ž€^ÏSøe—À”žùî!’ªœ—ÔûßòÚ34öW@«Rqu~^’ÚÉÕ¶pò».Žgý°¯ƒ&¢´ù5̦=N·†K»¼Á‰TÂ4{È”+ÅeÊš»D›!K^hþÁ~LO$ÀH×qÿe¸¥86ißÓ÷Qƒ™gúƬÅ{×zdÖ›ƒT÷ÎR $,ÓÏÕÙ¦?·j?…f¾8ƒ\¼º 32þr­óeg(âãCIõÄKâ¼”¸ÚÇÐ@þ§èû>U‘Ãk~¸€ 'û|%y“úy2m¹,ÿX¹Šk¦¿§`Ðë©#*ø^”Ñ v)¹i(AßE OrñN5W5ã›”Û‚Æ%@_º¶]µg7?aW—-Tˆã zg +4¬DéOH®®ÿâƸÛ”‘“Úq‡+:ó^4ì5ˆ>À„ÇÕÎÃBC‰Ýo³‡.‡~š¸âà weå,Õ#@V©|†¢ÕØW¾ðˆ®ù Dsý(>ÕBtľZ¬“çO (¹ƒÕ˜PøÑç0Z²×IáÍü‚%¥ª¾b?òB/Œˆ¼3!Ù¿J™„Ôå•N;ncpÏ;#nøÇê-Ñ-K93á—Ýññ*¾é_»Ù“8årÓBèQ #A·&S“Ò_«aõÇÖ¤Ù½o©ÆH”Ü7રCä̻璊&á³.bLý¿jàÖ ºŽô øêüöO!Å#7ÛØÙÀ*žùÕî/ÿ ƒ,¾«9Á\‚-# †·¥™xÏ¥ å—'¦­¥ùO'½¤§5\J¸Ÿ¡N(ÈßÄ0 Єï;Ò¿«[·|Æ/+ŽCy$6³·¦¦Àj„¯¸ìÃÞnñ(gg0«LÆÜ®Åc*|8±²ª#Ï|{‘<„e½Œ\­cTq׆ë‘0ËíeÌ +WF¹ +ßÒÒ7Nyw§l«íʆº“ÁÉÓ,hôlgµ4ª§å £ŠæWW‘úµéª¸‡=BO4¾}÷` ÂXä– †zbxØ‘*ZÚD +®ðD…ÌdÖ³wï¦ÒêfxÂzÞU€/Ž½¯Ñm•ª ) ÈŠ˜<_©Ô¿Q~Ó—™"Â:&ôÌi–¸Ø ëoCízµ˜ëN{¨>¬÷À”ÊÞ[¥žéÍzÑZ²`0¿ZæÖ Mþ¼êÄY “Cußf¨W F‘Ð’¢‰q„È´)šd×ù”áƒc+`Ÿ¶ÕÀÐíZ%3£Vª¾ªƒ6Mn~4¦3²|ÖÂ<âí¦ØhŽxÃ'¿;šou2ÿ†‘ì»ñëåçjð6õȹÒÞiAù9‹´äS&n n¶Í­ÖŠµ¤tÐQ ò3aV2Du%:Ìêøƒ—+È”}Òƒuf}ÜõA3©× eFÍR; O“/õùONVsî*O–ʇÜÃ…hû±ñ1…nâ¤U]“Þ +0@BAóˆ^rý{x–éÀÆÙæb׬íÛÉC„ðõ+H߈LÏCT#uÑ®êÓ©ê8øo¨5Ððµlâë 9veŸY&4±‚!—o9œ#-9ÉÔôÐóf>ÚØŒàO|¯¤™!FA|Ilq8¶‹Ÿ0æëÛ§fÛgOkw6¤Š¹[Þi'Úõå’*§Œ§ÓrÊílkóB‰#5£zl¿xpûEac•”LîÕZ¸¢-¯Î¡VÈî²”ºE¨LCZ(>²0éaèýªËZ¡ÎuÏ{p¦±Þ¯#³EÞMŒmßÅã¨i”nû…л¸G" IIêÜ€5m¤´× +ô”ÌNgH´°b p?×l³o‚žb^‘úÓÚ-Kͯ™ŠÑnM¥à¤XÚ‹/Æë6ï,Ò´îP|ý‚B#æ‚WaœYÜŽ!„H4ÓÀÜÛujÕlŒÇÇã\Å.ÐJ IïÔ4 †¸·ÞÔ¦™ >HóËz4UÇ–jhå¼ó‡j!q Ô¯ü^t€ç‡Z5÷ÃÖ‚;ùñþFBO "”RWö…~°uѵAЪKélú +aŒHq‘U|ÿ»õ|º¶A´óçPϯÇÐÌnƒ—PõäÉûg¯B7ïžíJ¹å6Äý¾Ý‰oÖi2×;–×\Læ¡àV¿OVäÊSñzz“’g° ¼3 ûàÌxV4‘?ŒUº=ÿi8GÞà*Ì<€)4ÁËŒ·V½S³´$?lA“ËÛ¸´Z …O!°‹`¨rf›Î¯róÃ`N{&êHfH «Yâ¨PE-RêÍHDÇ™ƒA–´i£UÇbÛTµÒ™¡ó!Ëža·ðÄfP*f}Kô€PáÄyç–Ž49|Î^>6¯!! vûÁZVî60œZcØÂI½–½˜ð"2÷Øšßøu(1¾CÈ]q Ü¯Æ .ãòÐä Ã3p}HŠLÂñ'è¡£üyp…@uknèDÞš}GwX¦Æ‚t„¥„üôMZææ£*ºQîyªê­´Jÿ›õ`Í—ýQ´x"¨B*Yv%4*·Š½VÍ|\ïžW5¦P™~ ±i©\4}ëd'ä3†èþ †”-Ôsl™ÃÞDúDwiF¶ºÕ jg6¿|þÓ"|a.­“ÞÞºOìÉTÚûËR߯mDØgë·6AWØulhÌcDEÜQ‰´n‰]64ê¾íßf¸LŸãNrr#ëÞR€Šz{ðª¢Ù– Ek¸Žæ»E©9‰´'eôd¨ƒ\Ô~yFz—äi÷ý­Ò®ðý8EèÄ.Ïê]ÒdzÔ- Ö1„Yaäîn +`Ï$•Î»ÛETfq~²rO°áe$Ç&¨ÛÖÍþÊx|?%}ö7I4U}q´ÉF„6 ’®òèÂ"¡þDˆ|UuàË=>¶ŠJ)¾ã-¡¡G‚“£\¿+Ù$Ã'ÁC60m–uõ&ÌöDs +o i‘Ó7ê®Ä¶U¯2e\…l+³x‘hË7Ë©0j%Èþj¦Š¶lGéåÉUÆ"Çl5þ> ¤Ë'Cþ­Ï '»p÷Œt”úˆR+ÈŒõü­å‹#—ø >F°ÕÅÿì°¡…Wã¦U{Àd[p!úg߶-\ DÔ¹¿?wG%%øí¿Ø!Î|svr–‹oAwÕ%¨ìLÇÁ¸®¹s%ÝþƒmZj«SšÿUàuž^P|‰j#æņ+fÕœ‰Ûq,/¹Í;󡪭%l³¹C^œ.ÕÒÙ$ž·U DqŠìè‘’ÜÙu—·ÏÖ„›Bùzç(Y4¨\WGy®àT`“ªÊ02›Èf£K—\„ûåH±ù¦M©´TïœQ`™'÷g¹À(ybpg ùŒ­‹§pÞ³Ò'6ÅØRgGá~¡‡NBdŽDÓïC;QAP¢íÿ¦F1>}}÷KT]«Ó²;ÎC1~= eŽÑ¦8Oܳ +ÜÒfËð*AÄØ‚¹?â°¼ oä¼Rn ÿáXº¯@2œÛV4åËäcgOÛ4–>½Ö®}C}vªZÎ+ÍtjUn°ò‰mÉôgŒ|©`¾A¨TX<×;Áx)ý;lAê¨ä%¢8£3glGcA¦ú9v6QX쫃Y é5úµ"« ¦y»0Ì 9~:—Ý›iD EÔñ§–>Q‘|LלR•IêÔt[]âñ´E¬1¼J2Om’j=4Ÿ†U¾ƒ™aX–‚~®#ƒíÛ9}0=Yb»3†ŽŠ‚p_;ÿN[™Žl¢½GuHRçâ‚>|G‹”fÕó·Pïô5JÒë*MRg±òdz’>J Y¨;¹ç4ø¬Á‹ ï:iBðâHEtâƒPr™”,ªñ=3P«Qˆê¡0³­lÅDV¾Î¼£M7+-ŽR×ÇNlX2ê«Iz‘ÿ +}$^ÿmâ}¹<5o/¬Ú÷ÃÀþeIÉâ<ŽæÙ,~kŸÝƒÉaÓT¬ ÷>hóÕ„ $H*Ë t3ë8nJ_Ec^XSóRrÿêj¦2ícŸj>üÀêí™=8§xÝvÀKbëüD„?|7Ƥn-vk4g³(HôÃNõÝ™"C€UsÖ28Ô‰ˆÞjyÝ;bÔnj>kÍò²R8•|¿ºwÇd}é*¡å4ºŽlã&ËmFñ<ñ +2èÂ9úPJ2ÝÿÙ—A’ýÓŸˆÃC£ó´5Dº˜¼(: 2¹¶ÙžÂÙî0ž\•‰ ¥±ÂY§EWL·â{lÂ:-eypNƒ(LjKf‡âƒ¦ãĹ ¹,Ó›M&­ÆýN0Á9=<„˽Ž3W%Ö:³Æ¸o}Q¾ÖÈo–÷öÁŒÛ„„xß–=CįÒ5¯aæqñ‰ÂSp‘%`5^……'Tµ©e¿Ùï—’µ¹Æ(¦ÎûÛ«ê‘è¯éž,!l±  +Õw$îFÓÊ°«|\ö/Ù¼>ö 2#=ôÈéÍ‚ôë·§‹r<Ä­}éöõ˜@ž>7Ϲ/™燛 ܳR}Ù·+qÉØ_òö³ižúj;ÓŠàNõÍÕÖýÁš$ÇwlƒÞ,2{HÙê··åFW›è^ ¾¤ &Æ#IÅR²îqˆ2~˜æ R È\æR×}‚Ó£éZ}·R2«,ø£³}õk¡ËBT{–ubkÜÆyIÿé×ÚCGß | Ûðôžª6>z¥ê¦~¥•±!ŸaIBç#OAôF¢)§óÛÏ~‚‚ܠߧ­LoÙ?b ²Ìq°© ÏÇˌܼ;É<¦¢2#S7c„,fKœ%WºfåeO­³N?K¬EÀ]_6 ’[9Iè.m¨èög 2G& k‹øIFËLi-–Ë^ÞÀCλ`wxE¿,%`‰nˆæ4_ë«F«¡ˆsÑÚc®{O6Þq’á.Nšà}2|Ù¼•¶äÂ?xÒ~- ±‚7L›PÍ µDŠ­ÎØ!˜Õ¼[¬›Žòé™ Ômäùú¸=ÔŸAl¤Uu’¹$È×\…5³}=?":Ô0'YÉZÏkÄÝc°¹±bÊõ©$¤€Æ)Ùöt›MøJ5‚$r? ¯ˆ^§[vx…Ô‘âY…*_½ôR My58øán¾¥5Ì :*'ËŽí/øô÷öú®iÒ­Á¦ƒÃß°¥…åSs<’¨uR>– +¯oŒ&-¦œæòûxßjmßзˆÙŒmxUâDô}ç?®0ÚÞØ5O‚·´fïA_„ãú¾¥]"uÓ5ƒg·T‹6*Îöä~œ#¯Ž¿„’ˆ<µ¾Ã{[W/ôcŸM€ÿ{*EºÀ©ô¸}’ò /›gÀcƒ8§ì4I4àÆ&w<þˆá`íêH¯²?œ-6TtZ‘ŒiZ~¤øMZí}öåÚ'º¾£ËEWÒ=e츆æw\Ù ƒ)×3¦h!]ð-‡…zî6Ǿ`:ÎÂjâ]%š`- ñ‰.g[ŽOÔО¨„¡—‘4é ›ð÷§¿X¸\’ZéΆ5 , ²&r7 ‡nY¬k÷O¨ùæ‚CÊ:Ê6[EŠî7«¸t²1äŽ;]ÕÚÖ¢ñ4^(;}4nEK¯dÓEŸpZöžaw«”Ém¸Ô£B#¹ ·±¥^LrÇÕD„¤ŠÂ{ +®ãòFÙdÑŒS¡ÞÀ\Q*œ Žœ'¡-².jn‘þ'‡ -ç:¹Ló‚?ÌVɦْ^Ž.‹BW¬Z= +î}S`¸…ˆwç:БI¿®Œ2ºc²¾,¢ñX)„õÐè mø Õ…ÆVxô¤³k0'g¡Îœ­OQUzµP!KL‹åÅ?ŠÁ‡%®éídúQ²{˜{ïãcvÒ!ÍòaÙçÆn?믖%@\Õu¦øó!P£­7Gþü!ªø¹ns®$›ô$´Ô×_R#g­PRike'¢µ­Å;+kô1eßä#Þ'ӛ℈,È#õèi3«6è\¦p¦L/ÄíðÕ Ëž¶h$Mæé{Sax˜žâ%ÌD(÷â£õ€ÑqçvyA͆[hÒ»ìH¡Ú„»“ÿµ{0Ib“ä~Rž1‰A¹]«#‡Ì[d·­šî+jûƒj8m{†æµ–(ðÔ8B<2Ê{Au«$5©PïÿÅÍË”è-POô¥ßì )°ÒòkR¯Ëî°*æTå¯ óÓdôîBÄßs´I,÷èñš¨<QÕ…–dÐéz÷/ó•3–yþ…ºË$¨îP9×£QŠ!¬šÀQ¹nÂזÑÅÙî6K˜ÿJÄS!9¦zÿË´ÃJy4ž¡¤%QÕöwndý{T)ÅøY‹FbœTÈÝ—Œs-%Dëªd¬§»8¢[Ⳝ·^!Ê-·TW R‹6|dDayˆ˜™[2÷¹ü™šf ²¸‹ÝøV;ÜÒÕ`ÁˆhXÕ쳇†}05Í–:WbŸ#óä{÷ÓoóBíIéV),ÔleYhé9s–EšÚ +DæìÐÓQL"3Íòµ¯Gj'!õg}ø?„ú‡Ê]GËb£µý^üeÚD+÷K¦E~XïÕßh?>ÕpcÉÀ­bhűP.£È ¸Év •Ø›œˆ·ñnY«Deƒ<x‡>‹‡j—b¿ vHŸmkr¯ pû=!ª:±¿/9# 4çñþà\ªvRÏ•T}2³¼½Àîí-O¡Ã!$èo™+Ýg ˜ªh¶>$˜ãøÅ“Ûʘ!²¯Äc =Fy÷M‡JG\P¡jø…ù¼_âz/Ñ8Áþá0ÙXàÀMŒÈÈøåa8Qp…Íùº]yõi”þòa»}»ÐjÃΓ…=™±a2%\Š¼üˆm“(®¯–R€ÙÉeʧã&ŽŸpûå~1.A͆‰V9'¨1+òÎ’!$"G›L8Oìà÷“‚ê¶O—Ðô±¼{9ú¤ß¸è(î;¡gÄõ7_ªôtsEnY±lYRTýMëx©€ÊÊ +Žã¡Œ(îþ•PÁÁ¥0âí8 ]ò;È$Ù&3ÇÎø}Ó0[¡ýdŠL³súîৠºy”3Ýó•¡À>æô´Ëüþo’«ÌLUSõäaú9*·ø¬ó[S + æñ2é¬ý‚Ú¶ÑÕ@kÓ áÓô7q­„ÎÓý4žü}2"ÃÕ¯q£Í/— +à'½¡Žu8» ÜewÂœÅu_.ô¥%7"º2ÿÄ ®öî ê 1«üåYÙˆ2a“ÉQ}Å[Öïû?©‚i½ÁÞ®Mîrxº3œÒò3´ÂM*ÝœHí§ÃAzJÇÏFö¿s‡1ØÛÒ¥x÷M¾q¥w‹ñé£êtbù•˜`M†I +M~·Šù¨iÅüôEi»%~ðˆÜæŸG+Ü7@&ëûpoÜ%zã×úV7Ús£é µ$†™!î,ÑB)ÂÉ28(O÷¾po‘Ëþ1ƒTŸ172(0IéàŒmöˆ"JeºØ·Øc˜¾Ž [>Û:q’·ùÌóp úÂ2@)=©]lm‘º&\àÂüÍүĔV[ð0”ÑóÓeBª'€u_ø×ÞÚÍ÷ /Ó…¨=­ +`ì¾ÅGjÿoV¿"¤kIîhhóΧۙ­ Îj;k7éüD¾ôE2mB?êµvöè~3ãR0~Ë…E™ÂÌûz(jÉÐ ¢¹T_EúˆÒ¬DØð Ú©<~”g†ä›0isÞx®9BÍ..>¯!£’bµB‰b™ÐV2eƒA­ˆã@ÛIr°b±±KR_Bšö·0_½€ñ½_ÕÊkÄ2Љ¼åÖjˆÙDp\Â^‹B£?‚NÞ²¶…OR¾¬ ¨c«îGÈq$ɼ ¥ÝYeævmMNIPËOÜõ$†iô¯˜_+w¢S<"Ë;I§tUùn/ M¸'y[iÚ¨m3)+™óE˃2_¦ß©D>§’]Íâ¾YŘa:”ÏѪHQ»„Jfû½2žgûŸ:TŽûÞàh"d{v1Ð]™ÿüÝ7€•ß°E2BýZžÊ6A©kY®ü,?ò8?’D½¹è ?üˆ®^©¶×620—'³ÀõŠË wwÂ}¤é²óýÇD‘bͯ‹Ô|]íí­~ViÏâøÃ"†©Q©óxÖÙféÙ˜Òõ¥e„ ^_2 ZZÐ@k® M\Öზ;bVz_¶&‹¡[]éL ;ÁTÛPÖ`‚ÎØwvÒ2p"ËDÄâylyÔBï’v#™¢®tÂ8Ôéö©jôã¸ÁôßÆŒIŒÈ«‘QQh΋‰@#˜±î ¾B¦»ÖD¥€Ç­‡ïI#UúÙ[©ï0Ï=é PPúHŸ¬' +«KV´ÝëÙ¶å©N†žôG¿n <<7†YR +2àVé ‰ùº¹_x" qôÌëÌ‘'âÚﱿáÂv¹*¯9G¬W +S¸]Þ1ï‘P:†db8Ëý›îê"5 àšú³©7X¬ã‰É²ßnš§Ý[Ù&èÒö•½Ž+Æèt„ðGöì—Àª¿ñ©œ?M.¼pED1¤5µ„¨rgŒí¸ðµÝhÔ7WˆÊ»X1RŠ­æܯÐS¯"%xx®Ju¼ðPÈVþNaVcû•tÓДàAŸhÒ kPîNJZ$8Kpʼnʧ9Ý•¢õ:Â.&ø“k›n±ž@!Bú8ú4ú=\ÒøÔÿ'®ŒÔåR¢;i8š\O7ÙSü‹(=`gbgeíW»ˆÑóBWÙš™7c;Ôÿ.¶P +endstream +endobj +4129 0 obj << +/Type /FontDescriptor +/FontName /OEXEGJ+NimbusRomNo9L-Medi +/Flags 4 +/FontBBox [-168 -341 1000 960] +/Ascent 690 +/CapHeight 690 +/Descent -209 +/ItalicAngle 0 +/StemV 140 +/XHeight 461 +/CharSet (/A/B/C/D/E/F/G/H/I/L/M/N/O/P/Q/R/S/T/U/V/W/X/a/b/c/colon/comma/d/e/eight/endash/f/fi/five/four/g/h/hyphen/i/k/l/m/n/nine/o/one/p/parenleft/parenright/period/q/r/s/seven/six/t/three/two/u/v/w/x/y/z/zero) +/FontFile 4128 0 R +>> endobj +4130 0 obj << +/Length1 1630 +/Length2 20369 +/Length3 0 +/Length 21212 +/Filter /FlateDecode +>> +stream +xÚ¬¸ctem·&œ¤bT’Š½c۶특“ìTl[Û¶m'Û¨ØVÅþêyß>}zœ¯ûO÷ù±ÆX÷Ä5qÍ{Ž½9±’*½°©­1PÂÖƉž™‰ ²6vvT±µV°å–£Wš;þÊÙáÉÉE€FN [1#' @h +šXXÌÜÜÜðäQ[;w¹…€J]E“š––î?%ÿ˜ŒÝÿCó×Ódn øûâ´²µ³Ú8ý…ø¿vTN@€È +UTÒ’VPI*¨$6@#+€’³±È 2Ú8©f¶«&¶6¦ Jsdø‹%ì08ÚM@Ý€n&@»Tt; ƒ5ÈÑñï;ä0w0²qúÛ'[ÈÆÄÊÙôŸþÊÍlÿ•ƒí_ 뿺¿`J¶ŽNŽ& ;'ÀߨJbÿÎÓÉÂÈéŸØŽ ¿j€­Ù_KS[çJú—î/Ì_­“ÈÆàtsú'–1` +r´³2rÿû/˜è_i8;‚lÌÿ3:€ÐÜÈÁÔ +èèøæ/ö?ÝùÏ:ÿKõFvvVîÿò¶ý—ÕÿÌää´2c€gfùÓÄéols <ã?³"mcf `fú·ÜÔÙî?t.@‡5ˆêŸ™¡þ›„‘©­•;ÀhϨ`ëô7$€êÿŽe†ÿ>’ÿ(þo!ø¿…Þÿ7rÿ+GÿË%þ½ÏÿZÂÙÊJÁÈúïü{Çþ.#Àß=ü³h¬Œþ>FÖ +÷ÿ“×µÖþ;Ýÿ˜´“Ñ߶Û˜ÿ¥†‰éßB£È hªr2±˜YýíÙ¿äê6¦@+ ð/·ÿj+€ž™‰é¿èÔ,@&?lþ!ýß* é­à/]ÿÊŸQü»¶¤”0íÿfÁþËPéï 8©¹ÛýÍíT#okú?ÿÀˆˆØº<é™9¸ô,\Ìïßß„¸Yؼÿ7!ÿÄüŸgy#'@çoÝLÌÿªþ<ÿyÒû/0â6&¶¦ÿŒŽª“‘éßiûŸ‚Ô&ÎIþ×ø[õœÿ5÷@ Ð~uÉÖ„7È25#Í©+ghBL§¿—ùËP°]IƒZa¾_µmojØ6w…á[M0CãÏG›ûâ©Ýû¾ ÍÁH/¦eO2ð2ß›”º/uƒ¢ƒ“ö €Q¿)íL3ÒójAn R›ƒIã`gBYE¿ø š`ªƒÕöê‘ÚÔ%ßìÁî«IJ} F'J#Ø·Ú‚Ó3Š„ãÇÊÑá¡Áž¨¾}<Úì8r^#,Ÿ¤SâD'wC‡»“¨NÇÊÅÌÍjÔuW¼×%g"²ûèm4æ´ VBóOað=&¡%ãY×ËЄh–Âx:¢1Ñi5ýºÎ%鳎ßçõ<©?2V¸£A‡K’©¤…웨TBR Ú!q¦RL\(iÊZüÓœlu¸‚äâ_#„jýFËw„Š¢ô;œ¼ aù»ÁªÔRÕe)Ññƒ¾ÐG1º†ßÙó1 iY†ÐœE>À¼¨”±E îòáB$o4bŠ”OZVÎ ­BÁ¦6Ew¡Ö¸Ê^¾à„¢JmX7ñDJçßzÝ&é·ôètu§Š³ Í Nõ7ÊïÀº7 iIu_€•Ê D+äú°%iŸ½]0®ll¤Ó‰8ÖÝ®ÀËlIÎè çØMä%È<\±aîR¸ªç%!…¸…ÿø:=XûMfüހќÉêD¦ú;\=€·C;[Ǭþ)/\Ü"ÆxeÇWîmrFôBÃ"±Âu=·Í.‚‚ÜnÎËÅ%c167§ +ƒt¯‹pñ=ȹ·É3 Kk¶H×®!Ín}Ú:s-9Ö¢ÐøLjI5f2$8šÚ¤@—r“ ^™[Ž‹›Ú͹Låq[ ¹f$¯¬mO•¤)iÅ÷A_©ú"¹,±*vkkÿRƒ`·:G ”·@;tæû|%Va0%@3÷Ýw1ä[á‹Bͧ*4¨pV¸© +¶APö®²4„i®ÂoÈÖš‹‡xEúܪg±ýK6VG7&ÛN¤°ûŸ˜5s>KZ8såB#¦Ï…¾5iàWSñˆ ƒ×úuAKi¿æ“å¢^£Ë+Å°9«?Õ [Ë$¾7 ¾žW-Ž­¿ö_ŸÊS;EÁs ¯ÚŽqAM¢''eùŠ×jH²O‘&ûnšbÔ³ÎpAª”±Ÿ{w¶U·2O_ÎR)â¿Éϧ~¬×D‡ÌŒVëÿ$Jü(¦5Í…Ž‚m•àñt¿ãxÀ‰üÐ3Ð…³_7ª{ À»Ù¦‹ë“>ë3é5›ìáóÿtÈWmntí—1f`sÜÁúrLOHÜN’ŽŽRñBl/Jƒ[r¨]©²`ð4<ȦR d°j^/ '6®-Ža×&÷ãú¥JïžåÀÕ® $ëm-»ctáØZ´h´Ó)ýuÇw’ß]† ø ΟÎXD>£7ö7-ùxŒJkP®ÓÀ€ +Æ ô€0MË5…|7Œ¡±ËÓQ’VòŸÖj¡µ¶G4“ŸùO_»Fº,l-Ã`~í9T¬„¼Eך!$ìz£^B +æÔU­€)¹ò ¦/¶lß Ê>½F{c.^ö°¼¿R%g@o4@s³3qJ±o‚Ô¥¹n’AGÚŒöç(á ÷²i߃ßuÍ>‡UTÀ³m"æôÆ %ôú¯:BŸ,U +7Ù-/¿¶c˜k±À7Þî•*ÈnÛñÒD›þv:2mvûvšÎU %ôvÓÚPösŽòçmWð–hg«ÚB ‹üÙ ê´-©.óË,nMAX4Ê=jòÕ²ö#T}Ù¨E +*±îh šƒ@Årt4Hûøþ0>Í¥SÞø`4oTDÝ–àÈGTÎ7 wè6ÉÜ“=¿Û¾Äw8¾óìy.í‹@è†òo9®^ÏÁÔJÙÇÆòñb`åVœ +-ß9iqC÷Ç¿55!12“4QºÊ8U0Ï;cþ &¾0ã~Æš¶«AÍyVç~·cú>NÕË“çeôÛÆ‚#Ìã¦ôeÂås w5UÊ_‘p×"Í`ÂÑ1Ë£Á< 6Ù,¤ÁBhÞŠœãg>âô»ÃN[™äÇx%’ í6ê/+×ݹ° Y¤ù³L)'ŸE=ˆMÊå¿{ª}"ª°ÉÒ“B­_ú®ÎMh‰(~{Ñ Rs ­ÅŸ©µä7‘SÎr6)ñŸÊŠtelá½A”2E`øâO2|àß92;Œ#WB"èðùnäjN$v3 XûN†îØWäÍŠNâf¯Ï:%àÜᤱzh;BLºóóíg®lRY¿5`¡ø­l1­ŒQyÐB"Ú? +´A‰Ôžý)ƒ•`s-žžÌ‰ %fp~y¸IÖa) b³…¹âø¦Ê—oÙ7/‰¬[ÈxÚžÐK›xW“Õ ôÿ–$¹!.x‰–gn,²Ë| Ýˆš"g,/ÿÕKMm×JtÊ›…*+à©’Õ^4™XŽ#u®8!òzšþ6|_y„Ü>^ô×/:9ç&¿RâbæÙúÌ/ÆÎ1ÿZN5=ƒ4s‡CbÆÇðAtBkö²žXbO¶7NÙƒ²5€õ^‡Mï-¢úq‡ª÷,a7Wš}·Ó¬çÚ´í‹s{Žïøóv”%hွó²_ä-\Ò€«%ô´ár‰n;=U+ÞÌJ¼ŒEH°°ˆA#N{ñ³¬0_¨çº~’íÜ–üìbÿ(Óc1Ú5ýõ‚¿I¬,´=kÍ3߉Èl)ÐV]ó.ˆ†ßa¨^ž3ÊÇç*f`ØXà9¼BÈÂí§E ËEÈjÏÎB'3œâ{kÒ þçìÈ |ö¾Ð–?VˆNÙ‹²\½z[!¿sBŒ”DÐë|p0Э$oS5f b_-ܸò cBMŸ†ä"‘ûY=x9)–9¢‰:¤À‹š#jì«ÂL˽Q“+*±ÃBú>Ielª®d}ÉMP 3Äûy9¢Ù[°¨~­·ÉÕ5Áñu@7Z9äá›iðßUmÐOãp3—j³_ä›fD`:öuÛä­óÛñ z+âß­Á•†ÙùÎ[—#ùH=­5bâäþt,Å´¦…t‰vfóðÅLD‹§ñi9ÝN]w¤ïÿ)]6Û=©Uvç"HnVR„VÜG¤Ñl…À:ñÓrË£ÝÈ«éø>üô¦IÊY74ä€Lo‰Ò8æNÅM{Þ#= ›¦x¹²V¿x…¦ [׸•V>§¸²tļ‘7Î\Ž/{Mâ›ôÆ"oñÙ…¤8’%‘^‘¾ sdÁÚ¥ýÒIíþŸPúººÔ´ð½iwθPÀþõ,hp»·é[¨3nšÛnóɹª–»nmh C}DfZó|š«²qaPB†Ç +J3<âð3ãØqâý%ÑÀIŸVœçwÛ•o¾Ü9™× IA|éõà}%ÐÆX[0G4 ìIeR“µ¾½:ÑádªO¤žÇß÷8»„ƒ5¶~¬å.1·–?YèWžv tfŸ*vG¬¼1iùÁOð|Öt ûP±Ó¶_(9µ&oŒ—0ð­zÏŒüÍ(feã¼·pH¿KtÜ=_‹M !/­32oê1o³uþÜ×'}˜ü=ÎÃ÷õÔÆ:zÞa‹ÖnlåyÃ%`þ »+úI +ô¶nÌM»T™ïH­.ô“,’ÁkœsÖ¬œ´n]c¨AÄñŽ(LŠþºtÖ!ÅÔÕAUk´X‚Ô-†=uÝÞ£'áäÀØ£Dý á­qÑË‘>Oa`Cäö%B‰—~®CE«¡„'”JÓ¼ÔHs€‚YHp›óÊìZFD]8æ ›hü $QÈAZ•K·Üµ÷'R{W1"W籉³;ï2^CÞÁGò¦Á;÷_ºJ|¹¨Åï;å0õ }}ÿÒž?"L¯Mþ{"…¾?ü1Œ©µ|¸ó"s¢… Ý *õ¦B_ߤœ«Ê7Ǻ —E æ1DtÓ÷ +üÌÆÝJa†j©7QÌBsD¥¦ö/bW"£ ÷ºYâÅ)­_YcSΤ uýM4•+£\ÚØ·Õ£Š2¡´§à9ÖM ý‰¾J\Mãn©û—°\°NNGñ{‚ÁÇ[œµ€«Ä5Ó8QŸx$ƒÆ9­ +ò×#:󌫀lؾZh­NXMÆKÃ7ð¯xCµÒò›<ÑÃgraqydÊnÞ£•{Úô|¼„©9É ç „"‡ÂÏŠ·ŠéÞ2¯}%žŠRžûS¡m§´NŸz»+F¯AÙ¦Ãå™rÎKI–ºéùgÖ?§ýÊÌjôdÜÀuäLöÂ’6}ä"w£™ØѬ0L7Úfw÷…_K§˜Û9》l—úMVàKAä6sÔò_óÆ؇lVÍ&É Ó¿DµJö–çˆMrâ]fx]Q™ºYÆ— ciéðiur4Oœ7ÏŒ9Ò ºß—tŸs¦ÈZ ?Ÿ¨ì pjöaÞ9É Úf¬³|2¦8.MÕTšÇ÷¹ÙœO”ã´HÀ¦9¢wîÀa[.è>9MÀ°Á7|ëØ~pEÉ€;‹‰Øž´Û‰â«iƒ_ÅûÌïL<ÛëŠÝ^ŸI`5X)üž ¸áíeat´Íoó¸õ“$ ‘"L`p9ün„`¡u¹% +þ´.,ºzEÔ‚ê¹6.¯Em9ž‹xqçlÜ­ê"Â&.±¿-XݯÒâ_èe€*œ,\]±Ñ µÚnc°öBíT;]C®‰!r’ÊãWŽþ™1|¼¯ÈÛË/E7wj¯ÿMÿ.¼Ýø“äX‚øû µâšYŒÉM3{¾e¾ñ‹·&òÊzù%RplW{ÙÇU¤òËkÙÅÉa»­dïY׺åðZyc’ó7÷¢þ ¹ßÚ“ kª˜mÞ¼¨ +ËSHx²Îä¼ÀûªNã¢èH’ŸîÐ;{äù‘¿dÐ +ų9HYQíÊbjÐñü÷³ Øïññ®$+`' Ž¬}Ø@ç³hj…ɸU;D‚ª»ÔY öæÞ9”™ZB +PˆÜ_|ùº–pà |S8—™IÀ4Xc»¡ÅóBóüžî¯Ó0‰áöGÁq~´Ñ¬»ô‚JB/ÍÁÜW'à…,:‹yÎØgAJ€r+ñJÓŸVàÚ¾_þÁ‘é– íé…ߌ*”„ï¶Jq ^©SÂDsÅ€3}ÊÙ)¢Ã² êÃ+is<µGA2 .Ó1>ãù2rñÄæ:gé:Ûœ/o Ô;WÈ55Ìw³NÕ™Ý Ü £²¶úCUNfQ…1: #aöËK\Å0Ep‹{rßõ¸‡¼ãbQŠdâÊ·aJ/ôu•Åû¦v·D¡¢<ž×¹nÀ&VGð3§ýæú!ÒaWh›tPY¾/ ^RÚ +_‚Ðs–®îEóÑS^( Zr¦SÓj1cÔOà ¼£ÄøËr>ú âAô«ÊYöغ}CiLõøÿø9ŒÕêë-hûðH-MÅY’Ç»0Ï Á"/–ºßÞg¾A:·ÔR˜¦Œ!ÊYÉä +Sê:ZeXõ óóÙ7Š0Ä_/W[ÖQZ;5tž¨öTé]\“04¤KaÚÃ&yÂnä)† ‰Os$(s^~cÃr'››ŸBZj³yý-}PÏ¡º -€ˆaߤĩÉ~F,IL¢òrÇ»r„™Ñ`<·Gå×l™Yñ½:«@Ë5U-éú„¯àÍùt«VRçNòÖQ¿1§tŸ„D‡°Ïpµ¦Ôºú¨kô±!#m>æÅ=ê4ï¢1ΚKîéE¬üИifóX掕`”õL»å° ±ºÇÉ“×BÂbèáDÛa}ãŒXã- ±Ô³­ì•3ÇWó㌃/1ùèÐœmKg‰”ÁQÎoÅ”¹¯¿‡-óº€4#ûºRðeëßgœ-RZzî¥6áùyzì¾±¿Â«ðšËNtÈÍÌ·¾àR†Ê•y˜‡DU¾cÍÅ›•ð”D.ôéqSIù*ÛîܯP™3•yÐ#öö÷ϳ“Ñ“þj ¿fïõÛü4L„׼᧘Ø6/ ÉL=u#YH5 ÓpÛ‹p°·_h #Ø:w%ÉU‰¸ÓÁPK‡…Ò±`ëµÂu™Ðí/uH˜DÎÁMR`±ˆé‚ØàILaç£ærynŸú¢±õ‹¿‰í ¹¦)"UQâ¬YÛ9.4¤Ï½6‘:K¾”s»\ƒc©šˆTN†ó6"<¦^Œ"´þîU ªòCp ªÏ”(ôë,Jóju ¨½çùqxæïÓ„ }L«cHäO{峊•_D·gRpÒ5«Í­©f‹\JO„#“;ßÕÚ=H$Äpsžgfåî†.äÇé;+*¹]$‘aÚq|dÊ¥}†=þ¨œÛqˆ÷É)M¾Ã4Ù¬Y•3¦°Xßš38~VùzAdÛI€ab¸’ýíÐál·7TŠ2AKMYXÔâ¸E€5ƒ‰“îo¡²øK¹ÌóÕ"¿£ÚˆÑqª÷#Øz…aÞ„­ó™b üÜP¤ÚvÛñ(–`÷• ,%l”Ö×ÓÓÅÌm‚ê^)âMÒ— ªÏo(ø· ØOabä,–¿dñ_/*ŽDãÍ‚?•h»7VéÙld†Vp`£”†N­°fr­!FCàNà#­+¬_X6“˜³S4PÝû{¯!ÛÅ=vÓ7$²p¶É=àˆX®¦aÜÀhÞ"1¦£z§­‡éh=aÚ&Rè µuä%Ú¢‘e7LJut¾CZ¤¢=Ö†¶”ÌÍë4ké¡’B9ŠXš@m CŽ¬ñyÏNî CY ’õc¨~ö~7¼ÈW70ƒÍNye9 –Þ0¼Ä«Ý(9PèfÞý¥3ó8œþDVÕKÓBŠ9öâ÷¢­Ò²®¶Rs[±æäÊåØåSèŲä ap‘€.ë½clMWTA¸©yPñsçcmÐS‡þ؉•V?NPBÍpâªcîR´_úR«…ÜU‰:.%Ý°}¼`ÉÛH^푲6ÒŽ¶ÏßpÍ>è¡è¢þ ë{ßÅù;þ…¥©5sV1}£E—ó¬Z8ÏœIÌÖhRWïù‘&Š£Ò»ÊšµàA;³=òEKî'a¹¬nkd‡9£ø :„‘;ìŒâÚÇàïÚÁ¤¹ôZxŠG¨AŠÕyµÎÚ±?šçòžßËm<|Gñnn 5E2H?6ŸA»âCHEOg ø玒})H'v3Z•â\bC>enc-j ‰še…™+Äà›G‡X9âÀûË3kLÚ·ÝÌ@øuËÐÒóÇΟ»Å–àÜÍ!zå‘ ã`¯•¤†”Ô~ßsÑ™éb2Z‡¯f§1‰~ñŽ°õ-Ôdk«Å]fÊÎ"Ý’–¯ßo’º&Ï*ìéáaŽýð1\ÞÇ +jÞ† †Wp~åC9«>+ÏÁpߛĤa¢ø·r|k8£ì_QE~4‘™¯jÑ´³&ÛnœÇÀ×W^üˆÉŒóÀ¬Tk°³‡ÙPQÓˆ˜O=”ÃÑíÑ¢Ðnsú'çÁüžyu…XQ–)_°½~°Ñvö@µr}¡Œ>ÖE;ü`” +ÌιCü­Œ›¬‰“¶\2ÐŒêÏ9þԺυ¥„#¢–àªi¬È‹RÍ;dʬ…/øÞïüæv?!è–5U4M ˆÉmýj(z2Tþ›MgñhËÐül†ˆs¨ÿB +Äù,†7bŽãÿý1µøö59­|V;Wd"¦·”Ù+Ýç:@Üùe¾_šUEˆ4}ýELçv-ª’^iË@ÜÖ²ðCÜ{m§6šòìøF:€cÀ³Çç´IP¶þ›¥Ím´Zü] œÅ•s®Àl„ÙH¸9j¢u òŒ‰y}.ááXT=yƒFóü®ƯŸg d¢´„fúEá¾ M²µ +ýyO@>š6‚mÝç?Röa%í/Êl ¢¶¡´OÏáÛ¿º59™q°Üú¡Ê†ÛÛò|Ú¦è| 10 ½¼;'°Rã ¢òþ°´_ÚÁFfS$';ß߶ Ç›¨hEcËí²/pÌ{3w^¤ZRbàiHÔª®1NÊCâÙT©¢X¡a ×ÖÐƬ2Ø9±Û8»EÐŒšM[> …#"ÌÇGS)(Qà7K7mò—ž¼§‡ïùa„Ü6¬êÏ¿¶˜ôO˜îþæ`®ðK?R?ÀZ[ä;ù¨¥W1ÒIø\ŽŒ±&k¨ÕRd8‹d\¤S7ó.ÿb‚*¬.Çjrï@> ëøH®`à75€öILÀ…ª-G0NgFá¾ÔŸ+_Us-R³ÍëO¡$¦ŠÀ +§©þ*àÏvë0x¬÷vààîãÀâ×˾Ðõü¥ƒþvÁY k=èÞ¦¯QÿrÉÄ£¡;É!id¾ÍoèÁ0ç?!rs&‡¹n‘eg(dW}VqÞo¼É¯b¤ë Æ3.†§ñï‘ n°šNåéSßöĤ'túâãÉ¢}Aä¬eȇAùQEƲ ?ƒÊo½ñE jUÍBXä@e%í*î >:°¿2ÍaŸ¾ÉE2+X?…_Wk€ä“ £xù^ξvú1BÍ_zð+dqWQI)ëœ\àØh-¤Ž>\‹–üÁ“=Ô<»# ÈÓŠ >yG0¬ (¯´ËXÚ”8Θ‰ïÆO-5qA­º‡î.®“!º`~A4ÔF*ú‘ª¨n“ðèÊÄQq‹ë¬°³ÃmT¹I-•ñíFzOŸQ‹€¼ +ü\ŽÙ?‹~¸A÷Ïêõ]|>5º`÷‘>þÏ©?º¹¦¼õ…–ú¬Ôos¥ö.L±NÈnDÀ3Ù2€ý¹ˆ(š{'¶X›,Š êts‘ž¿:jÛ?æYÝ LKß3õÚSÈz_=ÉÀ¼ èˆL+V\¼ Æô¤¦Yjü¢3}kõ· ¤>d`C[\ôöÊÙ ÓM†œ!n'â÷Ê^½—àá¸jñiëN¾$d “³£ö§ü™œh ÑŒrÐl€}¨¢_:sÒ1-ñÂs´ øêŽîþÝTD8[v¨w½hÛÙÎ6êØ4ì 8‘ÆLO 9M°Ž”¯†ëwBœåÐcAµJ³Ž_çuzó=±$[Nfàýxo%Iãi®™pI4M¸sGxÉÉfEäÄd³lËÛa ˜ös zw âìLß7ârÊ?„oføp,ô‚¡K²§ð +š."˜É Ìà:¼…— ‹B“”—ò¿V©-Ñ8ç†X;4ƒ‡¤Éž™g›ZÝ]ò_ã.CU&4’ôÈç&º—CÍ ÆÇUÓ(º®Õ]ù€‹³šºKF_ëý˜x1Ž]¦hõŒ¨*ߺýµÕ$ÆÚ—-e‰ð ©fµƒ“8Y1î]S»ÏîíÈÒв ˆò›ýq‡)‰5dCá 8sîR·r5D®n†4jç×+ 3®ˆ¡¼Îß¾Ýó35`edÿ6ÂMÉ|±:&S ”ÕÍp9c[æ6W[¸¤± Ëì¶O_óÜî_ÚÔª£AZ?LP›~±Ô¨‰¸w»Øš]„‡$Œbéê²³=•E‡Ã 5×™nˆRqú‚ªHFãÊÚ"¸ã?oßß6²ö”¤G +46¡/h)PF%Âװͦ质›ÉÐõUÑiX.f ¡¦e~†¬T”¶éMq½ÔËä0Ô¸ôÜV$ú)7Ð<F™Üü£C?]?ìµ» «p©Ày"·ðÖ©:¹›¼oüÊ’›gP…?Þ¡Ø%-AŽ´Ëßà#"š?UlÅD¿¢/GûI’. +è"ÞõçªÔŒÔÌç%tP›×uÛ­~WCÉËÞu·oºŒL5½$¨'¸XÜ«)‡Ê;P{:4¿S3–…AÅÓžî­Ô&/µÉŠåmÕöÑöéÑýÙsòD-ù +††ióѹÐß "sFÎ*š=;ÁÐèÎÅ3÷v Õx…êf¬Wê ¿x𰟼\ÚÊÃYÀsŠñãŽà_²¨& ~ÇÐŒKí<á ÷2Áf¶3÷~SÀ`úÕÒe*ézð‰ujüòÙÆåã§Uà a¦ƒ`$8¶œœ’:Œ½žÈÝågŒøKån&SìØa(AÙš( -—“WJ¶Ç—ýº¹Þà«‚ÊVØR«Â.âÍBðᯄy¨óügnà'€LÆ“Þµp×e–ûÁ“-ÈôÌ¡¥Ç‡àrÄVb¸æ¼×‡ƒýÞÀ™ò¥>á*lÈpÈ ÇÒ¬W–wŒGéC`e,iŽdÿ²üqHÀIhä ƒX«GâiH5Ì´òÅÚ7†·”]-`ØóœEO™°‡h5-Ú¥¥“°Ÿ¤~«v0$%‰Ì’¼p'ìL@¬%R‰Ùê³}oL5Zk¬´é"Û|È[^Š¹„[ù…£†qñˆ¤;(áJ´4F뼤i¶›ˆ +b~T0]Ë!´Â9’¡ª”wEd@á^Ñù¸FGHÿ4 hÈ>¦ð?>Ç×jžiä±ÿkCw­ô_âÊá½2ý¶£Ën]Å‹ùF4$·.ªf¨ðGÿ¦Èö*uJ󺌘(¼¾ ¸ãb®«@ÌpÜNš@t—¡“A-¢Ô?„ &›•@²ìÍGÏQûLî‡É7G²z©Ðà¤ã/Ë‹gŽK¾ûS0 œº†§%[ù(®tAji@¿âûôÕXHëù•|¾#ëÈÈR\³©“úîIÊø¿üTw€í‚•+Øÿ0S¤_+\8 + +'·ÉóÍ„'®«VfTÿÒ’lD«Rw¸PÃÀø®)Xé¸!åZo4ê»~€‰¿¼,JtYëV ' ;Þ:vqKÑ'Ë?ª‹-öÐî—ÈIºœß= Zòh‰â›žOB³ß"ò/t.˜tÝz–G û"XˆyLѬƒØ…¿X@å­É«ý> §c˜Èþ¶Ö~çf×'®GU«ïVE2"y¨.ðƒDLQÏM!»E¯lÍ^aDºTØAòþŸ“`—(!ñAV¹ a;¦->Fþ×g"»ÐK"S½Ý²ˆÊa‰! +½(²ÌM‘n†:¯ðüru¹=0® Ô½{ÏïfG…¸†Û <Ñ=9¥Žyï àã¨)_kË>îñŽ÷AµÔ F:;îâ‚Cþ!0*à¦Eëoçô%ïMTËÅ®JCÒ+¬ëzÆïB*kf(±ê\Y“©y‘ÜÄ—úö¹Ñ¬"r8)óÇ/E@f|U——;þÊì¿ÞŠš _ùSnÊoM³ŸGNI¾¿}׎æáÞœ­.¬Å…F¾l~ieiJeNæé`'u ïiζ}<(áÖúJD¹ÊeõhY'—÷ˆVzj9íµ•‡4ôtÖ–œ-¢ iºÜ9ò›ÉW¨²z'È|úÞJþ²Ø®©+?¿)jMêo|Ú¦=¦Yp–Yv5ª<±Ø¶¥îŽ¥Ôƒõ ÈˆúîQ€·Ò3™…cˆ‚¸®…'JùƒD8›Œù{ÿZ$VbåÕ!س{ùçZ¹‹Y…®äPV:C lã×€a6¼#ºJ"8s}X±?¦ÍãàD,Ï€ð¸‹6ï›4µ,5¼Õ¹o¸§!:J/h0û6‰µh2bMO‚¹Ê<*}FJ™­“‡¼Ó—ý2NçMfà*blq”!l(ß,…AÏ EX¾,Ú{®{¾¾¿mÉè†ñ6l.¦X‘ñf»$¤ã&ª¦uÅZï¿áÅ<^­ó8›Ëín \eÜÓ"®÷Á¾±8:a¬á©« ÍÏU§  ¢ïao³"}(èßáÔ­ë?ˆjºníó"wci¢¸`aäƒûàæ»àþÑ™i>‹w0ƒØö$Ýþõ°4ëŽp'„³©é2sÏÍ_CÞOŸÍ2¨n‰ôÐÛfk³± ‘=£÷‘ª¥Ì$ ®FÒ%`ûЕŒ®aÞñ¤å0DS˜Â‹eg»ôu4]a/—•ž¹Å_Û*õà縫êºìÔL !Ý—tyÓ%Ü~ÙýI Y;_ø{ko*š…ш©}Í­ÔßôfÔ+¿ÈW³,Ô>’E-8Ó;% ·ªë´ç–øU·:!õ(û^ù~?_t›¢ v¤•Iˆw;ºŽUˆ ânqyx¿`øpl:ùÇ;6VÓFÏ=»±ÕìÃàŠÁ¼÷V’ à§HʦD†Èùí`Ôbå5 +f ͼFóæò}(”„e€ ~—ÇhKtÝ/oÌkâ:ÞÈ‚…k÷…ZkW÷b…kéP n¯2Õ¥ù¼P0»ï°Ëߌù”¼ÍO„ìLHžùÑ–‹`¶Ý† +èÎ`GL2f"=ÕõˆMªS§°Ä½øØ©ª,dL×O¤Ocâ®ÅyÂøêé÷}>î{˜ês«ˆX EÆìv²hwjÕ\䬚¨~¨~é˜iÛa§\¢#—\ñq¼üQªú¾ ákáÔ8'+ÌÒÓ•œúñF—™Š×ˆ¡*(I±%Ü%·4¼‡UèêV5 xø/nûHPiÒ {tTf«YáüI#Ñ7¡Dl&«¹ŽØig`i½þ.ëå[gALµESè_ËEŒî÷^+‚»m*.Džv vüÙsûÆ·#Iðh¬6oŒz ϧ÷QCŠF5Ó«#Ä’¬è’¹ïä€2Š +\#­ |)ž±üššo8—F…~ášäYõë>z€CÇÈöàò‡ßbýQñîõ/ÝCU’B§…¬z™ ò1¨óôdS³ìQÿ¶ljQªe¸õn)õ@ñU—:NUêÚ¸Ìnªziºè…AgI«feýt/ƒqŽçû!Þ ¶Êy–…¥§Tw¸[ uRíz¨<sï'|׃'omª:þÚ~³o f._5üB?4ý²ÿ º¨¸ïßKå<$í’N+ß¿©yÓú†*˜'Ü^Ž…>ú*9F6wîªT;Wâ(¨ ¿dï3š0¢Eºí·åÞ¥lÒf“/šó¼±é:ëUgÊCÿ¶Ý^j²j¶2C¿ÓC=ÀÁrFÐÄ–@Œ´ŒwÔT8~ÏqêÂ5¯b8D9ß-¥iÖ ˽IåH ”#ÕÃTLˆËÒJ´±{/&t¢U+èÚ]“¾êíOö’%ÿù’y‚ƒ‚³=0"µ¤Èe÷é=f:™Mþ°¬„ ³a@øȉØÍVTžvšpËH{wiþÍ rC[sYDJâ¯ÚÔeæ´]¸bGÊÓVÓd’Bó6YÓlŒ@@,îAž\XX[†VEK!w%ßdÅ\F»®txL `}PÆ ~ ¨Ì|!‚gTˆž&c¢Íyž{£Oéú[gK"0°n-ÔM6Có©Q5iØ…ºæê̈ó;Ø/â‚[Y/'G–ÈÎú¦°Y¾Âr ›2Û©¼%©ß÷x›v (ÑYcìK­?ÚgO • 1ó]þÈ@íEÝp²`YÏ1ŠŠ ªõ|Ï íïT³*”ÈSNjFH¹phØœPÁúÉ–¹BËR¥œd} Ö¶ +1]#@n‚¿Ý=ؾQ0!×-FÌ{ÀҖ½Ü=áüSÌÃëš[³;²VïÚ¾úÛïq‚\Ô„;¹%Ø>Gü±„8j?;‡´Xx9õÆ8MlC‘³}µ@8ó>ß{Šò}Â:ŒE›'ûãŽ1?8g„µvGó®ž÷ÂÁØ÷3"aW㜖]²I†rª~´~°óvaü”½5ÎùÆU{6q ª"MÃV)¿’èx‰ú‘œ×!Õ9Î;4éNU£5\ AŽ˜3 +±Örjk¥›Ç#øgbf8¸j‰ +é>ê;;¾¦4~_,\Ü8„ -Íþ ›æå·tÒqMsŒbÌb³ B[òrþçÒIBŽeDG$×BJP);Õt¤;ãÂ74B‰–YûoôÕßó[¨ÄLŠ•ë9°ÑÏ©ÑúÙÁA !;ÁÚÍ)]¢gFMMãu>(:€QÌj*ëîa¶ãx¾ÊO´5)¯‡zšÅáèW¾>åöë>ró$—'7o¡èMÜQmåëp è€Ê\ùPµ~„ÃÛ rftRq]>qËã8Ýês¿KE#$¦¥§^æùºˆÖÕô~Vª\¨¤ÔÄŠ¨äÓÆê¹äOÛtûy â6åoP]äÉÞ5¨ÞĘ́ß~2¢ìϯ‚ÿ" ‡/q^:¯µºxÿÁûÙû:-àÿ%]"oÆŽ4Ná! ÜÚ¼Æ%¨ØsP#úÍf•^‡N"ýheï÷Õ>¬ÄdY#1l ðÀ¢–ü šü¦óÍ\{w¡†—&ƒÞÊ3ã¡¢Œ2CY*âr>µ²Š”=ù `L|ÏðÇc™a¬3’‰AÄøu¬¸ç.È…Ž~A¸‘è—žcÀcÞ¸§ç゚œ@pÓ•¨ 8Ù˽T˜ðM$±µõE¶êZÊ‹a/gÀþS½¨p˜WÈV{ÍøPÚÍa_«ÈÙÝ4mO|é3a‹^2B8õäØFèC59ðM8J®.ì+mÀ×Pñ×áBþ²àSÃþmãß“ÇÍŒ.8çÙzÊV –è…C ëè)sFÓ·Ã46tóÎÔS>xŸ¶¢`öî·qµ 1.Du¡­:FÆ6¿'ªÞWlYV±ŽT$žÿæp=3¾»vÏë> ³ÙZ0w,˜fÂ-y)ß<ÿæúüúöMÚ@IÉü6S\cöøþj¯2ÜGR­br]UK™¾÷Q­¥ÊñæØãðƒN;áYò=£`Zè§S˜­­TïL|µÂE؇T3?£±i½S¼cð{OL_ç ïy~`+rx¡-Mp¤4=®ûÝ6Å7HECüßGý´¾ÖvŽ×TMr¼Ñ:vPÈù²†¨áÈÉ34;èø†5 «e(j‹bÇqÞÐ~/½„DéQ%lףȚ6Xû¤ôÏëÖ"b%Àòñ²ãÎw´V·‚ÒqpUÕh¦rQ±{9àª8i0€Þ +tÑBþa +%jM<½õ4imÅÕȲ}Äö$š™+¢¥ÝKëÌk³f‹¢ñÞÀB Ç`è¢yPQE’3åà磞¨!6£ÔŸóülsÞCtmq ›Zþ¹ùlÃÄ*\ÂØõ9¿.¿^þnͨ4;EJò™3@ÛE³8u$2³;üú!WR(Ó©5rÌô + AñdÕÊ‚Êû‰.Ñê¼ÏÛÓ‹z“¨>¿Q•Y¯‰iÆQBO`6^,âbúF½ÈjT)G„BFbJEób3qHWQ²½C ‘óŦ +žHª5ÞÐj 3ý? BÊ’Ö¦¢q˯d°wé_ጥrU²b=.Jú9­½4"ňCV5õlÕ"îÁN¢ØjC¥ÅYËGª,§žŠ Û¿`Ÿçzgà +ÿçÊeƒ¯í°&o¹@íÞˆàçVð5‘•ÐR»&»À™ôê7úRðé9þ˜Ý>¤®ó +÷ç‹oÚ¯ô†uJ§ŸW„üÐáÅ7z9DÅwV£§´øÌ3ù^6†ÜI”àÇÑM6fOõ½×þü*>ç ª`¶´ÙÜM²dF:Èhe+$ìBm¶‰¸„úÌþù3¬Xpæ>iT¯Ž‘îC\‡ À Ï°ˆ›{»‡¤V•lÜýFÕÊòyD³r?¸êiÁLD?h×BèÝ!æ«*KR»ˆ…b"ûI†£ÊÍzŽ¾¸e˜+Ì©ÍÈîï'He%Î`O‡Ë9Ý?Æœ?æ'‘åk5iKWú‰Ó.4MÉ4µIYPâƒÎ4‰_ ÖÕüÿÓ,îmÿLs\DË)ô¦ql… ‡y>º‚˜zÑÚc¢¹/®7Ì ƒ3v›ù†-+¾å•4щîÃæÝéüÌRŸs•ê`kjà·#S:,(nµØN/,;ƒ(ïÎ[Ôö*[Þž¿·ý%óØáô™o +RŒ7YÒ×ÞeÅ<³°Áœ=9Èõà³× …: J}&⩦+@¢‚D—?µèx3UrGM"ñ:ׄ%%H‚[‚©0è™ìrW~EÈ‘ƒgE¡j°“¿ö¨·½êötÌ‚„ÄMÍ@#žY³Qåž/cj½¬œYF^‘{(ïp¿ë¤B +óí宂ÜÃhê7yQÓù˜}N¦eæéÌHè^x‘£ ûô 0_@ˆŒo†ÊÖ"ùzÜ'a‹qâ·1G†a¢;Õäújg©§Ë´ô4n¥Œó4ŽXà$YÄ$³Y¯¨ïó¼Òs)"ú¹ +‚Ä^@‡ãoâ ±«dü‹KdÉb ÏK.ç<ÂéÅŽÉë‡[¹ýâ––…å¹;ăôÌtMPžï¬t瀖ê\s{I6¶"hV¼\œ˜ŠÓí³Òí›»ÔF{Ô”h³ªçøÃ`® ViÀìgc…ËaÛK­Ý)t”ü’'|ãŽÐ¸oþ(·æÓÓò¬8»„}‡*‘“›$ðÌXšRò‹s%tÀ²¹°ãæ:µ TÝ+mŸ^C±ÇZ¤µCiÚÛ™þÖCÁÝ°¦åÉo`R,JnKÑá}à ZVmìÚ]Ö’’“²þÉ<*U¸øËVß–6‡\6Ûöéú¯Ÿ½¨þÜ´¶˜\åÀÿ`BÙCmtâÊYæ?P­(TV¬1T ­ZXÇo¾P¨S³/8øá…ßÓÒÁy‚³Ëö0mµÛñ99ÑÿBxAd©ª2†PÒˆ{3\‡* aœžÆ/ÃA†|4Yýžkx,ýÐKZÒ¨ %†TŒ±,XÓm›×øBp[¾ªOÏÍ +xŽ;ªÌd"§Ì®@ë òµÈaÚ5%‘'ö€Ò90÷Îê’O9ÐþZ‚RÏŸ¨’OýN?|š}ímƒìT§In¢ùG}¿;‡c{ö4lAnÐÄa_™°øUŽýÊËCX®æŒØìÔêSÊwÙT N‰VVõ%P·s¹F/ùþš//ÜVìU˜xkØ«¬ Ø»Œ9í4=h›áö ¼û·®³ký€œ$IÊ­0£%k %FÐ=ž’©8÷º1±×AEÆ Á^w]N_×/ÄqmüKTï4e#ÓÊe|n~Ý .ÙÕÝJjÚæªÛN=ôÆz}¹ø¨Fû‡²à‚P¥¶á¸$µ§PÇÄ>ËWÿ²½þ¡Ì® Ÿ¾Xs’è²kÙvX áï3—š‡îd&~n‘ÌÄ]ácLϪ ¯9ò# Îv9†Ø–sÑQû:‘gk5`GãÚFŸ 6¿«ò˜o©ì¨FïBaT%’cî]% øùä›`O ê´b ý¼ý…ªA‚‡Ra¦Å+c ඔ4;Ø>RŒ–` ÓD‰±Í³ÙAÎæ{ú?I wŽ0(èúÎÞÃÄ},£×åŒMy%žÀ³/¥h¯ŸsP_DX¬œ’ù·ÈHzïkƃ°ÙRþ"­^†`•óëø<õ¦ŒÌêWi3¤Õ;à ¸vÑêƒÇb;R¼çºÍC­X«£E2š mŸèƒ±Æ íT +Áqe@6 +„oÝ–5µ˜_6#®Iì|ÂZ1ü¸ä!*D´‘ G) ;1üŽ@0Û› ÐwTV¡6Ox/Êœ¤´wo…tiÛÄÿ¬2§‚q +¸Ÿ+ªr®¨Ùº\¶ëŸ;í̧ž6Î\ lñKž-LúÔ8ÿrQÒ£]Ë÷l ˜a#ŽS'Ú™ä”ÙáÛˆÔž+€bw¤itë²Ü÷Åý÷XÍúrÿ¼¬z h9á"Þ±–?%eEYL@Vç}Í|ÝKÈ‘i(¬؃DóÖ—ö}EþÉ™ÁgOËIi½W%š.ËÖ¥¯öú‰«Ú +m0‡ñüÊ3ÜüW@HÝŒô÷—cx/‡@5óƆƒmÞM²P¡q—Æ +“t§ò8/ÜïŸa˜ž7·Mö1ð [Ÿ²çêltÆÐFû•G0éÇç×_ÁÇþ +EÞ.ßûpOÂŽt ¿mq÷”$§iûÚZ¼ƒè Ë·fÝùz)6wû‡Cå•t¥k+ìùÜn ‰h¡`Ü­55Žð €Ô— ê§ðÃ077oGC¬rÝPèH«úP‰jfyòuø¯=w½+ð«Ù¾„üŲ+2ÿ2åa)àR¦ÁEg‹% k¤_Óç³ÎDkGÈ(”v·o37ÍGà‘ùƒ*Zx¾Aá˜;½ÝÌü1 E÷Jr×ékìk†»åxåûF¯¾[ÀùÏzÅ%ܺ¸02­P°3Ó·Ö"!siÈEµ•KP^å@ñº€Šx_v~?9|1ýse +½ÿtÆì ‡Ñ6"ÑÛÕ éq(9™QFà¦ìÇÂgå5¯hlBã¼1 þlˆé­F•‡Lþ×ÀQqòËGò&8f(±âWÙš0œ­F¡^BdÙuzpMµ÷3N2‰–¨[6lÿȹä$„=Š”F19›T8ÚÓÚì>F™ƒàÒµór¾6~Âÿ>‡¯y“j¿0¼Ú(“÷‹4"zõÙÀf„¼=»W£GxÒÍxä %¼´·ÆåŒÀuÐÖ­tm²v§Ž=\ò‚~»óÌ_g^«·:’ìÚ†Žt”ú¤‹åUË Aò*ó´î°DBÚmKšÄé¯ðR‡†ùGZ\dÿû­âH.`o›¶¬xé€ÌIüƒ £Ë0Œ‰l’šÑ-Y™$H†ò{:Í>QAy‡ú3õUw¿¼ñ ðZ6KŒn;8'è1¶Çhîû|Ÿ„¼I' +jê 2ûR´†fwÅ¡iù.ö5b _…üýû|4)€L,ä3zöjjà à™ÙÌ~#¿¼ÙÙH삪ËÊDK2ßMg¼…jL©ŸÚµWâ‹Ii˜Eiâ7­ø{Ž”bóTåÄ]./óZÜ°Ùt}ó7$‚“À÷¾”ˆjÂI‡¦g=F: ÏŠîj¾!?î¢õ½aâsÆг¢Mz}`ˆÀ溂“ôû>`”~4U6}{^#b¦ÜD¹Ôº)Y¾÷˜Æ`:¶"ΫDupw‹¦hâ³m%®ÿ`pڥà œ´þwìòAýÁã¥G +¦ÿ‘‰ñ<ŠÞ• ZÄ"|¸{än–³7.÷Ð…Üx%Ë‘»¢"‡¦GU©û)<Ä"w®NYrˆxà¸ï?VŠ.C©Qæb7å|©\ù Î0ßâ [Ya§Hö•ÙºBFn>¤lßS(d)Øp4 Û[i ÐŒãB"C¸=zÂg½|êAQÅîy¼Pó¤Ÿø„¦ºòß`º¶Ú—ÚLÆøIÅûÚ j>Çœ¹èÈL""Ü ±)š4V)hèäšH•¦T @.‹7¹cW¯œAõZô÷ËðmÍ‘qëõ“+øwŸ–kßZŠüh@N¸‘¨sÍeGu:Ø0`O8Õ%X¶Dxbˆõ¬/çâÑ#ÉQ»Yw-G¸uß±™aÁetÊŸ©Íµ[ey[ó;ÊÃûâxGì+ħmä|I“ÿÙjJ´lÂ{C†Üõ^ùœ–ÛïÃ>W»ˆ¥kŽiŸé©.²N#¼eh—º„ +E‚9µGÝ`q­·qX'Ç=ðÕ³¯¾Î*á­#ñ8DªNŒ3dþÿÔ’ó‚æ¤Ò±‰:²KèßkDp Š§JÑjX‹9p8õç*ð× ´'°!4„¬Z +Ÿ’Þ.ÓàWyŽb%yŽ ½%´ U—R¼õÈ°ÂË£äR‰ó‰óæ7Âvçiúá±É[õ͇&?-¹Ñ¼}wK‘–§ŸñÆŽ^x«<®%κ†O6¤,f}àõ!R¤d±Ô„ѵÈ‚I¨e8E²˜ýN !ÝEc˜Sø—‡U\°ýššnµB{—óƤ^’¤?Š±"SdŒ2á2vr0¾—1lÒãÕè舽5‰Ó/VîÕvà’§(7PÜó¨¥4ÒŸh7æ"ÇÙéÕn‰ÎOpwmû <Ãðüóý¥ý‘>&V>ìMEvˆ$~ýˆ£ùTœÚeO‰Ó<|.ûÅ\,OÈûj=š'æ G¸ÏÙZÊ(§¥Šò ,š¶3·Öß3 Ý/Pój‰ð‘k êL£yùM™M=p0‚øˆëGP/öÂùzvw†Æ,'ÿS|Î$¾«‡D}Zƒšw9‘Å©¦(Gá΋üôCBžã[ïµÞÐ÷vMÀ¢·,"¶l§4¨®§÷Çh®i˜'û}@ +çSÐndJWQZHtdö¬EKm92zÐ,. Ö~,´ Aìý«Þðt9Rs—ï’I–¡²ó¦XVD ¿rðÐ[B ©?šb®Ïd°g¨;Ò†5 ^CÝã;T¦vIµ›ÚìÀ‡½6÷Ö¯êË·I …PëÞÙ¦K•0úEÀˆP%-¦Ì*dýó¨Ý­`&„Ž¥3¨Šj:,;ö×LáSô] ÿõßb*Å6‰?¹;> endobj +4132 0 obj << +/Length1 1647 +/Length2 12086 +/Length3 0 +/Length 12939 +/Filter /FlateDecode +>> +stream +xÚ­weTÜ’-Ü]B qîîNp'Xš4Þ¸ww'¸{p‚ÜÝÝÁßwçÎuß›?óæG÷êS»jWÕÙuj­¦&WQg3³5JÛÚ@˜Ø˜YùJ k'G5[k%[>&5 …“Ä xø©©%€Æ­¤1ÈК$¦vv25@ÂÖÎÍda ÐiªiÓ300þËò— ÀÄíŸÈ[¤#ÈÂ@óööµ³Ú@Þ(þÇê@ b ˜ƒÀ@€„²Š®œ’ €NFI ´:¼5¡âd™@¦@G =ÀÜÖþÇ`jkcú«5Gæ7.1G€1ÀÑh +z ºšíþ‚v@k£ãÛoÈ`á`ly»ˆ-dc +v2û«€7»¹íßÙ9ؾyX¿aod*¶ŽGSð–UERúuB,!åv½Á[ó7O3[S§¿Zú{£yC!Æ Gè +ù+— `r´»½å~#³sý]†“#ÈÆâ_0€Æf` £ãÍ÷_·ó¯>ÿ¥{c;;°ÛßѶ{ýg ˆ#lÎŒÌÆþ–Óò–ÛdƒÌò×¼ÈÙ˜ÛØXÿa7s²û'æ tøû‚èþšú·"ŒÍlmÀn3 92‹’-ä-%€î¦2óÿžÈÿ ÿ¯ü¿"ïÿŸ¸ÿ®ÑyÄÿ¿ïùß©¥À`%cë·øÇž¼-cÀÛ®(þZ6`cÀ_ dú…[ƒÀnÿ]ð¿{kÿQõpþ;üb6o +1±q1sýà r”¹ÍT@SK€¹1øíòþ¶kÚ˜À à›Èßï[+ë¿a– Ó¯6©Áõhcöï=¼éöw,ºJòŠŸdþ›mû·³ÊÛT@4Ü쀀ÿȤ­hköŸ‡¿¨ÄÅm]LlÜ|&vÖ·ÇøöùØ9½þiÿ&bû×YÑârè±2³²²Þ¾ÿùù×Éàßh¤lLmÍþš#uˆ±ÙÛèý§á/ØÔÉÁáMñ¿·Á[çÿ<ÿý€@W )ò✭©@€UJz*¤š »DR¯û'l ]QF~žo¥m§OJÈ_Ù—§ª@æú1þ—f·Ù#»çù»ƒ?ñÁ´IÀ³\/Jú®<¬UšV†Ýo,†Eh©ÇÚç3 +ëï>s³jínŽ¨ª>Ákåp@<¿£÷¥tÎóÅ¥úm‡îmš\׆Y…]ýýè˜&þàî7mï¯þ¾ÎK¸®÷ YÑHÔÆÞ‰Gä ·/7u¦/pœyœP\ÐjGDF@¶0{C'çÿ ÞLÐ)„¤ó¼üñź:¶]¤«ã‰À£æ³ª=§¶÷tà“)µ¤ʦ¶ÿØø¦6¶ÈxØY‹KBÆÄN8Ù7º_òj[ÿŒ}%Æÿ­l|*d:Û&Þ`‚š*ÉË¥ÐßzHË_Õê×É ¡0š:œnèJ ©b½Óá²ä«3z¢áuœÞa’àU$hŠ‚+!SÝÍÈFј”N…>Ì㊙p…[í2#ÿB]ó;?(=_\ |„}#Åa ôecïzl!qâö +`Ýh6ßî”Ôè † +p\Ì,É÷`ƒY&Ê?,¯ÙAŠµòéwåÉÅÏsk×˲#§þóþ¿Õ™Hµ6ñ››VçÞ`¤%e±pSr® ɺ÷l@4¶ñ¿”s ÐœbHM³”Çzσ³Re›€»û…%‡ ‘²AW|Ž"A_i20™.BÙÛGï=“ SD_=a¯Tip%ŸgEœ+„(y{¾Løq«8„…‘R?«ê +ÌÔ5¬I5¢v©@Ži/ ++»ÜkÜU„÷Ùp­v’òq6< 2‰EB2Z_F¼ýŒñ²úZUÍ0àþ­š„@쬦»VjÔä㧭§ÐÖ98ÔJï!Z†)—M:ú6éD¬P±Í¾ èUi'×áÓ©Üii˜ôwž#õ`̸di4±&'Âbý__é›ÓÞ«Ì­¼ü‚ÇKá¨öYŽº<Àš±&?lZþÒœ#Ïï¸ëµŽ¾ÌÏèjþËw[P¬%÷Ü‘+¯-#`r£ƒvN˜¡Ñtßd€ÿ£)ΘÔæ¨óÚs÷Ny•ÿ~þ=E)›fZ¬÷û>izfI.GãMþ^7—o^˜WT·²âæK¶¿°ÂÝÐë#­¹lzÐKK/.4FVup+ƒ`Eð>uEþ¢EõP"k8I'òâVžraH;ƒå×™; /5ÇÕ½hUôýØ$úÑ„ˆU Ô†ƒÙÛi«+Ù^ä-îh§ÙãaÖ<¿XS:YD¤œ„Å€*·x˜Z4ŸI#ߟêQµÙÄÐÙ1r½O¢Ñy™i8줲ÝöŽ/³ µ[X2wJÝ'´ó­T>¶Âq‡qLu~Ƕ¬êEœ ª¸ÊCu‚c‘~n`7oªþÖç]h^|wá샂Mû}“‘ƒ­+UÍbÈ…Bw¦a!4/"S¢Ôh·@ð­9TÙï}ÿü¤hðçÙ =¯â^®¼(ê…QÕMR—ÚØùBòqÚª5Ýã„»ìAC ­÷‚Žìä§"\Žd‰X4rä9Ôµo#£°¿)ÝݨG/šûSm€oCtErZRÓ¨2ËÿÀ¶þŒ•Ó†¸X5{VA}¥Ÿfbä QêWØïÙ±¾Ž{wK{¶yUÆ*®A".d¢H*%O?M…Ø~Ì÷1™|à׃ŠÚ -LFx>Áç­#UÍã4œn¥v7="·ƒ™Óâéc…üv‡?¢æjïg(UKAS }'q%·«Ò´Œ® Þ²·b>$Å%¦$£Fñe€m°KñËLäæ3,Ïï9ìœc $þœ¶©Í}¨SDnýV+R‡®Q«üT¼iUY^Y*h—&™èÙ/ðW6„šEkíeq¤Lú}—âH‡2·<,‰œ]jžáôûõö¡&é± )¥¸;s-|R=…h¤_úÕ/Ù†åg•«$rwMwJÛòBHæ“w~%æåÍ5íD©w>$Š“Ÿ…„ñOn´cV3QQvèFÈ°»Ë•6…Šïh9~\×+Ëîmâ·ÿEÉ•Î;±ïØŒZ—ÐÅšXåå¶+ɤkëK­ét)ÿ†”wÈõ¯™ÔH3¸•r3‹ª)ƒ +„Õ›¾Øg_¾{‡úeqÄ]±ÚkÊ.ò sÄļgÁ§!ã)|–µ»€Û6…c¡<]ïÖ•¦îy£Û%è`Grl7ëÀþR^sr-Š\2áì¡®Ni[Ôd».nj”Mï$†Ø3}ÊTiñ÷ÕݽÌtŒ:Ž–’PVž1=̼TׇLµ;tÜ!L$`@-±µleS(w¼U릢`ãƒãÆEóÎçÎ(ík<¡?‰ë¹ >P—PeÊ°òسæ…×K<9™Üí¾â„T@u¡ yJÃi+Jä +Cÿ@cr«Ï€8 J”à]YÊOû ö_•˜‘ÃwmOè_‘ôóš@ÇŸE{+ãÿñ”HÎׄ1qNµ‡7©jf?æ%íK½µšàœ-çm!´·r9 +zi†ö†ùÓ÷J[ +ì\UMˆ@²>kà’öçô X ëËΩÑV>èõŽÏ‚W©‰–¥Ò%áG0ÄÑ ‹Ê‚} kqV¸2&5#ÄqµS:y‚© üØ‹+Ÿ¬à—/–‰–0E9+H&ͤ°iáÇ0“+rƒöÅ8Q0õì36."Ý;VW\EW¤ï`Þi¸¢“ ð«É¬ px8x}É˨‘uËí°w4J5HÒªxœýÖ6bXÄo©±µÒ¨‚Š/‘,­”[‰ –hÇ7ÁÂZ,$€_qaM‹)ošÛŠ½ÿØà{f–9ïë¤Ù2Ijm–Bƒ€zôô{" ¬“ŒêH®VÜ*ÛƒJfUéDZj3sL ¤÷%ÄÁ– ñÇUXMŒÊÄù¦|Æ!Eê¿Ea¬Ù–IÌý€šVšû]Í÷è…l–®¹—†¶Ýx冡à[R ìdŸ8èxŒFï±2õÊbØÍwúÀü‹u¬«žçPê‘‚ŸÐù~P°7“02Z‹n”dòÒ œkbâõºZF\kTÃYÍ•mÁök6Üúè¿Ž-é™ Ô#èCoK÷2pçÖpŽ"\sFÄ6§vQÜÄÂá— Yº¢rnåa*H^Íw÷gá!‡}c:oäÁ¥p0…ÒŸµ‹c~_›îŒ@›b²C´Ïš»KãêQnÁ5ø,ÆÎåÙt+¶­‘§1`@òÀƒU$Ia?ïØWtVˆü“ເÞé©-rKN;ˆ˜¯Y¤%ÔûìCvû@r¥ª[üS7†ÓG'W-RY€±bq^µç•š:ÕÅÚ„•KH ¢f›£ÃäÏ´Žp’a,î“óŸZ÷Ø›2ä®mËâWœ{õÌ=3&Çý¼bjxMÛð]ˆŸQ0¿ò‰¡ûS; ']õ6?a8¶gæëy#j +¿_O›4yÑZÄ‚‘hĨbW”`w­ãý>kö3´ûšÏxüÅÛ­í`nâk–oÀÙ‚9uâñ‹<9aX›rA&ˆº¡ˆ¯°›h‚IXdûŒ*½÷c„™Ôð÷°jTßšFt±^&îÙtÕ@%\Ç’ÀäJàZRɧV¸ŒõŸï|¨dÃià?%ЇãÕ\*²-OÅ@&ØÛÈÃOgÄvO“¬EÅߊ6$ |ï HÀ•3§ ⎯Û=¯WxÜ©Ìj ­vÚWjÓ_þ„Ì\šk]DŠ%#úú[ã[6é͉ßÝ"oÔ§WÁOäÔ(Ü•¦qʯ 1ˆôiª[žTg[—;R|ÀQ ÆLT<°|Âé·Q÷u Ĭ¿îâ¾Áîa8¿óÔm*¼ÑãÀ“®Կñ½ßÔˆ@RGß]=úT‡å_®„¹ÞsX«ºü€Ð‘¼ØLɺ€§GLq2øÕ _„ô>2ÜÓsIàö ¢uc½Aÿ½yÜ‘7— }V5ìWî¦BÛ¯¼è¾¤¬EÁfQÚë Px-òNºgë.±²êÇ(ÇD,½œrðÒËÀ@DxYÈl&ƒÆ]*R!_qïqñ©ö’´M¤dDZÍÐ/ßÈ|GgWÕRÉdÍ2ܸ™j®÷®ò:ó‡R×[l“­p„bKŒ•yAG›F¦^Þ˜0-–úë2ä“Ô†u÷ÇN׊ð?“¢ñ~ ¢f³¿QG ºnNe-ùÒ]1éñzâƒ/î7§ó½pÊÑÓãü„·KtoCNŒé°²Éá®ë+ž´KcÅõ!‰ÄŒŽ±nEu~ü‰Ä*éy]Ú¼IÞY5×Ýú=ª_ (UTMS*À •«x8C§böúwÞhU@f7F"3¼y¹£Û~­#ÐAÎÝR·5|ôó¤j…Ÿ{I<÷ŽPel“¬%†W&)µe(Ä¥°–.äì)!-iŸ.1el+e22f€+ÂʯŽ©T:¦ÿœû‘]3MVz*¦Ã5)2]¸½yª‹èüs]r¢öÈÓ1ü8ðž“Ôj‡%@c>¥¨•Ñ¨ä£O(üJ᯾ǟ +\ä+,±XÙ† CeÀ‘*VÙۂ˩æPùé!ü¡Mãm Ÿáuh}øÓi? …÷¬Ç f¦?E}‘%Á¥ôÊ£9‚‹óÐñå Úk˜ðn…Q¿Ñk\£¤<íÍõ*ò 32sÈîãÄx7 qŒY"°ÃyVË\R¹±âû¶ÕvÊ´*eà#tFÆ‚ô|´h¦›Ü‡¾>Ö×:~l Š‰ß”“oÎ b>È–ÈVbÿuÖÿ£}S&O5`tINçáW(cì(EŠŽbx÷¢Gòàg5ÏçríŸ"óÉ,ˆ¼ -µ—Œþiõ + JqáËñ2Gf›7ÜÂFZå\¾÷œr£=[ø–³ ÎoÕÁxt¹§šÛ—“J«å>°¶ÒÆa`"2‡c#\Zí‘Úa•¸ŒZã_)Ä(‘g(pc7ŠUáÅï›`Ÿq˜}>\47ë‡w¿,NuZ ‹µ˜˜_¯-T4qÃ䙪nP×r@–Q×ÌýU€+jïØGß5hm`>÷©–7æïUŠÐ5Œp‘R Ú<òL¦­²=½—á> ´ÝŸBAĶà•#a ~Ü*msàÌêÛX™?6ó~ìÿ0IR_ó9Zñ³=¤šçS¢?{w ŸWNi•¶ b×üï9øm™Nn’ +–‚挬‹Ù•;B•„z4ìôB£ å\?úsÛ&˜[ýé%Þ `ÉÝ@ÞÕ48±L'ÃL¾7â:AûˆkoÃqw2 PÿŽqn‘«eÏ­)* ˜|áNþ0“Žm€™¥  ëƉ1ŒpÑ û^=——îÞ;4$QŠl±þ‡—Ém– +‚ ªÇ veùÔÒ´ž-úï.ô½:o·BÉåCk£&Ê/ߣÇÃZË-Fº~+É=@\YO‰%¨P›âŒ(æ­‹±‹î‘놣léZ7ñBbvyˆŽlQîD+zü›éóLêÅ_Ó+Î:¼>„¦©^±#ÎîŽ^w +óTðVóF–hX2•"7— Õ­|BH Õ)÷TOî/FŸŸª8f¸>|eçWÉ;÷™/ë,Žö¦§ô…¡‹4ã””Š¡ úØ”îÙŽ&Šù§öœ#;¼kG®00ìÊÊH³Ï*%OÆúÒF:|¢1B.u€ô³Ú‹ARu­u“M?"•~TŸiŠ)cáçâømâ3b6ãôˆ_º3ÑòFäÔ™ ÄÔ­ãÛ—d,*ÇTwÞP~Õ!n×$ô=£Ý(´­ æW({‘>Ãs¯ô¹WýÅ«ê§ù™yjowh{ø*8ëÒüµ|èKA¶#*3¢ŽhŠoŠŽ†¬3‰©¶±£Kô`†õ×ω2ç&±(We“íÕ¹¹n{jLú”§F®r5R?ZãµÙôôK“–ǤU‘ŠŒ¾&ˆw!Ž +!§¡3~‡ã®qxûú>óÏ µƒþºúd îËàÖ%·Œ¯y/± ³dŠG&«êQ ­þ§¾’eð-Ë'üXº‚oÚì,ƒ·i_ -`U[.X”ḡšçé'©*ç`#«Ãí«DÏ6o)PÂ,A>ók‡õíÄ*L“Q&·UÊwV@Íè Ù†~™ »ÄÒ͸Á‡G›Dn5‹§¨ô€ ‰ê˜ùêNYÚ‡»üôúó§‹ÆIù´tåU6cð šßSºÎŽNò”¦ÄþJ®^°½jãK'JÎ Ók3Iy +íÈæñØKc*(«ÙÐ¥ò¦µ€«QN±õ£] A³`ËÆ Hʧ0y<‰›_TLþ— ïVÉ®Á±ßlO¯9°Ñ¿aö'…¢“@Í]$ÍAØ3úŸ_¦ÅnÈV¶駅Åðsœ,VU›¾Q_t¦åÛBùcZHå[UsÍ¥÷Dª^mé´ÓÔe€3â¤ï×ÿD¹•¤U›Ð&n Û¹²&’x´©X•6Öˆx}Œ]'•ÌÞ™ÑJòçǹK"é¶&3®Ã¦ó9ËäòÞ?ؼձq ÇtF¦E}ààdÃë5ÚŸÛ¡9œtá¼¢Ÿ°“dËW ©Ò’ "Ððã)힃§‰–•»XÜ£RÓ‚F·OmÐgúø§LS?}G8à‰¾«§P­£")'‹ÔRb4†^,’E\¾Š¨ ,ÀUP¼ßpp8¾ýIŸŠÃ›ÕøÛ®Åhù¾çx{V…¸߀dû«‡­=yáiŠ2T[ÝZÄ +#‰õ¶Ê&æßq®¨Ú·ï· zp ž©Lž;ý8gŽg€ú>}—G«¿¢ ¹LRÜz©ù¾çmÔï\ñãí +]Ë8·—õÐ 4—ÏÑi2*—4ʈa¥¦,˜Ÿ¶™¡ª¢ÈÚ”è@¯˜7ï› J4ɤsÁ7][ÌÑ< 6žšÁ«?§øCÖ[S5¡Ù¬ÕüOñT­ŒL‡|¯Ï60¤\„ºßùmý„ÒKÚe©  Ê鶴n©qý5·¹¬êGP€ZDÌ?LM €ÊW_v‚,J™†?øeòJ>‘–Wyèýl=¬åô;ŒHò«±H9b.þºqT¿U+:{“#Q?w›V®ÔÿdèÙÙsåEî,2 ñ`-Q0Pù3Õü™¾`TñÆ9d ֳ㠳Ÿcôn/Œ#¾9Ômˆù:RAv ¬GÚ÷n’.x¿OÇñ“Ñ‹ «»Fy·eTq6DkV˜0‡ÜMÉåQh*CïêîÕeùη[1‚‘ºÚj^9.åOcL d4Bô¯}ï°êFP6óª+ø‰ÁØóEq`ïQm‡³Þëkù1ewƒ„öòYSqÇ@€'•ÇΉá,}p?Z@•J´ïÀ³LÌhŸÖÕ×`ú}ãƒs®ã±‰Å¯:}BÓmýÈíÖG/óØ…Â'¯¼O“¯É8õzjkn)t*«î.Èô«×í8 ×ÌÄÙ±lhöJ³d(\±gß]öw­ƒûœ‚Îò‰Œ_q„$=âÌÔª~—Zº×K.îø…Çe¹peôÿLëKMœŠí¿ž"k-Èÿ™^†5ŒBÌrƒ´Ž²V”ÿy¶ðÝîÑç$ãhÛ‘ñÚi„Ë´¥‚Š'Õ¾ú&yÌæ4…:¤ªFÀ÷É€’0mþnEG¨ªP´|^„7[—4Ú=º!ÍëCayÖ15c=ÑÄn!Ó +Uc­­`‘Y¤¡rO9É=îصï‘^»˜à#´!ˆ:ÛN]X”yç~@÷7ÓÁH^é9Q&@5̱±©&Ÿc9Ÿ„ ¶+ÊOiŽ À‘J Aà½í™A»57üÛ¹£)qqÉ¥Û1œMVÒ›þf3fÜ>9Ÿv¸¹M[ :êî­(ÆG½`ÂEcuœ3ôu8%£P"F»8žÂ>׫m¥åò²væÄÃ3yTµÍÝ;‡›Ÿ Ÿ,5Ê$}ÔÙC(Ò—qé½×ñÕHè¼Û£e?^KxꬋF ¢¸Ä†Ó° ã8YÜšäÁ|ŠÎGäoN}Q‘G9ùPòìu5À`l§OKjð8ñn¦}*û=.VµÛ7GvX}ºm·9_¿¶nj«3§~Güðäšâ;ŠNRŸS¸ŸX2V¿¡þPar§Êúè¤<¹!¶KK6HK †½+ãï¾ZúÒŒöW˜èg”vÐËz£$+sÞ¶9>€±œ”º¾Š¯2¿îPaÚ4Š§-¾g‰ÙV¸NþDª*)ËÒ‘ÍÔæ›×œtÓŽ„ï‘ÝÆrèjØ¡m˜a Jà¬]húî’T·9 Û¿+ÌD¶L7€ïJeq2Ê”pä¾öÙõ=”Ôº¶Aâ?|o7¤jÙà·‰*cœ¢ZZxf 3u÷_œýÖ‘c¼Ø xU•yÏágÝ¿÷‘·Ñkÿ5*BGûy6s{´J\qógó¡•ËŸ\¼á^Œ š_5™î +¿bzá1P¶ómŽ÷ðýŽúƵîãNLMÿ1Ç„ ìñÍ@Ãq§*Àæ’’˜É +Œ¹Â|xg óåpVìGS Gk¼²åZkÑÈN`¡w/C"}y<¿R6_Þz=lŸ®bi9­DÚĦÒÌ5MŽ¨Ã¨¹ZàW'e¢@×ÃÀœT¬ÜÄl`ïÞôÑõØ}¨N-å¡]L»Û!·RæjCy{? vPÉ7î+ÁâëîºNàÛʬ™‚}صÛR´èÝ6ÍI6… M˜“»Ñ¯ªÁ%óÆÃg¾lƒðxºÏÔ› aùb±í¹ÜŠý†êo_Ëì2sbù|ÍH$¼‘3ng^øhùÈ -˜}jK‘¦g•¤ã^‚9ý¯-×Óî«õ\HB ð÷Úq¬ ìˆ÷w ‰3†aã Øši„Jh¨j²Èk«2T£»p`"%eÙejÈÏ#š>ÅЛ³àÖø®ª)Iºbƒƒ¾í´lÑ–VÂؤ•*QèÓ‘e¼D~8³¥© =µí±Ö¢¸Ke¥˜ÜQäV¸o“öO“ðÙlEQºf’CÏ#½ãë_YˆÍ’ºðw"˜1UYöàÅápÉÌs3)a%Œ.nV ŠñÓeÕ>0…»FÒF‘øú‡þ‚áé… ÂHnmWÓßÒð›ax &êÓ²Zƒ÷˜|ò¾æè¶Ø{Ó_ؾõ9³48ž²]†™ßîÙô¦¼ŠËRSÔ-ˆìÀˆ…Øƪ”s7%Í”ýNî³d‘ß½X¿ç´3|ÆÅà<,È©øW6; {­ŽqOHS…”]`ÏVIØ D›gƒßóžO‘…zz)Ld ÷«xâ@ࢶœ‹•¬” }φÖÁ’øpø¸Îa± ðÊënðªÿòiâýW^!ó3pdrê—ÎÅ üT~IàÊcùÔјײãö5+¬'ýUB§ÒO-Wãô/èñQ­®(†ø'®ªÃMÓz£i\CƲV²Q Èõ(ÜâânS3íb="¼¾É6–P]÷`vù¹:QoMæ©òh&0æ0›³„`[éæ¤Ñ/q«l*nøºbØÞEjÕ@oLl^«{V’ÅíÊTX§.ó$“*«Ôçt#ðØRÂðIƒ¥{–;Ö:k™m9Ǫ‘Jé½ Ùi-#ûN s<6ôFÅ.Z Ê2ÓÁ‡/2;h)gOØdÐ~ÑUÞä4vÿ +ûÙÀL·žÌr¤0aY0Ê çp*ðà VYð–ùc Îè´Tt°ŒKØû“ç¤n«ñ'N«Ä¢4剛­ ç[sBÄák¿æù Ä!cŠ²Àß –ÇÖúCëÁóù9A‚½àvV–YP­åÁÊxúõðtœM§féMV£û¢Õ¿½»ºü~ï1ìwl>ÇCéDToâyZ‹ÅGT{`ohxÅkÐùk#´“ ➀ž§> endobj +4095 0 obj << +/Type /Encoding +/Differences [2/fi/fl 16/caron 30/grave 33/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright 95/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde 147/quotedblleft/quotedblright/bullet/endash/emdash 154/scaron 180/acute 229/aring 233/eacute 235/edieresis] +>> endobj +924 0 obj << +/Type /Font +/Subtype /Type1 +/BaseFont /EOEKOR+CMMI10 +/FontDescriptor 4109 0 R +/FirstChar 45 +/LastChar 62 +/Widths 4101 0 R +>> endobj +923 0 obj << +/Type /Font +/Subtype /Type1 +/BaseFont /VOYJCW+CMSY10 +/FontDescriptor 4111 0 R +/FirstChar 1 +/LastChar 32 +/Widths 4102 0 R +>> endobj +3911 0 obj << +/Type /Font +/Subtype /Type1 +/BaseFont /TPKZYA+LCIRCLE10 +/FontDescriptor 4113 0 R +/FirstChar 118 +/LastChar 118 +/Widths 4094 0 R +>> endobj +3200 0 obj << +/Type /Font +/Subtype /Type1 +/BaseFont /DQDZYQ+NimbusMonL-Bold +/FontDescriptor 4115 0 R +/FirstChar 45 +/LastChar 122 +/Widths 4099 0 R +/Encoding 4095 0 R +>> endobj +3713 0 obj << +/Type /Font +/Subtype /Type1 +/BaseFont /LVTGMN+NimbusMonL-BoldObli +/FontDescriptor 4117 0 R +/FirstChar 46 +/LastChar 120 +/Widths 4096 0 R +/Encoding 4095 0 R +>> endobj +909 0 obj << +/Type /Font +/Subtype /Type1 +/BaseFont /OZMLTC+NimbusMonL-Regu +/FontDescriptor 4119 0 R +/FirstChar 16 +/LastChar 233 +/Widths 4103 0 R +/Encoding 4095 0 R +>> endobj +977 0 obj << +/Type /Font +/Subtype /Type1 +/BaseFont /CFFDXI+NimbusMonL-ReguObli +/FontDescriptor 4121 0 R +/FirstChar 36 +/LastChar 122 +/Widths 4100 0 R +/Encoding 4095 0 R +>> endobj +695 0 obj << +/Type /Font +/Subtype /Type1 +/BaseFont /FYSERL+NimbusSanL-Bold +/FontDescriptor 4123 0 R +/FirstChar 2 +/LastChar 122 +/Widths 4105 0 R +/Encoding 4095 0 R +>> endobj +692 0 obj << +/Type /Font +/Subtype /Type1 +/BaseFont /LHPKHM+NimbusSanL-Regu +/FontDescriptor 4125 0 R +/FirstChar 40 +/LastChar 121 +/Widths 4106 0 R +/Encoding 4095 0 R +>> endobj +3707 0 obj << +/Type /Font +/Subtype /Type1 +/BaseFont /AJQUXG+NimbusSanL-ReguItal +/FontDescriptor 4127 0 R +/FirstChar 104 +/LastChar 119 +/Widths 4097 0 R +/Encoding 4095 0 R +>> endobj +739 0 obj << +/Type /Font +/Subtype /Type1 +/BaseFont /OEXEGJ+NimbusRomNo9L-Medi +/FontDescriptor 4129 0 R +/FirstChar 2 +/LastChar 150 +/Widths 4104 0 R +/Encoding 4095 0 R +>> endobj +691 0 obj << +/Type /Font +/Subtype /Type1 +/BaseFont /EXZGHA+NimbusRomNo9L-Regu +/FontDescriptor 4131 0 R +/FirstChar 2 +/LastChar 235 +/Widths 4107 0 R +/Encoding 4095 0 R +>> endobj +3706 0 obj << +/Type /Font +/Subtype /Type1 +/BaseFont /YNJMKH+NimbusRomNo9L-ReguItal +/FontDescriptor 4133 0 R +/FirstChar 2 +/LastChar 122 +/Widths 4098 0 R +/Encoding 4095 0 R +>> endobj +696 0 obj << +/Type /Pages +/Count 6 +/Parent 4134 0 R +/Kids [686 0 R 736 0 R 775 0 R 816 0 R 859 0 R 886 0 R] +>> endobj +901 0 obj << +/Type /Pages +/Count 6 +/Parent 4134 0 R +/Kids [898 0 R 904 0 R 931 0 R 962 0 R 979 0 R 1007 0 R] +>> endobj +1075 0 obj << +/Type /Pages +/Count 6 +/Parent 4134 0 R +/Kids [1044 0 R 1077 0 R 1111 0 R 1146 0 R 1183 0 R 1227 0 R] +>> endobj +1285 0 obj << +/Type /Pages +/Count 6 +/Parent 4134 0 R +/Kids [1260 0 R 1287 0 R 1314 0 R 1335 0 R 1350 0 R 1359 0 R] +>> endobj +1433 0 obj << +/Type /Pages +/Count 6 +/Parent 4134 0 R +/Kids [1397 0 R 1435 0 R 1473 0 R 1508 0 R 1546 0 R 1587 0 R] +>> endobj +1662 0 obj << +/Type /Pages +/Count 6 +/Parent 4134 0 R +/Kids [1623 0 R 1664 0 R 1704 0 R 1732 0 R 1764 0 R 1801 0 R] +>> endobj +1839 0 obj << +/Type /Pages +/Count 6 +/Parent 4135 0 R +/Kids [1833 0 R 1841 0 R 1872 0 R 1909 0 R 1952 0 R 1974 0 R] +>> endobj +2039 0 obj << +/Type /Pages +/Count 6 +/Parent 4135 0 R +/Kids [1998 0 R 2041 0 R 2089 0 R 2124 0 R 2158 0 R 2201 0 R] +>> endobj +2291 0 obj << +/Type /Pages +/Count 6 +/Parent 4135 0 R +/Kids [2247 0 R 2293 0 R 2328 0 R 2366 0 R 2413 0 R 2461 0 R] +>> endobj +2545 0 obj << +/Type /Pages +/Count 6 +/Parent 4135 0 R +/Kids [2504 0 R 2547 0 R 2597 0 R 2647 0 R 2698 0 R 2744 0 R] +>> endobj +2826 0 obj << +/Type /Pages +/Count 6 +/Parent 4135 0 R +/Kids [2782 0 R 2828 0 R 2860 0 R 2887 0 R 2931 0 R 2987 0 R] +>> endobj +3060 0 obj << +/Type /Pages +/Count 6 +/Parent 4135 0 R +/Kids [3024 0 R 3062 0 R 3096 0 R 3119 0 R 3163 0 R 3190 0 R] +>> endobj +3239 0 obj << +/Type /Pages +/Count 6 +/Parent 4136 0 R +/Kids [3205 0 R 3241 0 R 3277 0 R 3316 0 R 3359 0 R 3396 0 R] +>> endobj +3492 0 obj << +/Type /Pages +/Count 6 +/Parent 4136 0 R +/Kids [3437 0 R 3494 0 R 3553 0 R 3585 0 R 3623 0 R 3657 0 R] +>> endobj +3708 0 obj << +/Type /Pages +/Count 6 +/Parent 4136 0 R +/Kids [3685 0 R 3710 0 R 3716 0 R 3722 0 R 3728 0 R 3734 0 R] +>> endobj +3749 0 obj << +/Type /Pages +/Count 6 +/Parent 4136 0 R +/Kids [3742 0 R 3754 0 R 3761 0 R 3767 0 R 3771 0 R 3778 0 R] +>> endobj +3793 0 obj << +/Type /Pages +/Count 6 +/Parent 4136 0 R +/Kids [3786 0 R 3795 0 R 3800 0 R 3806 0 R 3810 0 R 3814 0 R] +>> endobj +3822 0 obj << +/Type /Pages +/Count 6 +/Parent 4136 0 R +/Kids [3818 0 R 3824 0 R 3828 0 R 3832 0 R 3837 0 R 3841 0 R] +>> endobj +3849 0 obj << +/Type /Pages +/Count 6 +/Parent 4137 0 R +/Kids [3845 0 R 3851 0 R 3855 0 R 3859 0 R 3863 0 R 3870 0 R] +>> endobj +3882 0 obj << +/Type /Pages +/Count 6 +/Parent 4137 0 R +/Kids [3877 0 R 3885 0 R 3892 0 R 3896 0 R 3903 0 R 3936 0 R] +>> endobj +3955 0 obj << +/Type /Pages +/Count 6 +/Parent 4137 0 R +/Kids [3952 0 R 3957 0 R 3965 0 R 3975 0 R 4011 0 R 4017 0 R] +>> endobj +4034 0 obj << +/Type /Pages +/Count 6 +/Parent 4137 0 R +/Kids [4021 0 R 4036 0 R 4041 0 R 4072 0 R 4077 0 R 4084 0 R] +>> endobj +4093 0 obj << +/Type /Pages +/Count 1 +/Parent 4137 0 R +/Kids [4089 0 R] +>> endobj +4134 0 obj << +/Type /Pages +/Count 36 +/Parent 4138 0 R +/Kids [696 0 R 901 0 R 1075 0 R 1285 0 R 1433 0 R 1662 0 R] +>> endobj +4135 0 obj << +/Type /Pages +/Count 36 +/Parent 4138 0 R +/Kids [1839 0 R 2039 0 R 2291 0 R 2545 0 R 2826 0 R 3060 0 R] +>> endobj +4136 0 obj << +/Type /Pages +/Count 36 +/Parent 4138 0 R +/Kids [3239 0 R 3492 0 R 3708 0 R 3749 0 R 3793 0 R 3822 0 R] +>> endobj +4137 0 obj << +/Type /Pages +/Count 25 +/Parent 4138 0 R +/Kids [3849 0 R 3882 0 R 3955 0 R 4034 0 R 4093 0 R] +>> endobj +4138 0 obj << +/Type /Pages +/Count 133 +/Kids [4134 0 R 4135 0 R 4136 0 R 4137 0 R] +>> endobj +4139 0 obj << +/Type /Outlines +/First 3 0 R +/Last 683 0 R +/Count 37 +>> endobj +683 0 obj << +/Title 684 0 R +/A 681 0 R +/Parent 4139 0 R +/Prev 679 0 R +>> endobj +679 0 obj << +/Title 680 0 R +/A 677 0 R +/Parent 4139 0 R +/Prev 675 0 R +/Next 683 0 R +>> endobj +675 0 obj << +/Title 676 0 R +/A 673 0 R +/Parent 4139 0 R +/Prev 671 0 R +/Next 679 0 R +>> endobj +671 0 obj << +/Title 672 0 R +/A 669 0 R +/Parent 4139 0 R +/Prev 667 0 R +/Next 675 0 R +>> endobj +667 0 obj << +/Title 668 0 R +/A 665 0 R +/Parent 4139 0 R +/Prev 663 0 R +/Next 671 0 R +>> endobj +663 0 obj << +/Title 664 0 R +/A 661 0 R +/Parent 4139 0 R +/Prev 659 0 R +/Next 667 0 R +>> endobj +659 0 obj << +/Title 660 0 R +/A 657 0 R +/Parent 4139 0 R +/Prev 655 0 R +/Next 663 0 R +>> endobj +655 0 obj << +/Title 656 0 R +/A 653 0 R +/Parent 4139 0 R +/Prev 651 0 R +/Next 659 0 R +>> endobj +651 0 obj << +/Title 652 0 R +/A 649 0 R +/Parent 4139 0 R +/Prev 647 0 R +/Next 655 0 R +>> endobj +647 0 obj << +/Title 648 0 R +/A 645 0 R +/Parent 4139 0 R +/Prev 643 0 R +/Next 651 0 R +>> endobj +643 0 obj << +/Title 644 0 R +/A 641 0 R +/Parent 4139 0 R +/Prev 639 0 R +/Next 647 0 R +>> endobj +639 0 obj << +/Title 640 0 R +/A 637 0 R +/Parent 4139 0 R +/Prev 635 0 R +/Next 643 0 R +>> endobj +635 0 obj << +/Title 636 0 R +/A 633 0 R +/Parent 4139 0 R +/Prev 631 0 R +/Next 639 0 R +>> endobj +631 0 obj << +/Title 632 0 R +/A 629 0 R +/Parent 4139 0 R +/Prev 627 0 R +/Next 635 0 R +>> endobj +627 0 obj << +/Title 628 0 R +/A 625 0 R +/Parent 4139 0 R +/Prev 623 0 R +/Next 631 0 R +>> endobj +623 0 obj << +/Title 624 0 R +/A 621 0 R +/Parent 4139 0 R +/Prev 619 0 R +/Next 627 0 R +>> endobj +619 0 obj << +/Title 620 0 R +/A 617 0 R +/Parent 4139 0 R +/Prev 595 0 R +/Next 623 0 R +>> endobj +615 0 obj << +/Title 616 0 R +/A 613 0 R +/Parent 595 0 R +/Prev 611 0 R +>> endobj +611 0 obj << +/Title 612 0 R +/A 609 0 R +/Parent 595 0 R +/Prev 607 0 R +/Next 615 0 R +>> endobj +607 0 obj << +/Title 608 0 R +/A 605 0 R +/Parent 595 0 R +/Prev 603 0 R +/Next 611 0 R +>> endobj +603 0 obj << +/Title 604 0 R +/A 601 0 R +/Parent 595 0 R +/Prev 599 0 R +/Next 607 0 R +>> endobj +599 0 obj << +/Title 600 0 R +/A 597 0 R +/Parent 595 0 R +/Next 603 0 R +>> endobj +595 0 obj << +/Title 596 0 R +/A 593 0 R +/Parent 4139 0 R +/Prev 591 0 R +/Next 619 0 R +/First 599 0 R +/Last 615 0 R +/Count -5 +>> endobj +591 0 obj << +/Title 592 0 R +/A 589 0 R +/Parent 4139 0 R +/Prev 551 0 R +/Next 595 0 R +>> endobj +587 0 obj << +/Title 588 0 R +/A 585 0 R +/Parent 551 0 R +/Prev 583 0 R +>> endobj +583 0 obj << +/Title 584 0 R +/A 581 0 R +/Parent 551 0 R +/Prev 579 0 R +/Next 587 0 R +>> endobj +579 0 obj << +/Title 580 0 R +/A 577 0 R +/Parent 551 0 R +/Prev 575 0 R +/Next 583 0 R +>> endobj +575 0 obj << +/Title 576 0 R +/A 573 0 R +/Parent 551 0 R +/Prev 571 0 R +/Next 579 0 R +>> endobj +571 0 obj << +/Title 572 0 R +/A 569 0 R +/Parent 551 0 R +/Prev 567 0 R +/Next 575 0 R +>> endobj +567 0 obj << +/Title 568 0 R +/A 565 0 R +/Parent 551 0 R +/Prev 563 0 R +/Next 571 0 R +>> endobj +563 0 obj << +/Title 564 0 R +/A 561 0 R +/Parent 551 0 R +/Prev 559 0 R +/Next 567 0 R +>> endobj +559 0 obj << +/Title 560 0 R +/A 557 0 R +/Parent 551 0 R +/Prev 555 0 R +/Next 563 0 R +>> endobj +555 0 obj << +/Title 556 0 R +/A 553 0 R +/Parent 551 0 R +/Next 559 0 R +>> endobj +551 0 obj << +/Title 552 0 R +/A 549 0 R +/Parent 4139 0 R +/Prev 531 0 R +/Next 591 0 R +/First 555 0 R +/Last 587 0 R +/Count -9 +>> endobj +547 0 obj << +/Title 548 0 R +/A 545 0 R +/Parent 531 0 R +/Prev 543 0 R +>> endobj +543 0 obj << +/Title 544 0 R +/A 541 0 R +/Parent 531 0 R +/Prev 539 0 R +/Next 547 0 R +>> endobj +539 0 obj << +/Title 540 0 R +/A 537 0 R +/Parent 531 0 R +/Prev 535 0 R +/Next 543 0 R +>> endobj +535 0 obj << +/Title 536 0 R +/A 533 0 R +/Parent 531 0 R +/Next 539 0 R +>> endobj +531 0 obj << +/Title 532 0 R +/A 529 0 R +/Parent 4139 0 R +/Prev 495 0 R +/Next 551 0 R +/First 535 0 R +/Last 547 0 R +/Count -4 +>> endobj +527 0 obj << +/Title 528 0 R +/A 525 0 R +/Parent 495 0 R +/Prev 523 0 R +>> endobj +523 0 obj << +/Title 524 0 R +/A 521 0 R +/Parent 495 0 R +/Prev 519 0 R +/Next 527 0 R +>> endobj +519 0 obj << +/Title 520 0 R +/A 517 0 R +/Parent 495 0 R +/Prev 515 0 R +/Next 523 0 R +>> endobj +515 0 obj << +/Title 516 0 R +/A 513 0 R +/Parent 495 0 R +/Prev 511 0 R +/Next 519 0 R +>> endobj +511 0 obj << +/Title 512 0 R +/A 509 0 R +/Parent 495 0 R +/Prev 507 0 R +/Next 515 0 R +>> endobj +507 0 obj << +/Title 508 0 R +/A 505 0 R +/Parent 495 0 R +/Prev 503 0 R +/Next 511 0 R +>> endobj +503 0 obj << +/Title 504 0 R +/A 501 0 R +/Parent 495 0 R +/Prev 499 0 R +/Next 507 0 R +>> endobj +499 0 obj << +/Title 500 0 R +/A 497 0 R +/Parent 495 0 R +/Next 503 0 R +>> endobj +495 0 obj << +/Title 496 0 R +/A 493 0 R +/Parent 4139 0 R +/Prev 463 0 R +/Next 531 0 R +/First 499 0 R +/Last 527 0 R +/Count -8 +>> endobj +491 0 obj << +/Title 492 0 R +/A 489 0 R +/Parent 463 0 R +/Prev 487 0 R +>> endobj +487 0 obj << +/Title 488 0 R +/A 485 0 R +/Parent 463 0 R +/Prev 483 0 R +/Next 491 0 R +>> endobj +483 0 obj << +/Title 484 0 R +/A 481 0 R +/Parent 463 0 R +/Prev 479 0 R +/Next 487 0 R +>> endobj +479 0 obj << +/Title 480 0 R +/A 477 0 R +/Parent 463 0 R +/Prev 475 0 R +/Next 483 0 R +>> endobj +475 0 obj << +/Title 476 0 R +/A 473 0 R +/Parent 463 0 R +/Prev 471 0 R +/Next 479 0 R +>> endobj +471 0 obj << +/Title 472 0 R +/A 469 0 R +/Parent 463 0 R +/Prev 467 0 R +/Next 475 0 R +>> endobj +467 0 obj << +/Title 468 0 R +/A 465 0 R +/Parent 463 0 R +/Next 471 0 R +>> endobj +463 0 obj << +/Title 464 0 R +/A 461 0 R +/Parent 4139 0 R +/Prev 431 0 R +/Next 495 0 R +/First 467 0 R +/Last 491 0 R +/Count -7 +>> endobj +459 0 obj << +/Title 460 0 R +/A 457 0 R +/Parent 431 0 R +/Prev 455 0 R +>> endobj +455 0 obj << +/Title 456 0 R +/A 453 0 R +/Parent 431 0 R +/Prev 451 0 R +/Next 459 0 R +>> endobj +451 0 obj << +/Title 452 0 R +/A 449 0 R +/Parent 431 0 R +/Prev 447 0 R +/Next 455 0 R +>> endobj +447 0 obj << +/Title 448 0 R +/A 445 0 R +/Parent 431 0 R +/Prev 443 0 R +/Next 451 0 R +>> endobj +443 0 obj << +/Title 444 0 R +/A 441 0 R +/Parent 431 0 R +/Prev 439 0 R +/Next 447 0 R +>> endobj +439 0 obj << +/Title 440 0 R +/A 437 0 R +/Parent 431 0 R +/Prev 435 0 R +/Next 443 0 R +>> endobj +435 0 obj << +/Title 436 0 R +/A 433 0 R +/Parent 431 0 R +/Next 439 0 R +>> endobj +431 0 obj << +/Title 432 0 R +/A 429 0 R +/Parent 4139 0 R +/Prev 367 0 R +/Next 463 0 R +/First 435 0 R +/Last 459 0 R +/Count -7 +>> endobj +427 0 obj << +/Title 428 0 R +/A 425 0 R +/Parent 367 0 R +/Prev 423 0 R +>> endobj +423 0 obj << +/Title 424 0 R +/A 421 0 R +/Parent 367 0 R +/Prev 419 0 R +/Next 427 0 R +>> endobj +419 0 obj << +/Title 420 0 R +/A 417 0 R +/Parent 367 0 R +/Prev 415 0 R +/Next 423 0 R +>> endobj +415 0 obj << +/Title 416 0 R +/A 413 0 R +/Parent 367 0 R +/Prev 411 0 R +/Next 419 0 R +>> endobj +411 0 obj << +/Title 412 0 R +/A 409 0 R +/Parent 367 0 R +/Prev 407 0 R +/Next 415 0 R +>> endobj +407 0 obj << +/Title 408 0 R +/A 405 0 R +/Parent 367 0 R +/Prev 403 0 R +/Next 411 0 R +>> endobj +403 0 obj << +/Title 404 0 R +/A 401 0 R +/Parent 367 0 R +/Prev 399 0 R +/Next 407 0 R +>> endobj +399 0 obj << +/Title 400 0 R +/A 397 0 R +/Parent 367 0 R +/Prev 395 0 R +/Next 403 0 R +>> endobj +395 0 obj << +/Title 396 0 R +/A 393 0 R +/Parent 367 0 R +/Prev 391 0 R +/Next 399 0 R +>> endobj +391 0 obj << +/Title 392 0 R +/A 389 0 R +/Parent 367 0 R +/Prev 387 0 R +/Next 395 0 R +>> endobj +387 0 obj << +/Title 388 0 R +/A 385 0 R +/Parent 367 0 R +/Prev 383 0 R +/Next 391 0 R +>> endobj +383 0 obj << +/Title 384 0 R +/A 381 0 R +/Parent 367 0 R +/Prev 379 0 R +/Next 387 0 R +>> endobj +379 0 obj << +/Title 380 0 R +/A 377 0 R +/Parent 367 0 R +/Prev 375 0 R +/Next 383 0 R +>> endobj +375 0 obj << +/Title 376 0 R +/A 373 0 R +/Parent 367 0 R +/Prev 371 0 R +/Next 379 0 R +>> endobj +371 0 obj << +/Title 372 0 R +/A 369 0 R +/Parent 367 0 R +/Next 375 0 R +>> endobj +367 0 obj << +/Title 368 0 R +/A 365 0 R +/Parent 4139 0 R +/Prev 327 0 R +/Next 431 0 R +/First 371 0 R +/Last 427 0 R +/Count -15 +>> endobj +363 0 obj << +/Title 364 0 R +/A 361 0 R +/Parent 327 0 R +/Prev 359 0 R +>> endobj +359 0 obj << +/Title 360 0 R +/A 357 0 R +/Parent 327 0 R +/Prev 355 0 R +/Next 363 0 R +>> endobj +355 0 obj << +/Title 356 0 R +/A 353 0 R +/Parent 327 0 R +/Prev 351 0 R +/Next 359 0 R +>> endobj +351 0 obj << +/Title 352 0 R +/A 349 0 R +/Parent 327 0 R +/Prev 347 0 R +/Next 355 0 R +>> endobj +347 0 obj << +/Title 348 0 R +/A 345 0 R +/Parent 327 0 R +/Prev 343 0 R +/Next 351 0 R +>> endobj +343 0 obj << +/Title 344 0 R +/A 341 0 R +/Parent 327 0 R +/Prev 339 0 R +/Next 347 0 R +>> endobj +339 0 obj << +/Title 340 0 R +/A 337 0 R +/Parent 327 0 R +/Prev 335 0 R +/Next 343 0 R +>> endobj +335 0 obj << +/Title 336 0 R +/A 333 0 R +/Parent 327 0 R +/Prev 331 0 R +/Next 339 0 R +>> endobj +331 0 obj << +/Title 332 0 R +/A 329 0 R +/Parent 327 0 R +/Next 335 0 R +>> endobj +327 0 obj << +/Title 328 0 R +/A 325 0 R +/Parent 4139 0 R +/Prev 323 0 R +/Next 367 0 R +/First 331 0 R +/Last 363 0 R +/Count -9 +>> endobj +323 0 obj << +/Title 324 0 R +/A 321 0 R +/Parent 4139 0 R +/Prev 243 0 R +/Next 327 0 R +>> endobj +319 0 obj << +/Title 320 0 R +/A 317 0 R +/Parent 243 0 R +/Prev 315 0 R +>> endobj +315 0 obj << +/Title 316 0 R +/A 313 0 R +/Parent 243 0 R +/Prev 311 0 R +/Next 319 0 R +>> endobj +311 0 obj << +/Title 312 0 R +/A 309 0 R +/Parent 243 0 R +/Prev 307 0 R +/Next 315 0 R +>> endobj +307 0 obj << +/Title 308 0 R +/A 305 0 R +/Parent 243 0 R +/Prev 303 0 R +/Next 311 0 R +>> endobj +303 0 obj << +/Title 304 0 R +/A 301 0 R +/Parent 243 0 R +/Prev 299 0 R +/Next 307 0 R +>> endobj +299 0 obj << +/Title 300 0 R +/A 297 0 R +/Parent 243 0 R +/Prev 295 0 R +/Next 303 0 R +>> endobj +295 0 obj << +/Title 296 0 R +/A 293 0 R +/Parent 243 0 R +/Prev 291 0 R +/Next 299 0 R +>> endobj +291 0 obj << +/Title 292 0 R +/A 289 0 R +/Parent 243 0 R +/Prev 287 0 R +/Next 295 0 R +>> endobj +287 0 obj << +/Title 288 0 R +/A 285 0 R +/Parent 243 0 R +/Prev 283 0 R +/Next 291 0 R +>> endobj +283 0 obj << +/Title 284 0 R +/A 281 0 R +/Parent 243 0 R +/Prev 279 0 R +/Next 287 0 R +>> endobj +279 0 obj << +/Title 280 0 R +/A 277 0 R +/Parent 243 0 R +/Prev 275 0 R +/Next 283 0 R +>> endobj +275 0 obj << +/Title 276 0 R +/A 273 0 R +/Parent 243 0 R +/Prev 271 0 R +/Next 279 0 R +>> endobj +271 0 obj << +/Title 272 0 R +/A 269 0 R +/Parent 243 0 R +/Prev 267 0 R +/Next 275 0 R +>> endobj +267 0 obj << +/Title 268 0 R +/A 265 0 R +/Parent 243 0 R +/Prev 263 0 R +/Next 271 0 R +>> endobj +263 0 obj << +/Title 264 0 R +/A 261 0 R +/Parent 243 0 R +/Prev 259 0 R +/Next 267 0 R +>> endobj +259 0 obj << +/Title 260 0 R +/A 257 0 R +/Parent 243 0 R +/Prev 255 0 R +/Next 263 0 R +>> endobj +255 0 obj << +/Title 256 0 R +/A 253 0 R +/Parent 243 0 R +/Prev 251 0 R +/Next 259 0 R +>> endobj +251 0 obj << +/Title 252 0 R +/A 249 0 R +/Parent 243 0 R +/Prev 247 0 R +/Next 255 0 R +>> endobj +247 0 obj << +/Title 248 0 R +/A 245 0 R +/Parent 243 0 R +/Next 251 0 R +>> endobj +243 0 obj << +/Title 244 0 R +/A 241 0 R +/Parent 4139 0 R +/Prev 207 0 R +/Next 323 0 R +/First 247 0 R +/Last 319 0 R +/Count -19 +>> endobj +239 0 obj << +/Title 240 0 R +/A 237 0 R +/Parent 207 0 R +/Prev 235 0 R +>> endobj +235 0 obj << +/Title 236 0 R +/A 233 0 R +/Parent 207 0 R +/Prev 231 0 R +/Next 239 0 R +>> endobj +231 0 obj << +/Title 232 0 R +/A 229 0 R +/Parent 207 0 R +/Prev 227 0 R +/Next 235 0 R +>> endobj +227 0 obj << +/Title 228 0 R +/A 225 0 R +/Parent 207 0 R +/Prev 223 0 R +/Next 231 0 R +>> endobj +223 0 obj << +/Title 224 0 R +/A 221 0 R +/Parent 207 0 R +/Prev 219 0 R +/Next 227 0 R +>> endobj +219 0 obj << +/Title 220 0 R +/A 217 0 R +/Parent 207 0 R +/Prev 215 0 R +/Next 223 0 R +>> endobj +215 0 obj << +/Title 216 0 R +/A 213 0 R +/Parent 207 0 R +/Prev 211 0 R +/Next 219 0 R +>> endobj +211 0 obj << +/Title 212 0 R +/A 209 0 R +/Parent 207 0 R +/Next 215 0 R +>> endobj +207 0 obj << +/Title 208 0 R +/A 205 0 R +/Parent 4139 0 R +/Prev 203 0 R +/Next 243 0 R +/First 211 0 R +/Last 239 0 R +/Count -8 +>> endobj +203 0 obj << +/Title 204 0 R +/A 201 0 R +/Parent 4139 0 R +/Prev 199 0 R +/Next 207 0 R +>> endobj +199 0 obj << +/Title 200 0 R +/A 197 0 R +/Parent 4139 0 R +/Prev 151 0 R +/Next 203 0 R +>> endobj +195 0 obj << +/Title 196 0 R +/A 193 0 R +/Parent 151 0 R +/Prev 191 0 R +>> endobj +191 0 obj << +/Title 192 0 R +/A 189 0 R +/Parent 151 0 R +/Prev 187 0 R +/Next 195 0 R +>> endobj +187 0 obj << +/Title 188 0 R +/A 185 0 R +/Parent 151 0 R +/Prev 183 0 R +/Next 191 0 R +>> endobj +183 0 obj << +/Title 184 0 R +/A 181 0 R +/Parent 151 0 R +/Prev 179 0 R +/Next 187 0 R +>> endobj +179 0 obj << +/Title 180 0 R +/A 177 0 R +/Parent 151 0 R +/Prev 175 0 R +/Next 183 0 R +>> endobj +175 0 obj << +/Title 176 0 R +/A 173 0 R +/Parent 151 0 R +/Prev 171 0 R +/Next 179 0 R +>> endobj +171 0 obj << +/Title 172 0 R +/A 169 0 R +/Parent 151 0 R +/Prev 167 0 R +/Next 175 0 R +>> endobj +167 0 obj << +/Title 168 0 R +/A 165 0 R +/Parent 151 0 R +/Prev 163 0 R +/Next 171 0 R +>> endobj +163 0 obj << +/Title 164 0 R +/A 161 0 R +/Parent 151 0 R +/Prev 159 0 R +/Next 167 0 R +>> endobj +159 0 obj << +/Title 160 0 R +/A 157 0 R +/Parent 151 0 R +/Prev 155 0 R +/Next 163 0 R +>> endobj +155 0 obj << +/Title 156 0 R +/A 153 0 R +/Parent 151 0 R +/Next 159 0 R +>> endobj +151 0 obj << +/Title 152 0 R +/A 149 0 R +/Parent 4139 0 R +/Prev 131 0 R +/Next 199 0 R +/First 155 0 R +/Last 195 0 R +/Count -11 +>> endobj +147 0 obj << +/Title 148 0 R +/A 145 0 R +/Parent 131 0 R +/Prev 143 0 R +>> endobj +143 0 obj << +/Title 144 0 R +/A 141 0 R +/Parent 131 0 R +/Prev 139 0 R +/Next 147 0 R +>> endobj +139 0 obj << +/Title 140 0 R +/A 137 0 R +/Parent 131 0 R +/Prev 135 0 R +/Next 143 0 R +>> endobj +135 0 obj << +/Title 136 0 R +/A 133 0 R +/Parent 131 0 R +/Next 139 0 R +>> endobj +131 0 obj << +/Title 132 0 R +/A 129 0 R +/Parent 4139 0 R +/Prev 91 0 R +/Next 151 0 R +/First 135 0 R +/Last 147 0 R +/Count -4 +>> endobj +127 0 obj << +/Title 128 0 R +/A 125 0 R +/Parent 91 0 R +/Prev 123 0 R +>> endobj +123 0 obj << +/Title 124 0 R +/A 121 0 R +/Parent 91 0 R +/Prev 119 0 R +/Next 127 0 R +>> endobj +119 0 obj << +/Title 120 0 R +/A 117 0 R +/Parent 91 0 R +/Prev 115 0 R +/Next 123 0 R +>> endobj +115 0 obj << +/Title 116 0 R +/A 113 0 R +/Parent 91 0 R +/Prev 111 0 R +/Next 119 0 R +>> endobj +111 0 obj << +/Title 112 0 R +/A 109 0 R +/Parent 91 0 R +/Prev 107 0 R +/Next 115 0 R +>> endobj +107 0 obj << +/Title 108 0 R +/A 105 0 R +/Parent 91 0 R +/Prev 103 0 R +/Next 111 0 R +>> endobj +103 0 obj << +/Title 104 0 R +/A 101 0 R +/Parent 91 0 R +/Prev 99 0 R +/Next 107 0 R +>> endobj +99 0 obj << +/Title 100 0 R +/A 97 0 R +/Parent 91 0 R +/Prev 95 0 R +/Next 103 0 R +>> endobj +95 0 obj << +/Title 96 0 R +/A 93 0 R +/Parent 91 0 R +/Next 99 0 R +>> endobj +91 0 obj << +/Title 92 0 R +/A 89 0 R +/Parent 4139 0 R +/Prev 51 0 R +/Next 131 0 R +/First 95 0 R +/Last 127 0 R +/Count -9 +>> endobj +87 0 obj << +/Title 88 0 R +/A 85 0 R +/Parent 51 0 R +/Prev 83 0 R +>> endobj +83 0 obj << +/Title 84 0 R +/A 81 0 R +/Parent 51 0 R +/Prev 79 0 R +/Next 87 0 R +>> endobj +79 0 obj << +/Title 80 0 R +/A 77 0 R +/Parent 51 0 R +/Prev 75 0 R +/Next 83 0 R +>> endobj +75 0 obj << +/Title 76 0 R +/A 73 0 R +/Parent 51 0 R +/Prev 71 0 R +/Next 79 0 R +>> endobj +71 0 obj << +/Title 72 0 R +/A 69 0 R +/Parent 51 0 R +/Prev 67 0 R +/Next 75 0 R +>> endobj +67 0 obj << +/Title 68 0 R +/A 65 0 R +/Parent 51 0 R +/Prev 63 0 R +/Next 71 0 R +>> endobj +63 0 obj << +/Title 64 0 R +/A 61 0 R +/Parent 51 0 R +/Prev 59 0 R +/Next 67 0 R +>> endobj +59 0 obj << +/Title 60 0 R +/A 57 0 R +/Parent 51 0 R +/Prev 55 0 R +/Next 63 0 R +>> endobj +55 0 obj << +/Title 56 0 R +/A 53 0 R +/Parent 51 0 R +/Next 59 0 R +>> endobj +51 0 obj << +/Title 52 0 R +/A 49 0 R +/Parent 4139 0 R +/Prev 35 0 R +/Next 91 0 R +/First 55 0 R +/Last 87 0 R +/Count -9 +>> endobj +47 0 obj << +/Title 48 0 R +/A 45 0 R +/Parent 35 0 R +/Prev 43 0 R +>> endobj +43 0 obj << +/Title 44 0 R +/A 41 0 R +/Parent 35 0 R +/Prev 39 0 R +/Next 47 0 R +>> endobj +39 0 obj << +/Title 40 0 R +/A 37 0 R +/Parent 35 0 R +/Next 43 0 R +>> endobj +35 0 obj << +/Title 36 0 R +/A 33 0 R +/Parent 4139 0 R +/Prev 3 0 R +/Next 51 0 R +/First 39 0 R +/Last 47 0 R +/Count -3 +>> endobj +31 0 obj << +/Title 32 0 R +/A 29 0 R +/Parent 3 0 R +/Prev 27 0 R +>> endobj +27 0 obj << +/Title 28 0 R +/A 25 0 R +/Parent 3 0 R +/Prev 23 0 R +/Next 31 0 R +>> endobj +23 0 obj << +/Title 24 0 R +/A 21 0 R +/Parent 3 0 R +/Prev 19 0 R +/Next 27 0 R +>> endobj +19 0 obj << +/Title 20 0 R +/A 17 0 R +/Parent 3 0 R +/Prev 15 0 R +/Next 23 0 R +>> endobj +15 0 obj << +/Title 16 0 R +/A 13 0 R +/Parent 3 0 R +/Prev 11 0 R +/Next 19 0 R +>> endobj +11 0 obj << +/Title 12 0 R +/A 9 0 R +/Parent 3 0 R +/Prev 7 0 R +/Next 15 0 R +>> endobj +7 0 obj << +/Title 8 0 R +/A 5 0 R +/Parent 3 0 R +/Next 11 0 R +>> endobj +3 0 obj << +/Title 4 0 R +/A 1 0 R +/Parent 4139 0 R +/Next 35 0 R +/First 7 0 R +/Last 31 0 R +/Count -7 +>> endobj +4140 0 obj << +/Names [(Doc-Start) 693 0 R (Item.1) 3899 0 R (Item.10) 3945 0 R (Item.11) 3946 0 R (Item.12) 3947 0 R (Item.13) 3948 0 R] +/Limits [(Doc-Start) (Item.13)] +>> endobj +4141 0 obj << +/Names [(Item.14) 3949 0 R (Item.15) 3950 0 R (Item.16) 3982 0 R (Item.17) 3983 0 R (Item.2) 3900 0 R (Item.3) 3901 0 R] +/Limits [(Item.14) (Item.3)] +>> endobj +4142 0 obj << +/Names [(Item.4) 3939 0 R (Item.5) 3940 0 R (Item.6) 3941 0 R (Item.7) 3942 0 R (Item.8) 3943 0 R (Item.9) 3944 0 R] +/Limits [(Item.4) (Item.9)] +>> endobj +4143 0 obj << +/Names [(V1.71.0) 3757 0 R (V1.71.0_Common) 3758 0 R (V1.71.0_Extensions) 3759 0 R (V1.71.0_FO) 3764 0 R (V1.71.0_HTML) 3765 0 R (V1.71.0_Highlighting) 3774 0 R] +/Limits [(V1.71.0) (V1.71.0_Highlighting)] +>> endobj +4144 0 obj << +/Names [(V1.71.0_Manpages) 3775 0 R (V1.71.0_Params) 3776 0 R (V1.71.0_Tools) 3781 0 R (V1.71.1) 3737 0 R (V1.71.1_Common) 3738 0 R (V1.71.1_FO) 3739 0 R] +/Limits [(V1.71.0_Manpages) (V1.71.1_FO)] +>> endobj +4145 0 obj << +/Names [(V1.71.1_HTML) 3740 0 R (V1.71.1_Highlighting) 3745 0 R (V1.71.1_Manpages) 3746 0 R (V1.71.1_Params) 3747 0 R (V1.71.1_Profiling) 3748 0 R (V1.72.0) 3705 0 R] +/Limits [(V1.71.1_HTML) (V1.72.0)] +>> endobj +4146 0 obj << +/Names [(V1.72.0_Common) 3714 0 R (V1.72.0_FO) 3719 0 R (V1.72.0_HTML) 3720 0 R (V1.72.0_Manpages) 3725 0 R (V1.72.0_Params) 3726 0 R (V1.72.0_Roundtrip) 3732 0 R] +/Limits [(V1.72.0_Common) (V1.72.0_Roundtrip)] +>> endobj +4147 0 obj << +/Names [(V1.72.0_Template) 3731 0 R (V1.73.0) 3199 0 R (V1.73.0_Common) 3226 0 R (V1.73.0_Eclipse) 3568 0 R (V1.73.0_FO) 3256 0 R (V1.73.0_Gentext) 3201 0 R] +/Limits [(V1.72.0_Template) (V1.73.0_Gentext)] +>> endobj +4148 0 obj << +/Names [(V1.73.0_HTML) 3319 0 R (V1.73.0_Highlighting) 3653 0 R (V1.73.0_JavaHelp) 3573 0 R (V1.73.0_Lib) 3663 0 R (V1.73.0_Manpages) 3413 0 R (V1.73.0_Params) 3588 0 R] +/Limits [(V1.73.0_HTML) (V1.73.0_Params)] +>> endobj +4149 0 obj << +/Names [(V1.73.0_Profiling) 3660 0 R (V1.73.0_Roundtrip) 3579 0 R (V1.73.0_Tools) 3667 0 R (V1.73.0_XSL-Saxon) 3673 0 R (V1.73.0_XSL-Xalan) 3688 0 R (V1.73.1) 3111 0 R] +/Limits [(V1.73.0_Profiling) (V1.73.1)] +>> endobj +4150 0 obj << +/Names [(V1.73.1_Eclipse) 3176 0 R (V1.73.1_FO) 3117 0 R (V1.73.1_Gentext) 3112 0 R (V1.73.1_HTML) 3133 0 R (V1.73.1_HTMLHelp) 3172 0 R (V1.73.1_JavaHelp) 3180 0 R] +/Limits [(V1.73.1_Eclipse) (V1.73.1_JavaHelp)] +>> endobj +4151 0 obj << +/Names [(V1.73.1_Manpages) 3166 0 R (V1.73.1_Params) 3193 0 R (V1.73.1_Roundtrip) 3184 0 R (V1.73.2) 3110 0 R (V1.74.0) 1972 0 R (V1.74.0_Common) 2011 0 R] +/Limits [(V1.73.1_Manpages) (V1.74.0_Common)] +>> endobj +4152 0 obj << +/Names [(V1.74.0_Eclipse) 2818 0 R (V1.74.0_Epub) 2754 0 R (V1.74.0_Extensions) 3065 0 R (V1.74.0_FO) 2105 0 R (V1.74.0_Gentext) 1977 0 R (V1.74.0_HTML) 2230 0 R] +/Limits [(V1.74.0_Eclipse) (V1.74.0_HTML)] +>> endobj +4153 0 obj << +/Names [(V1.74.0_HTMLHelp) 2812 0 R (V1.74.0_JavaHelp) 2838 0 R (V1.74.0_Manpages) 2353 0 R (V1.74.0_Params) 2890 0 R (V1.74.0_Profiling) 3027 0 R (V1.74.0_Roundtrip) 2844 0 R] +/Limits [(V1.74.0_HTMLHelp) (V1.74.0_Roundtrip)] +>> endobj +4154 0 obj << +/Names [(V1.74.0_Slides) 2875 0 R (V1.74.0_Tools) 3033 0 R (V1.74.0_Website) 2883 0 R (V1.74.0_XSL-Saxon) 3073 0 R (V1.74.0_XSL-Xalan) 3084 0 R (V1.74.0_XSL-libxslt) 3099 0 R] +/Limits [(V1.74.0_Slides) (V1.74.0_XSL-libxslt)] +>> endobj +4155 0 obj << +/Names [(V1.74.1) 1838 0 R (V1.74.2) 1837 0 R (V1.74.3) 1836 0 R (V1.75.0) 1348 0 R (V1.76.0) 976 0 R (V1.76.1) 965 0 R] +/Limits [(V1.74.1) (V1.76.1)] +>> endobj +4156 0 obj << +/Names [(V1.76.1_Common) 908 0 R (V1.76.1_Epub) 925 0 R (V1.76.1_Extensions) 956 0 R (V1.76.1_FO) 914 0 R (V1.76.1_HTML) 920 0 R (V1.76.1_Params) 953 0 R] +/Limits [(V1.76.1_Common) (V1.76.1_Params)] +>> endobj +4157 0 obj << +/Names [(V1.76.1_Webhelp) 940 0 R (V1560) 4087 0 R (V1570) 4082 0 R (V1580) 4081 0 R (V1591) 4080 0 R (V1592) 4075 0 R] +/Limits [(V1.76.1_Webhelp) (V1592)] +>> endobj +4158 0 obj << +/Names [(V1601) 4044 0 R (V1610) 4039 0 R (V1641) 4033 0 R (V1650) 4024 0 R (V1661) 4015 0 R (V1670) 4014 0 R] +/Limits [(V1601) (V1670)] +>> endobj +4159 0 obj << +/Names [(V1671) 3971 0 R (V1671_EXT) 3981 0 R (V1671_FO) 3972 0 R (V1671_HELP) 3979 0 R (V1671_HTML) 3978 0 R (V1671_MAN) 3980 0 R] +/Limits [(V1671) (V1671_MAN)] +>> endobj +4160 0 obj << +/Names [(V1672) 3970 0 R (V1680) 3961 0 R (V1680_FO) 3962 0 R (V1680_HTML) 3968 0 R (V1680_images) 3969 0 R (V1681) 3960 0 R] +/Limits [(V1672) (V1681)] +>> endobj +4161 0 obj << +/Names [(V1690) 3880 0 R (V1690_COMMON) 3881 0 R (V1690_FO) 3888 0 R (V1690_HELP) 3889 0 R (V1690_HTML) 3890 0 R (V1690_MAN) 3883 0 R] +/Limits [(V1690) (V1690_MAN)] +>> endobj +4162 0 obj << +/Names [(V1691) 3875 0 R (V1700) 3792 0 R (V1700_Common) 3798 0 R (V1700_Extensions) 3803 0 R (V1700_FO) 3804 0 R (V1700_HTML) 3821 0 R] +/Limits [(V1691) (V1700_HTML)] +>> endobj +4163 0 obj << +/Names [(V1700_Manpages) 3835 0 R (V1700_Params) 3848 0 R (V1700_Profiling) 3866 0 R (V1700_Tools) 3873 0 R (V1700_WordML) 3874 0 R (V1701) 3782 0 R] +/Limits [(V1700_Manpages) (V1701)] +>> endobj +4164 0 obj << +/Names [(V1701_FO) 3783 0 R (V1701_HTML) 3789 0 R (V1701_HTMLHelp) 3790 0 R (V1701_Params) 3791 0 R (VOlder) 4092 0 R (cocnt.1) 3910 0 R] +/Limits [(V1701_FO) (cocnt.1)] +>> endobj +4165 0 obj << +/Names [(cocnt.2) 3915 0 R (cocnt.3) 3917 0 R (cocnt.4) 3919 0 R (cocnt.5) 3921 0 R (cocnt.6) 3923 0 R (current) 907 0 R] +/Limits [(cocnt.2) (current)] +>> endobj +4166 0 obj << +/Names [(dot0) 902 0 R (lstlisting.-1) 910 0 R (lstlisting.-10) 938 0 R (lstlisting.-100) 1198 0 R (lstlisting.-101) 1200 0 R (lstlisting.-102) 1207 0 R] +/Limits [(dot0) (lstlisting.-102)] +>> endobj +4167 0 obj << +/Names [(lstlisting.-103) 1230 0 R (lstlisting.-104) 1232 0 R (lstlisting.-105) 1236 0 R (lstlisting.-106) 1243 0 R (lstlisting.-107) 1249 0 R (lstlisting.-108) 1253 0 R] +/Limits [(lstlisting.-103) (lstlisting.-108)] +>> endobj +4168 0 obj << +/Names [(lstlisting.-109) 1255 0 R (lstlisting.-11) 941 0 R (lstlisting.-110) 1257 0 R (lstlisting.-111) 1263 0 R (lstlisting.-112) 1265 0 R (lstlisting.-113) 1268 0 R] +/Limits [(lstlisting.-109) (lstlisting.-113)] +>> endobj +4169 0 obj << +/Names [(lstlisting.-114) 1272 0 R (lstlisting.-115) 1274 0 R (lstlisting.-116) 1276 0 R (lstlisting.-117) 1278 0 R (lstlisting.-118) 1281 0 R (lstlisting.-119) 1283 0 R] +/Limits [(lstlisting.-114) (lstlisting.-119)] +>> endobj +4170 0 obj << +/Names [(lstlisting.-12) 943 0 R (lstlisting.-120) 1291 0 R (lstlisting.-121) 1294 0 R (lstlisting.-122) 1296 0 R (lstlisting.-123) 1298 0 R (lstlisting.-124) 1301 0 R] +/Limits [(lstlisting.-12) (lstlisting.-124)] +>> endobj +4171 0 obj << +/Names [(lstlisting.-125) 1303 0 R (lstlisting.-126) 1306 0 R (lstlisting.-127) 1308 0 R (lstlisting.-128) 1311 0 R (lstlisting.-129) 1318 0 R (lstlisting.-13) 945 0 R] +/Limits [(lstlisting.-125) (lstlisting.-13)] +>> endobj +4172 0 obj << +/Names [(lstlisting.-130) 1321 0 R (lstlisting.-131) 1325 0 R (lstlisting.-132) 1327 0 R (lstlisting.-133) 1330 0 R (lstlisting.-134) 1332 0 R (lstlisting.-135) 1339 0 R] +/Limits [(lstlisting.-130) (lstlisting.-135)] +>> endobj +4173 0 obj << +/Names [(lstlisting.-136) 1341 0 R (lstlisting.-137) 1343 0 R (lstlisting.-138) 1346 0 R (lstlisting.-139) 1354 0 R (lstlisting.-14) 947 0 R (lstlisting.-140) 1356 0 R] +/Limits [(lstlisting.-136) (lstlisting.-140)] +>> endobj +4174 0 obj << +/Names [(lstlisting.-141) 1362 0 R (lstlisting.-142) 1365 0 R (lstlisting.-143) 1367 0 R (lstlisting.-144) 1369 0 R (lstlisting.-145) 1371 0 R (lstlisting.-146) 1373 0 R] +/Limits [(lstlisting.-141) (lstlisting.-146)] +>> endobj +4175 0 obj << +/Names [(lstlisting.-147) 1376 0 R (lstlisting.-148) 1378 0 R (lstlisting.-149) 1388 0 R (lstlisting.-15) 949 0 R (lstlisting.-150) 1391 0 R (lstlisting.-151) 1394 0 R] +/Limits [(lstlisting.-147) (lstlisting.-151)] +>> endobj +4176 0 obj << +/Names [(lstlisting.-152) 1400 0 R (lstlisting.-153) 1402 0 R (lstlisting.-154) 1406 0 R (lstlisting.-155) 1410 0 R (lstlisting.-156) 1413 0 R (lstlisting.-157) 1418 0 R] +/Limits [(lstlisting.-152) (lstlisting.-157)] +>> endobj +4177 0 obj << +/Names [(lstlisting.-158) 1422 0 R (lstlisting.-159) 1424 0 R (lstlisting.-16) 951 0 R (lstlisting.-160) 1426 0 R (lstlisting.-161) 1428 0 R (lstlisting.-162) 1431 0 R] +/Limits [(lstlisting.-158) (lstlisting.-162)] +>> endobj +4178 0 obj << +/Names [(lstlisting.-163) 1438 0 R (lstlisting.-164) 1441 0 R (lstlisting.-165) 1443 0 R (lstlisting.-166) 1445 0 R (lstlisting.-167) 1448 0 R (lstlisting.-168) 1450 0 R] +/Limits [(lstlisting.-163) (lstlisting.-168)] +>> endobj +4179 0 obj << +/Names [(lstlisting.-169) 1452 0 R (lstlisting.-17) 954 0 R (lstlisting.-170) 1454 0 R (lstlisting.-171) 1464 0 R (lstlisting.-172) 1467 0 R (lstlisting.-173) 1470 0 R] +/Limits [(lstlisting.-169) (lstlisting.-173)] +>> endobj +4180 0 obj << +/Names [(lstlisting.-174) 1476 0 R (lstlisting.-175) 1478 0 R (lstlisting.-176) 1480 0 R (lstlisting.-177) 1483 0 R (lstlisting.-178) 1486 0 R (lstlisting.-179) 1488 0 R] +/Limits [(lstlisting.-174) (lstlisting.-179)] +>> endobj +4181 0 obj << +/Names [(lstlisting.-18) 957 0 R (lstlisting.-180) 1490 0 R (lstlisting.-181) 1492 0 R (lstlisting.-182) 1495 0 R (lstlisting.-183) 1497 0 R (lstlisting.-184) 1500 0 R] +/Limits [(lstlisting.-18) (lstlisting.-184)] +>> endobj +4182 0 obj << +/Names [(lstlisting.-185) 1502 0 R (lstlisting.-186) 1504 0 R (lstlisting.-187) 1511 0 R (lstlisting.-188) 1514 0 R (lstlisting.-189) 1517 0 R (lstlisting.-19) 959 0 R] +/Limits [(lstlisting.-185) (lstlisting.-19)] +>> endobj +4183 0 obj << +/Names [(lstlisting.-190) 1519 0 R (lstlisting.-191) 1522 0 R (lstlisting.-192) 1525 0 R (lstlisting.-193) 1529 0 R (lstlisting.-194) 1531 0 R (lstlisting.-195) 1535 0 R] +/Limits [(lstlisting.-190) (lstlisting.-195)] +>> endobj +4184 0 obj << +/Names [(lstlisting.-196) 1539 0 R (lstlisting.-197) 1541 0 R (lstlisting.-198) 1543 0 R (lstlisting.-199) 1549 0 R (lstlisting.-2) 912 0 R (lstlisting.-20) 967 0 R] +/Limits [(lstlisting.-196) (lstlisting.-20)] +>> endobj +4185 0 obj << +/Names [(lstlisting.-200) 1551 0 R (lstlisting.-201) 1555 0 R (lstlisting.-202) 1557 0 R (lstlisting.-203) 1559 0 R (lstlisting.-204) 1562 0 R (lstlisting.-205) 1564 0 R] +/Limits [(lstlisting.-200) (lstlisting.-205)] +>> endobj +4186 0 obj << +/Names [(lstlisting.-206) 1566 0 R (lstlisting.-207) 1573 0 R (lstlisting.-208) 1575 0 R (lstlisting.-209) 1577 0 R (lstlisting.-21) 971 0 R (lstlisting.-210) 1580 0 R] +/Limits [(lstlisting.-206) (lstlisting.-210)] +>> endobj +4187 0 obj << +/Names [(lstlisting.-211) 1582 0 R (lstlisting.-212) 1584 0 R (lstlisting.-213) 1591 0 R (lstlisting.-214) 1594 0 R (lstlisting.-215) 1598 0 R (lstlisting.-216) 1601 0 R] +/Limits [(lstlisting.-211) (lstlisting.-216)] +>> endobj +4188 0 obj << +/Names [(lstlisting.-217) 1603 0 R (lstlisting.-218) 1606 0 R (lstlisting.-219) 1608 0 R (lstlisting.-22) 974 0 R (lstlisting.-220) 1610 0 R (lstlisting.-221) 1615 0 R] +/Limits [(lstlisting.-217) (lstlisting.-221)] +>> endobj +4189 0 obj << +/Names [(lstlisting.-222) 1618 0 R (lstlisting.-223) 1620 0 R (lstlisting.-224) 1626 0 R (lstlisting.-225) 1628 0 R (lstlisting.-226) 1632 0 R (lstlisting.-227) 1636 0 R] +/Limits [(lstlisting.-222) (lstlisting.-227)] +>> endobj +4190 0 obj << +/Names [(lstlisting.-228) 1638 0 R (lstlisting.-229) 1641 0 R (lstlisting.-23) 983 0 R (lstlisting.-230) 1643 0 R (lstlisting.-231) 1648 0 R (lstlisting.-232) 1652 0 R] +/Limits [(lstlisting.-228) (lstlisting.-232)] +>> endobj +4191 0 obj << +/Names [(lstlisting.-233) 1655 0 R (lstlisting.-234) 1660 0 R (lstlisting.-235) 1667 0 R (lstlisting.-236) 1670 0 R (lstlisting.-237) 1674 0 R (lstlisting.-238) 1677 0 R] +/Limits [(lstlisting.-233) (lstlisting.-238)] +>> endobj +4192 0 obj << +/Names [(lstlisting.-239) 1681 0 R (lstlisting.-24) 985 0 R (lstlisting.-240) 1685 0 R (lstlisting.-241) 1689 0 R (lstlisting.-242) 1691 0 R (lstlisting.-243) 1693 0 R] +/Limits [(lstlisting.-239) (lstlisting.-243)] +>> endobj +4193 0 obj << +/Names [(lstlisting.-244) 1695 0 R (lstlisting.-245) 1697 0 R (lstlisting.-246) 1699 0 R (lstlisting.-247) 1707 0 R (lstlisting.-248) 1710 0 R (lstlisting.-249) 1712 0 R] +/Limits [(lstlisting.-244) (lstlisting.-249)] +>> endobj +4194 0 obj << +/Names [(lstlisting.-25) 987 0 R (lstlisting.-250) 1715 0 R (lstlisting.-251) 1717 0 R (lstlisting.-252) 1719 0 R (lstlisting.-253) 1721 0 R (lstlisting.-254) 1723 0 R] +/Limits [(lstlisting.-25) (lstlisting.-254)] +>> endobj +4195 0 obj << +/Names [(lstlisting.-255) 1726 0 R (lstlisting.-256) 1729 0 R (lstlisting.-257) 1736 0 R (lstlisting.-258) 1738 0 R (lstlisting.-259) 1740 0 R (lstlisting.-26) 989 0 R] +/Limits [(lstlisting.-255) (lstlisting.-26)] +>> endobj +4196 0 obj << +/Names [(lstlisting.-260) 1742 0 R (lstlisting.-261) 1744 0 R (lstlisting.-262) 1746 0 R (lstlisting.-263) 1748 0 R (lstlisting.-264) 1750 0 R (lstlisting.-265) 1752 0 R] +/Limits [(lstlisting.-260) (lstlisting.-265)] +>> endobj +4197 0 obj << +/Names [(lstlisting.-266) 1755 0 R (lstlisting.-267) 1757 0 R (lstlisting.-268) 1759 0 R (lstlisting.-269) 1761 0 R (lstlisting.-27) 991 0 R (lstlisting.-270) 1768 0 R] +/Limits [(lstlisting.-266) (lstlisting.-270)] +>> endobj +4198 0 obj << +/Names [(lstlisting.-271) 1771 0 R (lstlisting.-272) 1773 0 R (lstlisting.-273) 1780 0 R (lstlisting.-274) 1783 0 R (lstlisting.-275) 1787 0 R (lstlisting.-276) 1789 0 R] +/Limits [(lstlisting.-271) (lstlisting.-276)] +>> endobj +4199 0 obj << +/Names [(lstlisting.-277) 1792 0 R (lstlisting.-278) 1796 0 R (lstlisting.-279) 1798 0 R (lstlisting.-28) 993 0 R (lstlisting.-280) 1804 0 R (lstlisting.-281) 1806 0 R] +/Limits [(lstlisting.-277) (lstlisting.-281)] +>> endobj +4200 0 obj << +/Names [(lstlisting.-282) 1808 0 R (lstlisting.-283) 1811 0 R (lstlisting.-284) 1813 0 R (lstlisting.-285) 1815 0 R (lstlisting.-286) 1818 0 R (lstlisting.-287) 1820 0 R] +/Limits [(lstlisting.-282) (lstlisting.-287)] +>> endobj +4201 0 obj << +/Names [(lstlisting.-288) 1822 0 R (lstlisting.-289) 1825 0 R (lstlisting.-29) 995 0 R (lstlisting.-290) 1829 0 R (lstlisting.-291) 1845 0 R (lstlisting.-292) 1847 0 R] +/Limits [(lstlisting.-288) (lstlisting.-292)] +>> endobj +4202 0 obj << +/Names [(lstlisting.-293) 1849 0 R (lstlisting.-294) 1851 0 R (lstlisting.-295) 1854 0 R (lstlisting.-296) 1856 0 R (lstlisting.-297) 1858 0 R (lstlisting.-298) 1861 0 R] +/Limits [(lstlisting.-293) (lstlisting.-298)] +>> endobj +4203 0 obj << +/Names [(lstlisting.-299) 1864 0 R (lstlisting.-3) 915 0 R (lstlisting.-30) 997 0 R (lstlisting.-300) 1866 0 R (lstlisting.-301) 1876 0 R (lstlisting.-302) 1878 0 R] +/Limits [(lstlisting.-299) (lstlisting.-302)] +>> endobj +4204 0 obj << +/Names [(lstlisting.-303) 1885 0 R (lstlisting.-304) 1892 0 R (lstlisting.-305) 1894 0 R (lstlisting.-306) 1899 0 R (lstlisting.-307) 1912 0 R (lstlisting.-308) 1921 0 R] +/Limits [(lstlisting.-303) (lstlisting.-308)] +>> endobj +4205 0 obj << +/Names [(lstlisting.-309) 1923 0 R (lstlisting.-31) 1000 0 R (lstlisting.-310) 1925 0 R (lstlisting.-311) 1927 0 R (lstlisting.-312) 1938 0 R (lstlisting.-313) 1941 0 R] +/Limits [(lstlisting.-309) (lstlisting.-313)] +>> endobj +4206 0 obj << +/Names [(lstlisting.-314) 1943 0 R (lstlisting.-315) 1945 0 R (lstlisting.-316) 1947 0 R (lstlisting.-317) 1956 0 R (lstlisting.-318) 1958 0 R (lstlisting.-319) 1961 0 R] +/Limits [(lstlisting.-314) (lstlisting.-319)] +>> endobj +4207 0 obj << +/Names [(lstlisting.-32) 1002 0 R (lstlisting.-320) 1967 0 R (lstlisting.-321) 1978 0 R (lstlisting.-322) 1980 0 R (lstlisting.-323) 1982 0 R (lstlisting.-324) 1984 0 R] +/Limits [(lstlisting.-32) (lstlisting.-324)] +>> endobj +4208 0 obj << +/Names [(lstlisting.-325) 1986 0 R (lstlisting.-326) 1989 0 R (lstlisting.-327) 1991 0 R (lstlisting.-328) 1993 0 R (lstlisting.-329) 2001 0 R (lstlisting.-33) 1004 0 R] +/Limits [(lstlisting.-325) (lstlisting.-33)] +>> endobj +4209 0 obj << +/Names [(lstlisting.-330) 2005 0 R (lstlisting.-331) 2007 0 R (lstlisting.-332) 2009 0 R (lstlisting.-333) 2012 0 R (lstlisting.-334) 2016 0 R (lstlisting.-335) 2018 0 R] +/Limits [(lstlisting.-330) (lstlisting.-335)] +>> endobj +4210 0 obj << +/Names [(lstlisting.-336) 2020 0 R (lstlisting.-337) 2024 0 R (lstlisting.-338) 2027 0 R (lstlisting.-339) 2063 0 R (lstlisting.-34) 1010 0 R (lstlisting.-340) 2068 0 R] +/Limits [(lstlisting.-336) (lstlisting.-340)] +>> endobj +4211 0 obj << +/Names [(lstlisting.-341) 2070 0 R (lstlisting.-342) 2073 0 R (lstlisting.-343) 2075 0 R (lstlisting.-344) 2078 0 R (lstlisting.-345) 2080 0 R (lstlisting.-346) 2092 0 R] +/Limits [(lstlisting.-341) (lstlisting.-346)] +>> endobj +4212 0 obj << +/Names [(lstlisting.-347) 2096 0 R (lstlisting.-348) 2098 0 R (lstlisting.-349) 2101 0 R (lstlisting.-35) 1013 0 R (lstlisting.-350) 2106 0 R (lstlisting.-351) 2108 0 R] +/Limits [(lstlisting.-347) (lstlisting.-351)] +>> endobj +4213 0 obj << +/Names [(lstlisting.-352) 2110 0 R (lstlisting.-353) 2112 0 R (lstlisting.-354) 2115 0 R (lstlisting.-355) 2117 0 R (lstlisting.-356) 2119 0 R (lstlisting.-357) 2121 0 R] +/Limits [(lstlisting.-352) (lstlisting.-357)] +>> endobj +4214 0 obj << +/Names [(lstlisting.-358) 2127 0 R (lstlisting.-359) 2129 0 R (lstlisting.-36) 1015 0 R (lstlisting.-360) 2131 0 R (lstlisting.-361) 2133 0 R (lstlisting.-362) 2136 0 R] +/Limits [(lstlisting.-358) (lstlisting.-362)] +>> endobj +4215 0 obj << +/Names [(lstlisting.-363) 2138 0 R (lstlisting.-364) 2140 0 R (lstlisting.-365) 2142 0 R (lstlisting.-366) 2144 0 R (lstlisting.-367) 2146 0 R (lstlisting.-368) 2148 0 R] +/Limits [(lstlisting.-363) (lstlisting.-368)] +>> endobj +4216 0 obj << +/Names [(lstlisting.-369) 2151 0 R (lstlisting.-37) 1017 0 R (lstlisting.-370) 2154 0 R (lstlisting.-371) 2161 0 R (lstlisting.-372) 2163 0 R (lstlisting.-373) 2165 0 R] +/Limits [(lstlisting.-369) (lstlisting.-373)] +>> endobj +4217 0 obj << +/Names [(lstlisting.-374) 2167 0 R (lstlisting.-375) 2169 0 R (lstlisting.-376) 2172 0 R (lstlisting.-377) 2178 0 R (lstlisting.-378) 2180 0 R (lstlisting.-379) 2182 0 R] +/Limits [(lstlisting.-374) (lstlisting.-379)] +>> endobj +4218 0 obj << +/Names [(lstlisting.-38) 1019 0 R (lstlisting.-380) 2186 0 R (lstlisting.-381) 2231 0 R (lstlisting.-382) 2233 0 R (lstlisting.-383) 2235 0 R (lstlisting.-384) 2237 0 R] +/Limits [(lstlisting.-38) (lstlisting.-384)] +>> endobj +4219 0 obj << +/Names [(lstlisting.-385) 2240 0 R (lstlisting.-386) 2250 0 R (lstlisting.-387) 2252 0 R (lstlisting.-388) 2257 0 R (lstlisting.-389) 2262 0 R (lstlisting.-39) 1021 0 R] +/Limits [(lstlisting.-385) (lstlisting.-39)] +>> endobj +4220 0 obj << +/Names [(lstlisting.-390) 2264 0 R (lstlisting.-391) 2266 0 R (lstlisting.-392) 2273 0 R (lstlisting.-393) 2286 0 R (lstlisting.-394) 2288 0 R (lstlisting.-395) 2296 0 R] +/Limits [(lstlisting.-390) (lstlisting.-395)] +>> endobj +4221 0 obj << +/Names [(lstlisting.-396) 2298 0 R (lstlisting.-397) 2300 0 R (lstlisting.-398) 2302 0 R (lstlisting.-399) 2305 0 R (lstlisting.-4) 918 0 R (lstlisting.-40) 1023 0 R] +/Limits [(lstlisting.-396) (lstlisting.-40)] +>> endobj +4222 0 obj << +/Names [(lstlisting.-400) 2307 0 R (lstlisting.-401) 2309 0 R (lstlisting.-402) 2311 0 R (lstlisting.-403) 2314 0 R (lstlisting.-404) 2319 0 R (lstlisting.-405) 2321 0 R] +/Limits [(lstlisting.-400) (lstlisting.-405)] +>> endobj +4223 0 obj << +/Names [(lstlisting.-406) 2323 0 R (lstlisting.-407) 2325 0 R (lstlisting.-408) 2331 0 R (lstlisting.-409) 2333 0 R (lstlisting.-41) 1026 0 R (lstlisting.-410) 2337 0 R] +/Limits [(lstlisting.-406) (lstlisting.-410)] +>> endobj +4224 0 obj << +/Names [(lstlisting.-411) 2344 0 R (lstlisting.-412) 2348 0 R (lstlisting.-413) 2354 0 R (lstlisting.-414) 2356 0 R (lstlisting.-415) 2359 0 R (lstlisting.-416) 2361 0 R] +/Limits [(lstlisting.-411) (lstlisting.-416)] +>> endobj +4225 0 obj << +/Names [(lstlisting.-417) 2363 0 R (lstlisting.-418) 2369 0 R (lstlisting.-419) 2372 0 R (lstlisting.-42) 1029 0 R (lstlisting.-420) 2390 0 R (lstlisting.-421) 2392 0 R] +/Limits [(lstlisting.-417) (lstlisting.-421)] +>> endobj +4226 0 obj << +/Names [(lstlisting.-422) 2395 0 R (lstlisting.-423) 2397 0 R (lstlisting.-424) 2399 0 R (lstlisting.-425) 2402 0 R (lstlisting.-426) 2405 0 R (lstlisting.-427) 2416 0 R] +/Limits [(lstlisting.-422) (lstlisting.-427)] +>> endobj +4227 0 obj << +/Names [(lstlisting.-428) 2418 0 R (lstlisting.-429) 2422 0 R (lstlisting.-43) 1031 0 R (lstlisting.-430) 2425 0 R (lstlisting.-431) 2428 0 R (lstlisting.-432) 2449 0 R] +/Limits [(lstlisting.-428) (lstlisting.-432)] +>> endobj +4228 0 obj << +/Names [(lstlisting.-433) 2455 0 R (lstlisting.-434) 2464 0 R (lstlisting.-435) 2467 0 R (lstlisting.-436) 2471 0 R (lstlisting.-437) 2476 0 R (lstlisting.-438) 2483 0 R] +/Limits [(lstlisting.-433) (lstlisting.-438)] +>> endobj +4229 0 obj << +/Names [(lstlisting.-439) 2486 0 R (lstlisting.-44) 1034 0 R (lstlisting.-440) 2489 0 R (lstlisting.-441) 2491 0 R (lstlisting.-442) 2497 0 R (lstlisting.-443) 2501 0 R] +/Limits [(lstlisting.-439) (lstlisting.-443)] +>> endobj +4230 0 obj << +/Names [(lstlisting.-444) 2507 0 R (lstlisting.-445) 2512 0 R (lstlisting.-446) 2518 0 R (lstlisting.-447) 2523 0 R (lstlisting.-448) 2527 0 R (lstlisting.-449) 2530 0 R] +/Limits [(lstlisting.-444) (lstlisting.-449)] +>> endobj +4231 0 obj << +/Names [(lstlisting.-45) 1037 0 R (lstlisting.-450) 2533 0 R (lstlisting.-451) 2536 0 R (lstlisting.-452) 2538 0 R (lstlisting.-453) 2540 0 R (lstlisting.-454) 2542 0 R] +/Limits [(lstlisting.-45) (lstlisting.-454)] +>> endobj +4232 0 obj << +/Names [(lstlisting.-455) 2550 0 R (lstlisting.-456) 2552 0 R (lstlisting.-457) 2554 0 R (lstlisting.-458) 2558 0 R (lstlisting.-459) 2561 0 R (lstlisting.-46) 1040 0 R] +/Limits [(lstlisting.-455) (lstlisting.-46)] +>> endobj +4233 0 obj << +/Names [(lstlisting.-460) 2565 0 R (lstlisting.-461) 2567 0 R (lstlisting.-462) 2569 0 R (lstlisting.-463) 2572 0 R (lstlisting.-464) 2600 0 R (lstlisting.-465) 2627 0 R] +/Limits [(lstlisting.-460) (lstlisting.-465)] +>> endobj +4234 0 obj << +/Names [(lstlisting.-466) 2629 0 R (lstlisting.-467) 2634 0 R (lstlisting.-468) 2639 0 R (lstlisting.-469) 2641 0 R (lstlisting.-47) 1048 0 R (lstlisting.-470) 2650 0 R] +/Limits [(lstlisting.-466) (lstlisting.-470)] +>> endobj +4235 0 obj << +/Names [(lstlisting.-471) 2654 0 R (lstlisting.-472) 2660 0 R (lstlisting.-473) 2663 0 R (lstlisting.-474) 2665 0 R (lstlisting.-475) 2668 0 R (lstlisting.-476) 2671 0 R] +/Limits [(lstlisting.-471) (lstlisting.-476)] +>> endobj +4236 0 obj << +/Names [(lstlisting.-477) 2675 0 R (lstlisting.-478) 2706 0 R (lstlisting.-479) 2708 0 R (lstlisting.-48) 1050 0 R (lstlisting.-480) 2712 0 R (lstlisting.-481) 2716 0 R] +/Limits [(lstlisting.-477) (lstlisting.-481)] +>> endobj +4237 0 obj << +/Names [(lstlisting.-482) 2720 0 R (lstlisting.-483) 2725 0 R (lstlisting.-484) 2734 0 R (lstlisting.-485) 2736 0 R (lstlisting.-486) 2739 0 R (lstlisting.-487) 2747 0 R] +/Limits [(lstlisting.-482) (lstlisting.-487)] +>> endobj +4238 0 obj << +/Names [(lstlisting.-488) 2750 0 R (lstlisting.-489) 2755 0 R (lstlisting.-49) 1053 0 R (lstlisting.-490) 2757 0 R (lstlisting.-491) 2759 0 R (lstlisting.-492) 2761 0 R] +/Limits [(lstlisting.-488) (lstlisting.-492)] +>> endobj +4239 0 obj << +/Names [(lstlisting.-493) 2763 0 R (lstlisting.-494) 2765 0 R (lstlisting.-495) 2768 0 R (lstlisting.-496) 2813 0 R (lstlisting.-497) 2819 0 R (lstlisting.-498) 2821 0 R] +/Limits [(lstlisting.-493) (lstlisting.-498)] +>> endobj +4240 0 obj << +/Names [(lstlisting.-499) 2823 0 R (lstlisting.-5) 921 0 R (lstlisting.-50) 1055 0 R (lstlisting.-500) 2831 0 R (lstlisting.-501) 2833 0 R (lstlisting.-502) 2839 0 R] +/Limits [(lstlisting.-499) (lstlisting.-502)] +>> endobj +4241 0 obj << +/Names [(lstlisting.-503) 2845 0 R (lstlisting.-504) 2847 0 R (lstlisting.-505) 2849 0 R (lstlisting.-506) 2851 0 R (lstlisting.-507) 2853 0 R (lstlisting.-508) 2855 0 R] +/Limits [(lstlisting.-503) (lstlisting.-508)] +>> endobj +4242 0 obj << +/Names [(lstlisting.-509) 2857 0 R (lstlisting.-51) 1057 0 R (lstlisting.-510) 2863 0 R (lstlisting.-511) 2865 0 R (lstlisting.-512) 2867 0 R (lstlisting.-513) 2869 0 R] +/Limits [(lstlisting.-509) (lstlisting.-513)] +>> endobj +4243 0 obj << +/Names [(lstlisting.-514) 2871 0 R (lstlisting.-515) 2873 0 R (lstlisting.-516) 2876 0 R (lstlisting.-517) 2881 0 R (lstlisting.-518) 2884 0 R (lstlisting.-519) 2891 0 R] +/Limits [(lstlisting.-514) (lstlisting.-519)] +>> endobj +4244 0 obj << +/Names [(lstlisting.-52) 1059 0 R (lstlisting.-520) 2893 0 R (lstlisting.-521) 2895 0 R (lstlisting.-522) 2897 0 R (lstlisting.-523) 2899 0 R (lstlisting.-524) 2902 0 R] +/Limits [(lstlisting.-52) (lstlisting.-524)] +>> endobj +4245 0 obj << +/Names [(lstlisting.-525) 2923 0 R (lstlisting.-526) 2927 0 R (lstlisting.-527) 2934 0 R (lstlisting.-528) 2937 0 R (lstlisting.-529) 2961 0 R (lstlisting.-53) 1061 0 R] +/Limits [(lstlisting.-525) (lstlisting.-53)] +>> endobj +4246 0 obj << +/Names [(lstlisting.-530) 2982 0 R (lstlisting.-531) 2984 0 R (lstlisting.-532) 2990 0 R (lstlisting.-533) 2994 0 R (lstlisting.-534) 2997 0 R (lstlisting.-535) 3000 0 R] +/Limits [(lstlisting.-530) (lstlisting.-535)] +>> endobj +4247 0 obj << +/Names [(lstlisting.-536) 3002 0 R (lstlisting.-537) 3004 0 R (lstlisting.-538) 3006 0 R (lstlisting.-539) 3008 0 R (lstlisting.-54) 1063 0 R (lstlisting.-540) 3010 0 R] +/Limits [(lstlisting.-536) (lstlisting.-540)] +>> endobj +4248 0 obj << +/Names [(lstlisting.-541) 3012 0 R (lstlisting.-542) 3014 0 R (lstlisting.-543) 3016 0 R (lstlisting.-544) 3018 0 R (lstlisting.-545) 3020 0 R (lstlisting.-546) 3028 0 R] +/Limits [(lstlisting.-541) (lstlisting.-546)] +>> endobj +4249 0 obj << +/Names [(lstlisting.-547) 3030 0 R (lstlisting.-548) 3034 0 R (lstlisting.-549) 3037 0 R (lstlisting.-55) 1065 0 R (lstlisting.-550) 3039 0 R (lstlisting.-551) 3044 0 R] +/Limits [(lstlisting.-547) (lstlisting.-551)] +>> endobj +4250 0 obj << +/Names [(lstlisting.-552) 3047 0 R (lstlisting.-553) 3050 0 R (lstlisting.-554) 3055 0 R (lstlisting.-555) 3066 0 R (lstlisting.-556) 3068 0 R (lstlisting.-557) 3071 0 R] +/Limits [(lstlisting.-552) (lstlisting.-557)] +>> endobj +4251 0 obj << +/Names [(lstlisting.-558) 3074 0 R (lstlisting.-559) 3077 0 R (lstlisting.-56) 1067 0 R (lstlisting.-560) 3080 0 R (lstlisting.-561) 3082 0 R (lstlisting.-562) 3085 0 R] +/Limits [(lstlisting.-558) (lstlisting.-562)] +>> endobj +4252 0 obj << +/Names [(lstlisting.-563) 3088 0 R (lstlisting.-564) 3091 0 R (lstlisting.-565) 3093 0 R (lstlisting.-566) 3100 0 R (lstlisting.-567) 3103 0 R (lstlisting.-568) 3106 0 R] +/Limits [(lstlisting.-563) (lstlisting.-568)] +>> endobj +4253 0 obj << +/Names [(lstlisting.-569) 3108 0 R (lstlisting.-57) 1071 0 R (lstlisting.-570) 3113 0 R (lstlisting.-571) 3115 0 R (lstlisting.-572) 3122 0 R (lstlisting.-573) 3128 0 R] +/Limits [(lstlisting.-569) (lstlisting.-573)] +>> endobj +4254 0 obj << +/Names [(lstlisting.-574) 3130 0 R (lstlisting.-575) 3134 0 R (lstlisting.-576) 3137 0 R (lstlisting.-577) 3145 0 R (lstlisting.-578) 3149 0 R (lstlisting.-579) 3151 0 R] +/Limits [(lstlisting.-574) (lstlisting.-579)] +>> endobj +4255 0 obj << +/Names [(lstlisting.-58) 1073 0 R (lstlisting.-580) 3156 0 R (lstlisting.-581) 3159 0 R (lstlisting.-582) 3167 0 R (lstlisting.-583) 3173 0 R (lstlisting.-584) 3177 0 R] +/Limits [(lstlisting.-58) (lstlisting.-584)] +>> endobj +4256 0 obj << +/Names [(lstlisting.-585) 3181 0 R (lstlisting.-586) 3185 0 R (lstlisting.-587) 3194 0 R (lstlisting.-588) 3197 0 R (lstlisting.-589) 3202 0 R (lstlisting.-59) 1080 0 R] +/Limits [(lstlisting.-585) (lstlisting.-59)] +>> endobj +4257 0 obj << +/Names [(lstlisting.-590) 3208 0 R (lstlisting.-591) 3210 0 R (lstlisting.-592) 3212 0 R (lstlisting.-593) 3214 0 R (lstlisting.-594) 3216 0 R (lstlisting.-595) 3218 0 R] +/Limits [(lstlisting.-590) (lstlisting.-595)] +>> endobj +4258 0 obj << +/Names [(lstlisting.-596) 3220 0 R (lstlisting.-597) 3222 0 R (lstlisting.-598) 3224 0 R (lstlisting.-599) 3227 0 R (lstlisting.-6) 926 0 R (lstlisting.-60) 1083 0 R] +/Limits [(lstlisting.-596) (lstlisting.-60)] +>> endobj +4259 0 obj << +/Names [(lstlisting.-600) 3231 0 R (lstlisting.-601) 3234 0 R (lstlisting.-602) 3244 0 R (lstlisting.-603) 3246 0 R (lstlisting.-604) 3253 0 R (lstlisting.-605) 3257 0 R] +/Limits [(lstlisting.-600) (lstlisting.-605)] +>> endobj +4260 0 obj << +/Names [(lstlisting.-606) 3259 0 R (lstlisting.-607) 3262 0 R (lstlisting.-608) 3264 0 R (lstlisting.-609) 3266 0 R (lstlisting.-61) 1085 0 R (lstlisting.-610) 3268 0 R] +/Limits [(lstlisting.-606) (lstlisting.-610)] +>> endobj +4261 0 obj << +/Names [(lstlisting.-611) 3270 0 R (lstlisting.-612) 3272 0 R (lstlisting.-613) 3274 0 R (lstlisting.-614) 3280 0 R (lstlisting.-615) 3282 0 R (lstlisting.-616) 3284 0 R] +/Limits [(lstlisting.-611) (lstlisting.-616)] +>> endobj +4262 0 obj << +/Names [(lstlisting.-617) 3289 0 R (lstlisting.-618) 3292 0 R (lstlisting.-619) 3295 0 R (lstlisting.-62) 1089 0 R (lstlisting.-620) 3298 0 R (lstlisting.-621) 3301 0 R] +/Limits [(lstlisting.-617) (lstlisting.-621)] +>> endobj +4263 0 obj << +/Names [(lstlisting.-622) 3303 0 R (lstlisting.-623) 3305 0 R (lstlisting.-624) 3307 0 R (lstlisting.-625) 3311 0 R (lstlisting.-626) 3313 0 R (lstlisting.-627) 3320 0 R] +/Limits [(lstlisting.-622) (lstlisting.-627)] +>> endobj +4264 0 obj << +/Names [(lstlisting.-628) 3323 0 R (lstlisting.-629) 3330 0 R (lstlisting.-63) 1092 0 R (lstlisting.-630) 3333 0 R (lstlisting.-631) 3336 0 R (lstlisting.-632) 3339 0 R] +/Limits [(lstlisting.-628) (lstlisting.-632)] +>> endobj +4265 0 obj << +/Names [(lstlisting.-633) 3342 0 R (lstlisting.-634) 3348 0 R (lstlisting.-635) 3362 0 R (lstlisting.-636) 3365 0 R (lstlisting.-637) 3372 0 R (lstlisting.-638) 3374 0 R] +/Limits [(lstlisting.-633) (lstlisting.-638)] +>> endobj +4266 0 obj << +/Names [(lstlisting.-639) 3376 0 R (lstlisting.-64) 1095 0 R (lstlisting.-640) 3378 0 R (lstlisting.-641) 3380 0 R (lstlisting.-642) 3382 0 R (lstlisting.-643) 3384 0 R] +/Limits [(lstlisting.-639) (lstlisting.-643)] +>> endobj +4267 0 obj << +/Names [(lstlisting.-644) 3386 0 R (lstlisting.-645) 3388 0 R (lstlisting.-646) 3393 0 R (lstlisting.-647) 3399 0 R (lstlisting.-648) 3401 0 R (lstlisting.-649) 3405 0 R] +/Limits [(lstlisting.-644) (lstlisting.-649)] +>> endobj +4268 0 obj << +/Names [(lstlisting.-65) 1097 0 R (lstlisting.-650) 3408 0 R (lstlisting.-651) 3414 0 R (lstlisting.-652) 3420 0 R (lstlisting.-653) 3426 0 R (lstlisting.-654) 3429 0 R] +/Limits [(lstlisting.-65) (lstlisting.-654)] +>> endobj +4269 0 obj << +/Names [(lstlisting.-655) 3433 0 R (lstlisting.-656) 3440 0 R (lstlisting.-657) 3466 0 R (lstlisting.-658) 3470 0 R (lstlisting.-659) 3473 0 R (lstlisting.-66) 1099 0 R] +/Limits [(lstlisting.-655) (lstlisting.-66)] +>> endobj +4270 0 obj << +/Names [(lstlisting.-660) 3489 0 R (lstlisting.-661) 3497 0 R (lstlisting.-662) 3519 0 R (lstlisting.-663) 3522 0 R (lstlisting.-664) 3529 0 R (lstlisting.-665) 3569 0 R] +/Limits [(lstlisting.-660) (lstlisting.-665)] +>> endobj +4271 0 obj << +/Names [(lstlisting.-666) 3571 0 R (lstlisting.-667) 3574 0 R (lstlisting.-668) 3576 0 R (lstlisting.-669) 3580 0 R (lstlisting.-67) 1101 0 R (lstlisting.-670) 3582 0 R] +/Limits [(lstlisting.-666) (lstlisting.-670)] +>> endobj +4272 0 obj << +/Names [(lstlisting.-671) 3589 0 R (lstlisting.-672) 3591 0 R (lstlisting.-673) 3593 0 R (lstlisting.-674) 3596 0 R (lstlisting.-675) 3598 0 R (lstlisting.-676) 3600 0 R] +/Limits [(lstlisting.-671) (lstlisting.-676)] +>> endobj +4273 0 obj << +/Names [(lstlisting.-677) 3603 0 R (lstlisting.-678) 3607 0 R (lstlisting.-679) 3609 0 R (lstlisting.-68) 1103 0 R (lstlisting.-680) 3615 0 R (lstlisting.-681) 3620 0 R] +/Limits [(lstlisting.-677) (lstlisting.-681)] +>> endobj +4274 0 obj << +/Names [(lstlisting.-682) 3626 0 R (lstlisting.-683) 3628 0 R (lstlisting.-684) 3630 0 R (lstlisting.-685) 3632 0 R (lstlisting.-686) 3634 0 R (lstlisting.-687) 3636 0 R] +/Limits [(lstlisting.-682) (lstlisting.-687)] +>> endobj +4275 0 obj << +/Names [(lstlisting.-688) 3638 0 R (lstlisting.-689) 3641 0 R (lstlisting.-69) 1106 0 R (lstlisting.-690) 3643 0 R (lstlisting.-691) 3645 0 R (lstlisting.-692) 3647 0 R] +/Limits [(lstlisting.-688) (lstlisting.-692)] +>> endobj +4276 0 obj << +/Names [(lstlisting.-693) 3651 0 R (lstlisting.-694) 3654 0 R (lstlisting.-695) 3661 0 R (lstlisting.-696) 3664 0 R (lstlisting.-697) 3668 0 R (lstlisting.-698) 3674 0 R] +/Limits [(lstlisting.-693) (lstlisting.-698)] +>> endobj +4277 0 obj << +/Names [(lstlisting.-699) 3677 0 R (lstlisting.-7) 928 0 R (lstlisting.-70) 1108 0 R (lstlisting.-700) 3682 0 R (lstlisting.-701) 3689 0 R (lstlisting.-702) 3695 0 R] +/Limits [(lstlisting.-699) (lstlisting.-702)] +>> endobj +4278 0 obj << +/Names [(lstlisting.-703) 3698 0 R (lstlisting.-704) 3703 0 R (lstlisting.-705) 3906 0 R (lstlisting.-706) 3984 0 R (lstlisting.-707) 3994 0 R (lstlisting.-708) 3999 0 R] +/Limits [(lstlisting.-703) (lstlisting.-708)] +>> endobj +4279 0 obj << +/Names [(lstlisting.-709) 4025 0 R (lstlisting.-71) 1114 0 R (lstlisting.-710) 4045 0 R (lstlisting.-711) 4047 0 R (lstlisting.-712) 4049 0 R (lstlisting.-713) 4057 0 R] +/Limits [(lstlisting.-709) (lstlisting.-713)] +>> endobj +4280 0 obj << +/Names [(lstlisting.-714) 4065 0 R (lstlisting.-72) 1116 0 R (lstlisting.-73) 1119 0 R (lstlisting.-74) 1121 0 R (lstlisting.-75) 1124 0 R (lstlisting.-76) 1126 0 R] +/Limits [(lstlisting.-714) (lstlisting.-76)] +>> endobj +4281 0 obj << +/Names [(lstlisting.-77) 1130 0 R (lstlisting.-78) 1132 0 R (lstlisting.-79) 1134 0 R (lstlisting.-8) 934 0 R (lstlisting.-80) 1136 0 R (lstlisting.-81) 1138 0 R] +/Limits [(lstlisting.-77) (lstlisting.-81)] +>> endobj +4282 0 obj << +/Names [(lstlisting.-82) 1140 0 R (lstlisting.-83) 1142 0 R (lstlisting.-84) 1149 0 R (lstlisting.-85) 1151 0 R (lstlisting.-86) 1153 0 R (lstlisting.-87) 1155 0 R] +/Limits [(lstlisting.-82) (lstlisting.-87)] +>> endobj +4283 0 obj << +/Names [(lstlisting.-88) 1157 0 R (lstlisting.-89) 1164 0 R (lstlisting.-9) 936 0 R (lstlisting.-90) 1166 0 R (lstlisting.-91) 1170 0 R (lstlisting.-92) 1173 0 R] +/Limits [(lstlisting.-88) (lstlisting.-92)] +>> endobj +4284 0 obj << +/Names [(lstlisting.-93) 1175 0 R (lstlisting.-94) 1177 0 R (lstlisting.-95) 1187 0 R (lstlisting.-96) 1189 0 R (lstlisting.-97) 1191 0 R (lstlisting.-98) 1194 0 R] +/Limits [(lstlisting.-93) (lstlisting.-98)] +>> endobj +4285 0 obj << +/Names [(lstlisting.-99) 1196 0 R (lstnumber.-1.1) 911 0 R (lstnumber.-10.1) 939 0 R (lstnumber.-100.1) 1199 0 R (lstnumber.-101.1) 1201 0 R (lstnumber.-101.2) 1202 0 R] +/Limits [(lstlisting.-99) (lstnumber.-101.2)] +>> endobj +4286 0 obj << +/Names [(lstnumber.-101.3) 1203 0 R (lstnumber.-101.4) 1204 0 R (lstnumber.-101.5) 1205 0 R (lstnumber.-101.6) 1206 0 R (lstnumber.-102.1) 1208 0 R (lstnumber.-102.10) 1217 0 R] +/Limits [(lstnumber.-101.3) (lstnumber.-102.10)] +>> endobj +4287 0 obj << +/Names [(lstnumber.-102.11) 1218 0 R (lstnumber.-102.12) 1219 0 R (lstnumber.-102.13) 1220 0 R (lstnumber.-102.14) 1221 0 R (lstnumber.-102.15) 1222 0 R (lstnumber.-102.16) 1223 0 R] +/Limits [(lstnumber.-102.11) (lstnumber.-102.16)] +>> endobj +4288 0 obj << +/Names [(lstnumber.-102.17) 1224 0 R (lstnumber.-102.18) 1225 0 R (lstnumber.-102.2) 1209 0 R (lstnumber.-102.3) 1210 0 R (lstnumber.-102.4) 1211 0 R (lstnumber.-102.5) 1212 0 R] +/Limits [(lstnumber.-102.17) (lstnumber.-102.5)] +>> endobj +4289 0 obj << +/Names [(lstnumber.-102.6) 1213 0 R (lstnumber.-102.7) 1214 0 R (lstnumber.-102.8) 1215 0 R (lstnumber.-102.9) 1216 0 R (lstnumber.-103.1) 1231 0 R (lstnumber.-104.1) 1233 0 R] +/Limits [(lstnumber.-102.6) (lstnumber.-104.1)] +>> endobj +4290 0 obj << +/Names [(lstnumber.-104.2) 1234 0 R (lstnumber.-104.3) 1235 0 R (lstnumber.-105.1) 1237 0 R (lstnumber.-105.2) 1238 0 R (lstnumber.-105.3) 1239 0 R (lstnumber.-105.4) 1240 0 R] +/Limits [(lstnumber.-104.2) (lstnumber.-105.4)] +>> endobj +4291 0 obj << +/Names [(lstnumber.-105.5) 1241 0 R (lstnumber.-106.1) 1244 0 R (lstnumber.-106.2) 1245 0 R (lstnumber.-106.3) 1246 0 R (lstnumber.-106.4) 1247 0 R (lstnumber.-107.1) 1250 0 R] +/Limits [(lstnumber.-105.5) (lstnumber.-107.1)] +>> endobj +4292 0 obj << +/Names [(lstnumber.-107.2) 1251 0 R (lstnumber.-107.3) 1252 0 R (lstnumber.-108.1) 1254 0 R (lstnumber.-109.1) 1256 0 R (lstnumber.-11.1) 942 0 R (lstnumber.-110.1) 1258 0 R] +/Limits [(lstnumber.-107.2) (lstnumber.-110.1)] +>> endobj +4293 0 obj << +/Names [(lstnumber.-111.1) 1264 0 R (lstnumber.-112.1) 1266 0 R (lstnumber.-113.1) 1269 0 R (lstnumber.-114.1) 1273 0 R (lstnumber.-115.1) 1275 0 R (lstnumber.-116.1) 1277 0 R] +/Limits [(lstnumber.-111.1) (lstnumber.-116.1)] +>> endobj +4294 0 obj << +/Names [(lstnumber.-117.1) 1279 0 R (lstnumber.-118.1) 1282 0 R (lstnumber.-119.1) 1284 0 R (lstnumber.-12.1) 944 0 R (lstnumber.-120.1) 1292 0 R (lstnumber.-121.1) 1295 0 R] +/Limits [(lstnumber.-117.1) (lstnumber.-121.1)] +>> endobj +4295 0 obj << +/Names [(lstnumber.-122.1) 1297 0 R (lstnumber.-123.1) 1299 0 R (lstnumber.-124.1) 1302 0 R (lstnumber.-125.1) 1304 0 R (lstnumber.-126.1) 1307 0 R (lstnumber.-127.1) 1309 0 R] +/Limits [(lstnumber.-122.1) (lstnumber.-127.1)] +>> endobj +4296 0 obj << +/Names [(lstnumber.-128.1) 1312 0 R (lstnumber.-129.1) 1319 0 R (lstnumber.-13.1) 946 0 R (lstnumber.-130.1) 1322 0 R (lstnumber.-131.1) 1326 0 R (lstnumber.-132.1) 1328 0 R] +/Limits [(lstnumber.-128.1) (lstnumber.-132.1)] +>> endobj +4297 0 obj << +/Names [(lstnumber.-133.1) 1331 0 R (lstnumber.-134.1) 1333 0 R (lstnumber.-135.1) 1340 0 R (lstnumber.-136.1) 1342 0 R (lstnumber.-137.1) 1344 0 R (lstnumber.-138.1) 1347 0 R] +/Limits [(lstnumber.-133.1) (lstnumber.-138.1)] +>> endobj +4298 0 obj << +/Names [(lstnumber.-139.1) 1355 0 R (lstnumber.-14.1) 948 0 R (lstnumber.-140.1) 1357 0 R (lstnumber.-141.1) 1363 0 R (lstnumber.-141.2) 1364 0 R (lstnumber.-142.1) 1366 0 R] +/Limits [(lstnumber.-139.1) (lstnumber.-142.1)] +>> endobj +4299 0 obj << +/Names [(lstnumber.-143.1) 1368 0 R (lstnumber.-144.1) 1370 0 R (lstnumber.-145.1) 1372 0 R (lstnumber.-146.1) 1374 0 R (lstnumber.-147.1) 1377 0 R (lstnumber.-148.1) 1379 0 R] +/Limits [(lstnumber.-143.1) (lstnumber.-148.1)] +>> endobj +4300 0 obj << +/Names [(lstnumber.-148.2) 1380 0 R (lstnumber.-148.3) 1381 0 R (lstnumber.-148.4) 1382 0 R (lstnumber.-148.5) 1383 0 R (lstnumber.-148.6) 1384 0 R (lstnumber.-148.7) 1385 0 R] +/Limits [(lstnumber.-148.2) (lstnumber.-148.7)] +>> endobj +4301 0 obj << +/Names [(lstnumber.-148.8) 1386 0 R (lstnumber.-148.9) 1387 0 R (lstnumber.-149.1) 1389 0 R (lstnumber.-149.2) 1390 0 R (lstnumber.-15.1) 950 0 R (lstnumber.-150.1) 1392 0 R] +/Limits [(lstnumber.-148.8) (lstnumber.-150.1)] +>> endobj +4302 0 obj << +/Names [(lstnumber.-150.2) 1393 0 R (lstnumber.-151.1) 1395 0 R (lstnumber.-152.1) 1401 0 R (lstnumber.-153.1) 1403 0 R (lstnumber.-153.2) 1404 0 R (lstnumber.-153.3) 1405 0 R] +/Limits [(lstnumber.-150.2) (lstnumber.-153.3)] +>> endobj +4303 0 obj << +/Names [(lstnumber.-154.1) 1407 0 R (lstnumber.-154.2) 1408 0 R (lstnumber.-154.3) 1409 0 R (lstnumber.-155.1) 1411 0 R (lstnumber.-155.2) 1412 0 R (lstnumber.-156.1) 1414 0 R] +/Limits [(lstnumber.-154.1) (lstnumber.-156.1)] +>> endobj +4304 0 obj << +/Names [(lstnumber.-156.2) 1415 0 R (lstnumber.-156.3) 1416 0 R (lstnumber.-156.4) 1417 0 R (lstnumber.-157.1) 1419 0 R (lstnumber.-157.2) 1420 0 R (lstnumber.-157.3) 1421 0 R] +/Limits [(lstnumber.-156.2) (lstnumber.-157.3)] +>> endobj +4305 0 obj << +/Names [(lstnumber.-158.1) 1423 0 R (lstnumber.-159.1) 1425 0 R (lstnumber.-16.1) 952 0 R (lstnumber.-160.1) 1427 0 R (lstnumber.-161.1) 1429 0 R (lstnumber.-162.1) 1432 0 R] +/Limits [(lstnumber.-158.1) (lstnumber.-162.1)] +>> endobj +4306 0 obj << +/Names [(lstnumber.-163.1) 1439 0 R (lstnumber.-163.2) 1440 0 R (lstnumber.-164.1) 1442 0 R (lstnumber.-165.1) 1444 0 R (lstnumber.-166.1) 1446 0 R (lstnumber.-166.2) 1447 0 R] +/Limits [(lstnumber.-163.1) (lstnumber.-166.2)] +>> endobj +4307 0 obj << +/Names [(lstnumber.-167.1) 1449 0 R (lstnumber.-168.1) 1451 0 R (lstnumber.-169.1) 1453 0 R (lstnumber.-17.1) 955 0 R (lstnumber.-170.1) 1455 0 R (lstnumber.-170.2) 1456 0 R] +/Limits [(lstnumber.-167.1) (lstnumber.-170.2)] +>> endobj +4308 0 obj << +/Names [(lstnumber.-170.3) 1457 0 R (lstnumber.-170.4) 1458 0 R (lstnumber.-170.5) 1459 0 R (lstnumber.-170.6) 1460 0 R (lstnumber.-170.7) 1461 0 R (lstnumber.-170.8) 1462 0 R] +/Limits [(lstnumber.-170.3) (lstnumber.-170.8)] +>> endobj +4309 0 obj << +/Names [(lstnumber.-170.9) 1463 0 R (lstnumber.-171.1) 1465 0 R (lstnumber.-171.2) 1466 0 R (lstnumber.-172.1) 1468 0 R (lstnumber.-172.2) 1469 0 R (lstnumber.-173.1) 1471 0 R] +/Limits [(lstnumber.-170.9) (lstnumber.-173.1)] +>> endobj +4310 0 obj << +/Names [(lstnumber.-174.1) 1477 0 R (lstnumber.-175.1) 1479 0 R (lstnumber.-176.1) 1481 0 R (lstnumber.-176.2) 1482 0 R (lstnumber.-177.1) 1484 0 R (lstnumber.-177.2) 1485 0 R] +/Limits [(lstnumber.-174.1) (lstnumber.-177.2)] +>> endobj +4311 0 obj << +/Names [(lstnumber.-178.1) 1487 0 R (lstnumber.-179.1) 1489 0 R (lstnumber.-18.1) 958 0 R (lstnumber.-180.1) 1491 0 R (lstnumber.-181.1) 1493 0 R (lstnumber.-181.2) 1494 0 R] +/Limits [(lstnumber.-178.1) (lstnumber.-181.2)] +>> endobj +4312 0 obj << +/Names [(lstnumber.-182.1) 1496 0 R (lstnumber.-183.1) 1498 0 R (lstnumber.-183.2) 1499 0 R (lstnumber.-184.1) 1501 0 R (lstnumber.-185.1) 1503 0 R (lstnumber.-186.1) 1505 0 R] +/Limits [(lstnumber.-182.1) (lstnumber.-186.1)] +>> endobj +4313 0 obj << +/Names [(lstnumber.-186.2) 1506 0 R (lstnumber.-187.1) 1512 0 R (lstnumber.-187.2) 1513 0 R (lstnumber.-188.1) 1515 0 R (lstnumber.-188.2) 1516 0 R (lstnumber.-189.1) 1518 0 R] +/Limits [(lstnumber.-186.2) (lstnumber.-189.1)] +>> endobj +4314 0 obj << +/Names [(lstnumber.-19.1) 960 0 R (lstnumber.-190.1) 1520 0 R (lstnumber.-190.2) 1521 0 R (lstnumber.-191.1) 1523 0 R (lstnumber.-191.2) 1524 0 R (lstnumber.-192.1) 1526 0 R] +/Limits [(lstnumber.-19.1) (lstnumber.-192.1)] +>> endobj +4315 0 obj << +/Names [(lstnumber.-192.2) 1527 0 R (lstnumber.-192.3) 1528 0 R (lstnumber.-193.1) 1530 0 R (lstnumber.-194.1) 1532 0 R (lstnumber.-194.2) 1533 0 R (lstnumber.-194.3) 1534 0 R] +/Limits [(lstnumber.-192.2) (lstnumber.-194.3)] +>> endobj +4316 0 obj << +/Names [(lstnumber.-195.1) 1536 0 R (lstnumber.-195.2) 1537 0 R (lstnumber.-195.3) 1538 0 R (lstnumber.-196.1) 1540 0 R (lstnumber.-197.1) 1542 0 R (lstnumber.-198.1) 1544 0 R] +/Limits [(lstnumber.-195.1) (lstnumber.-198.1)] +>> endobj +4317 0 obj << +/Names [(lstnumber.-199.1) 1550 0 R (lstnumber.-2.1) 913 0 R (lstnumber.-20.1) 968 0 R (lstnumber.-20.2) 969 0 R (lstnumber.-200.1) 1552 0 R (lstnumber.-200.2) 1553 0 R] +/Limits [(lstnumber.-199.1) (lstnumber.-200.2)] +>> endobj +4318 0 obj << +/Names [(lstnumber.-200.3) 1554 0 R (lstnumber.-201.1) 1556 0 R (lstnumber.-202.1) 1558 0 R (lstnumber.-203.1) 1560 0 R (lstnumber.-203.2) 1561 0 R (lstnumber.-204.1) 1563 0 R] +/Limits [(lstnumber.-200.3) (lstnumber.-204.1)] +>> endobj +4319 0 obj << +/Names [(lstnumber.-205.1) 1565 0 R (lstnumber.-206.1) 1567 0 R (lstnumber.-206.2) 1568 0 R (lstnumber.-206.3) 1569 0 R (lstnumber.-206.4) 1570 0 R (lstnumber.-206.5) 1571 0 R] +/Limits [(lstnumber.-205.1) (lstnumber.-206.5)] +>> endobj +4320 0 obj << +/Names [(lstnumber.-206.6) 1572 0 R (lstnumber.-207.1) 1574 0 R (lstnumber.-208.1) 1576 0 R (lstnumber.-209.1) 1578 0 R (lstnumber.-209.2) 1579 0 R (lstnumber.-21.1) 972 0 R] +/Limits [(lstnumber.-206.6) (lstnumber.-21.1)] +>> endobj +4321 0 obj << +/Names [(lstnumber.-210.1) 1581 0 R (lstnumber.-211.1) 1583 0 R (lstnumber.-212.1) 1585 0 R (lstnumber.-213.1) 1592 0 R (lstnumber.-213.2) 1593 0 R (lstnumber.-214.1) 1595 0 R] +/Limits [(lstnumber.-210.1) (lstnumber.-214.1)] +>> endobj +4322 0 obj << +/Names [(lstnumber.-214.2) 1596 0 R (lstnumber.-214.3) 1597 0 R (lstnumber.-215.1) 1599 0 R (lstnumber.-215.2) 1600 0 R (lstnumber.-216.1) 1602 0 R (lstnumber.-217.1) 1604 0 R] +/Limits [(lstnumber.-214.2) (lstnumber.-217.1)] +>> endobj +4323 0 obj << +/Names [(lstnumber.-217.2) 1605 0 R (lstnumber.-218.1) 1607 0 R (lstnumber.-219.1) 1609 0 R (lstnumber.-22.1) 975 0 R (lstnumber.-220.1) 1611 0 R (lstnumber.-220.2) 1612 0 R] +/Limits [(lstnumber.-217.2) (lstnumber.-220.2)] +>> endobj +4324 0 obj << +/Names [(lstnumber.-220.3) 1613 0 R (lstnumber.-220.4) 1614 0 R (lstnumber.-221.1) 1616 0 R (lstnumber.-221.2) 1617 0 R (lstnumber.-222.1) 1619 0 R (lstnumber.-223.1) 1621 0 R] +/Limits [(lstnumber.-220.3) (lstnumber.-223.1)] +>> endobj +4325 0 obj << +/Names [(lstnumber.-224.1) 1627 0 R (lstnumber.-225.1) 1629 0 R (lstnumber.-225.2) 1630 0 R (lstnumber.-225.3) 1631 0 R (lstnumber.-226.1) 1633 0 R (lstnumber.-226.2) 1634 0 R] +/Limits [(lstnumber.-224.1) (lstnumber.-226.2)] +>> endobj +4326 0 obj << +/Names [(lstnumber.-226.3) 1635 0 R (lstnumber.-227.1) 1637 0 R (lstnumber.-228.1) 1639 0 R (lstnumber.-228.2) 1640 0 R (lstnumber.-229.1) 1642 0 R (lstnumber.-23.1) 984 0 R] +/Limits [(lstnumber.-226.3) (lstnumber.-23.1)] +>> endobj +4327 0 obj << +/Names [(lstnumber.-230.1) 1644 0 R (lstnumber.-230.2) 1645 0 R (lstnumber.-230.3) 1646 0 R (lstnumber.-230.4) 1647 0 R (lstnumber.-231.1) 1649 0 R (lstnumber.-231.2) 1650 0 R] +/Limits [(lstnumber.-230.1) (lstnumber.-231.2)] +>> endobj +4328 0 obj << +/Names [(lstnumber.-231.3) 1651 0 R (lstnumber.-232.1) 1653 0 R (lstnumber.-232.2) 1654 0 R (lstnumber.-233.1) 1656 0 R (lstnumber.-233.2) 1657 0 R (lstnumber.-233.3) 1658 0 R] +/Limits [(lstnumber.-231.3) (lstnumber.-233.3)] +>> endobj +4329 0 obj << +/Names [(lstnumber.-233.4) 1659 0 R (lstnumber.-234.1) 1661 0 R (lstnumber.-235.1) 1668 0 R (lstnumber.-235.2) 1669 0 R (lstnumber.-236.1) 1671 0 R (lstnumber.-236.2) 1672 0 R] +/Limits [(lstnumber.-233.4) (lstnumber.-236.2)] +>> endobj +4330 0 obj << +/Names [(lstnumber.-236.3) 1673 0 R (lstnumber.-237.1) 1675 0 R (lstnumber.-237.2) 1676 0 R (lstnumber.-238.1) 1678 0 R (lstnumber.-238.2) 1679 0 R (lstnumber.-238.3) 1680 0 R] +/Limits [(lstnumber.-236.3) (lstnumber.-238.3)] +>> endobj +4331 0 obj << +/Names [(lstnumber.-239.1) 1682 0 R (lstnumber.-239.2) 1683 0 R (lstnumber.-239.3) 1684 0 R (lstnumber.-24.1) 986 0 R (lstnumber.-240.1) 1686 0 R (lstnumber.-240.2) 1687 0 R] +/Limits [(lstnumber.-239.1) (lstnumber.-240.2)] +>> endobj +4332 0 obj << +/Names [(lstnumber.-240.3) 1688 0 R (lstnumber.-241.1) 1690 0 R (lstnumber.-242.1) 1692 0 R (lstnumber.-243.1) 1694 0 R (lstnumber.-244.1) 1696 0 R (lstnumber.-245.1) 1698 0 R] +/Limits [(lstnumber.-240.3) (lstnumber.-245.1)] +>> endobj +4333 0 obj << +/Names [(lstnumber.-246.1) 1700 0 R (lstnumber.-246.2) 1701 0 R (lstnumber.-246.3) 1702 0 R (lstnumber.-247.1) 1708 0 R (lstnumber.-247.2) 1709 0 R (lstnumber.-248.1) 1711 0 R] +/Limits [(lstnumber.-246.1) (lstnumber.-248.1)] +>> endobj +4334 0 obj << +/Names [(lstnumber.-249.1) 1713 0 R (lstnumber.-249.2) 1714 0 R (lstnumber.-25.1) 988 0 R (lstnumber.-250.1) 1716 0 R (lstnumber.-251.1) 1718 0 R (lstnumber.-252.1) 1720 0 R] +/Limits [(lstnumber.-249.1) (lstnumber.-252.1)] +>> endobj +4335 0 obj << +/Names [(lstnumber.-253.1) 1722 0 R (lstnumber.-254.1) 1724 0 R (lstnumber.-255.1) 1727 0 R (lstnumber.-255.2) 1728 0 R (lstnumber.-256.1) 1730 0 R (lstnumber.-257.1) 1737 0 R] +/Limits [(lstnumber.-253.1) (lstnumber.-257.1)] +>> endobj +4336 0 obj << +/Names [(lstnumber.-258.1) 1739 0 R (lstnumber.-259.1) 1741 0 R (lstnumber.-26.1) 990 0 R (lstnumber.-260.1) 1743 0 R (lstnumber.-261.1) 1745 0 R (lstnumber.-262.1) 1747 0 R] +/Limits [(lstnumber.-258.1) (lstnumber.-262.1)] +>> endobj +4337 0 obj << +/Names [(lstnumber.-263.1) 1749 0 R (lstnumber.-264.1) 1751 0 R (lstnumber.-265.1) 1753 0 R (lstnumber.-265.2) 1754 0 R (lstnumber.-266.1) 1756 0 R (lstnumber.-267.1) 1758 0 R] +/Limits [(lstnumber.-263.1) (lstnumber.-267.1)] +>> endobj +4338 0 obj << +/Names [(lstnumber.-268.1) 1760 0 R (lstnumber.-269.1) 1762 0 R (lstnumber.-27.1) 992 0 R (lstnumber.-270.1) 1769 0 R (lstnumber.-271.1) 1772 0 R (lstnumber.-272.1) 1774 0 R] +/Limits [(lstnumber.-268.1) (lstnumber.-272.1)] +>> endobj +4339 0 obj << +/Names [(lstnumber.-272.2) 1775 0 R (lstnumber.-272.3) 1776 0 R (lstnumber.-272.4) 1777 0 R (lstnumber.-272.5) 1778 0 R (lstnumber.-272.6) 1779 0 R (lstnumber.-273.1) 1781 0 R] +/Limits [(lstnumber.-272.2) (lstnumber.-273.1)] +>> endobj +4340 0 obj << +/Names [(lstnumber.-273.2) 1782 0 R (lstnumber.-274.1) 1784 0 R (lstnumber.-274.2) 1785 0 R (lstnumber.-274.3) 1786 0 R (lstnumber.-275.1) 1788 0 R (lstnumber.-276.1) 1790 0 R] +/Limits [(lstnumber.-273.2) (lstnumber.-276.1)] +>> endobj +4341 0 obj << +/Names [(lstnumber.-276.2) 1791 0 R (lstnumber.-277.1) 1793 0 R (lstnumber.-277.2) 1794 0 R (lstnumber.-277.3) 1795 0 R (lstnumber.-278.1) 1797 0 R (lstnumber.-279.1) 1799 0 R] +/Limits [(lstnumber.-276.2) (lstnumber.-279.1)] +>> endobj +4342 0 obj << +/Names [(lstnumber.-28.1) 994 0 R (lstnumber.-280.1) 1805 0 R (lstnumber.-281.1) 1807 0 R (lstnumber.-282.1) 1809 0 R (lstnumber.-282.2) 1810 0 R (lstnumber.-283.1) 1812 0 R] +/Limits [(lstnumber.-28.1) (lstnumber.-283.1)] +>> endobj +4343 0 obj << +/Names [(lstnumber.-284.1) 1814 0 R (lstnumber.-285.1) 1816 0 R (lstnumber.-286.1) 1819 0 R (lstnumber.-287.1) 1821 0 R (lstnumber.-288.1) 1823 0 R (lstnumber.-289.1) 1826 0 R] +/Limits [(lstnumber.-284.1) (lstnumber.-289.1)] +>> endobj +4344 0 obj << +/Names [(lstnumber.-289.2) 1827 0 R (lstnumber.-29.1) 996 0 R (lstnumber.-290.1) 1830 0 R (lstnumber.-290.2) 1831 0 R (lstnumber.-291.1) 1846 0 R (lstnumber.-292.1) 1848 0 R] +/Limits [(lstnumber.-289.2) (lstnumber.-292.1)] +>> endobj +4345 0 obj << +/Names [(lstnumber.-293.1) 1850 0 R (lstnumber.-294.1) 1852 0 R (lstnumber.-295.1) 1855 0 R (lstnumber.-296.1) 1857 0 R (lstnumber.-297.1) 1859 0 R (lstnumber.-297.2) 1860 0 R] +/Limits [(lstnumber.-293.1) (lstnumber.-297.2)] +>> endobj +4346 0 obj << +/Names [(lstnumber.-298.1) 1862 0 R (lstnumber.-298.2) 1863 0 R (lstnumber.-299.1) 1865 0 R (lstnumber.-3.1) 916 0 R (lstnumber.-3.2) 917 0 R (lstnumber.-30.1) 998 0 R] +/Limits [(lstnumber.-298.1) (lstnumber.-30.1)] +>> endobj +4347 0 obj << +/Names [(lstnumber.-300.1) 1867 0 R (lstnumber.-300.2) 1868 0 R (lstnumber.-300.3) 1869 0 R (lstnumber.-300.4) 1870 0 R (lstnumber.-301.1) 1877 0 R (lstnumber.-302.1) 1879 0 R] +/Limits [(lstnumber.-300.1) (lstnumber.-302.1)] +>> endobj +4348 0 obj << +/Names [(lstnumber.-302.2) 1880 0 R (lstnumber.-302.3) 1881 0 R (lstnumber.-302.4) 1882 0 R (lstnumber.-302.5) 1883 0 R (lstnumber.-303.1) 1886 0 R (lstnumber.-303.2) 1887 0 R] +/Limits [(lstnumber.-302.2) (lstnumber.-303.2)] +>> endobj +4349 0 obj << +/Names [(lstnumber.-303.3) 1888 0 R (lstnumber.-303.4) 1889 0 R (lstnumber.-303.5) 1890 0 R (lstnumber.-304.1) 1893 0 R (lstnumber.-305.1) 1895 0 R (lstnumber.-305.2) 1896 0 R] +/Limits [(lstnumber.-303.3) (lstnumber.-305.2)] +>> endobj +4350 0 obj << +/Names [(lstnumber.-305.3) 1897 0 R (lstnumber.-305.4) 1898 0 R (lstnumber.-306.1) 1900 0 R (lstnumber.-306.2) 1901 0 R (lstnumber.-306.3) 1902 0 R (lstnumber.-306.4) 1903 0 R] +/Limits [(lstnumber.-305.3) (lstnumber.-306.4)] +>> endobj +4351 0 obj << +/Names [(lstnumber.-306.5) 1904 0 R (lstnumber.-306.6) 1905 0 R (lstnumber.-306.7) 1906 0 R (lstnumber.-306.8) 1907 0 R (lstnumber.-307.1) 1913 0 R (lstnumber.-307.2) 1914 0 R] +/Limits [(lstnumber.-306.5) (lstnumber.-307.2)] +>> endobj +4352 0 obj << +/Names [(lstnumber.-307.3) 1915 0 R (lstnumber.-307.4) 1916 0 R (lstnumber.-307.5) 1917 0 R (lstnumber.-307.6) 1918 0 R (lstnumber.-307.7) 1919 0 R (lstnumber.-307.8) 1920 0 R] +/Limits [(lstnumber.-307.3) (lstnumber.-307.8)] +>> endobj +4353 0 obj << +/Names [(lstnumber.-308.1) 1922 0 R (lstnumber.-309.1) 1924 0 R (lstnumber.-31.1) 1001 0 R (lstnumber.-310.1) 1926 0 R (lstnumber.-311.1) 1928 0 R (lstnumber.-311.2) 1929 0 R] +/Limits [(lstnumber.-308.1) (lstnumber.-311.2)] +>> endobj +4354 0 obj << +/Names [(lstnumber.-311.3) 1930 0 R (lstnumber.-311.4) 1931 0 R (lstnumber.-311.5) 1932 0 R (lstnumber.-311.6) 1933 0 R (lstnumber.-311.7) 1934 0 R (lstnumber.-311.8) 1935 0 R] +/Limits [(lstnumber.-311.3) (lstnumber.-311.8)] +>> endobj +4355 0 obj << +/Names [(lstnumber.-311.9) 1936 0 R (lstnumber.-312.1) 1939 0 R (lstnumber.-312.2) 1940 0 R (lstnumber.-313.1) 1942 0 R (lstnumber.-314.1) 1944 0 R (lstnumber.-315.1) 1946 0 R] +/Limits [(lstnumber.-311.9) (lstnumber.-315.1)] +>> endobj +4356 0 obj << +/Names [(lstnumber.-316.1) 1948 0 R (lstnumber.-316.2) 1949 0 R (lstnumber.-316.3) 1950 0 R (lstnumber.-317.1) 1957 0 R (lstnumber.-318.1) 1959 0 R (lstnumber.-318.2) 1960 0 R] +/Limits [(lstnumber.-316.1) (lstnumber.-318.2)] +>> endobj +4357 0 obj << +/Names [(lstnumber.-319.1) 1962 0 R (lstnumber.-319.2) 1963 0 R (lstnumber.-319.3) 1964 0 R (lstnumber.-319.4) 1965 0 R (lstnumber.-32.1) 1003 0 R (lstnumber.-320.1) 1968 0 R] +/Limits [(lstnumber.-319.1) (lstnumber.-320.1)] +>> endobj +4358 0 obj << +/Names [(lstnumber.-320.2) 1969 0 R (lstnumber.-320.3) 1970 0 R (lstnumber.-320.4) 1971 0 R (lstnumber.-321.1) 1979 0 R (lstnumber.-322.1) 1981 0 R (lstnumber.-323.1) 1983 0 R] +/Limits [(lstnumber.-320.2) (lstnumber.-323.1)] +>> endobj +4359 0 obj << +/Names [(lstnumber.-324.1) 1985 0 R (lstnumber.-325.1) 1987 0 R (lstnumber.-325.2) 1988 0 R (lstnumber.-326.1) 1990 0 R (lstnumber.-327.1) 1992 0 R (lstnumber.-328.1) 1994 0 R] +/Limits [(lstnumber.-324.1) (lstnumber.-328.1)] +>> endobj +4360 0 obj << +/Names [(lstnumber.-328.2) 1995 0 R (lstnumber.-328.3) 1996 0 R (lstnumber.-329.1) 2002 0 R (lstnumber.-329.2) 2003 0 R (lstnumber.-329.3) 2004 0 R (lstnumber.-33.1) 1005 0 R] +/Limits [(lstnumber.-328.2) (lstnumber.-33.1)] +>> endobj +4361 0 obj << +/Names [(lstnumber.-330.1) 2006 0 R (lstnumber.-331.1) 2008 0 R (lstnumber.-332.1) 2010 0 R (lstnumber.-333.1) 2013 0 R (lstnumber.-333.2) 2014 0 R (lstnumber.-333.3) 2015 0 R] +/Limits [(lstnumber.-330.1) (lstnumber.-333.3)] +>> endobj +4362 0 obj << +/Names [(lstnumber.-334.1) 2017 0 R (lstnumber.-335.1) 2019 0 R (lstnumber.-336.1) 2021 0 R (lstnumber.-336.2) 2022 0 R (lstnumber.-336.3) 2023 0 R (lstnumber.-337.1) 2025 0 R] +/Limits [(lstnumber.-334.1) (lstnumber.-337.1)] +>> endobj +4363 0 obj << +/Names [(lstnumber.-337.2) 2026 0 R (lstnumber.-338.1) 2028 0 R (lstnumber.-338.10) 2037 0 R (lstnumber.-338.11) 2038 0 R (lstnumber.-338.12) 2044 0 R (lstnumber.-338.13) 2045 0 R] +/Limits [(lstnumber.-337.2) (lstnumber.-338.13)] +>> endobj +4364 0 obj << +/Names [(lstnumber.-338.14) 2046 0 R (lstnumber.-338.15) 2047 0 R (lstnumber.-338.16) 2048 0 R (lstnumber.-338.17) 2049 0 R (lstnumber.-338.18) 2050 0 R (lstnumber.-338.19) 2051 0 R] +/Limits [(lstnumber.-338.14) (lstnumber.-338.19)] +>> endobj +4365 0 obj << +/Names [(lstnumber.-338.2) 2029 0 R (lstnumber.-338.20) 2052 0 R (lstnumber.-338.21) 2053 0 R (lstnumber.-338.22) 2054 0 R (lstnumber.-338.23) 2055 0 R (lstnumber.-338.24) 2056 0 R] +/Limits [(lstnumber.-338.2) (lstnumber.-338.24)] +>> endobj +4366 0 obj << +/Names [(lstnumber.-338.25) 2057 0 R (lstnumber.-338.26) 2058 0 R (lstnumber.-338.27) 2059 0 R (lstnumber.-338.28) 2060 0 R (lstnumber.-338.29) 2061 0 R (lstnumber.-338.3) 2030 0 R] +/Limits [(lstnumber.-338.25) (lstnumber.-338.3)] +>> endobj +4367 0 obj << +/Names [(lstnumber.-338.30) 2062 0 R (lstnumber.-338.4) 2031 0 R (lstnumber.-338.5) 2032 0 R (lstnumber.-338.6) 2033 0 R (lstnumber.-338.7) 2034 0 R (lstnumber.-338.8) 2035 0 R] +/Limits [(lstnumber.-338.30) (lstnumber.-338.8)] +>> endobj +4368 0 obj << +/Names [(lstnumber.-338.9) 2036 0 R (lstnumber.-339.1) 2064 0 R (lstnumber.-339.2) 2065 0 R (lstnumber.-339.3) 2066 0 R (lstnumber.-339.4) 2067 0 R (lstnumber.-34.1) 1011 0 R] +/Limits [(lstnumber.-338.9) (lstnumber.-34.1)] +>> endobj +4369 0 obj << +/Names [(lstnumber.-34.2) 1012 0 R (lstnumber.-340.1) 2069 0 R (lstnumber.-341.1) 2071 0 R (lstnumber.-341.2) 2072 0 R (lstnumber.-342.1) 2074 0 R (lstnumber.-343.1) 2076 0 R] +/Limits [(lstnumber.-34.2) (lstnumber.-343.1)] +>> endobj +4370 0 obj << +/Names [(lstnumber.-343.2) 2077 0 R (lstnumber.-344.1) 2079 0 R (lstnumber.-345.1) 2081 0 R (lstnumber.-345.2) 2082 0 R (lstnumber.-345.3) 2083 0 R (lstnumber.-345.4) 2084 0 R] +/Limits [(lstnumber.-343.2) (lstnumber.-345.4)] +>> endobj +4371 0 obj << +/Names [(lstnumber.-345.5) 2085 0 R (lstnumber.-345.6) 2086 0 R (lstnumber.-345.7) 2087 0 R (lstnumber.-346.1) 2093 0 R (lstnumber.-346.2) 2094 0 R (lstnumber.-346.3) 2095 0 R] +/Limits [(lstnumber.-345.5) (lstnumber.-346.3)] +>> endobj +4372 0 obj << +/Names [(lstnumber.-347.1) 2097 0 R (lstnumber.-348.1) 2099 0 R (lstnumber.-348.2) 2100 0 R (lstnumber.-349.1) 2102 0 R (lstnumber.-349.2) 2103 0 R (lstnumber.-349.3) 2104 0 R] +/Limits [(lstnumber.-347.1) (lstnumber.-349.3)] +>> endobj +4373 0 obj << +/Names [(lstnumber.-35.1) 1014 0 R (lstnumber.-350.1) 2107 0 R (lstnumber.-351.1) 2109 0 R (lstnumber.-352.1) 2111 0 R (lstnumber.-353.1) 2113 0 R (lstnumber.-353.2) 2114 0 R] +/Limits [(lstnumber.-35.1) (lstnumber.-353.2)] +>> endobj +4374 0 obj << +/Names [(lstnumber.-354.1) 2116 0 R (lstnumber.-355.1) 2118 0 R (lstnumber.-356.1) 2120 0 R (lstnumber.-357.1) 2122 0 R (lstnumber.-358.1) 2128 0 R (lstnumber.-359.1) 2130 0 R] +/Limits [(lstnumber.-354.1) (lstnumber.-359.1)] +>> endobj +4375 0 obj << +/Names [(lstnumber.-36.1) 1016 0 R (lstnumber.-360.1) 2132 0 R (lstnumber.-361.1) 2134 0 R (lstnumber.-361.2) 2135 0 R (lstnumber.-362.1) 2137 0 R (lstnumber.-363.1) 2139 0 R] +/Limits [(lstnumber.-36.1) (lstnumber.-363.1)] +>> endobj +4376 0 obj << +/Names [(lstnumber.-364.1) 2141 0 R (lstnumber.-365.1) 2143 0 R (lstnumber.-366.1) 2145 0 R (lstnumber.-367.1) 2147 0 R (lstnumber.-368.1) 2149 0 R (lstnumber.-368.2) 2150 0 R] +/Limits [(lstnumber.-364.1) (lstnumber.-368.2)] +>> endobj +4377 0 obj << +/Names [(lstnumber.-369.1) 2152 0 R (lstnumber.-369.2) 2153 0 R (lstnumber.-37.1) 1018 0 R (lstnumber.-370.1) 2155 0 R (lstnumber.-370.2) 2156 0 R (lstnumber.-371.1) 2162 0 R] +/Limits [(lstnumber.-369.1) (lstnumber.-371.1)] +>> endobj +4378 0 obj << +/Names [(lstnumber.-372.1) 2164 0 R (lstnumber.-373.1) 2166 0 R (lstnumber.-374.1) 2168 0 R (lstnumber.-375.1) 2170 0 R (lstnumber.-375.2) 2171 0 R (lstnumber.-376.1) 2173 0 R] +/Limits [(lstnumber.-372.1) (lstnumber.-376.1)] +>> endobj +4379 0 obj << +/Names [(lstnumber.-376.2) 2174 0 R (lstnumber.-376.3) 2175 0 R (lstnumber.-376.4) 2176 0 R (lstnumber.-376.5) 2177 0 R (lstnumber.-377.1) 2179 0 R (lstnumber.-378.1) 2181 0 R] +/Limits [(lstnumber.-376.2) (lstnumber.-378.1)] +>> endobj +4380 0 obj << +/Names [(lstnumber.-379.1) 2183 0 R (lstnumber.-379.2) 2184 0 R (lstnumber.-379.3) 2185 0 R (lstnumber.-38.1) 1020 0 R (lstnumber.-380.1) 2187 0 R (lstnumber.-380.10) 2196 0 R] +/Limits [(lstnumber.-379.1) (lstnumber.-380.10)] +>> endobj +4381 0 obj << +/Names [(lstnumber.-380.11) 2197 0 R (lstnumber.-380.12) 2198 0 R (lstnumber.-380.13) 2199 0 R (lstnumber.-380.14) 2204 0 R (lstnumber.-380.15) 2205 0 R (lstnumber.-380.16) 2206 0 R] +/Limits [(lstnumber.-380.11) (lstnumber.-380.16)] +>> endobj +4382 0 obj << +/Names [(lstnumber.-380.17) 2207 0 R (lstnumber.-380.18) 2208 0 R (lstnumber.-380.19) 2209 0 R (lstnumber.-380.2) 2188 0 R (lstnumber.-380.20) 2210 0 R (lstnumber.-380.21) 2211 0 R] +/Limits [(lstnumber.-380.17) (lstnumber.-380.21)] +>> endobj +4383 0 obj << +/Names [(lstnumber.-380.22) 2212 0 R (lstnumber.-380.23) 2213 0 R (lstnumber.-380.24) 2214 0 R (lstnumber.-380.25) 2215 0 R (lstnumber.-380.26) 2216 0 R (lstnumber.-380.27) 2217 0 R] +/Limits [(lstnumber.-380.22) (lstnumber.-380.27)] +>> endobj +4384 0 obj << +/Names [(lstnumber.-380.28) 2218 0 R (lstnumber.-380.29) 2219 0 R (lstnumber.-380.3) 2189 0 R (lstnumber.-380.30) 2220 0 R (lstnumber.-380.31) 2221 0 R (lstnumber.-380.32) 2222 0 R] +/Limits [(lstnumber.-380.28) (lstnumber.-380.32)] +>> endobj +4385 0 obj << +/Names [(lstnumber.-380.33) 2223 0 R (lstnumber.-380.34) 2224 0 R (lstnumber.-380.35) 2225 0 R (lstnumber.-380.36) 2226 0 R (lstnumber.-380.37) 2227 0 R (lstnumber.-380.38) 2228 0 R] +/Limits [(lstnumber.-380.33) (lstnumber.-380.38)] +>> endobj +4386 0 obj << +/Names [(lstnumber.-380.39) 2229 0 R (lstnumber.-380.4) 2190 0 R (lstnumber.-380.5) 2191 0 R (lstnumber.-380.6) 2192 0 R (lstnumber.-380.7) 2193 0 R (lstnumber.-380.8) 2194 0 R] +/Limits [(lstnumber.-380.39) (lstnumber.-380.8)] +>> endobj +4387 0 obj << +/Names [(lstnumber.-380.9) 2195 0 R (lstnumber.-381.1) 2232 0 R (lstnumber.-382.1) 2234 0 R (lstnumber.-383.1) 2236 0 R (lstnumber.-384.1) 2238 0 R (lstnumber.-384.2) 2239 0 R] +/Limits [(lstnumber.-380.9) (lstnumber.-384.2)] +>> endobj +4388 0 obj << +/Names [(lstnumber.-385.1) 2241 0 R (lstnumber.-385.2) 2242 0 R (lstnumber.-385.3) 2243 0 R (lstnumber.-385.4) 2244 0 R (lstnumber.-385.5) 2245 0 R (lstnumber.-386.1) 2251 0 R] +/Limits [(lstnumber.-385.1) (lstnumber.-386.1)] +>> endobj +4389 0 obj << +/Names [(lstnumber.-387.1) 2253 0 R (lstnumber.-387.2) 2254 0 R (lstnumber.-387.3) 2255 0 R (lstnumber.-387.4) 2256 0 R (lstnumber.-388.1) 2258 0 R (lstnumber.-388.2) 2259 0 R] +/Limits [(lstnumber.-387.1) (lstnumber.-388.2)] +>> endobj +4390 0 obj << +/Names [(lstnumber.-388.3) 2260 0 R (lstnumber.-388.4) 2261 0 R (lstnumber.-389.1) 2263 0 R (lstnumber.-39.1) 1022 0 R (lstnumber.-390.1) 2265 0 R (lstnumber.-391.1) 2267 0 R] +/Limits [(lstnumber.-388.3) (lstnumber.-391.1)] +>> endobj +4391 0 obj << +/Names [(lstnumber.-391.2) 2268 0 R (lstnumber.-391.3) 2269 0 R (lstnumber.-391.4) 2270 0 R (lstnumber.-391.5) 2271 0 R (lstnumber.-391.6) 2272 0 R (lstnumber.-392.1) 2274 0 R] +/Limits [(lstnumber.-391.2) (lstnumber.-392.1)] +>> endobj +4392 0 obj << +/Names [(lstnumber.-392.10) 2283 0 R (lstnumber.-392.11) 2284 0 R (lstnumber.-392.12) 2285 0 R (lstnumber.-392.2) 2275 0 R (lstnumber.-392.3) 2276 0 R (lstnumber.-392.4) 2277 0 R] +/Limits [(lstnumber.-392.10) (lstnumber.-392.4)] +>> endobj +4393 0 obj << +/Names [(lstnumber.-392.5) 2278 0 R (lstnumber.-392.6) 2279 0 R (lstnumber.-392.7) 2280 0 R (lstnumber.-392.8) 2281 0 R (lstnumber.-392.9) 2282 0 R (lstnumber.-393.1) 2287 0 R] +/Limits [(lstnumber.-392.5) (lstnumber.-393.1)] +>> endobj +4394 0 obj << +/Names [(lstnumber.-394.1) 2289 0 R (lstnumber.-394.2) 2290 0 R (lstnumber.-395.1) 2297 0 R (lstnumber.-396.1) 2299 0 R (lstnumber.-397.1) 2301 0 R (lstnumber.-398.1) 2303 0 R] +/Limits [(lstnumber.-394.1) (lstnumber.-398.1)] +>> endobj +4395 0 obj << +/Names [(lstnumber.-398.2) 2304 0 R (lstnumber.-399.1) 2306 0 R (lstnumber.-4.1) 919 0 R (lstnumber.-40.1) 1024 0 R (lstnumber.-40.2) 1025 0 R (lstnumber.-400.1) 2308 0 R] +/Limits [(lstnumber.-398.2) (lstnumber.-400.1)] +>> endobj +4396 0 obj << +/Names [(lstnumber.-401.1) 2310 0 R (lstnumber.-402.1) 2312 0 R (lstnumber.-402.2) 2313 0 R (lstnumber.-403.1) 2315 0 R (lstnumber.-403.2) 2316 0 R (lstnumber.-403.3) 2317 0 R] +/Limits [(lstnumber.-401.1) (lstnumber.-403.3)] +>> endobj +4397 0 obj << +/Names [(lstnumber.-403.4) 2318 0 R (lstnumber.-404.1) 2320 0 R (lstnumber.-405.1) 2322 0 R (lstnumber.-406.1) 2324 0 R (lstnumber.-407.1) 2326 0 R (lstnumber.-408.1) 2332 0 R] +/Limits [(lstnumber.-403.4) (lstnumber.-408.1)] +>> endobj +4398 0 obj << +/Names [(lstnumber.-409.1) 2334 0 R (lstnumber.-409.2) 2335 0 R (lstnumber.-409.3) 2336 0 R (lstnumber.-41.1) 1027 0 R (lstnumber.-41.2) 1028 0 R (lstnumber.-410.1) 2338 0 R] +/Limits [(lstnumber.-409.1) (lstnumber.-410.1)] +>> endobj +4399 0 obj << +/Names [(lstnumber.-410.2) 2339 0 R (lstnumber.-410.3) 2340 0 R (lstnumber.-410.4) 2341 0 R (lstnumber.-410.5) 2342 0 R (lstnumber.-410.6) 2343 0 R (lstnumber.-411.1) 2345 0 R] +/Limits [(lstnumber.-410.2) (lstnumber.-411.1)] +>> endobj +4400 0 obj << +/Names [(lstnumber.-411.2) 2346 0 R (lstnumber.-411.3) 2347 0 R (lstnumber.-412.1) 2349 0 R (lstnumber.-412.2) 2350 0 R (lstnumber.-412.3) 2351 0 R (lstnumber.-412.4) 2352 0 R] +/Limits [(lstnumber.-411.2) (lstnumber.-412.4)] +>> endobj +4401 0 obj << +/Names [(lstnumber.-413.1) 2355 0 R (lstnumber.-414.1) 2357 0 R (lstnumber.-414.2) 2358 0 R (lstnumber.-415.1) 2360 0 R (lstnumber.-416.1) 2362 0 R (lstnumber.-417.1) 2364 0 R] +/Limits [(lstnumber.-413.1) (lstnumber.-417.1)] +>> endobj +4402 0 obj << +/Names [(lstnumber.-418.1) 2370 0 R (lstnumber.-418.2) 2371 0 R (lstnumber.-419.1) 2373 0 R (lstnumber.-419.10) 2382 0 R (lstnumber.-419.11) 2383 0 R (lstnumber.-419.12) 2384 0 R] +/Limits [(lstnumber.-418.1) (lstnumber.-419.12)] +>> endobj +4403 0 obj << +/Names [(lstnumber.-419.13) 2385 0 R (lstnumber.-419.14) 2386 0 R (lstnumber.-419.15) 2387 0 R (lstnumber.-419.16) 2388 0 R (lstnumber.-419.17) 2389 0 R (lstnumber.-419.2) 2374 0 R] +/Limits [(lstnumber.-419.13) (lstnumber.-419.2)] +>> endobj +4404 0 obj << +/Names [(lstnumber.-419.3) 2375 0 R (lstnumber.-419.4) 2376 0 R (lstnumber.-419.5) 2377 0 R (lstnumber.-419.6) 2378 0 R (lstnumber.-419.7) 2379 0 R (lstnumber.-419.8) 2380 0 R] +/Limits [(lstnumber.-419.3) (lstnumber.-419.8)] +>> endobj +4405 0 obj << +/Names [(lstnumber.-419.9) 2381 0 R (lstnumber.-42.1) 1030 0 R (lstnumber.-420.1) 2391 0 R (lstnumber.-421.1) 2393 0 R (lstnumber.-421.2) 2394 0 R (lstnumber.-422.1) 2396 0 R] +/Limits [(lstnumber.-419.9) (lstnumber.-422.1)] +>> endobj +4406 0 obj << +/Names [(lstnumber.-423.1) 2398 0 R (lstnumber.-424.1) 2400 0 R (lstnumber.-424.2) 2401 0 R (lstnumber.-425.1) 2403 0 R (lstnumber.-425.2) 2404 0 R (lstnumber.-426.1) 2406 0 R] +/Limits [(lstnumber.-423.1) (lstnumber.-426.1)] +>> endobj +4407 0 obj << +/Names [(lstnumber.-426.2) 2407 0 R (lstnumber.-426.3) 2408 0 R (lstnumber.-426.4) 2409 0 R (lstnumber.-426.5) 2410 0 R (lstnumber.-426.6) 2411 0 R (lstnumber.-427.1) 2417 0 R] +/Limits [(lstnumber.-426.2) (lstnumber.-427.1)] +>> endobj +4408 0 obj << +/Names [(lstnumber.-428.1) 2419 0 R (lstnumber.-428.2) 2420 0 R (lstnumber.-428.3) 2421 0 R (lstnumber.-429.1) 2423 0 R (lstnumber.-429.2) 2424 0 R (lstnumber.-43.1) 1032 0 R] +/Limits [(lstnumber.-428.1) (lstnumber.-43.1)] +>> endobj +4409 0 obj << +/Names [(lstnumber.-43.2) 1033 0 R (lstnumber.-430.1) 2426 0 R (lstnumber.-430.2) 2427 0 R (lstnumber.-431.1) 2429 0 R (lstnumber.-431.10) 2438 0 R (lstnumber.-431.11) 2439 0 R] +/Limits [(lstnumber.-43.2) (lstnumber.-431.11)] +>> endobj +4410 0 obj << +/Names [(lstnumber.-431.12) 2440 0 R (lstnumber.-431.13) 2441 0 R (lstnumber.-431.14) 2442 0 R (lstnumber.-431.15) 2443 0 R (lstnumber.-431.16) 2444 0 R (lstnumber.-431.17) 2445 0 R] +/Limits [(lstnumber.-431.12) (lstnumber.-431.17)] +>> endobj +4411 0 obj << +/Names [(lstnumber.-431.18) 2446 0 R (lstnumber.-431.19) 2447 0 R (lstnumber.-431.2) 2430 0 R (lstnumber.-431.20) 2448 0 R (lstnumber.-431.3) 2431 0 R (lstnumber.-431.4) 2432 0 R] +/Limits [(lstnumber.-431.18) (lstnumber.-431.4)] +>> endobj +4412 0 obj << +/Names [(lstnumber.-431.5) 2433 0 R (lstnumber.-431.6) 2434 0 R (lstnumber.-431.7) 2435 0 R (lstnumber.-431.8) 2436 0 R (lstnumber.-431.9) 2437 0 R (lstnumber.-432.1) 2450 0 R] +/Limits [(lstnumber.-431.5) (lstnumber.-432.1)] +>> endobj +4413 0 obj << +/Names [(lstnumber.-432.2) 2451 0 R (lstnumber.-432.3) 2452 0 R (lstnumber.-432.4) 2453 0 R (lstnumber.-432.5) 2454 0 R (lstnumber.-433.1) 2456 0 R (lstnumber.-433.2) 2457 0 R] +/Limits [(lstnumber.-432.2) (lstnumber.-433.2)] +>> endobj +4414 0 obj << +/Names [(lstnumber.-433.3) 2458 0 R (lstnumber.-433.4) 2459 0 R (lstnumber.-434.1) 2465 0 R (lstnumber.-434.2) 2466 0 R (lstnumber.-435.1) 2468 0 R (lstnumber.-435.2) 2469 0 R] +/Limits [(lstnumber.-433.3) (lstnumber.-435.2)] +>> endobj +4415 0 obj << +/Names [(lstnumber.-435.3) 2470 0 R (lstnumber.-436.1) 2472 0 R (lstnumber.-436.2) 2473 0 R (lstnumber.-436.3) 2474 0 R (lstnumber.-436.4) 2475 0 R (lstnumber.-437.1) 2477 0 R] +/Limits [(lstnumber.-435.3) (lstnumber.-437.1)] +>> endobj +4416 0 obj << +/Names [(lstnumber.-437.2) 2478 0 R (lstnumber.-437.3) 2479 0 R (lstnumber.-437.4) 2480 0 R (lstnumber.-437.5) 2481 0 R (lstnumber.-437.6) 2482 0 R (lstnumber.-438.1) 2484 0 R] +/Limits [(lstnumber.-437.2) (lstnumber.-438.1)] +>> endobj +4417 0 obj << +/Names [(lstnumber.-438.2) 2485 0 R (lstnumber.-439.1) 2487 0 R (lstnumber.-439.2) 2488 0 R (lstnumber.-44.1) 1035 0 R (lstnumber.-44.2) 1036 0 R (lstnumber.-440.1) 2490 0 R] +/Limits [(lstnumber.-438.2) (lstnumber.-440.1)] +>> endobj +4418 0 obj << +/Names [(lstnumber.-441.1) 2492 0 R (lstnumber.-441.2) 2493 0 R (lstnumber.-441.3) 2494 0 R (lstnumber.-441.4) 2495 0 R (lstnumber.-441.5) 2496 0 R (lstnumber.-442.1) 2498 0 R] +/Limits [(lstnumber.-441.1) (lstnumber.-442.1)] +>> endobj +4419 0 obj << +/Names [(lstnumber.-442.2) 2499 0 R (lstnumber.-442.3) 2500 0 R (lstnumber.-443.1) 2502 0 R (lstnumber.-444.1) 2508 0 R (lstnumber.-444.2) 2509 0 R (lstnumber.-444.3) 2510 0 R] +/Limits [(lstnumber.-442.2) (lstnumber.-444.3)] +>> endobj +4420 0 obj << +/Names [(lstnumber.-444.4) 2511 0 R (lstnumber.-445.1) 2513 0 R (lstnumber.-445.2) 2514 0 R (lstnumber.-445.3) 2515 0 R (lstnumber.-445.4) 2516 0 R (lstnumber.-445.5) 2517 0 R] +/Limits [(lstnumber.-444.4) (lstnumber.-445.5)] +>> endobj +4421 0 obj << +/Names [(lstnumber.-446.1) 2519 0 R (lstnumber.-446.2) 2520 0 R (lstnumber.-446.3) 2521 0 R (lstnumber.-446.4) 2522 0 R (lstnumber.-447.1) 2524 0 R (lstnumber.-447.2) 2525 0 R] +/Limits [(lstnumber.-446.1) (lstnumber.-447.2)] +>> endobj +4422 0 obj << +/Names [(lstnumber.-447.3) 2526 0 R (lstnumber.-448.1) 2528 0 R (lstnumber.-448.2) 2529 0 R (lstnumber.-449.1) 2531 0 R (lstnumber.-449.2) 2532 0 R (lstnumber.-45.1) 1038 0 R] +/Limits [(lstnumber.-447.3) (lstnumber.-45.1)] +>> endobj +4423 0 obj << +/Names [(lstnumber.-45.2) 1039 0 R (lstnumber.-450.1) 2534 0 R (lstnumber.-450.2) 2535 0 R (lstnumber.-451.1) 2537 0 R (lstnumber.-452.1) 2539 0 R (lstnumber.-453.1) 2541 0 R] +/Limits [(lstnumber.-45.2) (lstnumber.-453.1)] +>> endobj +4424 0 obj << +/Names [(lstnumber.-454.1) 2543 0 R (lstnumber.-454.2) 2544 0 R (lstnumber.-455.1) 2551 0 R (lstnumber.-456.1) 2553 0 R (lstnumber.-457.1) 2555 0 R (lstnumber.-457.2) 2556 0 R] +/Limits [(lstnumber.-454.1) (lstnumber.-457.2)] +>> endobj +4425 0 obj << +/Names [(lstnumber.-457.3) 2557 0 R (lstnumber.-458.1) 2559 0 R (lstnumber.-458.2) 2560 0 R (lstnumber.-459.1) 2562 0 R (lstnumber.-459.2) 2563 0 R (lstnumber.-459.3) 2564 0 R] +/Limits [(lstnumber.-457.3) (lstnumber.-459.3)] +>> endobj +4426 0 obj << +/Names [(lstnumber.-46.1) 1041 0 R (lstnumber.-46.2) 1042 0 R (lstnumber.-460.1) 2566 0 R (lstnumber.-461.1) 2568 0 R (lstnumber.-462.1) 2570 0 R (lstnumber.-462.2) 2571 0 R] +/Limits [(lstnumber.-46.1) (lstnumber.-462.2)] +>> endobj +4427 0 obj << +/Names [(lstnumber.-463.1) 2573 0 R (lstnumber.-463.10) 2582 0 R (lstnumber.-463.11) 2583 0 R (lstnumber.-463.12) 2584 0 R (lstnumber.-463.13) 2585 0 R (lstnumber.-463.14) 2586 0 R] +/Limits [(lstnumber.-463.1) (lstnumber.-463.14)] +>> endobj +4428 0 obj << +/Names [(lstnumber.-463.15) 2587 0 R (lstnumber.-463.16) 2588 0 R (lstnumber.-463.17) 2589 0 R (lstnumber.-463.18) 2590 0 R (lstnumber.-463.19) 2591 0 R (lstnumber.-463.2) 2574 0 R] +/Limits [(lstnumber.-463.15) (lstnumber.-463.2)] +>> endobj +4429 0 obj << +/Names [(lstnumber.-463.20) 2592 0 R (lstnumber.-463.21) 2593 0 R (lstnumber.-463.22) 2594 0 R (lstnumber.-463.23) 2595 0 R (lstnumber.-463.3) 2575 0 R (lstnumber.-463.4) 2576 0 R] +/Limits [(lstnumber.-463.20) (lstnumber.-463.4)] +>> endobj +4430 0 obj << +/Names [(lstnumber.-463.5) 2577 0 R (lstnumber.-463.6) 2578 0 R (lstnumber.-463.7) 2579 0 R (lstnumber.-463.8) 2580 0 R (lstnumber.-463.9) 2581 0 R (lstnumber.-464.1) 2601 0 R] +/Limits [(lstnumber.-463.5) (lstnumber.-464.1)] +>> endobj +4431 0 obj << +/Names [(lstnumber.-464.10) 2610 0 R (lstnumber.-464.11) 2611 0 R (lstnumber.-464.12) 2612 0 R (lstnumber.-464.13) 2613 0 R (lstnumber.-464.14) 2614 0 R (lstnumber.-464.15) 2615 0 R] +/Limits [(lstnumber.-464.10) (lstnumber.-464.15)] +>> endobj +4432 0 obj << +/Names [(lstnumber.-464.16) 2616 0 R (lstnumber.-464.17) 2617 0 R (lstnumber.-464.18) 2618 0 R (lstnumber.-464.19) 2619 0 R (lstnumber.-464.2) 2602 0 R (lstnumber.-464.20) 2620 0 R] +/Limits [(lstnumber.-464.16) (lstnumber.-464.20)] +>> endobj +4433 0 obj << +/Names [(lstnumber.-464.21) 2621 0 R (lstnumber.-464.22) 2622 0 R (lstnumber.-464.23) 2623 0 R (lstnumber.-464.24) 2624 0 R (lstnumber.-464.25) 2625 0 R (lstnumber.-464.26) 2626 0 R] +/Limits [(lstnumber.-464.21) (lstnumber.-464.26)] +>> endobj +4434 0 obj << +/Names [(lstnumber.-464.3) 2603 0 R (lstnumber.-464.4) 2604 0 R (lstnumber.-464.5) 2605 0 R (lstnumber.-464.6) 2606 0 R (lstnumber.-464.7) 2607 0 R (lstnumber.-464.8) 2608 0 R] +/Limits [(lstnumber.-464.3) (lstnumber.-464.8)] +>> endobj +4435 0 obj << +/Names [(lstnumber.-464.9) 2609 0 R (lstnumber.-465.1) 2628 0 R (lstnumber.-466.1) 2630 0 R (lstnumber.-466.2) 2631 0 R (lstnumber.-466.3) 2632 0 R (lstnumber.-466.4) 2633 0 R] +/Limits [(lstnumber.-464.9) (lstnumber.-466.4)] +>> endobj +4436 0 obj << +/Names [(lstnumber.-467.1) 2635 0 R (lstnumber.-467.2) 2636 0 R (lstnumber.-467.3) 2637 0 R (lstnumber.-467.4) 2638 0 R (lstnumber.-468.1) 2640 0 R (lstnumber.-469.1) 2642 0 R] +/Limits [(lstnumber.-467.1) (lstnumber.-469.1)] +>> endobj +4437 0 obj << +/Names [(lstnumber.-469.2) 2643 0 R (lstnumber.-469.3) 2644 0 R (lstnumber.-469.4) 2645 0 R (lstnumber.-47.1) 1049 0 R (lstnumber.-470.1) 2651 0 R (lstnumber.-470.2) 2652 0 R] +/Limits [(lstnumber.-469.2) (lstnumber.-470.2)] +>> endobj +4438 0 obj << +/Names [(lstnumber.-470.3) 2653 0 R (lstnumber.-471.1) 2655 0 R (lstnumber.-471.2) 2656 0 R (lstnumber.-471.3) 2657 0 R (lstnumber.-471.4) 2658 0 R (lstnumber.-471.5) 2659 0 R] +/Limits [(lstnumber.-470.3) (lstnumber.-471.5)] +>> endobj +4439 0 obj << +/Names [(lstnumber.-472.1) 2661 0 R (lstnumber.-472.2) 2662 0 R (lstnumber.-473.1) 2664 0 R (lstnumber.-474.1) 2666 0 R (lstnumber.-474.2) 2667 0 R (lstnumber.-475.1) 2669 0 R] +/Limits [(lstnumber.-472.1) (lstnumber.-475.1)] +>> endobj +4440 0 obj << +/Names [(lstnumber.-475.2) 2670 0 R (lstnumber.-476.1) 2672 0 R (lstnumber.-476.2) 2673 0 R (lstnumber.-476.3) 2674 0 R (lstnumber.-477.1) 2676 0 R (lstnumber.-477.10) 2685 0 R] +/Limits [(lstnumber.-475.2) (lstnumber.-477.10)] +>> endobj +4441 0 obj << +/Names [(lstnumber.-477.11) 2686 0 R (lstnumber.-477.12) 2687 0 R (lstnumber.-477.13) 2688 0 R (lstnumber.-477.14) 2689 0 R (lstnumber.-477.15) 2690 0 R (lstnumber.-477.16) 2691 0 R] +/Limits [(lstnumber.-477.11) (lstnumber.-477.16)] +>> endobj +4442 0 obj << +/Names [(lstnumber.-477.17) 2692 0 R (lstnumber.-477.18) 2693 0 R (lstnumber.-477.19) 2694 0 R (lstnumber.-477.2) 2677 0 R (lstnumber.-477.20) 2695 0 R (lstnumber.-477.21) 2696 0 R] +/Limits [(lstnumber.-477.17) (lstnumber.-477.21)] +>> endobj +4443 0 obj << +/Names [(lstnumber.-477.22) 2701 0 R (lstnumber.-477.23) 2702 0 R (lstnumber.-477.24) 2703 0 R (lstnumber.-477.25) 2704 0 R (lstnumber.-477.26) 2705 0 R (lstnumber.-477.3) 2678 0 R] +/Limits [(lstnumber.-477.22) (lstnumber.-477.3)] +>> endobj +4444 0 obj << +/Names [(lstnumber.-477.4) 2679 0 R (lstnumber.-477.5) 2680 0 R (lstnumber.-477.6) 2681 0 R (lstnumber.-477.7) 2682 0 R (lstnumber.-477.8) 2683 0 R (lstnumber.-477.9) 2684 0 R] +/Limits [(lstnumber.-477.4) (lstnumber.-477.9)] +>> endobj +4445 0 obj << +/Names [(lstnumber.-478.1) 2707 0 R (lstnumber.-479.1) 2709 0 R (lstnumber.-479.2) 2710 0 R (lstnumber.-479.3) 2711 0 R (lstnumber.-48.1) 1051 0 R (lstnumber.-48.2) 1052 0 R] +/Limits [(lstnumber.-478.1) (lstnumber.-48.2)] +>> endobj +4446 0 obj << +/Names [(lstnumber.-480.1) 2713 0 R (lstnumber.-480.2) 2714 0 R (lstnumber.-480.3) 2715 0 R (lstnumber.-481.1) 2717 0 R (lstnumber.-481.2) 2718 0 R (lstnumber.-481.3) 2719 0 R] +/Limits [(lstnumber.-480.1) (lstnumber.-481.3)] +>> endobj +4447 0 obj << +/Names [(lstnumber.-482.1) 2721 0 R (lstnumber.-482.2) 2722 0 R (lstnumber.-482.3) 2723 0 R (lstnumber.-482.4) 2724 0 R (lstnumber.-483.1) 2726 0 R (lstnumber.-483.2) 2727 0 R] +/Limits [(lstnumber.-482.1) (lstnumber.-483.2)] +>> endobj +4448 0 obj << +/Names [(lstnumber.-483.3) 2728 0 R (lstnumber.-483.4) 2729 0 R (lstnumber.-483.5) 2730 0 R (lstnumber.-483.6) 2731 0 R (lstnumber.-483.7) 2732 0 R (lstnumber.-483.8) 2733 0 R] +/Limits [(lstnumber.-483.3) (lstnumber.-483.8)] +>> endobj +4449 0 obj << +/Names [(lstnumber.-484.1) 2735 0 R (lstnumber.-485.1) 2737 0 R (lstnumber.-485.2) 2738 0 R (lstnumber.-486.1) 2740 0 R (lstnumber.-486.2) 2741 0 R (lstnumber.-486.3) 2742 0 R] +/Limits [(lstnumber.-484.1) (lstnumber.-486.3)] +>> endobj +4450 0 obj << +/Names [(lstnumber.-487.1) 2748 0 R (lstnumber.-487.2) 2749 0 R (lstnumber.-488.1) 2751 0 R (lstnumber.-488.2) 2752 0 R (lstnumber.-488.3) 2753 0 R (lstnumber.-489.1) 2756 0 R] +/Limits [(lstnumber.-487.1) (lstnumber.-489.1)] +>> endobj +4451 0 obj << +/Names [(lstnumber.-49.1) 1054 0 R (lstnumber.-490.1) 2758 0 R (lstnumber.-491.1) 2760 0 R (lstnumber.-492.1) 2762 0 R (lstnumber.-493.1) 2764 0 R (lstnumber.-494.1) 2766 0 R] +/Limits [(lstnumber.-49.1) (lstnumber.-494.1)] +>> endobj +4452 0 obj << +/Names [(lstnumber.-494.2) 2767 0 R (lstnumber.-495.1) 2769 0 R (lstnumber.-495.10) 2778 0 R (lstnumber.-495.11) 2779 0 R (lstnumber.-495.12) 2780 0 R (lstnumber.-495.13) 2785 0 R] +/Limits [(lstnumber.-494.2) (lstnumber.-495.13)] +>> endobj +4453 0 obj << +/Names [(lstnumber.-495.14) 2786 0 R (lstnumber.-495.15) 2787 0 R (lstnumber.-495.16) 2788 0 R (lstnumber.-495.17) 2789 0 R (lstnumber.-495.18) 2790 0 R (lstnumber.-495.19) 2791 0 R] +/Limits [(lstnumber.-495.14) (lstnumber.-495.19)] +>> endobj +4454 0 obj << +/Names [(lstnumber.-495.2) 2770 0 R (lstnumber.-495.20) 2792 0 R (lstnumber.-495.21) 2793 0 R (lstnumber.-495.22) 2794 0 R (lstnumber.-495.23) 2795 0 R (lstnumber.-495.24) 2796 0 R] +/Limits [(lstnumber.-495.2) (lstnumber.-495.24)] +>> endobj +4455 0 obj << +/Names [(lstnumber.-495.25) 2797 0 R (lstnumber.-495.26) 2798 0 R (lstnumber.-495.27) 2799 0 R (lstnumber.-495.28) 2800 0 R (lstnumber.-495.29) 2801 0 R (lstnumber.-495.3) 2771 0 R] +/Limits [(lstnumber.-495.25) (lstnumber.-495.3)] +>> endobj +4456 0 obj << +/Names [(lstnumber.-495.30) 2802 0 R (lstnumber.-495.31) 2803 0 R (lstnumber.-495.32) 2804 0 R (lstnumber.-495.33) 2805 0 R (lstnumber.-495.34) 2806 0 R (lstnumber.-495.35) 2807 0 R] +/Limits [(lstnumber.-495.30) (lstnumber.-495.35)] +>> endobj +4457 0 obj << +/Names [(lstnumber.-495.36) 2808 0 R (lstnumber.-495.37) 2809 0 R (lstnumber.-495.38) 2810 0 R (lstnumber.-495.39) 2811 0 R (lstnumber.-495.4) 2772 0 R (lstnumber.-495.5) 2773 0 R] +/Limits [(lstnumber.-495.36) (lstnumber.-495.5)] +>> endobj +4458 0 obj << +/Names [(lstnumber.-495.6) 2774 0 R (lstnumber.-495.7) 2775 0 R (lstnumber.-495.8) 2776 0 R (lstnumber.-495.9) 2777 0 R (lstnumber.-496.1) 2814 0 R (lstnumber.-496.2) 2815 0 R] +/Limits [(lstnumber.-495.6) (lstnumber.-496.2)] +>> endobj +4459 0 obj << +/Names [(lstnumber.-496.3) 2816 0 R (lstnumber.-496.4) 2817 0 R (lstnumber.-497.1) 2820 0 R (lstnumber.-498.1) 2822 0 R (lstnumber.-499.1) 2824 0 R (lstnumber.-499.2) 2825 0 R] +/Limits [(lstnumber.-496.3) (lstnumber.-499.2)] +>> endobj +4460 0 obj << +/Names [(lstnumber.-5.1) 922 0 R (lstnumber.-50.1) 1056 0 R (lstnumber.-500.1) 2832 0 R (lstnumber.-501.1) 2834 0 R (lstnumber.-501.2) 2835 0 R (lstnumber.-501.3) 2836 0 R] +/Limits [(lstnumber.-5.1) (lstnumber.-501.3)] +>> endobj +4461 0 obj << +/Names [(lstnumber.-501.4) 2837 0 R (lstnumber.-502.1) 2840 0 R (lstnumber.-502.2) 2841 0 R (lstnumber.-502.3) 2842 0 R (lstnumber.-502.4) 2843 0 R (lstnumber.-503.1) 2846 0 R] +/Limits [(lstnumber.-501.4) (lstnumber.-503.1)] +>> endobj +4462 0 obj << +/Names [(lstnumber.-504.1) 2848 0 R (lstnumber.-505.1) 2850 0 R (lstnumber.-506.1) 2852 0 R (lstnumber.-507.1) 2854 0 R (lstnumber.-508.1) 2856 0 R (lstnumber.-509.1) 2858 0 R] +/Limits [(lstnumber.-504.1) (lstnumber.-509.1)] +>> endobj +4463 0 obj << +/Names [(lstnumber.-51.1) 1058 0 R (lstnumber.-510.1) 2864 0 R (lstnumber.-511.1) 2866 0 R (lstnumber.-512.1) 2868 0 R (lstnumber.-513.1) 2870 0 R (lstnumber.-514.1) 2872 0 R] +/Limits [(lstnumber.-51.1) (lstnumber.-514.1)] +>> endobj +4464 0 obj << +/Names [(lstnumber.-515.1) 2874 0 R (lstnumber.-516.1) 2877 0 R (lstnumber.-516.2) 2878 0 R (lstnumber.-516.3) 2879 0 R (lstnumber.-516.4) 2880 0 R (lstnumber.-517.1) 2882 0 R] +/Limits [(lstnumber.-515.1) (lstnumber.-517.1)] +>> endobj +4465 0 obj << +/Names [(lstnumber.-518.1) 2885 0 R (lstnumber.-519.1) 2892 0 R (lstnumber.-52.1) 1060 0 R (lstnumber.-520.1) 2894 0 R (lstnumber.-521.1) 2896 0 R (lstnumber.-522.1) 2898 0 R] +/Limits [(lstnumber.-518.1) (lstnumber.-522.1)] +>> endobj +4466 0 obj << +/Names [(lstnumber.-523.1) 2900 0 R (lstnumber.-523.2) 2901 0 R (lstnumber.-524.1) 2903 0 R (lstnumber.-524.10) 2912 0 R (lstnumber.-524.11) 2913 0 R (lstnumber.-524.12) 2914 0 R] +/Limits [(lstnumber.-523.1) (lstnumber.-524.12)] +>> endobj +4467 0 obj << +/Names [(lstnumber.-524.13) 2915 0 R (lstnumber.-524.14) 2916 0 R (lstnumber.-524.15) 2917 0 R (lstnumber.-524.16) 2918 0 R (lstnumber.-524.17) 2919 0 R (lstnumber.-524.18) 2920 0 R] +/Limits [(lstnumber.-524.13) (lstnumber.-524.18)] +>> endobj +4468 0 obj << +/Names [(lstnumber.-524.19) 2921 0 R (lstnumber.-524.2) 2904 0 R (lstnumber.-524.20) 2922 0 R (lstnumber.-524.3) 2905 0 R (lstnumber.-524.4) 2906 0 R (lstnumber.-524.5) 2907 0 R] +/Limits [(lstnumber.-524.19) (lstnumber.-524.5)] +>> endobj +4469 0 obj << +/Names [(lstnumber.-524.6) 2908 0 R (lstnumber.-524.7) 2909 0 R (lstnumber.-524.8) 2910 0 R (lstnumber.-524.9) 2911 0 R (lstnumber.-525.1) 2924 0 R (lstnumber.-525.2) 2925 0 R] +/Limits [(lstnumber.-524.6) (lstnumber.-525.2)] +>> endobj +4470 0 obj << +/Names [(lstnumber.-525.3) 2926 0 R (lstnumber.-526.1) 2928 0 R (lstnumber.-526.2) 2929 0 R (lstnumber.-527.1) 2935 0 R (lstnumber.-527.2) 2936 0 R (lstnumber.-528.1) 2938 0 R] +/Limits [(lstnumber.-525.3) (lstnumber.-528.1)] +>> endobj +4471 0 obj << +/Names [(lstnumber.-528.10) 2947 0 R (lstnumber.-528.11) 2948 0 R (lstnumber.-528.12) 2949 0 R (lstnumber.-528.13) 2950 0 R (lstnumber.-528.14) 2951 0 R (lstnumber.-528.15) 2952 0 R] +/Limits [(lstnumber.-528.10) (lstnumber.-528.15)] +>> endobj +4472 0 obj << +/Names [(lstnumber.-528.16) 2953 0 R (lstnumber.-528.17) 2954 0 R (lstnumber.-528.18) 2955 0 R (lstnumber.-528.19) 2956 0 R (lstnumber.-528.2) 2939 0 R (lstnumber.-528.20) 2957 0 R] +/Limits [(lstnumber.-528.16) (lstnumber.-528.20)] +>> endobj +4473 0 obj << +/Names [(lstnumber.-528.21) 2958 0 R (lstnumber.-528.22) 2959 0 R (lstnumber.-528.23) 2960 0 R (lstnumber.-528.3) 2940 0 R (lstnumber.-528.4) 2941 0 R (lstnumber.-528.5) 2942 0 R] +/Limits [(lstnumber.-528.21) (lstnumber.-528.5)] +>> endobj +4474 0 obj << +/Names [(lstnumber.-528.6) 2943 0 R (lstnumber.-528.7) 2944 0 R (lstnumber.-528.8) 2945 0 R (lstnumber.-528.9) 2946 0 R (lstnumber.-529.1) 2962 0 R (lstnumber.-529.10) 2971 0 R] +/Limits [(lstnumber.-528.6) (lstnumber.-529.10)] +>> endobj +4475 0 obj << +/Names [(lstnumber.-529.11) 2972 0 R (lstnumber.-529.12) 2973 0 R (lstnumber.-529.13) 2974 0 R (lstnumber.-529.14) 2975 0 R (lstnumber.-529.15) 2976 0 R (lstnumber.-529.16) 2977 0 R] +/Limits [(lstnumber.-529.11) (lstnumber.-529.16)] +>> endobj +4476 0 obj << +/Names [(lstnumber.-529.17) 2978 0 R (lstnumber.-529.18) 2979 0 R (lstnumber.-529.19) 2980 0 R (lstnumber.-529.2) 2963 0 R (lstnumber.-529.20) 2981 0 R (lstnumber.-529.3) 2964 0 R] +/Limits [(lstnumber.-529.17) (lstnumber.-529.3)] +>> endobj +4477 0 obj << +/Names [(lstnumber.-529.4) 2965 0 R (lstnumber.-529.5) 2966 0 R (lstnumber.-529.6) 2967 0 R (lstnumber.-529.7) 2968 0 R (lstnumber.-529.8) 2969 0 R (lstnumber.-529.9) 2970 0 R] +/Limits [(lstnumber.-529.4) (lstnumber.-529.9)] +>> endobj +4478 0 obj << +/Names [(lstnumber.-53.1) 1062 0 R (lstnumber.-530.1) 2983 0 R (lstnumber.-531.1) 2985 0 R (lstnumber.-532.1) 2991 0 R (lstnumber.-532.2) 2992 0 R (lstnumber.-532.3) 2993 0 R] +/Limits [(lstnumber.-53.1) (lstnumber.-532.3)] +>> endobj +4479 0 obj << +/Names [(lstnumber.-533.1) 2995 0 R (lstnumber.-533.2) 2996 0 R (lstnumber.-534.1) 2998 0 R (lstnumber.-534.2) 2999 0 R (lstnumber.-535.1) 3001 0 R (lstnumber.-536.1) 3003 0 R] +/Limits [(lstnumber.-533.1) (lstnumber.-536.1)] +>> endobj +4480 0 obj << +/Names [(lstnumber.-537.1) 3005 0 R (lstnumber.-538.1) 3007 0 R (lstnumber.-539.1) 3009 0 R (lstnumber.-54.1) 1064 0 R (lstnumber.-540.1) 3011 0 R (lstnumber.-541.1) 3013 0 R] +/Limits [(lstnumber.-537.1) (lstnumber.-541.1)] +>> endobj +4481 0 obj << +/Names [(lstnumber.-542.1) 3015 0 R (lstnumber.-543.1) 3017 0 R (lstnumber.-544.1) 3019 0 R (lstnumber.-545.1) 3021 0 R (lstnumber.-545.2) 3022 0 R (lstnumber.-546.1) 3029 0 R] +/Limits [(lstnumber.-542.1) (lstnumber.-546.1)] +>> endobj +4482 0 obj << +/Names [(lstnumber.-547.1) 3031 0 R (lstnumber.-547.2) 3032 0 R (lstnumber.-548.1) 3035 0 R (lstnumber.-548.2) 3036 0 R (lstnumber.-549.1) 3038 0 R (lstnumber.-55.1) 1066 0 R] +/Limits [(lstnumber.-547.1) (lstnumber.-55.1)] +>> endobj +4483 0 obj << +/Names [(lstnumber.-550.1) 3040 0 R (lstnumber.-550.2) 3041 0 R (lstnumber.-550.3) 3042 0 R (lstnumber.-550.4) 3043 0 R (lstnumber.-551.1) 3045 0 R (lstnumber.-551.2) 3046 0 R] +/Limits [(lstnumber.-550.1) (lstnumber.-551.2)] +>> endobj +4484 0 obj << +/Names [(lstnumber.-552.1) 3048 0 R (lstnumber.-552.2) 3049 0 R (lstnumber.-553.1) 3051 0 R (lstnumber.-553.2) 3052 0 R (lstnumber.-553.3) 3053 0 R (lstnumber.-553.4) 3054 0 R] +/Limits [(lstnumber.-552.1) (lstnumber.-553.4)] +>> endobj +4485 0 obj << +/Names [(lstnumber.-554.1) 3056 0 R (lstnumber.-554.2) 3057 0 R (lstnumber.-554.3) 3058 0 R (lstnumber.-554.4) 3059 0 R (lstnumber.-555.1) 3067 0 R (lstnumber.-556.1) 3069 0 R] +/Limits [(lstnumber.-554.1) (lstnumber.-556.1)] +>> endobj +4486 0 obj << +/Names [(lstnumber.-556.2) 3070 0 R (lstnumber.-557.1) 3072 0 R (lstnumber.-558.1) 3075 0 R (lstnumber.-558.2) 3076 0 R (lstnumber.-559.1) 3078 0 R (lstnumber.-559.2) 3079 0 R] +/Limits [(lstnumber.-556.2) (lstnumber.-559.2)] +>> endobj +4487 0 obj << +/Names [(lstnumber.-56.1) 1068 0 R (lstnumber.-56.2) 1069 0 R (lstnumber.-56.3) 1070 0 R (lstnumber.-560.1) 3081 0 R (lstnumber.-561.1) 3083 0 R (lstnumber.-562.1) 3086 0 R] +/Limits [(lstnumber.-56.1) (lstnumber.-562.1)] +>> endobj +4488 0 obj << +/Names [(lstnumber.-562.2) 3087 0 R (lstnumber.-563.1) 3089 0 R (lstnumber.-563.2) 3090 0 R (lstnumber.-564.1) 3092 0 R (lstnumber.-565.1) 3094 0 R (lstnumber.-566.1) 3101 0 R] +/Limits [(lstnumber.-562.2) (lstnumber.-566.1)] +>> endobj +4489 0 obj << +/Names [(lstnumber.-566.2) 3102 0 R (lstnumber.-567.1) 3104 0 R (lstnumber.-567.2) 3105 0 R (lstnumber.-568.1) 3107 0 R (lstnumber.-569.1) 3109 0 R (lstnumber.-57.1) 1072 0 R] +/Limits [(lstnumber.-566.2) (lstnumber.-57.1)] +>> endobj +4490 0 obj << +/Names [(lstnumber.-570.1) 3114 0 R (lstnumber.-571.1) 3116 0 R (lstnumber.-572.1) 3123 0 R (lstnumber.-572.2) 3124 0 R (lstnumber.-572.3) 3125 0 R (lstnumber.-572.4) 3126 0 R] +/Limits [(lstnumber.-570.1) (lstnumber.-572.4)] +>> endobj +4491 0 obj << +/Names [(lstnumber.-572.5) 3127 0 R (lstnumber.-573.1) 3129 0 R (lstnumber.-574.1) 3131 0 R (lstnumber.-574.2) 3132 0 R (lstnumber.-575.1) 3135 0 R (lstnumber.-575.2) 3136 0 R] +/Limits [(lstnumber.-572.5) (lstnumber.-575.2)] +>> endobj +4492 0 obj << +/Names [(lstnumber.-576.1) 3138 0 R (lstnumber.-576.2) 3139 0 R (lstnumber.-576.3) 3140 0 R (lstnumber.-576.4) 3141 0 R (lstnumber.-576.5) 3142 0 R (lstnumber.-576.6) 3143 0 R] +/Limits [(lstnumber.-576.1) (lstnumber.-576.6)] +>> endobj +4493 0 obj << +/Names [(lstnumber.-576.7) 3144 0 R (lstnumber.-577.1) 3146 0 R (lstnumber.-577.2) 3147 0 R (lstnumber.-577.3) 3148 0 R (lstnumber.-578.1) 3150 0 R (lstnumber.-579.1) 3152 0 R] +/Limits [(lstnumber.-576.7) (lstnumber.-579.1)] +>> endobj +4494 0 obj << +/Names [(lstnumber.-579.2) 3153 0 R (lstnumber.-579.3) 3154 0 R (lstnumber.-579.4) 3155 0 R (lstnumber.-58.1) 1074 0 R (lstnumber.-580.1) 3157 0 R (lstnumber.-580.2) 3158 0 R] +/Limits [(lstnumber.-579.2) (lstnumber.-580.2)] +>> endobj +4495 0 obj << +/Names [(lstnumber.-581.1) 3160 0 R (lstnumber.-581.2) 3161 0 R (lstnumber.-582.1) 3168 0 R (lstnumber.-582.2) 3169 0 R (lstnumber.-582.3) 3170 0 R (lstnumber.-582.4) 3171 0 R] +/Limits [(lstnumber.-581.1) (lstnumber.-582.4)] +>> endobj +4496 0 obj << +/Names [(lstnumber.-583.1) 3174 0 R (lstnumber.-583.2) 3175 0 R (lstnumber.-584.1) 3178 0 R (lstnumber.-584.2) 3179 0 R (lstnumber.-585.1) 3182 0 R (lstnumber.-585.2) 3183 0 R] +/Limits [(lstnumber.-583.1) (lstnumber.-585.2)] +>> endobj +4497 0 obj << +/Names [(lstnumber.-586.1) 3186 0 R (lstnumber.-586.2) 3187 0 R (lstnumber.-587.1) 3195 0 R (lstnumber.-587.2) 3196 0 R (lstnumber.-588.1) 3198 0 R (lstnumber.-589.1) 3203 0 R] +/Limits [(lstnumber.-586.1) (lstnumber.-589.1)] +>> endobj +4498 0 obj << +/Names [(lstnumber.-59.1) 1081 0 R (lstnumber.-59.2) 1082 0 R (lstnumber.-590.1) 3209 0 R (lstnumber.-591.1) 3211 0 R (lstnumber.-592.1) 3213 0 R (lstnumber.-593.1) 3215 0 R] +/Limits [(lstnumber.-59.1) (lstnumber.-593.1)] +>> endobj +4499 0 obj << +/Names [(lstnumber.-594.1) 3217 0 R (lstnumber.-595.1) 3219 0 R (lstnumber.-596.1) 3221 0 R (lstnumber.-597.1) 3223 0 R (lstnumber.-598.1) 3225 0 R (lstnumber.-599.1) 3228 0 R] +/Limits [(lstnumber.-594.1) (lstnumber.-599.1)] +>> endobj +4500 0 obj << +/Names [(lstnumber.-599.2) 3229 0 R (lstnumber.-599.3) 3230 0 R (lstnumber.-6.1) 927 0 R (lstnumber.-60.1) 1084 0 R (lstnumber.-600.1) 3232 0 R (lstnumber.-600.2) 3233 0 R] +/Limits [(lstnumber.-599.2) (lstnumber.-600.2)] +>> endobj +4501 0 obj << +/Names [(lstnumber.-601.1) 3235 0 R (lstnumber.-601.2) 3236 0 R (lstnumber.-601.3) 3237 0 R (lstnumber.-601.4) 3238 0 R (lstnumber.-602.1) 3245 0 R (lstnumber.-603.1) 3247 0 R] +/Limits [(lstnumber.-601.1) (lstnumber.-603.1)] +>> endobj +4502 0 obj << +/Names [(lstnumber.-603.2) 3248 0 R (lstnumber.-603.3) 3249 0 R (lstnumber.-603.4) 3250 0 R (lstnumber.-603.5) 3251 0 R (lstnumber.-603.6) 3252 0 R (lstnumber.-604.1) 3254 0 R] +/Limits [(lstnumber.-603.2) (lstnumber.-604.1)] +>> endobj +4503 0 obj << +/Names [(lstnumber.-604.2) 3255 0 R (lstnumber.-605.1) 3258 0 R (lstnumber.-606.1) 3260 0 R (lstnumber.-606.2) 3261 0 R (lstnumber.-607.1) 3263 0 R (lstnumber.-608.1) 3265 0 R] +/Limits [(lstnumber.-604.2) (lstnumber.-608.1)] +>> endobj +4504 0 obj << +/Names [(lstnumber.-609.1) 3267 0 R (lstnumber.-61.1) 1086 0 R (lstnumber.-61.2) 1087 0 R (lstnumber.-61.3) 1088 0 R (lstnumber.-610.1) 3269 0 R (lstnumber.-611.1) 3271 0 R] +/Limits [(lstnumber.-609.1) (lstnumber.-611.1)] +>> endobj +4505 0 obj << +/Names [(lstnumber.-612.1) 3273 0 R (lstnumber.-613.1) 3275 0 R (lstnumber.-614.1) 3281 0 R (lstnumber.-615.1) 3283 0 R (lstnumber.-616.1) 3285 0 R (lstnumber.-616.2) 3286 0 R] +/Limits [(lstnumber.-612.1) (lstnumber.-616.2)] +>> endobj +4506 0 obj << +/Names [(lstnumber.-616.3) 3287 0 R (lstnumber.-616.4) 3288 0 R (lstnumber.-617.1) 3290 0 R (lstnumber.-617.2) 3291 0 R (lstnumber.-618.1) 3293 0 R (lstnumber.-618.2) 3294 0 R] +/Limits [(lstnumber.-616.3) (lstnumber.-618.2)] +>> endobj +4507 0 obj << +/Names [(lstnumber.-619.1) 3296 0 R (lstnumber.-619.2) 3297 0 R (lstnumber.-62.1) 1090 0 R (lstnumber.-62.2) 1091 0 R (lstnumber.-620.1) 3299 0 R (lstnumber.-620.2) 3300 0 R] +/Limits [(lstnumber.-619.1) (lstnumber.-620.2)] +>> endobj +4508 0 obj << +/Names [(lstnumber.-621.1) 3302 0 R (lstnumber.-622.1) 3304 0 R (lstnumber.-623.1) 3306 0 R (lstnumber.-624.1) 3308 0 R (lstnumber.-624.2) 3309 0 R (lstnumber.-624.3) 3310 0 R] +/Limits [(lstnumber.-621.1) (lstnumber.-624.3)] +>> endobj +4509 0 obj << +/Names [(lstnumber.-625.1) 3312 0 R (lstnumber.-626.1) 3314 0 R (lstnumber.-627.1) 3321 0 R (lstnumber.-627.2) 3322 0 R (lstnumber.-628.1) 3324 0 R (lstnumber.-628.2) 3325 0 R] +/Limits [(lstnumber.-625.1) (lstnumber.-628.2)] +>> endobj +4510 0 obj << +/Names [(lstnumber.-628.3) 3326 0 R (lstnumber.-628.4) 3327 0 R (lstnumber.-628.5) 3328 0 R (lstnumber.-628.6) 3329 0 R (lstnumber.-629.1) 3331 0 R (lstnumber.-629.2) 3332 0 R] +/Limits [(lstnumber.-628.3) (lstnumber.-629.2)] +>> endobj +4511 0 obj << +/Names [(lstnumber.-63.1) 1093 0 R (lstnumber.-630.1) 3334 0 R (lstnumber.-630.2) 3335 0 R (lstnumber.-631.1) 3337 0 R (lstnumber.-631.2) 3338 0 R (lstnumber.-632.1) 3340 0 R] +/Limits [(lstnumber.-63.1) (lstnumber.-632.1)] +>> endobj +4512 0 obj << +/Names [(lstnumber.-632.2) 3341 0 R (lstnumber.-633.1) 3343 0 R (lstnumber.-633.2) 3344 0 R (lstnumber.-633.3) 3345 0 R (lstnumber.-633.4) 3346 0 R (lstnumber.-633.5) 3347 0 R] +/Limits [(lstnumber.-632.2) (lstnumber.-633.5)] +>> endobj +4513 0 obj << +/Names [(lstnumber.-634.1) 3349 0 R (lstnumber.-634.2) 3350 0 R (lstnumber.-634.3) 3351 0 R (lstnumber.-634.4) 3352 0 R (lstnumber.-634.5) 3353 0 R (lstnumber.-634.6) 3354 0 R] +/Limits [(lstnumber.-634.1) (lstnumber.-634.6)] +>> endobj +4514 0 obj << +/Names [(lstnumber.-634.7) 3355 0 R (lstnumber.-634.8) 3356 0 R (lstnumber.-634.9) 3357 0 R (lstnumber.-635.1) 3363 0 R (lstnumber.-635.2) 3364 0 R (lstnumber.-636.1) 3366 0 R] +/Limits [(lstnumber.-634.7) (lstnumber.-636.1)] +>> endobj +4515 0 obj << +/Names [(lstnumber.-636.2) 3367 0 R (lstnumber.-636.3) 3368 0 R (lstnumber.-636.4) 3369 0 R (lstnumber.-636.5) 3370 0 R (lstnumber.-636.6) 3371 0 R (lstnumber.-637.1) 3373 0 R] +/Limits [(lstnumber.-636.2) (lstnumber.-637.1)] +>> endobj +4516 0 obj << +/Names [(lstnumber.-638.1) 3375 0 R (lstnumber.-639.1) 3377 0 R (lstnumber.-64.1) 1096 0 R (lstnumber.-640.1) 3379 0 R (lstnumber.-641.1) 3381 0 R (lstnumber.-642.1) 3383 0 R] +/Limits [(lstnumber.-638.1) (lstnumber.-642.1)] +>> endobj +4517 0 obj << +/Names [(lstnumber.-643.1) 3385 0 R (lstnumber.-644.1) 3387 0 R (lstnumber.-645.1) 3389 0 R (lstnumber.-645.2) 3390 0 R (lstnumber.-645.3) 3391 0 R (lstnumber.-645.4) 3392 0 R] +/Limits [(lstnumber.-643.1) (lstnumber.-645.4)] +>> endobj +4518 0 obj << +/Names [(lstnumber.-646.1) 3394 0 R (lstnumber.-647.1) 3400 0 R (lstnumber.-648.1) 3402 0 R (lstnumber.-648.2) 3403 0 R (lstnumber.-648.3) 3404 0 R (lstnumber.-649.1) 3406 0 R] +/Limits [(lstnumber.-646.1) (lstnumber.-649.1)] +>> endobj +4519 0 obj << +/Names [(lstnumber.-649.2) 3407 0 R (lstnumber.-65.1) 1098 0 R (lstnumber.-650.1) 3409 0 R (lstnumber.-650.2) 3410 0 R (lstnumber.-650.3) 3411 0 R (lstnumber.-650.4) 3412 0 R] +/Limits [(lstnumber.-649.2) (lstnumber.-650.4)] +>> endobj +4520 0 obj << +/Names [(lstnumber.-651.1) 3415 0 R (lstnumber.-651.2) 3416 0 R (lstnumber.-651.3) 3417 0 R (lstnumber.-651.4) 3418 0 R (lstnumber.-651.5) 3419 0 R (lstnumber.-652.1) 3421 0 R] +/Limits [(lstnumber.-651.1) (lstnumber.-652.1)] +>> endobj +4521 0 obj << +/Names [(lstnumber.-652.2) 3422 0 R (lstnumber.-652.3) 3423 0 R (lstnumber.-652.4) 3424 0 R (lstnumber.-652.5) 3425 0 R (lstnumber.-653.1) 3427 0 R (lstnumber.-653.2) 3428 0 R] +/Limits [(lstnumber.-652.2) (lstnumber.-653.2)] +>> endobj +4522 0 obj << +/Names [(lstnumber.-654.1) 3430 0 R (lstnumber.-654.2) 3431 0 R (lstnumber.-654.3) 3432 0 R (lstnumber.-655.1) 3434 0 R (lstnumber.-655.2) 3435 0 R (lstnumber.-656.1) 3441 0 R] +/Limits [(lstnumber.-654.1) (lstnumber.-656.1)] +>> endobj +4523 0 obj << +/Names [(lstnumber.-656.10) 3450 0 R (lstnumber.-656.11) 3451 0 R (lstnumber.-656.12) 3452 0 R (lstnumber.-656.13) 3453 0 R (lstnumber.-656.14) 3454 0 R (lstnumber.-656.15) 3455 0 R] +/Limits [(lstnumber.-656.10) (lstnumber.-656.15)] +>> endobj +4524 0 obj << +/Names [(lstnumber.-656.16) 3456 0 R (lstnumber.-656.17) 3457 0 R (lstnumber.-656.18) 3458 0 R (lstnumber.-656.19) 3459 0 R (lstnumber.-656.2) 3442 0 R (lstnumber.-656.20) 3460 0 R] +/Limits [(lstnumber.-656.16) (lstnumber.-656.20)] +>> endobj +4525 0 obj << +/Names [(lstnumber.-656.21) 3461 0 R (lstnumber.-656.22) 3462 0 R (lstnumber.-656.23) 3463 0 R (lstnumber.-656.24) 3464 0 R (lstnumber.-656.25) 3465 0 R (lstnumber.-656.3) 3443 0 R] +/Limits [(lstnumber.-656.21) (lstnumber.-656.3)] +>> endobj +4526 0 obj << +/Names [(lstnumber.-656.4) 3444 0 R (lstnumber.-656.5) 3445 0 R (lstnumber.-656.6) 3446 0 R (lstnumber.-656.7) 3447 0 R (lstnumber.-656.8) 3448 0 R (lstnumber.-656.9) 3449 0 R] +/Limits [(lstnumber.-656.4) (lstnumber.-656.9)] +>> endobj +4527 0 obj << +/Names [(lstnumber.-657.1) 3467 0 R (lstnumber.-657.2) 3468 0 R (lstnumber.-657.3) 3469 0 R (lstnumber.-658.1) 3471 0 R (lstnumber.-658.2) 3472 0 R (lstnumber.-659.1) 3474 0 R] +/Limits [(lstnumber.-657.1) (lstnumber.-659.1)] +>> endobj +4528 0 obj << +/Names [(lstnumber.-659.10) 3483 0 R (lstnumber.-659.11) 3484 0 R (lstnumber.-659.12) 3485 0 R (lstnumber.-659.13) 3486 0 R (lstnumber.-659.14) 3487 0 R (lstnumber.-659.15) 3488 0 R] +/Limits [(lstnumber.-659.10) (lstnumber.-659.15)] +>> endobj +4529 0 obj << +/Names [(lstnumber.-659.2) 3475 0 R (lstnumber.-659.3) 3476 0 R (lstnumber.-659.4) 3477 0 R (lstnumber.-659.5) 3478 0 R (lstnumber.-659.6) 3479 0 R (lstnumber.-659.7) 3480 0 R] +/Limits [(lstnumber.-659.2) (lstnumber.-659.7)] +>> endobj +4530 0 obj << +/Names [(lstnumber.-659.8) 3481 0 R (lstnumber.-659.9) 3482 0 R (lstnumber.-66.1) 1100 0 R (lstnumber.-660.1) 3490 0 R (lstnumber.-660.2) 3491 0 R (lstnumber.-661.1) 3498 0 R] +/Limits [(lstnumber.-659.8) (lstnumber.-661.1)] +>> endobj +4531 0 obj << +/Names [(lstnumber.-661.10) 3507 0 R (lstnumber.-661.11) 3508 0 R (lstnumber.-661.12) 3509 0 R (lstnumber.-661.13) 3510 0 R (lstnumber.-661.14) 3511 0 R (lstnumber.-661.15) 3512 0 R] +/Limits [(lstnumber.-661.10) (lstnumber.-661.15)] +>> endobj +4532 0 obj << +/Names [(lstnumber.-661.16) 3513 0 R (lstnumber.-661.17) 3514 0 R (lstnumber.-661.18) 3515 0 R (lstnumber.-661.19) 3516 0 R (lstnumber.-661.2) 3499 0 R (lstnumber.-661.20) 3517 0 R] +/Limits [(lstnumber.-661.16) (lstnumber.-661.20)] +>> endobj +4533 0 obj << +/Names [(lstnumber.-661.21) 3518 0 R (lstnumber.-661.3) 3500 0 R (lstnumber.-661.4) 3501 0 R (lstnumber.-661.5) 3502 0 R (lstnumber.-661.6) 3503 0 R (lstnumber.-661.7) 3504 0 R] +/Limits [(lstnumber.-661.21) (lstnumber.-661.7)] +>> endobj +4534 0 obj << +/Names [(lstnumber.-661.8) 3505 0 R (lstnumber.-661.9) 3506 0 R (lstnumber.-662.1) 3520 0 R (lstnumber.-662.2) 3521 0 R (lstnumber.-663.1) 3523 0 R (lstnumber.-663.2) 3524 0 R] +/Limits [(lstnumber.-661.8) (lstnumber.-663.2)] +>> endobj +4535 0 obj << +/Names [(lstnumber.-663.3) 3525 0 R (lstnumber.-663.4) 3526 0 R (lstnumber.-663.5) 3527 0 R (lstnumber.-663.6) 3528 0 R (lstnumber.-664.1) 3530 0 R (lstnumber.-664.10) 3539 0 R] +/Limits [(lstnumber.-663.3) (lstnumber.-664.10)] +>> endobj +4536 0 obj << +/Names [(lstnumber.-664.11) 3540 0 R (lstnumber.-664.12) 3541 0 R (lstnumber.-664.13) 3542 0 R (lstnumber.-664.14) 3543 0 R (lstnumber.-664.15) 3544 0 R (lstnumber.-664.16) 3545 0 R] +/Limits [(lstnumber.-664.11) (lstnumber.-664.16)] +>> endobj +4537 0 obj << +/Names [(lstnumber.-664.17) 3546 0 R (lstnumber.-664.18) 3547 0 R (lstnumber.-664.19) 3548 0 R (lstnumber.-664.2) 3531 0 R (lstnumber.-664.20) 3549 0 R (lstnumber.-664.21) 3550 0 R] +/Limits [(lstnumber.-664.17) (lstnumber.-664.21)] +>> endobj +4538 0 obj << +/Names [(lstnumber.-664.22) 3551 0 R (lstnumber.-664.23) 3556 0 R (lstnumber.-664.24) 3557 0 R (lstnumber.-664.25) 3558 0 R (lstnumber.-664.26) 3559 0 R (lstnumber.-664.27) 3560 0 R] +/Limits [(lstnumber.-664.22) (lstnumber.-664.27)] +>> endobj +4539 0 obj << +/Names [(lstnumber.-664.28) 3561 0 R (lstnumber.-664.29) 3562 0 R (lstnumber.-664.3) 3532 0 R (lstnumber.-664.30) 3563 0 R (lstnumber.-664.31) 3564 0 R (lstnumber.-664.32) 3565 0 R] +/Limits [(lstnumber.-664.28) (lstnumber.-664.32)] +>> endobj +4540 0 obj << +/Names [(lstnumber.-664.33) 3566 0 R (lstnumber.-664.34) 3567 0 R (lstnumber.-664.4) 3533 0 R (lstnumber.-664.5) 3534 0 R (lstnumber.-664.6) 3535 0 R (lstnumber.-664.7) 3536 0 R] +/Limits [(lstnumber.-664.33) (lstnumber.-664.7)] +>> endobj +4541 0 obj << +/Names [(lstnumber.-664.8) 3537 0 R (lstnumber.-664.9) 3538 0 R (lstnumber.-665.1) 3570 0 R (lstnumber.-666.1) 3572 0 R (lstnumber.-667.1) 3575 0 R (lstnumber.-668.1) 3577 0 R] +/Limits [(lstnumber.-664.8) (lstnumber.-668.1)] +>> endobj +4542 0 obj << +/Names [(lstnumber.-668.2) 3578 0 R (lstnumber.-669.1) 3581 0 R (lstnumber.-67.1) 1102 0 R (lstnumber.-670.1) 3583 0 R (lstnumber.-671.1) 3590 0 R (lstnumber.-672.1) 3592 0 R] +/Limits [(lstnumber.-668.2) (lstnumber.-672.1)] +>> endobj +4543 0 obj << +/Names [(lstnumber.-673.1) 3594 0 R (lstnumber.-673.2) 3595 0 R (lstnumber.-674.1) 3597 0 R (lstnumber.-675.1) 3599 0 R (lstnumber.-676.1) 3601 0 R (lstnumber.-676.2) 3602 0 R] +/Limits [(lstnumber.-673.1) (lstnumber.-676.2)] +>> endobj +4544 0 obj << +/Names [(lstnumber.-677.1) 3604 0 R (lstnumber.-677.2) 3605 0 R (lstnumber.-677.3) 3606 0 R (lstnumber.-678.1) 3608 0 R (lstnumber.-679.1) 3610 0 R (lstnumber.-679.2) 3611 0 R] +/Limits [(lstnumber.-677.1) (lstnumber.-679.2)] +>> endobj +4545 0 obj << +/Names [(lstnumber.-679.3) 3612 0 R (lstnumber.-679.4) 3613 0 R (lstnumber.-679.5) 3614 0 R (lstnumber.-68.1) 1104 0 R (lstnumber.-68.2) 1105 0 R (lstnumber.-680.1) 3616 0 R] +/Limits [(lstnumber.-679.3) (lstnumber.-680.1)] +>> endobj +4546 0 obj << +/Names [(lstnumber.-680.2) 3617 0 R (lstnumber.-680.3) 3618 0 R (lstnumber.-680.4) 3619 0 R (lstnumber.-681.1) 3621 0 R (lstnumber.-682.1) 3627 0 R (lstnumber.-683.1) 3629 0 R] +/Limits [(lstnumber.-680.2) (lstnumber.-683.1)] +>> endobj +4547 0 obj << +/Names [(lstnumber.-684.1) 3631 0 R (lstnumber.-685.1) 3633 0 R (lstnumber.-686.1) 3635 0 R (lstnumber.-687.1) 3637 0 R (lstnumber.-688.1) 3639 0 R (lstnumber.-688.2) 3640 0 R] +/Limits [(lstnumber.-684.1) (lstnumber.-688.2)] +>> endobj +4548 0 obj << +/Names [(lstnumber.-689.1) 3642 0 R (lstnumber.-69.1) 1107 0 R (lstnumber.-690.1) 3644 0 R (lstnumber.-691.1) 3646 0 R (lstnumber.-692.1) 3648 0 R (lstnumber.-692.2) 3649 0 R] +/Limits [(lstnumber.-689.1) (lstnumber.-692.2)] +>> endobj +4549 0 obj << +/Names [(lstnumber.-692.3) 3650 0 R (lstnumber.-693.1) 3652 0 R (lstnumber.-694.1) 3655 0 R (lstnumber.-695.1) 3662 0 R (lstnumber.-696.1) 3665 0 R (lstnumber.-696.2) 3666 0 R] +/Limits [(lstnumber.-692.3) (lstnumber.-696.2)] +>> endobj +4550 0 obj << +/Names [(lstnumber.-697.1) 3669 0 R (lstnumber.-697.2) 3670 0 R (lstnumber.-697.3) 3671 0 R (lstnumber.-697.4) 3672 0 R (lstnumber.-698.1) 3675 0 R (lstnumber.-698.2) 3676 0 R] +/Limits [(lstnumber.-697.1) (lstnumber.-698.2)] +>> endobj +4551 0 obj << +/Names [(lstnumber.-699.1) 3678 0 R (lstnumber.-699.2) 3679 0 R (lstnumber.-699.3) 3680 0 R (lstnumber.-699.4) 3681 0 R (lstnumber.-7.1) 929 0 R (lstnumber.-70.1) 1109 0 R] +/Limits [(lstnumber.-699.1) (lstnumber.-70.1)] +>> endobj +4552 0 obj << +/Names [(lstnumber.-700.1) 3683 0 R (lstnumber.-701.1) 3690 0 R (lstnumber.-701.2) 3691 0 R (lstnumber.-701.3) 3692 0 R (lstnumber.-701.4) 3693 0 R (lstnumber.-701.5) 3694 0 R] +/Limits [(lstnumber.-700.1) (lstnumber.-701.5)] +>> endobj +4553 0 obj << +/Names [(lstnumber.-702.1) 3696 0 R (lstnumber.-702.2) 3697 0 R (lstnumber.-703.1) 3699 0 R (lstnumber.-703.2) 3700 0 R (lstnumber.-703.3) 3701 0 R (lstnumber.-703.4) 3702 0 R] +/Limits [(lstnumber.-702.1) (lstnumber.-703.4)] +>> endobj +4554 0 obj << +/Names [(lstnumber.-704.1) 3704 0 R (lstnumber.-705.1) 3907 0 R (lstnumber.-705.10) 3922 0 R (lstnumber.-705.11) 3924 0 R (lstnumber.-705.12) 3925 0 R (lstnumber.-705.13) 3926 0 R] +/Limits [(lstnumber.-704.1) (lstnumber.-705.13)] +>> endobj +4555 0 obj << +/Names [(lstnumber.-705.14) 3927 0 R (lstnumber.-705.15) 3928 0 R (lstnumber.-705.16) 3929 0 R (lstnumber.-705.17) 3930 0 R (lstnumber.-705.18) 3931 0 R (lstnumber.-705.19) 3932 0 R] +/Limits [(lstnumber.-705.14) (lstnumber.-705.19)] +>> endobj +4556 0 obj << +/Names [(lstnumber.-705.2) 3908 0 R (lstnumber.-705.20) 3933 0 R (lstnumber.-705.21) 3934 0 R (lstnumber.-705.3) 3909 0 R (lstnumber.-705.4) 3912 0 R (lstnumber.-705.5) 3913 0 R] +/Limits [(lstnumber.-705.2) (lstnumber.-705.5)] +>> endobj +4557 0 obj << +/Names [(lstnumber.-705.6) 3914 0 R (lstnumber.-705.7) 3916 0 R (lstnumber.-705.8) 3918 0 R (lstnumber.-705.9) 3920 0 R (lstnumber.-706.1) 3985 0 R (lstnumber.-706.2) 3986 0 R] +/Limits [(lstnumber.-705.6) (lstnumber.-706.2)] +>> endobj +4558 0 obj << +/Names [(lstnumber.-706.3) 3987 0 R (lstnumber.-706.4) 3988 0 R (lstnumber.-706.5) 3989 0 R (lstnumber.-706.6) 3990 0 R (lstnumber.-706.7) 3991 0 R (lstnumber.-706.8) 3992 0 R] +/Limits [(lstnumber.-706.3) (lstnumber.-706.8)] +>> endobj +4559 0 obj << +/Names [(lstnumber.-706.9) 3993 0 R (lstnumber.-707.1) 3995 0 R (lstnumber.-707.2) 3996 0 R (lstnumber.-707.3) 3997 0 R (lstnumber.-707.4) 3998 0 R (lstnumber.-708.1) 4000 0 R] +/Limits [(lstnumber.-706.9) (lstnumber.-708.1)] +>> endobj +4560 0 obj << +/Names [(lstnumber.-708.10) 4009 0 R (lstnumber.-708.2) 4001 0 R (lstnumber.-708.3) 4002 0 R (lstnumber.-708.4) 4003 0 R (lstnumber.-708.5) 4004 0 R (lstnumber.-708.6) 4005 0 R] +/Limits [(lstnumber.-708.10) (lstnumber.-708.6)] +>> endobj +4561 0 obj << +/Names [(lstnumber.-708.7) 4006 0 R (lstnumber.-708.8) 4007 0 R (lstnumber.-708.9) 4008 0 R (lstnumber.-709.1) 4026 0 R (lstnumber.-709.2) 4027 0 R (lstnumber.-709.3) 4028 0 R] +/Limits [(lstnumber.-708.7) (lstnumber.-709.3)] +>> endobj +4562 0 obj << +/Names [(lstnumber.-709.4) 4029 0 R (lstnumber.-709.5) 4030 0 R (lstnumber.-709.6) 4031 0 R (lstnumber.-709.7) 4032 0 R (lstnumber.-71.1) 1115 0 R (lstnumber.-710.1) 4046 0 R] +/Limits [(lstnumber.-709.4) (lstnumber.-710.1)] +>> endobj +4563 0 obj << +/Names [(lstnumber.-711.1) 4048 0 R (lstnumber.-712.1) 4050 0 R (lstnumber.-712.2) 4051 0 R (lstnumber.-712.3) 4052 0 R (lstnumber.-712.4) 4053 0 R (lstnumber.-712.5) 4054 0 R] +/Limits [(lstnumber.-711.1) (lstnumber.-712.5)] +>> endobj +4564 0 obj << +/Names [(lstnumber.-712.6) 4055 0 R (lstnumber.-712.7) 4056 0 R (lstnumber.-713.1) 4058 0 R (lstnumber.-713.2) 4059 0 R (lstnumber.-713.3) 4060 0 R (lstnumber.-713.4) 4061 0 R] +/Limits [(lstnumber.-712.6) (lstnumber.-713.4)] +>> endobj +4565 0 obj << +/Names [(lstnumber.-713.5) 4062 0 R (lstnumber.-713.6) 4063 0 R (lstnumber.-713.7) 4064 0 R (lstnumber.-714.1) 4066 0 R (lstnumber.-714.2) 4067 0 R (lstnumber.-714.3) 4068 0 R] +/Limits [(lstnumber.-713.5) (lstnumber.-714.3)] +>> endobj +4566 0 obj << +/Names [(lstnumber.-714.4) 4069 0 R (lstnumber.-714.5) 4070 0 R (lstnumber.-72.1) 1117 0 R (lstnumber.-72.2) 1118 0 R (lstnumber.-73.1) 1120 0 R (lstnumber.-74.1) 1122 0 R] +/Limits [(lstnumber.-714.4) (lstnumber.-74.1)] +>> endobj +4567 0 obj << +/Names [(lstnumber.-74.2) 1123 0 R (lstnumber.-75.1) 1125 0 R (lstnumber.-76.1) 1127 0 R (lstnumber.-76.2) 1128 0 R (lstnumber.-76.3) 1129 0 R (lstnumber.-77.1) 1131 0 R] +/Limits [(lstnumber.-74.2) (lstnumber.-77.1)] +>> endobj +4568 0 obj << +/Names [(lstnumber.-78.1) 1133 0 R (lstnumber.-79.1) 1135 0 R (lstnumber.-8.1) 935 0 R (lstnumber.-80.1) 1137 0 R (lstnumber.-81.1) 1139 0 R (lstnumber.-82.1) 1141 0 R] +/Limits [(lstnumber.-78.1) (lstnumber.-82.1)] +>> endobj +4569 0 obj << +/Names [(lstnumber.-83.1) 1143 0 R (lstnumber.-83.2) 1144 0 R (lstnumber.-84.1) 1150 0 R (lstnumber.-85.1) 1152 0 R (lstnumber.-86.1) 1154 0 R (lstnumber.-87.1) 1156 0 R] +/Limits [(lstnumber.-83.1) (lstnumber.-87.1)] +>> endobj +4570 0 obj << +/Names [(lstnumber.-88.1) 1158 0 R (lstnumber.-88.2) 1159 0 R (lstnumber.-88.3) 1160 0 R (lstnumber.-88.4) 1161 0 R (lstnumber.-88.5) 1162 0 R (lstnumber.-88.6) 1163 0 R] +/Limits [(lstnumber.-88.1) (lstnumber.-88.6)] +>> endobj +4571 0 obj << +/Names [(lstnumber.-89.1) 1165 0 R (lstnumber.-9.1) 937 0 R (lstnumber.-90.1) 1167 0 R (lstnumber.-90.2) 1168 0 R (lstnumber.-91.1) 1171 0 R (lstnumber.-91.2) 1172 0 R] +/Limits [(lstnumber.-89.1) (lstnumber.-91.2)] +>> endobj +4572 0 obj << +/Names [(lstnumber.-92.1) 1174 0 R (lstnumber.-93.1) 1176 0 R (lstnumber.-94.1) 1178 0 R (lstnumber.-94.2) 1179 0 R (lstnumber.-94.3) 1180 0 R (lstnumber.-94.4) 1181 0 R] +/Limits [(lstnumber.-92.1) (lstnumber.-94.4)] +>> endobj +4573 0 obj << +/Names [(lstnumber.-95.1) 1188 0 R (lstnumber.-96.1) 1190 0 R (lstnumber.-97.1) 1192 0 R (lstnumber.-97.2) 1193 0 R (lstnumber.-98.1) 1195 0 R (lstnumber.-99.1) 1197 0 R] +/Limits [(lstnumber.-95.1) (lstnumber.-99.1)] +>> endobj +4574 0 obj << +/Names [(page.1) 906 0 R (page.10) 1185 0 R (page.100) 3839 0 R (page.101) 3843 0 R (page.102) 3847 0 R (page.103) 3853 0 R] +/Limits [(page.1) (page.103)] +>> endobj +4575 0 obj << +/Names [(page.104) 3857 0 R (page.105) 3861 0 R (page.106) 3865 0 R (page.107) 3872 0 R (page.108) 3879 0 R (page.109) 3887 0 R] +/Limits [(page.104) (page.109)] +>> endobj +4576 0 obj << +/Names [(page.11) 1229 0 R (page.110) 3894 0 R (page.111) 3898 0 R (page.112) 3905 0 R (page.113) 3938 0 R (page.114) 3954 0 R] +/Limits [(page.11) (page.114)] +>> endobj +4577 0 obj << +/Names [(page.115) 3959 0 R (page.116) 3967 0 R (page.117) 3977 0 R (page.118) 4013 0 R (page.119) 4019 0 R (page.12) 1262 0 R] +/Limits [(page.115) (page.12)] +>> endobj +4578 0 obj << +/Names [(page.120) 4023 0 R (page.121) 4038 0 R (page.122) 4043 0 R (page.123) 4074 0 R (page.124) 4079 0 R (page.125) 4086 0 R] +/Limits [(page.120) (page.125)] +>> endobj +4579 0 obj << +/Names [(page.126) 4091 0 R (page.13) 1289 0 R (page.14) 1316 0 R (page.15) 1337 0 R (page.16) 1352 0 R (page.17) 1361 0 R] +/Limits [(page.126) (page.17)] +>> endobj +4580 0 obj << +/Names [(page.18) 1399 0 R (page.19) 1437 0 R (page.2) 933 0 R (page.20) 1475 0 R (page.21) 1510 0 R (page.22) 1548 0 R] +/Limits [(page.18) (page.22)] +>> endobj +4581 0 obj << +/Names [(page.23) 1589 0 R (page.24) 1625 0 R (page.25) 1666 0 R (page.26) 1706 0 R (page.27) 1734 0 R (page.28) 1766 0 R] +/Limits [(page.23) (page.28)] +>> endobj +4582 0 obj << +/Names [(page.29) 1803 0 R (page.3) 964 0 R (page.30) 1835 0 R (page.31) 1843 0 R (page.32) 1874 0 R (page.33) 1911 0 R] +/Limits [(page.29) (page.33)] +>> endobj +4583 0 obj << +/Names [(page.34) 1954 0 R (page.35) 1976 0 R (page.36) 2000 0 R (page.37) 2043 0 R (page.38) 2091 0 R (page.39) 2126 0 R] +/Limits [(page.34) (page.39)] +>> endobj +4584 0 obj << +/Names [(page.4) 981 0 R (page.40) 2160 0 R (page.41) 2203 0 R (page.42) 2249 0 R (page.43) 2295 0 R (page.44) 2330 0 R] +/Limits [(page.4) (page.44)] +>> endobj +4585 0 obj << +/Names [(page.45) 2368 0 R (page.46) 2415 0 R (page.47) 2463 0 R (page.48) 2506 0 R (page.49) 2549 0 R (page.5) 1009 0 R] +/Limits [(page.45) (page.5)] +>> endobj +4586 0 obj << +/Names [(page.50) 2599 0 R (page.51) 2649 0 R (page.52) 2700 0 R (page.53) 2746 0 R (page.54) 2784 0 R (page.55) 2830 0 R] +/Limits [(page.50) (page.55)] +>> endobj +4587 0 obj << +/Names [(page.56) 2862 0 R (page.57) 2889 0 R (page.58) 2933 0 R (page.59) 2989 0 R (page.6) 1046 0 R (page.60) 3026 0 R] +/Limits [(page.56) (page.60)] +>> endobj +4588 0 obj << +/Names [(page.61) 3064 0 R (page.62) 3098 0 R (page.63) 3121 0 R (page.64) 3165 0 R (page.65) 3192 0 R (page.66) 3207 0 R] +/Limits [(page.61) (page.66)] +>> endobj +4589 0 obj << +/Names [(page.67) 3243 0 R (page.68) 3279 0 R (page.69) 3318 0 R (page.7) 1079 0 R (page.70) 3361 0 R (page.71) 3398 0 R] +/Limits [(page.67) (page.71)] +>> endobj +4590 0 obj << +/Names [(page.72) 3439 0 R (page.73) 3496 0 R (page.74) 3555 0 R (page.75) 3587 0 R (page.76) 3625 0 R (page.77) 3659 0 R] +/Limits [(page.72) (page.77)] +>> endobj +4591 0 obj << +/Names [(page.78) 3687 0 R (page.79) 3712 0 R (page.8) 1113 0 R (page.80) 3718 0 R (page.81) 3724 0 R (page.82) 3730 0 R] +/Limits [(page.78) (page.82)] +>> endobj +4592 0 obj << +/Names [(page.83) 3736 0 R (page.84) 3744 0 R (page.85) 3756 0 R (page.86) 3763 0 R (page.87) 3769 0 R (page.88) 3773 0 R] +/Limits [(page.83) (page.88)] +>> endobj +4593 0 obj << +/Names [(page.89) 3780 0 R (page.9) 1148 0 R (page.90) 3788 0 R (page.91) 3797 0 R (page.92) 3802 0 R (page.93) 3808 0 R] +/Limits [(page.89) (page.93)] +>> endobj +4594 0 obj << +/Names [(page.94) 3812 0 R (page.95) 3816 0 R (page.96) 3820 0 R (page.97) 3826 0 R (page.98) 3830 0 R (page.99) 3834 0 R] +/Limits [(page.94) (page.99)] +>> endobj +4595 0 obj << +/Names [(page.i) 690 0 R (page.ii) 738 0 R (page.iii) 777 0 R (page.iv) 818 0 R (page.v) 861 0 R (page.vi) 888 0 R] +/Limits [(page.i) (page.vi)] +>> endobj +4596 0 obj << +/Names [(page.vii) 900 0 R (releasenotes) 694 0 R (rnV1.76.0_Common) 999 0 R (rnV1.76.0_Eclipse) 1242 0 R (rnV1.76.0_Epub) 1186 0 R (rnV1.76.0_FO) 1047 0 R] +/Limits [(page.vii) (rnV1.76.0_FO)] +>> endobj +4597 0 obj << +/Names [(rnV1.76.0_Gentext) 982 0 R (rnV1.76.0_HTML) 1094 0 R (rnV1.76.0_Manpages) 1169 0 R (rnV1.76.0_Params) 1248 0 R (rnV1.76.0_XSL-Xalan) 1267 0 R (rnV1.76.1_FO) 966 0 R] +/Limits [(rnV1.76.0_Gentext) (rnV1.76.1_FO)] +>> endobj +4598 0 obj << +/Names [(rnV1.76.1_HTML) 970 0 R (rnV1.76.1_Params) 973 0 R (rn_V1.75.0_Common) 1375 0 R (rn_V1.75.0_Epub) 1735 0 R (rn_V1.75.0_FO) 1430 0 R (rn_V1.75.0_Gentext) 1353 0 R] +/Limits [(rnV1.76.1_HTML) (rn_V1.75.0_Gentext)] +>> endobj +4599 0 obj << +/Names [(rn_V1.75.0_HTML) 1590 0 R (rn_V1.75.0_HTMLHelp) 1767 0 R (rn_V1.75.0_Highlighting) 1817 0 R (rn_V1.75.0_Manpages) 1725 0 R (rn_V1.75.0_Params) 1770 0 R (rn_V1.75.0_XSL-Saxon) 1824 0 R] +/Limits [(rn_V1.75.0_HTML) (rn_V1.75.0_XSL-Saxon)] +>> endobj +4600 0 obj << +/Names [(rn_V1.75.0_XSL-Xalan) 1828 0 R (rn_V1.75.1) 1323 0 R (rn_V1.75.1_Epub) 1338 0 R (rn_V1.75.1_FO) 1324 0 R (rn_V1.75.1_HTML) 1329 0 R (rn_V1.75.1_Params) 1345 0 R] +/Limits [(rn_V1.75.0_XSL-Xalan) (rn_V1.75.1_Params)] +>> endobj +4601 0 obj << +/Names [(rn_V1.75.2) 1270 0 R (rn_V1.75.2_Common) 1280 0 R (rn_V1.75.2_Epub) 1305 0 R (rn_V1.75.2_FO) 1290 0 R (rn_V1.75.2_Gentext) 1271 0 R (rn_V1.75.2_HTML) 1293 0 R] +/Limits [(rn_V1.75.2) (rn_V1.75.2_HTML)] +>> endobj +4602 0 obj << +/Names [(rn_V1.75.2_Manpages) 1300 0 R (rn_V1.75.2_Profiling) 1310 0 R (rn_V1.75.2_XSL-Saxon) 1317 0 R (rn_V1.75.2_XSL-Xalan) 1320 0 R (section.1) 2 0 R (section.10) 242 0 R] +/Limits [(rn_V1.75.2_Manpages) (section.10)] +>> endobj +4603 0 obj << +/Names [(section.11) 322 0 R (section.12) 326 0 R (section.13) 366 0 R (section.14) 430 0 R (section.15) 462 0 R (section.16) 494 0 R] +/Limits [(section.11) (section.16)] +>> endobj +4604 0 obj << +/Names [(section.17) 530 0 R (section.18) 550 0 R (section.19) 590 0 R (section.2) 34 0 R (section.20) 594 0 R (section.21) 618 0 R] +/Limits [(section.17) (section.21)] +>> endobj +4605 0 obj << +/Names [(section.22) 622 0 R (section.23) 626 0 R (section.24) 630 0 R (section.25) 634 0 R (section.26) 638 0 R (section.27) 642 0 R] +/Limits [(section.22) (section.27)] +>> endobj +4606 0 obj << +/Names [(section.28) 646 0 R (section.29) 650 0 R (section.3) 50 0 R (section.30) 654 0 R (section.31) 658 0 R (section.32) 662 0 R] +/Limits [(section.28) (section.32)] +>> endobj +4607 0 obj << +/Names [(section.33) 666 0 R (section.34) 670 0 R (section.35) 674 0 R (section.36) 678 0 R (section.37) 682 0 R (section.4) 90 0 R] +/Limits [(section.33) (section.4)] +>> endobj +4608 0 obj << +/Names [(section.5) 130 0 R (section.6) 150 0 R (section.7) 198 0 R (section.8) 202 0 R (section.9) 206 0 R (subsection.1.1) 6 0 R] +/Limits [(section.5) (subsection.1.1)] +>> endobj +4609 0 obj << +/Names [(subsection.1.2) 10 0 R (subsection.1.3) 14 0 R (subsection.1.4) 18 0 R (subsection.1.5) 22 0 R (subsection.1.6) 26 0 R (subsection.1.7) 30 0 R] +/Limits [(subsection.1.2) (subsection.1.7)] +>> endobj +4610 0 obj << +/Names [(subsection.10.1) 246 0 R (subsection.10.10) 282 0 R (subsection.10.11) 286 0 R (subsection.10.12) 290 0 R (subsection.10.13) 294 0 R (subsection.10.14) 298 0 R] +/Limits [(subsection.10.1) (subsection.10.14)] +>> endobj +4611 0 obj << +/Names [(subsection.10.15) 302 0 R (subsection.10.16) 306 0 R (subsection.10.17) 310 0 R (subsection.10.18) 314 0 R (subsection.10.19) 318 0 R (subsection.10.2) 250 0 R] +/Limits [(subsection.10.15) (subsection.10.2)] +>> endobj +4612 0 obj << +/Names [(subsection.10.3) 254 0 R (subsection.10.4) 258 0 R (subsection.10.5) 262 0 R (subsection.10.6) 266 0 R (subsection.10.7) 270 0 R (subsection.10.8) 274 0 R] +/Limits [(subsection.10.3) (subsection.10.8)] +>> endobj +4613 0 obj << +/Names [(subsection.10.9) 278 0 R (subsection.12.1) 330 0 R (subsection.12.2) 334 0 R (subsection.12.3) 338 0 R (subsection.12.4) 342 0 R (subsection.12.5) 346 0 R] +/Limits [(subsection.10.9) (subsection.12.5)] +>> endobj +4614 0 obj << +/Names [(subsection.12.6) 350 0 R (subsection.12.7) 354 0 R (subsection.12.8) 358 0 R (subsection.12.9) 362 0 R (subsection.13.1) 370 0 R (subsection.13.10) 406 0 R] +/Limits [(subsection.12.6) (subsection.13.10)] +>> endobj +4615 0 obj << +/Names [(subsection.13.11) 410 0 R (subsection.13.12) 414 0 R (subsection.13.13) 418 0 R (subsection.13.14) 422 0 R (subsection.13.15) 426 0 R (subsection.13.2) 374 0 R] +/Limits [(subsection.13.11) (subsection.13.2)] +>> endobj +4616 0 obj << +/Names [(subsection.13.3) 378 0 R (subsection.13.4) 382 0 R (subsection.13.5) 386 0 R (subsection.13.6) 390 0 R (subsection.13.7) 394 0 R (subsection.13.8) 398 0 R] +/Limits [(subsection.13.3) (subsection.13.8)] +>> endobj +4617 0 obj << +/Names [(subsection.13.9) 402 0 R (subsection.14.1) 434 0 R (subsection.14.2) 438 0 R (subsection.14.3) 442 0 R (subsection.14.4) 446 0 R (subsection.14.5) 450 0 R] +/Limits [(subsection.13.9) (subsection.14.5)] +>> endobj +4618 0 obj << +/Names [(subsection.14.6) 454 0 R (subsection.14.7) 458 0 R (subsection.15.1) 466 0 R (subsection.15.2) 470 0 R (subsection.15.3) 474 0 R (subsection.15.4) 478 0 R] +/Limits [(subsection.14.6) (subsection.15.4)] +>> endobj +4619 0 obj << +/Names [(subsection.15.5) 482 0 R (subsection.15.6) 486 0 R (subsection.15.7) 490 0 R (subsection.16.1) 498 0 R (subsection.16.2) 502 0 R (subsection.16.3) 506 0 R] +/Limits [(subsection.15.5) (subsection.16.3)] +>> endobj +4620 0 obj << +/Names [(subsection.16.4) 510 0 R (subsection.16.5) 514 0 R (subsection.16.6) 518 0 R (subsection.16.7) 522 0 R (subsection.16.8) 526 0 R (subsection.17.1) 534 0 R] +/Limits [(subsection.16.4) (subsection.17.1)] +>> endobj +4621 0 obj << +/Names [(subsection.17.2) 538 0 R (subsection.17.3) 542 0 R (subsection.17.4) 546 0 R (subsection.18.1) 554 0 R (subsection.18.2) 558 0 R (subsection.18.3) 562 0 R] +/Limits [(subsection.17.2) (subsection.18.3)] +>> endobj +4622 0 obj << +/Names [(subsection.18.4) 566 0 R (subsection.18.5) 570 0 R (subsection.18.6) 574 0 R (subsection.18.7) 578 0 R (subsection.18.8) 582 0 R (subsection.18.9) 586 0 R] +/Limits [(subsection.18.4) (subsection.18.9)] +>> endobj +4623 0 obj << +/Names [(subsection.2.1) 38 0 R (subsection.2.2) 42 0 R (subsection.2.3) 46 0 R (subsection.20.1) 598 0 R (subsection.20.2) 602 0 R (subsection.20.3) 606 0 R] +/Limits [(subsection.2.1) (subsection.20.3)] +>> endobj +4624 0 obj << +/Names [(subsection.20.4) 610 0 R (subsection.20.5) 614 0 R (subsection.3.1) 54 0 R (subsection.3.2) 58 0 R (subsection.3.3) 62 0 R (subsection.3.4) 66 0 R] +/Limits [(subsection.20.4) (subsection.3.4)] +>> endobj +4625 0 obj << +/Names [(subsection.3.5) 70 0 R (subsection.3.6) 74 0 R (subsection.3.7) 78 0 R (subsection.3.8) 82 0 R (subsection.3.9) 86 0 R (subsection.4.1) 94 0 R] +/Limits [(subsection.3.5) (subsection.4.1)] +>> endobj +4626 0 obj << +/Names [(subsection.4.2) 98 0 R (subsection.4.3) 102 0 R (subsection.4.4) 106 0 R (subsection.4.5) 110 0 R (subsection.4.6) 114 0 R (subsection.4.7) 118 0 R] +/Limits [(subsection.4.2) (subsection.4.7)] +>> endobj +4627 0 obj << +/Names [(subsection.4.8) 122 0 R (subsection.4.9) 126 0 R (subsection.5.1) 134 0 R (subsection.5.2) 138 0 R (subsection.5.3) 142 0 R (subsection.5.4) 146 0 R] +/Limits [(subsection.4.8) (subsection.5.4)] +>> endobj +4628 0 obj << +/Names [(subsection.6.1) 154 0 R (subsection.6.10) 190 0 R (subsection.6.11) 194 0 R (subsection.6.2) 158 0 R (subsection.6.3) 162 0 R (subsection.6.4) 166 0 R] +/Limits [(subsection.6.1) (subsection.6.4)] +>> endobj +4629 0 obj << +/Names [(subsection.6.5) 170 0 R (subsection.6.6) 174 0 R (subsection.6.7) 178 0 R (subsection.6.8) 182 0 R (subsection.6.9) 186 0 R (subsection.9.1) 210 0 R] +/Limits [(subsection.6.5) (subsection.9.1)] +>> endobj +4630 0 obj << +/Names [(subsection.9.2) 214 0 R (subsection.9.3) 218 0 R (subsection.9.4) 222 0 R (subsection.9.5) 226 0 R (subsection.9.6) 230 0 R (subsection.9.7) 234 0 R] +/Limits [(subsection.9.2) (subsection.9.7)] +>> endobj +4631 0 obj << +/Names [(subsection.9.8) 238 0 R (summary_V1.74.1_Epub) 1891 0 R (summary_V1.74.1_FO) 1853 0 R (summary_V1.74.1_Gentext) 1844 0 R (summary_V1.74.1_HTML) 1875 0 R (summary_V1.74.1_Highlighting) 1966 0 R] +/Limits [(subsection.9.8) (summary_V1.74.1_Highlighting)] +>> endobj +4632 0 obj << +/Names [(summary_V1.74.1_Manpages) 1884 0 R (summary_V1.74.1_Params) 1955 0 R (summary_V1.74.1_Roundtrip) 1937 0 R] +/Limits [(summary_V1.74.1_Manpages) (summary_V1.74.1_Roundtrip)] +>> endobj +4633 0 obj << +/Kids [4140 0 R 4141 0 R 4142 0 R 4143 0 R 4144 0 R 4145 0 R] +/Limits [(Doc-Start) (V1.72.0)] +>> endobj +4634 0 obj << +/Kids [4146 0 R 4147 0 R 4148 0 R 4149 0 R 4150 0 R 4151 0 R] +/Limits [(V1.72.0_Common) (V1.74.0_Common)] +>> endobj +4635 0 obj << +/Kids [4152 0 R 4153 0 R 4154 0 R 4155 0 R 4156 0 R 4157 0 R] +/Limits [(V1.74.0_Eclipse) (V1592)] +>> endobj +4636 0 obj << +/Kids [4158 0 R 4159 0 R 4160 0 R 4161 0 R 4162 0 R 4163 0 R] +/Limits [(V1601) (V1701)] +>> endobj +4637 0 obj << +/Kids [4164 0 R 4165 0 R 4166 0 R 4167 0 R 4168 0 R 4169 0 R] +/Limits [(V1701_FO) (lstlisting.-119)] +>> endobj +4638 0 obj << +/Kids [4170 0 R 4171 0 R 4172 0 R 4173 0 R 4174 0 R 4175 0 R] +/Limits [(lstlisting.-12) (lstlisting.-151)] +>> endobj +4639 0 obj << +/Kids [4176 0 R 4177 0 R 4178 0 R 4179 0 R 4180 0 R 4181 0 R] +/Limits [(lstlisting.-152) (lstlisting.-184)] +>> endobj +4640 0 obj << +/Kids [4182 0 R 4183 0 R 4184 0 R 4185 0 R 4186 0 R 4187 0 R] +/Limits [(lstlisting.-185) (lstlisting.-216)] +>> endobj +4641 0 obj << +/Kids [4188 0 R 4189 0 R 4190 0 R 4191 0 R 4192 0 R 4193 0 R] +/Limits [(lstlisting.-217) (lstlisting.-249)] +>> endobj +4642 0 obj << +/Kids [4194 0 R 4195 0 R 4196 0 R 4197 0 R 4198 0 R 4199 0 R] +/Limits [(lstlisting.-25) (lstlisting.-281)] +>> endobj +4643 0 obj << +/Kids [4200 0 R 4201 0 R 4202 0 R 4203 0 R 4204 0 R 4205 0 R] +/Limits [(lstlisting.-282) (lstlisting.-313)] +>> endobj +4644 0 obj << +/Kids [4206 0 R 4207 0 R 4208 0 R 4209 0 R 4210 0 R 4211 0 R] +/Limits [(lstlisting.-314) (lstlisting.-346)] +>> endobj +4645 0 obj << +/Kids [4212 0 R 4213 0 R 4214 0 R 4215 0 R 4216 0 R 4217 0 R] +/Limits [(lstlisting.-347) (lstlisting.-379)] +>> endobj +4646 0 obj << +/Kids [4218 0 R 4219 0 R 4220 0 R 4221 0 R 4222 0 R 4223 0 R] +/Limits [(lstlisting.-38) (lstlisting.-410)] +>> endobj +4647 0 obj << +/Kids [4224 0 R 4225 0 R 4226 0 R 4227 0 R 4228 0 R 4229 0 R] +/Limits [(lstlisting.-411) (lstlisting.-443)] +>> endobj +4648 0 obj << +/Kids [4230 0 R 4231 0 R 4232 0 R 4233 0 R 4234 0 R 4235 0 R] +/Limits [(lstlisting.-444) (lstlisting.-476)] +>> endobj +4649 0 obj << +/Kids [4236 0 R 4237 0 R 4238 0 R 4239 0 R 4240 0 R 4241 0 R] +/Limits [(lstlisting.-477) (lstlisting.-508)] +>> endobj +4650 0 obj << +/Kids [4242 0 R 4243 0 R 4244 0 R 4245 0 R 4246 0 R 4247 0 R] +/Limits [(lstlisting.-509) (lstlisting.-540)] +>> endobj +4651 0 obj << +/Kids [4248 0 R 4249 0 R 4250 0 R 4251 0 R 4252 0 R 4253 0 R] +/Limits [(lstlisting.-541) (lstlisting.-573)] +>> endobj +4652 0 obj << +/Kids [4254 0 R 4255 0 R 4256 0 R 4257 0 R 4258 0 R 4259 0 R] +/Limits [(lstlisting.-574) (lstlisting.-605)] +>> endobj +4653 0 obj << +/Kids [4260 0 R 4261 0 R 4262 0 R 4263 0 R 4264 0 R 4265 0 R] +/Limits [(lstlisting.-606) (lstlisting.-638)] +>> endobj +4654 0 obj << +/Kids [4266 0 R 4267 0 R 4268 0 R 4269 0 R 4270 0 R 4271 0 R] +/Limits [(lstlisting.-639) (lstlisting.-670)] +>> endobj +4655 0 obj << +/Kids [4272 0 R 4273 0 R 4274 0 R 4275 0 R 4276 0 R 4277 0 R] +/Limits [(lstlisting.-671) (lstlisting.-702)] +>> endobj +4656 0 obj << +/Kids [4278 0 R 4279 0 R 4280 0 R 4281 0 R 4282 0 R 4283 0 R] +/Limits [(lstlisting.-703) (lstlisting.-92)] +>> endobj +4657 0 obj << +/Kids [4284 0 R 4285 0 R 4286 0 R 4287 0 R 4288 0 R 4289 0 R] +/Limits [(lstlisting.-93) (lstnumber.-104.1)] +>> endobj +4658 0 obj << +/Kids [4290 0 R 4291 0 R 4292 0 R 4293 0 R 4294 0 R 4295 0 R] +/Limits [(lstnumber.-104.2) (lstnumber.-127.1)] +>> endobj +4659 0 obj << +/Kids [4296 0 R 4297 0 R 4298 0 R 4299 0 R 4300 0 R 4301 0 R] +/Limits [(lstnumber.-128.1) (lstnumber.-150.1)] +>> endobj +4660 0 obj << +/Kids [4302 0 R 4303 0 R 4304 0 R 4305 0 R 4306 0 R 4307 0 R] +/Limits [(lstnumber.-150.2) (lstnumber.-170.2)] +>> endobj +4661 0 obj << +/Kids [4308 0 R 4309 0 R 4310 0 R 4311 0 R 4312 0 R 4313 0 R] +/Limits [(lstnumber.-170.3) (lstnumber.-189.1)] +>> endobj +4662 0 obj << +/Kids [4314 0 R 4315 0 R 4316 0 R 4317 0 R 4318 0 R 4319 0 R] +/Limits [(lstnumber.-19.1) (lstnumber.-206.5)] +>> endobj +4663 0 obj << +/Kids [4320 0 R 4321 0 R 4322 0 R 4323 0 R 4324 0 R 4325 0 R] +/Limits [(lstnumber.-206.6) (lstnumber.-226.2)] +>> endobj +4664 0 obj << +/Kids [4326 0 R 4327 0 R 4328 0 R 4329 0 R 4330 0 R 4331 0 R] +/Limits [(lstnumber.-226.3) (lstnumber.-240.2)] +>> endobj +4665 0 obj << +/Kids [4332 0 R 4333 0 R 4334 0 R 4335 0 R 4336 0 R 4337 0 R] +/Limits [(lstnumber.-240.3) (lstnumber.-267.1)] +>> endobj +4666 0 obj << +/Kids [4338 0 R 4339 0 R 4340 0 R 4341 0 R 4342 0 R 4343 0 R] +/Limits [(lstnumber.-268.1) (lstnumber.-289.1)] +>> endobj +4667 0 obj << +/Kids [4344 0 R 4345 0 R 4346 0 R 4347 0 R 4348 0 R 4349 0 R] +/Limits [(lstnumber.-289.2) (lstnumber.-305.2)] +>> endobj +4668 0 obj << +/Kids [4350 0 R 4351 0 R 4352 0 R 4353 0 R 4354 0 R 4355 0 R] +/Limits [(lstnumber.-305.3) (lstnumber.-315.1)] +>> endobj +4669 0 obj << +/Kids [4356 0 R 4357 0 R 4358 0 R 4359 0 R 4360 0 R 4361 0 R] +/Limits [(lstnumber.-316.1) (lstnumber.-333.3)] +>> endobj +4670 0 obj << +/Kids [4362 0 R 4363 0 R 4364 0 R 4365 0 R 4366 0 R 4367 0 R] +/Limits [(lstnumber.-334.1) (lstnumber.-338.8)] +>> endobj +4671 0 obj << +/Kids [4368 0 R 4369 0 R 4370 0 R 4371 0 R 4372 0 R 4373 0 R] +/Limits [(lstnumber.-338.9) (lstnumber.-353.2)] +>> endobj +4672 0 obj << +/Kids [4374 0 R 4375 0 R 4376 0 R 4377 0 R 4378 0 R 4379 0 R] +/Limits [(lstnumber.-354.1) (lstnumber.-378.1)] +>> endobj +4673 0 obj << +/Kids [4380 0 R 4381 0 R 4382 0 R 4383 0 R 4384 0 R 4385 0 R] +/Limits [(lstnumber.-379.1) (lstnumber.-380.38)] +>> endobj +4674 0 obj << +/Kids [4386 0 R 4387 0 R 4388 0 R 4389 0 R 4390 0 R 4391 0 R] +/Limits [(lstnumber.-380.39) (lstnumber.-392.1)] +>> endobj +4675 0 obj << +/Kids [4392 0 R 4393 0 R 4394 0 R 4395 0 R 4396 0 R 4397 0 R] +/Limits [(lstnumber.-392.10) (lstnumber.-408.1)] +>> endobj +4676 0 obj << +/Kids [4398 0 R 4399 0 R 4400 0 R 4401 0 R 4402 0 R 4403 0 R] +/Limits [(lstnumber.-409.1) (lstnumber.-419.2)] +>> endobj +4677 0 obj << +/Kids [4404 0 R 4405 0 R 4406 0 R 4407 0 R 4408 0 R 4409 0 R] +/Limits [(lstnumber.-419.3) (lstnumber.-431.11)] +>> endobj +4678 0 obj << +/Kids [4410 0 R 4411 0 R 4412 0 R 4413 0 R 4414 0 R 4415 0 R] +/Limits [(lstnumber.-431.12) (lstnumber.-437.1)] +>> endobj +4679 0 obj << +/Kids [4416 0 R 4417 0 R 4418 0 R 4419 0 R 4420 0 R 4421 0 R] +/Limits [(lstnumber.-437.2) (lstnumber.-447.2)] +>> endobj +4680 0 obj << +/Kids [4422 0 R 4423 0 R 4424 0 R 4425 0 R 4426 0 R 4427 0 R] +/Limits [(lstnumber.-447.3) (lstnumber.-463.14)] +>> endobj +4681 0 obj << +/Kids [4428 0 R 4429 0 R 4430 0 R 4431 0 R 4432 0 R 4433 0 R] +/Limits [(lstnumber.-463.15) (lstnumber.-464.26)] +>> endobj +4682 0 obj << +/Kids [4434 0 R 4435 0 R 4436 0 R 4437 0 R 4438 0 R 4439 0 R] +/Limits [(lstnumber.-464.3) (lstnumber.-475.1)] +>> endobj +4683 0 obj << +/Kids [4440 0 R 4441 0 R 4442 0 R 4443 0 R 4444 0 R 4445 0 R] +/Limits [(lstnumber.-475.2) (lstnumber.-48.2)] +>> endobj +4684 0 obj << +/Kids [4446 0 R 4447 0 R 4448 0 R 4449 0 R 4450 0 R 4451 0 R] +/Limits [(lstnumber.-480.1) (lstnumber.-494.1)] +>> endobj +4685 0 obj << +/Kids [4452 0 R 4453 0 R 4454 0 R 4455 0 R 4456 0 R 4457 0 R] +/Limits [(lstnumber.-494.2) (lstnumber.-495.5)] +>> endobj +4686 0 obj << +/Kids [4458 0 R 4459 0 R 4460 0 R 4461 0 R 4462 0 R 4463 0 R] +/Limits [(lstnumber.-495.6) (lstnumber.-514.1)] +>> endobj +4687 0 obj << +/Kids [4464 0 R 4465 0 R 4466 0 R 4467 0 R 4468 0 R 4469 0 R] +/Limits [(lstnumber.-515.1) (lstnumber.-525.2)] +>> endobj +4688 0 obj << +/Kids [4470 0 R 4471 0 R 4472 0 R 4473 0 R 4474 0 R 4475 0 R] +/Limits [(lstnumber.-525.3) (lstnumber.-529.16)] +>> endobj +4689 0 obj << +/Kids [4476 0 R 4477 0 R 4478 0 R 4479 0 R 4480 0 R 4481 0 R] +/Limits [(lstnumber.-529.17) (lstnumber.-546.1)] +>> endobj +4690 0 obj << +/Kids [4482 0 R 4483 0 R 4484 0 R 4485 0 R 4486 0 R 4487 0 R] +/Limits [(lstnumber.-547.1) (lstnumber.-562.1)] +>> endobj +4691 0 obj << +/Kids [4488 0 R 4489 0 R 4490 0 R 4491 0 R 4492 0 R 4493 0 R] +/Limits [(lstnumber.-562.2) (lstnumber.-579.1)] +>> endobj +4692 0 obj << +/Kids [4494 0 R 4495 0 R 4496 0 R 4497 0 R 4498 0 R 4499 0 R] +/Limits [(lstnumber.-579.2) (lstnumber.-599.1)] +>> endobj +4693 0 obj << +/Kids [4500 0 R 4501 0 R 4502 0 R 4503 0 R 4504 0 R 4505 0 R] +/Limits [(lstnumber.-599.2) (lstnumber.-616.2)] +>> endobj +4694 0 obj << +/Kids [4506 0 R 4507 0 R 4508 0 R 4509 0 R 4510 0 R 4511 0 R] +/Limits [(lstnumber.-616.3) (lstnumber.-632.1)] +>> endobj +4695 0 obj << +/Kids [4512 0 R 4513 0 R 4514 0 R 4515 0 R 4516 0 R 4517 0 R] +/Limits [(lstnumber.-632.2) (lstnumber.-645.4)] +>> endobj +4696 0 obj << +/Kids [4518 0 R 4519 0 R 4520 0 R 4521 0 R 4522 0 R 4523 0 R] +/Limits [(lstnumber.-646.1) (lstnumber.-656.15)] +>> endobj +4697 0 obj << +/Kids [4524 0 R 4525 0 R 4526 0 R 4527 0 R 4528 0 R 4529 0 R] +/Limits [(lstnumber.-656.16) (lstnumber.-659.7)] +>> endobj +4698 0 obj << +/Kids [4530 0 R 4531 0 R 4532 0 R 4533 0 R 4534 0 R 4535 0 R] +/Limits [(lstnumber.-659.8) (lstnumber.-664.10)] +>> endobj +4699 0 obj << +/Kids [4536 0 R 4537 0 R 4538 0 R 4539 0 R 4540 0 R 4541 0 R] +/Limits [(lstnumber.-664.11) (lstnumber.-668.1)] +>> endobj +4700 0 obj << +/Kids [4542 0 R 4543 0 R 4544 0 R 4545 0 R 4546 0 R 4547 0 R] +/Limits [(lstnumber.-668.2) (lstnumber.-688.2)] +>> endobj +4701 0 obj << +/Kids [4548 0 R 4549 0 R 4550 0 R 4551 0 R 4552 0 R 4553 0 R] +/Limits [(lstnumber.-689.1) (lstnumber.-703.4)] +>> endobj +4702 0 obj << +/Kids [4554 0 R 4555 0 R 4556 0 R 4557 0 R 4558 0 R 4559 0 R] +/Limits [(lstnumber.-704.1) (lstnumber.-708.1)] +>> endobj +4703 0 obj << +/Kids [4560 0 R 4561 0 R 4562 0 R 4563 0 R 4564 0 R 4565 0 R] +/Limits [(lstnumber.-708.10) (lstnumber.-714.3)] +>> endobj +4704 0 obj << +/Kids [4566 0 R 4567 0 R 4568 0 R 4569 0 R 4570 0 R 4571 0 R] +/Limits [(lstnumber.-714.4) (lstnumber.-91.2)] +>> endobj +4705 0 obj << +/Kids [4572 0 R 4573 0 R 4574 0 R 4575 0 R 4576 0 R 4577 0 R] +/Limits [(lstnumber.-92.1) (page.12)] +>> endobj +4706 0 obj << +/Kids [4578 0 R 4579 0 R 4580 0 R 4581 0 R 4582 0 R 4583 0 R] +/Limits [(page.120) (page.39)] +>> endobj +4707 0 obj << +/Kids [4584 0 R 4585 0 R 4586 0 R 4587 0 R 4588 0 R 4589 0 R] +/Limits [(page.4) (page.71)] +>> endobj +4708 0 obj << +/Kids [4590 0 R 4591 0 R 4592 0 R 4593 0 R 4594 0 R 4595 0 R] +/Limits [(page.72) (page.vi)] +>> endobj +4709 0 obj << +/Kids [4596 0 R 4597 0 R 4598 0 R 4599 0 R 4600 0 R 4601 0 R] +/Limits [(page.vii) (rn_V1.75.2_HTML)] +>> endobj +4710 0 obj << +/Kids [4602 0 R 4603 0 R 4604 0 R 4605 0 R 4606 0 R 4607 0 R] +/Limits [(rn_V1.75.2_Manpages) (section.4)] +>> endobj +4711 0 obj << +/Kids [4608 0 R 4609 0 R 4610 0 R 4611 0 R 4612 0 R 4613 0 R] +/Limits [(section.5) (subsection.12.5)] +>> endobj +4712 0 obj << +/Kids [4614 0 R 4615 0 R 4616 0 R 4617 0 R 4618 0 R 4619 0 R] +/Limits [(subsection.12.6) (subsection.16.3)] +>> endobj +4713 0 obj << +/Kids [4620 0 R 4621 0 R 4622 0 R 4623 0 R 4624 0 R 4625 0 R] +/Limits [(subsection.16.4) (subsection.4.1)] +>> endobj +4714 0 obj << +/Kids [4626 0 R 4627 0 R 4628 0 R 4629 0 R 4630 0 R 4631 0 R] +/Limits [(subsection.4.2) (summary_V1.74.1_Highlighting)] +>> endobj +4715 0 obj << +/Kids [4632 0 R] +/Limits [(summary_V1.74.1_Manpages) (summary_V1.74.1_Roundtrip)] +>> endobj +4716 0 obj << +/Kids [4633 0 R 4634 0 R 4635 0 R 4636 0 R 4637 0 R 4638 0 R] +/Limits [(Doc-Start) (lstlisting.-151)] +>> endobj +4717 0 obj << +/Kids [4639 0 R 4640 0 R 4641 0 R 4642 0 R 4643 0 R 4644 0 R] +/Limits [(lstlisting.-152) (lstlisting.-346)] +>> endobj +4718 0 obj << +/Kids [4645 0 R 4646 0 R 4647 0 R 4648 0 R 4649 0 R 4650 0 R] +/Limits [(lstlisting.-347) (lstlisting.-540)] +>> endobj +4719 0 obj << +/Kids [4651 0 R 4652 0 R 4653 0 R 4654 0 R 4655 0 R 4656 0 R] +/Limits [(lstlisting.-541) (lstlisting.-92)] +>> endobj +4720 0 obj << +/Kids [4657 0 R 4658 0 R 4659 0 R 4660 0 R 4661 0 R 4662 0 R] +/Limits [(lstlisting.-93) (lstnumber.-206.5)] +>> endobj +4721 0 obj << +/Kids [4663 0 R 4664 0 R 4665 0 R 4666 0 R 4667 0 R 4668 0 R] +/Limits [(lstnumber.-206.6) (lstnumber.-315.1)] +>> endobj +4722 0 obj << +/Kids [4669 0 R 4670 0 R 4671 0 R 4672 0 R 4673 0 R 4674 0 R] +/Limits [(lstnumber.-316.1) (lstnumber.-392.1)] +>> endobj +4723 0 obj << +/Kids [4675 0 R 4676 0 R 4677 0 R 4678 0 R 4679 0 R 4680 0 R] +/Limits [(lstnumber.-392.10) (lstnumber.-463.14)] +>> endobj +4724 0 obj << +/Kids [4681 0 R 4682 0 R 4683 0 R 4684 0 R 4685 0 R 4686 0 R] +/Limits [(lstnumber.-463.15) (lstnumber.-514.1)] +>> endobj +4725 0 obj << +/Kids [4687 0 R 4688 0 R 4689 0 R 4690 0 R 4691 0 R 4692 0 R] +/Limits [(lstnumber.-515.1) (lstnumber.-599.1)] +>> endobj +4726 0 obj << +/Kids [4693 0 R 4694 0 R 4695 0 R 4696 0 R 4697 0 R 4698 0 R] +/Limits [(lstnumber.-599.2) (lstnumber.-664.10)] +>> endobj +4727 0 obj << +/Kids [4699 0 R 4700 0 R 4701 0 R 4702 0 R 4703 0 R 4704 0 R] +/Limits [(lstnumber.-664.11) (lstnumber.-91.2)] +>> endobj +4728 0 obj << +/Kids [4705 0 R 4706 0 R 4707 0 R 4708 0 R 4709 0 R 4710 0 R] +/Limits [(lstnumber.-92.1) (section.4)] +>> endobj +4729 0 obj << +/Kids [4711 0 R 4712 0 R 4713 0 R 4714 0 R 4715 0 R] +/Limits [(section.5) (summary_V1.74.1_Roundtrip)] +>> endobj +4730 0 obj << +/Kids [4716 0 R 4717 0 R 4718 0 R 4719 0 R 4720 0 R 4721 0 R] +/Limits [(Doc-Start) (lstnumber.-315.1)] +>> endobj +4731 0 obj << +/Kids [4722 0 R 4723 0 R 4724 0 R 4725 0 R 4726 0 R 4727 0 R] +/Limits [(lstnumber.-316.1) (lstnumber.-91.2)] +>> endobj +4732 0 obj << +/Kids [4728 0 R 4729 0 R] +/Limits [(lstnumber.-92.1) (summary_V1.74.1_Roundtrip)] +>> endobj +4733 0 obj << +/Kids [4730 0 R 4731 0 R 4732 0 R] +/Limits [(Doc-Start) (summary_V1.74.1_Roundtrip)] +>> endobj +4734 0 obj << +/Dests 4733 0 R +>> endobj +4735 0 obj << +/Type /Catalog +/Pages 4138 0 R +/Outlines 4139 0 R +/Names 4734 0 R +/PageMode/UseOutlines/PageLabels<>7<>]>> +/OpenAction 685 0 R +>> endobj +4736 0 obj << +/Author()/Title(Release Notes for the DocBook XSL Stylesheets)/Subject()/Creator(DBLaTeX-0.3)/Producer(pdfTeX-1.40.10)/Keywords() +/CreationDate (D:20101101131526-07'00') +/ModDate (D:20101101131526-07'00') +/Trapped /False +/PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-1.40.10-2.2 (TeX Live/MacPorts 2009_6) kpathsea version 5.0.0) +>> endobj +xref +0 4737 +0000000000 65535 f +0000000015 00000 n +0000054077 00000 n +0000747653 00000 n +0000000060 00000 n +0000000099 00000 n +0000054197 00000 n +0000747583 00000 n +0000000149 00000 n +0000000173 00000 n +0000054560 00000 n +0000747499 00000 n +0000000223 00000 n +0000000244 00000 n +0000054981 00000 n +0000747413 00000 n +0000000295 00000 n +0000000318 00000 n +0000055222 00000 n +0000747327 00000 n +0000000369 00000 n +0000000392 00000 n +0000058133 00000 n +0000747241 00000 n +0000000443 00000 n +0000000469 00000 n +0000058984 00000 n +0000747155 00000 n +0000000520 00000 n +0000000545 00000 n +0000059223 00000 n +0000747082 00000 n +0000000596 00000 n +0000000625 00000 n +0000061859 00000 n +0000746957 00000 n +0000000671 00000 n +0000000711 00000 n +0000061980 00000 n +0000746883 00000 n +0000000762 00000 n +0000000783 00000 n +0000062283 00000 n +0000746796 00000 n +0000000834 00000 n +0000000857 00000 n +0000062525 00000 n +0000746722 00000 n +0000000908 00000 n +0000000933 00000 n +0000062766 00000 n +0000746596 00000 n +0000000979 00000 n +0000001019 00000 n +0000065039 00000 n +0000746522 00000 n +0000001070 00000 n +0000001096 00000 n +0000066136 00000 n +0000746435 00000 n +0000001147 00000 n +0000001172 00000 n +0000074054 00000 n +0000746348 00000 n +0000001223 00000 n +0000001244 00000 n +0000079227 00000 n +0000746261 00000 n +0000001295 00000 n +0000001318 00000 n +0000089039 00000 n +0000746174 00000 n +0000001369 00000 n +0000001396 00000 n +0000093094 00000 n +0000746087 00000 n +0000001447 00000 n +0000001470 00000 n +0000099414 00000 n +0000746000 00000 n +0000001521 00000 n +0000001547 00000 n +0000099852 00000 n +0000745913 00000 n +0000001598 00000 n +0000001623 00000 n +0000102973 00000 n +0000745839 00000 n +0000001674 00000 n +0000001702 00000 n +0000103222 00000 n +0000745711 00000 n +0000001748 00000 n +0000001788 00000 n +0000103345 00000 n +0000745637 00000 n +0000001839 00000 n +0000001865 00000 n +0000103973 00000 n +0000745548 00000 n +0000001916 00000 n +0000001942 00000 n +0000106471 00000 n +0000745457 00000 n +0000001994 00000 n +0000002016 00000 n +0000106721 00000 n +0000745365 00000 n +0000002068 00000 n +0000002092 00000 n +0000107223 00000 n +0000745273 00000 n +0000002144 00000 n +0000002172 00000 n +0000107598 00000 n +0000745181 00000 n +0000002224 00000 n +0000002248 00000 n +0000107972 00000 n +0000745089 00000 n +0000002300 00000 n +0000002329 00000 n +0000110011 00000 n +0000744997 00000 n +0000002381 00000 n +0000002410 00000 n +0000110262 00000 n +0000744919 00000 n +0000002462 00000 n +0000002491 00000 n +0000110513 00000 n +0000744787 00000 n +0000002538 00000 n +0000002579 00000 n +0000110637 00000 n +0000744708 00000 n +0000002631 00000 n +0000002653 00000 n +0000111012 00000 n +0000744615 00000 n +0000002705 00000 n +0000002729 00000 n +0000113998 00000 n +0000744522 00000 n +0000002781 00000 n +0000002805 00000 n +0000114501 00000 n +0000744443 00000 n +0000002857 00000 n +0000002883 00000 n +0000114752 00000 n +0000744309 00000 n +0000002930 00000 n +0000002971 00000 n +0000117916 00000 n +0000744230 00000 n +0000003023 00000 n +0000003050 00000 n +0000121605 00000 n +0000744137 00000 n +0000003102 00000 n +0000003128 00000 n +0000127625 00000 n +0000744044 00000 n +0000003180 00000 n +0000003202 00000 n +0000149247 00000 n +0000743951 00000 n +0000003254 00000 n +0000003278 00000 n +0000164547 00000 n +0000743858 00000 n +0000003330 00000 n +0000003358 00000 n +0000168101 00000 n +0000743765 00000 n +0000003410 00000 n +0000003434 00000 n +0000172537 00000 n +0000743672 00000 n +0000003486 00000 n +0000003514 00000 n +0000172788 00000 n +0000743579 00000 n +0000003566 00000 n +0000003592 00000 n +0000177813 00000 n +0000743486 00000 n +0000003644 00000 n +0000003676 00000 n +0000178313 00000 n +0000743393 00000 n +0000003729 00000 n +0000003758 00000 n +0000178626 00000 n +0000743314 00000 n +0000003811 00000 n +0000003840 00000 n +0000181410 00000 n +0000743220 00000 n +0000003887 00000 n +0000003928 00000 n +0000181535 00000 n +0000743126 00000 n +0000003975 00000 n +0000004016 00000 n +0000181659 00000 n +0000742993 00000 n +0000004063 00000 n +0000004104 00000 n +0000184350 00000 n +0000742914 00000 n +0000004156 00000 n +0000004183 00000 n +0000184977 00000 n +0000742821 00000 n +0000004235 00000 n +0000004257 00000 n +0000189090 00000 n +0000742728 00000 n +0000004309 00000 n +0000004333 00000 n +0000189718 00000 n +0000742635 00000 n +0000004385 00000 n +0000004413 00000 n +0000190221 00000 n +0000742542 00000 n +0000004465 00000 n +0000004489 00000 n +0000195658 00000 n +0000742449 00000 n +0000004541 00000 n +0000004570 00000 n +0000200090 00000 n +0000742356 00000 n +0000004622 00000 n +0000004648 00000 n +0000200843 00000 n +0000742277 00000 n +0000004700 00000 n +0000004732 00000 n +0000201282 00000 n +0000742143 00000 n +0000004780 00000 n +0000004821 00000 n +0000204020 00000 n +0000742064 00000 n +0000004874 00000 n +0000004901 00000 n +0000208631 00000 n +0000741971 00000 n +0000004954 00000 n +0000004980 00000 n +0000219712 00000 n +0000741878 00000 n +0000005033 00000 n +0000005055 00000 n +0000235761 00000 n +0000741785 00000 n +0000005108 00000 n +0000005132 00000 n +0000251684 00000 n +0000741692 00000 n +0000005185 00000 n +0000005213 00000 n +0000301635 00000 n +0000741599 00000 n +0000005266 00000 n +0000005290 00000 n +0000307996 00000 n +0000741506 00000 n +0000005343 00000 n +0000005371 00000 n +0000308436 00000 n +0000741413 00000 n +0000005424 00000 n +0000005451 00000 n +0000312000 00000 n +0000741320 00000 n +0000005504 00000 n +0000005532 00000 n +0000312440 00000 n +0000741227 00000 n +0000005586 00000 n +0000005615 00000 n +0000316317 00000 n +0000741134 00000 n +0000005669 00000 n +0000005695 00000 n +0000316881 00000 n +0000741041 00000 n +0000005749 00000 n +0000005776 00000 n +0000320353 00000 n +0000740948 00000 n +0000005830 00000 n +0000005856 00000 n +0000336809 00000 n +0000740855 00000 n +0000005910 00000 n +0000005939 00000 n +0000337249 00000 n +0000740762 00000 n +0000005993 00000 n +0000006018 00000 n +0000341140 00000 n +0000740669 00000 n +0000006072 00000 n +0000006102 00000 n +0000341705 00000 n +0000740576 00000 n +0000006156 00000 n +0000006185 00000 n +0000342458 00000 n +0000740483 00000 n +0000006239 00000 n +0000006268 00000 n +0000345230 00000 n +0000740404 00000 n +0000006322 00000 n +0000006353 00000 n +0000345985 00000 n +0000740310 00000 n +0000006401 00000 n +0000006442 00000 n +0000346109 00000 n +0000740177 00000 n +0000006490 00000 n +0000006525 00000 n +0000346234 00000 n +0000740098 00000 n +0000006578 00000 n +0000006605 00000 n +0000346610 00000 n +0000740005 00000 n +0000006658 00000 n +0000006680 00000 n +0000350765 00000 n +0000739912 00000 n +0000006733 00000 n +0000006757 00000 n +0000354462 00000 n +0000739819 00000 n +0000006810 00000 n +0000006838 00000 n +0000354902 00000 n +0000739726 00000 n +0000006891 00000 n +0000006919 00000 n +0000355216 00000 n +0000739633 00000 n +0000006972 00000 n +0000006999 00000 n +0000355530 00000 n +0000739540 00000 n +0000007052 00000 n +0000007080 00000 n +0000355844 00000 n +0000739447 00000 n +0000007133 00000 n +0000007162 00000 n +0000359482 00000 n +0000739368 00000 n +0000007215 00000 n +0000007241 00000 n +0000359921 00000 n +0000739234 00000 n +0000007289 00000 n +0000007324 00000 n +0000360046 00000 n +0000739155 00000 n +0000007377 00000 n +0000007404 00000 n +0000364049 00000 n +0000739062 00000 n +0000007457 00000 n +0000007483 00000 n +0000368142 00000 n +0000738969 00000 n +0000007536 00000 n +0000007558 00000 n +0000377318 00000 n +0000738876 00000 n +0000007611 00000 n +0000007635 00000 n +0000388532 00000 n +0000738783 00000 n +0000007688 00000 n +0000007716 00000 n +0000407545 00000 n +0000738690 00000 n +0000007769 00000 n +0000007796 00000 n +0000407922 00000 n +0000738597 00000 n +0000007849 00000 n +0000007877 00000 n +0000408357 00000 n +0000738504 00000 n +0000007930 00000 n +0000007959 00000 n +0000411577 00000 n +0000738411 00000 n +0000008012 00000 n +0000008038 00000 n +0000418012 00000 n +0000738318 00000 n +0000008092 00000 n +0000008124 00000 n +0000420706 00000 n +0000738225 00000 n +0000008178 00000 n +0000008207 00000 n +0000420957 00000 n +0000738132 00000 n +0000008261 00000 n +0000008284 00000 n +0000421271 00000 n +0000738039 00000 n +0000008338 00000 n +0000008363 00000 n +0000421709 00000 n +0000737946 00000 n +0000008417 00000 n +0000008446 00000 n +0000426342 00000 n +0000737867 00000 n +0000008500 00000 n +0000008529 00000 n +0000427475 00000 n +0000737734 00000 n +0000008577 00000 n +0000008612 00000 n +0000430489 00000 n +0000737655 00000 n +0000008665 00000 n +0000008691 00000 n +0000432257 00000 n +0000737562 00000 n +0000008744 00000 n +0000008766 00000 n +0000432382 00000 n +0000737469 00000 n +0000008819 00000 n +0000008843 00000 n +0000434633 00000 n +0000737376 00000 n +0000008896 00000 n +0000008924 00000 n +0000434758 00000 n +0000737283 00000 n +0000008977 00000 n +0000009003 00000 n +0000436686 00000 n +0000737190 00000 n +0000009056 00000 n +0000009084 00000 n +0000436811 00000 n +0000737111 00000 n +0000009137 00000 n +0000009166 00000 n +0000439093 00000 n +0000736978 00000 n +0000009214 00000 n +0000009249 00000 n +0000439218 00000 n +0000736899 00000 n +0000009302 00000 n +0000009328 00000 n +0000439343 00000 n +0000736806 00000 n +0000009381 00000 n +0000009403 00000 n +0000439468 00000 n +0000736713 00000 n +0000009456 00000 n +0000009480 00000 n +0000441450 00000 n +0000736620 00000 n +0000009533 00000 n +0000009565 00000 n +0000441575 00000 n +0000736527 00000 n +0000009618 00000 n +0000009646 00000 n +0000441700 00000 n +0000736434 00000 n +0000009699 00000 n +0000009725 00000 n +0000441825 00000 n +0000736355 00000 n +0000009778 00000 n +0000009807 00000 n +0000444965 00000 n +0000736222 00000 n +0000009855 00000 n +0000009890 00000 n +0000445090 00000 n +0000736143 00000 n +0000009943 00000 n +0000009969 00000 n +0000445214 00000 n +0000736050 00000 n +0000010022 00000 n +0000010052 00000 n +0000447346 00000 n +0000735957 00000 n +0000010105 00000 n +0000010127 00000 n +0000447471 00000 n +0000735864 00000 n +0000010180 00000 n +0000010204 00000 n +0000451590 00000 n +0000735771 00000 n +0000010257 00000 n +0000010289 00000 n +0000451715 00000 n +0000735678 00000 n +0000010342 00000 n +0000010370 00000 n +0000451839 00000 n +0000735585 00000 n +0000010423 00000 n +0000010449 00000 n +0000453811 00000 n +0000735506 00000 n +0000010502 00000 n +0000010527 00000 n +0000453934 00000 n +0000735373 00000 n +0000010575 00000 n +0000010610 00000 n +0000454058 00000 n +0000735294 00000 n +0000010663 00000 n +0000010685 00000 n +0000456354 00000 n +0000735201 00000 n +0000010738 00000 n +0000010762 00000 n +0000456479 00000 n +0000735108 00000 n +0000010815 00000 n +0000010843 00000 n +0000456604 00000 n +0000735029 00000 n +0000010896 00000 n +0000010922 00000 n +0000456728 00000 n +0000734896 00000 n +0000010970 00000 n +0000011005 00000 n +0000459539 00000 n +0000734817 00000 n +0000011058 00000 n +0000011084 00000 n +0000462070 00000 n +0000734724 00000 n +0000011137 00000 n +0000011167 00000 n +0000462195 00000 n +0000734631 00000 n +0000011220 00000 n +0000011242 00000 n +0000473835 00000 n +0000734538 00000 n +0000011295 00000 n +0000011319 00000 n +0000483096 00000 n +0000734445 00000 n +0000011372 00000 n +0000011400 00000 n +0000493832 00000 n +0000734352 00000 n +0000011453 00000 n +0000011479 00000 n +0000506265 00000 n +0000734259 00000 n +0000011532 00000 n +0000011561 00000 n +0000508474 00000 n +0000734166 00000 n +0000011614 00000 n +0000011639 00000 n +0000508599 00000 n +0000734087 00000 n +0000011692 00000 n +0000011718 00000 n +0000508724 00000 n +0000733993 00000 n +0000011766 00000 n +0000011800 00000 n +0000511978 00000 n +0000733860 00000 n +0000011848 00000 n +0000011882 00000 n +0000512103 00000 n +0000733781 00000 n +0000011935 00000 n +0000011961 00000 n +0000515184 00000 n +0000733688 00000 n +0000012014 00000 n +0000012036 00000 n +0000515309 00000 n +0000733595 00000 n +0000012089 00000 n +0000012113 00000 n +0000515434 00000 n +0000733502 00000 n +0000012166 00000 n +0000012190 00000 n +0000520384 00000 n +0000733423 00000 n +0000012243 00000 n +0000012266 00000 n +0000540735 00000 n +0000733329 00000 n +0000012314 00000 n +0000012348 00000 n +0000540860 00000 n +0000733235 00000 n +0000012396 00000 n +0000012430 00000 n +0000544005 00000 n +0000733141 00000 n +0000012478 00000 n +0000012512 00000 n +0000544130 00000 n +0000733047 00000 n +0000012560 00000 n +0000012594 00000 n +0000553236 00000 n +0000732953 00000 n +0000012642 00000 n +0000012676 00000 n +0000553361 00000 n +0000732859 00000 n +0000012724 00000 n +0000012758 00000 n +0000560316 00000 n +0000732765 00000 n +0000012806 00000 n +0000012840 00000 n +0000560944 00000 n +0000732671 00000 n +0000012888 00000 n +0000012922 00000 n +0000563986 00000 n +0000732577 00000 n +0000012970 00000 n +0000013004 00000 n +0000567169 00000 n +0000732483 00000 n +0000013052 00000 n +0000013086 00000 n +0000571133 00000 n +0000732389 00000 n +0000013134 00000 n +0000013168 00000 n +0000573211 00000 n +0000732295 00000 n +0000013216 00000 n +0000013250 00000 n +0000573336 00000 n +0000732201 00000 n +0000013298 00000 n +0000013332 00000 n +0000573461 00000 n +0000732107 00000 n +0000013380 00000 n +0000013414 00000 n +0000576584 00000 n +0000732013 00000 n +0000013462 00000 n +0000013496 00000 n +0000578548 00000 n +0000731919 00000 n +0000013544 00000 n +0000013578 00000 n +0000578673 00000 n +0000731839 00000 n +0000013626 00000 n +0000013669 00000 n +0000014089 00000 n +0000014208 00000 n +0000014840 00000 n +0000013722 00000 n +0000014656 00000 n +0000728003 00000 n +0000727473 00000 n +0000014718 00000 n +0000014779 00000 n +0000727300 00000 n +0000728360 00000 n +0000016222 00000 n +0000016374 00000 n +0000016530 00000 n +0000016686 00000 n +0000016843 00000 n +0000017000 00000 n +0000017157 00000 n +0000017314 00000 n +0000017471 00000 n +0000017623 00000 n +0000017780 00000 n +0000017937 00000 n +0000018094 00000 n +0000018246 00000 n +0000018403 00000 n +0000018560 00000 n +0000018717 00000 n +0000018874 00000 n +0000019030 00000 n +0000019186 00000 n +0000019342 00000 n +0000019498 00000 n +0000019654 00000 n +0000019805 00000 n +0000019961 00000 n +0000020117 00000 n +0000020273 00000 n +0000020429 00000 n +0000020584 00000 n +0000020740 00000 n +0000020896 00000 n +0000021052 00000 n +0000022703 00000 n +0000022854 00000 n +0000023009 00000 n +0000023164 00000 n +0000023320 00000 n +0000023476 00000 n +0000021270 00000 n +0000015835 00000 n +0000014974 00000 n +0000021208 00000 n +0000727827 00000 n +0000023627 00000 n +0000023783 00000 n +0000023939 00000 n +0000024094 00000 n +0000024249 00000 n +0000024404 00000 n +0000024560 00000 n +0000024716 00000 n +0000024872 00000 n +0000025028 00000 n +0000025185 00000 n +0000025342 00000 n +0000025492 00000 n +0000025643 00000 n +0000025794 00000 n +0000025950 00000 n +0000026106 00000 n +0000026262 00000 n +0000026418 00000 n +0000026574 00000 n +0000026730 00000 n +0000026886 00000 n +0000027042 00000 n +0000027194 00000 n +0000027351 00000 n +0000027508 00000 n +0000027665 00000 n +0000027822 00000 n +0000027979 00000 n +0000028135 00000 n +0000029873 00000 n +0000030029 00000 n +0000030186 00000 n +0000030344 00000 n +0000028352 00000 n +0000022284 00000 n +0000021381 00000 n +0000028290 00000 n +0000030502 00000 n +0000030660 00000 n +0000030818 00000 n +0000030976 00000 n +0000031133 00000 n +0000031291 00000 n +0000031449 00000 n +0000031607 00000 n +0000031765 00000 n +0000031917 00000 n +0000032069 00000 n +0000032226 00000 n +0000032382 00000 n +0000032539 00000 n +0000032696 00000 n +0000032853 00000 n +0000033010 00000 n +0000033167 00000 n +0000033323 00000 n +0000033480 00000 n +0000033632 00000 n +0000033789 00000 n +0000033946 00000 n +0000034102 00000 n +0000034259 00000 n +0000034416 00000 n +0000034573 00000 n +0000034730 00000 n +0000034887 00000 n +0000035043 00000 n +0000035201 00000 n +0000035359 00000 n +0000035517 00000 n +0000035675 00000 n +0000035831 00000 n +0000037498 00000 n +0000037649 00000 n +0000036049 00000 n +0000029430 00000 n +0000028450 00000 n +0000035987 00000 n +0000037805 00000 n +0000037962 00000 n +0000038118 00000 n +0000038274 00000 n +0000038431 00000 n +0000038587 00000 n +0000038743 00000 n +0000038894 00000 n +0000039051 00000 n +0000039207 00000 n +0000039363 00000 n +0000039520 00000 n +0000039676 00000 n +0000039832 00000 n +0000039989 00000 n +0000040141 00000 n +0000040298 00000 n +0000040454 00000 n +0000040611 00000 n +0000040767 00000 n +0000040923 00000 n +0000041080 00000 n +0000041236 00000 n +0000041392 00000 n +0000041543 00000 n +0000041700 00000 n +0000041857 00000 n +0000042014 00000 n +0000042171 00000 n +0000042323 00000 n +0000042480 00000 n +0000042637 00000 n +0000042794 00000 n +0000042951 00000 n +0000043108 00000 n +0000043266 00000 n +0000043424 00000 n +0000043581 00000 n +0000044897 00000 n +0000043799 00000 n +0000037047 00000 n +0000036147 00000 n +0000043737 00000 n +0000045049 00000 n +0000045202 00000 n +0000045360 00000 n +0000045518 00000 n +0000045676 00000 n +0000045833 00000 n +0000045991 00000 n +0000046144 00000 n +0000046296 00000 n +0000046449 00000 n +0000046602 00000 n +0000046754 00000 n +0000046907 00000 n +0000047060 00000 n +0000047213 00000 n +0000047366 00000 n +0000047519 00000 n +0000047672 00000 n +0000047825 00000 n +0000047977 00000 n +0000048130 00000 n +0000048279 00000 n +0000048432 00000 n +0000048647 00000 n +0000044574 00000 n +0000043897 00000 n +0000048585 00000 n +0000050409 00000 n +0000050626 00000 n +0000050842 00000 n +0000051058 00000 n +0000051216 00000 n +0000051378 00000 n +0000051593 00000 n +0000051739 00000 n +0000051948 00000 n +0000050214 00000 n +0000048745 00000 n +0000051886 00000 n +0000728478 00000 n +0000578735 00000 n +0000055587 00000 n +0000053896 00000 n +0000052046 00000 n +0000054015 00000 n +0000054136 00000 n +0000054255 00000 n +0000726948 00000 n +0000054316 00000 n +0000054377 00000 n +0000054438 00000 n +0000054499 00000 n +0000054620 00000 n +0000054680 00000 n +0000054739 00000 n +0000054800 00000 n +0000054861 00000 n +0000054922 00000 n +0000055040 00000 n +0000055101 00000 n +0000055162 00000 n +0000726299 00000 n +0000726154 00000 n +0000055282 00000 n +0000055343 00000 n +0000055404 00000 n +0000055465 00000 n +0000055526 00000 n +0000059588 00000 n +0000057587 00000 n +0000055724 00000 n +0000057706 00000 n +0000057768 00000 n +0000057829 00000 n +0000057890 00000 n +0000057951 00000 n +0000058012 00000 n +0000058073 00000 n +0000058193 00000 n +0000058254 00000 n +0000058313 00000 n +0000058374 00000 n +0000058435 00000 n +0000058496 00000 n +0000058557 00000 n +0000058618 00000 n +0000058679 00000 n +0000058740 00000 n +0000058801 00000 n +0000058862 00000 n +0000058923 00000 n +0000059044 00000 n +0000059105 00000 n +0000059162 00000 n +0000059283 00000 n +0000059344 00000 n +0000059405 00000 n +0000059466 00000 n +0000059527 00000 n +0000062887 00000 n +0000061678 00000 n +0000059725 00000 n +0000061797 00000 n +0000061919 00000 n +0000062040 00000 n +0000062101 00000 n +0000062162 00000 n +0000062223 00000 n +0000062343 00000 n +0000062404 00000 n +0000062465 00000 n +0000062584 00000 n +0000062644 00000 n +0000062705 00000 n +0000062826 00000 n +0000727122 00000 n +0000066628 00000 n +0000064858 00000 n +0000063051 00000 n +0000064977 00000 n +0000065099 00000 n +0000065160 00000 n +0000065221 00000 n +0000065282 00000 n +0000065343 00000 n +0000065404 00000 n +0000065465 00000 n +0000065526 00000 n +0000065587 00000 n +0000065648 00000 n +0000065709 00000 n +0000065770 00000 n +0000065831 00000 n +0000065892 00000 n +0000065953 00000 n +0000066014 00000 n +0000066075 00000 n +0000066196 00000 n +0000066257 00000 n +0000066318 00000 n +0000066380 00000 n +0000066442 00000 n +0000066504 00000 n +0000066566 00000 n +0000071451 00000 n +0000069188 00000 n +0000066765 00000 n +0000069310 00000 n +0000069374 00000 n +0000069437 00000 n +0000069500 00000 n +0000069563 00000 n +0000069626 00000 n +0000069689 00000 n +0000069752 00000 n +0000069815 00000 n +0000069878 00000 n +0000069941 00000 n +0000070004 00000 n +0000070067 00000 n +0000070130 00000 n +0000070193 00000 n +0000070256 00000 n +0000070319 00000 n +0000070382 00000 n +0000070445 00000 n +0000070508 00000 n +0000070570 00000 n +0000070633 00000 n +0000070696 00000 n +0000070759 00000 n +0000070822 00000 n +0000070885 00000 n +0000070948 00000 n +0000071011 00000 n +0000071074 00000 n +0000071137 00000 n +0000071200 00000 n +0000071263 00000 n +0000071326 00000 n +0000071388 00000 n +0000075875 00000 n +0000073867 00000 n +0000071576 00000 n +0000073990 00000 n +0000074115 00000 n +0000074178 00000 n +0000074241 00000 n +0000074304 00000 n +0000074366 00000 n +0000074429 00000 n +0000074492 00000 n +0000074554 00000 n +0000074617 00000 n +0000074680 00000 n +0000074743 00000 n +0000074806 00000 n +0000074869 00000 n +0000074932 00000 n +0000074995 00000 n +0000075058 00000 n +0000075121 00000 n +0000075184 00000 n +0000075247 00000 n +0000075310 00000 n +0000075371 00000 n +0000075434 00000 n +0000075497 00000 n +0000075560 00000 n +0000075623 00000 n +0000075686 00000 n +0000075749 00000 n +0000075812 00000 n +0000728597 00000 n +0000080293 00000 n +0000078160 00000 n +0000076013 00000 n +0000078283 00000 n +0000078347 00000 n +0000078410 00000 n +0000078473 00000 n +0000078536 00000 n +0000078599 00000 n +0000078661 00000 n +0000078723 00000 n +0000078786 00000 n +0000078849 00000 n +0000078912 00000 n +0000078975 00000 n +0000079038 00000 n +0000079101 00000 n +0000079164 00000 n +0000079288 00000 n +0000079351 00000 n +0000079413 00000 n +0000079476 00000 n +0000079539 00000 n +0000079602 00000 n +0000079665 00000 n +0000079728 00000 n +0000079791 00000 n +0000079852 00000 n +0000079915 00000 n +0000079978 00000 n +0000080041 00000 n +0000080104 00000 n +0000080167 00000 n +0000080230 00000 n +0000084805 00000 n +0000082667 00000 n +0000080431 00000 n +0000082790 00000 n +0000082854 00000 n +0000082917 00000 n +0000082980 00000 n +0000083043 00000 n +0000083106 00000 n +0000083169 00000 n +0000083232 00000 n +0000083295 00000 n +0000083358 00000 n +0000083421 00000 n +0000083484 00000 n +0000083547 00000 n +0000083610 00000 n +0000083672 00000 n +0000083735 00000 n +0000083798 00000 n +0000083861 00000 n +0000083924 00000 n +0000083987 00000 n +0000084050 00000 n +0000084113 00000 n +0000084176 00000 n +0000084239 00000 n +0000084302 00000 n +0000084365 00000 n +0000084427 00000 n +0000084490 00000 n +0000084553 00000 n +0000084616 00000 n +0000084679 00000 n +0000084742 00000 n +0000089918 00000 n +0000087595 00000 n +0000084930 00000 n +0000087718 00000 n +0000087782 00000 n +0000087845 00000 n +0000087908 00000 n +0000087971 00000 n +0000088034 00000 n +0000088096 00000 n +0000088159 00000 n +0000088222 00000 n +0000088285 00000 n +0000088348 00000 n +0000088411 00000 n +0000088474 00000 n +0000088536 00000 n +0000088599 00000 n +0000088662 00000 n +0000088725 00000 n +0000088788 00000 n +0000088851 00000 n +0000088914 00000 n +0000088977 00000 n +0000089100 00000 n +0000089163 00000 n +0000089226 00000 n +0000089289 00000 n +0000089352 00000 n +0000089415 00000 n +0000089478 00000 n +0000089541 00000 n +0000089604 00000 n +0000089667 00000 n +0000089730 00000 n +0000089793 00000 n +0000089855 00000 n +0000095668 00000 n +0000092907 00000 n +0000090056 00000 n +0000093030 00000 n +0000093155 00000 n +0000093218 00000 n +0000093281 00000 n +0000093344 00000 n +0000093407 00000 n +0000093470 00000 n +0000093533 00000 n +0000093594 00000 n +0000093657 00000 n +0000093720 00000 n +0000093781 00000 n +0000093844 00000 n +0000093907 00000 n +0000093970 00000 n +0000094033 00000 n +0000094096 00000 n +0000094159 00000 n +0000094222 00000 n +0000094285 00000 n +0000094348 00000 n +0000094410 00000 n +0000094473 00000 n +0000094536 00000 n +0000094598 00000 n +0000094661 00000 n +0000094724 00000 n +0000094787 00000 n +0000094850 00000 n +0000094913 00000 n +0000094976 00000 n +0000095039 00000 n +0000095102 00000 n +0000095164 00000 n +0000095227 00000 n +0000095290 00000 n +0000095353 00000 n +0000095416 00000 n +0000095479 00000 n +0000095542 00000 n +0000095605 00000 n +0000100606 00000 n +0000098473 00000 n +0000095806 00000 n +0000098596 00000 n +0000098660 00000 n +0000098723 00000 n +0000098786 00000 n +0000098849 00000 n +0000098912 00000 n +0000098975 00000 n +0000099037 00000 n +0000099100 00000 n +0000099163 00000 n +0000099226 00000 n +0000099289 00000 n +0000099351 00000 n +0000099474 00000 n +0000099537 00000 n +0000099600 00000 n +0000099663 00000 n +0000099726 00000 n +0000099789 00000 n +0000099913 00000 n +0000099976 00000 n +0000100039 00000 n +0000100102 00000 n +0000100165 00000 n +0000100228 00000 n +0000100291 00000 n +0000100354 00000 n +0000100417 00000 n +0000100480 00000 n +0000100543 00000 n +0000104349 00000 n +0000102535 00000 n +0000100744 00000 n +0000102658 00000 n +0000102722 00000 n +0000102785 00000 n +0000102848 00000 n +0000102910 00000 n +0000103034 00000 n +0000103097 00000 n +0000103160 00000 n +0000103283 00000 n +0000103406 00000 n +0000103469 00000 n +0000103532 00000 n +0000103595 00000 n +0000103658 00000 n +0000103721 00000 n +0000103784 00000 n +0000103847 00000 n +0000103910 00000 n +0000104034 00000 n +0000104097 00000 n +0000104160 00000 n +0000104223 00000 n +0000104286 00000 n +0000728722 00000 n +0000108222 00000 n +0000106284 00000 n +0000104487 00000 n +0000106407 00000 n +0000106533 00000 n +0000106596 00000 n +0000106659 00000 n +0000106783 00000 n +0000106846 00000 n +0000106909 00000 n +0000106972 00000 n +0000107035 00000 n +0000107097 00000 n +0000107160 00000 n +0000107284 00000 n +0000107346 00000 n +0000107409 00000 n +0000107472 00000 n +0000107535 00000 n +0000107658 00000 n +0000107720 00000 n +0000107783 00000 n +0000107846 00000 n +0000107909 00000 n +0000108034 00000 n +0000108097 00000 n +0000108159 00000 n +0000111387 00000 n +0000109824 00000 n +0000108360 00000 n +0000109947 00000 n +0000110073 00000 n +0000110136 00000 n +0000110199 00000 n +0000110324 00000 n +0000110387 00000 n +0000110450 00000 n +0000110574 00000 n +0000110698 00000 n +0000110761 00000 n +0000110824 00000 n +0000110887 00000 n +0000110949 00000 n +0000111074 00000 n +0000111136 00000 n +0000111198 00000 n +0000111261 00000 n +0000111324 00000 n +0000114877 00000 n +0000113811 00000 n +0000111512 00000 n +0000113934 00000 n +0000114060 00000 n +0000114123 00000 n +0000114186 00000 n +0000114249 00000 n +0000114312 00000 n +0000114375 00000 n +0000114438 00000 n +0000114563 00000 n +0000114626 00000 n +0000114689 00000 n +0000114814 00000 n +0000118293 00000 n +0000117729 00000 n +0000115042 00000 n +0000117852 00000 n +0000117978 00000 n +0000118041 00000 n +0000118104 00000 n +0000118167 00000 n +0000118230 00000 n +0000122985 00000 n +0000120599 00000 n +0000118432 00000 n +0000120722 00000 n +0000120786 00000 n +0000120849 00000 n +0000120912 00000 n +0000120975 00000 n +0000121038 00000 n +0000121101 00000 n +0000121164 00000 n +0000121227 00000 n +0000121290 00000 n +0000121353 00000 n +0000121416 00000 n +0000121479 00000 n +0000121542 00000 n +0000121667 00000 n +0000121730 00000 n +0000121793 00000 n +0000121855 00000 n +0000121917 00000 n +0000121980 00000 n +0000122043 00000 n +0000122106 00000 n +0000122169 00000 n +0000122232 00000 n +0000122295 00000 n +0000122357 00000 n +0000122420 00000 n +0000122483 00000 n +0000122546 00000 n +0000122609 00000 n +0000122672 00000 n +0000122735 00000 n +0000122797 00000 n +0000122860 00000 n +0000122922 00000 n +0000127875 00000 n +0000125552 00000 n +0000123110 00000 n +0000125675 00000 n +0000125739 00000 n +0000125802 00000 n +0000125865 00000 n +0000125928 00000 n +0000125991 00000 n +0000126053 00000 n +0000126116 00000 n +0000126179 00000 n +0000126242 00000 n +0000126305 00000 n +0000126368 00000 n +0000126431 00000 n +0000126494 00000 n +0000126557 00000 n +0000126620 00000 n +0000126681 00000 n +0000126744 00000 n +0000126807 00000 n +0000126870 00000 n +0000126933 00000 n +0000126996 00000 n +0000127058 00000 n +0000127121 00000 n +0000127184 00000 n +0000127247 00000 n +0000127310 00000 n +0000127373 00000 n +0000127436 00000 n +0000127499 00000 n +0000127562 00000 n +0000127687 00000 n +0000127750 00000 n +0000127812 00000 n +0000728847 00000 n +0000132332 00000 n +0000130008 00000 n +0000127987 00000 n +0000130131 00000 n +0000130195 00000 n +0000130258 00000 n +0000130321 00000 n +0000130384 00000 n +0000130447 00000 n +0000130510 00000 n +0000130572 00000 n +0000130635 00000 n +0000130698 00000 n +0000130761 00000 n +0000130823 00000 n +0000130886 00000 n +0000130949 00000 n +0000131012 00000 n +0000131075 00000 n +0000131138 00000 n +0000131201 00000 n +0000131264 00000 n +0000131327 00000 n +0000131390 00000 n +0000131453 00000 n +0000131516 00000 n +0000131579 00000 n +0000131642 00000 n +0000131705 00000 n +0000131767 00000 n +0000131830 00000 n +0000131893 00000 n +0000131956 00000 n +0000132019 00000 n +0000132081 00000 n +0000132144 00000 n +0000132207 00000 n +0000132270 00000 n +0000136991 00000 n +0000134855 00000 n +0000132431 00000 n +0000134978 00000 n +0000135042 00000 n +0000135105 00000 n +0000135168 00000 n +0000135231 00000 n +0000135294 00000 n +0000135357 00000 n +0000135420 00000 n +0000135483 00000 n +0000135546 00000 n +0000135608 00000 n +0000135671 00000 n +0000135734 00000 n +0000135797 00000 n +0000135860 00000 n +0000135922 00000 n +0000135985 00000 n +0000136048 00000 n +0000136111 00000 n +0000136174 00000 n +0000136237 00000 n +0000136299 00000 n +0000136362 00000 n +0000136425 00000 n +0000136488 00000 n +0000136550 00000 n +0000136613 00000 n +0000136676 00000 n +0000136739 00000 n +0000136802 00000 n +0000136865 00000 n +0000136928 00000 n +0000141680 00000 n +0000139358 00000 n +0000137116 00000 n +0000139481 00000 n +0000139545 00000 n +0000139608 00000 n +0000139671 00000 n +0000139734 00000 n +0000139796 00000 n +0000139859 00000 n +0000139922 00000 n +0000139983 00000 n +0000140046 00000 n +0000140108 00000 n +0000140171 00000 n +0000140234 00000 n +0000140297 00000 n +0000140360 00000 n +0000140423 00000 n +0000140486 00000 n +0000140549 00000 n +0000140612 00000 n +0000140675 00000 n +0000140738 00000 n +0000140801 00000 n +0000140864 00000 n +0000140927 00000 n +0000140990 00000 n +0000141053 00000 n +0000141116 00000 n +0000141179 00000 n +0000141241 00000 n +0000141304 00000 n +0000141367 00000 n +0000141430 00000 n +0000141493 00000 n +0000141555 00000 n +0000141618 00000 n +0000146710 00000 n +0000144200 00000 n +0000141792 00000 n +0000144323 00000 n +0000144387 00000 n +0000144450 00000 n +0000144513 00000 n +0000144576 00000 n +0000144639 00000 n +0000144702 00000 n +0000144764 00000 n +0000144827 00000 n +0000144890 00000 n +0000144953 00000 n +0000145015 00000 n +0000145078 00000 n +0000145141 00000 n +0000145204 00000 n +0000145267 00000 n +0000145329 00000 n +0000145392 00000 n +0000145455 00000 n +0000145518 00000 n +0000145581 00000 n +0000145643 00000 n +0000145706 00000 n +0000145769 00000 n +0000145832 00000 n +0000145895 00000 n +0000145958 00000 n +0000146021 00000 n +0000146083 00000 n +0000146146 00000 n +0000146209 00000 n +0000146272 00000 n +0000146334 00000 n +0000146397 00000 n +0000146460 00000 n +0000146523 00000 n +0000146586 00000 n +0000146647 00000 n +0000151321 00000 n +0000149060 00000 n +0000146809 00000 n +0000149183 00000 n +0000149309 00000 n +0000149372 00000 n +0000149435 00000 n +0000149498 00000 n +0000149561 00000 n +0000149624 00000 n +0000149687 00000 n +0000149749 00000 n +0000149812 00000 n +0000149875 00000 n +0000149938 00000 n +0000150001 00000 n +0000150063 00000 n +0000150126 00000 n +0000150189 00000 n +0000150252 00000 n +0000150314 00000 n +0000150377 00000 n +0000150440 00000 n +0000150503 00000 n +0000150566 00000 n +0000150629 00000 n +0000150692 00000 n +0000150755 00000 n +0000150818 00000 n +0000150880 00000 n +0000150943 00000 n +0000151006 00000 n +0000151069 00000 n +0000151132 00000 n +0000151195 00000 n +0000151258 00000 n +0000156259 00000 n +0000153807 00000 n +0000151446 00000 n +0000153930 00000 n +0000153994 00000 n +0000154057 00000 n +0000154120 00000 n +0000154183 00000 n +0000154246 00000 n +0000154308 00000 n +0000154371 00000 n +0000154434 00000 n +0000154497 00000 n +0000154560 00000 n +0000154623 00000 n +0000154686 00000 n +0000154749 00000 n +0000154812 00000 n +0000154874 00000 n +0000154937 00000 n +0000155000 00000 n +0000155063 00000 n +0000155126 00000 n +0000155189 00000 n +0000155252 00000 n +0000155315 00000 n +0000155378 00000 n +0000155441 00000 n +0000155504 00000 n +0000155567 00000 n +0000155630 00000 n +0000155693 00000 n +0000155756 00000 n +0000155818 00000 n +0000155881 00000 n +0000155944 00000 n +0000156007 00000 n +0000156070 00000 n +0000156133 00000 n +0000156196 00000 n +0000728972 00000 n +0000161207 00000 n +0000158757 00000 n +0000156371 00000 n +0000158880 00000 n +0000158944 00000 n +0000159007 00000 n +0000159070 00000 n +0000159133 00000 n +0000159196 00000 n +0000159258 00000 n +0000159321 00000 n +0000159384 00000 n +0000159447 00000 n +0000159510 00000 n +0000159573 00000 n +0000159636 00000 n +0000159699 00000 n +0000159762 00000 n +0000159825 00000 n +0000159888 00000 n +0000159951 00000 n +0000160014 00000 n +0000160077 00000 n +0000160140 00000 n +0000160201 00000 n +0000160264 00000 n +0000160327 00000 n +0000160390 00000 n +0000160453 00000 n +0000160515 00000 n +0000160578 00000 n +0000160641 00000 n +0000160704 00000 n +0000160767 00000 n +0000160830 00000 n +0000160893 00000 n +0000160955 00000 n +0000161018 00000 n +0000161081 00000 n +0000161144 00000 n +0000164985 00000 n +0000163230 00000 n +0000161319 00000 n +0000163353 00000 n +0000163417 00000 n +0000163480 00000 n +0000163543 00000 n +0000163606 00000 n +0000163669 00000 n +0000163732 00000 n +0000163794 00000 n +0000163857 00000 n +0000163920 00000 n +0000163983 00000 n +0000164045 00000 n +0000164108 00000 n +0000164171 00000 n +0000164234 00000 n +0000164297 00000 n +0000164360 00000 n +0000164423 00000 n +0000164484 00000 n +0000164609 00000 n +0000164672 00000 n +0000164734 00000 n +0000164797 00000 n +0000164860 00000 n +0000164923 00000 n +0000169926 00000 n +0000167914 00000 n +0000165123 00000 n +0000168037 00000 n +0000168163 00000 n +0000168226 00000 n +0000168289 00000 n +0000168352 00000 n +0000168415 00000 n +0000168478 00000 n +0000168541 00000 n +0000168604 00000 n +0000168667 00000 n +0000168730 00000 n +0000168793 00000 n +0000168856 00000 n +0000168919 00000 n +0000168982 00000 n +0000169045 00000 n +0000169108 00000 n +0000169171 00000 n +0000169234 00000 n +0000169297 00000 n +0000169360 00000 n +0000169423 00000 n +0000169486 00000 n +0000169548 00000 n +0000169611 00000 n +0000169674 00000 n +0000169737 00000 n +0000169800 00000 n +0000169863 00000 n +0000174733 00000 n +0000172350 00000 n +0000170064 00000 n +0000172473 00000 n +0000172599 00000 n +0000172662 00000 n +0000172725 00000 n +0000172850 00000 n +0000172912 00000 n +0000172975 00000 n +0000173038 00000 n +0000173101 00000 n +0000173164 00000 n +0000173227 00000 n +0000173290 00000 n +0000173353 00000 n +0000173416 00000 n +0000173477 00000 n +0000173540 00000 n +0000173603 00000 n +0000173666 00000 n +0000173728 00000 n +0000173791 00000 n +0000173854 00000 n +0000173917 00000 n +0000173980 00000 n +0000174043 00000 n +0000174106 00000 n +0000174169 00000 n +0000174232 00000 n +0000174295 00000 n +0000174358 00000 n +0000174421 00000 n +0000174484 00000 n +0000174545 00000 n +0000174608 00000 n +0000174671 00000 n +0000178939 00000 n +0000176808 00000 n +0000174845 00000 n +0000176931 00000 n +0000176995 00000 n +0000177058 00000 n +0000177121 00000 n +0000177184 00000 n +0000177247 00000 n +0000177310 00000 n +0000177373 00000 n +0000177436 00000 n +0000177499 00000 n +0000177562 00000 n +0000177625 00000 n +0000177688 00000 n +0000177751 00000 n +0000177875 00000 n +0000177938 00000 n +0000178001 00000 n +0000178063 00000 n +0000178124 00000 n +0000178187 00000 n +0000178250 00000 n +0000178374 00000 n +0000178437 00000 n +0000178500 00000 n +0000178563 00000 n +0000178688 00000 n +0000178751 00000 n +0000178814 00000 n +0000178877 00000 n +0000181784 00000 n +0000181223 00000 n +0000179064 00000 n +0000181346 00000 n +0000181472 00000 n +0000181597 00000 n +0000181721 00000 n +0000729097 00000 n +0000186170 00000 n +0000184163 00000 n +0000181923 00000 n +0000184286 00000 n +0000184412 00000 n +0000184475 00000 n +0000184538 00000 n +0000184599 00000 n +0000184662 00000 n +0000184725 00000 n +0000184788 00000 n +0000184851 00000 n +0000184914 00000 n +0000185039 00000 n +0000185102 00000 n +0000185165 00000 n +0000185228 00000 n +0000185290 00000 n +0000185353 00000 n +0000185416 00000 n +0000185479 00000 n +0000185541 00000 n +0000185604 00000 n +0000185667 00000 n +0000185730 00000 n +0000185793 00000 n +0000185856 00000 n +0000185919 00000 n +0000185982 00000 n +0000186045 00000 n +0000186107 00000 n +0000191354 00000 n +0000188903 00000 n +0000186308 00000 n +0000189026 00000 n +0000189152 00000 n +0000189215 00000 n +0000189278 00000 n +0000189341 00000 n +0000189404 00000 n +0000189467 00000 n +0000189530 00000 n +0000189592 00000 n +0000189655 00000 n +0000189780 00000 n +0000189843 00000 n +0000189906 00000 n +0000189969 00000 n +0000190032 00000 n +0000190095 00000 n +0000190158 00000 n +0000190283 00000 n +0000190346 00000 n +0000190409 00000 n +0000190472 00000 n +0000190535 00000 n +0000190598 00000 n +0000190661 00000 n +0000190724 00000 n +0000190787 00000 n +0000190850 00000 n +0000190913 00000 n +0000190976 00000 n +0000191039 00000 n +0000191102 00000 n +0000191165 00000 n +0000191228 00000 n +0000191291 00000 n +0000196599 00000 n +0000193899 00000 n +0000191492 00000 n +0000194022 00000 n +0000194086 00000 n +0000194149 00000 n +0000194212 00000 n +0000194275 00000 n +0000194338 00000 n +0000194401 00000 n +0000194464 00000 n +0000194527 00000 n +0000194589 00000 n +0000194652 00000 n +0000194715 00000 n +0000194778 00000 n +0000194841 00000 n +0000194904 00000 n +0000194967 00000 n +0000195030 00000 n +0000195092 00000 n +0000195155 00000 n +0000195218 00000 n +0000195281 00000 n +0000195344 00000 n +0000195407 00000 n +0000195470 00000 n +0000195532 00000 n +0000195595 00000 n +0000195720 00000 n +0000195783 00000 n +0000195846 00000 n +0000195909 00000 n +0000195972 00000 n +0000196034 00000 n +0000196097 00000 n +0000196160 00000 n +0000196223 00000 n +0000196286 00000 n +0000196349 00000 n +0000196410 00000 n +0000196473 00000 n +0000196536 00000 n +0000201407 00000 n +0000199903 00000 n +0000196724 00000 n +0000200026 00000 n +0000200152 00000 n +0000200215 00000 n +0000200277 00000 n +0000200340 00000 n +0000200403 00000 n +0000200466 00000 n +0000200529 00000 n +0000200592 00000 n +0000200655 00000 n +0000200717 00000 n +0000200780 00000 n +0000200905 00000 n +0000200968 00000 n +0000201031 00000 n +0000201094 00000 n +0000201156 00000 n +0000201219 00000 n +0000201344 00000 n +0000205341 00000 n +0000203833 00000 n +0000201545 00000 n +0000203956 00000 n +0000204082 00000 n +0000204145 00000 n +0000204208 00000 n +0000204271 00000 n +0000204334 00000 n +0000204397 00000 n +0000204460 00000 n +0000204523 00000 n +0000204586 00000 n +0000204649 00000 n +0000204711 00000 n +0000204774 00000 n +0000204837 00000 n +0000204900 00000 n +0000204963 00000 n +0000205026 00000 n +0000205089 00000 n +0000205152 00000 n +0000205215 00000 n +0000205278 00000 n +0000210453 00000 n +0000207816 00000 n +0000205492 00000 n +0000207939 00000 n +0000208003 00000 n +0000208066 00000 n +0000208129 00000 n +0000208192 00000 n +0000208255 00000 n +0000208317 00000 n +0000208380 00000 n +0000208443 00000 n +0000208506 00000 n +0000208569 00000 n +0000208692 00000 n +0000208755 00000 n +0000208818 00000 n +0000208881 00000 n +0000208944 00000 n +0000209007 00000 n +0000209070 00000 n +0000209133 00000 n +0000209195 00000 n +0000209258 00000 n +0000209321 00000 n +0000209384 00000 n +0000209447 00000 n +0000209510 00000 n +0000209573 00000 n +0000209636 00000 n +0000209699 00000 n +0000209762 00000 n +0000209825 00000 n +0000209888 00000 n +0000209951 00000 n +0000210014 00000 n +0000210077 00000 n +0000210140 00000 n +0000210203 00000 n +0000210266 00000 n +0000210328 00000 n +0000210391 00000 n +0000729222 00000 n +0000216446 00000 n +0000213491 00000 n +0000210565 00000 n +0000213614 00000 n +0000213678 00000 n +0000213741 00000 n +0000213804 00000 n +0000213867 00000 n +0000213930 00000 n +0000213993 00000 n +0000214055 00000 n +0000214118 00000 n +0000214181 00000 n +0000214244 00000 n +0000214307 00000 n +0000214370 00000 n +0000214433 00000 n +0000214496 00000 n +0000214559 00000 n +0000214621 00000 n +0000214684 00000 n +0000214747 00000 n +0000214810 00000 n +0000214873 00000 n +0000214936 00000 n +0000214998 00000 n +0000215061 00000 n +0000215124 00000 n +0000215187 00000 n +0000215249 00000 n +0000215312 00000 n +0000215375 00000 n +0000215438 00000 n +0000215501 00000 n +0000215564 00000 n +0000215627 00000 n +0000215690 00000 n +0000215753 00000 n +0000215816 00000 n +0000215879 00000 n +0000215942 00000 n +0000216005 00000 n +0000216068 00000 n +0000216131 00000 n +0000216194 00000 n +0000216257 00000 n +0000216320 00000 n +0000216383 00000 n +0000220906 00000 n +0000218708 00000 n +0000216571 00000 n +0000218831 00000 n +0000218895 00000 n +0000218958 00000 n +0000219021 00000 n +0000219084 00000 n +0000219147 00000 n +0000219209 00000 n +0000219272 00000 n +0000219335 00000 n +0000219398 00000 n +0000219461 00000 n +0000219524 00000 n +0000219587 00000 n +0000219650 00000 n +0000219774 00000 n +0000219837 00000 n +0000219900 00000 n +0000219962 00000 n +0000220025 00000 n +0000220088 00000 n +0000220151 00000 n +0000220214 00000 n +0000220277 00000 n +0000220340 00000 n +0000220402 00000 n +0000220465 00000 n +0000220528 00000 n +0000220591 00000 n +0000220654 00000 n +0000220717 00000 n +0000220780 00000 n +0000220843 00000 n +0000225286 00000 n +0000223215 00000 n +0000221018 00000 n +0000223338 00000 n +0000223402 00000 n +0000223465 00000 n +0000223528 00000 n +0000223591 00000 n +0000223654 00000 n +0000223716 00000 n +0000223779 00000 n +0000223842 00000 n +0000223905 00000 n +0000223968 00000 n +0000224031 00000 n +0000224094 00000 n +0000224156 00000 n +0000224219 00000 n +0000224282 00000 n +0000224345 00000 n +0000224406 00000 n +0000224469 00000 n +0000224532 00000 n +0000224595 00000 n +0000224658 00000 n +0000224721 00000 n +0000224784 00000 n +0000224846 00000 n +0000224909 00000 n +0000224972 00000 n +0000225035 00000 n +0000225098 00000 n +0000225160 00000 n +0000225223 00000 n +0000230858 00000 n +0000228220 00000 n +0000225411 00000 n +0000228343 00000 n +0000228407 00000 n +0000228470 00000 n +0000228533 00000 n +0000228596 00000 n +0000228659 00000 n +0000228721 00000 n +0000228784 00000 n +0000228847 00000 n +0000228910 00000 n +0000228972 00000 n +0000229035 00000 n +0000229098 00000 n +0000229161 00000 n +0000229223 00000 n +0000229286 00000 n +0000229349 00000 n +0000229412 00000 n +0000229475 00000 n +0000229538 00000 n +0000229600 00000 n +0000229663 00000 n +0000229726 00000 n +0000229789 00000 n +0000229852 00000 n +0000229915 00000 n +0000229978 00000 n +0000230041 00000 n +0000230104 00000 n +0000230167 00000 n +0000230230 00000 n +0000230293 00000 n +0000230356 00000 n +0000230419 00000 n +0000230482 00000 n +0000230545 00000 n +0000230607 00000 n +0000230670 00000 n +0000230733 00000 n +0000230796 00000 n +0000236829 00000 n +0000233939 00000 n +0000230983 00000 n +0000234062 00000 n +0000234126 00000 n +0000234189 00000 n +0000234252 00000 n +0000234315 00000 n +0000234378 00000 n +0000234441 00000 n +0000234503 00000 n +0000234566 00000 n +0000234629 00000 n +0000234692 00000 n +0000234755 00000 n +0000234818 00000 n +0000234881 00000 n +0000234944 00000 n +0000235007 00000 n +0000235069 00000 n +0000235132 00000 n +0000235195 00000 n +0000235258 00000 n +0000235321 00000 n +0000235384 00000 n +0000235447 00000 n +0000235510 00000 n +0000235573 00000 n +0000235635 00000 n +0000235698 00000 n +0000235823 00000 n +0000235886 00000 n +0000235949 00000 n +0000236012 00000 n +0000236075 00000 n +0000236138 00000 n +0000236201 00000 n +0000236263 00000 n +0000236326 00000 n +0000236389 00000 n +0000236452 00000 n +0000236515 00000 n +0000236578 00000 n +0000236641 00000 n +0000236703 00000 n +0000236766 00000 n +0000242658 00000 n +0000239892 00000 n +0000236941 00000 n +0000240015 00000 n +0000240079 00000 n +0000240142 00000 n +0000240205 00000 n +0000240268 00000 n +0000240331 00000 n +0000240394 00000 n +0000240457 00000 n +0000240520 00000 n +0000240583 00000 n +0000240645 00000 n +0000240708 00000 n +0000240771 00000 n +0000240834 00000 n +0000240897 00000 n +0000240960 00000 n +0000241023 00000 n +0000241086 00000 n +0000241149 00000 n +0000241210 00000 n +0000241273 00000 n +0000241336 00000 n +0000241399 00000 n +0000241462 00000 n +0000241525 00000 n +0000241588 00000 n +0000241651 00000 n +0000241714 00000 n +0000241777 00000 n +0000241840 00000 n +0000241903 00000 n +0000241966 00000 n +0000242029 00000 n +0000242092 00000 n +0000242154 00000 n +0000242217 00000 n +0000242280 00000 n +0000242343 00000 n +0000242406 00000 n +0000242469 00000 n +0000242532 00000 n +0000242595 00000 n +0000729347 00000 n +0000247280 00000 n +0000245146 00000 n +0000242783 00000 n +0000245269 00000 n +0000245333 00000 n +0000245396 00000 n +0000245459 00000 n +0000245522 00000 n +0000245585 00000 n +0000245648 00000 n +0000245711 00000 n +0000245774 00000 n +0000245837 00000 n +0000245900 00000 n +0000245963 00000 n +0000246026 00000 n +0000246089 00000 n +0000246151 00000 n +0000246214 00000 n +0000246277 00000 n +0000246340 00000 n +0000246403 00000 n +0000246466 00000 n +0000246529 00000 n +0000246588 00000 n +0000246651 00000 n +0000246714 00000 n +0000246777 00000 n +0000246840 00000 n +0000246903 00000 n +0000246966 00000 n +0000247029 00000 n +0000247092 00000 n +0000247154 00000 n +0000247217 00000 n +0000252499 00000 n +0000250114 00000 n +0000247405 00000 n +0000250237 00000 n +0000250301 00000 n +0000250364 00000 n +0000250427 00000 n +0000250490 00000 n +0000250553 00000 n +0000250616 00000 n +0000250679 00000 n +0000250742 00000 n +0000250805 00000 n +0000250868 00000 n +0000250931 00000 n +0000250994 00000 n +0000251057 00000 n +0000251120 00000 n +0000251183 00000 n +0000251244 00000 n +0000251307 00000 n +0000251370 00000 n +0000251433 00000 n +0000251496 00000 n +0000251559 00000 n +0000251622 00000 n +0000251746 00000 n +0000251808 00000 n +0000251871 00000 n +0000251934 00000 n +0000251996 00000 n +0000252059 00000 n +0000252122 00000 n +0000252185 00000 n +0000252248 00000 n +0000252310 00000 n +0000252373 00000 n +0000252436 00000 n +0000258260 00000 n +0000255370 00000 n +0000252637 00000 n +0000255493 00000 n +0000255557 00000 n +0000255620 00000 n +0000255683 00000 n +0000255746 00000 n +0000255809 00000 n +0000255872 00000 n +0000255935 00000 n +0000255998 00000 n +0000256061 00000 n +0000256124 00000 n +0000256185 00000 n +0000256248 00000 n +0000256311 00000 n +0000256374 00000 n +0000256437 00000 n +0000256500 00000 n +0000256563 00000 n +0000256626 00000 n +0000256689 00000 n +0000256751 00000 n +0000256814 00000 n +0000256877 00000 n +0000256940 00000 n +0000257003 00000 n +0000257065 00000 n +0000257128 00000 n +0000257191 00000 n +0000257254 00000 n +0000257317 00000 n +0000257380 00000 n +0000257443 00000 n +0000257506 00000 n +0000257569 00000 n +0000257632 00000 n +0000257695 00000 n +0000257758 00000 n +0000257821 00000 n +0000257883 00000 n +0000257946 00000 n +0000258008 00000 n +0000258071 00000 n +0000258134 00000 n +0000258197 00000 n +0000264258 00000 n +0000261301 00000 n +0000258359 00000 n +0000261424 00000 n +0000261488 00000 n +0000261551 00000 n +0000261614 00000 n +0000261677 00000 n +0000261740 00000 n +0000261803 00000 n +0000261866 00000 n +0000261929 00000 n +0000261992 00000 n +0000262055 00000 n +0000262118 00000 n +0000262181 00000 n +0000262244 00000 n +0000262307 00000 n +0000262370 00000 n +0000262433 00000 n +0000262495 00000 n +0000262558 00000 n +0000262621 00000 n +0000262684 00000 n +0000262747 00000 n +0000262810 00000 n +0000262873 00000 n +0000262936 00000 n +0000262999 00000 n +0000263061 00000 n +0000263124 00000 n +0000263187 00000 n +0000263250 00000 n +0000263313 00000 n +0000263376 00000 n +0000263439 00000 n +0000263502 00000 n +0000263565 00000 n +0000263628 00000 n +0000263691 00000 n +0000263754 00000 n +0000263817 00000 n +0000263880 00000 n +0000263943 00000 n +0000264006 00000 n +0000264069 00000 n +0000264132 00000 n +0000264195 00000 n +0000269528 00000 n +0000266888 00000 n +0000264357 00000 n +0000267011 00000 n +0000267075 00000 n +0000267138 00000 n +0000267201 00000 n +0000267264 00000 n +0000267327 00000 n +0000267389 00000 n +0000267452 00000 n +0000267515 00000 n +0000267578 00000 n +0000267641 00000 n +0000267704 00000 n +0000267766 00000 n +0000267829 00000 n +0000267892 00000 n +0000267955 00000 n +0000268018 00000 n +0000268081 00000 n +0000268143 00000 n +0000268206 00000 n +0000268269 00000 n +0000268332 00000 n +0000268395 00000 n +0000268458 00000 n +0000268521 00000 n +0000268584 00000 n +0000268647 00000 n +0000268710 00000 n +0000268773 00000 n +0000268836 00000 n +0000268899 00000 n +0000268962 00000 n +0000269025 00000 n +0000269087 00000 n +0000269150 00000 n +0000269213 00000 n +0000269276 00000 n +0000269339 00000 n +0000269402 00000 n +0000269465 00000 n +0000274590 00000 n +0000272012 00000 n +0000269627 00000 n +0000272135 00000 n +0000272199 00000 n +0000272262 00000 n +0000272325 00000 n +0000272388 00000 n +0000272451 00000 n +0000272514 00000 n +0000272577 00000 n +0000272640 00000 n +0000272703 00000 n +0000272766 00000 n +0000272829 00000 n +0000272892 00000 n +0000272955 00000 n +0000273018 00000 n +0000273081 00000 n +0000273144 00000 n +0000273207 00000 n +0000273270 00000 n +0000273333 00000 n +0000273396 00000 n +0000273459 00000 n +0000273522 00000 n +0000273585 00000 n +0000273647 00000 n +0000273710 00000 n +0000273773 00000 n +0000273836 00000 n +0000273899 00000 n +0000273962 00000 n +0000274025 00000 n +0000274087 00000 n +0000274150 00000 n +0000274213 00000 n +0000274276 00000 n +0000274339 00000 n +0000274401 00000 n +0000274464 00000 n +0000274527 00000 n +0000729472 00000 n +0000280516 00000 n +0000277441 00000 n +0000274689 00000 n +0000277564 00000 n +0000277628 00000 n +0000277691 00000 n +0000277754 00000 n +0000277816 00000 n +0000277879 00000 n +0000277942 00000 n +0000278005 00000 n +0000278068 00000 n +0000278131 00000 n +0000278194 00000 n +0000278257 00000 n +0000278320 00000 n +0000278382 00000 n +0000278445 00000 n +0000278508 00000 n +0000278571 00000 n +0000278634 00000 n +0000278697 00000 n +0000278760 00000 n +0000278822 00000 n +0000278885 00000 n +0000278948 00000 n +0000279011 00000 n +0000279074 00000 n +0000279137 00000 n +0000279200 00000 n +0000279263 00000 n +0000279326 00000 n +0000279388 00000 n +0000279451 00000 n +0000279514 00000 n +0000279577 00000 n +0000279640 00000 n +0000279703 00000 n +0000279766 00000 n +0000279829 00000 n +0000279892 00000 n +0000279954 00000 n +0000280017 00000 n +0000280080 00000 n +0000280143 00000 n +0000280206 00000 n +0000280269 00000 n +0000280332 00000 n +0000280395 00000 n +0000280458 00000 n +0000286491 00000 n +0000283410 00000 n +0000280615 00000 n +0000283533 00000 n +0000283597 00000 n +0000283660 00000 n +0000283723 00000 n +0000283786 00000 n +0000283849 00000 n +0000283912 00000 n +0000283975 00000 n +0000284038 00000 n +0000284101 00000 n +0000284164 00000 n +0000284226 00000 n +0000284289 00000 n +0000284352 00000 n +0000284415 00000 n +0000284478 00000 n +0000284541 00000 n +0000284604 00000 n +0000284667 00000 n +0000284730 00000 n +0000284793 00000 n +0000284856 00000 n +0000284919 00000 n +0000284982 00000 n +0000285045 00000 n +0000285108 00000 n +0000285171 00000 n +0000285234 00000 n +0000285297 00000 n +0000285359 00000 n +0000285422 00000 n +0000285485 00000 n +0000285548 00000 n +0000285610 00000 n +0000285673 00000 n +0000285736 00000 n +0000285799 00000 n +0000285862 00000 n +0000285925 00000 n +0000285987 00000 n +0000286050 00000 n +0000286113 00000 n +0000286176 00000 n +0000286239 00000 n +0000286302 00000 n +0000286365 00000 n +0000286428 00000 n +0000292452 00000 n +0000289310 00000 n +0000286590 00000 n +0000289433 00000 n +0000289497 00000 n +0000289560 00000 n +0000289623 00000 n +0000289686 00000 n +0000289749 00000 n +0000289812 00000 n +0000289875 00000 n +0000289937 00000 n +0000290000 00000 n +0000290063 00000 n +0000290126 00000 n +0000290189 00000 n +0000290252 00000 n +0000290315 00000 n +0000290378 00000 n +0000290441 00000 n +0000290504 00000 n +0000290567 00000 n +0000290630 00000 n +0000290693 00000 n +0000290755 00000 n +0000290818 00000 n +0000290881 00000 n +0000290944 00000 n +0000291007 00000 n +0000291070 00000 n +0000291133 00000 n +0000291195 00000 n +0000291258 00000 n +0000291321 00000 n +0000291384 00000 n +0000291447 00000 n +0000291510 00000 n +0000291573 00000 n +0000291636 00000 n +0000291699 00000 n +0000291761 00000 n +0000291824 00000 n +0000291887 00000 n +0000291950 00000 n +0000292013 00000 n +0000292076 00000 n +0000292139 00000 n +0000292202 00000 n +0000292265 00000 n +0000292327 00000 n +0000292390 00000 n +0000298190 00000 n +0000295364 00000 n +0000292551 00000 n +0000295487 00000 n +0000295551 00000 n +0000295614 00000 n +0000295677 00000 n +0000295740 00000 n +0000295803 00000 n +0000295866 00000 n +0000295929 00000 n +0000295992 00000 n +0000296055 00000 n +0000296118 00000 n +0000296181 00000 n +0000296244 00000 n +0000296307 00000 n +0000296370 00000 n +0000296433 00000 n +0000296496 00000 n +0000296559 00000 n +0000296622 00000 n +0000296685 00000 n +0000296748 00000 n +0000296811 00000 n +0000296874 00000 n +0000296937 00000 n +0000297000 00000 n +0000297063 00000 n +0000297126 00000 n +0000297189 00000 n +0000297252 00000 n +0000297315 00000 n +0000297378 00000 n +0000297440 00000 n +0000297503 00000 n +0000297566 00000 n +0000297629 00000 n +0000297692 00000 n +0000297755 00000 n +0000297818 00000 n +0000297881 00000 n +0000297943 00000 n +0000298006 00000 n +0000298069 00000 n +0000298132 00000 n +0000303394 00000 n +0000301008 00000 n +0000298289 00000 n +0000301131 00000 n +0000301195 00000 n +0000301258 00000 n +0000301320 00000 n +0000301383 00000 n +0000301446 00000 n +0000301509 00000 n +0000301572 00000 n +0000301696 00000 n +0000301759 00000 n +0000301822 00000 n +0000301885 00000 n +0000301948 00000 n +0000302011 00000 n +0000302074 00000 n +0000302137 00000 n +0000302200 00000 n +0000302263 00000 n +0000302326 00000 n +0000302389 00000 n +0000302452 00000 n +0000302515 00000 n +0000302578 00000 n +0000302641 00000 n +0000302703 00000 n +0000302766 00000 n +0000302829 00000 n +0000302892 00000 n +0000302955 00000 n +0000303018 00000 n +0000303081 00000 n +0000303144 00000 n +0000303207 00000 n +0000303269 00000 n +0000303332 00000 n +0000309002 00000 n +0000306111 00000 n +0000303532 00000 n +0000306234 00000 n +0000306298 00000 n +0000306361 00000 n +0000306424 00000 n +0000306487 00000 n +0000306550 00000 n +0000306613 00000 n +0000306675 00000 n +0000306738 00000 n +0000306801 00000 n +0000306864 00000 n +0000306927 00000 n +0000306990 00000 n +0000307053 00000 n +0000307116 00000 n +0000307179 00000 n +0000307241 00000 n +0000307304 00000 n +0000307367 00000 n +0000307430 00000 n +0000307493 00000 n +0000307556 00000 n +0000307619 00000 n +0000307681 00000 n +0000307744 00000 n +0000307807 00000 n +0000307870 00000 n +0000307933 00000 n +0000308058 00000 n +0000308121 00000 n +0000308184 00000 n +0000308247 00000 n +0000308310 00000 n +0000308373 00000 n +0000308498 00000 n +0000308561 00000 n +0000308624 00000 n +0000308687 00000 n +0000308750 00000 n +0000308813 00000 n +0000308876 00000 n +0000308939 00000 n +0000729597 00000 n +0000313445 00000 n +0000311372 00000 n +0000309140 00000 n +0000311495 00000 n +0000311559 00000 n +0000311622 00000 n +0000311685 00000 n +0000311748 00000 n +0000311811 00000 n +0000311874 00000 n +0000311937 00000 n +0000312062 00000 n +0000312125 00000 n +0000312188 00000 n +0000312251 00000 n +0000312314 00000 n +0000312377 00000 n +0000312501 00000 n +0000312564 00000 n +0000312627 00000 n +0000312690 00000 n +0000312753 00000 n +0000312816 00000 n +0000312879 00000 n +0000312942 00000 n +0000313005 00000 n +0000313068 00000 n +0000313131 00000 n +0000313194 00000 n +0000313256 00000 n +0000313319 00000 n +0000313382 00000 n +0000317132 00000 n +0000315375 00000 n +0000313583 00000 n +0000315498 00000 n +0000315562 00000 n +0000315625 00000 n +0000315688 00000 n +0000315751 00000 n +0000315814 00000 n +0000315876 00000 n +0000315939 00000 n +0000316002 00000 n +0000316065 00000 n +0000316128 00000 n +0000316191 00000 n +0000316254 00000 n +0000316379 00000 n +0000316442 00000 n +0000316504 00000 n +0000316567 00000 n +0000316629 00000 n +0000316692 00000 n +0000316755 00000 n +0000316818 00000 n +0000316943 00000 n +0000317006 00000 n +0000317069 00000 n +0000322931 00000 n +0000320166 00000 n +0000317257 00000 n +0000320289 00000 n +0000320415 00000 n +0000320478 00000 n +0000320541 00000 n +0000320604 00000 n +0000320667 00000 n +0000320730 00000 n +0000320792 00000 n +0000320855 00000 n +0000320918 00000 n +0000320981 00000 n +0000321044 00000 n +0000321107 00000 n +0000321170 00000 n +0000321233 00000 n +0000321296 00000 n +0000321359 00000 n +0000321422 00000 n +0000321485 00000 n +0000321548 00000 n +0000321611 00000 n +0000321674 00000 n +0000321737 00000 n +0000321799 00000 n +0000321862 00000 n +0000321925 00000 n +0000321988 00000 n +0000322051 00000 n +0000322114 00000 n +0000322177 00000 n +0000322240 00000 n +0000322303 00000 n +0000322365 00000 n +0000322428 00000 n +0000322491 00000 n +0000322554 00000 n +0000322617 00000 n +0000322680 00000 n +0000322742 00000 n +0000322805 00000 n +0000322868 00000 n +0000329492 00000 n +0000326040 00000 n +0000323056 00000 n +0000326163 00000 n +0000326227 00000 n +0000326290 00000 n +0000326353 00000 n +0000326416 00000 n +0000326479 00000 n +0000326542 00000 n +0000326605 00000 n +0000326667 00000 n +0000326730 00000 n +0000326793 00000 n +0000326856 00000 n +0000326919 00000 n +0000326982 00000 n +0000327045 00000 n +0000327108 00000 n +0000327171 00000 n +0000327232 00000 n +0000327295 00000 n +0000327358 00000 n +0000327421 00000 n +0000327484 00000 n +0000327547 00000 n +0000327610 00000 n +0000327673 00000 n +0000327736 00000 n +0000327799 00000 n +0000327862 00000 n +0000327925 00000 n +0000327988 00000 n +0000328051 00000 n +0000328114 00000 n +0000328177 00000 n +0000328239 00000 n +0000328302 00000 n +0000328365 00000 n +0000328428 00000 n +0000328491 00000 n +0000328554 00000 n +0000328617 00000 n +0000328680 00000 n +0000328743 00000 n +0000328805 00000 n +0000328868 00000 n +0000328931 00000 n +0000328994 00000 n +0000329057 00000 n +0000329120 00000 n +0000329183 00000 n +0000329246 00000 n +0000329305 00000 n +0000329368 00000 n +0000329430 00000 n +0000334091 00000 n +0000331828 00000 n +0000329604 00000 n +0000331951 00000 n +0000332015 00000 n +0000332078 00000 n +0000332140 00000 n +0000332203 00000 n +0000332266 00000 n +0000332329 00000 n +0000332392 00000 n +0000332455 00000 n +0000332518 00000 n +0000332581 00000 n +0000332644 00000 n +0000332707 00000 n +0000332770 00000 n +0000332833 00000 n +0000332895 00000 n +0000332958 00000 n +0000333021 00000 n +0000333084 00000 n +0000333147 00000 n +0000333210 00000 n +0000333273 00000 n +0000333336 00000 n +0000333399 00000 n +0000333462 00000 n +0000333525 00000 n +0000333587 00000 n +0000333650 00000 n +0000333713 00000 n +0000333776 00000 n +0000333839 00000 n +0000333902 00000 n +0000333965 00000 n +0000334028 00000 n +0000339009 00000 n +0000336622 00000 n +0000334216 00000 n +0000336745 00000 n +0000336871 00000 n +0000336934 00000 n +0000336997 00000 n +0000337060 00000 n +0000337123 00000 n +0000337186 00000 n +0000337311 00000 n +0000337374 00000 n +0000337436 00000 n +0000337499 00000 n +0000337561 00000 n +0000337624 00000 n +0000337687 00000 n +0000337750 00000 n +0000337813 00000 n +0000337876 00000 n +0000337939 00000 n +0000338002 00000 n +0000338065 00000 n +0000338127 00000 n +0000338190 00000 n +0000338253 00000 n +0000338316 00000 n +0000338379 00000 n +0000338442 00000 n +0000338505 00000 n +0000338568 00000 n +0000338631 00000 n +0000338694 00000 n +0000338757 00000 n +0000338820 00000 n +0000338883 00000 n +0000338946 00000 n +0000729722 00000 n +0000343210 00000 n +0000340953 00000 n +0000339121 00000 n +0000341076 00000 n +0000341202 00000 n +0000341265 00000 n +0000341328 00000 n +0000341390 00000 n +0000341453 00000 n +0000341516 00000 n +0000341579 00000 n +0000341642 00000 n +0000341767 00000 n +0000341830 00000 n +0000341893 00000 n +0000341955 00000 n +0000342018 00000 n +0000342080 00000 n +0000342143 00000 n +0000342206 00000 n +0000342269 00000 n +0000342332 00000 n +0000342395 00000 n +0000342519 00000 n +0000342582 00000 n +0000342645 00000 n +0000342708 00000 n +0000342771 00000 n +0000342834 00000 n +0000342897 00000 n +0000342960 00000 n +0000343022 00000 n +0000343085 00000 n +0000343147 00000 n +0000346734 00000 n +0000345043 00000 n +0000343322 00000 n +0000345166 00000 n +0000345292 00000 n +0000345355 00000 n +0000345418 00000 n +0000345481 00000 n +0000345544 00000 n +0000345607 00000 n +0000345670 00000 n +0000345733 00000 n +0000345796 00000 n +0000345859 00000 n +0000345922 00000 n +0000346046 00000 n +0000346171 00000 n +0000346296 00000 n +0000346359 00000 n +0000346422 00000 n +0000346485 00000 n +0000346548 00000 n +0000346671 00000 n +0000352647 00000 n +0000349886 00000 n +0000346872 00000 n +0000350009 00000 n +0000350073 00000 n +0000350136 00000 n +0000350199 00000 n +0000350262 00000 n +0000350325 00000 n +0000350388 00000 n +0000350451 00000 n +0000350513 00000 n +0000350576 00000 n +0000350639 00000 n +0000350702 00000 n +0000350825 00000 n +0000350888 00000 n +0000350951 00000 n +0000351013 00000 n +0000351076 00000 n +0000351139 00000 n +0000351202 00000 n +0000351265 00000 n +0000351328 00000 n +0000351390 00000 n +0000351453 00000 n +0000351516 00000 n +0000351579 00000 n +0000351641 00000 n +0000351704 00000 n +0000351766 00000 n +0000351829 00000 n +0000351892 00000 n +0000351955 00000 n +0000352018 00000 n +0000352081 00000 n +0000352144 00000 n +0000352207 00000 n +0000352270 00000 n +0000352333 00000 n +0000352396 00000 n +0000352459 00000 n +0000352522 00000 n +0000352585 00000 n +0000356157 00000 n +0000354275 00000 n +0000352785 00000 n +0000354398 00000 n +0000354524 00000 n +0000354587 00000 n +0000354650 00000 n +0000354713 00000 n +0000354776 00000 n +0000354839 00000 n +0000354964 00000 n +0000355027 00000 n +0000355090 00000 n +0000355153 00000 n +0000355278 00000 n +0000355341 00000 n +0000355404 00000 n +0000355467 00000 n +0000355592 00000 n +0000355655 00000 n +0000355718 00000 n +0000355781 00000 n +0000355906 00000 n +0000355969 00000 n +0000356032 00000 n +0000356095 00000 n +0000359212 00000 n +0000360296 00000 n +0000359068 00000 n +0000356269 00000 n +0000359418 00000 n +0000359544 00000 n +0000359607 00000 n +0000359670 00000 n +0000359733 00000 n +0000359796 00000 n +0000359859 00000 n +0000359983 00000 n +0000726594 00000 n +0000360108 00000 n +0000360171 00000 n +0000360234 00000 n +0000364929 00000 n +0000362730 00000 n +0000360463 00000 n +0000362853 00000 n +0000362917 00000 n +0000362980 00000 n +0000363043 00000 n +0000363106 00000 n +0000363169 00000 n +0000363232 00000 n +0000363295 00000 n +0000363358 00000 n +0000363421 00000 n +0000363484 00000 n +0000363547 00000 n +0000363610 00000 n +0000363673 00000 n +0000363736 00000 n +0000363799 00000 n +0000363862 00000 n +0000363925 00000 n +0000363986 00000 n +0000364111 00000 n +0000364174 00000 n +0000364237 00000 n +0000364300 00000 n +0000364363 00000 n +0000364426 00000 n +0000364489 00000 n +0000364552 00000 n +0000364615 00000 n +0000364678 00000 n +0000364741 00000 n +0000364803 00000 n +0000364866 00000 n +0000729847 00000 n +0000369462 00000 n +0000367200 00000 n +0000365067 00000 n +0000367323 00000 n +0000367387 00000 n +0000367450 00000 n +0000367513 00000 n +0000367576 00000 n +0000367639 00000 n +0000367702 00000 n +0000367765 00000 n +0000367828 00000 n +0000367891 00000 n +0000367954 00000 n +0000368016 00000 n +0000368079 00000 n +0000368204 00000 n +0000368267 00000 n +0000368330 00000 n +0000368393 00000 n +0000368456 00000 n +0000368519 00000 n +0000368582 00000 n +0000368645 00000 n +0000368708 00000 n +0000368771 00000 n +0000368833 00000 n +0000368896 00000 n +0000368959 00000 n +0000369022 00000 n +0000369085 00000 n +0000369148 00000 n +0000369210 00000 n +0000369273 00000 n +0000369336 00000 n +0000369399 00000 n +0000374260 00000 n +0000371872 00000 n +0000369574 00000 n +0000371995 00000 n +0000372059 00000 n +0000372122 00000 n +0000372185 00000 n +0000372248 00000 n +0000372311 00000 n +0000372374 00000 n +0000372437 00000 n +0000372500 00000 n +0000372563 00000 n +0000372626 00000 n +0000372688 00000 n +0000372751 00000 n +0000372814 00000 n +0000372877 00000 n +0000372940 00000 n +0000373002 00000 n +0000373065 00000 n +0000373128 00000 n +0000373191 00000 n +0000373254 00000 n +0000373316 00000 n +0000373379 00000 n +0000373442 00000 n +0000373505 00000 n +0000373568 00000 n +0000373631 00000 n +0000373694 00000 n +0000373757 00000 n +0000373820 00000 n +0000373883 00000 n +0000373946 00000 n +0000374009 00000 n +0000374072 00000 n +0000374135 00000 n +0000374198 00000 n +0000379830 00000 n +0000377131 00000 n +0000374385 00000 n +0000377254 00000 n +0000377380 00000 n +0000377443 00000 n +0000377506 00000 n +0000377569 00000 n +0000377632 00000 n +0000377694 00000 n +0000377757 00000 n +0000377819 00000 n +0000377882 00000 n +0000377945 00000 n +0000378008 00000 n +0000378071 00000 n +0000378134 00000 n +0000378196 00000 n +0000378259 00000 n +0000378322 00000 n +0000378385 00000 n +0000378448 00000 n +0000378510 00000 n +0000378573 00000 n +0000378636 00000 n +0000378699 00000 n +0000378761 00000 n +0000378824 00000 n +0000378887 00000 n +0000378950 00000 n +0000379013 00000 n +0000379076 00000 n +0000379138 00000 n +0000379201 00000 n +0000379264 00000 n +0000379327 00000 n +0000379390 00000 n +0000379453 00000 n +0000379515 00000 n +0000379578 00000 n +0000379641 00000 n +0000379704 00000 n +0000379767 00000 n +0000384673 00000 n +0000382407 00000 n +0000379942 00000 n +0000382530 00000 n +0000382594 00000 n +0000382657 00000 n +0000382720 00000 n +0000382783 00000 n +0000382846 00000 n +0000382909 00000 n +0000382972 00000 n +0000383035 00000 n +0000383098 00000 n +0000383161 00000 n +0000383224 00000 n +0000383287 00000 n +0000383350 00000 n +0000383413 00000 n +0000383476 00000 n +0000383539 00000 n +0000383602 00000 n +0000383665 00000 n +0000383728 00000 n +0000383791 00000 n +0000383854 00000 n +0000383917 00000 n +0000383980 00000 n +0000384043 00000 n +0000384106 00000 n +0000384169 00000 n +0000384232 00000 n +0000384295 00000 n +0000384358 00000 n +0000384421 00000 n +0000384484 00000 n +0000384547 00000 n +0000384610 00000 n +0000390040 00000 n +0000387466 00000 n +0000384798 00000 n +0000387589 00000 n +0000387653 00000 n +0000387716 00000 n +0000387779 00000 n +0000387842 00000 n +0000387905 00000 n +0000387968 00000 n +0000388031 00000 n +0000388093 00000 n +0000388156 00000 n +0000388219 00000 n +0000388282 00000 n +0000388345 00000 n +0000388408 00000 n +0000388471 00000 n +0000388594 00000 n +0000388657 00000 n +0000388720 00000 n +0000388782 00000 n +0000388845 00000 n +0000388908 00000 n +0000388971 00000 n +0000389034 00000 n +0000389097 00000 n +0000389160 00000 n +0000389223 00000 n +0000389286 00000 n +0000389348 00000 n +0000389411 00000 n +0000389474 00000 n +0000389537 00000 n +0000389600 00000 n +0000389663 00000 n +0000389726 00000 n +0000389789 00000 n +0000389852 00000 n +0000389915 00000 n +0000389977 00000 n +0000396989 00000 n +0000393531 00000 n +0000390178 00000 n +0000393654 00000 n +0000393718 00000 n +0000393781 00000 n +0000393844 00000 n +0000393907 00000 n +0000393970 00000 n +0000394033 00000 n +0000394096 00000 n +0000394159 00000 n +0000394222 00000 n +0000394285 00000 n +0000394347 00000 n +0000394410 00000 n +0000394473 00000 n +0000394536 00000 n +0000394599 00000 n +0000394662 00000 n +0000394725 00000 n +0000394788 00000 n +0000394851 00000 n +0000394914 00000 n +0000394977 00000 n +0000395040 00000 n +0000395103 00000 n +0000395166 00000 n +0000395229 00000 n +0000395292 00000 n +0000395355 00000 n +0000395418 00000 n +0000395481 00000 n +0000395544 00000 n +0000395607 00000 n +0000395670 00000 n +0000395732 00000 n +0000395795 00000 n +0000395858 00000 n +0000395921 00000 n +0000395984 00000 n +0000396047 00000 n +0000396109 00000 n +0000396172 00000 n +0000396235 00000 n +0000396298 00000 n +0000396361 00000 n +0000396424 00000 n +0000396487 00000 n +0000396550 00000 n +0000396613 00000 n +0000396675 00000 n +0000396738 00000 n +0000396801 00000 n +0000396864 00000 n +0000396927 00000 n +0000729972 00000 n +0000404217 00000 n +0000400572 00000 n +0000397101 00000 n +0000400695 00000 n +0000400759 00000 n +0000400821 00000 n +0000400884 00000 n +0000400947 00000 n +0000401010 00000 n +0000401073 00000 n +0000401136 00000 n +0000401199 00000 n +0000401261 00000 n +0000401324 00000 n +0000401387 00000 n +0000401450 00000 n +0000401513 00000 n +0000401576 00000 n +0000401639 00000 n +0000401702 00000 n +0000401765 00000 n +0000401827 00000 n +0000401890 00000 n +0000401953 00000 n +0000402016 00000 n +0000402079 00000 n +0000402142 00000 n +0000402205 00000 n +0000402268 00000 n +0000402331 00000 n +0000402394 00000 n +0000402457 00000 n +0000402520 00000 n +0000402583 00000 n +0000402646 00000 n +0000402709 00000 n +0000402772 00000 n +0000402835 00000 n +0000402898 00000 n +0000402960 00000 n +0000403023 00000 n +0000403086 00000 n +0000403149 00000 n +0000403212 00000 n +0000403275 00000 n +0000403338 00000 n +0000403401 00000 n +0000403464 00000 n +0000403526 00000 n +0000403589 00000 n +0000403652 00000 n +0000403715 00000 n +0000403778 00000 n +0000403841 00000 n +0000403904 00000 n +0000403967 00000 n +0000404030 00000 n +0000404092 00000 n +0000404155 00000 n +0000408734 00000 n +0000406603 00000 n +0000404329 00000 n +0000406726 00000 n +0000406790 00000 n +0000406853 00000 n +0000406916 00000 n +0000406979 00000 n +0000407042 00000 n +0000407105 00000 n +0000407167 00000 n +0000407230 00000 n +0000407293 00000 n +0000407356 00000 n +0000407419 00000 n +0000407482 00000 n +0000407607 00000 n +0000407670 00000 n +0000407733 00000 n +0000407796 00000 n +0000407859 00000 n +0000407984 00000 n +0000408043 00000 n +0000408105 00000 n +0000408168 00000 n +0000408231 00000 n +0000408294 00000 n +0000408419 00000 n +0000408482 00000 n +0000408545 00000 n +0000408608 00000 n +0000408671 00000 n +0000413778 00000 n +0000411390 00000 n +0000408872 00000 n +0000411513 00000 n +0000411639 00000 n +0000411702 00000 n +0000411765 00000 n +0000411828 00000 n +0000411891 00000 n +0000411954 00000 n +0000412016 00000 n +0000412079 00000 n +0000412142 00000 n +0000412205 00000 n +0000412267 00000 n +0000412330 00000 n +0000412393 00000 n +0000412456 00000 n +0000412519 00000 n +0000412582 00000 n +0000412645 00000 n +0000412708 00000 n +0000412771 00000 n +0000412833 00000 n +0000412896 00000 n +0000412959 00000 n +0000413022 00000 n +0000413085 00000 n +0000413148 00000 n +0000413211 00000 n +0000413274 00000 n +0000413337 00000 n +0000413400 00000 n +0000413463 00000 n +0000413526 00000 n +0000413589 00000 n +0000413652 00000 n +0000413715 00000 n +0000418263 00000 n +0000416129 00000 n +0000413903 00000 n +0000416252 00000 n +0000416316 00000 n +0000416379 00000 n +0000416442 00000 n +0000416505 00000 n +0000416568 00000 n +0000416630 00000 n +0000416693 00000 n +0000416755 00000 n +0000416818 00000 n +0000416881 00000 n +0000416944 00000 n +0000417007 00000 n +0000417070 00000 n +0000417133 00000 n +0000417196 00000 n +0000417259 00000 n +0000417322 00000 n +0000417385 00000 n +0000417448 00000 n +0000417510 00000 n +0000417573 00000 n +0000417636 00000 n +0000417699 00000 n +0000417762 00000 n +0000417823 00000 n +0000417886 00000 n +0000417949 00000 n +0000418074 00000 n +0000418137 00000 n +0000418200 00000 n +0000422464 00000 n +0000420519 00000 n +0000418401 00000 n +0000420642 00000 n +0000420768 00000 n +0000420831 00000 n +0000420894 00000 n +0000421019 00000 n +0000421082 00000 n +0000421145 00000 n +0000421208 00000 n +0000421333 00000 n +0000421395 00000 n +0000421457 00000 n +0000421520 00000 n +0000421583 00000 n +0000421646 00000 n +0000421771 00000 n +0000421834 00000 n +0000421897 00000 n +0000421960 00000 n +0000422023 00000 n +0000422086 00000 n +0000422149 00000 n +0000422212 00000 n +0000422275 00000 n +0000422338 00000 n +0000422401 00000 n +0000427600 00000 n +0000426155 00000 n +0000422602 00000 n +0000426278 00000 n +0000426404 00000 n +0000426467 00000 n +0000426530 00000 n +0000426593 00000 n +0000426656 00000 n +0000426719 00000 n +0000426782 00000 n +0000426845 00000 n +0000426908 00000 n +0000426971 00000 n +0000427034 00000 n +0000427097 00000 n +0000427160 00000 n +0000427223 00000 n +0000427286 00000 n +0000427349 00000 n +0000427412 00000 n +0000427537 00000 n +0000728179 00000 n +0000727647 00000 n +0000730097 00000 n +0000430614 00000 n +0000430302 00000 n +0000427795 00000 n +0000430425 00000 n +0000726769 00000 n +0000430551 00000 n +0000432507 00000 n +0000432070 00000 n +0000430768 00000 n +0000432193 00000 n +0000432319 00000 n +0000432444 00000 n +0000434882 00000 n +0000434446 00000 n +0000432619 00000 n +0000434569 00000 n +0000434695 00000 n +0000434820 00000 n +0000436936 00000 n +0000436499 00000 n +0000434994 00000 n +0000436622 00000 n +0000436748 00000 n +0000436873 00000 n +0000439593 00000 n +0000438906 00000 n +0000437048 00000 n +0000439029 00000 n +0000439155 00000 n +0000439280 00000 n +0000439405 00000 n +0000439530 00000 n +0000441949 00000 n +0000441263 00000 n +0000439705 00000 n +0000441386 00000 n +0000441512 00000 n +0000441637 00000 n +0000441762 00000 n +0000441886 00000 n +0000730222 00000 n +0000444347 00000 n +0000444515 00000 n +0000444700 00000 n +0000445338 00000 n +0000444185 00000 n +0000442061 00000 n +0000444901 00000 n +0000445027 00000 n +0000445151 00000 n +0000445275 00000 n +0000447596 00000 n +0000447159 00000 n +0000445477 00000 n +0000447282 00000 n +0000447408 00000 n +0000447533 00000 n +0000449647 00000 n +0000449460 00000 n +0000447708 00000 n +0000449583 00000 n +0000451964 00000 n +0000451403 00000 n +0000449746 00000 n +0000451526 00000 n +0000451652 00000 n +0000451777 00000 n +0000451901 00000 n +0000454182 00000 n +0000453624 00000 n +0000452076 00000 n +0000453747 00000 n +0000453871 00000 n +0000453995 00000 n +0000454120 00000 n +0000456142 00000 n +0000456853 00000 n +0000455998 00000 n +0000454294 00000 n +0000456290 00000 n +0000456416 00000 n +0000456541 00000 n +0000456665 00000 n +0000456790 00000 n +0000730347 00000 n +0000459664 00000 n +0000459352 00000 n +0000456965 00000 n +0000459475 00000 n +0000459601 00000 n +0000462319 00000 n +0000461883 00000 n +0000459776 00000 n +0000462006 00000 n +0000462132 00000 n +0000462257 00000 n +0000464869 00000 n +0000464682 00000 n +0000462445 00000 n +0000464805 00000 n +0000467603 00000 n +0000467416 00000 n +0000464982 00000 n +0000467539 00000 n +0000470857 00000 n +0000470670 00000 n +0000467716 00000 n +0000470793 00000 n +0000473960 00000 n +0000473648 00000 n +0000470970 00000 n +0000473771 00000 n +0000473897 00000 n +0000730472 00000 n +0000476856 00000 n +0000476669 00000 n +0000474086 00000 n +0000476792 00000 n +0000479780 00000 n +0000479593 00000 n +0000476969 00000 n +0000479716 00000 n +0000483221 00000 n +0000482909 00000 n +0000479893 00000 n +0000483032 00000 n +0000483158 00000 n +0000486014 00000 n +0000485827 00000 n +0000483347 00000 n +0000485950 00000 n +0000490045 00000 n +0000489858 00000 n +0000486127 00000 n +0000489981 00000 n +0000493956 00000 n +0000493645 00000 n +0000490158 00000 n +0000493768 00000 n +0000493894 00000 n +0000730597 00000 n +0000497056 00000 n +0000496869 00000 n +0000494082 00000 n +0000496992 00000 n +0000499825 00000 n +0000499638 00000 n +0000497169 00000 n +0000499761 00000 n +0000502890 00000 n +0000502703 00000 n +0000499938 00000 n +0000502826 00000 n +0000506390 00000 n +0000506078 00000 n +0000503003 00000 n +0000506201 00000 n +0000506327 00000 n +0000511613 00000 n +0000511766 00000 n +0000508849 00000 n +0000508287 00000 n +0000506516 00000 n +0000508410 00000 n +0000508536 00000 n +0000508661 00000 n +0000508786 00000 n +0000512228 00000 n +0000511460 00000 n +0000508988 00000 n +0000511914 00000 n +0000512040 00000 n +0000512165 00000 n +0000730722 00000 n +0000520446 00000 n +0000515559 00000 n +0000514997 00000 n +0000512367 00000 n +0000515120 00000 n +0000515246 00000 n +0000515371 00000 n +0000515496 00000 n +0000520509 00000 n +0000520197 00000 n +0000515698 00000 n +0000520320 00000 n +0000524523 00000 n +0000524147 00000 n +0000520650 00000 n +0000524270 00000 n +0000524334 00000 n +0000524397 00000 n +0000524460 00000 n +0000529343 00000 n +0000527389 00000 n +0000524664 00000 n +0000527512 00000 n +0000527576 00000 n +0000527639 00000 n +0000527702 00000 n +0000527765 00000 n +0000527828 00000 n +0000726443 00000 n +0000527892 00000 n +0000527955 00000 n +0000528018 00000 n +0000528081 00000 n +0000528145 00000 n +0000528207 00000 n +0000528270 00000 n +0000528333 00000 n +0000528397 00000 n +0000528460 00000 n +0000528524 00000 n +0000528587 00000 n +0000528651 00000 n +0000528714 00000 n +0000528777 00000 n +0000528840 00000 n +0000528903 00000 n +0000528966 00000 n +0000529029 00000 n +0000529091 00000 n +0000529154 00000 n +0000529217 00000 n +0000529280 00000 n +0000533579 00000 n +0000532636 00000 n +0000529495 00000 n +0000532759 00000 n +0000532823 00000 n +0000532886 00000 n +0000532949 00000 n +0000533012 00000 n +0000533075 00000 n +0000533138 00000 n +0000533201 00000 n +0000533264 00000 n +0000533327 00000 n +0000533390 00000 n +0000533453 00000 n +0000533516 00000 n +0000537965 00000 n +0000537778 00000 n +0000533705 00000 n +0000537901 00000 n +0000730847 00000 n +0000541047 00000 n +0000540548 00000 n +0000538078 00000 n +0000540671 00000 n +0000540797 00000 n +0000540922 00000 n +0000540984 00000 n +0000547853 00000 n +0000544318 00000 n +0000543695 00000 n +0000541173 00000 n +0000543818 00000 n +0000543882 00000 n +0000543943 00000 n +0000544067 00000 n +0000544192 00000 n +0000544255 00000 n +0000548004 00000 n +0000550227 00000 n +0000547700 00000 n +0000544459 00000 n +0000548157 00000 n +0000548221 00000 n +0000548282 00000 n +0000548346 00000 n +0000548410 00000 n +0000548473 00000 n +0000548535 00000 n +0000548598 00000 n +0000548661 00000 n +0000548724 00000 n +0000548787 00000 n +0000548850 00000 n +0000548913 00000 n +0000548976 00000 n +0000549039 00000 n +0000549102 00000 n +0000549165 00000 n +0000549228 00000 n +0000549291 00000 n +0000549354 00000 n +0000549417 00000 n +0000549478 00000 n +0000549541 00000 n +0000549603 00000 n +0000549666 00000 n +0000549728 00000 n +0000549791 00000 n +0000549854 00000 n +0000549917 00000 n +0000549980 00000 n +0000550043 00000 n +0000550106 00000 n +0000550169 00000 n +0000553486 00000 n +0000553049 00000 n +0000550366 00000 n +0000553172 00000 n +0000553298 00000 n +0000553423 00000 n +0000557101 00000 n +0000556914 00000 n +0000553625 00000 n +0000557037 00000 n +0000561069 00000 n +0000560129 00000 n +0000557227 00000 n +0000560252 00000 n +0000560378 00000 n +0000560441 00000 n +0000560504 00000 n +0000560567 00000 n +0000560630 00000 n +0000560693 00000 n +0000560756 00000 n +0000560819 00000 n +0000560881 00000 n +0000561006 00000 n +0000730972 00000 n +0000564111 00000 n +0000563799 00000 n +0000561195 00000 n +0000563922 00000 n +0000564048 00000 n +0000568930 00000 n +0000566982 00000 n +0000564237 00000 n +0000567105 00000 n +0000567231 00000 n +0000567294 00000 n +0000567357 00000 n +0000567420 00000 n +0000567483 00000 n +0000567546 00000 n +0000567609 00000 n +0000567672 00000 n +0000567734 00000 n +0000567797 00000 n +0000567860 00000 n +0000567923 00000 n +0000567986 00000 n +0000568049 00000 n +0000568112 00000 n +0000568174 00000 n +0000568237 00000 n +0000568300 00000 n +0000568363 00000 n +0000568426 00000 n +0000568489 00000 n +0000568552 00000 n +0000568615 00000 n +0000568678 00000 n +0000568741 00000 n +0000568804 00000 n +0000568867 00000 n +0000571258 00000 n +0000570946 00000 n +0000569056 00000 n +0000571069 00000 n +0000571195 00000 n +0000573586 00000 n +0000573024 00000 n +0000571384 00000 n +0000573147 00000 n +0000573273 00000 n +0000573398 00000 n +0000573523 00000 n +0000576709 00000 n +0000576397 00000 n +0000573698 00000 n +0000576520 00000 n +0000576646 00000 n +0000578796 00000 n +0000578361 00000 n +0000576850 00000 n +0000578484 00000 n +0000578610 00000 n +0000731097 00000 n +0000578937 00000 n +0000725542 00000 n +0000578961 00000 n +0000579281 00000 n +0000579365 00000 n +0000579841 00000 n +0000580173 00000 n +0000580541 00000 n +0000580643 00000 n +0000580843 00000 n +0000581687 00000 n +0000582262 00000 n +0000582738 00000 n +0000583087 00000 n +0000583994 00000 n +0000591256 00000 n +0000591506 00000 n +0000598648 00000 n +0000598895 00000 n +0000600857 00000 n +0000601080 00000 n +0000609731 00000 n +0000610003 00000 n +0000618120 00000 n +0000618400 00000 n +0000639122 00000 n +0000639789 00000 n +0000650359 00000 n +0000650692 00000 n +0000662270 00000 n +0000662658 00000 n +0000669693 00000 n +0000670053 00000 n +0000673143 00000 n +0000673389 00000 n +0000689656 00000 n +0000690091 00000 n +0000711425 00000 n +0000712119 00000 n +0000725180 00000 n +0000731177 00000 n +0000731301 00000 n +0000731427 00000 n +0000731553 00000 n +0000731670 00000 n +0000731762 00000 n +0000747762 00000 n +0000747941 00000 n +0000748115 00000 n +0000748284 00000 n +0000748513 00000 n +0000748734 00000 n +0000748960 00000 n +0000749195 00000 n +0000749424 00000 n +0000749660 00000 n +0000749893 00000 n +0000750129 00000 n +0000750355 00000 n +0000750585 00000 n +0000750835 00000 n +0000751084 00000 n +0000751259 00000 n +0000751482 00000 n +0000751662 00000 n +0000751823 00000 n +0000752009 00000 n +0000752185 00000 n +0000752374 00000 n +0000752566 00000 n +0000752775 00000 n +0000752968 00000 n +0000753144 00000 n +0000753357 00000 n +0000753598 00000 n +0000753837 00000 n +0000754078 00000 n +0000754316 00000 n +0000754554 00000 n +0000754795 00000 n +0000755034 00000 n +0000755275 00000 n +0000755514 00000 n +0000755755 00000 n +0000755994 00000 n +0000756235 00000 n +0000756474 00000 n +0000756715 00000 n +0000756953 00000 n +0000757191 00000 n +0000757432 00000 n +0000757667 00000 n +0000757908 00000 n +0000758147 00000 n +0000758388 00000 n +0000758627 00000 n +0000758868 00000 n +0000759107 00000 n +0000759348 00000 n +0000759587 00000 n +0000759828 00000 n +0000760066 00000 n +0000760304 00000 n +0000760545 00000 n +0000760784 00000 n +0000761025 00000 n +0000761264 00000 n +0000761505 00000 n +0000761744 00000 n +0000761985 00000 n +0000762221 00000 n +0000762462 00000 n +0000762702 00000 n +0000762943 00000 n +0000763182 00000 n +0000763421 00000 n +0000763662 00000 n +0000763902 00000 n +0000764143 00000 n +0000764383 00000 n +0000764624 00000 n +0000764864 00000 n +0000765105 00000 n +0000765345 00000 n +0000765586 00000 n +0000765825 00000 n +0000766064 00000 n +0000766305 00000 n +0000766541 00000 n +0000766782 00000 n +0000767022 00000 n +0000767263 00000 n +0000767503 00000 n +0000767744 00000 n +0000767984 00000 n +0000768225 00000 n +0000768465 00000 n +0000768706 00000 n +0000768945 00000 n +0000769184 00000 n +0000769425 00000 n +0000769665 00000 n +0000769906 00000 n +0000770146 00000 n +0000770387 00000 n +0000770627 00000 n +0000770868 00000 n +0000771105 00000 n +0000771346 00000 n +0000771586 00000 n +0000771827 00000 n +0000772066 00000 n +0000772305 00000 n +0000772546 00000 n +0000772786 00000 n +0000773027 00000 n +0000773267 00000 n +0000773508 00000 n +0000773748 00000 n +0000773989 00000 n +0000774229 00000 n +0000774470 00000 n +0000774709 00000 n +0000774948 00000 n +0000775189 00000 n +0000775425 00000 n +0000775666 00000 n +0000775906 00000 n +0000776147 00000 n +0000776387 00000 n +0000776628 00000 n +0000776868 00000 n +0000777109 00000 n +0000777349 00000 n +0000777590 00000 n +0000777829 00000 n +0000778068 00000 n +0000778309 00000 n +0000778549 00000 n +0000778790 00000 n +0000779030 00000 n +0000779271 00000 n +0000779511 00000 n +0000779752 00000 n +0000779989 00000 n +0000780230 00000 n +0000780470 00000 n +0000780705 00000 n +0000780936 00000 n +0000781169 00000 n +0000781400 00000 n +0000781633 00000 n +0000781873 00000 n +0000782124 00000 n +0000782381 00000 n +0000782633 00000 n +0000782882 00000 n +0000783131 00000 n +0000783380 00000 n +0000783627 00000 n +0000783876 00000 n +0000784123 00000 n +0000784372 00000 n +0000784619 00000 n +0000784868 00000 n +0000785115 00000 n +0000785364 00000 n +0000785613 00000 n +0000785860 00000 n +0000786109 00000 n +0000786358 00000 n +0000786607 00000 n +0000786854 00000 n +0000787103 00000 n +0000787350 00000 n +0000787599 00000 n +0000787848 00000 n +0000788097 00000 n +0000788344 00000 n +0000788593 00000 n +0000788842 00000 n +0000789088 00000 n +0000789337 00000 n +0000789586 00000 n +0000789828 00000 n +0000790077 00000 n +0000790326 00000 n +0000790572 00000 n +0000790821 00000 n +0000791070 00000 n +0000791317 00000 n +0000791566 00000 n +0000791815 00000 n +0000792061 00000 n +0000792310 00000 n +0000792559 00000 n +0000792808 00000 n +0000793057 00000 n +0000793304 00000 n +0000793553 00000 n +0000793802 00000 n +0000794049 00000 n +0000794298 00000 n +0000794545 00000 n +0000794794 00000 n +0000795041 00000 n +0000795290 00000 n +0000795539 00000 n +0000795788 00000 n +0000796034 00000 n +0000796283 00000 n +0000796530 00000 n +0000796779 00000 n +0000797019 00000 n +0000797268 00000 n +0000797517 00000 n +0000797766 00000 n +0000798015 00000 n +0000798264 00000 n +0000798513 00000 n +0000798761 00000 n +0000799010 00000 n +0000799259 00000 n +0000799508 00000 n +0000799756 00000 n +0000800005 00000 n +0000800254 00000 n +0000800501 00000 n +0000800750 00000 n +0000800999 00000 n +0000801253 00000 n +0000801510 00000 n +0000801765 00000 n +0000802020 00000 n +0000802271 00000 n +0000802518 00000 n +0000802765 00000 n +0000803014 00000 n +0000803263 00000 n +0000803512 00000 n +0000803759 00000 n +0000804008 00000 n +0000804255 00000 n +0000804504 00000 n +0000804752 00000 n +0000805001 00000 n +0000805250 00000 n +0000805500 00000 n +0000805757 00000 n +0000806013 00000 n +0000806270 00000 n +0000806526 00000 n +0000806783 00000 n +0000807034 00000 n +0000807283 00000 n +0000807532 00000 n +0000807781 00000 n +0000808029 00000 n +0000808278 00000 n +0000808531 00000 n +0000808780 00000 n +0000809029 00000 n +0000809273 00000 n +0000809522 00000 n +0000809771 00000 n +0000810018 00000 n +0000810267 00000 n +0000810516 00000 n +0000810765 00000 n +0000811018 00000 n +0000811273 00000 n +0000811522 00000 n +0000811770 00000 n +0000812019 00000 n +0000812268 00000 n +0000812515 00000 n +0000812765 00000 n +0000813022 00000 n +0000813275 00000 n +0000813524 00000 n +0000813773 00000 n +0000814022 00000 n +0000814271 00000 n +0000814520 00000 n +0000814767 00000 n +0000815016 00000 n +0000815265 00000 n +0000815514 00000 n +0000815763 00000 n +0000816010 00000 n +0000816257 00000 n +0000816506 00000 n +0000816755 00000 n +0000817001 00000 n +0000817256 00000 n +0000817511 00000 n +0000817765 00000 n +0000818014 00000 n +0000818271 00000 n +0000818527 00000 n +0000818784 00000 n +0000819033 00000 n +0000819282 00000 n +0000819531 00000 n +0000819779 00000 n +0000820028 00000 n +0000820277 00000 n +0000820528 00000 n +0000820785 00000 n +0000821041 00000 n +0000821296 00000 n +0000821545 00000 n +0000821791 00000 n +0000822040 00000 n +0000822289 00000 n +0000822538 00000 n +0000822787 00000 n +0000823036 00000 n +0000823283 00000 n +0000823537 00000 n +0000823794 00000 n +0000824049 00000 n +0000824304 00000 n +0000824561 00000 n +0000824815 00000 n +0000825064 00000 n +0000825313 00000 n +0000825556 00000 n +0000825805 00000 n +0000826054 00000 n +0000826301 00000 n +0000826550 00000 n +0000826798 00000 n +0000827051 00000 n +0000827308 00000 n +0000827560 00000 n +0000827809 00000 n +0000828058 00000 n +0000828315 00000 n +0000828571 00000 n +0000828824 00000 n +0000829075 00000 n +0000829332 00000 n +0000829586 00000 n +0000829835 00000 n +0000830082 00000 n +0000830331 00000 n +0000830579 00000 n +0000830828 00000 n +0000831075 00000 n +0000831324 00000 n +0000831573 00000 n +0000831822 00000 n +0000832071 00000 n +0000832316 00000 n +0000832565 00000 n +0000832812 00000 n +0000833061 00000 n +0000833310 00000 n +0000833559 00000 n +0000833808 00000 n +0000834056 00000 n +0000834305 00000 n +0000834554 00000 n +0000834803 00000 n +0000835049 00000 n +0000835298 00000 n +0000835543 00000 n +0000835792 00000 n +0000836041 00000 n +0000836290 00000 n +0000836536 00000 n +0000836785 00000 n +0000837034 00000 n +0000837281 00000 n +0000837530 00000 n +0000837779 00000 n +0000838028 00000 n +0000838275 00000 n +0000838524 00000 n +0000838773 00000 n +0000839022 00000 n +0000839271 00000 n +0000839519 00000 n +0000839768 00000 n +0000840017 00000 n +0000840265 00000 n +0000840514 00000 n +0000840763 00000 n +0000841012 00000 n +0000841269 00000 n +0000841525 00000 n +0000841780 00000 n +0000842029 00000 n +0000842278 00000 n +0000842535 00000 n +0000842784 00000 n +0000843032 00000 n +0000843289 00000 n +0000843545 00000 n +0000843796 00000 n +0000844045 00000 n +0000844296 00000 n +0000844553 00000 n +0000844809 00000 n +0000845066 00000 n +0000845322 00000 n +0000845574 00000 n +0000845823 00000 n +0000846071 00000 n +0000846320 00000 n +0000846569 00000 n +0000846816 00000 n +0000847065 00000 n +0000847314 00000 n +0000847562 00000 n +0000847811 00000 n +0000848060 00000 n +0000848304 00000 n +0000848553 00000 n +0000848802 00000 n +0000849056 00000 n +0000849313 00000 n +0000849564 00000 n +0000849813 00000 n +0000850062 00000 n +0000850311 00000 n +0000850562 00000 n +0000850811 00000 n +0000851059 00000 n +0000851308 00000 n +0000851557 00000 n +0000851806 00000 n +0000852050 00000 n +0000852291 00000 n +0000852530 00000 n +0000852771 00000 n +0000853012 00000 n +0000853251 00000 n +0000853492 00000 n +0000853733 00000 n +0000853912 00000 n +0000854097 00000 n +0000854280 00000 n +0000854463 00000 n +0000854648 00000 n +0000854827 00000 n +0000855002 00000 n +0000855179 00000 n +0000855354 00000 n +0000855531 00000 n +0000855705 00000 n +0000855880 00000 n +0000856057 00000 n +0000856233 00000 n +0000856410 00000 n +0000856586 00000 n +0000856763 00000 n +0000856939 00000 n +0000857116 00000 n +0000857292 00000 n +0000857469 00000 n +0000857638 00000 n +0000857855 00000 n +0000858099 00000 n +0000858343 00000 n +0000858612 00000 n +0000858860 00000 n +0000859094 00000 n +0000859338 00000 n +0000859533 00000 n +0000859726 00000 n +0000859921 00000 n +0000860114 00000 n +0000860306 00000 n +0000860501 00000 n +0000860722 00000 n +0000860963 00000 n +0000861204 00000 n +0000861439 00000 n +0000861674 00000 n +0000861911 00000 n +0000862152 00000 n +0000862387 00000 n +0000862622 00000 n +0000862857 00000 n +0000863092 00000 n +0000863327 00000 n +0000863562 00000 n +0000863797 00000 n +0000864025 00000 n +0000864251 00000 n +0000864472 00000 n +0000864698 00000 n +0000864925 00000 n +0000865154 00000 n +0000865381 00000 n +0000865608 00000 n +0000865893 00000 n +0000866098 00000 n +0000866216 00000 n +0000866346 00000 n +0000866468 00000 n +0000866580 00000 n +0000866705 00000 n +0000866836 00000 n +0000866968 00000 n +0000867100 00000 n +0000867232 00000 n +0000867363 00000 n +0000867495 00000 n +0000867627 00000 n +0000867759 00000 n +0000867890 00000 n +0000868022 00000 n +0000868154 00000 n +0000868286 00000 n +0000868418 00000 n +0000868550 00000 n +0000868682 00000 n +0000868814 00000 n +0000868946 00000 n +0000869078 00000 n +0000869209 00000 n +0000869341 00000 n +0000869475 00000 n +0000869609 00000 n +0000869743 00000 n +0000869877 00000 n +0000870010 00000 n +0000870144 00000 n +0000870278 00000 n +0000870412 00000 n +0000870546 00000 n +0000870680 00000 n +0000870814 00000 n +0000870948 00000 n +0000871082 00000 n +0000871216 00000 n +0000871350 00000 n +0000871485 00000 n +0000871620 00000 n +0000871755 00000 n +0000871889 00000 n +0000872024 00000 n +0000872159 00000 n +0000872293 00000 n +0000872428 00000 n +0000872564 00000 n +0000872698 00000 n +0000872831 00000 n +0000872965 00000 n +0000873099 00000 n +0000873233 00000 n +0000873367 00000 n +0000873502 00000 n +0000873637 00000 n +0000873771 00000 n +0000873905 00000 n +0000874039 00000 n +0000874173 00000 n +0000874307 00000 n +0000874441 00000 n +0000874576 00000 n +0000874711 00000 n +0000874846 00000 n +0000874981 00000 n +0000875115 00000 n +0000875249 00000 n +0000875383 00000 n +0000875518 00000 n +0000875651 00000 n +0000875775 00000 n +0000875892 00000 n +0000876007 00000 n +0000876123 00000 n +0000876248 00000 n +0000876378 00000 n +0000876504 00000 n +0000876636 00000 n +0000876767 00000 n +0000876911 00000 n +0000877017 00000 n +0000877143 00000 n +0000877275 00000 n +0000877407 00000 n +0000877538 00000 n +0000877670 00000 n +0000877804 00000 n +0000877938 00000 n +0000878074 00000 n +0000878209 00000 n +0000878343 00000 n +0000878478 00000 n +0000878612 00000 n +0000878738 00000 n +0000878865 00000 n +0000878992 00000 n +0000879125 00000 n +0000879231 00000 n +0000879340 00000 n +0000879380 00000 n +0000879552 00000 n +trailer +<< /Size 4737 +/Root 4735 0 R +/Info 4736 0 R +/ID [ ] >> +startxref +879912 +%%EOF diff --git a/docbook-xsl-1.76.1/RELEASE-NOTES.txt b/docbook-xsl-1.76.1/RELEASE-NOTES.txt new file mode 100644 index 0000000..65e1d86 --- /dev/null +++ b/docbook-xsl-1.76.1/RELEASE-NOTES.txt @@ -0,0 +1,8575 @@ +Release Notes for the DocBook XSL Stylesheets + +$Revision: 8934 $ $Date: 2010-11-01 13:03:14 -0700 (Mon, 01 Nov 2010) $ + +2010-11-01 + +This release-notes document is available in the following formats: HTML, PDF, +plain text; it provides a per-release list of enhancements and changes to the +stylesheets’ public APIs (user-configurable parameters) and excludes +descriptions of most bug fixes. For a complete list of all changes (including +all bug fixes) that have been made since the previous release, see the separate +NEWS (plain text) or NEWS.html files. Also available: An online hyperlinked +change history (warning: big file) of all changes made over the entire history +of the codebase. + +As with all DocBook Project “dot one plus†releases, this release aspires to be +stable (in contrast to dot-zero releases, which are experimental). + +â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â” + +Table of Contents + +Release Notes: 1.76.1 + + FO + HTML + Params + +Release Notes: 1.76.0 + + Gentext + Common + FO + HTML + Manpages + Epub + Eclipse + Params + XSL-Xalan + +Release Notes: 1.75.2 + + Gentext + Common + FO + HTML + Manpages + Epub + Profiling + XSL-Saxon + XSL-Xalan + +Release Notes: 1.75.1 + + FO + HTML + Epub + Params + +Release Notes: 1.75.0 + + Gentext + Common + FO + HTML + Manpages + ePub + HTMLHelp + Params + Highlighting + XSL-Saxon + XSL-Xalan + +Release Notes: 1.74.3 +Release Notes: 1.74.2 +Release Notes: 1.74.1 + + Gentext + FO + HTML + Manpages + ePub + Roundtrip + Params + Highlighting + +Release Notes: 1.74.0 + + Gentext + Common + FO + HTML + Manpages + Epub + HTMLHelp + Eclipse + JavaHelp + Roundtrip + Slides + Website + Params + Profiling + Tools + Extensions + XSL-Saxon + XSL-Xalan + XSL-libxslt + +Release Notes: 1.73.2 +Release: 1.73.1 + + Gentext + FO + HTML + Manpages + HTMLHelp + Eclipse + JavaHelp + Roundtrip + Params + +Release: 1.73.0 + + Gentext + Common + FO + HTML + Manpages + Eclipse + JavaHelp + Roundtrip + Params + Highlighting + Profiling + Lib + Tools + XSL-Saxon + XSL-Xalan + +Release: 1.72.0 + + Common + FO + HTML + Manpages + Params + Template + Roundtrip + +Release: 1.71.1 + + Common + FO + HTML + Highlighting + Manpages + Params + Profiling + +Release: 1.71.0 + + Common + Extensions + FO + HTML + Highlighting + Manpages + Params + Tools + +Release: 1.70.1 + + FO + HTML + HTMLHelp + Params + +Release: 1.70.0 + + Common + Extensions + FO + HTML + Manpages + Params + Profiling + Tools + WordML + +Release 1.69.1 +Release 1.69.0 + + Common + FO + Help + HTML + man + +Release 1.68.1 +Release 1.68.0 +Release 1.67.2 +Release 1.67.1 +Release 1.67.0 +Release 1.66.1 +Release 1.65.0 +Release 1.64.1 +Release 1.61.0 +Release 1.60.1 +Release 1.59.2 +Release 1.59.1 +Release 1.58.0 +Release 1.57.0 +Release 1.56.0 +Older releases +About dot-zero releases + +Release Notes: 1.76.1 + +The following is a list of changes that have been made since the 1.76.0 +release. + +FO + +The following changes have been made to the fo code since the 1.76.0 release. + + â— Robert Stayton: docbook.xsl; xref.xsl; fop1.xsl + + Apply patch to support named destination in fop1.xsl, per Sourceforge + bug report #3029845. + +HTML + +The following changes have been made to the html code since the 1.76.0 release. + + â— Keith Fahlgren: highlight.xsl + + Implementing handling for and : transform to and for XHTML outputs and do not use in the highliting output (per Mauritz Jeanson) + +Params + +The following changes have been made to the params code since the 1.76.0 +release. + + â— Robert Stayton: draft.mode.xml + + Change default for draft.mode to 'no'. + +Release Notes: 1.76.0 + +This release includes important bug fixes and adds the following significant +feature changes: + +Webhelp + + A new browser-based, cross-platform help format with full-text search and + other features typically found in help systems. See webhelp/docs/content/ + ch01.html for more information and a demo. + +Gentext + + Many updates and additions to translation/locales thanks to Red Hat, the + Fedora Project, and other contributors. + +Common + + Faster localization support, as language files are loaded on demand. + +FO + + Support for SVG content in imagedata added. + +HTML + + Output improved when using 'make.clean.html' and a stock CSS file is now + provided. + +EPUB + + A number of improvements to NCX, cover and image selection, and XHTML 1.1 + element choices + +The following is a list of changes that have been made since the 1.75.2 +release. + +Gentext + +The following changes have been made to the gentext code since the 1.75.2 +release. + + â— rlandmann: locale/fa.xml + + Update to Persian translation from the Fedora Project + + + â— rlandmann: locale/nds.xml + + Locale for Low German + + + â— Mauritz Jeanson: locale/ka.xml; Makefile + + Added support for Georgian based on patch #2917147. + + + â— rlandmann: locale/nl.xml; locale/ja.xml + + Updated translations from Red Hat and the Fedora Project + + + â— rlandmann: locale/bs.xml; locale/ru.xml; locale/hr.xml + + Updated locales from Red Hat and the Fedora Project + + + â— rlandmann: locale/pt.xml; locale/cs.xml; locale/es.xml; locale/bg.xml; + locale/nl.xml; loca⋯ + + Updated translations from Red Hat and the Fedora Project + + + â— rlandmann: locale/as.xml; locale/bn_IN.xml; locale/ast.xml; locale/ml.xml; + locale/te.xml; ⋯ + + New translations from Red Hat and the Fedora Project + + + â— rlandmann: locale/pt.xml; locale/ca.xml; locale/da.xml; locale/sr.xml; + locale/ru.xml; loca⋯ + + Updated translations from Red Hat and the Fedora Project + + +Common + +The following changes have been made to the common code since the 1.75.2 +release. + + â— Mauritz Jeanson: common.xsl + + Fixed bug in output-orderedlist-starting-number template (@startingnumber did not work for FO). + + + â— Mauritz Jeanson: gentext.xsl + + Added fix to catch ID also of descendants of listitem. Closes bug #2955077. + + + â— Jirka Kosek: l10n.xsl + + Stripped down, faster version of gentext.template is used when there is no localization customization. + + + â— Mauritz Jeanson: stripns.xsl + + Added fix that preserves link/@role (makes links in the reference documentation + with @role="tcg" work). + + + â— Mauritz Jeanson: l10n.xsl + + Fixed bugs related to manpages and L10n. + + + â— Jirka Kosek: entities.ent; autoidx-kosek.xsl + + Upgraded to use common entities. Fixed bug when some code used @sortas and some not for grouping/sorting of indexterms. + + + â— Jirka Kosek: l10n.xsl; l10n.dtd; l10n.xml; autoidx-kosek.xsl + + Refactored localization support. Language files are loaded on demand. Speedup is about 30%. + + + â— Jirka Kosek: l10n.xsl + + Added xsl:keys for improved performance of localization texts look up. Performance gain around 15%. + + + â— Mauritz Jeanson: titles.xsl + + Fixed bug #2912677 (error with xref in title). + + + â— Robert Stayton: olink.xsl + + Fix bug in xrefstyle "title" handling introduced with + the 'insert.targetdb.data' template. + + + â— Robert Stayton: gentext.xsl + + Fix bug in xref to equation without title to use context="xref-number" instead + of "xref-number-and-title". + + + â— Robert Stayton: labels.xsl + + Number all equations in one sequence, with or without title. + + + â— Robert Stayton: entities.ent + + Fix bug #2896909 where duplicate @sortas on indexterms caused + some indexterms to drop out of index. + + + â— Robert Stayton: stripns.xsl + + Expand the "Stripping namespace ..." message to advise users to + use the namespaced stylesheets. + + + â— Robert Stayton: stripns.xsl + + need a local version of $exsl.node.set.available variable because + this module imported many places. + + + â— Mauritz Jeanson: olink.xsl + + Added /node() to the select expression that is used to compute the title text + so that no elements end up in the output. Closes bug #2830119. + + +FO + +The following changes have been made to the fo code since the 1.75.2 release. + + â— Robert Stayton: table.xsl + + Fix bug 2979166 able - Attribute @rowheader not working + + + â— Mauritz Jeanson: inline.xsl + + Improved glossterm auto-linking by using keys. The old code was inefficient when processing documents + with many inline glossterms. + + + â— Robert Stayton: titlepage.xsl + + Fix bug 2805530 author/orgname not appearing on title page. + + + â— Mauritz Jeanson: graphics.xsl + + Added support for SVG content in imagedata (inspired by patch #2909154). + + + â— Mauritz Jeanson: table.xsl + + Removed superfluous test used when computing column-width. Closes bug #3000898. + + + â— Mauritz Jeanson: inline.xsl + + Added missing . Closes bug #2998567. + + + â— Mauritz Jeanson: lists.xsl + + Added table-layout="fixed" on segmentedlist table (required by XSL spec when proportional-column-width() is used). + + + â— Jirka Kosek: autoidx-kosek.xsl + + Upgraded to use common entities. Fixed bug when some code used @sortas and some not for grouping/sorting of indexterms. + + + â— Jirka Kosek: index.xsl + + Upgraded to use common entities. Fixed bug when some code used @sortas and some not for grouping/sorting of indexterms. + + + â— Robert Stayton: xref.xsl + + Fix bug in olink template when an olink has an id. + Add warning message with id value when trying to link + to an element that has no generated text. + + + â— Mauritz Jeanson: refentry.xsl + + Fixed bug #2930968 (indexterm in refmeta not handled correctly). + + + â— Robert Stayton: block.xsl + + fix bug 2949567 title in revhistory breaks FO transform. + + + â— Robert Stayton: glossary.xsl + + Output id attributes on glossdiv blocks so they can be added to + xrefs or TOC. + + + â— Jirka Kosek: xref.xsl + + Enabled hyphenation of URLs when ulink content is the same as link target + + + â— Robert Stayton: table.xsl + + Apply patch to turn off row recursion if no @morerows attributes present. + This will enable very large tables without row spanning to + process without running into recursion limits. + + + â— Robert Stayton: formal.xsl + + Format equation without title using table layout with equation number + next to the equation. + + + â— Robert Stayton: param.xweb; param.ent + + Add equation.number.properties. + + +HTML + +The following changes have been made to the html code since the 1.75.2 release. + + â— Mauritz Jeanson: block.xsl + + Modified acknowledgements template to avoid invalid output (

    in

    ). + + + ◠Mauritz Jeanson: titlepage.xsl + + Added default sidebar attribute-sets. + + + ◠Robert Stayton: table.xsl + + Fix bug 2979166 able - Attribute @rowheader not working + + + ◠Robert Stayton: footnote.xsl + + Fix bug 3033191 footnotes in html tables. + + + ◠Mauritz Jeanson: inline.xsl + + Improved glossterm auto-linking by using keys. The old code was inefficient when processing documents + with many inline glossterms. + + + ◠Robert Stayton: docbook.css.xml; verbatim.xsl + + Fix bug 2844927 Validity error for callout bugs. + + + ◠Robert Stayton: formal.xsl + + Convert formal.object.heading to respect make.clean.html param. + + + ◠Robert Stayton: titlepage.templates.xml; block.xsl + + Fix bug 2840768 sidebar without title inserts empty b tag. + + + ◠Mauritz Jeanson: docbook.xsl + + Moved the template that outputs so that the base URI also applies to relative CSS paths that come later. + See patch #2896121. + + + ◠Jirka Kosek: autoidx-kosek.xsl + + Upgraded to use common entities. Fixed bug when some code used @sortas and some not for grouping/sorting of indexterms. + + + ◠Robert Stayton: chunk-code.xsl + + fix bug 2948363 generated filename for refentry not unique, when + used in a set. + + + ◠Robert Stayton: component.xsl + + Fix missing "Chapter n" label when use chapter/info/title. + + + ◠Robert Stayton: table.xsl + + Row recursion turned off if no @morerows attributes in the table. + This will prevent failure on long table (with no @morerows) due + to excessive depth of recursion. + + + ◠Robert Stayton: autotoc.xsl; docbook.css.xml + + Support make.clean.html in autotoc.xsl. + + + ◠Robert Stayton: docbook.css.xml; block.xsl + + Add support for make.clean.html setting in block elements. + + + ◠Robert Stayton: docbook.css.xml + + Stock CSS styles for DocBook HTML output when 'make.clean.html' is non-zero. + + + ◠Robert Stayton: html.xsl + + Add templates for generating CSS files and links to them. + + + ◠Robert Stayton: param.xweb + + Fix bugs in new entity references. + + + ◠Robert Stayton: chunk-common.xsl + + List of Equations now includes on equations with titles. + + + ◠Robert Stayton: table.xsl + + If a colspec has a colname attribute, add it to the HTML col + element as a class attribute so it can be styled. + + + ◠Robert Stayton: formal.xsl + + Fix bug 2825842 where table footnotes not appearing in HTML-coded table. + + + ◠Robert Stayton: chunktoc.xsl + + Fix bug #2834826 where appendix inside part was not chunked as it should be. + + + ◠Mauritz Jeanson: chunktoc.xsl + + Added missing namespace declarations. Closes bug #2890069. + + + ◠Mauritz Jeanson: footnote.xsl + + Updated the template for footnote paras to use the 'paragraph' template. Closes bug #2803739. + + + ◠Keith Fahlgren: inline.xsl; lists.xsl + + Remove and elements "discouraged in favor of style sheets" from + XHTML, XHTML 1.1 (and therefore EPUB) outputs by changing html2xhtml.xsl. + + Fixes bug #2873153: No and tags in XHTML/EPUB + + Added regression to EPUB specs: + + + ◠Mauritz Jeanson: inline.xsl + + Fixed bug #2844916 (don't output @target if ulink.target is empty). + + + ◠Keith Fahlgren: autoidx.xsl + + Fix a bug when using index.on.type: an 'index symbols' section was created + even if that typed index didn't include any symbols (they were in the other types). + + +Manpages + +The following changes have been made to the manpages code since the 1.75.2 +release. + + ◠Mauritz Jeanson: other.xsl + + Modified the write.stubs template so that the section directory name is not output twice. Should fix bug #2831602. + Also ensured that $lang is added to the .so path (when man.output.lang.in.name.enabled=1). + + + ◠Mauritz Jeanson: docbook.xsl; other.xsl + + Fixed bug #2412738 (apostrophe escaping) by applying the submitted patch. + + + ◠Norman Walsh: block.xsl; endnotes.xsl + + Fix bug where simpara in footnote didn't work. Patch by Jonathan Nieder, jrnieder@gmail.com + + + ◠dleidert: lists.xsl + + Fix two indentation issues: In the first case there is no corresponding .RS + macro (Debian #519438, sf.net 2793873). In the second case an .RS instead of + the probably intended .sp leads to an indentation bug (Debian #527309, + sf.net #2642139). + + +Epub + +The following changes have been made to the epub code since the 1.75.2 release. + + ◠Keith Fahlgren: bin/spec/examples/AMasqueOfDays.epub; docbook.xsl; bin/spec + /epub_spec.rb + + Resolve some actual regressions in date output spotted by more recent versions of epubcheck + + + ◠Keith Fahlgren: docbook.xsl + + Updated mediaobject selection code that better uses roles (when available); based on contributons by Glenn McDonald + + + ◠Keith Fahlgren: bin/spec/epub_regressions_spec.rb; docbook.xsl + + Ensure that NCX documents are always outputted with a default namespace + to prevent problems with the kindlegen machinery + + + ◠Keith Fahlgren: bin/spec/epub_regressions_spec.rb; bin/spec/files/ + partintro.xml; docbook.x⋯ + + Adding support for partintros with sect2s, 3s, etc + + + ◠Keith Fahlgren: docbook.xsl + + Adding param to workaround horrific ADE bug with the inability to process
    + + + ◠Keith Fahlgren: docbook.xsl + + Add support for authorgroup/author in OPF metadata (via Michael Wiedmann) + + + ◠Keith Fahlgren: bin/spec/epub_regressions_spec.rb + + Remove and elements "discouraged in favor of style sheets" from + XHTML, XHTML 1.1 (and therefore EPUB) outputs by changing html2xhtml.xsl. + + Fixes bug #2873153: No and tags in XHTML/EPUB + + Added regression to EPUB specs: + + + ◠Keith Fahlgren: bin/lib/docbook.rb; bin/spec/files/DejaVuSerif-Italic.otf; + docbook.xsl; bi⋯ + + This resolves bug #2873142, Please add support for multiple embedded fonts + + + If you navigate to a checkout of DocBook-XSL and go to: + xsl/epub/bin/spec/files + You can now run the following command: + + ../../dbtoepub -f DejaVuSerif.otf -f DejaVuSerif-Italic.otf -c test.css + -s test_cust.xsl orm.book.001.xml + + In dbtoepub, the following option can be used more than once: + -f, --font [OTF FILE] Embed OTF FILE in .epub. + + The underlying stylesheet now accepts a comma-separated list of font file + names rather than just one as the RENAMED epub.embedded.fonts ('s' added). + + The runnable EPUB spec now includes: + - should be valid .epub after including more than one embedded font + + + ◠Keith Fahlgren: docbook.xsl + + Improve the selection of cover images when working in DocBook 4.x land (work in progress) + + + ◠Keith Fahlgren: bin/spec/epub_regressions_spec.rb; docbook.xsl + + Improve the quality of the OPF spine regression by ensuring that the spine + elements for deeply nested refentries are in order and adjacent to their + opening wrapper XHTML chunk. + + + ◠Keith Fahlgren: bin/spec/epub_regressions_spec.rb; docbook.xsl; bin/spec/ + files/orm.book.00⋯ + + Add more careful handling of refentries to ensure that they always appear in the opf:spine. + This was only a problem when refentries were pushed deep into the hierarchy (like inside + a sect2), but presented navigational problems for many reading systems (despite the + correct NCX references). This may *not* be the best solution, but attacking a better + chunking strategy for refentries was too big a nut to crack at this time. + + +Eclipse + +The following changes have been made to the eclipse code since the 1.75.2 +release. + + ◠Mauritz Jeanson: eclipse3.xsl + + Added a stylesheet module that generates plug-ins conforming to the standard (OSGi-based) Eclipse 3.x + architecture. The main difference to the older format is that metadata is stored in a separate + manifest file. The module imports and extends the existing eclipse.xsl module. Based on code + contributed in patch #2624668. + + +Params + +The following changes have been made to the params code since the 1.75.2 +release. + + ◠Robert Stayton: draft.watermark.image.xml + + Fix bug 2922488 draft.watermark.image pointing to web resource. + Now the value is images/draft.png, and may require customization + for local resolution. + + + ◠Mauritz Jeanson: equation.number.properties.xml + + Corrected refpurpose. + + + ◠Norman Walsh: paper.type.xml + + Added USlegal and USlegallandscape paper types. + + + ◠Jirka Kosek: highlight.xslthl.config.xml + + Added note about specifying location as URL + + + ◠Robert Stayton: docbook.css.source.xml; generate.css.header.xml; + custom.css.source.xml; ma⋯ + + Params to support generated CSS files. + + + ◠Robert Stayton: equation.number.properties.xml + + New attribute set for numbers appearing next to equations. + + +XSL-Xalan + +The following changes have been made to the xsl-xalan code since the 1.75.2 +release. + + ◠dleidert: nbproject/genfiles.properties; nbproject/build-impl.xml + + Rebuild netbeans build files after adding missing Netbeans configuration to allow easier packaging for Debian. + + +Release Notes: 1.75.2 + +The following is a list of changes that have been made since the 1.75.1 +release. + +Gentext + +The following changes have been made to the gentext code since the 1.75.1 +release. + + ◠dleidert: locale/ja.xml + + Improved Japanese translation for Note(s). Closes bug #2823965. + + ◠dleidert: locale/pl.xml + + Polish alphabet contains O with acute accent, not with grave accent. Closes bug #2823964. + + ◠Robert Stayton: locale/ja.xml + + Fix translation of "index", per bug report 2796064. + + ◠Robert Stayton: locale/is.xml + + New Icelandic locale file. + +Common + +The following changes have been made to the common code since the 1.75.1 +release. + + ◠Norman Walsh: stripns.xsl + + Support more downconvert cases + + ◠Robert Stayton: titles.xsl + + Make sure title inside info is used if no other title. + +FO + +The following changes have been made to the fo code since the 1.75.1 release. + + ◠Robert Stayton: pi.xsl + + Turn off dbfo-need for fop1.extensions also, per bug #2816141. + +HTML + +The following changes have been made to the html code since the 1.75.1 release. + + ◠Mauritz Jeanson: titlepage.xsl + + Output "Copyright" heading in XHTML too. + + ◠Mauritz Jeanson: titlepage.xsl + + Added stylesheet.result.type test for copyright. Closes bug #2813289. + + ◠Norman Walsh: htmltbl.xsl + + Remove ambiguity wrt @span, @rowspan, and @colspan + +Manpages + +The following changes have been made to the manpages code since the 1.75.1 +release. + + ◠Mauritz Jeanson: endnotes.xsl + + Added normalize-space() for ulink content. Closes bug #2793877. + + ◠Mauritz Jeanson: docbook.xsl + + Added stylesheet.result.type test for copyright. Closes bug #2813289. + +Epub + +The following changes have been made to the epub code since the 1.75.1 release. + + ◠Keith Fahlgren: bin/dbtoepub; bin/lib/docbook.rb + + Corrected bugs caused by path and file assumptions were not met + + ◠Keith Fahlgren: bin/lib/docbook.rb; docbook.xsl + + Cleaning up hardcoded values into parameters and fixing Ruby library to pass them properly; all thanks to patch from Liza Daly + +Profiling + +The following changes have been made to the profiling code since the 1.75.1 +release. + + ◠Robert Stayton: profile.xsl + + Fix bug 2815493 missing exsl.node.set.available parameter. + +XSL-Saxon + +The following changes have been made to the xsl-saxon code since the 1.75.1 +release. + + ◠Mauritz Jeanson: src/com/nwalsh/saxon/ColumnUpdateEmitter.java; src/com/ + nwalsh/saxon/Colum⋯ + + Added fixes so that colgroups in the XHTML namespace are processed properly. + +XSL-Xalan + +The following changes have been made to the xsl-xalan code since the 1.75.1 +release. + + ◠Mauritz Jeanson: nbproject/project.xml + + Added missing NetBeans configuration. + +Release Notes: 1.75.1 + +This release includes bug fixes. + +The following is a list of changes that have been made since the 1.75.0 +release. + +FO + +The following changes have been made to the fo code since the 1.75.0 release. + + ◠Keith Fahlgren: block.xsl + + Switching to em dash for character before attribution in epigraph; resolves Bug #2793878 + + ◠Robert Stayton: lists.xsl + + Fixed bug 2789947, id attribute missing on simplelist fo output. + +HTML + +The following changes have been made to the html code since the 1.75.0 release. + + ◠Keith Fahlgren: block.xsl + + Switching to em dash for character before attribution in epigraph; resolves Bug #2793878 + + ◠Robert Stayton: lists.xsl + + Fixed bug 2789678: apply-templates line accidentally deleted. + +Epub + +The following changes have been made to the epub code since the 1.75.0 release. + + ◠Keith Fahlgren: bin/spec/epub_regressions_spec.rb; docbook.xsl + + Added regression and fix to correct "bug" with namespace-prefixed container elements in META-INF/container.xml ; resolves Issue #2790017 + + ◠Keith Fahlgren: bin/spec/epub_regressions_spec.rb; bin/spec/files/ + onegraphic.xinclude.xml;⋯ + + Another attempt at flexible named entity and XInclude processing + + ◠Keith Fahlgren: bin/lib/docbook.rb + + Tweaking solution to Bug #2750442 following regression reported by Michael Wiedmann. + +Params + +The following changes have been made to the params code since the 1.75.0 +release. + + ◠Mauritz Jeanson: highlight.source.xml + + Updated documentation to reflect changes made in r8419. + +Release Notes: 1.75.0 + +This release includes important bug fixes and adds the following significant +feature changes: + +Gentext + + Modifications to translations have been made. + +Common + + Added support for some format properties on tables using HTML table markup. + + Added two new qanda.defaultlabel values so that numbered sections and + numbered questions can be distinguished. Satisfies Feature Request # + 1539045. + + Added code to handle acknowledgements in book and part. The element is + processed similarly to dedication. All acknowledgements will appear as + front matter, after any dedications. + +FO + + The inclusion of highlighting code has been simplified. + + Add support for pgwide on informal objects. + + Added a new parameter, bookmarks.collapse, that controls the initial state + of the bookmark tree. Closes FR #1792326. + + Add support for more dbfo processing instructions. + + Add new variablelist.term.properties to format terms, per request # + 1968513. + + Add support for @width on screen and programlisting, fixes bug #2012736. + + Add support for writing-mode="rl-tb" (right-to-left) in FO outputs. + + Add writing.mode param for FO output. + +HTML + + Convert all calls to class.attribute to calls to common.html.attributes to + support dir, lang, and title attributes in html output for all elements. + Fulfills feature request #1993833. + + Inclusion of highlighting code was simplified. Only one import is now + necessary. + + Add new param index.links.to.section. + + Add support for the new index.links.to.section param which permits precise + links to indexterms in HTML output rather than to the section title. + +ePub + + Slightly more nuanced handling of imageobject alternatives and better + support in dbtoepub for XIncludes and ENTITYs to resolve Issue #2750442 + reported by Raphael Hertzog. + + Added a colon after an abstract/title when mapping into the dc:description + for OPF metadata in ePub output to help the flat text have more + pseudo-semantics (sugestions from Michael Wiedmann) + + Added DocBook subjectset -> OPF dc:subject mapping and tests + + Added DocBook date -> OPF dc:date mapping and tests + + Added DocBook abstract -> OPF dc:description mapping and tests + + Added --output option to dbtoepub based on user request + +HTMLHelp + + Add support for generating olink target database for htmlhelp files. + +Params + + Add default setting for @rules attribute on HTML markup tables. + + Added a new parameter, bookmarks.collapse, that controls the initial state + of the bookmark tree. When the parameter has a non-zero value (the + default), only the top-level bookmarks are displayed initially. Otherwise, + the whole tree of bookmarks is displayed. This is implemented for FOP 0.9X. + Closes FR #1792326. + + Add new variablelist.term.properties to format terms, per request # + 1968513. + + Add two new qanda.defaultlabel values so that numbered sections and + numbered questions can be distinguished. Satisfies Feature Request # + 1539045. + + Add param to control whether an index entry links to a section title or to + the precise location of the indexterm. + + New attribute list for glossentry in glossary. + + New parameter to support @width on programlisting and screen. + + Add attribute-sets for formatting glossary terms and defs. + +Highlighting + + Inclusion of highlighting code was simplified. Only one import is now + necessary. + +The following is a list of changes that have been made since the 1.74.3 +release. + +Gentext + +The following changes have been made to the gentext code since the 1.74.3 +release. + + ◠Robert Stayton: locale/sv.xml; locale/ja.xml; locale/pl.xml + + Check in translations of Legalnotice submitted on mailing list. + + ◠Robert Stayton: locale/es.xml + + Fix spelling errors in Acknowledgements entries. + + ◠Robert Stayton: locale/es.xml + + Check in translations for 4 elements submitted through docbook-apps + message of 14 April 2009. + + ◠David Cramer: locale/zh.xml; locale/ca.xml; locale/ru.xml; locale/ga.xml; + locale/gl.xml; l⋯ + + Internationalized punctuation in glosssee and glossseealso + + ◠Robert Stayton: Makefile + + Check in fixes for DSSSL gentext targets from submitted patch #1689633. + + ◠Robert Stayton: locale/uk.xml + + Check in major update submitted with bug report #2008524. + + ◠Robert Stayton: locale/zh_tw.xml + + Check in fix to Note string submitted in bug #2441051. + + ◠Robert Stayton: locale/ru.xml + + Checkin typo fix submitted in bug #2453406. + +Common + +The following changes have been made to the common code since the 1.74.3 +release. + + ◠Robert Stayton: gentext.xsl + + Fix extra generated space when xrefstyle includes 'nopage'. + + ◠Robert Stayton: table.xsl + + Add support for some format properties on tables using + HTML table markup. These include: + - frame attribute on table (or uses $default.table.frame parameter). + - rules attribute on table (or uses $default.table.rules parameter). + - align attribute on td and th + - valign attribute on td and th + - colspan on td and th + - rowspan on td and th + - bgcolor on td and th + + ◠Robert Stayton: olink.xsl + + Add placeholder template to massage olink hot text to make + customization easier, per Feature Request 1828608. + + ◠Robert Stayton: targets.xsl + + Add support for collecting olink targets from a glossary + generated from a glossary.collection. + + ◠Robert Stayton: titles.xsl + + Handle firstterm like glossterm in mode="title.markup". + + ◠Robert Stayton: titles.xsl + + Add match on info/title in title.markup templates where missing. + + ◠Mauritz Jeanson: titles.xsl + + Changed "ancestor::title" to "(ancestor::title and (@id or @xml:id))". + This enables proper formatting of inline elements in titles in TOCs, + as long as these inlines don't have id or xml:id attributes. + + ◠Robert Stayton: labels.xsl + + Add two new qanda.defaultlabel values so that numbered sections + and numbered questions can be distinguished. Satisfies + Feature Request #1539045. + + ◠Robert Stayton: stripns.xsl; pi.xsl + + Convert function-available(exsl:node-set) to use the new param + so Xalan bug is isolated. + + ◠Mauritz Jeanson: titles.xsl + + Added fixes for bugs #2112656 and #1759205: + 1. Reverted mistaken commits r7485 and r7523. + 2. Updated the template with match="link" and mode="no.anchor.mode" so that + @endterm is used if it exists and if the link has no content. + + ◠Mauritz Jeanson: titles.xsl + + Added code to handle acknowledgements in book and part. The element is processed + similarly to dedication. All acknowledgements will appear as front matter, after + any dedications. + + ◠Robert Stayton: olink.xsl + + Fix bug #2018717 use.local.olink.style uses wrong gentext context. + + ◠Robert Stayton: olink.xsl + + Fix bug #1787167 incorrect hot text for some olinks. + + ◠Robert Stayton: common.xsl + + Fix bug #1669654 Broken output if copyright contains a range. + + ◠Robert Stayton: labels.xsl + + Fix bug in labelling figure inside appendix inside article inside book. + +FO + +The following changes have been made to the fo code since the 1.74.3 release. + + ◠Jirka Kosek: highlight.xsl + + Inclusion of highlighting code was simplified. Only one import is now necessary. + + ◠Robert Stayton: fop1.xsl + + Add the new fop extensions namespace declaration, in case FOP + extension functions are used. + + ◠Robert Stayton: formal.xsl + + Add support for pgwide on informal objects. + + ◠Robert Stayton: docbook.xsl + + Fixed spurious closing quote on line 134. + + ◠Robert Stayton: docbook.xsl; autoidx-kosek.xsl; autoidx.xsl + + Convert function-available for node-set() to use + new $exsl.node.set.available param in test. + + ◠David Cramer: xref.xsl + + Suppress extra space after xref when xrefstyle='select: label nopage' (#2740472) + + ◠Mauritz Jeanson: pi.xsl + + Fixed doc bug for row-height. + + ◠David Cramer: glossary.xsl + + Internationalized punctuation in glosssee and glossseealso + + ◠Robert Stayton: param.xweb; param.ent; htmltbl.xsl; table.xsl + + Add support for some format properties on tables using + HTML table markup. These include: + - frame attribute on table (or uses $default.table.frame parameter). + - rules attribute on table (or uses $default.table.rules parameter). + - align attribute on td and th + - valign attribute on td and th + - colspan on td and th + - rowspan on td and th + - bgcolor on td and th + + ◠Robert Stayton: table.xsl + + Add support bgcolor in td and th + elements in HTML table markup. + + ◠Robert Stayton: htmltbl.xsl + + Add support for colspan and rowspan and bgcolor in td and th + elements in HTML table markup. + + ◠Robert Stayton: param.xweb + + Fix working of page-master left and right margins. + + ◠Mauritz Jeanson: param.xweb; param.ent; fop1.xsl + + Added a new parameter, bookmarks.collapse, that controls the initial state of the bookmark tree. When the parameter has a non-zero value (the default), only the top-level bookmarks are displayed initially. Otherwise, the whole tree of bookmarks is displayed. This is implemented for FOP 0.9X. Closes FR #1792326. + + ◠Robert Stayton: table.xsl; pi.xsl + + Add support for dbfo row-height processing instruction, like that in dbhtml. + + ◠Robert Stayton: lists.xsl + + Add support for dbfo keep-together processing instruction for + entire list instances. + + ◠Robert Stayton: lists.xsl; block.xsl + + Add support fo dbfo keep-together processing instruction to + more blocks like list items and paras. + + ◠Robert Stayton: lists.xsl; param.xweb; param.ent + + Add new variablelist.term.properties to format terms, per request # 1968513. + + ◠Robert Stayton: inline.xsl + + In simple.xlink, rearrange order of processing. + + ◠Robert Stayton: xref.xsl + + Handle firstterm like glossterm in mode="xref-to". + + ◠Robert Stayton: glossary.xsl; xref.xsl; pi.xsl; footnote.xsl + + Implement simple.xlink for glosssee and glossseealso so they can use + other types of linking besides otherterm. + + ◠Robert Stayton: qandaset.xsl + + Add two new qanda.defaultlabel values so that numbered sections and numbered questions can be distinguished. Satisfies Feature Request #1539045. + + ◠Robert Stayton: titlepage.xsl + + For the book title templates, I changed info/title to book/info/title + so other element's titles will not be affected. + + ◠Robert Stayton: xref.xsl; verbatim.xsl + + Use param exsl.node.set.available to test for function. + + ◠Robert Stayton: param.xweb; param.ent; footnote.xsl + + Start using new param exsl.node.set.available to work around Xalan bug. + + ◠Robert Stayton: titlepage.templates.xml + + Add comment on use of t:predicate for editor to prevent + extra processing of multiple editors. Fixes bug 2687842. + + ◠Robert Stayton: xref.xsl; autoidx.xsl + + An indexterm primary, secondary, or tertiary element with an id or xml:id + now outputs that ID, so that index entries can be cross referenced to. + + ◠Mauritz Jeanson: synop.xsl + + Added modeless template for ooclass|oointerface|ooexception. + Closes bug #1623468. + + ◠Robert Stayton: xref.xsl + + Add template with match on indexterm in mode="xref-to" to fix bug 2102592. + + ◠Robert Stayton: xref.xsl + + Now xref to qandaentry will use the label element in a question for + the link text if it has one. + + ◠Robert Stayton: inline.xsl + + Add id if specified from @id to output for quote and phrase so + they can be xref'ed to. + + ◠Robert Stayton: xref.xsl + + Add support for xref to phrase, simpara, anchor, and quote. + This assumes the author specifies something using xrefstyle since + the elements don't have ordinary link text. + + ◠Robert Stayton: toc.xsl + + Fix bug in new toc templates. + + ◠Mauritz Jeanson: titlepage.xsl; component.xsl; division.xsl; xref.xsl; + titlepage.templates⋯ + + Added code to handle acknowledgements in book and part. The element is processed + similarly to dedication. All acknowledgements will appear as front matter, after + any dedications. + + ◠Robert Stayton: toc.xsl + + Rewrite toc templates to support an empty toc or populated toc + in all permitted contexts. Same for lot elements. + This fixes bug #1595969 for FO outputs. + + ◠Robert Stayton: index.xsl + + Fix indents for seealsoie so they are consistent. + + ◠Mauritz Jeanson: param.xweb + + Removed duplicate (monospace.font.family). + + ◠Robert Stayton: param.xweb; param.ent + + Add glossentry.list.item.properties. + + ◠Robert Stayton: param.xweb; param.ent + + Add monospace.verbatim.font.width param to support @width on programlisting. + + ◠Robert Stayton: verbatim.xsl + + Put programlisting in fo:block-container with writing-mode="lr-tb" + when text direction is right to left because all program languages + are left-to-right. + + ◠Robert Stayton: verbatim.xsl + + Add support for @width on screen and programlisting, fixes bug #2012736. + + ◠Robert Stayton: xref.xsl + + Fix bug #1973585 xref to para with xrefstyle not handled correctly. + + ◠Mauritz Jeanson: block.xsl + + Added support for acknowledgements in article. + Support in book/part remains to be added. + + ◠Robert Stayton: xref.xsl + + Fix bug #1787167 incorrect hot text for some olinks. + + ◠Robert Stayton: fo.xsl + + Add writing-mode="tb-rl" as well since some XSL-FO processors support it. + + ◠Robert Stayton: autotoc.xsl; lists.xsl; glossary.xsl; fo.xsl; table.xsl; + pagesetup.xsl + + Add support for writing-mode="rl-tb" (right-to-left) in FO outputs. + Changed instances of margin-left to margin-{$direction.align.start} + and margin-right to margin-{$direction.align.end}. Those direction.align + params are computed from the writing mode value in each locale's + gentext key named 'writing-mode', introduced in 1.74.3 to add + right-to-left support to HTML outputs. + + ◠Robert Stayton: param.xweb; param.ent + + Add attribute-sets for formatting glossary terms and defs. + + ◠Robert Stayton: param.xweb; param.ent + + Add writing.mode param for FO output. + + ◠Robert Stayton: autotoc.xsl + + Fix bug 1546008: in qandaentry in a TOC, use its blockinfo/titleabbrev or blockinfo/title + instead of question, if available. For DocBook 5, use the info versions. + + ◠Keith Fahlgren: verbatim.xsl + + Add better pointer to README for XSLTHL + + ◠Keith Fahlgren: verbatim.xsl + + More tweaking the way that XSLTHL does or does not get called + + ◠Keith Fahlgren: verbatim.xsl + + Alternate attempt at sanely including/excluding XSLTHT code + +HTML + +The following changes have been made to the html code since the 1.74.3 release. + + ◠Robert Stayton: lists.xsl + + Removed redundant lang and title attributes on list element inside + div element for lists. + + ◠Robert Stayton: inline.xsl; titlepage.xsl; division.xsl; toc.xsl; + sections.xsl; table.xsl;⋯ + + Convert all calls to class.attribute to calls to common.html.attributes + to support dir, lang, and title attributes in html output for all elements. + Fulfills feature request #1993833. + + ◠Robert Stayton: chunk-common.xsl + + Fix bug #2750253 wrong links in list of figures in chunk.html + when target html is in a subdirectory and dbhtml filename used. + + ◠Jirka Kosek: highlight.xsl + + Inclusion of highlighting code was simplified. Only one import is now necessary. + + ◠Robert Stayton: chunk-common.xsl; chunktoc.xsl; docbook.xsl; + chunk-changebars.xsl; autoidx⋯ + + Convert function-available for node-set() to use + new $exsl.node.set.available param in test. + + ◠Mauritz Jeanson: pi.xsl + + Fixed doc bug for row-height. + + ◠David Cramer: glossary.xsl + + Internationalized punctuation in glosssee and glossseealso + + ◠Robert Stayton: lists.xsl; html.xsl; block.xsl + + More elements get common.html.attributes. + Added locale.html.attributes template which does the lang, + dir, and title attributes, but not the class attribute + (used on para, for example). + + ◠Robert Stayton: lists.xsl + + Replace more literal class atts with mode="class.attribute" to support + easier customization. + + ◠Robert Stayton: glossary.xsl + + Support olinking in glosssee and glossseealso. + + ◠Robert Stayton: inline.xsl + + In simple.xlink, rearrange order of processing. + + ◠Robert Stayton: xref.xsl + + Handle firstterm like glossterm in mode="xref-to". + + ◠Robert Stayton: lists.xsl; html.xsl; block.xsl + + Added template named common.html.attributes to output + class, title, lang, and dir for most elements. + Started adding it to some list and block elements. + + ◠Robert Stayton: qandaset.xsl + + Add two new qanda.defaultlabel values so that numbered sections + and numbered questions can be distinguished. Satisfies + Feature Request #1539045. + + ◠Robert Stayton: param.xweb; chunk-code.xsl; param.ent; xref.xsl; + chunkfast.xsl; verbatim.x⋯ + + Use new param exsl.node.set.available to test, handles Xalan bug. + + ◠Robert Stayton: autoidx.xsl + + Use named anchors for primary, secondary, and tertiary ids so + duplicate entries with different ids can still have an id output. + + ◠Robert Stayton: param.xweb; param.ent + + Add new param index.links.to.section. + + ◠Robert Stayton: xref.xsl; autoidx.xsl + + Pass through an id on primary, secondary, or tertiary to + the index entry, so that one could link to an index entry. + You can't link to the id on an indexterm because that is + used to place the main anchor in the text flow. + + ◠Robert Stayton: autoidx.xsl + + Add support for the new index.links.to.section param which permits + precise links to indexterms in HTML output rather than to + the section title. + + ◠Mauritz Jeanson: synop.xsl + + Added modeless template for ooclass|oointerface|ooexception. + Closes bug #1623468. + + ◠Robert Stayton: qandaset.xsl + + Make sure a qandaset has an anchor, even when it has no title, + because it may be referenced in a TOC or xref. + Before, the anchor was output by the title, but there was no + anchor if there was no title. + + ◠Robert Stayton: xref.xsl + + Add a template for indexterm with mode="xref-to" to fix bug 2102592. + + ◠Robert Stayton: xref.xsl + + Now xref to qandaentry will use the label element in a question for + the link text if it has one. + + ◠Robert Stayton: qandaset.xsl; html.xsl + + Create separate templates for computing label of question and answer + in a qandaentry, so such can be used for the alt text of an xref + to a qandaentry. + + ◠Robert Stayton: inline.xsl; xref.xsl + + Now support xref to phrase, simpara, anchor, and quote, + most useful when an xrefstyle is used. + + ◠Robert Stayton: toc.xsl + + Rewrite toc templates to support an empty toc or populated toc + in all permitted contexts. Same for lot elements. + This fixes bug #1595969 for HTML outputs. + + ◠Mauritz Jeanson: titlepage.xsl; component.xsl; division.xsl; xref.xsl; + titlepage.templates⋯ + + Added code to handle acknowledgements in book and part. The element is processed + similarly to dedication. All acknowledgements will appear as front matter, after + any dedications. + + ◠Robert Stayton: index.xsl + + Rewrote primaryie, secondaryie and tertiaryie templates to handle + nesting of elements and seeie and seealsoie, as reported in + bug # 1168912. + + ◠Robert Stayton: autotoc.xsl + + Fix simplesect in toc problem. + + ◠Robert Stayton: verbatim.xsl + + Add support for @width per bug report #2012736. + + ◠Robert Stayton: formal.xsl; htmltbl.xsl + + Fix bug #1787140 HTML tables not handling attributes correctly. + + ◠Robert Stayton: param.xweb + + Move writing-mode param. + + ◠Keith Fahlgren: refentry.xsl + + Remove a nesting of

    inside

    for refclass (made XHTML* invalid, made HTML silly) + + ◠Robert Stayton: table.xsl + + Fix bug #1945872 to allow passthrough of colwidth values to + HTML table when no tablecolumns.extension is available and + when no instance of * appears in the table's colspecs. + + ◠Mauritz Jeanson: block.xsl + + Added support for acknowledgements in article. + Support in book/part remains to be added. + + ◠Robert Stayton: chunk-common.xsl + + Fix bug #1787167 incorrect hot text for some olinks. + + ◠Robert Stayton: qandaset.xsl + + Fix bug 1546008: in qandaentry in a TOC, use its blockinfo/titleabbrev or blockinfo/title + instead of question, if available. For DocBook 5, use the info versions. + + ◠Robert Stayton: chunktoc.xsl + + Add support for generating olink database when using chunktoc.xsl. + + ◠Keith Fahlgren: verbatim.xsl + + Add better pointer to README for XSLTHL + + ◠Keith Fahlgren: verbatim.xsl + + Another stab at fixing the stupid XSLTHT includes across processors (Saxon regression reported by Sorin Ristache) + + ◠Keith Fahlgren: verbatim.xsl + + More tweaking the way that XSLTHL does or does not get called + + ◠Keith Fahlgren: verbatim.xsl + + Alternate attempt at sanely including/excluding XSLTHT code + +Manpages + +The following changes have been made to the manpages code since the 1.74.3 +release. + + ◠Robert Stayton: table.xsl + + Convert function-available test for node-set() function to + test of $exsl.node.set.available param. + + ◠Mauritz Jeanson: lists.xsl + + Added a template for bibliolist. Closes bug #1815916. + +ePub + +The following changes have been made to the epub code since the 1.74.3 release. + + ◠Keith Fahlgren: bin/spec/epub_regressions_spec.rb; bin/spec/files/ + onegraphic.xinclude.xml;⋯ + + Slightly more nuanced handling of imageobject alternatives and better support in dbtoepub for XIncludes and ENTITYs to resolve Issue #2750442 reported by Raphael Hertzog. + + ◠Keith Fahlgren: docbook.xsl + + Add a colon after an abstract/title when mapping into the dc:description for OPF metadata in ePub output to help the flat text have more pseudo-semantics (sugestions from Michael Wiedmann) + + ◠Keith Fahlgren: bin/spec/epub_regressions_spec.rb; docbook.xsl; bin/spec/ + files/de.xml + + Correctly set dc:language in OPF metadata when i18nizing. Closes Bug #2755150 + + ◠Keith Fahlgren: bin/spec/epub_regressions_spec.rb; docbook.xsl + + Corrected namespace declarations for literal XHTML elements to make them serialize "normally" + + ◠Keith Fahlgren: docbook.xsl + + Be a little bit more nuanced about dates + + ◠Keith Fahlgren: docbook.xsl; bin/spec/epub_realbook_spec.rb; bin/spec/files + /orm.book.001.x⋯ + + Add DocBook subjectset -> OPF dc:subject mapping and tests + + ◠Keith Fahlgren: docbook.xsl; bin/spec/epub_realbook_spec.rb; bin/spec/files + /orm.book.001.x⋯ + + Add DocBook date -> OPF dc:date mapping and tests + + ◠Keith Fahlgren: docbook.xsl; bin/spec/epub_realbook_spec.rb; bin/spec/files + /orm.book.001.x⋯ + + Add DocBook abstract -> OPF dc:description mapping and tests + + ◠Robert Stayton: docbook.xsl + + Check in patch submitted by user to add opf:file-as attribute + to dc:creator element. + + ◠Keith Fahlgren: bin/dbtoepub + + Adding --output option to dbtoepub based on user request + + ◠Keith Fahlgren: docbook.xsl; bin/spec/epub_spec.rb + + Cleaning and regularizing the generation of namespaced nodes for OPF, NCX, XHTML and other outputted filetypes (hat tip to bobstayton for pointing out the silly, incorrect code) + + ◠Keith Fahlgren: bin/spec/epub_regressions_spec.rb; bin/spec/files/ + refclass.xml + + Remove a nesting of

    inside

    for refclass (made XHTML* invalid, made HTML silly) + + â— Keith Fahlgren: bin/spec/epub_regressions_spec.rb; bin/spec/files/ + blockquotepre.xml + + Added regression test and fix for XHTML validation problem with s added inside

    ; This potentially causes another problem (where something is referenced by has no anchor, but someone reporting that should cause the whole thing to be reconsidered with modern browsers in mind. + +HTMLHelp + +The following changes have been made to the htmlhelp code since the 1.74.3 +release. + + ◠Robert Stayton: htmlhelp-common.xsl + + Add support for generating olink target database for htmlhelp files. + +Params + +The following changes have been made to the params code since the 1.74.3 +release. + + ◠Robert Stayton: default.table.rules.xml + + Add default setting for @rules attribute on HTML markup tables. + + ◠Mauritz Jeanson: bookmarks.collapse.xml + + Added a new parameter, bookmarks.collapse, that controls the initial state + of the bookmark tree. When the parameter has a non-zero value (the default), + only the top-level bookmarks are displayed initially. Otherwise, the whole + tree of bookmarks is displayed. + + This is implemented for FOP 0.9X. Closes FR #1792326. + + ◠Robert Stayton: variablelist.term.properties.xml + + Add new variablelist.term.properties to format terms, per + request # 1968513. + + ◠Robert Stayton: qanda.defaultlabel.xml + + Add two new qanda.defaultlabel values so that numbered sections + and numbered questions can be distinguished. Satisfies + Feature Request #1539045. + + ◠Robert Stayton: index.links.to.section.xml + + Change default to 1 to match past behavior. + + ◠Robert Stayton: exsl.node.set.available.xml + + Isolate this text for Xalan bug regarding exsl:node-set available. + If it is ever fixed in Xalan, just fix it here. + + ◠Robert Stayton: index.links.to.section.xml + + Add param to control whether an index entry links to + a section title or to the precise location of the + indexterm. + + ◠Robert Stayton: glossentry.list.item.properties.xml + + New attribute list for glossentry in glossary. + + ◠Robert Stayton: monospace.verbatim.font.width.xml + + New parameter to support @width on programlisting and screen. + + ◠Mauritz Jeanson: highlight.source.xml + + Updated and reorganized the description. + + ◠Robert Stayton: page.margin.outer.xml; page.margin.inner.xml + + Add caveat about XEP bug when writing-mode is right-to-left. + + ◠Robert Stayton: article.appendix.title.properties.xml; writing.mode.xml; + body.start.indent⋯ + + Change 'left' to 'start' and 'right' to 'end' to support right-to-left + writing mode. + + ◠Robert Stayton: glossdef.block.properties.xml; + glossdef.list.properties.xml; glossterm.blo⋯ + + Add attribute-sets for formatting glossary terms and defs. + + ◠Robert Stayton: glossterm.separation.xml + + Clarify the description. + + ◠Robert Stayton: make.year.ranges.xml + + Now handles year element containing a comma or dash without error. + +Highlighting + +The following changes have been made to the highlighting code since the 1.74.3 +release. + + ◠Jirka Kosek: README + + Inclusion of highlighting code was simplified. Only one import is now necessary. + + ◠Keith Fahlgren: README + + Adding XSLTHL readme + + ◠Keith Fahlgren: common.xsl + + Alternate attempt at sanely including/excluding XSLTHT code + +XSL-Saxon + +The following changes have been made to the xsl-saxon code since the 1.74.3 +release. + + ◠Mauritz Jeanson: src/com/nwalsh/saxon/Text.java + + Added a fix that prevents output of extra blank line. + Hopefully this closes bug #894805. + +XSL-Xalan + +The following changes have been made to the xsl-xalan code since the 1.74.3 +release. + + ◠Mauritz Jeanson: src/com/nwalsh/xalan/Text.java + + Added a fix that prevents output of extra blank line. + Hopefully this closes bug #894805. + +Release Notes: 1.74.3 + +This release fixes some bugs in the 1.74.2 release. + +See highlighting/README for XSLTHL usage instructions. + +Release Notes: 1.74.2 + +This release fixes some bugs in the 1.74.1 release. + +Release Notes: 1.74.1 + +This release includes important bug fixes and adds the following significant +feature changes: + +Gentext + + Kirghiz locale added and Chinese translations have been simplified. + + Somme support for gentext and right-to-left languages has been added. + +FO + + Various bugs have been resolved. + + Support for a new processing instruction: dbfo funcsynopsis-style has been + added. + + Added new param email.mailto.enabled for FO output. Patch from Paolo + Borelli. + + Support for documented metadata in fop1 mode has been added. + +Highlighting + + Support for the latest version of XSLTHL 2.0 and some new language syntaxes + have been added to a variety of outputs. + +Manpages + + Added man.output.better.ps.enabled param (zero default). It non-zero, no + such markup is embedded in generated man pages, and no enhancements are + included in the PostScript output generated from those man pages by the man + -Tps command. + +HTML + + Support for writing.mode to set text direction and alignment based on + document locale has been added. + + Added a new top-level stylesheet module, chunk-changebars.xsl, to be used + for generating chunked output with highlighting based on change + (@revisionflag) markup. The module imports/includes the standard chunking + and changebars templates and contains additional logic for chunked output. + See FRs #1015180 and #1819915. + +ePub + + Covers now look better in Adobe Digital Editions thanks to a patch from + Paul Norton of Adobe + + Cover handling now more generic (including limited DocBook 5.0 cover + support thanks to patch contributed by Liza Daly. + + Cover markup now carries more reliably into files destined for .mobi and + the Kindle. + + dc:identifiers are now generated from more types of numbering schemes. + + Both SEO and semantic structure of chunked ePub output by ensuring that we + always send out one and only one h1 in each XHTML chunk. + + Primitive support for embedding a single font added. + + Support for embedding a CSS customizations added. + +Roundtrip + + Support for imagedata-metadata and table as images added. + + Support for imagedata-metadata and legalnotice as images added. + +Params + + man.output.better.ps.enabled added for Manpages output + + writing.mode.xml added to set text direction. + + Added new param email.mailto.enabled for FO output. Patch from Paolo + Borelli. Closes #2086321. + + highlight.source upgraded to support the latest version of XSLTHL 2.0. + +The following is a list of changes that have been made since the 1.74.0 +release. + +Gentext + +The following changes have been made to the gentext code since the 1.74.0 +release. + + ◠Michael(tm) Smith: locale/ky.xml; Makefile + + new Kirghiz locale from Ilyas Bakirov + + ◠Mauritz Jeanson: locale/en.xml + + Added "Acknowledgements". + + ◠Dongsheng Song: locale/zh_cn.xml + + Simplified Chinese translation. + + ◠Robert Stayton: locale/lv.xml; locale/ca.xml; locale/pt.xml; locale/tr.xml; + locale/af.xml;⋯ + + Add writing-mode gentext string to support right-to-left languages. + +FO + +The following changes have been made to the fo code since the 1.74.0 release. + + ◠David Cramer: footnote.xsl + + Added a check to confirm that a footnoteref's linkend points to a footnote. Stylesheets stop processing if not and provide a useful error message. + + ◠Mauritz Jeanson: spaces.xsl + + Convert spaces to fo:leader also in elements in the DB 5 namespace. + + ◠Mauritz Jeanson: pi.xsl; synop.xsl + + Added support for a new processing instruction: dbfo funcsynopsis-style. + Closes bug #1838213. + + ◠Michael(tm) Smith: inline.xsl; param.xweb; param.ent + + Added new param email.mailto.enabled for FO output. + Patch from Paolo Borelli. Closes #2086321. + + ◠Mauritz Jeanson: docbook.xsl + + Added support for document metadata for fop1 (patch #2067318). + + ◠Jirka Kosek: param.ent; param.xweb; highlight.xsl + + Upgraded to support the latest version of XSLTHL 2.0 + -- nested markup in highlited code is now processed + -- it is no longer needed to specify path XSLTHL configuration file using Java property + -- support for new languages, including Perl, Python and Ruby was added + +HTML + +The following changes have been made to the html code since the 1.74.0 release. + + ◠Robert Stayton: param.xweb; docbook.xsl; param.ent; html.xsl + + Add support for writing.mode to set text direction and alignment based on document locale. + + ◠Mauritz Jeanson: chunk-changebars.xsl + + Added a new top-level stylesheet module, chunk-changebars.xsl, to be + used for generating chunked output with highlighting based on change + (@revisionflag) markup. The module imports/includes the standard chunking + and changebars templates and contains additional logic for chunked output. + See FRs #1015180 and #1819915. + +Manpages + +The following changes have been made to the manpages code since the 1.74.0 +release. + + ◠Michael(tm) Smith: docbook.xsl + + Put the following at the top of generated roff for each page: + \" t + purpose is to explicitly tell AT&T troff that the page needs to be + pre-processed through tbl(1); groff can figure it out + automatically, but apparently AT&T troff needs to be explicitly told + +ePub + +The following changes have been made to the epub code since the 1.74.0 release. + + ◠Keith Fahlgren: docbook.xsl + + Patch from Paul Norton of Adobe to get covers to look better in Adobe Digital Editions + + ◠Keith Fahlgren: bin/spec/epub_regressions_spec.rb; bin/spec/files/ + v5cover.xml; bin/spec/sp⋯ + + Patch contributed by Liza Daly to make ePub cover handling more generic. Additionally + DocBook 5.0's now has some limited support: + + - should reference a cover in the OPF guide for a DocBook 5.0 test document + + ◠Keith Fahlgren: bin/spec/files/isbn.xml; bin/spec/files/issn.xml; bin/spec/ + files/biblioid.⋯ + + Liza Daly reported that the dc:identifer-generation code was garbage (she was right). + + Added new tests: + - should include at least one dc:identifier + - should include an ISBN as URN for dc:identifier if an ISBN was in the metadata + - should include an ISSN as URN for dc:identifier if an ISSN was in the metadata + - should include an biblioid as a dc:identifier if an biblioid was in the metadata + - should include a URN for a biblioid with @class attribute as a dc:identifier if an biblioid was in the metadata + + ◠Keith Fahlgren: docbook.xsl; bin/spec/epub_spec.rb + + Improve both SEO and semantic structure of chunked ePub output by ensuring that + we always send out one and only one h1 in each XHTML chunk. + + DocBook::Epub + - should include one and only one

    in each HTML file in rendered ePub files + for s + - should include one and only one

    in each HTML file in rendered ePub files + for s even if they do not have section markup + + â— Keith Fahlgren: docbook.xsl; bin/spec/epub_realbook_spec.rb; bin/spec/files + /orm.book.001.x⋯ + + Adding better support for covers in epub files destined for .mobi and the Kindle + + â— Keith Fahlgren: bin/dbtoepub; bin/lib/docbook.rb; bin/spec/files/ + DejaVuSerif.otf; docbook.⋯ + + Adding primitive support for embedding a single font + + â— Keith Fahlgren: bin/dbtoepub; bin/lib/docbook.rb; bin/spec/files/ + test_cust.xsl; bin/spec/e⋯ + + Adding support for user-specified customization layers in dbtoepub + + â— Keith Fahlgren: bin/dbtoepub; bin/spec/epub_regressions_spec.rb; bin/lib/ + docbook.rb; bin/s⋯ + + Adding CSS support to .epub target & dbtoepub: + -c, --css [FILE] Use FILE for CSS on generated XHTML. + + + DocBook::Epub + ... + - should include a CSS link in HTML files when a CSS file has been provided + - should include CSS file in .epub when a CSS file has been provided + - should include a CSS link in OPF file when a CSS file has been provided + +Roundtrip + +The following changes have been made to the roundtrip code since the 1.74.0 +release. + + â— Steve Ball: blocks2dbk.xsl; template.xml; template.dot + + added support for imagedata-metadata + added support for table as images + + â— Steve Ball: blocks2dbk.xsl; normalise2sections.xsl; sections2blocks.xsl + + Improved support for personname inlines. + + â— Steve Ball: blocks2dbk.xsl; blocks2dbk.dtd; template.xml + + Added support for legalnotice. + + â— Steve Ball: blocks2dbk.xsl; wordml2normalise.xsl + + added support for orgname in author + + â— Steve Ball: specifications.xml; supported.xml; blocks2dbk.xsl; + wordml2normalise.xsl; dbk2w⋯ + + Updated specification. + to-DocBook: add cols attribute to tgroup + from-DocBook: fix for blockquote title + +Params + +The following changes have been made to the params since the 1.74.0 release. + + â— The change was to add man.output.better.ps.enabled parameter, with its + default value set to zero. If the value of the man.output.better.ps.enabled + parameter is non-zero, certain markup is embedded in each generated man + page such that PostScript output from the man -Tps command for that page + will include a number of enhancements designed to improve the quality of + that output. If man.output.better.ps.enabled is zero (the default), no such + markup is embedded in generated man pages, and no enhancements are included + in the PostScript output generated from those man pages by the man -Tps + command. WARNING: The enhancements provided by this parameter rely on + features that are specific to groff (GNU troff) and that are not part of + "classic" AT&T troff or any of its derivatives. Therefore, any man pages + you generate with this parameter enabled will be readable only on systems + on which the groff (GNU troff) program is installed, such as GNU/Linux + systems. The pages will not not be readable on systems on with the classic + troff (AT&T troff) command is installed. NOTE: The value of this parameter + only affects PostScript output generated from the man command. It has no + effect on output generated using the FO backend. TIP: You can generate + PostScript output for any man page by running the following command: man + FOO -Tps > FOO.ps You can then generate PDF output by running the following + command: ps2pdf FOO.ps + + â— Robert Stayton: writing.mode.xml + + writing mode param used to set text direction. + + â— Michael(tm) Smith: email.mailto.enabled.xml + + Added new param email.mailto.enabled for FO output. + Patch from Paolo Borelli. Closes #2086321. + + â— Jirka Kosek: highlight.source.xml; highlight.xslthl.config.xml + + Upgraded to support the latest version of XSLTHL 2.0 + -- nested markup in highlited code is now processed + -- it is no longer needed to specify path XSLTHL configuration file using Java property + -- support for new languages, including Perl, Python and Ruby was added + +Highlighting + +The following changes have been made to the highlighting code since the 1.74.0 +release. + + â— Jirka Kosek: cpp-hl.xml; c-hl.xml; tcl-hl.xml; php-hl.xml; common.xsl; + perl-hl.xml; delphi⋯ + + Upgraded to support the latest version of XSLTHL 2.0 + -- nested markup in highlited code is now processed + -- it is no longer needed to specify path XSLTHL configuration file using Java property + -- support for new languages, including Perl, Python and Ruby was added + +Release Notes: 1.74.0 + +This release includes important bug fixes and adds the following significant +feature changes: + +.epub target + + Paul Norton (Adobe) and Keith Fahlgren(O'Reilly Media) have donated code + that generates .epub documents from DocBook input. An alpha-reference + implementation in Ruby has also been provided. + + .epub is an open standard of the The International Digital Publishing Forum + (IDPF), a the trade and standards association for the digital publishing + industry. + + Read more about this target in epub/README + +XHTML 1.1 target + + To support .epub output, a strict XHTML 1.1 target has been added. The + stylesheets for this output are generated and are quite similar to the + XHTML target. + +Gentext updates + + A number of locales have been updated. + +Roundtrip improvements + + Table, figure, template syncronization, and character style improvements + have been made for WordML & Pages. Support added for OpenOffice.org. + +First implementation of a libxslt extension + + A stylesheet extension for libxslt, written in Python, has been added. The + extension is a function for adjusting column widths in CALS tables. See + extensions/README.LIBXSLT for more information. + +The following is a list of changes that have been made since the 1.73.2 +release. + +Gentext + +The following changes have been made to the gentext code since the 1.73.2 +release. + + â— Michael(tm) Smith: locale/id.xml + + Checked in changes to Indonesion locale submitted by Euis Luhuanam a long time ago. + + â— Michael(tm) Smith: locale/lt.xml + + Added changes to Lithuanian locate submitted a long time back by Nikolajus Krauklis. + + â— Michael(tm) Smith: locale/hu.xml + + fixed error in lowercase.alpha definition in Hungarian locale + + â— Michael(tm) Smith: locale/nb.xml + + Corrected language code for nb locale, and restored missing "startquote" key. + + â— Michael(tm) Smith: locale/ja.xml + + Committed changes to ja locale file, from Akagi Kobayashi. Adds bracket quotes around many xref instances that did not have them + before. + + â— Michael(tm) Smith: Makefile + + "no" locale is now "nb" + + â— Michael(tm) Smith: locale/nb.xml + + Update Norwegian BokmÃ¥l translation. Thanks to Hans F. Nordhaug. + + â— Michael(tm) Smith: locale/no.xml; locale/nb.xml + + per message from Hans F. Nordhaug, correct identifier for + Norwegian BokmÃ¥l is "nb" (not "no") and has been for quite some + time now... + + â— Michael(tm) Smith: locale/ja.xml + + Converted ja.xml source file to use real unicode characters so + that the actual glyphs so up when you edit it in a text editor + (instead of the character references). + + â— Michael(tm) Smith: locale/ja.xml + + Checked in changes to ja.xml locale file. Thanks to Akagi Kobayashi. + + â— Michael(tm) Smith: locale/it.xml + + Changes from Federico Zenith + + â— Dongsheng Song: locale/zh_cn.xml + + Added missing translations. + +Common + +The following changes have been made to the common code since the 1.73.2 +release. + + â— Michael(tm) Smith: l10n.xsl + + Added new template "l10.language.name" for retrieving the + English-language name of the lang setting of the current document. + Closes #1916837. Thanks to Simon Kennedy. + + â— Michael(tm) Smith: refentry.xsl + + fixed syntax error + + â— Michael(tm) Smith: refentry.xsl + + fixed a couple of typos + + â— Michael(tm) Smith: refentry.xsl + + refined handling of cases where refentry "source" or "manual" + metadata is missing or when we use fallback content instead. We + now report a Warning if we use fallback content. + + â— Michael(tm) Smith: refentry.xsl + + don't use refmiscinfo@class=date value as fallback for refentry + "source" or "manual" metadata fields + + â— Michael(tm) Smith: refentry.xsl + + Made reporting of missing refentry metadata more quiet: + + - we no longer report anything if usable-but-not-preferred + metadata is found; we just quietly use whatever we manage to + find + + - we now only report missing "source" metadata if the refentry + is missing BOTH "source name" and "version" metadata; if it + has one but not the other, we use whichever one it has and + don't report anything as missing + + The above changes were made because testing with some "real world" + source reveals that some authors are intentionally choosing to use + "non preferred" markup for some metadata, and also choosing to + omit "source name" or "version" metadata in there DocBook XML. So + it does no good to give them pedantic reminders about what they + already know... + + Also, changed code to cause "fixme" text to be inserted in output + in particular cases: + + - if we can't manage to find any "source" metadata at all, we + now put fixme text into the output + + - if we can't manage to find any "manual" metadata a all, we + now put fixme text into the output + + The "source" and "manual" metadata is necessary information, so + buy putting the fixme stuff in the output, we alert users to the + need problem of it being missing. + + â— Michael(tm) Smith: refentry.xsl + + When generating manpages output, we no longer report anything if + the refentry source is missing date or pubdate content. In + practice, many users intentionally omit the date from the source + because they explicitly want it to be generated. + + â— Michael(tm) Smith: l10n.xml + + further change needed for switch from no locale to nb. + + â— Michael(tm) Smith: common.xsl + + Added support for orgname in authorgroup. Thanks to Camille + Bégnis. + + â— Michael(tm) Smith: Makefile + + "no" locale is now "nb" + + â— Mauritz Jeanson: stripns.xsl + + Removed the template matching "ng:link|db:link" (in order to make @xlink:show + work with elements). As far as I can tell, this template is no longer needed. + + â— Mauritz Jeanson: entities.ent + + Moved declaration of comment.block.parents entity to common/entities.ent. + + â— Mauritz Jeanson: titles.xsl + + Added an update the fix made in revision 7528 (handling of xref/link in no.anchor.mode mode). + Having xref in title is not a problem as long as the target is not an ancestor element. + Closes bug #1838136. + + Note that an xref that is in a title and whose target is an ancestor element is still not + rendered in the TOC. This could be considered a bug, but on the other hand I cannot really + see the point in having such an xref in a document. + + â— Mauritz Jeanson: titles.xsl + + Added a "not(ancestor::title)" test to work around "too many nested + apply-templates" problems when processing xrefs or links in no.anchor.mode mode. + Hopefully, this closes bug #1811721. + + â— Mauritz Jeanson: titles.xsl + + Removed old template matching "link" in no.anchor.mode mode. + + â— Mauritz Jeanson: titles.xsl + + Process in no.anchor.mode mode with the same template as . + Closes bug #1759205 (Empty link in no.anchor.mode mode). + + â— Mauritz Jeanson: titles.xsl + + In no.anchor.mode mode, do not output anchors for elements that are descendants + of . Previously, having inline elements with @id/@xml:id in <title>s + resulted in anchors both in the TOC and in the main flow. Closes bug #1797492. + +FO + +The following changes have been made to the fo code since the 1.73.2 release. + + â— Mauritz Jeanson: pi.xsl + + Updated documentation for keep-together. + + â— Mauritz Jeanson: task.xsl + + Enabled use of the keep-together PI on task elements. + + â— Robert Stayton: index.xsl + + FOP1 requires fo:wrapper for inline index entries, not fo:inline. + + â— Robert Stayton: index.xsl + + Fixed non-working inline.or.block template for indexterm wrappers. + Add fop1 to list of processors using inline.or.block. + + â— Mauritz Jeanson: table.xsl + + Fixed bug #1891965 (colsep in entytbl not working). + + â— Mauritz Jeanson: titlepage.xsl + + Added support for title in revhistory. Closes bug #1842847. + + â— Mauritz Jeanson: pi.xsl + + Small doc cleanup (dbfo float-type). + + â— Mauritz Jeanson: titlepage.xsl + + Insert commas between multiple copyright holders. + + â— Mauritz Jeanson: autotoc.xsl; division.xsl + + Added modifications to support nested set elements. See bug #1853172. + + â— David Cramer: glossary.xsl + + Added normalize-space to xsl:sorts to avoid missorting of glossterms due to stray leading spaces. + + â— David Cramer: glossary.xsl + + Fixed bug #1854199: glossary.xsl should use the sortas attribute on glossentry + + â— Mauritz Jeanson: inline.xsl + + Added a template for citebiblioid. The hyperlink target is the parent of the referenced biblioid, + and the "hot text" is the biblioid itself enclosed in brackets. + + â— Mauritz Jeanson: inline.xsl + + Moved declaration of comment.block.parents entity to common/entities.ent. + + â— Mauritz Jeanson: docbook.xsl + + Updated message about unmatched element. + + â— Mauritz Jeanson: param.xweb + + Added link to profiling chapter of TCG. + + â— Mauritz Jeanson: refentry.xsl + + Fixed typo (refsynopsysdiv -> refsynopsisdiv). + + â— David Cramer: fop.xsl; fop1.xsl; ptc.xsl; xep.xsl + + Added test to check generate.index param when generating pdf bookmarks + + â— Mauritz Jeanson: graphics.xsl + + Added support for MathML in imagedata. + + â— Michael(tm) Smith: math.xsl + + Removed unnecessary extra test condition in test express that + checks for passivetex. + + â— Michael(tm) Smith: math.xsl + + Don't use fo:instream-foreign-object if we are processing with + passivetex. Closes #1806899. Thanks to Justus Piater. + + â— Mauritz Jeanson: component.xsl + + Added code to output a TOC for an appendix in an article when + generate.toc='article/appendix toc'. Closes bug #1669658. + + â— Dongsheng Song: biblio-iso690.xsl + + Change encoding from "windows-1250" to "UTF-8". + + â— Mauritz Jeanson: pi.xsl + + Updated documentation for dbfo_label-width. + + â— Mauritz Jeanson: lists.xsl + + Added support for the dbfo_label-width PI in calloutlists. + + â— Robert Stayton: biblio.xsl + + Support finding glossary database entries inside bibliodivs. + + â— Robert Stayton: formal.xsl + + Complete support for <?dbfo pgwide="1"?> for informal + elements too. + + â— Mauritz Jeanson: table.xsl + + In the table.block template, added a check for the dbfo_keep-together PI, so that + a table may break (depending on the PI value) at a page break. This was needed + since the outer fo:block that surrounds fo:table has keep-together.within-column="always" + by default, which prevents the table from breaking. Closes bug #1740964 (Titled + table does not respect dbfo PI). + + â— Mauritz Jeanson: pi.xsl + + Added a few missing @role="tcg". + + â— Mauritz Jeanson: inline.xsl + + Use normalize-space() in glossterm comparisons (as in html/inline.xsl). + + â— Mauritz Jeanson: autoidx.xsl + + Removed the [&scope;] predicate from the target variable in the template with name="reference". + This filter was the cause of missing index backlinks when @zone and @type were used on indexterms, + with index.on.type=1. Closes bug #1680836. + + â— Michael(tm) Smith: inline.xsl; xref.xsl; footnote.xsl + + Added capability in FO output for displaying URLs for all + hyperlinks (elements marked up with xlink:href attributes) in the + same way as URLs for ulinks are already handled (which is to say, + either inline or as numbered footnotes). + + Background on this change: + DocBook 5 allows "ubiquitous" linking, which means you can make + any element a hyperlink just by adding an xlink:href attribute to + it, with the value set to an external URL. That's in contrast to + DocBook 4, which only allows you to use specific elements (e.g., + the link and ulink elements) to mark up hyperlinks. + + The existing FO stylesheets have a mechanism for handling display + of URLs for hyperlinks that are marked up with ulink, but they did + not handle display of URLs for elements that were marked up with + xlink:href attributes. This change adds handling for those other + elements, enabling the URLs they link to be displayed either + inline or as numbered footnotes (depending on what values the user + has the ulink.show and ulink.footnotes params set to). + + Note that this change only adds URL display support for elements + that call the simple.xlink template -- which currently is most + (but not all) inline elements. + + This change also moves the URL display handling out of the ulink + template and into a new "hyperlink.url.display" named template; + the ulink template and the simple.xlink named template now both + call the hyperlink.url.display template. + + Warning: In the stylesheet code that determines what footnote + number to assign to each footnote or external hyperlink, there is + an XPath expression for determining whether a particular + xlink:href instance is an external hyperlink; that expression is + necessarily a bit complicated and further testing may reveal that + it doesn't handle all cases as expected -- so some refinements to + it may need to be done later. + + Closes #1785519. Thanks to Ken Morse for reporting and + troubleshooting the problem. + +HTML + +The following changes have been made to the html code since the 1.73.2 release. + + â— Keith Fahlgren: inline.xsl; synop.xsl + + Work to make HTML and XHTML targets more valid + + â— Keith Fahlgren: table.xsl + + Add better handling for tables that have footnotes in the titles + + â— Keith Fahlgren: biblio.xsl + + Add anchors to bibliodivs + + â— Keith Fahlgren: formal.xsl; Makefile; htmltbl.xsl + + Initial checkin/merge of epub target from work provided by Paul Norton of Adobe + and Keith Fahlgren of O'Reilly. + + This change includes new code for generating the XHTML 1.1 target sanely. + + â— Mauritz Jeanson: biblio.xsl + + Added code for creating URLs from biblioids with @class="doi" (representing Digital + Object Identifiers). See FR #1934434 and http://doi.org. + + To do: 1) Add support for FO output. 2) Figure out how @class="doi" should be handled + for bibliorelation, bibliosource and citebiblioid. + + â— Norman Walsh: formal.xsl + + Don't use xsl:copy because it forces the resulting element to be in the same namespace as the source element; in the XHTML stylesheets, that's wrong. But the HTML-to-XHTML converter does the right thing with literal result elements, so use one of them. + + â— Michael(tm) Smith: Makefile + + Added checks and hacks to various makefiles to enable building + under Cygwin. This stuff is ugly and maybe not worth the mess and + trouble, but does seem to work as expected and not break anything + else. + + â— Michael(tm) Smith: docbook.xsl + + added "exslt" namespace binding to html/docbook.xsl file (in + addition to existing "exsl" binding. reason is because lack of it + seems to cause processing problems when using the profiled + version of the stylsheet + + â— Norman Walsh: chunk-common.xsl + + Rename link + + â— Mauritz Jeanson: table.xsl + + Added a fix to make rowsep apply to the last row of thead in entrytbl. + + â— Michael(tm) Smith: synop.xsl + + Simplified and streamlined handling of output for ANSI-style + funcprototype output, to correct a problem that was causing type + data to be lost in the output parameter definitions. For example, + for an instance like this: + <paramdef>void *<parameter>dataptr</parameter>[]</paramdef> + ... the brackets (indicating an array type) were being dropped. + + â— Michael(tm) Smith: synop.xsl + + Changed HTML handling of K&R-style paramdef output. The parameter + definitions are no longer output in a table (though the prototype + still is). The reason for the change is that the + kr-tabular-funcsynopsis-mode template was causing type data to be + lost in the output parameter definitions. For example, for an + instance like this: + <paramdef>void *<parameter>dataptr</parameter>[]</paramdef> + ... the brackets (indicating an array type) were being dropped. + The easiest way to deal with the problem is to not try to chop up + the parameter definitions and display them in table format, but to + instead just output them as-is. May not look quite as pretty, but + at least we can be sure no information is being lost... + + â— Michael(tm) Smith: pi.xsl + + updated wording of doc for funcsynopsis-style PI + + â— Michael(tm) Smith: param.xweb; param.ent; synop.xsl + + Removed the funcsynopsis.tabular.threshold param. It's no longer + being used in the code and hasn't been since mid 2006. + + â— Mauritz Jeanson: graphics.xsl + + Added support for the img.src.path parameter for SVG graphics. Closes bug #1888169. + + â— Mauritz Jeanson: chunk-common.xsl + + Added missing space. + + â— Norman Walsh: component.xsl + + Fix bug where component titles inside info elements were not handled properly + + â— Michael(tm) Smith: pi.xsl + + Moved dbhtml_stop-chunking embedded doc into alphabetical order, + fixed text of TCG section it see-also'ed. + + â— David Cramer: pi.xsl + + Added support for <?dbhtml stop-chunking?> processing instruction + + â— David Cramer: chunk-common.xsl; pi.xsl + + Added support for <?dbhtml stop-chunking?> processing instruction + + â— David Cramer: glossary.xsl + + Fixed bug #1854199: glossary.xsl should use the sortas attribute on glossentry. Also added normalize-space to avoid missorting due to stray leading spaces. + + â— Mauritz Jeanson: inline.xsl + + Added a template for citebiblioid. The hyperlink target is the parent of the referenced biblioid, + and the "hot text" is the biblioid itself enclosed in brackets. + + â— Mauritz Jeanson: inline.xsl + + Added support for @xlink:show in the simple.xlink template. The "new" and "replace" + values are supported (corresponding to values of "_blank" and "_top" for the + ulink.target parameter). I have assumed that @xlink:show should override ulink.target + for external URI links. This closes bugs #1762023 and #1727498. + + â— Mauritz Jeanson: inline.xsl + + Moved declaration of comment.block.parents entity to common/entities.ent. + + â— Mauritz Jeanson: param.xweb + + Added link to profiling chapter of TCG. + + â— Dongsheng Song: biblio-iso690.xsl + + Change encoding from "windows-1250" to "UTF-8". + + â— Robert Stayton: biblio.xsl + + Add support in biblio collection to entries in bibliodivs. + + â— Mauritz Jeanson: pi.xsl + + Added missing @role="tcg". + + â— Mauritz Jeanson: chunk-common.xsl; titlepage.xsl + + Refactored legalnotice/revhistory chunking, so that the use.id.as.filename + parameter as well as the dbhtml_filename PI are taken into account. A new named + template in titlepage.xsl is used to compute the filename. + + â— Mauritz Jeanson: chunk-common.xsl; titlepage.xsl + + An update to the fix for bug #1790495 (r7433): + The "ln-" prefix is output only when the legalnotice doesn't have an + @id/@xml:id, in which case the stylesheets generate an ID value, + resulting in a filename like "ln-7e0fwgj.html". This is useful because + without the prefix, you wouldn't know that the file contained a legalnotice. + The same logic is also applied to revhistory, using an "rh-" prefix. + + â— Mauritz Jeanson: autoidx.xsl + + Removed the [&scope;] predicate from the target variable in the template with name="reference". + This filter was the cause of missing index backlinks when @zone and @type were used on indexterms, + with index.on.type=1. Closes bug #1680836. + + â— Mauritz Jeanson: titlepage.xsl + + Added 'ln-' prefix to the name of the legalnotice chunk, in order to match the + <link href"..."> that is output by make.legalnotice.head.links (chunk-common.xsl). + Modified the href attribute on the legalnotice link. + Closes bug #1790495. + +Manpages + +The following changes have been made to the manpages code since the 1.73.2 +release. + + â— Michael(tm) Smith: other.xsl + + slightly adjusted spacing around admonition markers + + â— Michael(tm) Smith: refentry.xsl; utility.xsl + + make sure refsect3 titles are preceded by a line of space, and + make the indenting of their child content less severe + + â— Michael(tm) Smith: block.xsl + + only indent verbatim environments in TTY output, not in non-TTY/PS + + â— Michael(tm) Smith: block.xsl + + made another adjustment to correct vertical alignment of admonition marker + + â— Michael(tm) Smith: block.xsl; other.xsl + + Adjusted/corrected alignment of adominition marker in PS/non-TTY output. + + â— Michael(tm) Smith: endnotes.xsl + + For PS/non-TTY output, display footnote/endnote numbers in + superscript. + + â— Michael(tm) Smith: table.xsl; synop.xsl; utility.xsl + + Changed handling of hanging indents for cmdsynopsis, funcsynopsis, + and synopfragment such that they now look correct in non-TTY/PS + output. We now use the groff \w escape to hang by the actual width + -- in the current font -- of the command, funcdef, or + synopfragment references number (as opposed to hanging by the + number of characters). This rendering in TTY output remains the + same, since the width in monospaced TTY output is the same as the + number of characters. + + Also, created new synopsis-block-start and synopsis-block-end + templates to use for cmdsynopsis and funcsynopsis instead of the + corresponding verbatim-* templates. + + Along with those changes, also corrected a problem that caused the + content of synopfragment to be dropped, and made a + vertical-spacing change to adjust spacing around table titles and + among sibling synopfragment instances. + + â— Michael(tm) Smith: other.xsl + + use common l10.language.name template to retrieve English-language name + + â— Michael(tm) Smith: synop.xsl; inline.xsl + + added comment in code explaining why we don't put filename output + in italic (despite the fact that man guidelines say we should) + + â— Michael(tm) Smith: inline.xsl + + put filename output in monospace instead of italic + + â— Michael(tm) Smith: synop.xsl + + put cmdsynopsis in monospace + + â— Michael(tm) Smith: inline.xsl + + removed template match for literal. template matches for monospace + inlines are all imported from the HTML stylesheet + + â— Michael(tm) Smith: block.xsl + + don't indent verbatim environments that are descendants of + refsynopsisdiv, not put backgrounds behind them + + â— Michael(tm) Smith: inline.xsl + + set output of the literal element in monospace. this causes all + inline monospace instances in the git man pages to be set in + monospace (since DocBook XML source for git docs is generated with + asciidoc and asciidoc consistently outputs only <literal> for + inline monospace (not <command> or <code> or anything else). + Of course this only affects non-TTY output... + + â— Michael(tm) Smith: utility.xsl + + Added inline.monoseq named template. + + â— Michael(tm) Smith: utility.xsl + + don't bother using a custom register to store the previous + font-family value when setting blocks of text in code font; just + use \F[] .fam with no arg to switch back + + â— Michael(tm) Smith: endnotes.xsl + + put links in blue in PS output (note that this matches how groff + renders content marked up with the .URL macro) + + â— Michael(tm) Smith: endnotes.xsl; param.xweb; param.ent + + removed man.links.are.underlined and added man.font.links. Also, + changed the default font formatting for links to bold. + + â— Michael(tm) Smith: endnotes.xsl; param.xweb; param.ent + + Added new param man.base.url.for.relative.links .. specifies a + base URL for relative links (for ulink, @xlink:href, imagedata, + audiodata, videodata) shown in the generated NOTES section of + man-page output. The value of man.base.url.for.relative.links is + prepended to any relative URI that is a value of ulink url, + xlink:href, or fileref attribute. + + If you use relative URIs in link sources in your DocBook refentry + source, and you leave man.base.url.for.relative.links unset, the + relative links will appear "as is" in the NOTES section of any + man-page output generated from your source. That's probably not + what you want, because such relative links are only usable in the + context of HTML output. So, to make the links meaningful and + usable in the context of man-page output, set a value for + man.base.url.for.relative.links that points + to the online version of HTML output generated from your DocBook + refentry source. For example: + + <xsl:param name="man.base.url.for.relative.links" + >http://www.kernel.org/pub/software/scm/git/docs/</xsl:param> + + â— Michael(tm) Smith: info.xsl + + If a source refentry contains a Documentation or DOCUMENTATION + section, don't report it as having missing AUTHOR information. + Also, if missing a contrib/personblurb for a person or org, report + pointers to http://docbook.sf.net/el/personblurb and to + http://docbook.sf.net/el/contrib + + â— Michael(tm) Smith: info.xsl + + If we encounter an author|editor|othercredit instance that lacks a + personblurb or contrib, report it to the user (because that means + we have no information about that author|editor|othercredit to + display in the generated AUTHOR|AUTHORS section...) + + â— Michael(tm) Smith: info.xsl; docbook.xsl; other.xsl + + if we can't find any usable author data, emit a warning and insert + a fixme in the output + + â— Michael(tm) Smith: info.xsl + + fixed bug in indenting of output for contrib instances in AUTHORS + section. Thanks to Daniel Leidert and the fglrx docs for exposing + the bug. + + â— Michael(tm) Smith: block.xsl + + for a para or simpara that is the first child of a callout, + suppress the .sp or .PP that would normally be output (because in + those cases, the output goes into a table cell, and the .sp or .PP + markup causes a spurious linebreak before it when displayed + + â— Michael(tm) Smith: lists.xsl + + Added support for rendering co callouts and calloutlist instances. + So you can now use simple callouts -- marking up programlisting + and such with co instances -- and have the callouts displayed in + man-page output. ("simple callouts" means using co@id and + callout@arearefs pointing to co@id instances; in man/roff output, + we can't/don't support markup that uses areaset and area) + + â— Michael(tm) Smith: block.xsl + + only put a line of space after a verbatim if it's followed by a + text node or a paragraph + + â— Michael(tm) Smith: utility.xsl + + put verbatim environments in slightly smaller font in non-TTY + output + + â— Michael(tm) Smith: lists.xsl + + minor whitespace-only reformatting of lists.xsl source + + â— Michael(tm) Smith: lists.xsl + + Made refinements/fixes to output of orderedlist and itemizedlist + -- in part, to get mysql man pages to display correctly. This + change causes a "\c" continuation marker to be added between + listitem markers and contents (to ensure that the content remains + on the same line as the marker when displayed) + + â— Michael(tm) Smith: block.xsl + + put a line of vertical space after all verbatim output that has + sibling content following it (not just if that sibling content is + a text node) + + â— Michael(tm) Smith: block.xsl + + refined spacing around titles for admonitions + + â— Michael(tm) Smith: block.xsl; other.xsl + + Deal with case of verbatim environments that have a linebreak + after the opening tag. Assumption is that users generally don't + want that linebreak to appear in output, so we do some groff + hackery to mess with vertical spacing and close the space. + + â— Michael(tm) Smith: inline.xsl + + indexterm instances now produce groff comments like this: + + .\" primary: secondary: tertiary + + remark instances, if non-empty, now produce groff comments + + â— Michael(tm) Smith: charmap.groff.xsl; other.xsl + + convert no-break space character to groff "\ \&" (instead of just + "\ "). the reason is that if a space occurs at the end of a line, + our processing causes it to be eaten. a real-world case of this is + the mysql(1) man page. appending the "\&" prevents that + + â— Michael(tm) Smith: block.xsl + + output "sp" before simpara output, not after it (outputting it + after results in undesirable whitespace in particular cases; for + example, in the hg/mercurial docs + + â— Michael(tm) Smith: table.xsl; synop.xsl; utility.xsl + + renamed from title-preamble to pinch.together and replaced "sp -1" + between synopsis fragments with call to pinch.together instead + + â— Michael(tm) Smith: table.xsl + + use title-preamble template for table titles (instead of "sp -1" + hack), and "sp 1" after all tables (instead of just "sp" + + â— Michael(tm) Smith: utility.xsl + + created title-preamble template for suppressing line spacing after + headings + + â— Michael(tm) Smith: info.xsl + + further refinement of indenting in AUTHORS section + + â— Michael(tm) Smith: block.xsl; other.xsl + + refined handling of admonitions + + â— Michael(tm) Smith: lists.xsl + + Use RS/RE in another place where we had IP "" + + â— Michael(tm) Smith: info.xsl + + Replace (ab)use of IP with "sp -1" in AUTHORS section with RS/RE + instead. + + â— Michael(tm) Smith: table.xsl; synop.xsl; info.xsl + + changed all instances of ".sp -1n" to ".sp -1" + + â— Michael(tm) Smith: other.xsl + + add extra line before SH heads only in non-TTY output + + â— Michael(tm) Smith: block.xsl + + Reworked output for admonitions (caution, important, note, tip, + warning). In TTY output, admonitions now get indented. In non-TTY + output, a colored marker (yellow) is displayed next to them. + + â— Michael(tm) Smith: other.xsl + + Added BM/EM macros for putting a colored marker in margin next to + a block of text. + + â— Michael(tm) Smith: utility.xsl + + created make.bold.title template by moving title-bolding part out + from nested-section-title template. This allows the bolding to + also be used by the template for formatting admonitions + + â— Michael(tm) Smith: info.xsl + + put .br before copyright contents to prevent them from getting run in + + â— Michael(tm) Smith: refentry.xsl; other.xsl; utility.xsl + + made point size of output for Refsect2 and Refsect3 heads bigger + + â— Michael(tm) Smith: other.xsl + + put slightly more space between SH head and underline in non-TTY + output + + â— Michael(tm) Smith: param.xweb; param.ent; other.xsl + + Added the man.charmap.subset.profile.english parameter and refined + the handling of charmap subsets to differentiate between English + and non-English source. + + This way charmap subsets are now handled is this: + + If the value of the man.charmap.use.subset parameter is non-zero, + and your DocBook source is not written in English (that is, if its + lang or xml:lang attribute has a value other than en), then the + character-map subset specified by the man.charmap.subset.profile + parameter is used instead of the full roff character map. + + Otherwise, if the lang or xml:lang attribute on the root element + in your DocBook source or on the first refentry element in your + source has the value en or if it has no lang or xml:lang + attribute, then the character-map subset specified by the + man.charmap.subset.profile.english parameter is used instead of + man.charmap.subset.profile. + + The difference between the two subsets is that + man.charmap.subset.profile provides mappings for characters in + Western European languages that are not part of the Roman + (English) alphabet (ASCII character set). + + â— Michael(tm) Smith: other.xsl + + Various updates, mainly related to uppercasing SH titles: + + - added a "Language: " metadata line to the top comment area of + output man pages, to indicate the language the page is in + + - added a "toupper" macro of doing locale-aware uppercasing of + SH titles and cross-references to SH titles; the mechanism + relies on the uppercase.alpha and lowercase.alpha DocBook + gentext keys to do locale-aware uppercasing based on the + language the page is written in + + - added a "string.shuffle" template, which provides a library + function for "shuffling" two strings together into a single + string; it takes the first character for the first string, the + first character from second string, etc. The only current use + for it is to generate the argument for the groff tr request + that does string uppercasing. + + - added make.tr.uppercase.arg and make.tr.normalcase.arg named + templates for use in generating groff code for uppercasing and + "normal"-casing SH titles + + - made the BB/BE "background drawing" macros have effect only in + non-TTY output + + - output a few comments in the top part of source + + â— Michael(tm) Smith: utility.xsl + + removed some leftover kruft + + â— Michael(tm) Smith: refentry.xsl + + To create the name(s) for each man page, we now replace any spaces + in the refname(s) with underscores. This ensures that tools like + lexgrog(1) will be able to parse the name (lexgrog won't parse + names that contain spaces). + + â— Michael(tm) Smith: docbook.xsl + + Put a comment into source of man page to indicate where the main + content starts. (We now have a few of macro definitions at the + start of the source, so putting this comment in helps those that + might be viewing the source.) + + â— Michael(tm) Smith: refentry.xsl + + refined mechanism for generating SH titles + + â— Michael(tm) Smith: charmap.groff.xsl + + Added zcaron, Zcaron, scaron, and Scaron to the groff character map. + This means that generated Finnish man pages will no longer contain + any raw accented characters -- they'll instead by marked up with + groff escapes. + + â— Michael(tm) Smith: other.xsl; utility.xsl + + corrected a regression I introduced about a year ago that caused + dots to be output just as "\." -- instead needs to be "\&." (which + is what it will be now, after this change) + + â— Michael(tm) Smith: refentry.xsl + + Changed backend handling for generating titles for SH sections and + for cross-references to those sections. This should have no effect + on TTY output (behavior should remain the same hopefully) but + results in titles in normal case (instead of uppercase) in PS + output. + + â— Michael(tm) Smith: info.xsl + + use make.subheading template to make subheadings for AUTHORS and + COPYRIGHT sections (instead of harcoding roff markup) + + â— Michael(tm) Smith: block.xsl + + put code font around programlisting etc. + + â— Michael(tm) Smith: synop.xsl; docbook.xsl + + embed custom macro definitions in man pages, plus wrap synopsis in + code font + + â— Michael(tm) Smith: endnotes.xsl + + use the make.subheading template to generated SH subheading for + endnotes section. + + â— Michael(tm) Smith: lists.xsl + + Added some templates for generating if-then-else conditional + markup in groff, so let's use those instead of hard-coding it in + multiple places... + + â— Michael(tm) Smith: other.xsl; utility.xsl + + Initial checkin of some changes related to making PS/PDF output + from "man -l -Tps" look better. The current changes: + + - render synopsis and verbatim sections in a monospace/code font + + - put a light-grey background behind all programlisting, screen, + and literallayout instances + + - prevent SH heads in PS output from being rendered in uppercase + (as they are in console output) + + - also display xrefs to SH heads in PS output in normal case + (instead of uppercase) + + - draw a line under SH heads in PS output + + The changes made to the code to support the above features were: + + - added some embedded/custom macros: one for conditionally + upper-casing SH x-refs, one for redefining the SH macro + itself, with some conditional handling for PS output, and + finally a macro for putting a background/screen (filled box) + around a block of text (e.g., a program listing) in PS output + + - added utility templates for wrapping blocks of text in code + font; also templates for inline code font + + â— Robert Stayton: refentry.xsl + + refpurpose nodes now get apply-templates instead of just normalize-space(). + + â— Michael(tm) Smith: lists.xsl + + Fixed alignment of first lined of text for each listitem in + orderedlist output for TTY. Existing code seemed to have been + causing an extra undesirable space to appear. + + â— Michael(tm) Smith: lists.xsl + + Wrapped some roff conditionals around roff markup for orderedlist + and itemizedlist output, so that the lists look acceptable in PS + output as well as TTY. + + â— Michael(tm) Smith: pi.xsl; synop.xsl; param.xweb; param.ent + + Added the man.funcsynopsis.style parameter. Has the same effect in + manpages output as the funcsynopsis.style parameter has in HTML + output -- except that its default value is 'ansi' instead of 'kr'. + + â— Michael(tm) Smith: synop.xsl + + Reworked handling of K&R funcprototype output. It no longer relies + on the HTML kr-tabular templates, but instead just does direct + transformation to roff. For K&R output, it displays the paramdef + output in an indented list following the prototype. + + â— Michael(tm) Smith: synop.xsl + + Properly integrated handling for K&R output into manpages + stylesheet. The choice between K&R output and ANSI output is + currently controlled through use of the (HTML) funcsynopsis.style + parameter. Note that because the mechanism does currently rely on + funcsynopsis.style, the default in manpages output is now K&R + (because that's the default of that param). But I suppose I ought + to create a man.funcsynopsis.style and make the default for that + ANSI (to preserve the existing default behavior). + + â— Michael(tm) Smith: docbook.xsl + + added manpages/pi.xsl file + + â— Michael(tm) Smith: .cvsignore; pi.xsl + + Added "dbman funcsynopsis-style" PI and incorporated it into the + doc build. + + â— Michael(tm) Smith: refentry.xsl + + Fixed regression that caused an unescaped dash to be output + between refname and refpurpose content. Closes bug #1894244. + Thanks to Daniel Leidert. + + â— Michael(tm) Smith: other.xsl + + Fixed problem with dots being escaped in filenames of generated + man files. Closes #1827195. Thanks to Daniel Leidert. + + â— Michael(tm) Smith: inline.xsl + + Added support for processing structfield (was appearing in roff + output surrounded by HTML <em> tags; fixed so that it gets roff + ital markup). Closes bug #1858329. Thanks to Sam Varshavchik. + +Epub + +The following changes have been made to the epub code since the 1.73.2 release. + + â— Keith Fahlgren: bin/spec/README; bin/spec/epub_realbook_spec.rb + + 'Realbook' spec now passes + + â— Keith Fahlgren: bin/dbtoepub; README; bin/spec/README; bin/lib/docbook.rb; + bin/spec/epub_r⋯ + + Very primitive Windows support for dbtoepub reference implementation; README for running tests and for the .epub target in general; shorter realbook test document (still fails for now) + + â— Keith Fahlgren: bin/dbtoepub; bin/spec/epub_regressions_spec.rb; bin/lib/ + docbook.rb; bin/s⋯ + + Changes to OPF spine to not duplicate idrefs for documents with parts not at the root; regression specs for same + + â— Keith Fahlgren: docbook.xsl + + Fixing linking to cover @id, distinct from other needs of cover-image-id (again, thanks to Martin Goerner) + + â— Keith Fahlgren: docbook.xsl + + Updating the title of the toc element in the guide to be more explicit (thanks to Martin Goerner) + + â— Keith Fahlgren: bin/spec/examples/amasque_exploded/content.opf; bin/spec/ + examples/amasque_⋯ + + Initial checkin/merge of epub target from work provided by Paul Norton of Adobe + and Keith Fahlgren of O'Reilly. + + â— Keith Fahlgren: docbook.xsl + + == General epub test support + + $ spec -O ~/.spec.opts spec/epub_spec.rb + + DocBook::Epub + - should be able to be created + - should fail on a nonexistent file + - should be able to render to a file + - should create a file after rendering + - should have the correct mimetype after rendering + - should be valid .epub after rendering an article + - should be valid .epub after rendering an article without sections + - should be valid .epub after rendering a book + - should be valid .epub after rendering a book even if it has one graphic + - should be valid .epub after rendering a book even if it has many graphics + - should be valid .epub after rendering a book even if it has many duplicated graphics + - should report an empty file as invalid + - should confirm that a valid .epub file is valid + - should not include PDFs in rendered epub files as valid image inclusions + - should include a TOC link in rendered epub files for <book>s + + Finished in 20.608395 seconds + + 15 examples, 0 failures + + + == Verbose epub test coverage against _all_ of the testdocs + + Fails on only (errors truncated): + 1) + 'DocBook::Epub should be able to render a valid .epub for the test document /Users/keith/work/docbook-dev/trunk/xsl/epub/bin/spec/testdocs/calloutlist.003.xml [30]' FAILED + 'DocBook::Epub should be able to render a valid .epub for the test document /Users/keith/work/docbook-dev/trunk/xsl/epub/bin/spec/testdocs/cmdsynopsis.001.xml [35]' FAILED + .... + + Finished in 629.89194 seconds + + 224 examples, 15 failures + + 224 examples, 15 failures yields 6% failure rate + +HTMLHelp + +The following changes have been made to the htmlhelp code since the 1.73.2 +release. + + â— Mauritz Jeanson: htmlhelp-common.xsl + + Added <xsl:with-param name="quiet" select="$chunk.quietly"/> to calls to + the write.chunk, write.chunk.with.doctype, and write.text.chunk templates. + This makes chunk.quietly=1 suppress chunk filename messages also for help + support files (which seems to be what one would expect). See bug #1648360. + +Eclipse + +The following changes have been made to the eclipse code since the 1.73.2 +release. + + â— David Cramer: eclipse.xsl + + Use sortas attributes (if they exist) when sorting indexterms + + â— David Cramer: eclipse.xsl + + Added support for indexterm/see in eclipse index.xml + + â— Mauritz Jeanson: eclipse.xsl + + Added <xsl:with-param name="quiet" select="$chunk.quietly"/> + to helpidx template. + + â— David Cramer: eclipse.xsl + + Generate index.xml file and add related goo to plugin.xml file. Does not yet support see and seealso. + + â— Mauritz Jeanson: eclipse.xsl + + Added <xsl:with-param name="quiet" select="$chunk.quietly"/> to calls to + the write.chunk, write.chunk.with.doctype, and write.text.chunk templates. + This makes chunk.quietly=1 suppress chunk filename messages also for help + support files (which seems to be what one would expect). See bug #1648360. + +JavaHelp + +The following changes have been made to the javahelp code since the 1.73.2 +release. + + â— Mauritz Jeanson: javahelp.xsl + + Added <xsl:with-param name="quiet" select="$chunk.quietly"/> to calls to + the write.chunk, write.chunk.with.doctype, and write.text.chunk templates. + This makes chunk.quietly=1 suppress chunk filename messages also for help + support files (which seems to be what one would expect). See bug #1648360. + +Roundtrip + +The following changes have been made to the roundtrip code since the 1.73.2 +release. + + â— Steve Ball: blocks2dbk.xsl; wordml2normalise.xsl + + fix table/cell borders for wordml, fix formal figure, add emphasis-strong + + â— Mauritz Jeanson: supported.xml + + Changed @cols to 5. + + â— Steve Ball: blocks2dbk.xsl; blocks2dbk.dtd; template.xml + + added pubdate, fixed metadata handling in biblioentry + + â— Steve Ball: supported.xml + + Added support for edition. + + â— Steve Ball: docbook-pages.xsl; wordml-blocks.xsl; docbook.xsl; wordml.xsl; + pages-normalise⋯ + + Removed stylesheets for old, deprecated conversion method. + + â— Steve Ball: specifications.xml; dbk2ooo.xsl; blocks2dbk.xsl; dbk2pages.xsl; + blocks2dbk.dtd⋯ + + Added support for Open Office, added edition element, improved list and table support in Word and Pages + + â— Steve Ball: normalise-common.xsl; blocks2dbk.xsl; dbk2pages.xsl; + template-pages.xml; templ⋯ + + Fixed bug in WordML table handling, improved table handling for Pages 08, synchronised WordML and Pages templates. + + â— Steve Ball: normalise-common.xsl; blocks2dbk.xsl; wordml2normalise.xsl; + dbk2wp.xsl + + fix caption, attributes + + â— Steve Ball: specifications.xml; blocks2dbk.xsl; wordml2normalise.xsl; + blocks2dbk.dtd; temp⋯ + + Fixes to table and list handling + + â— Steve Ball: blocks2dbk.xsl + + added support for explicit emphasis character styles + + â— Steve Ball: wordml2normalise.xsl + + added support for customisation in image handling + + â— Steve Ball: blocks2dbk.xsl + + Added inlinemediaobject support for metadata. + + â— Steve Ball: normalise-common.xsl; blocks2dbk.xsl; template.xml; + dbk2wordml.xsl; dbk2wp.xsl + + Added support file. Added style locking. Conversion bug fixes. + +Slides + +The following changes have been made to the slides code since the 1.73.2 +release. + + â— Michael(tm) Smith: fo/Makefile; html/Makefile + + Added checks and hacks to various makefiles to enable building + under Cygwin. This stuff is ugly and maybe not worth the mess and + trouble, but does seem to work as expected and not break anything + else. + + â— Jirka Kosek: html/plain.xsl + + Added support for showing foil number + +Website + +The following changes have been made to the website code since the 1.73.2 +release. + + â— Michael(tm) Smith: extensions/saxon64/.classes/.gitignore; extensions/ + xalan2/.classes/com/⋯ + + renamed a bunch more .cvsignore files to .gitignore (to facilitate use of git-svn) + +Params + +The following changes have been made to the params code since the 1.73.2 +release. + + â— Keith Fahlgren: epub.autolabel.xml + + New parameter for epub, epub.autolabel + + â— Mauritz Jeanson: table.frame.border.color.xml; table.cell.padding.xml; + table.cell.border.t⋯ + + Added missing refpurposes and descriptions. + + â— Keith Fahlgren: ade.extensions.xml + + Extensions to support Adobe Digital Editions extensions in .epub output. + + â— Mauritz Jeanson: fop.extensions.xml; fop1.extensions.xml + + Clarified that fop1.extensions is for FOP 0.90 and later. Version 1 is not here yet... + + â— Michael(tm) Smith: man.links.are.underlined.xml; + man.endnotes.list.enabled.xml; man.font.l⋯ + + removed man.links.are.underlined and added man.font.links. Also, + changed the default font formatting for links to bold. + + â— Michael(tm) Smith: man.base.url.for.relative.links.xml + + Added new param man.base.url.for.relative.links .. specifies a + base URL for relative links (for ulink, @xlink:href, imagedata, + audiodata, videodata) shown in the generated NOTES section of + man-page output. The value of man.base.url.for.relative.links is + prepended to any relative URI that is a value of ulink url, + xlink:href, or fileref attribute. + + If you use relative URIs in link sources in your DocBook refentry + source, and you leave man.base.url.for.relative.links unset, the + relative links will appear "as is" in the NOTES section of any + man-page output generated from your source. That's probably not + what you want, because such relative links are only usable in the + context of HTML output. So, to make the links meaningful and + usable in the context of man-page output, set a value for + man.base.url.for.relative.links that points + to the online version of HTML output generated from your DocBook + refentry source. For example: + + <xsl:param name="man.base.url.for.relative.links" + >http://www.kernel.org/pub/software/scm/git/docs/</xsl:param> + + â— Michael(tm) Smith: man.string.subst.map.xml + + squeeze .sp\n.sp into a single .sp (to prevent a extra, spurious + line of whitespace from being inserted after programlisting etc. + in certain cases) + + â— Michael(tm) Smith: refentry.manual.fallback.profile.xml; + refentry.source.fallback.profile.⋯ + + don't use refmiscinfo@class=date value as fallback for refentry + "source" or "manual" metadata fields + + â— Michael(tm) Smith: man.charmap.subset.profile.xml; man.charmap.enabled.xml; + man.charmap.su⋯ + + made some further doc tweaks related to the + man.charmap.subset.profile.english param + + â— Michael(tm) Smith: man.charmap.subset.profile.xml; man.charmap.enabled.xml; + man.charmap.su⋯ + + Added the man.charmap.subset.profile.english parameter and refined + the handling of charmap subsets to differentiate between English + and non-English source. + + This way charmap subsets are now handled is this: + + If the value of the man.charmap.use.subset parameter is non-zero, + and your DocBook source is not written in English (that is, if its + lang or xml:lang attribute has a value other than en), then the + character-map subset specified by the man.charmap.subset.profile + parameter is used instead of the full roff character map. + + Otherwise, if the lang or xml:lang attribute on the root element + in your DocBook source or on the first refentry element in your + source has the value en or if it has no lang or xml:lang + attribute, then the character-map subset specified by the + man.charmap.subset.profile.english parameter is used instead of + man.charmap.subset.profile. + + The difference between the two subsets is that + man.charmap.subset.profile provides mappings for characters in + Western European languages that are not part of the Roman + (English) alphabet (ASCII character set). + + â— Michael(tm) Smith: man.charmap.subset.profile.xml + + Added to default charmap used by manpages: + + - the "letters" part of the 'C1 Controls And Latin-1 Supplement + (Latin-1 Supplement)' Unicode block + - Latin Extended-A block (but not all of the characters from + that block have mappings in groff, so some of them are still + passed through as-is) + + The effects of this change are that in man pages generated for + most Western European languages and for Finnish, all characters + not part of the Roman alphabet are (e.g., "accented" characters) + are converted to groff escapes. + + Previously, by default we passed through those characters as is + (and users needed to use the full charmap if they wanted to have + those characters converted). + + As a result of this change, man pages generated for Western + European languages will be viewable in some environments in which + they are not viewable if the "raw" non-Roman characters are in them. + + â— Mauritz Jeanson: generate.legalnotice.link.xml; + generate.revhistory.link.xml + + Added information on how the filename is computed. + + â— Mauritz Jeanson: default.table.width.xml + + Clarified PI usage. + + â— Michael(tm) Smith: man.funcsynopsis.style.xml + + Added the man.funcsynopsis.style parameter. Has the same effect in + manpages output as the funcsynopsis.style parameter has in HTML + output -- except that its default value is 'ansi' instead of 'kr'. + + â— Michael(tm) Smith: funcsynopsis.tabular.threshold.xml + + Removed the funcsynopsis.tabular.threshold param. It's no longer + being used in the code and hasn't been since mid 2006. + + â— Mauritz Jeanson: table.properties.xml + + Set keep-together.within-column to "auto". This seems to be the most sensible + default value for tables. + + â— Mauritz Jeanson: informal.object.properties.xml; + admon.graphics.extension.xml; informalequ⋯ + + Several small documentation fixes. + + â— Mauritz Jeanson: manifest.in.base.dir.xml + + Wording fixes. + + â— Mauritz Jeanson: header.content.properties.xml; + footer.content.properties.xml + + Added refpurpose. + + â— Mauritz Jeanson: ulink.footnotes.xml; ulink.show.xml + + Updated for DocBook 5. + + â— Mauritz Jeanson: index.method.xml; glossterm.auto.link.xml + + Spelling and wording fixes. + + â— Mauritz Jeanson: callout.graphics.extension.xml + + Clarifed available graphics formats and extensions. + + â— Mauritz Jeanson: footnote.sep.leader.properties.xml + + Corrected refpurpose. + + â— Jirka Kosek: footnote.properties.xml + + Added more properties which make it possible to render correctly footnotes placed inside verbatim elements. + + â— Mauritz Jeanson: img.src.path.xml + + img.src.path works with inlinegraphic too. + + â— Mauritz Jeanson: saxon.character.representation.xml + + Added TCG link. + + â— Mauritz Jeanson: img.src.path.xml + + Updated description of img.src.path. Bug #1785224 revealed that + there was a risk of misunderstanding how it works. + +Profiling + +The following changes have been made to the profiling code since the 1.73.2 +release. + + â— Jirka Kosek: xsl2profile.xsl + + Added new rules to profile all content generated by HTML Help (including alias files) + + â— Robert Stayton: profile-mode.xsl + + use mode="profile" instead of xsl:copy-of for attributes so + they can be more easily customized. + +Tools + +The following changes have been made to the tools code since the 1.73.2 +release. + + â— Michael(tm) Smith: make/Makefile.DocBook + + various changes and additions to support making with asciidoc as + an input format + + â— Michael(tm) Smith: make/Makefile.DocBook + + make dblatex the default PDF maker for the example makefile + + â— Michael(tm) Smith: xsl/build/html2roff.xsl + + Reworked handling of K&R funcprototype output. It no longer relies + on the HTML kr-tabular templates, but instead just does direct + transformation to roff. For K&R output, it displays the paramdef + output in an indented list following the prototype. + + â— Mauritz Jeanson: xsl/build/make-xsl-params.xsl + + Made attribute-sets members of the param list. This enables links to attribute-sets in the + reference documentation. + + â— Michael(tm) Smith: xsl/build/html2roff.xsl + + use .BI handling in K&R funsynopsis output for manpages, just as + we do already of ANSI output + + â— Michael(tm) Smith: xsl/build/html2roff.xsl + + Implemented initial support for handling tabular K&R output of + funcprototype in manpages output. Accomplished by adding more + templates to the intermediate HTML-to-roff stylesheet that the + build uses to create the manpages/html-synop.xsl stylesheet. + + â— Michael(tm) Smith: xsl/build/doc-link-docbook.xsl + + Made the xsl/tools/xsl/build/doc-link-docbook.xsl stylesheet + import profile-docbook.xsl, so that we can do profiling of release + notes. Corrected some problems in the target for the release-notes + HTML build. + +Extensions + +The following changes have been made to the extensions code since the 1.73.2 +release. + + â— Keith Fahlgren: Makefile + + Use DOCBOOK_SVN variable everywhere, please; build with PDF_MAKER + + â— Michael(tm) Smith: Makefile + + moved extensions build targets from master xsl/Makefile to + xsl/extensions/Makefile + + â— Michael(tm) Smith: .cvsignore + + re-adding empty extensions subdir + +XSL-Saxon + +The following changes have been made to the xsl-saxon code since the 1.73.2 +release. + + â— Michael(tm) Smith: VERSION + + bring xsl2, xsl-saxon, and xsl-xalan VERSION files up-to-date with + recent change to snapshot build infrastructure + + â— Michael(tm) Smith: nbproject/build-impl.xml; nbproject/project.properties + + Changed hard-coded file references in "clean" target to variable + references. Closes #1792043. Thanks to Daniel Leidert. + + â— Michael(tm) Smith: VERSION; Makefile + + Did post-release wrap-up of xsl-saxon and xsl-xalan dirs + + â— Michael(tm) Smith: nbproject/build-impl.xml; VERSION; Makefile; test + + More tweaks to get release-ready + +XSL-Xalan + +The following changes have been made to the xsl-xalan code since the 1.73.2 +release. + + â— Michael(tm) Smith: VERSION + + bring xsl2, xsl-saxon, and xsl-xalan VERSION files up-to-date with + recent change to snapshot build infrastructure + + â— Michael(tm) Smith: nbproject/build-impl.xml + + Changed hard-coded file references in "clean" target to variable + references. Closes #1792043. Thanks to Daniel Leidert. + + â— Michael(tm) Smith: Makefile; VERSION + + Did post-release wrap-up of xsl-saxon and xsl-xalan dirs + + â— Michael(tm) Smith: Makefile; nbproject/build-impl.xml; VERSION + + More tweaks to get release-ready + +XSL-libxslt + +The following changes have been made to the xsl-libxslt code since the 1.73.2 +release. + + â— Mauritz Jeanson: python/xslt.py + + Print the result to stdout if no outfile has been given. + Some unnecessary semicolons removed. + + â— Mauritz Jeanson: python/xslt.py + + Added a function that quotes parameter values (to ensure that they are interpreted as strings). + Replaced deprecated functions from the string module with string methods. + + â— Michael(tm) Smith: python/README; python/README.LIBXSLT + + renamed xsl-libxslt/python/README to xsl-libxslt/python/README.LIBXSLT + + â— Mauritz Jeanson: python/README + + Tweaked the text a little. + +Release Notes: 1.73.2 + +This is solely a minor bug-fix update to the 1.73.1 release. It fixes a +packaging error in the 1.73.1 package, as well as a bug in footnote handling in +FO output. + +Release: 1.73.1 + +This is mostly a bug-fix update to the 1.73.0 release. + +Gentext + +The following changes have been made to the gentext code since the 1.73.0 +release. + + â— Mauritz Jeanson: locale/de.xml + + Applied patch #1766009. + + â— Michael(tm) Smith: locale/lv.xml + + Added localization for ProductionSet. + +FO + +The following changes have been made to the fo code since the 1.73.0 release. + + â— Mauritz Jeanson: table.xsl + + Modified the tgroup template so that, for tables with multiple tgroups, + a width attribute is output on all corresponding fo:tables. Previously, + there was a test prohibiting this (and a comment saying that outputting more + than one width attribute will cause an error). But this seems to be no longer + relevant; it is not a problem with FOP 0.93 or XEP 4.10. Closes bug #1760559. + + â— Mauritz Jeanson: graphics.xsl + + Replaced useless <a> elements with warning messages (textinsert extension). + + â— Mauritz Jeanson: admon.xsl + + Enabled generation of ids (on fo:wrapper) for indexterms in admonition titles, so that page + references in the index can be created. Closes bug #1775086. + +HTML + +The following changes have been made to the html code since the 1.73.0 release. + + â— Mauritz Jeanson: titlepage.xsl + + Added <xsl:call-template name="process.footnotes"/> to abstract template + so that footnotes in info/abstract are processed. Closes bug #1760907. + + â— Michael(tm) Smith: pi.xsl; synop.xsl + + Changed handling of HTML output for the cmdsynopsis and + funcsynopsis elements, such that a@id instances are generated for + them if they are descendants of any element containing a dbcmdlist + or dbfunclist PI. Also, update the embedded reference docs for the + dbcmdlist and dbfunclist PIs to make it clear that they can be + used within any element for which cmdsynopsis or funcsynopsis are + valid children. + + â— Michael(tm) Smith: formal.xsl + + Reverted the part of revision 6952 that caused a@id anchors to be + generated for output of informal objects. Thanks to Sam Steingold + for reporting. + + â— Robert Stayton: glossary.xsl + + Account for a glossary with no glossdiv or glossentry children. + + â— Mauritz Jeanson: titlepage.xsl + + Modified legalnotice template so that the base.name parameter is calculated + in the same way as for revhistory chunks. Using <xsl:apply-templates + mode="chunk-filename" select="."/> did not work for single-page output since + the template with that mode is in chunk-code.xsl. + + â— Mauritz Jeanson: graphics.xsl + + Updated support for SVG (must be a child of imagedata in DB 5). + Added support for MathML in imagedata. + + â— Mauritz Jeanson: pi.xsl + + Added documentation for the dbhh PI (used for context-sensitive HTML Help). + (The two templates matching 'dbhh' are still in htmlhelp-common.xsl). + +Manpages + +The following changes have been made to the manpages code since the 1.73.0 +release. + + â— Michael(tm) Smith: endnotes.xsl + + In manpages output, generate warnings about notesources with + non-para children only if the notesource is a footnote or + annotation. Thanks to Sam Steingold for reporting problems with + the existing handling. + +HTMLHelp + +The following changes have been made to the htmlhelp code since the 1.73.0 +release. + + â— Michael(tm) Smith: htmlhelp-common.xsl + + Added single-pass namespace-stripping support to the htmlhelp, + eclipse, and javahelp stylesheets. + +Eclipse + +The following changes have been made to the eclipse code since the 1.73.0 +release. + + â— Michael(tm) Smith: eclipse.xsl + + Added single-pass namespace-stripping support to the htmlhelp, + eclipse, and javahelp stylesheets. + +JavaHelp + +The following changes have been made to the javahelp code since the 1.73.0 +release. + + â— Michael(tm) Smith: javahelp.xsl + + Added single-pass namespace-stripping support to the htmlhelp, + eclipse, and javahelp stylesheets. + +Roundtrip + +The following changes have been made to the roundtrip code since the 1.73.0 +release. + + â— Steve Ball: blocks2dbk.xsl; blocks2dbk.dtd; pages2normalise.xsl + + Modularised blocks2dbk to allow customisation, + Added support for tables to pages2normalise + +Params + +The following changes have been made to the params code since the 1.73.0 +release. + + â— Robert Stayton: procedure.properties.xml + + procedure was inheriting keep-together from formal.object.properties, but + a procedure does not need to be kept together by default. + + â— Dave Pawson: title.font.family.xml; + component.label.includes.part.label.xml; table.frame.b⋯ + + Regular formatting re-org. + +Release: 1.73.0 + +This release includes important bug fixes and adds the following significant +feature changes: + +New localizations and localization updates + + We added two new localizations: Latvian and Esperanto, and made updates to + the Czech, Chinese Simplified, Mongolian, Serbian, Italian, and Ukrainian + localizations. + +ISO690 citation style for bibliography output. + + Set the bibliography.style parameter to iso690 to use ISO690 style. + +New documentation for processing instructions (PI) + + The reference documentation that ships with the release now includes + documentation on all PIs that you can use to control output from the + stylesheets. + +New profiling parameters for audience and wordsize + + You can now do profiling based on the values of the audience and wordsize + attributes. + +Changes to man-page output + + The manpages stylesheet now supports single-pass profiling and single-pass + DocBook 5 namespace stripping (just as the HTML and FO stylesheets also + do). Also, added handling for mediaobject & inlinemediaobject. (Each + imagedata, audiodata, or videodata element within a mediaobject or inline + mediaobject is now treated as a "notesource" and so handled in much the + same way as links and annotation/alt/footnote are in manpages output.) And + added the man.authors.section.enabled and man.copyright.section.enabled + parameters to enable control over whether output includes auto-generated + AUTHORS and COPYRIGHT sections. + +Highlighting support for C + + The highlighting mechanism for generating syntax-highlighted code snippets + in output now supports C code listings (along with Java, PHP, XSLT, and + others). + +Experimental docbook-xsl-update script + + We added an experimental docbook-xsl-update script, the purpose of which is + to facilitate easy sync-up to the latest docbook-xsl snapshot (by means of + rsync). + +Gentext + +The following changes have been made to the gentext code since the 1.72.0 +release. + + â— Michael(tm) Smith: locale/lv.xml; Makefile + + Added Latvian localization file, from Girts Ziemelis. + + â— Dongsheng Song: locale/zh_cn.xml + + Brought up to date with en.xml in terms of items. A few strings marked for translation. + + â— Jirka Kosek: locale/cs.xml + + Added missing translations + + â— Robert Stayton: locale/eo.xml + + New locale for Esperanto. + + â— Robert Stayton: locale/mn.xml + + Update from Ganbold Tsagaankhuu. + + â— Jirka Kosek: locale/en.xml; locale/cs.xml + + Rules for normalizing glossary entries before they are sorted can be now different for each language. + + â— Michael(tm) Smith: locale/sr_Latn.xml; locale/sr.xml + + Committed changes from MiloÅ¡ KomarÄević to Serbian files. + + â— Robert Stayton: locale/ja.xml + + Fix chapter in context xref-number-and-title + + â— Robert Stayton: locale/it.xml + + Improved version from contributor. + + â— Mauritz Jeanson: locale/uk.xml + + Applied patch 1592083. + +Common + +The following changes have been made to the common code since the 1.72.0 +release. + + â— Michael(tm) Smith: labels.xsl + + Changed handling of reference auto-labeling such that reference + (when it appears at the component level) is now affected by the + label.from.part param, just as preface, chapter, and appendix. + + â— Michael(tm) Smith: common.xsl + + Added support to the HTML stylesheets for proper processing of + orgname as a child of author. + + â— Michael(tm) Smith: refentry.xsl + + Refined logging output of refentry metadata-gathering template; + for some cases of "missing" elements (refmiscinfo stuff, etc.), + the log messages now include URL to corresponding page in the + Definitive Guide (TDG). + + â— Robert Stayton: titles.xsl + + Add refsection/info/title support. + + â— Michael(tm) Smith: titles.xsl + + Added support for correct handling of xref to elements that + contain info/title descendants but no title children. + + This should be further refined so that it handles any *info + elements. And there are probably some other places where similar + handling for *info/title should be added. + + â— Mauritz Jeanson: pi.xsl + + Modified <xsl:when> in datetime.format template to work + around Xalan bug. + +FO + +The following changes have been made to the fo code since the 1.72.0 release. + + â— Robert Stayton: component.xsl + + Add parameters to the page.sequence utility template. + + â— Mauritz Jeanson: xref.xsl + + Added template for xref to area/areaset. + Part of fix for bug #1675513 (xref to area broken). + + â— Michael(tm) Smith: inline.xsl + + Added template match for person element to fo stylesheet. + + â— Robert Stayton: lists.xsl + + Added support for spacing="compact" in variablelist, per bug report #1722540. + + â— Robert Stayton: table.xsl + + table pgwide="1" should also use pgwide.properties attribute-set. + + â— Mauritz Jeanson: inline.xsl + + Make citations numbered if bibliography.numbered != 0. + + â— Robert Stayton: param.xweb; param.ent + + Add new profiling parameters for audience and wordsize. + + â— Robert Stayton: param.xweb; param.ent + + Added callout.icon.size parameter. + + â— Robert Stayton: inline.xsl; xref.xsl + + Add support for xlink as olink. + + â— Robert Stayton: autotoc.xsl; param.xweb; param.ent + + Add support for qanda.in.toc to fo TOC. + + â— Robert Stayton: component.xsl + + Improved the page.sequence utility template for use with book. + + â— Robert Stayton: division.xsl + + Refactored the big book template into smaller pieces. + Used the "page.sequence" utility template in + component.xsl to shorten the toc piece. + Added placeholder templates for front.cover and back.cover. + + â— Robert Stayton: param.xweb; param.ent; sections.xsl + + Add section.container.element parameter to enable + pgwide spans inside sections. + + â— Robert Stayton: param.xweb; param.ent; component.xsl + + Add component.titlepage.properties attribute-set to + support span="all" and other properties. + + â— Robert Stayton: htmltbl.xsl; table.xsl + + Apply table.row.properties template to html tr rows too. + Add keep-with-next to table.row.properties when row is in thead. + + â— Robert Stayton: table.xsl + + Add support for default.table.frame parameter. + Fix bug 1575446 rowsep last check for @morerows. + + â— Robert Stayton: refentry.xsl + + Add support for info/title in refsections. + + â— David Cramer: qandaset.xsl + + Make fo questions and answers behave the same way as html + + â— Jirka Kosek: lists.xsl + + Added missing attribute set for procedure + + â— Jirka Kosek: param.xweb; biblio.xsl; docbook.xsl; param.ent; + biblio-iso690.xsl + + Added support for formatting biblioentries according to ISO690 citation style. + New bibliography style can be turned on by setting parameter bibliography.style to "iso690" + The code was provided by Jana Dvorakova + + â— Robert Stayton: param.xweb; param.ent; pagesetup.xsl + + Add header.table.properties and footer.table.properties attribute-sets. + + â— Robert Stayton: inline.xsl + + Add fop1.extensions for menuchoice arrow handling exception. + +HTML + +The following changes have been made to the html code since the 1.72.0 release. + + â— Mauritz Jeanson: param.xweb; param.ent + + Moved declaration and documentation of javahelp.encoding from javahelp.xsl to the + regular "parameter machinery". + + â— Michael(tm) Smith: admon.xsl + + Changed handling of titles for note, warning, caution, important, + tip admonitions: We now output and HTML h3 head only if + admon.textlabel is non-zero or if the admonition actually contains + a title; otherwise, we don't output an h3 head at all. + (Previously, we were outputting an empty h3 if the admon.textlabel + was zero and if the admonition had no title.) + + â— Mauritz Jeanson: xref.xsl + + Added template for xref to area/areaset. + Part of fix for bug #1675513 (xref to area broken). + + â— Mauritz Jeanson: titlepage.xsl; component.xsl; division.xsl; sections.xsl + + Added fixes to avoid duplicate ids when generate.id.attributes = 1. + This (hopefully) closes bug #1671052. + + â— Michael(tm) Smith: formal.xsl; pi.xsl + + Made the dbfunclist PI work as intended. Also added doc for + dbfunclist and dbcmdlist PIs. + + â— Michael(tm) Smith: pi.xsl; synop.xsl + + Made the dbcmdlist work the way it appears to have been intended + to work. Restored dbhtml-dir template back to pi.xsl. + + â— Michael(tm) Smith: titlepage.xsl; param.xweb; param.ent + + Added new param abstract.notitle.enabled. + If non-zero, in output of the abstract element on titlepages, + display of the abstract title is suppressed. + Because sometimes you really don't want or need that title + there... + + â— Michael(tm) Smith: chunk-code.xsl; graphics.xsl + + When we are chunking long descriptions for mediaobject instances + into separate HTML output files, and use.id.as.filename is + non-zero, if a mediaobject has an ID, use that ID as the basename + for the long-description file (otherwise, we generate an ID for it + and use that ID as the basename for the file). + The parallels the recent change made to cause IDs for legalnotice + instances to be used as basenames for legalnotice chunks. + Also, made some minor refinements to the recent changes for + legalnotice chunk handling. + + â— Michael(tm) Smith: titlepage.xsl + + Added support to the HTML stylesheets for proper processing of + orgname as a child of author. + + â— Michael(tm) Smith: chunk-code.xsl + + When $generate.legalnotice.link is non-zero and + $use.id.as.filename is also non-zero, if a legalnotice has an ID, + then instead of assigning the "ln-<generatedID>" basename to the + output file for that legalnotice, just use its real ID as the + basename for the file -- as we do when chunking other elements + that have IDs. + + â— David Cramer: xref.xsl + + Handle alt text on xrefs to steps when the step doesn't have a title. + + â— David Cramer: lists.xsl + + Added <p> element around term in variablelist when formatted as table to avoid misalignment of term and listitem in xhtml (non-quirks mode) output + + â— David Cramer: qandaset.xsl + + Added <p> element around question and answer labels to avoid misalignment of label and listitem in xhtml (non-quirks mode) output + + â— David Cramer: lists.xsl + + Added <p> element around callouts to avoid misalignment of callout and listitem in xhtml (non-quirks mode) output + + â— Mauritz Jeanson: inline.xsl + + Make citations numbered if bibliography.numbered != 0. + + â— Robert Stayton: param.xweb; param.ent + + Add support for new profiling attributes audience and wordsize. + + â— Robert Stayton: inline.xsl; xref.xsl + + Add support for xlink olinks. + + â— Jirka Kosek: glossary.xsl + + Rules for normalizing glossary entries before they are sorted can be now different for each language. + + â— Robert Stayton: chunk-common.xsl; chunk-code.xsl; manifest.xsl; chunk.xsl + + Refactored the chunking modules to move all named templates to + chunk-common.xsl and all match templates to chunk-code.xsl, in + order to enable better chunk customization. + See the comments in chunk.xsl for more details. + + â— Robert Stayton: lists.xsl + + Add anchor for xml:id for listitem in varlistentry. + + â— Robert Stayton: refentry.xsl + + Add support for info/title in refsections for db5. + + â— Jirka Kosek: param.xweb; biblio.xsl; docbook.xsl; param.ent; + biblio-iso690.xsl + + Added support for formatting biblioentries according to ISO690 citation style. + New bibliography style can be turned on by setting parameter bibliography.style to "iso690" + The code was provided by Jana Dvorakova + + â— Robert Stayton: inline.xsl; xref.xsl + + Add call to class.attribute to <a> output elements so they can + have a class value too. + + â— Mauritz Jeanson: glossary.xsl + + Fixed bug #1644881: + * Added curly braces around all $language attribute values. + * Moved declaration of language variable to top level of stylesheet. + Tested with Xalan, Saxon, and xsltproc. + +Manpages + +The following changes have been made to the manpages code since the 1.72.0 +release. + + â— Michael(tm) Smith: param.xweb; docbook.xsl; param.ent + + Added the man.authors.section.enabled and + man.copyright.section.enabled parameters. Set those to zero when + you want to suppress display of the auto-generated AUTHORS and + COPYRIGHT sections. Closes request #1467806. Thanks to Daniel + Leidert. + + â— Michael(tm) Smith: docbook.xsl + + Took the test that the manpages stylesheet does to see if there + are any Refentry chilren in current doc, and made it + namespace-agnostic. Reason for that is because the test otherwise + won't work when it is copied over into the generated + profile-docbook.xsl stylesheet. + + â— Michael(tm) Smith: Makefile + + Added a manpages/profile-docbook.xsl file to enable single-pass + profiling for manpages output. + + â— Michael(tm) Smith: info.xsl + + Output copyright and legalnotice in man-page output in whatever + place they are in in document order. Closes #1690539. Thanks to + Daniel Leidert for reporting. + + â— Michael(tm) Smith: docbook.xsl + + Restored support for single-pass namespace stripping to manpages + stylesheet. + + â— Michael(tm) Smith: synop.xsl; block.xsl; info.xsl; inline.xsl; lists.xsl; + endnotes.xsl; ut⋯ + + Changed handling of bold and italic/underline output in manpages + output. Should be transparent to users, but... + + This touches handling of all bold and italic/underline output. The + exact change is that the mode="bold" and mode="italic" utility + templates were changed to named templates. (I think maybe I've + changed it back and forth from mode to named before, so this is + maybe re-reverting it yet again). + + Anyway, the reason for the change is that the templates are + sometimes call on dynamically node-sets, and using modes to format + those doesn't allow passing info about the current/real context + node from the source (not the node-set created by the stylesheet) + to that formatting stage. + + The named templates allow the context to be passed in as a + parameter, so that the bold/ital formatting template can use + context-aware condition checking. + + This was basically necessary in order to suppress bold formatting + in titles, which otherwise gets screwed up because of the numbnut + way that roff handles nested bold/ital. + + Closes #1674534). Much thanks to Daniel Leidert, whose in his + docbook-xsl bug-finding kung-fu has achieved Grand Master status. + + â— Michael(tm) Smith: block.xsl + + Fixed handling of example instances by adding the example element + to the same template we use for processing figure. Closes + #1674538. Thanks to Daniel Leidert. + + â— Michael(tm) Smith: utility.xsl + + Don't include lang in manpages filename/pathname if lang=en (that + is, only generate lang-qualified file-/pathnames for non-English). + + â— Michael(tm) Smith: endnotes.xsl + + In manpages output, emit warnings for notesources (footnote, etc.) + that have something other than para as a child. + + The numbered-with-hanging-indent formatting that's used for + rendering endnotes in the NOTES section of man pages places some + limits/assumptions on how the DocBook source is marked up; namely, + for notesources (footnote, annotation, etc.) that can contain + block-level children, if the they have a block-level child such as + a table or itemizedlist or orderedlist that is the first child of + a footnote, we have no way of rendering/indenting its content + properly in the endnotes list. + + Thus, the manpages stylesheet not emits a warning message for that + case, and suggests the "fix" (which is to wrap the table or + itemizedlist or whatever in a para that has some preferatory text. + + â— Michael(tm) Smith: utility.xsl + + Added support to mixed-block template for handling tables in + mixed-blocks (e.g., as child of para) correctly. + + â— Michael(tm) Smith: table.xsl; synop.xsl; block.xsl; info.xsl; lists.xsl; + refentry.xsl; end⋯ + + Reverted necessary escaping of backslash, dot, and dash + out of the well-intentioned (but it now appears, + misguided) "marker" mechanism (introduced in the 1.72.0 + release) -- which made use of alternative "marker" + characters as internal representations of those + characters, and then replaced them just prior to + serialization -- and back into what's basically the + system that was used prior to the 1.69.0 release; that + is, into a part of stylesheet code that gets executed + at the beginning of processing -- before any other roff + markup up is. This change obviates the need for the + marker system. It also requires a lot less RAM during + processing (for large files, the marker mechanism + ending up requiring gigabytes of memory). + + Closes bug #1661177. Thanks to Scott Smedley for + providing a test case (the fvwm man page) that exposed + the problem with the marker mechanism. + + Also moved the mechanism for converting non-breaking + spaces back into the same area of the stylesheet code. + + â— Michael(tm) Smith: lists.xsl + + Fixed problem with incorrect formatting of nested variablelist. + Closes bug #1650931. Thanks to Daniel "Eagle Eye" Leidert. + + â— Michael(tm) Smith: lists.xsl + + Make sure that all listitems in itemizedlist and orderedlist are + preceded by a blank line. This fixes a regression that occurred + when instances of the TP macro that were use in a previous + versions of the list-handling code were switched to RS/RE (because + TP doesn't support nesting). TP automatically generates a blank + line, but RS doesn't. So I added a .sp before each .RS + + â— Michael(tm) Smith: block.xsl; inline.xsl; param.xweb; docbook.xsl; + links.xsl; param.ent + + Made a number of changes related to elements with + out-of-line content: + + - Added handling for mediaobject & inlinemediaobject. + Each imagedata, audiodata, or videodata element + within a mediaobject or inline mediaobject is now + treated as a "notesource" and so handled in much the + same way as links and annotation/alt/footnotes. + + That means a numbered marker is generated inline to + mark the place in the main flow where the imagedata, + audiodata, or videodata element occurs, and a + corresponding numbered endnote for it is generated in + the endnotes list at the end of the man page; the + endnote contains the URL from the fileref attribute + of the imagedata, audiodata, or videodata element. + + For mediobject and inlinemediaobject instances that + have a textobject child, the textobject is displayed + within the main text flow. + + - Renamed several man.link.* params to man.endnotes.*, + to reflect that fact that the endnotes list now + contains more than just links. Also did similar + renaming for a number of stylesheet-internal vars. + + - Added support for xlink:href (along with existing + support for the legacy ulink element). + + - Cleaned up and streamlined the endnotes-handling + code. It's still messy and klunky and the basic + mechanism it uses is very inefficent for documents + that contain a lot of notesources, but at least it's + a bit better than it was. + +Eclipse + +The following changes have been made to the eclipse code since the 1.72.0 +release. + + â— Mauritz Jeanson: Makefile + + Fixed bug #1715093: Makefile for creating profiled version of eclipse.xsl added. + + â— David Cramer: eclipse.xsl + + Added normalize-space around to avoid leading whitespace from appearing in the output if there's extra leading whitespace (e.g. <title> Foo) in the source + +JavaHelp + +The following changes have been made to the javahelp code since the 1.72.0 +release. + + â— Mauritz Jeanson: javahelp.xsl + + Implemented FR #1230233 (sorted index in javahelp). + + â— Mauritz Jeanson: javahelp.xsl + + Added normalize-space() around titles and index entries to work around whitespace problems. + Added support for glossary and bibliography in toc and map files. + +Roundtrip + +The following changes have been made to the roundtrip code since the 1.72.0 +release. + + â— Steve Ball: blocks2dbk.xsl; wordml2normalise.xsl; normalise2sections.xsl; + sections2blocks.⋯ + + new stylesheets for better word processor support and easier maintenance + + â— Steve Ball: template-pages.xml; dbk2wp.xsl; sections-spec.xml + + fixed bugs + +Params + +The following changes have been made to the params code since the 1.72.0 +release. + + â— Mauritz Jeanson: htmlhelp.button.back.xml; htmlhelp.button.forward.xml; + htmlhelp.button.zo⋯ + + Modified refpurpose text. + + â— Mauritz Jeanson: htmlhelp.map.file.xml; htmlhelp.force.map.and.alias.xml; + htmlhelp.alias.f⋯ + + Fixed typos, made some small changes. + + â— Mauritz Jeanson: javahelp.encoding.xml + + Moved declaration and documentation of javahelp.encoding from javahelp.xsl to the + regular "parameter machinery". + + â— Mauritz Jeanson: generate.id.attributes.xml + + Added refpurpose text. + + â— Mauritz Jeanson: annotation.js.xml; annotation.graphic.open.xml; + annotation.graphic.close.⋯ + + Added better refpurpose texts. + + â— Michael(tm) Smith: chunker.output.cdata-section-elements.xml; + chunker.output.standalone.xm⋯ + + Fixed some broken formatting in source files for chunker.* params, + as pointed out by Dave Pawson. + + â— Michael(tm) Smith: label.from.part.xml + + Changed handling of reference auto-labeling such that reference + (when it appears at the component level) is now affected by the + label.from.part param, just as preface, chapter, and appendix. + + â— Mauritz Jeanson: callout.graphics.extension.xml + + Clarified that 'extension' refers to file names. + + â— Michael(tm) Smith: abstract.notitle.enabled.xml + + Added new param abstract.notitle.enabled. + If non-zero, in output of the abstract element on titlepages, + display of the abstract title is suppressed. + Because sometimes you really don't want or need that title + there... + + â— Michael(tm) Smith: man.string.subst.map.xml + + Updated manpages string-substitute map to reflect fact that + because of another recent change to suppress bold markup in .SH + output, we no longer need to add a workaround for the accidental + uppercasing of roff escapes that occurred previously. + + â— Jirka Kosek: margin.note.float.type.xml; title.font.family.xml; + table.frame.border.color.x⋯ + + Improved parameter metadata + + â— Robert Stayton: profile.wordsize.xml; profile.audience.xml + + Add support for profiling on new attributes audience and wordsize. + + â— Robert Stayton: callout.graphics.number.limit.xml; + callout.graphics.extension.xml + + Added SVG graphics for fo output. + + â— Robert Stayton: callout.icon.size.xml + + Set size of callout graphics. + + â— Jirka Kosek: default.units.xml; chunker.output.method.xml; + toc.list.type.xml; output.inden⋯ + + Updated parameter metadata to the new format. + + â— Jirka Kosek: man.output.quietly.xml; title.font.family.xml; + footnote.sep.leader.properties⋯ + + Added type annotations into parameter definition files. + + â— Robert Stayton: section.container.element.xml + + Support spans in sections for certain processors. + + â— Robert Stayton: component.titlepage.properties.xml + + Empty attribute set for top level component titlepage block. + Allows setting a span on title info. + + â— Jirka Kosek: bibliography.style.xml + + Added link to WiKi page with description of special markup needed for ISO690 biblioentries + + â— Robert Stayton: make.year.ranges.xml + + Clarify that multiple year elements are required. + + â— Robert Stayton: id.warnings.xml + + Turn off id.warnings by default. + + â— Jirka Kosek: bibliography.style.xml + + Added support for formatting biblioentries according to ISO690 citation style. + New bibliography style can be turned on by setting parameter bibliography.style to "iso690" + The code was provided by Jana Dvorakova + + â— Robert Stayton: header.table.properties.xml; footer.table.properties.xml + + Support adding table properties to header and footer tables. + +Highlighting + +The following changes have been made to the highlighting code since the 1.72.0 +release. + + â— Jirka Kosek: c-hl.xml; xslthl-config.xml + + Added support for C language. Provided by Bruno Guegan. + +Profiling + +The following changes have been made to the profiling code since the 1.72.0 +release. + + â— Robert Stayton: profile-mode.xsl + + Add support for new profiling attributes audience and wordsize. + +Lib + +The following changes have been made to the lib code since the 1.72.0 release. + + â— Michael(tm) Smith: lib.xweb + + Changed name of prepend-pad template to pad-string and twheeked so + it can do both right/left padding. + +Tools + +The following changes have been made to the tools code since the 1.72.0 +release. + + â— Michael(tm) Smith: bin; bin/docbook-xsl-update + + Did some cleanup to the install.sh source and added a + docbook-xsl-update script to the docbook-xsl distro, the purpose + of which is to facilitate easy sync-up to the latest docbook-xsl + snapshot (by means of rsync). + +XSL-Saxon + +The following changes have been made to the xsl-saxon code since the 1.72.0 +release. + + â— Mauritz Jeanson: xalan27/src/com/nwalsh/xalan/Verbatim.java; xalan27/src/ + com/nwalsh/xalan/⋯ + + Added modifications so that the new callout.icon.size parameter is taken into account. This + parameter is used for FO output (where SVG now is the default graphics format for callouts). + + â— Mauritz Jeanson: saxon65/src/com/nwalsh/saxon/FormatCallout.java; xalan27/ + src/com/nwalsh/x⋯ + + Added code for generating id attributes on callouts in HTML and FO output. + These patches enable cross-references to callouts placed by area coordinates. + It works for graphic, unicode and text callouts. + Part of fix for bug #1675513 (xref to area broken). + + â— Michael(tm) Smith: saxon65/src/com/nwalsh/saxon/Website.java; xalan27/src/ + com/nwalsh/xalan⋯ + + Copied over Website XSL Java extensions. + +XSL-Xalan + +The following changes have been made to the xsl-xalan code since the 1.72.0 +release. + + â— Michael(tm) Smith: Makefile; xalan2 + + Turned off xalan2.jar build. This removes DocBook XSL + Java extensions support for versions of Xalan prior to + Xalan 2.7. If you are currently using the extensions + with an earlier version of Xalan, you need to upgrade + to Xalan 2.7. + + â— Mauritz Jeanson: xalan27/src/com/nwalsh/xalan/Verbatim.java; xalan27/src/ + com/nwalsh/xalan/⋯ + + Added modifications so that the new callout.icon.size parameter is taken into account. This + parameter is used for FO output (where SVG now is the default graphics format for callouts). + + â— Mauritz Jeanson: saxon65/src/com/nwalsh/saxon/FormatCallout.java; xalan27/ + src/com/nwalsh/x⋯ + + Added code for generating id attributes on callouts in HTML and FO output. + These patches enable cross-references to callouts placed by area coordinates. + It works for graphic, unicode and text callouts. + Part of fix for bug #1675513 (xref to area broken). + + â— Michael(tm) Smith: saxon65/src/com/nwalsh/saxon/Website.java; xalan27/src/ + com/nwalsh/xalan⋯ + + Copied over Website XSL Java extensions. + +Release: 1.72.0 + +This release includes important bug fixes and adds the following significant +feature changes: + +Automatic sorting of glossary entries + + The HTML and FO stylesheets now support automatic sorting of glossary + entries. To enable glossary sorting, set the value of the glossary.sort + parameter to 1 (by default, it’s value is 0). When you enable glossary + sorting, glossentry elements within a glossary, glossdiv, or glosslist are + sorted on the glossterm, using the current language setting. If you don’t + enable glossary sorting, then the order of glossentry elements is left “as + is†— that is, they are not sorted but are instead just displayed in + document order. + +WordML renamed to Roundtrip, OpenOffice support added + + Stylesheets for “roundtrip†conversion between documents in OpenOffice + format (ODF) and DocBook XML have been added to the set of stylesheets that + formerly had the collective title WordML, and that set of stylesheets has + been renamed to Roundtrip to better reflect the actual scope and purpose of + its contents. + + So the DocBook XSL Stylesheets now support roundtrip conversion (with + certain limitations) of WordML, OpenOffice, and Apple Pages documents to + and from DocBook XML. + +Including QandASet questions in TOCs + + The HTML stylesheet now provides support for including QandASet questions + in the document TOC. To enable display of questions in the document TOC, + set the value of the qanda.in.toc to 1 (by default, it’s 0). When you + enable qanda.in.toc, then the generated table of contents for a document + will include qandaset titles, qandadiv titles, and question elements. The + default value of zero excludes them from the TOC. + + Note + + The qanda.in.toc parameter does not affect any tables of contents that may + be generated within a qandaset or qandadiv (only in the document TOC). + +Language identifier in man-page filenames and pathnames + + Added new parameter man.output.lang.in.name.enabled, which controls whether + a language identifier is included in man-page filenames and pathnames. It + works like this: + + If the value of man.output.lang.in.name.enabled is non-zero, man-page files + are output with a language identifier included in their filenames or + pathnames as follows: + + â— if man.output.subdirs.enabled is non-zero, each file is output to, + e.g., a /$lang/man8/foo.8 pathname + + â— if man.output.subdirs.enabled is zero, each file is output with a + foo.$lang.8 filename + +index.page.number.properties property set + + For FO output, use the index.page.number.properties to control formatting + of page numbers in index output — to (for example) to display page numbers + in index output in a different color (to indicate that they are links). + +Crop marks in output from Antenna House XSL Formatter + + Support has been added for generating crop marks in print/PDF output + generated using Antenna House XSL Formatter + +More string-substitution hooks in manpages output + + The man.string.subst.map.local.pre and man.string.subst.map.local.post + parameters have been added to enable easier control over custom string + substitutions. + +Moved verbatim properties to attribute-set + + The hardcoded properties used in verbatim elements (literallayout, + programlisting, screen) were moved to the verbatim.properties attribute-set + so they can be more easily customized. + +enhanced simple.xlink template + + Now the simple.xlink template in inline.xsl works with cross reference + elements xref and link as well. Also, more elements call simple.xlink, + which enables DB5 xlink functionality. + +DocBook 5 compatibility + + Stylesheets now consistently support DocBook 5 attributes (such as xml:id). + Also, DocBook 5 info elements are now checked along with other *info + elements, and the use of name() function was replaced by local-name() so it + also matches on DocBook 5 elements. These changes enable reusing the + stylesheets with DocBook 5 documents with minimal fixup. + +HTML class attributes now handled in class.attribute mode + + The HTML class attributes were formerly hardcoded to the element name. Now + the class attribute is generated by applying templates in class.attribute + mode so class attribute names can be customized. The default is still the + element name. + +arabic-indic numbering enabled in autolabels + + Numbering of chapter, sections, and pages can now use arabic-indic + numbering when number format is set to 'arabicindic' or to Ù¡. + +The following is a detailed list of changes (not including bug fixes) that have +been made since the 1.71.1 release. + +Common + +The following changes have been made to the common code since the 1.71.1 +release. + + â— Add support for arabicindic numbering to autolabel.format template. + + â— Finish support for @xml:id everywhere @id is used. + + â— replace name() with local-name() in most cases. + + â— Add support for info. + + â— Add utility template tabstyle to return the tabstyle from + any table element. + +FO + +The following changes have been made to the fo code since the 1.71.1 release. + + â— Add support for sorting glossary entries + + â— Add table.row.properties template to customize table rows. + + â— Moved all properties to attribute-sets so can be customized more easily. + + â— Add index.page.number.properties attribute-set to format page numbers. + + â— xref now supports xlink:href, using simple.xlink template. + + â— Rewrote simple.xlink, and call it with all charseq templates. + + â— Add simple.xlink processing to term and member elements. + + â— Add support for crop marks in Antenna House. + +HTML + +The following changes have been made to the html code since the 1.71.1 release. + + â— Add support for sorting glossary entries + + â— Add support for qanda.in.toc to add qandaentry questions to document TOC. + + â— add simple.xlink support to variablelist term and simplelist member. + + â— *.propagates.style now handled in class.attribute mode. + + â— add class parameter to class.attribute mode to set default class. + + â— Convert all class attributes to use the class.attribute mode + so class names can be customized more easily. + + â— Add class.attribute mode to generate class attributes. + + â— Added simple.xlink to most remaining inlines. + Changed class attributes to applying class.attributes mode. + + â— Changed xref template to use simple.xlink tempalte. + + â— Improve generate.html.title to work with link targets too. + + â— Improved simple.xlink to support link and xref. + + â— Use new link.title.attribute now. + + â— Rewrote simple.xlink to handle linkend also. + Better computation of title attribute on link too. + + â— Handle Xalan quirk as special case. + + â— Add support for info. + + â— Fixed imagemaps so they work properly going from calspair coords + to HTML area coords. + +Manpages + +The following changes have been made to the manpages code since the 1.71.1 +release. + + â— Added doc for man.output.lang.in.name.enabled parameter. This + checkin completes support for writing file/pathnames for man-pages + with $lang include in the names. Closes #1585967. knightly + accolades to Daniel Leidert for providing the feature request. + + â— Added new param man.output.lang.in.name.enabled, which + controls whether $LANG value is included in manpages + filenames and pathnames. It works like this: + + If the value of man.output.lang.in.name.enabled is non-zero, + man-page files are output with the $lang value included in + their filenames or pathnames as follows; + + - if man.output.subdirs.enabled is non-zero, each file is +   output to, e.g., a /$lang/man8/foo.8 pathname + + - if man.output.subdirs.enabled is zero, each file is output +   with a foo.$lang.8 filename + + â— Use "\e" instead of "\\" for backslash output, because the + groff docs say that's the correct thing to do; also because + testing (thanks, Paul Dubois) shows that "\\" doesn't always + work as expected; for example, "\\" within a table seems to + mess things up. + + â— Added the man.string.subst.map.local.pre and + man.string.subst.map.local.post parameters. Those parameters + enable local additions and changes to string-substitution mappings + without the need to change the value of man.string.subst.map + parameter (which is for standard system mappings). Closes + #1456738. Thanks to Sam Steingold for constructing a true + stylesheet torture test (the clisp docs) that exposed the need for + these params. + + â— Added the Markup element to the list of elements that get output + in bold. Thanks to Eric S. Raymond. + + â— Replaced all dots in roff requests with U+2302 ("house" + character), and added escaping in output for all instances of dot + that are not in roff requests. This fixes the problem case where a + string beginning with a dot (for example, the string ".bashrc") + might occur at the beginning of a line in output, in which case  + would mistakenly get interpreted as a roff request. Thanks to Eric + S. Raymond for pushing to fix this. + + â— Made change to ensure that list content nested in + itemizedlist and orderedlist instances is properly indented. This + is a switch from using .TP to format those lists to using .RS/.RE + to format them instead (because .TP does not allow nesting). Closes bug # + 1602616. + Thanks to Daniel Leidert. + +Params + +The following changes have been made to the params code since the 1.71.1 +release. + + â— Added doc for man.output.lang.in.name.enabled parameter. This + checkin completes support for writing file/pathnames for man-pages + with $lang include in the names. Closes #1585967. knightly + accolades to Daniel Leidert for providing the feature request. + + â— Added new param man.output.lang.in.name.enabled, which + controls whether $LANG value is included in manpages + filenames and pathnames. It works like this: + + If the value of man.output.lang.in.name.enabled is non-zero, + man-page files are output with the $lang value included in + their filenames or pathnames as follows; + + - if man.output.subdirs.enabled is non-zero, each file is +   output to, e.g., a /$lang/man8/foo.8 pathname + + - if man.output.subdirs.enabled is zero, each file is output +   with a foo.$lang.8 filename + + â— Added the man.string.subst.map.local.pre and + man.string.subst.map.local.post parameters. Those parameters + enable local additions and changes to string-substitution mappings + without the need to change the value of man.string.subst.map + parameter (which is for standard system mappings). Closes + #1456738. Thanks to Sam Steingold for constructing a true + stylesheet torture test (the clisp docs) that exposed the need for + these params. + + â— Add index.page.number.properties by default. + + â— Added index.page.number.properties +  to allow customizations of page numbers in indexes. + + â— Move show-destination="replace" property from template to attribute-set + so it can be customized. + + â— Add support for sorting glossary entries + + â— Add option to include qanda in tables of contents. + + â— Moved all properties to attribute-sets so can be customized more easily. + +Template + +The following changes have been made to the template code since the 1.71.1 +release. + + â— Added workaround for Xalan bug: use for-each and copy instead of copy-of (# + 1604770). + +Roundtrip + +The following changes have been made to the roundtrip code since the 1.71.1 +release. + + â— rename to roundtrip, add OpenOffice support + +Release: 1.71.1 + +This is a minor update to the 1.71.0 release. Along with a number of bug fixes, +it includes two feature changes: + + â— Added support for profiling based on xml:lang and status attributes. + + â— Added initial support in manpages output for footnote, annotation, and alt + instances. Basically, they all now get handled the same way ulink instances + are. They are treated as a class as "note sources": A numbered marker is + generated at the place in the main text flow where they occur, then their + contents are displayed in an endnotes section at the end of the man page. + +Common + +The following changes have been made to the common code since the 1.71.1 +release. + + â— For backward compatability autoidx-ng.xsl is invoking "kosek" indexing method again. + + â— Add support for Xalan generating a root xml:base like saxon. + +FO + +The following changes have been made to the fo code since the 1.71.1 release. + + â— For backward compatability autoidx-ng.xsl is invoking "kosek" indexing method again. + + â— Add support for Xalan to add root node xml:base for db5 docs. + + â— Added support for profiling based on xml:lang and status attributes. + +HTML + +The following changes have been made to the html code since the 1.71.1 release. + + â— For backward compatability autoidx-ng.xsl is invoking "kosek" indexing method again. + + â— Add support for Xalan to add root node xml:base for db5 docs. + + â— Added support for profiling based on xml:lang and status attributes. + + â— Made changes in namespace declarations to prevent xmllint's + canonicalizer from treating them as relative namespace URIs. + +   - Changed xmlns:k="java:com.isogen.saxoni18n.Saxoni18nService" +     to xmlns:k="http://www.isogen.com/functions/ + com.isogen.saxoni18n.Saxoni18nService"; +     Saxon accepts either form +     (see http://www.saxonica.com/documentation/extensibility/ + functions.html); +     to Saxon, "the part of the URI before the final '/' is immaterial". + +   - Changed, e.g. xmlns:xverb="com.nwalsh.xalan.Verbatim" to +     xmlns:xverb="xalan://com.nwalsh.xalan.Verbatim"; Xalan accepts +     either form +     (see http://xml.apache.org/xalan-j/extensions.html# + java-namespace-declare); +     just as Saxon does, it will "simply use the string to the +     right of the rightmost forward slash as the Java class name". + +   - Changed xmlns:xalanredirect="org.apache.xalan.xslt.extensions.Redirect" +     to xmlns:redirect="http://xml.apache.org/xalan/redirect", and +     adjusted associated code to make the current Xalan redirect spec. +     (see http://xml.apache.org/xalan-j/apidocs/org/apache/xalan/lib/ + Redirect.html) + + â— Added the html.append and chunk.append parameters. By default, the + value of both is empty; but the internal DocBook XSL stylesheets + build sets their value to " ", in order + to ensure that all files in the docbook-xsl-doc package end in a + newline character. (Because diff and some other tools may emit + error messages and/or not behave as expected when processing + files that are not newline-terminated.) + +Highlighting + +The following changes have been made to the highlighting code since the 1.71.1 +release. + + â— Added license information + +Manpages + +The following changes have been made to the manpages code since the 1.71.1 +release. + + â— Added initial support in manpages output for footnote, annotation, + and alt instances. Basically, they all now get handled the same + way ulink instances are. They are treated as a class as "note + sources": A numbered marker is generated at the place in the main + text flow where they occur, then their contents are displayed in + an endnotes section at the end of the man page (currently titled + REFERENCES, for English output, but will be changed to NOTES). + + This support is not yet complete. It works for most "normal" + cases, but probably mishandles a good number of cases. More + testing will be needed to expose the problems. It may well also + introduce some bugs and regressions in other areas, including + basic paragraph handling, handling of "mixed block" content, + handling of other indented content, and handling of authorblurb + and personblurb in the AUTHORS section. + +Params + +The following changes have been made to the params code since the 1.71.1 +release. + + â— Added support for profiling based on xml:lang and status attributes. + + â— Added the html.append and chunk.append parameters. By default, the + value of both is empty; but the internal DocBook XSL stylesheets + build sets their value to " ", in order + to ensure that all files in the docbook-xsl-doc package end in a + newline character. (Because diff and some other tools may emit + error messages and/or not behave as expected when processing + files that are not newline-terminated.) + +Profiling + +The following changes have been made to the profiling code since the 1.71.1 +release. + + â— Added support for profiling based on xml:lang and status attributes. + +Release: 1.71.0 + +This is mainly a bug fix release, but it also includes two significant feature +changes: + +Highlighting support added + + The stylesheets now include support for source-code highlighting in output + of programlisting instances (controlled through the highlight.source + parameter). The Java-based implementation requires Saxon and makes use of + Michal Molhanec’s XSLTHL. More details are available at Jirka Kosek’s + website: + + http://xmlguru.cz/2006/07/docbook-syntax-highlighting + + The support is currently limited to highlighting of XML, Java, PHP, Delphi, + Modula-2 sources, and INI files. + +Changes to autoindexing + + The templates that handle alternative indexing methods were reworked to + avoid errors produced by certain processors not being able to tolerate the + presence of unused functions. With this release, none of the code for the + 'kimber' or 'kosek' methods is included in the default stylesheets. In + order to use one of those methods, your customization layer must import one + of the optional stylesheet modules: + + â— html/autoidx-kosek.xsl + â— html/autoidx-kimber.xsl + â— fo/autoidx-kosek.xsl + â— fo/autoidx-kimber.xsl + + See the index.method parameter reference page for more information. + + Two other changes to note: + + â— The default indexing method now can handle accented characters in + latin-based alphabets, not just English. This means accented latin + letters will group and sort with their unaccented counterpart. + â— The default value for the index.method parameter was changed from + 'english' to 'basic' because now the default method can handle + latin-based alphabets, not just English. + +The following is a list of changes that have been made since the 1.70.1 +release. + +Common + +The following changes have been made to the common code since the 1.70.1 +release. + + â— Added reference.autolabel parameter for controlling labels on + reference output. + + â— Support rows that are *completely* overlapped by the preceding row + + â— New modules for supporting indexing extensions. + + â— Support startinglinenumber on orderedlist + +Extensions + +The following changes have been made to the extensions code since the 1.70.1 +release. + + â— Completely reworked extensions build system; now uses NetBeans and ant + +FO + +The following changes have been made to the fo code since the 1.70.1 release. + + â— xsl:sort lang attribute now uses two-char substring of lang attribute. + + â— Support titlecase "Java", "Perl", and "IDL" as values for the + language attribute on classsynopsis, etc. (instead of just + lowercase "java", "perl", and "idl"). Also support "c++" and "C++" + (instead of just "cpp"). + + Affects HTML, FO, and manpages output. Closes bug 1552332. Thanks + to "Brian A. Vanderburg II". + + â— Added support for the reference.autolabel param in (X)HTML and FO + output. + + â— Support rows that are *completely* overlapped by the preceding row + + â— Rearranged templates for the 3 indexing methods + and changed method named 'english' to 'basic'. + + â— New modules for supporting indexing extensions. + + â— Turn off blank-body for fop1.extensions too since fop 0.92 + does not support it either. + + â— Add Xalan variant to test for exslt:node-set function. + Xalan can use function named node-set(), but doesn't + recognize it using function-available(). + + â— Added support to FO stylesheets for handling instances of Org + where it occurs outside of *info content. In HTML stylesheets, + moved handling of Org out of info.xsl and into inline.xsl. In both + FO and HTML stylesheets, added support for correctly processing + Affiliation and Jobtitle. + + â— Don't output punctuation between Refname and Refpurpose if + Refpurpose is empty. Also corrected handling of Refsect2/title + instances, and removed some debugging stuff that was generated in + manpages output to mark the ends of sections. + + â— Added new email.delimiters.enabled param. If non-zero (the + default), delimiters are generated around e-mail addresses (output + of the email element). If zero, the delimiters are suppressed. + + â— Initial support of syntax highlighting of programlistings. + + â— Chapter after preface should restart numbering of pages. + +HTML + +The following changes have been made to the html code since the 1.70.1 release. + + â— xsl:sort lang attribute now uses two-char substring of lang attribute. + + â— Support titlecase "Java", "Perl", and "IDL" as values for the + language attribute on classsynopsis, etc. (instead of just + lowercase "java", "perl", and "idl"). Also support "c++" and "C++" + (instead of just "cpp"). + + Affects HTML, FO, and manpages output. Closes bug 1552332. Thanks + to "Brian A. Vanderburg II". + + â— Added support for the reference.autolabel param in (X)HTML and FO + output. + + â— Support rows that are *completely* overlapped by the preceding row + + â— Rearranged templates for the 3 indexing methods + and changed method named 'english' to 'basic'. + + â— New modules for supporting indexing extensions. + + â— Added several new HTML parameters for controlling appearance of + content on HTML title pages: + + contrib.inline.enabled: +   If non-zero (the default), output of the contrib element is +   displayed as inline content rather than as block content. + + othercredit.like.author.enabled: +   If non-zero, output of the othercredit element on titlepages is +   displayed in the same style as author and editor output. If zero +   (the default), othercredit output is displayed using a style +   different than that of author and editor. + + blurb.on.titlepage.enabled: +   If non-zero, output from authorblurb and personblurb elements is +   displayed on title pages. If zero (the default), output from +   those elements is suppressed on title pages (unless you are +   using a titlepage customization that causes them to be included). + + editedby.enabled +   If non-zero (the default), a localized Edited by heading is +   displayed above editor names in output of the editor element. + + â— Add Xalan variant to test for exslt:node-set function. + Xalan can use function named node-set(), but doesn't + recognize it using function-available(). + + â— Added support to FO stylesheets for handling instances of Org + where it occurs outside of *info content. In HTML stylesheets, + moved handling of Org out of info.xsl and into inline.xsl. In both + FO and HTML stylesheets, added support for correctly processing + Affiliation and Jobtitle. + + â— Don't output punctuation between Refname and Refpurpose if + Refpurpose is empty. Also corrected handling of Refsect2/title + instances, and removed some debugging stuff that was generated in + manpages output to mark the ends of sections. + + â— Added new email.delimiters.enabled param. If non-zero (the + default), delimiters are generated around e-mail addresses (output + of the email element). If zero, the delimiters are suppressed. + + â— Added qanda.nested.in.toc param. Default value is zero. If + non-zero, instances of "nested" Qandaentry (ones that are children + of Answer elements) are displayed in the TOC. Closes patch 1509018 + (from Daniel Leidert). Currently on affects HTML output (no patch + for FO output provided). + + â— Improved handling of relative locations generated files + + â— Initial support of syntax highlighting of programlistings. + + â— Support org + + â— Support person + + â— Support $keep.relative.image.uris also when chunking + +Highlighting + +The following changes have been made to the highlighting code since the 1.70.1 +release. + + â— Initial support of syntax highlighting of programlistings. + +Manpages + +The following changes have been made to the manpages code since the 1.70.1 +release. + + â— Suppress footnote markers and output warning that footnotes are + not yet supported. + + â— Handle instances of address/otheraddr/ulink in author et al in the + same way as email instances; that is, display them on the same + linke as the author, editor, etc., name. + + â— Don't number or link-list any Ulink instance whose string value is + identical to the value of its url attribute. Just display it inline. + + â— Don't output punctuation between Refname and Refpurpose if + Refpurpose is empty. Also corrected handling of Refsect2/title + instances, and removed some debugging stuff that was generated in + manpages output to mark the ends of sections. + + â— Added new email.delimiters.enabled param. If non-zero (the + default), delimiters are generated around e-mail addresses (output + of the email element). If zero, the delimiters are suppressed. + + â— In manpages output, if the last/nearest *info element for + particular Refentry has multiple Copyright and/or Legalnotice + children, process them all (not just the first ones). Closes bug + 1524576. Thanks to Sam Steingold for the report and to Daniel + Leidert for providing a patch. + +Params + +The following changes have been made to the params code since the 1.70.1 +release. + + â— Added reference.autolabel parameter for controlling labels on + reference output. + + â— Added namespace declarations to document elements for all param files. + + â— Updated index.method doc to describe revised setup for importing index +  extensions. + + â— Added several new HTML parameters for controlling appearance of + content on HTML title pages: + + contrib.inline.enabled: +   If non-zero (the default), output of the contrib element is +   displayed as inline content rather than as block content. + + othercredit.like.author.enabled: +   If non-zero, output of the othercredit element on titlepages is +   displayed in the same style as author and editor output. If zero +   (the default), othercredit output is displayed using a style +   different than that of author and editor. + + blurb.on.titlepage.enabled: +   If non-zero, output from authorblurb and personblurb elements is +   displayed on title pages. If zero (the default), output from +   those elements is suppressed on title pages (unless you are +   using a titlepage customization that causes them to be included). + + editedby.enabled +   If non-zero (the default), a localized Edited by heading is +   displayed above editor names in output of the editor element. + + â— Added new email.delimiters.enabled param. If non-zero (the + default), delimiters are generated around e-mail addresses (output + of the email element). If zero, the delimiters are suppressed. + + â— Added qanda.nested.in.toc param. Default value is zero. If + non-zero, instances of "nested" Qandaentry (ones that are children + of Answer elements) are displayed in the TOC. Closes patch 1509018 + (from Daniel Leidert). Currently on affects HTML output (no patch + for FO output provided). + + â— Initial support of syntax highlighting of programlistings. + +Tools + +The following changes have been made to the tools code since the 1.70.1 +release. + + â— Racheted down font sizes of headings in example makefile FO output. + + â— Added param and attribute set to example makefile, for getting + wrapping in verbatims in FO output. + + â— Renamed Makefile.paramDoc to Makefile.docParam. + + â— Added Makefile.paramDoc file, for creating versions of param.xsl + files with doc embedded. + + â— Added variable to example makefile for controlling whether HTML or + XHTML is generated. + +Release: 1.70.1 + +This is a stable release of the 1.70 stylesheets. It includes only a few small +changes from 1.70.0. + +The following is a list of changes that have been made since the 1.70.0 +release. + +FO + +The following changes have been made to the fo code since the 1.70.0 release. + + â— Added three new attribute sets (revhistory.title.properties, + revhistory.table.properties and revhistory.table.cell.properties) for + controlling appearance of revhistory in FO output. + + Modified: fo/block.xsl,1.34; fo/param.ent,1.101; fo/param.xweb,1.114; fo/ + titlepage.xsl,1.41; params/revhistory.table.cell.properties.xml,1.1; params + /revhistory.table.properties.xml,1.1; params/ + revhistory.title.properties.xml,1.1 - Jirka Kosek + + â— Support DBv5 revisions with full author name (not only authorinitials) + + Modified: fo/block.xsl,1.33; fo/titlepage.xsl,1.40 - Jirka Kosek + +HTML + +The following changes have been made to the html code since the 1.70.0 release. + + â— Support DBv5 revisions with full author name (not only authorinitials) + + Modified: html/block.xsl,1.23; html/titlepage.xsl,1.34 - Jirka Kosek + +HTMLHelp + +The following changes have been made to the htmlhelp code since the 1.70.0 +release. + + â— htmlhelp.generate.index is now param, not variable. This means that you can + override its setting from outside. This is useful when you generate + indexterms on the fly (see http://www.xml.com/pub/a/2004/07/14/dbndx.html? + page=3). + + Modified: htmlhelp/htmlhelp-common.xsl,1.38 - Jirka Kosek + + â— Support chunk.tocs.and.lots in HTML Help + + Modified: htmlhelp/htmlhelp-common.xsl,1.37 - Jirka Kosek + +Params + +The following changes have been made to the params code since the 1.70.0 +release. + + â— Added three new attribute sets (revhistory.title.properties, + revhistory.table.properties and revhistory.table.cell.properties) for + controlling appearance of revhistory in FO output. + + Modified: fo/block.xsl,1.34; fo/param.ent,1.101; fo/param.xweb,1.114; fo/ + titlepage.xsl,1.41; params/revhistory.table.cell.properties.xml,1.1; params + /revhistory.table.properties.xml,1.1; params/ + revhistory.title.properties.xml,1.1 - Jirka Kosek + +Release: 1.70.0 + +As with all DocBook Project dot-zero releases, this is an experimental release. +It will be followed shortly by a stable release. + +This release adds a number of new features, including: + + â— support for selecting alternative index-collation methods (in particular, + support for using a collation library developed by Eliot Kimber) + + â— improved handling of DocBook 5 document instances (through a + namespace-stripping mechanism) + + â— full support for CALS and HTML tables in manpages output + + â— a mechanism for preserving relative URIs in documents that make use of + XInclude + + â— support for the "new" .90 version of FOP + + â— enhanced capabilities for controlling formatting of lists in HTML and FO + output + + â— autogeneration of AUTHOR and COPYRIGHT sections in manpages output + + â— support for generating crop marks in FO/PDF output + + â— support for qandaset as a root element in FO output + + â— support for floatstyle and orient on all table types + + â— support for floatstyle in figure, and example + + â— pgwide.properties attribute-set supports extending figure, example and + table into the left indent area instead of spanning multiple columns. + +The following is a detailed list of enhancements and API changes that have been +made since the 1.69.1 release. + +Common + +The following changes have been made to the common code since the 1.69.1 +release. + + â— Add the xsl:key for the kimber indexing method. + + Modified: common/autoidx-ng.xsl,1.2 - Robert Stayton + + â— Add support for qandaset. + + Modified: common/labels.xsl,1.37; common/subtitles.xsl,1.7; common/ + titles.xsl,1.35 - Robert Stayton + + â— Support dbhtml/dbfo start PI for orderedlist numbering in both HTML and FO + + Modified: common/common.xsl,1.61; html/lists.xsl,1.50 - Norman Walsh + + â— Added CVS header. + + Modified: common/stripns.xsl,1.12 - Robert Stayton + + â— Changed content model of text element to ANY rather than #PCDATA because + they could contain markup. + + Modified: common/targetdatabase.dtd,1.7 - Robert Stayton + + â— Added refentry.meta.get.quietly param. + + If zero (the default), notes and warnings about "missing" markup are + generated during gathering of refentry metadata. If non-zero, the metadata + is gathered "quietly" -- that is, the notes and warnings are suppressed. + + NOTE: If you are processing a large amount of refentry content, you may be + able to speed up processing significantly by setting a non-zero value for + refentry.meta.get.quietly. + + Modified: common/refentry.xsl,1.17; manpages/param.ent,1.15; manpages/ + param.xweb,1.17; params/refentry.meta.get.quietly.xml,1.1 - Michael(tm) + Smith + + â— After namespace stripping, the source document is the temporary tree + created by the stripping process and it has the wrong base URI for relative + references. Earlier versions of this code used to try to fix that by + patching the elements with relative @fileref attributes. That was + inadequate because it calculated an absolute base URI without considering + that there might be xml:base attributes already in effect. It seems obvious + now that the right thing to do is simply to put the xml:base on the root of + the document. And that seems to work. + + Modified: common/stripns.xsl,1.7 - Norman Walsh + + â— Added support for "software" and "sectdesc" class values on refmiscinfo; + "software" is treated identically to "source", and "setdesc" is treated + identically to "manual". + + Modified: common/refentry.xsl,1.10; params/ + man.th.extra2.max.length.xml,1.3; params/ + refentry.source.name.profile.xml,1.4 - Michael(tm) Smith + + â— Added support for DocBook 5 namespace-stripping in manpages stylesheet. + Closes request #1210692. + + Modified: common/common.xsl,1.56; manpages/docbook.xsl,1.57 - Michael(tm) + Smith + + â— Added to make stripns.xsl usable as a standalone + stylesheet for stripping out DocBook 5/NG to DocBook 4. Note that DocBook + XSLT drivers that include this stylesheet all override the match="/" + template. + + Modified: common/stripns.xsl,1.4 - Michael(tm) Smith + + â— Number figures, examples, and tables from book if there is no prefix (i.e. + if chapter.autolabel is set to 0). This avoids having the list of figures + where the figures mysteriously restart their numeration periodically when + chapter.autolabel is set to 0. + + Modified: common/labels.xsl,1.36 - David Cramer + + â— Add task template in title.markup mode. + + Modified: common/titles.xsl,1.34 - Robert Stayton + + â— Add children (with ids) of formal objects to target data. + + Modified: common/targets.xsl,1.10 - Robert Stayton + + â— Added support for case when personname doesn't contain specific name markup + (as allowed in DocBook 5.0) + + Modified: common/common.xsl,1.54 - Jirka Kosek + +Extensions + +The following changes have been made to the extensions code since the 1.69.1 +release. + + â— Support Xalan 2.7 + + Modified: extensions/xalan27/.cvsignore,1.1; extensions/xalan27/ + build.xml,1.1; extensions/xalan27/nbproject/.cvsignore,1.1; extensions/ + xalan27/nbproject/build-impl.xml,1.1; extensions/xalan27/nbproject/ + genfiles.properties,1.1; extensions/xalan27/nbproject/ + project.properties,1.1; extensions/xalan27/nbproject/project.xml,1.1; + extensions/xalan27/src/com/nwalsh/xalan/CVS.java,1.1; extensions/xalan27/ + src/com/nwalsh/xalan/Callout.java,1.1; extensions/xalan27/src/com/nwalsh/ + xalan/FormatCallout.java,1.1; extensions/xalan27/src/com/nwalsh/xalan/ + FormatDingbatCallout.java,1.1; extensions/xalan27/src/com/nwalsh/xalan/ + FormatGraphicCallout.java,1.1; extensions/xalan27/src/com/nwalsh/xalan/ + FormatTextCallout.java,1.1; extensions/xalan27/src/com/nwalsh/xalan/ + FormatUnicodeCallout.java,1.1; extensions/xalan27/src/com/nwalsh/xalan/ + Func.java,1.1; extensions/xalan27/src/com/nwalsh/xalan/ + ImageIntrinsics.java,1.1; extensions/xalan27/src/com/nwalsh/xalan/ + Params.java,1.1; extensions/xalan27/src/com/nwalsh/xalan/Table.java,1.1; + extensions/xalan27/src/com/nwalsh/xalan/Text.java,1.1; extensions/xalan27/ + src/com/nwalsh/xalan/Verbatim.java,1.1 - Norman Walsh + + â— Handle the case where the imageFn is actually a URI. This still needs work. + + Modified: extensions/saxon643/com/nwalsh/saxon/ImageIntrinsics.java,1.4 - + Norman Walsh + +FO + +The following changes have been made to the fo code since the 1.69.1 release. + + â— Adapted to the new indexing code. Now works just like a wrapper that calls + kosek indexing method, originally implemented here. + + Modified: fo/autoidx-ng.xsl,1.5 - Jirka Kosek + + â— Added parameters for header/footer table minimum height. + + Modified: fo/pagesetup.xsl,1.60; fo/param.ent,1.100; fo/param.xweb,1.113 - + Robert Stayton + + â— Add the index.method parameter. + + Modified: fo/param.ent,1.99; fo/param.xweb,1.112 - Robert Stayton + + â— Integrate support for three indexing methods: - the original English-only + method. - Jirka Kosek's method using EXSLT extensions. - Eliot Kimber's + method using Saxon extensions. Use the 'index.method' parameter to select. + + Modified: fo/autoidx.xsl,1.38 - Robert Stayton + + â— Add support for TOC for qandaset in fo output. + + Modified: fo/autotoc.xsl,1.30; fo/qandaset.xsl,1.20 - Robert Stayton + + â— Added parameter ulink.hyphenate.chars. Added parameter insert.link + .page.number. + + Modified: fo/param.ent,1.98; fo/param.xweb,1.111 - Robert Stayton + + â— Implemented feature request #942524 to add insert.link.page.number to allow + link element cross references to have a page number. + + Modified: fo/xref.xsl,1.67 - Robert Stayton + + â— Add support for ulink.hyphenate.chars so more characters can be break + points in urls. + + Modified: fo/xref.xsl,1.66 - Robert Stayton + + â— Implemented patch #1075144 to make the url text in a ulink in FO output an + active link as well. + + Modified: fo/xref.xsl,1.65 - Robert Stayton + + â— table footnotes now have their own table.footnote.properties attribute set. + + Modified: fo/footnote.xsl,1.23 - Robert Stayton + + â— Add qandaset to root.elements. + + Modified: fo/docbook.xsl,1.41 - Robert Stayton + + â— Added mode="page.sequence" to make it easier to put content into a page + sequence. First used for qandaset. + + Modified: fo/component.xsl,1.37 - Robert Stayton + + â— Implemented feature request #1434408 to support formatting of biblioentry. + + Modified: fo/biblio.xsl,1.35 - Robert Stayton + + â— Added biblioentry.properties. + + Modified: fo/param.ent,1.97; fo/param.xweb,1.110 - Robert Stayton + + â— Support PTC/Arbortext bookmarks + + Modified: fo/docbook.xsl,1.40; fo/ptc.xsl,1.1 - Norman Walsh + + â— Added table.footnote.properties to permit table footnotes to format + differently from regular footnotes. + + Modified: fo/param.ent,1.96; fo/param.xweb,1.109 - Robert Stayton + + â— Refactored table templates to unify their processing and support all + options in all types. Now table and informaltable, in both Cals and Html + markup, use the same templates where possible, and all support pgwide, + rotation, and floats. There is also a placeholder table.container template + to support wrapping a table in a layout table, so the XEP table title + "continued" extension can be more easily implemented. + + Modified: fo/formal.xsl,1.52; fo/htmltbl.xsl,1.9; fo/table.xsl,1.48 - + Robert Stayton + + â— Added new attribute set toc.line.properties for controlling appearance of + lines in ToC/LoT + + Modified: fo/autotoc.xsl,1.29; fo/param.ent,1.95; fo/param.xweb,1.108 - + Jirka Kosek + + â— Added support for float to example and equation. Added support for pgwide + to figure, example, and equation (the latter two via a dbfo pgwide="1" + processing instruction). + + Modified: fo/formal.xsl,1.51 - Robert Stayton + + â— Add pgwide.properties attribute-set. + + Modified: fo/param.ent,1.94; fo/param.xweb,1.107 - Robert Stayton + + â— Added refclass.suppress param. + + If the value of refclass.suppress is non-zero, then display refclass + contents is suppressed in output. Affects HTML and FO output only. + + Modified: fo/param.ent,1.93; fo/param.xweb,1.106; html/param.ent,1.90; html + /param.xweb,1.99; params/refclass.suppress.xml,1.1 - Michael(tm) Smith + + â— Improved support for task subelements + + Modified: fo/task.xsl,1.3; html/task.xsl,1.3 - Jirka Kosek + + â— Adjusted spacing around K&R-formatted Funcdef and Paramdef output such that + it can more easily be discerned where one ends and the other begins. Closes + #1213264. + + Modified: fo/synop.xsl,1.18 - Michael(tm) Smith + + â— Made handling of paramdef/parameter in FO output consistent with that in + HTML and manpages output. Closes #1213259. + + Modified: fo/synop.xsl,1.17 - Michael(tm) Smith + + â— Made handling of Refnamediv consistent with formatting in HTML and manpages + output; specifically, changed so that Refname (comma-separated list of + multiple instances found) is used (instead of Refentrytitle as previously), + then em-dash, then the Refpurpose. Closes #1212562. + + Modified: fo/refentry.xsl,1.30 - Michael(tm) Smith + + â— Added output of Releaseinfo to recto titlepage ("copyright" page) for Book + in FO output. This makes it consistent with HTML output. Closes #1327034. + Thanks to Paul DuBois for reporting. + + Modified: fo/titlepage.templates.xml,1.28 - Michael(tm) Smith + + â— Added condition for setting block-progression-dimension.minimum on + table-row, instead of height, when fop1.extensions is non-zero. For an + explanation of the reason for the change, see: http://wiki.apache.org/ + xmlgraphics-fop/Troubleshooting/CommonLogMessages + + Modified: fo/pagesetup.xsl,1.59 - Michael(tm) Smith + + â— Added new refclass.suppress param for suppressing display of Refclass in + HTML and FO output. Did not add it to manpages because manpages stylesheet + is currently just silently ignoring Refclass anyway. Closes request # + 1461065. Thanks to Davor Ocelic (docelic) for reporting. + + Modified: fo/refentry.xsl,1.29; html/refentry.xsl,1.23 - Michael(tm) Smith + + â— Add support for keep-together PI to informal objects. + + Modified: fo/formal.xsl,1.50 - Robert Stayton + + â— Add support for fop1.extensions. + + Modified: fo/formal.xsl,1.49; fo/graphics.xsl,1.44; fo/table.xsl,1.47 - + Robert Stayton + + â— Add support for fop1 bookmarks. + + Modified: fo/docbook.xsl,1.39 - Robert Stayton + + â— Add fop1.extentions parameter to add support for fop development version. + + Modified: fo/param.ent,1.92; fo/param.xweb,1.105 - Robert Stayton + + â— Start supporting fop development version, which will become fop version 1. + + Modified: fo/fop1.xsl,1.1 - Robert Stayton + + â— Add template for task in mode="xref-to". + + Modified: fo/xref.xsl,1.63; html/xref.xsl,1.57 - Robert Stayton + + â— table footnotes now also get footnote.properties attribute-set. + + Modified: fo/footnote.xsl,1.22 - Robert Stayton + + â— Added index.separator named template to compute the separator punctuation + based on locale. + + Modified: fo/autoidx.xsl,1.36 - Robert Stayton + + â— Added support for link, olink, and xref within OO Classsynopsis and + children. (Because DocBook NG/5 allows it). + + Modified: fo/synop.xsl,1.15; html/synop.xsl,1.19 - Michael(tm) Smith + + â— Support date as an inline + + Modified: fo/inline.xsl,1.43; html/inline.xsl,1.46 - Norman Walsh + + â— Added new parameter keep.relative.image.uris + + Modified: fo/param.ent,1.91; fo/param.xweb,1.104; html/param.ent,1.87; html + /param.xweb,1.96; params/keep.relative.image.uris.xml,1.1 - Norman Walsh + + â— Map Unicode space characters U+2000-U+200A to fo:leaders. + + Modified: fo/docbook.xsl,1.38; fo/passivetex.xsl,1.4; fo/spaces.xsl,1.1 - + Jirka Kosek + + â— Output a real em dash for em-dash dingbat (instead of two hypens). + + Modified: fo/fo.xsl,1.7 - Michael(tm) Smith + + â— Support default label width parameters for itemized and ordered lists + + Modified: fo/lists.xsl,1.64; fo/param.ent,1.90; fo/param.xweb,1.103; params + /itemizedlist.label.width.xml,1.1; params/orderedlist.label.width.xml,1.1 - + Norman Walsh + + â— Generate localized title for Refsynopsisdiv if no appropriate Title + descendant found in source. Closes #1212398. This change makes behavior for + the Synopsis title consistent with the behavior of HTML and manpages + output. + + Also, added xsl:use-attribute-sets="normal.para.spacing" to block generated + for Cmdsynopsis output. Previously, that block had no spacing at all + specified, which resulted it being crammed up to closely to the Synopsis + head. + + Modified: fo/refentry.xsl,1.28; fo/synop.xsl,1.13 - Michael(tm) Smith + + â— Added parameters to support localization of index item punctuation. + + Modified: fo/autoidx.xsl,1.35 - Robert Stayton + + â— Added index.number.separator, index.range.separator, and + index.term.separator parameters to support localization of punctuation in + index entries. + + Modified: fo/param.ent,1.89; fo/param.xweb,1.102 - Robert Stayton + + â— Added "Cross References" section in HTML doc (for consistency with the FO + doc). Also, moved the existing FO "Cross References" section to follow the + "Linking" section. + + Modified: fo/param.xweb,1.101; html/param.xweb,1.95 - Michael(tm) Smith + + â— Added ID attribues to all Reference elements (e.g., id="tables" for the doc + for section on Table params). So pages for all subsections of ref docs now + have stable filenames instead of arbitrary generated filenames. + + Modified: fo/param.xweb,1.100; html/param.xweb,1.94 - Michael(tm) Smith + + â— Added two new parameters for handling of multi-term varlistentry elements: + + variablelist.term.break.after: When the variablelist.term.break.after is + non-zero, it will generate a line break after each term multi-term + varlistentry. + + variablelist.term.separator: When a varlistentry contains multiple term + elements, the string specified in the value of the + variablelist.term.separator parameter is placed after each term except the + last. The default is ", " (a comma followed by a space). To suppress + rendering of the separator, set the value of variablelist.term.separator to + the empty string (""). + + These parameters are primarily intended to be useful if you have multi-term + varlistentries that have long terms. + + Closes #1306676. Thanks to Sam Steingold for providing an example "lots of + long terms" doc that demonstrated the value of having these options. + + Also, added normalize-space() call to processing of each term. + + This change affects all output formats (HTML, PDF, manpages). The default + behavior should pretty much remain the same as before, but it is possible + (as always) that the change may introduce some new bugginess. + + Modified: fo/lists.xsl,1.62; fo/param.ent,1.88; fo/param.xweb,1.99; html/ + lists.xsl,1.48; html/param.ent,1.86; html/param.xweb,1.93; manpages/ + lists.xsl,1.22; manpages/param.ent,1.14; manpages/param.xweb,1.16; params/ + variablelist.term.break.after.xml,1.1; params/ + variablelist.term.separator.xml,1.1 - Michael(tm) Smith + + â— Add sidebar titlepage placeholder attset for styles. + + Modified: fo/titlepage.xsl,1.37 - Robert Stayton + + â— Add titlepage for sidebar. + + Modified: fo/titlepage.templates.xml,1.27 - Robert Stayton + + â— Implemented RFE #1292615. + + Added bunch of new parameters (attribute sets) that affect list + presentation: list.block.properties, itemizedlist.properties, orderedlist + .properties, itemizedlist.label.properties and orderedlist.label + .properties. Default behaviour of stylesheets has not been changed but + further customizations will be much more easier. + + Modified: fo/lists.xsl,1.61; fo/param.ent,1.87; fo/param.xweb,1.98; params/ + itemizedlist.label.properties.xml,1.1; params/ + itemizedlist.properties.xml,1.1; params/list.block.properties.xml,1.1; + params/orderedlist.label.properties.xml,1.1; params/ + orderedlist.properties.xml,1.1 - Jirka Kosek + + â— Implemented RFE #1242092. + + You can enable crop marks in your document by setting crop.marks=1 and + xep.extensions=1. Appearance of crop marks can be controlled by parameters + crop.mark.bleed (6pt), crop.mark.offset (24pt) and crop.mark.width (0.5pt). + + Also there is new named template called user-xep-pis. You can overwrite it + in order to produce some PIs that can control XEP as described in http:// + www.renderx.com/reference.html#Output_Formats + + Modified: fo/docbook.xsl,1.36; fo/param.ent,1.86; fo/param.xweb,1.97; fo/ + xep.xsl,1.23; params/crop.mark.bleed.xml,1.1; params/ + crop.mark.offset.xml,1.1; params/crop.mark.width.xml,1.1; params/ + crop.marks.xml,1.1 - Jirka Kosek + +HTML + +The following changes have been made to the html code since the 1.69.1 release. + + â— implemented index.method parameter and three methods. + + Modified: html/autoidx.xsl,1.28 - Robert Stayton + + â— added index.method parameter to support 3 indexing methods. + + Modified: html/param.ent,1.94; html/param.xweb,1.103 - Robert Stayton + + â— Implemented feature request #1072510 as a processing instruction to permit + including external HTML content into HTML output. + + Modified: html/pi.xsl,1.9 - Robert Stayton + + â— Added new parameter chunk.tocs.and.lots.has.title which controls presence + of title in a separate chunk with ToC/LoT. Disabling title can be very + useful if you are generating frameset output (well, yes those frames, but + some customers really want them ;-). + + Modified: html/chunk-code.xsl,1.15; html/param.ent,1.93; html/ + param.xweb,1.102; params/chunk.tocs.and.lots.has.title.xml,1.1 - Jirka + Kosek + + â— Support dbhtml/dbfo start PI for orderedlist numbering in both HTML and FO + + Modified: common/common.xsl,1.61; html/lists.xsl,1.50 - Norman Walsh + + â— Allow ToC without title also for set and book. + + Modified: html/autotoc.xsl,1.37; html/division.xsl,1.12 - Jirka Kosek + + â— Implemented floats uniformly for figure, example, equation and + informalfigure, informalexample, and informalequation. + + Modified: html/formal.xsl,1.22 - Robert Stayton + + â— Added the autotoc.label.in.hyperlink param. + + If the value of autotoc.label.in.hyperlink is non-zero, labels are included + in hyperlinked titles in the TOC. If it is instead zero, labels are still + displayed prior to the hyperlinked titles, but are not hyperlinked along + with the titles. + + Closes patch #1065868. Thanks to anatoly techtonik for the patch. + + Modified: html/autotoc.xsl,1.36; html/param.ent,1.92; html/ + param.xweb,1.101; params/autotoc.label.in.hyperlink.xml,1.1 - Michael(tm) + Smith + + â— Added two new params: html.head.legalnotice.link.types and html.head. + legalnotice.link.multiple. + + If the value of the generate.legalnotice.link is non-zero, then the + stylesheet generates (in the head section of the HTML source) either a + single HTML link element or, if the value of the html.head.legalnotice.link + .multiple is non-zero, one link element for each link type specified. Each + link has the following attributes: + + - a rel attribute whose value is derived from the value of html.head. + legalnotice.link.types + + - an href attribute whose value is set to the URL of the file containing + the legalnotice + + - a title attribute whose value is set to the title of the corresponding + legalnotice (or a title programatically determined by the stylesheet) + + For example: + + + + Closes #1476450. Thanks to Sam Steingold. + + Modified: html/chunk-common.xsl,1.45; html/param.ent,1.91; html/ + param.xweb,1.100; params/generate.legalnotice.link.xml,1.4; params/ + html.head.legalnotice.link.multiple.xml,1.1; params/ + html.head.legalnotice.link.types.xml,1.1 - Michael(tm) Smith + + â— Added refclass.suppress param. + + If the value of refclass.suppress is non-zero, then display refclass + contents is suppressed in output. Affects HTML and FO output only. + + Modified: fo/param.ent,1.93; fo/param.xweb,1.106; html/param.ent,1.90; html + /param.xweb,1.99; params/refclass.suppress.xml,1.1 - Michael(tm) Smith + + â— Improved support for task subelements + + Modified: fo/task.xsl,1.3; html/task.xsl,1.3 - Jirka Kosek + + â— Added new refclass.suppress param for suppressing display of Refclass in + HTML and FO output. Did not add it to manpages because manpages stylesheet + is currently just silently ignoring Refclass anyway. Closes request # + 1461065. Thanks to Davor Ocelic (docelic) for reporting. + + Modified: fo/refentry.xsl,1.29; html/refentry.xsl,1.23 - Michael(tm) Smith + + â— Process alt text with normalize-space(). Replace tab indents with spaces. + + Modified: html/graphics.xsl,1.57 - Robert Stayton + + â— Content of citation element is automatically linked to the bibliographic + entry with the corresponding abbrev. + + Modified: html/biblio.xsl,1.26; html/inline.xsl,1.47; html/xref.xsl,1.58 - + Jirka Kosek + + â— Add template for task in mode="xref-to". + + Modified: fo/xref.xsl,1.63; html/xref.xsl,1.57 - Robert Stayton + + â— Suppress ID warnings if the .warnings parameter is 0 + + Modified: html/html.xsl,1.17 - Norman Walsh + + â— Add support for floatstyle to figure. + + Modified: html/formal.xsl,1.21 - Robert Stayton + + â— Handling of xref to area/areaset need support in extensions code also. I + currently have no time to touch extensions code, so code is here to be + enabled when extension is fixed also. + + Modified: html/xref.xsl,1.56 - Jirka Kosek + + â— Added 3 parameters for overriding gentext for index punctuation. + + Modified: html/param.ent,1.89; html/param.xweb,1.98 - Robert Stayton + + â— Added parameters to support localization of index item punctuation. Added + index.separator named template to compute the separator punctuation based + on locale. + + Modified: html/autoidx.xsl,1.27 - Robert Stayton + + â— Added a
    wrapper around output of contents + of all formal objects. Also, added an optional
    + linebreak after all formal objects. + + WARNING: Because this change places an additional DIV between the DIV + wrapper for the equation and the equation contents, it may break some + existing CSS stylesheets that have been created with the assumption that + there would never be an intervening DIV there. + + The following is an example of what Equation output looks like as a result + of the changes described above. + +
    + +

    (1.3)

    + +
    1+1=3

    + + Rationale: These changes allow CSS control of the placement of the + formal-object title relative to the formal-object contents. For example, + using the CSS "float" property enables the title and contents to be + rendered on the same line. Example stylesheet: + + .equation { margin-top: 20px; margin-bottom: 20px; } .equation-contents { + float: left; } + + .equation .title { margin-top: 0; float: right; margin-right: 200px; } + + .equation .title b { font-weight: normal; } + + .equation-break { clear: both; } + + Note that the purpose of the ".equation-break" class is to provide a way to + clear off the floats. + + If you want to instead have the equation title rendered to the left of the + equation contents, you can do something like this: + + .equation { margin-top: 20px; width: 300px; margin-bottom: 20px; } + .equation-contents { float: right; } + + .equation .title { margin-top: 0; float: left; margin-right: 200px; } + + .equation .title b { font-weight: normal; } + + .equation-break { clear: both; } + + Modified: html/formal.xsl,1.20 - Michael(tm) Smith + + â— Added a chunker.output.quiet top-level parameter so that the chunker can be + made quiet by default + + Modified: html/chunker.xsl,1.26 - Norman Walsh + + â— Added support for link, olink, and xref within OO Classsynopsis and + children. (Because DocBook NG/5 allows it). + + Modified: fo/synop.xsl,1.15; html/synop.xsl,1.19 - Michael(tm) Smith + + â— New parameter: id.warnings. If non-zero, warnings are generated for titled + objects that don't have titles. True by default; I wonder if this will be + too aggressive? + + Modified: html/biblio.xsl,1.25; html/component.xsl,1.27; html/ + division.xsl,1.11; html/formal.xsl,1.19; html/glossary.xsl,1.20; html/ + html.xsl,1.13; html/index.xsl,1.16; html/param.ent,1.88; html/ + param.xweb,1.97; html/refentry.xsl,1.22; html/sections.xsl,1.30; params/ + id.warnings.xml,1.1 - Norman Walsh + + â— If the keep.relative.image.uris parameter is true, don't use the absolute + URI (as calculated from xml:base) in the img src attribute, us the value + the author specified. Note that we still have to calculate the absolute + filename for use in the image intrinsics extension. + + Modified: html/graphics.xsl,1.56 - Norman Walsh + + â— Support date as an inline + + Modified: fo/inline.xsl,1.43; html/inline.xsl,1.46 - Norman Walsh + + â— Added new parameter keep.relative.image.uris + + Modified: fo/param.ent,1.91; fo/param.xweb,1.104; html/param.ent,1.87; html + /param.xweb,1.96; params/keep.relative.image.uris.xml,1.1 - Norman Walsh + + â— Added two new parameters for handling of multi-term varlistentry elements: + + variablelist.term.break.after: When the variablelist.term.break.after is + non-zero, it will generate a line break after each term multi-term + varlistentry. + + variablelist.term.separator: When a varlistentry contains multiple term + elements, the string specified in the value of the + variablelist.term.separator parameter is placed after each term except the + last. The default is ", " (a comma followed by a space). To suppress + rendering of the separator, set the value of variablelist.term.separator to + the empty string (""). + + These parameters are primarily intended to be useful if you have multi-term + varlistentries that have long terms. + + Closes #1306676. Thanks to Sam Steingold for providing an example "lots of + long terms" doc that demonstrated the value of having these options. + + Also, added normalize-space() call to processing of each term. + + This change affects all output formats (HTML, PDF, manpages). The default + behavior should pretty much remain the same as before, but it is possible + (as always) that the change may introduce some new bugginess. + + Modified: fo/lists.xsl,1.62; fo/param.ent,1.88; fo/param.xweb,1.99; html/ + lists.xsl,1.48; html/param.ent,1.86; html/param.xweb,1.93; manpages/ + lists.xsl,1.22; manpages/param.ent,1.14; manpages/param.xweb,1.16; params/ + variablelist.term.break.after.xml,1.1; params/ + variablelist.term.separator.xml,1.1 - Michael(tm) Smith + + â— Added "wrapper-name" param to inline.charseq named template, enabling it to + output inlines other than just "span". Acronym and Abbrev templates now use + inline.charseq to output HTML "acronym" and "abbr" elements (instead of + "span"). Closes #1305468. Thanks to Sam Steingold for suggesting the + change. + + Modified: html/inline.xsl,1.45 - Michael(tm) Smith + +Manpages + +The following changes have been made to the manpages code since the 1.69.1 +release. + + â— Added the following params: + + - man.indent.width (string-valued) - man.indent.refsect (boolean) - + man.indent.blurbs (boolean) - man.indent.lists (boolean) - + man.indent.verbatims (boolean) + + Note that in earlier snapshots, man.indent.width was named + man.indentation.default.value and the boolean params had names like + man.indentation.*.adjust. Also the man.indent.blurbs param was called + man.indentation.authors.adjust (or something). + + The behavior now is: If the value of a particular man.indent.* boolean + param is non-zero, the corresponding contents (refsect*, list items, + authorblurb/personblurb, vervatims) are displayed with a left margin + indented by a width equal to the value of man.indent.width. + + Modified: params/man.indent.blurbs.xml,1.1; manpages/docbook.xsl,1.74; + manpages/info.xsl,1.20; manpages/lists.xsl,1.30; manpages/other.xsl,1.20; + manpages/param.ent,1.22; manpages/param.xweb,1.24; manpages/ + refentry.xsl,1.14; params/man.indent.lists.xml,1.1; params/ + man.indent.refsect.xml,1.1; params/man.indent.verbatims.xml,1.1; params/ + man.indent.width.xml,1.1 - Michael(tm) Smith + + â— Added man.table.footnotes.divider param. + + In each table that contains footenotes, the string specified by the man. + table.footnotes.divider parameter is output before the list of footnotes + for the table. + + Modified: manpages/docbook.xsl,1.73; manpages/links.xsl,1.6; manpages/ + param.ent,1.21; manpages/param.xweb,1.23; params/ + man.table.footnotes.divider.xml,1.1 - Michael(tm) Smith + + â— Added the man.output.in.separate.dir, man.output.base.dir, and + man.output.subdirs.enabled parameters. + + The man.output.base.dir parameter specifies the base directory into which + man-page files are output. The man.output.subdirs.enabled parameter + controls whether the files are output in subdirectories within the base + directory. + + The values of the man.output.base.dir and man.output.subdirs.enabled + parameters are used only if the value of man.output.in.separate.dir + parameter is non-zero. If the value of man.output.in.separate.dir is zero, + man-page files are not output in a separate directory. + + Modified: manpages/docbook.xsl,1.72; manpages/param.ent,1.20; manpages/ + param.xweb,1.22; params/man.output.base.dir.xml,1.1; params/ + man.output.in.separate.dir.xml,1.1; params/ + man.output.subdirs.enabled.xml,1.1 - Michael(tm) Smith + + â— Added man.font.table.headings and man.font.table.title params, for + controlling font in table headings and titles. + + Modified: manpages/docbook.xsl,1.71; manpages/param.ent,1.19; manpages/ + param.xweb,1.21; params/man.font.table.headings.xml,1.1; params/ + man.font.table.title.xml,1.1 - Michael(tm) Smith + + â— Added man.font.funcsynopsisinfo and man.font.funcprototype params, for + specifying the roff font (for example, BI, B, I) for funcsynopsisinfo and + funcprototype output. + + Modified: manpages/block.xsl,1.19; manpages/docbook.xsl,1.69; manpages/ + param.ent,1.18; manpages/param.xweb,1.20; manpages/synop.xsl,1.29; manpages + /table.xsl,1.21; params/man.font.funcprototype.xml,1.1; params/ + man.font.funcsynopsisinfo.xml,1.1 - Michael(tm) Smith + + â— Added man.segtitle.suppress param. + + If the value of man.segtitle.suppress is non-zero, then display of segtitle + contents is suppressed in output. + + Modified: manpages/docbook.xsl,1.68; manpages/param.ent,1.17; manpages/ + param.xweb,1.19; params/man.segtitle.suppress.xml,1.1 - Michael(tm) Smith + + â— Added man.output.manifest.enabled and man.output.manifest.filename params. + + If man.output.manifest.enabled is non-zero, a list of filenames for man + pages generated by the stylesheet transformation is written to the file + named by man.output.manifest.filename + + Modified: manpages/docbook.xsl,1.67; manpages/other.xsl,1.19; manpages/ + param.ent,1.16; manpages/param.xweb,1.18; params/ + man.output.manifest.enabled.xml,1.1; params/ + man.output.manifest.filename.xml,1.1; tools/make/Makefile.DocBook,1.4 - + Michael(tm) Smith + + â— Added refentry.meta.get.quietly param. + + If zero (the default), notes and warnings about "missing" markup are + generated during gathering of refentry metadata. If non-zero, the metadata + is gathered "quietly" -- that is, the notes and warnings are suppressed. + + NOTE: If you are processing a large amount of refentry content, you may be + able to speed up processing significantly by setting a non-zero value for + refentry.meta.get.quietly. + + Modified: common/refentry.xsl,1.17; manpages/param.ent,1.15; manpages/ + param.xweb,1.17; params/refentry.meta.get.quietly.xml,1.1 - Michael(tm) + Smith + + â— Changed names of all boolean indentation params to man.indent.* Also + discarded individual man.indent.*.value params and switched to just using a + common man.indent.width param (3n by default). + + Modified: manpages/docbook.xsl,1.66; manpages/info.xsl,1.19; manpages/ + lists.xsl,1.29; manpages/other.xsl,1.18; manpages/refentry.xsl,1.13 - + Michael(tm) Smith + + â— Added boolean man.output.in.separate.dir param, to control whether or not + man files are output in separate directory. + + Modified: manpages/docbook.xsl,1.65; manpages/utility.xsl,1.14 - Michael + (tm) Smith + + â— Added options for controlling indentation of verbatim output. Controlled + through the man.indentation.verbatims.adjust and + man.indentation.verbatims.value params. Closes #1242997 + + Modified: manpages/block.xsl,1.15; manpages/docbook.xsl,1.64 - Michael(tm) + Smith + + â— Added options for controlling indentation in lists and in *blurb output in + the AUTHORS section. Controlled through the man.indentation.lists.adjust, + man.indentation.lists.value, man.indentation.authors.adjust, and + man.indentation.authors.value parameters. Default is 3 characters (instead + of the roff default of 8 characters). Closes #1449369. + + Also, removed the indent that was being set on informalexample outuput. I + will instead add an option for indenting verbatims, which I think is what + the informalexample indent was intended for originally. + + Modified: manpages/block.xsl,1.14; manpages/docbook.xsl,1.63; manpages/ + info.xsl,1.18; manpages/lists.xsl,1.28 - Michael(tm) Smith + + â— Changed line-spacing call before synopfragment to use ".sp -1n" ("n" units + specified) instead of plain ".sp -1" + + Modified: manpages/synop.xsl,1.28 - Michael(tm) Smith + + â— Added support for writing man files into a specific output directory and + into appropriate subdirectories within that output directory. Controlled + through the man.base.dir parameter (similar to the base.dir support in the + HTML stylesheet) and the man.subdirs.enabled parameter, which automatically + determines the name of an appropriate subdir (for example, man/man7, man/ + man1, etc.) based on the section number/manvolnum of the source Refentry. + + Closes #1255036 and #1170317. Thanks to Denis Bradford for the original + feature request, and to Costin Stroie for submitting a patch that was very + helpful in implementing the support. + + Modified: manpages/docbook.xsl,1.62; manpages/utility.xsl,1.13 - Michael + (tm) Smith + + â— Refined XPath statements and notification messages for refentry metadata + handling. + + Modified: common/common.xsl,1.59; common/refentry.xsl,1.14; manpages/ + docbook.xsl,1.61; manpages/other.xsl,1.17 - Michael(tm) Smith + + â— Added support for copyright and legalnotice. The manpages stylesheets now + output a COPYRIGHT section, after the AUTHORS section, if a copyright or + legalnotice is found in the source. The section contains the copyright + contents followed by the legalnotice contents. Closes #1450209. + + Modified: manpages/docbook.xsl,1.59; manpages/info.xsl,1.17 - Michael(tm) + Smith + + â— Drastically reworked all of the XPath expressions used in refentry metadata + gathering -- completely removed $parentinfo and turned $info into a set of + nodes that includes the *info contents of the Refentry plus the *info + contents all all of its ancestor elements. The basic XPath expression now + used throughout is (using the example of checking for a date): + + (($info[//date])[last()]/date)[1]. + + That selects the "last" *info/date date in document order -- that is, the + one eitther on the Refentry itself or on the closest ancestor to the + Refentry. + + It's likely this change may break some things; may need to pick up some + pieces later. + + Also, changed the default value for the man.th.extra2.max.length from 40 to + 30. + + Modified: common/common.xsl,1.58; common/refentry.xsl,1.7; params/ + man.th.extra2.max.length.xml,1.2; params/refentry.date.profile.xml,1.2; + params/refentry.manual.profile.xml,1.2; params/ + refentry.source.name.profile.xml,1.2; params/ + refentry.version.profile.xml,1.2; manpages/docbook.xsl,1.58; manpages/ + other.xsl,1.15 - Michael(tm) Smith + + â— Added support for DocBook 5 namespace-stripping in manpages stylesheet. + Closes request #1210692. + + Modified: common/common.xsl,1.56; manpages/docbook.xsl,1.57 - Michael(tm) + Smith + + â— Fixed handling of table footnotes. With this checkin, the table support in + the manpages stylesheet is now basically feature complete. So this change + closes request #619532, "No support for tables" -- the oldest currently + open manpages feature request, submitted by Ben Secrest (blsecres) on + 2002-10-07. Congratulations to me [patting myself on the back]. + + Modified: manpages/block.xsl,1.11; manpages/docbook.xsl,1.55; manpages/ + table.xsl,1.15 - Michael(tm) Smith + + â— Added handling for table titles. Also fixed handling of nested tables; nest + tables are now "extracted" and displayed just after their parent tables. + + Modified: manpages/docbook.xsl,1.54; manpages/table.xsl,1.14 - Michael(tm) + Smith + + â— Added option for turning off bold formatting in Funcsynopsis. Boldface + formatting in function synopsis is mandated in the man(7) man page and is + used almost universally in existing man pages. Despite that, it really does + look like crap to have an entire Funcsynopsis output in bold, so I added + params for turning off the bold formatting and/or replacing it with a + different roff special font (e.g., "RI" for alternating roman/italic + instead of the default "BI" for alternating bold/italic). The new params + are "man.funcprototype.font" and "man.funcsynopsisinfo.font". To be + documented later. + + Closes #1452247. Thanks to Joe Orton for the feature request. + + Modified: params/man.string.subst.map.xml,1.16; manpages/block.xsl,1.10; + manpages/docbook.xsl,1.51; manpages/inline.xsl,1.16; manpages/ + synop.xsl,1.27 - Michael(tm) Smith + + â— Use AUTHORS instead of AUTHOR if we have multiple people to attribute. + Also, fixed checking such that we generate author section even if we don't + have an author (as long as there is at least one other person/entity we can + put in the section). Also adjusted assembly of content for Author metainfo + field such that we now not only use author, but try to find a "best match" + if we can't find an author name to put there. + + Closes #1233592. Thanks to Sam Steingold for the request. + + Modified: manpages/info.xsl,1.12 - Michael(tm) Smith + + â— Changes for request #1243027, "Impove handling of AUTHOR section." This + adds support for Collab, Corpauthor, Corpcredt, Orgname, Publishername, and + Publisher. Also adds support for output of Affiliation and its children, + and support for using gentext strings for auto-attributing roles (Author, + Editor, Publisher, Translator, etc.). Also did a lot of code cleanup and + modularization of all the AUTHOR handling code. And fixed a bug that was + causing Author info to not be picked up correctly for metainfo comment we + embed in man-page source. + + Modified: manpages/info.xsl,1.11 - Michael(tm) Smith + + â— Support bold output for "emphasis remap='B'". (because Eric Raymond's + doclifter(1) tool converts groff source marked up with ".B" request or "\ + fB" escapes to DocBook "emphasis remap='B'".) + + Modified: manpages/inline.xsl,1.14 - Michael(tm) Smith + + â— Added support for Segmentedlist. Details: Output is tabular, with no option + for "list" type output. Output for Segtitle elements can be supressed by + setting man.segtitle.suppress. If Segtitle content is output, it is + rendered in italic type (not bold because not all terminals support bold + and so italic ensures the stand out on those terminals). Extra space (.sp + line) at end of table code ensures that it gets handled correctly in the + case where its source is the child of a Para. Closes feature-request # + 1400097. Thanks to Daniel Leidert for the patch and push, and to Alastair + Rankine for filing the original feature request. + + Modified: manpages/lists.xsl,1.23; manpages/utility.xsl,1.10 - Michael(tm) + Smith + + â— Improved handling or Author/Editor/Othercredit. + + Reworked content of (non-visible) comment added at top of each page + (metadata stuff). + + Added support for generating a manifest file (useful for cleaning up after + builds, etc.) + + Modified: manpages/docbook.xsl,1.46; manpages/info.xsl,1.9; manpages/ + other.xsl,1.12; manpages/utility.xsl,1.6 - Michael(tm) Smith + + â— Added two new parameters for handling of multi-term varlistentry elements: + + variablelist.term.break.after: When the variablelist.term.break.after is + non-zero, it will generate a line break after each term multi-term + varlistentry. + + variablelist.term.separator: When a varlistentry contains multiple term + elements, the string specified in the value of the + variablelist.term.separator parameter is placed after each term except the + last. The default is ", " (a comma followed by a space). To suppress + rendering of the separator, set the value of variablelist.term.separator to + the empty string (""). + + These parameters are primarily intended to be useful if you have multi-term + varlistentries that have long terms. + + Closes #1306676. Thanks to Sam Steingold for providing an example "lots of + long terms" doc that demonstrated the value of having these options. + + Also, added normalize-space() call to processing of each term. + + This change affects all output formats (HTML, PDF, manpages). The default + behavior should pretty much remain the same as before, but it is possible + (as always) that the change may introduce some new bugginess. + + Modified: fo/lists.xsl,1.62; fo/param.ent,1.88; fo/param.xweb,1.99; html/ + lists.xsl,1.48; html/param.ent,1.86; html/param.xweb,1.93; manpages/ + lists.xsl,1.22; manpages/param.ent,1.14; manpages/param.xweb,1.16; params/ + variablelist.term.break.after.xml,1.1; params/ + variablelist.term.separator.xml,1.1 - Michael(tm) Smith + +Params + +The following changes have been made to the params code since the 1.69.1 +release. + + â— New parameters to set header/footer table minimum height. + + Modified: params/footer.table.height.xml,1.1; params/ + header.table.height.xml,1.1 - Robert Stayton + + â— Support multiple indexing methods for different languages. + + Modified: params/index.method.xml,1.1 - Robert Stayton + + â— Remove qandaset and qandadiv from generate.toc for fo output because + formerly it wasn't working, but now it is and the default behavior should + stay the same. + + Modified: params/generate.toc.xml,1.8 - Robert Stayton + + â— add support for page number references to link element too. + + Modified: params/insert.link.page.number.xml,1.1 - Robert Stayton + + â— Add support for more characters to hyphen on when ulink.hyphenate is turned + on. + + Modified: params/ulink.hyphenate.chars.xml,1.1; params/ + ulink.hyphenate.xml,1.3 - Robert Stayton + + â— New attribute-set to format biblioentry and bibliomixed. + + Modified: params/biblioentry.properties.xml,1.1 - Robert Stayton + + â— Added new parameter chunk.tocs.and.lots.has.title which controls presence + of title in a separate chunk with ToC/LoT. Disabling title can be very + useful if you are generating frameset output (well, yes those frames, but + some customers really want them ;-). + + Modified: html/chunk-code.xsl,1.15; html/param.ent,1.93; html/ + param.xweb,1.102; params/chunk.tocs.and.lots.has.title.xml,1.1 - Jirka + Kosek + + â— Added new attribute set toc.line.properties for controlling appearance of + lines in ToC/LoT + + Modified: params/toc.line.properties.xml,1.1 - Jirka Kosek + + â— Allow table footnotes to have different properties from regular footnotes. + + Modified: params/table.footnote.properties.xml,1.1 - Robert Stayton + + â— Set properties for pgwide="1" objects. + + Modified: params/pgwide.properties.xml,1.1 - Robert Stayton + + â— Added the autotoc.label.in.hyperlink param. + + If the value of autotoc.label.in.hyperlink is non-zero, labels are included + in hyperlinked titles in the TOC. If it is instead zero, labels are still + displayed prior to the hyperlinked titles, but are not hyperlinked along + with the titles. + + Closes patch #1065868. Thanks to anatoly techtonik for the patch. + + Modified: html/autotoc.xsl,1.36; html/param.ent,1.92; html/ + param.xweb,1.101; params/autotoc.label.in.hyperlink.xml,1.1 - Michael(tm) + Smith + + â— Added two new params: html.head.legalnotice.link.types and html.head. + legalnotice.link.multiple. + + If the value of the generate.legalnotice.link is non-zero, then the + stylesheet generates (in the head section of the HTML source) either a + single HTML link element or, if the value of the html.head.legalnotice.link + .multiple is non-zero, one link element for each link type specified. Each + link has the following attributes: + + - a rel attribute whose value is derived from the value of html.head. + legalnotice.link.types + + - an href attribute whose value is set to the URL of the file containing + the legalnotice + + - a title attribute whose value is set to the title of the corresponding + legalnotice (or a title programatically determined by the stylesheet) + + For example: + + + + Closes #1476450. Thanks to Sam Steingold. + + Modified: html/chunk-common.xsl,1.45; html/param.ent,1.91; html/ + param.xweb,1.100; params/generate.legalnotice.link.xml,1.4; params/ + html.head.legalnotice.link.multiple.xml,1.1; params/ + html.head.legalnotice.link.types.xml,1.1 - Michael(tm) Smith + + â— Added the following params: + + - man.indent.width (string-valued) - man.indent.refsect (boolean) - + man.indent.blurbs (boolean) - man.indent.lists (boolean) - + man.indent.verbatims (boolean) + + Note that in earlier snapshots, man.indent.width was named + man.indentation.default.value and the boolean params had names like + man.indentation.*.adjust. Also the man.indent.blurbs param was called + man.indentation.authors.adjust (or something). + + The behavior now is: If the value of a particular man.indent.* boolean + param is non-zero, the corresponding contents (refsect*, list items, + authorblurb/personblurb, vervatims) are displayed with a left margin + indented by a width equal to the value of man.indent.width. + + Modified: params/man.indent.blurbs.xml,1.1; manpages/docbook.xsl,1.74; + manpages/info.xsl,1.20; manpages/lists.xsl,1.30; manpages/other.xsl,1.20; + manpages/param.ent,1.22; manpages/param.xweb,1.24; manpages/ + refentry.xsl,1.14; params/man.indent.lists.xml,1.1; params/ + man.indent.refsect.xml,1.1; params/man.indent.verbatims.xml,1.1; params/ + man.indent.width.xml,1.1 - Michael(tm) Smith + + â— Added man.table.footnotes.divider param. + + In each table that contains footenotes, the string specified by the man. + table.footnotes.divider parameter is output before the list of footnotes + for the table. + + Modified: manpages/docbook.xsl,1.73; manpages/links.xsl,1.6; manpages/ + param.ent,1.21; manpages/param.xweb,1.23; params/ + man.table.footnotes.divider.xml,1.1 - Michael(tm) Smith + + â— Added the man.output.in.separate.dir, man.output.base.dir, and + man.output.subdirs.enabled parameters. + + The man.output.base.dir parameter specifies the base directory into which + man-page files are output. The man.output.subdirs.enabled parameter + controls whether the files are output in subdirectories within the base + directory. + + The values of the man.output.base.dir and man.output.subdirs.enabled + parameters are used only if the value of man.output.in.separate.dir + parameter is non-zero. If the value of man.output.in.separate.dir is zero, + man-page files are not output in a separate directory. + + Modified: manpages/docbook.xsl,1.72; manpages/param.ent,1.20; manpages/ + param.xweb,1.22; params/man.output.base.dir.xml,1.1; params/ + man.output.in.separate.dir.xml,1.1; params/ + man.output.subdirs.enabled.xml,1.1 - Michael(tm) Smith + + â— Added man.font.table.headings and man.font.table.title params, for + controlling font in table headings and titles. + + Modified: manpages/docbook.xsl,1.71; manpages/param.ent,1.19; manpages/ + param.xweb,1.21; params/man.font.table.headings.xml,1.1; params/ + man.font.table.title.xml,1.1 - Michael(tm) Smith + + â— Added man.font.funcsynopsisinfo and man.font.funcprototype params, for + specifying the roff font (for example, BI, B, I) for funcsynopsisinfo and + funcprototype output. + + Modified: manpages/block.xsl,1.19; manpages/docbook.xsl,1.69; manpages/ + param.ent,1.18; manpages/param.xweb,1.20; manpages/synop.xsl,1.29; manpages + /table.xsl,1.21; params/man.font.funcprototype.xml,1.1; params/ + man.font.funcsynopsisinfo.xml,1.1 - Michael(tm) Smith + + â— Changed to select="0" in refclass.suppress (instead of ..>0 as a child of the list. For example: + + Choose from + ONE and ONLY ONE of the following: + + + A + B + C. + + Output (for English): + + Choose from ONE and only ONE of the following choices: A, B, or C. + + As a temporary workaround for the fact that most of the DocBook non-English + locale files don't have a localization for the word “orâ€, you can put in a + literal string to be used; example for French: . + That is, use “ou†instead of “orâ€. + +FO + + â— Added content-type property to external-graphic element, based on imagedata + format attribute. + + â— Added support for generating field for + XEP output. This makes the DocBook XSL stylesheet version information + available through the Document Properties menu in Acrobat Reader and other + PDF viewers. + + â— Trademark symbol handling made consistent with handling of same in HTML + stylesheets. Prior to this change, if you processed a document that + contained no value for the class attribute on the trademark element, the + HTML stylesheets would default to rendering a superscript TM symbol after + the trademark contents, but the FO stylesheets would render nothing. + + â— Added support for generating XEP bookmarks for refentry. + + â— Added support for HTML markup table border attribute, applied to each table + cell. + + â— The table.width template can now sum column specs if none use % or *. + + â— Added fox:destination extension inside fox:outline to support linking to + internal destinations. + + â— Added support for customizing abstract with property sets. Controlled with + the abstract.properties and abstract.title.properties parameters. + + â— Add footnotes in table title to table footnote set, and add support for + table footnotes to HTML table markup. + + â— Added support for title in glosslist. + + â— Added support for itemizedlist symbol none. + + â— Implemented the new graphical.admonition.properties and + nongraphical.admonition.properties attribute sets. + + â— Added id to formalpara and some other blocks that were missing it. + + â— Changed the anchor template to output fo:inline instead of fo:wrapper. + + â— Added support for toc.max.depth parameter. + +Help + + â— Eclipse Help: Added support for generating olink database. + +HTML + + â— Added a first cut at support in HTML output for DocBook 5 style annotation + s. Controlled using the annotation.support parameter, and implemented using + JavaScript and CSS styling. For more details, see the documentation for the + annotation.js, annotation.css, annotation.graphic.open, and + annotation.graphic.close parameters. + + â— Generate client-side image map for imageobjectco with areas using calspair + units + + â— Added support for PI. + + â— Added support for passing img.src.path to DocBook Java XSLT image + extensions when appropriate. Controlled using the + graphicsize.use.img.src.path parameter. + + â— Added support for (not valid for DocBook 4) xlink:href on area and (not + valid for DocBook 4) alt in area. + + â— Added new parameter default.table.frame to control table framing if there + is no frame attribute on a table. + + â— Added initial, experimental support for generating content for the HTML + title attribute from content of the alt element. This change adds support + for the following inline elements only (none of them are block elements): + abbrev, accel, acronym, action, application, authorinitials, beginpage, + citation, citerefentry, citetitle, city, classname, code, command, + computeroutput, constant, country, database, email, envar, errorcode, + errorname, errortext, errortype, exceptionname, fax, filename, firstname, + firstterm, foreignphrase, function, glossterm, guibutton, guiicon, guilabel + , guimenu, guimenuitem, guisubmenu, hardware, honorific, interface, + interfacename, keycap, keycode, keysym, lineage, lineannotation, literal, + markup, medialabel, methodname, mousebutton, option, optional, otheraddr, + othername, package, parameter, personname, phone, pob, postcode, + productname, productnumber, prompt, property, quote, refentrytitle, remark, + replaceable, returnvalue, tag, shortcut, state, street, structfield, + structname, subscript, superscript, surname, symbol, systemitem, tag, + termdef, token, trademark, type, uri, userinput, varname, and wordasword + + â— Added support for chunking revhistory into separate file (similar to the + support for doing same with legalnotice). Patch from Thomas Schraitle. + Controlled through new generate.revhistory.link parameter. + + â— l10n.xsl: Made language codes RFC compliant. Added a new boolean config + parameter, l10n.lang.value.rfc.compliant. If it is non-zero (the default), + any underscore in a language code will be converted to a hyphen in HTML + output. If it is zero, the language code will be left as-is. + +man + +This release closes out 44 manpages stylesheet bug reports and feature +requests. It adds more than 35 new configuration parameters for controlling +aspects of man-page output -- including hyphenation and justification, handling +of links, conversion of Unicode characters, and contents of man-page headers +and footers. + + â— New options for globally disabling/enabling hyphenation and justification: + man.justify and man.hyphenate. + + Note that the default for the both of those is zero (off), because + justified text looks good only when it is also hyphenated; to quote the + “Hyphenation†node from the groff info page: + + Since the odds are not great for finding a set of words, for every + output line, which fit nicely on a line without inserting excessive + amounts of space between words, `gtroff' hyphenates words so that it + can justify lines without inserting too much space between words. + + The problem is that groff can end up hyphenating a lot of things that you + don't want hyphenated (variable names and command names, for example). + Keeping both justification and hyphenation disabled ensures that hyphens + won't get inserted where you don't want to them, and you don't end up with + lines containing excessive amounts of space between words. These default + settings run counter to how most existing man pages are formatted. But + there are some notable exceptions, such as the perl man pages. + + â— Added parameters for controlling hyphenation of computer inlines, + filenames, and URLs. By default, even when hyphenation is enabled + (globally), hyphenation is now suppressed for "computer inlines" + (currently, just classname, constant, envar, errorcode, option, replaceable + , userinput, type, and varname, and for filenames, and for URLs from link. + It can be (re)enabled using the man.hyphenate.computer.inlines, + man.hyphenate.filenames, and man.hyphenate.urls parameters. + + â— Implemented a new system for replacing Unicode characters. There are two + parts to the new system: a “string substitution map†for doing “essential†+ replacements, and a “character map†that can optionally be disabled and + enabled. + + The new system fixes all open bugs that had to do with literal Unicode + numbered entities such as “ and ” showing up in output, and + greatly expands the ability of the stylesheets to generate “good†roff + equivalents for Unicode symbols and special characters. + + Here are some details... + + The previous manpages mechanism for replacing Unicode symbols and special + characters with roff equivalents (the replace-entities template) was not + scalable and not complete. The mechanism handled a somewhat arbitrary + selection of less than 20 or so Unicode characters. But there are + potentially more than 800 Unicode special characters that have some groff + equivalent they can be mapped to. And there are about 34 symbols in the + Latin-1 (ISO-8859-1) block alone. Users might reasonably expect that if + they include any of those Latin-1 characters in their DocBook source + documents, they will get correctly converted to known roff equivalents in + output. + + In addition to those common symbols, certain users may have a need to use + symbols from other Unicode blocks. Say, somebody who is documenting an + application related to math might need to use a bunch of symbols from the + “Mathematical Operators†Unicode block (there are about 65 characters in + that block that have reasonable roff equivalents). Or somebody else might + really like Dingbats -- such as the checkmark character -- and so might use + a bunch of things from the “Dingbat†block (141 characters in that that + have roff equivalents or that can at least be “degraded†somewhat + gracefully into roff). + + So, the old replace-entities mechanism was replaced with a completely + different mechanism that is based on use of two “mapsâ€: a “substitution + map†and a “character map†(the latter in a format compliant with the XSLT + 2.0 spec and therefore completely “forward compatible†with XSLT 2.0). + + The substitution map is controlled through the man.string.subst.map + parameter, and is used to replace things like the backslash character + (which needs special handling to prevent it from being interpreted as a + roff escape). The substitution map cannot be disabled, because disabling it + will cause the output to be broken. However, you can add to it and change + it if needed. + + The “character map†mechanism, on the other hand, can be completely + disabled. It is enabled by default, and, by default, does replacement of + all Latin-1 symbols, along with most special spaces, dashes, and quotes + (about 75 characters by default). Also, you can optionally enable a “full†+ character map that provides support for converting all 800 or so of the + characters that have some reasonable groff equivalent. + + The character-map mechanism is controlled through the following parameters: + + man.charmap.enabled + + turns character-map support on/off + + man.charmap.use.subset + + specifies that a subset of the character map is used instead of the + full map + + man.charmap.subset.profile + + specifies profile of character-map subset + + man.charmap.uri + + specifies an alternate character map to use instead of the “standard†+ character map provided in the distribution + + â— Implemented out-of-line handling of display of URLs for links (currently, + only for ulink). This gives you three choices for handling of links: + + 1. Number and list links. Each link is numbered inline, with a number in + square brackets preceding the link contents, and a numbered list of all + links is added to the end of the document. + + 2. Only list links. Links are not numbered, but an (unnumbered) list of + links is added to the end of the document. + + 3. Suppress links. Don't number links and don't add any list of links to + the end of the document. + + You can also choose whether links should be underlined. The default is “the + works†-- list, number, and underline links. You can use the + man.links.list.enabled, man.links.are.numbered, and + man.links.are.underlined parameters to change the defaults. The default + heading for the link list is REFERENCES. You can be change that using the + man.links.list.heading parameter. + + â— Changed default output encoding to UTF-8. This does not mean that man pages + are output in raw UTF-8, because the character map is applied before final + output, causing all UTF-8 characters covered in the map to be converted to + roff equivalents. + + â— Added support for processing refsect3 and formalpara and nested refsection + elements, down to any arbitrary level of nesting. + + â— Output of the NAME and SYNOPSIS and AUTHOR headings and the headings for + admonitions (note, caution, etc.) are no longer hard-coded for English. + Instead, headings are generated for those in the correct locale (just as + the FO and HTML stylesheets do). + + â— Re-worked mechanism for assembling page headers/footers (the contents of + the .TH macro “title lineâ€). + + Here are some details... + + All man pages contain a .TH roff macro whose contents are used for + rendering the “title line†displayed in the header and footer of each page. + Here are a couple of examples of real-world man pages that have useful page + headers/footers: + + gtk-options(7) GTK+ User's Manual gtk-options(7) <-- header + GTK+ 1.2 2003-10-20 gtk-options(7) <-- footer + + svgalib(7) Svgalib User Manual svgalib(7) <-- header + Svgalib 1.4.1 16 December 1999 svgalib(7) <-- footer + + And here are the terms with which the groff_man(7) man page refers to the + various parts of the header/footer: + + title(section) extra3 title(section) <- header + extra2 extra1 title(section) <- footer + + Or, using the names with which the man(7) man page refers to those same + fields: + + title(section) manual title(section) <- page header + source date title(section) <- page footer + + The easiest way to control the contents of those fields is to mark up your + refentry content like the following (note that this is a “minimal†+ example). + + + + 2003-10-20 1 + + + gtk-options 2 + 7 3 + GTK+ 4 + 1.2 5 + GTK+ User's Manual 6 + + + gtk-options + Standard Command Line Options for GTK+ Programs + + + Description + This manual page describes the command line options, which + are common to all GTK+ based applications. + + + + 1 Sets the “date†part of the header/footer. + + 2 Sets the “title†part. + + 3 Sets the “section†part. + + 4 Sets the “source name†part. + + 5 Sets the “version†part. + + 6 Sets the “manual†part. + + Below are explanations of the steps the stylesheets take to attempt to + assemble and display “good†headers and footer. [In the descriptions, note + that *info is the refentry “info†child (whatever its name), and parentinfo + is the “info†child of its parent (again, whatever its name).] + + extra1 field (date) + + Content of the “extra1†field is what shows up in the center footer + position of each page. The man(7) man page describes it as “the date of + the last revisionâ€. + + To provide this content, if the refentry.date.profile.enabled is + non-zero, the stylesheets check the value of refentry.date.profile. + + Otherwise, by default, they check for a date or pubdate not only in the + *info contents, but also in the parentinfo contents. + + If a date cannot be found, the stylesheets now automatically generate a + localized “long format†date, ensuring that this field always has + content in output. + + However, if for some reason you want to suppress this field, you can do + so by setting a non-zero value for man.th.extra1.suppress. + + extra2 field (source) + + On Linux systems and on systems with a modern groff, the content of the + “extra2†field are what shows up in the left footer position of each + page. + + The man(7) man page describes this as “the source of the commandâ€, and + provides the following examples: + + â—‹ For binaries, use somwething like: GNU, NET-2, SLS Distribution, + MCC Distribution. + + â—‹ For system calls, use the version of the kernel that you are + currently looking at: Linux 0.99.11. + + â—‹ For library calls, use the source of the function: GNU, BSD 4.3, + Linux DLL 4.4.1. + + In practice, there are many pages that simply have a version number in + the “source†field. So, it looks like what we have is a two-part field, + Name Version, where: + + Name + + product name (e.g., BSD) or org. name (e.g., GNU) + + Version + + version name + + Each part is optional. If the Name is a product name, then the Version + is probably the version of the product. Or there may be no Name, in + which case, if there is a Version, it is probably the version of the + item itself, not the product it is part of. Or, if the Name is an + organization name, then there probably will be no Version. + + To provide this content, if the refentry.source.name.profile.enabled + and refentry.version.profile.enabled parameter are non-zero, the + stylesheets check the value of refentry.source.name.profile + refentry.version.profile. + + Otherwise, by default, they check the following places, in the + following order: + + 1. *info/productnumber + + 2. *info/productnumber + + 3. refmeta/refmiscinfo[@class = 'version'] + + 4. parentinfo/productnumber + + 5. *info/productname + + 6. parentinfo/productname + + 7. refmeta/refmiscinfo + + 8. [nothing found, so leave it empty] + + extra3 field + + On Linux systems and on systems with a modern groff, the content of the + “extra3†field are what shows up in the center header position of each + page. Some man pages have “extra2†content, some don't. If a particular + man page has it, it is most often “context†data about some larger + system the documented item belongs to (for example, the name or + description of a group of related applications). The stylesheets now + check the following places, in the following order, to look for content + to add to the “extra3†field. + + 1. parentinfo/title + + 2. parent's title + + 3. refmeta/refmiscinfo + + 4. [nothing found, so leave it empty] + + â— Reworked *info gathering. For each refentry found, the stylesheets now + cache its *info content, then check for any valid parent of it that might + have metainfo content and cache that, if found; they then then do all + further matches against those node-sets (rather than re-selecting the + original *info nodes each time they are needed). + + â— New option for breaking strings after forward slashes. This enables long + URLs and pathnames to be broken across lines. Controlled through + man.break.after.slash parameter. + + â— Output for servicemark and trademark are now (SM) and (TM). There is a + groff "\(tm" escape, but output from that is not acceptable. + + â— New option for controlling the length of the title part of the .TH title + line. Controlled through the man.th.title.max.length parameter. + + â— New option for specifying output encoding of each man page; controlled with + man.output.encoding (similar to the HTML chunker.output.encoding + parameter). + + â— New option for suppressing filename messages when generating output; + controlled with man.output.quietly (similar to the HTML chunk.quietly + parameter). + + â— The text of cross-references to first-level refentry (refsect1, top-level + refsection, refnamediv, and refsynopsisdiv) are now capitalized. + + â— Cross-references to refnamediv now use the localized NAME title instead of + using the first refname child. This makes the output inconsistent with HTML + and FO output, but for man-page output, it seems to make better sense to + have the NAME. (It may actually make better sense to do it that way in HTML + and FO output as well...) + + â— Added support for processing funcparams. + + â— Removed the space that was being output between funcdef and paramdef; + example: was: float rand (void); now: float rand(void) + + â— Turned off bold formatting for the type element when it occurs within a + funcdef or paramdef + + â— Corrected rendering of simplelist. Any + + + + + + + + Invoke Saxon with the encoding.windows-1252 Java system property set to + com.nwalsh.saxon.Windows1252; for example + + java \ + -Dencoding.windows-1252=com.nwalsh.saxon.Windows1252 \ + com.icl.saxon.StyleSheet \ + mydoc.xml mystylesheet.xsl + + Or, for a more complete "real world" case showing other options you'll + typically want to use: + + java \ + -Dencoding.windows-1252=com.nwalsh.saxon.Windows1252 \ + -Djavax.xml.parsers.DocumentBuilderFactory=org.apache.xerces.jaxp.DocumentBuilderFactoryImpl \ + -Djavax.xml.parsers.SAXParserFactory=org.apache.xerces.jaxp.SAXParserFactoryImpl \ + -Djavax.xml.transform.TransformerFactory=com.icl.saxon.TransformerFactoryImpl \ + com.icl.saxon.StyleSheet \ + -x org.apache.xml.resolver.tools.ResolvingXMLReader \ + -y org.apache.xml.resolver.tools.ResolvingXMLReader \ + -r org.apache.xml.resolver.tools.CatalogResolver \ + mydoc.xml mystylesheet.xsl + + In both cases, the "mystylesheet.xsl" file should be a DocBook + customization layer containing the parameters show in step 2. + + â— Saxon extensions: Removed Saxon 8 extensions from release package + +Release 1.67.0 + + â— A number of important bug fixes. + + â— Added Saxon8 extensions + + â— Enabled dbfo table-width on entrytbl in FO output + + â— Added support for role=strong on emphasis in FO output + + â— Added new FO parameter hyphenate.verbatim that can be used to turn on + "intelligent" wrapping of verbatim environments. + + â— Replaced all output with + + â— Changed admon.graphic.width template to a mode so that different + admonitions can have different graphical widths. + + â— Deprecated the HTML shade.verbatim parameter (use CSS instead) + + â— Wrapped ToC refentrytitle/refname and refpurpose in span with class values. + This makes it possible to style them using a CSS stylesheet. + + â— Use strong/em instead of b/i in HTML output + + â— Added support for converting Emphasis to groff italic and Emphasis role= + 'bold' to bold. Controlled by emphasis.propagates.style param, but not + documented yet using litprog system. Will do that next (planning to add + some other parameter-controllable options for hyphenation and handling of + line spacing). + + â— callout.graphics.number.limit.xml param: Changed the default from 10 to 15. + + â— verbatim.properties: Added hyphenate=false + + â— Saxon and Xalan Text.java extensions: Added support for URIResolver() on + insertfile href's + + â— Added generated RELEASE-NOTES.txt file. + + â— Added INSTALL file (executable file for generating catalog.xml) + + â— Removed obsolete tools directory from package + +Release 1.66.1 + + â— A number of important bug fixes. + + â— Now xml:base attributes that are generated by an XInclude processor are + resolved for image files. + + â— Rewrote olink templates to support several new features. + + â—‹ Extended full olink support to FO output. + + â—‹ Add support for xrefstyle attribute in olinks. + + â—‹ New parameters to support new olink features: insert.olink.page.number, + insert.olink.pdf.frag, olink.debug, olink.lang.fallback.sequence, + olink.properties, prefer.internal.olink. See the reference page for + each parameter for more information. + + â— Added index.on.type parameter for new type attribute introduced in DocBook + 4.3 for indexterms and index. This allows you to create multiple indices + containing different categories of entries. For users of 4.2 and earlier, + you can use the new parameter index.on.role instead. + + â— Added new section.autolabel.max.depth parameter to turn off section + numbering below a certain depth. This permits you to number major section + levels and leave minor section levels unnumbered. + + â— Added footnote.sep.leader.properties attribute set to format the line + separating footnotes in printed output. + + â— Added parameter img.src.path as a prefix to HTML img src attributes. The + prefix is added to whatever path is already generated by the stylesheet for + each image file. + + â— Added new attribute-sets informalequation.properties, + informalexample.properties, informalfigure.properties, and + informaltable.properties, so each such element type can be formatted + individually if needed. + + â— Add component.label.includes.part.label parameter to add any part number to + chapter, appendix and other component labels when the label.from.part + parameter is nonzero. This permits you to distinguish multiple chapters + with the same chapter number in cross references and the TOC. + + â— Added chunk.separate.lots parameter for HTML output. This parameter lets + you generate separate chunk files for each LOT (list of tables, list of + figures, etc.). + + â— Added several table features: + + â—‹ Added table.table.properties attribute set to add properties to the + fo:table element. + + â—‹ Added placeholder templates named table.cell.properties and + table.cell.block.properties to enable adding properties to any + fo:table-cell or the cell's fo:block, respectively. These templates are + a start for implementing table styles. + + â— Added new attribute set component.title.properties for easy modifications + of component's title formatting in FO output. + + â— Added Saxon support for an encoding attribute on the textdata element. + Added new parameter textdata.default.encoding which specifies encoding when + encoding attribute on textdata is missing. + + â— Template label.this.section now controls whole section label, not only + sub-label which corresponds to particular label. Former behaviour was IMHO + bug as it was not usable. + + â— Formatting in titleabbrev for TOC and headers is preserved when there are + no hotlink elements in the title. Formerly the title showed only the text + of the title, no font changes or other markup. + + â— Added intial.page.number template to set the initial-page-number property + for page sequences in print output. Customizing this template lets you + change when page numbering restarts. This is similar to the + format.page.number template that lets you change how the page number + formatting changes in the output. + + â— Added force.page.count template to set the force-page-count property for + page sequences in print output. This is similar to the format.page.number + template. + + â— Sort language for localized index sorting in autoidx-ng.xsl is now taken + from document lang, not from system environment. + + â— Numbering and formatting of normal and ulink footnotes (if turned on) has + been unified. Now ulink footnotes are mixed in with any other footnotes. + + â— Added support for renderas attribute in section and sect1 et al. This + permits you to render a given section title as if it were a different + level. + + â— Added support for label attribute in footnote to manually supply the + footnote mark. + + â— Added support for DocBook 4.3 corpcredit element. + + â— Added support for a dbfo keep-together PI for formal objects (table, + figure, example, equation, programlisting). That permits a formal object to + be kept together if it is not already, or to be broken if it is very long + and the default keep-together is not appropriate. + + â— For graphics files, made file extension matching case insensitive, and + updated the list of graphics extensions. + + â— Allow calloutlist to have block content before the first callout + + â— Added dbfo-need processing instruction to provide soft page breaks. + + â— Added implementation of existing but unused default.image.width parameter + for graphics. + + â— Support DocBook NG tag inline element. + + â— It appears that XEP now supports Unicode characters in bookmarks. There is + no further need to strip accents from characters. + + â— Make segmentedlist HTML markup more semantic and available to CSS styles. + + â— Added user.preroot placeholder template to permit xsl-stylesheet and other + PIs and comments to be output before the HTML root element. + + â— Non-chunked legalnotice now gets an element in HTML output so + it can be referenced with xref or link. + + â— In chunked HTML output, changed link rel="home" to rel="start", and link + rel="previous" to rel="prev", per W3C HTML 4.01 spec. + + â— Added several patches to htmlhelp from W. Borgert + + â— Added Bosnian locale file as common/bs.xml. + +Release 1.65.0 + + â— A number of important bug fixes. + + â— Added a workaround to allow these stylesheets to process DocBook NG + documents. (It’s a hack that pre-processes the document to strip off the + namespace and then uses exsl:node-set to process the result.) + + â— Added alternative indexing mechanism which has better internationalization + support. New indexing method allows grouping of accented letters like e, é, + ë into the same group under letter "e". It can also treat special letters + (e.g. "ch") as one character and place them in the correct position (e.g. + between "h" and "i" in Czech language). + + In order to use this mechanism you must create customization layer which + imports some base stylesheet (like fo/docbook.xsl, html/chunk.xsl) and then + includes appropriate stylesheet with new indexing code (fo/autoidx-ng.xsl + or html/autoidx-ng.xsl). For example: + + + + + + + + + New method is known to work with Saxon and it should also work with + xsltproc 1.1.1 and later. Currently supported languages are English, Czech, + German, French, Spanish and Danish. + +Release 1.64.1 + +General bug fixes and improvements. Sorry about the failure to produce an +updated release notes file for 1.62.0—1.63.2 + + â— In the course of fixing bug #849787, wrapping Unicode callouts with an + appropriate font change in the Xalan extensions, I discovered that the + Xalan APIs have changed a bit. So xalan2.jar will work with older Xalan 2 + implementations, xalan25.jar works with Xalan 2.5. + +Release 1.61.0 + +Lots of bug fixes and improvements. + + â— Initial support for timestamp PI. From now you can use to get current datetime in your document. Added + localization support for datetime PI + + â— Added level 6 to test for section depth in section.level template so that + section.title.level6.properties will be used for sections that are 6 deep + or deeper. This should also cause a h6 to be created in html output. + + â— Don't use SVG graphics if use.svg=0 + + â— Now uses number-and-title-template for sections only if section.autolabel + is not zero. + + â— Added missing 'english-language-name' attribute to the l10n element, and + the missing 'style' attribute to the template element so the current + gentext documents will validate. + + â— Corrected several references to parameter qanda.defaultlabel that were + missing the "$". + + â— Now accepts admon.textlabel parameter to turn off Note, Warning, etc. + label. + + â— FeatReq #684561: support more XEP metadata + + â— Added hyphenation support. Added support for coref. Added beginpage + support. (does nothing; see TDG). + + â— Added support for hyphenation-character, hyphenation-push-character-count, + and hyphenation-remain-character-count + + â— Added root.properties, ebnf.assignment, and ebnf.statement.terminator + + â— Support bgcolor PI in table cells; make sure rowsep and colsep don't have + any effect on the last row or column + + â— Handle othercredit on titlepage a little better + + â— Applied fix from Jeff Beal that fixed the bug that put secondary page + numbers on primary entries. Same with tertiary page numbers on secondary + entries. + + â— Added definition of missing variable collection. + + â— Make footnote formatting 'normal' even when it occurs in a context that has + special formatting + + â— Added warning when glossary.collection is not blank, but it cannot open the + specified file. + + â— Pick up the frame attribute on table and informaltable. + + â— indexdiv/title in non-autogenerated indexes are now picked up. + + â— Removed (unused) component.title.properties + + â— Move IDs from page-sequences down to titlepage blocks + + â— Use proportional-column-width(1) on more tables. + + Use proportional-column-width() for header/footer tables; suppress + relative-align when when using FOP + + â— Check for glossterm.auto.link when linking firstterms; don't output gl. + prefix on glossterm links + + â— Generate Part ToCs + + â— Support glossary, bibliography, and index in component ToCs. + + â— Refactored chunking code so that customization of chunk algorithm and chunk + elements is more practical + + â— Support textobject/phrase on inlinemediaobject. + + â— Support 'start' PI on ordered lists + + â— Fixed test of $toc PI to turn on qandaset TOC. + + â— Added process.chunk.footnotes to sect2 through 5 to fix bug of missing + footnotes when chunk level greater than 1. + + â— Added paramater toc.max.depth which controls maximal depth of ToC as + requested by PHP-DOC group. + + â— Exempted titleabbrev from preamble processing in lists, and fixed + variablelist preamble code to use the same syntax as the other lists. + + â— Added support for elements between variablelist and first varlistentry + since DocBook 4.2 supports that now. + +Release 1.60.1 + +Lots of bug fixes. + + â— The format of the titlepage.templates.xml files and the stylesheet that + transforms them have been significantly changed. All of the attributes used + to control the templates are now namespace qualified. So what used to be: + + + + is now: + + + + Attributes from other namespaces (including those that are unqualified) are + now copied directly through. In practice, this means that the names that + used to be “fo:†qualified: + + + + are now unqualified: + + <title t:named-template="component.title" + param:node="ancestor-or-self::article[1]" + text-align="center" + keep-with-next="always" + font-size="&hsize5;" + font-weight="bold" + font-family="{$title.font.family}"/> + + The t:titlepage and t:titlepage-content elements both generate wrappers + now. And unqualified attributes on those elements are passed through. This + means that you can now make the title font apply to ane entire titlepage + and make the entire “recto†titlepage centered by specifying the font and + alignment on the those elements: + + <t:titlepage t:element="article" t:wrapper="fo:block" + font-family="{$title.font.family}"> + + <t:titlepage-content t:side="recto" + text-align="center"> + + â— Support use of titleabbrev in running headers and footers. + + â— Added (experimental) xref.with.number.and.title parameter to enable number/ + title cross references even when the default would be just the number. + + â— Generate part ToCs if they're requested. + + â— Use proportional-column-width() in header/footer tables. + + â— Handle alignment correctly when screenshot wraps a graphic in a figure. + + â— Format chapter and appendix cross references consistently. + + â— Attempt to support tables with multiple tgroups in FO. + + â— Output fo:table-columns in simplelist tables. + + â— Use titlepage.templates.xml for indexdiv and glossdiv formatting. + + â— Improve support for new bibliography elements. + + â— Added footnote.number.format, table.footnote.number.format, + footnote.number.symbols, and table.footnote.number.symbols for better + control of footnote markers. + + â— Added glossentry.show.acronyms. + + â— Suppress the draft-mode page masters when draft-mode is “noâ€. + + â— Make blank pages verso not recto. D'Oh! + + â— Improved formatting of ulink footnotes. + + â— Fixed bugs in graphic width/height calculations. + + â— Added class attributes to inline elements. + + â— Don't add “.html†to the filenames identified with the “dbhtml†PI. + + â— Don't force a ToC when sections contain refentrys. + + â— Make section title sizes a function of the body.master.size. + +Release 1.59.2 + +The 1.59.2 fixes an FO bug in the page masters that causes FOP to fail. + + â— Removed the region-name from the region-body of blank pages. There's no + reason to give the body of blank pages a unique name and doing so causes a + mismatch that FOP detects. + + â— Output IDs for the first paragraphs in listitems. + + â— Fixed some small bugs in the handling of page numbers in double-sided mode. + + â— Attempt to prevent duplicated IDs from being produced when endterm on xref + points to something with nested structure. + + â— Fix aligment problems in equations. + + â— Output the type attribute on unordered lists (UL) in HTML only if the + css.decoration parameter is true. + + â— Calculate the font size in formal.title.properties so that it's 1.2 times + the base font size, not a fixed "12pt". + +Release 1.59.1 + +The 1.59.1 fixes a few bugs. + + â— Added Bulgarian localization. + + â— Indexing improvements; localize book indexes to books but allow setindex to + index an entire set. + + â— The default value for rowsep and colsep is now "1" as per CALS. + + â— Added support for titleabbrev (use them for cross references). + + â— Improvements to mediaobject for selecting print vs. online images. + + â— Added seperate property sets for figures, examples, equations, tabless, and + procedures. + + â— Make lineannotations italic. + + â— Support xrefstyle attribute. + + â— Make endterm on xref higher priority than xreflabel target. + + â— Glossary formatting improvements. + +Release 1.58.0 + +The 1.58.0 adds some initial support for extensions in xsltproc, adds a few +features, and fixes bugs. + + â— This release contains the first attempt at extension support for xsltproc. + The only extension available to date is the one that adjusts table column + widths. Run extensions/xsltproc/python/xslt.py. + + â— Fixed bugs in calculation of adjusted column widths to correct for rounding + errors. + + â— Support nested refsection elements correctly. + + â— Reworked gentext.template to take context into consideration. The name of + elements in localization files is now an xpath-like context list, not just + a simple name. + + â— Made some improvements to bibliography formatting. + + â— Improved graphical formatting of admonitions. + + â— Added support for entrytbl. + + â— Support spanning index terms. + + â— Support bibliosource. + +Release 1.57.0 + + â— The 1.57.0 release wasn't documented here. Oops. + +Release 1.56.0 + +The 1.56.0 release fixes bugs. + + â— Reworked chunking. This will break all existing customizations layers that + change the chunking algorithm. If you're customizing chunking, look at the + new “content†parameter that's passed to process-chunk-element and friends. + + â— Support continued and inherited numeration in orderedlist formatting for + FOs. + + â— Added Thai localization. + + â— Tweaked stylesheet documentation stylesheets to link to TDG and the + parameter references. + + â— Allow title on tables of contents ("Table of Contents") to be optional. + Added new keyword to generate.toc. Support tables of contents on sections. + + â— Made separate parameters for table borders and table cell borders: + table.frame.border.color, table.frame.border.style, + table.frame.border.thickness, table.cell.border.color, + table.cell.border.style, and table.cell.border.thickness. + + â— Suppress formatting of “endofrange†indexterms. This is only half-right. + They should generate a range, but I haven't figured out how to do that yet. + + â— Support revdescription. (Bug #582192) + + â— Added default.float.class and fixed figure floats. (Bug #497603) + + â— Fixed formatting of sbr in FOs. + + â— Added context to the “missing template†error message. + + â— Process arg correctly in a group. (Bug #605150) + + â— Removed 'keep-with-next' from formal.title.properties attribute set now + that the stylesheets support the option of putting such titles below the + object. Now the $placement value determines if 'keep-with-next' or + 'keep-with-previous' is used in the title block. + + â— Wrap “url()†around external-destinations when appropriate. + + â— Fixed typo in compact list spacing. (Bug #615464) + + â— Removed spurious hash in anchor name. (Bug #617717) + + â— Address is now displayed verbatim on title pages. (Bug #618600) + + â— The bridgehead.in.toc parameter is now properly supported. + + â— Improved effectiveness of HTML cleanup by increasing the number of places + where it is used. Improve use of HTML cleanup in XHTML stylesheets. + + â— Support table of contents for appendix in article. (Bug #596599) + + â— Don't duplicate footnotes in bibliographys and glossarys. (Bug #583282) + + â— Added default.image.width. (Bug #516859) + + â— Totally reworked funcsynopsis code; it now supports a 'tabular' + presentation style for 'wide' prototypes; see + funcsynopsis.tabular.threshold. (HTML only right now, I think, FO support, + uh, real soon now.) + + â— Reworked support for difference marking; toned down the colors a bit and + added a “system.head.content†template so that the diff CSS wasn't + overriding “user.head.contentâ€. (Bug #610660) + + â— Added call to the “*.head.content†elements when writing out long + description chunks. + + â— Make sure legalnotice link is correct even when chunking to a different + base.dir. + + â— Use CSS to set viewport characteristics if css.decoration is non-zero, use + div instead of p for making graphic a block element; make figure titles the + default alt text for images in a figure. + + â— Added space-after to list.block.spacing. + + â— Reworked section.level template to give “correct†answer instead of being + off by one. + + â— When processing tables, use the tabstyle attribute as the division class. + + â— Fixed bug in html2xhtml.xsl that was causing the XHTML chunker to output + HTML instead of XHTML. + +Older releases + +To view the release notes for older releases, see http://cvs.sourceforge.net/ +viewcvs.py/docbook/xsl/RELEASE-NOTES.xml. Be aware that there were no release +notes for releases prior to the 1.50.0 release. + +About dot-zero releases + +DocBook Project “dot zero†releases should be considered experimental and are +always followed by stable “dot one plus†releases, usually within two or three +weeks. Please help to ensure the stability of “dot one plus†releases by +carefully testing each “dot zero†release and reporting back about any problems +you find. + +It is not recommended that you use a “dot zero†release in a production system. +Instead, you should wait for the “dot one†or greater versions. + diff --git a/docbook-xsl-1.76.1/RELEASE-NOTES.xml b/docbook-xsl-1.76.1/RELEASE-NOTES.xml new file mode 100644 index 0000000..9c50d9a --- /dev/null +++ b/docbook-xsl-1.76.1/RELEASE-NOTES.xml @@ -0,0 +1,10327 @@ +<article xmlns="http://docbook.org/ns/docbook" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:xi="http://www.w3.org/2001/XInclude" + xml:lang="en" xml:id="releasenotes" + version="5.0"> + +<info> + <title>Release Notes for the DocBook XSL Stylesheets + + $Revision: 8934 $ $Date: 2010-11-01 13:03:14 -0700 (Mon, 01 Nov 2010) $ + + +This release-notes + document is available in the following formats: + HTML, + PDF, + plain text; it provides a per-release list +of enhancements and changes to the stylesheets’ public APIs +(user-configurable parameters) and excludes descriptions of most +bug fixes. For a complete list of all changes (including all bug +fixes) that have been made since the previous release, see the +separate NEWS (plain text) or NEWS.html files. Also available: +An online hyperlinked change history (warning: big file) of all +changes made over the entire history of the codebase. +As with all DocBook Project dot-zero releases, this is an + experimental release. It will be followed shortly by a stable + release. +As with all DocBook Project “dot + one plus†releases, this release aspires to be stable (in + contrast to dot-zero releases, which + are experimental). +This is a pre-release “snapshot†of the +DocBook XSL Stylesheets. The change information in the first +section of this file +(for “â€) is +auto-generated from change descriptions stored in the project +source-code repository. +That means the first section contains +descriptions both of bug fixes and of feature changes. The +remaining sections are manually edited changelog subsets that +exclude bug-fix descriptions – that is, trimmed down to just those +those descriptions that document enhancements and changes to the +public APIs (user-configurable parameters). + + + + + + + +Release Notes: 1.76.1 +The following is a list of changes that have been made + since the 1.76.0 release. + + +FO +The following changes have been made to the + fo code + since the 1.76.0 release. + + +Robert Stayton: docbook.xsl; xref.xsl; fop1.xslApply patch to support named destination in fop1.xsl, per Sourceforge +bug report #3029845. + + + + + +HTML +The following changes have been made to the html code since the 1.76.0 release. + + +Keith Fahlgren: highlight.xslImplementing handling for <b> and <i>: transform to <strong> and <em> for XHTML outputs and do not use in the highliting output (per Mauritz Jeanson) + + + + + +Params +The following changes have been made to the + params code + since the 1.76.0 release. + + +Robert Stayton: draft.mode.xmlChange default for draft.mode to 'no'. + + + + + + + + Release Notes: 1.76.0 +This release includes important bug fixes and adds the following +significant feature changes: + + +Webhelp +A new browser-based, cross-platform help format with full-text search and other features typically found in help systems. See webhelp/docs/content/ch01.html for more information and a demo. + + + + +Gentext +Many updates and additions to translation/locales thanks to Red Hat, the Fedora Project, and other contributors. + + +Common +Faster localization support, as language files are loaded on demand. + + + + FO + Support for SVG content in imagedata added. + + + HTML + Output improved when using 'make.clean.html' and a stock CSS file is now provided. + + +EPUB +A number of improvements to NCX, cover and image selection, and XHTML 1.1 element choices + + + + + The following is a list of changes that have been made since the 1.75.2 release. + + Gentext + The following changes have been made to the gentext code since the 1.75.2 release. + + + + rlandmann: locale/fa.xml + + + Update to Persian translation from the Fedora Project + + + + + rlandmann: locale/nds.xml + + + Locale for Low German + + + + + Mauritz Jeanson: locale/ka.xml; Makefile + + + Added support for Georgian based on patch #2917147. + + + + + rlandmann: locale/nl.xml; locale/ja.xml + + + Updated translations from Red Hat and the Fedora Project + + + + + rlandmann: locale/bs.xml; locale/ru.xml; locale/hr.xml + + + Updated locales from Red Hat and the Fedora Project + + + + + rlandmann: locale/pt.xml; locale/cs.xml; locale/es.xml; locale/bg.xml; locale/nl.xml; loca⋯ + + + Updated translations from Red Hat and the Fedora Project + + + + + rlandmann: locale/as.xml; locale/bn_IN.xml; locale/ast.xml; locale/ml.xml; locale/te.xml; ⋯ + + + New translations from Red Hat and the Fedora Project + + + + + rlandmann: locale/pt.xml; locale/ca.xml; locale/da.xml; locale/sr.xml; locale/ru.xml; loca⋯ + + + Updated translations from Red Hat and the Fedora Project + + + + + + + Common + The following changes have been made to the common code since the 1.75.2 release. + + + + Mauritz Jeanson: common.xsl + + + Fixed bug in output-orderedlist-starting-number template (@startingnumber did not work for FO). + + + + + Mauritz Jeanson: gentext.xsl + + + Added fix to catch ID also of descendants of listitem. Closes bug #2955077. + + + + + Jirka Kosek: l10n.xsl + + + Stripped down, faster version of gentext.template is used when there is no localization customization. + + + + + Mauritz Jeanson: stripns.xsl + + + Added fix that preserves link/@role (makes links in the reference documentation +with @role="tcg" work). + + + + + Mauritz Jeanson: l10n.xsl + + + Fixed bugs related to manpages and L10n. + + + + + Jirka Kosek: entities.ent; autoidx-kosek.xsl + + + Upgraded to use common entities. Fixed bug when some code used @sortas and some not for grouping/sorting of indexterms. + + + + + Jirka Kosek: l10n.xsl; l10n.dtd; l10n.xml; autoidx-kosek.xsl + + + Refactored localization support. Language files are loaded on demand. Speedup is about 30%. + + + + + Jirka Kosek: l10n.xsl + + + Added xsl:keys for improved performance of localization texts look up. Performance gain around 15%. + + + + + Mauritz Jeanson: titles.xsl + + + Fixed bug #2912677 (error with xref in title). + + + + + Robert Stayton: olink.xsl + + + Fix bug in xrefstyle "title" handling introduced with +the 'insert.targetdb.data' template. + + + + + Robert Stayton: gentext.xsl + + + Fix bug in xref to equation without title to use context="xref-number" instead +of "xref-number-and-title". + + + + + Robert Stayton: labels.xsl + + + Number all equations in one sequence, with or without title. + + + + + Robert Stayton: entities.ent + + + Fix bug #2896909 where duplicate @sortas on indexterms caused +some indexterms to drop out of index. + + + + + Robert Stayton: stripns.xsl + + + Expand the "Stripping namespace ..." message to advise users to +use the namespaced stylesheets. + + + + + Robert Stayton: stripns.xsl + + + need a local version of $exsl.node.set.available variable because +this module imported many places. + + + + + Mauritz Jeanson: olink.xsl + + + Added /node() to the select expression that is used to compute the title text +so that no <ttl> elements end up in the output. Closes bug #2830119. + + + + + + + FO + The following changes have been made to the + fo code + since the 1.75.2 release. + + + + Robert Stayton: table.xsl + + + Fix bug 2979166 able - Attribute @rowheader not working + + + + + Mauritz Jeanson: inline.xsl + + + Improved glossterm auto-linking by using keys. The old code was inefficient when processing documents +with many inline glossterms. + + + + + Robert Stayton: titlepage.xsl + + + Fix bug 2805530 author/orgname not appearing on title page. + + + + + Mauritz Jeanson: graphics.xsl + + + Added support for SVG content in imagedata (inspired by patch #2909154). + + + + + Mauritz Jeanson: table.xsl + + + Removed superfluous test used when computing column-width. Closes bug #3000898. + + + + + Mauritz Jeanson: inline.xsl + + + Added missing <xsl:call-template name="anchor"/>. Closes bug #2998567. + + + + + Mauritz Jeanson: lists.xsl + + + Added table-layout="fixed" on segmentedlist table (required by XSL spec when proportional-column-width() is used). + + + + + Jirka Kosek: autoidx-kosek.xsl + + + Upgraded to use common entities. Fixed bug when some code used @sortas and some not for grouping/sorting of indexterms. + + + + + Jirka Kosek: index.xsl + + + Upgraded to use common entities. Fixed bug when some code used @sortas and some not for grouping/sorting of indexterms. + + + + + Robert Stayton: xref.xsl + + + Fix bug in olink template when an olink has an id. +Add warning message with id value when trying to link +to an element that has no generated text. + + + + + Mauritz Jeanson: refentry.xsl + + + Fixed bug #2930968 (indexterm in refmeta not handled correctly). + + + + + Robert Stayton: block.xsl + + + fix bug 2949567 title in revhistory breaks FO transform. + + + + + Robert Stayton: glossary.xsl + + + Output id attributes on glossdiv blocks so they can be added to +xrefs or TOC. + + + + + Jirka Kosek: xref.xsl + + + Enabled hyphenation of URLs when ulink content is the same as link target + + + + + Robert Stayton: table.xsl + + + Apply patch to turn off row recursion if no @morerows attributes present. +This will enable very large tables without row spanning to +process without running into recursion limits. + + + + + Robert Stayton: formal.xsl + + + Format equation without title using table layout with equation number +next to the equation. + + + + + Robert Stayton: param.xweb; param.ent + + + Add equation.number.properties. + + + + + + + HTML + The following changes have been made to the + html code + since the 1.75.2 release. + + + + Mauritz Jeanson: block.xsl + + + Modified acknowledgements template to avoid invalid output (<p> in <p>). + + + + + Mauritz Jeanson: titlepage.xsl + + + Added default sidebar attribute-sets. + + + + + Robert Stayton: table.xsl + + + Fix bug 2979166 able - Attribute @rowheader not working + + + + + Robert Stayton: footnote.xsl + + + Fix bug 3033191 footnotes in html tables. + + + + + Mauritz Jeanson: inline.xsl + + + Improved glossterm auto-linking by using keys. The old code was inefficient when processing documents +with many inline glossterms. + + + + + Robert Stayton: docbook.css.xml; verbatim.xsl + + + Fix bug 2844927 Validity error for callout bugs. + + + + + Robert Stayton: formal.xsl + + + Convert formal.object.heading to respect make.clean.html param. + + + + + Robert Stayton: titlepage.templates.xml; block.xsl + + + Fix bug 2840768 sidebar without title inserts empty b tag. + + + + + Mauritz Jeanson: docbook.xsl + + + Moved the template that outputs <base> so that the base URI also applies to relative CSS paths that come later. +See patch #2896121. + + + + + Jirka Kosek: autoidx-kosek.xsl + + + Upgraded to use common entities. Fixed bug when some code used @sortas and some not for grouping/sorting of indexterms. + + + + + Robert Stayton: chunk-code.xsl + + + fix bug 2948363 generated filename for refentry not unique, when +used in a set. + + + + + Robert Stayton: component.xsl + + + Fix missing "Chapter n" label when use chapter/info/title. + + + + + Robert Stayton: table.xsl + + + Row recursion turned off if no @morerows attributes in the table. +This will prevent failure on long table (with no @morerows) due +to excessive depth of recursion. + + + + + Robert Stayton: autotoc.xsl; docbook.css.xml + + + Support make.clean.html in autotoc.xsl. + + + + + Robert Stayton: docbook.css.xml; block.xsl + + + Add support for make.clean.html setting in block elements. + + + + + Robert Stayton: docbook.css.xml + + + Stock CSS styles for DocBook HTML output when 'make.clean.html' is non-zero. + + + + + Robert Stayton: html.xsl + + + Add templates for generating CSS files and links to them. + + + + + Robert Stayton: param.xweb + + + Fix bugs in new entity references. + + + + + Robert Stayton: chunk-common.xsl + + + List of Equations now includes on equations with titles. + + + + + Robert Stayton: table.xsl + + + If a colspec has a colname attribute, add it to the HTML col +element as a class attribute so it can be styled. + + + + + Robert Stayton: formal.xsl + + + Fix bug 2825842 where table footnotes not appearing in HTML-coded table. + + + + + Robert Stayton: chunktoc.xsl + + + Fix bug #2834826 where appendix inside part was not chunked as it should be. + + + + + Mauritz Jeanson: chunktoc.xsl + + + Added missing namespace declarations. Closes bug #2890069. + + + + + Mauritz Jeanson: footnote.xsl + + + Updated the template for footnote paras to use the 'paragraph' template. Closes bug #2803739. + + + + + Keith Fahlgren: inline.xsl; lists.xsl + + + Remove <b> and <i> elements "discouraged in favor of style sheets" from +XHTML, XHTML 1.1 (and therefore EPUB) outputs by changing html2xhtml.xsl. + +Fixes bug #2873153: No <b> and <i> tags in XHTML/EPUB + +Added regression to EPUB specs: + + + + + Mauritz Jeanson: inline.xsl + + + Fixed bug #2844916 (don't output @target if ulink.target is empty). + + + + + Keith Fahlgren: autoidx.xsl + + + Fix a bug when using index.on.type: an 'index symbols' section was created +even if that typed index didn't include any symbols (they were in the other types). + + + + + + + Manpages + The following changes have been made to the + manpages code + since the 1.75.2 release. + + + + Mauritz Jeanson: other.xsl + + + Modified the write.stubs template so that the section directory name is not output twice. Should fix bug #2831602. +Also ensured that $lang is added to the .so path (when man.output.lang.in.name.enabled=1). + + + + + Mauritz Jeanson: docbook.xsl; other.xsl + + + Fixed bug #2412738 (apostrophe escaping) by applying the submitted patch. + + + + + Norman Walsh: block.xsl; endnotes.xsl + + + Fix bug where simpara in footnote didn't work. Patch by Jonathan Nieder, jrnieder@gmail.com + + + + + dleidert: lists.xsl + + + Fix two indentation issues: In the first case there is no corresponding .RS +macro (Debian #519438, sf.net 2793873). In the second case an .RS instead of +the probably intended .sp leads to an indentation bug (Debian #527309, +sf.net #2642139). + + + + + + + Epub + The following changes have been made to the + epub code + since the 1.75.2 release. + + + + Keith Fahlgren: bin/spec/examples/AMasqueOfDays.epub; docbook.xsl; bin/spec/epub_spec.rb + + + Resolve some actual regressions in date output spotted by more recent versions of epubcheck + + + + + Keith Fahlgren: docbook.xsl + + + Updated mediaobject selection code that better uses roles (when available); based on contributons by Glenn McDonald + + + + + Keith Fahlgren: bin/spec/epub_regressions_spec.rb; docbook.xsl + + + Ensure that NCX documents are always outputted with a default namespace +to prevent problems with the kindlegen machinery + + + + + Keith Fahlgren: bin/spec/epub_regressions_spec.rb; bin/spec/files/partintro.xml; docbook.x⋯ + + + Adding support for partintros with sect2s, 3s, etc + + + + + Keith Fahlgren: docbook.xsl + + + Adding param to workaround horrific ADE bug with the inability to process <br> + + + + + Keith Fahlgren: docbook.xsl + + + Add support for authorgroup/author in OPF metadata (via Michael Wiedmann) + + + + + Keith Fahlgren: bin/spec/epub_regressions_spec.rb + + + Remove <b> and <i> elements "discouraged in favor of style sheets" from +XHTML, XHTML 1.1 (and therefore EPUB) outputs by changing html2xhtml.xsl. + +Fixes bug #2873153: No <b> and <i> tags in XHTML/EPUB + +Added regression to EPUB specs: + + + + + Keith Fahlgren: bin/lib/docbook.rb; bin/spec/files/DejaVuSerif-Italic.otf; docbook.xsl; bi⋯ + + + This resolves bug #2873142, Please add support for multiple embedded fonts + + +If you navigate to a checkout of DocBook-XSL and go to: +xsl/epub/bin/spec/files +You can now run the following command: + +../../dbtoepub -f DejaVuSerif.otf -f DejaVuSerif-Italic.otf -c test.css +-s test_cust.xsl orm.book.001.xml + +In dbtoepub, the following option can be used more than once: +-f, --font [OTF FILE] Embed OTF FILE in .epub. + +The underlying stylesheet now accepts a comma-separated list of font file +names rather than just one as the RENAMED epub.embedded.fonts ('s' added). + +The runnable EPUB spec now includes: +- should be valid .epub after including more than one embedded font + + + + + Keith Fahlgren: docbook.xsl + + + Improve the selection of cover images when working in DocBook 4.x land (work in progress) + + + + + Keith Fahlgren: bin/spec/epub_regressions_spec.rb; docbook.xsl + + + Improve the quality of the OPF spine regression by ensuring that the spine +elements for deeply nested refentries are in order and adjacent to their +opening wrapper XHTML chunk. + + + + + Keith Fahlgren: bin/spec/epub_regressions_spec.rb; docbook.xsl; bin/spec/files/orm.book.00⋯ + + + Add more careful handling of refentries to ensure that they always appear in the opf:spine. +This was only a problem when refentries were pushed deep into the hierarchy (like inside +a sect2), but presented navigational problems for many reading systems (despite the +correct NCX references). This may *not* be the best solution, but attacking a better +chunking strategy for refentries was too big a nut to crack at this time. + + + + + + + Eclipse + The following changes have been made to the + eclipse code + since the 1.75.2 release. + + + + Mauritz Jeanson: eclipse3.xsl + + + Added a stylesheet module that generates plug-ins conforming to the standard (OSGi-based) Eclipse 3.x +architecture. The main difference to the older format is that metadata is stored in a separate +manifest file. The module imports and extends the existing eclipse.xsl module. Based on code +contributed in patch #2624668. + + + + + + + Params + The following changes have been made to the + params code + since the 1.75.2 release. + + + + Robert Stayton: draft.watermark.image.xml + + + Fix bug 2922488 draft.watermark.image pointing to web resource. +Now the value is images/draft.png, and may require customization +for local resolution. + + + + + Mauritz Jeanson: equation.number.properties.xml + + + Corrected refpurpose. + + + + + Norman Walsh: paper.type.xml + + + Added USlegal and USlegallandscape paper types. + + + + + Jirka Kosek: highlight.xslthl.config.xml + + + Added note about specifying location as URL + + + + + Robert Stayton: docbook.css.source.xml; generate.css.header.xml; custom.css.source.xml; ma⋯ + + + Params to support generated CSS files. + + + + + Robert Stayton: equation.number.properties.xml + + + New attribute set for numbers appearing next to equations. + + + + + + + XSL-Xalan + The following changes have been made to the + xsl-xalan code + since the 1.75.2 release. + + + + dleidert: nbproject/genfiles.properties; nbproject/build-impl.xml + + + Rebuild netbeans build files after adding missing Netbeans configuration to allow easier packaging for Debian. + + + + + + + +Release Notes: 1.75.2 +The following is a list of changes that have been made + since the 1.75.1 release. + + +Gentext +The following changes have been made to the + gentext code + since the 1.75.1 release. + + +dleidert: locale/ja.xmlImproved Japanese translation for Note(s). Closes bug #2823965. + + +dleidert: locale/pl.xmlPolish alphabet contains O with acute accent, not with grave accent. Closes bug #2823964. + + +Robert Stayton: locale/ja.xmlFix translation of "index", per bug report 2796064. + + +Robert Stayton: locale/is.xmlNew Icelandic locale file. + + + + + +Common +The following changes have been made to the + common code + since the 1.75.1 release. + + +Norman Walsh: stripns.xslSupport more downconvert cases + + +Robert Stayton: titles.xslMake sure title inside info is used if no other title. + + + + + +FO +The following changes have been made to the + fo code + since the 1.75.1 release. + + +Robert Stayton: pi.xslTurn off dbfo-need for fop1.extensions also, per bug #2816141. + + + + + +HTML +The following changes have been made to the + html code + since the 1.75.1 release. + + +Mauritz Jeanson: titlepage.xslOutput "Copyright" heading in XHTML too. + + +Mauritz Jeanson: titlepage.xslAdded stylesheet.result.type test for copyright. Closes bug #2813289. + + +Norman Walsh: htmltbl.xslRemove ambiguity wrt @span, @rowspan, and @colspan + + + + + +Manpages +The following changes have been made to the + manpages code + since the 1.75.1 release. + + +Mauritz Jeanson: endnotes.xslAdded normalize-space() for ulink content. Closes bug #2793877. + + +Mauritz Jeanson: docbook.xslAdded stylesheet.result.type test for copyright. Closes bug #2813289. + + + + + +Epub +The following changes have been made to the + epub code + since the 1.75.1 release. + + +Keith Fahlgren: bin/dbtoepub; bin/lib/docbook.rbCorrected bugs caused by path and file assumptions were not met + + +Keith Fahlgren: bin/lib/docbook.rb; docbook.xslCleaning up hardcoded values into parameters and fixing Ruby library to pass them properly; all thanks to patch from Liza Daly + + + + + +Profiling +The following changes have been made to the + profiling code + since the 1.75.1 release. + + +Robert Stayton: profile.xslFix bug 2815493 missing exsl.node.set.available parameter. + + + + + +XSL-Saxon +The following changes have been made to the + xsl-saxon code + since the 1.75.1 release. + + +Mauritz Jeanson: src/com/nwalsh/saxon/ColumnUpdateEmitter.java; src/com/nwalsh/saxon/Colum⋯Added fixes so that colgroups in the XHTML namespace are processed properly. + + + + + +XSL-Xalan +The following changes have been made to the + xsl-xalan code + since the 1.75.1 release. + + +Mauritz Jeanson: nbproject/project.xmlAdded missing NetBeans configuration. + + + + + + + + +Release Notes: 1.75.1 +This release includes bug fixes. + +The following is a list of changes that have been made since the 1.75.0 release. + + + +FO +The following changes have been made to the fo code since the 1.75.0 release. + + +Keith Fahlgren: block.xslSwitching to em dash for character before attribution in epigraph; resolves Bug #2793878 + + +Robert Stayton: lists.xslFixed bug 2789947, id attribute missing on simplelist fo output. + + + + + +HTML +The following changes have been made to the + html code + since the 1.75.0 release. + + +Keith Fahlgren: block.xslSwitching to em dash for character before attribution in epigraph; resolves Bug #2793878 + + +Robert Stayton: lists.xslFixed bug 2789678: apply-templates line accidentally deleted. + + + + + +Epub +The following changes have been made to the + epub code + since the 1.75.0 release. + + +Keith Fahlgren: bin/spec/epub_regressions_spec.rb; docbook.xslAdded regression and fix to correct "bug" with namespace-prefixed container elements in META-INF/container.xml ; resolves Issue #2790017 + + +Keith Fahlgren: bin/spec/epub_regressions_spec.rb; bin/spec/files/onegraphic.xinclude.xml;⋯Another attempt at flexible named entity and XInclude processing + + +Keith Fahlgren: bin/lib/docbook.rbTweaking solution to Bug #2750442 following regression reported by Michael Wiedmann. + + + + + +Params +The following changes have been made to the + params code + since the 1.75.0 release. + + +Mauritz Jeanson: highlight.source.xmlUpdated documentation to reflect changes made in r8419. + + + + + + + + +Release Notes: 1.75.0 +This release includes important bug fixes and adds the following +significant feature changes: + + +Gentext +Modifications to translations have been made. + + + +Common + +Added support for some format properties on tables using +HTML table markup. +Added two new qanda.defaultlabel values so that numbered sections +and numbered questions can be distinguished. Satisfies +Feature Request #1539045. +Added code to handle acknowledgements in book and part. The element is processed +similarly to dedication. All acknowledgements will appear as front matter, after +any dedications. + + + + +FO + +The inclusion of highlighting code has been simplified. +Add support for pgwide on informal objects. +Added a new parameter, bookmarks.collapse, that controls the initial state of the bookmark tree. Closes FR #1792326. +Add support for more dbfo processing instructions. +Add new variablelist.term.properties to format terms, per request # 1968513. +Add support for @width on screen and programlisting, fixes bug #2012736. +Add support for writing-mode="rl-tb" (right-to-left) in FO outputs. +Add writing.mode param for FO output. + + + +HTML + +Convert all calls to class.attribute to calls to common.html.attributes to support dir, lang, and title attributes in html output for all elements. Fulfills feature request #1993833. +Inclusion of highlighting code was simplified. Only one import is now necessary. +Add new param index.links.to.section. +Add support for the new index.links.to.section param which permits precise links to indexterms in HTML output rather than to the section title. + + + +ePub + +Slightly more nuanced handling of imageobject alternatives and better support in dbtoepub for XIncludes and ENTITYs to resolve Issue #2750442 reported by Raphael Hertzog. +Added a colon after an abstract/title when mapping into the dc:description for OPF metadata in ePub output to help the flat text have more pseudo-semantics (sugestions from Michael Wiedmann) +Added DocBook subjectset -> OPF dc:subject mapping and tests +Added DocBook date -> OPF dc:date mapping and tests +Added DocBook abstract -> OPF dc:description mapping and tests +Added --output option to dbtoepub based on user request + + + + +HTMLHelp + +Add support for generating olink target database for htmlhelp files. + + + + +Params + +Add default setting for @rules attribute on HTML markup tables. +Added a new parameter, bookmarks.collapse, that controls the initial state of the bookmark tree. When the parameter has a non-zero value (the default), only the top-level bookmarks are displayed initially. Otherwise, the whole tree of bookmarks is displayed. This is implemented for FOP 0.9X. Closes FR #1792326. +Add new variablelist.term.properties to format terms, per request # 1968513. +Add two new qanda.defaultlabel values so that numbered sections and numbered questions can be distinguished. Satisfies Feature Request #1539045. +Add param to control whether an index entry links to a section title or to the precise location of the indexterm. +New attribute list for glossentry in glossary. +New parameter to support @width on programlisting and screen. +Add attribute-sets for formatting glossary terms and defs. + + + +Highlighting + +Inclusion of highlighting code was simplified. Only one import is now necessary. + + + + + + + +The following is a list of changes that have been made + since the 1.74.3 release. + + +Gentext +The following changes have been made to the + gentext code + since the 1.74.3 release. + + +Robert Stayton: locale/sv.xml; locale/ja.xml; locale/pl.xmlCheck in translations of Legalnotice submitted on mailing list. + + +Robert Stayton: locale/es.xmlFix spelling errors in Acknowledgements entries. + + +Robert Stayton: locale/es.xmlCheck in translations for 4 elements submitted through docbook-apps +message of 14 April 2009. + + +David Cramer: locale/zh.xml; locale/ca.xml; locale/ru.xml; locale/ga.xml; locale/gl.xml; l⋯Internationalized punctuation in glosssee and glossseealso + + +Robert Stayton: MakefileCheck in fixes for DSSSL gentext targets from submitted patch #1689633. + + +Robert Stayton: locale/uk.xmlCheck in major update submitted with bug report #2008524. + + +Robert Stayton: locale/zh_tw.xmlCheck in fix to Note string submitted in bug #2441051. + + +Robert Stayton: locale/ru.xmlCheckin typo fix submitted in bug #2453406. + + + + + +Common +The following changes have been made to the + common code + since the 1.74.3 release. + + +Robert Stayton: gentext.xslFix extra generated space when xrefstyle includes 'nopage'. + + +Robert Stayton: table.xslAdd support for some format properties on tables using +HTML table markup. These include: + - frame attribute on table (or uses $default.table.frame parameter). + - rules attribute on table (or uses $default.table.rules parameter). + - align attribute on td and th + - valign attribute on td and th + - colspan on td and th + - rowspan on td and th + - bgcolor on td and th + + +Robert Stayton: olink.xslAdd placeholder template to massage olink hot text to make +customization easier, per Feature Request 1828608. + + +Robert Stayton: targets.xslAdd support for collecting olink targets from a glossary +generated from a glossary.collection. + + +Robert Stayton: titles.xslHandle firstterm like glossterm in mode="title.markup". + + +Robert Stayton: titles.xslAdd match on info/title in title.markup templates where missing. + + +Mauritz Jeanson: titles.xslChanged "ancestor::title" to "(ancestor::title and (@id or @xml:id))". +This enables proper formatting of inline elements in titles in TOCs, +as long as these inlines don't have id or xml:id attributes. + + +Robert Stayton: labels.xslAdd two new qanda.defaultlabel values so that numbered sections +and numbered questions can be distinguished. Satisfies +Feature Request #1539045. + + +Robert Stayton: stripns.xsl; pi.xslConvert function-available(exsl:node-set) to use the new param +so Xalan bug is isolated. + + +Mauritz Jeanson: titles.xslAdded fixes for bugs #2112656 and #1759205: +1. Reverted mistaken commits r7485 and r7523. +2. Updated the template with match="link" and mode="no.anchor.mode" so that +@endterm is used if it exists and if the link has no content. + + +Mauritz Jeanson: titles.xslAdded code to handle acknowledgements in book and part. The element is processed +similarly to dedication. All acknowledgements will appear as front matter, after +any dedications. + + +Robert Stayton: olink.xslFix bug #2018717 use.local.olink.style uses wrong gentext context. + + +Robert Stayton: olink.xslFix bug #1787167 incorrect hot text for some olinks. + + +Robert Stayton: common.xslFix bug #1669654 Broken output if copyright <year> contains a range. + + +Robert Stayton: labels.xslFix bug in labelling figure inside appendix inside article inside book. + + + + + +FO +The following changes have been made to the + fo code + since the 1.74.3 release. + + +Jirka Kosek: highlight.xslInclusion of highlighting code was simplified. Only one import is now necessary. + + +Robert Stayton: fop1.xslAdd the new fop extensions namespace declaration, in case FOP +extension functions are used. + + +Robert Stayton: formal.xslAdd support for pgwide on informal objects. + + +Robert Stayton: docbook.xslFixed spurious closing quote on line 134. + + +Robert Stayton: docbook.xsl; autoidx-kosek.xsl; autoidx.xslConvert function-available for node-set() to use +new $exsl.node.set.available param in test. + + +David Cramer: xref.xslSuppress extra space after xref when xrefstyle='select: label nopage' (#2740472) + + +Mauritz Jeanson: pi.xslFixed doc bug for row-height. + + +David Cramer: glossary.xslInternationalized punctuation in glosssee and glossseealso + + +Robert Stayton: param.xweb; param.ent; htmltbl.xsl; table.xslAdd support for some format properties on tables using +HTML table markup. These include: + - frame attribute on table (or uses $default.table.frame parameter). + - rules attribute on table (or uses $default.table.rules parameter). + - align attribute on td and th + - valign attribute on td and th + - colspan on td and th + - rowspan on td and th + - bgcolor on td and th + + +Robert Stayton: table.xslAdd support bgcolor in td and th +elements in HTML table markup. + + +Robert Stayton: htmltbl.xslAdd support for colspan and rowspan and bgcolor in td and th +elements in HTML table markup. + + +Robert Stayton: param.xwebFix working of page-master left and right margins. + + +Mauritz Jeanson: param.xweb; param.ent; fop1.xslAdded a new parameter, bookmarks.collapse, that controls the initial state of the bookmark tree. When the parameter has a non-zero value (the default), only the top-level bookmarks are displayed initially. Otherwise, the whole tree of bookmarks is displayed. This is implemented for FOP 0.9X. Closes FR #1792326. + + +Robert Stayton: table.xsl; pi.xslAdd support for dbfo row-height processing instruction, like that in dbhtml. + + +Robert Stayton: lists.xslAdd support for dbfo keep-together processing instruction for +entire list instances. + + +Robert Stayton: lists.xsl; block.xslAdd support fo dbfo keep-together processing instruction to +more blocks like list items and paras. + + +Robert Stayton: lists.xsl; param.xweb; param.entAdd new variablelist.term.properties to format terms, per request # 1968513. + + +Robert Stayton: inline.xslIn simple.xlink, rearrange order of processing. + + +Robert Stayton: xref.xslHandle firstterm like glossterm in mode="xref-to". + + +Robert Stayton: glossary.xsl; xref.xsl; pi.xsl; footnote.xslImplement simple.xlink for glosssee and glossseealso so they can use +other types of linking besides otherterm. + + +Robert Stayton: qandaset.xslAdd two new qanda.defaultlabel values so that numbered sections and numbered questions can be distinguished. Satisfies Feature Request #1539045. + + +Robert Stayton: titlepage.xslFor the book title templates, I changed info/title to book/info/title +so other element's titles will not be affected. + + +Robert Stayton: xref.xsl; verbatim.xslUse param exsl.node.set.available to test for function. + + +Robert Stayton: param.xweb; param.ent; footnote.xslStart using new param exsl.node.set.available to work around Xalan bug. + + +Robert Stayton: titlepage.templates.xmlAdd comment on use of t:predicate for editor to prevent +extra processing of multiple editors. Fixes bug 2687842. + + +Robert Stayton: xref.xsl; autoidx.xslAn indexterm primary, secondary, or tertiary element with an id or xml:id +now outputs that ID, so that index entries can be cross referenced to. + + +Mauritz Jeanson: synop.xslAdded modeless template for ooclass|oointerface|ooexception. +Closes bug #1623468. + + +Robert Stayton: xref.xslAdd template with match on indexterm in mode="xref-to" to fix bug 2102592. + + +Robert Stayton: xref.xslNow xref to qandaentry will use the label element in a question for +the link text if it has one. + + +Robert Stayton: inline.xslAdd id if specified from @id to output for quote and phrase so +they can be xref'ed to. + + +Robert Stayton: xref.xslAdd support for xref to phrase, simpara, anchor, and quote. +This assumes the author specifies something using xrefstyle since +the elements don't have ordinary link text. + + +Robert Stayton: toc.xslFix bug in new toc templates. + + +Mauritz Jeanson: titlepage.xsl; component.xsl; division.xsl; xref.xsl; titlepage.templates⋯Added code to handle acknowledgements in book and part. The element is processed +similarly to dedication. All acknowledgements will appear as front matter, after +any dedications. + + +Robert Stayton: toc.xslRewrite toc templates to support an empty toc or populated toc +in all permitted contexts. Same for lot elements. +This fixes bug #1595969 for FO outputs. + + +Robert Stayton: index.xslFix indents for seealsoie so they are consistent. + + +Mauritz Jeanson: param.xwebRemoved duplicate (monospace.font.family). + + +Robert Stayton: param.xweb; param.entAdd glossentry.list.item.properties. + + +Robert Stayton: param.xweb; param.entAdd monospace.verbatim.font.width param to support @width on programlisting. + + +Robert Stayton: verbatim.xslPut programlisting in fo:block-container with writing-mode="lr-tb" +when text direction is right to left because all program languages +are left-to-right. + + +Robert Stayton: verbatim.xslAdd support for @width on screen and programlisting, fixes bug #2012736. + + +Robert Stayton: xref.xslFix bug #1973585 xref to para with xrefstyle not handled correctly. + + +Mauritz Jeanson: block.xslAdded support for acknowledgements in article. +Support in book/part remains to be added. + + +Robert Stayton: xref.xslFix bug #1787167 incorrect hot text for some olinks. + + +Robert Stayton: fo.xslAdd writing-mode="tb-rl" as well since some XSL-FO processors support it. + + +Robert Stayton: autotoc.xsl; lists.xsl; glossary.xsl; fo.xsl; table.xsl; pagesetup.xslAdd support for writing-mode="rl-tb" (right-to-left) in FO outputs. +Changed instances of margin-left to margin-{$direction.align.start} +and margin-right to margin-{$direction.align.end}. Those direction.align +params are computed from the writing mode value in each locale's +gentext key named 'writing-mode', introduced in 1.74.3 to add +right-to-left support to HTML outputs. + + +Robert Stayton: param.xweb; param.entAdd attribute-sets for formatting glossary terms and defs. + + +Robert Stayton: param.xweb; param.entAdd writing.mode param for FO output. + + +Robert Stayton: autotoc.xslFix bug 1546008: in qandaentry in a TOC, use its blockinfo/titleabbrev or blockinfo/title +instead of question, if available. For DocBook 5, use the info versions. + + +Keith Fahlgren: verbatim.xslAdd better pointer to README for XSLTHL + + +Keith Fahlgren: verbatim.xslMore tweaking the way that XSLTHL does or does not get called + + +Keith Fahlgren: verbatim.xslAlternate attempt at sanely including/excluding XSLTHT code + + + + + +HTML +The following changes have been made to the + html code + since the 1.74.3 release. + + +Robert Stayton: lists.xslRemoved redundant lang and title attributes on list element inside +div element for lists. + + +Robert Stayton: inline.xsl; titlepage.xsl; division.xsl; toc.xsl; sections.xsl; table.xsl;⋯Convert all calls to class.attribute to calls to common.html.attributes +to support dir, lang, and title attributes in html output for all elements. +Fulfills feature request #1993833. + + +Robert Stayton: chunk-common.xslFix bug #2750253 wrong links in list of figures in chunk.html +when target html is in a subdirectory and dbhtml filename used. + + +Jirka Kosek: highlight.xslInclusion of highlighting code was simplified. Only one import is now necessary. + + +Robert Stayton: chunk-common.xsl; chunktoc.xsl; docbook.xsl; chunk-changebars.xsl; autoidx⋯Convert function-available for node-set() to use +new $exsl.node.set.available param in test. + + +Mauritz Jeanson: pi.xslFixed doc bug for row-height. + + +David Cramer: glossary.xslInternationalized punctuation in glosssee and glossseealso + + +Robert Stayton: lists.xsl; html.xsl; block.xslMore elements get common.html.attributes. +Added locale.html.attributes template which does the lang, +dir, and title attributes, but not the class attribute +(used on para, for example). + + +Robert Stayton: lists.xslReplace more literal class atts with mode="class.attribute" to support +easier customization. + + +Robert Stayton: glossary.xslSupport olinking in glosssee and glossseealso. + + +Robert Stayton: inline.xslIn simple.xlink, rearrange order of processing. + + +Robert Stayton: xref.xslHandle firstterm like glossterm in mode="xref-to". + + +Robert Stayton: lists.xsl; html.xsl; block.xslAdded template named common.html.attributes to output +class, title, lang, and dir for most elements. +Started adding it to some list and block elements. + + +Robert Stayton: qandaset.xslAdd two new qanda.defaultlabel values so that numbered sections +and numbered questions can be distinguished. Satisfies +Feature Request #1539045. + + +Robert Stayton: param.xweb; chunk-code.xsl; param.ent; xref.xsl; chunkfast.xsl; verbatim.x⋯Use new param exsl.node.set.available to test, handles Xalan bug. + + +Robert Stayton: autoidx.xslUse named anchors for primary, secondary, and tertiary ids so +duplicate entries with different ids can still have an id output. + + +Robert Stayton: param.xweb; param.entAdd new param index.links.to.section. + + +Robert Stayton: xref.xsl; autoidx.xslPass through an id on primary, secondary, or tertiary to +the index entry, so that one could link to an index entry. +You can't link to the id on an indexterm because that is +used to place the main anchor in the text flow. + + +Robert Stayton: autoidx.xslAdd support for the new index.links.to.section param which permits +precise links to indexterms in HTML output rather than to +the section title. + + +Mauritz Jeanson: synop.xslAdded modeless template for ooclass|oointerface|ooexception. +Closes bug #1623468. + + +Robert Stayton: qandaset.xslMake sure a qandaset has an anchor, even when it has no title, +because it may be referenced in a TOC or xref. +Before, the anchor was output by the title, but there was no +anchor if there was no title. + + +Robert Stayton: xref.xslAdd a template for indexterm with mode="xref-to" to fix bug 2102592. + + +Robert Stayton: xref.xslNow xref to qandaentry will use the label element in a question for +the link text if it has one. + + +Robert Stayton: qandaset.xsl; html.xslCreate separate templates for computing label of question and answer +in a qandaentry, so such can be used for the alt text of an xref +to a qandaentry. + + +Robert Stayton: inline.xsl; xref.xslNow support xref to phrase, simpara, anchor, and quote, +most useful when an xrefstyle is used. + + +Robert Stayton: toc.xslRewrite toc templates to support an empty toc or populated toc +in all permitted contexts. Same for lot elements. +This fixes bug #1595969 for HTML outputs. + + +Mauritz Jeanson: titlepage.xsl; component.xsl; division.xsl; xref.xsl; titlepage.templates⋯Added code to handle acknowledgements in book and part. The element is processed +similarly to dedication. All acknowledgements will appear as front matter, after +any dedications. + + +Robert Stayton: index.xslRewrote primaryie, secondaryie and tertiaryie templates to handle +nesting of elements and seeie and seealsoie, as reported in +bug # 1168912. + + +Robert Stayton: autotoc.xslFix simplesect in toc problem. + + +Robert Stayton: verbatim.xslAdd support for @width per bug report #2012736. + + +Robert Stayton: formal.xsl; htmltbl.xslFix bug #1787140 HTML tables not handling attributes correctly. + + +Robert Stayton: param.xwebMove writing-mode param. + + +Keith Fahlgren: refentry.xslRemove a nesting of <p> inside <p> for refclass (made XHTML* invalid, made HTML silly) + + +Robert Stayton: table.xslFix bug #1945872 to allow passthrough of colwidth values to +HTML table when no tablecolumns.extension is available and +when no instance of * appears in the table's colspecs. + + +Mauritz Jeanson: block.xslAdded support for acknowledgements in article. +Support in book/part remains to be added. + + +Robert Stayton: chunk-common.xslFix bug #1787167 incorrect hot text for some olinks. + + +Robert Stayton: qandaset.xslFix bug 1546008: in qandaentry in a TOC, use its blockinfo/titleabbrev or blockinfo/title +instead of question, if available. For DocBook 5, use the info versions. + + +Robert Stayton: chunktoc.xslAdd support for generating olink database when using chunktoc.xsl. + + +Keith Fahlgren: verbatim.xslAdd better pointer to README for XSLTHL + + +Keith Fahlgren: verbatim.xslAnother stab at fixing the stupid XSLTHT includes across processors (Saxon regression reported by Sorin Ristache) + + +Keith Fahlgren: verbatim.xslMore tweaking the way that XSLTHL does or does not get called + + +Keith Fahlgren: verbatim.xslAlternate attempt at sanely including/excluding XSLTHT code + + + + + +Manpages +The following changes have been made to the + manpages code + since the 1.74.3 release. + + +Robert Stayton: table.xslConvert function-available test for node-set() function to +test of $exsl.node.set.available param. + + +Mauritz Jeanson: lists.xslAdded a template for bibliolist. Closes bug #1815916. + + + + + +ePub +The following changes have been made to the + epub code + since the 1.74.3 release. + + +Keith Fahlgren: bin/spec/epub_regressions_spec.rb; bin/spec/files/onegraphic.xinclude.xml;⋯Slightly more nuanced handling of imageobject alternatives and better support in dbtoepub for XIncludes and ENTITYs to resolve Issue #2750442 reported by Raphael Hertzog. + + +Keith Fahlgren: docbook.xslAdd a colon after an abstract/title when mapping into the dc:description for OPF metadata in ePub output to help the flat text have more pseudo-semantics (sugestions from Michael Wiedmann) + + +Keith Fahlgren: bin/spec/epub_regressions_spec.rb; docbook.xsl; bin/spec/files/de.xmlCorrectly set dc:language in OPF metadata when i18nizing. Closes Bug #2755150 + + +Keith Fahlgren: bin/spec/epub_regressions_spec.rb; docbook.xslCorrected namespace declarations for literal XHTML elements to make them serialize "normally" + + +Keith Fahlgren: docbook.xslBe a little bit more nuanced about dates + + +Keith Fahlgren: docbook.xsl; bin/spec/epub_realbook_spec.rb; bin/spec/files/orm.book.001.x⋯Add DocBook subjectset -> OPF dc:subject mapping and tests + + +Keith Fahlgren: docbook.xsl; bin/spec/epub_realbook_spec.rb; bin/spec/files/orm.book.001.x⋯Add DocBook date -> OPF dc:date mapping and tests + + +Keith Fahlgren: docbook.xsl; bin/spec/epub_realbook_spec.rb; bin/spec/files/orm.book.001.x⋯Add DocBook abstract -> OPF dc:description mapping and tests + + +Robert Stayton: docbook.xslCheck in patch submitted by user to add opf:file-as attribute +to dc:creator element. + + +Keith Fahlgren: bin/dbtoepubAdding --output option to dbtoepub based on user request + + +Keith Fahlgren: docbook.xsl; bin/spec/epub_spec.rbCleaning and regularizing the generation of namespaced nodes for OPF, NCX, XHTML and other outputted filetypes (hat tip to bobstayton for pointing out the silly, incorrect code) + + +Keith Fahlgren: bin/spec/epub_regressions_spec.rb; bin/spec/files/refclass.xmlRemove a nesting of <p> inside <p> for refclass (made XHTML* invalid, made HTML silly) + + +Keith Fahlgren: bin/spec/epub_regressions_spec.rb; bin/spec/files/blockquotepre.xmlAdded regression test and fix for XHTML validation problem with <a>s added inside <blockquote>; This potentially causes another problem (where something is referenced by has no anchor, but someone reporting that should cause the whole <a id='thing'/> thing to be reconsidered with modern browsers in mind. + + + + + +HTMLHelp +The following changes have been made to the + htmlhelp code + since the 1.74.3 release. + + +Robert Stayton: htmlhelp-common.xslAdd support for generating olink target database for htmlhelp files. + + + + + + +Params +The following changes have been made to the + params code + since the 1.74.3 release. + + +Robert Stayton: default.table.rules.xmlAdd default setting for @rules attribute on HTML markup tables. + + +Mauritz Jeanson: bookmarks.collapse.xmlAdded a new parameter, bookmarks.collapse, that controls the initial state +of the bookmark tree. When the parameter has a non-zero value (the default), +only the top-level bookmarks are displayed initially. Otherwise, the whole +tree of bookmarks is displayed. + +This is implemented for FOP 0.9X. Closes FR #1792326. + + +Robert Stayton: variablelist.term.properties.xmlAdd new variablelist.term.properties to format terms, per +request # 1968513. + + +Robert Stayton: qanda.defaultlabel.xmlAdd two new qanda.defaultlabel values so that numbered sections +and numbered questions can be distinguished. Satisfies +Feature Request #1539045. + + +Robert Stayton: index.links.to.section.xmlChange default to 1 to match past behavior. + + +Robert Stayton: exsl.node.set.available.xmlIsolate this text for Xalan bug regarding exsl:node-set available. +If it is ever fixed in Xalan, just fix it here. + + +Robert Stayton: index.links.to.section.xmlAdd param to control whether an index entry links to +a section title or to the precise location of the +indexterm. + + +Robert Stayton: glossentry.list.item.properties.xmlNew attribute list for glossentry in glossary. + + +Robert Stayton: monospace.verbatim.font.width.xmlNew parameter to support @width on programlisting and screen. + + +Mauritz Jeanson: highlight.source.xmlUpdated and reorganized the description. + + +Robert Stayton: page.margin.outer.xml; page.margin.inner.xmlAdd caveat about XEP bug when writing-mode is right-to-left. + + +Robert Stayton: article.appendix.title.properties.xml; writing.mode.xml; body.start.indent⋯Change 'left' to 'start' and 'right' to 'end' to support right-to-left +writing mode. + + +Robert Stayton: glossdef.block.properties.xml; glossdef.list.properties.xml; glossterm.blo⋯Add attribute-sets for formatting glossary terms and defs. + + +Robert Stayton: glossterm.separation.xmlClarify the description. + + +Robert Stayton: make.year.ranges.xmlNow handles year element containing a comma or dash without error. + + + + + +Highlighting +The following changes have been made to the + highlighting code + since the 1.74.3 release. + + +Jirka Kosek: READMEInclusion of highlighting code was simplified. Only one import is now necessary. + + +Keith Fahlgren: READMEAdding XSLTHL readme + + +Keith Fahlgren: common.xslAlternate attempt at sanely including/excluding XSLTHT code + + + + + +XSL-Saxon +The following changes have been made to the + xsl-saxon code + since the 1.74.3 release. + + +Mauritz Jeanson: src/com/nwalsh/saxon/Text.javaAdded a fix that prevents output of extra blank line. +Hopefully this closes bug #894805. + + + + + +XSL-Xalan +The following changes have been made to the + xsl-xalan code + since the 1.74.3 release. + + +Mauritz Jeanson: src/com/nwalsh/xalan/Text.javaAdded a fix that prevents output of extra blank line. +Hopefully this closes bug #894805. + + + + + + + + +Release Notes: 1.74.3 +This release fixes some bugs in the 1.74.2 release. +See highlighting/README for XSLTHL usage instructions. + + +Release Notes: 1.74.2 +This release fixes some bugs in the 1.74.1 release. + + + +Release Notes: 1.74.1 +This release includes important bug fixes and adds the following +significant feature changes: + + +Gentext +Kirghiz locale added and Chinese translations have been simplified. +Somme support for gentext and right-to-left languages has been added. + + +FO +Various bugs have been resolved. +Support for a new processing instruction: dbfo funcsynopsis-style has been added. +Added new param email.mailto.enabled for FO output. Patch from Paolo Borelli. + +Support for documented metadata in fop1 mode has been added. + + + + +Highlighting +Support for the latest version of XSLTHL 2.0 and some new language syntaxes have been added to a variety of outputs. + + + + +Manpages +Added man.output.better.ps.enabled param (zero default). It non-zero, no such +markup is embedded in generated man pages, and no enhancements are +included in the PostScript output generated from those man pages +by the man -Tps command. + + + + + +HTML +Support for writing.mode to set text direction and alignment based on document locale has been added. + +Added a new top-level stylesheet module, chunk-changebars.xsl, to be +used for generating chunked output with highlighting based on change +(@revisionflag) markup. The module imports/includes the standard chunking +and changebars templates and contains additional logic for chunked output. +See FRs #1015180 and #1819915. + + + + +ePub + +Covers now look better in Adobe Digital Editions thanks to a patch from Paul Norton of Adobe + +Cover handling now more generic (including limited DocBook 5.0 cover support thanks to patch contributed by Liza Daly. +Cover markup now carries more reliably into files destined for .mobi and the Kindle. +dc:identifiers are now generated from more types of numbering schemes. +Both SEO and semantic structure of chunked ePub output by ensuring that we always send out one and only one h1 in each XHTML chunk. + +Primitive support for embedding a single font added. + + +Support for embedding a CSS customizations added. + + + + + +Roundtrip + + +Support for imagedata-metadata and table as images added. + + +Support for imagedata-metadata and legalnotice as images added. + + + + +Params +man.output.better.ps.enabled added for Manpages output + +writing.mode.xml added to set text direction. + + +Added new param email.mailto.enabled for FO output. +Patch from Paolo Borelli. Closes #2086321. + + +highlight.source upgraded to support the latest version of XSLTHL 2.0. + + + + + + + + +The following is a list of changes that have been made since the 1.74.0 release. + + + +Gentext +The following changes have been made to the gentext code since the 1.74.0 release. + + +Michael(tm) Smith: locale/ky.xml; Makefilenew Kirghiz locale from Ilyas Bakirov + + +Mauritz Jeanson: locale/en.xmlAdded "Acknowledgements". + + +Dongsheng Song: locale/zh_cn.xmlSimplified Chinese translation. + + +Robert Stayton: locale/lv.xml; locale/ca.xml; locale/pt.xml; locale/tr.xml; locale/af.xml;⋯Add writing-mode gentext string to support right-to-left languages. + + + + + +FO +The following changes have been made to the fo code since the 1.74.0 release. + + +David Cramer: footnote.xslAdded a check to confirm that a footnoteref's linkend points to a footnote. Stylesheets stop processing if not and provide a useful error message. + + +Mauritz Jeanson: spaces.xslConvert spaces to fo:leader also in elements in the DB 5 namespace. + + +Mauritz Jeanson: pi.xsl; synop.xslAdded support for a new processing instruction: dbfo funcsynopsis-style. +Closes bug #1838213. + + +Michael(tm) Smith: inline.xsl; param.xweb; param.entAdded new param email.mailto.enabled for FO output. +Patch from Paolo Borelli. Closes #2086321. + + +Mauritz Jeanson: docbook.xslAdded support for document metadata for fop1 (patch #2067318). + + +Jirka Kosek: param.ent; param.xweb; highlight.xslUpgraded to support the latest version of XSLTHL 2.0 + -- nested markup in highlited code is now processed + -- it is no longer needed to specify path XSLTHL configuration file using Java property + -- support for new languages, including Perl, Python and Ruby was added + + + + + +HTML +The following changes have been made to the html code since the 1.74.0 release. + + +Robert Stayton: param.xweb; docbook.xsl; param.ent; html.xslAdd support for writing.mode to set text direction and alignment based on document locale. + + +Mauritz Jeanson: chunk-changebars.xslAdded a new top-level stylesheet module, chunk-changebars.xsl, to be +used for generating chunked output with highlighting based on change +(@revisionflag) markup. The module imports/includes the standard chunking +and changebars templates and contains additional logic for chunked output. +See FRs #1015180 and #1819915. + + + + + +Manpages +The following changes have been made to the manpages code since the 1.74.0 release. + + +Michael(tm) Smith: docbook.xslPut the following at the top of generated roff for each page: + \" t +purpose is to explicitly tell AT&T troff that the page needs to be +pre-processed through tbl(1); groff can figure it out +automatically, but apparently AT&T troff needs to be explicitly told + + + + + +ePub +The following changes have been made to the epub code since the 1.74.0 release. + + +Keith Fahlgren: docbook.xslPatch from Paul Norton of Adobe to get covers to look better in Adobe Digital Editions + + +Keith Fahlgren: bin/spec/epub_regressions_spec.rb; bin/spec/files/v5cover.xml; bin/spec/sp⋯Patch contributed by Liza Daly to make ePub cover handling more generic. Additionally +DocBook 5.0's <cover> now has some limited support: + +- should reference a cover in the OPF guide for a DocBook 5.0 test document + + +Keith Fahlgren: bin/spec/files/isbn.xml; bin/spec/files/issn.xml; bin/spec/files/biblioid.⋯Liza Daly reported that the dc:identifer-generation code was garbage (she was right). + +Added new tests: +- should include at least one dc:identifier +- should include an ISBN as URN for dc:identifier if an ISBN was in the metadata +- should include an ISSN as URN for dc:identifier if an ISSN was in the metadata +- should include an biblioid as a dc:identifier if an biblioid was in the metadata +- should include a URN for a biblioid with @class attribute as a dc:identifier if an biblioid was in the metadata + + +Keith Fahlgren: docbook.xsl; bin/spec/epub_spec.rbImprove both SEO and semantic structure of chunked ePub output by ensuring that +we always send out one and only one h1 in each XHTML chunk. + +DocBook::Epub +- should include one and only one <h1> in each HTML file in rendered ePub files +for <book>s +- should include one and only one <h1> in each HTML file in rendered ePub files +for <book>s even if they do not have section markup + + +Keith Fahlgren: docbook.xsl; bin/spec/epub_realbook_spec.rb; bin/spec/files/orm.book.001.x⋯Adding better support for covers in epub files destined for .mobi and the Kindle + + +Keith Fahlgren: bin/dbtoepub; bin/lib/docbook.rb; bin/spec/files/DejaVuSerif.otf; docbook.⋯Adding primitive support for embedding a single font + + +Keith Fahlgren: bin/dbtoepub; bin/lib/docbook.rb; bin/spec/files/test_cust.xsl; bin/spec/e⋯Adding support for user-specified customization layers in dbtoepub + + +Keith Fahlgren: bin/dbtoepub; bin/spec/epub_regressions_spec.rb; bin/lib/docbook.rb; bin/s⋯Adding CSS support to .epub target & dbtoepub: + -c, --css [FILE] Use FILE for CSS on generated XHTML. + + +DocBook::Epub +... +- should include a CSS link in HTML files when a CSS file has been provided +- should include CSS file in .epub when a CSS file has been provided +- should include a CSS link in OPF file when a CSS file has been provided + + + + + +Roundtrip +The following changes have been made to the + roundtrip code + since the 1.74.0 release. + + +Steve Ball: blocks2dbk.xsl; template.xml; template.dotadded support for imagedata-metadata +added support for table as images + + +Steve Ball: blocks2dbk.xsl; normalise2sections.xsl; sections2blocks.xslImproved support for personname inlines. + + +Steve Ball: blocks2dbk.xsl; blocks2dbk.dtd; template.xmlAdded support for legalnotice. + + +Steve Ball: blocks2dbk.xsl; wordml2normalise.xsladded support for orgname in author + + +Steve Ball: specifications.xml; supported.xml; blocks2dbk.xsl; wordml2normalise.xsl; dbk2w⋯Updated specification. +to-DocBook: add cols attribute to tgroup +from-DocBook: fix for blockquote title + + + + + +Params +The following changes have been made to the params since the 1.74.0 release. + + +The change was to add man.output.better.ps.enabled parameter, with +its default value set to zero. + +If the value of the man.output.better.ps.enabled parameter is +non-zero, certain markup is embedded in each generated man page +such that PostScript output from the man -Tps command for that +page will include a number of enhancements designed to improve the +quality of that output. + +If man.output.better.ps.enabled is zero (the default), no such +markup is embedded in generated man pages, and no enhancements are +included in the PostScript output generated from those man pages +by the man -Tps command. + +WARNING: The enhancements provided by this parameter rely on +features that are specific to groff (GNU troff) and that are not +part of "classic" AT&T troff or any of its derivatives. Therefore, +any man pages you generate with this parameter enabled will be +readable only on systems on which the groff (GNU troff) program is +installed, such as GNU/Linux systems. The pages will not not be +readable on systems on with the classic troff (AT&T troff) command +is installed. + +NOTE: The value of this parameter only affects PostScript output +generated from the man command. It has no effect on output +generated using the FO backend. + +TIP: You can generate PostScript output for any man page by +running the following command: + +man FOO -Tps > FOO.ps + +You can then generate PDF output by running the following command: + +ps2pdf FOO.ps + + +Robert Stayton: writing.mode.xmlwriting mode param used to set text direction. + + +Michael(tm) Smith: email.mailto.enabled.xmlAdded new param email.mailto.enabled for FO output. +Patch from Paolo Borelli. Closes #2086321. + + +Jirka Kosek: highlight.source.xml; highlight.xslthl.config.xmlUpgraded to support the latest version of XSLTHL 2.0 + -- nested markup in highlited code is now processed + -- it is no longer needed to specify path XSLTHL configuration file using Java property + -- support for new languages, including Perl, Python and Ruby was added + + + + + +Highlighting +The following changes have been made to the + highlighting code + since the 1.74.0 release. + + +Jirka Kosek: cpp-hl.xml; c-hl.xml; tcl-hl.xml; php-hl.xml; common.xsl; perl-hl.xml; delphi⋯Upgraded to support the latest version of XSLTHL 2.0 + -- nested markup in highlited code is now processed + -- it is no longer needed to specify path XSLTHL configuration file using Java property + -- support for new languages, including Perl, Python and Ruby was added + + + + + + + + +Release Notes: 1.74.0 +This release includes important bug fixes and adds the following +significant feature changes: + + +.epub target +Paul Norton (Adobe) and Keith Fahlgren(O'Reilly Media) have donated code that generates .epub documents from +DocBook input. An alpha-reference implementation in Ruby has also been provided. +.epub is an open standard of the The International Digital Publishing Forum (IDPF), +a the trade and standards association for the digital publishing industry. +Read more about this target in epub/README + + + + +XHTML 1.1 target +To support .epub output, a strict XHTML 1.1 target has been added. The stylesheets for this output are +generated and are quite similar to the XHTML target. + + +Gentext updates +A number of locales have been updated. + + +Roundtrip improvements +Table, figure, template syncronization, and character style improvements have been made for WordML & Pages. Support added for OpenOffice.org. + + + + + First implementation of a libxslt extension + + A stylesheet extension for libxslt, written in Python, has been added. + The extension is a function for adjusting column widths in CALS tables. See + extensions/README.LIBXSLT for more information. + + + + + +The following is a list of changes that have been made + since the 1.73.2 release. + + +Gentext +The following changes have been made to the + gentext code + since the 1.73.2 release. + + +Michael(tm) Smith: locale/id.xmlChecked in changes to Indonesion locale submitted by Euis Luhuanam a long time ago. + + +Michael(tm) Smith: locale/lt.xmlAdded changes to Lithuanian locate submitted a long time back by Nikolajus Krauklis. + + +Michael(tm) Smith: locale/hu.xmlfixed error in lowercase.alpha definition in Hungarian locale + + +Michael(tm) Smith: locale/nb.xmlCorrected language code for nb locale, and restored missing "startquote" key. + + +Michael(tm) Smith: locale/ja.xmlCommitted changes to ja locale file, from Akagi Kobayashi. Adds bracket quotes around many xref instances that did not have them +before. + + +Michael(tm) Smith: Makefile"no" locale is now "nb" + + +Michael(tm) Smith: locale/nb.xmlUpdate Norwegian BokmÃ¥l translation. Thanks to Hans F. Nordhaug. + + +Michael(tm) Smith: locale/no.xml; locale/nb.xmlper message from Hans F. Nordhaug, correct identifier for +Norwegian BokmÃ¥l is "nb" (not "no") and has been for quite some +time now... + + +Michael(tm) Smith: locale/ja.xmlConverted ja.xml source file to use real unicode characters so +that the actual glyphs so up when you edit it in a text editor +(instead of the character references). + + +Michael(tm) Smith: locale/ja.xmlChecked in changes to ja.xml locale file. Thanks to Akagi Kobayashi. + + +Michael(tm) Smith: locale/it.xmlChanges from Federico Zenith + + +Dongsheng Song: locale/zh_cn.xmlAdded missing translations. + + + + + +Common +The following changes have been made to the + common code + since the 1.73.2 release. + + +Michael(tm) Smith: l10n.xslAdded new template "l10.language.name" for retrieving the +English-language name of the lang setting of the current document. +Closes #1916837. Thanks to Simon Kennedy. + + +Michael(tm) Smith: refentry.xslfixed syntax error + + +Michael(tm) Smith: refentry.xslfixed a couple of typos + + +Michael(tm) Smith: refentry.xslrefined handling of cases where refentry "source" or "manual" +metadata is missing or when we use fallback content instead. We +now report a Warning if we use fallback content. + + +Michael(tm) Smith: refentry.xsldon't use refmiscinfo@class=date value as fallback for refentry +"source" or "manual" metadata fields + + +Michael(tm) Smith: refentry.xslMade reporting of missing refentry metadata more quiet: + + - we no longer report anything if usable-but-not-preferred + metadata is found; we just quietly use whatever we manage to + find + + - we now only report missing "source" metadata if the refentry + is missing BOTH "source name" and "version" metadata; if it + has one but not the other, we use whichever one it has and + don't report anything as missing + +The above changes were made because testing with some "real world" +source reveals that some authors are intentionally choosing to use +"non preferred" markup for some metadata, and also choosing to +omit "source name" or "version" metadata in there DocBook XML. So +it does no good to give them pedantic reminders about what they +already know... + +Also, changed code to cause "fixme" text to be inserted in output +in particular cases: + + - if we can't manage to find any "source" metadata at all, we + now put fixme text into the output + + - if we can't manage to find any "manual" metadata a all, we + now put fixme text into the output + +The "source" and "manual" metadata is necessary information, so +buy putting the fixme stuff in the output, we alert users to the +need problem of it being missing. + + +Michael(tm) Smith: refentry.xslWhen generating manpages output, we no longer report anything if +the refentry source is missing date or pubdate content. In +practice, many users intentionally omit the date from the source +because they explicitly want it to be generated. + + +Michael(tm) Smith: l10n.xmlfurther change needed for switch from no locale to nb. + + +Michael(tm) Smith: common.xslAdded support for orgname in authorgroup. Thanks to Camille +Bégnis. + + +Michael(tm) Smith: Makefile"no" locale is now "nb" + + +Mauritz Jeanson: stripns.xslRemoved the template matching "ng:link|db:link" (in order to make @xlink:show +work with <link> elements). As far as I can tell, this template is no longer needed. + + +Mauritz Jeanson: entities.entMoved declaration of comment.block.parents entity to common/entities.ent. + + +Mauritz Jeanson: titles.xslAdded an update the fix made in revision 7528 (handling of xref/link in no.anchor.mode mode). +Having xref in title is not a problem as long as the target is not an ancestor element. +Closes bug #1838136. + +Note that an xref that is in a title and whose target is an ancestor element is still not +rendered in the TOC. This could be considered a bug, but on the other hand I cannot really +see the point in having such an xref in a document. + + +Mauritz Jeanson: titles.xslAdded a "not(ancestor::title)" test to work around "too many nested +apply-templates" problems when processing xrefs or links in no.anchor.mode mode. +Hopefully, this closes bug #1811721. + + +Mauritz Jeanson: titles.xslRemoved old template matching "link" in no.anchor.mode mode. + + +Mauritz Jeanson: titles.xslProcess <link> in no.anchor.mode mode with the same template as <xref>. +Closes bug #1759205 (Empty link in no.anchor.mode mode). + + +Mauritz Jeanson: titles.xslIn no.anchor.mode mode, do not output anchors for elements that are descendants +of <title>. Previously, having inline elements with @id/@xml:id in <title>s +resulted in anchors both in the TOC and in the main flow. Closes bug #1797492. + + + + + +FO +The following changes have been made to the + fo code + since the 1.73.2 release. + + Mauritz Jeanson: pi.xslUpdated documentation for keep-together. + Mauritz Jeanson: task.xslEnabled use of the keep-together PI on task elements. + +Robert Stayton: index.xslFOP1 requires fo:wrapper for inline index entries, not fo:inline. + + +Robert Stayton: index.xslFixed non-working inline.or.block template for indexterm wrappers. +Add fop1 to list of processors using inline.or.block. + + +Mauritz Jeanson: table.xslFixed bug #1891965 (colsep in entytbl not working). + + +Mauritz Jeanson: titlepage.xslAdded support for title in revhistory. Closes bug #1842847. + + +Mauritz Jeanson: pi.xslSmall doc cleanup (dbfo float-type). + + +Mauritz Jeanson: titlepage.xslInsert commas between multiple copyright holders. + + +Mauritz Jeanson: autotoc.xsl; division.xslAdded modifications to support nested set elements. See bug #1853172. + + +David Cramer: glossary.xslAdded normalize-space to xsl:sorts to avoid missorting of glossterms due to stray leading spaces. + + +David Cramer: glossary.xslFixed bug #1854199: glossary.xsl should use the sortas attribute on glossentry + + +Mauritz Jeanson: inline.xslAdded a template for citebiblioid. The hyperlink target is the parent of the referenced biblioid, +and the "hot text" is the biblioid itself enclosed in brackets. + + +Mauritz Jeanson: inline.xslMoved declaration of comment.block.parents entity to common/entities.ent. + + +Mauritz Jeanson: docbook.xslUpdated message about unmatched element. + + +Mauritz Jeanson: param.xwebAdded link to profiling chapter of TCG. + + +Mauritz Jeanson: refentry.xslFixed typo (refsynopsysdiv -> refsynopsisdiv). + + +David Cramer: fop.xsl; fop1.xsl; ptc.xsl; xep.xslAdded test to check generate.index param when generating pdf bookmarks + + +Mauritz Jeanson: graphics.xslAdded support for MathML in imagedata. + + +Michael(tm) Smith: math.xslRemoved unnecessary extra test condition in test express that +checks for passivetex. + + +Michael(tm) Smith: math.xslDon't use fo:instream-foreign-object if we are processing with +passivetex. Closes #1806899. Thanks to Justus Piater. + + +Mauritz Jeanson: component.xslAdded code to output a TOC for an appendix in an article when +generate.toc='article/appendix toc'. Closes bug #1669658. + + +Dongsheng Song: biblio-iso690.xslChange encoding from "windows-1250" to "UTF-8". + + +Mauritz Jeanson: pi.xslUpdated documentation for dbfo_label-width. + + +Mauritz Jeanson: lists.xslAdded support for the dbfo_label-width PI in calloutlists. + + +Robert Stayton: biblio.xslSupport finding glossary database entries inside bibliodivs. + + +Robert Stayton: formal.xslComplete support for <?dbfo pgwide="1"?> for informal +elements too. + + +Mauritz Jeanson: table.xslIn the table.block template, added a check for the dbfo_keep-together PI, so that +a table may break (depending on the PI value) at a page break. This was needed +since the outer fo:block that surrounds fo:table has keep-together.within-column="always" +by default, which prevents the table from breaking. Closes bug #1740964 (Titled +table does not respect dbfo PI). + + +Mauritz Jeanson: pi.xslAdded a few missing @role="tcg". + + +Mauritz Jeanson: inline.xslUse normalize-space() in glossterm comparisons (as in html/inline.xsl). + + +Mauritz Jeanson: autoidx.xslRemoved the [&scope;] predicate from the target variable in the template with name="reference". +This filter was the cause of missing index backlinks when @zone and @type were used on indexterms, +with index.on.type=1. Closes bug #1680836. + + +Michael(tm) Smith: inline.xsl; xref.xsl; footnote.xslAdded capability in FO output for displaying URLs for all +hyperlinks (elements marked up with xlink:href attributes) in the +same way as URLs for ulinks are already handled (which is to say, +either inline or as numbered footnotes). + +Background on this change: +DocBook 5 allows "ubiquitous" linking, which means you can make +any element a hyperlink just by adding an xlink:href attribute to +it, with the value set to an external URL. That's in contrast to +DocBook 4, which only allows you to use specific elements (e.g., +the link and ulink elements) to mark up hyperlinks. + +The existing FO stylesheets have a mechanism for handling display +of URLs for hyperlinks that are marked up with ulink, but they did +not handle display of URLs for elements that were marked up with +xlink:href attributes. This change adds handling for those other +elements, enabling the URLs they link to be displayed either +inline or as numbered footnotes (depending on what values the user +has the ulink.show and ulink.footnotes params set to). + +Note that this change only adds URL display support for elements +that call the simple.xlink template -- which currently is most +(but not all) inline elements. + +This change also moves the URL display handling out of the ulink +template and into a new "hyperlink.url.display" named template; +the ulink template and the simple.xlink named template now both +call the hyperlink.url.display template. + +Warning: In the stylesheet code that determines what footnote +number to assign to each footnote or external hyperlink, there is +an XPath expression for determining whether a particular +xlink:href instance is an external hyperlink; that expression is +necessarily a bit complicated and further testing may reveal that +it doesn't handle all cases as expected -- so some refinements to +it may need to be done later. + +Closes #1785519. Thanks to Ken Morse for reporting and +troubleshooting the problem. + + + + + +HTML +The following changes have been made to the + html code + since the 1.73.2 release. + + Keith Fahlgren: inline.xsl; synop.xslWork to make HTML and XHTML targets more valid + Keith Fahlgren: table.xslAdd better handling for tables that have footnotes in the titles + Keith Fahlgren: biblio.xslAdd anchors to bibliodivs + +Keith Fahlgren: formal.xsl; Makefile; htmltbl.xslInitial checkin/merge of epub target from work provided by Paul Norton of Adobe +and Keith Fahlgren of O'Reilly. +This change includes new code for generating the XHTML 1.1 target sanely. + + +Mauritz Jeanson: biblio.xslAdded code for creating URLs from biblioids with @class="doi" (representing Digital +Object Identifiers). See FR #1934434 and http://doi.org. + +To do: 1) Add support for FO output. 2) Figure out how @class="doi" should be handled +for bibliorelation, bibliosource and citebiblioid. + + +Norman Walsh: formal.xslDon't use xsl:copy because it forces the resulting element to be in the same namespace as the source element; in the XHTML stylesheets, that's wrong. But the HTML-to-XHTML converter does the right thing with literal result elements, so use one of them. + + +Michael(tm) Smith: MakefileAdded checks and hacks to various makefiles to enable building +under Cygwin. This stuff is ugly and maybe not worth the mess and +trouble, but does seem to work as expected and not break anything +else. + + +Michael(tm) Smith: docbook.xsladded "exslt" namespace binding to html/docbook.xsl file (in +addition to existing "exsl" binding. reason is because lack of it +seems to cause processing problems when using the profiled +version of the stylsheet + + +Norman Walsh: chunk-common.xslRename link + + +Mauritz Jeanson: table.xslAdded a fix to make rowsep apply to the last row of thead in entrytbl. + + +Michael(tm) Smith: synop.xslSimplified and streamlined handling of output for ANSI-style +funcprototype output, to correct a problem that was causing type +data to be lost in the output parameter definitions. For example, +for an instance like this: + <paramdef>void *<parameter>dataptr</parameter>[]</paramdef> +... the brackets (indicating an array type) were being dropped. + + +Michael(tm) Smith: synop.xslChanged HTML handling of K&R-style paramdef output. The parameter +definitions are no longer output in a table (though the prototype +still is). The reason for the change is that the +kr-tabular-funcsynopsis-mode template was causing type data to be +lost in the output parameter definitions. For example, for an +instance like this: + <paramdef>void *<parameter>dataptr</parameter>[]</paramdef> +... the brackets (indicating an array type) were being dropped. +The easiest way to deal with the problem is to not try to chop up +the parameter definitions and display them in table format, but to +instead just output them as-is. May not look quite as pretty, but +at least we can be sure no information is being lost... + + +Michael(tm) Smith: pi.xslupdated wording of doc for funcsynopsis-style PI + + +Michael(tm) Smith: param.xweb; param.ent; synop.xslRemoved the funcsynopsis.tabular.threshold param. It's no longer +being used in the code and hasn't been since mid 2006. + + +Mauritz Jeanson: graphics.xslAdded support for the img.src.path parameter for SVG graphics. Closes bug #1888169. + + +Mauritz Jeanson: chunk-common.xslAdded missing space. + + +Norman Walsh: component.xslFix bug where component titles inside info elements were not handled properly + + +Michael(tm) Smith: pi.xslMoved dbhtml_stop-chunking embedded doc into alphabetical order, +fixed text of TCG section it see-also'ed. + + +David Cramer: pi.xslAdded support for <?dbhtml stop-chunking?> processing instruction + + +David Cramer: chunk-common.xsl; pi.xslAdded support for <?dbhtml stop-chunking?> processing instruction + + +David Cramer: glossary.xslFixed bug #1854199: glossary.xsl should use the sortas attribute on glossentry. Also added normalize-space to avoid missorting due to stray leading spaces. + + +Mauritz Jeanson: inline.xslAdded a template for citebiblioid. The hyperlink target is the parent of the referenced biblioid, +and the "hot text" is the biblioid itself enclosed in brackets. + + +Mauritz Jeanson: inline.xslAdded support for @xlink:show in the simple.xlink template. The "new" and "replace" +values are supported (corresponding to values of "_blank" and "_top" for the +ulink.target parameter). I have assumed that @xlink:show should override ulink.target +for external URI links. This closes bugs #1762023 and #1727498. + + +Mauritz Jeanson: inline.xslMoved declaration of comment.block.parents entity to common/entities.ent. + + +Mauritz Jeanson: param.xwebAdded link to profiling chapter of TCG. + + +Dongsheng Song: biblio-iso690.xslChange encoding from "windows-1250" to "UTF-8". + + +Robert Stayton: biblio.xslAdd support in biblio collection to entries in bibliodivs. + + +Mauritz Jeanson: pi.xslAdded missing @role="tcg". + + +Mauritz Jeanson: chunk-common.xsl; titlepage.xslRefactored legalnotice/revhistory chunking, so that the use.id.as.filename +parameter as well as the dbhtml_filename PI are taken into account. A new named +template in titlepage.xsl is used to compute the filename. + + +Mauritz Jeanson: chunk-common.xsl; titlepage.xslAn update to the fix for bug #1790495 (r7433): +The "ln-" prefix is output only when the legalnotice doesn't have an +@id/@xml:id, in which case the stylesheets generate an ID value, +resulting in a filename like "ln-7e0fwgj.html". This is useful because +without the prefix, you wouldn't know that the file contained a legalnotice. +The same logic is also applied to revhistory, using an "rh-" prefix. + + +Mauritz Jeanson: autoidx.xslRemoved the [&scope;] predicate from the target variable in the template with name="reference". +This filter was the cause of missing index backlinks when @zone and @type were used on indexterms, +with index.on.type=1. Closes bug #1680836. + + +Mauritz Jeanson: titlepage.xslAdded 'ln-' prefix to the name of the legalnotice chunk, in order to match the +<link href"..."> that is output by make.legalnotice.head.links (chunk-common.xsl). +Modified the href attribute on the legalnotice link. +Closes bug #1790495. + + + + + +Manpages +The following changes have been made to the + manpages code + since the 1.73.2 release. + + +Michael(tm) Smith: other.xslslightly adjusted spacing around admonition markers + + +Michael(tm) Smith: refentry.xsl; utility.xslmake sure refsect3 titles are preceded by a line of space, and +make the indenting of their child content less severe + + +Michael(tm) Smith: block.xslonly indent verbatim environments in TTY output, not in non-TTY/PS + + +Michael(tm) Smith: block.xslmade another adjustment to correct vertical alignment of admonition marker + + +Michael(tm) Smith: block.xsl; other.xslAdjusted/corrected alignment of adominition marker in PS/non-TTY output. + + +Michael(tm) Smith: endnotes.xslFor PS/non-TTY output, display footnote/endnote numbers in +superscript. + + +Michael(tm) Smith: table.xsl; synop.xsl; utility.xslChanged handling of hanging indents for cmdsynopsis, funcsynopsis, +and synopfragment such that they now look correct in non-TTY/PS +output. We now use the groff \w escape to hang by the actual width +-- in the current font -- of the command, funcdef, or +synopfragment references number (as opposed to hanging by the +number of characters). This rendering in TTY output remains the +same, since the width in monospaced TTY output is the same as the +number of characters. + +Also, created new synopsis-block-start and synopsis-block-end +templates to use for cmdsynopsis and funcsynopsis instead of the +corresponding verbatim-* templates. + +Along with those changes, also corrected a problem that caused the +content of synopfragment to be dropped, and made a +vertical-spacing change to adjust spacing around table titles and +among sibling synopfragment instances. + + +Michael(tm) Smith: other.xsluse common l10.language.name template to retrieve English-language name + + +Michael(tm) Smith: synop.xsl; inline.xsladded comment in code explaining why we don't put filename output +in italic (despite the fact that man guidelines say we should) + + +Michael(tm) Smith: inline.xslput filename output in monospace instead of italic + + +Michael(tm) Smith: synop.xslput cmdsynopsis in monospace + + +Michael(tm) Smith: inline.xslremoved template match for literal. template matches for monospace +inlines are all imported from the HTML stylesheet + + +Michael(tm) Smith: block.xsldon't indent verbatim environments that are descendants of +refsynopsisdiv, not put backgrounds behind them + + +Michael(tm) Smith: inline.xslset output of the literal element in monospace. this causes all +inline monospace instances in the git man pages to be set in +monospace (since DocBook XML source for git docs is generated with +asciidoc and asciidoc consistently outputs only <literal> for +inline monospace (not <command> or <code> or anything else). +Of course this only affects non-TTY output... + + +Michael(tm) Smith: utility.xslAdded inline.monoseq named template. + + +Michael(tm) Smith: utility.xsldon't bother using a custom register to store the previous +font-family value when setting blocks of text in code font; just +use \F[] .fam with no arg to switch back + + +Michael(tm) Smith: endnotes.xslput links in blue in PS output (note that this matches how groff +renders content marked up with the .URL macro) + + +Michael(tm) Smith: endnotes.xsl; param.xweb; param.entremoved man.links.are.underlined and added man.font.links. Also, +changed the default font formatting for links to bold. + + +Michael(tm) Smith: endnotes.xsl; param.xweb; param.entAdded new param man.base.url.for.relative.links .. specifies a +base URL for relative links (for ulink, @xlink:href, imagedata, +audiodata, videodata) shown in the generated NOTES section of +man-page output. The value of man.base.url.for.relative.links is +prepended to any relative URI that is a value of ulink url, +xlink:href, or fileref attribute. + +If you use relative URIs in link sources in your DocBook refentry +source, and you leave man.base.url.for.relative.links unset, the +relative links will appear "as is" in the NOTES section of any +man-page output generated from your source. That's probably not +what you want, because such relative links are only usable in the +context of HTML output. So, to make the links meaningful and +usable in the context of man-page output, set a value for +man.base.url.for.relative.links that points +to the online version of HTML output generated from your DocBook +refentry source. For example: + + <xsl:param name="man.base.url.for.relative.links" + >http://www.kernel.org/pub/software/scm/git/docs/</xsl:param> + + +Michael(tm) Smith: info.xslIf a source refentry contains a Documentation or DOCUMENTATION +section, don't report it as having missing AUTHOR information. +Also, if missing a contrib/personblurb for a person or org, report +pointers to http://docbook.sf.net/el/personblurb and to +http://docbook.sf.net/el/contrib + + +Michael(tm) Smith: info.xslIf we encounter an author|editor|othercredit instance that lacks a +personblurb or contrib, report it to the user (because that means +we have no information about that author|editor|othercredit to +display in the generated AUTHOR|AUTHORS section...) + + +Michael(tm) Smith: info.xsl; docbook.xsl; other.xslif we can't find any usable author data, emit a warning and insert +a fixme in the output + + +Michael(tm) Smith: info.xslfixed bug in indenting of output for contrib instances in AUTHORS +section. Thanks to Daniel Leidert and the fglrx docs for exposing +the bug. + + +Michael(tm) Smith: block.xslfor a para or simpara that is the first child of a callout, +suppress the .sp or .PP that would normally be output (because in +those cases, the output goes into a table cell, and the .sp or .PP +markup causes a spurious linebreak before it when displayed + + +Michael(tm) Smith: lists.xslAdded support for rendering co callouts and calloutlist instances. +So you can now use simple callouts -- marking up programlisting +and such with co instances -- and have the callouts displayed in +man-page output. ("simple callouts" means using co@id and +callout@arearefs pointing to co@id instances; in man/roff output, +we can't/don't support markup that uses areaset and area) + + +Michael(tm) Smith: block.xslonly put a line of space after a verbatim if it's followed by a +text node or a paragraph + + +Michael(tm) Smith: utility.xslput verbatim environments in slightly smaller font in non-TTY +output + + +Michael(tm) Smith: lists.xslminor whitespace-only reformatting of lists.xsl source + + +Michael(tm) Smith: lists.xslMade refinements/fixes to output of orderedlist and itemizedlist +-- in part, to get mysql man pages to display correctly. This +change causes a "\c" continuation marker to be added between +listitem markers and contents (to ensure that the content remains +on the same line as the marker when displayed) + + +Michael(tm) Smith: block.xslput a line of vertical space after all verbatim output that has +sibling content following it (not just if that sibling content is +a text node) + + +Michael(tm) Smith: block.xslrefined spacing around titles for admonitions + + +Michael(tm) Smith: block.xsl; other.xslDeal with case of verbatim environments that have a linebreak +after the opening tag. Assumption is that users generally don't +want that linebreak to appear in output, so we do some groff +hackery to mess with vertical spacing and close the space. + + +Michael(tm) Smith: inline.xslindexterm instances now produce groff comments like this: + + .\" primary: secondary: tertiary + +remark instances, if non-empty, now produce groff comments + + +Michael(tm) Smith: charmap.groff.xsl; other.xslconvert no-break space character to groff "\ \&" (instead of just +"\ "). the reason is that if a space occurs at the end of a line, +our processing causes it to be eaten. a real-world case of this is +the mysql(1) man page. appending the "\&" prevents that + + +Michael(tm) Smith: block.xsloutput "sp" before simpara output, not after it (outputting it +after results in undesirable whitespace in particular cases; for +example, in the hg/mercurial docs + + +Michael(tm) Smith: table.xsl; synop.xsl; utility.xslrenamed from title-preamble to pinch.together and replaced "sp -1" +between synopsis fragments with call to pinch.together instead + + +Michael(tm) Smith: table.xsluse title-preamble template for table titles (instead of "sp -1" +hack), and "sp 1" after all tables (instead of just "sp" + + +Michael(tm) Smith: utility.xslcreated title-preamble template for suppressing line spacing after +headings + + +Michael(tm) Smith: info.xslfurther refinement of indenting in AUTHORS section + + +Michael(tm) Smith: block.xsl; other.xslrefined handling of admonitions + + +Michael(tm) Smith: lists.xslUse RS/RE in another place where we had IP "" + + +Michael(tm) Smith: info.xslReplace (ab)use of IP with "sp -1" in AUTHORS section with RS/RE +instead. + + +Michael(tm) Smith: table.xsl; synop.xsl; info.xslchanged all instances of ".sp -1n" to ".sp -1" + + +Michael(tm) Smith: other.xsladd extra line before SH heads only in non-TTY output + + +Michael(tm) Smith: block.xslReworked output for admonitions (caution, important, note, tip, +warning). In TTY output, admonitions now get indented. In non-TTY +output, a colored marker (yellow) is displayed next to them. + + +Michael(tm) Smith: other.xslAdded BM/EM macros for putting a colored marker in margin next to +a block of text. + + +Michael(tm) Smith: utility.xslcreated make.bold.title template by moving title-bolding part out +from nested-section-title template. This allows the bolding to +also be used by the template for formatting admonitions + + +Michael(tm) Smith: info.xslput .br before copyright contents to prevent them from getting run in + + +Michael(tm) Smith: refentry.xsl; other.xsl; utility.xslmade point size of output for Refsect2 and Refsect3 heads bigger + + +Michael(tm) Smith: other.xslput slightly more space between SH head and underline in non-TTY +output + + +Michael(tm) Smith: param.xweb; param.ent; other.xslAdded the man.charmap.subset.profile.english parameter and refined +the handling of charmap subsets to differentiate between English +and non-English source. + +This way charmap subsets are now handled is this: + +If the value of the man.charmap.use.subset parameter is non-zero, +and your DocBook source is not written in English (that is, if its +lang or xml:lang attribute has a value other than en), then the +character-map subset specified by the man.charmap.subset.profile +parameter is used instead of the full roff character map. + +Otherwise, if the lang or xml:lang attribute on the root element +in your DocBook source or on the first refentry element in your +source has the value en or if it has no lang or xml:lang +attribute, then the character-map subset specified by the +man.charmap.subset.profile.english parameter is used instead of +man.charmap.subset.profile. + +The difference between the two subsets is that +man.charmap.subset.profile provides mappings for characters in +Western European languages that are not part of the Roman +(English) alphabet (ASCII character set). + + +Michael(tm) Smith: other.xslVarious updates, mainly related to uppercasing SH titles: + + - added a "Language: " metadata line to the top comment area of + output man pages, to indicate the language the page is in + + - added a "toupper" macro of doing locale-aware uppercasing of + SH titles and cross-references to SH titles; the mechanism + relies on the uppercase.alpha and lowercase.alpha DocBook + gentext keys to do locale-aware uppercasing based on the + language the page is written in + + - added a "string.shuffle" template, which provides a library + function for "shuffling" two strings together into a single + string; it takes the first character for the first string, the + first character from second string, etc. The only current use + for it is to generate the argument for the groff tr request + that does string uppercasing. + + - added make.tr.uppercase.arg and make.tr.normalcase.arg named + templates for use in generating groff code for uppercasing and + "normal"-casing SH titles + + - made the BB/BE "background drawing" macros have effect only in + non-TTY output + + - output a few comments in the top part of source + + +Michael(tm) Smith: utility.xslremoved some leftover kruft + + +Michael(tm) Smith: refentry.xslTo create the name(s) for each man page, we now replace any spaces +in the refname(s) with underscores. This ensures that tools like +lexgrog(1) will be able to parse the name (lexgrog won't parse +names that contain spaces). + + +Michael(tm) Smith: docbook.xslPut a comment into source of man page to indicate where the main +content starts. (We now have a few of macro definitions at the +start of the source, so putting this comment in helps those that +might be viewing the source.) + + +Michael(tm) Smith: refentry.xslrefined mechanism for generating SH titles + + +Michael(tm) Smith: charmap.groff.xslAdded zcaron, Zcaron, scaron, and Scaron to the groff character map. +This means that generated Finnish man pages will no longer contain +any raw accented characters -- they'll instead by marked up with +groff escapes. + + +Michael(tm) Smith: other.xsl; utility.xslcorrected a regression I introduced about a year ago that caused +dots to be output just as "\." -- instead needs to be "\&." (which +is what it will be now, after this change) + + +Michael(tm) Smith: refentry.xslChanged backend handling for generating titles for SH sections and +for cross-references to those sections. This should have no effect +on TTY output (behavior should remain the same hopefully) but +results in titles in normal case (instead of uppercase) in PS +output. + + +Michael(tm) Smith: info.xsluse make.subheading template to make subheadings for AUTHORS and +COPYRIGHT sections (instead of harcoding roff markup) + + +Michael(tm) Smith: block.xslput code font around programlisting etc. + + +Michael(tm) Smith: synop.xsl; docbook.xslembed custom macro definitions in man pages, plus wrap synopsis in +code font + + +Michael(tm) Smith: endnotes.xsluse the make.subheading template to generated SH subheading for +endnotes section. + + +Michael(tm) Smith: lists.xslAdded some templates for generating if-then-else conditional +markup in groff, so let's use those instead of hard-coding it in +multiple places... + + +Michael(tm) Smith: other.xsl; utility.xslInitial checkin of some changes related to making PS/PDF output +from "man -l -Tps" look better. The current changes: + + - render synopsis and verbatim sections in a monospace/code font + + - put a light-grey background behind all programlisting, screen, + and literallayout instances + + - prevent SH heads in PS output from being rendered in uppercase + (as they are in console output) + + - also display xrefs to SH heads in PS output in normal case + (instead of uppercase) + + - draw a line under SH heads in PS output + +The changes made to the code to support the above features were: + + - added some embedded/custom macros: one for conditionally + upper-casing SH x-refs, one for redefining the SH macro + itself, with some conditional handling for PS output, and + finally a macro for putting a background/screen (filled box) + around a block of text (e.g., a program listing) in PS output + + - added utility templates for wrapping blocks of text in code + font; also templates for inline code font + + +Robert Stayton: refentry.xslrefpurpose nodes now get apply-templates instead of just normalize-space(). + + +Michael(tm) Smith: lists.xslFixed alignment of first lined of text for each listitem in +orderedlist output for TTY. Existing code seemed to have been +causing an extra undesirable space to appear. + + +Michael(tm) Smith: lists.xslWrapped some roff conditionals around roff markup for orderedlist +and itemizedlist output, so that the lists look acceptable in PS +output as well as TTY. + + +Michael(tm) Smith: pi.xsl; synop.xsl; param.xweb; param.entAdded the man.funcsynopsis.style parameter. Has the same effect in +manpages output as the funcsynopsis.style parameter has in HTML +output -- except that its default value is 'ansi' instead of 'kr'. + + +Michael(tm) Smith: synop.xslReworked handling of K&R funcprototype output. It no longer relies +on the HTML kr-tabular templates, but instead just does direct +transformation to roff. For K&R output, it displays the paramdef +output in an indented list following the prototype. + + +Michael(tm) Smith: synop.xslProperly integrated handling for K&R output into manpages +stylesheet. The choice between K&R output and ANSI output is +currently controlled through use of the (HTML) funcsynopsis.style +parameter. Note that because the mechanism does currently rely on +funcsynopsis.style, the default in manpages output is now K&R +(because that's the default of that param). But I suppose I ought +to create a man.funcsynopsis.style and make the default for that +ANSI (to preserve the existing default behavior). + + +Michael(tm) Smith: docbook.xsladded manpages/pi.xsl file + + +Michael(tm) Smith: .cvsignore; pi.xslAdded "dbman funcsynopsis-style" PI and incorporated it into the +doc build. + + +Michael(tm) Smith: refentry.xslFixed regression that caused an unescaped dash to be output +between refname and refpurpose content. Closes bug #1894244. +Thanks to Daniel Leidert. + + +Michael(tm) Smith: other.xslFixed problem with dots being escaped in filenames of generated +man files. Closes #1827195. Thanks to Daniel Leidert. + + +Michael(tm) Smith: inline.xslAdded support for processing structfield (was appearing in roff +output surrounded by HTML <em> tags; fixed so that it gets roff +ital markup). Closes bug #1858329. Thanks to Sam Varshavchik. + + + + + +Epub +The following changes have been made to the + epub code + since the 1.73.2 release. + + Keith Fahlgren: bin/spec/README; bin/spec/epub_realbook_spec.rb'Realbook' spec now passes + Keith Fahlgren: bin/dbtoepub; README; bin/spec/README; bin/lib/docbook.rb; bin/spec/epub_r⋯Very primitive Windows support for dbtoepub reference implementation; README for running tests and for the .epub target in general; shorter realbook test document (still fails for now) + Keith Fahlgren: bin/dbtoepub; bin/spec/epub_regressions_spec.rb; bin/lib/docbook.rb; bin/s⋯Changes to OPF spine to not duplicate idrefs for documents with parts not at the root; regression specs for same + Keith Fahlgren: docbook.xslFixing linking to cover @id, distinct from other needs of cover-image-id (again, thanks to Martin Goerner) + Keith Fahlgren: docbook.xslUpdating the title of the toc element in the guide to be more explicit (thanks to Martin Goerner) + +Keith Fahlgren: bin/spec/examples/amasque_exploded/content.opf; bin/spec/examples/amasque_⋯Initial checkin/merge of epub target from work provided by Paul Norton of Adobe +and Keith Fahlgren of O'Reilly. + + +Keith Fahlgren: docbook.xsl== General epub test support + +$ spec -O ~/.spec.opts spec/epub_spec.rb + +DocBook::Epub +- should be able to be created +- should fail on a nonexistent file +- should be able to render to a file +- should create a file after rendering +- should have the correct mimetype after rendering +- should be valid .epub after rendering an article +- should be valid .epub after rendering an article without sections +- should be valid .epub after rendering a book +- should be valid .epub after rendering a book even if it has one graphic +- should be valid .epub after rendering a book even if it has many graphics +- should be valid .epub after rendering a book even if it has many duplicated graphics +- should report an empty file as invalid +- should confirm that a valid .epub file is valid +- should not include PDFs in rendered epub files as valid image inclusions +- should include a TOC link in rendered epub files for <book>s + +Finished in 20.608395 seconds + +15 examples, 0 failures + + +== Verbose epub test coverage against _all_ of the testdocs + +Fails on only (errors truncated): +1) +'DocBook::Epub should be able to render a valid .epub for the test document /Users/keith/work/docbook-dev/trunk/xsl/epub/bin/spec/testdocs/calloutlist.003.xml [30]' FAILED +'DocBook::Epub should be able to render a valid .epub for the test document /Users/keith/work/docbook-dev/trunk/xsl/epub/bin/spec/testdocs/cmdsynopsis.001.xml [35]' FAILED +.... + +Finished in 629.89194 seconds + +224 examples, 15 failures + +224 examples, 15 failures yields 6% failure rate + + + + + +HTMLHelp +The following changes have been made to the + htmlhelp code + since the 1.73.2 release. + + +Mauritz Jeanson: htmlhelp-common.xslAdded <xsl:with-param name="quiet" select="$chunk.quietly"/> to calls to +the write.chunk, write.chunk.with.doctype, and write.text.chunk templates. +This makes chunk.quietly=1 suppress chunk filename messages also for help +support files (which seems to be what one would expect). See bug #1648360. + + + + + +Eclipse +The following changes have been made to the + eclipse code + since the 1.73.2 release. + + +David Cramer: eclipse.xslUse sortas attributes (if they exist) when sorting indexterms + + +David Cramer: eclipse.xslAdded support for indexterm/see in eclipse index.xml + + +Mauritz Jeanson: eclipse.xslAdded <xsl:with-param name="quiet" select="$chunk.quietly"/> +to helpidx template. + + +David Cramer: eclipse.xslGenerate index.xml file and add related goo to plugin.xml file. Does not yet support see and seealso. + + +Mauritz Jeanson: eclipse.xslAdded <xsl:with-param name="quiet" select="$chunk.quietly"/> to calls to +the write.chunk, write.chunk.with.doctype, and write.text.chunk templates. +This makes chunk.quietly=1 suppress chunk filename messages also for help +support files (which seems to be what one would expect). See bug #1648360. + + + + + +JavaHelp +The following changes have been made to the + javahelp code + since the 1.73.2 release. + + +Mauritz Jeanson: javahelp.xslAdded <xsl:with-param name="quiet" select="$chunk.quietly"/> to calls to +the write.chunk, write.chunk.with.doctype, and write.text.chunk templates. +This makes chunk.quietly=1 suppress chunk filename messages also for help +support files (which seems to be what one would expect). See bug #1648360. + + + + + +Roundtrip +The following changes have been made to the + roundtrip code + since the 1.73.2 release. + + +Steve Ball: blocks2dbk.xsl; wordml2normalise.xslfix table/cell borders for wordml, fix formal figure, add emphasis-strong + + +Mauritz Jeanson: supported.xmlChanged @cols to 5. + + +Steve Ball: blocks2dbk.xsl; blocks2dbk.dtd; template.xmladded pubdate, fixed metadata handling in biblioentry + + +Steve Ball: supported.xmlAdded support for edition. + + +Steve Ball: docbook-pages.xsl; wordml-blocks.xsl; docbook.xsl; wordml.xsl; pages-normalise⋯Removed stylesheets for old, deprecated conversion method. + + +Steve Ball: specifications.xml; dbk2ooo.xsl; blocks2dbk.xsl; dbk2pages.xsl; blocks2dbk.dtd⋯Added support for Open Office, added edition element, improved list and table support in Word and Pages + + +Steve Ball: normalise-common.xsl; blocks2dbk.xsl; dbk2pages.xsl; template-pages.xml; templ⋯Fixed bug in WordML table handling, improved table handling for Pages 08, synchronised WordML and Pages templates. + + +Steve Ball: normalise-common.xsl; blocks2dbk.xsl; wordml2normalise.xsl; dbk2wp.xslfix caption, attributes + + +Steve Ball: specifications.xml; blocks2dbk.xsl; wordml2normalise.xsl; blocks2dbk.dtd; temp⋯Fixes to table and list handling + + +Steve Ball: blocks2dbk.xsladded support for explicit emphasis character styles + + +Steve Ball: wordml2normalise.xsladded support for customisation in image handling + + +Steve Ball: blocks2dbk.xslAdded inlinemediaobject support for metadata. + + +Steve Ball: normalise-common.xsl; blocks2dbk.xsl; template.xml; dbk2wordml.xsl; dbk2wp.xslAdded support file. Added style locking. Conversion bug fixes. + + + + + +Slides +The following changes have been made to the + slides code + since the 1.73.2 release. + + +Michael(tm) Smith: fo/Makefile; html/MakefileAdded checks and hacks to various makefiles to enable building +under Cygwin. This stuff is ugly and maybe not worth the mess and +trouble, but does seem to work as expected and not break anything +else. + + +Jirka Kosek: html/plain.xslAdded support for showing foil number + + + + + +Website +The following changes have been made to the + website code + since the 1.73.2 release. + + +Michael(tm) Smith: extensions/saxon64/.classes/.gitignore; extensions/xalan2/.classes/com/⋯renamed a bunch more .cvsignore files to .gitignore (to facilitate use of git-svn) + + + + + +Params +The following changes have been made to the + params code + since the 1.73.2 release. + + Keith Fahlgren: epub.autolabel.xmlNew parameter for epub, epub.autolabel + +Mauritz Jeanson: table.frame.border.color.xml; table.cell.padding.xml; table.cell.border.t⋯Added missing refpurposes and descriptions. + + +Keith Fahlgren: ade.extensions.xmlExtensions to support Adobe Digital Editions extensions in .epub output. + + +Mauritz Jeanson: fop.extensions.xml; fop1.extensions.xmlClarified that fop1.extensions is for FOP 0.90 and later. Version 1 is not here yet... + + +Michael(tm) Smith: man.links.are.underlined.xml; man.endnotes.list.enabled.xml; man.font.l⋯removed man.links.are.underlined and added man.font.links. Also, +changed the default font formatting for links to bold. + + +Michael(tm) Smith: man.base.url.for.relative.links.xmlAdded new param man.base.url.for.relative.links .. specifies a +base URL for relative links (for ulink, @xlink:href, imagedata, +audiodata, videodata) shown in the generated NOTES section of +man-page output. The value of man.base.url.for.relative.links is +prepended to any relative URI that is a value of ulink url, +xlink:href, or fileref attribute. + +If you use relative URIs in link sources in your DocBook refentry +source, and you leave man.base.url.for.relative.links unset, the +relative links will appear "as is" in the NOTES section of any +man-page output generated from your source. That's probably not +what you want, because such relative links are only usable in the +context of HTML output. So, to make the links meaningful and +usable in the context of man-page output, set a value for +man.base.url.for.relative.links that points +to the online version of HTML output generated from your DocBook +refentry source. For example: + + <xsl:param name="man.base.url.for.relative.links" + >http://www.kernel.org/pub/software/scm/git/docs/</xsl:param> + + +Michael(tm) Smith: man.string.subst.map.xmlsqueeze .sp\n.sp into a single .sp (to prevent a extra, spurious +line of whitespace from being inserted after programlisting etc. +in certain cases) + + +Michael(tm) Smith: refentry.manual.fallback.profile.xml; refentry.source.fallback.profile.⋯don't use refmiscinfo@class=date value as fallback for refentry +"source" or "manual" metadata fields + + +Michael(tm) Smith: man.charmap.subset.profile.xml; man.charmap.enabled.xml; man.charmap.su⋯made some further doc tweaks related to the +man.charmap.subset.profile.english param + + +Michael(tm) Smith: man.charmap.subset.profile.xml; man.charmap.enabled.xml; man.charmap.su⋯Added the man.charmap.subset.profile.english parameter and refined +the handling of charmap subsets to differentiate between English +and non-English source. + +This way charmap subsets are now handled is this: + +If the value of the man.charmap.use.subset parameter is non-zero, +and your DocBook source is not written in English (that is, if its +lang or xml:lang attribute has a value other than en), then the +character-map subset specified by the man.charmap.subset.profile +parameter is used instead of the full roff character map. + +Otherwise, if the lang or xml:lang attribute on the root element +in your DocBook source or on the first refentry element in your +source has the value en or if it has no lang or xml:lang +attribute, then the character-map subset specified by the +man.charmap.subset.profile.english parameter is used instead of +man.charmap.subset.profile. + +The difference between the two subsets is that +man.charmap.subset.profile provides mappings for characters in +Western European languages that are not part of the Roman +(English) alphabet (ASCII character set). + + +Michael(tm) Smith: man.charmap.subset.profile.xmlAdded to default charmap used by manpages: + + - the "letters" part of the 'C1 Controls And Latin-1 Supplement + (Latin-1 Supplement)' Unicode block + - Latin Extended-A block (but not all of the characters from + that block have mappings in groff, so some of them are still + passed through as-is) + +The effects of this change are that in man pages generated for +most Western European languages and for Finnish, all characters +not part of the Roman alphabet are (e.g., "accented" characters) +are converted to groff escapes. + +Previously, by default we passed through those characters as is +(and users needed to use the full charmap if they wanted to have +those characters converted). + +As a result of this change, man pages generated for Western +European languages will be viewable in some environments in which +they are not viewable if the "raw" non-Roman characters are in them. + + +Mauritz Jeanson: generate.legalnotice.link.xml; generate.revhistory.link.xmlAdded information on how the filename is computed. + + +Mauritz Jeanson: default.table.width.xmlClarified PI usage. + + +Michael(tm) Smith: man.funcsynopsis.style.xmlAdded the man.funcsynopsis.style parameter. Has the same effect in +manpages output as the funcsynopsis.style parameter has in HTML +output -- except that its default value is 'ansi' instead of 'kr'. + + +Michael(tm) Smith: funcsynopsis.tabular.threshold.xmlRemoved the funcsynopsis.tabular.threshold param. It's no longer +being used in the code and hasn't been since mid 2006. + + +Mauritz Jeanson: table.properties.xmlSet keep-together.within-column to "auto". This seems to be the most sensible +default value for tables. + + +Mauritz Jeanson: informal.object.properties.xml; admon.graphics.extension.xml; informalequ⋯Several small documentation fixes. + + +Mauritz Jeanson: manifest.in.base.dir.xmlWording fixes. + + +Mauritz Jeanson: header.content.properties.xml; footer.content.properties.xmlAdded refpurpose. + + +Mauritz Jeanson: ulink.footnotes.xml; ulink.show.xmlUpdated for DocBook 5. + + +Mauritz Jeanson: index.method.xml; glossterm.auto.link.xmlSpelling and wording fixes. + + +Mauritz Jeanson: callout.graphics.extension.xmlClarifed available graphics formats and extensions. + + +Mauritz Jeanson: footnote.sep.leader.properties.xmlCorrected refpurpose. + + +Jirka Kosek: footnote.properties.xmlAdded more properties which make it possible to render correctly footnotes placed inside verbatim elements. + + +Mauritz Jeanson: img.src.path.xmlimg.src.path works with inlinegraphic too. + + +Mauritz Jeanson: saxon.character.representation.xmlAdded TCG link. + + +Mauritz Jeanson: img.src.path.xmlUpdated description of img.src.path. Bug #1785224 revealed that +there was a risk of misunderstanding how it works. + + + + + +Profiling +The following changes have been made to the + profiling code + since the 1.73.2 release. + + +Jirka Kosek: xsl2profile.xslAdded new rules to profile all content generated by HTML Help (including alias files) + + +Robert Stayton: profile-mode.xsluse mode="profile" instead of xsl:copy-of for attributes so +they can be more easily customized. + + + + + + +Tools +The following changes have been made to the + tools code + since the 1.73.2 release. + + +Michael(tm) Smith: make/Makefile.DocBookvarious changes and additions to support making with asciidoc as +an input format + + +Michael(tm) Smith: make/Makefile.DocBookmake dblatex the default PDF maker for the example makefile + + +Michael(tm) Smith: xsl/build/html2roff.xslReworked handling of K&R funcprototype output. It no longer relies +on the HTML kr-tabular templates, but instead just does direct +transformation to roff. For K&R output, it displays the paramdef +output in an indented list following the prototype. + + +Mauritz Jeanson: xsl/build/make-xsl-params.xslMade attribute-sets members of the param list. This enables links to attribute-sets in the +reference documentation. + + +Michael(tm) Smith: xsl/build/html2roff.xsluse .BI handling in K&R funsynopsis output for manpages, just as +we do already of ANSI output + + +Michael(tm) Smith: xsl/build/html2roff.xslImplemented initial support for handling tabular K&R output of +funcprototype in manpages output. Accomplished by adding more +templates to the intermediate HTML-to-roff stylesheet that the +build uses to create the manpages/html-synop.xsl stylesheet. + + +Michael(tm) Smith: xsl/build/doc-link-docbook.xslMade the xsl/tools/xsl/build/doc-link-docbook.xsl stylesheet +import profile-docbook.xsl, so that we can do profiling of release +notes. Corrected some problems in the target for the release-notes +HTML build. + + + + + +Extensions +The following changes have been made to the + extensions code + since the 1.73.2 release. + + Keith Fahlgren: MakefileUse DOCBOOK_SVN variable everywhere, please; build with PDF_MAKER + +Michael(tm) Smith: Makefilemoved extensions build targets from master xsl/Makefile to +xsl/extensions/Makefile + + +Michael(tm) Smith: .cvsignorere-adding empty extensions subdir + + + + + +XSL-Saxon +The following changes have been made to the + xsl-saxon code + since the 1.73.2 release. + + +Michael(tm) Smith: VERSIONbring xsl2, xsl-saxon, and xsl-xalan VERSION files up-to-date with +recent change to snapshot build infrastructure + + +Michael(tm) Smith: nbproject/build-impl.xml; nbproject/project.propertiesChanged hard-coded file references in "clean" target to variable +references. Closes #1792043. Thanks to Daniel Leidert. + + +Michael(tm) Smith: VERSION; MakefileDid post-release wrap-up of xsl-saxon and xsl-xalan dirs + + +Michael(tm) Smith: nbproject/build-impl.xml; VERSION; Makefile; testMore tweaks to get release-ready + + + + + +XSL-Xalan +The following changes have been made to the + xsl-xalan code + since the 1.73.2 release. + + +Michael(tm) Smith: VERSIONbring xsl2, xsl-saxon, and xsl-xalan VERSION files up-to-date with +recent change to snapshot build infrastructure + + +Michael(tm) Smith: nbproject/build-impl.xmlChanged hard-coded file references in "clean" target to variable +references. Closes #1792043. Thanks to Daniel Leidert. + + +Michael(tm) Smith: Makefile; VERSIONDid post-release wrap-up of xsl-saxon and xsl-xalan dirs + + +Michael(tm) Smith: Makefile; nbproject/build-impl.xml; VERSIONMore tweaks to get release-ready + + + + + +XSL-libxslt +The following changes have been made to the + xsl-libxslt code + since the 1.73.2 release. + + +Mauritz Jeanson: python/xslt.pyPrint the result to stdout if no outfile has been given. +Some unnecessary semicolons removed. + + +Mauritz Jeanson: python/xslt.pyAdded a function that quotes parameter values (to ensure that they are interpreted as strings). +Replaced deprecated functions from the string module with string methods. + + +Michael(tm) Smith: python/README; python/README.LIBXSLTrenamed xsl-libxslt/python/README to xsl-libxslt/python/README.LIBXSLT + + +Mauritz Jeanson: python/READMETweaked the text a little. + + + + + + + +Release Notes: 1.73.2 +This is solely a minor bug-fix update to the 1.73.1 release. + It fixes a packaging error in the 1.73.1 package, as well as a + bug in footnote handling in FO output. + + + +Release: 1.73.1 +This is mostly a bug-fix update to the 1.73.0 release. + + +Gentext +The following changes have been made to the + gentext code + since the 1.73.0 release. + + +Mauritz Jeanson: locale/de.xmlApplied patch #1766009. + + +Michael(tm) Smith: locale/lv.xmlAdded localization for ProductionSet. + + + + + +FO +The following changes have been made to the + fo code + since the 1.73.0 release. + + +Mauritz Jeanson: table.xslModified the tgroup template so that, for tables with multiple tgroups, +a width attribute is output on all corresponding fo:tables. Previously, +there was a test prohibiting this (and a comment saying that outputting more +than one width attribute will cause an error). But this seems to be no longer +relevant; it is not a problem with FOP 0.93 or XEP 4.10. Closes bug #1760559. + + +Mauritz Jeanson: graphics.xslReplaced useless <a> elements with warning messages (textinsert extension). + + +Mauritz Jeanson: admon.xslEnabled generation of ids (on fo:wrapper) for indexterms in admonition titles, so that page +references in the index can be created. Closes bug #1775086. + + + + + +HTML +The following changes have been made to the + html code + since the 1.73.0 release. + + +Mauritz Jeanson: titlepage.xslAdded <xsl:call-template name="process.footnotes"/> to abstract template +so that footnotes in info/abstract are processed. Closes bug #1760907. + + +Michael(tm) Smith: pi.xsl; synop.xslChanged handling of HTML output for the cmdsynopsis and +funcsynopsis elements, such that a@id instances are generated for +them if they are descendants of any element containing a dbcmdlist +or dbfunclist PI. Also, update the embedded reference docs for the +dbcmdlist and dbfunclist PIs to make it clear that they can be +used within any element for which cmdsynopsis or funcsynopsis are +valid children. + + +Michael(tm) Smith: formal.xslReverted the part of revision 6952 that caused a@id anchors to be +generated for output of informal objects. Thanks to Sam Steingold +for reporting. + + +Robert Stayton: glossary.xslAccount for a glossary with no glossdiv or glossentry children. + + +Mauritz Jeanson: titlepage.xslModified legalnotice template so that the base.name parameter is calculated +in the same way as for revhistory chunks. Using <xsl:apply-templates +mode="chunk-filename" select="."/> did not work for single-page output since +the template with that mode is in chunk-code.xsl. + + +Mauritz Jeanson: graphics.xslUpdated support for SVG (must be a child of imagedata in DB 5). +Added support for MathML in imagedata. + + +Mauritz Jeanson: pi.xslAdded documentation for the dbhh PI (used for context-sensitive HTML Help). +(The two templates matching 'dbhh' are still in htmlhelp-common.xsl). + + + + + +Manpages +The following changes have been made to the + manpages code + since the 1.73.0 release. + + +Michael(tm) Smith: endnotes.xslIn manpages output, generate warnings about notesources with +non-para children only if the notesource is a footnote or +annotation. Thanks to Sam Steingold for reporting problems with +the existing handling. + + + + + +HTMLHelp +The following changes have been made to the + htmlhelp code + since the 1.73.0 release. + + +Michael(tm) Smith: htmlhelp-common.xslAdded single-pass namespace-stripping support to the htmlhelp, +eclipse, and javahelp stylesheets. + + + + + +Eclipse +The following changes have been made to the + eclipse code + since the 1.73.0 release. + + +Michael(tm) Smith: eclipse.xslAdded single-pass namespace-stripping support to the htmlhelp, +eclipse, and javahelp stylesheets. + + + + + +JavaHelp +The following changes have been made to the + javahelp code + since the 1.73.0 release. + + +Michael(tm) Smith: javahelp.xslAdded single-pass namespace-stripping support to the htmlhelp, +eclipse, and javahelp stylesheets. + + + + + +Roundtrip +The following changes have been made to the + roundtrip code + since the 1.73.0 release. + + +Steve Ball: blocks2dbk.xsl; blocks2dbk.dtd; pages2normalise.xslModularised blocks2dbk to allow customisation, +Added support for tables to pages2normalise + + + + + +Params +The following changes have been made to the + params code + since the 1.73.0 release. + + +Robert Stayton: procedure.properties.xmlprocedure was inheriting keep-together from formal.object.properties, but +a procedure does not need to be kept together by default. + + +Dave Pawson: title.font.family.xml; component.label.includes.part.label.xml; table.frame.b⋯Regular formatting re-org. + + + + + + +Release: 1.73.0 +This release includes important bug fixes and adds the following +significant feature changes: + + + New localizations and localization updates + + We added two new localizations: Latvian and + Esperanto, and made updates to the Czech, Chinese + Simplified, Mongolian, Serbian, Italian, and Ukrainian + localizations. + + + + ISO690 citation style for bibliography output. + + Set the + bibliography.style parameter to + iso690 to use ISO690 style. + + + + New documentation for processing instructions (PI) + + The reference documentation that ships with the + release now includes documentation on all PIs that you can use to + control output from the stylesheets. + + + + New profiling parameters for audience and wordsize + + You can now do profiling based on the values of the + audience and + wordsize attributes. + + + + Changes to man-page output + + The manpages stylesheet now supports single-pass + profiling and single-pass DocBook 5 namespace stripping + (just as the HTML and FO stylesheets also do). Also, added + handling for mediaobject & + inlinemediaobject. (Each imagedata, + audiodata, or videodata element + within a mediaobject or inline + mediaobject is now treated as a "notesource" + and so handled in much the same way as links and + annotation/alt/footnote + are in manpages output.) And added the + man.authors.section.enabled and + man.copyright.section.enabled + parameters to enable control over whether output includes + auto-generated AUTHORS and + COPYRIGHT sections. + + + + Highlighting support for C + + The highlighting mechanism for generating + syntax-highlighted code snippets in output now supports C + code listings (along with Java, PHP, XSLT, and others). + + + + Experimental docbook-xsl-update script + + We added an experimental docbook-xsl-update + script, the purpose of which is to facilitate + easy sync-up to the latest docbook-xsl snapshot (by means + of rsync). + + + + + + +Gentext +The following changes have been made to the +gentext code +since the 1.72.0 release. + + +Michael(tm) Smith: locale/lv.xml; MakefileAdded Latvian localization file, from Girts Ziemelis. + + +Dongsheng Song: locale/zh_cn.xmlBrought up to date with en.xml in terms of items. A few strings marked for translation. + + +Jirka Kosek: locale/cs.xmlAdded missing translations + + +Robert Stayton: locale/eo.xmlNew locale for Esperanto. + + +Robert Stayton: locale/mn.xmlUpdate from Ganbold Tsagaankhuu. + + +Jirka Kosek: locale/en.xml; locale/cs.xmlRules for normalizing glossary entries before they are sorted can be now different for each language. + + +Michael(tm) Smith: locale/sr_Latn.xml; locale/sr.xmlCommitted changes from MiloÅ¡ KomarÄević to Serbian files. + + +Robert Stayton: locale/ja.xmlFix chapter in context xref-number-and-title + + +Robert Stayton: locale/it.xmlImproved version from contributor. + + +Mauritz Jeanson: locale/uk.xmlApplied patch 1592083. + + + + +Common +The following changes have been made to the +common code +since the 1.72.0 release. + + +Michael(tm) Smith: labels.xslChanged handling of reference auto-labeling such that reference +(when it appears at the component level) is now affected by the +label.from.part param, just as preface, chapter, and appendix. + + +Michael(tm) Smith: common.xslAdded support to the HTML stylesheets for proper processing of +orgname as a child of author. + + +Michael(tm) Smith: refentry.xslRefined logging output of refentry metadata-gathering template; +for some cases of "missing" elements (refmiscinfo stuff, etc.), +the log messages now include URL to corresponding page in the +Definitive Guide (TDG). + + +Robert Stayton: titles.xslAdd refsection/info/title support. + + +Michael(tm) Smith: titles.xslAdded support for correct handling of xref to elements that +contain info/title descendants but no title children. + +This should be further refined so that it handles any *info +elements. And there are probably some other places where similar +handling for *info/title should be added. + + +Mauritz Jeanson: pi.xslModified <xsl:when> in datetime.format template to work +around Xalan bug. + + + + +FO +The following changes have been made to the +fo code +since the 1.72.0 release. + + +Robert Stayton: component.xslAdd parameters to the page.sequence utility template. + + +Mauritz Jeanson: xref.xslAdded template for xref to area/areaset. +Part of fix for bug #1675513 (xref to area broken). + + +Michael(tm) Smith: inline.xslAdded template match for person element to fo stylesheet. + + +Robert Stayton: lists.xslAdded support for spacing="compact" in variablelist, per bug report #1722540. + + +Robert Stayton: table.xsltable pgwide="1" should also use pgwide.properties attribute-set. + + +Mauritz Jeanson: inline.xslMake citations numbered if bibliography.numbered != 0. + + +Robert Stayton: param.xweb; param.entAdd new profiling parameters for audience and wordsize. + + +Robert Stayton: param.xweb; param.entAdded callout.icon.size parameter. + + +Robert Stayton: inline.xsl; xref.xslAdd support for xlink as olink. + + +Robert Stayton: autotoc.xsl; param.xweb; param.entAdd support for qanda.in.toc to fo TOC. + + +Robert Stayton: component.xslImproved the page.sequence utility template for use with book. + + +Robert Stayton: division.xslRefactored the big book template into smaller pieces. +Used the "page.sequence" utility template in +component.xsl to shorten the toc piece. +Added placeholder templates for front.cover and back.cover. + + +Robert Stayton: param.xweb; param.ent; sections.xslAdd section.container.element parameter to enable +pgwide spans inside sections. + + +Robert Stayton: param.xweb; param.ent; component.xslAdd component.titlepage.properties attribute-set to +support span="all" and other properties. + + +Robert Stayton: htmltbl.xsl; table.xslApply table.row.properties template to html tr rows too. +Add keep-with-next to table.row.properties when row is in thead. + + +Robert Stayton: table.xslAdd support for default.table.frame parameter. +Fix bug 1575446 rowsep last check for @morerows. + + +Robert Stayton: refentry.xslAdd support for info/title in refsections. + + +David Cramer: qandaset.xslMake fo questions and answers behave the same way as html + + +Jirka Kosek: lists.xslAdded missing attribute set for procedure + + +Jirka Kosek: param.xweb; biblio.xsl; docbook.xsl; param.ent; biblio-iso690.xslAdded support for formatting biblioentries according to ISO690 citation style. +New bibliography style can be turned on by setting parameter bibliography.style to "iso690" +The code was provided by Jana Dvorakova + + +Robert Stayton: param.xweb; param.ent; pagesetup.xslAdd header.table.properties and footer.table.properties attribute-sets. + + +Robert Stayton: inline.xslAdd fop1.extensions for menuchoice arrow handling exception. + + + + +HTML +The following changes have been made to the + html code + since the 1.72.0 release. + + +Mauritz Jeanson: param.xweb; param.entMoved declaration and documentation of javahelp.encoding from javahelp.xsl to the +regular "parameter machinery". + + +Michael(tm) Smith: admon.xslChanged handling of titles for note, warning, caution, important, +tip admonitions: We now output and HTML h3 head only if +admon.textlabel is non-zero or if the admonition actually contains +a title; otherwise, we don't output an h3 head at all. +(Previously, we were outputting an empty h3 if the admon.textlabel +was zero and if the admonition had no title.) + + +Mauritz Jeanson: xref.xslAdded template for xref to area/areaset. +Part of fix for bug #1675513 (xref to area broken). + + +Mauritz Jeanson: titlepage.xsl; component.xsl; division.xsl; sections.xslAdded fixes to avoid duplicate ids when generate.id.attributes = 1. +This (hopefully) closes bug #1671052. + + +Michael(tm) Smith: formal.xsl; pi.xslMade the dbfunclist PI work as intended. Also added doc for +dbfunclist and dbcmdlist PIs. + + +Michael(tm) Smith: pi.xsl; synop.xslMade the dbcmdlist work the way it appears to have been intended +to work. Restored dbhtml-dir template back to pi.xsl. + + +Michael(tm) Smith: titlepage.xsl; param.xweb; param.entAdded new param abstract.notitle.enabled. +If non-zero, in output of the abstract element on titlepages, +display of the abstract title is suppressed. +Because sometimes you really don't want or need that title +there... + + +Michael(tm) Smith: chunk-code.xsl; graphics.xslWhen we are chunking long descriptions for mediaobject instances +into separate HTML output files, and use.id.as.filename is +non-zero, if a mediaobject has an ID, use that ID as the basename +for the long-description file (otherwise, we generate an ID for it +and use that ID as the basename for the file). +The parallels the recent change made to cause IDs for legalnotice +instances to be used as basenames for legalnotice chunks. +Also, made some minor refinements to the recent changes for +legalnotice chunk handling. + + +Michael(tm) Smith: titlepage.xslAdded support to the HTML stylesheets for proper processing of +orgname as a child of author. + + +Michael(tm) Smith: chunk-code.xslWhen $generate.legalnotice.link is non-zero and +$use.id.as.filename is also non-zero, if a legalnotice has an ID, +then instead of assigning the "ln-<generatedID>" basename to the +output file for that legalnotice, just use its real ID as the +basename for the file -- as we do when chunking other elements +that have IDs. + + +David Cramer: xref.xslHandle alt text on xrefs to steps when the step doesn't have a title. + + +David Cramer: lists.xslAdded <p> element around term in variablelist when formatted as table to avoid misalignment of term and listitem in xhtml (non-quirks mode) output + + +David Cramer: qandaset.xslAdded <p> element around question and answer labels to avoid misalignment of label and listitem in xhtml (non-quirks mode) output + + +David Cramer: lists.xslAdded <p> element around callouts to avoid misalignment of callout and listitem in xhtml (non-quirks mode) output + + +Mauritz Jeanson: inline.xslMake citations numbered if bibliography.numbered != 0. + + +Robert Stayton: param.xweb; param.entAdd support for new profiling attributes audience and wordsize. + + +Robert Stayton: inline.xsl; xref.xslAdd support for xlink olinks. + + +Jirka Kosek: glossary.xslRules for normalizing glossary entries before they are sorted can be now different for each language. + + +Robert Stayton: chunk-common.xsl; chunk-code.xsl; manifest.xsl; chunk.xslRefactored the chunking modules to move all named templates to +chunk-common.xsl and all match templates to chunk-code.xsl, in +order to enable better chunk customization. +See the comments in chunk.xsl for more details. + + +Robert Stayton: lists.xslAdd anchor for xml:id for listitem in varlistentry. + + +Robert Stayton: refentry.xslAdd support for info/title in refsections for db5. + + +Jirka Kosek: param.xweb; biblio.xsl; docbook.xsl; param.ent; biblio-iso690.xslAdded support for formatting biblioentries according to ISO690 citation style. +New bibliography style can be turned on by setting parameter bibliography.style to "iso690" +The code was provided by Jana Dvorakova + + +Robert Stayton: inline.xsl; xref.xslAdd call to class.attribute to <a> output elements so they can +have a class value too. + + +Mauritz Jeanson: glossary.xslFixed bug #1644881: +* Added curly braces around all $language attribute values. +* Moved declaration of language variable to top level of stylesheet. +Tested with Xalan, Saxon, and xsltproc. + + + + +Manpages +The following changes have been made to the + manpages code + since the 1.72.0 release. + + +Michael(tm) Smith: param.xweb; docbook.xsl; param.entAdded the man.authors.section.enabled and +man.copyright.section.enabled parameters. Set those to zero when +you want to suppress display of the auto-generated AUTHORS and +COPYRIGHT sections. Closes request #1467806. Thanks to Daniel +Leidert. + + +Michael(tm) Smith: docbook.xslTook the test that the manpages stylesheet does to see if there +are any Refentry chilren in current doc, and made it +namespace-agnostic. Reason for that is because the test otherwise +won't work when it is copied over into the generated +profile-docbook.xsl stylesheet. + + +Michael(tm) Smith: MakefileAdded a manpages/profile-docbook.xsl file to enable single-pass +profiling for manpages output. + + +Michael(tm) Smith: info.xslOutput copyright and legalnotice in man-page output in whatever +place they are in in document order. Closes #1690539. Thanks to +Daniel Leidert for reporting. + + +Michael(tm) Smith: docbook.xslRestored support for single-pass namespace stripping to manpages +stylesheet. + + +Michael(tm) Smith: synop.xsl; block.xsl; info.xsl; inline.xsl; lists.xsl; endnotes.xsl; ut⋯Changed handling of bold and italic/underline output in manpages +output. Should be transparent to users, but... + +This touches handling of all bold and italic/underline output. The +exact change is that the mode="bold" and mode="italic" utility +templates were changed to named templates. (I think maybe I've +changed it back and forth from mode to named before, so this is +maybe re-reverting it yet again). + +Anyway, the reason for the change is that the templates are +sometimes call on dynamically node-sets, and using modes to format +those doesn't allow passing info about the current/real context +node from the source (not the node-set created by the stylesheet) +to that formatting stage. + +The named templates allow the context to be passed in as a +parameter, so that the bold/ital formatting template can use +context-aware condition checking. + +This was basically necessary in order to suppress bold formatting +in titles, which otherwise gets screwed up because of the numbnut +way that roff handles nested bold/ital. + +Closes #1674534). Much thanks to Daniel Leidert, whose in his +docbook-xsl bug-finding kung-fu has achieved Grand Master status. + + +Michael(tm) Smith: block.xslFixed handling of example instances by adding the example element +to the same template we use for processing figure. Closes +#1674538. Thanks to Daniel Leidert. + + +Michael(tm) Smith: utility.xslDon't include lang in manpages filename/pathname if lang=en (that +is, only generate lang-qualified file-/pathnames for non-English). + + +Michael(tm) Smith: endnotes.xslIn manpages output, emit warnings for notesources (footnote, etc.) +that have something other than para as a child. + +The numbered-with-hanging-indent formatting that's used for +rendering endnotes in the NOTES section of man pages places some +limits/assumptions on how the DocBook source is marked up; namely, +for notesources (footnote, annotation, etc.) that can contain +block-level children, if the they have a block-level child such as +a table or itemizedlist or orderedlist that is the first child of +a footnote, we have no way of rendering/indenting its content +properly in the endnotes list. + +Thus, the manpages stylesheet not emits a warning message for that +case, and suggests the "fix" (which is to wrap the table or +itemizedlist or whatever in a para that has some preferatory text. + + +Michael(tm) Smith: utility.xslAdded support to mixed-block template for handling tables in +mixed-blocks (e.g., as child of para) correctly. + + +Michael(tm) Smith: table.xsl; synop.xsl; block.xsl; info.xsl; lists.xsl; refentry.xsl; end⋯Reverted necessary escaping of backslash, dot, and dash +out of the well-intentioned (but it now appears, +misguided) "marker" mechanism (introduced in the 1.72.0 +release) -- which made use of alternative "marker" +characters as internal representations of those +characters, and then replaced them just prior to +serialization -- and back into what's basically the +system that was used prior to the 1.69.0 release; that +is, into a part of stylesheet code that gets executed +at the beginning of processing -- before any other roff +markup up is. This change obviates the need for the +marker system. It also requires a lot less RAM during +processing (for large files, the marker mechanism +ending up requiring gigabytes of memory). + +Closes bug #1661177. Thanks to Scott Smedley for +providing a test case (the fvwm man page) that exposed +the problem with the marker mechanism. + +Also moved the mechanism for converting non-breaking +spaces back into the same area of the stylesheet code. + + +Michael(tm) Smith: lists.xslFixed problem with incorrect formatting of nested variablelist. +Closes bug #1650931. Thanks to Daniel "Eagle Eye" Leidert. + + +Michael(tm) Smith: lists.xslMake sure that all listitems in itemizedlist and orderedlist are +preceded by a blank line. This fixes a regression that occurred +when instances of the TP macro that were use in a previous +versions of the list-handling code were switched to RS/RE (because +TP doesn't support nesting). TP automatically generates a blank +line, but RS doesn't. So I added a .sp before each .RS + + +Michael(tm) Smith: block.xsl; inline.xsl; param.xweb; docbook.xsl; links.xsl; param.entMade a number of changes related to elements with +out-of-line content: + +- Added handling for mediaobject & inlinemediaobject. + Each imagedata, audiodata, or videodata element + within a mediaobject or inline mediaobject is now + treated as a "notesource" and so handled in much the + same way as links and annotation/alt/footnotes. + + That means a numbered marker is generated inline to + mark the place in the main flow where the imagedata, + audiodata, or videodata element occurs, and a + corresponding numbered endnote for it is generated in + the endnotes list at the end of the man page; the + endnote contains the URL from the fileref attribute + of the imagedata, audiodata, or videodata element. + + For mediobject and inlinemediaobject instances that + have a textobject child, the textobject is displayed + within the main text flow. + +- Renamed several man.link.* params to man.endnotes.*, + to reflect that fact that the endnotes list now + contains more than just links. Also did similar + renaming for a number of stylesheet-internal vars. + +- Added support for xlink:href (along with existing + support for the legacy ulink element). + +- Cleaned up and streamlined the endnotes-handling + code. It's still messy and klunky and the basic + mechanism it uses is very inefficent for documents + that contain a lot of notesources, but at least it's + a bit better than it was. + + + + +Eclipse +The following changes have been made to the + eclipse code + since the 1.72.0 release. + + +Mauritz Jeanson: MakefileFixed bug #1715093: Makefile for creating profiled version of eclipse.xsl added. + + +David Cramer: eclipse.xslAdded normalize-space around to avoid leading whitespace from appearing in the output if there's extra leading whitespace (e.g. <title> Foo</title>) in the source + + + + +JavaHelp +The following changes have been made to the + javahelp code + since the 1.72.0 release. + + +Mauritz Jeanson: javahelp.xslImplemented FR #1230233 (sorted index in javahelp). + + +Mauritz Jeanson: javahelp.xslAdded normalize-space() around titles and index entries to work around whitespace problems. +Added support for glossary and bibliography in toc and map files. + + + + +Roundtrip +The following changes have been made to the + roundtrip code + since the 1.72.0 release. + + +Steve Ball: blocks2dbk.xsl; wordml2normalise.xsl; normalise2sections.xsl; sections2blocks.⋯new stylesheets for better word processor support and easier maintenance + + +Steve Ball: template-pages.xml; dbk2wp.xsl; sections-spec.xmlfixed bugs + + + + +Params +The following changes have been made to the + params code + since the 1.72.0 release. + + +Mauritz Jeanson: htmlhelp.button.back.xml; htmlhelp.button.forward.xml; htmlhelp.button.zo⋯Modified refpurpose text. + + +Mauritz Jeanson: htmlhelp.map.file.xml; htmlhelp.force.map.and.alias.xml; htmlhelp.alias.f⋯Fixed typos, made some small changes. + + +Mauritz Jeanson: javahelp.encoding.xmlMoved declaration and documentation of javahelp.encoding from javahelp.xsl to the +regular "parameter machinery". + + +Mauritz Jeanson: generate.id.attributes.xmlAdded refpurpose text. + + +Mauritz Jeanson: annotation.js.xml; annotation.graphic.open.xml; annotation.graphic.close.⋯Added better refpurpose texts. + + +Michael(tm) Smith: chunker.output.cdata-section-elements.xml; chunker.output.standalone.xm⋯Fixed some broken formatting in source files for chunker.* params, +as pointed out by Dave Pawson. + + +Michael(tm) Smith: label.from.part.xmlChanged handling of reference auto-labeling such that reference +(when it appears at the component level) is now affected by the +label.from.part param, just as preface, chapter, and appendix. + + +Mauritz Jeanson: callout.graphics.extension.xmlClarified that 'extension' refers to file names. + + +Michael(tm) Smith: abstract.notitle.enabled.xmlAdded new param abstract.notitle.enabled. +If non-zero, in output of the abstract element on titlepages, +display of the abstract title is suppressed. +Because sometimes you really don't want or need that title +there... + + +Michael(tm) Smith: man.string.subst.map.xmlUpdated manpages string-substitute map to reflect fact that +because of another recent change to suppress bold markup in .SH +output, we no longer need to add a workaround for the accidental +uppercasing of roff escapes that occurred previously. + + +Jirka Kosek: margin.note.float.type.xml; title.font.family.xml; table.frame.border.color.x⋯Improved parameter metadata + + +Robert Stayton: profile.wordsize.xml; profile.audience.xmlAdd support for profiling on new attributes audience and wordsize. + + +Robert Stayton: callout.graphics.number.limit.xml; callout.graphics.extension.xmlAdded SVG graphics for fo output. + + +Robert Stayton: callout.icon.size.xmlSet size of callout graphics. + + +Jirka Kosek: default.units.xml; chunker.output.method.xml; toc.list.type.xml; output.inden⋯Updated parameter metadata to the new format. + + +Jirka Kosek: man.output.quietly.xml; title.font.family.xml; footnote.sep.leader.properties⋯Added type annotations into parameter definition files. + + +Robert Stayton: section.container.element.xmlSupport spans in sections for certain processors. + + +Robert Stayton: component.titlepage.properties.xmlEmpty attribute set for top level component titlepage block. +Allows setting a span on title info. + + +Jirka Kosek: bibliography.style.xmlAdded link to WiKi page with description of special markup needed for ISO690 biblioentries + + +Robert Stayton: make.year.ranges.xmlClarify that multiple year elements are required. + + +Robert Stayton: id.warnings.xmlTurn off id.warnings by default. + + +Jirka Kosek: bibliography.style.xmlAdded support for formatting biblioentries according to ISO690 citation style. +New bibliography style can be turned on by setting parameter bibliography.style to "iso690" +The code was provided by Jana Dvorakova + + +Robert Stayton: header.table.properties.xml; footer.table.properties.xmlSupport adding table properties to header and footer tables. + + + + +Highlighting +The following changes have been made to the + highlighting code + since the 1.72.0 release. + + +Jirka Kosek: c-hl.xml; xslthl-config.xmlAdded support for C language. Provided by Bruno Guegan. + + + + +Profiling +The following changes have been made to the + profiling code + since the 1.72.0 release. + + +Robert Stayton: profile-mode.xslAdd support for new profiling attributes audience and wordsize. + + + + +Lib +The following changes have been made to the + lib code + since the 1.72.0 release. + + +Michael(tm) Smith: lib.xwebChanged name of prepend-pad template to pad-string and twheeked so +it can do both right/left padding. + + + + +Tools +The following changes have been made to the + tools code + since the 1.72.0 release. + + +Michael(tm) Smith: bin; bin/docbook-xsl-updateDid some cleanup to the install.sh source and added a +docbook-xsl-update script to the docbook-xsl distro, the purpose +of which is to facilitate easy sync-up to the latest docbook-xsl +snapshot (by means of rsync). + + + + +XSL-Saxon +The following changes have been made to the + xsl-saxon code + since the 1.72.0 release. + + +Mauritz Jeanson: xalan27/src/com/nwalsh/xalan/Verbatim.java; xalan27/src/com/nwalsh/xalan/⋯Added modifications so that the new callout.icon.size parameter is taken into account. This +parameter is used for FO output (where SVG now is the default graphics format for callouts). + + +Mauritz Jeanson: saxon65/src/com/nwalsh/saxon/FormatCallout.java; xalan27/src/com/nwalsh/x⋯Added code for generating id attributes on callouts in HTML and FO output. +These patches enable cross-references to callouts placed by area coordinates. +It works for graphic, unicode and text callouts. +Part of fix for bug #1675513 (xref to area broken). + + +Michael(tm) Smith: saxon65/src/com/nwalsh/saxon/Website.java; xalan27/src/com/nwalsh/xalan⋯Copied over Website XSL Java extensions. + + + + +XSL-Xalan +The following changes have been made to the + xsl-xalan code + since the 1.72.0 release. + + +Michael(tm) Smith: Makefile; xalan2Turned off xalan2.jar build. This removes DocBook XSL +Java extensions support for versions of Xalan prior to +Xalan 2.7. If you are currently using the extensions +with an earlier version of Xalan, you need to upgrade +to Xalan 2.7. + + +Mauritz Jeanson: xalan27/src/com/nwalsh/xalan/Verbatim.java; xalan27/src/com/nwalsh/xalan/⋯Added modifications so that the new callout.icon.size parameter is taken into account. This +parameter is used for FO output (where SVG now is the default graphics format for callouts). + + +Mauritz Jeanson: saxon65/src/com/nwalsh/saxon/FormatCallout.java; xalan27/src/com/nwalsh/x⋯Added code for generating id attributes on callouts in HTML and FO output. +These patches enable cross-references to callouts placed by area coordinates. +It works for graphic, unicode and text callouts. +Part of fix for bug #1675513 (xref to area broken). + + +Michael(tm) Smith: saxon65/src/com/nwalsh/saxon/Website.java; xalan27/src/com/nwalsh/xalan⋯Copied over Website XSL Java extensions. + + + + + + +Release: 1.72.0 +This release includes important bug fixes and adds the following +significant feature changes: + + + Automatic sorting of glossary entries + + The HTML and FO stylesheets now support automatic sorting + of glossary entries. To enable glossary sorting, set + the value of the glossary.sort parameter + to 1 (by default, it’s value is + 0). When you enable glossary sorting, + glossentry elements within a glossary, + glossdiv, or glosslist are sorted on the + glossterm, using the current language setting. If you + don’t enable glossary sorting, then the order of + glossentry elements is left “as is†— that is, they + are not sorted but are instead just displayed in document + order. + + + + WordML renamed to Roundtrip, OpenOffice support added + + Stylesheets for “roundtrip†conversion between documents in + OpenOffice format (ODF) and DocBook XML have been added to the set + of stylesheets that formerly had the collective title + WordML, and that set of stylesheets has + been renamed to Roundtrip to better + reflect the actual scope and purpose of its contents. + So the DocBook XSL Stylesheets now support roundtrip + conversion (with certain limitations) of WordML, OpenOffice, and + Apple Pages documents to and from DocBook XML. + + + + Including QandASet questions in TOCs + + The HTML stylesheet now provides support for including + QandASet questions in the document TOC. To + enable display of questions in the document TOC, set + the value of the qanda.in.toc to + 1 (by default, it’s 0). When you + enable qanda.in.toc, then the generated + table of contents for a document will include + qandaset titles, qandadiv titles, and + question elements. The default value of zero + excludes them from the TOC. + + The qanda.in.toc parameter does + not affect any tables of contents that may be generated + within a qandaset or + qandadiv (only in the document TOC). + + + + + + Language identifier in man-page filenames and pathnames + + Added new parameter man.output.lang.in.name.enabled, which controls whether + a language identifier is included in man-page filenames and + pathnames. It works like this: + + If the value of man.output.lang.in.name.enabled is non-zero, + man-page files are output with a language identifier included in + their filenames or pathnames as follows: + + + if + man.output.subdirs.enabled is non-zero, + each file is output to, e.g., a + /$lang/man8/foo.8 pathname + + if + man.output.subdirs.enabled is zero, + each file is output with a foo.$lang.8 + filename + + + + + + index.page.number.properties property set + + For FO output, use the + index.page.number.properties to control + formatting of page numbers in index output — to (for + example) to display page numbers in index output in a + different color (to indicate that they are links). + + + + Crop marks in output from Antenna House XSL Formatter + + Support has been added for generating crop marks in + print/PDF output generated using Antenna House XSL Formatter + + + + More string-substitution hooks in manpages output + + The man.string.subst.map.local.pre + and man.string.subst.map.local.post + parameters have been added to enable easier control over + custom string substitutions. + + + + Moved verbatim properties to attribute-set + + The hardcoded properties used in verbatim elements (literallayout, + programlisting, screen) were moved to the verbatim.properties + attribute-set so they can be more easily customized. + + + + enhanced simple.xlink template + + Now the simple.xlink template in inline.xsl works with + cross reference elements xref and link as well. Also, more elements + call simple.xlink, which enables DB5 xlink functionality. + + + + + DocBook 5 compatibility + + Stylesheets now consistently support DocBook 5 attributes + (such as xml:id). Also, DocBook 5 info elements are now checked + along with other *info elements, and the use of name() function + was replaced by local-name() so it also matches on DocBook 5 elements. + These changes enable reusing the stylesheets with DocBook 5 + documents with minimal fixup. + + + + + HTML class attributes now handled in class.attribute mode + + The HTML class attributes were formerly hardcoded to the + element name. Now the class attribute is generated by applying + templates in class.attribute mode so class attribute names + can be customized. The default is still the element name. + + + + arabic-indic numbering enabled in autolabels + + Numbering of chapter, sections, and pages can now use + arabic-indic numbering when number format is set to 'arabicindic' or + to ١. + + + +The following is a detailed list of changes (not +including bug fixes) that have been made since the 1.71.1 +release. + + +Common +The following changes have been made to the + common code + since the 1.71.1 release. + + +Add support for arabicindic numbering to autolabel.format template.M: /trunk/xsl/common/labels.xsl - Robert Stayton + + +Finish support for @xml:id everywhere @id is used.M: /trunk/xsl/common/gentext.xsl; M: /trunk/xsl/common/titles.xsl - Robert Stayton + + +replace name() with local-name() in most cases.M: /trunk/xsl/common/l10n.xsl; M: /trunk/xsl/common/olink.xsl; M: /trunk/xsl/common/subtitles.xsl; M: /trunk/xsl/common/labels.xsl; M: /trunk/xsl/common/titles.xsl; M: /trunk/xsl/common/common.xsl - Robert Stayton + + +Add support for info.M: /trunk/xsl/common/subtitles.xsl; M: /trunk/xsl/common/labels.xsl; M: /trunk/xsl/common/titles.xsl; M: /trunk/xsl/common/common.xsl; M: /trunk/xsl/common/targets.xsl - Robert Stayton + + +Add utility template tabstyle to return the tabstyle from +any table element.M: /trunk/xsl/common/table.xsl - Robert Stayton + + + + + +FO +The following changes have been made to the + fo code + since the 1.71.1 release. + + +Add support for sorting glossary entriesM: /trunk/xsl/fo/param.xweb; M: /trunk/xsl/fo/param.ent; M: /trunk/xsl/fo/glossary.xsl - Robert Stayton + + +Add table.row.properties template to customize table rows.M: /trunk/xsl/fo/table.xsl - Robert Stayton + + +Moved all properties to attribute-sets so can be customized more easily.M: /trunk/xsl/fo/verbatim.xsl - Robert Stayton + + +Add index.page.number.properties attribute-set to format page numbers.M: /trunk/xsl/fo/autoidx.xsl - Robert Stayton + + +xref now supports xlink:href, using simple.xlink template.M: /trunk/xsl/fo/xref.xsl - Robert Stayton + + +Rewrote simple.xlink, and call it with all charseq templates.M: /trunk/xsl/fo/inline.xsl - Robert Stayton + + +Add simple.xlink processing to term and member elements.M: /trunk/xsl/fo/lists.xsl - Robert Stayton + + +Add support for crop marks in Antenna House.M: /trunk/xsl/fo/axf.xsl; M: /trunk/xsl/fo/pagesetup.xsl - Robert Stayton + + + + + +HTML +The following changes have been made to the + html code + since the 1.71.1 release. + + +Add support for sorting glossary entriesM: /trunk/xsl/html/glossary.xsl - Robert Stayton + + +Add support for qanda.in.toc to add qandaentry questions to document TOC.M: /trunk/xsl/html/autotoc.xsl; M: /trunk/xsl/html/param.xweb; M: /trunk/xsl/html/param.ent - Robert Stayton + + +add simple.xlink support to variablelist term and simplelist member.M: /trunk/xsl/html/lists.xsl - Robert Stayton + + +*.propagates.style now handled in class.attribute mode.M: /trunk/xsl/html/inline.xsl; M: /trunk/xsl/html/lists.xsl; M: /trunk/xsl/html/table.xsl; M: /trunk/xsl/html/block.xsl; M: /trunk/xsl/html/footnote.xsl - Robert Stayton + + +add class parameter to class.attribute mode to set default class.M: /trunk/xsl/html/html.xsl - Robert Stayton + + +Convert all class attributes to use the class.attribute mode +so class names can be customized more easily.M: /trunk/xsl/html/titlepage.xsl; M: /trunk/xsl/html/chunk-code.xsl; M: /trunk/xsl/html/division.xsl; M: /trunk/xsl/html/sections.xsl; M: /trunk/xsl/html/math.xsl; M: /trunk/xsl/html/block.xsl; M: /trunk/xsl/html/info.xsl; M: /trunk/xsl/html/footnote.xsl; M: /trunk/xsl/html/lists.xsl; M: /trunk/xsl/html/admon.xsl; M: /trunk/xsl/html/refentry.xsl; M: /trunk/xsl/html/qandaset.xsl; M: /trunk/xsl/html/graphics.xsl; M: /trunk/xsl/html/biblio.xsl; M: /trunk/xsl/html/task.xsl; M: /trunk/xsl/html/component.xsl; M: /trunk/xsl/html/glossary.xsl; M: /trunk/xsl/html/callout.xsl; M: /trunk/xsl/html/index.xsl; M: /trunk/xsl/html/synop.xsl; M: /trunk/xsl/html/verbatim.xsl; M: /trunk/xsl/html/ebnf.xsl - Robert Stayton + + +Add class.attribute mode to generate class attributes.M: /trunk/xsl/html/html.xsl - Robert Stayton + + +Added simple.xlink to most remaining inlines. +Changed class attributes to applying class.attributes mode.M: /trunk/xsl/html/inline.xsl - Robert Stayton + + +Changed xref template to use simple.xlink tempalte.M: /trunk/xsl/html/xref.xsl - Robert Stayton + + +Improve generate.html.title to work with link targets too.M: /trunk/xsl/html/html.xsl - Robert Stayton + + +Improved simple.xlink to support link and xref.M: /trunk/xsl/html/inline.xsl - Robert Stayton + + +Use new link.title.attribute now.M: /trunk/xsl/html/xref.xsl - Robert Stayton + + +Rewrote simple.xlink to handle linkend also. +Better computation of title attribute on link too.M: /trunk/xsl/html/inline.xsl - Robert Stayton + + +Handle Xalan quirk as special case.M: /trunk/xsl/html/db5strip.xsl - Robert Stayton + + +Add support for info.M: /trunk/xsl/html/admon.xsl; M: /trunk/xsl/html/autotoc.xsl; M: /trunk/xsl/html/lists.xsl; M: /trunk/xsl/html/refentry.xsl; M: /trunk/xsl/html/biblio.xsl; M: /trunk/xsl/html/qandaset.xsl; M: /trunk/xsl/html/component.xsl; M: /trunk/xsl/html/glossary.xsl; M: /trunk/xsl/html/division.xsl; M: /trunk/xsl/html/index.xsl; M: /trunk/xsl/html/sections.xsl; M: /trunk/xsl/html/table.xsl; M: /trunk/xsl/html/block.xsl - Robert Stayton + + +Fixed imagemaps so they work properly going from calspair coords +to HTML area coords.M: /trunk/xsl/html/graphics.xsl - Robert Stayton + + + + + +Manpages +The following changes have been made to the + manpages code + since the 1.71.1 release. + + +Added doc for man.output.lang.in.name.enabled parameter. This +checkin completes support for writing file/pathnames for man-pages +with $lang include in the names. Closes #1585967. knightly +accolades to Daniel Leidert for providing the feature request.M: /trunk/xsl/manpages/param.xweb; M: /trunk/xsl/manpages/param.ent - Michael(tm) Smith + + +Added new param man.output.lang.in.name.enabled, which +controls whether $LANG value is included in manpages +filenames and pathnames. It works like this: + +If the value of man.output.lang.in.name.enabled is non-zero, +man-page files are output with the $lang value included in +their filenames or pathnames as follows; + +- if man.output.subdirs.enabled is non-zero, each file is + output to, e.g., a /$lang/man8/foo.8 pathname + +- if man.output.subdirs.enabled is zero, each file is output + with a foo.$lang.8 filenameM: /trunk/xsl/manpages/docbook.xsl; M: /trunk/xsl/manpages/other.xsl; M: /trunk/xsl/manpages/utility.xsl - Michael(tm) Smith + + +Use "\e" instead of "\\" for backslash output, because the +groff docs say that's the correct thing to do; also because +testing (thanks, Paul Dubois) shows that "\\" doesn't always +work as expected; for example, "\\" within a table seems to +mess things up.M: /trunk/xsl/manpages/charmap.groff.xsl - Michael(tm) Smith + + +Added the man.string.subst.map.local.pre and +man.string.subst.map.local.post parameters. Those parameters +enable local additions and changes to string-substitution mappings +without the need to change the value of man.string.subst.map +parameter (which is for standard system mappings). Closes +#1456738. Thanks to Sam Steingold for constructing a true +stylesheet torture test (the clisp docs) that exposed the need for +these params.M: /trunk/xsl/manpages/param.xweb; M: /trunk/xsl/manpages/param.ent; M: /trunk/xsl/manpages/other.xsl - Michael(tm) Smith + + +Added the Markup element to the list of elements that get output +in bold. Thanks to Eric S. Raymond.M: /trunk/xsl/manpages/inline.xsl - Michael(tm) Smith + + +Replaced all dots in roff requests with U+2302 ("house" +character), and added escaping in output for all instances of dot +that are not in roff requests. This fixes the problem case where a +string beginning with a dot (for example, the string ".bashrc") +might occur at the beginning of a line in output, in which case +would mistakenly get interpreted as a roff request. Thanks to Eric +S. Raymond for pushing to fix this.M: /trunk/xsl/manpages/table.xsl; M: /trunk/xsl/manpages/synop.xsl; M: /trunk/xsl/manpages/block.xsl; M: /trunk/xsl/manpages/info.xsl; M: /trunk/xsl/manpages/lists.xsl; M: /trunk/xsl/manpages/refentry.xsl; M: /trunk/xsl/manpages/links.xsl; M: /trunk/xsl/manpages/other.xsl; M: /trunk/xsl/manpages/utility.xsl - Michael(tm) Smith + + +Made change to ensure that list content nested in +itemizedlist and orderedlist instances is properly indented. This +is a switch from using .TP to format those lists to using .RS/.RE +to format them instead (because .TP does not allow nesting). Closes bug #1602616. +Thanks to Daniel Leidert.M: /trunk/xsl/manpages/lists.xsl - Michael(tm) Smith + + + + + +Params +The following changes have been made to the + params code + since the 1.71.1 release. + + +Added doc for man.output.lang.in.name.enabled parameter. This +checkin completes support for writing file/pathnames for man-pages +with $lang include in the names. Closes #1585967. knightly +accolades to Daniel Leidert for providing the feature request.A: /trunk/xsl/params/man.output.lang.in.name.enabled.xml - Michael(tm) Smith + + +Added new param man.output.lang.in.name.enabled, which +controls whether $LANG value is included in manpages +filenames and pathnames. It works like this: + +If the value of man.output.lang.in.name.enabled is non-zero, +man-page files are output with the $lang value included in +their filenames or pathnames as follows; + +- if man.output.subdirs.enabled is non-zero, each file is + output to, e.g., a /$lang/man8/foo.8 pathname + +- if man.output.subdirs.enabled is zero, each file is output + with a foo.$lang.8 filenameM: /trunk/xsl/manpages/docbook.xsl; M: /trunk/xsl/manpages/other.xsl; M: /trunk/xsl/manpages/utility.xsl - Michael(tm) Smith + + +Added the man.string.subst.map.local.pre and +man.string.subst.map.local.post parameters. Those parameters +enable local additions and changes to string-substitution mappings +without the need to change the value of man.string.subst.map +parameter (which is for standard system mappings). Closes +#1456738. Thanks to Sam Steingold for constructing a true +stylesheet torture test (the clisp docs) that exposed the need for +these params.A: /trunk/xsl/params/man.string.subst.map.local.post.xml; A: /trunk/xsl/params/man.string.subst.map.local.pre.xml; M: /trunk/xsl/params/man.string.subst.map.xml - Michael(tm) Smith + + +Add index.page.number.properties by default.M: /trunk/xsl/params/xep.index.item.properties.xml - Robert Stayton + + +Added index.page.number.properties to allow customizations of page numbers in indexes.A: /trunk/xsl/params/index.page.number.properties.xml - Robert Stayton + + +Move show-destination="replace" property from template to attribute-set +so it can be customized.M: /trunk/xsl/params/olink.properties.xml - Robert Stayton + + +Add support for sorting glossary entriesA: /trunk/xsl/params/glossary.sort.xml - Robert Stayton + + +Add option to include qanda in tables of contents.A: /trunk/xsl/params/qanda.in.toc.xml - Robert Stayton + + +Moved all properties to attribute-sets so can be customized more easily.M: /trunk/xsl/params/verbatim.properties.xml - Robert Stayton + + + + + +Template +The following changes have been made to the + template code + since the 1.71.1 release. + + +Added workaround for Xalan bug: use for-each and copy instead of copy-of (#1604770).M: /trunk/xsl/template/titlepage.xsl - Mauritz Jeanson + + + + + +Roundtrip +The following changes have been made to the + roundtrip code + since the 1.71.1 release. + + +rename to roundtrip, add OpenOffice supportM: /trunk/xsl/roundtrip/docbook-pages.xsl; M: /trunk/xsl/roundtrip/specifications.xml; A: /trunk/xsl/roundtrip/dbk2ooo.xsl; M: /trunk/xsl/roundtrip/docbook.xsl; A: /trunk/xsl/roundtrip/dbk2pages.xsl; M: /trunk/xsl/roundtrip/template.xml; A: /trunk/xsl/roundtrip/dbk2wordml.xsl; A: /trunk/xsl/roundtrip/dbk2wp.xsl; M: /trunk/xsl/roundtrip/template.dot; M: /trunk/xsl/roundtrip/wordml-final.xsl - Steve Ball + + + + + + +Release: 1.71.1 +This is a minor update to the 1.71.0 release. Along with a +number of bug fixes, it includes two feature changes: + + + + Added support for profiling based on xml:lang and status attributes. + + + Added initial support in manpages output for + footnote, annotation, and alt + instances. Basically, they all now get handled the same way + ulink instances are. They are treated as a class as + "note sources": A numbered marker is generated at the place in the + main text flow where they occur, then their contents are displayed + in an endnotes section at the end of the man page. + + + + + +Common +The following changes have been made to the + common code + since the 1.71.1 release. + + +For backward compatability autoidx-ng.xsl is invoking "kosek" indexing method again.D: /trunk/xsl/common/autoidx-ng.xsl - Jirka Kosek + + +Add support for Xalan generating a root xml:base like saxon.M: /trunk/xsl/common/stripns.xsl - Robert Stayton + + + + + +FO +The following changes have been made to the + fo code + since the 1.71.1 release. + + +For backward compatability autoidx-ng.xsl is invoking "kosek" indexing method again.M: /trunk/xsl/fo/autoidx-ng.xsl; M: /trunk/xsl/fo/autoidx-kosek.xsl - Jirka Kosek + + +Add support for Xalan to add root node xml:base for db5 docs.M: /trunk/xsl/fo/docbook.xsl - Robert Stayton + + +Added support for profiling based on xml:lang and status attributes.M: /trunk/xsl/fo/param.xweb; M: /trunk/xsl/fo/param.ent - Jirka Kosek + + + + + +HTML +The following changes have been made to the + html code + since the 1.71.1 release. + + +For backward compatability autoidx-ng.xsl is invoking "kosek" indexing method again.M: /trunk/xsl/html/autoidx-ng.xsl; M: /trunk/xsl/html/autoidx-kosek.xsl - Jirka Kosek + + +Add support for Xalan to add root node xml:base for db5 docs.M: /trunk/xsl/html/chunk-code.xsl; M: /trunk/xsl/html/docbook.xsl - Robert Stayton + + +Added support for profiling based on xml:lang and status attributes.M: /trunk/xsl/html/param.xweb; M: /trunk/xsl/html/param.ent - Jirka Kosek + + +Made changes in namespace declarations to prevent xmllint's +canonicalizer from treating them as relative namespace URIs. + + - Changed xmlns:k="java:com.isogen.saxoni18n.Saxoni18nService" + to xmlns:k="http://www.isogen.com/functions/com.isogen.saxoni18n.Saxoni18nService"; + Saxon accepts either form + (see http://www.saxonica.com/documentation/extensibility/functions.html); + to Saxon, "the part of the URI before the final '/' is immaterial". + + - Changed, e.g. xmlns:xverb="com.nwalsh.xalan.Verbatim" to + xmlns:xverb="xalan://com.nwalsh.xalan.Verbatim"; Xalan accepts + either form + (see http://xml.apache.org/xalan-j/extensions.html#java-namespace-declare); + just as Saxon does, it will "simply use the string to the + right of the rightmost forward slash as the Java class name". + + - Changed xmlns:xalanredirect="org.apache.xalan.xslt.extensions.Redirect" + to xmlns:redirect="http://xml.apache.org/xalan/redirect", and + adjusted associated code to make the current Xalan redirect spec. + (see http://xml.apache.org/xalan-j/apidocs/org/apache/xalan/lib/Redirect.html)M: /trunk/xsl/html/oldchunker.xsl; M: /trunk/xsl/html/chunker.xsl; M: /trunk/xsl/html/graphics.xsl; M: /trunk/xsl/html/callout.xsl; M: /trunk/xsl/html/autoidx-kimber.xsl; M: /trunk/xsl/html/autoidx-kosek.xsl; M: /trunk/xsl/html/table.xsl; M: /trunk/xsl/html/verbatim.xsl - Michael(tm) Smith + + +Added the html.append and chunk.append parameters. By default, the +value of both is empty; but the internal DocBook XSL stylesheets +build sets their value to "<xsl:text>&#x0a;</xsl:text>", in order +to ensure that all files in the docbook-xsl-doc package end in a +newline character. (Because diff and some other tools may emit +error messages and/or not behave as expected when processing +files that are not newline-terminated.)M: /trunk/xsl/html/chunk-common.xsl; M: /trunk/xsl/html/titlepage.xsl; M: /trunk/xsl/html/param.xweb; M: /trunk/xsl/html/docbook.xsl; M: /trunk/xsl/html/graphics.xsl; M: /trunk/xsl/html/param.ent - Michael(tm) Smith + + + + + +Highlighting +The following changes have been made to the + highlighting code + since the 1.71.1 release. + + +Added license informationM: /trunk/xsl/highlighting/delphi-hl.xml; M: /trunk/xsl/highlighting/myxml-hl.xml; M: /trunk/xsl/highlighting/php-hl.xml; M: /trunk/xsl/highlighting/m2-hl.xml; M: /trunk/xsl/highlighting/ini-hl.xml; M: /trunk/xsl/highlighting/xslthl-config.xml; M: /trunk/xsl/highlighting/java-hl.xml - Jirka Kosek + + + + + +Manpages +The following changes have been made to the + manpages code + since the 1.71.1 release. + + +Added initial support in manpages output for footnote, annotation, +and alt instances. Basically, they all now get handled the same +way ulink instances are. They are treated as a class as "note +sources": A numbered marker is generated at the place in the main +text flow where they occur, then their contents are displayed in +an endnotes section at the end of the man page (currently titled +REFERENCES, for English output, but will be changed to NOTES). + +This support is not yet complete. It works for most "normal" +cases, but probably mishandles a good number of cases. More +testing will be needed to expose the problems. It may well also +introduce some bugs and regressions in other areas, including +basic paragraph handling, handling of "mixed block" content, +handling of other indented content, and handling of authorblurb +and personblurb in the AUTHORS section.M: /trunk/xsl/manpages/table.xsl; M: /trunk/xsl/manpages/block.xsl; M: /trunk/xsl/manpages/docbook.xsl; M: /trunk/xsl/manpages/links.xsl; M: /trunk/xsl/manpages/other.xsl; M: /trunk/xsl/manpages/utility.xsl - Michael(tm) Smith + + + + + +Params +The following changes have been made to the + params code + since the 1.71.1 release. + + +Added support for profiling based on xml:lang and status attributes.A: /trunk/xsl/params/profile.status.xml - Jirka Kosek + + +Added the html.append and chunk.append parameters. By default, the +value of both is empty; but the internal DocBook XSL stylesheets +build sets their value to "<xsl:text>&#x0a;</xsl:text>", in order +to ensure that all files in the docbook-xsl-doc package end in a +newline character. (Because diff and some other tools may emit +error messages and/or not behave as expected when processing +files that are not newline-terminated.)A: /trunk/xsl/params/html.append.xml; A: /trunk/xsl/params/chunk.append.xml - Michael(tm) Smith + + + + + +Profiling +The following changes have been made to the + profiling code + since the 1.71.1 release. + + +Added support for profiling based on xml:lang and status attributes.M: /trunk/xsl/profiling/profile.xsl; M: /trunk/xsl/profiling/profile-mode.xsl - Jirka Kosek + + + + + + + +Release: 1.71.0 +This is mainly a bug fix release, but it also includes two +significant feature changes: + + + Highlighting support added + + The stylesheets now include support for source-code + highlighting in output of programlisting instances (controlled + through the highlight.source + parameter). The Java-based implementation requires Saxon and + makes use of MichalMolhanec’s XSLTHL. More details are available at Jirka Kosek’s + website:
    The support is currently limited to highlighting + of XML, Java, PHP, Delphi, Modula-2 sources, and INI + files.
    +
    +
    + + Changes to autoindexing + + The templates that handle alternative indexing methods + were reworked to avoid errors produced by certain processors not + being able to tolerate the presence of unused functions. With + this release, none of the code for the 'kimber' or 'kosek' + methods is included in the default stylesheets. In order to use + one of those methods, your customization layer must import one + of the optional stylesheet modules: + + + + html/autoidx-kosek.xsl + + + html/autoidx-kimber.xsl + + + fo/autoidx-kosek.xsl + + + fo/autoidx-kimber.xsl + + + See the index.method parameter + reference page for more information. + + Two other changes to note: + + + The default indexing method now can handle accented + characters in latin-based alphabets, not just English. This + means accented latin letters will group and sort with their + unaccented counterpart. + + + The default value for the + index.method parameter was changed + from 'english' to 'basic' because now the default method can + handle latin-based alphabets, not just English. + + + + + +
    +The following is a list of changes that have +been made since the 1.70.1 release.
    + + +Common +The following changes have been made to the + common code + since the 1.70.1 release. + + + +Added reference.autolabel parameter for controlling labels on +reference output.M: /trunk/xsl/common/labels.xsl - Michael(tm) Smith + + +Support rows that are *completely* overlapped by the preceding rowM: /trunk/xsl/common/table.xsl - Norman Walsh + + +New modules for supporting indexing extensions.A: /trunk/xsl/common/autoidx-kimber.xsl; A: /trunk/xsl/common/autoidx-kosek.xsl - Robert Stayton + + +Support startinglinenumber on orderedlistM: /trunk/xsl/common/common.xsl - Norman Walsh + + + + + +Extensions +The following changes have been made to the + extensions code + since the 1.70.1 release. + + +Completely reworked extensions build system; now uses NetBeans and antD: /trunk/xsl/extensions/xalan27/.cvsignore; A: /trunk/xsl/extensions/saxon65/nbproject; A: /trunk/xsl/extensions/saxon65/nbproject/project.properties; D: /trunk/xsl/extensions/prj.el; A: /trunk/xsl/extensions/saxon65/src; A: /trunk/xsl/extensions/xalan2/src/com; M: /trunk/xsl/extensions/xalan2/src/com/nwalsh/xalan/Text.java; A: /trunk/xsl/extensions/saxon65/nbproject/project.xml; D: /trunk/xsl/extensions/build.xml; A: /trunk/xsl/extensions/saxon65/build.xml; A: /trunk/xsl/extensions/xalan2/nbproject/genfiles.properties; A: /trunk/xsl/extensions/saxon65; D: /trunk/xsl/extensions/xalan2/com; M: /trunk/xsl/extensions/xalan2/src/com/nwalsh/xalan/Func.java; A: /trunk/xsl/extensions/xalan2/test; A: /trunk/xsl/extensions/saxon65/src/com; A: /trunk/xsl/extensions/xalan2/nbproject/build-impl.xml; A: /trunk/xsl/extensions/xalan2/nbproject; A: /trunk/xsl/extensions/xalan2/src; A: /trunk/xsl/extensions/xalan2/nbproject/project.properties; D: /trunk/xsl/extensions/.cvsignore; M: /trunk/xsl/extensions/Makefile; D: /trunk/xsl/extensions/saxon8; A: /trunk/xsl/extensions/saxon65/nbproject/genfiles.properties; A: /trunk/xsl/extensions/xalan2/nbproject/project.xml; A: /trunk/xsl/extensions/saxon65/test; M: /trunk/xsl/extensions/xalan2/src/com/nwalsh/xalan/Verbatim.java; A: /trunk/xsl/extensions/xalan2/build.xml; M: /trunk/xsl/extensions/xalan2; D: /trunk/xsl/extensions/saxon643; A: /trunk/xsl/extensions/saxon65/nbproject/build-impl.xml - Norman Walsh + + + + + +FO +The following changes have been made to the + fo code + since the 1.70.1 release. + + + +xsl:sort lang attribute now uses two-char substring of lang attribute.M: /trunk/xsl/fo/autoidx-kimber.xsl - Robert Stayton + + + +Support titlecase "Java", "Perl", and "IDL" as values for the +language attribute on classsynopsis, etc. (instead of just +lowercase "java", "perl", and "idl"). Also support "c++" and "C++" +(instead of just "cpp"). + +Affects HTML, FO, and manpages output. Closes bug 1552332. Thanks +to "Brian A. Vanderburg II".M: /trunk/xsl/fo/synop.xsl - Michael(tm) Smith + + + +Added support for the reference.autolabel param in (X)HTML and FO +output.M: /trunk/xsl/fo/param.xweb; M: /trunk/xsl/fo/param.ent - Michael(tm) Smith + + + +Support rows that are *completely* overlapped by the preceding rowM: /trunk/xsl/fo/table.xsl - Norman Walsh + + + +Rearranged templates for the 3 indexing methods +and changed method named 'english' to 'basic'.M: /trunk/xsl/fo/autoidx.xsl - Robert Stayton + + +New modules for supporting indexing extensions.A: /trunk/xsl/fo/autoidx-kimber.xsl; A: /trunk/xsl/fo/autoidx-kosek.xsl - Robert Stayton + + + +Turn off blank-body for fop1.extensions too since fop 0.92 +does not support it either.M: /trunk/xsl/fo/pagesetup.xsl - Robert Stayton + + + +Add Xalan variant to test for exslt:node-set function. +Xalan can use function named node-set(), but doesn't +recognize it using function-available().M: /trunk/xsl/fo/autoidx.xsl - Robert Stayton + + + +Added support to FO stylesheets for handling instances of Org +where it occurs outside of *info content. In HTML stylesheets, +moved handling of Org out of info.xsl and into inline.xsl. In both +FO and HTML stylesheets, added support for correctly processing +Affiliation and Jobtitle.M: /trunk/xsl/fo/inline.xsl - Michael(tm) Smith + + +Don't output punctuation between Refname and Refpurpose if +Refpurpose is empty. Also corrected handling of Refsect2/title +instances, and removed some debugging stuff that was generated in +manpages output to mark the ends of sections.M: /trunk/xsl/fo/refentry.xsl - Michael(tm) Smith + + +Added new email.delimiters.enabled param. If non-zero (the +default), delimiters are generated around e-mail addresses (output +of the email element). If zero, the delimiters are suppressed.M: /trunk/xsl/fo/inline.xsl; M: /trunk/xsl/fo/param.xweb; M: /trunk/xsl/fo/param.ent - Michael(tm) Smith + + + +Initial support of syntax highlighting of programlistings.M: /trunk/xsl/fo/param.ent; M: /trunk/xsl/fo/param.xweb; A: /trunk/xsl/fo/highlight.xsl; M: /trunk/xsl/fo/verbatim.xsl - Jirka Kosek + + +Chapter after preface should restart numbering of pages.M: /trunk/xsl/fo/pagesetup.xsl - Jirka Kosek + + + + + +HTML +The following changes have been made to the + html code + since the 1.70.1 release. + + + +xsl:sort lang attribute now uses two-char substring of lang attribute.M: /trunk/xsl/html/autoidx-kimber.xsl - Robert Stayton + + +Support titlecase "Java", "Perl", and "IDL" as values for the +language attribute on classsynopsis, etc. (instead of just +lowercase "java", "perl", and "idl"). Also support "c++" and "C++" +(instead of just "cpp"). + +Affects HTML, FO, and manpages output. Closes bug 1552332. Thanks +to "Brian A. Vanderburg II".M: /trunk/xsl/html/synop.xsl - Michael(tm) Smith + + + +Added support for the reference.autolabel param in (X)HTML and FO +output.M: /trunk/xsl/html/param.xweb; M: /trunk/xsl/html/param.ent - Michael(tm) Smith + + +Support rows that are *completely* overlapped by the preceding rowM: /trunk/xsl/html/table.xsl - Norman Walsh + + + +Rearranged templates for the 3 indexing methods +and changed method named 'english' to 'basic'.M: /trunk/xsl/html/autoidx.xsl - Robert Stayton + + +New modules for supporting indexing extensions.A: /trunk/xsl/html/autoidx-kimber.xsl; A: /trunk/xsl/html/autoidx-kosek.xsl - Robert Stayton + + + +Added several new HTML parameters for controlling appearance of +content on HTML title pages: + +contrib.inline.enabled: + If non-zero (the default), output of the contrib element is + displayed as inline content rather than as block content. + +othercredit.like.author.enabled: + If non-zero, output of the othercredit element on titlepages is + displayed in the same style as author and editor output. If zero + (the default), othercredit output is displayed using a style + different than that of author and editor. + +blurb.on.titlepage.enabled: + If non-zero, output from authorblurb and personblurb elements is + displayed on title pages. If zero (the default), output from + those elements is suppressed on title pages (unless you are + using a titlepage customization that causes them to be included). + +editedby.enabled + If non-zero (the default), a localized Edited by heading is + displayed above editor names in output of the editor element.M: /trunk/xsl/html/titlepage.xsl; M: /trunk/xsl/html/param.xweb; M: /trunk/xsl/html/param.ent - Michael(tm) Smith + + + +Add Xalan variant to test for exslt:node-set function. +Xalan can use function named node-set(), but doesn't +recognize it using function-available().M: /trunk/xsl/html/autoidx.xsl - Robert Stayton + + + +Added support to FO stylesheets for handling instances of Org +where it occurs outside of *info content. In HTML stylesheets, +moved handling of Org out of info.xsl and into inline.xsl. In both +FO and HTML stylesheets, added support for correctly processing +Affiliation and Jobtitle.M: /trunk/xsl/html/inline.xsl; M: /trunk/xsl/html/info.xsl - Michael(tm) Smith + + +Don't output punctuation between Refname and Refpurpose if +Refpurpose is empty. Also corrected handling of Refsect2/title +instances, and removed some debugging stuff that was generated in +manpages output to mark the ends of sections.M: /trunk/xsl/html/refentry.xsl - Michael(tm) Smith + + +Added new email.delimiters.enabled param. If non-zero (the +default), delimiters are generated around e-mail addresses (output +of the email element). If zero, the delimiters are suppressed.M: /trunk/xsl/html/inline.xsl; M: /trunk/xsl/html/param.xweb; M: /trunk/xsl/html/param.ent - Michael(tm) Smith + + + +Added qanda.nested.in.toc param. Default value is zero. If +non-zero, instances of "nested" Qandaentry (ones that are children +of Answer elements) are displayed in the TOC. Closes patch 1509018 +(from Daniel Leidert). Currently on affects HTML output (no patch +for FO output provided).M: /trunk/xsl/html/param.xweb; M: /trunk/xsl/html/param.ent; M: /trunk/xsl/html/qandaset.xsl - Michael(tm) Smith + + + + +Improved handling of relative locations generated filesM: /trunk/xsl/html/html.xsl - Jirka Kosek + + + +Initial support of syntax highlighting of programlistings.M: /trunk/xsl/html/param.ent; M: /trunk/xsl/html/param.xweb; A: /trunk/xsl/html/highlight.xsl; M: /trunk/xsl/html/verbatim.xsl - Jirka Kosek + + +Support orgM: /trunk/xsl/html/info.xsl - Norman Walsh + + +Support personM: /trunk/xsl/html/inline.xsl - Norman Walsh + + +Support $keep.relative.image.uris also when chunkingM: /trunk/xsl/html/chunk-code.xsl - Jirka Kosek + + + + + +Highlighting +The following changes have been made to the + highlighting code + since the 1.70.1 release. + + + +Initial support of syntax highlighting of programlistings.A: /trunk/xsl/highlighting/php-hl.xml; A: /trunk/xsl/highlighting/common.xsl; A: /trunk/xsl/highlighting/delphi-hl.xml; A: /trunk/xsl/highlighting/myxml-hl.xml; A: /trunk/xsl/highlighting/m2-hl.xml; A: /trunk/xsl/highlighting/ini-hl.xml; A: /trunk/xsl/highlighting/xslthl-config.xml; A: /trunk/xsl/highlighting/java-hl.xml - Jirka Kosek + + + + + +Manpages +The following changes have been made to the + manpages code + since the 1.70.1 release. + + + +Suppress footnote markers and output warning that footnotes are +not yet supported.M: /trunk/xsl/manpages/docbook.xsl; M: /trunk/xsl/manpages/links.xsl; M: /trunk/xsl/manpages/other.xsl - Michael(tm) Smith + + + +Handle instances of address/otheraddr/ulink in author et al in the +same way as email instances; that is, display them on the same +linke as the author, editor, etc., name.M: /trunk/xsl/manpages/info.xsl - Michael(tm) Smith + + +Don't number or link-list any Ulink instance whose string value is +identical to the value of its url attribute. Just display it inline.M: /trunk/xsl/manpages/links.xsl - Michael(tm) Smith + + + +Don't output punctuation between Refname and Refpurpose if +Refpurpose is empty. Also corrected handling of Refsect2/title +instances, and removed some debugging stuff that was generated in +manpages output to mark the ends of sections.M: /trunk/xsl/manpages/refentry.xsl - Michael(tm) Smith + + +Added new email.delimiters.enabled param. If non-zero (the +default), delimiters are generated around e-mail addresses (output +of the email element). If zero, the delimiters are suppressed.M: /trunk/xsl/manpages/param.xweb; M: /trunk/xsl/manpages/param.ent - Michael(tm) Smith + + + +In manpages output, if the last/nearest *info element for +particular Refentry has multiple Copyright and/or Legalnotice +children, process them all (not just the first ones). Closes bug +1524576. Thanks to Sam Steingold for the report and to Daniel +Leidert for providing a patch.M: /trunk/xsl/manpages/info.xsl - Michael(tm) Smith + + + + + + +Params +The following changes have been made to the + params code + since the 1.70.1 release. + + +Added reference.autolabel parameter for controlling labels on +reference output.A: /trunk/xsl/params/reference.autolabel.xml - Michael(tm) Smith + + +Added namespace declarations to document elements for all param files.M: /trunk/xsl/params/toc.line.properties.xml; M: /trunk/xsl/params/title.font.family.xml; M: /trunk/xsl/params/component.label.includes.part.label.xml; M: /trunk/xsl/params/refentry.manual.profile.xml; M: /trunk/xsl/params/orderedlist.properties.xml; M: /trunk/xsl/params/olink.pubid.xml; M: /trunk/xsl/params/informalexample.properties.xml; M: /trunk/xsl/params/appendix.autolabel.xml; M: /trunk/xsl/params/htmlhelp.show.toolbar.text.xml; M: /trunk/xsl/params/index.on.role.xml; M: /trunk/xsl/params/htmlhelp.button.jump2.url.xml; M: /trunk/xsl/params/variablelist.term.separator.xml; M: /trunk/xsl/params/para.propagates.style.xml; M: /trunk/xsl/params/html.stylesheet.xml; M: /trunk/xsl/params/qanda.nested.in.toc.xml; M: /trunk/xsl/params/annotation.css.xml; M: /trunk/xsl/params/funcsynopsis.style.xml; M: /trunk/xsl/params/htmlhelp.encoding.xml; M: /trunk/xsl/params/footer.content.properties.xml; M: /trunk/xsl/params/verbatim.properties.xml; M: /trunk/xsl/params/autotoc.label.in.hyperlink.xml; M: /trunk/xsl/params/body.margin.top.xml; M: /trunk/xsl/params/bibliography.numbered.xml; M: /trunk/xsl/params/figure.properties.xml; M: /trunk/xsl/params/variablelist.max.termlength.xml; M: /trunk/xsl/params/table.cell.border.style.xml; M: /trunk/xsl/params/htmlhelp.button.options.xml; M: /trunk/xsl/params/preferred.mediaobject.role.xml; M: /trunk/xsl/params/htmlhelp.chm.xml; M: /trunk/xsl/params/man.charmap.subset.profile.xml; M: /trunk/xsl/params/qanda.title.level3.properties.xml; M: /trunk/xsl/params/page.width.xml; M: /trunk/xsl/params/firstterm.only.link.xml; M: /trunk/xsl/params/section.level6.properties.xml; M: /trunk/xsl/params/htmlhelp.button.locate.xml; M: /trunk/xsl/params/chunk.sections.xml; M: /trunk/xsl/params/use.local.olink.style.xml; M: /trunk/xsl/params/refentry.date.profile.enabled.xml; M: /trunk/xsl/params/refentry.version.suppress.xml; M: /trunk/xsl/params/refentry.generate.title.xml; M: /trunk/xsl/params/punct.honorific.xml; M: /trunk/xsl/params/column.gap.index.xml; M: /trunk/xsl/params/body.start.indent.xml; M: /trunk/xsl/params/crop.mark.width.xml; M: /trunk/xsl/params/refentry.version.profile.enabled.xml; M: /trunk/xsl/params/superscript.properties.xml; M: /trunk/xsl/params/chunker.output.doctype-public.xml; M: /trunk/xsl/params/saxon.character.representation.xml; M: /trunk/xsl/params/saxon.linenumbering.xml; M: /trunk/xsl/params/shade.verbatim.style.xml; M: /trunk/xsl/params/annotate.toc.xml; M: /trunk/xsl/params/profile.attribute.xml; M: /trunk/xsl/params/callout.graphics.number.limit.xml; M: /trunk/xsl/params/profile.arch.xml; M: /trunk/xsl/params/saxon.tablecolumns.xml; M: /trunk/xsl/params/glossterm.auto.link.xml; M: /trunk/xsl/params/default.units.xml; M: /trunk/xsl/params/qanda.title.level1.properties.xml; M: /trunk/xsl/params/list.block.spacing.xml; M: /trunk/xsl/params/section.level4.properties.xml; M: /trunk/xsl/params/spacing.paras.xml; M: /trunk/xsl/params/column.count.index.xml; M: /trunk/xsl/params/dingbat.font.family.xml; M: /trunk/xsl/params/citerefentry.link.xml; M: /trunk/xsl/params/keep.relative.image.uris.xml; M: /trunk/xsl/params/ulink.footnotes.xml; M: /trunk/xsl/params/prefer.internal.olink.xml; M: /trunk/xsl/params/refentry.title.properties.xml; M: /trunk/xsl/params/variablelist.term.break.after.xml; M: /trunk/xsl/params/use.id.function.xml; M: /trunk/xsl/params/callout.unicode.start.character.xml; M: /trunk/xsl/params/column.gap.titlepage.xml; M: /trunk/xsl/params/editedby.enabled.xml; M: /trunk/xsl/params/funcsynopsis.tabular.threshold.xml; M: /trunk/xsl/params/use.extensions.xml; M: /trunk/xsl/params/index.preferred.page.properties.xml; M: /trunk/xsl/params/man.th.extra3.max.length.xml; M: /trunk/xsl/params/column.gap.back.xml; M: /trunk/xsl/params/tex.math.delims.xml; M: /trunk/xsl/params/article.appendix.title.properties.xml; M: /trunk/xsl/params/ulink.target.xml; M: /trunk/xsl/params/suppress.header.navigation.xml; M: /trunk/xsl/params/olink.resolver.xml; M: /trunk/xsl/params/admon.textlabel.xml; M: /trunk/xsl/params/procedure.properties.xml; M: /trunk/xsl/params/blurb.on.titlepage.enabled.xml; M: /trunk/xsl/params/section.level2.properties.xml; M: /trunk/xsl/params/column.gap.front.xml; M: /trunk/xsl/params/margin.note.title.properties.xml; M: /trunk/xsl/params/glossary.collection.xml; M: /trunk/xsl/params/admon.graphics.xml; M: /trunk/xsl/params/current.docid.xml; M: /trunk/xsl/params/qanda.inherit.numeration.xml; M: /trunk/xsl/params/table.cell.padding.xml; M: /trunk/xsl/params/preface.autolabel.xml; M: /trunk/xsl/params/man.th.extra3.suppress.xml; M: /trunk/xsl/params/wordml.template.xml; M: /trunk/xsl/params/htmlhelp.use.hhk.xml; M: /trunk/xsl/params/textinsert.extension.xml; M: /trunk/xsl/params/ebnf.table.bgcolor.xml; M: /trunk/xsl/params/refentry.source.fallback.profile.xml; M: /trunk/xsl/params/body.font.master.xml; M: /trunk/xsl/params/l10n.gentext.default.language.xml; M: /trunk/xsl/params/list.block.properties.xml; M: /trunk/xsl/params/refentry.source.name.suppress.xml; M: /trunk/xsl/params/htmlhelp.hhp.window.xml; M: /trunk/xsl/params/sidebar.properties.xml; M: /trunk/xsl/params/tex.math.file.xml; M: /trunk/xsl/params/man.justify.xml; M: /trunk/xsl/params/subscript.properties.xml; M: /trunk/xsl/params/column.count.front.xml; M: /trunk/xsl/params/index.term.separator.xml; M: /trunk/xsl/params/biblioentry.properties.xml; M: /trunk/xsl/params/biblioentry.item.separator.xml; M: /trunk/xsl/params/htmlhelp.button.home.url.xml; M: /trunk/xsl/params/column.count.body.xml; M: /trunk/xsl/params/suppress.navigation.xml; M: /trunk/xsl/params/htmlhelp.remember.window.position.xml; M: /trunk/xsl/params/htmlhelp.hhc.section.depth.xml; M: /trunk/xsl/params/xref.with.number.and.title.xml; M: /trunk/xsl/params/make.year.ranges.xml; M: /trunk/xsl/params/region.before.extent.xml; M: /trunk/xsl/params/xref.label-page.separator.xml; M: /trunk/xsl/params/html.longdesc.link.xml; M: /trunk/xsl/params/man.subheading.divider.enabled.xml; M: /trunk/xsl/params/index.entry.properties.xml; M: /trunk/xsl/params/generate.legalnotice.link.xml; M: /trunk/xsl/params/section.autolabel.xml; M: /trunk/xsl/params/html.base.xml; M: /trunk/xsl/params/suppress.footer.navigation.xml; M: /trunk/xsl/params/nominal.image.depth.xml; M: /trunk/xsl/params/table.footnote.number.symbols.xml; M: /trunk/xsl/params/table.footnote.number.format.xml; M: /trunk/xsl/params/callout.graphics.xml; M: /trunk/xsl/params/man.break.after.slash.xml; M: /trunk/xsl/params/function.parens.xml; M: /trunk/xsl/params/part.autolabel.xml; M: /trunk/xsl/params/saxon.callouts.xml; M: /trunk/xsl/params/css.decoration.xml; M: /trunk/xsl/params/htmlhelp.button.home.xml; M: /trunk/xsl/params/email.delimiters.enabled.xml; M: /trunk/xsl/params/column.count.lot.xml; M: /trunk/xsl/params/draft.mode.xml; M: /trunk/xsl/params/use.role.for.mediaobject.xml; M: /trunk/xsl/params/refentry.separator.xml; M: /trunk/xsl/params/man.font.funcsynopsisinfo.xml; M: /trunk/xsl/params/man.output.manifest.filename.xml; M: /trunk/xsl/params/process.empty.source.toc.xml; M: /trunk/xsl/params/man.output.in.separate.dir.xml; M: /trunk/xsl/params/graphicsize.use.img.src.path.xml; M: /trunk/xsl/params/man.output.encoding.xml; M: /trunk/xsl/params/column.gap.lot.xml; M: /trunk/xsl/params/profile.role.xml; M: /trunk/xsl/params/column.count.titlepage.xml; M: /trunk/xsl/params/show.comments.xml; M: /trunk/xsl/params/informalfigure.properties.xml; M: /trunk/xsl/params/entry.propagates.style.xml; M: /trunk/xsl/params/bibliography.collection.xml; M: /trunk/xsl/params/contrib.inline.enabled.xml; M: /trunk/xsl/params/section.title.level5.properties.xml; M: /trunk/xsl/params/fop.extensions.xml; M: /trunk/xsl/params/htmlhelp.button.jump1.xml; M: /trunk/xsl/params/man.hyphenate.urls.xml; M: /trunk/xsl/params/profile.condition.xml; M: /trunk/xsl/params/header.column.widths.xml; M: /trunk/xsl/params/annotation.js.xml; M: /trunk/xsl/params/chunker.output.standalone.xml; M: /trunk/xsl/params/targets.filename.xml; M: /trunk/xsl/params/default.float.class.xml; M: /trunk/xsl/params/chapter.autolabel.xml; M: /trunk/xsl/params/sidebar.float.type.xml; M: /trunk/xsl/params/profile.separator.xml; M: /trunk/xsl/params/generate.index.xml; M: /trunk/xsl/params/nongraphical.admonition.properties.xml; M: /trunk/xsl/params/navig.graphics.xml; M: /trunk/xsl/params/htmlhelp.button.next.xml; M: /trunk/xsl/params/insert.olink.pdf.frag.xml; M: /trunk/xsl/params/htmlhelp.button.stop.xml; M: /trunk/xsl/params/footnote.font.size.xml; M: /trunk/xsl/params/profile.value.xml; M: /trunk/xsl/params/ebnf.table.border.xml; M: /trunk/xsl/params/htmlhelp.hhc.folders.instead.books.xml; M: /trunk/xsl/params/glossary.as.blocks.xml; M: /trunk/xsl/params/body.end.indent.xml; M: /trunk/xsl/params/use.role.as.xrefstyle.xml; M: /trunk/xsl/params/man.indent.blurbs.xml; M: /trunk/xsl/params/chunker.output.encoding.xml; M: /trunk/xsl/params/chunker.output.omit-xml-declaration.xml; M: /trunk/xsl/params/sans.font.family.xml; M: /trunk/xsl/params/html.cleanup.xml; M: /trunk/xsl/params/htmlhelp.hhp.xml; M: /trunk/xsl/params/htmlhelp.only.xml; M: /trunk/xsl/params/eclipse.plugin.name.xml; M: /trunk/xsl/params/section.title.level3.properties.xml; M: /trunk/xsl/params/man.th.extra1.suppress.xml; M: /trunk/xsl/params/chunk.section.depth.xml; M: /trunk/xsl/params/htmlhelp.hhp.tail.xml; M: /trunk/xsl/params/sidebar.title.properties.xml; M: /trunk/xsl/params/hyphenate.xml; M: /trunk/xsl/params/paper.type.xml; M: /trunk/xsl/params/chunk.tocs.and.lots.has.title.xml; M: /trunk/xsl/params/symbol.font.family.xml; M: /trunk/xsl/params/page.margin.bottom.xml; M: /trunk/xsl/params/callout.unicode.number.limit.xml; M: /trunk/xsl/params/itemizedlist.properties.xml; M: /trunk/xsl/params/root.filename.xml; M: /trunk/xsl/params/tablecolumns.extension.xml; M: /trunk/xsl/params/htmlhelp.show.favorities.xml; M: /trunk/xsl/params/informaltable.properties.xml; M: /trunk/xsl/params/revhistory.table.cell.properties.xml; M: /trunk/xsl/params/htmlhelp.default.topic.xml; M: /trunk/xsl/params/compact.list.item.spacing.xml; M: /trunk/xsl/params/page.height.portrait.xml; M: /trunk/xsl/params/html.head.legalnotice.link.types.xml; M: /trunk/xsl/params/passivetex.extensions.xml; M: /trunk/xsl/params/orderedlist.label.properties.xml; M: /trunk/xsl/params/othercredit.like.author.enabled.xml; M: /trunk/xsl/params/header.content.properties.xml; M: /trunk/xsl/params/refentry.meta.get.quietly.xml; M: /trunk/xsl/params/section.properties.xml; M: /trunk/xsl/params/htmlhelp.button.hideshow.xml; M: /trunk/xsl/params/simplesect.in.toc.xml; M: /trunk/xsl/params/chunk.quietly.xml; M: /trunk/xsl/params/htmlhelp.enumerate.images.xml; M: /trunk/xsl/params/section.title.level1.properties.xml; M: /trunk/xsl/params/qanda.defaultlabel.xml; M: /trunk/xsl/params/htmlhelp.enhanced.decompilation.xml; M: /trunk/xsl/params/man.th.title.max.length.xml; M: /trunk/xsl/params/footnote.number.format.xml; M: /trunk/xsl/params/body.margin.bottom.xml; M: /trunk/xsl/params/htmlhelp.window.geometry.xml; M: /trunk/xsl/params/htmlhelp.button.jump2.xml; M: /trunk/xsl/params/use.svg.xml; M: /trunk/xsl/params/qanda.title.level6.properties.xml; M: /trunk/xsl/params/collect.xref.targets.xml; M: /trunk/xsl/params/html.extra.head.links.xml; M: /trunk/xsl/params/variablelist.as.table.xml; M: /trunk/xsl/params/man.indent.width.xml; M: /trunk/xsl/params/eclipse.plugin.id.xml; M: /trunk/xsl/params/linenumbering.width.xml; M: /trunk/xsl/params/axf.extensions.xml; M: /trunk/xsl/params/menuchoice.separator.xml; M: /trunk/xsl/params/glossterm.separation.xml; M: /trunk/xsl/params/htmlhelp.autolabel.xml; M: /trunk/xsl/params/chunk.separate.lots.xml; M: /trunk/xsl/params/man.hyphenate.computer.inlines.xml; M: /trunk/xsl/params/linenumbering.separator.xml; M: /trunk/xsl/params/htmlhelp.title.xml; M: /trunk/xsl/params/index.number.separator.xml; M: /trunk/xsl/params/htmlhelp.button.prev.xml; M: /trunk/xsl/params/refentry.manual.fallback.profile.xml; M: /trunk/xsl/params/table.frame.border.color.xml; M: /trunk/xsl/params/footnote.sep.leader.properties.xml; M: /trunk/xsl/params/hyphenate.verbatim.characters.xml; M: /trunk/xsl/params/table.cell.border.thickness.xml; M: /trunk/xsl/params/template.xml; M: /trunk/xsl/params/margin.note.properties.xml; M: /trunk/xsl/params/man.segtitle.suppress.xml; M: /trunk/xsl/params/generate.toc.xml; M: /trunk/xsl/params/formal.object.properties.xml; M: /trunk/xsl/params/footnote.mark.properties.xml; M: /trunk/xsl/params/header.table.height.xml; M: /trunk/xsl/params/htmlhelp.button.back.xml; M: /trunk/xsl/params/qanda.title.level4.properties.xml; M: /trunk/xsl/params/man.links.are.numbered.xml; M: /trunk/xsl/params/manual.toc.xml; M: /trunk/xsl/params/olink.lang.fallback.sequence.xml; M: /trunk/xsl/params/refentry.manual.profile.enabled.xml; M: /trunk/xsl/params/ulink.hyphenate.chars.xml; M: /trunk/xsl/params/manifest.xml; M: /trunk/xsl/params/olink.fragid.xml; M: /trunk/xsl/params/refentry.date.profile.xml; M: /trunk/xsl/params/linenumbering.extension.xml; M: /trunk/xsl/params/component.title.properties.xml; M: /trunk/xsl/params/alignment.xml; M: /trunk/xsl/params/refentry.version.profile.xml; M: /trunk/xsl/params/ebnf.assignment.xml; M: /trunk/xsl/params/htmlhelp.button.print.xml; M: /trunk/xsl/params/annotation.support.xml; M: /trunk/xsl/params/sidebar.float.width.xml; M: /trunk/xsl/params/normal.para.spacing.xml; M: /trunk/xsl/params/xref.title-page.separator.xml; M: /trunk/xsl/params/callout.unicode.font.xml; M: /trunk/xsl/params/default.table.frame.xml; M: /trunk/xsl/params/pages.template.xml; M: /trunk/xsl/params/htmlhelp.button.zoom.xml; M: /trunk/xsl/params/admonition.title.properties.xml; M: /trunk/xsl/params/callout.graphics.extension.xml; M: /trunk/xsl/params/make.valid.html.xml; M: /trunk/xsl/params/qanda.title.level2.properties.xml; M: /trunk/xsl/params/page.margin.top.xml; M: /trunk/xsl/params/xep.index.item.properties.xml; M: /trunk/xsl/params/section.level5.properties.xml; M: /trunk/xsl/params/line-height.xml; M: /trunk/xsl/params/table.cell.border.color.xml; M: /trunk/xsl/params/qandadiv.autolabel.xml; M: /trunk/xsl/params/xref.label-title.separator.xml; M: /trunk/xsl/params/chunk.tocs.and.lots.xml; M: /trunk/xsl/params/man.font.funcprototype.xml; M: /trunk/xsl/params/process.source.toc.xml; M: /trunk/xsl/params/page.orientation.xml; M: /trunk/xsl/params/refentry.generate.name.xml; M: /trunk/xsl/params/navig.showtitles.xml; M: /trunk/xsl/params/table.table.properties.xml; M: /trunk/xsl/params/arbortext.extensions.xml; M: /trunk/xsl/params/informalequation.properties.xml; M: /trunk/xsl/params/headers.on.blank.pages.xml; M: /trunk/xsl/params/table.footnote.properties.xml; M: /trunk/xsl/params/root.properties.xml; M: /trunk/xsl/params/htmlhelp.display.progress.xml; M: /trunk/xsl/params/htmlhelp.hhp.windows.xml; M: /trunk/xsl/params/graphical.admonition.properties.xml; M: /trunk/xsl/params/refclass.suppress.xml; M: /trunk/xsl/params/profile.conformance.xml; M: /trunk/xsl/params/htmlhelp.button.forward.xml; M: /trunk/xsl/params/segmentedlist.as.table.xml; M: /trunk/xsl/params/margin.note.float.type.xml; M: /trunk/xsl/params/man.table.footnotes.divider.xml; M: /trunk/xsl/params/man.output.quietly.xml; M: /trunk/xsl/params/htmlhelp.hhc.show.root.xml; M: /trunk/xsl/params/footers.on.blank.pages.xml; M: /trunk/xsl/params/crop.mark.offset.xml; M: /trunk/xsl/params/olink.doctitle.xml; M: /trunk/xsl/params/section.level3.properties.xml; M: /trunk/xsl/params/callout.unicode.xml; M: /trunk/xsl/params/formal.procedures.xml; M: /trunk/xsl/params/toc.section.depth.xml; M: /trunk/xsl/params/index.prefer.titleabbrev.xml; M: /trunk/xsl/params/nominal.image.width.xml; M: /trunk/xsl/params/htmlhelp.show.menu.xml; M: /trunk/xsl/params/linenumbering.everyNth.xml; M: /trunk/xsl/params/double.sided.xml; M: /trunk/xsl/params/generate.revhistory.link.xml; M: /trunk/xsl/params/olink.properties.xml; M: /trunk/xsl/params/tex.math.in.alt.xml; M: /trunk/xsl/params/man.output.subdirs.enabled.xml; M: /trunk/xsl/params/section.title.properties.xml; M: /trunk/xsl/params/column.count.back.xml; M: /trunk/xsl/params/toc.indent.width.xml; M: /trunk/xsl/params/man.charmap.uri.xml; M: /trunk/xsl/params/index.method.xml; M: /trunk/xsl/params/generate.section.toc.level.xml; M: /trunk/xsl/params/page.width.portrait.xml; M: /trunk/xsl/params/man.th.extra2.max.length.xml; M: /trunk/xsl/params/abstract.properties.xml; M: /trunk/xsl/params/revhistory.table.properties.xml; M: /trunk/xsl/params/nominal.table.width.xml; M: /trunk/xsl/params/ulink.show.xml; M: /trunk/xsl/params/htmlhelp.button.jump1.title.xml; M: /trunk/xsl/params/index.div.title.properties.xml; M: /trunk/xsl/params/profile.userlevel.xml; M: /trunk/xsl/params/html.cellpadding.xml; M: /trunk/xsl/params/orderedlist.label.width.xml; M: /trunk/xsl/params/crop.marks.xml; M: /trunk/xsl/params/menuchoice.menu.separator.xml; M: /trunk/xsl/params/author.othername.in.middle.xml; M: /trunk/xsl/params/section.level1.properties.xml; M: /trunk/xsl/params/textdata.default.encoding.xml; M: /trunk/xsl/params/label.from.part.xml; M: /trunk/xsl/params/use.embed.for.svg.xml; M: /trunk/xsl/params/list.item.spacing.xml; M: /trunk/xsl/params/htmlhelp.hhc.width.xml; M: /trunk/xsl/params/column.gap.body.xml; M: /trunk/xsl/params/rootid.xml; M: /trunk/xsl/params/glosslist.as.blocks.xml; M: /trunk/xsl/params/index.range.separator.xml; M: /trunk/xsl/params/html.ext.xml; M: /trunk/xsl/params/callout.list.table.xml; M: /trunk/xsl/params/highlight.source.xml; M: /trunk/xsl/params/show.revisionflag.xml; M: /trunk/xsl/params/man.output.manifest.enabled.xml; M: /trunk/xsl/params/make.single.year.ranges.xml; M: /trunk/xsl/params/pgwide.properties.xml; M: /trunk/xsl/params/generate.id.attributes.xml; M: /trunk/xsl/params/emphasis.propagates.style.xml; M: /trunk/xsl/params/abstract.title.properties.xml; M: /trunk/xsl/params/htmlhelp.hhc.xml; M: /trunk/xsl/params/monospace.properties.xml; M: /trunk/xsl/params/htmlhelp.hhk.xml; M: /trunk/xsl/params/table.borders.with.css.xml; M: /trunk/xsl/params/man.links.are.underlined.xml; M: /trunk/xsl/params/profile.vendor.xml; M: /trunk/xsl/params/shade.verbatim.xml; M: /trunk/xsl/params/callout.graphics.path.xml; M: /trunk/xsl/params/olink.debug.xml; M: /trunk/xsl/params/make.graphic.viewport.xml; M: /trunk/xsl/params/footnote.number.symbols.xml; M: /trunk/xsl/params/man.charmap.enabled.xml; M: /trunk/xsl/params/page.height.xml; M: /trunk/xsl/params/htmlhelp.button.jump1.url.xml; M: /trunk/xsl/params/man.font.table.title.xml; M: /trunk/xsl/params/revhistory.title.properties.xml; M: /trunk/xsl/params/chunker.output.media-type.xml; M: /trunk/xsl/params/glossterm.width.xml; M: /trunk/xsl/params/points.per.em.xml; M: /trunk/xsl/params/page.margin.inner.xml; M: /trunk/xsl/params/itemizedlist.label.width.xml; M: /trunk/xsl/params/ulink.hyphenate.xml; M: /trunk/xsl/params/crop.mark.bleed.xml; M: /trunk/xsl/params/use.id.as.filename.xml; M: /trunk/xsl/params/section.title.level6.properties.xml; M: /trunk/xsl/params/highlight.default.language.xml; M: /trunk/xsl/params/man.th.extra2.suppress.xml; M: /trunk/xsl/params/id.warnings.xml; M: /trunk/xsl/params/title.margin.left.xml; M: /trunk/xsl/params/chunker.output.doctype-system.xml; M: /trunk/xsl/params/man.indent.verbatims.xml; M: /trunk/xsl/params/table.frame.border.thickness.xml; M: /trunk/xsl/params/monospace.verbatim.properties.xml; M: /trunk/xsl/params/formal.title.properties.xml; M: /trunk/xsl/params/margin.note.width.xml; M: /trunk/xsl/params/man.hyphenate.filenames.xml; M: /trunk/xsl/params/blockquote.properties.xml; M: /trunk/xsl/params/callout.defaultcolumn.xml; M: /trunk/xsl/params/profile.security.xml; M: /trunk/xsl/params/informal.object.properties.xml; M: /trunk/xsl/params/formal.title.placement.xml; M: /trunk/xsl/params/draft.watermark.image.xml; M: /trunk/xsl/params/equation.properties.xml; M: /trunk/xsl/params/body.font.family.xml; M: /trunk/xsl/params/ignore.image.scaling.xml; M: /trunk/xsl/params/chunk.first.sections.xml; M: /trunk/xsl/params/base.dir.xml; M: /trunk/xsl/params/footnote.properties.xml; M: /trunk/xsl/params/olink.outline.ext.xml; M: /trunk/xsl/params/img.src.path.xml; M: /trunk/xsl/params/qanda.title.properties.xml; M: /trunk/xsl/params/ebnf.statement.terminator.xml; M: /trunk/xsl/params/callouts.extension.xml; M: /trunk/xsl/params/manifest.in.base.dir.xml; M: /trunk/xsl/params/fop1.extensions.xml; M: /trunk/xsl/params/olink.sysid.xml; M: /trunk/xsl/params/section.title.level4.properties.xml; M: /trunk/xsl/params/monospace.font.family.xml; M: /trunk/xsl/params/l10n.gentext.language.xml; M: /trunk/xsl/params/graphic.default.extension.xml; M: /trunk/xsl/params/default.image.width.xml; M: /trunk/xsl/params/htmlhelp.button.refresh.xml; M: /trunk/xsl/params/chunker.output.cdata-section-elements.xml; M: /trunk/xsl/params/admon.graphics.path.xml; M: /trunk/xsl/params/admon.style.xml; M: /trunk/xsl/params/profile.revision.xml; M: /trunk/xsl/params/generate.manifest.xml; M: /trunk/xsl/params/html.longdesc.xml; M: /trunk/xsl/params/footer.rule.xml; M: /trunk/xsl/params/eclipse.plugin.provider.xml; M: /trunk/xsl/params/refentry.source.name.profile.xml; M: /trunk/xsl/params/toc.max.depth.xml; M: /trunk/xsl/params/chunker.output.indent.xml; M: /trunk/xsl/params/html.head.legalnotice.link.multiple.xml; M: /trunk/xsl/params/toc.list.type.xml; M: /trunk/xsl/params/link.mailto.url.xml; M: /trunk/xsl/params/table.properties.xml; M: /trunk/xsl/params/side.float.properties.xml; M: /trunk/xsl/params/man.charmap.use.subset.xml; M: /trunk/xsl/params/annotation.graphic.open.xml; M: /trunk/xsl/params/html.cellspacing.xml; M: /trunk/xsl/params/default.table.width.xml; M: /trunk/xsl/params/xep.extensions.xml; M: /trunk/xsl/params/admonition.properties.xml; M: /trunk/xsl/params/toc.margin.properties.xml; M: /trunk/xsl/params/chunk.toc.xml; M: /trunk/xsl/params/table.entry.padding.xml; M: /trunk/xsl/params/header.rule.xml; M: /trunk/xsl/params/glossentry.show.acronym.xml; M: /trunk/xsl/params/variablelist.as.blocks.xml; M: /trunk/xsl/params/man.hyphenate.xml; M: /trunk/xsl/params/refentry.source.name.profile.enabled.xml; M: /trunk/xsl/params/section.label.includes.component.label.xml; M: /trunk/xsl/params/bridgehead.in.toc.xml; M: /trunk/xsl/params/section.title.level2.properties.xml; M: /trunk/xsl/params/admon.graphics.extension.xml; M: /trunk/xsl/params/inherit.keywords.xml; M: /trunk/xsl/params/insert.xref.page.number.xml; M: /trunk/xsl/params/pixels.per.inch.xml; M: /trunk/xsl/params/refentry.pagebreak.xml; M: /trunk/xsl/params/profile.lang.xml; M: /trunk/xsl/params/insert.olink.page.number.xml; M: /trunk/xsl/params/generate.meta.abstract.xml; M: /trunk/xsl/params/graphicsize.extension.xml; M: /trunk/xsl/params/man.indent.lists.xml; M: /trunk/xsl/params/funcsynopsis.decoration.xml; M: /trunk/xsl/params/runinhead.title.end.punct.xml; M: /trunk/xsl/params/man.string.subst.map.xml; M: /trunk/xsl/params/man.links.list.enabled.xml; M: /trunk/xsl/params/section.autolabel.max.depth.xml; M: /trunk/xsl/params/htmlhelp.show.advanced.search.xml; M: /trunk/xsl/params/htmlhelp.map.file.xml; M: /trunk/xsl/params/l10n.gentext.use.xref.language.xml; M: /trunk/xsl/params/body.font.size.xml; M: /trunk/xsl/params/html.stylesheet.type.xml; M: /trunk/xsl/params/refentry.xref.manvolnum.xml; M: /trunk/xsl/params/runinhead.default.title.end.punct.xml; M: /trunk/xsl/params/navig.graphics.extension.xml; M: /trunk/xsl/params/itemizedlist.label.properties.xml; M: /trunk/xsl/params/htmlhelp.force.map.and.alias.xml; M: /trunk/xsl/params/profile.os.xml; M: /trunk/xsl/params/htmlhelp.alias.file.xml; M: /trunk/xsl/params/page.margin.outer.xml; M: /trunk/xsl/params/annotation.graphic.close.xml; M: /trunk/xsl/params/eclipse.autolabel.xml; M: /trunk/xsl/params/table.frame.border.style.xml; M: /trunk/xsl/params/navig.graphics.path.xml; M: /trunk/xsl/params/htmlhelp.hhc.binary.xml; M: /trunk/xsl/params/index.on.type.xml; M: /trunk/xsl/params/target.database.document.xml; M: /trunk/xsl/params/man.subheading.divider.xml; M: /trunk/xsl/params/chunker.output.method.xml; M: /trunk/xsl/params/make.index.markup.xml; M: /trunk/xsl/params/olink.base.uri.xml; M: /trunk/xsl/params/phrase.propagates.style.xml; M: /trunk/xsl/params/man.indent.refsect.xml; M: /trunk/xsl/params/example.properties.xml; M: /trunk/xsl/params/man.font.table.headings.xml; M: /trunk/xsl/params/profile.revisionflag.xml; M: /trunk/xsl/params/region.after.extent.xml; M: /trunk/xsl/params/qanda.title.level5.properties.xml; M: /trunk/xsl/params/marker.section.level.xml; M: /trunk/xsl/params/footer.table.height.xml; M: /trunk/xsl/params/autotoc.label.separator.xml; M: /trunk/xsl/params/footer.column.widths.xml; M: /trunk/xsl/params/hyphenate.verbatim.xml; M: /trunk/xsl/params/xref.properties.xml; M: /trunk/xsl/params/man.output.base.dir.xml; M: /trunk/xsl/params/man.links.list.heading.xml; M: /trunk/xsl/params/insert.link.page.number.xml; M: /trunk/xsl/params/htmlhelp.button.jump2.title.xml; M: /trunk/xsl/params/l10n.lang.value.rfc.compliant.xml - Michael(tm) Smith + + +Updated index.method doc to describe revised setup for importing index extensions.M: /trunk/xsl/params/index.method.xml - Robert Stayton + + +Added several new HTML parameters for controlling appearance of +content on HTML title pages: + +contrib.inline.enabled: + If non-zero (the default), output of the contrib element is + displayed as inline content rather than as block content. + +othercredit.like.author.enabled: + If non-zero, output of the othercredit element on titlepages is + displayed in the same style as author and editor output. If zero + (the default), othercredit output is displayed using a style + different than that of author and editor. + +blurb.on.titlepage.enabled: + If non-zero, output from authorblurb and personblurb elements is + displayed on title pages. If zero (the default), output from + those elements is suppressed on title pages (unless you are + using a titlepage customization that causes them to be included). + +editedby.enabled + If non-zero (the default), a localized Edited by heading is + displayed above editor names in output of the editor element.A: /trunk/xsl/params/contrib.inline.enabled.xml; A: /trunk/xsl/params/blurb.on.titlepage.enabled.xml; A: /trunk/xsl/params/othercredit.like.author.enabled.xml; A: /trunk/xsl/params/editedby.enabled.xml - Michael(tm) Smith + + +Added new email.delimiters.enabled param. If non-zero (the +default), delimiters are generated around e-mail addresses (output +of the email element). If zero, the delimiters are suppressed.A: /trunk/xsl/params/email.delimiters.enabled.xml - Michael(tm) Smith + + + +Added qanda.nested.in.toc param. Default value is zero. If +non-zero, instances of "nested" Qandaentry (ones that are children +of Answer elements) are displayed in the TOC. Closes patch 1509018 +(from Daniel Leidert). Currently on affects HTML output (no patch +for FO output provided).A: /trunk/xsl/params/qanda.nested.in.toc.xml - Michael(tm) Smith + + + +Initial support of syntax highlighting of programlistings.A: /trunk/xsl/params/highlight.source.xml; A: /trunk/xsl/params/highlight.default.language.xml - Jirka Kosek + + + + + +Tools +The following changes have been made to the + tools code + since the 1.70.1 release. + + + +Racheted down font sizes of headings in example makefile FO output.M: /trunk/xsl/tools/make/Makefile.DocBook - Michael(tm) Smith + + +Added param and attribute set to example makefile, for getting +wrapping in verbatims in FO output.M: /trunk/xsl/tools/make/Makefile.DocBook - Michael(tm) Smith + + +Renamed Makefile.paramDoc to Makefile.docParam.A: /trunk/xsl/tools/make/Makefile.docParam; D: /trunk/xsl/tools/make/Makefile.paramDoc - Michael(tm) Smith + + +Added Makefile.paramDoc file, for creating versions of param.xsl +files with doc embedded.A: /trunk/xsl/tools/make/Makefile.paramDoc - Michael(tm) Smith + + +Added variable to example makefile for controlling whether HTML or +XHTML is generated.M: /trunk/xsl/tools/make/Makefile.DocBook - Michael(tm) Smith + + + + +
    + + +Release: 1.70.1 + +This is a stable release of the 1.70 stylesheets. It includes only a +few small changes from 1.70.0. + +The following is a list of changes that have been made + since the 1.70.0 release. + + +FO +The following changes have been made to the + fo code + since the 1.70.0 release. + + +Added three new attribute sets (revhistory.title.properties, revhistory.table.properties and revhistory.table.cell.properties) for controlling appearance of revhistory in FO output. +Modified: fo/block.xsl,1.34; fo/param.ent,1.101; fo/param.xweb,1.114; fo/titlepage.xsl,1.41; params/revhistory.table.cell.properties.xml,1.1; params/revhistory.table.properties.xml,1.1; params/revhistory.title.properties.xml,1.1 - Jirka Kosek + + +Support DBv5 revisions with full author name (not only authorinitials) +Modified: fo/block.xsl,1.33; fo/titlepage.xsl,1.40 - Jirka Kosek + + + + + +HTML +The following changes have been made to the + html code + since the 1.70.0 release. + + +Support DBv5 revisions with full author name (not only authorinitials) +Modified: html/block.xsl,1.23; html/titlepage.xsl,1.34 - Jirka Kosek + + + + + +HTMLHelp +The following changes have been made to the + htmlhelp code + since the 1.70.0 release. + + +htmlhelp.generate.index is now param, not variable. This means that you can override its setting from outside. This is useful when you generate indexterms on the fly (see http://www.xml.com/pub/a/2004/07/14/dbndx.html?page=3). +Modified: htmlhelp/htmlhelp-common.xsl,1.38 - Jirka Kosek + + +Support chunk.tocs.and.lots in HTML Help +Modified: htmlhelp/htmlhelp-common.xsl,1.37 - Jirka Kosek + + + + + +Params +The following changes have been made to the + params code + since the 1.70.0 release. + + +Added three new attribute sets (revhistory.title.properties, revhistory.table.properties and revhistory.table.cell.properties) for controlling appearance of revhistory in FO output. +Modified: fo/block.xsl,1.34; fo/param.ent,1.101; fo/param.xweb,1.114; fo/titlepage.xsl,1.41; params/revhistory.table.cell.properties.xml,1.1; params/revhistory.table.properties.xml,1.1; params/revhistory.title.properties.xml,1.1 - Jirka Kosek + + + + + + + +Release: 1.70.0 +As with all DocBook Project dot-zero +releases, this is an experimental release. It will be followed shortly +by a stable release. + +This release adds a number of new features, +including: + + + + support for selecting alternative index-collation methods + (in particular, support for using a collation library developed by + Eliot Kimber) + + + improved handling of DocBook 5 document instances (through a + namespace-stripping mechanism) + + + full support for CALS and HTML tables in manpages + output + + + a mechanism for preserving relative URIs in documents that + make use of XInclude + + + support for the "new" .90 version of + FOP + + + enhanced capabilities for controlling formatting of lists in HTML + and FO output + + + autogeneration of AUTHOR and COPYRIGHT sections in manpages + output + + + support for generating crop marks in FO/PDF output + + + support for qandaset as a root element in FO output + + + support for floatstyle and orient on all table types + + + support for floatstyle in figure, and example + + + pgwide.properties attribute-set supports extending figure, + example and table into the left indent area instead of spanning + multiple columns. + + + The following is a detailed list of enhancements and API + changes that have been made since the 1.69.1 release. + + +Common +The following changes have been made to the + common code + since the 1.69.1 release. + + +Add the xsl:key for the kimber +indexing method. +Modified: common/autoidx-ng.xsl,1.2 - Robert +Stayton + + +Add support for +qandaset. +Modified: common/labels.xsl,1.37; +common/subtitles.xsl,1.7; common/titles.xsl,1.35 - Robert +Stayton + + +Support dbhtml/dbfo start PI for +orderedlist numbering in both HTML and +FO +Modified: common/common.xsl,1.61; html/lists.xsl,1.50 - Norman +Walsh + + +Added CVS +header. +Modified: common/stripns.xsl,1.12 - Robert +Stayton + + +Changed content model of text +element to ANY rather than #PCDATA because they could contain +markup. +Modified: common/targetdatabase.dtd,1.7 - Robert +Stayton + + +Added +refentry.meta.get.quietly param. +If zero (the +default), notes and warnings about "missing" markup are generated +during gathering of refentry metadata. If +non-zero, the metadata is gathered "quietly" -- that is, the +notes and warnings are suppressed. +NOTE: If you are +processing a large amount of refentry content, you +may be able to speed up processing significantly by setting a +non-zero value for +refentry.meta.get.quietly. +Modified: common/refentry.xsl,1.17; +manpages/param.ent,1.15; manpages/param.xweb,1.17; +params/refentry.meta.get.quietly.xml,1.1 - Michael(tm) +Smith + + +After namespace stripping, the +source document is the temporary tree created by the stripping +process and it has the wrong base URI for relative +references. Earlier versions of this code used to try to fix that +by patching the elements with relative @fileref attributes. That +was inadequate because it calculated an absolute base URI +without considering that there might be xml:base attributes +already in effect. It seems obvious now that the right thing to +do is simply to put the xml:base on the root of the document. And +that seems to work. +Modified: common/stripns.xsl,1.7 - Norman +Walsh + + +Added support for "software" and +"sectdesc" class values on refmiscinfo; "software" is +treated identically to "source", and "setdesc" is treated +identically to "manual". +Modified: common/refentry.xsl,1.10; +params/man.th.extra2.max.length.xml,1.3; +params/refentry.source.name.profile.xml,1.4 - Michael(tm) +Smith + + +Added support for DocBook 5 +namespace-stripping in manpages stylesheet. Closes request +#1210692. +Modified: common/common.xsl,1.56; manpages/docbook.xsl,1.57 - +Michael(tm) Smith + + +Added <xsl:template +match="/"> to make stripns.xsl usable as a standalone +stylesheet for stripping out DocBook 5/NG to DocBook 4. Note that +DocBook XSLT drivers that include this stylesheet all override +the match="/" template. +Modified: common/stripns.xsl,1.4 - Michael(tm) +Smith + + +Number figures, examples, and +tables from book if there is no prefix (i.e. if +chapter.autolabel is set to 0). This avoids +having the list of figures where the figures mysteriously restart +their numeration periodically when +chapter.autolabel is set to +0. +Modified: common/labels.xsl,1.36 - David Cramer + + +Add task template in +title.markup mode. +Modified: common/titles.xsl,1.34 - Robert +Stayton + + +Add children (with ids) of formal +objects to target data. +Modified: common/targets.xsl,1.10 - Robert +Stayton + + +Added support for case when +personname doesn't contain specific name markup (as allowed +in DocBook 5.0) +Modified: common/common.xsl,1.54 - Jirka +Kosek + + + + + +Extensions +The following changes have been made to the + extensions code + since the 1.69.1 release. + + +Support Xalan +2.7 +Modified: extensions/xalan27/.cvsignore,1.1; +extensions/xalan27/build.xml,1.1; +extensions/xalan27/nbproject/.cvsignore,1.1; +extensions/xalan27/nbproject/build-impl.xml,1.1; +extensions/xalan27/nbproject/genfiles.properties,1.1; +extensions/xalan27/nbproject/project.properties,1.1; +extensions/xalan27/nbproject/project.xml,1.1; +extensions/xalan27/src/com/nwalsh/xalan/CVS.java,1.1; +extensions/xalan27/src/com/nwalsh/xalan/Callout.java,1.1; +extensions/xalan27/src/com/nwalsh/xalan/FormatCallout.java,1.1; +extensions/xalan27/src/com/nwalsh/xalan/FormatDingbatCallout.java,1.1; +extensions/xalan27/src/com/nwalsh/xalan/FormatGraphicCallout.java,1.1; +extensions/xalan27/src/com/nwalsh/xalan/FormatTextCallout.java,1.1; +extensions/xalan27/src/com/nwalsh/xalan/FormatUnicodeCallout.java,1.1; +extensions/xalan27/src/com/nwalsh/xalan/Func.java,1.1; +extensions/xalan27/src/com/nwalsh/xalan/ImageIntrinsics.java,1.1; +extensions/xalan27/src/com/nwalsh/xalan/Params.java,1.1; +extensions/xalan27/src/com/nwalsh/xalan/Table.java,1.1; +extensions/xalan27/src/com/nwalsh/xalan/Text.java,1.1; +extensions/xalan27/src/com/nwalsh/xalan/Verbatim.java,1.1 - Norman +Walsh + + +Handle the case where the imageFn +is actually a URI. This still needs +work. +Modified: extensions/saxon643/com/nwalsh/saxon/ImageIntrinsics.java,1.4 +- Norman Walsh + + + + + +FO +The following changes have been made to the + fo code + since the 1.69.1 release. + + +Adapted to the new indexing +code. Now works just like a wrapper that calls kosek indexing method, +originally implemented here. +Modified: fo/autoidx-ng.xsl,1.5 - Jirka +Kosek + + +Added parameters for header/footer +table minimum height. +Modified: fo/pagesetup.xsl,1.60; +fo/param.ent,1.100; fo/param.xweb,1.113 - Robert +Stayton + + +Add the index.method +parameter. +Modified: fo/param.ent,1.99; fo/param.xweb,1.112 - Robert +Stayton + + +Integrate support for three +indexing methods: - the original English-only method. - +Jirka Kosek's method using EXSLT extensions. - Eliot Kimber's +method using Saxon extensions. Use the 'index.method' +parameter to select. +Modified: fo/autoidx.xsl,1.38 - Robert +Stayton + + +Add support for TOC for +qandaset in fo output. +Modified: fo/autotoc.xsl,1.30; +fo/qandaset.xsl,1.20 - Robert Stayton + + +Added parameter +ulink.hyphenate.chars. Added parameter +insert.link.page.number. +Modified: fo/param.ent,1.98; +fo/param.xweb,1.111 - Robert Stayton + + +Implemented feature request +#942524 to add insert.link.page.number to allow link +element cross references to have a page number. +Modified: fo/xref.xsl,1.67 - +Robert Stayton + + +Add support for +ulink.hyphenate.chars so more characters +can be break points in urls. +Modified: fo/xref.xsl,1.66 - Robert +Stayton + + +Implemented patch #1075144 to make +the url text in a ulink in FO output an active link as +well. +Modified: fo/xref.xsl,1.65 - Robert Stayton + + +table footnotes now +have their own table.footnote.properties +attribute set. +Modified: fo/footnote.xsl,1.23 - Robert +Stayton + + +Add qandaset to +root.elements. +Modified: fo/docbook.xsl,1.41 - Robert +Stayton + + +Added mode="page.sequence" to make +it easier to put content into a page sequence. First used for +qandaset. +Modified: fo/component.xsl,1.37 - Robert +Stayton + + +Implemented feature request +#1434408 to support formatting +of biblioentry. +Modified: fo/biblio.xsl,1.35 - Robert +Stayton + + +Added +biblioentry.properties. +Modified: fo/param.ent,1.97; +fo/param.xweb,1.110 - Robert Stayton + + +Support PTC/Arbortext +bookmarks +Modified: fo/docbook.xsl,1.40; fo/ptc.xsl,1.1 - Norman +Walsh + + +Added +table.footnote.properties to permit +table footnotes to format differently from regular +footnotes. +Modified: fo/param.ent,1.96; fo/param.xweb,1.109 - Robert +Stayton + + +Refactored table +templates to unify their processing and support all options in +all types. Now table and informaltable, in +both Cals and Html markup, use the same templates where possible, +and all support pgwide, rotation, and floats. There is also a +placeholder table.container template to +support wrapping a table in a layout table, +so the XEP table title "continued" +extension can be more easily implemented. +Modified: fo/formal.xsl,1.52; +fo/htmltbl.xsl,1.9; fo/table.xsl,1.48 - Robert +Stayton + + +Added new attribute set +toc.line.properties for controlling appearance of lines in +ToC/LoT +Modified: fo/autotoc.xsl,1.29; fo/param.ent,1.95; +fo/param.xweb,1.108 - Jirka Kosek + + +Added support for float to example +and equation. Added support for pgwide to +figure, example, and equation (the latter +two via a dbfo pgwide="1" processing +instruction). +Modified: fo/formal.xsl,1.51 - Robert +Stayton + + +Add pgwide.properties +attribute-set. +Modified: fo/param.ent,1.94; fo/param.xweb,1.107 - Robert +Stayton + + +Added refclass.suppress +param. +If the value of refclass.suppress is +non-zero, then display refclass contents is suppressed +in output. Affects HTML and FO output +only. +Modified: fo/param.ent,1.93; fo/param.xweb,1.106; html/param.ent,1.90; +html/param.xweb,1.99; params/refclass.suppress.xml,1.1 - Michael(tm) +Smith + + +Improved support for +task subelements +Modified: fo/task.xsl,1.3; html/task.xsl,1.3 - +Jirka Kosek + + +Adjusted spacing around +K&R-formatted Funcdef and Paramdef +output such that it can more easily be discerned where one ends +and the other begins. Closes #1213264. +Modified: fo/synop.xsl,1.18 - +Michael(tm) Smith + + +Made handling of +paramdef/parameter in FO output consistent with that in HTML and +manpages output. Closes #1213259. +Modified: fo/synop.xsl,1.17 - Michael(tm) +Smith + + +Made handling of +Refnamediv consistent with formatting in HTML +and manpages output; specifically, changed so that +Refname (comma-separated list of multiple instances +found) is used (instead of Refentrytitle as +previously), then em-dash, then the Refpurpose. Closes +#1212562. +Modified: fo/refentry.xsl,1.30 - Michael(tm) +Smith + + +Added output of +Releaseinfo to recto titlepage ("copyright" +page) for Book in FO output. This makes it consistent +with HTML output. Closes #1327034. Thanks to Paul DuBois for +reporting. +Modified: fo/titlepage.templates.xml,1.28 - Michael(tm) +Smith + + +Added condition for setting +block-progression-dimension.minimum on table-row, instead of +height, when fop1.extensions is +non-zero. For an explanation of the reason for the change, +see: http://wiki.apache.org/xmlgraphics-fop/Troubleshooting/CommonLogMessages +Modified: fo/pagesetup.xsl,1.59 +- Michael(tm) Smith + + +Added new +refclass.suppress param for suppressing display +of Refclass in HTML and FO output. Did not add it to +manpages because manpages stylesheet is currently just silently +ignoring Refclass anyway. Closes request +#1461065. Thanks to Davor Ocelic (docelic) for +reporting. +Modified: fo/refentry.xsl,1.29; html/refentry.xsl,1.23 - +Michael(tm) Smith + + +Add support for keep-together PI +to informal objects. +Modified: fo/formal.xsl,1.50 - Robert +Stayton + + +Add support for +fop1.extensions. +Modified: fo/formal.xsl,1.49; +fo/graphics.xsl,1.44; fo/table.xsl,1.47 - Robert +Stayton + + +Add support for fop1 +bookmarks. +Modified: fo/docbook.xsl,1.39 - Robert +Stayton + + +Add fop1.extentions parameter to +add support for fop development version. +Modified: fo/param.ent,1.92; +fo/param.xweb,1.105 - Robert Stayton + + +Start supporting fop development +version, which will become fop version 1. +Modified: fo/fop1.xsl,1.1 - +Robert Stayton + + +Add template for task +in mode="xref-to". +Modified: fo/xref.xsl,1.63; html/xref.xsl,1.57 - Robert +Stayton + + +table footnotes now +also get footnote.properties +attribute-set. +Modified: fo/footnote.xsl,1.22 - Robert +Stayton + + +Added index.separator +named template to compute the separator punctuation based on +locale. +Modified: fo/autoidx.xsl,1.36 - Robert Stayton + + +Added support for link, +olink, and xref within OO +Classsynopsis and children. (Because DocBook NG/5 +allows it). +Modified: fo/synop.xsl,1.15; html/synop.xsl,1.19 - Michael(tm) +Smith + + +Support date as an +inline +Modified: fo/inline.xsl,1.43; html/inline.xsl,1.46 - Norman +Walsh + + +Added new parameter +keep.relative.image.uris +Modified: fo/param.ent,1.91; +fo/param.xweb,1.104; html/param.ent,1.87; html/param.xweb,1.96; +params/keep.relative.image.uris.xml,1.1 - Norman +Walsh + + +Map Unicode space characters +U+2000-U+200A to fo:leaders. +Modified: fo/docbook.xsl,1.38; +fo/passivetex.xsl,1.4; fo/spaces.xsl,1.1 - Jirka +Kosek + + +Output a real em dash for em-dash +dingbat (instead of two hypens). +Modified: fo/fo.xsl,1.7 - Michael(tm) +Smith + + +Support default label +width parameters for itemized and ordered lists +Modified: fo/lists.xsl,1.64; +fo/param.ent,1.90; fo/param.xweb,1.103; +params/itemizedlist.label.width.xml,1.1; +params/orderedlist.label.width.xml,1.1 - Norman +Walsh + + +Generate localized +title for Refsynopsisdiv if no +appropriate Title descendant found in source. Closes +#1212398. This change makes behavior for the Synopsis +title consistent with the behavior of HTML and +manpages output. +Also, added +xsl:use-attribute-sets="normal.para.spacing" to +block generated for Cmdsynopsis output. Previously, +that block had no spacing at all specified, which resulted it +being crammed up to closely to the Synopsis +head. +Modified: fo/refentry.xsl,1.28; fo/synop.xsl,1.13 - Michael(tm) +Smith + + +Added parameters to support +localization of index +item punctuation. +Modified: fo/autoidx.xsl,1.35 - Robert +Stayton + + +Added +index.number.separator, +index.range.separator, +and index.term.separator parameters to +support localization of punctuation in index +entries. +Modified: fo/param.ent,1.89; fo/param.xweb,1.102 - Robert +Stayton + + +Added "Cross References" +section in HTML doc (for consistency with the FO +doc). Also, moved the existing FO "Cross +References" section to follow the "Linking" +section. +Modified: fo/param.xweb,1.101; html/param.xweb,1.95 - +Michael(tm) Smith + + +Added ID attribues to all +Reference elements (e.g., id="tables" for the doc for +section on Table params). So pages for +all subsections of ref docs now have stable filenames instead +of arbitrary generated filenames. +Modified: fo/param.xweb,1.100; +html/param.xweb,1.94 - Michael(tm) Smith + + +Added two new parameters for +handling of multi-term +varlistentry elements: +variablelist.term.break.after: +When the variablelist.term.break.after is +non-zero, it will generate a line break after each +term multi-term +varlistentry. +variablelist.term.separator: +When a varlistentry contains multiple term +elements, the string specified in the value of the +variablelist.term.separator parameter is +placed after each term except the last. The default +is ", " (a comma followed by a space). To suppress rendering of +the separator, set the value of +variablelist.term.separator to the empty +string (""). +These parameters are primarily intended to be +useful if you have multi-term varlistentries that have long +terms. +Closes #1306676. Thanks to Sam Steingold for +providing an example "lots of long terms" doc that demonstrated +the value of having these options. +Also, added +normalize-space() call to processing of each +term. +This change affects all output formats +(HTML, PDF, manpages). The default behavior should pretty much +remain the same as before, but it is possible (as always) that +the change may introduce some +new bugginess. +Modified: fo/lists.xsl,1.62; fo/param.ent,1.88; +fo/param.xweb,1.99; html/lists.xsl,1.48; html/param.ent,1.86; +html/param.xweb,1.93; manpages/lists.xsl,1.22; +manpages/param.ent,1.14; manpages/param.xweb,1.16; +params/variablelist.term.break.after.xml,1.1; +params/variablelist.term.separator.xml,1.1 - Michael(tm) +Smith + + +Add sidebar titlepage +placeholder attset for styles. +Modified: fo/titlepage.xsl,1.37 - Robert +Stayton + + +Add titlepage for +sidebar. +Modified: fo/titlepage.templates.xml,1.27 - Robert +Stayton + + +Implemented RFE +#1292615. +Added bunch of new parameters (attribute sets) +that affect list presentation: list.block.properties, +itemizedlist.properties, orderedlist.properties, +itemizedlist.label.properties and +orderedlist.label.properties. Default behaviour +of stylesheets has not been changed but further customizations will be +much more easier. +Modified: fo/lists.xsl,1.61; fo/param.ent,1.87; +fo/param.xweb,1.98; params/itemizedlist.label.properties.xml,1.1; +params/itemizedlist.properties.xml,1.1; +params/list.block.properties.xml,1.1; +params/orderedlist.label.properties.xml,1.1; +params/orderedlist.properties.xml,1.1 - Jirka +Kosek + + +Implemented RFE +#1242092. +You can enable crop marks in your document by +setting crop.marks=1 and xep.extensions=1. Appearance of crop +marks can be controlled by parameters +crop.mark.bleed (6pt), +crop.mark.offset (24pt) and +crop.mark.width (0.5pt). +Also there +is new named template called user-xep-pis. You can overwrite it in +order to produce some PIs that can control XEP as described in +http://www.renderx.com/reference.html#Output_Formats +Modified: fo/docbook.xsl,1.36; +fo/param.ent,1.86; fo/param.xweb,1.97; fo/xep.xsl,1.23; +params/crop.mark.bleed.xml,1.1; params/crop.mark.offset.xml,1.1; +params/crop.mark.width.xml,1.1; params/crop.marks.xml,1.1 - Jirka +Kosek + + + + + +HTML +The following changes have been made to the + html code + since the 1.69.1 release. + + +implemented +index.method parameter and three +methods. +Modified: html/autoidx.xsl,1.28 - Robert +Stayton + + +added index.method +parameter to support 3 indexing methods. +Modified: html/param.ent,1.94; +html/param.xweb,1.103 - Robert Stayton + + +Implemented feature request +#1072510 as a processing instruction to permit including external +HTML content into HTML output. +Modified: html/pi.xsl,1.9 - Robert +Stayton + + +Added new parameter +chunk.tocs.and.lots.has.title which +controls presence of title in a separate chunk with +ToC/LoT. Disabling title can be very useful if you are +generating frameset output (well, yes those frames, but some customers +really want them ;-). +Modified: html/chunk-code.xsl,1.15; +html/param.ent,1.93; html/param.xweb,1.102; +params/chunk.tocs.and.lots.has.title.xml,1.1 - Jirka +Kosek + + +Support dbhtml/dbfo start PI for +orderedlist numbering in both HTML and +FO +Modified: common/common.xsl,1.61; html/lists.xsl,1.50 - Norman +Walsh + + +Allow ToC without +title also for set and +book. +Modified: html/autotoc.xsl,1.37; html/division.xsl,1.12 - +Jirka Kosek + + +Implemented floats uniformly for +figure, example, equation +and informalfigure, informalexample, and +informalequation. +Modified: html/formal.xsl,1.22 - Robert +Stayton + + +Added the +autotoc.label.in.hyperlink param. +If the value +of autotoc.label.in.hyperlink is non-zero, labels +are included in hyperlinked titles in the TOC. If it +is instead zero, labels are still displayed prior to the +hyperlinked titles, but are not hyperlinked along with the +titles. +Closes patch #1065868. Thanks to anatoly techtonik +for the patch. +Modified: html/autotoc.xsl,1.36; html/param.ent,1.92; +html/param.xweb,1.101; params/autotoc.label.in.hyperlink.xml,1.1 - +Michael(tm) Smith + + +Added two new params: +html.head.legalnotice.link.types +and html.head.legalnotice.link.multiple. +If +the value of the generate.legalnotice.link is +non-zero, then the stylesheet generates (in the head +section of the HTML source) either a single HTML +link element or, if the value of +the html.head.legalnotice.link.multiple is +non-zero, one link element for each link +type specified. Each link has the +following attributes: + - a rel attribute whose value +is derived from the value of +html.head.legalnotice.link.types + - +an href attribute whose value is set to the URL of the file +containing the legalnotice + - a title +attribute whose value is set to the title of the +corresponding legalnotice (or a title +programatically determined by the stylesheet) +For +example: + <link rel="copyright" +href="ln-id2524073.html" title="Legal Notice"> +Closes +#1476450. Thanks to Sam Steingold. +Modified: html/chunk-common.xsl,1.45; +html/param.ent,1.91; html/param.xweb,1.100; +params/generate.legalnotice.link.xml,1.4; +params/html.head.legalnotice.link.multiple.xml,1.1; +params/html.head.legalnotice.link.types.xml,1.1 - Michael(tm) +Smith + + +Added refclass.suppress +param. +If the value of refclass.suppress is +non-zero, then display refclass contents is suppressed +in output. Affects HTML and FO output +only. +Modified: fo/param.ent,1.93; fo/param.xweb,1.106; html/param.ent,1.90; +html/param.xweb,1.99; params/refclass.suppress.xml,1.1 - Michael(tm) +Smith + + +Improved support for +task subelements +Modified: fo/task.xsl,1.3; html/task.xsl,1.3 - +Jirka Kosek + + +Added new +refclass.suppress param for suppressing display +of Refclass in HTML and FO output. Did not add it to +manpages because manpages stylesheet is currently just silently +ignoring Refclass anyway. Closes request +#1461065. Thanks to Davor Ocelic (docelic) for +reporting. +Modified: fo/refentry.xsl,1.29; html/refentry.xsl,1.23 - +Michael(tm) Smith + + +Process alt text with +normalize-space(). Replace tab indents with +spaces. +Modified: html/graphics.xsl,1.57 - Robert +Stayton + + +Content of citation +element is automatically linked to the bibliographic entry +with the corresponding abbrev. +Modified: html/biblio.xsl,1.26; +html/inline.xsl,1.47; html/xref.xsl,1.58 - Jirka +Kosek + + +Add template for task +in mode="xref-to". +Modified: fo/xref.xsl,1.63; html/xref.xsl,1.57 - Robert +Stayton + + +Suppress ID warnings if the +.warnings parameter is 0 +Modified: html/html.xsl,1.17 - Norman +Walsh + + +Add support for floatstyle to +figure. +Modified: html/formal.xsl,1.21 - Robert +Stayton + + +Handling of xref to +area/areaset need support in extensions code also. I currently have no +time to touch extensions code, so code is here to be enabled when +extension is fixed also. +Modified: html/xref.xsl,1.56 - Jirka +Kosek + + +Added 3 parameters for overriding +gentext for index +punctuation. +Modified: html/param.ent,1.89; html/param.xweb,1.98 - Robert +Stayton + + +Added parameters to support +localization of index item punctuation. Added +index.separator named template to compute +the separator punctuation based on +locale. +Modified: html/autoidx.xsl,1.27 - Robert +Stayton + + +Added a <div +class="{$class}-contents"> wrapper around output of contents +of all formal objects. Also, added an optional <br +class="{class}-break"/> linebreak after all formal +objects. +WARNING: Because this change places an additional +DIV between the DIV wrapper for the equation and the +equation contents, it may break some existing CSS +stylesheets that have been created with the assumption that there +would never be an intervening DIV there. +The following is +an example of what Equation output looks like as a +result of the changes described above. + <div +class="equation"> <a name="three" +id="three"></a> + <p +class="title"><b>(1.3)</b></p> + +<div class="equation-contents"> <span +class="mathphrase">1+1=3</span> +</div> </div><br +class="equation-break"> +Rationale: These changes allow +CSS control of the placement of the formal-object +title relative to the formal-object +contents. For example, using the CSS "float" property +enables the title and contents to be rendered on the +same line. Example stylesheet: + .equation +{ margin-top: 20px; margin-bottom: 20px; } +.equation-contents { float: left; } + +.equation .title { margin-top: 0; +float: right; margin-right: 200px; } + +.equation .title b { font-weight: +normal; } + .equation-break { clear: both; +} +Note that the purpose of the ".equation-break" class is +to provide a way to clear off the floats. +If you want +to instead have the equation title rendered to +the left of the equation contents, you can do +something like this: + .equation { +margin-top: 20px; width: 300px; margin-bottom: 20px; +} .equation-contents { float: right; } + +.equation .title { margin-top: 0; +float: left; margin-right: 200px; } + +.equation .title b { font-weight: +normal; } + .equation-break { clear: both; +} +Modified: html/formal.xsl,1.20 - Michael(tm) Smith + + +Added a chunker.output.quiet +top-level parameter so that the chunker can be made quiet by +default +Modified: html/chunker.xsl,1.26 - Norman Walsh + + +Added support for link, +olink, and xref within OO +Classsynopsis and children. (Because DocBook NG/5 +allows it). +Modified: fo/synop.xsl,1.15; html/synop.xsl,1.19 - Michael(tm) +Smith + + +New parameter: +id.warnings. If non-zero, warnings are +generated for titled objects that don't have titles. True by default; +I wonder if this will be too aggressive? +Modified: html/biblio.xsl,1.25; +html/component.xsl,1.27; html/division.xsl,1.11; html/formal.xsl,1.19; +html/glossary.xsl,1.20; html/html.xsl,1.13; html/index.xsl,1.16; +html/param.ent,1.88; html/param.xweb,1.97; html/refentry.xsl,1.22; +html/sections.xsl,1.30; params/id.warnings.xml,1.1 - Norman +Walsh + + +If the +keep.relative.image.uris parameter is true, +don't use the absolute URI (as calculated from xml:base) in +the img src attribute, us the value the author +specified. Note that we still have to calculate the absolute +filename for use in the image intrinsics +extension. +Modified: html/graphics.xsl,1.56 - Norman +Walsh + + +Support date as an +inline +Modified: fo/inline.xsl,1.43; html/inline.xsl,1.46 - Norman +Walsh + + +Added new parameter +keep.relative.image.uris +Modified: fo/param.ent,1.91; +fo/param.xweb,1.104; html/param.ent,1.87; html/param.xweb,1.96; +params/keep.relative.image.uris.xml,1.1 - Norman +Walsh + + +Added two new parameters for +handling of multi-term +varlistentry elements: +variablelist.term.break.after: +When the variablelist.term.break.after is +non-zero, it will generate a line break after each +term multi-term +varlistentry. +variablelist.term.separator: +When a varlistentry contains multiple term +elements, the string specified in the value of the +variablelist.term.separator parameter is +placed after each term except the last. The default +is ", " (a comma followed by a space). To suppress rendering of +the separator, set the value of +variablelist.term.separator to the empty +string (""). +These parameters are primarily intended to be +useful if you have multi-term varlistentries that have long +terms. +Closes #1306676. Thanks to Sam Steingold for +providing an example "lots of long terms" doc that demonstrated +the value of having these options. +Also, added +normalize-space() call to processing of each +term. +This change affects all output formats +(HTML, PDF, manpages). The default behavior should pretty much +remain the same as before, but it is possible (as always) that +the change may introduce some +new bugginess. +Modified: fo/lists.xsl,1.62; fo/param.ent,1.88; +fo/param.xweb,1.99; html/lists.xsl,1.48; html/param.ent,1.86; +html/param.xweb,1.93; manpages/lists.xsl,1.22; +manpages/param.ent,1.14; manpages/param.xweb,1.16; +params/variablelist.term.break.after.xml,1.1; +params/variablelist.term.separator.xml,1.1 - Michael(tm) +Smith + + +Added "wrapper-name" param to +inline.charseq named template, enabling it to output inlines +other than just "span". Acronym and Abbrev +templates now use inline.charseq to output HTML +"acronym" and "abbr" elements (instead of +"span"). Closes #1305468. Thanks to Sam Steingold for suggesting +the change. +Modified: html/inline.xsl,1.45 - Michael(tm) +Smith + + + + + +Manpages +The following changes have been made to the + manpages code + since the 1.69.1 release. + + +Added the following +params: + - man.indent.width (string-valued) - +man.indent.refsect (boolean) - man.indent.blurbs (boolean) +- man.indent.lists (boolean) - man.indent.verbatims +(boolean) +Note that in earlier snapshots, man.indent.width +was named man.indentation.default.value and the boolean params +had names like man.indentation.*.adjust. Also the +man.indent.blurbs param was called man.indentation.authors.adjust +(or something). +The behavior now is: If the value of a +particular man.indent.* boolean param is non-zero, the +corresponding contents (refsect*, list items, +authorblurb/personblurb, vervatims) are displayed with a left +margin indented by a width equal to the value +of man.indent.width. +Modified: params/man.indent.blurbs.xml,1.1; +manpages/docbook.xsl,1.74; manpages/info.xsl,1.20; +manpages/lists.xsl,1.30; manpages/other.xsl,1.20; +manpages/param.ent,1.22; manpages/param.xweb,1.24; +manpages/refentry.xsl,1.14; params/man.indent.lists.xml,1.1; +params/man.indent.refsect.xml,1.1; +params/man.indent.verbatims.xml,1.1; params/man.indent.width.xml,1.1 - +Michael(tm) Smith + + +Added +man.table.footnotes.divider param. +In each +table that contains footenotes, the string specified +by the man.table.footnotes.divider parameter is output +before the list of footnotes for the +table. +Modified: manpages/docbook.xsl,1.73; +manpages/links.xsl,1.6; manpages/param.ent,1.21; +manpages/param.xweb,1.23; params/man.table.footnotes.divider.xml,1.1 - +Michael(tm) Smith + + +Added the +man.output.in.separate.dir, +man.output.base.dir, +and man.output.subdirs.enabled parameters. +The +man.output.base.dir parameter specifies the +base directory into which man-page files are +output. The man.output.subdirs.enabled parameter controls whether +the files are output in subdirectories within the base +directory. +The values of the +man.output.base.dir +and man.output.subdirs.enabled parameters are used only if the +value of man.output.in.separate.dir parameter is non-zero. If the +value of man.output.in.separate.dir is zero, man-page files are +not output in a separate +directory. +Modified: manpages/docbook.xsl,1.72; manpages/param.ent,1.20; +manpages/param.xweb,1.22; params/man.output.base.dir.xml,1.1; +params/man.output.in.separate.dir.xml,1.1; +params/man.output.subdirs.enabled.xml,1.1 - Michael(tm) +Smith + + +Added +man.font.table.headings and +man.font.table.title params, for +controlling font in table headings and +titles. +Modified: manpages/docbook.xsl,1.71; manpages/param.ent,1.19; +manpages/param.xweb,1.21; params/man.font.table.headings.xml,1.1; +params/man.font.table.title.xml,1.1 - Michael(tm) +Smith + + +Added +man.font.funcsynopsisinfo and +man.font.funcprototype params, for specifying the roff +font (for example, BI, B, I) for funcsynopsisinfo and +funcprototype output. +Modified: manpages/block.xsl,1.19; +manpages/docbook.xsl,1.69; manpages/param.ent,1.18; +manpages/param.xweb,1.20; manpages/synop.xsl,1.29; +manpages/table.xsl,1.21; params/man.font.funcprototype.xml,1.1; +params/man.font.funcsynopsisinfo.xml,1.1 - Michael(tm) +Smith + + +Added +man.segtitle.suppress param. +If the value of +man.segtitle.suppress is non-zero, then display +of segtitle contents is suppressed in +output. +Modified: manpages/docbook.xsl,1.68; manpages/param.ent,1.17; +manpages/param.xweb,1.19; params/man.segtitle.suppress.xml,1.1 - +Michael(tm) Smith + + +Added +man.output.manifest.enabled and +man.output.manifest.filename params. +If +man.output.manifest.enabled is non-zero, a list +of filenames for man pages generated by the stylesheet +transformation is written to the file named by +man.output.manifest.filename +Modified: manpages/docbook.xsl,1.67; +manpages/other.xsl,1.19; manpages/param.ent,1.16; +manpages/param.xweb,1.18; params/man.output.manifest.enabled.xml,1.1; +params/man.output.manifest.filename.xml,1.1; +tools/make/Makefile.DocBook,1.4 - Michael(tm) +Smith + + +Added +refentry.meta.get.quietly param. +If zero (the +default), notes and warnings about "missing" markup are generated +during gathering of refentry metadata. If +non-zero, the metadata is gathered "quietly" -- that is, the +notes and warnings are suppressed. +NOTE: If you are +processing a large amount of refentry content, you +may be able to speed up processing significantly by setting a +non-zero value for +refentry.meta.get.quietly. +Modified: common/refentry.xsl,1.17; +manpages/param.ent,1.15; manpages/param.xweb,1.17; +params/refentry.meta.get.quietly.xml,1.1 - Michael(tm) +Smith + + +Changed names of all boolean +indentation params to man.indent.* Also discarded individual +man.indent.*.value params and switched to just using a common +man.indent.width param (3n by default). +Modified: manpages/docbook.xsl,1.66; +manpages/info.xsl,1.19; manpages/lists.xsl,1.29; +manpages/other.xsl,1.18; manpages/refentry.xsl,1.13 - Michael(tm) +Smith + + +Added boolean +man.output.in.separate.dir param, to control whether or not man +files are output in separate directory. +Modified: manpages/docbook.xsl,1.65; +manpages/utility.xsl,1.14 - Michael(tm) Smith + + +Added options for controlling +indentation of verbatim output. Controlled through the +man.indentation.verbatims.adjust +and man.indentation.verbatims.value params. Closes +#1242997 +Modified: manpages/block.xsl,1.15; manpages/docbook.xsl,1.64 - +Michael(tm) Smith + + +Added options for controlling +indentation in lists and in *blurb output in the AUTHORS +section. Controlled through +the man.indentation.lists.adjust, +man.indentation.lists.value, man.indentation.authors.adjust, and +man.indentation.authors.value parameters. Default is 3 characters +(instead of the roff default of 8 characters). Closes +#1449369. +Also, removed the indent that was being set on +informalexample outuput. I will instead add an option +for indenting verbatims, which I think is what the +informalexample indent was intended +for originally. +Modified: manpages/block.xsl,1.14; +manpages/docbook.xsl,1.63; manpages/info.xsl,1.18; +manpages/lists.xsl,1.28 - Michael(tm) Smith + + +Changed line-spacing call before +synopfragment to use ".sp -1n" ("n" units specified) +instead of plain ".sp -1" +Modified: manpages/synop.xsl,1.28 - Michael(tm) +Smith + + +Added support for writing man +files into a specific output directory and into appropriate +subdirectories within that output directory. Controlled through +the man.base.dir parameter (similar to the +base.dir support in the HTML stylesheet) and +the man.subdirs.enabled parameter, which automatically determines +the name of an appropriate subdir (for example, man/man7, +man/man1, etc.) based on the section number/manvolnum +of the source Refentry. +Closes #1255036 and +#1170317. Thanks to Denis Bradford for the original feature +request, and to Costin Stroie for submitting a patch that was +very helpful in implementing the +support. +Modified: manpages/docbook.xsl,1.62; manpages/utility.xsl,1.13 - +Michael(tm) Smith + + +Refined XPath statements and +notification messages for refentry metadata +handling. +Modified: common/common.xsl,1.59; common/refentry.xsl,1.14; +manpages/docbook.xsl,1.61; manpages/other.xsl,1.17 - Michael(tm) +Smith + + +Added support for +copyright and legalnotice. The manpages +stylesheets now output a COPYRIGHT section, +after the AUTHORS section, if a copyright +or legalnotice is found in the source. The +section contains the copyright contents followed +by the legalnotice contents. Closes +#1450209. +Modified: manpages/docbook.xsl,1.59; manpages/info.xsl,1.17 - +Michael(tm) Smith + + +Drastically reworked all of the +XPath expressions used in refentry metadata gathering +-- completely removed $parentinfo and turned $info into a set of +nodes that includes the *info contents of the Refentry +plus the *info contents all all of its ancestor elements. The +basic XPath expression now used throughout is (using the example +of checking for a date): + +(($info[//date])[last()]/date)[1]. +That selects the "last" +*info/date date in document order -- that is, the one +eitther on the Refentry itself or on the +closest ancestor to the Refentry. +It's +likely this change may break some things; may need to pick up +some pieces later. +Also, changed the default value for the +man.th.extra2.max.length from 40 to +30. +Modified: common/common.xsl,1.58; common/refentry.xsl,1.7; +params/man.th.extra2.max.length.xml,1.2; +params/refentry.date.profile.xml,1.2; +params/refentry.manual.profile.xml,1.2; +params/refentry.source.name.profile.xml,1.2; +params/refentry.version.profile.xml,1.2; manpages/docbook.xsl,1.58; +manpages/other.xsl,1.15 - Michael(tm) Smith + + +Added support for DocBook 5 +namespace-stripping in manpages stylesheet. Closes request +#1210692. +Modified: common/common.xsl,1.56; manpages/docbook.xsl,1.57 - +Michael(tm) Smith + + +Fixed handling of table +footnotes. With this checkin, the table support in the +manpages stylesheet is now basically feature complete. So this +change closes request #619532, "No support for tables" -- the +oldest currently open manpages feature request, submitted by Ben +Secrest (blsecres) on 2002-10-07. Congratulations to me [patting +myself on the back]. +Modified: manpages/block.xsl,1.11; +manpages/docbook.xsl,1.55; manpages/table.xsl,1.15 - Michael(tm) +Smith + + +Added handling for +table titles. Also fixed handling of nested tables; +nest tables are now "extracted" and displayed just after their +parent tables. +Modified: manpages/docbook.xsl,1.54; manpages/table.xsl,1.14 +- Michael(tm) Smith + + +Added option for turning off bold +formatting in Funcsynopsis. Boldface formatting in +function synopsis is mandated in the +man(7) man page and is used almost universally in existing man +pages. Despite that, it really does look like crap to have an +entire Funcsynopsis output in bold, so I added params +for turning off the bold formatting and/or replacing it with a +different roff special font (e.g., "RI" for alternating +roman/italic instead of the default "BI" for alternating +bold/italic). The new params +are "man.funcprototype.font" and +"man.funcsynopsisinfo.font". To be documented +later. +Closes #1452247. Thanks to Joe Orton for the feature +request. +Modified: params/man.string.subst.map.xml,1.16; +manpages/block.xsl,1.10; manpages/docbook.xsl,1.51; +manpages/inline.xsl,1.16; manpages/synop.xsl,1.27 - Michael(tm) +Smith + + +Use AUTHORS instead of +AUTHOR if we have multiple people to attribute. Also, +fixed checking such that we generate +author section even if we don't have an +author (as long as there is at least one other +person/entity we can put in the +section). Also adjusted assembly of content for +Author metainfo field such that we now not only use +author, but try to find a "best match" if we can't +find an author name to put there. +Closes +#1233592. Thanks to Sam Steingold for the +request. +Modified: manpages/info.xsl,1.12 - Michael(tm) +Smith + + +Changes for request #1243027, +"Impove handling of AUTHOR section." This +adds support for Collab, Corpauthor, Corpcredt, +Orgname, Publishername, and +Publisher. Also adds support for output +of Affiliation and its children, and support for using +gentext strings for auto-attributing roles (Author, +Editor, Publisher, Translator, etc.). Also +did a lot of code cleanup and modularization of all the +AUTHOR handling code. And fixed a bug that was causing +Author info to not be picked up correctly +for metainfo comment we embed in man-page +source. +Modified: manpages/info.xsl,1.11 - Michael(tm) +Smith + + +Support bold output for +"emphasis remap='B'". (because Eric Raymond's +doclifter(1) tool converts groff source marked up with ".B" +request or "\fB" escapes to DocBook "emphasis +remap='B'".) +Modified: manpages/inline.xsl,1.14 - Michael(tm) +Smith + + +Added support for +Segmentedlist. Details: Output is tabular, with no +option for "list" type output. Output for Segtitle +elements can be supressed by +setting man.segtitle.suppress. If Segtitle +content is output, it is rendered in italic type (not bold +because not all terminals support bold and so italic ensures the +stand out on those terminals). Extra space (.sp line) at end of +table code ensures that it gets handled correctly in +the case where its source is the child of a Para. +Closes feature-request #1400097. Thanks to Daniel Leidert for the +patch and push, and to Alastair Rankine for filing the original +feature request. +Modified: manpages/lists.xsl,1.23; +manpages/utility.xsl,1.10 - Michael(tm) Smith + + +Improved handling or +Author/Editor/Othercredit. +Reworked content of +(non-visible) comment added at top of each page (metadata +stuff). +Added support for generating a +manifest file (useful for cleaning up +after builds, etc.) +Modified: manpages/docbook.xsl,1.46; +manpages/info.xsl,1.9; manpages/other.xsl,1.12; +manpages/utility.xsl,1.6 - Michael(tm) Smith + + +Added two new parameters for +handling of multi-term +varlistentry elements: +variablelist.term.break.after: +When the variablelist.term.break.after is +non-zero, it will generate a line break after each +term multi-term +varlistentry. +variablelist.term.separator: +When a varlistentry contains multiple term +elements, the string specified in the value of the +variablelist.term.separator parameter is +placed after each term except the last. The default +is ", " (a comma followed by a space). To suppress rendering of +the separator, set the value of +variablelist.term.separator to the empty +string (""). +These parameters are primarily intended to be +useful if you have multi-term varlistentries that have long +terms. +Closes #1306676. Thanks to Sam Steingold for +providing an example "lots of long terms" doc that demonstrated +the value of having these options. +Also, added +normalize-space() call to processing of each +term. +This change affects all output formats +(HTML, PDF, manpages). The default behavior should pretty much +remain the same as before, but it is possible (as always) that +the change may introduce some +new bugginess. +Modified: fo/lists.xsl,1.62; fo/param.ent,1.88; +fo/param.xweb,1.99; html/lists.xsl,1.48; html/param.ent,1.86; +html/param.xweb,1.93; manpages/lists.xsl,1.22; +manpages/param.ent,1.14; manpages/param.xweb,1.16; +params/variablelist.term.break.after.xml,1.1; +params/variablelist.term.separator.xml,1.1 - Michael(tm) +Smith + + + + + +Params +The following changes have been made to the + params code + since the 1.69.1 release. + + +New parameters to set +header/footer table minimum +height. +Modified: params/footer.table.height.xml,1.1; +params/header.table.height.xml,1.1 - Robert +Stayton + + +Support multiple indexing methods +for different languages. +Modified: params/index.method.xml,1.1 - Robert +Stayton + + +Remove qandaset and +qandadiv from generate.toc for fo +output because formerly it wasn't working, but now it is and +the default behavior should stay the +same. +Modified: params/generate.toc.xml,1.8 - Robert +Stayton + + +add support for page number +references to link element +too. +Modified: params/insert.link.page.number.xml,1.1 - Robert +Stayton + + +Add support for more characters to +hyphen on when ulink.hyphenate is turned +on. +Modified: params/ulink.hyphenate.chars.xml,1.1; +params/ulink.hyphenate.xml,1.3 - Robert Stayton + + +New attribute-set to format +biblioentry and +bibliomixed. +Modified: params/biblioentry.properties.xml,1.1 - +Robert Stayton + + +Added new parameter +chunk.tocs.and.lots.has.title which +controls presence of title in a separate chunk with +ToC/LoT. Disabling title can be very useful if you are +generating frameset output (well, yes those frames, but some customers +really want them ;-). +Modified: html/chunk-code.xsl,1.15; +html/param.ent,1.93; html/param.xweb,1.102; +params/chunk.tocs.and.lots.has.title.xml,1.1 - Jirka +Kosek + + +Added new attribute set +toc.line.properties for controlling appearance of lines in +ToC/LoT +Modified: params/toc.line.properties.xml,1.1 - Jirka +Kosek + + +Allow table footnotes +to have different properties from regular +footnotes. +Modified: params/table.footnote.properties.xml,1.1 - Robert +Stayton + + +Set properties for pgwide="1" +objects. +Modified: params/pgwide.properties.xml,1.1 - Robert +Stayton + + +Added the +autotoc.label.in.hyperlink param. +If the value +of autotoc.label.in.hyperlink is non-zero, labels +are included in hyperlinked titles in the TOC. If it +is instead zero, labels are still displayed prior to the +hyperlinked titles, but are not hyperlinked along with the +titles. +Closes patch #1065868. Thanks to anatoly techtonik +for the patch. +Modified: html/autotoc.xsl,1.36; html/param.ent,1.92; +html/param.xweb,1.101; params/autotoc.label.in.hyperlink.xml,1.1 - +Michael(tm) Smith + + +Added two new params: +html.head.legalnotice.link.types +and html.head.legalnotice.link.multiple. +If +the value of the generate.legalnotice.link is +non-zero, then the stylesheet generates (in the head +section of the HTML source) either a single HTML +link element or, if the value of +the html.head.legalnotice.link.multiple is +non-zero, one link element for each link +type specified. Each link has the +following attributes: + - a rel attribute whose value +is derived from the value of +html.head.legalnotice.link.types + - +an href attribute whose value is set to the URL of the file +containing the legalnotice + - a title +attribute whose value is set to the title of the +corresponding legalnotice (or a title +programatically determined by the stylesheet) +For +example: + <link rel="copyright" +href="ln-id2524073.html" title="Legal Notice"> +Closes +#1476450. Thanks to Sam Steingold. +Modified: html/chunk-common.xsl,1.45; +html/param.ent,1.91; html/param.xweb,1.100; +params/generate.legalnotice.link.xml,1.4; +params/html.head.legalnotice.link.multiple.xml,1.1; +params/html.head.legalnotice.link.types.xml,1.1 - Michael(tm) +Smith + + +Added the following +params: + - man.indent.width (string-valued) - +man.indent.refsect (boolean) - man.indent.blurbs (boolean) +- man.indent.lists (boolean) - man.indent.verbatims +(boolean) +Note that in earlier snapshots, man.indent.width +was named man.indentation.default.value and the boolean params +had names like man.indentation.*.adjust. Also the +man.indent.blurbs param was called man.indentation.authors.adjust +(or something). +The behavior now is: If the value of a +particular man.indent.* boolean param is non-zero, the +corresponding contents (refsect*, list items, +authorblurb/personblurb, vervatims) are displayed with a left +margin indented by a width equal to the value +of man.indent.width. +Modified: params/man.indent.blurbs.xml,1.1; +manpages/docbook.xsl,1.74; manpages/info.xsl,1.20; +manpages/lists.xsl,1.30; manpages/other.xsl,1.20; +manpages/param.ent,1.22; manpages/param.xweb,1.24; +manpages/refentry.xsl,1.14; params/man.indent.lists.xml,1.1; +params/man.indent.refsect.xml,1.1; +params/man.indent.verbatims.xml,1.1; params/man.indent.width.xml,1.1 - +Michael(tm) Smith + + +Added +man.table.footnotes.divider param. +In each +table that contains footenotes, the string specified +by the man.table.footnotes.divider parameter is output +before the list of footnotes for the +table. +Modified: manpages/docbook.xsl,1.73; +manpages/links.xsl,1.6; manpages/param.ent,1.21; +manpages/param.xweb,1.23; params/man.table.footnotes.divider.xml,1.1 - +Michael(tm) Smith + + +Added the +man.output.in.separate.dir, +man.output.base.dir, +and man.output.subdirs.enabled parameters. +The +man.output.base.dir parameter specifies the +base directory into which man-page files are +output. The man.output.subdirs.enabled parameter controls whether +the files are output in subdirectories within the base +directory. +The values of the +man.output.base.dir +and man.output.subdirs.enabled parameters are used only if the +value of man.output.in.separate.dir parameter is non-zero. If the +value of man.output.in.separate.dir is zero, man-page files are +not output in a separate +directory. +Modified: manpages/docbook.xsl,1.72; manpages/param.ent,1.20; +manpages/param.xweb,1.22; params/man.output.base.dir.xml,1.1; +params/man.output.in.separate.dir.xml,1.1; +params/man.output.subdirs.enabled.xml,1.1 - Michael(tm) +Smith + + +Added +man.font.table.headings and +man.font.table.title params, for +controlling font in table headings and +titles. +Modified: manpages/docbook.xsl,1.71; manpages/param.ent,1.19; +manpages/param.xweb,1.21; params/man.font.table.headings.xml,1.1; +params/man.font.table.title.xml,1.1 - Michael(tm) +Smith + + +Added +man.font.funcsynopsisinfo and +man.font.funcprototype params, for specifying the roff +font (for example, BI, B, I) for funcsynopsisinfo and +funcprototype output. +Modified: manpages/block.xsl,1.19; +manpages/docbook.xsl,1.69; manpages/param.ent,1.18; +manpages/param.xweb,1.20; manpages/synop.xsl,1.29; +manpages/table.xsl,1.21; params/man.font.funcprototype.xml,1.1; +params/man.font.funcsynopsisinfo.xml,1.1 - Michael(tm) +Smith + + +Changed to select="0" in +refclass.suppress (instead of +..>0</..) +Modified: params/refclass.suppress.xml,1.3 - Michael(tm) +Smith + + +Added +man.segtitle.suppress param. +If the value of +man.segtitle.suppress is non-zero, then display +of segtitle contents is suppressed in +output. +Modified: manpages/docbook.xsl,1.68; manpages/param.ent,1.17; +manpages/param.xweb,1.19; params/man.segtitle.suppress.xml,1.1 - +Michael(tm) Smith + + +Added +man.output.manifest.enabled and +man.output.manifest.filename params. +If +man.output.manifest.enabled is non-zero, a list +of filenames for man pages generated by the stylesheet +transformation is written to the file named by +man.output.manifest.filename +Modified: manpages/docbook.xsl,1.67; +manpages/other.xsl,1.19; manpages/param.ent,1.16; +manpages/param.xweb,1.18; params/man.output.manifest.enabled.xml,1.1; +params/man.output.manifest.filename.xml,1.1; +tools/make/Makefile.DocBook,1.4 - Michael(tm) +Smith + + +Added refclass.suppress +param. +If the value of refclass.suppress is +non-zero, then display refclass contents is suppressed +in output. Affects HTML and FO output +only. +Modified: fo/param.ent,1.93; fo/param.xweb,1.106; html/param.ent,1.90; +html/param.xweb,1.99; params/refclass.suppress.xml,1.1 - Michael(tm) +Smith + + +Added +refentry.meta.get.quietly param. +If zero (the +default), notes and warnings about "missing" markup are generated +during gathering of refentry metadata. If +non-zero, the metadata is gathered "quietly" -- that is, the +notes and warnings are suppressed. +NOTE: If you are +processing a large amount of refentry content, you +may be able to speed up processing significantly by setting a +non-zero value for +refentry.meta.get.quietly. +Modified: common/refentry.xsl,1.17; +manpages/param.ent,1.15; manpages/param.xweb,1.17; +params/refentry.meta.get.quietly.xml,1.1 - Michael(tm) +Smith + + +Added support for "software" and +"sectdesc" class values on refmiscinfo; "software" is +treated identically to "source", and "setdesc" is treated +identically to "manual". +Modified: common/refentry.xsl,1.10; +params/man.th.extra2.max.length.xml,1.3; +params/refentry.source.name.profile.xml,1.4 - Michael(tm) +Smith + + +Drastically reworked all of the +XPath expressions used in refentry metadata gathering +-- completely removed $parentinfo and turned $info into a set of +nodes that includes the *info contents of the Refentry +plus the *info contents all all of its ancestor elements. The +basic XPath expression now used throughout is (using the example +of checking for a date): + +(($info[//date])[last()]/date)[1]. +That selects the "last" +*info/date date in document order -- that is, the one +eitther on the Refentry itself or on the +closest ancestor to the Refentry. +It's +likely this change may break some things; may need to pick up +some pieces later. +Also, changed the default value for the +man.th.extra2.max.length from 40 to +30. +Modified: common/common.xsl,1.58; common/refentry.xsl,1.7; +params/man.th.extra2.max.length.xml,1.2; +params/refentry.date.profile.xml,1.2; +params/refentry.manual.profile.xml,1.2; +params/refentry.source.name.profile.xml,1.2; +params/refentry.version.profile.xml,1.2; manpages/docbook.xsl,1.58; +manpages/other.xsl,1.15 - Michael(tm) Smith + + +Added option for turning off bold +formatting in Funcsynopsis. Boldface formatting in +function synopsis is mandated in the +man(7) man page and is used almost universally in existing man +pages. Despite that, it really does look like crap to have an +entire Funcsynopsis output in bold, so I added params +for turning off the bold formatting and/or replacing it with a +different roff special font (e.g., "RI" for alternating +roman/italic instead of the default "BI" for alternating +bold/italic). The new params +are "man.funcprototype.font" and +"man.funcsynopsisinfo.font". To be documented +later. +Closes #1452247. Thanks to Joe Orton for the feature +request. +Modified: params/man.string.subst.map.xml,1.16; +manpages/block.xsl,1.10; manpages/docbook.xsl,1.51; +manpages/inline.xsl,1.16; manpages/synop.xsl,1.27 - Michael(tm) +Smith + + +fop.extensions now only +for FOP version 0.20.5 and earlier. +Modified: params/fop.extensions.xml,1.4 +- Robert Stayton + + +Support for fop1 different from +fop 0.20.5 and earlier. +Modified: params/fop1.extensions.xml,1.1 - Robert +Stayton + + +Reset default value to empty +string so template uses gentext first, then the parameter value +if not empty. +Modified: params/index.number.separator.xml,1.2; +params/index.range.separator.xml,1.2; +params/index.term.separator.xml,1.2 - Robert +Stayton + + +New parameter: +id.warnings. If non-zero, warnings are +generated for titled objects that don't have titles. True by default; +I wonder if this will be too aggressive? +Modified: html/biblio.xsl,1.25; +html/component.xsl,1.27; html/division.xsl,1.11; html/formal.xsl,1.19; +html/glossary.xsl,1.20; html/html.xsl,1.13; html/index.xsl,1.16; +html/param.ent,1.88; html/param.xweb,1.97; html/refentry.xsl,1.22; +html/sections.xsl,1.30; params/id.warnings.xml,1.1 - Norman +Walsh + + +Added new parameter +keep.relative.image.uris +Modified: fo/param.ent,1.91; +fo/param.xweb,1.104; html/param.ent,1.87; html/param.xweb,1.96; +params/keep.relative.image.uris.xml,1.1 - Norman +Walsh + + +Support default label +width parameters for itemized and ordered lists +Modified: fo/lists.xsl,1.64; +fo/param.ent,1.90; fo/param.xweb,1.103; +params/itemizedlist.label.width.xml,1.1; +params/orderedlist.label.width.xml,1.1 - Norman +Walsh + + +Added parameters to localize +punctuation in indexes. +Modified: params/index.number.separator.xml,1.1; +params/index.range.separator.xml,1.1; +params/index.term.separator.xml,1.1 - Robert +Stayton + + +Added two new parameters for +handling of multi-term +varlistentry elements: +variablelist.term.break.after: +When the variablelist.term.break.after is +non-zero, it will generate a line break after each +term multi-term +varlistentry. +variablelist.term.separator: +When a varlistentry contains multiple term +elements, the string specified in the value of the +variablelist.term.separator parameter is +placed after each term except the last. The default +is ", " (a comma followed by a space). To suppress rendering of +the separator, set the value of +variablelist.term.separator to the empty +string (""). +These parameters are primarily intended to be +useful if you have multi-term varlistentries that have long +terms. +Closes #1306676. Thanks to Sam Steingold for +providing an example "lots of long terms" doc that demonstrated +the value of having these options. +Also, added +normalize-space() call to processing of each +term. +This change affects all output formats +(HTML, PDF, manpages). The default behavior should pretty much +remain the same as before, but it is possible (as always) that +the change may introduce some +new bugginess. +Modified: fo/lists.xsl,1.62; fo/param.ent,1.88; +fo/param.xweb,1.99; html/lists.xsl,1.48; html/param.ent,1.86; +html/param.xweb,1.93; manpages/lists.xsl,1.22; +manpages/param.ent,1.14; manpages/param.xweb,1.16; +params/variablelist.term.break.after.xml,1.1; +params/variablelist.term.separator.xml,1.1 - Michael(tm) +Smith + + +Convert 'no' to string in default +value. +Modified: params/olink.doctitle.xml,1.4 - Robert +Stayton + + +Implemented RFE +#1292615. +Added bunch of new parameters (attribute sets) +that affect list presentation: list.block.properties, +itemizedlist.properties, orderedlist.properties, +itemizedlist.label.properties and +orderedlist.label.properties. Default behaviour +of stylesheets has not been changed but further customizations will be +much more easier. +Modified: fo/lists.xsl,1.61; fo/param.ent,1.87; +fo/param.xweb,1.98; params/itemizedlist.label.properties.xml,1.1; +params/itemizedlist.properties.xml,1.1; +params/list.block.properties.xml,1.1; +params/orderedlist.label.properties.xml,1.1; +params/orderedlist.properties.xml,1.1 - Jirka +Kosek + + +Implemented RFE +#1242092. +You can enable crop marks in your document by +setting crop.marks=1 and xep.extensions=1. Appearance of crop +marks can be controlled by parameters +crop.mark.bleed (6pt), +crop.mark.offset (24pt) and +crop.mark.width (0.5pt). +Also there +is new named template called user-xep-pis. You can overwrite it in +order to produce some PIs that can control XEP as described in +http://www.renderx.com/reference.html#Output_Formats +Modified: fo/docbook.xsl,1.36; +fo/param.ent,1.86; fo/param.xweb,1.97; fo/xep.xsl,1.23; +params/crop.mark.bleed.xml,1.1; params/crop.mark.offset.xml,1.1; +params/crop.mark.width.xml,1.1; params/crop.marks.xml,1.1 - Jirka +Kosek + + +Changed short descriptions in doc +for *autolabel* params to match new autolabel +behavior. +Modified: params/appendix.autolabel.xml,1.5; +params/chapter.autolabel.xml,1.4; params/part.autolabel.xml,1.5; +params/preface.autolabel.xml,1.4 - Michael(tm) +Smith + + + + + +Profiling +The following changes have been made to the + profiling code + since the 1.69.1 release. + + +Profiling now works together with +namespace stripping (V5 documents). Namespace striping should work +with all stylesheets named profile-, even if they are not supporting +namespace stripping in a non-profiling +variant. +Modified: profiling/profile-mode.xsl,1.4; +profiling/xsl2profile.xsl,1.7 - Jirka Kosek + + +Moved profiling stage out of +templates. This make possible to reuse profiled content by several +templates and still maintaing node indentity (needed for example for +HTML Help where content is processed multiple times). +I +don't know why this was not on the top level before. Maybe some XSLT +processors choked on it. I hope this will be OK +now. +Modified: profiling/xsl2profile.xsl,1.5 - Jirka +Kosek + + + + + +Tools +The following changes have been made to the + tools code + since the 1.69.1 release. + + +Moved Makefile.DocBook from +contrib module to xsl +module. +Modified: tools/make/Makefile.DocBook,1.1 - Michael(tm) +Smith + + + + + +WordML +The following changes have been made to the + wordml code + since the 1.69.1 release. + + +added contrib element, +better handling of default paragraph +style +Modified: wordml/pages-normalise.xsl,1.6; wordml/supported.xml,1.2; +wordml/wordml-final.xsl,1.14 - Steve Ball + + +added +bridgehead +Modified: wordml/docbook-pages.xsl,1.6; +wordml/docbook.xsl,1.17; wordml/pages-normalise.xsl,1.5; +wordml/template-pages.xml,1.7; wordml/template.dot,1.4; +wordml/template.xml,1.14; wordml/wordml-final.xsl,1.13 - Steve +Ball + + +added blocks stylesheet to support +bibliographies, glossaries and qandasets +Modified: wordml/Makefile,1.4; +wordml/README,1.3; wordml/blocks-spec.xml,1.1; +wordml/docbook-pages.xsl,1.5; wordml/docbook.xsl,1.16; +wordml/pages-normalise.xsl,1.4; wordml/sections-spec.xml,1.3; +wordml/specifications.xml,1.13; wordml/template-pages.xml,1.6; +wordml/template.dot,1.3; wordml/template.xml,1.13; +wordml/wordml-blocks.xsl,1.1; wordml/wordml-final.xsl,1.12; +wordml/wordml-sections.xsl,1.3 - Steve Ball + + +added mediaobject +caption +Modified: wordml/docbook-pages.xsl,1.4; +wordml/docbook.xsl,1.15; wordml/specifications.xml,1.12; +wordml/template-pages.xml,1.5; wordml/template.dot,1.2; +wordml/template.xml,1.12; wordml/wordml-final.xsl,1.11 - Steve +Ball + + +added +callouts +Modified: wordml/docbook-pages.xsl,1.3; wordml/docbook.xsl,1.14; +wordml/pages-normalise.xsl,1.3; wordml/specifications.xml,1.11; +wordml/template-pages.xml,1.4; wordml/wordml-final.xsl,1.10 - Steve +Ball + + +added Word template +file +Modified: wordml/template.dot,1.1 - Steve Ball + + +added abstract, fixed +itemizedlist, ulink +Modified: wordml/specifications.xml,1.10; +wordml/wordml-final.xsl,1.9 - Steve Ball + + +fixed Makefile added many +features to Pages support added revhistory, inlines, +highlights, abstract +Modified: wordml/Makefile,1.2; +wordml/docbook-pages.xsl,1.2; wordml/pages-normalise.xsl,1.2; +wordml/sections-spec.xml,1.2; wordml/specifications.xml,1.9; +wordml/template-pages.xml,1.3; wordml/template.xml,1.11; +wordml/wordml-final.xsl,1.8; wordml/wordml-sections.xsl,1.2 - Steve +Ball + + +fixed handling linebreaks when +generating WordML added Apple Pages +support +Modified: wordml/docbook.xsl,1.13; wordml/template-pages.xml,1.2 - +Steve Ball + + + + + + + Release 1.69.1 + This release is a minor bug-fix update to the 1.69.0 + release. Along with bug fixes, it includes one + configuration-parameter change: The default value of the + annotation.support parameter is now + 0 (off). The reason for that change is that + there have been reports that annotation handling is + causing a significant performance degradation in processing of + large documents with xsltproc. + + + + + Release 1.69.0 + The release includes major feature changes, + particularly in the manpages + stylesheets, as well as a large number of bug fixes. + + As with all DocBook Project dot zero releases, this is an + experimental release . + + + Common + + + This release adds localizations for the following + languages: + + + Albanian + Amharic + Azerbaijani + Hindi + Irish (Gaelic) + Gujarati + Kannada + Mongolian + Oriya + Punjabi + Tagalog + Tamil + Welsh + . + + + Added support for specifying number format for auto + labels for chapter, appendix, + part, and preface. Contolled with the + appendix.autolabel, + chapter.autolabel, + part.autolabel, and + preface.autolabel parameters. + + + Added basic support for biblioref cross + referencing. + + + Added support for align + on caption in mediaobject. + + + Added support for processing documents that use the + DocBook V5 namespace. + + + Added support for termdef and + mathphrase. + + + EXPERIMENTAL: Incorporated the Slides and Website + stylesheets into the DocBook XSL stylesheets package. So, + for example, Website documents can now be processed using + the following URI for the driver Website + tabular.xsl file: http://docbook.sourceforge.net/release/xsl/current/website/tabular.xsl + + + A procedure without a title is + now treated as an informal procedure (meaning + that it is not added to any generated list of + procedures and has no affect on numbering of + generated labels for other procedures). + + + docname is no longer added to + olink when pointing to a root element. + + + + Added support for generation of choice separator in + inline simplelist. This enables auto-generation of an + appropriate localized choice separator (for + example, and or or) before the + final item in an inline simplelist. + To indicate that you want a choice separator + generated for a particular list, you need to put a processing + instruction (PI) of the form + dbchoice choice="foo" as a + child of the list. For example: + <para>Choose from + ONE and ONLY ONE of the following: + <simplelist type="inline"> + <?dbchoice choice="or" ?> + <member>A</member> + <member>B</member> + <member>C</member>.</simplelist></para> + + Output (for English): +
    + Choose from ONE and only ONE of the + following choices: A, B, or C. +
    + As a temporary workaround for the fact that most of the + DocBook non-English locale files don't have a localization for + the word or, you can put in a literal string to + be used; example for French: dbchoice choice="ou". That is, use + ou instead of or.
    +
    +
    +
    + + FO + + + Added content-type property to + external-graphic element, based on + imagedata format + attribute. + + + Added support for generating + <rx:meta-field creator="$VERSION"/> + field for XEP output. This makes the DocBook XSL + stylesheet version information available through the + Document Properties menu in Acrobat + Reader and other PDF viewers. + + + Trademark symbol handling made consistent with + handling of same in HTML stylesheets. Prior to this change, + if you processed a document that contained no value for the + class attribute on the + trademark element, the HTML stylesheets would + default to rendering a superscript TM + symbol after the trademark contents, + but the FO stylesheets would render nothing. + + + Added support for generating XEP bookmarks for + refentry. + + + Added support for HTML markup table border attribute, applied to each + table cell. + + + The table.width template can now + sum column specs if none use % or + *. + + + Added fox:destination extension + inside fox:outline to support linking to + internal destinations. + + + Added support for customizing + abstract with property sets. Controlled + with the abstract.properties and + abstract.title.properties + parameters. + + + Add footnotes in table title to + table footnote set, and add support for table footnotes to + HTML table markup. + + + Added support for title in + glosslist. + + + Added support for itemizedlist symbol + none. + + + Implemented the new + graphical.admonition.properties and + nongraphical.admonition.properties + attribute sets. + + + Added id to + formalpara and some other blocks that were + missing it. + + + Changed the anchor template to output + fo:inline instead of + fo:wrapper. + + + Added support for toc.max.depth + parameter. + + + + + + Help + + + Eclipse Help: Added support for generating olink + database. + + + + + + HTML + + + Added a first cut at support in HTML output for + DocBook 5 style annotations. Controlled using the + annotation.support parameter, and + implemented using JavaScript and CSS styling. For more + details, see the documentation for the + annotation.js, + annotation.css, + annotation.graphic.open, and + annotation.graphic.close + parameters. + + + Generate client-side image map for + imageobjectco with areas using + calspair units + + + Added support for img.src.path PI. + + + Added support for passing + img.src.path to DocBook Java XSLT + image extensions when appropriate. Controlled using the + graphicsize.use.img.src.path + parameter. + + + Added support for (not + valid for DocBook 4) xlink:href + on area and (not valid for DocBook 4) + alt in area. + + + Added new parameter + default.table.frame to control table + framing if there is no frame + attribute on a table. + + + Added initial, experimental support for generating + content for the HTML title attribute from + content of the alt element. This change adds + support for the following inline elements only (none of them + are block elements): + + + abbrev + accel + acronym + action + application + authorinitials + beginpage + citation + citerefentry + citetitle + city + classname + code + command + computeroutput + constant + country + database + email + envar + errorcode + errorname + errortext + errortype + exceptionname + fax + filename + firstname + firstterm + foreignphrase + function + glossterm + guibutton + guiicon + guilabel + guimenu + guimenuitem + guisubmenu + hardware + honorific + interface + interfacename + keycap + keycode + keysym + lineage + lineannotation + literal + markup + medialabel + methodname + mousebutton + option + optional + otheraddr + othername + package + parameter + personname + phone + pob + postcode + productname + productnumber + prompt + property + quote + refentrytitle + remark + replaceable + returnvalue + tag + shortcut + state + street + structfield + structname + subscript + superscript + surname + symbol + systemitem + tag + termdef + token + trademark + type + uri + userinput + varname + wordasword + + + + + Added support for chunking revhistory into + separate file (similar to the support for doing same with + legalnotice). Patch from Thomas + Schraitle. Controlled through new + generate.revhistory.link parameter. + + + l10n.xsl: Made language codes RFC compliant. Added a + new boolean config parameter, + l10n.lang.value.rfc.compliant. If it + is non-zero (the default), any underscore in a language code + will be converted to a hyphen in HTML output. If it is zero, + the language code will be left as-is. + + + + + man + This release closes out 44 manpages stylesheet bug reports + and feature requests. It adds more than 35 new configuration + parameters for controlling aspects of man-page output -- + including hyphenation and justification, handling of links, + conversion of Unicode characters, and contents of man-page + headers and footers. + + + + New options for globally disabling/enabling + hyphenation and justification: + man.justify and + man.hyphenate. + Note that the default + for the both of those is zero (off), because justified text + looks good only when it is also hyphenated; to quote the + Hyphenation node from the groff info page: +
    + Since the odds are not great for finding a + set of words, for every output line, which fit nicely on a + line without inserting excessive amounts of space between + words, `gtroff' hyphenates words so that it can justify + lines without inserting too much space between + words. +
    + The problem is that groff can end up hyphenating a lot of + things that you don't want hyphenated (variable names and + command names, for example). Keeping both justification and + hyphenation disabled ensures that hyphens won't get inserted + where you don't want to them, and you don't end up with + lines containing excessive amounts of space between + words. These default settings run counter to how most + existing man pages are formatted. But there are some notable + exceptions, such as the perl man pages.
    +
    + + Added parameters for controlling hyphenation of + computer inlines, filenames, and URLs. By default, even when + hyphenation is enabled (globally), hyphenation is now + suppressed for "computer inlines" (currently, just + classname, constant, envar, + errorcode, option, + replaceable, userinput, + type, and varname, and for + filenames, and for URLs from link. It + can be (re)enabled using the + man.hyphenate.computer.inlines, + man.hyphenate.filenames, and + man.hyphenate.urls parameters. + + + + Implemented a new system for replacing Unicode + characters. There are two parts to the new system: a + string substitution map for doing + essential replacements, and a + character map that can optionally be disabled + and enabled. + The new system fixes all open bugs that had to do with + literal Unicode numbered entities such as &#8220; and + &#8221; showing up in output, and greatly expands the + ability of the stylesheets to generate good roff + equivalents for Unicode symbols and special + characters. + Here are some details... + The previous manpages mechanism for replacing Unicode + symbols and special characters with roff equivalents (the + replace-entities template) was not + scalable and not complete. The mechanism handled a somewhat + arbitrary selection of less than 20 or so Unicode + characters. But there are potentially more than + 800 Unicode special characters that + have some groff equivalent they can be mapped to. And there + are about 34 symbols in the Latin-1 (ISO-8859-1) block + alone. Users might reasonably expect that if they include + any of those Latin-1 characters in their DocBook source + documents, they will get correctly converted to known roff + equivalents in output. + In addition to those common symbols, certain users may + have a need to use symbols from other Unicode blocks. Say, + somebody who is documenting an application related to math + might need to use a bunch of symbols from the + Mathematical Operators Unicode block (there + are about 65 characters in that block that have reasonable + roff equivalents). Or somebody else might really like + Dingbats -- such as the checkmark character -- and so might + use a bunch of things from the Dingbat block + (141 characters in that that have roff equivalents or that + can at least be degraded somewhat gracefully + into roff). + So, the old replace-entities + mechanism was replaced with a completely different mechanism + that is based on use of two maps: a + substitution map and a character + map (the latter in a format compliant with the XSLT + 2.0 spec and therefore completely forward + compatible with XSLT 2.0). + The substitution map is controlled through the + man.string.subst.map parameter, and + is used to replace things like the backslash character + (which needs special handling to prevent it from being + interpreted as a roff escape). The substitution map cannot + be disabled, because disabling it will cause the output to + be broken. However, you can add to it and change it if + needed. + + The character map mechanism, on the + other hand, can be completely disabled. It is enabled by + default, and, by default, does replacement of all Latin-1 + symbols, along with most special spaces, dashes, and quotes + (about 75 characters by default). Also, you can optionally + enable a full character map that provides + support for converting all 800 or so of the characters that + have some reasonable groff equivalent. + + The character-map mechanism is controlled through the + following parameters: + + + man.charmap.enabled + turns character-map support + on/off + + + man.charmap.use.subset + specifies that a subset of the character + map is used instead of the full map + + + man.charmap.subset.profile + specifies profile of character-map + subset + + + man.charmap.uri + specifies an alternate character map to + use instead of the standard character map + provided in the distribution + + + + + + + Implemented out-of-line handling of display of URLs + for links (currently, only for ulink). This gives + you three choices for handling of links: + + + Number and list links. Each link is numbered + inline, with a number in square brackets preceding the + link contents, and a numbered list of all links is added + to the end of the document. + + + Only list links. Links are not numbered, but an + (unnumbered) list of links is added to the end of the + document. + + + Suppress links. Don't number links and don't add + any list of links to the end of the document. + + + You can also choose whether links should be underlined. The + default is the works -- list, number, and + underline links. You can use the + man.links.list.enabled, + man.links.are.numbered, and + man.links.are.underlined parameters + to change the defaults. The default heading for the link + list is REFERENCES. You can be change that using the + man.links.list.heading + parameter. + + + Changed default output encoding to UTF-8. This does not mean that man pages are output in + raw UTF-8, because the character map is applied + before final output, causing all UTF-8 characters covered in + the map to be converted to roff equivalents. + + + + Added support for processing refsect3 and + formalpara and nested refsection + elements, down to any arbitrary level of nesting. + + + + Output of the NAME and + SYNOPSIS and AUTHOR + headings and the headings for admonitions (note, + caution, etc.) are no longer hard-coded for + English. Instead, headings are generated for those in the + correct locale (just as the FO and HTML stylesheets + do). + + + + Re-worked mechanism for assembling page + headers/footers (the contents of the .TH + macro title line). + + Here are some details... + + All man pages contain a .TH roff + macro whose contents are used for rendering the title + line displayed in the header and footer of each + page. Here are a couple of examples of real-world man pages + that have useful page headers/footers: + gtk-options(7) GTK+ User's Manual gtk-options(7) <-- header + GTK+ 1.2 2003-10-20 gtk-options(7) <-- footer + + svgalib(7) Svgalib User Manual svgalib(7) <-- header + Svgalib 1.4.1 16 December 1999 svgalib(7) <-- footer + + And here are the terms with which the + groff_man(7) man page refers to the + various parts of the header/footer: + title(section) extra3 title(section) <- header + extra2 extra1 title(section) <- footer + Or, using the names with which the man(7) + man page refers to those same fields: + title(section) manual title(section) <- page header + source date title(section) <- page footer + + The easiest way to control the contents of those + fields is to mark up your refentry content like + the following (note that this is a minimal + example). + <refentry> + <info> + <date>2003-10-20</date> + </info> + <refmeta> + <refentrytitle>gtk-options</refentrytitle> + <manvolnum>7</manvolnum> + <refmiscinfo class="source-name">GTK+</refmiscinfo> + <refmiscinfo class="version">1.2</refmiscinfo> + <refmiscinfo class="manual">GTK+ User's Manual</refmiscinfo> + </refmeta> + <refnamediv> + <refname>gtk-options</refname> + <refpurpose>Standard Command Line Options for GTK+ Programs</refpurpose> + </refnamediv> + <refsect1> + <title>Description</title> + <para>This manual page describes the command line options, which + are common to all GTK+ based applications.</para> + </refsect1> + </refentry> + + + Sets the date part of the header/footer. + + + Sets the title part. + + + Sets the section part. + + + Sets the source name part. + + + Sets the version part. + + + Sets the manual part. + + + + Below are explanations of the steps the stylesheets + take to attempt to assemble and display + good headers and footer. [In the + descriptions, note that *info + is the refentry info child + (whatever its name), and + parentinfo is the + info child of its parent (again, whatever + its name).] + + + extra1 field (date) + + Content of the extra1 field is + what shows up in the center + footer position of each page. The + man(7) man page describes it as + the date of the last revision. + To provide this content, if the + refentry.date.profile.enabled + is non-zero, the stylesheets check the value of + refentry.date.profile. + Otherwise, by default, they check for a + date or pubdate not only in the + *info contents, but also in + the parentinfo + contents. + If a date cannot be found, the stylesheets now + automatically generate a localized long + format date, ensuring that this field always + has content in output. + However, if for some reason you want to suppress + this field, you can do so by setting a non-zero value + for man.th.extra1.suppress. + + + + extra2 field (source) + + On Linux systems and on systems with a modern + groff, the content of the extra2 field + are what shows up in the left + footer position of each page. + + The man(7) man page describes + this as the source of the command, and + provides the following examples: + + + For binaries, use somwething like: GNU, + NET-2, SLS Distribution, MCC Distribution. + + + For system calls, use the version of the + kernel that you are currently looking at: Linux + 0.99.11. + + + For library calls, use the source of the + function: GNU, BSD 4.3, Linux DLL 4.4.1. + + + + + In practice, there are many pages that simply + have a version number in the source + field. So, it looks like what we have is a two-part + field, + Name Version, + where: + + + Name + + product name (e.g., BSD) or org. name + (e.g., GNU) + + + + Version + + version name + + + + Each part is optional. If the + Name is a product name, + then the Version is + probably the version of the product. Or there may be + no Name, in which case, if + there is a Version, it is + probably the version of the item itself, not the + product it is part of. Or, if the + Name is an organization + name, then there probably will be no + Version. + + To provide this content, if the + refentry.source.name.profile.enabled + and + refentry.version.profile.enabled + parameter are non-zero, the stylesheets check the + value of refentry.source.name.profile + refentry.version.profile. + + Otherwise, by default, they check the following + places, in the following order: + + + *info/productnumber + + + *info/productnumber + + + refmeta/refmiscinfo[@class = 'version'] + + + parentinfo/productnumber + + + *info/productname + + + parentinfo/productname + + + refmeta/refmiscinfo + + + [nothing found, so leave it empty] + + + + + + + extra3 field + + On Linux systems and on systems with a modern + groff, the content of the extra3 field + are what shows up in the center + header position of each page. Some man + pages have extra2 content, some + don't. If a particular man page has it, it is most + often context data about some larger + system the documented item belongs to (for example, + the name or description of a group of related + applications). The stylesheets now check the following + places, in the following order, to look for content to + add to the extra3 field. + + + parentinfo/title + + + parent's title + + + refmeta/refmiscinfo + + + [nothing found, so leave it empty] + + + + + + + + + + Reworked *info gathering. For + each refentry found, the stylesheets now cache its + *info content, then check for any + valid parent of it that might have metainfo content and cache + that, if found; they then then do all further matches against + those node-sets (rather than re-selecting the original + *info nodes each time they are + needed). + + + + New option for breaking strings after forward + slashes. This enables long URLs and pathnames to be broken + across lines. Controlled through + man.break.after.slash parameter. + + + + Output for servicemark and trademark are now + (SM) and (TM). There is + a groff "\(tm" escape, but output from that + is not acceptable. + + + + New option for controlling the length of the title + part of the .TH title line. Controlled + through the man.th.title.max.length + parameter. + + + + New option for specifying output encoding of each man + page; controlled with + man.output.encoding (similar to the + HTML chunker.output.encoding + parameter). + + + + New option for suppressing filename messages when + generating output; controlled with + man.output.quietly (similar to the HTML + chunk.quietly parameter). + + + + The text of cross-references to first-level + refentry (refsect1, top-level + refsection, refnamediv, and + refsynopsisdiv) are now capitalized. + + + + Cross-references to refnamediv now use the + localized NAME title instead of using the + first refname child. This makes the output + inconsistent with HTML and FO output, but for man-page output, + it seems to make better sense to have the + NAME. (It may actually make better sense to + do it that way in HTML and FO output as well...) + + + + Added support for processing funcparams. + + + + Removed the space that was being output between + funcdef and paramdef; example: was: + float rand (void); now: + float rand(void) + + + + Turned off bold formatting for the type + element when it occurs within a funcdef or + paramdef + + + + Corrected rendering of simplelist. Any + <simplelist type="inline" instance + is now rendered as a comma-separated list (also with an + optional localized and or or before the last item -- see + description elsewhere in these release notes). Any simplelist + instance whose type is not + inline is rendered as a one-column vertical + list (ignoring the values of the type and columns attributes if present) + + + + Comment added at top of roff source for each page now + includes DocBook XSL stylesheets version number (as in the + HTML stylesheets) + + + + Made change to prevent sticky fonts + changes. Now, when the manpages stylesheets encounter node + sets that need to be boldfaced or italicized, they put the + \fBfoo\fR and \fIbar\fR + groff bold/italic instructions separately around each node in + the set. + + + synop.xsl: Boldface everything in + funcsynopsis output except parameters (which are in + ital). The man(7) man page says: +
    + For functions, the arguments are always specified + using italics, even in the SYNOPSIS section, where the rest + of the function is specified in bold. +
    + A look through the contents of the + man/man2 directory shows that most + (all) existing pages do follow this everything in + funcsynopsis bold rule. That means the + type content and any punctuation (parens, + semicolons, varargs) also must be bolded.
    +
    + + + Removed code for adding backslashes before periods/dots + in roff source, because backslashes in front of periods/dots + in roff source are needed only in the very rare case where a + period is the very first character in a line, without any + space in front of it. A better way to deal with that rare case + is for you to add a zero-width space in front of the offending + dot(s) in your source + + + + Removed special handling of the quote + element. That was hard-coded to cause anything marked up with + the quote element to be output preceded by two + backticks and followed by two apostrophes -- that is, that + old-school kludge for generating curly quotes in Emacs and + in X-Windows fonts. While Emacs still seems to support that, I + don't think X-Windows has for a long time now. And, anyway, it + looks (and has always looked) like crap when viewed on a + normal tty/console. In addition, it breaks localiztion of + quote. By default, quote content is + output with localized quotation marks, which, depending on the + locale, may or may not be left and right double quotation + marks. + + + + Changed mappings for left and right single quotation + marks. Those had previously been incorrectly mapped to the + backtick (&#96;) and apostrophe (&39;) characters (for + kludgy reasons -- see above). They are now correctly mapped to + the \(oq and \(cq roff + escapes. If you want the old (broken) behavior, you need to + manually change the mappings for those in the value of the + man.string.subst.map parameter. + + + Removed xref.xsl file. Now, of the + various cross-reference elements, only the ulink + element is handled differently; the rest are handled exactly + as the HTML stylesheets handle them, except that no hypertext + links are generated. (Because there is no equivalent hypertext + mechanism is man pages.) + + + + New option for making subheading dividers in generated + roff source. The dividers are not visible in the rendered man + page; they are just there to make the source + readable. Controlled using + man.subheading.divider. + + + + Fixed many places where too much space was being added + between lines. + +
    + +
    +
    + + + + Release 1.68.1 + The release adds localization support for Farsi (thanks to + Sina Heshmati) and improved support for the XLink-based DocBook NG + db:link element. Other than that, it is a minor + bug-fix update to the 1.68.0 release. The main thing it fixes is a + build error that caused the XSLT Java extensions to be jarred up + with the wrong package structure. Thanks to Jens Stavnstrup for + quickly reporting the problem, and to Mauritz Jeanson for + investigating and finding the cause. + + + + + Release 1.68.0 + This release includes some features changes, particularly + for FO/PDF output, and a number of bug fixes. + + FO + + Moved footnote properties to attribute-sets. + + + Added support for side floats, margin notes, and + custom floats. + + + Added new parameters + body.start.indent and + body.end.indent to the + set.flow.properties template. + + + Added support for xml:id + + + Added support for + refdescriptor. + + + Added support for multiple refnamedivs. + + + Added index.entry.properties + attribute-set to support customization of index + entries. + + + Added set.flow.properties + template call to each fo:flow + to support customizations entry point. + + + Add support for @floatstyle in + figure + + + Moved hardcoded properties for index division titles + to the index.div.title.properties + attribute-set. + + + Added support for + table-layout="auto" for XEP. + + + Added index.div.title.properties + attribute-set. + + + $verbose parameter is now + passed to most elements. + + + Added refentry to + toc in part, as it is + permitted by the DocBook schema/DTD. + + + Added backmatter elements and + article to toc in + part, since they are permitted by the + DocBook schema/DTD. + + + Added mode="toc" for + simplesect, since it is now permitted in + the toc if + simplesect.in.toc is set. + + + Moved hard-coded properties to + nongraphical.admonintion.properties + and graphical.admonition.properties + attribute sets. + + + Added support for sidebar-width and + float-type processing instructions in + sidebar. + + + For tables with HTML markup elements, added support + for dbfo bgcolor PI, the attribute-sets + named table.properties, + informaltable.properties, + table.table.properties, and + table.cell.padding. Also added + support for the templates named + table.cell.properties and + table.cell.block.properties so that + tabstyles can be implemented. Also added support for tables + containing only tr instead of + tbody with tr. + + + Added new paramater + hyphenate.verbatim.characters which + can specify characters after which a line break can occur in + verbatim environments. This parameter can be used to extend + the initial set of characters which contain only space and + non-breakable space. + + + Added itemizedlist.label.markup to enable + selection of different bullet symbol. Also added several + potential bullet characters, commented out by default. + + + Enabled all id's in XEP output for external olinking. + + + + + HTML + + Added support for + refdescriptor. + + + Added support for multiple refnamedivs. + + + Added support for xml:id + + + refsynopsisdiv as a section for + counting section levels + + + + Images + + Added new SVG admonition graphics and navigation images. + + + + + + + + Release 1.67.2 + This release fixes a table bug introduced in the 1.67.1 + release. + + + Release 1.67.1 + This release includes a number of bug fixes. + The following lists provide details about API and feature changes. + + FO + + Tables: Inherited cell properties are now passed to the + table.cell.properties template so they can + be overridden by a customization. + + + Tables: Added support for bgcolor PI on table row + element. + + + TOCs: Added new parameter + simplesect.in.toc; default value of + 0 causes simplesect to be omitted from TOCs; to + cause simplesect to be included in TOCs, you + must set the value of simplesect.in.toc to + 1.Comment from Norm: + +
    + Simplesect elements aren't supposed to + appear in the ToC at all... The use case for simplesect + is when, for example, every chapter in a book ends with + "Exercises" or "For More Information" sections and you + don't want those to appear in the ToC. +
    +
    +
    + + Sections: Reverted change that caused a variable reference + to be used in a template match and rewrote code to preserve + intended semantics. + + + Lists: Added workaround to prevent "* 0.60 + 1em" garbage in + list output from PassiveTeX + + + Moved the literal attributes from + component.title to the + component.title.properties attribute-set so + they can be customized. + + + Lists: Added glossdef's first + para to special handling in + fo:list-item-body. + +
    + + + HTML + + TOCs: Added new parameter + simplesect.in.toc; for details, see + the list of changes for this + release. + + + Indexing: Added new parameter + index.prefer.titleabbrev; when set to + 1, index references will use + titleabbrev instead of + title when available. + + + + HTML Help + + Added support for generating windows-1252-encoded + output using Saxon; for more details, see the list of changes for this release. + + + + man pages + + Replaced named/numeric character-entity references for + non-breaking space with groff equivalent (backslash-tilde). + + + + XSL Java extensions + + Saxon extensions: Added the + Windows1252 class. It extends Saxon + 6.5.x with the windows-1252 character set, which is + particularly useful when generating HTML Help for Western + European Languages (code from + Pontus + Haglund and contributed to the + DocBook community by Sectra AB, Sweden). + To use: + + + Make sure that the Saxon 6.5.x jar file and the jar file for + the DocBook XSL Java extensions are in your CLASSPATH + + + Create a DocBook XSL customization layer -- a file named + mystylesheet.xsl or whatever -- that, at a + minimum, contains the following: + <xsl:stylesheet + xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + version='1.0'> + <xsl:import href="http://docbook.sourceforge.net/release/xsl/current/htmlhelp/htmlhelp.xsl"/> + <xsl:output method="html" encoding="WINDOWS-1252" indent="no"/> + <xsl:param name="htmlhelp.encoding" select="'WINDOWS-1252'"></xsl:param> + <xsl:param name="chunker.output.encoding" select="'WINDOWS-1252'"></xsl:param> + <xsl:param name="saxon.character.representation" select="'native'"></xsl:param> + </xsl:stylesheet> + + Invoke Saxon with the + encoding.windows-1252 Java system property set + to com.nwalsh.saxon.Windows1252; for example + java \ + -Dencoding.windows-1252=com.nwalsh.saxon.Windows1252 \ + com.icl.saxon.StyleSheet \ + mydoc.xml mystylesheet.xsl + + Or, for a more complete "real world" case showing other + options you'll typically want to use: + java \ + -Dencoding.windows-1252=com.nwalsh.saxon.Windows1252 \ + -Djavax.xml.parsers.DocumentBuilderFactory=org.apache.xerces.jaxp.DocumentBuilderFactoryImpl \ + -Djavax.xml.parsers.SAXParserFactory=org.apache.xerces.jaxp.SAXParserFactoryImpl \ + -Djavax.xml.transform.TransformerFactory=com.icl.saxon.TransformerFactoryImpl \ + com.icl.saxon.StyleSheet \ + -x org.apache.xml.resolver.tools.ResolvingXMLReader \ + -y org.apache.xml.resolver.tools.ResolvingXMLReader \ + -r org.apache.xml.resolver.tools.CatalogResolver \ + mydoc.xml mystylesheet.xsl + + In both cases, the "mystylesheet.xsl" file should be a + DocBook customization layer containing the parameters + show in step 2. + + + + + + Saxon extensions: Removed Saxon 8 extensions from release package + + +
    +
    + + Release 1.67.0 + + + A number of important bug fixes. + + + Added Saxon8 extensions + + + Enabled dbfo table-width on + entrytbl in FO output + + + Added support for role=strong on + emphasis in FO output + + + Added new FO parameter + hyphenate.verbatim that can be used to turn + on "intelligent" wrapping of verbatim environments. + + + Replaced all <tt></tt> output with + <code></code> + + + Changed admon.graphic.width template to a + mode so that different admonitions can have different graphical + widths. + + + Deprecated the HTML shade.verbatim + parameter (use CSS instead) + + + Wrapped ToC + refentrytitle/refname and + refpurpose in span with class values. This + makes it possible to style them using a CSS stylesheet. + + + Use strong/em instead of + b/i in HTML output + + + Added support for converting Emphasis to + groff italic and Emphasis role='bold' to + bold. Controlled by + emphasis.propagates.style param, but not + documented yet using litprog system. Will do that next (planning + to add some other parameter-controllable options for hyphenation + and handling of line spacing). + + + callout.graphics.number.limit.xml + param: Changed the default from 10 to + 15. + + + verbatim.properties: Added + hyphenate=false + + + Saxon and Xalan Text.java extensions: Added support for + URIResolver() on insertfile href's + + + Added generated RELEASE-NOTES.txt + file. + + + Added INSTALL file (executable file for + generating catalog.xml) + + + Removed obsolete tools directory from + package + + + + +Release 1.66.1 + + +A number of important bug fixes. + + + + +Now xml:base attributes that are generated by an +XInclude processor are resolved for image files. + + + + +Rewrote olink templates to support several new features. + + + + +Extended full olink support to FO output. + + + + +Add support for xrefstyle attribute in olinks. + + + + +New parameters to support new olink features: +insert.olink.page.number, insert.olink.pdf.frag, +olink.debug, olink.lang.fallback.sequence, olink.properties, +prefer.internal.olink. +See the reference page for each parameter for more +information. + + + + + +Added index.on.type parameter for new type +attribute introduced in DocBook 4.3 for indexterms and index. +This allows you to create multiple indices containing +different categories of entries. +For users of 4.2 and earlier, you can use the new parameter index.on.role +instead. + + + + +Added new +section.autolabel.max.depth parameter to turn off section numbering +below a certain depth. +This permits you to number major section levels and leave minor +section levels unnumbered. + + + +Added footnote.sep.leader.properties attribute set to format +the line separating footnotes in printed output. + + + + +Added parameter img.src.path as a prefix to HTML img src +attributes. +The prefix is added to whatever path is already generated by the +stylesheet for each image file. + + + +Added new attribute-sets +informalequation.properties, +informalexample.properties, +informalfigure.properties, and informaltable.properties, +so each such element type can be formatted +individually if needed. + + + + +Add component.label.includes.part.label +parameter to add any part number to chapter, appendix +and other component labels when +the label.from.part parameter is nonzero. +This permits you to distinguish multiple chapters with the same +chapter number in cross references and the TOC. + + + +Added chunk.separate.lots parameter for HTML output. +This parameter lets you generate separate chunk files for each LOT +(list of tables, list of figures, etc.). + + +Added several table features: + + + +Added table.table.properties attribute set to add +properties to the fo:table element. + + + + +Added placeholder templates named table.cell.properties +and table.cell.block.properties to enable adding properties +to any fo:table-cell or the cell's fo:block, respectively. + These templates are a start for implementing table styles. + + + + + +Added new attribute +set component.title.properties for easy modifications of +component's title formatting in FO output. + + + + +Added Saxon support for an encoding attribute on the textdata element. Added new parameter +textdata.default.encoding which specifies encoding when +encoding attribute on +textdata is missing. + + + + +Template label.this.section now controls whole +section label, not only sub-label which corresponds to +particular label. Former behaviour was IMHO bug as it was +not usable. + + + + +Formatting in titleabbrev for TOC and headers +is preserved when there are no hotlink elements in the title. Formerly the title showed only the text of the title, no font changes or other markup. + + + + +Added intial.page.number template to set the initial-page-number +property for page sequences in print output. +Customizing this template lets you change when page numbering restarts. This is similar to the format.page.number template that lets you change how the page number formatting changes in the output. + + + + +Added force.page.count template to set the force-page-count +property for page sequences in print output. +This is similar to the format.page.number template. + + + + +Sort language for localized index sorting in autoidx-ng.xsl is now taken from document +lang, not from system environment. + + + + +Numbering and formatting of normal +and ulink footnotes (if turned on) has been unified. +Now ulink footnotes are mixed in with any other footnotes. + + + +Added support for renderas attribute in section and +sect1 et al. +This permits you to render a given section title as if it were a different level. + + + +Added support for label attribute in footnote to manually +supply the footnote mark. + + + + +Added support for DocBook 4.3 corpcredit element. + + + + +Added support for a dbfo keep-together PI for +formal objects (table, figure, example, equation, programlisting). That permits a formal object to be kept together if it is not already, or to be broken if it +is very long and the +default keep-together is not appropriate. + + + + +For graphics files, made file extension matching case +insensitive, and updated the list of graphics extensions. + + + + +Allow calloutlist to have block content before +the first callout + + + + +Added dbfo-need processing instruction to provide +soft page breaks. + + + + +Added implementation of existing but unused +default.image.width parameter for graphics. + + + + +Support DocBook NG tag inline element. + + + + +It appears that XEP now supports Unicode characters in +bookmarks. There is no further need to strip accents from +characters. + + + + +Make segmentedlist HTML markup +more semantic and available to CSS styles. + + + + +Added user.preroot placeholder template to +permit xsl-stylesheet and other PIs and comments to be +output before the HTML root element. + + + + +Non-chunked legalnotice now gets an <a +name="id"> element in HTML output +so it can be referenced with xref or link. + + + + +In chunked HTML output, changed link rel="home" to rel="start", +and link rel="previous" to rel="prev", per W3C HTML 4.01 +spec. + + + + +Added several patches to htmlhelp from W. Borgert + + + + +Added Bosnian locale file as common/bs.xml. + + + + + +Release 1.65.0 + + +A number of important bug fixes. + + + +Added a workaround to allow these stylesheets to process DocBook NG +documents. (It’s a hack that pre-processes the document to strip off the +namespace and then uses exsl:node-set to process +the result.) + + + +Added alternative indexing mechanism which has better +internationalization support. New indexing method allows grouping of +accented letters like e, é, ë into the same group under letter "e". It +can also treat special letters (e.g. "ch") as one character and place +them in the correct position (e.g. between "h" and "i" in Czech +language). +In order to use this mechanism you must create customization +layer which imports some base stylesheet (like +fo/docbook.xsl, +html/chunk.xsl) and then includes appropriate +stylesheet with new indexing code +(fo/autoidx-ng.xsl or +html/autoidx-ng.xsl). For example: +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + version="1.0"> + +<xsl:import href="http://docbook.sourceforge.net/release/xsl/current/fo/docbook.xsl"/> +<xsl:include href="http://docbook.sourceforge.net/release/xsl/current/fo/autoidx-ng.xsl"/> + +</xsl:stylesheet> +New method is known to work with Saxon and it should also work +with xsltproc 1.1.1 and later. Currently supported languages are +English, Czech, German, French, Spanish and Danish. + + + + +Release 1.64.1 + +General bug fixes and improvements. Sorry about the failure to produce +an updated release notes file for 1.62.0—1.63.2 + +In the course of fixing bug #849787, wrapping Unicode callouts +with an appropriate font change in the Xalan extensions, I discovered +that the Xalan APIs have changed a bit. So xalan2.jar +will work with older Xalan 2 implementations, xalan25.jar +works with Xalan 2.5. + + + + +Release 1.61.0 + +Lots of bug fixes and improvements. + +Initial support for timestamp PI. From now you + can use <?dbtimestamp format="Y-m-d H:M:S"?> to get current + datetime in your document. Added localization support for datetime PI + + + +Added level 6 to test for section depth in +section.level template so that +section.title.level6.properties will be used for sections +that are 6 deep or deeper. This should also cause a h6 to be +created in html output. + + + +Don't use SVG graphics if use.svg=0 + + + +Now uses number-and-title-template for sections + only if section.autolabel is not zero. + + + +Added missing 'english-language-name' attribute to +the l10n element, and the missing 'style' attribute to the +template element so the current gentext documents will +validate. + + + +Corrected several references to parameter + qanda.defaultlabel that were missing the "$". + + + +Now accepts admon.textlabel parameter to turn off + Note, Warning, etc. label. + + + +FeatReq #684561: support more XEP metadata + + + +Added hyphenation support. Added support for coref. +Added beginpage support. (does nothing; see TDG). + + + +Added support for +hyphenation-character, hyphenation-push-character-count, and +hyphenation-remain-character-count + + + +Added root.properties, +ebnf.assignment, +and ebnf.statement.terminator + + + +Support bgcolor PI in table cells; make sure +rowsep and colsep don't have any effect on the last row or +column + + + +Handle othercredit on titlepage a little +better + + + +Applied fix from Jeff Beal that fixed the bug +that put secondary page numbers on primary entries. Same +with tertiary page numbers on secondary entries. + + + +Added definition of missing variable +collection. + + + +Make footnote formatting 'normal' even when it +occurs in a context that has special formatting + + + +Added warning when glossary.collection is not +blank, but it cannot open the specified file. + + + +Pick up the frame attribute on table and +informaltable. + + + +indexdiv/title +in non-autogenerated indexes are +now picked up. + + + +Removed (unused) +component.title.properties + + + +Move IDs from +page-sequences down to titlepage blocks + + + +Use +proportional-column-width(1) on more tables. + +Use proportional-column-width() for +header/footer tables; suppress relative-align when when +using FOP + + + +Check for glossterm.auto.link when linking +firstterms; don't output gl. prefix on glossterm links + + + +Generate Part ToCs + + + +Support glossary, bibliography, +and index in component ToCs. + + + +Refactored chunking code so that +customization of chunk algorithm and chunk elements is more +practical + + + +Support textobject/phrase +on inlinemediaobject. + + + +Support 'start' PI on ordered lists + + + +Fixed test of $toc PI to turn on qandaset TOC. + + + +Added process.chunk.footnotes to sect2 through +5 to fix bug of missing footnotes when chunk level greater +than 1. + + + +Added +paramater toc.max.depth which controls maximal depth of ToC +as requested by PHP-DOC group. + + + +Exempted titleabbrev from preamble processing in +lists, and fixed variablelist preamble code to use the same +syntax as the other lists. + + + +Added support for elements between variablelist +and first varlistentry since DocBook 4.2 supports that now. + + + + + +Release 1.60.1 + +Lots of bug fixes. + +The format of the titlepage.templates.xml files and +the stylesheet that transforms them have been significantly changed. All of the +attributes used to control the templates are now namespace qualified. So what +used to be: +<t:titlepage element="article" wrapper="fo:block"> +is now: +<t:titlepage t:element="article" t:wrapper="fo:block"> +Attributes from other namespaces (including those that are unqualified) are +now copied directly through. In practice, this means that the names that used +to be fo: qualified: +<title named-template="component.title" + param:node="ancestor-or-self::article[1]" + fo:text-align="center" + fo:keep-with-next="always" + fo:font-size="&hsize5;" + fo:font-weight="bold" + fo:font-family="{$title.font.family}"/> +are now unqualified: +<title t:named-template="component.title" + param:node="ancestor-or-self::article[1]" + text-align="center" + keep-with-next="always" + font-size="&hsize5;" + font-weight="bold" + font-family="{$title.font.family}"/> +The t:titlepage and t:titlepage-content +elements both generate wrappers now. And unqualified attributes on those elements +are passed through. This means that you can now make the title font apply to +ane entire titlepage and make the entire recto +titlepage centered by specifying the font and alignment on the those elements: +<t:titlepage t:element="article" t:wrapper="fo:block" + font-family="{$title.font.family}"> + + <t:titlepage-content t:side="recto" + text-align="center"> + + + + + + + +Support use of titleabbrev in running +headers and footers. + + + +Added (experimental) xref.with.number.and.title +parameter to enable number/title cross references even when the +default would +be just the number. + + + +Generate part ToCs if they're requested. + + + +Use proportional-column-width() in header/footer tables. + + + +Handle alignment correctly when screenshot +wraps a graphic in a figure. + + + +Format chapter and appendix +cross references consistently. + + + +Attempt to support tables with multiple tgroups +in FO. + + + +Output fo:table-columns in +simplelist tables. + + + +Use titlepage.templates.xml for +indexdiv and glossdiv formatting. + + + +Improve support for new bibliography elements. + + + +Added +footnote.number.format, +table.footnote.number.format, +footnote.number.symbols, and +table.footnote.number.symbols for better control of +footnote markers. + + + +Added glossentry.show.acronyms. + + + +Suppress the draft-mode page masters when +draft-mode is no. + + + +Make blank pages verso not recto. D'Oh! + + + +Improved formatting of ulink footnotes. + + + +Fixed bugs in graphic width/height calculations. + + + +Added class attributes to inline elements. + + + +Don't add .html to the filenames identified +with the dbhtml PI. + + + +Don't force a ToC when sections contain refentrys. + + + +Make section title sizes a function of the +body.master.size. + + + + + +Release 1.59.2 + +The 1.59.2 fixes an FO bug in the page masters that causes FOP to fail. + + +Removed the region-name from the region-body of blank pages. There's +no reason to give the body of blank pages a unique name and doing so causes +a mismatch that FOP detects. + + + +Output IDs for the first paragraphs in listitems. + + + +Fixed some small bugs in the handling of page numbers in double-sided mode. + + + +Attempt to prevent duplicated IDs from being produced when +endterm on xref points +to something with nested structure. + + + +Fix aligment problems in equations. + + + +Output the type attribute on unordered lists (UL) in HTML only if +the css.decoration parameter is true. + + + +Calculate the font size in formal.title.properties so that it's 1.2 times +the base font size, not a fixed "12pt". + + + + + +Release 1.59.1 + +The 1.59.1 fixes a few bugs. + + +Added Bulgarian localization. + + + +Indexing improvements; localize book indexes to books but allow setindex +to index an entire set. + + + +The default value for rowsep and colsep is now "1" as per CALS. + + + +Added support for titleabbrev (use them for cross +references). + + + +Improvements to mediaobject for selecting print vs. online +images. + + + +Added seperate property sets for figures, +examples, equations, tabless, +and procedures. + + + +Make lineannotations italic. + + + +Support xrefstyle attribute. + + + +Make endterm on +xref higher priority than +xreflabel target. + + + +Glossary formatting improvements. + + + + + +Release 1.58.0 + +The 1.58.0 adds some initial support for extensions in xsltproc, adds +a few features, and fixes bugs. + + +This release contains the first attempt at extension support for xsltproc. +The only extension available to date is the one that adjusts table column widths. +Run extensions/xsltproc/python/xslt.py. + + + +Fixed bugs in calculation of adjusted column widths to correct for rounding +errors. + + + +Support nested refsection elements correctly. + + + +Reworked gentext.template to take context into consideration. +The name of elements in localization files is now an xpath-like context list, not +just a simple name. + + + +Made some improvements to bibliography formatting. + + + +Improved graphical formatting of admonitions. + + + +Added support for entrytbl. + + + +Support spanning index terms. + + + +Support bibliosource. + + + + + +Release 1.57.0 + + +The 1.57.0 release wasn't documented here. Oops. + + + + + +Release 1.56.0 + +The 1.56.0 release fixes bugs. + + +Reworked chunking. This will break all existing customizations +layers that change the chunking algorithm. If you're customizing chunking, +look at the new content parameter that's passed to +process-chunk-element and friends. + + + +Support continued and inherited numeration in orderedlist +formatting for FOs. + + + +Added Thai localization. + + + +Tweaked stylesheet documentation stylesheets to link to TDG and +the parameter references. + + + +Allow title on tables of contents ("Table of Contents") to be optional. +Added new keyword to generate.toc. +Support tables of contents on sections. + + + +Made separate parameters for table borders and table cell borders: +table.frame.border.color, +table.frame.border.style, +table.frame.border.thickness, +table.cell.border.color, +table.cell.border.style, and +table.cell.border.thickness. + + + +Suppress formatting of endofrange indexterms. +This is only half-right. They should generate a range, but I haven't figured out how +to do that yet. + + + +Support revdescription. (Bug #582192) + + + +Added default.float.class and fixed figure +floats. (Bug #497603) + + + +Fixed formatting of sbr in FOs. + + + +Added context to the missing template error message. + + + +Process arg correctly in a group. +(Bug #605150) + + + +Removed 'keep-with-next' from formal.title.properties +attribute set now that the stylesheets support the option of putting +such titles below the object. Now the $placement value determines if +'keep-with-next' or 'keep-with-previous' is used in the title block. + + + +Wrap url() around external-destinations when appropriate. + + + +Fixed typo in compact list spacing. (Bug #615464) + + + +Removed spurious hash in anchor name. (Bug #617717) + + + +Address is now displayed verbatim on title pages. (Bug #618600) + + + +The bridgehead.in.toc parameter is now properly +supported. + + + +Improved effectiveness of HTML cleanup by increasing the number +of places where it is used. Improve use of HTML cleanup in XHTML stylesheets. + + + +Support table of contents for appendix in +article. (Bug #596599) + + + +Don't duplicate footnotes in bibliographys and +glossarys. (Bug #583282) + + + +Added default.image.width. (Bug #516859) + + + +Totally reworked funcsynopsis code; it now +supports a 'tabular' presentation style for 'wide' prototypes; see +funcsynopsis.tabular.threshold. (HTML only +right now, I think, FO support, uh, real soon now.) + + + +Reworked support for difference marking; toned down the colors a bit +and added a system.head.content template so that the diff CSS +wasn't overriding user.head.content. (Bug #610660) + + + +Added call to the *.head.content elements when writing +out long description chunks. + + + +Make sure legalnotice link is correct even when +chunking to a different base.dir. + + + +Use CSS to set viewport characteristics if +css.decoration is non-zero, use div instead of p for making +graphic a block element; make figure titles the +default alt +text for images in a figure. + + +Added space-after to list.block.spacing. + + + +Reworked section.level template to give correct answer +instead of being off by one. + + + +When processing tables, use the tabstyle +attribute as the division class. + + + +Fixed bug in html2xhtml.xsl that was causing the +XHTML chunker to output HTML instead of XHTML. + + + + + + Older releases + To view the release notes for older releases, see http://cvs.sourceforge.net/viewcvs.py/docbook/xsl/RELEASE-NOTES.xml. Be + aware that there were no release notes for releases prior to the + 1.50.0 release. + + + About dot-zero releases + DocBook Project “dot zero†releases should be + considered experimental and are always + followed by stable “dot one plus†releases, usually within + two or three weeks. Please help to ensure the stability of + “dot one plus†releases by carefully testing each + “dot zero†release and reporting back about any + problems you find. + It is not recommended that you use a “dot zero†+ release in a production system. Instead, you should wait for + the “dot one†or greater versions. + + diff --git a/docbook-xsl-1.76.1/TODO b/docbook-xsl-1.76.1/TODO new file mode 100644 index 0000000..1f421cd --- /dev/null +++ b/docbook-xsl-1.76.1/TODO @@ -0,0 +1,23 @@ +The "to do" list for the DocBook Project XSL stylesheets is +maintained at Sourceforge. To view a list of all open feature +requests for the stylesheets: + + http://docbook.sf.net/tracker/xsl/requests + +To submit a feature request against the stylesheets: + + http://docbook.sf.net/tracker/submit/request + +To do a full-text search of all DocBook Project issues: + + http://docbook.sf.net/tracker/search + +Discussion about the DocBook Project XSL stylesheets takes place +on the docbook-apps mailing list: + + http://wiki.docbook.org/topic/DocBookAppsMailingList + +Real-time discussion takes place on IRC: + + http://wiki.docbook.org/topic/DocBookIrcChannel + irc://irc.freenode.net/docbook diff --git a/docbook-xsl-1.76.1/VERSION b/docbook-xsl-1.76.1/VERSION new file mode 100644 index 0000000..a073fbf --- /dev/null +++ b/docbook-xsl-1.76.1/VERSION @@ -0,0 +1,115 @@ + + + + + + + + + +docbook-xsl +1.76.0 +8900 +$Revision: 8933 $ +$URL: https://docbook.svn.sourceforge.net/svnroot/docbook/trunk/xsl/VERSION $ + + + + + DocBook + XSL Stylesheets + + + 1.76.1 + + + + + + + +* Minor bugfixes + + + + + http://sourceforge.net/projects/docbook/ + http://prdownloads.sourceforge.net/docbook/{DISTRONAME-VERSION}.tar.gz?download + http://prdownloads.sourceforge.net/docbook/{DISTRONAME-VERSION}.zip?download + http://prdownloads.sourceforge.net/docbook/{DISTRONAME-VERSION}.bz2?download + http://sourceforge.net/project/shownotes.php?release_id={SFRELID} + http://docbook.svn.sourceforge.net/viewvc/docbook/ + http://lists.oasis-open.org/archives/docbook-apps/ + This is a release with bugfixes and some enhancements. + + + + + + + + + + + + + + + + + + + + + + + You must specify the sf-relid as a parameter. + + + + + + + + + + + + + + + + + + : + + + + + + + + + : + + + + + + + + + : + + + + + diff --git a/docbook-xsl-1.76.1/catalog.xml b/docbook-xsl-1.76.1/catalog.xml new file mode 100644 index 0000000..f058646 --- /dev/null +++ b/docbook-xsl-1.76.1/catalog.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/docbook-xsl-1.76.1/common/af.xml b/docbook-xsl-1.76.1/common/af.xml new file mode 100644 index 0000000..535b612 --- /dev/null +++ b/docbook-xsl-1.76.1/common/af.xml @@ -0,0 +1,1229 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Symbols +A +a +À +à +à +á + +â +à +ã +Ä +ä +Ã… +Ã¥ +Ä€ +Ä +Ä‚ +ă +Ä„ +Ä… +Ç +ÇŽ +Çž +ÇŸ +Ç  +Ç¡ +Ǻ +Ç» +È€ +È +È‚ +ȃ +Ȧ +ȧ +Ḁ +Ḡ+ẚ +Ạ +ạ +Ả +ả +Ấ +ấ +Ầ +ầ +Ẩ +ẩ +Ẫ +ẫ +Ậ +ậ +Ắ +ắ +Ằ +ằ +Ẳ +ẳ +Ẵ +ẵ +Ặ +ặ +B +b +Æ€ +Æ +É“ +Æ‚ +ƃ +Ḃ +ḃ +Ḅ +ḅ +Ḇ +ḇ +C +c +Ç +ç +Ć +ć +Ĉ +ĉ +ÄŠ +Ä‹ +ÄŒ +Ä +Ƈ +ƈ +É• +Ḉ +ḉ +D +d +ÄŽ +Ä +Ä +Ä‘ +ÆŠ +É— +Æ‹ +ÆŒ +Ç… +Dz +È¡ +É– +Ḋ +ḋ +Ḍ +Ḡ+Ḏ +Ḡ+Ḡ+ḑ +Ḓ +ḓ +E +e +È +è +É +é +Ê +ê +Ë +ë +Ä’ +Ä“ +Ä” +Ä• +Ä– +Ä— +Ę +Ä™ +Äš +Ä› +È„ +È… +Ȇ +ȇ +Ȩ +È© +Ḕ +ḕ +Ḗ +ḗ +Ḙ +ḙ +Ḛ +ḛ +Ḝ +Ḡ+Ẹ +ẹ +Ẻ +ẻ +Ẽ +ẽ +Ế +ế +Ề +á» +Ể +ể +Ễ +á»… +Ệ +ệ +F +f +Æ‘ +Æ’ +Ḟ +ḟ +G +g +Äœ +Ä +Äž +ÄŸ +Ä  +Ä¡ +Ä¢ +Ä£ +Æ“ +É  +Ǥ +Ç¥ +Ǧ +ǧ +Ç´ +ǵ +Ḡ +ḡ +H +h +Ĥ +Ä¥ +Ħ +ħ +Èž +ÈŸ +ɦ +Ḣ +ḣ +Ḥ +ḥ +Ḧ +ḧ +Ḩ +ḩ +Ḫ +ḫ +ẖ +I +i +ÃŒ +ì +à +í +ÃŽ +î +à +ï +Ĩ +Ä© +Ī +Ä« +Ĭ +Ä­ +Ä® +į +Ä° +Æ— +ɨ +Ç +Ç +Ȉ +ȉ +ÈŠ +È‹ +Ḭ +ḭ +Ḯ +ḯ +Ỉ +ỉ +Ị +ị +J +j +Ä´ +ĵ +Ç° +Ê +K +k +Ķ +Ä· +Ƙ +Æ™ +Ǩ +Ç© +Ḱ +ḱ +Ḳ +ḳ +Ḵ +ḵ +L +l +Ĺ +ĺ +Ä» +ļ +Ľ +ľ +Ä¿ +Å€ +Å +Å‚ +Æš +Lj +È´ +É« +ɬ +É­ +Ḷ +ḷ +Ḹ +ḹ +Ḻ +ḻ +Ḽ +ḽ +M +m +ɱ +Ḿ +ḿ +á¹€ +á¹ +Ṃ +ṃ +N +n +Ñ +ñ +Ń +Å„ +Å… +ņ +Ň +ň +Æ +ɲ +Æž +È  +Ç‹ +Ǹ +ǹ +ȵ +ɳ +Ṅ +á¹… +Ṇ +ṇ +Ṉ +ṉ +Ṋ +ṋ +O +o +Ã’ +ò +Ó +ó +Ô +ô +Õ +õ +Ö +ö +Ø +ø +ÅŒ +Å +ÅŽ +Å +Å +Å‘ +ÆŸ +Æ  +Æ¡ +Ç‘ +Ç’ +Ǫ +Ç« +Ǭ +Ç­ +Ǿ +Ç¿ +ÈŒ +È +ÈŽ +È +Ȫ +È« +Ȭ +È­ +È® +ȯ +È° +ȱ +Ṍ +á¹ +Ṏ +á¹ +á¹ +ṑ +á¹’ +ṓ +Ọ +á» +Ỏ +á» +á» +ố +á»’ +ồ +á»” +ổ +á»– +á»— +Ộ +á»™ +Ớ +á»› +Ờ +á» +Ở +ở +á»  +ỡ +Ợ +ợ +P +p +Ƥ +Æ¥ +á¹” +ṕ +á¹– +á¹— +Q +q +Ê  +R +r +Å” +Å• +Å– +Å— +Ř +Å™ +È +È‘ +È’ +È“ +ɼ +ɽ +ɾ +Ṙ +á¹™ +Ṛ +á¹› +Ṝ +á¹ +Ṟ +ṟ +S +s +Åš +Å› +Åœ +Å +Åž +ÅŸ +Å  +Å¡ +Ș +È™ +Ê‚ +á¹  +ṡ +á¹¢ +á¹£ +Ṥ +á¹¥ +Ṧ +ṧ +Ṩ +ṩ +T +t +Å¢ +Å£ +Ť +Å¥ +Ŧ +ŧ +Æ« +Ƭ +Æ­ +Æ® +ʈ +Èš +È› +ȶ +Ṫ +ṫ +Ṭ +á¹­ +á¹® +ṯ +á¹° +á¹± +ẗ +U +u +Ù +ù +Ú +ú +Û +û +Ãœ +ü +Ũ +Å© +Ū +Å« +Ŭ +Å­ +Å® +ů +Å° +ű +Ų +ų +Ư +Æ° +Ç“ +Ç” +Ç• +Ç– +Ç— +ǘ +Ç™ +Çš +Ç› +Çœ +È” +È• +È– +È— +á¹² +á¹³ +á¹´ +á¹µ +Ṷ +á¹· +Ṹ +á¹¹ +Ṻ +á¹» +Ụ +ụ +Ủ +ủ +Ứ +ứ +Ừ +ừ +Ử +á»­ +á»® +ữ +á»° +á»± +V +v +Ʋ +Ê‹ +á¹¼ +á¹½ +á¹¾ +ṿ +W +w +Å´ +ŵ +Ẁ +Ạ+Ẃ +ẃ +Ẅ +ẅ +Ẇ +ẇ +Ẉ +ẉ +ẘ +X +x +Ẋ +ẋ +Ẍ +Ạ+Y +y +à +ý +ÿ +Ÿ +Ŷ +Å· +Ƴ +Æ´ +Ȳ +ȳ +Ẏ +Ạ+ẙ +Ỳ +ỳ +á»´ +ỵ +Ỷ +á»· +Ỹ +ỹ +Z +z +Ź +ź +Å» +ż +Ž +ž +Ƶ +ƶ +Ȥ +È¥ +Ê +Ê‘ +Ạ+ẑ +Ẓ +ẓ +Ẕ +ẕ + + diff --git a/docbook-xsl-1.76.1/common/am.xml b/docbook-xsl-1.76.1/common/am.xml new file mode 100644 index 0000000..ddb5035 --- /dev/null +++ b/docbook-xsl-1.76.1/common/am.xml @@ -0,0 +1,1229 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +áˆáˆáŠ­á‰¶á‰½ +A +a +À +à +à +á + +â +à +ã +Ä +ä +Ã… +Ã¥ +Ä€ +Ä +Ä‚ +ă +Ä„ +Ä… +Ç +ÇŽ +Çž +ÇŸ +Ç  +Ç¡ +Ǻ +Ç» +È€ +È +È‚ +ȃ +Ȧ +ȧ +Ḁ +Ḡ+ẚ +Ạ +ạ +Ả +ả +Ấ +ấ +Ầ +ầ +Ẩ +ẩ +Ẫ +ẫ +Ậ +ậ +Ắ +ắ +Ằ +ằ +Ẳ +ẳ +Ẵ +ẵ +Ặ +ặ +B +b +Æ€ +Æ +É“ +Æ‚ +ƃ +Ḃ +ḃ +Ḅ +ḅ +Ḇ +ḇ +C +c +Ç +ç +Ć +ć +Ĉ +ĉ +ÄŠ +Ä‹ +ÄŒ +Ä +Ƈ +ƈ +É• +Ḉ +ḉ +D +d +ÄŽ +Ä +Ä +Ä‘ +ÆŠ +É— +Æ‹ +ÆŒ +Ç… +Dz +È¡ +É– +Ḋ +ḋ +Ḍ +Ḡ+Ḏ +Ḡ+Ḡ+ḑ +Ḓ +ḓ +E +e +È +è +É +é +Ê +ê +Ë +ë +Ä’ +Ä“ +Ä” +Ä• +Ä– +Ä— +Ę +Ä™ +Äš +Ä› +È„ +È… +Ȇ +ȇ +Ȩ +È© +Ḕ +ḕ +Ḗ +ḗ +Ḙ +ḙ +Ḛ +ḛ +Ḝ +Ḡ+Ẹ +ẹ +Ẻ +ẻ +Ẽ +ẽ +Ế +ế +Ề +á» +Ể +ể +Ễ +á»… +Ệ +ệ +F +f +Æ‘ +Æ’ +Ḟ +ḟ +G +g +Äœ +Ä +Äž +ÄŸ +Ä  +Ä¡ +Ä¢ +Ä£ +Æ“ +É  +Ǥ +Ç¥ +Ǧ +ǧ +Ç´ +ǵ +Ḡ +ḡ +H +h +Ĥ +Ä¥ +Ħ +ħ +Èž +ÈŸ +ɦ +Ḣ +ḣ +Ḥ +ḥ +Ḧ +ḧ +Ḩ +ḩ +Ḫ +ḫ +ẖ +I +i +ÃŒ +ì +à +í +ÃŽ +î +à +ï +Ĩ +Ä© +Ī +Ä« +Ĭ +Ä­ +Ä® +į +Ä° +Æ— +ɨ +Ç +Ç +Ȉ +ȉ +ÈŠ +È‹ +Ḭ +ḭ +Ḯ +ḯ +Ỉ +ỉ +Ị +ị +J +j +Ä´ +ĵ +Ç° +Ê +K +k +Ķ +Ä· +Ƙ +Æ™ +Ǩ +Ç© +Ḱ +ḱ +Ḳ +ḳ +Ḵ +ḵ +L +l +Ĺ +ĺ +Ä» +ļ +Ľ +ľ +Ä¿ +Å€ +Å +Å‚ +Æš +Lj +È´ +É« +ɬ +É­ +Ḷ +ḷ +Ḹ +ḹ +Ḻ +ḻ +Ḽ +ḽ +M +m +ɱ +Ḿ +ḿ +á¹€ +á¹ +Ṃ +ṃ +N +n +Ñ +ñ +Ń +Å„ +Å… +ņ +Ň +ň +Æ +ɲ +Æž +È  +Ç‹ +Ǹ +ǹ +ȵ +ɳ +Ṅ +á¹… +Ṇ +ṇ +Ṉ +ṉ +Ṋ +ṋ +O +o +Ã’ +ò +Ó +ó +Ô +ô +Õ +õ +Ö +ö +Ø +ø +ÅŒ +Å +ÅŽ +Å +Å +Å‘ +ÆŸ +Æ  +Æ¡ +Ç‘ +Ç’ +Ǫ +Ç« +Ǭ +Ç­ +Ǿ +Ç¿ +ÈŒ +È +ÈŽ +È +Ȫ +È« +Ȭ +È­ +È® +ȯ +È° +ȱ +Ṍ +á¹ +Ṏ +á¹ +á¹ +ṑ +á¹’ +ṓ +Ọ +á» +Ỏ +á» +á» +ố +á»’ +ồ +á»” +ổ +á»– +á»— +Ộ +á»™ +Ớ +á»› +Ờ +á» +Ở +ở +á»  +ỡ +Ợ +ợ +P +p +Ƥ +Æ¥ +á¹” +ṕ +á¹– +á¹— +Q +q +Ê  +R +r +Å” +Å• +Å– +Å— +Ř +Å™ +È +È‘ +È’ +È“ +ɼ +ɽ +ɾ +Ṙ +á¹™ +Ṛ +á¹› +Ṝ +á¹ +Ṟ +ṟ +S +s +Åš +Å› +Åœ +Å +Åž +ÅŸ +Å  +Å¡ +Ș +È™ +Ê‚ +á¹  +ṡ +á¹¢ +á¹£ +Ṥ +á¹¥ +Ṧ +ṧ +Ṩ +ṩ +T +t +Å¢ +Å£ +Ť +Å¥ +Ŧ +ŧ +Æ« +Ƭ +Æ­ +Æ® +ʈ +Èš +È› +ȶ +Ṫ +ṫ +Ṭ +á¹­ +á¹® +ṯ +á¹° +á¹± +ẗ +U +u +Ù +ù +Ú +ú +Û +û +Ãœ +ü +Ũ +Å© +Ū +Å« +Ŭ +Å­ +Å® +ů +Å° +ű +Ų +ų +Ư +Æ° +Ç“ +Ç” +Ç• +Ç– +Ç— +ǘ +Ç™ +Çš +Ç› +Çœ +È” +È• +È– +È— +á¹² +á¹³ +á¹´ +á¹µ +Ṷ +á¹· +Ṹ +á¹¹ +Ṻ +á¹» +Ụ +ụ +Ủ +ủ +Ứ +ứ +Ừ +ừ +Ử +á»­ +á»® +ữ +á»° +á»± +V +v +Ʋ +Ê‹ +á¹¼ +á¹½ +á¹¾ +ṿ +W +w +Å´ +ŵ +Ẁ +Ạ+Ẃ +ẃ +Ẅ +ẅ +Ẇ +ẇ +Ẉ +ẉ +ẘ +X +x +Ẋ +ẋ +Ẍ +Ạ+Y +y +à +ý +ÿ +Ÿ +Ŷ +Å· +Ƴ +Æ´ +Ȳ +ȳ +Ẏ +Ạ+ẙ +Ỳ +ỳ +á»´ +ỵ +Ỷ +á»· +Ỹ +ỹ +Z +z +Ź +ź +Å» +ż +Ž +ž +Ƶ +ƶ +Ȥ +È¥ +Ê +Ê‘ +Ạ+ẑ +Ẓ +ẓ +Ẕ +ẕ + + diff --git a/docbook-xsl-1.76.1/common/ar.xml b/docbook-xsl-1.76.1/common/ar.xml new file mode 100644 index 0000000..ac55456 --- /dev/null +++ b/docbook-xsl-1.76.1/common/ar.xml @@ -0,0 +1,1229 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Symbols +A +a +À +à +à +á + +â +à +ã +Ä +ä +Ã… +Ã¥ +Ä€ +Ä +Ä‚ +ă +Ä„ +Ä… +Ç +ÇŽ +Çž +ÇŸ +Ç  +Ç¡ +Ǻ +Ç» +È€ +È +È‚ +ȃ +Ȧ +ȧ +Ḁ +Ḡ+ẚ +Ạ +ạ +Ả +ả +Ấ +ấ +Ầ +ầ +Ẩ +ẩ +Ẫ +ẫ +Ậ +ậ +Ắ +ắ +Ằ +ằ +Ẳ +ẳ +Ẵ +ẵ +Ặ +ặ +B +b +Æ€ +Æ +É“ +Æ‚ +ƃ +Ḃ +ḃ +Ḅ +ḅ +Ḇ +ḇ +C +c +Ç +ç +Ć +ć +Ĉ +ĉ +ÄŠ +Ä‹ +ÄŒ +Ä +Ƈ +ƈ +É• +Ḉ +ḉ +D +d +ÄŽ +Ä +Ä +Ä‘ +ÆŠ +É— +Æ‹ +ÆŒ +Ç… +Dz +È¡ +É– +Ḋ +ḋ +Ḍ +Ḡ+Ḏ +Ḡ+Ḡ+ḑ +Ḓ +ḓ +E +e +È +è +É +é +Ê +ê +Ë +ë +Ä’ +Ä“ +Ä” +Ä• +Ä– +Ä— +Ę +Ä™ +Äš +Ä› +È„ +È… +Ȇ +ȇ +Ȩ +È© +Ḕ +ḕ +Ḗ +ḗ +Ḙ +ḙ +Ḛ +ḛ +Ḝ +Ḡ+Ẹ +ẹ +Ẻ +ẻ +Ẽ +ẽ +Ế +ế +Ề +á» +Ể +ể +Ễ +á»… +Ệ +ệ +F +f +Æ‘ +Æ’ +Ḟ +ḟ +G +g +Äœ +Ä +Äž +ÄŸ +Ä  +Ä¡ +Ä¢ +Ä£ +Æ“ +É  +Ǥ +Ç¥ +Ǧ +ǧ +Ç´ +ǵ +Ḡ +ḡ +H +h +Ĥ +Ä¥ +Ħ +ħ +Èž +ÈŸ +ɦ +Ḣ +ḣ +Ḥ +ḥ +Ḧ +ḧ +Ḩ +ḩ +Ḫ +ḫ +ẖ +I +i +ÃŒ +ì +à +í +ÃŽ +î +à +ï +Ĩ +Ä© +Ī +Ä« +Ĭ +Ä­ +Ä® +į +Ä° +Æ— +ɨ +Ç +Ç +Ȉ +ȉ +ÈŠ +È‹ +Ḭ +ḭ +Ḯ +ḯ +Ỉ +ỉ +Ị +ị +J +j +Ä´ +ĵ +Ç° +Ê +K +k +Ķ +Ä· +Ƙ +Æ™ +Ǩ +Ç© +Ḱ +ḱ +Ḳ +ḳ +Ḵ +ḵ +L +l +Ĺ +ĺ +Ä» +ļ +Ľ +ľ +Ä¿ +Å€ +Å +Å‚ +Æš +Lj +È´ +É« +ɬ +É­ +Ḷ +ḷ +Ḹ +ḹ +Ḻ +ḻ +Ḽ +ḽ +M +m +ɱ +Ḿ +ḿ +á¹€ +á¹ +Ṃ +ṃ +N +n +Ñ +ñ +Ń +Å„ +Å… +ņ +Ň +ň +Æ +ɲ +Æž +È  +Ç‹ +Ǹ +ǹ +ȵ +ɳ +Ṅ +á¹… +Ṇ +ṇ +Ṉ +ṉ +Ṋ +ṋ +O +o +Ã’ +ò +Ó +ó +Ô +ô +Õ +õ +Ö +ö +Ø +ø +ÅŒ +Å +ÅŽ +Å +Å +Å‘ +ÆŸ +Æ  +Æ¡ +Ç‘ +Ç’ +Ǫ +Ç« +Ǭ +Ç­ +Ǿ +Ç¿ +ÈŒ +È +ÈŽ +È +Ȫ +È« +Ȭ +È­ +È® +ȯ +È° +ȱ +Ṍ +á¹ +Ṏ +á¹ +á¹ +ṑ +á¹’ +ṓ +Ọ +á» +Ỏ +á» +á» +ố +á»’ +ồ +á»” +ổ +á»– +á»— +Ộ +á»™ +Ớ +á»› +Ờ +á» +Ở +ở +á»  +ỡ +Ợ +ợ +P +p +Ƥ +Æ¥ +á¹” +ṕ +á¹– +á¹— +Q +q +Ê  +R +r +Å” +Å• +Å– +Å— +Ř +Å™ +È +È‘ +È’ +È“ +ɼ +ɽ +ɾ +Ṙ +á¹™ +Ṛ +á¹› +Ṝ +á¹ +Ṟ +ṟ +S +s +Åš +Å› +Åœ +Å +Åž +ÅŸ +Å  +Å¡ +Ș +È™ +Ê‚ +á¹  +ṡ +á¹¢ +á¹£ +Ṥ +á¹¥ +Ṧ +ṧ +Ṩ +ṩ +T +t +Å¢ +Å£ +Ť +Å¥ +Ŧ +ŧ +Æ« +Ƭ +Æ­ +Æ® +ʈ +Èš +È› +ȶ +Ṫ +ṫ +Ṭ +á¹­ +á¹® +ṯ +á¹° +á¹± +ẗ +U +u +Ù +ù +Ú +ú +Û +û +Ãœ +ü +Ũ +Å© +Ū +Å« +Ŭ +Å­ +Å® +ů +Å° +ű +Ų +ų +Ư +Æ° +Ç“ +Ç” +Ç• +Ç– +Ç— +ǘ +Ç™ +Çš +Ç› +Çœ +È” +È• +È– +È— +á¹² +á¹³ +á¹´ +á¹µ +Ṷ +á¹· +Ṹ +á¹¹ +Ṻ +á¹» +Ụ +ụ +Ủ +ủ +Ứ +ứ +Ừ +ừ +Ử +á»­ +á»® +ữ +á»° +á»± +V +v +Ʋ +Ê‹ +á¹¼ +á¹½ +á¹¾ +ṿ +W +w +Å´ +ŵ +Ẁ +Ạ+Ẃ +ẃ +Ẅ +ẅ +Ẇ +ẇ +Ẉ +ẉ +ẘ +X +x +Ẋ +ẋ +Ẍ +Ạ+Y +y +à +ý +ÿ +Ÿ +Ŷ +Å· +Ƴ +Æ´ +Ȳ +ȳ +Ẏ +Ạ+ẙ +Ỳ +ỳ +á»´ +ỵ +Ỷ +á»· +Ỹ +ỹ +Z +z +Ź +ź +Å» +ż +Ž +ž +Ƶ +ƶ +Ȥ +È¥ +Ê +Ê‘ +Ạ+ẑ +Ẓ +ẓ +Ẕ +ẕ + + diff --git a/docbook-xsl-1.76.1/common/as.xml b/docbook-xsl-1.76.1/common/as.xml new file mode 100644 index 0000000..28d0b10 --- /dev/null +++ b/docbook-xsl-1.76.1/common/as.xml @@ -0,0 +1,660 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +চিহà§à¦¨ +A +a +B +b +C +c +D +d +E +e +F +f +G +g +H +h +I +i +J +j +K +k +L +l +M +m +N +n +O +o +P +p +Q +q +R +r +S +s +T +t +U +u +V +v +W +w +X +x +Y +y +Z +z + + diff --git a/docbook-xsl-1.76.1/common/ast.xml b/docbook-xsl-1.76.1/common/ast.xml new file mode 100644 index 0000000..26a8e18 --- /dev/null +++ b/docbook-xsl-1.76.1/common/ast.xml @@ -0,0 +1,660 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Símbolos +A +a +B +b +C +c +D +d +E +e +F +f +G +g +H +h +I +i +J +j +K +k +L +l +M +m +N +n +O +o +P +p +Q +q +R +r +S +s +T +t +U +u +V +v +W +w +X +x +Y +y +Z +z + + diff --git a/docbook-xsl-1.76.1/common/autoidx-kimber.xsl b/docbook-xsl-1.76.1/common/autoidx-kimber.xsl new file mode 100644 index 0000000..45c785d --- /dev/null +++ b/docbook-xsl-1.76.1/common/autoidx-kimber.xsl @@ -0,0 +1,44 @@ + + +%common.entities; + + + + +]> + + + + + + + + + + ERROR: the 'kimber' index method requires the + Saxon version 6 or 8 XSLT processor. + + + 1 + + + + + + + + diff --git a/docbook-xsl-1.76.1/common/autoidx-kosek.xsl b/docbook-xsl-1.76.1/common/autoidx-kosek.xsl new file mode 100644 index 0000000..3d755c4 --- /dev/null +++ b/docbook-xsl-1.76.1/common/autoidx-kosek.xsl @@ -0,0 +1,154 @@ + + +%common.entities; +]> + + + + + + + + + + ERROR: the 'kosek' index method does not + work with the xsltproc XSLT processor. + + + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + No " + + " localization of index grouping letters exists + + + . + + + ; using "en". + + + + + + + + + + + + + + + + + + + + + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No " + + " localization of index grouping letters exists + + + . + + + ; using "en". + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/common/az.xml b/docbook-xsl-1.76.1/common/az.xml new file mode 100644 index 0000000..c22ec7b --- /dev/null +++ b/docbook-xsl-1.76.1/common/az.xml @@ -0,0 +1,672 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Ä°ÅŸarÉ™lÉ™r +A +a +B +b +C +c +Ç +ç +D +d +E +e +e +e +Æ +É™ +G +g +Äž +ÄŸ +H +h +X +x +I +ı +Ä° +i +J +j +K +k +Q +q +L +l +M +m +N +n +O +o +Ö +ö +P +p +R +r +S +s +Åž +ÅŸ +T +t +U +u +Ãœ +ü +V +v +Y +y +Z +z + + diff --git a/docbook-xsl-1.76.1/common/bg.xml b/docbook-xsl-1.76.1/common/bg.xml new file mode 100644 index 0000000..10e379f --- /dev/null +++ b/docbook-xsl-1.76.1/common/bg.xml @@ -0,0 +1,724 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Цифри и знаци +Ð +а +Б +б +Ð’ +в +Г +г +Д +д +Е +е +Ж +ж +З +з +И +и +Й +й +К +к +Л +л +Ðœ +м +Ð +н +О +о +П +п +Р +Ñ€ +С +Ñ +Т +Ñ‚ +У +у +Ф +Ñ„ +Ð¥ +Ñ… +Ц +ц +Ч +ч +Ш +ш +Щ +щ +Ъ +ÑŠ +Ь +ÑŒ +Ю +ÑŽ +Я +Ñ +Э +Ñ +Ы +Ñ‹ +A +a +B +b +C +c +D +d +E +e +F +f +G +g +H +h +I +i +J +j +K +k +L +l +M +m +N +n +O +o +P +p +Q +q +R +r +S +s +T +t +U +u +V +v +W +w +X +x +Y +y +Z +z + + diff --git a/docbook-xsl-1.76.1/common/bn.xml b/docbook-xsl-1.76.1/common/bn.xml new file mode 100644 index 0000000..8ca9503 --- /dev/null +++ b/docbook-xsl-1.76.1/common/bn.xml @@ -0,0 +1,1229 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Symbols +A +a +À +à +à +á + +â +à +ã +Ä +ä +Ã… +Ã¥ +Ä€ +Ä +Ä‚ +ă +Ä„ +Ä… +Ç +ÇŽ +Çž +ÇŸ +Ç  +Ç¡ +Ǻ +Ç» +È€ +È +È‚ +ȃ +Ȧ +ȧ +Ḁ +Ḡ+ẚ +Ạ +ạ +Ả +ả +Ấ +ấ +Ầ +ầ +Ẩ +ẩ +Ẫ +ẫ +Ậ +ậ +Ắ +ắ +Ằ +ằ +Ẳ +ẳ +Ẵ +ẵ +Ặ +ặ +B +b +Æ€ +Æ +É“ +Æ‚ +ƃ +Ḃ +ḃ +Ḅ +ḅ +Ḇ +ḇ +C +c +Ç +ç +Ć +ć +Ĉ +ĉ +ÄŠ +Ä‹ +ÄŒ +Ä +Ƈ +ƈ +É• +Ḉ +ḉ +D +d +ÄŽ +Ä +Ä +Ä‘ +ÆŠ +É— +Æ‹ +ÆŒ +Ç… +Dz +È¡ +É– +Ḋ +ḋ +Ḍ +Ḡ+Ḏ +Ḡ+Ḡ+ḑ +Ḓ +ḓ +E +e +È +è +É +é +Ê +ê +Ë +ë +Ä’ +Ä“ +Ä” +Ä• +Ä– +Ä— +Ę +Ä™ +Äš +Ä› +È„ +È… +Ȇ +ȇ +Ȩ +È© +Ḕ +ḕ +Ḗ +ḗ +Ḙ +ḙ +Ḛ +ḛ +Ḝ +Ḡ+Ẹ +ẹ +Ẻ +ẻ +Ẽ +ẽ +Ế +ế +Ề +á» +Ể +ể +Ễ +á»… +Ệ +ệ +F +f +Æ‘ +Æ’ +Ḟ +ḟ +G +g +Äœ +Ä +Äž +ÄŸ +Ä  +Ä¡ +Ä¢ +Ä£ +Æ“ +É  +Ǥ +Ç¥ +Ǧ +ǧ +Ç´ +ǵ +Ḡ +ḡ +H +h +Ĥ +Ä¥ +Ħ +ħ +Èž +ÈŸ +ɦ +Ḣ +ḣ +Ḥ +ḥ +Ḧ +ḧ +Ḩ +ḩ +Ḫ +ḫ +ẖ +I +i +ÃŒ +ì +à +í +ÃŽ +î +à +ï +Ĩ +Ä© +Ī +Ä« +Ĭ +Ä­ +Ä® +į +Ä° +Æ— +ɨ +Ç +Ç +Ȉ +ȉ +ÈŠ +È‹ +Ḭ +ḭ +Ḯ +ḯ +Ỉ +ỉ +Ị +ị +J +j +Ä´ +ĵ +Ç° +Ê +K +k +Ķ +Ä· +Ƙ +Æ™ +Ǩ +Ç© +Ḱ +ḱ +Ḳ +ḳ +Ḵ +ḵ +L +l +Ĺ +ĺ +Ä» +ļ +Ľ +ľ +Ä¿ +Å€ +Å +Å‚ +Æš +Lj +È´ +É« +ɬ +É­ +Ḷ +ḷ +Ḹ +ḹ +Ḻ +ḻ +Ḽ +ḽ +M +m +ɱ +Ḿ +ḿ +á¹€ +á¹ +Ṃ +ṃ +N +n +Ñ +ñ +Ń +Å„ +Å… +ņ +Ň +ň +Æ +ɲ +Æž +È  +Ç‹ +Ǹ +ǹ +ȵ +ɳ +Ṅ +á¹… +Ṇ +ṇ +Ṉ +ṉ +Ṋ +ṋ +O +o +Ã’ +ò +Ó +ó +Ô +ô +Õ +õ +Ö +ö +Ø +ø +ÅŒ +Å +ÅŽ +Å +Å +Å‘ +ÆŸ +Æ  +Æ¡ +Ç‘ +Ç’ +Ǫ +Ç« +Ǭ +Ç­ +Ǿ +Ç¿ +ÈŒ +È +ÈŽ +È +Ȫ +È« +Ȭ +È­ +È® +ȯ +È° +ȱ +Ṍ +á¹ +Ṏ +á¹ +á¹ +ṑ +á¹’ +ṓ +Ọ +á» +Ỏ +á» +á» +ố +á»’ +ồ +á»” +ổ +á»– +á»— +Ộ +á»™ +Ớ +á»› +Ờ +á» +Ở +ở +á»  +ỡ +Ợ +ợ +P +p +Ƥ +Æ¥ +á¹” +ṕ +á¹– +á¹— +Q +q +Ê  +R +r +Å” +Å• +Å– +Å— +Ř +Å™ +È +È‘ +È’ +È“ +ɼ +ɽ +ɾ +Ṙ +á¹™ +Ṛ +á¹› +Ṝ +á¹ +Ṟ +ṟ +S +s +Åš +Å› +Åœ +Å +Åž +ÅŸ +Å  +Å¡ +Ș +È™ +Ê‚ +á¹  +ṡ +á¹¢ +á¹£ +Ṥ +á¹¥ +Ṧ +ṧ +Ṩ +ṩ +T +t +Å¢ +Å£ +Ť +Å¥ +Ŧ +ŧ +Æ« +Ƭ +Æ­ +Æ® +ʈ +Èš +È› +ȶ +Ṫ +ṫ +Ṭ +á¹­ +á¹® +ṯ +á¹° +á¹± +ẗ +U +u +Ù +ù +Ú +ú +Û +û +Ãœ +ü +Ũ +Å© +Ū +Å« +Ŭ +Å­ +Å® +ů +Å° +ű +Ų +ų +Ư +Æ° +Ç“ +Ç” +Ç• +Ç– +Ç— +ǘ +Ç™ +Çš +Ç› +Çœ +È” +È• +È– +È— +á¹² +á¹³ +á¹´ +á¹µ +Ṷ +á¹· +Ṹ +á¹¹ +Ṻ +á¹» +Ụ +ụ +Ủ +ủ +Ứ +ứ +Ừ +ừ +Ử +á»­ +á»® +ữ +á»° +á»± +V +v +Ʋ +Ê‹ +á¹¼ +á¹½ +á¹¾ +ṿ +W +w +Å´ +ŵ +Ẁ +Ạ+Ẃ +ẃ +Ẅ +ẅ +Ẇ +ẇ +Ẉ +ẉ +ẘ +X +x +Ẋ +ẋ +Ẍ +Ạ+Y +y +à +ý +ÿ +Ÿ +Ŷ +Å· +Ƴ +Æ´ +Ȳ +ȳ +Ẏ +Ạ+ẙ +Ỳ +ỳ +á»´ +ỵ +Ỷ +á»· +Ỹ +ỹ +Z +z +Ź +ź +Å» +ż +Ž +ž +Ƶ +ƶ +Ȥ +È¥ +Ê +Ê‘ +Ạ+ẑ +Ẓ +ẓ +Ẕ +ẕ + + diff --git a/docbook-xsl-1.76.1/common/bn_in.xml b/docbook-xsl-1.76.1/common/bn_in.xml new file mode 100644 index 0000000..88404a0 --- /dev/null +++ b/docbook-xsl-1.76.1/common/bn_in.xml @@ -0,0 +1,660 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +সংকেত +A +a +B +b +C +c +D +d +E +e +F +f +G +g +H +h +I +i +J +j +K +k +L +l +M +m +N +n +O +o +P +p +Q +q +R +r +S +s +T +t +U +u +V +v +W +w +X +x +Y +y +Z +z + + diff --git a/docbook-xsl-1.76.1/common/bs.xml b/docbook-xsl-1.76.1/common/bs.xml new file mode 100644 index 0000000..bd9b281 --- /dev/null +++ b/docbook-xsl-1.76.1/common/bs.xml @@ -0,0 +1,662 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Simboli +A +a +B +b +C +c +Ć +ć +ÄŒ +Ä +D +d +Ä +Ä‘ +E +e +F +f +G +g +H +h +I +i +J +j +K +k +L +l +M +m +N +n +O +o +P +p +R +r +S +s +Å  +Å¡ +T +t +U +u +V +v +Z +z +Ž +ž + + diff --git a/docbook-xsl-1.76.1/common/ca.xml b/docbook-xsl-1.76.1/common/ca.xml new file mode 100644 index 0000000..95fd48b --- /dev/null +++ b/docbook-xsl-1.76.1/common/ca.xml @@ -0,0 +1,660 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Símbols +A +a +B +b +C +c +D +d +E +e +F +f +G +g +H +h +I +i +J +j +K +k +L +l +M +m +N +n +O +o +P +p +Q +q +R +r +S +s +T +t +U +u +V +v +W +w +X +x +Y +y +Z +z + + diff --git a/docbook-xsl-1.76.1/common/charmap.xml b/docbook-xsl-1.76.1/common/charmap.xml new file mode 100644 index 0000000..a12a84f --- /dev/null +++ b/docbook-xsl-1.76.1/common/charmap.xml @@ -0,0 +1,185 @@ + + + + + Common » Character-Map Template Reference + + $Id: charmap.xsl 7266 2007-08-22 11:58:42Z xmldoc $ + + + + + Introduction + +This is technical reference documentation for the + character-map templates in the DocBook XSL Stylesheets. + + + +These templates are defined in a separate file from the set + of “common†templates because some of the common templates + reference DocBook XSL stylesheet parameters, requiring the + entire set of parameters to be imported/included in any + stylesheet that imports/includes the common templates. + + +The character-map templates don’t import or include + any DocBook XSL stylesheet parameters, so the + character-map templates can be used without importing the + whole set of parameters. + + + +This is not intended to be user documentation. It is + provided for developers writing customization layers for the + stylesheets. + + + + + +apply-character-map +Applies an XSLT character map + + +<xsl:template name="apply-character-map"> +<xsl:param name="content"/> +<xsl:param name="map.contents"/> + ... +</xsl:template> + +Description + +This template applies an XSLT character map; that is, it causes certain + individual characters to be substituted with strings of one + or more characters. It is useful mainly for replacing + multiple “special†characters or symbols in the same target + content. It uses the value of + map.contents to do substitution on + content, and then returns the + modified contents. + + + +This template is a very slightly modified version of + Jeni Tennison’s replace_strings + template in the multiple string replacements section of Dave Pawson’s + XSLT FAQ. + + +The apply-string-subst-map + template is essentially the same template as the + apply-character-map template; the + only difference is that in the map that + apply-string-subst-map expects, oldstring and newstring attributes are used + instead of character and string attributes. + + + Parameters + + + content + + +The content on which to perform the character-map + substitution. + + + + map.contents + + +A node set of elements, with each element having + the following attributes: + + + + character, a + character to be replaced + + + string, a + string with which to replace character + + + + + + + + + + + + + +read-character-map +Reads in all or part of an XSLT character map + + +<xsl:template name="read-character-map"> +<xsl:param name="use.subset"/> +<xsl:param name="subset.profile"/> +<xsl:param name="uri"/> + ... +</xsl:template> + +Description + +The XSLT 2.0 specification describes character maps and explains how they may be used + to allow a specific character appearing in a text or + attribute node in a final result tree to be substituted by + a specified string of characters during serialization. The + read-character-map template provides a + means for reading and using character maps with XSLT + 1.0-based tools. + + +This template reads the character-map contents from + uri (in full or in part, depending on + the value of the use.subset + parameter), then passes those contents to the + apply-character-map template, along with + content, the data on which to perform + the character substitution. + + +Using the character map “in part†means that it uses only + those output-character elements that match the + XPath expression given in the value of the + subset.profile parameter. The current + implementation of that capability here relies on the + evaluate extension XSLT function. + + Parameters + + + use.subset + + +Specifies whether to use a subset of the character + map instead of the whole map; boolean + 0 or 1 + + + + subset.profile + + +XPath expression that specifies what subset of the + character map to use + + + + uri + + +URI for a character map + + + + + + + + diff --git a/docbook-xsl-1.76.1/common/charmap.xsl b/docbook-xsl-1.76.1/common/charmap.xsl new file mode 100644 index 0000000..3e0f5d4 --- /dev/null +++ b/docbook-xsl-1.76.1/common/charmap.xsl @@ -0,0 +1,221 @@ + + + + + + + Common » Character-Map Template Reference + + $Id: charmap.xsl 7266 2007-08-22 11:58:42Z xmldoc $ + + + + + Introduction + This is technical reference documentation for the + character-map templates in the DocBook XSL Stylesheets. + + These templates are defined in a separate file from the set + of “common†templates because some of the common templates + reference DocBook XSL stylesheet parameters, requiring the + entire set of parameters to be imported/included in any + stylesheet that imports/includes the common templates. + The character-map templates don’t import or include + any DocBook XSL stylesheet parameters, so the + character-map templates can be used without importing the + whole set of parameters. + + This is not intended to be user documentation. It is + provided for developers writing customization layers for the + stylesheets. + + + + + + Applies an XSLT character map + + This template applies an XSLT character map; that is, it causes certain + individual characters to be substituted with strings of one + or more characters. It is useful mainly for replacing + multiple “special†characters or symbols in the same target + content. It uses the value of + map.contents to do substitution on + content, and then returns the + modified contents. + + This template is a very slightly modified version of + Jeni Tennison’s replace_strings + template in the multiple string replacements section of Dave Pawson’s + XSLT FAQ. + The apply-string-subst-map + template is essentially the same template as the + apply-character-map template; the + only difference is that in the map that + apply-string-subst-map expects, oldstring and newstring attributes are used + instead of character and string attributes. + + + + + content + + The content on which to perform the character-map + substitution. + + + map.contents + + A node set of elements, with each element having + the following attributes: + + + character, a + character to be replaced + + + string, a + string with which to replace character + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Reads in all or part of an XSLT character map + + The XSLT 2.0 specification describes character maps and explains how they may be used + to allow a specific character appearing in a text or + attribute node in a final result tree to be substituted by + a specified string of characters during serialization. The + read-character-map template provides a + means for reading and using character maps with XSLT + 1.0-based tools. + This template reads the character-map contents from + uri (in full or in part, depending on + the value of the use.subset + parameter), then passes those contents to the + apply-character-map template, along with + content, the data on which to perform + the character substitution. + Using the character map “in part†means that it uses only + those output-character elements that match the + XPath expression given in the value of the + subset.profile parameter. The current + implementation of that capability here relies on the + evaluate extension XSLT function. + + + + use.subset + + Specifies whether to use a subset of the character + map instead of the whole map; boolean + 0 or 1 + + + subset.profile + + XPath expression that specifies what subset of the + character map to use + + + uri + + URI for a character map + + + + + + + + + + + + + + + + + + + + + + + +Error: To process character-map subsets, you must use an XSLT engine +that supports the evaluate() XSLT extension function. Your XSLT engine +does not support it. + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/common/common.xml b/docbook-xsl-1.76.1/common/common.xml new file mode 100644 index 0000000..da79980 --- /dev/null +++ b/docbook-xsl-1.76.1/common/common.xml @@ -0,0 +1,622 @@ + + + + + Common » Base Template Reference + + $Id: common.xsl 8784 2010-07-28 12:32:54Z mzjn $ + + + + + Introduction + +This is technical reference documentation for the “base†+ set of common templates in the DocBook XSL Stylesheets. + + +This is not intended to be user documentation. It is + provided for developers writing customization layers for the + stylesheets. + + + + + +is.component +Tests if a given node is a component-level element + + +<xsl:template name="is.component"> +<xsl:param name="node" select="."/> + ... +</xsl:template> + +Description + +This template returns '1' if the specified node is a component +(Chapter, Appendix, etc.), and '0' otherwise. + +Parameters + + +node + + +The node which is to be tested. + + + + + +Returns + +This template returns '1' if the specified node is a component +(Chapter, Appendix, etc.), and '0' otherwise. + + + + + +is.section +Tests if a given node is a section-level element + + +<xsl:template name="is.section"> +<xsl:param name="node" select="."/> + ... +</xsl:template> + +Description + +This template returns '1' if the specified node is a section +(Section, Sect1, Sect2, etc.), and '0' otherwise. + +Parameters + + +node + + +The node which is to be tested. + + + + + +Returns + +This template returns '1' if the specified node is a section +(Section, Sect1, Sect2, etc.), and '0' otherwise. + + + + + +section.level +Returns the hierarchical level of a section + + +<xsl:template name="section.level"> +<xsl:param name="node" select="."/> + ... +</xsl:template> + +Description + +This template calculates the hierarchical level of a section. +The element sect1 is at level 1, sect2 is +at level 2, etc. + + + +Recursive sections are calculated down to the fifth level. + +Parameters + + +node + + +The section node for which the level should be calculated. +Defaults to the context node. + + + + + +Returns + +The section level, 1, 2, etc. + + + + + + +qanda.section.level +Returns the hierarchical level of a QandASet + + +<xsl:template name="qanda.section.level"/> + +Description + +This template calculates the hierarchical level of a QandASet. + + +Returns + +The level, 1, 2, etc. + + + + + + +select.mediaobject +Selects and processes an appropriate media object from a list + + +<xsl:template name="select.mediaobject"> +<xsl:param name="olist" select="imageobject|imageobjectco |videoobject|audioobject|textobject"/> + ... +</xsl:template> + +Description + +This template takes a list of media objects (usually the +children of a mediaobject or inlinemediaobject) and processes +the "right" object. + + + +This template relies on a template named +"select.mediaobject.index" to determine which object +in the list is appropriate. + + + +If no acceptable object is located, nothing happens. + +Parameters + + +olist + + +The node list of potential objects to examine. + + + + + +Returns + +Calls <xsl:apply-templates> on the selected object. + + + + + +select.mediaobject.index +Selects the position of the appropriate media object from a list + + +<xsl:template name="select.mediaobject.index"> +<xsl:param name="olist" select="imageobject|imageobjectco |videoobject|audioobject|textobject"/> +<xsl:param name="count">1</xsl:param> + ... +</xsl:template> + +Description + +This template takes a list of media objects (usually the +children of a mediaobject or inlinemediaobject) and determines +the "right" object. It returns the position of that object +to be used by the calling template. + + + +If the parameter use.role.for.mediaobject +is nonzero, then it first checks for an object with +a role attribute of the appropriate value. It takes the first +of those. Otherwise, it takes the first acceptable object +through a recursive pass through the list. + + + +This template relies on a template named "is.acceptable.mediaobject" +to determine if a given object is an acceptable graphic. The semantics +of media objects is that the first acceptable graphic should be used. + + + + +If no acceptable object is located, no index is returned. + +Parameters + + +olist + + +The node list of potential objects to examine. + + + +count + + +The position in the list currently being considered by the +recursive process. + + + + + +Returns + +Returns the position in the original list of the selected object. + + + + + +is.acceptable.mediaobject +Returns '1' if the specified media object is recognized + + +<xsl:template name="is.acceptable.mediaobject"> +<xsl:param name="object"/> + ... +</xsl:template> + +Description + +This template examines a media object and returns '1' if the +object is recognized as a graphic. + +Parameters + + +object + + +The media object to consider. + + + + + +Returns + +0 or 1 + + + + + +check.id.unique +Warn users about references to non-unique IDs + + +<xsl:template name="check.id.unique"> +<xsl:param name="linkend"/> + ... +</xsl:template> + +Description + +If passed an ID in linkend, +check.id.unique prints +a warning message to the user if either the ID does not exist or +the ID is not unique. + + + + + +check.idref.targets +Warn users about incorrectly typed references + + +<xsl:template name="check.idref.targets"> +<xsl:param name="linkend"/> +<xsl:param name="element-list"/> + ... +</xsl:template> + +Description + +If passed an ID in linkend, +check.idref.targets makes sure that the element +pointed to by the link is one of the elements listed in +element-list and warns the user otherwise. + + + + + +copyright.years +Print a set of years with collapsed ranges + + +<xsl:template name="copyright.years"> +<xsl:param name="years"/> +<xsl:param name="print.ranges" select="1"/> +<xsl:param name="single.year.ranges" select="0"/> +<xsl:param name="firstyear" select="0"/> +<xsl:param name="nextyear" select="0"/> + ... +</xsl:template> + +Description + +This template prints a list of year elements with consecutive +years printed as a range. In other words: + + +<year>1992</year> +<year>1993</year> +<year>1994</year> + + +is printed 1992-1994, whereas: + + +<year>1992</year> +<year>1994</year> + + +is printed 1992, 1994. + + + +This template assumes that all the year elements contain only +decimal year numbers, that the elements are sorted in increasing +numerical order, that there are no duplicates, and that all the years +are expressed in full century+year +(1999 not 99) notation. + +Parameters + + +years + + +The initial set of year elements. + + + +print.ranges + + +If non-zero, multi-year ranges are collapsed. If zero, all years +are printed discretely. + + + +single.year.ranges + + +If non-zero, two consecutive years will be printed as a range, +otherwise, they will be printed discretely. In other words, a single +year range is 1991-1992 but discretely it's +1991, 1992. + + + + + +Returns + +This template returns the formatted list of years. + + + + + +find.path.params +Search in a table for the "best" match for the node + + +<xsl:template name="find.path.params"> +<xsl:param name="node" select="."/> +<xsl:param name="table" select="''"/> +<xsl:param name="location"> + <xsl:call-template name="xpath.location"> + <xsl:with-param name="node" select="$node"/> + </xsl:call-template> + </xsl:param> + ... +</xsl:template> + +Description + +This template searches in a table for the value that most-closely +(in the typical best-match sense of XSLT) matches the current (element) +node location. + + + + + +string.upper +Converts a string to all uppercase letters + + +<xsl:template name="string.upper"> +<xsl:param name="string" select="''"/> + ... +</xsl:template> + +Description + +Given a string, this template does a language-aware conversion +of that string to all uppercase letters, based on the values of the +lowercase.alpha and +uppercase.alpha gentext keys for the current +locale. It affects only those characters found in the values of +lowercase.alpha and +uppercase.alpha. All other characters are left +unchanged. + +Parameters + + +string + + +The string to convert to uppercase. + + + + + + + + + +string.lower +Converts a string to all lowercase letters + + +<xsl:template name="string.lower"> +<xsl:param name="string" select="''"/> + ... +</xsl:template> + +Description + +Given a string, this template does a language-aware conversion +of that string to all lowercase letters, based on the values of the +uppercase.alpha and +lowercase.alpha gentext keys for the current +locale. It affects only those characters found in the values of +uppercase.alpha and +lowercase.alpha. All other characters are left +unchanged. + +Parameters + + +string + + +The string to convert to lowercase. + + + + + + + + + +select.choice.separator +Returns localized choice separator + + +<xsl:template name="select.choice.separator"/> + +Description + +This template enables auto-generation of an appropriate + localized "choice" separator (for example, "and" or "or") before + the final item in an inline list (though it could also be useful + for generating choice separators for non-inline lists). + + +It currently works by evaluating a processing instruction + (PI) of the form <?dbchoice choice="foo"?> : + + + + if the value of the choice + pseudo-attribute is "and" or "or", returns a localized "and" + or "or" + + + otherwise returns the literal value of the + choice pseudo-attribute + + + + The latter is provided only as a temporary workaround because the + locale files do not currently have translations for the word + or. So if you want to generate a a + logical "or" separator in French (for example), you currently need + to do this: + <?dbchoice choice="ou"?> + + + + +The dbchoice processing instruction is + an unfortunate hack; support for it may disappear in the future + (particularly if and when a more appropriate means for marking + up "choice" lists becomes available in DocBook). + + + + + + +evaluate.info.profile +Evaluates an info profile + + +<xsl:template name="evaluate.info.profile"> +<xsl:param name="profile"/> +<xsl:param name="info"/> + ... +</xsl:template> + +Description + +This template evaluates an "info profile" matching the XPath + expression given by the profile + parameter. It relies on the XSLT evaluate() + extension function. + + + +The value of the profile parameter + can include the literal string $info. If found + in the value of the profile parameter, the + literal string $info string is replaced with + the value of the info parameter, which + should be a set of *info nodes; the + expression is then evaluated using the XSLT + evaluate() extension function. + + Parameters + + + + profile + + +A string representing an XPath expression + + + + + info + + +A set of *info nodes + + + + + + Returns + +Returns a node (the result of evaluating the + profile parameter) + + + + diff --git a/docbook-xsl-1.76.1/common/common.xsl b/docbook-xsl-1.76.1/common/common.xsl new file mode 100644 index 0000000..ab8fbb0 --- /dev/null +++ b/docbook-xsl-1.76.1/common/common.xsl @@ -0,0 +1,2039 @@ + + + + + + + + Common » Base Template Reference + + $Id: common.xsl 8784 2010-07-28 12:32:54Z mzjn $ + + + + + Introduction + This is technical reference documentation for the “base†+ set of common templates in the DocBook XSL Stylesheets. + This is not intended to be user documentation. It is + provided for developers writing customization layers for the + stylesheets. + + + + + + + + + + + + +Tests if a given node is a component-level element + + +This template returns '1' if the specified node is a component +(Chapter, Appendix, etc.), and '0' otherwise. + + + + +node + +The node which is to be tested. + + + + + + +This template returns '1' if the specified node is a component +(Chapter, Appendix, etc.), and '0' otherwise. + + + + + + + 1 + 0 + + + + + + +Tests if a given node is a section-level element + + +This template returns '1' if the specified node is a section +(Section, Sect1, Sect2, etc.), and '0' otherwise. + + + + +node + +The node which is to be tested. + + + + + + +This template returns '1' if the specified node is a section +(Section, Sect1, Sect2, etc.), and '0' otherwise. + + + + + + + 1 + 0 + + + + + + +Returns the hierarchical level of a section + + +This template calculates the hierarchical level of a section. +The element sect1 is at level 1, sect2 is +at level 2, etc. + +Recursive sections are calculated down to the fifth level. + + + + +node + +The section node for which the level should be calculated. +Defaults to the context node. + + + + + + +The section level, 1, 2, etc. + + + + + + + + 1 + 2 + 3 + 4 + 5 + + + 6 + 5 + 4 + 3 + 2 + 1 + + + + + + + + + + 2 + 3 + 4 + 5 + 5 + + + 5 + 4 + 3 + 2 + + + 1 + + + 1 + + + + +Returns the hierarchical level of a QandASet + + +This template calculates the hierarchical level of a QandASet. + + + + +The level, 1, 2, etc. + + + + + + + + + 1 + + + + + + + + + + + + + + + + + + + + + + + + 1 + 1 + 2 + 3 + + + 5 + 4 + 3 + 2 + 1 + + + + + + + + + + + + + + + + + + + + + + + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + question + answer + qandadiv + qandaset + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + [FAMILY Given] + + + + + + + + + , + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + , + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +[ +] +{ +} + + +[ +] +... + + + | +4pi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Selects and processes an appropriate media object from a list + + +This template takes a list of media objects (usually the +children of a mediaobject or inlinemediaobject) and processes +the "right" object. + +This template relies on a template named +"select.mediaobject.index" to determine which object +in the list is appropriate. + +If no acceptable object is located, nothing happens. + + + + +olist + +The node list of potential objects to examine. + + + + + + +Calls <xsl:apply-templates> on the selected object. + + + + + + + + + + + + + + + + + + + + + +Selects the position of the appropriate media object from a list + + +This template takes a list of media objects (usually the +children of a mediaobject or inlinemediaobject) and determines +the "right" object. It returns the position of that object +to be used by the calling template. + +If the parameter use.role.for.mediaobject +is nonzero, then it first checks for an object with +a role attribute of the appropriate value. It takes the first +of those. Otherwise, it takes the first acceptable object +through a recursive pass through the list. + +This template relies on a template named "is.acceptable.mediaobject" +to determine if a given object is an acceptable graphic. The semantics +of media objects is that the first acceptable graphic should be used. + + +If no acceptable object is located, no index is returned. + + + + +olist + +The node list of potential objects to examine. + + +count + +The position in the list currently being considered by the +recursive process. + + + + + + +Returns the position in the original list of the selected object. + + + + + + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + + + + 0 + + + + 0 + + + + 1 + + + + 0 + + + + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Returns '1' if the specified media object is recognized + + +This template examines a media object and returns '1' if the +object is recognized as a graphic. + + + + +object + +The media object to consider. + + + + + + +0 or 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + 1 + 1 + 1 + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + . + + + + + + + + + + + + . + + + + + + + + + + + + + + + + +Warn users about references to non-unique IDs + +If passed an ID in linkend, +check.id.unique prints +a warning message to the user if either the ID does not exist or +the ID is not unique. + + + + + + + + + + + + Error: no ID for constraint linkend: + + . + + + + + + + Warning: multiple "IDs" for constraint linkend: + + . + + + + + + +Warn users about incorrectly typed references + +If passed an ID in linkend, +check.idref.targets makes sure that the element +pointed to by the link is one of the elements listed in +element-list and warns the user otherwise. + + + + + + + + + + + + + + Error: linkend ( + + ) points to " + + " not (one of): + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Unexpected context in procedure.step.numeration: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + + + + + + 2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + loweralpha + lowerroman + upperalpha + upperroman + arabic + arabic + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1. + a. + i. + A. + I. + + + + Unexpected numeration: + + + + + + + + + + + + + + + + + + + + + + + + + + circle + square + disc + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Print a set of years with collapsed ranges + + +This template prints a list of year elements with consecutive +years printed as a range. In other words: + +1992 +1993 +1994]]> + +is printed 1992-1994, whereas: + +1992 +1994]]> + +is printed 1992, 1994. + +This template assumes that all the year elements contain only +decimal year numbers, that the elements are sorted in increasing +numerical order, that there are no duplicates, and that all the years +are expressed in full century+year +(1999 not 99) notation. + + + + +years + +The initial set of year elements. + + +print.ranges + +If non-zero, multi-year ranges are collapsed. If zero, all years +are printed discretely. + + +single.year.ranges + +If non-zero, two consecutive years will be printed as a range, +otherwise, they will be printed discretely. In other words, a single +year range is 1991-1992 but discretely it's +1991, 1992. + + + + + + +This template returns the formatted list of years. + + + + + + + + + + + + + + + + + + + + + , + + + + + + + + + + + + + + + + + + + + + + + + , + + + + + - + + + + + + + + + , + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + , + + + + , + + , + + + + - + + , + + + + + + + + + + + + + + + + +Search in a table for the "best" match for the node + + +This template searches in a table for the value that most-closely +(in the typical best-match sense of XSLT) matches the current (element) +node location. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + / + + + + + + + + + +Converts a string to all uppercase letters + + +Given a string, this template does a language-aware conversion +of that string to all uppercase letters, based on the values of the +lowercase.alpha and +uppercase.alpha gentext keys for the current +locale. It affects only those characters found in the values of +lowercase.alpha and +uppercase.alpha. All other characters are left +unchanged. + + + + +string + +The string to convert to uppercase. + + + + + + + + + + + + + + + + + + + + + + + +Converts a string to all lowercase letters + + +Given a string, this template does a language-aware conversion +of that string to all lowercase letters, based on the values of the +uppercase.alpha and +lowercase.alpha gentext keys for the current +locale. It affects only those characters found in the values of +uppercase.alpha and +lowercase.alpha. All other characters are left +unchanged. + + + + +string + +The string to convert to lowercase. + + + + + + + + + + + + + + + + + + + + + + + + Returns localized choice separator + + This template enables auto-generation of an appropriate + localized "choice" separator (for example, "and" or "or") before + the final item in an inline list (though it could also be useful + for generating choice separators for non-inline lists). + It currently works by evaluating a processing instruction + (PI) of the form <?dbchoice choice="foo"?> : + + + if the value of the choice + pseudo-attribute is "and" or "or", returns a localized "and" + or "or" + + + otherwise returns the literal value of the + choice pseudo-attribute + + + The latter is provided only as a temporary workaround because the + locale files do not currently have translations for the word + or. So if you want to generate a a + logical "or" separator in French (for example), you currently need + to do this: + <?dbchoice choice="ou"?> + + + The dbchoice processing instruction is + an unfortunate hack; support for it may disappear in the future + (particularly if and when a more appropriate means for marking + up "choice" lists becomes available in DocBook). + + + + + + + + + + + + + + + + + + + + + + + + + + Evaluates an info profile + + This template evaluates an "info profile" matching the XPath + expression given by the profile + parameter. It relies on the XSLT evaluate() + extension function. + + The value of the profile parameter + can include the literal string $info. If found + in the value of the profile parameter, the + literal string $info string is replaced with + the value of the info parameter, which + should be a set of *info nodes; the + expression is then evaluated using the XSLT + evaluate() extension function. + + + + + profile + + A string representing an XPath expression + + + + info + + A set of *info nodes + + + + + + + Returns a node (the result of evaluating the + profile parameter) + + + + + + + + + + + + + + + + +Error: The "info profiling" mechanism currently requires an XSLT +engine that supports the evaluate() XSLT extension function. Your XSLT +engine does not support it. + + + + + diff --git a/docbook-xsl-1.76.1/common/cs.xml b/docbook-xsl-1.76.1/common/cs.xml new file mode 100644 index 0000000..b803f79 --- /dev/null +++ b/docbook-xsl-1.76.1/common/cs.xml @@ -0,0 +1,700 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Symboly +A +a +à +á +B +b +C +c +ÄŒ +Ä +D +d +ÄŽ +Ä +E +e +É +é +Äš +Ä› +Ë +ë +F +f +G +g +H +h +Ch +ch +cH +CH +I +i +à +í +J +j +K +k +L +l +M +m +N +n +Ň +ň +O +o +Ó +ó +Ö +ö +P +p +Q +q +R +r +Ř +Å™ +S +s +Å  +Å¡ +T +t +Ť +Å¥ +U +u +Ú +ú +Å® +ů +Ãœ +ü +V +v +W +w +X +x +Y +y +à +ý +Z +z +Ž +ž + + diff --git a/docbook-xsl-1.76.1/common/cy.xml b/docbook-xsl-1.76.1/common/cy.xml new file mode 100644 index 0000000..bc0f08a --- /dev/null +++ b/docbook-xsl-1.76.1/common/cy.xml @@ -0,0 +1,1245 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Symbols +A +a +À +à +à +á + +â +à +ã +Ä +ä +Ã… +Ã¥ +Ä€ +Ä +Ä‚ +ă +Ä„ +Ä… +Ç +ÇŽ +Çž +ÇŸ +Ç  +Ç¡ +Ǻ +Ç» +È€ +È +È‚ +ȃ +Ȧ +ȧ +Ḁ +Ḡ+ẚ +Ạ +ạ +Ả +ả +Ấ +ấ +Ầ +ầ +Ẩ +ẩ +Ẫ +ẫ +Ậ +ậ +Ắ +ắ +Ằ +ằ +Ẳ +ẳ +Ẵ +ẵ +Ặ +ặ +B +b +Æ€ +Æ +É“ +Æ‚ +ƃ +Ḃ +ḃ +Ḅ +ḅ +Ḇ +ḇ +C +c +Ç +ç +Ć +ć +Ĉ +ĉ +ÄŠ +Ä‹ +ÄŒ +Ä +Ƈ +ƈ +É• +Ḉ +ḉ +Ch +ch +D +d +ÄŽ +Ä +Ä +Ä‘ +ÆŠ +É— +Æ‹ +ÆŒ +Ç… +Dz +È¡ +É– +Ḋ +ḋ +Ḍ +Ḡ+Ḏ +Ḡ+Ḡ+ḑ +Ḓ +ḓ +Dd +dd +E +e +È +è +É +é +Ê +ê +Ë +ë +Ä’ +Ä“ +Ä” +Ä• +Ä– +Ä— +Ę +Ä™ +Äš +Ä› +È„ +È… +Ȇ +ȇ +Ȩ +È© +Ḕ +ḕ +Ḗ +ḗ +Ḙ +ḙ +Ḛ +ḛ +Ḝ +Ḡ+Ẹ +ẹ +Ẻ +ẻ +Ẽ +ẽ +Ế +ế +Ề +á» +Ể +ể +Ễ +á»… +Ệ +ệ +F +f +Æ‘ +Æ’ +Ḟ +ḟ +Ff +ff +G +g +Äœ +Ä +Äž +ÄŸ +Ä  +Ä¡ +Ä¢ +Ä£ +Æ“ +É  +Ǥ +Ç¥ +Ǧ +ǧ +Ç´ +ǵ +Ḡ +ḡ +Ng +ng +H +h +Ĥ +Ä¥ +Ħ +ħ +Èž +ÈŸ +ɦ +Ḣ +ḣ +Ḥ +ḥ +Ḧ +ḧ +Ḩ +ḩ +Ḫ +ḫ +ẖ +I +i +ÃŒ +ì +à +í +ÃŽ +î +à +ï +Ĩ +Ä© +Ī +Ä« +Ĭ +Ä­ +Ä® +į +Ä° +Æ— +ɨ +Ç +Ç +Ȉ +ȉ +ÈŠ +È‹ +Ḭ +ḭ +Ḯ +ḯ +Ỉ +ỉ +Ị +ị +J +j +Ä´ +ĵ +Ç° +Ê +K +k +Ķ +Ä· +Ƙ +Æ™ +Ǩ +Ç© +Ḱ +ḱ +Ḳ +ḳ +Ḵ +ḵ +L +l +Ĺ +ĺ +Ä» +ļ +Ľ +ľ +Ä¿ +Å€ +Å +Å‚ +Æš +Lj +È´ +É« +ɬ +É­ +Ḷ +ḷ +Ḹ +ḹ +Ḻ +ḻ +Ḽ +ḽ +Ll +ll +M +m +ɱ +Ḿ +ḿ +á¹€ +á¹ +Ṃ +ṃ +N +n +Ñ +ñ +Ń +Å„ +Å… +ņ +Ň +ň +Æ +ɲ +Æž +È  +Ç‹ +Ǹ +ǹ +ȵ +ɳ +Ṅ +á¹… +Ṇ +ṇ +Ṉ +ṉ +Ṋ +ṋ +O +o +Ã’ +ò +Ó +ó +Ô +ô +Õ +õ +Ö +ö +Ø +ø +ÅŒ +Å +ÅŽ +Å +Å +Å‘ +ÆŸ +Æ  +Æ¡ +Ç‘ +Ç’ +Ǫ +Ç« +Ǭ +Ç­ +Ǿ +Ç¿ +ÈŒ +È +ÈŽ +È +Ȫ +È« +Ȭ +È­ +È® +ȯ +È° +ȱ +Ṍ +á¹ +Ṏ +á¹ +á¹ +ṑ +á¹’ +ṓ +Ọ +á» +Ỏ +á» +á» +ố +á»’ +ồ +á»” +ổ +á»– +á»— +Ộ +á»™ +Ớ +á»› +Ờ +á» +Ở +ở +á»  +ỡ +Ợ +ợ +P +p +Ƥ +Æ¥ +á¹” +ṕ +á¹– +á¹— +Ph +ph +Q +q +Ê  +R +r +Å” +Å• +Å– +Å— +Ř +Å™ +È +È‘ +È’ +È“ +ɼ +ɽ +ɾ +Ṙ +á¹™ +Ṛ +á¹› +Ṝ +á¹ +Ṟ +ṟ +Rh +rh +S +s +Åš +Å› +Åœ +Å +Åž +ÅŸ +Å  +Å¡ +Ș +È™ +Ê‚ +á¹  +ṡ +á¹¢ +á¹£ +Ṥ +á¹¥ +Ṧ +ṧ +Ṩ +ṩ +T +t +Å¢ +Å£ +Ť +Å¥ +Ŧ +ŧ +Æ« +Ƭ +Æ­ +Æ® +ʈ +Èš +È› +ȶ +Ṫ +ṫ +Ṭ +á¹­ +á¹® +ṯ +á¹° +á¹± +ẗ +Th +th +U +u +Ù +ù +Ú +ú +Û +û +Ãœ +ü +Ũ +Å© +Ū +Å« +Ŭ +Å­ +Å® +ů +Å° +ű +Ų +ų +Ư +Æ° +Ç“ +Ç” +Ç• +Ç– +Ç— +ǘ +Ç™ +Çš +Ç› +Çœ +È” +È• +È– +È— +á¹² +á¹³ +á¹´ +á¹µ +Ṷ +á¹· +Ṹ +á¹¹ +Ṻ +á¹» +Ụ +ụ +Ủ +ủ +Ứ +ứ +Ừ +ừ +Ử +á»­ +á»® +ữ +á»° +á»± +V +v +Ʋ +Ê‹ +á¹¼ +á¹½ +á¹¾ +ṿ +W +w +Å´ +ŵ +Ẁ +Ạ+Ẃ +ẃ +Ẅ +ẅ +Ẇ +ẇ +Ẉ +ẉ +ẘ +X +x +Ẋ +ẋ +Ẍ +Ạ+Y +y +à +ý +ÿ +Ÿ +Ŷ +Å· +Ƴ +Æ´ +Ȳ +ȳ +Ẏ +Ạ+ẙ +Ỳ +ỳ +á»´ +ỵ +Ỷ +á»· +Ỹ +ỹ +Z +z +Ź +ź +Å» +ż +Ž +ž +Ƶ +ƶ +Ȥ +È¥ +Ê +Ê‘ +Ạ+ẑ +Ẓ +ẓ +Ẕ +ẕ + + diff --git a/docbook-xsl-1.76.1/common/da.xml b/docbook-xsl-1.76.1/common/da.xml new file mode 100644 index 0000000..90eb01c --- /dev/null +++ b/docbook-xsl-1.76.1/common/da.xml @@ -0,0 +1,664 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +A +a +B +b +C +c +D +d +E +e +F +f +G +g +H +h +I +i +J +j +K +k +L +l +M +m +N +n +O +o +P +p +Q +q +R +r +S +s +T +t +U +u +V +v +W +w +X +x +Y +y +Z +z +Æ +æ +Ø +ø +Ã… +Ã¥ + + diff --git a/docbook-xsl-1.76.1/common/de.xml b/docbook-xsl-1.76.1/common/de.xml new file mode 100644 index 0000000..0403153 --- /dev/null +++ b/docbook-xsl-1.76.1/common/de.xml @@ -0,0 +1,666 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Symbole +A +a +Ä +ä +B +b +C +c +D +d +E +e +F +f +G +g +H +h +I +i +J +j +K +k +L +l +M +m +N +n +O +o +Ö +ö +P +p +Q +q +R +r +S +s +T +t +U +u +Ãœ +ü +V +v +W +w +X +x +Y +y +Z +z + + diff --git a/docbook-xsl-1.76.1/common/el.xml b/docbook-xsl-1.76.1/common/el.xml new file mode 100644 index 0000000..f8461d1 --- /dev/null +++ b/docbook-xsl-1.76.1/common/el.xml @@ -0,0 +1,729 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +ΣÏμβολα +A +a +B +b +C +c +D +d +E +e +F +f +G +g +H +h +I +i +J +j +K +k +L +l +M +m +N +n +O +o +P +p +Q +q +R +r +S +s +T +t +U +u +V +v +W +w +X +x +Y +y +Z +z +Α +α +Ά +ά +Î’ +β +Γ +γ +Δ +δ +Ε +ε +Έ +έ +Ζ +ζ +Η +η +Ή +ή +Θ +θ +Ι +ι +Ί +ί +Ϊ +ÏŠ +Î +Κ +κ +Λ +λ +Îœ +μ +Î +ν +Ξ +ξ +Ο +ο +ÎŒ +ÏŒ +Π +Ï€ +Ρ +Ï +Σ +σ +Ï‚ +Τ +Ï„ +Î¥ +Ï… +ÎŽ +Ï +Ϋ +Ï‹ +ΰ +Φ +φ +Χ +χ +Ψ +ψ +Ω +ω +Î +ÏŽ + + diff --git a/docbook-xsl-1.76.1/common/en.xml b/docbook-xsl-1.76.1/common/en.xml new file mode 100644 index 0000000..b77f2c2 --- /dev/null +++ b/docbook-xsl-1.76.1/common/en.xml @@ -0,0 +1,1229 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Symbols +A +a +À +à +à +á + +â +à +ã +Ä +ä +Ã… +Ã¥ +Ä€ +Ä +Ä‚ +ă +Ä„ +Ä… +Ç +ÇŽ +Çž +ÇŸ +Ç  +Ç¡ +Ǻ +Ç» +È€ +È +È‚ +ȃ +Ȧ +ȧ +Ḁ +Ḡ+ẚ +Ạ +ạ +Ả +ả +Ấ +ấ +Ầ +ầ +Ẩ +ẩ +Ẫ +ẫ +Ậ +ậ +Ắ +ắ +Ằ +ằ +Ẳ +ẳ +Ẵ +ẵ +Ặ +ặ +B +b +Æ€ +Æ +É“ +Æ‚ +ƃ +Ḃ +ḃ +Ḅ +ḅ +Ḇ +ḇ +C +c +Ç +ç +Ć +ć +Ĉ +ĉ +ÄŠ +Ä‹ +ÄŒ +Ä +Ƈ +ƈ +É• +Ḉ +ḉ +D +d +ÄŽ +Ä +Ä +Ä‘ +ÆŠ +É— +Æ‹ +ÆŒ +Ç… +Dz +È¡ +É– +Ḋ +ḋ +Ḍ +Ḡ+Ḏ +Ḡ+Ḡ+ḑ +Ḓ +ḓ +E +e +È +è +É +é +Ê +ê +Ë +ë +Ä’ +Ä“ +Ä” +Ä• +Ä– +Ä— +Ę +Ä™ +Äš +Ä› +È„ +È… +Ȇ +ȇ +Ȩ +È© +Ḕ +ḕ +Ḗ +ḗ +Ḙ +ḙ +Ḛ +ḛ +Ḝ +Ḡ+Ẹ +ẹ +Ẻ +ẻ +Ẽ +ẽ +Ế +ế +Ề +á» +Ể +ể +Ễ +á»… +Ệ +ệ +F +f +Æ‘ +Æ’ +Ḟ +ḟ +G +g +Äœ +Ä +Äž +ÄŸ +Ä  +Ä¡ +Ä¢ +Ä£ +Æ“ +É  +Ǥ +Ç¥ +Ǧ +ǧ +Ç´ +ǵ +Ḡ +ḡ +H +h +Ĥ +Ä¥ +Ħ +ħ +Èž +ÈŸ +ɦ +Ḣ +ḣ +Ḥ +ḥ +Ḧ +ḧ +Ḩ +ḩ +Ḫ +ḫ +ẖ +I +i +ÃŒ +ì +à +í +ÃŽ +î +à +ï +Ĩ +Ä© +Ī +Ä« +Ĭ +Ä­ +Ä® +į +Ä° +Æ— +ɨ +Ç +Ç +Ȉ +ȉ +ÈŠ +È‹ +Ḭ +ḭ +Ḯ +ḯ +Ỉ +ỉ +Ị +ị +J +j +Ä´ +ĵ +Ç° +Ê +K +k +Ķ +Ä· +Ƙ +Æ™ +Ǩ +Ç© +Ḱ +ḱ +Ḳ +ḳ +Ḵ +ḵ +L +l +Ĺ +ĺ +Ä» +ļ +Ľ +ľ +Ä¿ +Å€ +Å +Å‚ +Æš +Lj +È´ +É« +ɬ +É­ +Ḷ +ḷ +Ḹ +ḹ +Ḻ +ḻ +Ḽ +ḽ +M +m +ɱ +Ḿ +ḿ +á¹€ +á¹ +Ṃ +ṃ +N +n +Ñ +ñ +Ń +Å„ +Å… +ņ +Ň +ň +Æ +ɲ +Æž +È  +Ç‹ +Ǹ +ǹ +ȵ +ɳ +Ṅ +á¹… +Ṇ +ṇ +Ṉ +ṉ +Ṋ +ṋ +O +o +Ã’ +ò +Ó +ó +Ô +ô +Õ +õ +Ö +ö +Ø +ø +ÅŒ +Å +ÅŽ +Å +Å +Å‘ +ÆŸ +Æ  +Æ¡ +Ç‘ +Ç’ +Ǫ +Ç« +Ǭ +Ç­ +Ǿ +Ç¿ +ÈŒ +È +ÈŽ +È +Ȫ +È« +Ȭ +È­ +È® +ȯ +È° +ȱ +Ṍ +á¹ +Ṏ +á¹ +á¹ +ṑ +á¹’ +ṓ +Ọ +á» +Ỏ +á» +á» +ố +á»’ +ồ +á»” +ổ +á»– +á»— +Ộ +á»™ +Ớ +á»› +Ờ +á» +Ở +ở +á»  +ỡ +Ợ +ợ +P +p +Ƥ +Æ¥ +á¹” +ṕ +á¹– +á¹— +Q +q +Ê  +R +r +Å” +Å• +Å– +Å— +Ř +Å™ +È +È‘ +È’ +È“ +ɼ +ɽ +ɾ +Ṙ +á¹™ +Ṛ +á¹› +Ṝ +á¹ +Ṟ +ṟ +S +s +Åš +Å› +Åœ +Å +Åž +ÅŸ +Å  +Å¡ +Ș +È™ +Ê‚ +á¹  +ṡ +á¹¢ +á¹£ +Ṥ +á¹¥ +Ṧ +ṧ +Ṩ +ṩ +T +t +Å¢ +Å£ +Ť +Å¥ +Ŧ +ŧ +Æ« +Ƭ +Æ­ +Æ® +ʈ +Èš +È› +ȶ +Ṫ +ṫ +Ṭ +á¹­ +á¹® +ṯ +á¹° +á¹± +ẗ +U +u +Ù +ù +Ú +ú +Û +û +Ãœ +ü +Ũ +Å© +Ū +Å« +Ŭ +Å­ +Å® +ů +Å° +ű +Ų +ų +Ư +Æ° +Ç“ +Ç” +Ç• +Ç– +Ç— +ǘ +Ç™ +Çš +Ç› +Çœ +È” +È• +È– +È— +á¹² +á¹³ +á¹´ +á¹µ +Ṷ +á¹· +Ṹ +á¹¹ +Ṻ +á¹» +Ụ +ụ +Ủ +ủ +Ứ +ứ +Ừ +ừ +Ử +á»­ +á»® +ữ +á»° +á»± +V +v +Ʋ +Ê‹ +á¹¼ +á¹½ +á¹¾ +ṿ +W +w +Å´ +ŵ +Ẁ +Ạ+Ẃ +ẃ +Ẅ +ẅ +Ẇ +ẇ +Ẉ +ẉ +ẘ +X +x +Ẋ +ẋ +Ẍ +Ạ+Y +y +à +ý +ÿ +Ÿ +Ŷ +Å· +Ƴ +Æ´ +Ȳ +ȳ +Ẏ +Ạ+ẙ +Ỳ +ỳ +á»´ +ỵ +Ỷ +á»· +Ỹ +ỹ +Z +z +Ź +ź +Å» +ż +Ž +ž +Ƶ +ƶ +Ȥ +È¥ +Ê +Ê‘ +Ạ+ẑ +Ẓ +ẓ +Ẕ +ẕ + + diff --git a/docbook-xsl-1.76.1/common/entities.ent b/docbook-xsl-1.76.1/common/entities.ent new file mode 100644 index 0000000..fb3e932 --- /dev/null +++ b/docbook-xsl-1.76.1/common/entities.ent @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + normalize.sort.input + + + + + + normalize.sort.output + + +'> + + + diff --git a/docbook-xsl-1.76.1/common/eo.xml b/docbook-xsl-1.76.1/common/eo.xml new file mode 100644 index 0000000..c6b95d0 --- /dev/null +++ b/docbook-xsl-1.76.1/common/eo.xml @@ -0,0 +1,1229 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Symbols +A +a +À +à +à +á + +â +à +ã +Ä +ä +Ã… +Ã¥ +Ä€ +Ä +Ä‚ +ă +Ä„ +Ä… +Ç +ÇŽ +Çž +ÇŸ +Ç  +Ç¡ +Ǻ +Ç» +È€ +È +È‚ +ȃ +Ȧ +ȧ +Ḁ +Ḡ+ẚ +Ạ +ạ +Ả +ả +Ấ +ấ +Ầ +ầ +Ẩ +ẩ +Ẫ +ẫ +Ậ +ậ +Ắ +ắ +Ằ +ằ +Ẳ +ẳ +Ẵ +ẵ +Ặ +ặ +B +b +Æ€ +Æ +É“ +Æ‚ +ƃ +Ḃ +ḃ +Ḅ +ḅ +Ḇ +ḇ +C +c +Ç +ç +Ć +ć +Ĉ +ĉ +ÄŠ +Ä‹ +ÄŒ +Ä +Ƈ +ƈ +É• +Ḉ +ḉ +D +d +ÄŽ +Ä +Ä +Ä‘ +ÆŠ +É— +Æ‹ +ÆŒ +Ç… +Dz +È¡ +É– +Ḋ +ḋ +Ḍ +Ḡ+Ḏ +Ḡ+Ḡ+ḑ +Ḓ +ḓ +E +e +È +è +É +é +Ê +ê +Ë +ë +Ä’ +Ä“ +Ä” +Ä• +Ä– +Ä— +Ę +Ä™ +Äš +Ä› +È„ +È… +Ȇ +ȇ +Ȩ +È© +Ḕ +ḕ +Ḗ +ḗ +Ḙ +ḙ +Ḛ +ḛ +Ḝ +Ḡ+Ẹ +ẹ +Ẻ +ẻ +Ẽ +ẽ +Ế +ế +Ề +á» +Ể +ể +Ễ +á»… +Ệ +ệ +F +f +Æ‘ +Æ’ +Ḟ +ḟ +G +g +Äœ +Ä +Äž +ÄŸ +Ä  +Ä¡ +Ä¢ +Ä£ +Æ“ +É  +Ǥ +Ç¥ +Ǧ +ǧ +Ç´ +ǵ +Ḡ +ḡ +H +h +Ĥ +Ä¥ +Ħ +ħ +Èž +ÈŸ +ɦ +Ḣ +ḣ +Ḥ +ḥ +Ḧ +ḧ +Ḩ +ḩ +Ḫ +ḫ +ẖ +I +i +ÃŒ +ì +à +í +ÃŽ +î +à +ï +Ĩ +Ä© +Ī +Ä« +Ĭ +Ä­ +Ä® +į +Ä° +Æ— +ɨ +Ç +Ç +Ȉ +ȉ +ÈŠ +È‹ +Ḭ +ḭ +Ḯ +ḯ +Ỉ +ỉ +Ị +ị +J +j +Ä´ +ĵ +Ç° +Ê +K +k +Ķ +Ä· +Ƙ +Æ™ +Ǩ +Ç© +Ḱ +ḱ +Ḳ +ḳ +Ḵ +ḵ +L +l +Ĺ +ĺ +Ä» +ļ +Ľ +ľ +Ä¿ +Å€ +Å +Å‚ +Æš +Lj +È´ +É« +ɬ +É­ +Ḷ +ḷ +Ḹ +ḹ +Ḻ +ḻ +Ḽ +ḽ +M +m +ɱ +Ḿ +ḿ +á¹€ +á¹ +Ṃ +ṃ +N +n +Ñ +ñ +Ń +Å„ +Å… +ņ +Ň +ň +Æ +ɲ +Æž +È  +Ç‹ +Ǹ +ǹ +ȵ +ɳ +Ṅ +á¹… +Ṇ +ṇ +Ṉ +ṉ +Ṋ +ṋ +O +o +Ã’ +ò +Ó +ó +Ô +ô +Õ +õ +Ö +ö +Ø +ø +ÅŒ +Å +ÅŽ +Å +Å +Å‘ +ÆŸ +Æ  +Æ¡ +Ç‘ +Ç’ +Ǫ +Ç« +Ǭ +Ç­ +Ǿ +Ç¿ +ÈŒ +È +ÈŽ +È +Ȫ +È« +Ȭ +È­ +È® +ȯ +È° +ȱ +Ṍ +á¹ +Ṏ +á¹ +á¹ +ṑ +á¹’ +ṓ +Ọ +á» +Ỏ +á» +á» +ố +á»’ +ồ +á»” +ổ +á»– +á»— +Ộ +á»™ +Ớ +á»› +Ờ +á» +Ở +ở +á»  +ỡ +Ợ +ợ +P +p +Ƥ +Æ¥ +á¹” +ṕ +á¹– +á¹— +Q +q +Ê  +R +r +Å” +Å• +Å– +Å— +Ř +Å™ +È +È‘ +È’ +È“ +ɼ +ɽ +ɾ +Ṙ +á¹™ +Ṛ +á¹› +Ṝ +á¹ +Ṟ +ṟ +S +s +Åš +Å› +Åœ +Å +Åž +ÅŸ +Å  +Å¡ +Ș +È™ +Ê‚ +á¹  +ṡ +á¹¢ +á¹£ +Ṥ +á¹¥ +Ṧ +ṧ +Ṩ +ṩ +T +t +Å¢ +Å£ +Ť +Å¥ +Ŧ +ŧ +Æ« +Ƭ +Æ­ +Æ® +ʈ +Èš +È› +ȶ +Ṫ +ṫ +Ṭ +á¹­ +á¹® +ṯ +á¹° +á¹± +ẗ +U +u +Ù +ù +Ú +ú +Û +û +Ãœ +ü +Ũ +Å© +Ū +Å« +Ŭ +Å­ +Å® +ů +Å° +ű +Ų +ų +Ư +Æ° +Ç“ +Ç” +Ç• +Ç– +Ç— +ǘ +Ç™ +Çš +Ç› +Çœ +È” +È• +È– +È— +á¹² +á¹³ +á¹´ +á¹µ +Ṷ +á¹· +Ṹ +á¹¹ +Ṻ +á¹» +Ụ +ụ +Ủ +ủ +Ứ +ứ +Ừ +ừ +Ử +á»­ +á»® +ữ +á»° +á»± +V +v +Ʋ +Ê‹ +á¹¼ +á¹½ +á¹¾ +ṿ +W +w +Å´ +ŵ +Ẁ +Ạ+Ẃ +ẃ +Ẅ +ẅ +Ẇ +ẇ +Ẉ +ẉ +ẘ +X +x +Ẋ +ẋ +Ẍ +Ạ+Y +y +à +ý +ÿ +Ÿ +Ŷ +Å· +Ƴ +Æ´ +Ȳ +ȳ +Ẏ +Ạ+ẙ +Ỳ +ỳ +á»´ +ỵ +Ỷ +á»· +Ỹ +ỹ +Z +z +Ź +ź +Å» +ż +Ž +ž +Ƶ +ƶ +Ȥ +È¥ +Ê +Ê‘ +Ạ+ẑ +Ẓ +ẓ +Ẕ +ẕ + + diff --git a/docbook-xsl-1.76.1/common/es.xml b/docbook-xsl-1.76.1/common/es.xml new file mode 100644 index 0000000..aad1980 --- /dev/null +++ b/docbook-xsl-1.76.1/common/es.xml @@ -0,0 +1,676 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Símbolos +A +a +á +à +B +b +C +c +CH +ch +D +d +E +e +É +é +F +f +G +g +H +h +I +i +à +í +J +j +K +k +L +l +LL +ll +M +m +N +n +Ñ +ñ +O +o +Ó +ó +P +p +Q +q +R +r +S +s +T +t +U +u +Ú +ú +V +v +W +w +X +x +Y +y +Z +z + + diff --git a/docbook-xsl-1.76.1/common/et.xml b/docbook-xsl-1.76.1/common/et.xml new file mode 100644 index 0000000..b7d224f --- /dev/null +++ b/docbook-xsl-1.76.1/common/et.xml @@ -0,0 +1,1229 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Symbols +A +a +À +à +à +á + +â +à +ã +Ä +ä +Ã… +Ã¥ +Ä€ +Ä +Ä‚ +ă +Ä„ +Ä… +Ç +ÇŽ +Çž +ÇŸ +Ç  +Ç¡ +Ǻ +Ç» +È€ +È +È‚ +ȃ +Ȧ +ȧ +Ḁ +Ḡ+ẚ +Ạ +ạ +Ả +ả +Ấ +ấ +Ầ +ầ +Ẩ +ẩ +Ẫ +ẫ +Ậ +ậ +Ắ +ắ +Ằ +ằ +Ẳ +ẳ +Ẵ +ẵ +Ặ +ặ +B +b +Æ€ +Æ +É“ +Æ‚ +ƃ +Ḃ +ḃ +Ḅ +ḅ +Ḇ +ḇ +C +c +Ç +ç +Ć +ć +Ĉ +ĉ +ÄŠ +Ä‹ +ÄŒ +Ä +Ƈ +ƈ +É• +Ḉ +ḉ +D +d +ÄŽ +Ä +Ä +Ä‘ +ÆŠ +É— +Æ‹ +ÆŒ +Ç… +Dz +È¡ +É– +Ḋ +ḋ +Ḍ +Ḡ+Ḏ +Ḡ+Ḡ+ḑ +Ḓ +ḓ +E +e +È +è +É +é +Ê +ê +Ë +ë +Ä’ +Ä“ +Ä” +Ä• +Ä– +Ä— +Ę +Ä™ +Äš +Ä› +È„ +È… +Ȇ +ȇ +Ȩ +È© +Ḕ +ḕ +Ḗ +ḗ +Ḙ +ḙ +Ḛ +ḛ +Ḝ +Ḡ+Ẹ +ẹ +Ẻ +ẻ +Ẽ +ẽ +Ế +ế +Ề +á» +Ể +ể +Ễ +á»… +Ệ +ệ +F +f +Æ‘ +Æ’ +Ḟ +ḟ +G +g +Äœ +Ä +Äž +ÄŸ +Ä  +Ä¡ +Ä¢ +Ä£ +Æ“ +É  +Ǥ +Ç¥ +Ǧ +ǧ +Ç´ +ǵ +Ḡ +ḡ +H +h +Ĥ +Ä¥ +Ħ +ħ +Èž +ÈŸ +ɦ +Ḣ +ḣ +Ḥ +ḥ +Ḧ +ḧ +Ḩ +ḩ +Ḫ +ḫ +ẖ +I +i +ÃŒ +ì +à +í +ÃŽ +î +à +ï +Ĩ +Ä© +Ī +Ä« +Ĭ +Ä­ +Ä® +į +Ä° +Æ— +ɨ +Ç +Ç +Ȉ +ȉ +ÈŠ +È‹ +Ḭ +ḭ +Ḯ +ḯ +Ỉ +ỉ +Ị +ị +J +j +Ä´ +ĵ +Ç° +Ê +K +k +Ķ +Ä· +Ƙ +Æ™ +Ǩ +Ç© +Ḱ +ḱ +Ḳ +ḳ +Ḵ +ḵ +L +l +Ĺ +ĺ +Ä» +ļ +Ľ +ľ +Ä¿ +Å€ +Å +Å‚ +Æš +Lj +È´ +É« +ɬ +É­ +Ḷ +ḷ +Ḹ +ḹ +Ḻ +ḻ +Ḽ +ḽ +M +m +ɱ +Ḿ +ḿ +á¹€ +á¹ +Ṃ +ṃ +N +n +Ñ +ñ +Ń +Å„ +Å… +ņ +Ň +ň +Æ +ɲ +Æž +È  +Ç‹ +Ǹ +ǹ +ȵ +ɳ +Ṅ +á¹… +Ṇ +ṇ +Ṉ +ṉ +Ṋ +ṋ +O +o +Ã’ +ò +Ó +ó +Ô +ô +Õ +õ +Ö +ö +Ø +ø +ÅŒ +Å +ÅŽ +Å +Å +Å‘ +ÆŸ +Æ  +Æ¡ +Ç‘ +Ç’ +Ǫ +Ç« +Ǭ +Ç­ +Ǿ +Ç¿ +ÈŒ +È +ÈŽ +È +Ȫ +È« +Ȭ +È­ +È® +ȯ +È° +ȱ +Ṍ +á¹ +Ṏ +á¹ +á¹ +ṑ +á¹’ +ṓ +Ọ +á» +Ỏ +á» +á» +ố +á»’ +ồ +á»” +ổ +á»– +á»— +Ộ +á»™ +Ớ +á»› +Ờ +á» +Ở +ở +á»  +ỡ +Ợ +ợ +P +p +Ƥ +Æ¥ +á¹” +ṕ +á¹– +á¹— +Q +q +Ê  +R +r +Å” +Å• +Å– +Å— +Ř +Å™ +È +È‘ +È’ +È“ +ɼ +ɽ +ɾ +Ṙ +á¹™ +Ṛ +á¹› +Ṝ +á¹ +Ṟ +ṟ +S +s +Åš +Å› +Åœ +Å +Åž +ÅŸ +Å  +Å¡ +Ș +È™ +Ê‚ +á¹  +ṡ +á¹¢ +á¹£ +Ṥ +á¹¥ +Ṧ +ṧ +Ṩ +ṩ +T +t +Å¢ +Å£ +Ť +Å¥ +Ŧ +ŧ +Æ« +Ƭ +Æ­ +Æ® +ʈ +Èš +È› +ȶ +Ṫ +ṫ +Ṭ +á¹­ +á¹® +ṯ +á¹° +á¹± +ẗ +U +u +Ù +ù +Ú +ú +Û +û +Ãœ +ü +Ũ +Å© +Ū +Å« +Ŭ +Å­ +Å® +ů +Å° +ű +Ų +ų +Ư +Æ° +Ç“ +Ç” +Ç• +Ç– +Ç— +ǘ +Ç™ +Çš +Ç› +Çœ +È” +È• +È– +È— +á¹² +á¹³ +á¹´ +á¹µ +Ṷ +á¹· +Ṹ +á¹¹ +Ṻ +á¹» +Ụ +ụ +Ủ +ủ +Ứ +ứ +Ừ +ừ +Ử +á»­ +á»® +ữ +á»° +á»± +V +v +Ʋ +Ê‹ +á¹¼ +á¹½ +á¹¾ +ṿ +W +w +Å´ +ŵ +Ẁ +Ạ+Ẃ +ẃ +Ẅ +ẅ +Ẇ +ẇ +Ẉ +ẉ +ẘ +X +x +Ẋ +ẋ +Ẍ +Ạ+Y +y +à +ý +ÿ +Ÿ +Ŷ +Å· +Ƴ +Æ´ +Ȳ +ȳ +Ẏ +Ạ+ẙ +Ỳ +ỳ +á»´ +ỵ +Ỷ +á»· +Ỹ +ỹ +Z +z +Ź +ź +Å» +ż +Ž +ž +Ƶ +ƶ +Ȥ +È¥ +Ê +Ê‘ +Ạ+ẑ +Ẓ +ẓ +Ẕ +ẕ + + diff --git a/docbook-xsl-1.76.1/common/eu.xml b/docbook-xsl-1.76.1/common/eu.xml new file mode 100644 index 0000000..3841d3f --- /dev/null +++ b/docbook-xsl-1.76.1/common/eu.xml @@ -0,0 +1,1229 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Symbols +A +a +À +à +à +á + +â +à +ã +Ä +ä +Ã… +Ã¥ +Ä€ +Ä +Ä‚ +ă +Ä„ +Ä… +Ç +ÇŽ +Çž +ÇŸ +Ç  +Ç¡ +Ǻ +Ç» +È€ +È +È‚ +ȃ +Ȧ +ȧ +Ḁ +Ḡ+ẚ +Ạ +ạ +Ả +ả +Ấ +ấ +Ầ +ầ +Ẩ +ẩ +Ẫ +ẫ +Ậ +ậ +Ắ +ắ +Ằ +ằ +Ẳ +ẳ +Ẵ +ẵ +Ặ +ặ +B +b +Æ€ +Æ +É“ +Æ‚ +ƃ +Ḃ +ḃ +Ḅ +ḅ +Ḇ +ḇ +C +c +Ç +ç +Ć +ć +Ĉ +ĉ +ÄŠ +Ä‹ +ÄŒ +Ä +Ƈ +ƈ +É• +Ḉ +ḉ +D +d +ÄŽ +Ä +Ä +Ä‘ +ÆŠ +É— +Æ‹ +ÆŒ +Ç… +Dz +È¡ +É– +Ḋ +ḋ +Ḍ +Ḡ+Ḏ +Ḡ+Ḡ+ḑ +Ḓ +ḓ +E +e +È +è +É +é +Ê +ê +Ë +ë +Ä’ +Ä“ +Ä” +Ä• +Ä– +Ä— +Ę +Ä™ +Äš +Ä› +È„ +È… +Ȇ +ȇ +Ȩ +È© +Ḕ +ḕ +Ḗ +ḗ +Ḙ +ḙ +Ḛ +ḛ +Ḝ +Ḡ+Ẹ +ẹ +Ẻ +ẻ +Ẽ +ẽ +Ế +ế +Ề +á» +Ể +ể +Ễ +á»… +Ệ +ệ +F +f +Æ‘ +Æ’ +Ḟ +ḟ +G +g +Äœ +Ä +Äž +ÄŸ +Ä  +Ä¡ +Ä¢ +Ä£ +Æ“ +É  +Ǥ +Ç¥ +Ǧ +ǧ +Ç´ +ǵ +Ḡ +ḡ +H +h +Ĥ +Ä¥ +Ħ +ħ +Èž +ÈŸ +ɦ +Ḣ +ḣ +Ḥ +ḥ +Ḧ +ḧ +Ḩ +ḩ +Ḫ +ḫ +ẖ +I +i +ÃŒ +ì +à +í +ÃŽ +î +à +ï +Ĩ +Ä© +Ī +Ä« +Ĭ +Ä­ +Ä® +į +Ä° +Æ— +ɨ +Ç +Ç +Ȉ +ȉ +ÈŠ +È‹ +Ḭ +ḭ +Ḯ +ḯ +Ỉ +ỉ +Ị +ị +J +j +Ä´ +ĵ +Ç° +Ê +K +k +Ķ +Ä· +Ƙ +Æ™ +Ǩ +Ç© +Ḱ +ḱ +Ḳ +ḳ +Ḵ +ḵ +L +l +Ĺ +ĺ +Ä» +ļ +Ľ +ľ +Ä¿ +Å€ +Å +Å‚ +Æš +Lj +È´ +É« +ɬ +É­ +Ḷ +ḷ +Ḹ +ḹ +Ḻ +ḻ +Ḽ +ḽ +M +m +ɱ +Ḿ +ḿ +á¹€ +á¹ +Ṃ +ṃ +N +n +Ñ +ñ +Ń +Å„ +Å… +ņ +Ň +ň +Æ +ɲ +Æž +È  +Ç‹ +Ǹ +ǹ +ȵ +ɳ +Ṅ +á¹… +Ṇ +ṇ +Ṉ +ṉ +Ṋ +ṋ +O +o +Ã’ +ò +Ó +ó +Ô +ô +Õ +õ +Ö +ö +Ø +ø +ÅŒ +Å +ÅŽ +Å +Å +Å‘ +ÆŸ +Æ  +Æ¡ +Ç‘ +Ç’ +Ǫ +Ç« +Ǭ +Ç­ +Ǿ +Ç¿ +ÈŒ +È +ÈŽ +È +Ȫ +È« +Ȭ +È­ +È® +ȯ +È° +ȱ +Ṍ +á¹ +Ṏ +á¹ +á¹ +ṑ +á¹’ +ṓ +Ọ +á» +Ỏ +á» +á» +ố +á»’ +ồ +á»” +ổ +á»– +á»— +Ộ +á»™ +Ớ +á»› +Ờ +á» +Ở +ở +á»  +ỡ +Ợ +ợ +P +p +Ƥ +Æ¥ +á¹” +ṕ +á¹– +á¹— +Q +q +Ê  +R +r +Å” +Å• +Å– +Å— +Ř +Å™ +È +È‘ +È’ +È“ +ɼ +ɽ +ɾ +Ṙ +á¹™ +Ṛ +á¹› +Ṝ +á¹ +Ṟ +ṟ +S +s +Åš +Å› +Åœ +Å +Åž +ÅŸ +Å  +Å¡ +Ș +È™ +Ê‚ +á¹  +ṡ +á¹¢ +á¹£ +Ṥ +á¹¥ +Ṧ +ṧ +Ṩ +ṩ +T +t +Å¢ +Å£ +Ť +Å¥ +Ŧ +ŧ +Æ« +Ƭ +Æ­ +Æ® +ʈ +Èš +È› +ȶ +Ṫ +ṫ +Ṭ +á¹­ +á¹® +ṯ +á¹° +á¹± +ẗ +U +u +Ù +ù +Ú +ú +Û +û +Ãœ +ü +Ũ +Å© +Ū +Å« +Ŭ +Å­ +Å® +ů +Å° +ű +Ų +ų +Ư +Æ° +Ç“ +Ç” +Ç• +Ç– +Ç— +ǘ +Ç™ +Çš +Ç› +Çœ +È” +È• +È– +È— +á¹² +á¹³ +á¹´ +á¹µ +Ṷ +á¹· +Ṹ +á¹¹ +Ṻ +á¹» +Ụ +ụ +Ủ +ủ +Ứ +ứ +Ừ +ừ +Ử +á»­ +á»® +ữ +á»° +á»± +V +v +Ʋ +Ê‹ +á¹¼ +á¹½ +á¹¾ +ṿ +W +w +Å´ +ŵ +Ẁ +Ạ+Ẃ +ẃ +Ẅ +ẅ +Ẇ +ẇ +Ẉ +ẉ +ẘ +X +x +Ẋ +ẋ +Ẍ +Ạ+Y +y +à +ý +ÿ +Ÿ +Ŷ +Å· +Ƴ +Æ´ +Ȳ +ȳ +Ẏ +Ạ+ẙ +Ỳ +ỳ +á»´ +ỵ +Ỷ +á»· +Ỹ +ỹ +Z +z +Ź +ź +Å» +ż +Ž +ž +Ƶ +ƶ +Ȥ +È¥ +Ê +Ê‘ +Ạ+ẑ +Ẓ +ẓ +Ẕ +ẕ + + diff --git a/docbook-xsl-1.76.1/common/fa.xml b/docbook-xsl-1.76.1/common/fa.xml new file mode 100644 index 0000000..257dc0b --- /dev/null +++ b/docbook-xsl-1.76.1/common/fa.xml @@ -0,0 +1,660 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +سمبل‌های راهنم +A +a +B +b +C +c +D +d +E +e +F +f +G +g +H +h +I +i +J +j +K +k +L +l +M +m +N +n +O +o +P +p +Q +q +R +r +S +s +T +t +U +u +V +v +W +w +X +x +Y +y +Z +z + + diff --git a/docbook-xsl-1.76.1/common/fi.xml b/docbook-xsl-1.76.1/common/fi.xml new file mode 100644 index 0000000..232d057 --- /dev/null +++ b/docbook-xsl-1.76.1/common/fi.xml @@ -0,0 +1,670 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Symbole +A +a +B +b +C +c +D +d +E +e +F +f +G +g +H +h +I +i +J +j +K +k +L +l +M +m +N +n +O +o +P +p +Q +q +R +r +S +s +Å  +Å¡ +T +t +U +u +V +v +W +w +X +x +Y +y +Z +z +Ž +ž +Ã… +Ã¥ +Ä +ä +Ö +ö + + diff --git a/docbook-xsl-1.76.1/common/fr.xml b/docbook-xsl-1.76.1/common/fr.xml new file mode 100644 index 0000000..5ca5248 --- /dev/null +++ b/docbook-xsl-1.76.1/common/fr.xml @@ -0,0 +1,690 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Symboles +A +a +à +À +â + +Æ +æ +B +b +C +c +ç +D +d +E +e +ê +Ê +é +É +è +È +ë +Ë +€ +F +f +G +g +H +h +I +i +ÃŽ +î +à +ï +J +j +K +k +L +l +M +m +N +n +O +o +Ö +ö +Å’ +Å“ +P +p +Q +q +R +r +S +s +T +t +U +u +Ù +ù +Û +û +Ãœ +ü +V +v +W +w +X +x +Y +y +Z +z + + diff --git a/docbook-xsl-1.76.1/common/ga.xml b/docbook-xsl-1.76.1/common/ga.xml new file mode 100644 index 0000000..054036b --- /dev/null +++ b/docbook-xsl-1.76.1/common/ga.xml @@ -0,0 +1,1229 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Siombailí +A +a +À +à +à +á + +â +à +ã +Ä +ä +Ã… +Ã¥ +Ä€ +Ä +Ä‚ +ă +Ä„ +Ä… +Ç +ÇŽ +Çž +ÇŸ +Ç  +Ç¡ +Ǻ +Ç» +È€ +È +È‚ +ȃ +Ȧ +ȧ +Ḁ +Ḡ+ẚ +Ạ +ạ +Ả +ả +Ấ +ấ +Ầ +ầ +Ẩ +ẩ +Ẫ +ẫ +Ậ +ậ +Ắ +ắ +Ằ +ằ +Ẳ +ẳ +Ẵ +ẵ +Ặ +ặ +B +b +Æ€ +Æ +É“ +Æ‚ +ƃ +Ḃ +ḃ +Ḅ +ḅ +Ḇ +ḇ +C +c +Ç +ç +Ć +ć +Ĉ +ĉ +ÄŠ +Ä‹ +ÄŒ +Ä +Ƈ +ƈ +É• +Ḉ +ḉ +D +d +ÄŽ +Ä +Ä +Ä‘ +ÆŠ +É— +Æ‹ +ÆŒ +Ç… +Dz +È¡ +É– +Ḋ +ḋ +Ḍ +Ḡ+Ḏ +Ḡ+Ḡ+ḑ +Ḓ +ḓ +E +e +È +è +É +é +Ê +ê +Ë +ë +Ä’ +Ä“ +Ä” +Ä• +Ä– +Ä— +Ę +Ä™ +Äš +Ä› +È„ +È… +Ȇ +ȇ +Ȩ +È© +Ḕ +ḕ +Ḗ +ḗ +Ḙ +ḙ +Ḛ +ḛ +Ḝ +Ḡ+Ẹ +ẹ +Ẻ +ẻ +Ẽ +ẽ +Ế +ế +Ề +á» +Ể +ể +Ễ +á»… +Ệ +ệ +F +f +Æ‘ +Æ’ +Ḟ +ḟ +G +g +Äœ +Ä +Äž +ÄŸ +Ä  +Ä¡ +Ä¢ +Ä£ +Æ“ +É  +Ǥ +Ç¥ +Ǧ +ǧ +Ç´ +ǵ +Ḡ +ḡ +H +h +Ĥ +Ä¥ +Ħ +ħ +Èž +ÈŸ +ɦ +Ḣ +ḣ +Ḥ +ḥ +Ḧ +ḧ +Ḩ +ḩ +Ḫ +ḫ +ẖ +I +i +ÃŒ +ì +à +í +ÃŽ +î +à +ï +Ĩ +Ä© +Ī +Ä« +Ĭ +Ä­ +Ä® +į +Ä° +Æ— +ɨ +Ç +Ç +Ȉ +ȉ +ÈŠ +È‹ +Ḭ +ḭ +Ḯ +ḯ +Ỉ +ỉ +Ị +ị +J +j +Ä´ +ĵ +Ç° +Ê +K +k +Ķ +Ä· +Ƙ +Æ™ +Ǩ +Ç© +Ḱ +ḱ +Ḳ +ḳ +Ḵ +ḵ +L +l +Ĺ +ĺ +Ä» +ļ +Ľ +ľ +Ä¿ +Å€ +Å +Å‚ +Æš +Lj +È´ +É« +ɬ +É­ +Ḷ +ḷ +Ḹ +ḹ +Ḻ +ḻ +Ḽ +ḽ +M +m +ɱ +Ḿ +ḿ +á¹€ +á¹ +Ṃ +ṃ +N +n +Ñ +ñ +Ń +Å„ +Å… +ņ +Ň +ň +Æ +ɲ +Æž +È  +Ç‹ +Ǹ +ǹ +ȵ +ɳ +Ṅ +á¹… +Ṇ +ṇ +Ṉ +ṉ +Ṋ +ṋ +O +o +Ã’ +ò +Ó +ó +Ô +ô +Õ +õ +Ö +ö +Ø +ø +ÅŒ +Å +ÅŽ +Å +Å +Å‘ +ÆŸ +Æ  +Æ¡ +Ç‘ +Ç’ +Ǫ +Ç« +Ǭ +Ç­ +Ǿ +Ç¿ +ÈŒ +È +ÈŽ +È +Ȫ +È« +Ȭ +È­ +È® +ȯ +È° +ȱ +Ṍ +á¹ +Ṏ +á¹ +á¹ +ṑ +á¹’ +ṓ +Ọ +á» +Ỏ +á» +á» +ố +á»’ +ồ +á»” +ổ +á»– +á»— +Ộ +á»™ +Ớ +á»› +Ờ +á» +Ở +ở +á»  +ỡ +Ợ +ợ +P +p +Ƥ +Æ¥ +á¹” +ṕ +á¹– +á¹— +Q +q +Ê  +R +r +Å” +Å• +Å– +Å— +Ř +Å™ +È +È‘ +È’ +È“ +ɼ +ɽ +ɾ +Ṙ +á¹™ +Ṛ +á¹› +Ṝ +á¹ +Ṟ +ṟ +S +s +Åš +Å› +Åœ +Å +Åž +ÅŸ +Å  +Å¡ +Ș +È™ +Ê‚ +á¹  +ṡ +á¹¢ +á¹£ +Ṥ +á¹¥ +Ṧ +ṧ +Ṩ +ṩ +T +t +Å¢ +Å£ +Ť +Å¥ +Ŧ +ŧ +Æ« +Ƭ +Æ­ +Æ® +ʈ +Èš +È› +ȶ +Ṫ +ṫ +Ṭ +á¹­ +á¹® +ṯ +á¹° +á¹± +ẗ +U +u +Ù +ù +Ú +ú +Û +û +Ãœ +ü +Ũ +Å© +Ū +Å« +Ŭ +Å­ +Å® +ů +Å° +ű +Ų +ų +Ư +Æ° +Ç“ +Ç” +Ç• +Ç– +Ç— +ǘ +Ç™ +Çš +Ç› +Çœ +È” +È• +È– +È— +á¹² +á¹³ +á¹´ +á¹µ +Ṷ +á¹· +Ṹ +á¹¹ +Ṻ +á¹» +Ụ +ụ +Ủ +ủ +Ứ +ứ +Ừ +ừ +Ử +á»­ +á»® +ữ +á»° +á»± +V +v +Ʋ +Ê‹ +á¹¼ +á¹½ +á¹¾ +ṿ +W +w +Å´ +ŵ +Ẁ +Ạ+Ẃ +ẃ +Ẅ +ẅ +Ẇ +ẇ +Ẉ +ẉ +ẘ +X +x +Ẋ +ẋ +Ẍ +Ạ+Y +y +à +ý +ÿ +Ÿ +Ŷ +Å· +Ƴ +Æ´ +Ȳ +ȳ +Ẏ +Ạ+ẙ +Ỳ +ỳ +á»´ +ỵ +Ỷ +á»· +Ỹ +ỹ +Z +z +Ź +ź +Å» +ż +Ž +ž +Ƶ +ƶ +Ȥ +È¥ +Ê +Ê‘ +Ạ+ẑ +Ẓ +ẓ +Ẕ +ẕ + + diff --git a/docbook-xsl-1.76.1/common/gentext.xsl b/docbook-xsl-1.76.1/common/gentext.xsl new file mode 100644 index 0000000..2417e77 --- /dev/null +++ b/docbook-xsl-1.76.1/common/gentext.xsl @@ -0,0 +1,839 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + .formal + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + object.xref.markup: empty xref template + for linkend=" + + " and @xrefstyle=" + + " + + + + + + + + + + + + + + + + + + + + + + + + + + + Xref is only supported to listitems in an + orderedlist: + + + ??? + + + + + + + + + + + + + + + + + + + + + + + + %n + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + + + + + + + + + + + + + + + + + Attempt to use %d in gentext with no referrer! + + + + + + + % + + + % + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + labelnumber + + + labelname + + + label + + + + + + + + quotedtitle + + + title + + + + + + + + + + + + + + nopage + + + pagenumber + + + pageabbrev + + + Page + + + page + + + + + + + + + + + nodocname + + + docnamelong + + + docname + + + + + + + + + + + + + + + + + + + + + + %n + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + %t + + + + + + %t + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + %p + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/common/gl.xml b/docbook-xsl-1.76.1/common/gl.xml new file mode 100644 index 0000000..7346088 --- /dev/null +++ b/docbook-xsl-1.76.1/common/gl.xml @@ -0,0 +1,1229 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Symbols +A +a +À +à +à +á + +â +à +ã +Ä +ä +Ã… +Ã¥ +Ä€ +Ä +Ä‚ +ă +Ä„ +Ä… +Ç +ÇŽ +Çž +ÇŸ +Ç  +Ç¡ +Ǻ +Ç» +È€ +È +È‚ +ȃ +Ȧ +ȧ +Ḁ +Ḡ+ẚ +Ạ +ạ +Ả +ả +Ấ +ấ +Ầ +ầ +Ẩ +ẩ +Ẫ +ẫ +Ậ +ậ +Ắ +ắ +Ằ +ằ +Ẳ +ẳ +Ẵ +ẵ +Ặ +ặ +B +b +Æ€ +Æ +É“ +Æ‚ +ƃ +Ḃ +ḃ +Ḅ +ḅ +Ḇ +ḇ +C +c +Ç +ç +Ć +ć +Ĉ +ĉ +ÄŠ +Ä‹ +ÄŒ +Ä +Ƈ +ƈ +É• +Ḉ +ḉ +D +d +ÄŽ +Ä +Ä +Ä‘ +ÆŠ +É— +Æ‹ +ÆŒ +Ç… +Dz +È¡ +É– +Ḋ +ḋ +Ḍ +Ḡ+Ḏ +Ḡ+Ḡ+ḑ +Ḓ +ḓ +E +e +È +è +É +é +Ê +ê +Ë +ë +Ä’ +Ä“ +Ä” +Ä• +Ä– +Ä— +Ę +Ä™ +Äš +Ä› +È„ +È… +Ȇ +ȇ +Ȩ +È© +Ḕ +ḕ +Ḗ +ḗ +Ḙ +ḙ +Ḛ +ḛ +Ḝ +Ḡ+Ẹ +ẹ +Ẻ +ẻ +Ẽ +ẽ +Ế +ế +Ề +á» +Ể +ể +Ễ +á»… +Ệ +ệ +F +f +Æ‘ +Æ’ +Ḟ +ḟ +G +g +Äœ +Ä +Äž +ÄŸ +Ä  +Ä¡ +Ä¢ +Ä£ +Æ“ +É  +Ǥ +Ç¥ +Ǧ +ǧ +Ç´ +ǵ +Ḡ +ḡ +H +h +Ĥ +Ä¥ +Ħ +ħ +Èž +ÈŸ +ɦ +Ḣ +ḣ +Ḥ +ḥ +Ḧ +ḧ +Ḩ +ḩ +Ḫ +ḫ +ẖ +I +i +ÃŒ +ì +à +í +ÃŽ +î +à +ï +Ĩ +Ä© +Ī +Ä« +Ĭ +Ä­ +Ä® +į +Ä° +Æ— +ɨ +Ç +Ç +Ȉ +ȉ +ÈŠ +È‹ +Ḭ +ḭ +Ḯ +ḯ +Ỉ +ỉ +Ị +ị +J +j +Ä´ +ĵ +Ç° +Ê +K +k +Ķ +Ä· +Ƙ +Æ™ +Ǩ +Ç© +Ḱ +ḱ +Ḳ +ḳ +Ḵ +ḵ +L +l +Ĺ +ĺ +Ä» +ļ +Ľ +ľ +Ä¿ +Å€ +Å +Å‚ +Æš +Lj +È´ +É« +ɬ +É­ +Ḷ +ḷ +Ḹ +ḹ +Ḻ +ḻ +Ḽ +ḽ +M +m +ɱ +Ḿ +ḿ +á¹€ +á¹ +Ṃ +ṃ +N +n +Ñ +ñ +Ń +Å„ +Å… +ņ +Ň +ň +Æ +ɲ +Æž +È  +Ç‹ +Ǹ +ǹ +ȵ +ɳ +Ṅ +á¹… +Ṇ +ṇ +Ṉ +ṉ +Ṋ +ṋ +O +o +Ã’ +ò +Ó +ó +Ô +ô +Õ +õ +Ö +ö +Ø +ø +ÅŒ +Å +ÅŽ +Å +Å +Å‘ +ÆŸ +Æ  +Æ¡ +Ç‘ +Ç’ +Ǫ +Ç« +Ǭ +Ç­ +Ǿ +Ç¿ +ÈŒ +È +ÈŽ +È +Ȫ +È« +Ȭ +È­ +È® +ȯ +È° +ȱ +Ṍ +á¹ +Ṏ +á¹ +á¹ +ṑ +á¹’ +ṓ +Ọ +á» +Ỏ +á» +á» +ố +á»’ +ồ +á»” +ổ +á»– +á»— +Ộ +á»™ +Ớ +á»› +Ờ +á» +Ở +ở +á»  +ỡ +Ợ +ợ +P +p +Ƥ +Æ¥ +á¹” +ṕ +á¹– +á¹— +Q +q +Ê  +R +r +Å” +Å• +Å– +Å— +Ř +Å™ +È +È‘ +È’ +È“ +ɼ +ɽ +ɾ +Ṙ +á¹™ +Ṛ +á¹› +Ṝ +á¹ +Ṟ +ṟ +S +s +Åš +Å› +Åœ +Å +Åž +ÅŸ +Å  +Å¡ +Ș +È™ +Ê‚ +á¹  +ṡ +á¹¢ +á¹£ +Ṥ +á¹¥ +Ṧ +ṧ +Ṩ +ṩ +T +t +Å¢ +Å£ +Ť +Å¥ +Ŧ +ŧ +Æ« +Ƭ +Æ­ +Æ® +ʈ +Èš +È› +ȶ +Ṫ +ṫ +Ṭ +á¹­ +á¹® +ṯ +á¹° +á¹± +ẗ +U +u +Ù +ù +Ú +ú +Û +û +Ãœ +ü +Ũ +Å© +Ū +Å« +Ŭ +Å­ +Å® +ů +Å° +ű +Ų +ų +Ư +Æ° +Ç“ +Ç” +Ç• +Ç– +Ç— +ǘ +Ç™ +Çš +Ç› +Çœ +È” +È• +È– +È— +á¹² +á¹³ +á¹´ +á¹µ +Ṷ +á¹· +Ṹ +á¹¹ +Ṻ +á¹» +Ụ +ụ +Ủ +ủ +Ứ +ứ +Ừ +ừ +Ử +á»­ +á»® +ữ +á»° +á»± +V +v +Ʋ +Ê‹ +á¹¼ +á¹½ +á¹¾ +ṿ +W +w +Å´ +ŵ +Ẁ +Ạ+Ẃ +ẃ +Ẅ +ẅ +Ẇ +ẇ +Ẉ +ẉ +ẘ +X +x +Ẋ +ẋ +Ẍ +Ạ+Y +y +à +ý +ÿ +Ÿ +Ŷ +Å· +Ƴ +Æ´ +Ȳ +ȳ +Ẏ +Ạ+ẙ +Ỳ +ỳ +á»´ +ỵ +Ỷ +á»· +Ỹ +ỹ +Z +z +Ź +ź +Å» +ż +Ž +ž +Ƶ +ƶ +Ȥ +È¥ +Ê +Ê‘ +Ạ+ẑ +Ẓ +ẓ +Ẕ +ẕ + + diff --git a/docbook-xsl-1.76.1/common/gu.xml b/docbook-xsl-1.76.1/common/gu.xml new file mode 100644 index 0000000..ae7ae2e --- /dev/null +++ b/docbook-xsl-1.76.1/common/gu.xml @@ -0,0 +1,660 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +સંકેતો +A +a +B +b +C +c +D +d +E +e +F +f +G +g +H +h +I +i +J +j +K +k +L +l +M +m +N +n +O +o +P +p +Q +q +R +r +S +s +T +t +U +u +V +v +W +w +X +x +Y +y +Z +z + + diff --git a/docbook-xsl-1.76.1/common/he.xml b/docbook-xsl-1.76.1/common/he.xml new file mode 100644 index 0000000..d084df4 --- /dev/null +++ b/docbook-xsl-1.76.1/common/he.xml @@ -0,0 +1,1229 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Symbols +A +a +À +à +à +á + +â +à +ã +Ä +ä +Ã… +Ã¥ +Ä€ +Ä +Ä‚ +ă +Ä„ +Ä… +Ç +ÇŽ +Çž +ÇŸ +Ç  +Ç¡ +Ǻ +Ç» +È€ +È +È‚ +ȃ +Ȧ +ȧ +Ḁ +Ḡ+ẚ +Ạ +ạ +Ả +ả +Ấ +ấ +Ầ +ầ +Ẩ +ẩ +Ẫ +ẫ +Ậ +ậ +Ắ +ắ +Ằ +ằ +Ẳ +ẳ +Ẵ +ẵ +Ặ +ặ +B +b +Æ€ +Æ +É“ +Æ‚ +ƃ +Ḃ +ḃ +Ḅ +ḅ +Ḇ +ḇ +C +c +Ç +ç +Ć +ć +Ĉ +ĉ +ÄŠ +Ä‹ +ÄŒ +Ä +Ƈ +ƈ +É• +Ḉ +ḉ +D +d +ÄŽ +Ä +Ä +Ä‘ +ÆŠ +É— +Æ‹ +ÆŒ +Ç… +Dz +È¡ +É– +Ḋ +ḋ +Ḍ +Ḡ+Ḏ +Ḡ+Ḡ+ḑ +Ḓ +ḓ +E +e +È +è +É +é +Ê +ê +Ë +ë +Ä’ +Ä“ +Ä” +Ä• +Ä– +Ä— +Ę +Ä™ +Äš +Ä› +È„ +È… +Ȇ +ȇ +Ȩ +È© +Ḕ +ḕ +Ḗ +ḗ +Ḙ +ḙ +Ḛ +ḛ +Ḝ +Ḡ+Ẹ +ẹ +Ẻ +ẻ +Ẽ +ẽ +Ế +ế +Ề +á» +Ể +ể +Ễ +á»… +Ệ +ệ +F +f +Æ‘ +Æ’ +Ḟ +ḟ +G +g +Äœ +Ä +Äž +ÄŸ +Ä  +Ä¡ +Ä¢ +Ä£ +Æ“ +É  +Ǥ +Ç¥ +Ǧ +ǧ +Ç´ +ǵ +Ḡ +ḡ +H +h +Ĥ +Ä¥ +Ħ +ħ +Èž +ÈŸ +ɦ +Ḣ +ḣ +Ḥ +ḥ +Ḧ +ḧ +Ḩ +ḩ +Ḫ +ḫ +ẖ +I +i +ÃŒ +ì +à +í +ÃŽ +î +à +ï +Ĩ +Ä© +Ī +Ä« +Ĭ +Ä­ +Ä® +į +Ä° +Æ— +ɨ +Ç +Ç +Ȉ +ȉ +ÈŠ +È‹ +Ḭ +ḭ +Ḯ +ḯ +Ỉ +ỉ +Ị +ị +J +j +Ä´ +ĵ +Ç° +Ê +K +k +Ķ +Ä· +Ƙ +Æ™ +Ǩ +Ç© +Ḱ +ḱ +Ḳ +ḳ +Ḵ +ḵ +L +l +Ĺ +ĺ +Ä» +ļ +Ľ +ľ +Ä¿ +Å€ +Å +Å‚ +Æš +Lj +È´ +É« +ɬ +É­ +Ḷ +ḷ +Ḹ +ḹ +Ḻ +ḻ +Ḽ +ḽ +M +m +ɱ +Ḿ +ḿ +á¹€ +á¹ +Ṃ +ṃ +N +n +Ñ +ñ +Ń +Å„ +Å… +ņ +Ň +ň +Æ +ɲ +Æž +È  +Ç‹ +Ǹ +ǹ +ȵ +ɳ +Ṅ +á¹… +Ṇ +ṇ +Ṉ +ṉ +Ṋ +ṋ +O +o +Ã’ +ò +Ó +ó +Ô +ô +Õ +õ +Ö +ö +Ø +ø +ÅŒ +Å +ÅŽ +Å +Å +Å‘ +ÆŸ +Æ  +Æ¡ +Ç‘ +Ç’ +Ǫ +Ç« +Ǭ +Ç­ +Ǿ +Ç¿ +ÈŒ +È +ÈŽ +È +Ȫ +È« +Ȭ +È­ +È® +ȯ +È° +ȱ +Ṍ +á¹ +Ṏ +á¹ +á¹ +ṑ +á¹’ +ṓ +Ọ +á» +Ỏ +á» +á» +ố +á»’ +ồ +á»” +ổ +á»– +á»— +Ộ +á»™ +Ớ +á»› +Ờ +á» +Ở +ở +á»  +ỡ +Ợ +ợ +P +p +Ƥ +Æ¥ +á¹” +ṕ +á¹– +á¹— +Q +q +Ê  +R +r +Å” +Å• +Å– +Å— +Ř +Å™ +È +È‘ +È’ +È“ +ɼ +ɽ +ɾ +Ṙ +á¹™ +Ṛ +á¹› +Ṝ +á¹ +Ṟ +ṟ +S +s +Åš +Å› +Åœ +Å +Åž +ÅŸ +Å  +Å¡ +Ș +È™ +Ê‚ +á¹  +ṡ +á¹¢ +á¹£ +Ṥ +á¹¥ +Ṧ +ṧ +Ṩ +ṩ +T +t +Å¢ +Å£ +Ť +Å¥ +Ŧ +ŧ +Æ« +Ƭ +Æ­ +Æ® +ʈ +Èš +È› +ȶ +Ṫ +ṫ +Ṭ +á¹­ +á¹® +ṯ +á¹° +á¹± +ẗ +U +u +Ù +ù +Ú +ú +Û +û +Ãœ +ü +Ũ +Å© +Ū +Å« +Ŭ +Å­ +Å® +ů +Å° +ű +Ų +ų +Ư +Æ° +Ç“ +Ç” +Ç• +Ç– +Ç— +ǘ +Ç™ +Çš +Ç› +Çœ +È” +È• +È– +È— +á¹² +á¹³ +á¹´ +á¹µ +Ṷ +á¹· +Ṹ +á¹¹ +Ṻ +á¹» +Ụ +ụ +Ủ +ủ +Ứ +ứ +Ừ +ừ +Ử +á»­ +á»® +ữ +á»° +á»± +V +v +Ʋ +Ê‹ +á¹¼ +á¹½ +á¹¾ +ṿ +W +w +Å´ +ŵ +Ẁ +Ạ+Ẃ +ẃ +Ẅ +ẅ +Ẇ +ẇ +Ẉ +ẉ +ẘ +X +x +Ẋ +ẋ +Ẍ +Ạ+Y +y +à +ý +ÿ +Ÿ +Ŷ +Å· +Ƴ +Æ´ +Ȳ +ȳ +Ẏ +Ạ+ẙ +Ỳ +ỳ +á»´ +ỵ +Ỷ +á»· +Ỹ +ỹ +Z +z +Ź +ź +Å» +ż +Ž +ž +Ƶ +ƶ +Ȥ +È¥ +Ê +Ê‘ +Ạ+ẑ +Ẓ +ẓ +Ẕ +ẕ + + diff --git a/docbook-xsl-1.76.1/common/hi.xml b/docbook-xsl-1.76.1/common/hi.xml new file mode 100644 index 0000000..76a075f --- /dev/null +++ b/docbook-xsl-1.76.1/common/hi.xml @@ -0,0 +1,660 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +संकेत +A +a +B +b +C +c +D +d +E +e +F +f +G +g +H +h +I +i +J +j +K +k +L +l +M +m +N +n +O +o +P +p +Q +q +R +r +S +s +T +t +U +u +V +v +W +w +X +x +Y +y +Z +z + + diff --git a/docbook-xsl-1.76.1/common/hr.xml b/docbook-xsl-1.76.1/common/hr.xml new file mode 100644 index 0000000..2db7030 --- /dev/null +++ b/docbook-xsl-1.76.1/common/hr.xml @@ -0,0 +1,662 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Oznake +A +a +B +b +C +c +Ć +ć +ÄŒ +Ä +D +d +Ä +Ä‘ +E +e +F +f +G +g +H +h +I +i +J +j +K +k +L +l +M +m +N +n +O +o +P +p +R +r +S +s +Å  +Å¡ +T +t +U +u +V +v +Z +z +Ž +ž + + diff --git a/docbook-xsl-1.76.1/common/hu.xml b/docbook-xsl-1.76.1/common/hu.xml new file mode 100644 index 0000000..ab90c94 --- /dev/null +++ b/docbook-xsl-1.76.1/common/hu.xml @@ -0,0 +1,678 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Jelzések +A +a +à +á +B +b +C +c +D +d +E +e +É +é +F +f +G +g +H +h +I +i +à +í +J +j +K +k +L +l +M +m +N +n +O +o +Ó +ó +Ö +ö +Å +Å‘ +P +p +Q +q +R +r +S +s +T +t +U +u +Ú +ú +Ãœ +ü +Å° +ű +V +v +W +w +X +x +Y +y +Z +z + + diff --git a/docbook-xsl-1.76.1/common/id.xml b/docbook-xsl-1.76.1/common/id.xml new file mode 100644 index 0000000..b730ad8 --- /dev/null +++ b/docbook-xsl-1.76.1/common/id.xml @@ -0,0 +1,1229 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Simbol +A +a +À +à +à +á + +â +à +ã +Ä +ä +Ã… +Ã¥ +Ä€ +Ä +Ä‚ +ă +Ä„ +Ä… +Ç +ÇŽ +Çž +ÇŸ +Ç  +Ç¡ +Ǻ +Ç» +È€ +È +È‚ +ȃ +Ȧ +ȧ +Ḁ +Ḡ+ẚ +Ạ +ạ +Ả +ả +Ấ +ấ +Ầ +ầ +Ẩ +ẩ +Ẫ +ẫ +Ậ +ậ +Ắ +ắ +Ằ +ằ +Ẳ +ẳ +Ẵ +ẵ +Ặ +ặ +B +b +Æ€ +Æ +É“ +Æ‚ +ƃ +Ḃ +ḃ +Ḅ +ḅ +Ḇ +ḇ +C +c +Ç +ç +Ć +ć +Ĉ +ĉ +ÄŠ +Ä‹ +ÄŒ +Ä +Ƈ +ƈ +É• +Ḉ +ḉ +D +d +ÄŽ +Ä +Ä +Ä‘ +ÆŠ +É— +Æ‹ +ÆŒ +Ç… +Dz +È¡ +É– +Ḋ +ḋ +Ḍ +Ḡ+Ḏ +Ḡ+Ḡ+ḑ +Ḓ +ḓ +E +e +È +è +É +é +Ê +ê +Ë +ë +Ä’ +Ä“ +Ä” +Ä• +Ä– +Ä— +Ę +Ä™ +Äš +Ä› +È„ +È… +Ȇ +ȇ +Ȩ +È© +Ḕ +ḕ +Ḗ +ḗ +Ḙ +ḙ +Ḛ +ḛ +Ḝ +Ḡ+Ẹ +ẹ +Ẻ +ẻ +Ẽ +ẽ +Ế +ế +Ề +á» +Ể +ể +Ễ +á»… +Ệ +ệ +F +f +Æ‘ +Æ’ +Ḟ +ḟ +G +g +Äœ +Ä +Äž +ÄŸ +Ä  +Ä¡ +Ä¢ +Ä£ +Æ“ +É  +Ǥ +Ç¥ +Ǧ +ǧ +Ç´ +ǵ +Ḡ +ḡ +H +h +Ĥ +Ä¥ +Ħ +ħ +Èž +ÈŸ +ɦ +Ḣ +ḣ +Ḥ +ḥ +Ḧ +ḧ +Ḩ +ḩ +Ḫ +ḫ +ẖ +I +i +ÃŒ +ì +à +í +ÃŽ +î +à +ï +Ĩ +Ä© +Ī +Ä« +Ĭ +Ä­ +Ä® +į +Ä° +Æ— +ɨ +Ç +Ç +Ȉ +ȉ +ÈŠ +È‹ +Ḭ +ḭ +Ḯ +ḯ +Ỉ +ỉ +Ị +ị +J +j +Ä´ +ĵ +Ç° +Ê +K +k +Ķ +Ä· +Ƙ +Æ™ +Ǩ +Ç© +Ḱ +ḱ +Ḳ +ḳ +Ḵ +ḵ +L +l +Ĺ +ĺ +Ä» +ļ +Ľ +ľ +Ä¿ +Å€ +Å +Å‚ +Æš +Lj +È´ +É« +ɬ +É­ +Ḷ +ḷ +Ḹ +ḹ +Ḻ +ḻ +Ḽ +ḽ +M +m +ɱ +Ḿ +ḿ +á¹€ +á¹ +Ṃ +ṃ +N +n +Ñ +ñ +Ń +Å„ +Å… +ņ +Ň +ň +Æ +ɲ +Æž +È  +Ç‹ +Ǹ +ǹ +ȵ +ɳ +Ṅ +á¹… +Ṇ +ṇ +Ṉ +ṉ +Ṋ +ṋ +O +o +Ã’ +ò +Ó +ó +Ô +ô +Õ +õ +Ö +ö +Ø +ø +ÅŒ +Å +ÅŽ +Å +Å +Å‘ +ÆŸ +Æ  +Æ¡ +Ç‘ +Ç’ +Ǫ +Ç« +Ǭ +Ç­ +Ǿ +Ç¿ +ÈŒ +È +ÈŽ +È +Ȫ +È« +Ȭ +È­ +È® +ȯ +È° +ȱ +Ṍ +á¹ +Ṏ +á¹ +á¹ +ṑ +á¹’ +ṓ +Ọ +á» +Ỏ +á» +á» +ố +á»’ +ồ +á»” +ổ +á»– +á»— +Ộ +á»™ +Ớ +á»› +Ờ +á» +Ở +ở +á»  +ỡ +Ợ +ợ +P +p +Ƥ +Æ¥ +á¹” +ṕ +á¹– +á¹— +Q +q +Ê  +R +r +Å” +Å• +Å– +Å— +Ř +Å™ +È +È‘ +È’ +È“ +ɼ +ɽ +ɾ +Ṙ +á¹™ +Ṛ +á¹› +Ṝ +á¹ +Ṟ +ṟ +S +s +Åš +Å› +Åœ +Å +Åž +ÅŸ +Å  +Å¡ +Ș +È™ +Ê‚ +á¹  +ṡ +á¹¢ +á¹£ +Ṥ +á¹¥ +Ṧ +ṧ +Ṩ +ṩ +T +t +Å¢ +Å£ +Ť +Å¥ +Ŧ +ŧ +Æ« +Ƭ +Æ­ +Æ® +ʈ +Èš +È› +ȶ +Ṫ +ṫ +Ṭ +á¹­ +á¹® +ṯ +á¹° +á¹± +ẗ +U +u +Ù +ù +Ú +ú +Û +û +Ãœ +ü +Ũ +Å© +Ū +Å« +Ŭ +Å­ +Å® +ů +Å° +ű +Ų +ų +Ư +Æ° +Ç“ +Ç” +Ç• +Ç– +Ç— +ǘ +Ç™ +Çš +Ç› +Çœ +È” +È• +È– +È— +á¹² +á¹³ +á¹´ +á¹µ +Ṷ +á¹· +Ṹ +á¹¹ +Ṻ +á¹» +Ụ +ụ +Ủ +ủ +Ứ +ứ +Ừ +ừ +Ử +á»­ +á»® +ữ +á»° +á»± +V +v +Ʋ +Ê‹ +á¹¼ +á¹½ +á¹¾ +ṿ +W +w +Å´ +ŵ +Ẁ +Ạ+Ẃ +ẃ +Ẅ +ẅ +Ẇ +ẇ +Ẉ +ẉ +ẘ +X +x +Ẋ +ẋ +Ẍ +Ạ+Y +y +à +ý +ÿ +Ÿ +Ŷ +Å· +Ƴ +Æ´ +Ȳ +ȳ +Ẏ +Ạ+ẙ +Ỳ +ỳ +á»´ +ỵ +Ỷ +á»· +Ỹ +ỹ +Z +z +Ź +ź +Å» +ż +Ž +ž +Ƶ +ƶ +Ȥ +È¥ +Ê +Ê‘ +Ạ+ẑ +Ẓ +ẓ +Ẕ +ẕ + + diff --git a/docbook-xsl-1.76.1/common/insertfile.xsl b/docbook-xsl-1.76.1/common/insertfile.xsl new file mode 100644 index 0000000..66bcf41 --- /dev/null +++ b/docbook-xsl-1.76.1/common/insertfile.xsl @@ -0,0 +1,111 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/common/is.xml b/docbook-xsl-1.76.1/common/is.xml new file mode 100644 index 0000000..6a5b07f --- /dev/null +++ b/docbook-xsl-1.76.1/common/is.xml @@ -0,0 +1,672 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +tákn +A +a +à +á +B +b +D +d +Ä +ð +E +e +É +é +F +f +G +g +H +h +I +i +à +í +J +j +K +k +L +l +M +m +N +n +O +o +Ó +ó +P +p +R +r +S +s +T +t +U +u +Ú +ú +V +v +X +x +Y +y +à +ý +Þ +þ +Æ +æ +Ö +ö + + diff --git a/docbook-xsl-1.76.1/common/it.xml b/docbook-xsl-1.76.1/common/it.xml new file mode 100644 index 0000000..691e4d2 --- /dev/null +++ b/docbook-xsl-1.76.1/common/it.xml @@ -0,0 +1,1229 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Simboli +A +a +À +à +à +á + +â +à +ã +Ä +ä +Ã… +Ã¥ +Ä€ +Ä +Ä‚ +ă +Ä„ +Ä… +Ç +ÇŽ +Çž +ÇŸ +Ç  +Ç¡ +Ǻ +Ç» +È€ +È +È‚ +ȃ +Ȧ +ȧ +Ḁ +Ḡ+ẚ +Ạ +ạ +Ả +ả +Ấ +ấ +Ầ +ầ +Ẩ +ẩ +Ẫ +ẫ +Ậ +ậ +Ắ +ắ +Ằ +ằ +Ẳ +ẳ +Ẵ +ẵ +Ặ +ặ +B +b +Æ€ +Æ +É“ +Æ‚ +ƃ +Ḃ +ḃ +Ḅ +ḅ +Ḇ +ḇ +C +c +Ç +ç +Ć +ć +Ĉ +ĉ +ÄŠ +Ä‹ +ÄŒ +Ä +Ƈ +ƈ +É• +Ḉ +ḉ +D +d +ÄŽ +Ä +Ä +Ä‘ +ÆŠ +É— +Æ‹ +ÆŒ +Ç… +Dz +È¡ +É– +Ḋ +ḋ +Ḍ +Ḡ+Ḏ +Ḡ+Ḡ+ḑ +Ḓ +ḓ +E +e +È +è +É +é +Ê +ê +Ë +ë +Ä’ +Ä“ +Ä” +Ä• +Ä– +Ä— +Ę +Ä™ +Äš +Ä› +È„ +È… +Ȇ +ȇ +Ȩ +È© +Ḕ +ḕ +Ḗ +ḗ +Ḙ +ḙ +Ḛ +ḛ +Ḝ +Ḡ+Ẹ +ẹ +Ẻ +ẻ +Ẽ +ẽ +Ế +ế +Ề +á» +Ể +ể +Ễ +á»… +Ệ +ệ +F +f +Æ‘ +Æ’ +Ḟ +ḟ +G +g +Äœ +Ä +Äž +ÄŸ +Ä  +Ä¡ +Ä¢ +Ä£ +Æ“ +É  +Ǥ +Ç¥ +Ǧ +ǧ +Ç´ +ǵ +Ḡ +ḡ +H +h +Ĥ +Ä¥ +Ħ +ħ +Èž +ÈŸ +ɦ +Ḣ +ḣ +Ḥ +ḥ +Ḧ +ḧ +Ḩ +ḩ +Ḫ +ḫ +ẖ +I +i +ÃŒ +ì +à +í +ÃŽ +î +à +ï +Ĩ +Ä© +Ī +Ä« +Ĭ +Ä­ +Ä® +į +Ä° +Æ— +ɨ +Ç +Ç +Ȉ +ȉ +ÈŠ +È‹ +Ḭ +ḭ +Ḯ +ḯ +Ỉ +ỉ +Ị +ị +J +j +Ä´ +ĵ +Ç° +Ê +K +k +Ķ +Ä· +Ƙ +Æ™ +Ǩ +Ç© +Ḱ +ḱ +Ḳ +ḳ +Ḵ +ḵ +L +l +Ĺ +ĺ +Ä» +ļ +Ľ +ľ +Ä¿ +Å€ +Å +Å‚ +Æš +Lj +È´ +É« +ɬ +É­ +Ḷ +ḷ +Ḹ +ḹ +Ḻ +ḻ +Ḽ +ḽ +M +m +ɱ +Ḿ +ḿ +á¹€ +á¹ +Ṃ +ṃ +N +n +Ñ +ñ +Ń +Å„ +Å… +ņ +Ň +ň +Æ +ɲ +Æž +È  +Ç‹ +Ǹ +ǹ +ȵ +ɳ +Ṅ +á¹… +Ṇ +ṇ +Ṉ +ṉ +Ṋ +ṋ +O +o +Ã’ +ò +Ó +ó +Ô +ô +Õ +õ +Ö +ö +Ø +ø +ÅŒ +Å +ÅŽ +Å +Å +Å‘ +ÆŸ +Æ  +Æ¡ +Ç‘ +Ç’ +Ǫ +Ç« +Ǭ +Ç­ +Ǿ +Ç¿ +ÈŒ +È +ÈŽ +È +Ȫ +È« +Ȭ +È­ +È® +ȯ +È° +ȱ +Ṍ +á¹ +Ṏ +á¹ +á¹ +ṑ +á¹’ +ṓ +Ọ +á» +Ỏ +á» +á» +ố +á»’ +ồ +á»” +ổ +á»– +á»— +Ộ +á»™ +Ớ +á»› +Ờ +á» +Ở +ở +á»  +ỡ +Ợ +ợ +P +p +Ƥ +Æ¥ +á¹” +ṕ +á¹– +á¹— +Q +q +Ê  +R +r +Å” +Å• +Å– +Å— +Ř +Å™ +È +È‘ +È’ +È“ +ɼ +ɽ +ɾ +Ṙ +á¹™ +Ṛ +á¹› +Ṝ +á¹ +Ṟ +ṟ +S +s +Åš +Å› +Åœ +Å +Åž +ÅŸ +Å  +Å¡ +Ș +È™ +Ê‚ +á¹  +ṡ +á¹¢ +á¹£ +Ṥ +á¹¥ +Ṧ +ṧ +Ṩ +ṩ +T +t +Å¢ +Å£ +Ť +Å¥ +Ŧ +ŧ +Æ« +Ƭ +Æ­ +Æ® +ʈ +Èš +È› +ȶ +Ṫ +ṫ +Ṭ +á¹­ +á¹® +ṯ +á¹° +á¹± +ẗ +U +u +Ù +ù +Ú +ú +Û +û +Ãœ +ü +Ũ +Å© +Ū +Å« +Ŭ +Å­ +Å® +ů +Å° +ű +Ų +ų +Ư +Æ° +Ç“ +Ç” +Ç• +Ç– +Ç— +ǘ +Ç™ +Çš +Ç› +Çœ +È” +È• +È– +È— +á¹² +á¹³ +á¹´ +á¹µ +Ṷ +á¹· +Ṹ +á¹¹ +Ṻ +á¹» +Ụ +ụ +Ủ +ủ +Ứ +ứ +Ừ +ừ +Ử +á»­ +á»® +ữ +á»° +á»± +V +v +Ʋ +Ê‹ +á¹¼ +á¹½ +á¹¾ +ṿ +W +w +Å´ +ŵ +Ẁ +Ạ+Ẃ +ẃ +Ẅ +ẅ +Ẇ +ẇ +Ẉ +ẉ +ẘ +X +x +Ẋ +ẋ +Ẍ +Ạ+Y +y +à +ý +ÿ +Ÿ +Ŷ +Å· +Ƴ +Æ´ +Ȳ +ȳ +Ẏ +Ạ+ẙ +Ỳ +ỳ +á»´ +ỵ +Ỷ +á»· +Ỹ +ỹ +Z +z +Ź +ź +Å» +ż +Ž +ž +Ƶ +ƶ +Ȥ +È¥ +Ê +Ê‘ +Ạ+ẑ +Ẓ +ẓ +Ẕ +ẕ + + diff --git a/docbook-xsl-1.76.1/common/ja.xml b/docbook-xsl-1.76.1/common/ja.xml new file mode 100644 index 0000000..4dd809b --- /dev/null +++ b/docbook-xsl-1.76.1/common/ja.xml @@ -0,0 +1,660 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +シンボル +A +a +B +b +C +c +D +d +E +e +F +f +G +g +H +h +I +i +J +j +K +k +L +l +M +m +N +n +O +o +P +p +Q +q +R +r +S +s +T +t +U +u +V +v +W +w +X +x +Y +y +Z +z + + diff --git a/docbook-xsl-1.76.1/common/ka.xml b/docbook-xsl-1.76.1/common/ka.xml new file mode 100644 index 0000000..bd6d29c --- /dev/null +++ b/docbook-xsl-1.76.1/common/ka.xml @@ -0,0 +1,700 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +სიმბáƒáƒšáƒáƒ”ბი +A +a +B +b +C +c +D +d +E +e +F +f +G +g +H +h +I +i +J +j +K +k +L +l +M +m +N +n +O +o +P +p +Q +q +R +r +S +s +T +t +U +u +V +v +W +w +X +x +Y +y +Z +z +რ+ბ +გ +დ +ე +ვ +ზ +ჱ +თ +ი +კ +ლ +მ +ნ +ჲ +რ+პ +ჟ +რ +ს +ტ +ჳ +უ +ფ +ქ +ღ +ყ +შ +ჩ +ც +ძ +წ +ჭ +ხ +ჴ +ჯ +ჰ +ჵ +ჶ +ჷ + + diff --git a/docbook-xsl-1.76.1/common/kn.xml b/docbook-xsl-1.76.1/common/kn.xml new file mode 100644 index 0000000..5c246f1 --- /dev/null +++ b/docbook-xsl-1.76.1/common/kn.xml @@ -0,0 +1,1229 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +ಸಂಕೇತಗಳೠ+A +a +À +à +à +á + +â +à +ã +Ä +ä +Ã… +Ã¥ +Ä€ +Ä +Ä‚ +ă +Ä„ +Ä… +Ç +ÇŽ +Çž +ÇŸ +Ç  +Ç¡ +Ǻ +Ç» +È€ +È +È‚ +ȃ +Ȧ +ȧ +Ḁ +Ḡ+ẚ +Ạ +ạ +Ả +ả +Ấ +ấ +Ầ +ầ +Ẩ +ẩ +Ẫ +ẫ +Ậ +ậ +Ắ +ắ +Ằ +ằ +Ẳ +ẳ +Ẵ +ẵ +Ặ +ặ +B +b +Æ€ +Æ +É“ +Æ‚ +ƃ +Ḃ +ḃ +Ḅ +ḅ +Ḇ +ḇ +C +c +Ç +ç +Ć +ć +Ĉ +ĉ +ÄŠ +Ä‹ +ÄŒ +Ä +Ƈ +ƈ +É• +Ḉ +ḉ +D +d +ÄŽ +Ä +Ä +Ä‘ +ÆŠ +É— +Æ‹ +ÆŒ +Ç… +Dz +È¡ +É– +Ḋ +ḋ +Ḍ +Ḡ+Ḏ +Ḡ+Ḡ+ḑ +Ḓ +ḓ +E +e +È +è +É +é +Ê +ê +Ë +ë +Ä’ +Ä“ +Ä” +Ä• +Ä– +Ä— +Ę +Ä™ +Äš +Ä› +È„ +È… +Ȇ +ȇ +Ȩ +È© +Ḕ +ḕ +Ḗ +ḗ +Ḙ +ḙ +Ḛ +ḛ +Ḝ +Ḡ+Ẹ +ẹ +Ẻ +ẻ +Ẽ +ẽ +Ế +ế +Ề +á» +Ể +ể +Ễ +á»… +Ệ +ệ +F +f +Æ‘ +Æ’ +Ḟ +ḟ +G +g +Äœ +Ä +Äž +ÄŸ +Ä  +Ä¡ +Ä¢ +Ä£ +Æ“ +É  +Ǥ +Ç¥ +Ǧ +ǧ +Ç´ +ǵ +Ḡ +ḡ +H +h +Ĥ +Ä¥ +Ħ +ħ +Èž +ÈŸ +ɦ +Ḣ +ḣ +Ḥ +ḥ +Ḧ +ḧ +Ḩ +ḩ +Ḫ +ḫ +ẖ +I +i +ÃŒ +ì +à +í +ÃŽ +î +à +ï +Ĩ +Ä© +Ī +Ä« +Ĭ +Ä­ +Ä® +į +Ä° +Æ— +ɨ +Ç +Ç +Ȉ +ȉ +ÈŠ +È‹ +Ḭ +ḭ +Ḯ +ḯ +Ỉ +ỉ +Ị +ị +J +j +Ä´ +ĵ +Ç° +Ê +K +k +Ķ +Ä· +Ƙ +Æ™ +Ǩ +Ç© +Ḱ +ḱ +Ḳ +ḳ +Ḵ +ḵ +L +l +Ĺ +ĺ +Ä» +ļ +Ľ +ľ +Ä¿ +Å€ +Å +Å‚ +Æš +Lj +È´ +É« +ɬ +É­ +Ḷ +ḷ +Ḹ +ḹ +Ḻ +ḻ +Ḽ +ḽ +M +m +ɱ +Ḿ +ḿ +á¹€ +á¹ +Ṃ +ṃ +N +n +Ñ +ñ +Ń +Å„ +Å… +ņ +Ň +ň +Æ +ɲ +Æž +È  +Ç‹ +Ǹ +ǹ +ȵ +ɳ +Ṅ +á¹… +Ṇ +ṇ +Ṉ +ṉ +Ṋ +ṋ +O +o +Ã’ +ò +Ó +ó +Ô +ô +Õ +õ +Ö +ö +Ø +ø +ÅŒ +Å +ÅŽ +Å +Å +Å‘ +ÆŸ +Æ  +Æ¡ +Ç‘ +Ç’ +Ǫ +Ç« +Ǭ +Ç­ +Ǿ +Ç¿ +ÈŒ +È +ÈŽ +È +Ȫ +È« +Ȭ +È­ +È® +ȯ +È° +ȱ +Ṍ +á¹ +Ṏ +á¹ +á¹ +ṑ +á¹’ +ṓ +Ọ +á» +Ỏ +á» +á» +ố +á»’ +ồ +á»” +ổ +á»– +á»— +Ộ +á»™ +Ớ +á»› +Ờ +á» +Ở +ở +á»  +ỡ +Ợ +ợ +P +p +Ƥ +Æ¥ +á¹” +ṕ +á¹– +á¹— +Q +q +Ê  +R +r +Å” +Å• +Å– +Å— +Ř +Å™ +È +È‘ +È’ +È“ +ɼ +ɽ +ɾ +Ṙ +á¹™ +Ṛ +á¹› +Ṝ +á¹ +Ṟ +ṟ +S +s +Åš +Å› +Åœ +Å +Åž +ÅŸ +Å  +Å¡ +Ș +È™ +Ê‚ +á¹  +ṡ +á¹¢ +á¹£ +Ṥ +á¹¥ +Ṧ +ṧ +Ṩ +ṩ +T +t +Å¢ +Å£ +Ť +Å¥ +Ŧ +ŧ +Æ« +Ƭ +Æ­ +Æ® +ʈ +Èš +È› +ȶ +Ṫ +ṫ +Ṭ +á¹­ +á¹® +ṯ +á¹° +á¹± +ẗ +U +u +Ù +ù +Ú +ú +Û +û +Ãœ +ü +Ũ +Å© +Ū +Å« +Ŭ +Å­ +Å® +ů +Å° +ű +Ų +ų +Ư +Æ° +Ç“ +Ç” +Ç• +Ç– +Ç— +ǘ +Ç™ +Çš +Ç› +Çœ +È” +È• +È– +È— +á¹² +á¹³ +á¹´ +á¹µ +Ṷ +á¹· +Ṹ +á¹¹ +Ṻ +á¹» +Ụ +ụ +Ủ +ủ +Ứ +ứ +Ừ +ừ +Ử +á»­ +á»® +ữ +á»° +á»± +V +v +Ʋ +Ê‹ +á¹¼ +á¹½ +á¹¾ +ṿ +W +w +Å´ +ŵ +Ẁ +Ạ+Ẃ +ẃ +Ẅ +ẅ +Ẇ +ẇ +Ẉ +ẉ +ẘ +X +x +Ẋ +ẋ +Ẍ +Ạ+Y +y +à +ý +ÿ +Ÿ +Ŷ +Å· +Ƴ +Æ´ +Ȳ +ȳ +Ẏ +Ạ+ẙ +Ỳ +ỳ +á»´ +ỵ +Ỷ +á»· +Ỹ +ỹ +Z +z +Ź +ź +Å» +ż +Ž +ž +Ƶ +ƶ +Ȥ +È¥ +Ê +Ê‘ +Ạ+ẑ +Ẓ +ẓ +Ẕ +ẕ + + diff --git a/docbook-xsl-1.76.1/common/ko.xml b/docbook-xsl-1.76.1/common/ko.xml new file mode 100644 index 0000000..5264077 --- /dev/null +++ b/docbook-xsl-1.76.1/common/ko.xml @@ -0,0 +1,1229 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Symbols +A +a +À +à +à +á + +â +à +ã +Ä +ä +Ã… +Ã¥ +Ä€ +Ä +Ä‚ +ă +Ä„ +Ä… +Ç +ÇŽ +Çž +ÇŸ +Ç  +Ç¡ +Ǻ +Ç» +È€ +È +È‚ +ȃ +Ȧ +ȧ +Ḁ +Ḡ+ẚ +Ạ +ạ +Ả +ả +Ấ +ấ +Ầ +ầ +Ẩ +ẩ +Ẫ +ẫ +Ậ +ậ +Ắ +ắ +Ằ +ằ +Ẳ +ẳ +Ẵ +ẵ +Ặ +ặ +B +b +Æ€ +Æ +É“ +Æ‚ +ƃ +Ḃ +ḃ +Ḅ +ḅ +Ḇ +ḇ +C +c +Ç +ç +Ć +ć +Ĉ +ĉ +ÄŠ +Ä‹ +ÄŒ +Ä +Ƈ +ƈ +É• +Ḉ +ḉ +D +d +ÄŽ +Ä +Ä +Ä‘ +ÆŠ +É— +Æ‹ +ÆŒ +Ç… +Dz +È¡ +É– +Ḋ +ḋ +Ḍ +Ḡ+Ḏ +Ḡ+Ḡ+ḑ +Ḓ +ḓ +E +e +È +è +É +é +Ê +ê +Ë +ë +Ä’ +Ä“ +Ä” +Ä• +Ä– +Ä— +Ę +Ä™ +Äš +Ä› +È„ +È… +Ȇ +ȇ +Ȩ +È© +Ḕ +ḕ +Ḗ +ḗ +Ḙ +ḙ +Ḛ +ḛ +Ḝ +Ḡ+Ẹ +ẹ +Ẻ +ẻ +Ẽ +ẽ +Ế +ế +Ề +á» +Ể +ể +Ễ +á»… +Ệ +ệ +F +f +Æ‘ +Æ’ +Ḟ +ḟ +G +g +Äœ +Ä +Äž +ÄŸ +Ä  +Ä¡ +Ä¢ +Ä£ +Æ“ +É  +Ǥ +Ç¥ +Ǧ +ǧ +Ç´ +ǵ +Ḡ +ḡ +H +h +Ĥ +Ä¥ +Ħ +ħ +Èž +ÈŸ +ɦ +Ḣ +ḣ +Ḥ +ḥ +Ḧ +ḧ +Ḩ +ḩ +Ḫ +ḫ +ẖ +I +i +ÃŒ +ì +à +í +ÃŽ +î +à +ï +Ĩ +Ä© +Ī +Ä« +Ĭ +Ä­ +Ä® +į +Ä° +Æ— +ɨ +Ç +Ç +Ȉ +ȉ +ÈŠ +È‹ +Ḭ +ḭ +Ḯ +ḯ +Ỉ +ỉ +Ị +ị +J +j +Ä´ +ĵ +Ç° +Ê +K +k +Ķ +Ä· +Ƙ +Æ™ +Ǩ +Ç© +Ḱ +ḱ +Ḳ +ḳ +Ḵ +ḵ +L +l +Ĺ +ĺ +Ä» +ļ +Ľ +ľ +Ä¿ +Å€ +Å +Å‚ +Æš +Lj +È´ +É« +ɬ +É­ +Ḷ +ḷ +Ḹ +ḹ +Ḻ +ḻ +Ḽ +ḽ +M +m +ɱ +Ḿ +ḿ +á¹€ +á¹ +Ṃ +ṃ +N +n +Ñ +ñ +Ń +Å„ +Å… +ņ +Ň +ň +Æ +ɲ +Æž +È  +Ç‹ +Ǹ +ǹ +ȵ +ɳ +Ṅ +á¹… +Ṇ +ṇ +Ṉ +ṉ +Ṋ +ṋ +O +o +Ã’ +ò +Ó +ó +Ô +ô +Õ +õ +Ö +ö +Ø +ø +ÅŒ +Å +ÅŽ +Å +Å +Å‘ +ÆŸ +Æ  +Æ¡ +Ç‘ +Ç’ +Ǫ +Ç« +Ǭ +Ç­ +Ǿ +Ç¿ +ÈŒ +È +ÈŽ +È +Ȫ +È« +Ȭ +È­ +È® +ȯ +È° +ȱ +Ṍ +á¹ +Ṏ +á¹ +á¹ +ṑ +á¹’ +ṓ +Ọ +á» +Ỏ +á» +á» +ố +á»’ +ồ +á»” +ổ +á»– +á»— +Ộ +á»™ +Ớ +á»› +Ờ +á» +Ở +ở +á»  +ỡ +Ợ +ợ +P +p +Ƥ +Æ¥ +á¹” +ṕ +á¹– +á¹— +Q +q +Ê  +R +r +Å” +Å• +Å– +Å— +Ř +Å™ +È +È‘ +È’ +È“ +ɼ +ɽ +ɾ +Ṙ +á¹™ +Ṛ +á¹› +Ṝ +á¹ +Ṟ +ṟ +S +s +Åš +Å› +Åœ +Å +Åž +ÅŸ +Å  +Å¡ +Ș +È™ +Ê‚ +á¹  +ṡ +á¹¢ +á¹£ +Ṥ +á¹¥ +Ṧ +ṧ +Ṩ +ṩ +T +t +Å¢ +Å£ +Ť +Å¥ +Ŧ +ŧ +Æ« +Ƭ +Æ­ +Æ® +ʈ +Èš +È› +ȶ +Ṫ +ṫ +Ṭ +á¹­ +á¹® +ṯ +á¹° +á¹± +ẗ +U +u +Ù +ù +Ú +ú +Û +û +Ãœ +ü +Ũ +Å© +Ū +Å« +Ŭ +Å­ +Å® +ů +Å° +ű +Ų +ų +Ư +Æ° +Ç“ +Ç” +Ç• +Ç– +Ç— +ǘ +Ç™ +Çš +Ç› +Çœ +È” +È• +È– +È— +á¹² +á¹³ +á¹´ +á¹µ +Ṷ +á¹· +Ṹ +á¹¹ +Ṻ +á¹» +Ụ +ụ +Ủ +ủ +Ứ +ứ +Ừ +ừ +Ử +á»­ +á»® +ữ +á»° +á»± +V +v +Ʋ +Ê‹ +á¹¼ +á¹½ +á¹¾ +ṿ +W +w +Å´ +ŵ +Ẁ +Ạ+Ẃ +ẃ +Ẅ +ẅ +Ẇ +ẇ +Ẉ +ẉ +ẘ +X +x +Ẋ +ẋ +Ẍ +Ạ+Y +y +à +ý +ÿ +Ÿ +Ŷ +Å· +Ƴ +Æ´ +Ȳ +ȳ +Ẏ +Ạ+ẙ +Ỳ +ỳ +á»´ +ỵ +Ỷ +á»· +Ỹ +ỹ +Z +z +Ź +ź +Å» +ż +Ž +ž +Ƶ +ƶ +Ȥ +È¥ +Ê +Ê‘ +Ạ+ẑ +Ẓ +ẓ +Ẕ +ẕ + + diff --git a/docbook-xsl-1.76.1/common/ky.xml b/docbook-xsl-1.76.1/common/ky.xml new file mode 100644 index 0000000..eb2e50e --- /dev/null +++ b/docbook-xsl-1.76.1/common/ky.xml @@ -0,0 +1,732 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Символдор +A +a +B +b +C +c +D +d +E +e +F +f +G +g +H +h +I +i +J +j +K +k +L +l +M +m +N +n +O +o +P +p +Q +q +R +r +S +s +T +t +U +u +V +v +W +w +X +x +Y +y +Z +z +Ð +а +Б +б +Ð’ +в +Г +г +Д +д +Е +е +Ð +Ñ‘ +Ж +ж +З +з +И +и +Й +й +К +к +Л +л +Ðœ +м +Ð +н +Ò¢ +Ò£ +О +о +Ó¨ +Ó© +П +п +Р +Ñ€ +С +Ñ +Т +Ñ‚ +У +у +Ò® +Ò¯ +Ф +Ñ„ +Ð¥ +Ñ… +Ц +ц +Ч +ч +Ш +ш +Щ +щ +Ъ +ÑŠ +Ы +Ñ‹ +Ь +ÑŒ +Э +Ñ +Ю +ÑŽ +Я +Ñ + + diff --git a/docbook-xsl-1.76.1/common/l10n.dtd b/docbook-xsl-1.76.1/common/l10n.dtd new file mode 100644 index 0000000..9bf2f66 --- /dev/null +++ b/docbook-xsl-1.76.1/common/l10n.dtd @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/common/l10n.xml b/docbook-xsl-1.76.1/common/l10n.xml new file mode 100644 index 0000000..da3df27 --- /dev/null +++ b/docbook-xsl-1.76.1/common/l10n.xml @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/common/l10n.xsl b/docbook-xsl-1.76.1/common/l10n.xsl new file mode 100644 index 0000000..f35a0b6 --- /dev/null +++ b/docbook-xsl-1.76.1/common/l10n.xsl @@ -0,0 +1,593 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No localization exists for " + + " or " + + ". Using default " + + ". + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No " + + " localization of " + + " exists + + + . + + + ; using "en". + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + bullet + + + + + + + + + + + + + + + + + + + + No " + + " localization of dingbat + + exists; using "en". + + + + + + + + + + + + + + + + startquote + + + + + + endquote + + + + + + nestedstartquote + + + + + + nestedendquote + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No " + + " localization exists. + + + + + + + + No context named " + + " exists in the " + + " localization. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No template for " + + " (or any of its leaves) exists in the context named " + + " in the " + + " localization. + + + + + + + + + + + + + + + + + + + + No " + + " localization exists. + + + + + + + + + + No context named " + + " exists in the " + + " localization. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No template for " + + " (or any of its leaves) exists in the context named " + + " in the " + + " localization. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + 0 + + + + \ No newline at end of file diff --git a/docbook-xsl-1.76.1/common/la.xml b/docbook-xsl-1.76.1/common/la.xml new file mode 100644 index 0000000..f8a7013 --- /dev/null +++ b/docbook-xsl-1.76.1/common/la.xml @@ -0,0 +1,1229 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Symbols +A +a +À +à +à +á + +â +à +ã +Ä +ä +Ã… +Ã¥ +Ä€ +Ä +Ä‚ +ă +Ä„ +Ä… +Ç +ÇŽ +Çž +ÇŸ +Ç  +Ç¡ +Ǻ +Ç» +È€ +È +È‚ +ȃ +Ȧ +ȧ +Ḁ +Ḡ+ẚ +Ạ +ạ +Ả +ả +Ấ +ấ +Ầ +ầ +Ẩ +ẩ +Ẫ +ẫ +Ậ +ậ +Ắ +ắ +Ằ +ằ +Ẳ +ẳ +Ẵ +ẵ +Ặ +ặ +B +b +Æ€ +Æ +É“ +Æ‚ +ƃ +Ḃ +ḃ +Ḅ +ḅ +Ḇ +ḇ +C +c +Ç +ç +Ć +ć +Ĉ +ĉ +ÄŠ +Ä‹ +ÄŒ +Ä +Ƈ +ƈ +É• +Ḉ +ḉ +D +d +ÄŽ +Ä +Ä +Ä‘ +ÆŠ +É— +Æ‹ +ÆŒ +Ç… +Dz +È¡ +É– +Ḋ +ḋ +Ḍ +Ḡ+Ḏ +Ḡ+Ḡ+ḑ +Ḓ +ḓ +E +e +È +è +É +é +Ê +ê +Ë +ë +Ä’ +Ä“ +Ä” +Ä• +Ä– +Ä— +Ę +Ä™ +Äš +Ä› +È„ +È… +Ȇ +ȇ +Ȩ +È© +Ḕ +ḕ +Ḗ +ḗ +Ḙ +ḙ +Ḛ +ḛ +Ḝ +Ḡ+Ẹ +ẹ +Ẻ +ẻ +Ẽ +ẽ +Ế +ế +Ề +á» +Ể +ể +Ễ +á»… +Ệ +ệ +F +f +Æ‘ +Æ’ +Ḟ +ḟ +G +g +Äœ +Ä +Äž +ÄŸ +Ä  +Ä¡ +Ä¢ +Ä£ +Æ“ +É  +Ǥ +Ç¥ +Ǧ +ǧ +Ç´ +ǵ +Ḡ +ḡ +H +h +Ĥ +Ä¥ +Ħ +ħ +Èž +ÈŸ +ɦ +Ḣ +ḣ +Ḥ +ḥ +Ḧ +ḧ +Ḩ +ḩ +Ḫ +ḫ +ẖ +I +i +ÃŒ +ì +à +í +ÃŽ +î +à +ï +Ĩ +Ä© +Ī +Ä« +Ĭ +Ä­ +Ä® +į +Ä° +Æ— +ɨ +Ç +Ç +Ȉ +ȉ +ÈŠ +È‹ +Ḭ +ḭ +Ḯ +ḯ +Ỉ +ỉ +Ị +ị +J +j +Ä´ +ĵ +Ç° +Ê +K +k +Ķ +Ä· +Ƙ +Æ™ +Ǩ +Ç© +Ḱ +ḱ +Ḳ +ḳ +Ḵ +ḵ +L +l +Ĺ +ĺ +Ä» +ļ +Ľ +ľ +Ä¿ +Å€ +Å +Å‚ +Æš +Lj +È´ +É« +ɬ +É­ +Ḷ +ḷ +Ḹ +ḹ +Ḻ +ḻ +Ḽ +ḽ +M +m +ɱ +Ḿ +ḿ +á¹€ +á¹ +Ṃ +ṃ +N +n +Ñ +ñ +Ń +Å„ +Å… +ņ +Ň +ň +Æ +ɲ +Æž +È  +Ç‹ +Ǹ +ǹ +ȵ +ɳ +Ṅ +á¹… +Ṇ +ṇ +Ṉ +ṉ +Ṋ +ṋ +O +o +Ã’ +ò +Ó +ó +Ô +ô +Õ +õ +Ö +ö +Ø +ø +ÅŒ +Å +ÅŽ +Å +Å +Å‘ +ÆŸ +Æ  +Æ¡ +Ç‘ +Ç’ +Ǫ +Ç« +Ǭ +Ç­ +Ǿ +Ç¿ +ÈŒ +È +ÈŽ +È +Ȫ +È« +Ȭ +È­ +È® +ȯ +È° +ȱ +Ṍ +á¹ +Ṏ +á¹ +á¹ +ṑ +á¹’ +ṓ +Ọ +á» +Ỏ +á» +á» +ố +á»’ +ồ +á»” +ổ +á»– +á»— +Ộ +á»™ +Ớ +á»› +Ờ +á» +Ở +ở +á»  +ỡ +Ợ +ợ +P +p +Ƥ +Æ¥ +á¹” +ṕ +á¹– +á¹— +Q +q +Ê  +R +r +Å” +Å• +Å– +Å— +Ř +Å™ +È +È‘ +È’ +È“ +ɼ +ɽ +ɾ +Ṙ +á¹™ +Ṛ +á¹› +Ṝ +á¹ +Ṟ +ṟ +S +s +Åš +Å› +Åœ +Å +Åž +ÅŸ +Å  +Å¡ +Ș +È™ +Ê‚ +á¹  +ṡ +á¹¢ +á¹£ +Ṥ +á¹¥ +Ṧ +ṧ +Ṩ +ṩ +T +t +Å¢ +Å£ +Ť +Å¥ +Ŧ +ŧ +Æ« +Ƭ +Æ­ +Æ® +ʈ +Èš +È› +ȶ +Ṫ +ṫ +Ṭ +á¹­ +á¹® +ṯ +á¹° +á¹± +ẗ +U +u +Ù +ù +Ú +ú +Û +û +Ãœ +ü +Ũ +Å© +Ū +Å« +Ŭ +Å­ +Å® +ů +Å° +ű +Ų +ų +Ư +Æ° +Ç“ +Ç” +Ç• +Ç– +Ç— +ǘ +Ç™ +Çš +Ç› +Çœ +È” +È• +È– +È— +á¹² +á¹³ +á¹´ +á¹µ +Ṷ +á¹· +Ṹ +á¹¹ +Ṻ +á¹» +Ụ +ụ +Ủ +ủ +Ứ +ứ +Ừ +ừ +Ử +á»­ +á»® +ữ +á»° +á»± +V +v +Ʋ +Ê‹ +á¹¼ +á¹½ +á¹¾ +ṿ +W +w +Å´ +ŵ +Ẁ +Ạ+Ẃ +ẃ +Ẅ +ẅ +Ẇ +ẇ +Ẉ +ẉ +ẘ +X +x +Ẋ +ẋ +Ẍ +Ạ+Y +y +à +ý +ÿ +Ÿ +Ŷ +Å· +Ƴ +Æ´ +Ȳ +ȳ +Ẏ +Ạ+ẙ +Ỳ +ỳ +á»´ +ỵ +Ỷ +á»· +Ỹ +ỹ +Z +z +Ź +ź +Å» +ż +Ž +ž +Ƶ +ƶ +Ȥ +È¥ +Ê +Ê‘ +Ạ+ẑ +Ẓ +ẓ +Ẕ +ẕ + + diff --git a/docbook-xsl-1.76.1/common/labels.xsl b/docbook-xsl-1.76.1/common/labels.xsl new file mode 100644 index 0000000..c5f74f3 --- /dev/null +++ b/docbook-xsl-1.76.1/common/labels.xsl @@ -0,0 +1,890 @@ + + + + + + + + + + +Provides access to element labels + +Processing an element in the +label.markup mode produces the +element label. +Trailing punctuation is not added to the label. + + + + + + . + + + + + + + Request for label of unexpected element: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + label.markup: this can't happen! + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +   + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + a + i + A + I + + + + Unexpected numeration: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + + + + +Returns true if $section should be labelled + +Returns true if the specified section should be labelled. +By default, this template returns zero unless +the section level is less than or equal to the value of the +$section.autolabel.max.depth parameter, in +which case it returns +$section.autolabel. +Custom stylesheets may override it to get more selective behavior. + + + + + + + + + + + + + + + 1 + + + + + + + + + + + 1 + + + + + + + + + + + + + + + + + + Unexpected .autolabel value: + ; using default. + + + + + + + + + +Returns format for autolabel parameters + +Returns format passed as parameter if non zero. Supported + format are 'arabic' or '1', 'loweralpha' or 'a', 'lowerroman' or 'i', + 'upperlapha' or 'A', 'upperroman' or 'I', 'arabicindic' or '١'. + If its not one of these then + returns the default format. + + + + + + diff --git a/docbook-xsl-1.76.1/common/lt.xml b/docbook-xsl-1.76.1/common/lt.xml new file mode 100644 index 0000000..9f9a545 --- /dev/null +++ b/docbook-xsl-1.76.1/common/lt.xml @@ -0,0 +1,678 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Simboliai +A +a +Ä„ +Ä… +B +b +C +c +ÄŒ +Ä +D +d +E +e +Ę +Ä™ +Ä– +Ä— +F +f +G +g +H +h +I +i +Ä® +į +Y +y +J +j +K +k +L +l +M +m +N +n +O +o +P +p +R +r +S +s +Å  +Å¡ +T +t +U +u +Ų +ų +Ū +Å« +V +v +Z +z +Ž +ž +Q +q +W +w +X +x + + diff --git a/docbook-xsl-1.76.1/common/lv.xml b/docbook-xsl-1.76.1/common/lv.xml new file mode 100644 index 0000000..ce6ba49 --- /dev/null +++ b/docbook-xsl-1.76.1/common/lv.xml @@ -0,0 +1,1229 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Symbols +A +a +À +à +à +á + +â +à +ã +Ä +ä +Ã… +Ã¥ +Ä€ +Ä +Ä‚ +ă +Ä„ +Ä… +Ç +ÇŽ +Çž +ÇŸ +Ç  +Ç¡ +Ǻ +Ç» +È€ +È +È‚ +ȃ +Ȧ +ȧ +Ḁ +Ḡ+ẚ +Ạ +ạ +Ả +ả +Ấ +ấ +Ầ +ầ +Ẩ +ẩ +Ẫ +ẫ +Ậ +ậ +Ắ +ắ +Ằ +ằ +Ẳ +ẳ +Ẵ +ẵ +Ặ +ặ +B +b +Æ€ +Æ +É“ +Æ‚ +ƃ +Ḃ +ḃ +Ḅ +ḅ +Ḇ +ḇ +C +c +Ç +ç +Ć +ć +Ĉ +ĉ +ÄŠ +Ä‹ +ÄŒ +Ä +Ƈ +ƈ +É• +Ḉ +ḉ +D +d +ÄŽ +Ä +Ä +Ä‘ +ÆŠ +É— +Æ‹ +ÆŒ +Ç… +Dz +È¡ +É– +Ḋ +ḋ +Ḍ +Ḡ+Ḏ +Ḡ+Ḡ+ḑ +Ḓ +ḓ +E +e +È +è +É +é +Ê +ê +Ë +ë +Ä’ +Ä“ +Ä” +Ä• +Ä– +Ä— +Ę +Ä™ +Äš +Ä› +È„ +È… +Ȇ +ȇ +Ȩ +È© +Ḕ +ḕ +Ḗ +ḗ +Ḙ +ḙ +Ḛ +ḛ +Ḝ +Ḡ+Ẹ +ẹ +Ẻ +ẻ +Ẽ +ẽ +Ế +ế +Ề +á» +Ể +ể +Ễ +á»… +Ệ +ệ +F +f +Æ‘ +Æ’ +Ḟ +ḟ +G +g +Äœ +Ä +Äž +ÄŸ +Ä  +Ä¡ +Ä¢ +Ä£ +Æ“ +É  +Ǥ +Ç¥ +Ǧ +ǧ +Ç´ +ǵ +Ḡ +ḡ +H +h +Ĥ +Ä¥ +Ħ +ħ +Èž +ÈŸ +ɦ +Ḣ +ḣ +Ḥ +ḥ +Ḧ +ḧ +Ḩ +ḩ +Ḫ +ḫ +ẖ +I +i +ÃŒ +ì +à +í +ÃŽ +î +à +ï +Ĩ +Ä© +Ī +Ä« +Ĭ +Ä­ +Ä® +į +Ä° +Æ— +ɨ +Ç +Ç +Ȉ +ȉ +ÈŠ +È‹ +Ḭ +ḭ +Ḯ +ḯ +Ỉ +ỉ +Ị +ị +J +j +Ä´ +ĵ +Ç° +Ê +K +k +Ķ +Ä· +Ƙ +Æ™ +Ǩ +Ç© +Ḱ +ḱ +Ḳ +ḳ +Ḵ +ḵ +L +l +Ĺ +ĺ +Ä» +ļ +Ľ +ľ +Ä¿ +Å€ +Å +Å‚ +Æš +Lj +È´ +É« +ɬ +É­ +Ḷ +ḷ +Ḹ +ḹ +Ḻ +ḻ +Ḽ +ḽ +M +m +ɱ +Ḿ +ḿ +á¹€ +á¹ +Ṃ +ṃ +N +n +Ñ +ñ +Ń +Å„ +Å… +ņ +Ň +ň +Æ +ɲ +Æž +È  +Ç‹ +Ǹ +ǹ +ȵ +ɳ +Ṅ +á¹… +Ṇ +ṇ +Ṉ +ṉ +Ṋ +ṋ +O +o +Ã’ +ò +Ó +ó +Ô +ô +Õ +õ +Ö +ö +Ø +ø +ÅŒ +Å +ÅŽ +Å +Å +Å‘ +ÆŸ +Æ  +Æ¡ +Ç‘ +Ç’ +Ǫ +Ç« +Ǭ +Ç­ +Ǿ +Ç¿ +ÈŒ +È +ÈŽ +È +Ȫ +È« +Ȭ +È­ +È® +ȯ +È° +ȱ +Ṍ +á¹ +Ṏ +á¹ +á¹ +ṑ +á¹’ +ṓ +Ọ +á» +Ỏ +á» +á» +ố +á»’ +ồ +á»” +ổ +á»– +á»— +Ộ +á»™ +Ớ +á»› +Ờ +á» +Ở +ở +á»  +ỡ +Ợ +ợ +P +p +Ƥ +Æ¥ +á¹” +ṕ +á¹– +á¹— +Q +q +Ê  +R +r +Å” +Å• +Å– +Å— +Ř +Å™ +È +È‘ +È’ +È“ +ɼ +ɽ +ɾ +Ṙ +á¹™ +Ṛ +á¹› +Ṝ +á¹ +Ṟ +ṟ +S +s +Åš +Å› +Åœ +Å +Åž +ÅŸ +Å  +Å¡ +Ș +È™ +Ê‚ +á¹  +ṡ +á¹¢ +á¹£ +Ṥ +á¹¥ +Ṧ +ṧ +Ṩ +ṩ +T +t +Å¢ +Å£ +Ť +Å¥ +Ŧ +ŧ +Æ« +Ƭ +Æ­ +Æ® +ʈ +Èš +È› +ȶ +Ṫ +ṫ +Ṭ +á¹­ +á¹® +ṯ +á¹° +á¹± +ẗ +U +u +Ù +ù +Ú +ú +Û +û +Ãœ +ü +Ũ +Å© +Ū +Å« +Ŭ +Å­ +Å® +ů +Å° +ű +Ų +ų +Ư +Æ° +Ç“ +Ç” +Ç• +Ç– +Ç— +ǘ +Ç™ +Çš +Ç› +Çœ +È” +È• +È– +È— +á¹² +á¹³ +á¹´ +á¹µ +Ṷ +á¹· +Ṹ +á¹¹ +Ṻ +á¹» +Ụ +ụ +Ủ +ủ +Ứ +ứ +Ừ +ừ +Ử +á»­ +á»® +ữ +á»° +á»± +V +v +Ʋ +Ê‹ +á¹¼ +á¹½ +á¹¾ +ṿ +W +w +Å´ +ŵ +Ẁ +Ạ+Ẃ +ẃ +Ẅ +ẅ +Ẇ +ẇ +Ẉ +ẉ +ẘ +X +x +Ẋ +ẋ +Ẍ +Ạ+Y +y +à +ý +ÿ +Ÿ +Ŷ +Å· +Ƴ +Æ´ +Ȳ +ȳ +Ẏ +Ạ+ẙ +Ỳ +ỳ +á»´ +ỵ +Ỷ +á»· +Ỹ +ỹ +Z +z +Ź +ź +Å» +ż +Ž +ž +Ƶ +ƶ +Ȥ +È¥ +Ê +Ê‘ +Ạ+ẑ +Ẓ +ẓ +Ẕ +ẕ + + diff --git a/docbook-xsl-1.76.1/common/ml.xml b/docbook-xsl-1.76.1/common/ml.xml new file mode 100644 index 0000000..280e7db --- /dev/null +++ b/docbook-xsl-1.76.1/common/ml.xml @@ -0,0 +1,660 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +à´šà´¿à´¹àµà´¨à´™àµà´™à´³àµâ€ +A +a +B +b +C +c +D +d +E +e +F +f +G +g +H +h +I +i +J +j +K +k +L +l +M +m +N +n +O +o +P +p +Q +q +R +r +S +s +T +t +U +u +V +v +W +w +X +x +Y +y +Z +z + + diff --git a/docbook-xsl-1.76.1/common/mn.xml b/docbook-xsl-1.76.1/common/mn.xml new file mode 100644 index 0000000..ef95526 --- /dev/null +++ b/docbook-xsl-1.76.1/common/mn.xml @@ -0,0 +1,730 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +ТÑмдÑгтүүд +A +a +B +b +C +c +D +d +E +e +F +f +G +g +H +h +I +i +J +j +K +k +L +l +M +m +N +n +O +o +P +p +Q +q +R +r +S +s +T +t +U +u +V +v +W +w +X +x +Y +y +Z +z +Ð +а +Б +б +Ð’ +в +Г +г +Д +д +Е +е +Ð +Ñ‘ +Ж +ж +З +з +И +и +Й +й +К +к +Л +л +Ðœ +м +Ð +н +О +о +Ó¨ +Ó© +П +п +Р +Ñ€ +С +Ñ +Т +Ñ‚ +У +у +Ò® +Ò¯ +Ф +Ñ„ +Ð¥ +Ñ… +Ц +ц +Ч +ч +Ш +ш +Щ +щ +Ъ +ÑŠ +Ы +Ñ‹ +Ь +ÑŒ +Э +Ñ +Ю +ÑŽ +Я +Ñ + + diff --git a/docbook-xsl-1.76.1/common/mr.xml b/docbook-xsl-1.76.1/common/mr.xml new file mode 100644 index 0000000..798fff5 --- /dev/null +++ b/docbook-xsl-1.76.1/common/mr.xml @@ -0,0 +1,660 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +पà¥à¤°à¤¤à¥€à¤• +A +a +B +b +C +c +D +d +E +e +F +f +G +g +H +h +I +i +J +j +K +k +L +l +M +m +N +n +O +o +P +p +Q +q +R +r +S +s +T +t +U +u +V +v +W +w +X +x +Y +y +Z +z + + diff --git a/docbook-xsl-1.76.1/common/nb.xml b/docbook-xsl-1.76.1/common/nb.xml new file mode 100644 index 0000000..b9d8a4f --- /dev/null +++ b/docbook-xsl-1.76.1/common/nb.xml @@ -0,0 +1,1229 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Symbols +A +a +À +à +à +á + +â +à +ã +Ä +ä +Ã… +Ã¥ +Ä€ +Ä +Ä‚ +ă +Ä„ +Ä… +Ç +ÇŽ +Çž +ÇŸ +Ç  +Ç¡ +Ǻ +Ç» +È€ +È +È‚ +ȃ +Ȧ +ȧ +Ḁ +Ḡ+ẚ +Ạ +ạ +Ả +ả +Ấ +ấ +Ầ +ầ +Ẩ +ẩ +Ẫ +ẫ +Ậ +ậ +Ắ +ắ +Ằ +ằ +Ẳ +ẳ +Ẵ +ẵ +Ặ +ặ +B +b +Æ€ +Æ +É“ +Æ‚ +ƃ +Ḃ +ḃ +Ḅ +ḅ +Ḇ +ḇ +C +c +Ç +ç +Ć +ć +Ĉ +ĉ +ÄŠ +Ä‹ +ÄŒ +Ä +Ƈ +ƈ +É• +Ḉ +ḉ +D +d +ÄŽ +Ä +Ä +Ä‘ +ÆŠ +É— +Æ‹ +ÆŒ +Ç… +Dz +È¡ +É– +Ḋ +ḋ +Ḍ +Ḡ+Ḏ +Ḡ+Ḡ+ḑ +Ḓ +ḓ +E +e +È +è +É +é +Ê +ê +Ë +ë +Ä’ +Ä“ +Ä” +Ä• +Ä– +Ä— +Ę +Ä™ +Äš +Ä› +È„ +È… +Ȇ +ȇ +Ȩ +È© +Ḕ +ḕ +Ḗ +ḗ +Ḙ +ḙ +Ḛ +ḛ +Ḝ +Ḡ+Ẹ +ẹ +Ẻ +ẻ +Ẽ +ẽ +Ế +ế +Ề +á» +Ể +ể +Ễ +á»… +Ệ +ệ +F +f +Æ‘ +Æ’ +Ḟ +ḟ +G +g +Äœ +Ä +Äž +ÄŸ +Ä  +Ä¡ +Ä¢ +Ä£ +Æ“ +É  +Ǥ +Ç¥ +Ǧ +ǧ +Ç´ +ǵ +Ḡ +ḡ +H +h +Ĥ +Ä¥ +Ħ +ħ +Èž +ÈŸ +ɦ +Ḣ +ḣ +Ḥ +ḥ +Ḧ +ḧ +Ḩ +ḩ +Ḫ +ḫ +ẖ +I +i +ÃŒ +ì +à +í +ÃŽ +î +à +ï +Ĩ +Ä© +Ī +Ä« +Ĭ +Ä­ +Ä® +į +Ä° +Æ— +ɨ +Ç +Ç +Ȉ +ȉ +ÈŠ +È‹ +Ḭ +ḭ +Ḯ +ḯ +Ỉ +ỉ +Ị +ị +J +j +Ä´ +ĵ +Ç° +Ê +K +k +Ķ +Ä· +Ƙ +Æ™ +Ǩ +Ç© +Ḱ +ḱ +Ḳ +ḳ +Ḵ +ḵ +L +l +Ĺ +ĺ +Ä» +ļ +Ľ +ľ +Ä¿ +Å€ +Å +Å‚ +Æš +Lj +È´ +É« +ɬ +É­ +Ḷ +ḷ +Ḹ +ḹ +Ḻ +ḻ +Ḽ +ḽ +M +m +ɱ +Ḿ +ḿ +á¹€ +á¹ +Ṃ +ṃ +N +n +Ñ +ñ +Ń +Å„ +Å… +ņ +Ň +ň +Æ +ɲ +Æž +È  +Ç‹ +Ǹ +ǹ +ȵ +ɳ +Ṅ +á¹… +Ṇ +ṇ +Ṉ +ṉ +Ṋ +ṋ +O +o +Ã’ +ò +Ó +ó +Ô +ô +Õ +õ +Ö +ö +Ø +ø +ÅŒ +Å +ÅŽ +Å +Å +Å‘ +ÆŸ +Æ  +Æ¡ +Ç‘ +Ç’ +Ǫ +Ç« +Ǭ +Ç­ +Ǿ +Ç¿ +ÈŒ +È +ÈŽ +È +Ȫ +È« +Ȭ +È­ +È® +ȯ +È° +ȱ +Ṍ +á¹ +Ṏ +á¹ +á¹ +ṑ +á¹’ +ṓ +Ọ +á» +Ỏ +á» +á» +ố +á»’ +ồ +á»” +ổ +á»– +á»— +Ộ +á»™ +Ớ +á»› +Ờ +á» +Ở +ở +á»  +ỡ +Ợ +ợ +P +p +Ƥ +Æ¥ +á¹” +ṕ +á¹– +á¹— +Q +q +Ê  +R +r +Å” +Å• +Å– +Å— +Ř +Å™ +È +È‘ +È’ +È“ +ɼ +ɽ +ɾ +Ṙ +á¹™ +Ṛ +á¹› +Ṝ +á¹ +Ṟ +ṟ +S +s +Åš +Å› +Åœ +Å +Åž +ÅŸ +Å  +Å¡ +Ș +È™ +Ê‚ +á¹  +ṡ +á¹¢ +á¹£ +Ṥ +á¹¥ +Ṧ +ṧ +Ṩ +ṩ +T +t +Å¢ +Å£ +Ť +Å¥ +Ŧ +ŧ +Æ« +Ƭ +Æ­ +Æ® +ʈ +Èš +È› +ȶ +Ṫ +ṫ +Ṭ +á¹­ +á¹® +ṯ +á¹° +á¹± +ẗ +U +u +Ù +ù +Ú +ú +Û +û +Ãœ +ü +Ũ +Å© +Ū +Å« +Ŭ +Å­ +Å® +ů +Å° +ű +Ų +ų +Ư +Æ° +Ç“ +Ç” +Ç• +Ç– +Ç— +ǘ +Ç™ +Çš +Ç› +Çœ +È” +È• +È– +È— +á¹² +á¹³ +á¹´ +á¹µ +Ṷ +á¹· +Ṹ +á¹¹ +Ṻ +á¹» +Ụ +ụ +Ủ +ủ +Ứ +ứ +Ừ +ừ +Ử +á»­ +á»® +ữ +á»° +á»± +V +v +Ʋ +Ê‹ +á¹¼ +á¹½ +á¹¾ +ṿ +W +w +Å´ +ŵ +Ẁ +Ạ+Ẃ +ẃ +Ẅ +ẅ +Ẇ +ẇ +Ẉ +ẉ +ẘ +X +x +Ẋ +ẋ +Ẍ +Ạ+Y +y +à +ý +ÿ +Ÿ +Ŷ +Å· +Ƴ +Æ´ +Ȳ +ȳ +Ẏ +Ạ+ẙ +Ỳ +ỳ +á»´ +ỵ +Ỷ +á»· +Ỹ +ỹ +Z +z +Ź +ź +Å» +ż +Ž +ž +Ƶ +ƶ +Ȥ +È¥ +Ê +Ê‘ +Ạ+ẑ +Ẓ +ẓ +Ẕ +ẕ + + diff --git a/docbook-xsl-1.76.1/common/nds.xml b/docbook-xsl-1.76.1/common/nds.xml new file mode 100644 index 0000000..af4b296 --- /dev/null +++ b/docbook-xsl-1.76.1/common/nds.xml @@ -0,0 +1,666 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Symbole +A +a +Ä +ä +B +b +C +c +D +d +E +e +F +f +G +g +H +h +I +i +J +j +K +k +L +l +M +m +N +n +O +o +Ö +ö +P +p +Q +q +R +r +S +s +T +t +U +u +Ãœ +ü +V +v +W +w +X +x +Y +y +Z +z + + diff --git a/docbook-xsl-1.76.1/common/nl.xml b/docbook-xsl-1.76.1/common/nl.xml new file mode 100644 index 0000000..33fb1f4 --- /dev/null +++ b/docbook-xsl-1.76.1/common/nl.xml @@ -0,0 +1,660 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Symbolen +A +a +B +b +C +c +D +d +E +e +F +f +G +g +H +h +I +i +J +j +K +k +L +l +M +m +N +n +O +o +P +p +Q +q +R +r +S +s +T +t +U +u +V +v +W +w +X +x +Y +y +Z +z + + diff --git a/docbook-xsl-1.76.1/common/nn.xml b/docbook-xsl-1.76.1/common/nn.xml new file mode 100644 index 0000000..4898d42 --- /dev/null +++ b/docbook-xsl-1.76.1/common/nn.xml @@ -0,0 +1,1229 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Symbols +A +a +À +à +à +á + +â +à +ã +Ä +ä +Ã… +Ã¥ +Ä€ +Ä +Ä‚ +ă +Ä„ +Ä… +Ç +ÇŽ +Çž +ÇŸ +Ç  +Ç¡ +Ǻ +Ç» +È€ +È +È‚ +ȃ +Ȧ +ȧ +Ḁ +Ḡ+ẚ +Ạ +ạ +Ả +ả +Ấ +ấ +Ầ +ầ +Ẩ +ẩ +Ẫ +ẫ +Ậ +ậ +Ắ +ắ +Ằ +ằ +Ẳ +ẳ +Ẵ +ẵ +Ặ +ặ +B +b +Æ€ +Æ +É“ +Æ‚ +ƃ +Ḃ +ḃ +Ḅ +ḅ +Ḇ +ḇ +C +c +Ç +ç +Ć +ć +Ĉ +ĉ +ÄŠ +Ä‹ +ÄŒ +Ä +Ƈ +ƈ +É• +Ḉ +ḉ +D +d +ÄŽ +Ä +Ä +Ä‘ +ÆŠ +É— +Æ‹ +ÆŒ +Ç… +Dz +È¡ +É– +Ḋ +ḋ +Ḍ +Ḡ+Ḏ +Ḡ+Ḡ+ḑ +Ḓ +ḓ +E +e +È +è +É +é +Ê +ê +Ë +ë +Ä’ +Ä“ +Ä” +Ä• +Ä– +Ä— +Ę +Ä™ +Äš +Ä› +È„ +È… +Ȇ +ȇ +Ȩ +È© +Ḕ +ḕ +Ḗ +ḗ +Ḙ +ḙ +Ḛ +ḛ +Ḝ +Ḡ+Ẹ +ẹ +Ẻ +ẻ +Ẽ +ẽ +Ế +ế +Ề +á» +Ể +ể +Ễ +á»… +Ệ +ệ +F +f +Æ‘ +Æ’ +Ḟ +ḟ +G +g +Äœ +Ä +Äž +ÄŸ +Ä  +Ä¡ +Ä¢ +Ä£ +Æ“ +É  +Ǥ +Ç¥ +Ǧ +ǧ +Ç´ +ǵ +Ḡ +ḡ +H +h +Ĥ +Ä¥ +Ħ +ħ +Èž +ÈŸ +ɦ +Ḣ +ḣ +Ḥ +ḥ +Ḧ +ḧ +Ḩ +ḩ +Ḫ +ḫ +ẖ +I +i +ÃŒ +ì +à +í +ÃŽ +î +à +ï +Ĩ +Ä© +Ī +Ä« +Ĭ +Ä­ +Ä® +į +Ä° +Æ— +ɨ +Ç +Ç +Ȉ +ȉ +ÈŠ +È‹ +Ḭ +ḭ +Ḯ +ḯ +Ỉ +ỉ +Ị +ị +J +j +Ä´ +ĵ +Ç° +Ê +K +k +Ķ +Ä· +Ƙ +Æ™ +Ǩ +Ç© +Ḱ +ḱ +Ḳ +ḳ +Ḵ +ḵ +L +l +Ĺ +ĺ +Ä» +ļ +Ľ +ľ +Ä¿ +Å€ +Å +Å‚ +Æš +Lj +È´ +É« +ɬ +É­ +Ḷ +ḷ +Ḹ +ḹ +Ḻ +ḻ +Ḽ +ḽ +M +m +ɱ +Ḿ +ḿ +á¹€ +á¹ +Ṃ +ṃ +N +n +Ñ +ñ +Ń +Å„ +Å… +ņ +Ň +ň +Æ +ɲ +Æž +È  +Ç‹ +Ǹ +ǹ +ȵ +ɳ +Ṅ +á¹… +Ṇ +ṇ +Ṉ +ṉ +Ṋ +ṋ +O +o +Ã’ +ò +Ó +ó +Ô +ô +Õ +õ +Ö +ö +Ø +ø +ÅŒ +Å +ÅŽ +Å +Å +Å‘ +ÆŸ +Æ  +Æ¡ +Ç‘ +Ç’ +Ǫ +Ç« +Ǭ +Ç­ +Ǿ +Ç¿ +ÈŒ +È +ÈŽ +È +Ȫ +È« +Ȭ +È­ +È® +ȯ +È° +ȱ +Ṍ +á¹ +Ṏ +á¹ +á¹ +ṑ +á¹’ +ṓ +Ọ +á» +Ỏ +á» +á» +ố +á»’ +ồ +á»” +ổ +á»– +á»— +Ộ +á»™ +Ớ +á»› +Ờ +á» +Ở +ở +á»  +ỡ +Ợ +ợ +P +p +Ƥ +Æ¥ +á¹” +ṕ +á¹– +á¹— +Q +q +Ê  +R +r +Å” +Å• +Å– +Å— +Ř +Å™ +È +È‘ +È’ +È“ +ɼ +ɽ +ɾ +Ṙ +á¹™ +Ṛ +á¹› +Ṝ +á¹ +Ṟ +ṟ +S +s +Åš +Å› +Åœ +Å +Åž +ÅŸ +Å  +Å¡ +Ș +È™ +Ê‚ +á¹  +ṡ +á¹¢ +á¹£ +Ṥ +á¹¥ +Ṧ +ṧ +Ṩ +ṩ +T +t +Å¢ +Å£ +Ť +Å¥ +Ŧ +ŧ +Æ« +Ƭ +Æ­ +Æ® +ʈ +Èš +È› +ȶ +Ṫ +ṫ +Ṭ +á¹­ +á¹® +ṯ +á¹° +á¹± +ẗ +U +u +Ù +ù +Ú +ú +Û +û +Ãœ +ü +Ũ +Å© +Ū +Å« +Ŭ +Å­ +Å® +ů +Å° +ű +Ų +ų +Ư +Æ° +Ç“ +Ç” +Ç• +Ç– +Ç— +ǘ +Ç™ +Çš +Ç› +Çœ +È” +È• +È– +È— +á¹² +á¹³ +á¹´ +á¹µ +Ṷ +á¹· +Ṹ +á¹¹ +Ṻ +á¹» +Ụ +ụ +Ủ +ủ +Ứ +ứ +Ừ +ừ +Ử +á»­ +á»® +ữ +á»° +á»± +V +v +Ʋ +Ê‹ +á¹¼ +á¹½ +á¹¾ +ṿ +W +w +Å´ +ŵ +Ẁ +Ạ+Ẃ +ẃ +Ẅ +ẅ +Ẇ +ẇ +Ẉ +ẉ +ẘ +X +x +Ẋ +ẋ +Ẍ +Ạ+Y +y +à +ý +ÿ +Ÿ +Ŷ +Å· +Ƴ +Æ´ +Ȳ +ȳ +Ẏ +Ạ+ẙ +Ỳ +ỳ +á»´ +ỵ +Ỷ +á»· +Ỹ +ỹ +Z +z +Ź +ź +Å» +ż +Ž +ž +Ƶ +ƶ +Ȥ +È¥ +Ê +Ê‘ +Ạ+ẑ +Ẓ +ẓ +Ẕ +ẕ + + diff --git a/docbook-xsl-1.76.1/common/olink.xsl b/docbook-xsl-1.76.1/common/olink.xsl new file mode 100644 index 0000000..a790eb7 --- /dev/null +++ b/docbook-xsl-1.76.1/common/olink.xsl @@ -0,0 +1,1225 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Olinks not processed: must specify a + $target.database.document parameter + when using olinks with targetdoc + and targetptr attributes. + + + + + + Olink error: could not open target database ' + + '. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Olink debug: cases for targetdoc=' + + ' and targetptr=' + + ' in language ' + + '. + + + + + + + + + + + + + + Olink debug: CaseA matched. + + + + Olink debug: CaseA NOT matched + + + + + + + + + + + + + + + + Olink debug: CaseB matched. + + + + Olink debug: CaseB NOT matched + + + + + + + + + + + + + + + + + Olink debug: CaseC matched. + + + + Olink debug: CaseC NOT matched. + + + + + + + + + + + + + + + + + Olink debug: CaseD matched. + + + + Olink debug: CaseD NOT matched + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Olink debug: CaseE matched. + + + + Olink debug: CaseE NOT matched. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Olink debug: CaseF matched. + + + + Olink debug: CaseF NOT matched. + + + + + + + + + + + + + + Olink debug: CaseB key is the final selection: + + + + + + + + + Olink debug: CaseA key is the final selection: + + + + + + + + + Olink debug: CaseC key is the final selection: + + + + + + + + + Olink debug: CaseD key is the final selection: + + + + + + + + + Olink debug: CaseF key is the final selection: + + + + + + + + + Olink debug: CaseE key is the final selection: + + + + + + + + Olink debug: No case matched for lang ' + + '. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Olink error: cannot compute relative + sitemap path because $current.docid ' + + ' not found in target database. + + + + + + + Olink warning: cannot compute relative + sitemap path without $current.docid parameter + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + xrefstyle is ' + + '. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Olink error: no gentext template + exists for xrefstyle ' + + ' for element ' + + ' in language ' + + ' in context 'xref-number-and-title + '. Using template without @style. + + + + + + + + Olink error: no gentext template + exists for xrefstyle ' + + ' for element ' + + ' in language ' + + ' in context 'xref-number + '. Using template without @style. + + + + + + + + Olink error: no gentext template + exists for xrefstyle ' + + ' for element ' + + ' in language ' + + ' in context 'xref + '. Using template without @style. + + + + + + Olink error: no gentext template + exists for xrefstyle ' + + ' for element ' + + ' in language ' + + '. Trying '%t'. + + + + + + + + + + + Olink debug: xrefstyle template is ' + + '. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Olink error: no generated text for + targetdoc/targetptr/lang = ' + + '. + + ???? + + + + + + + Olink error: no generated text for + targetdoc/targetptr/lang = ' + + '. + + + ???? + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Olink error: cannot locate targetdoc in sitemap + + + + + + + / + + + + + + + + + + + ../ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/common/or.xml b/docbook-xsl-1.76.1/common/or.xml new file mode 100644 index 0000000..2995ac0 --- /dev/null +++ b/docbook-xsl-1.76.1/common/or.xml @@ -0,0 +1,1229 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +ପà­à¬°à¬¤à­€à¬• +A +a +À +à +à +á + +â +à +ã +Ä +ä +Ã… +Ã¥ +Ä€ +Ä +Ä‚ +ă +Ä„ +Ä… +Ç +ÇŽ +Çž +ÇŸ +Ç  +Ç¡ +Ǻ +Ç» +È€ +È +È‚ +ȃ +Ȧ +ȧ +Ḁ +Ḡ+ẚ +Ạ +ạ +Ả +ả +Ấ +ấ +Ầ +ầ +Ẩ +ẩ +Ẫ +ẫ +Ậ +ậ +Ắ +ắ +Ằ +ằ +Ẳ +ẳ +Ẵ +ẵ +Ặ +ặ +B +b +Æ€ +Æ +É“ +Æ‚ +ƃ +Ḃ +ḃ +Ḅ +ḅ +Ḇ +ḇ +C +c +Ç +ç +Ć +ć +Ĉ +ĉ +ÄŠ +Ä‹ +ÄŒ +Ä +Ƈ +ƈ +É• +Ḉ +ḉ +D +d +ÄŽ +Ä +Ä +Ä‘ +ÆŠ +É— +Æ‹ +ÆŒ +Ç… +Dz +È¡ +É– +Ḋ +ḋ +Ḍ +Ḡ+Ḏ +Ḡ+Ḡ+ḑ +Ḓ +ḓ +E +e +È +è +É +é +Ê +ê +Ë +ë +Ä’ +Ä“ +Ä” +Ä• +Ä– +Ä— +Ę +Ä™ +Äš +Ä› +È„ +È… +Ȇ +ȇ +Ȩ +È© +Ḕ +ḕ +Ḗ +ḗ +Ḙ +ḙ +Ḛ +ḛ +Ḝ +Ḡ+Ẹ +ẹ +Ẻ +ẻ +Ẽ +ẽ +Ế +ế +Ề +á» +Ể +ể +Ễ +á»… +Ệ +ệ +F +f +Æ‘ +Æ’ +Ḟ +ḟ +G +g +Äœ +Ä +Äž +ÄŸ +Ä  +Ä¡ +Ä¢ +Ä£ +Æ“ +É  +Ǥ +Ç¥ +Ǧ +ǧ +Ç´ +ǵ +Ḡ +ḡ +H +h +Ĥ +Ä¥ +Ħ +ħ +Èž +ÈŸ +ɦ +Ḣ +ḣ +Ḥ +ḥ +Ḧ +ḧ +Ḩ +ḩ +Ḫ +ḫ +ẖ +I +i +ÃŒ +ì +à +í +ÃŽ +î +à +ï +Ĩ +Ä© +Ī +Ä« +Ĭ +Ä­ +Ä® +į +Ä° +Æ— +ɨ +Ç +Ç +Ȉ +ȉ +ÈŠ +È‹ +Ḭ +ḭ +Ḯ +ḯ +Ỉ +ỉ +Ị +ị +J +j +Ä´ +ĵ +Ç° +Ê +K +k +Ķ +Ä· +Ƙ +Æ™ +Ǩ +Ç© +Ḱ +ḱ +Ḳ +ḳ +Ḵ +ḵ +L +l +Ĺ +ĺ +Ä» +ļ +Ľ +ľ +Ä¿ +Å€ +Å +Å‚ +Æš +Lj +È´ +É« +ɬ +É­ +Ḷ +ḷ +Ḹ +ḹ +Ḻ +ḻ +Ḽ +ḽ +M +m +ɱ +Ḿ +ḿ +á¹€ +á¹ +Ṃ +ṃ +N +n +Ñ +ñ +Ń +Å„ +Å… +ņ +Ň +ň +Æ +ɲ +Æž +È  +Ç‹ +Ǹ +ǹ +ȵ +ɳ +Ṅ +á¹… +Ṇ +ṇ +Ṉ +ṉ +Ṋ +ṋ +O +o +Ã’ +ò +Ó +ó +Ô +ô +Õ +õ +Ö +ö +Ø +ø +ÅŒ +Å +ÅŽ +Å +Å +Å‘ +ÆŸ +Æ  +Æ¡ +Ç‘ +Ç’ +Ǫ +Ç« +Ǭ +Ç­ +Ǿ +Ç¿ +ÈŒ +È +ÈŽ +È +Ȫ +È« +Ȭ +È­ +È® +ȯ +È° +ȱ +Ṍ +á¹ +Ṏ +á¹ +á¹ +ṑ +á¹’ +ṓ +Ọ +á» +Ỏ +á» +á» +ố +á»’ +ồ +á»” +ổ +á»– +á»— +Ộ +á»™ +Ớ +á»› +Ờ +á» +Ở +ở +á»  +ỡ +Ợ +ợ +P +p +Ƥ +Æ¥ +á¹” +ṕ +á¹– +á¹— +Q +q +Ê  +R +r +Å” +Å• +Å– +Å— +Ř +Å™ +È +È‘ +È’ +È“ +ɼ +ɽ +ɾ +Ṙ +á¹™ +Ṛ +á¹› +Ṝ +á¹ +Ṟ +ṟ +S +s +Åš +Å› +Åœ +Å +Åž +ÅŸ +Å  +Å¡ +Ș +È™ +Ê‚ +á¹  +ṡ +á¹¢ +á¹£ +Ṥ +á¹¥ +Ṧ +ṧ +Ṩ +ṩ +T +t +Å¢ +Å£ +Ť +Å¥ +Ŧ +ŧ +Æ« +Ƭ +Æ­ +Æ® +ʈ +Èš +È› +ȶ +Ṫ +ṫ +Ṭ +á¹­ +á¹® +ṯ +á¹° +á¹± +ẗ +U +u +Ù +ù +Ú +ú +Û +û +Ãœ +ü +Ũ +Å© +Ū +Å« +Ŭ +Å­ +Å® +ů +Å° +ű +Ų +ų +Ư +Æ° +Ç“ +Ç” +Ç• +Ç– +Ç— +ǘ +Ç™ +Çš +Ç› +Çœ +È” +È• +È– +È— +á¹² +á¹³ +á¹´ +á¹µ +Ṷ +á¹· +Ṹ +á¹¹ +Ṻ +á¹» +Ụ +ụ +Ủ +ủ +Ứ +ứ +Ừ +ừ +Ử +á»­ +á»® +ữ +á»° +á»± +V +v +Ʋ +Ê‹ +á¹¼ +á¹½ +á¹¾ +ṿ +W +w +Å´ +ŵ +Ẁ +Ạ+Ẃ +ẃ +Ẅ +ẅ +Ẇ +ẇ +Ẉ +ẉ +ẘ +X +x +Ẋ +ẋ +Ẍ +Ạ+Y +y +à +ý +ÿ +Ÿ +Ŷ +Å· +Ƴ +Æ´ +Ȳ +ȳ +Ẏ +Ạ+ẙ +Ỳ +ỳ +á»´ +ỵ +Ỷ +á»· +Ỹ +ỹ +Z +z +Ź +ź +Å» +ż +Ž +ž +Ƶ +ƶ +Ȥ +È¥ +Ê +Ê‘ +Ạ+ẑ +Ẓ +ẓ +Ẕ +ẕ + + diff --git a/docbook-xsl-1.76.1/common/pa.xml b/docbook-xsl-1.76.1/common/pa.xml new file mode 100644 index 0000000..08ef771 --- /dev/null +++ b/docbook-xsl-1.76.1/common/pa.xml @@ -0,0 +1,660 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +ਚਿੰਨ +A +a +B +b +C +c +D +d +E +e +F +f +G +g +H +h +I +i +J +j +K +k +L +l +M +m +N +n +O +o +P +p +Q +q +R +r +S +s +T +t +U +u +V +v +W +w +X +x +Y +y +Z +z + + diff --git a/docbook-xsl-1.76.1/common/pi.xml b/docbook-xsl-1.76.1/common/pi.xml new file mode 100644 index 0000000..64efdca --- /dev/null +++ b/docbook-xsl-1.76.1/common/pi.xml @@ -0,0 +1,168 @@ + + +Common Processing Instruction Reference + + $Id: pi.xsl 8782 2010-07-27 21:15:17Z mzjn $ + + + + Introduction + +This is generated reference documentation for all + user-specifiable processing instructions (PIs) in the + “common†part of the DocBook XSL stylesheets. + + +You add these PIs at particular points in a document to + cause specific “exceptions†to formatting/output behavior. To + make global changes in formatting/output behavior across an + entire document, it’s better to do it by setting an + appropriate stylesheet parameter (if there is one). + + + + + + + + +dbchoice_choice +Generates a localized choice separator + + + + dbchoice choice="and"|"or"|string" + + +Description + +Use the dbchoice choice PI to + generate an appropriate localized “choice†separator (for + example, and or or) + before the final item in an inline simplelist + + + +This PI is a less-than-ideal hack; support for it may + disappear in the future (particularly if and when a more + appropriate means for marking up "choice" lists becomes + available in DocBook). + + + Parameters + + + choice="and" + + +generates a localized and separator + + + + choice="or" + + +generates a localized or separator + + + + choice="string" + + +generates a literal string separator + + + + + + + + + +dbtimestamp +Inserts a date timestamp + + + + dbtimestamp format="formatstring" [padding="0"|"1"] + + +Description + +Use the dbtimestamp PI at any point in a + source document to cause a date timestamp (a formatted + string representing the current date and time) to be + inserted in output of the document. + + Parameters + + + format="formatstring" + + +Specifies format in which the date and time are + output + + + +For details of the content of the format string, + see Date and time. + + + + + padding="0"|"1" + + +Specifies padding behavior; if non-zero, padding is is added + + + + + + + + + +dbtex_delims +Generates delimiters around embedded TeX equations + in output + + + + dbtex delims="no"|"yes" + + +Description + +Use the dbtex delims PI as a + child of a textobject containing embedded TeX + markup, to cause that markup to be surrounded by + $ delimiter characters in output. + + + +This feature is useful for print/PDF output only if you + use the obsolete and now unsupported PassiveTeX XSL-FO + engine. + + + Parameters + + + dbtex delims="no"|"yes" + + +Specifies whether delimiters are output + + + + + + Related Global Parameters + +tex.math.delims + + + + diff --git a/docbook-xsl-1.76.1/common/pi.xsl b/docbook-xsl-1.76.1/common/pi.xsl new file mode 100644 index 0000000..42aac0d --- /dev/null +++ b/docbook-xsl-1.76.1/common/pi.xsl @@ -0,0 +1,346 @@ + + + + + +Common Processing Instruction Reference + + $Id: pi.xsl 8782 2010-07-27 21:15:17Z mzjn $ + + + + Introduction + This is generated reference documentation for all + user-specifiable processing instructions (PIs) in the + “common†part of the DocBook XSL stylesheets. + + You add these PIs at particular points in a document to + cause specific “exceptions†to formatting/output behavior. To + make global changes in formatting/output behavior across an + entire document, it’s better to do it by setting an + appropriate stylesheet parameter (if there is one). + + + + + + + + Generates a localized choice separator + + Use the dbchoice choice PI to + generate an appropriate localized “choice†separator (for + example, and or or) + before the final item in an inline simplelist + + This PI is a less-than-ideal hack; support for it may + disappear in the future (particularly if and when a more + appropriate means for marking up "choice" lists becomes + available in DocBook). + + + + dbchoice choice="and"|"or"|string" + + + + choice="and" + + generates a localized and separator + + + choice="or" + + generates a localized or separator + + + choice="string" + + generates a literal string separator + + + + + + + + + + choice + + + + + Inserts a date timestamp + + Use the dbtimestamp PI at any point in a + source document to cause a date timestamp (a formatted + string representing the current date and time) to be + inserted in output of the document. + + + dbtimestamp format="formatstring" [padding="0"|"1"] + + + + format="formatstring" + + Specifies format in which the date and time are + output + + For details of the content of the format string, + see Date and time. + + + + padding="0"|"1" + + Specifies padding behavior; if non-zero, padding is is added + + + + + + + + + + + format + + + + + + + + + + + + + + + + + + + padding + + + + + + + 1 + + + + + + + + + + + + + + + + + + + + + + + + Timestamp processing requires XSLT processor with EXSLT date support. + + + + + + + Generates delimiters around embedded TeX equations + in output + + Use the dbtex delims PI as a + child of a textobject containing embedded TeX + markup, to cause that markup to be surrounded by + $ delimiter characters in output. + + This feature is useful for print/PDF output only if you + use the obsolete and now unsupported PassiveTeX XSL-FO + engine. + + + + dbtex delims="no"|"yes" + + + + dbtex delims="no"|"yes" + + Specifies whether delimiters are output + + + + + + + tex.math.delims + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + + + + 0 + + + + + + + 0 + + + + 0 + + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + Timestamp processing requires an XSLT processor with support + for the EXSLT node-set() function. + + + + + + + diff --git a/docbook-xsl-1.76.1/common/pl.xml b/docbook-xsl-1.76.1/common/pl.xml new file mode 100644 index 0000000..186ed3b --- /dev/null +++ b/docbook-xsl-1.76.1/common/pl.xml @@ -0,0 +1,678 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Symbole +A +a +Ä„ +Ä… +B +b +C +c +Ć +ć +D +d +E +e +Ę +Ä™ +F +f +G +g +H +h +I +i +J +j +K +k +L +l +Å +Å‚ +M +m +N +n +Ń +Å„ +O +o +Ó +ó +P +p +Q +q +R +r +S +s +Åš +Å› +T +t +U +u +V +v +W +w +X +x +Y +y +Z +z +Ź +ź +Å» +ż + + diff --git a/docbook-xsl-1.76.1/common/pt.xml b/docbook-xsl-1.76.1/common/pt.xml new file mode 100644 index 0000000..4a07359 --- /dev/null +++ b/docbook-xsl-1.76.1/common/pt.xml @@ -0,0 +1,1229 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Símbolos +A +a +À +à +à +á + +â +à +ã +Ä +ä +Ã… +Ã¥ +Ä€ +Ä +Ä‚ +ă +Ä„ +Ä… +Ç +ÇŽ +Çž +ÇŸ +Ç  +Ç¡ +Ǻ +Ç» +È€ +È +È‚ +ȃ +Ȧ +ȧ +Ḁ +Ḡ+ẚ +Ạ +ạ +Ả +ả +Ấ +ấ +Ầ +ầ +Ẩ +ẩ +Ẫ +ẫ +Ậ +ậ +Ắ +ắ +Ằ +ằ +Ẳ +ẳ +Ẵ +ẵ +Ặ +ặ +B +b +Æ€ +Æ +É“ +Æ‚ +ƃ +Ḃ +ḃ +Ḅ +ḅ +Ḇ +ḇ +C +c +Ç +ç +Ć +ć +Ĉ +ĉ +ÄŠ +Ä‹ +ÄŒ +Ä +Ƈ +ƈ +É• +Ḉ +ḉ +D +d +ÄŽ +Ä +Ä +Ä‘ +ÆŠ +É— +Æ‹ +ÆŒ +Ç… +Dz +È¡ +É– +Ḋ +ḋ +Ḍ +Ḡ+Ḏ +Ḡ+Ḡ+ḑ +Ḓ +ḓ +E +e +È +è +É +é +Ê +ê +Ë +ë +Ä’ +Ä“ +Ä” +Ä• +Ä– +Ä— +Ę +Ä™ +Äš +Ä› +È„ +È… +Ȇ +ȇ +Ȩ +È© +Ḕ +ḕ +Ḗ +ḗ +Ḙ +ḙ +Ḛ +ḛ +Ḝ +Ḡ+Ẹ +ẹ +Ẻ +ẻ +Ẽ +ẽ +Ế +ế +Ề +á» +Ể +ể +Ễ +á»… +Ệ +ệ +F +f +Æ‘ +Æ’ +Ḟ +ḟ +G +g +Äœ +Ä +Äž +ÄŸ +Ä  +Ä¡ +Ä¢ +Ä£ +Æ“ +É  +Ǥ +Ç¥ +Ǧ +ǧ +Ç´ +ǵ +Ḡ +ḡ +H +h +Ĥ +Ä¥ +Ħ +ħ +Èž +ÈŸ +ɦ +Ḣ +ḣ +Ḥ +ḥ +Ḧ +ḧ +Ḩ +ḩ +Ḫ +ḫ +ẖ +I +i +ÃŒ +ì +à +í +ÃŽ +î +à +ï +Ĩ +Ä© +Ī +Ä« +Ĭ +Ä­ +Ä® +į +Ä° +Æ— +ɨ +Ç +Ç +Ȉ +ȉ +ÈŠ +È‹ +Ḭ +ḭ +Ḯ +ḯ +Ỉ +ỉ +Ị +ị +J +j +Ä´ +ĵ +Ç° +Ê +K +k +Ķ +Ä· +Ƙ +Æ™ +Ǩ +Ç© +Ḱ +ḱ +Ḳ +ḳ +Ḵ +ḵ +L +l +Ĺ +ĺ +Ä» +ļ +Ľ +ľ +Ä¿ +Å€ +Å +Å‚ +Æš +Lj +È´ +É« +ɬ +É­ +Ḷ +ḷ +Ḹ +ḹ +Ḻ +ḻ +Ḽ +ḽ +M +m +ɱ +Ḿ +ḿ +á¹€ +á¹ +Ṃ +ṃ +N +n +Ñ +ñ +Ń +Å„ +Å… +ņ +Ň +ň +Æ +ɲ +Æž +È  +Ç‹ +Ǹ +ǹ +ȵ +ɳ +Ṅ +á¹… +Ṇ +ṇ +Ṉ +ṉ +Ṋ +ṋ +O +o +Ã’ +ò +Ó +ó +Ô +ô +Õ +õ +Ö +ö +Ø +ø +ÅŒ +Å +ÅŽ +Å +Å +Å‘ +ÆŸ +Æ  +Æ¡ +Ç‘ +Ç’ +Ǫ +Ç« +Ǭ +Ç­ +Ǿ +Ç¿ +ÈŒ +È +ÈŽ +È +Ȫ +È« +Ȭ +È­ +È® +ȯ +È° +ȱ +Ṍ +á¹ +Ṏ +á¹ +á¹ +ṑ +á¹’ +ṓ +Ọ +á» +Ỏ +á» +á» +ố +á»’ +ồ +á»” +ổ +á»– +á»— +Ộ +á»™ +Ớ +á»› +Ờ +á» +Ở +ở +á»  +ỡ +Ợ +ợ +P +p +Ƥ +Æ¥ +á¹” +ṕ +á¹– +á¹— +Q +q +Ê  +R +r +Å” +Å• +Å– +Å— +Ř +Å™ +È +È‘ +È’ +È“ +ɼ +ɽ +ɾ +Ṙ +á¹™ +Ṛ +á¹› +Ṝ +á¹ +Ṟ +ṟ +S +s +Åš +Å› +Åœ +Å +Åž +ÅŸ +Å  +Å¡ +Ș +È™ +Ê‚ +á¹  +ṡ +á¹¢ +á¹£ +Ṥ +á¹¥ +Ṧ +ṧ +Ṩ +ṩ +T +t +Å¢ +Å£ +Ť +Å¥ +Ŧ +ŧ +Æ« +Ƭ +Æ­ +Æ® +ʈ +Èš +È› +ȶ +Ṫ +ṫ +Ṭ +á¹­ +á¹® +ṯ +á¹° +á¹± +ẗ +U +u +Ù +ù +Ú +ú +Û +û +Ãœ +ü +Ũ +Å© +Ū +Å« +Ŭ +Å­ +Å® +ů +Å° +ű +Ų +ų +Ư +Æ° +Ç“ +Ç” +Ç• +Ç– +Ç— +ǘ +Ç™ +Çš +Ç› +Çœ +È” +È• +È– +È— +á¹² +á¹³ +á¹´ +á¹µ +Ṷ +á¹· +Ṹ +á¹¹ +Ṻ +á¹» +Ụ +ụ +Ủ +ủ +Ứ +ứ +Ừ +ừ +Ử +á»­ +á»® +ữ +á»° +á»± +V +v +Ʋ +Ê‹ +á¹¼ +á¹½ +á¹¾ +ṿ +W +w +Å´ +ŵ +Ẁ +Ạ+Ẃ +ẃ +Ẅ +ẅ +Ẇ +ẇ +Ẉ +ẉ +ẘ +X +x +Ẋ +ẋ +Ẍ +Ạ+Y +y +à +ý +ÿ +Ÿ +Ŷ +Å· +Ƴ +Æ´ +Ȳ +ȳ +Ẏ +Ạ+ẙ +Ỳ +ỳ +á»´ +ỵ +Ỷ +á»· +Ỹ +ỹ +Z +z +Ź +ź +Å» +ż +Ž +ž +Ƶ +ƶ +Ȥ +È¥ +Ê +Ê‘ +Ạ+ẑ +Ẓ +ẓ +Ẕ +ẕ + + diff --git a/docbook-xsl-1.76.1/common/pt_br.xml b/docbook-xsl-1.76.1/common/pt_br.xml new file mode 100644 index 0000000..3e71821 --- /dev/null +++ b/docbook-xsl-1.76.1/common/pt_br.xml @@ -0,0 +1,1229 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Símbolos +A +a +À +à +à +á + +â +à +ã +Ä +ä +Ã… +Ã¥ +Ä€ +Ä +Ä‚ +ă +Ä„ +Ä… +Ç +ÇŽ +Çž +ÇŸ +Ç  +Ç¡ +Ǻ +Ç» +È€ +È +È‚ +ȃ +Ȧ +ȧ +Ḁ +Ḡ+ẚ +Ạ +ạ +Ả +ả +Ấ +ấ +Ầ +ầ +Ẩ +ẩ +Ẫ +ẫ +Ậ +ậ +Ắ +ắ +Ằ +ằ +Ẳ +ẳ +Ẵ +ẵ +Ặ +ặ +B +b +Æ€ +Æ +É“ +Æ‚ +ƃ +Ḃ +ḃ +Ḅ +ḅ +Ḇ +ḇ +C +c +Ç +ç +Ć +ć +Ĉ +ĉ +ÄŠ +Ä‹ +ÄŒ +Ä +Ƈ +ƈ +É• +Ḉ +ḉ +D +d +ÄŽ +Ä +Ä +Ä‘ +ÆŠ +É— +Æ‹ +ÆŒ +Ç… +Dz +È¡ +É– +Ḋ +ḋ +Ḍ +Ḡ+Ḏ +Ḡ+Ḡ+ḑ +Ḓ +ḓ +E +e +È +è +É +é +Ê +ê +Ë +ë +Ä’ +Ä“ +Ä” +Ä• +Ä– +Ä— +Ę +Ä™ +Äš +Ä› +È„ +È… +Ȇ +ȇ +Ȩ +È© +Ḕ +ḕ +Ḗ +ḗ +Ḙ +ḙ +Ḛ +ḛ +Ḝ +Ḡ+Ẹ +ẹ +Ẻ +ẻ +Ẽ +ẽ +Ế +ế +Ề +á» +Ể +ể +Ễ +á»… +Ệ +ệ +F +f +Æ‘ +Æ’ +Ḟ +ḟ +G +g +Äœ +Ä +Äž +ÄŸ +Ä  +Ä¡ +Ä¢ +Ä£ +Æ“ +É  +Ǥ +Ç¥ +Ǧ +ǧ +Ç´ +ǵ +Ḡ +ḡ +H +h +Ĥ +Ä¥ +Ħ +ħ +Èž +ÈŸ +ɦ +Ḣ +ḣ +Ḥ +ḥ +Ḧ +ḧ +Ḩ +ḩ +Ḫ +ḫ +ẖ +I +i +ÃŒ +ì +à +í +ÃŽ +î +à +ï +Ĩ +Ä© +Ī +Ä« +Ĭ +Ä­ +Ä® +į +Ä° +Æ— +ɨ +Ç +Ç +Ȉ +ȉ +ÈŠ +È‹ +Ḭ +ḭ +Ḯ +ḯ +Ỉ +ỉ +Ị +ị +J +j +Ä´ +ĵ +Ç° +Ê +K +k +Ķ +Ä· +Ƙ +Æ™ +Ǩ +Ç© +Ḱ +ḱ +Ḳ +ḳ +Ḵ +ḵ +L +l +Ĺ +ĺ +Ä» +ļ +Ľ +ľ +Ä¿ +Å€ +Å +Å‚ +Æš +Lj +È´ +É« +ɬ +É­ +Ḷ +ḷ +Ḹ +ḹ +Ḻ +ḻ +Ḽ +ḽ +M +m +ɱ +Ḿ +ḿ +á¹€ +á¹ +Ṃ +ṃ +N +n +Ñ +ñ +Ń +Å„ +Å… +ņ +Ň +ň +Æ +ɲ +Æž +È  +Ç‹ +Ǹ +ǹ +ȵ +ɳ +Ṅ +á¹… +Ṇ +ṇ +Ṉ +ṉ +Ṋ +ṋ +O +o +Ã’ +ò +Ó +ó +Ô +ô +Õ +õ +Ö +ö +Ø +ø +ÅŒ +Å +ÅŽ +Å +Å +Å‘ +ÆŸ +Æ  +Æ¡ +Ç‘ +Ç’ +Ǫ +Ç« +Ǭ +Ç­ +Ǿ +Ç¿ +ÈŒ +È +ÈŽ +È +Ȫ +È« +Ȭ +È­ +È® +ȯ +È° +ȱ +Ṍ +á¹ +Ṏ +á¹ +á¹ +ṑ +á¹’ +ṓ +Ọ +á» +Ỏ +á» +á» +ố +á»’ +ồ +á»” +ổ +á»– +á»— +Ộ +á»™ +Ớ +á»› +Ờ +á» +Ở +ở +á»  +ỡ +Ợ +ợ +P +p +Ƥ +Æ¥ +á¹” +ṕ +á¹– +á¹— +Q +q +Ê  +R +r +Å” +Å• +Å– +Å— +Ř +Å™ +È +È‘ +È’ +È“ +ɼ +ɽ +ɾ +Ṙ +á¹™ +Ṛ +á¹› +Ṝ +á¹ +Ṟ +ṟ +S +s +Åš +Å› +Åœ +Å +Åž +ÅŸ +Å  +Å¡ +Ș +È™ +Ê‚ +á¹  +ṡ +á¹¢ +á¹£ +Ṥ +á¹¥ +Ṧ +ṧ +Ṩ +ṩ +T +t +Å¢ +Å£ +Ť +Å¥ +Ŧ +ŧ +Æ« +Ƭ +Æ­ +Æ® +ʈ +Èš +È› +ȶ +Ṫ +ṫ +Ṭ +á¹­ +á¹® +ṯ +á¹° +á¹± +ẗ +U +u +Ù +ù +Ú +ú +Û +û +Ãœ +ü +Ũ +Å© +Ū +Å« +Ŭ +Å­ +Å® +ů +Å° +ű +Ų +ų +Ư +Æ° +Ç“ +Ç” +Ç• +Ç– +Ç— +ǘ +Ç™ +Çš +Ç› +Çœ +È” +È• +È– +È— +á¹² +á¹³ +á¹´ +á¹µ +Ṷ +á¹· +Ṹ +á¹¹ +Ṻ +á¹» +Ụ +ụ +Ủ +ủ +Ứ +ứ +Ừ +ừ +Ử +á»­ +á»® +ữ +á»° +á»± +V +v +Ʋ +Ê‹ +á¹¼ +á¹½ +á¹¾ +ṿ +W +w +Å´ +ŵ +Ẁ +Ạ+Ẃ +ẃ +Ẅ +ẅ +Ẇ +ẇ +Ẉ +ẉ +ẘ +X +x +Ẋ +ẋ +Ẍ +Ạ+Y +y +à +ý +ÿ +Ÿ +Ŷ +Å· +Ƴ +Æ´ +Ȳ +ȳ +Ẏ +Ạ+ẙ +Ỳ +ỳ +á»´ +ỵ +Ỷ +á»· +Ỹ +ỹ +Z +z +Ź +ź +Å» +ż +Ž +ž +Ƶ +ƶ +Ȥ +È¥ +Ê +Ê‘ +Ạ+ẑ +Ẓ +ẓ +Ẕ +ẕ + + diff --git a/docbook-xsl-1.76.1/common/refentry.xml b/docbook-xsl-1.76.1/common/refentry.xml new file mode 100644 index 0000000..4741ce0 --- /dev/null +++ b/docbook-xsl-1.76.1/common/refentry.xml @@ -0,0 +1,781 @@ + + + + + Common » Refentry Metadata Template Reference + + $Id: refentry.xsl 7867 2008-03-07 09:54:25Z xmldoc $ + + + + + Introduction + +This is technical reference documentation for the “refentry + metadata†templates in the DocBook XSL Stylesheets. + + +This is not intended to be user documentation. It is provided + for developers writing customization layers for the stylesheets. + + + +Currently, only the manpages stylesheets make use of these + templates. They are, however, potentially useful elsewhere. + + + + + + +get.refentry.metadata +Gathers metadata from a refentry and its ancestors + + +<xsl:template name="get.refentry.metadata"> +<xsl:param name="refname"/> +<xsl:param name="info"/> +<xsl:param name="prefs"/> + ... +</xsl:template> + +Description + +Reference documentation for particular commands, functions, + etc., is sometimes viewed in isolation from its greater "context". For + example, users view Unix man pages as, well, individual pages, not as + part of a "book" of some kind. Therefore, it is sometimes necessary to + embed "context" information in output for each refentry. + + + +However, one problem is that different users mark up that + context information in different ways. Often (usually), the + context information is not actually part of the content of the + refentry itself, but instead part of the content of a + parent or ancestor element to the refentry. And + even then, DocBook provides a variety of elements that users might + potentially use to mark up the same kind of information. One user + might use the productnumber element to mark up version + information about a particular product, while another might use + the releaseinfo element. + + + +Taking all that in mind, the + get.refentry.metadata template tries to gather + metadata from a refentry element and its ancestor + elements in an intelligent and user-configurable way. The basic + mechanism used in the XPath expressions throughout this stylesheet + is to select the relevant metadata from the *info element that is + closest to the actual refentry – either on the + refentry itself, or on its nearest ancestor. + + + + +The get.refentry.metadata + template is actually just sort of a "driver" template; it + calls other templates that do the actual data collection, + then returns the data as a set. + + + + Parameters + + + + refname + + +The first refname in the refentry + + + + + info + + +A set of info nodes (from a refentry + element and its ancestors) + + + + + prefs + + +A node containing user preferences (from global + stylesheet parameters) + + + + + + Returns + +Returns a node set with the following elements. The + descriptions are verbatim from the man(7) man + page. + + + + title + + +the title of the man page (e.g., MAN) + + + + + section + + +the section number the man page should be placed in (e.g., + 7) + + + + + date + + +the date of the last revision + + + + + source + + +the source of the command + + + + + manual + + +the title of the manual (e.g., Linux + Programmer's Manual) + + + + + + + + + + + +get.refentry.title +Gets title metadata for a refentry + + +<xsl:template name="get.refentry.title"> +<xsl:param name="refname"/> + ... +</xsl:template> + +Description + +The man(7) man page describes this as "the + title of the man page (e.g., MAN). This differs + from refname in that, if the refentry has a + refentrytitle, we use that as the title; + otherwise, we just use first refname in the first + refnamediv in the source. + + Parameters + + + + refname + + +The first refname in the refentry + + + + + + Returns + +Returns a title node. + + + + +get.refentry.section +Gets section metadata for a refentry + + +<xsl:template name="get.refentry.section"> +<xsl:param name="refname"/> +<xsl:param name="quiet" select="0"/> + ... +</xsl:template> + +Description + +The man(7) man page describes this as "the + section number the man page should be placed in (e.g., + 7)". If we do not find a manvolnum + specified in the source, and we find that the refentry is + for a function, we use the section number 3 + ["Library calls (functions within program libraries)"]; otherwise, we + default to using 1 ["Executable programs or shell + commands"]. + + Parameters + + + + refname + + +The first refname in the refentry + + + + + quiet + + +If non-zero, no "missing" message is emitted + + + + + + Returns + +Returns a string representing a section number. + + + + +get.refentry.date +Gets date metadata for a refentry + + +<xsl:template name="get.refentry.date"> +<xsl:param name="refname"/> +<xsl:param name="info"/> +<xsl:param name="prefs"/> + ... +</xsl:template> + +Description + +The man(7) man page describes this as "the + date of the last revision". If we cannot find a date in the source, we + generate one. + + Parameters + + + + refname + + +The first refname in the refentry + + + + + info + + +A set of info nodes (from a refentry + element and its ancestors) + + + + + prefs + + +A node containing users preferences (from global stylesheet parameters) + + + + + + Returns + +Returns a date node. + + + + + +get.refentry.source +Gets source metadata for a refentry + + +<xsl:template name="get.refentry.source"> +<xsl:param name="refname"/> +<xsl:param name="info"/> +<xsl:param name="prefs"/> + ... +</xsl:template> + +Description + +The man(7) man page describes this as "the + source of the command", and provides the following examples: + + + + +For binaries, use something like: GNU, NET-2, SLS + Distribution, MCC Distribution. + + + + +For system calls, use the version of the kernel that you are + currently looking at: Linux 0.99.11. + + + + +For library calls, use the source of the function: GNU, BSD + 4.3, Linux DLL 4.4.1. + + + + + + + + +The solbook(5) man page describes + something very much like what man(7) calls + "source", except that solbook(5) names it + "software" and describes it like this: +
    + +This is the name of the software product that the topic + discussed on the reference page belongs to. For example UNIX + commands are part of the SunOS x.x + release. + +
    +
    + + + +In practice, there are many pages that simply have a version + number in the "source" field. So, it looks like what we have is a + two-part field, + Name Version, + where: + + + + Name + + +product name (e.g., BSD) or org. name (e.g., GNU) + + + + + Version + + +version name + + + + + + Each part is optional. If the Name is a + product name, then the Version is probably + the version of the product. Or there may be no + Name, in which case, if there is a + Version, it is probably the version of the + item itself, not the product it is part of. Or, if the + Name is an organization name, then there + probably will be no Version. + + +
    Parameters + + + + refname + + +The first refname in the refentry + + + + + info + + +A set of info nodes (from a refentry + element and its ancestors) + + + + + prefs + + +A node containing users preferences (from global + stylesheet parameters) + + + + + + Returns + +Returns a source node. + +
    + + + +get.refentry.source.name +Gets source-name metadata for a refentry + + +<xsl:template name="get.refentry.source.name"> +<xsl:param name="refname"/> +<xsl:param name="info"/> +<xsl:param name="prefs"/> + ... +</xsl:template> + +Description + +A "source name" is one part of a (potentially) two-part + Name Version + source field. For more details, see the documentation for the + get.refentry.source template. + + Parameters + + + + refname + + +The first refname in the refentry + + + + + info + + +A set of info nodes (from a refentry + element and its ancestors) + + + + + prefs + + +A node containing users preferences (from global + stylesheet parameters) + + + + + + Returns + +Depending on what output method is used for the + current stylesheet, either returns a text node or possibly an element + node, containing "source name" data. + + + + + +get.refentry.version +Gets version metadata for a refentry + + +<xsl:template name="get.refentry.version"> +<xsl:param name="refname"/> +<xsl:param name="info"/> +<xsl:param name="prefs"/> + ... +</xsl:template> + +Description + +A "version" is one part of a (potentially) two-part + Name Version + source field. For more details, see the documentation for the + get.refentry.source template. + + Parameters + + + + refname + + +The first refname in the refentry + + + + + info + + +A set of info nodes (from a refentry + element and its ancestors) + + + + + prefs + + +A node containing users preferences (from global + stylesheet parameters) + + + + + + Returns + +Depending on what output method is used for the + current stylesheet, either returns a text node or possibly an element + node, containing "version" data. + + + + + +get.refentry.manual +Gets source metadata for a refentry + + +<xsl:template name="get.refentry.manual"> +<xsl:param name="refname"/> +<xsl:param name="info"/> +<xsl:param name="prefs"/> + ... +</xsl:template> + +Description + +The man(7) man page describes this as "the + title of the manual (e.g., Linux Programmer's + Manual)". Here are some examples from existing man pages: + + + + +dpkg utilities + (dpkg-name) + + + + +User Contributed Perl Documentation + (GET) + + + + +GNU Development Tools + (ld) + + + + +Emperor Norton Utilities + (ddate) + + + + +Debian GNU/Linux manual + (faked) + + + + +GIMP Manual Pages + (gimp) + + + + +KDOC Documentation System + (qt2kdoc) + + + + + + + + +The solbook(5) man page describes + something very much like what man(7) calls + "manual", except that solbook(5) names it + "sectdesc" and describes it like this: +
    + +This is the section title of the reference page; for + example User Commands. + +
    +
    + + +
    Parameters + + + + refname + + +The first refname in the refentry + + + + + info + + +A set of info nodes (from a refentry + element and its ancestors) + + + + + prefs + + +A node containing users preferences (from global + stylesheet parameters) + + + + + + Returns + +Returns a manual node. + +
    + + + +get.refentry.metadata.prefs +Gets user preferences for refentry metadata gathering + + +<xsl:template name="get.refentry.metadata.prefs"/> + +Description + +The DocBook XSL stylesheets include several user-configurable + global stylesheet parameters for controlling refentry + metadata gathering. Those parameters are not read directly by the + other refentry metadata-gathering + templates. Instead, they are read only by the + get.refentry.metadata.prefs template, + which assembles them into a structure that is then passed to + the other refentry metadata-gathering + templates. + + + +So the, get.refentry.metadata.prefs + template is the only interface to collecting stylesheet parameters for + controlling refentry metadata gathering. + + Parameters + +There are no local parameters for this template; however, it + does rely on a number of global parameters. + + Returns + +Returns a manual node. + + + + + +set.refentry.metadata +Sets content of a refentry metadata item + + +<xsl:template name="set.refentry.metadata"> +<xsl:param name="refname"/> +<xsl:param name="info"/> +<xsl:param name="contents"/> +<xsl:param name="context"/> +<xsl:param name="preferred"/> + ... +</xsl:template> + +Description + +The set.refentry.metadata template is + called each time a suitable source element is found for a certain + metadata field. + + Parameters + + + + refname + + +The first refname in the refentry + + + + + info + + +A single *info node that contains the selected source element. + + + + + contents + + +A node containing the selected source element. + + + + + context + + +A string describing the metadata context in which the + set.refentry.metadata template was + called: either "date", "source", "version", or "manual". + + + + + + Returns + +Returns formatted contents of a selected source element. + +
    + diff --git a/docbook-xsl-1.76.1/common/refentry.xsl b/docbook-xsl-1.76.1/common/refentry.xsl new file mode 100644 index 0000000..5a04b60 --- /dev/null +++ b/docbook-xsl-1.76.1/common/refentry.xsl @@ -0,0 +1,1352 @@ + + + + + + + + + Common » Refentry Metadata Template Reference + + $Id: refentry.xsl 7867 2008-03-07 09:54:25Z xmldoc $ + + + + + Introduction + This is technical reference documentation for the “refentry + metadata†templates in the DocBook XSL Stylesheets. + This is not intended to be user documentation. It is provided + for developers writing customization layers for the stylesheets. + + Currently, only the manpages stylesheets make use of these + templates. They are, however, potentially useful elsewhere. + + + + + + + Gathers metadata from a refentry and its ancestors + + Reference documentation for particular commands, functions, + etc., is sometimes viewed in isolation from its greater "context". For + example, users view Unix man pages as, well, individual pages, not as + part of a "book" of some kind. Therefore, it is sometimes necessary to + embed "context" information in output for each refentry. + + However, one problem is that different users mark up that + context information in different ways. Often (usually), the + context information is not actually part of the content of the + refentry itself, but instead part of the content of a + parent or ancestor element to the refentry. And + even then, DocBook provides a variety of elements that users might + potentially use to mark up the same kind of information. One user + might use the productnumber element to mark up version + information about a particular product, while another might use + the releaseinfo element. + + Taking all that in mind, the + get.refentry.metadata template tries to gather + metadata from a refentry element and its ancestor + elements in an intelligent and user-configurable way. The basic + mechanism used in the XPath expressions throughout this stylesheet + is to select the relevant metadata from the *info element that is + closest to the actual refentry â€“ either on the + refentry itself, or on its nearest ancestor. + + + The get.refentry.metadata + template is actually just sort of a "driver" template; it + calls other templates that do the actual data collection, + then returns the data as a set. + + + + + + + refname + + The first refname in the refentry + + + + info + + A set of info nodes (from a refentry + element and its ancestors) + + + + prefs + + A node containing user preferences (from global + stylesheet parameters) + + + + + + Returns a node set with the following elements. The + descriptions are verbatim from the man(7) man + page. + + + title + + the title of the man page (e.g., MAN) + + + + section + + the section number the man page should be placed in (e.g., + 7) + + + + date + + the date of the last revision + + + + source + + the source of the command + + + + manual + + the title of the manual (e.g., Linux + Programmer's Manual) + + + + + + + + + + + + <xsl:call-template name="get.refentry.title"> + <xsl:with-param name="refname" select="$refname"/> + </xsl:call-template> + +
    + + + +
    + + + + + + + + + + + + + + + + + + + + + +
    + + + + Gets title metadata for a refentry + + The man(7) man page describes this as "the + title of the man page (e.g., MAN). This differs + from refname in that, if the refentry has a + refentrytitle, we use that as the title; + otherwise, we just use first refname in the first + refnamediv in the source. + + + + + refname + + The first refname in the refentry + + + + + + Returns a title node. + + + + + + + + + + + + + + + + + + Gets section metadata for a refentry + + The man(7) man page describes this as "the + section number the man page should be placed in (e.g., + 7)". If we do not find a manvolnum + specified in the source, and we find that the refentry is + for a function, we use the section number 3 + ["Library calls (functions within program libraries)"]; otherwise, we + default to using 1 ["Executable programs or shell + commands"]. + + + + + refname + + The first refname in the refentry + + + + quiet + + If non-zero, no "missing" message is emitted + + + + + + Returns a string representing a section number. + + + + + + + + + + + + + Note + + meta manvol + + no refentry/refmeta/manvolnum + + + + Note + + meta manvol + + see http://docbook.sf.net/el/manvolnum + + + + + + + + + + Note + + meta manvol + + Setting man section to 3 + + + + + 3 + + + 1 + + + + + + + + + Gets date metadata for a refentry + + The man(7) man page describes this as "the + date of the last revision". If we cannot find a date in the source, we + generate one. + + + + + refname + + The first refname in the refentry + + + + info + + A set of info nodes (from a refentry + element and its ancestors) + + + + prefs + + A node containing users preferences (from global stylesheet parameters) + + + + + + Returns a date node. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gets source metadata for a refentry + + The man(7) man page describes this as "the + source of the command", and provides the following examples: + + + For binaries, use something like: GNU, NET-2, SLS + Distribution, MCC Distribution. + + + For system calls, use the version of the kernel that you are + currently looking at: Linux 0.99.11. + + + For library calls, use the source of the function: GNU, BSD + 4.3, Linux DLL 4.4.1. + + + + + The solbook(5) man page describes + something very much like what man(7) calls + "source", except that solbook(5) names it + "software" and describes it like this: +
    + This is the name of the software product that the topic + discussed on the reference page belongs to. For example UNIX + commands are part of the SunOS x.x + release. +
    +
    + + In practice, there are many pages that simply have a version + number in the "source" field. So, it looks like what we have is a + two-part field, + Name Version, + where: + + + Name + + product name (e.g., BSD) or org. name (e.g., GNU) + + + + Version + + version name + + + + Each part is optional. If the Name is a + product name, then the Version is probably + the version of the product. Or there may be no + Name, in which case, if there is a + Version, it is probably the version of the + item itself, not the product it is part of. Or, if the + Name is an organization name, then there + probably will be no Version. + +
    + + + + refname + + The first refname in the refentry + + + + info + + A set of info nodes (from a refentry + element and its ancestors) + + + + prefs + + A node containing users preferences (from global + stylesheet parameters) + + + + + + Returns a source node. + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Warn + + meta source + + using + " + + " + for "source" + + + + + + + + [FIXME: source] + + + Warn + + meta source + + no fallback for source, so inserted a fixme + + + + + + + + + + [FIXME: source] + + + Warn + + meta source + + no source fallback given, so inserted a fixme + + + + + + + + + + Gets source-name metadata for a refentry + + A "source name" is one part of a (potentially) two-part + Name Version + source field. For more details, see the documentation for the + get.refentry.source template. + + + + + refname + + The first refname in the refentry + + + + info + + A set of info nodes (from a refentry + element and its ancestors) + + + + prefs + + A node containing users preferences (from global + stylesheet parameters) + + + + + + Depending on what output method is used for the + current stylesheet, either returns a text node or possibly an element + node, containing "source name" data. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + source + + + + + + + + source + productname + + + + + + + + source + productname + + + + + + + + source + productname + + + + + + + + source + productname + + + + + + + + source + productname + + + + + + + + + + + + + Note + + meta source + + no *info/productname or alternative + + + + Note + + meta source + + see http://docbook.sf.net/el/productname + + + + Note + + meta source + + no refentry/refmeta/refmiscinfo@class=source + + + + Note + + meta source + + see http://docbook.sf.net/el/refmiscinfo + + + + + + + Gets version metadata for a refentry + + A "version" is one part of a (potentially) two-part + Name Version + source field. For more details, see the documentation for the + get.refentry.source template. + + + + + refname + + The first refname in the refentry + + + + info + + A set of info nodes (from a refentry + element and its ancestors) + + + + prefs + + A node containing users preferences (from global + stylesheet parameters) + + + + + + Depending on what output method is used for the + current stylesheet, either returns a text node or possibly an element + node, containing "version" data. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + version + + + + + + + + version + productnumber + + + + + + + + version + productnumber + + + + + + + + + + + + + Note + + meta version + + no *info/productnumber or alternative + + + + Note + + meta version + + see http://docbook.sf.net/el/productnumber + + + + Note + + meta version + + no refentry/refmeta/refmiscinfo@class=version + + + + Note + + meta version + + see http://docbook.sf.net/el/refmiscinfo + + + + + + + Gets source metadata for a refentry + + The man(7) man page describes this as "the + title of the manual (e.g., Linux Programmer's + Manual)". Here are some examples from existing man pages: + + + dpkg utilities + (dpkg-name) + + + User Contributed Perl Documentation + (GET) + + + GNU Development Tools + (ld) + + + Emperor Norton Utilities + (ddate) + + + Debian GNU/Linux manual + (faked) + + + GIMP Manual Pages + (gimp) + + + KDOC Documentation System + (qt2kdoc) + + + + + The solbook(5) man page describes + something very much like what man(7) calls + "manual", except that solbook(5) names it + "sectdesc" and describes it like this: +
    + This is the section title of the reference page; for + example User Commands. +
    +
    + +
    + + + + refname + + The first refname in the refentry + + + + info + + A set of info nodes (from a refentry + element and its ancestors) + + + + prefs + + A node containing users preferences (from global + stylesheet parameters) + + + + + + Returns a manual node. + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + manual + + + + + + + + manual + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Warn + + meta manual + + using + " + + " + for "manual" + + + + + + + + [FIXME: manual] + + + Warn + + meta manual + + no fallback for manual, so inserted a fixme + + + + + + + + + + [FIXME: manual] + + + Warn + + meta manual + + no manual fallback given, so inserted a fixme + + + + + + + + + + + Note + + meta manual + + no titled ancestor of refentry + + + + Note + + meta manual + + no refentry/refmeta/refmiscinfo@class=manual + + + + Note + + meta manual + + see http://docbook.sf.net/el/refmiscinfo + + + + + + Gets user preferences for refentry metadata gathering + + The DocBook XSL stylesheets include several user-configurable + global stylesheet parameters for controlling refentry + metadata gathering. Those parameters are not read directly by the + other refentry metadata-gathering + templates. Instead, they are read only by the + get.refentry.metadata.prefs template, + which assembles them into a structure that is then passed to + the other refentry metadata-gathering + templates. + + So the, get.refentry.metadata.prefs + template is the only interface to collecting stylesheet parameters for + controlling refentry metadata gathering. + + + There are no local parameters for this template; however, it + does rely on a number of global parameters. + + + Returns a manual node. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Sets content of a refentry metadata item + + The set.refentry.metadata template is + called each time a suitable source element is found for a certain + metadata field. + + + + + refname + + The first refname in the refentry + + + + info + + A single *info node that contains the selected source element. + + + + contents + + A node containing the selected source element. + + + + context + + A string describing the metadata context in which the + set.refentry.metadata template was + called: either "date", "source", "version", or "manual". + + + + + + Returns formatted contents of a selected source element. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    diff --git a/docbook-xsl-1.76.1/common/ro.xml b/docbook-xsl-1.76.1/common/ro.xml new file mode 100644 index 0000000..4926311 --- /dev/null +++ b/docbook-xsl-1.76.1/common/ro.xml @@ -0,0 +1,1229 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Symbols +A +a +À +à +à +á + +â +à +ã +Ä +ä +Ã… +Ã¥ +Ä€ +Ä +Ä‚ +ă +Ä„ +Ä… +Ç +ÇŽ +Çž +ÇŸ +Ç  +Ç¡ +Ǻ +Ç» +È€ +È +È‚ +ȃ +Ȧ +ȧ +Ḁ +Ḡ+ẚ +Ạ +ạ +Ả +ả +Ấ +ấ +Ầ +ầ +Ẩ +ẩ +Ẫ +ẫ +Ậ +ậ +Ắ +ắ +Ằ +ằ +Ẳ +ẳ +Ẵ +ẵ +Ặ +ặ +B +b +Æ€ +Æ +É“ +Æ‚ +ƃ +Ḃ +ḃ +Ḅ +ḅ +Ḇ +ḇ +C +c +Ç +ç +Ć +ć +Ĉ +ĉ +ÄŠ +Ä‹ +ÄŒ +Ä +Ƈ +ƈ +É• +Ḉ +ḉ +D +d +ÄŽ +Ä +Ä +Ä‘ +ÆŠ +É— +Æ‹ +ÆŒ +Ç… +Dz +È¡ +É– +Ḋ +ḋ +Ḍ +Ḡ+Ḏ +Ḡ+Ḡ+ḑ +Ḓ +ḓ +E +e +È +è +É +é +Ê +ê +Ë +ë +Ä’ +Ä“ +Ä” +Ä• +Ä– +Ä— +Ę +Ä™ +Äš +Ä› +È„ +È… +Ȇ +ȇ +Ȩ +È© +Ḕ +ḕ +Ḗ +ḗ +Ḙ +ḙ +Ḛ +ḛ +Ḝ +Ḡ+Ẹ +ẹ +Ẻ +ẻ +Ẽ +ẽ +Ế +ế +Ề +á» +Ể +ể +Ễ +á»… +Ệ +ệ +F +f +Æ‘ +Æ’ +Ḟ +ḟ +G +g +Äœ +Ä +Äž +ÄŸ +Ä  +Ä¡ +Ä¢ +Ä£ +Æ“ +É  +Ǥ +Ç¥ +Ǧ +ǧ +Ç´ +ǵ +Ḡ +ḡ +H +h +Ĥ +Ä¥ +Ħ +ħ +Èž +ÈŸ +ɦ +Ḣ +ḣ +Ḥ +ḥ +Ḧ +ḧ +Ḩ +ḩ +Ḫ +ḫ +ẖ +I +i +ÃŒ +ì +à +í +ÃŽ +î +à +ï +Ĩ +Ä© +Ī +Ä« +Ĭ +Ä­ +Ä® +į +Ä° +Æ— +ɨ +Ç +Ç +Ȉ +ȉ +ÈŠ +È‹ +Ḭ +ḭ +Ḯ +ḯ +Ỉ +ỉ +Ị +ị +J +j +Ä´ +ĵ +Ç° +Ê +K +k +Ķ +Ä· +Ƙ +Æ™ +Ǩ +Ç© +Ḱ +ḱ +Ḳ +ḳ +Ḵ +ḵ +L +l +Ĺ +ĺ +Ä» +ļ +Ľ +ľ +Ä¿ +Å€ +Å +Å‚ +Æš +Lj +È´ +É« +ɬ +É­ +Ḷ +ḷ +Ḹ +ḹ +Ḻ +ḻ +Ḽ +ḽ +M +m +ɱ +Ḿ +ḿ +á¹€ +á¹ +Ṃ +ṃ +N +n +Ñ +ñ +Ń +Å„ +Å… +ņ +Ň +ň +Æ +ɲ +Æž +È  +Ç‹ +Ǹ +ǹ +ȵ +ɳ +Ṅ +á¹… +Ṇ +ṇ +Ṉ +ṉ +Ṋ +ṋ +O +o +Ã’ +ò +Ó +ó +Ô +ô +Õ +õ +Ö +ö +Ø +ø +ÅŒ +Å +ÅŽ +Å +Å +Å‘ +ÆŸ +Æ  +Æ¡ +Ç‘ +Ç’ +Ǫ +Ç« +Ǭ +Ç­ +Ǿ +Ç¿ +ÈŒ +È +ÈŽ +È +Ȫ +È« +Ȭ +È­ +È® +ȯ +È° +ȱ +Ṍ +á¹ +Ṏ +á¹ +á¹ +ṑ +á¹’ +ṓ +Ọ +á» +Ỏ +á» +á» +ố +á»’ +ồ +á»” +ổ +á»– +á»— +Ộ +á»™ +Ớ +á»› +Ờ +á» +Ở +ở +á»  +ỡ +Ợ +ợ +P +p +Ƥ +Æ¥ +á¹” +ṕ +á¹– +á¹— +Q +q +Ê  +R +r +Å” +Å• +Å– +Å— +Ř +Å™ +È +È‘ +È’ +È“ +ɼ +ɽ +ɾ +Ṙ +á¹™ +Ṛ +á¹› +Ṝ +á¹ +Ṟ +ṟ +S +s +Åš +Å› +Åœ +Å +Åž +ÅŸ +Å  +Å¡ +Ș +È™ +Ê‚ +á¹  +ṡ +á¹¢ +á¹£ +Ṥ +á¹¥ +Ṧ +ṧ +Ṩ +ṩ +T +t +Å¢ +Å£ +Ť +Å¥ +Ŧ +ŧ +Æ« +Ƭ +Æ­ +Æ® +ʈ +Èš +È› +ȶ +Ṫ +ṫ +Ṭ +á¹­ +á¹® +ṯ +á¹° +á¹± +ẗ +U +u +Ù +ù +Ú +ú +Û +û +Ãœ +ü +Ũ +Å© +Ū +Å« +Ŭ +Å­ +Å® +ů +Å° +ű +Ų +ų +Ư +Æ° +Ç“ +Ç” +Ç• +Ç– +Ç— +ǘ +Ç™ +Çš +Ç› +Çœ +È” +È• +È– +È— +á¹² +á¹³ +á¹´ +á¹µ +Ṷ +á¹· +Ṹ +á¹¹ +Ṻ +á¹» +Ụ +ụ +Ủ +ủ +Ứ +ứ +Ừ +ừ +Ử +á»­ +á»® +ữ +á»° +á»± +V +v +Ʋ +Ê‹ +á¹¼ +á¹½ +á¹¾ +ṿ +W +w +Å´ +ŵ +Ẁ +Ạ+Ẃ +ẃ +Ẅ +ẅ +Ẇ +ẇ +Ẉ +ẉ +ẘ +X +x +Ẋ +ẋ +Ẍ +Ạ+Y +y +à +ý +ÿ +Ÿ +Ŷ +Å· +Ƴ +Æ´ +Ȳ +ȳ +Ẏ +Ạ+ẙ +Ỳ +ỳ +á»´ +ỵ +Ỷ +á»· +Ỹ +ỹ +Z +z +Ź +ź +Å» +ż +Ž +ž +Ƶ +ƶ +Ȥ +È¥ +Ê +Ê‘ +Ạ+ẑ +Ẓ +ẓ +Ẕ +ẕ + + diff --git a/docbook-xsl-1.76.1/common/ru.xml b/docbook-xsl-1.76.1/common/ru.xml new file mode 100644 index 0000000..67d2c9a --- /dev/null +++ b/docbook-xsl-1.76.1/common/ru.xml @@ -0,0 +1,726 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +A +a +B +b +C +c +D +d +E +e +F +f +G +g +H +h +I +i +J +j +K +k +L +l +M +m +N +n +O +o +P +p +Q +q +R +r +S +s +T +t +U +u +V +v +W +w +X +x +Y +y +Z +z +Ð +а +Б +б +Ð’ +в +Г +г +Д +д +Е +е +Ð +Ñ‘ +Ж +ж +З +з +И +и +Й +й +К +к +Л +л +Ðœ +м +Ð +н +О +о +П +п +Р +Ñ€ +С +Ñ +Т +Ñ‚ +У +у +Ф +Ñ„ +Ð¥ +Ñ… +Ц +ц +Ч +ч +Ш +ш +Щ +щ +Ъ +ÑŠ +Ы +Ñ‹ +Ь +ÑŒ +Э +Ñ +Ю +ÑŽ +Я +Ñ + + diff --git a/docbook-xsl-1.76.1/common/sk.xml b/docbook-xsl-1.76.1/common/sk.xml new file mode 100644 index 0000000..09309b6 --- /dev/null +++ b/docbook-xsl-1.76.1/common/sk.xml @@ -0,0 +1,1229 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Symbols +A +a +À +à +à +á + +â +à +ã +Ä +ä +Ã… +Ã¥ +Ä€ +Ä +Ä‚ +ă +Ä„ +Ä… +Ç +ÇŽ +Çž +ÇŸ +Ç  +Ç¡ +Ǻ +Ç» +È€ +È +È‚ +ȃ +Ȧ +ȧ +Ḁ +Ḡ+ẚ +Ạ +ạ +Ả +ả +Ấ +ấ +Ầ +ầ +Ẩ +ẩ +Ẫ +ẫ +Ậ +ậ +Ắ +ắ +Ằ +ằ +Ẳ +ẳ +Ẵ +ẵ +Ặ +ặ +B +b +Æ€ +Æ +É“ +Æ‚ +ƃ +Ḃ +ḃ +Ḅ +ḅ +Ḇ +ḇ +C +c +Ç +ç +Ć +ć +Ĉ +ĉ +ÄŠ +Ä‹ +ÄŒ +Ä +Ƈ +ƈ +É• +Ḉ +ḉ +D +d +ÄŽ +Ä +Ä +Ä‘ +ÆŠ +É— +Æ‹ +ÆŒ +Ç… +Dz +È¡ +É– +Ḋ +ḋ +Ḍ +Ḡ+Ḏ +Ḡ+Ḡ+ḑ +Ḓ +ḓ +E +e +È +è +É +é +Ê +ê +Ë +ë +Ä’ +Ä“ +Ä” +Ä• +Ä– +Ä— +Ę +Ä™ +Äš +Ä› +È„ +È… +Ȇ +ȇ +Ȩ +È© +Ḕ +ḕ +Ḗ +ḗ +Ḙ +ḙ +Ḛ +ḛ +Ḝ +Ḡ+Ẹ +ẹ +Ẻ +ẻ +Ẽ +ẽ +Ế +ế +Ề +á» +Ể +ể +Ễ +á»… +Ệ +ệ +F +f +Æ‘ +Æ’ +Ḟ +ḟ +G +g +Äœ +Ä +Äž +ÄŸ +Ä  +Ä¡ +Ä¢ +Ä£ +Æ“ +É  +Ǥ +Ç¥ +Ǧ +ǧ +Ç´ +ǵ +Ḡ +ḡ +H +h +Ĥ +Ä¥ +Ħ +ħ +Èž +ÈŸ +ɦ +Ḣ +ḣ +Ḥ +ḥ +Ḧ +ḧ +Ḩ +ḩ +Ḫ +ḫ +ẖ +I +i +ÃŒ +ì +à +í +ÃŽ +î +à +ï +Ĩ +Ä© +Ī +Ä« +Ĭ +Ä­ +Ä® +į +Ä° +Æ— +ɨ +Ç +Ç +Ȉ +ȉ +ÈŠ +È‹ +Ḭ +ḭ +Ḯ +ḯ +Ỉ +ỉ +Ị +ị +J +j +Ä´ +ĵ +Ç° +Ê +K +k +Ķ +Ä· +Ƙ +Æ™ +Ǩ +Ç© +Ḱ +ḱ +Ḳ +ḳ +Ḵ +ḵ +L +l +Ĺ +ĺ +Ä» +ļ +Ľ +ľ +Ä¿ +Å€ +Å +Å‚ +Æš +Lj +È´ +É« +ɬ +É­ +Ḷ +ḷ +Ḹ +ḹ +Ḻ +ḻ +Ḽ +ḽ +M +m +ɱ +Ḿ +ḿ +á¹€ +á¹ +Ṃ +ṃ +N +n +Ñ +ñ +Ń +Å„ +Å… +ņ +Ň +ň +Æ +ɲ +Æž +È  +Ç‹ +Ǹ +ǹ +ȵ +ɳ +Ṅ +á¹… +Ṇ +ṇ +Ṉ +ṉ +Ṋ +ṋ +O +o +Ã’ +ò +Ó +ó +Ô +ô +Õ +õ +Ö +ö +Ø +ø +ÅŒ +Å +ÅŽ +Å +Å +Å‘ +ÆŸ +Æ  +Æ¡ +Ç‘ +Ç’ +Ǫ +Ç« +Ǭ +Ç­ +Ǿ +Ç¿ +ÈŒ +È +ÈŽ +È +Ȫ +È« +Ȭ +È­ +È® +ȯ +È° +ȱ +Ṍ +á¹ +Ṏ +á¹ +á¹ +ṑ +á¹’ +ṓ +Ọ +á» +Ỏ +á» +á» +ố +á»’ +ồ +á»” +ổ +á»– +á»— +Ộ +á»™ +Ớ +á»› +Ờ +á» +Ở +ở +á»  +ỡ +Ợ +ợ +P +p +Ƥ +Æ¥ +á¹” +ṕ +á¹– +á¹— +Q +q +Ê  +R +r +Å” +Å• +Å– +Å— +Ř +Å™ +È +È‘ +È’ +È“ +ɼ +ɽ +ɾ +Ṙ +á¹™ +Ṛ +á¹› +Ṝ +á¹ +Ṟ +ṟ +S +s +Åš +Å› +Åœ +Å +Åž +ÅŸ +Å  +Å¡ +Ș +È™ +Ê‚ +á¹  +ṡ +á¹¢ +á¹£ +Ṥ +á¹¥ +Ṧ +ṧ +Ṩ +ṩ +T +t +Å¢ +Å£ +Ť +Å¥ +Ŧ +ŧ +Æ« +Ƭ +Æ­ +Æ® +ʈ +Èš +È› +ȶ +Ṫ +ṫ +Ṭ +á¹­ +á¹® +ṯ +á¹° +á¹± +ẗ +U +u +Ù +ù +Ú +ú +Û +û +Ãœ +ü +Ũ +Å© +Ū +Å« +Ŭ +Å­ +Å® +ů +Å° +ű +Ų +ų +Ư +Æ° +Ç“ +Ç” +Ç• +Ç– +Ç— +ǘ +Ç™ +Çš +Ç› +Çœ +È” +È• +È– +È— +á¹² +á¹³ +á¹´ +á¹µ +Ṷ +á¹· +Ṹ +á¹¹ +Ṻ +á¹» +Ụ +ụ +Ủ +ủ +Ứ +ứ +Ừ +ừ +Ử +á»­ +á»® +ữ +á»° +á»± +V +v +Ʋ +Ê‹ +á¹¼ +á¹½ +á¹¾ +ṿ +W +w +Å´ +ŵ +Ẁ +Ạ+Ẃ +ẃ +Ẅ +ẅ +Ẇ +ẇ +Ẉ +ẉ +ẘ +X +x +Ẋ +ẋ +Ẍ +Ạ+Y +y +à +ý +ÿ +Ÿ +Ŷ +Å· +Ƴ +Æ´ +Ȳ +ȳ +Ẏ +Ạ+ẙ +Ỳ +ỳ +á»´ +ỵ +Ỷ +á»· +Ỹ +ỹ +Z +z +Ź +ź +Å» +ż +Ž +ž +Ƶ +ƶ +Ȥ +È¥ +Ê +Ê‘ +Ạ+ẑ +Ẓ +ẓ +Ẕ +ẕ + + diff --git a/docbook-xsl-1.76.1/common/sl.xml b/docbook-xsl-1.76.1/common/sl.xml new file mode 100644 index 0000000..43aa257 --- /dev/null +++ b/docbook-xsl-1.76.1/common/sl.xml @@ -0,0 +1,1229 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Symbols +A +a +À +à +à +á + +â +à +ã +Ä +ä +Ã… +Ã¥ +Ä€ +Ä +Ä‚ +ă +Ä„ +Ä… +Ç +ÇŽ +Çž +ÇŸ +Ç  +Ç¡ +Ǻ +Ç» +È€ +È +È‚ +ȃ +Ȧ +ȧ +Ḁ +Ḡ+ẚ +Ạ +ạ +Ả +ả +Ấ +ấ +Ầ +ầ +Ẩ +ẩ +Ẫ +ẫ +Ậ +ậ +Ắ +ắ +Ằ +ằ +Ẳ +ẳ +Ẵ +ẵ +Ặ +ặ +B +b +Æ€ +Æ +É“ +Æ‚ +ƃ +Ḃ +ḃ +Ḅ +ḅ +Ḇ +ḇ +C +c +Ç +ç +Ć +ć +Ĉ +ĉ +ÄŠ +Ä‹ +ÄŒ +Ä +Ƈ +ƈ +É• +Ḉ +ḉ +D +d +ÄŽ +Ä +Ä +Ä‘ +ÆŠ +É— +Æ‹ +ÆŒ +Ç… +Dz +È¡ +É– +Ḋ +ḋ +Ḍ +Ḡ+Ḏ +Ḡ+Ḡ+ḑ +Ḓ +ḓ +E +e +È +è +É +é +Ê +ê +Ë +ë +Ä’ +Ä“ +Ä” +Ä• +Ä– +Ä— +Ę +Ä™ +Äš +Ä› +È„ +È… +Ȇ +ȇ +Ȩ +È© +Ḕ +ḕ +Ḗ +ḗ +Ḙ +ḙ +Ḛ +ḛ +Ḝ +Ḡ+Ẹ +ẹ +Ẻ +ẻ +Ẽ +ẽ +Ế +ế +Ề +á» +Ể +ể +Ễ +á»… +Ệ +ệ +F +f +Æ‘ +Æ’ +Ḟ +ḟ +G +g +Äœ +Ä +Äž +ÄŸ +Ä  +Ä¡ +Ä¢ +Ä£ +Æ“ +É  +Ǥ +Ç¥ +Ǧ +ǧ +Ç´ +ǵ +Ḡ +ḡ +H +h +Ĥ +Ä¥ +Ħ +ħ +Èž +ÈŸ +ɦ +Ḣ +ḣ +Ḥ +ḥ +Ḧ +ḧ +Ḩ +ḩ +Ḫ +ḫ +ẖ +I +i +ÃŒ +ì +à +í +ÃŽ +î +à +ï +Ĩ +Ä© +Ī +Ä« +Ĭ +Ä­ +Ä® +į +Ä° +Æ— +ɨ +Ç +Ç +Ȉ +ȉ +ÈŠ +È‹ +Ḭ +ḭ +Ḯ +ḯ +Ỉ +ỉ +Ị +ị +J +j +Ä´ +ĵ +Ç° +Ê +K +k +Ķ +Ä· +Ƙ +Æ™ +Ǩ +Ç© +Ḱ +ḱ +Ḳ +ḳ +Ḵ +ḵ +L +l +Ĺ +ĺ +Ä» +ļ +Ľ +ľ +Ä¿ +Å€ +Å +Å‚ +Æš +Lj +È´ +É« +ɬ +É­ +Ḷ +ḷ +Ḹ +ḹ +Ḻ +ḻ +Ḽ +ḽ +M +m +ɱ +Ḿ +ḿ +á¹€ +á¹ +Ṃ +ṃ +N +n +Ñ +ñ +Ń +Å„ +Å… +ņ +Ň +ň +Æ +ɲ +Æž +È  +Ç‹ +Ǹ +ǹ +ȵ +ɳ +Ṅ +á¹… +Ṇ +ṇ +Ṉ +ṉ +Ṋ +ṋ +O +o +Ã’ +ò +Ó +ó +Ô +ô +Õ +õ +Ö +ö +Ø +ø +ÅŒ +Å +ÅŽ +Å +Å +Å‘ +ÆŸ +Æ  +Æ¡ +Ç‘ +Ç’ +Ǫ +Ç« +Ǭ +Ç­ +Ǿ +Ç¿ +ÈŒ +È +ÈŽ +È +Ȫ +È« +Ȭ +È­ +È® +ȯ +È° +ȱ +Ṍ +á¹ +Ṏ +á¹ +á¹ +ṑ +á¹’ +ṓ +Ọ +á» +Ỏ +á» +á» +ố +á»’ +ồ +á»” +ổ +á»– +á»— +Ộ +á»™ +Ớ +á»› +Ờ +á» +Ở +ở +á»  +ỡ +Ợ +ợ +P +p +Ƥ +Æ¥ +á¹” +ṕ +á¹– +á¹— +Q +q +Ê  +R +r +Å” +Å• +Å– +Å— +Ř +Å™ +È +È‘ +È’ +È“ +ɼ +ɽ +ɾ +Ṙ +á¹™ +Ṛ +á¹› +Ṝ +á¹ +Ṟ +ṟ +S +s +Åš +Å› +Åœ +Å +Åž +ÅŸ +Å  +Å¡ +Ș +È™ +Ê‚ +á¹  +ṡ +á¹¢ +á¹£ +Ṥ +á¹¥ +Ṧ +ṧ +Ṩ +ṩ +T +t +Å¢ +Å£ +Ť +Å¥ +Ŧ +ŧ +Æ« +Ƭ +Æ­ +Æ® +ʈ +Èš +È› +ȶ +Ṫ +ṫ +Ṭ +á¹­ +á¹® +ṯ +á¹° +á¹± +ẗ +U +u +Ù +ù +Ú +ú +Û +û +Ãœ +ü +Ũ +Å© +Ū +Å« +Ŭ +Å­ +Å® +ů +Å° +ű +Ų +ų +Ư +Æ° +Ç“ +Ç” +Ç• +Ç– +Ç— +ǘ +Ç™ +Çš +Ç› +Çœ +È” +È• +È– +È— +á¹² +á¹³ +á¹´ +á¹µ +Ṷ +á¹· +Ṹ +á¹¹ +Ṻ +á¹» +Ụ +ụ +Ủ +ủ +Ứ +ứ +Ừ +ừ +Ử +á»­ +á»® +ữ +á»° +á»± +V +v +Ʋ +Ê‹ +á¹¼ +á¹½ +á¹¾ +ṿ +W +w +Å´ +ŵ +Ẁ +Ạ+Ẃ +ẃ +Ẅ +ẅ +Ẇ +ẇ +Ẉ +ẉ +ẘ +X +x +Ẋ +ẋ +Ẍ +Ạ+Y +y +à +ý +ÿ +Ÿ +Ŷ +Å· +Ƴ +Æ´ +Ȳ +ȳ +Ẏ +Ạ+ẙ +Ỳ +ỳ +á»´ +ỵ +Ỷ +á»· +Ỹ +ỹ +Z +z +Ź +ź +Å» +ż +Ž +ž +Ƶ +ƶ +Ȥ +È¥ +Ê +Ê‘ +Ạ+ẑ +Ẓ +ẓ +Ẕ +ẕ + + diff --git a/docbook-xsl-1.76.1/common/sq.xml b/docbook-xsl-1.76.1/common/sq.xml new file mode 100644 index 0000000..b566918 --- /dev/null +++ b/docbook-xsl-1.76.1/common/sq.xml @@ -0,0 +1,1229 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Symbols +A +a +À +à +à +á + +â +à +ã +Ä +ä +Ã… +Ã¥ +Ä€ +Ä +Ä‚ +ă +Ä„ +Ä… +Ç +ÇŽ +Çž +ÇŸ +Ç  +Ç¡ +Ǻ +Ç» +È€ +È +È‚ +ȃ +Ȧ +ȧ +Ḁ +Ḡ+ẚ +Ạ +ạ +Ả +ả +Ấ +ấ +Ầ +ầ +Ẩ +ẩ +Ẫ +ẫ +Ậ +ậ +Ắ +ắ +Ằ +ằ +Ẳ +ẳ +Ẵ +ẵ +Ặ +ặ +B +b +Æ€ +Æ +É“ +Æ‚ +ƃ +Ḃ +ḃ +Ḅ +ḅ +Ḇ +ḇ +C +c +Ç +ç +Ć +ć +Ĉ +ĉ +ÄŠ +Ä‹ +ÄŒ +Ä +Ƈ +ƈ +É• +Ḉ +ḉ +D +d +ÄŽ +Ä +Ä +Ä‘ +ÆŠ +É— +Æ‹ +ÆŒ +Ç… +Dz +È¡ +É– +Ḋ +ḋ +Ḍ +Ḡ+Ḏ +Ḡ+Ḡ+ḑ +Ḓ +ḓ +E +e +È +è +É +é +Ê +ê +Ë +ë +Ä’ +Ä“ +Ä” +Ä• +Ä– +Ä— +Ę +Ä™ +Äš +Ä› +È„ +È… +Ȇ +ȇ +Ȩ +È© +Ḕ +ḕ +Ḗ +ḗ +Ḙ +ḙ +Ḛ +ḛ +Ḝ +Ḡ+Ẹ +ẹ +Ẻ +ẻ +Ẽ +ẽ +Ế +ế +Ề +á» +Ể +ể +Ễ +á»… +Ệ +ệ +F +f +Æ‘ +Æ’ +Ḟ +ḟ +G +g +Äœ +Ä +Äž +ÄŸ +Ä  +Ä¡ +Ä¢ +Ä£ +Æ“ +É  +Ǥ +Ç¥ +Ǧ +ǧ +Ç´ +ǵ +Ḡ +ḡ +H +h +Ĥ +Ä¥ +Ħ +ħ +Èž +ÈŸ +ɦ +Ḣ +ḣ +Ḥ +ḥ +Ḧ +ḧ +Ḩ +ḩ +Ḫ +ḫ +ẖ +I +i +ÃŒ +ì +à +í +ÃŽ +î +à +ï +Ĩ +Ä© +Ī +Ä« +Ĭ +Ä­ +Ä® +į +Ä° +Æ— +ɨ +Ç +Ç +Ȉ +ȉ +ÈŠ +È‹ +Ḭ +ḭ +Ḯ +ḯ +Ỉ +ỉ +Ị +ị +J +j +Ä´ +ĵ +Ç° +Ê +K +k +Ķ +Ä· +Ƙ +Æ™ +Ǩ +Ç© +Ḱ +ḱ +Ḳ +ḳ +Ḵ +ḵ +L +l +Ĺ +ĺ +Ä» +ļ +Ľ +ľ +Ä¿ +Å€ +Å +Å‚ +Æš +Lj +È´ +É« +ɬ +É­ +Ḷ +ḷ +Ḹ +ḹ +Ḻ +ḻ +Ḽ +ḽ +M +m +ɱ +Ḿ +ḿ +á¹€ +á¹ +Ṃ +ṃ +N +n +Ñ +ñ +Ń +Å„ +Å… +ņ +Ň +ň +Æ +ɲ +Æž +È  +Ç‹ +Ǹ +ǹ +ȵ +ɳ +Ṅ +á¹… +Ṇ +ṇ +Ṉ +ṉ +Ṋ +ṋ +O +o +Ã’ +ò +Ó +ó +Ô +ô +Õ +õ +Ö +ö +Ø +ø +ÅŒ +Å +ÅŽ +Å +Å +Å‘ +ÆŸ +Æ  +Æ¡ +Ç‘ +Ç’ +Ǫ +Ç« +Ǭ +Ç­ +Ǿ +Ç¿ +ÈŒ +È +ÈŽ +È +Ȫ +È« +Ȭ +È­ +È® +ȯ +È° +ȱ +Ṍ +á¹ +Ṏ +á¹ +á¹ +ṑ +á¹’ +ṓ +Ọ +á» +Ỏ +á» +á» +ố +á»’ +ồ +á»” +ổ +á»– +á»— +Ộ +á»™ +Ớ +á»› +Ờ +á» +Ở +ở +á»  +ỡ +Ợ +ợ +P +p +Ƥ +Æ¥ +á¹” +ṕ +á¹– +á¹— +Q +q +Ê  +R +r +Å” +Å• +Å– +Å— +Ř +Å™ +È +È‘ +È’ +È“ +ɼ +ɽ +ɾ +Ṙ +á¹™ +Ṛ +á¹› +Ṝ +á¹ +Ṟ +ṟ +S +s +Åš +Å› +Åœ +Å +Åž +ÅŸ +Å  +Å¡ +Ș +È™ +Ê‚ +á¹  +ṡ +á¹¢ +á¹£ +Ṥ +á¹¥ +Ṧ +ṧ +Ṩ +ṩ +T +t +Å¢ +Å£ +Ť +Å¥ +Ŧ +ŧ +Æ« +Ƭ +Æ­ +Æ® +ʈ +Èš +È› +ȶ +Ṫ +ṫ +Ṭ +á¹­ +á¹® +ṯ +á¹° +á¹± +ẗ +U +u +Ù +ù +Ú +ú +Û +û +Ãœ +ü +Ũ +Å© +Ū +Å« +Ŭ +Å­ +Å® +ů +Å° +ű +Ų +ų +Ư +Æ° +Ç“ +Ç” +Ç• +Ç– +Ç— +ǘ +Ç™ +Çš +Ç› +Çœ +È” +È• +È– +È— +á¹² +á¹³ +á¹´ +á¹µ +Ṷ +á¹· +Ṹ +á¹¹ +Ṻ +á¹» +Ụ +ụ +Ủ +ủ +Ứ +ứ +Ừ +ừ +Ử +á»­ +á»® +ữ +á»° +á»± +V +v +Ʋ +Ê‹ +á¹¼ +á¹½ +á¹¾ +ṿ +W +w +Å´ +ŵ +Ẁ +Ạ+Ẃ +ẃ +Ẅ +ẅ +Ẇ +ẇ +Ẉ +ẉ +ẘ +X +x +Ẋ +ẋ +Ẍ +Ạ+Y +y +à +ý +ÿ +Ÿ +Ŷ +Å· +Ƴ +Æ´ +Ȳ +ȳ +Ẏ +Ạ+ẙ +Ỳ +ỳ +á»´ +ỵ +Ỷ +á»· +Ỹ +ỹ +Z +z +Ź +ź +Å» +ż +Ž +ž +Ƶ +ƶ +Ȥ +È¥ +Ê +Ê‘ +Ạ+ẑ +Ẓ +ẓ +Ẕ +ẕ + + diff --git a/docbook-xsl-1.76.1/common/sr.xml b/docbook-xsl-1.76.1/common/sr.xml new file mode 100644 index 0000000..413ca4c --- /dev/null +++ b/docbook-xsl-1.76.1/common/sr.xml @@ -0,0 +1,720 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Симболи +Ð +а +Б +б +Ð’ +в +Г +г +Д +д +Ђ +Ñ’ +Е +е +Ж +ж +З +з +И +и +Ј +ј +К +к +Л +л +Љ +Ñ™ +Ðœ +м +Ð +н +Њ +Ñš +О +о +П +п +Р +Ñ€ +С +Ñ +Т +Ñ‚ +Ћ +Ñ› +У +у +Ф +Ñ„ +Ð¥ +Ñ… +Ц +ц +Ч +ч +Ð +ÑŸ +Ш +ш +A +a +B +b +C +c +D +d +E +e +F +f +G +g +H +h +I +i +J +j +K +k +L +l +M +m +N +n +O +o +P +p +Q +Q +R +r +S +s +T +t +U +u +V +v +W +w +X +x +Y +y +Z +z + + diff --git a/docbook-xsl-1.76.1/common/sr_Latn.xml b/docbook-xsl-1.76.1/common/sr_Latn.xml new file mode 100644 index 0000000..7ebb8da --- /dev/null +++ b/docbook-xsl-1.76.1/common/sr_Latn.xml @@ -0,0 +1,679 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Simboli +A +a +B +b +C +c +ÄŒ +Ä +Ć +ć +D +d +DŽ +Dž +dž +Ä +Ä‘ +E +e +F +f +G +g +H +h +I +i +J +j +K +k +L +l +LJ +Lj +lj +M +m +N +n +NJ +Nj +nj +O +o +P +p +Q +Q +R +r +S +s +Å  +Å¡ +T +t +U +u +V +v +W +w +X +x +Y +y +Z +z +Ž +ž + + diff --git a/docbook-xsl-1.76.1/common/stripns.xsl b/docbook-xsl-1.76.1/common/stripns.xsl new file mode 100644 index 0000000..56009d0 --- /dev/null +++ b/docbook-xsl-1.76.1/common/stripns.xsl @@ -0,0 +1,352 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + info + + + objectinfo + + blockinfo + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARNING: cannot add @xml:base to node + set root element. + Relative paths may not work. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + / + + + + + + + + + + + + + + + 1 + 0 + + + + + + Stripping namespace from DocBook 5 document. + It is suggested to use namespaced version of the stylesheets + available in distribution file 'docbook-xsl-ns' + at //http://sourceforge.net/projects/docbook/files/ + which does not require namespace stripping step. + + + + + Processing stripped document. + + + + + + + + + diff --git a/docbook-xsl-1.76.1/common/subtitles.xsl b/docbook-xsl-1.76.1/common/subtitles.xsl new file mode 100644 index 0000000..8211c84 --- /dev/null +++ b/docbook-xsl-1.76.1/common/subtitles.xsl @@ -0,0 +1,155 @@ + + + + + + + + + + +Provides access to element subtitles + +Processing an element in the +subtitle.markup mode produces the +subtitle of the element. + + + + + + + Request for subtitle of unexpected element: + + + ???SUBTITLE??? + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/common/sv.xml b/docbook-xsl-1.76.1/common/sv.xml new file mode 100644 index 0000000..354c48b --- /dev/null +++ b/docbook-xsl-1.76.1/common/sv.xml @@ -0,0 +1,664 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +A +a +B +b +C +c +D +d +E +e +F +f +G +g +H +h +I +i +J +j +K +k +L +l +M +m +N +n +O +o +P +p +Q +q +R +r +S +s +T +t +U +u +V +v +W +w +X +x +Y +y +Z +z +Ã… +Ã¥ +Ä +ä +Ö +ö + + diff --git a/docbook-xsl-1.76.1/common/ta.xml b/docbook-xsl-1.76.1/common/ta.xml new file mode 100644 index 0000000..873f1f9 --- /dev/null +++ b/docbook-xsl-1.76.1/common/ta.xml @@ -0,0 +1,660 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +கà¯à®±à®¿à®¯à¯€à®Ÿà¯à®•à®³à¯ +A +a +B +b +C +c +D +d +E +e +F +f +G +g +H +h +I +i +J +j +K +k +L +l +M +m +N +n +O +o +P +p +Q +q +R +r +S +s +T +t +U +u +V +v +W +w +X +x +Y +y +Z +z + + diff --git a/docbook-xsl-1.76.1/common/table.xsl b/docbook-xsl-1.76.1/common/table.xsl new file mode 100644 index 0000000..aefdb07 --- /dev/null +++ b/docbook-xsl-1.76.1/common/table.xsl @@ -0,0 +1,514 @@ + + + + + + + + + + + 0: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0: + + + : + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + + + + +Determine the column number in which a given entry occurs + +If an entry has a +colname or +namest attribute, this template +will determine the number of the column in which the entry should occur. +For other entrys, nothing is returned. + + + +entry + +The entry-element which is to be tested. + + + + + + +This template returns the column number if it can be determined, +or 0 (the empty string) + + + + + + + + + + + + + + + + + + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + : + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/common/targetdatabase.dtd b/docbook-xsl-1.76.1/common/targetdatabase.dtd new file mode 100644 index 0000000..2ace1e0 --- /dev/null +++ b/docbook-xsl-1.76.1/common/targetdatabase.dtd @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/common/targets.xsl b/docbook-xsl-1.76.1/common/targets.xsl new file mode 100644 index 0000000..294c304 --- /dev/null +++ b/docbook-xsl-1.76.1/common/targets.xsl @@ -0,0 +1,333 @@ + + + + + + + + + + +Collects information for potential cross reference targets + +Processing the root element in the +collect.targets mode produces +a set of target database elements that can be used by +the olink mechanism to resolve external cross references. +The collection process is controlled by the +collect.xref.targets parameter, which can be +yes to collect targets and process +the document for output, only to +only collect the targets, and no +(default) to not collect the targets and only process the document. + + +A targets.filename parameter must be +specified to receive the output if +collect.xref.targets is +set to yes so as to +redirect the target data to a file separate from the +document output. + + + + + + + + + + + Must specify a $targets.filename parameter when + $collect.xref.targets is set to 'yes'. + The xref targets were not collected. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Warning: processing automatic glossary + without a glossary.collection file. + + + + + + Warning: processing automatic glossary but unable to + open glossary.collection file ' + + ' + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    diff --git a/docbook-xsl-1.76.1/common/te.xml b/docbook-xsl-1.76.1/common/te.xml new file mode 100644 index 0000000..c912fc2 --- /dev/null +++ b/docbook-xsl-1.76.1/common/te.xml @@ -0,0 +1,660 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +à°šà°¿à°¹à±à°¨à°®à±à°²à± +A +a +B +b +C +c +D +d +E +e +F +f +G +g +H +h +I +i +J +j +K +k +L +l +M +m +N +n +O +o +P +p +Q +q +R +r +S +s +T +t +U +u +V +v +W +w +X +x +Y +y +Z +z + + diff --git a/docbook-xsl-1.76.1/common/th.xml b/docbook-xsl-1.76.1/common/th.xml new file mode 100644 index 0000000..f2e8109 --- /dev/null +++ b/docbook-xsl-1.76.1/common/th.xml @@ -0,0 +1,1229 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Symbols +A +a +À +à +à +á + +â +à +ã +Ä +ä +Ã… +Ã¥ +Ä€ +Ä +Ä‚ +ă +Ä„ +Ä… +Ç +ÇŽ +Çž +ÇŸ +Ç  +Ç¡ +Ǻ +Ç» +È€ +È +È‚ +ȃ +Ȧ +ȧ +Ḁ +Ḡ+ẚ +Ạ +ạ +Ả +ả +Ấ +ấ +Ầ +ầ +Ẩ +ẩ +Ẫ +ẫ +Ậ +ậ +Ắ +ắ +Ằ +ằ +Ẳ +ẳ +Ẵ +ẵ +Ặ +ặ +B +b +Æ€ +Æ +É“ +Æ‚ +ƃ +Ḃ +ḃ +Ḅ +ḅ +Ḇ +ḇ +C +c +Ç +ç +Ć +ć +Ĉ +ĉ +ÄŠ +Ä‹ +ÄŒ +Ä +Ƈ +ƈ +É• +Ḉ +ḉ +D +d +ÄŽ +Ä +Ä +Ä‘ +ÆŠ +É— +Æ‹ +ÆŒ +Ç… +Dz +È¡ +É– +Ḋ +ḋ +Ḍ +Ḡ+Ḏ +Ḡ+Ḡ+ḑ +Ḓ +ḓ +E +e +È +è +É +é +Ê +ê +Ë +ë +Ä’ +Ä“ +Ä” +Ä• +Ä– +Ä— +Ę +Ä™ +Äš +Ä› +È„ +È… +Ȇ +ȇ +Ȩ +È© +Ḕ +ḕ +Ḗ +ḗ +Ḙ +ḙ +Ḛ +ḛ +Ḝ +Ḡ+Ẹ +ẹ +Ẻ +ẻ +Ẽ +ẽ +Ế +ế +Ề +á» +Ể +ể +Ễ +á»… +Ệ +ệ +F +f +Æ‘ +Æ’ +Ḟ +ḟ +G +g +Äœ +Ä +Äž +ÄŸ +Ä  +Ä¡ +Ä¢ +Ä£ +Æ“ +É  +Ǥ +Ç¥ +Ǧ +ǧ +Ç´ +ǵ +Ḡ +ḡ +H +h +Ĥ +Ä¥ +Ħ +ħ +Èž +ÈŸ +ɦ +Ḣ +ḣ +Ḥ +ḥ +Ḧ +ḧ +Ḩ +ḩ +Ḫ +ḫ +ẖ +I +i +ÃŒ +ì +à +í +ÃŽ +î +à +ï +Ĩ +Ä© +Ī +Ä« +Ĭ +Ä­ +Ä® +į +Ä° +Æ— +ɨ +Ç +Ç +Ȉ +ȉ +ÈŠ +È‹ +Ḭ +ḭ +Ḯ +ḯ +Ỉ +ỉ +Ị +ị +J +j +Ä´ +ĵ +Ç° +Ê +K +k +Ķ +Ä· +Ƙ +Æ™ +Ǩ +Ç© +Ḱ +ḱ +Ḳ +ḳ +Ḵ +ḵ +L +l +Ĺ +ĺ +Ä» +ļ +Ľ +ľ +Ä¿ +Å€ +Å +Å‚ +Æš +Lj +È´ +É« +ɬ +É­ +Ḷ +ḷ +Ḹ +ḹ +Ḻ +ḻ +Ḽ +ḽ +M +m +ɱ +Ḿ +ḿ +á¹€ +á¹ +Ṃ +ṃ +N +n +Ñ +ñ +Ń +Å„ +Å… +ņ +Ň +ň +Æ +ɲ +Æž +È  +Ç‹ +Ǹ +ǹ +ȵ +ɳ +Ṅ +á¹… +Ṇ +ṇ +Ṉ +ṉ +Ṋ +ṋ +O +o +Ã’ +ò +Ó +ó +Ô +ô +Õ +õ +Ö +ö +Ø +ø +ÅŒ +Å +ÅŽ +Å +Å +Å‘ +ÆŸ +Æ  +Æ¡ +Ç‘ +Ç’ +Ǫ +Ç« +Ǭ +Ç­ +Ǿ +Ç¿ +ÈŒ +È +ÈŽ +È +Ȫ +È« +Ȭ +È­ +È® +ȯ +È° +ȱ +Ṍ +á¹ +Ṏ +á¹ +á¹ +ṑ +á¹’ +ṓ +Ọ +á» +Ỏ +á» +á» +ố +á»’ +ồ +á»” +ổ +á»– +á»— +Ộ +á»™ +Ớ +á»› +Ờ +á» +Ở +ở +á»  +ỡ +Ợ +ợ +P +p +Ƥ +Æ¥ +á¹” +ṕ +á¹– +á¹— +Q +q +Ê  +R +r +Å” +Å• +Å– +Å— +Ř +Å™ +È +È‘ +È’ +È“ +ɼ +ɽ +ɾ +Ṙ +á¹™ +Ṛ +á¹› +Ṝ +á¹ +Ṟ +ṟ +S +s +Åš +Å› +Åœ +Å +Åž +ÅŸ +Å  +Å¡ +Ș +È™ +Ê‚ +á¹  +ṡ +á¹¢ +á¹£ +Ṥ +á¹¥ +Ṧ +ṧ +Ṩ +ṩ +T +t +Å¢ +Å£ +Ť +Å¥ +Ŧ +ŧ +Æ« +Ƭ +Æ­ +Æ® +ʈ +Èš +È› +ȶ +Ṫ +ṫ +Ṭ +á¹­ +á¹® +ṯ +á¹° +á¹± +ẗ +U +u +Ù +ù +Ú +ú +Û +û +Ãœ +ü +Ũ +Å© +Ū +Å« +Ŭ +Å­ +Å® +ů +Å° +ű +Ų +ų +Ư +Æ° +Ç“ +Ç” +Ç• +Ç– +Ç— +ǘ +Ç™ +Çš +Ç› +Çœ +È” +È• +È– +È— +á¹² +á¹³ +á¹´ +á¹µ +Ṷ +á¹· +Ṹ +á¹¹ +Ṻ +á¹» +Ụ +ụ +Ủ +ủ +Ứ +ứ +Ừ +ừ +Ử +á»­ +á»® +ữ +á»° +á»± +V +v +Ʋ +Ê‹ +á¹¼ +á¹½ +á¹¾ +ṿ +W +w +Å´ +ŵ +Ẁ +Ạ+Ẃ +ẃ +Ẅ +ẅ +Ẇ +ẇ +Ẉ +ẉ +ẘ +X +x +Ẋ +ẋ +Ẍ +Ạ+Y +y +à +ý +ÿ +Ÿ +Ŷ +Å· +Ƴ +Æ´ +Ȳ +ȳ +Ẏ +Ạ+ẙ +Ỳ +ỳ +á»´ +ỵ +Ỷ +á»· +Ỹ +ỹ +Z +z +Ź +ź +Å» +ż +Ž +ž +Ƶ +ƶ +Ȥ +È¥ +Ê +Ê‘ +Ạ+ẑ +Ẓ +ẓ +Ẕ +ẕ + + diff --git a/docbook-xsl-1.76.1/common/titles.xsl b/docbook-xsl-1.76.1/common/titles.xsl new file mode 100644 index 0000000..84fcf79 --- /dev/null +++ b/docbook-xsl-1.76.1/common/titles.xsl @@ -0,0 +1,805 @@ + + + + + + + + + + +Provides access to element titles + +Processing an element in the +title.markup mode produces the +title of the element. This does not include the label. + + + + + + + + + + + + + + + + + + + + + + + Request for title of element with no title: + + + + (id=" + + ") + + + (xml:id=" + + ") + + + + + ???TITLE??? + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + REFENTRY WITHOUT TITLE??? + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR: glossdiv missing its required title + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Note + Important + Caution + Warning + Tip + + + + + + + + + + Question + + + + + Answer + + + + + Question + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Endterm points to nonexistent ID: + + + ??? + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + XRef to nonexistent id: + + + + ??? + + + + + + + + + + Endterm points to nonexistent ID: + + + ??? + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/common/tl.xml b/docbook-xsl-1.76.1/common/tl.xml new file mode 100644 index 0000000..b081d8e --- /dev/null +++ b/docbook-xsl-1.76.1/common/tl.xml @@ -0,0 +1,1229 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Symbols +A +a +À +à +à +á + +â +à +ã +Ä +ä +Ã… +Ã¥ +Ä€ +Ä +Ä‚ +ă +Ä„ +Ä… +Ç +ÇŽ +Çž +ÇŸ +Ç  +Ç¡ +Ǻ +Ç» +È€ +È +È‚ +ȃ +Ȧ +ȧ +Ḁ +Ḡ+ẚ +Ạ +ạ +Ả +ả +Ấ +ấ +Ầ +ầ +Ẩ +ẩ +Ẫ +ẫ +Ậ +ậ +Ắ +ắ +Ằ +ằ +Ẳ +ẳ +Ẵ +ẵ +Ặ +ặ +B +b +Æ€ +Æ +É“ +Æ‚ +ƃ +Ḃ +ḃ +Ḅ +ḅ +Ḇ +ḇ +C +c +Ç +ç +Ć +ć +Ĉ +ĉ +ÄŠ +Ä‹ +ÄŒ +Ä +Ƈ +ƈ +É• +Ḉ +ḉ +D +d +ÄŽ +Ä +Ä +Ä‘ +ÆŠ +É— +Æ‹ +ÆŒ +Ç… +Dz +È¡ +É– +Ḋ +ḋ +Ḍ +Ḡ+Ḏ +Ḡ+Ḡ+ḑ +Ḓ +ḓ +E +e +È +è +É +é +Ê +ê +Ë +ë +Ä’ +Ä“ +Ä” +Ä• +Ä– +Ä— +Ę +Ä™ +Äš +Ä› +È„ +È… +Ȇ +ȇ +Ȩ +È© +Ḕ +ḕ +Ḗ +ḗ +Ḙ +ḙ +Ḛ +ḛ +Ḝ +Ḡ+Ẹ +ẹ +Ẻ +ẻ +Ẽ +ẽ +Ế +ế +Ề +á» +Ể +ể +Ễ +á»… +Ệ +ệ +F +f +Æ‘ +Æ’ +Ḟ +ḟ +G +g +Äœ +Ä +Äž +ÄŸ +Ä  +Ä¡ +Ä¢ +Ä£ +Æ“ +É  +Ǥ +Ç¥ +Ǧ +ǧ +Ç´ +ǵ +Ḡ +ḡ +H +h +Ĥ +Ä¥ +Ħ +ħ +Èž +ÈŸ +ɦ +Ḣ +ḣ +Ḥ +ḥ +Ḧ +ḧ +Ḩ +ḩ +Ḫ +ḫ +ẖ +I +i +ÃŒ +ì +à +í +ÃŽ +î +à +ï +Ĩ +Ä© +Ī +Ä« +Ĭ +Ä­ +Ä® +į +Ä° +Æ— +ɨ +Ç +Ç +Ȉ +ȉ +ÈŠ +È‹ +Ḭ +ḭ +Ḯ +ḯ +Ỉ +ỉ +Ị +ị +J +j +Ä´ +ĵ +Ç° +Ê +K +k +Ķ +Ä· +Ƙ +Æ™ +Ǩ +Ç© +Ḱ +ḱ +Ḳ +ḳ +Ḵ +ḵ +L +l +Ĺ +ĺ +Ä» +ļ +Ľ +ľ +Ä¿ +Å€ +Å +Å‚ +Æš +Lj +È´ +É« +ɬ +É­ +Ḷ +ḷ +Ḹ +ḹ +Ḻ +ḻ +Ḽ +ḽ +M +m +ɱ +Ḿ +ḿ +á¹€ +á¹ +Ṃ +ṃ +N +n +Ñ +ñ +Ń +Å„ +Å… +ņ +Ň +ň +Æ +ɲ +Æž +È  +Ç‹ +Ǹ +ǹ +ȵ +ɳ +Ṅ +á¹… +Ṇ +ṇ +Ṉ +ṉ +Ṋ +ṋ +O +o +Ã’ +ò +Ó +ó +Ô +ô +Õ +õ +Ö +ö +Ø +ø +ÅŒ +Å +ÅŽ +Å +Å +Å‘ +ÆŸ +Æ  +Æ¡ +Ç‘ +Ç’ +Ǫ +Ç« +Ǭ +Ç­ +Ǿ +Ç¿ +ÈŒ +È +ÈŽ +È +Ȫ +È« +Ȭ +È­ +È® +ȯ +È° +ȱ +Ṍ +á¹ +Ṏ +á¹ +á¹ +ṑ +á¹’ +ṓ +Ọ +á» +Ỏ +á» +á» +ố +á»’ +ồ +á»” +ổ +á»– +á»— +Ộ +á»™ +Ớ +á»› +Ờ +á» +Ở +ở +á»  +ỡ +Ợ +ợ +P +p +Ƥ +Æ¥ +á¹” +ṕ +á¹– +á¹— +Q +q +Ê  +R +r +Å” +Å• +Å– +Å— +Ř +Å™ +È +È‘ +È’ +È“ +ɼ +ɽ +ɾ +Ṙ +á¹™ +Ṛ +á¹› +Ṝ +á¹ +Ṟ +ṟ +S +s +Åš +Å› +Åœ +Å +Åž +ÅŸ +Å  +Å¡ +Ș +È™ +Ê‚ +á¹  +ṡ +á¹¢ +á¹£ +Ṥ +á¹¥ +Ṧ +ṧ +Ṩ +ṩ +T +t +Å¢ +Å£ +Ť +Å¥ +Ŧ +ŧ +Æ« +Ƭ +Æ­ +Æ® +ʈ +Èš +È› +ȶ +Ṫ +ṫ +Ṭ +á¹­ +á¹® +ṯ +á¹° +á¹± +ẗ +U +u +Ù +ù +Ú +ú +Û +û +Ãœ +ü +Ũ +Å© +Ū +Å« +Ŭ +Å­ +Å® +ů +Å° +ű +Ų +ų +Ư +Æ° +Ç“ +Ç” +Ç• +Ç– +Ç— +ǘ +Ç™ +Çš +Ç› +Çœ +È” +È• +È– +È— +á¹² +á¹³ +á¹´ +á¹µ +Ṷ +á¹· +Ṹ +á¹¹ +Ṻ +á¹» +Ụ +ụ +Ủ +ủ +Ứ +ứ +Ừ +ừ +Ử +á»­ +á»® +ữ +á»° +á»± +V +v +Ʋ +Ê‹ +á¹¼ +á¹½ +á¹¾ +ṿ +W +w +Å´ +ŵ +Ẁ +Ạ+Ẃ +ẃ +Ẅ +ẅ +Ẇ +ẇ +Ẉ +ẉ +ẘ +X +x +Ẋ +ẋ +Ẍ +Ạ+Y +y +à +ý +ÿ +Ÿ +Ŷ +Å· +Ƴ +Æ´ +Ȳ +ȳ +Ẏ +Ạ+ẙ +Ỳ +ỳ +á»´ +ỵ +Ỷ +á»· +Ỹ +ỹ +Z +z +Ź +ź +Å» +ż +Ž +ž +Ƶ +ƶ +Ȥ +È¥ +Ê +Ê‘ +Ạ+ẑ +Ẓ +ẓ +Ẕ +ẕ + + diff --git a/docbook-xsl-1.76.1/common/tr.xml b/docbook-xsl-1.76.1/common/tr.xml new file mode 100644 index 0000000..652911d --- /dev/null +++ b/docbook-xsl-1.76.1/common/tr.xml @@ -0,0 +1,666 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Semboller +A +a +B +b +C +c +Ç +ç +D +d +E +e +F +f +G +g +Äž +ÄŸ +H +h +I +ı +Ä° +i +J +j +K +k +L +l +M +m +N +n +O +o +Ö +ö +P +p +R +r +S +s +Åž +ÅŸ +T +t +U +u +Ãœ +ü +V +v +Y +y +Z +z + + diff --git a/docbook-xsl-1.76.1/common/uk.xml b/docbook-xsl-1.76.1/common/uk.xml new file mode 100644 index 0000000..4caf73f --- /dev/null +++ b/docbook-xsl-1.76.1/common/uk.xml @@ -0,0 +1,726 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +A +a +B +b +C +c +D +d +E +e +F +f +G +g +H +h +I +i +J +j +K +k +L +l +M +m +N +n +O +o +P +p +Q +q +R +r +S +s +T +t +U +u +V +v +W +w +X +x +Y +y +Z +z +Ð +а +Б +б +Ð’ +в +Г +г +Ò +Ò‘ +Д +д +Е +е +Є +Ñ” +Ж +ж +З +з +И +и +І +Ñ– +Ї +Ñ— +Й +й +К +к +Л +л +Ðœ +м +Ð +н +О +о +П +п +Р +Ñ€ +С +Ñ +Т +Ñ‚ +У +у +Ф +Ñ„ +Ð¥ +Ñ… +Ц +ц +Ч +ч +Ш +ш +Щ +щ +Ь +ÑŒ +Ю +ÑŽ +Я +Ñ + + diff --git a/docbook-xsl-1.76.1/common/utility.xml b/docbook-xsl-1.76.1/common/utility.xml new file mode 100644 index 0000000..d9cbe3c --- /dev/null +++ b/docbook-xsl-1.76.1/common/utility.xml @@ -0,0 +1,259 @@ + + + + + Common » Utility Template Reference + + $Id: utility.xsl 7101 2007-07-20 15:32:12Z xmldoc $ + + + + + Introduction + +This is technical reference documentation for the + miscellaneous utility templates in the DocBook XSL + Stylesheets. + + + +These templates are defined in a separate file from the set + of “common†templates because some of the common templates + reference DocBook XSL stylesheet parameters, requiring the + entire set of parameters to be imported/included in any + stylesheet that imports/includes the common templates. + + +The utility templates don’t import or include any DocBook + XSL stylesheet parameters, so the utility templates can be used + without importing the whole set of parameters. + + + +This is not intended to be user documentation. It is + provided for developers writing customization layers for the + stylesheets. + + + + + +log.message +Logs/emits formatted notes and warnings + + +<xsl:template name="log.message"> +<xsl:param name="level"/> +<xsl:param name="source"/> +<xsl:param name="context-desc"/> +<xsl:param name="context-desc-field-length">12</xsl:param> +<xsl:param name="context-desc-padded"> + <xsl:if test="not($context-desc = '')"> + <xsl:call-template name="pad-string"> + <xsl:with-param name="leftRight">right</xsl:with-param> + <xsl:with-param name="padVar" select="substring($context-desc, 1, $context-desc-field-length)"/> + <xsl:with-param name="length" select="$context-desc-field-length"/> + </xsl:call-template> + </xsl:if> + </xsl:param> +<xsl:param name="message"/> +<xsl:param name="message-field-length" select="45"/> +<xsl:param name="message-padded"> + <xsl:variable name="spaces-for-blank-level"> + <!-- * if the level field is blank, we'll need to pad out --> + <!-- * the message field with spaces to compensate --> + <xsl:choose> + <xsl:when test="$level = ''"> + <xsl:value-of select="4 + 2"/> + <!-- * 4 = hard-coded length of comment text ("Note" or "Warn") --> + <!-- * + 2 = length of colon-plus-space separator ": " --> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="0"/> + </xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:variable name="spaces-for-blank-context-desc"> + <!-- * if the context-description field is blank, we'll need --> + <!-- * to pad out the message field with spaces to compensate --> + <xsl:choose> + <xsl:when test="$context-desc = ''"> + <xsl:value-of select="$context-desc-field-length + 2"/> + <!-- * + 2 = length of colon-plus-space separator ": " --> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="0"/> + </xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:variable name="extra-spaces" select="$spaces-for-blank-level + $spaces-for-blank-context-desc"/> + <xsl:call-template name="pad-string"> + <xsl:with-param name="leftRight">right</xsl:with-param> + <xsl:with-param name="padVar" select="substring($message, 1, ($message-field-length + $extra-spaces))"/> + <xsl:with-param name="length" select="$message-field-length + $extra-spaces"/> + </xsl:call-template> + </xsl:param> + ... +</xsl:template> + +Description + +The log.message template is a utility + template for logging/emitting formatted messages – that is, + notes and warnings, along with a given log “level†and an + identifier for the “source†that the message relates to. + + Parameters + + + level + + +Text to log/emit in the message-level field to + indicate the message level + (Note or + Warning) + + + + source + + +Text to log/emit in the source field to identify the + “source†to which the notification/warning relates. + This can be any arbitrary string, but because the + message lacks line and column numbers to identify the + exact part of the source document to which it + relates, the intention is that the value you pass + into the source parameter should + give the user some way to identify the portion of + their source document on which to take potentially + take action in response to the log message (for + example, to edit, change, or add content). + + +So the source value should be, + for example, an ID, book/chapter/article title, title + of some formal object, or even a string giving an + XPath expression. + + + + context-desc + + +Text to log/emit in the context-description field to + describe the context for the message. + + + + context-desc-field-length + + +Specifies length of the context-description field + (in characters); default is 12 + + +If the text specified by the + context-desc parameter is longer + than the number of characters specified in + context-desc-field-length, it is + truncated to context-desc-field-length + (12 characters by default). + + +If the specified text is shorter than + context-desc-field-length, + it is right-padded out to + context-desc-field-length (12 by + default). + + +If no value has been specified for the + context-desc parameter, the field is + left empty and the text of the log message begins with + the value of the message + parameter. + + + + message + + +Text to log/emit in the actual message field + + + + message-field-length + + +Specifies length of the message + field (in characters); default is 45 + + + + + + Returns + +Outputs a message (generally, to standard error). + + + + +get.doc.title +Gets a title from the current document + + +<xsl:template name="get.doc.title"/> + +Description + +The get.doc.title template is a + utility template for returning the first title found in the + current document. + + Returns + +Returns a string containing some identifying title for the + current document . + + + + +pad-string +Right-pads or left-pads a string out to a certain length + + +<xsl:template name="pad-string"> +<xsl:param name="padChar" select="' '"/> +<xsl:param name="leftRight">left</xsl:param> +<xsl:param name="padVar"/> +<xsl:param name="length"/> + ... +</xsl:template> + +Description + +This function takes string padVar and + pads it out in the direction rightLeft to + the string-length length, using string + padChar (a space character by default) as + the padding string (note that padChar can + be a string; it is not limited to just being a single + character). + + + +This function began as a copy of Nate Austin's + prepend-pad function in the Padding + Content section of Dave Pawson's XSLT + FAQ. + + + Returns + +Returns a (padded) string. + + + diff --git a/docbook-xsl-1.76.1/common/utility.xsl b/docbook-xsl-1.76.1/common/utility.xsl new file mode 100644 index 0000000..37092b7 --- /dev/null +++ b/docbook-xsl-1.76.1/common/utility.xsl @@ -0,0 +1,290 @@ + + + + + + + Common » Utility Template Reference + + $Id: utility.xsl 7101 2007-07-20 15:32:12Z xmldoc $ + + + + + Introduction + This is technical reference documentation for the + miscellaneous utility templates in the DocBook XSL + Stylesheets. + + These templates are defined in a separate file from the set + of “common†templates because some of the common templates + reference DocBook XSL stylesheet parameters, requiring the + entire set of parameters to be imported/included in any + stylesheet that imports/includes the common templates. + The utility templates don’t import or include any DocBook + XSL stylesheet parameters, so the utility templates can be used + without importing the whole set of parameters. + + This is not intended to be user documentation. It is + provided for developers writing customization layers for the + stylesheets. + + + + + + + Logs/emits formatted notes and warnings + + + The log.message template is a utility + template for logging/emitting formatted messages â€“ that is, + notes and warnings, along with a given log “level†and an + identifier for the “source†that the message relates to. + + + + + level + + Text to log/emit in the message-level field to + indicate the message level + (Note or + Warning) + + + source + + Text to log/emit in the source field to identify the + “source†to which the notification/warning relates. + This can be any arbitrary string, but because the + message lacks line and column numbers to identify the + exact part of the source document to which it + relates, the intention is that the value you pass + into the source parameter should + give the user some way to identify the portion of + their source document on which to take potentially + take action in response to the log message (for + example, to edit, change, or add content). + So the source value should be, + for example, an ID, book/chapter/article title, title + of some formal object, or even a string giving an + XPath expression. + + + context-desc + + Text to log/emit in the context-description field to + describe the context for the message. + + + context-desc-field-length + + Specifies length of the context-description field + (in characters); default is 12 + If the text specified by the + context-desc parameter is longer + than the number of characters specified in + context-desc-field-length, it is + truncated to context-desc-field-length + (12 characters by default). + If the specified text is shorter than + context-desc-field-length, + it is right-padded out to + context-desc-field-length (12 by + default). + If no value has been specified for the + context-desc parameter, the field is + left empty and the text of the log message begins with + the value of the message + parameter. + + + message + + Text to log/emit in the actual message field + + + message-field-length + + Specifies length of the message + field (in characters); default is 45 + + + + + + Outputs a message (generally, to standard error). + + + + + + 12 + + + + right + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + right + + + + + + + + + : + + + + : + + + + + + + + + + Gets a title from the current document + + The get.doc.title template is a + utility template for returning the first title found in the + current document. + + + Returns a string containing some identifying title for the + current document . + + + + + + + + + + + + + + + Right-pads or left-pads a string out to a certain length + + This function takes string padVar and + pads it out in the direction rightLeft to + the string-length length, using string + padChar (a space character by default) as + the padding string (note that padChar can + be a string; it is not limited to just being a single + character). + + This function began as a copy of Nate Austin's + prepend-pad function in the Padding + Content section of Dave Pawson's XSLT + FAQ. + + + + Returns a (padded) string. + + + + + + left + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/common/vi.xml b/docbook-xsl-1.76.1/common/vi.xml new file mode 100644 index 0000000..682c467 --- /dev/null +++ b/docbook-xsl-1.76.1/common/vi.xml @@ -0,0 +1,1229 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Symbols +A +a +À +à +à +á + +â +à +ã +Ä +ä +Ã… +Ã¥ +Ä€ +Ä +Ä‚ +ă +Ä„ +Ä… +Ç +ÇŽ +Çž +ÇŸ +Ç  +Ç¡ +Ǻ +Ç» +È€ +È +È‚ +ȃ +Ȧ +ȧ +Ḁ +Ḡ+ẚ +Ạ +ạ +Ả +ả +Ấ +ấ +Ầ +ầ +Ẩ +ẩ +Ẫ +ẫ +Ậ +ậ +Ắ +ắ +Ằ +ằ +Ẳ +ẳ +Ẵ +ẵ +Ặ +ặ +B +b +Æ€ +Æ +É“ +Æ‚ +ƃ +Ḃ +ḃ +Ḅ +ḅ +Ḇ +ḇ +C +c +Ç +ç +Ć +ć +Ĉ +ĉ +ÄŠ +Ä‹ +ÄŒ +Ä +Ƈ +ƈ +É• +Ḉ +ḉ +D +d +ÄŽ +Ä +Ä +Ä‘ +ÆŠ +É— +Æ‹ +ÆŒ +Ç… +Dz +È¡ +É– +Ḋ +ḋ +Ḍ +Ḡ+Ḏ +Ḡ+Ḡ+ḑ +Ḓ +ḓ +E +e +È +è +É +é +Ê +ê +Ë +ë +Ä’ +Ä“ +Ä” +Ä• +Ä– +Ä— +Ę +Ä™ +Äš +Ä› +È„ +È… +Ȇ +ȇ +Ȩ +È© +Ḕ +ḕ +Ḗ +ḗ +Ḙ +ḙ +Ḛ +ḛ +Ḝ +Ḡ+Ẹ +ẹ +Ẻ +ẻ +Ẽ +ẽ +Ế +ế +Ề +á» +Ể +ể +Ễ +á»… +Ệ +ệ +F +f +Æ‘ +Æ’ +Ḟ +ḟ +G +g +Äœ +Ä +Äž +ÄŸ +Ä  +Ä¡ +Ä¢ +Ä£ +Æ“ +É  +Ǥ +Ç¥ +Ǧ +ǧ +Ç´ +ǵ +Ḡ +ḡ +H +h +Ĥ +Ä¥ +Ħ +ħ +Èž +ÈŸ +ɦ +Ḣ +ḣ +Ḥ +ḥ +Ḧ +ḧ +Ḩ +ḩ +Ḫ +ḫ +ẖ +I +i +ÃŒ +ì +à +í +ÃŽ +î +à +ï +Ĩ +Ä© +Ī +Ä« +Ĭ +Ä­ +Ä® +į +Ä° +Æ— +ɨ +Ç +Ç +Ȉ +ȉ +ÈŠ +È‹ +Ḭ +ḭ +Ḯ +ḯ +Ỉ +ỉ +Ị +ị +J +j +Ä´ +ĵ +Ç° +Ê +K +k +Ķ +Ä· +Ƙ +Æ™ +Ǩ +Ç© +Ḱ +ḱ +Ḳ +ḳ +Ḵ +ḵ +L +l +Ĺ +ĺ +Ä» +ļ +Ľ +ľ +Ä¿ +Å€ +Å +Å‚ +Æš +Lj +È´ +É« +ɬ +É­ +Ḷ +ḷ +Ḹ +ḹ +Ḻ +ḻ +Ḽ +ḽ +M +m +ɱ +Ḿ +ḿ +á¹€ +á¹ +Ṃ +ṃ +N +n +Ñ +ñ +Ń +Å„ +Å… +ņ +Ň +ň +Æ +ɲ +Æž +È  +Ç‹ +Ǹ +ǹ +ȵ +ɳ +Ṅ +á¹… +Ṇ +ṇ +Ṉ +ṉ +Ṋ +ṋ +O +o +Ã’ +ò +Ó +ó +Ô +ô +Õ +õ +Ö +ö +Ø +ø +ÅŒ +Å +ÅŽ +Å +Å +Å‘ +ÆŸ +Æ  +Æ¡ +Ç‘ +Ç’ +Ǫ +Ç« +Ǭ +Ç­ +Ǿ +Ç¿ +ÈŒ +È +ÈŽ +È +Ȫ +È« +Ȭ +È­ +È® +ȯ +È° +ȱ +Ṍ +á¹ +Ṏ +á¹ +á¹ +ṑ +á¹’ +ṓ +Ọ +á» +Ỏ +á» +á» +ố +á»’ +ồ +á»” +ổ +á»– +á»— +Ộ +á»™ +Ớ +á»› +Ờ +á» +Ở +ở +á»  +ỡ +Ợ +ợ +P +p +Ƥ +Æ¥ +á¹” +ṕ +á¹– +á¹— +Q +q +Ê  +R +r +Å” +Å• +Å– +Å— +Ř +Å™ +È +È‘ +È’ +È“ +ɼ +ɽ +ɾ +Ṙ +á¹™ +Ṛ +á¹› +Ṝ +á¹ +Ṟ +ṟ +S +s +Åš +Å› +Åœ +Å +Åž +ÅŸ +Å  +Å¡ +Ș +È™ +Ê‚ +á¹  +ṡ +á¹¢ +á¹£ +Ṥ +á¹¥ +Ṧ +ṧ +Ṩ +ṩ +T +t +Å¢ +Å£ +Ť +Å¥ +Ŧ +ŧ +Æ« +Ƭ +Æ­ +Æ® +ʈ +Èš +È› +ȶ +Ṫ +ṫ +Ṭ +á¹­ +á¹® +ṯ +á¹° +á¹± +ẗ +U +u +Ù +ù +Ú +ú +Û +û +Ãœ +ü +Ũ +Å© +Ū +Å« +Ŭ +Å­ +Å® +ů +Å° +ű +Ų +ų +Ư +Æ° +Ç“ +Ç” +Ç• +Ç– +Ç— +ǘ +Ç™ +Çš +Ç› +Çœ +È” +È• +È– +È— +á¹² +á¹³ +á¹´ +á¹µ +Ṷ +á¹· +Ṹ +á¹¹ +Ṻ +á¹» +Ụ +ụ +Ủ +ủ +Ứ +ứ +Ừ +ừ +Ử +á»­ +á»® +ữ +á»° +á»± +V +v +Ʋ +Ê‹ +á¹¼ +á¹½ +á¹¾ +ṿ +W +w +Å´ +ŵ +Ẁ +Ạ+Ẃ +ẃ +Ẅ +ẅ +Ẇ +ẇ +Ẉ +ẉ +ẘ +X +x +Ẋ +ẋ +Ẍ +Ạ+Y +y +à +ý +ÿ +Ÿ +Ŷ +Å· +Ƴ +Æ´ +Ȳ +ȳ +Ẏ +Ạ+ẙ +Ỳ +ỳ +á»´ +ỵ +Ỷ +á»· +Ỹ +ỹ +Z +z +Ź +ź +Å» +ż +Ž +ž +Ƶ +ƶ +Ȥ +È¥ +Ê +Ê‘ +Ạ+ẑ +Ẓ +ẓ +Ẕ +ẕ + + diff --git a/docbook-xsl-1.76.1/common/xh.xml b/docbook-xsl-1.76.1/common/xh.xml new file mode 100644 index 0000000..db22550 --- /dev/null +++ b/docbook-xsl-1.76.1/common/xh.xml @@ -0,0 +1,1229 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Symbols +A +a +À +à +à +á + +â +à +ã +Ä +ä +Ã… +Ã¥ +Ä€ +Ä +Ä‚ +ă +Ä„ +Ä… +Ç +ÇŽ +Çž +ÇŸ +Ç  +Ç¡ +Ǻ +Ç» +È€ +È +È‚ +ȃ +Ȧ +ȧ +Ḁ +Ḡ+ẚ +Ạ +ạ +Ả +ả +Ấ +ấ +Ầ +ầ +Ẩ +ẩ +Ẫ +ẫ +Ậ +ậ +Ắ +ắ +Ằ +ằ +Ẳ +ẳ +Ẵ +ẵ +Ặ +ặ +B +b +Æ€ +Æ +É“ +Æ‚ +ƃ +Ḃ +ḃ +Ḅ +ḅ +Ḇ +ḇ +C +c +Ç +ç +Ć +ć +Ĉ +ĉ +ÄŠ +Ä‹ +ÄŒ +Ä +Ƈ +ƈ +É• +Ḉ +ḉ +D +d +ÄŽ +Ä +Ä +Ä‘ +ÆŠ +É— +Æ‹ +ÆŒ +Ç… +Dz +È¡ +É– +Ḋ +ḋ +Ḍ +Ḡ+Ḏ +Ḡ+Ḡ+ḑ +Ḓ +ḓ +E +e +È +è +É +é +Ê +ê +Ë +ë +Ä’ +Ä“ +Ä” +Ä• +Ä– +Ä— +Ę +Ä™ +Äš +Ä› +È„ +È… +Ȇ +ȇ +Ȩ +È© +Ḕ +ḕ +Ḗ +ḗ +Ḙ +ḙ +Ḛ +ḛ +Ḝ +Ḡ+Ẹ +ẹ +Ẻ +ẻ +Ẽ +ẽ +Ế +ế +Ề +á» +Ể +ể +Ễ +á»… +Ệ +ệ +F +f +Æ‘ +Æ’ +Ḟ +ḟ +G +g +Äœ +Ä +Äž +ÄŸ +Ä  +Ä¡ +Ä¢ +Ä£ +Æ“ +É  +Ǥ +Ç¥ +Ǧ +ǧ +Ç´ +ǵ +Ḡ +ḡ +H +h +Ĥ +Ä¥ +Ħ +ħ +Èž +ÈŸ +ɦ +Ḣ +ḣ +Ḥ +ḥ +Ḧ +ḧ +Ḩ +ḩ +Ḫ +ḫ +ẖ +I +i +ÃŒ +ì +à +í +ÃŽ +î +à +ï +Ĩ +Ä© +Ī +Ä« +Ĭ +Ä­ +Ä® +į +Ä° +Æ— +ɨ +Ç +Ç +Ȉ +ȉ +ÈŠ +È‹ +Ḭ +ḭ +Ḯ +ḯ +Ỉ +ỉ +Ị +ị +J +j +Ä´ +ĵ +Ç° +Ê +K +k +Ķ +Ä· +Ƙ +Æ™ +Ǩ +Ç© +Ḱ +ḱ +Ḳ +ḳ +Ḵ +ḵ +L +l +Ĺ +ĺ +Ä» +ļ +Ľ +ľ +Ä¿ +Å€ +Å +Å‚ +Æš +Lj +È´ +É« +ɬ +É­ +Ḷ +ḷ +Ḹ +ḹ +Ḻ +ḻ +Ḽ +ḽ +M +m +ɱ +Ḿ +ḿ +á¹€ +á¹ +Ṃ +ṃ +N +n +Ñ +ñ +Ń +Å„ +Å… +ņ +Ň +ň +Æ +ɲ +Æž +È  +Ç‹ +Ǹ +ǹ +ȵ +ɳ +Ṅ +á¹… +Ṇ +ṇ +Ṉ +ṉ +Ṋ +ṋ +O +o +Ã’ +ò +Ó +ó +Ô +ô +Õ +õ +Ö +ö +Ø +ø +ÅŒ +Å +ÅŽ +Å +Å +Å‘ +ÆŸ +Æ  +Æ¡ +Ç‘ +Ç’ +Ǫ +Ç« +Ǭ +Ç­ +Ǿ +Ç¿ +ÈŒ +È +ÈŽ +È +Ȫ +È« +Ȭ +È­ +È® +ȯ +È° +ȱ +Ṍ +á¹ +Ṏ +á¹ +á¹ +ṑ +á¹’ +ṓ +Ọ +á» +Ỏ +á» +á» +ố +á»’ +ồ +á»” +ổ +á»– +á»— +Ộ +á»™ +Ớ +á»› +Ờ +á» +Ở +ở +á»  +ỡ +Ợ +ợ +P +p +Ƥ +Æ¥ +á¹” +ṕ +á¹– +á¹— +Q +q +Ê  +R +r +Å” +Å• +Å– +Å— +Ř +Å™ +È +È‘ +È’ +È“ +ɼ +ɽ +ɾ +Ṙ +á¹™ +Ṛ +á¹› +Ṝ +á¹ +Ṟ +ṟ +S +s +Åš +Å› +Åœ +Å +Åž +ÅŸ +Å  +Å¡ +Ș +È™ +Ê‚ +á¹  +ṡ +á¹¢ +á¹£ +Ṥ +á¹¥ +Ṧ +ṧ +Ṩ +ṩ +T +t +Å¢ +Å£ +Ť +Å¥ +Ŧ +ŧ +Æ« +Ƭ +Æ­ +Æ® +ʈ +Èš +È› +ȶ +Ṫ +ṫ +Ṭ +á¹­ +á¹® +ṯ +á¹° +á¹± +ẗ +U +u +Ù +ù +Ú +ú +Û +û +Ãœ +ü +Ũ +Å© +Ū +Å« +Ŭ +Å­ +Å® +ů +Å° +ű +Ų +ų +Ư +Æ° +Ç“ +Ç” +Ç• +Ç– +Ç— +ǘ +Ç™ +Çš +Ç› +Çœ +È” +È• +È– +È— +á¹² +á¹³ +á¹´ +á¹µ +Ṷ +á¹· +Ṹ +á¹¹ +Ṻ +á¹» +Ụ +ụ +Ủ +ủ +Ứ +ứ +Ừ +ừ +Ử +á»­ +á»® +ữ +á»° +á»± +V +v +Ʋ +Ê‹ +á¹¼ +á¹½ +á¹¾ +ṿ +W +w +Å´ +ŵ +Ẁ +Ạ+Ẃ +ẃ +Ẅ +ẅ +Ẇ +ẇ +Ẉ +ẉ +ẘ +X +x +Ẋ +ẋ +Ẍ +Ạ+Y +y +à +ý +ÿ +Ÿ +Ŷ +Å· +Ƴ +Æ´ +Ȳ +ȳ +Ẏ +Ạ+ẙ +Ỳ +ỳ +á»´ +ỵ +Ỷ +á»· +Ỹ +ỹ +Z +z +Ź +ź +Å» +ż +Ž +ž +Ƶ +ƶ +Ȥ +È¥ +Ê +Ê‘ +Ạ+ẑ +Ẓ +ẓ +Ẕ +ẕ + + diff --git a/docbook-xsl-1.76.1/common/zh.xml b/docbook-xsl-1.76.1/common/zh.xml new file mode 100644 index 0000000..d976ed0 --- /dev/null +++ b/docbook-xsl-1.76.1/common/zh.xml @@ -0,0 +1,660 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +ç¬¦å· +A +a +B +b +C +c +D +d +E +e +F +f +G +g +H +h +I +i +J +j +K +k +L +l +M +m +N +n +O +o +P +p +Q +q +R +r +S +s +T +t +U +u +V +v +W +w +X +x +Y +y +Z +z + + diff --git a/docbook-xsl-1.76.1/common/zh_cn.xml b/docbook-xsl-1.76.1/common/zh_cn.xml new file mode 100644 index 0000000..f42774c --- /dev/null +++ b/docbook-xsl-1.76.1/common/zh_cn.xml @@ -0,0 +1,660 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +ç¬¦å· +A +a +B +b +C +c +D +d +E +e +F +f +G +g +H +h +I +i +J +j +K +k +L +l +M +m +N +n +O +o +P +p +Q +q +R +r +S +s +T +t +U +u +V +v +W +w +X +x +Y +y +Z +z + + diff --git a/docbook-xsl-1.76.1/common/zh_tw.xml b/docbook-xsl-1.76.1/common/zh_tw.xml new file mode 100644 index 0000000..49cb5b6 --- /dev/null +++ b/docbook-xsl-1.76.1/common/zh_tw.xml @@ -0,0 +1,660 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +符號 +A +a +B +b +C +c +D +d +E +e +F +f +G +g +H +h +I +i +J +j +K +k +L +l +M +m +N +n +O +o +P +p +Q +q +R +r +S +s +T +t +U +u +V +v +W +w +X +x +Y +y +Z +z + + diff --git a/docbook-xsl-1.76.1/docsrc/authors.xml b/docbook-xsl-1.76.1/docsrc/authors.xml new file mode 100644 index 0000000..ea4bf02 --- /dev/null +++ b/docbook-xsl-1.76.1/docsrc/authors.xml @@ -0,0 +1,10 @@ + + + + WalshNorman + + + + The DocBook Project + + diff --git a/docbook-xsl-1.76.1/docsrc/copyright.xml b/docbook-xsl-1.76.1/docsrc/copyright.xml new file mode 100644 index 0000000..505f7f8 --- /dev/null +++ b/docbook-xsl-1.76.1/docsrc/copyright.xml @@ -0,0 +1,18 @@ + + + 1999-2007 + Norman Walsh + + + 2003 + Jiří Kosek + + + 2004-2007 + Steve Ball + + + 2001-2007 + The DocBook Project + + diff --git a/docbook-xsl-1.76.1/docsrc/license.xml b/docbook-xsl-1.76.1/docsrc/license.xml new file mode 100644 index 0000000..c265ce8 --- /dev/null +++ b/docbook-xsl-1.76.1/docsrc/license.xml @@ -0,0 +1,23 @@ +License +Permission is hereby granted, free of charge, to any person +obtaining a copy of this software and associated documentation files +(the Software), to deal in the Software without +restriction, including without limitation the rights to use, copy, +modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished +to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. +Except as contained in this notice, the names of individuals +credited with contribution to this software shall not be used in +advertising or otherwise to promote the sale, use or other dealings in +this Software without prior written authorization from the individuals +in question. +Any stylesheet derived from this Software that is publically +distributed will be identified with a different name and the version +strings in any derived Software will be changed so that no possibility +of confusion between the derived package and this Software will +exist. + diff --git a/docbook-xsl-1.76.1/docsrc/page.png b/docbook-xsl-1.76.1/docsrc/page.png new file mode 100644 index 0000000..9c15d88 Binary files /dev/null and b/docbook-xsl-1.76.1/docsrc/page.png differ diff --git a/docbook-xsl-1.76.1/docsrc/reference.css b/docbook-xsl-1.76.1/docsrc/reference.css new file mode 100644 index 0000000..9e7e511 --- /dev/null +++ b/docbook-xsl-1.76.1/docsrc/reference.css @@ -0,0 +1,79 @@ +/* reference.css, a stylesheet for reference documentation + * generated by the DocBook XSL Stylesheets */ +/* $Id: reference.css 8234 2009-02-09 12:10:48Z xmldoc $ */ + +div.legalnotice { + font-size: 80%; +} + +div.note, div.tip, div.warning { + margin-left: 5%; + margin-right: 10%; + padding: 5px; +} + +div.note, div.tip { + border-left: solid #d5dee3 20px; + border-right: solid #d5dee3 20px; +} + +div.note, div.tip { + border-left: solid palegreen 20px; + border-right: solid palegreen 20px; +} + +div.warning { + border-left: solid yellow 20px; + border-right: solid yellow 20px; +} + +div.note p, div.tip p, div.warning p { + margin-top: 0px; + margin-bottom: 4px; +} + +div.note h3, div.tip h3, div.warning h3 { + margin-top: 0; +} + +div.informalexample { + background-color: #d5dee3; + border-top-width: 2px; + border-top-style: double; + border-top-color: #d3d3d3; + border-bottom-width: 2px; + border-bottom-style: double; + border-bottom-color: #d3d3d3; + padding: 4px; + margin: 0em; + margin-left: 2em; +} + +pre.programlisting, pre.synopsis { + whitespace: pre; + font-family: monospace; + background-color: #d5dee3; + border-top-width: 1px; + border-top-style: single; + border-top-color: #d3d3d3; + border-bottom-width: 1px; + border-bottom-style: single; + border-bottom-color: #d3d3d3; + padding: 4px; + margin: 0em; + margin-top: 6px; + margin-bottom: 6px; +} + +div.informalexample pre { + whitespace: pre; + font-family: monospace; + border-top-width: 0px; + border-bottom-width: 0px; + padding: 0px; +} + +/* Parameter and PI titles */ + div.refnamediv h2 { + font-size: 2em; +} diff --git a/docbook-xsl-1.76.1/docsrc/reference.xml b/docbook-xsl-1.76.1/docsrc/reference.xml new file mode 100644 index 0000000..7d49306 --- /dev/null +++ b/docbook-xsl-1.76.1/docsrc/reference.xml @@ -0,0 +1,229 @@ + + + + + + + + + + + DocBook XSL Stylesheets: Reference Documentation + $Id: reference.xml 8321 2009-03-12 18:20:36Z mzjn $ + + + + + + About this document + This is generated reference documentation for the DocBook + XSL stylesheets. It is available in the following formats: + + + HTML, + PDF, + plain text + + + This is primarily documentation on the parameters and processing instructions you can use + to control the behavior of the stylesheets. + + This is purely reference documentation â€“ not how-to + documentation. For a thorough step-by-step how-to guide to + publishing content using the DocBook XSL stylesheets, see + Bob Stayton’s DocBook XSL: The Complete Guide, available online + at http://www.sagehill.net/docbookxsl/index.html + + + This document is divided into three sets of references: + the first two sets provides user documentation; the third, + developer documentation. + + + DocBook XSL Stylesheets User Reference: Parameters + + + This is generated reference documentation for all + user-configurable parameters in the DocBook XSL + stylesheets. + + This is purely reference documentation â€“ not how-to + documentation. For a thorough step-by-step how-to guide to + publishing content using the DocBook XSL stylesheets, see + Bob Stayton’s DocBook XSL: The Complete Guide, available online + at http://www.sagehill.net/docbookxsl/index.html + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Slides Parameter Reference + + + + This is reference documentation for all + user-configurable parameters in the DocBook XSL Slides + stylesheets (for generating HTML and PDF slide + presentations). + + The Slides stylesheet for HTML output is a + customization layer of the DocBook XSL HTML + stylesheet; the Slides stylesheet for FO output is a + customization layer of the DocBook XSL FO stylesheet. + Therefore, in addition to the slides-specific + parameters listed in this section, you can also use a + number of HTML stylesheet + parameters and FO + stylesheet parameters to control Slides + output. + + + + + + + + + + + + + + + + DocBook XSL Stylesheets User Reference: PIs + + + + + This is generated reference documentation for all + user-specifiable processing instructions in the DocBook + XSL stylesheets. + + You add these PIs at particular points in a document to + cause specific “exceptions†to formatting/output behavior. To + make global changes in formatting/output behavior across an + entire document, it’s better to do it by setting an + appropriate stylesheet parameter (if there is one). + + + + + + + + + + + + + + + + + + DocBook XSL Stylesheets Developer Reference + + + This is technical reference documentation for + developers using the DocBook XSL Stylesheets. It is not + intended to be user documentation, but is instead + provided for developers writing customization layers for + the stylesheets. + + + + + + + + + + + + Common Template Reference + + + + + This is technical reference documentation for the + “baseâ€, “refentryâ€, and “utility†sets of common + templates in the DocBook XSL Stylesheets. These + templates are “common†in that they are shared across + output formats (that is, they’re not + output-format-dependent) + This documentation is not intended to be user + documentation. It is provided for developers writing + customization layers for the stylesheets. + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/docsrc/reference.xml.included b/docbook-xsl-1.76.1/docsrc/reference.xml.included new file mode 100644 index 0000000..94869ee --- /dev/null +++ b/docbook-xsl-1.76.1/docsrc/reference.xml.included @@ -0,0 +1,33905 @@ + + + + + + + + + + + DocBook XSL Stylesheets: Reference Documentation + $Id: reference.xml 8321 2009-03-12 18:20:36Z mzjn $ + + + + WalshNorman + + + + The DocBook Project + + + + 1999-2007 + Norman Walsh + + 2003 + Jiří Kosek + + 2004-2007 + Steve Ball + + 2001-2007 + The DocBook Project + + License +Permission is hereby granted, free of charge, to any person +obtaining a copy of this software and associated documentation files +(the Software), to deal in the Software without +restriction, including without limitation the rights to use, copy, +modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished +to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. +Except as contained in this notice, the names of individuals +credited with contribution to this software shall not be used in +advertising or otherwise to promote the sale, use or other dealings in +this Software without prior written authorization from the individuals +in question. +Any stylesheet derived from this Software that is publically +distributed will be identified with a different name and the version +strings in any derived Software will be changed so that no possibility +of confusion between the derived package and this Software will +exist. + + Warranty +THE SOFTWARE IS PROVIDED AS IS, +WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT +LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR +PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL NORMAN WALSH OR ANY +OTHER CONTRIBUTOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT +OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + + About this document + This is generated reference documentation for the DocBook + XSL stylesheets. It is available in the following formats: + + + HTML, + PDF, + plain text + + + This is primarily documentation on the parameters and processing instructions you can use + to control the behavior of the stylesheets. + + This is purely reference documentation – not how-to + documentation. For a thorough step-by-step how-to guide to + publishing content using the DocBook XSL stylesheets, see + Bob Stayton’s DocBook XSL: The Complete Guide, available online + at http://www.sagehill.net/docbookxsl/index.html + + + This document is divided into three sets of references: + the first two sets provides user documentation; the third, + developer documentation. + + + DocBook XSL Stylesheets User Reference: Parameters + + + This is generated reference documentation for all + user-configurable parameters in the DocBook XSL + stylesheets. + + This is purely reference documentation – not how-to + documentation. For a thorough step-by-step how-to guide to + publishing content using the DocBook XSL stylesheets, see + Bob Stayton’s DocBook XSL: The Complete Guide, available online + at http://www.sagehill.net/docbookxsl/index.html + + + + + + + + + HTML Parameter Reference + + + This is reference documentation for all user-configurable + parameters in the DocBook XSL HTML stylesheets (for generating + HTML output). + + + Admonitions + + +admon.graphics.extension +string + + +admon.graphics.extension +Filename extension for admonition graphics + + + + +<xsl:param name="admon.graphics.extension">.png</xsl:param> + + + +Description + +Sets the filename extension to use on admonition graphics. + + + + + + +admon.graphics.path +string + + +admon.graphics.path +Path to admonition graphics + + + +<xsl:param name="admon.graphics.path">images/</xsl:param> + + +Description + +Sets the path to the directory containing the admonition graphics +(caution.png, important.png etc). This location is normally relative +to the output html directory. See base.dir + + + + + + +admon.graphics +boolean + + +admon.graphics +Use graphics in admonitions? + + + + +<xsl:param name="admon.graphics" select="0"></xsl:param> + + + +Description + +If true (non-zero), admonitions are presented in an alternate style that uses +a graphic. Default graphics are provided in the distribution. + + + + + + + +admon.textlabel +boolean + + +admon.textlabel +Use text label in admonitions? + + + + +<xsl:param name="admon.textlabel" select="1"></xsl:param> + + + +Description + +If true (non-zero), admonitions are presented with a generated +text label such as Note or Warning in the appropriate language. +If zero, such labels are turned off, but any title child +of the admonition element are still output. +The default value is 1. + + + + + + + +admon.style +string + + +admon.style +Specifies the CSS style attribute that should be added to +admonitions. + + + +<xsl:param name="admon.style"> + <xsl:value-of select="concat('margin-', $direction.align.start, ': 0.5in; margin-', $direction.align.end, ': 0.5in;')"></xsl:value-of> +</xsl:param> + + +Description + +Specifies the value of the CSS style +attribute that should be added to admonitions. + + + + + +Callouts + + +callout.defaultcolumn +integer + + +callout.defaultcolumn +Indicates what column callouts appear in by default + + + + +<xsl:param name="callout.defaultcolumn">60</xsl:param> + + + +Description + +If a callout does not identify a column (for example, if it uses +the linerange unit), +it will appear in the default column. + + + + + + + +callout.graphics.extension +string + + +callout.graphics.extension +Filename extension for callout graphics + + + + +<xsl:param name="callout.graphics.extension">.png</xsl:param> + + + + +Description +Sets the filename extension to use on callout graphics. + + +The Docbook XSL distribution provides callout graphics in the following formats: +SVG (extension: .svg) +PNG (extension: .png) +GIF (extension: .gif) + + + + + + +callout.graphics.number.limit +integer + + +callout.graphics.number.limit +Number of the largest callout graphic + + + + +<xsl:param name="callout.graphics.number.limit">15</xsl:param> + + + + +Description + +If callout.graphics is non-zero, graphics +are used to represent callout numbers instead of plain text. The value +of callout.graphics.number.limit is the largest +number for which a graphic exists. If the callout number exceeds this +limit, the default presentation "(plain text instead of a graphic)" +will be used. + + + + + + + +callout.graphics.path +string + + +callout.graphics.path +Path to callout graphics + + + + +<xsl:param name="callout.graphics.path">images/callouts/</xsl:param> + + + +Description + +Sets the path to the directory holding the callout graphics. his +location is normally relative to the output html directory. see +base.dir. Always terminate the directory with / since the graphic file +is appended to this string, hence needs the separator. + + + + + + + +callout.graphics +boolean + + +callout.graphics +Use graphics for callouts? + + + + +<xsl:param name="callout.graphics" select="1"></xsl:param> + + + +Description + +If non-zero, callouts are presented with graphics (e.g., reverse-video +circled numbers instead of "(1)", "(2)", etc.). +Default graphics are provided in the distribution. + + + + + + + +callout.list.table +boolean + + +callout.list.table +Present callout lists using a table? + + + + +<xsl:param name="callout.list.table" select="1"></xsl:param> + + + +Description + +The default presentation of calloutlists uses +an HTML DL element. Some browsers don't align DLs very well +if callout.graphics is used. With this option +turned on, calloutlists are presented in an HTML +TABLE, which usually results in better alignment +of the callout number with the callout description. + + + + + + +callout.unicode.number.limit +integer + + +callout.unicode.number.limit +Number of the largest unicode callout character + + + + +<xsl:param name="callout.unicode.number.limit">10</xsl:param> + + + +Description + +If callout.unicode +is non-zero, unicode characters are used to represent +callout numbers. The value of +callout.unicode.number.limit +is +the largest number for which a unicode character exists. If the callout number +exceeds this limit, the default presentation "(nnn)" will always +be used. + + + + + + + +callout.unicode.start.character +integer + + +callout.unicode.start.character +First Unicode character to use, decimal value. + + + + +<xsl:param name="callout.unicode.start.character">10102</xsl:param> + + + +Description + +If callout.graphics is zero and callout.unicode +is non-zero, unicode characters are used to represent +callout numbers. The value of +callout.unicode.start.character +is the decimal unicode value used for callout number one. Currently, +only 10102 is supported in the stylesheets for this parameter. + + + + + + + +callout.unicode +boolean + + +callout.unicode +Use Unicode characters rather than images for callouts. + + + +<xsl:param name="callout.unicode" select="0"></xsl:param> + + +Description + +The stylesheets can use either an image of the numbers one to ten, or the single Unicode character which represents the numeral, in white on a black background. Use this to select the Unicode character option. + + + + + + + +callouts.extension +boolean + + +callouts.extension +Enable the callout extension + + + + +<xsl:param name="callouts.extension" select="1"></xsl:param> + + + +Description + +The callouts extension processes areaset +elements in programlistingco and other text-based +callout elements. + + + + + +EBNF + + +ebnf.table.bgcolor +color + + +ebnf.table.bgcolor +Background color for EBNF tables + + + + +<xsl:param name="ebnf.table.bgcolor">#F5DCB3</xsl:param> + + + +Description + +Sets the background color for EBNF tables (a pale brown). No +bgcolor attribute is output if +ebnf.table.bgcolor is set to the null string. + + + + + + + +ebnf.table.border +boolean + + +ebnf.table.border +Selects border on EBNF tables + + + +<xsl:param name="ebnf.table.border" select="1"></xsl:param> + + +Description + +Selects the border on EBNF tables. If non-zero, the tables have +borders, otherwise they don't. + + + + + + +ebnf.assignment +rtf + + +ebnf.assignment +The EBNF production assignment operator + + + + +<xsl:param name="ebnf.assignment"> +<code>::=</code> +</xsl:param> + + + + +Description + +The ebnf.assignment parameter determines what +text is used to show assignment in productions +in productionsets. + +While ::= is common, so are several +other operators. + + + + + + +ebnf.statement.terminator +rtf + + +ebnf.statement.terminator +Punctuation that ends an EBNF statement. + + + + +<xsl:param name="ebnf.statement.terminator"></xsl:param> + + + + +Description + +The ebnf.statement.terminator parameter determines what +text is used to terminate each production +in productionset. + +Some notations end each statement with a period. + + + + +ToC/LoT/Index Generation + + +annotate.toc +boolean + + +annotate.toc +Annotate the Table of Contents? + + + +<xsl:param name="annotate.toc" select="1"></xsl:param> + + +Description + +If true, TOCs will be annotated. At present, this just means +that the refpurpose of refentry +TOC entries will be displayed. + + + + + + + +autotoc.label.separator +string + + +autotoc.label.separator +Separator between labels and titles in the ToC + + + + +<xsl:param name="autotoc.label.separator">. </xsl:param> + + + +Description + +String used to separate labels and titles in a table of contents. + + + + + + +autotoc.label.in.hyperlink +boolean + + +autotoc.label.in.hyperlink +Include label in hyperlinked titles in TOC? + + + +<xsl:param name="autotoc.label.in.hyperlink" select="1"></xsl:param> + + +Description + +If the value of +autotoc.label.in.hyperlink is non-zero, labels +are included in hyperlinked titles in the TOC. If it is instead zero, +labels are still displayed prior to the hyperlinked titles, but +are not hyperlinked along with the titles. + + + + + + +process.source.toc +boolean + + +process.source.toc +Process a non-empty toc element if it occurs in a source document? + + + +<xsl:param name="process.source.toc" select="0"></xsl:param> + + +Description + +Specifies that the contents of a non-empty "hard-coded" +toc element in a source document are processed to +generate a TOC in output. + + This parameter has no effect on automated generation of + TOCs. An automated TOC may still be generated along with the + "hard-coded" TOC. To suppress automated TOC generation, adjust the + value of the generate.toc paramameter. + + The process.source.toc parameter also has + no effect if the toc element is empty; handling + for empty toc is controlled by the + process.empty.source.toc parameter. + + + + + + + + +process.empty.source.toc +boolean + + +process.empty.source.toc +Generate automated TOC if toc element occurs in a source document? + + + +<xsl:param name="process.empty.source.toc" select="0"></xsl:param> + + +Description + +Specifies that if an empty toc element is found in a +source document, an automated TOC is generated at this point in the +document. + + Depending on what the value of the + generate.toc parameter is, setting this + parameter to 1 could result in generation of + duplicate automated TOCs. So the + process.empty.source.toc is primarily useful + as an "override": by placing an empty toc in your + document and setting this parameter to 1, you can + force a TOC to be generated even if generate.toc + says not to. + + + + + + + + +bridgehead.in.toc +boolean + + +bridgehead.in.toc +Should bridgehead elements appear in the TOC? + + + +<xsl:param name="bridgehead.in.toc" select="0"></xsl:param> + + +Description + +If non-zero, bridgeheads appear in the TOC. Note that +this option is not fully supported and may be removed in a future +version of the stylesheets. + + + + + + + +simplesect.in.toc +boolean + + +simplesect.in.toc +Should simplesect elements appear in the TOC? + + + +<xsl:param name="simplesect.in.toc" select="0"></xsl:param> + + +Description + +If non-zero, simplesects will be included in the TOC. + + + + + + + +manual.toc +string + + +manual.toc +An explicit TOC to be used for the TOC + + + + +<xsl:param name="manual.toc"></xsl:param> + + + +Description + +The manual.toc identifies an explicit TOC that +will be used for building the printed TOC. + + + + + + + +toc.list.type +list +dl +ul +ol + + +toc.list.type +Type of HTML list element to use for Tables of Contents + + + +<xsl:param name="toc.list.type">dl</xsl:param> + + +Description + +When an automatically generated Table of Contents (or List of Titles) +is produced, this HTML element will be used to make the list. + + + + + + + +toc.section.depth +integer + + +toc.section.depth +How deep should recursive sections appear +in the TOC? + + + +<xsl:param name="toc.section.depth">2</xsl:param> + + +Description + +Specifies the depth to which recursive sections should appear in the +TOC. + + + + + + + +toc.max.depth +integer + + +toc.max.depth +How many levels should be created for each TOC? + + + +<xsl:param name="toc.max.depth">8</xsl:param> + + +Description + +Specifies the maximal depth of TOC on all levels. + + + + + + +generate.toc +table + + +generate.toc +Control generation of ToCs and LoTs + + + + +<xsl:param name="generate.toc"> +appendix toc,title +article/appendix nop +article toc,title +book toc,title,figure,table,example,equation +chapter toc,title +part toc,title +preface toc,title +qandadiv toc +qandaset toc +reference toc,title +sect1 toc +sect2 toc +sect3 toc +sect4 toc +sect5 toc +section toc +set toc,title +</xsl:param> + + + + +Description + +This parameter has a structured value. It is a table of space-delimited +path/value pairs. Each path identifies some element in the source document +using a restricted subset of XPath (only the implicit child axis, no wildcards, +no predicates). Paths can be either relative or absolute. + +When processing a particular element, the stylesheets consult this table to +determine if a ToC (or LoT(s)) should be generated. + +For example, consider the entry: + +book toc,figure + +This indicates that whenever a book is formatted, a +Table Of Contents and a List of Figures should be generated. Similarly, + +/chapter toc + +indicates that whenever a document that has a root +of chapter is formatted, a Table of +Contents should be generated. The entry chapter would match +all chapters, but /chapter matches only chapter +document elements. + +Generally, the longest match wins. So, for example, if you want to distinguish +articles in books from articles in parts, you could use these two entries: + +book/article toc,figure +part/article toc + +Note that an article in a part can never match a book/article, +so if you want nothing to be generated for articles in parts, you can simply leave +that rule out. + +If you want to leave the rule in, to make it explicit that you're turning +something off, use the value nop. For example, the following +entry disables ToCs and LoTs for articles: + +article nop + +Do not simply leave the word article in the file +without a matching value. That'd be just begging the silly little +path/value parser to get confused. + +Section ToCs are further controlled by the +generate.section.toc.level parameter. +For a given section level to have a ToC, it must have both an entry in +generate.toc and be within the range enabled by +generate.section.toc.level. + + + + + +generate.section.toc.level +integer + + +generate.section.toc.level +Control depth of TOC generation in sections + + + + +<xsl:param name="generate.section.toc.level" select="0"></xsl:param> + + + +Description + +The generate.section.toc.level parameter +controls the depth of section in which TOCs will be generated. Note +that this is related to, but not the same as +toc.section.depth, which controls the depth to +which TOC entries will be generated in a given TOC. +If, for example, generate.section.toc.level +is 3, TOCs will be generated in first, second, and third +level sections, but not in fourth level sections. + + + + + + + +generate.index +boolean + + +generate.index +Do you want an index? + + + +<xsl:param name="generate.index" select="1"></xsl:param> + + +Description + +Specify if an index should be generated. + + + + + + +index.method +list +basic +kosek +kimber + + +index.method +Select method used to group index entries in an index + + + + +<xsl:param name="index.method">basic</xsl:param> + + + +Description + +This parameter lets you select which method to use for sorting and grouping + index entries in an index. +Indexes in Latin-based languages that have accented characters typically +sort together accented words and unaccented words. +Thus Á (U+00C1 LATIN CAPITAL LETTER A WITH ACUTE) would sort together +with A (U+0041 LATIN CAPITAL LETTER A), so both would appear in the A +section of the index. +Languages using other alphabets (such as Russian, which is written in the Cyrillic alphabet) +and languages using ideographic chararacters (such as Japanese) +require grouping specific to the languages and alphabets. + + +The default indexing method is limited. +It can group accented characters in Latin-based languages only. +It cannot handle non-Latin alphabets or ideographic languages. +The other indexing methods require extensions of one type or +another, and do not work with +all XSLT processors, which is why they are not used by default. + +The three choices for indexing method are: + + +basic + + +(default) Sort and groups words based only on the Latin alphabet. +Words with accented Latin letters will group and sort with +their respective primary letter, but +words in non-Latin alphabets will be +put in the Symbols section of the index. + + + + +kosek + + +This method sorts and groups words based on letter groups configured in +the DocBook locale file for the given language. +See, for example, the French locale file common/fr.xml. +This method requires that the XSLT processor +supports the EXSLT extensions (most do). +It also requires support for using +user-defined functions in xsl:key (xsltproc does not). + +This method is suitable for any language for which you can +list all the individual characters that should appear +in each letter group in an index. +It is probably not practical to use it for ideographic languages +such as Chinese that have hundreds or thousands of characters. + + +To use the kosek method, you must: + + + +Use a processor that supports its extensions, such as +Saxon 6 or Xalan (xsltproc and Saxon 8 do not). + + + +Set the index.method parameter's value to kosek. + + + +Import the appropriate index extensions stylesheet module +fo/autoidx-kosek.xsl or +html/autoidx-kosek.xsl into your +customization. + + + + + + + +kimber + + +This method uses extensions to the Saxon processor to implement +sophisticated indexing processes. It uses its own +configuration file, which can include information for any number of +languages. Each language's configuration can group +words using one of two processes. In the +enumerated process similar to that used in the kosek method, +you indicate the groupings character-by-character. +In the between-key process, you specify the +break-points in the sort order that should start a new group. +The latter configuration is useful for ideographic languages +such as Chinese, Japanese, and Korean. +You can also define your own collation algorithms and how you +want mixed Latin-alphabet words sorted. + + +For a whitepaper describing the extensions, see: +http://www.innodata-isogen.com/knowledge_center/white_papers/back_of_book_for_xsl_fo.pdf. + + + +To download the extension library, see +http://www.innodata-isogen.com/knowledge_center/tools_downloads/i18nsupport. + + + + +To use the kimber method, you must: + + + +Use Saxon (version 6 or 8) as your XSLT processor. + + + +Install and configure the Innodata Isogen library, using +the documentation that comes with it. + + + +Set the index.method parameter's value to kimber. + + + +Import the appropriate index extensions stylesheet module +fo/autoidx-kimber.xsl or +html/autoidx-kimber.xsl into your +customization. + + + + + + + + + + + + + +index.on.type +boolean + + +index.on.type +Select indexterms based on type +attribute value + + + + +<xsl:param name="index.on.type" select="0"></xsl:param> + + + +Description + + +If non-zero, +then an index element that has a +type attribute +value will contain only those indexterm +elements with a matching type attribute value. +If an index has no type +attribute or it is blank, then the index will contain +all indexterms in the current scope. + + + +If index.on.type is zero, then the +type attribute has no effect +on selecting indexterms for an index. + + +For those using DocBook version 4.2 or earlier, +the type attribute is not available +for index terms. However, you can achieve the same +effect by using the role attribute +in the same manner on indexterm +and index, and setting the stylesheet parameter +index.on.role to a nonzero value. + + + + + + + +index.on.role +boolean + + +index.on.role +Select indexterms based on role value + + + + +<xsl:param name="index.on.role" select="0"></xsl:param> + + + +Description + + +If non-zero, +then an index element that has a +role attribute +value will contain only those indexterm +elements with a matching role value. +If an index has no role +attribute or it is blank, then the index will contain +all indexterms in the current scope. + + +If index.on.role is zero, then the +role attribute has no effect +on selecting indexterms for an index. + + +If you are using DocBook version 4.3 or later, you should +use the type attribute instead of role +on indexterm and index, +and set the index.on.type to a nonzero +value. + + + + + + + +index.links.to.section +boolean + + +index.links.to.section +HTML index entries link to container section title + + + + +<xsl:param name="index.links.to.section" select="1"></xsl:param> + + + +Description + +If zero, then an index entry in an index links +directly to the location of the +generated anchor that is output +for the indexterm. If two identical indexterm elements +exist in the same section, then both entries appear +in the index with the same title but link to different +locations. + +If non-zero, then an index entry in an index links to the +section title containing the indexterm, rather than +directly to the anchor output for the indexterm. +Duplicate indexterm entries in the same section are dropped. + + +The default value is 1, so index entries link to +section titles by default. + +In both cases, the link text in an index entry is the +title of the section containing the indexterm. +That is because HTML does not have numbered pages. +It also provides the reader with context information +for each link. + +This parameter lets you choose which style of +index linking you want. + + + +When set to 0, an index entry takes you +to the precise location of its corresponding indexterm. +However, if you have a lot of duplicate +entries in sections, then you have a lot of duplicate +titles in the index, which makes it more cluttered. +The reader may not recognize why duplicate titles +appear until they follow the links. Also, the links +may land the reader in the middle of a section where the +section title is not visible, which may also be +confusing to the reader. + + +When set to 1, an index entry link is +less precise, but duplicate titles in the +index entries are eliminated. +Landing on the section title location may confirm the reader's +expectation that a link that +shows a section title will take them to that section title, +not a location within the section. + + + + + + + + + +index.prefer.titleabbrev +boolean + + +index.prefer.titleabbrev +Should abbreviated titles be used as back references? + + + + +<xsl:param name="index.prefer.titleabbrev" select="0"></xsl:param> + + + +Description + +If non-zero, and if a titleabbrev is defined, the abbreviated title +is used as the link text of a back reference in the index. + + + + + + + +index.term.separator +string + + +index.term.separator +Override for punctuation separating an index term +from its list of page references in an index + + + + +<xsl:param name="index.term.separator"></xsl:param> + + + +Description + +This parameter permits you to override +the text to insert between +the end of an index term and its list of page references. +Typically that might be a comma and a space. + + +Because this text may be locale dependent, +this parameter's value is normally taken from a gentext +template named 'term-separator' in the +context 'index' in the stylesheet +locale file for the language +of the current document. +This parameter can be used to override the gentext string, +and would typically be used on the command line. +This parameter would apply to all languages. + + +So this text string can be customized in two ways. +You can reset the default gentext string using +the local.l10n.xml parameter, or you can +fill in the content for this normally empty +override parameter. +The content can be a simple string, or it can be +something more complex such as a call-template. +For fo output, it could be an fo:leader +element to provide space of a specific length, or a dot leader. + + + + + + + +index.number.separator +string + + +index.number.separator +Override for punctuation separating page numbers in index + + + + +<xsl:param name="index.number.separator"></xsl:param> + + + +Description + +This parameter permits you to override the text to insert between +page references in a formatted index entry. Typically +that would be a comma and a space. + + +Because this text may be locale dependent, +this parameter's value is normally taken from a gentext +template named 'number-separator' in the +context 'index' in the stylesheet +locale file for the language +of the current document. +This parameter can be used to override the gentext string, +and would typically be used on the command line. +This parameter would apply to all languages. + + +So this text string can be customized in two ways. +You can reset the default gentext string using +the local.l10n.xml parameter, or you can +override the gentext with the content of this parameter. +The content can be a simple string, or it can be +something more complex such as a call-template. + + +In HTML index output, section title references are used instead of +page number references. This punctuation appears between +such section titles in an HTML index. + + + + + + + +index.range.separator +string + + +index.range.separator +Override for punctuation separating the two numbers +in a page range in index + + + + +<xsl:param name="index.range.separator"></xsl:param> + + + +Description + +This parameter permits you +to override the text to insert between +the two numbers of a page range in an index. +This parameter is only used by those XSL-FO processors +that support an extension for generating such page ranges +(such as XEP). + +Because this text may be locale dependent, +this parameter's value is normally taken from a gentext +template named 'range-separator' in the +context 'index' in the stylesheet +locale file for the language +of the current document. +This parameter can be used to override the gentext string, +and would typically be used on the command line. +This parameter would apply to all languages. + + +So this text string can be customized in two ways. +You can reset the default gentext string using +the local.l10n.xml parameter, or you can +override the gentext with the content of this parameter. +The content can be a simple string, or it can be +something more complex such as a call-template. + + +In HTML index output, section title references are used instead of +page number references. So there are no page ranges +and this parameter has no effect. + + + + + +Stylesheet Extensions + + +linenumbering.everyNth +integer + + +linenumbering.everyNth +Indicate which lines should be numbered + + + + +<xsl:param name="linenumbering.everyNth">5</xsl:param> + + + +Description + +If line numbering is enabled, everyNth line will be +numbered. Note that numbering is one based, not zero based. + + + + + + + +linenumbering.extension +boolean + + +linenumbering.extension +Enable the line numbering extension + + + + +<xsl:param name="linenumbering.extension" select="1"></xsl:param> + + + +Description + +If non-zero, verbatim environments (address, literallayout, +programlisting, screen, synopsis) that specify line numbering will +have line numbers. + + + + + + + +linenumbering.separator +string + + +linenumbering.separator +Specify a separator between line numbers and lines + + + + +<xsl:param name="linenumbering.separator"><xsl:text> </xsl:text></xsl:param> + + + +Description + +The separator is inserted between line numbers and lines in the +verbatim environment. The default value is a single white space. + Note the interaction with linenumbering.width + + + + + + + +linenumbering.width +integer + + +linenumbering.width +Indicates the width of line numbers + + + + +<xsl:param name="linenumbering.width">3</xsl:param> + + + +Description + +If line numbering is enabled, line numbers will appear right +justified in a field "width" characters wide. + + + + + + + +tablecolumns.extension +boolean + + +tablecolumns.extension +Enable the table columns extension function + + + + +<xsl:param name="tablecolumns.extension" select="1"></xsl:param> + + + +Description + +The table columns extension function adjusts the widths of table +columns in the HTML result to more accurately reflect the specifications +in the CALS table. + + + + + + + + textinsert.extension + boolean + + + textinsert.extension + Enables the textinsert extension element + + + + <xsl:param name="textinsert.extension" select="1"></xsl:param> + + + Description + The textinsert extension element inserts the contents of + a file into the result tree (as text). + + To use the textinsert extension element, you must use + either Saxon or Xalan as your XSLT processor (it doesn’t + work with xsltproc), along with either the DocBook Saxon + extensions or DocBook Xalan extensions (for more + information about those extensions, see DocBook Saxon Extensions and DocBook Xalan Extensions), and you must set both + the use.extensions and + textinsert.extension parameters to + 1. + As an alternative to using the textinsert element, + consider using an Xinclude element with the + parse="text" attribute and value + specified, as detailed in Using XInclude for text inclusions. + + + See Also + You can also use the dbhtml-include href processing + instruction to insert external files — both files containing + plain text and files with markup content (including HTML + content). + + More information + For how-to documentation on inserting contents of + external code files and other text files into output, see + External code files. + For guidelines on inserting contents of + HTML files into output, see Inserting external HTML code. + + + + + +textdata.default.encoding +string + + +textdata.default.encoding +Default encoding of external text files which are included +using textdata element + + + + +<xsl:param name="textdata.default.encoding"></xsl:param> + + + +Description + +Specifies the encoding of any external text files included using +textdata element. This value is used only when you do +not specify encoding by the appropriate attribute +directly on textdata. An empty string is interpreted as the system +default encoding. + + + + + + +graphicsize.extension +boolean + + +graphicsize.extension +Enable the getWidth()/getDepth() extension functions + + + + +<xsl:param name="graphicsize.extension" select="1"></xsl:param> + + + +Description + +If non-zero (and if use.extensions is non-zero +and if you're using a processor that supports extension functions), the +getWidth and getDepth functions +will be used to extract image sizes from graphics. + + + + + + +graphicsize.use.img.src.path +boolean + + +graphicsize.use.img.src.path +Prepend img.src.path before +filenames passed to extension functions + + + + +<xsl:param name="graphicsize.use.img.src.path" select="0"></xsl:param> + + + +Description + +If non-zero img.src.path parameter will +be appended before filenames passed to extension functions for +measuring image dimensions. + + + + + + +use.extensions +boolean + + +use.extensions +Enable extensions + + + + +<xsl:param name="use.extensions" select="0"></xsl:param> + + + +Description + +If non-zero, extensions may be used. Each extension is +further controlled by its own parameter. But if +use.extensions is zero, no extensions will +be used. + + + + + +Automatic labelling + + +chapter.autolabel +list +0none +11,2,3... +AA,B,C... +aa,b,c... +ii,ii,iii... +II,II,III... + + +chapter.autolabel +Specifies the labeling format for Chapter titles + + + + +<xsl:param name="chapter.autolabel" select="1"></xsl:param> + + +Description + +If non-zero, then chapters will be numbered using the parameter +value as the number format if the value matches one of the following: + + + + + 1 or arabic + + Arabic numeration (1, 2, 3 ...). + + + + A or upperalpha + + Uppercase letter numeration (A, B, C ...). + + + + a or loweralpha + + Lowercase letter numeration (a, b, c ...). + + + + I or upperroman + + Uppercase roman numeration (I, II, III ...). + + + + i or lowerroman + + Lowercase roman letter numeration (i, ii, iii ...). + + + + +Any nonzero value other than the above will generate +the default number format (arabic). + + + + + + + +appendix.autolabel +list +0none +11,2,3... +AA,B,C... +aa,b,c... +ii,ii,iii... +II,II,III... + + +appendix.autolabel +Specifies the labeling format for Appendix titles + + + + +<xsl:param name="appendix.autolabel">A</xsl:param> + + + +Description + +If non-zero, then appendices will be numbered using the +parameter value as the number format if the value matches one of the +following: + + + + + 1 or arabic + + Arabic numeration (1, 2, 3 ...). + + + + A or upperalpha + + Uppercase letter numeration (A, B, C ...). + + + + a or loweralpha + + Lowercase letter numeration (a, b, c ...). + + + + I or upperroman + + Uppercase roman numeration (I, II, III ...). + + + + i or lowerroman + + Lowercase roman letter numeration (i, ii, iii ...). + + + + +Any nonzero value other than the above will generate +the default number format (upperalpha). + + + + + + + +part.autolabel +list +0none +11,2,3... +AA,B,C... +aa,b,c... +ii,ii,iii... +II,II,III... + + +part.autolabel +Specifies the labeling format for Part titles + + + + +<xsl:param name="part.autolabel">I</xsl:param> + + + +Description + +If non-zero, then parts will be numbered using the parameter +value as the number format if the value matches one of the following: + + + + + 1 or arabic + + Arabic numeration (1, 2, 3 ...). + + + + A or upperalpha + + Uppercase letter numeration (A, B, C ...). + + + + a or loweralpha + + Lowercase letter numeration (a, b, c ...). + + + + I or upperroman + + Uppercase roman numeration (I, II, III ...). + + + + i or lowerroman + + Lowercase roman letter numeration (i, ii, iii ...). + + + + +Any nonzero value other than the above will generate +the default number format (upperroman). + + + + + + + + +reference.autolabel +list +0none +11,2,3... +AA,B,C... +aa,b,c... +ii,ii,iii... +II,II,III... + + +reference.autolabel +Specifies the labeling format for Reference titles + + + + <xsl:param name="reference.autolabel">I</xsl:param> + + +Description +If non-zero, references will be numbered using the parameter + value as the number format if the value matches one of the + following: + + + + 1 or arabic + + Arabic numeration (1, 2, 3 ...). + + + + A or upperalpha + + Uppercase letter numeration (A, B, C ...). + + + + a or loweralpha + + Lowercase letter numeration (a, b, c ...). + + + + I or upperroman + + Uppercase roman numeration (I, II, III ...). + + + + i or lowerroman + + Lowercase roman letter numeration (i, ii, iii ...). + + + +Any non-zero value other than the above will generate +the default number format (upperroman). + + + + + + +preface.autolabel +list +0none +11,2,3... +AA,B,C... +aa,b,c... +ii,ii,iii... +II,II,III... + + +preface.autolabel +Specifices the labeling format for Preface titles + + + +<xsl:param name="preface.autolabel" select="0"></xsl:param> + + +Description + +If non-zero then prefaces will be numbered using the parameter +value as the number format if the value matches one of the following: + + + + + 1 or arabic + + Arabic numeration (1, 2, 3 ...). + + + + A or upperalpha + + Uppercase letter numeration (A, B, C ...). + + + + a or loweralpha + + Lowercase letter numeration (a, b, c ...). + + + + I or upperroman + + Uppercase roman numeration (I, II, III ...). + + + + i or lowerroman + + Lowercase roman letter numeration (i, ii, iii ...). + + + + +Any nonzero value other than the above will generate +the default number format (arabic). + + + + + + + + +qandadiv.autolabel +boolean + + +qandadiv.autolabel +Are divisions in QAndASets enumerated? + + + +<xsl:param name="qandadiv.autolabel" select="1"></xsl:param> + + +Description + +If non-zero, unlabeled qandadivs will be enumerated. + + + + + + + +section.autolabel +boolean + + +section.autolabel +Are sections enumerated? + + + +<xsl:param name="section.autolabel" select="0"></xsl:param> + + +Description + +If true (non-zero), unlabeled sections will be enumerated. + + + + + + + +section.autolabel.max.depth +integer + + +section.autolabel.max.depth +The deepest level of sections that are numbered. + + + + +<xsl:param name="section.autolabel.max.depth">8</xsl:param> + + + +Description + +When section numbering is turned on by the +section.autolabel parameter, then this +parameter controls the depth of section nesting that is +numbered. Sections nested to a level deeper than this value will not +be numbered. + + + + + + + +section.label.includes.component.label +boolean + + +section.label.includes.component.label +Do section labels include the component label? + + + +<xsl:param name="section.label.includes.component.label" select="0"></xsl:param> + + +Description + +If non-zero, section labels are prefixed with the label of the +component that contains them. + + + + + + + +label.from.part +boolean + + +label.from.part +Renumber components in each part? + + + + +<xsl:param name="label.from.part" select="0"></xsl:param> + + + +Description + +If label.from.part is non-zero, then + numbering of components — preface, + chapter, appendix, and + reference (when reference occurs at the + component level) — is re-started within each + part. +If label.from.part is zero (the + default), numbering of components is not + re-started within each part; instead, components are + numbered sequentially throughout each book, + regardless of whether or not they occur within part + instances. + + + + + + +component.label.includes.part.label +boolean + + +component.label.includes.part.label +Do component labels include the part label? + + + +<xsl:param name="component.label.includes.part.label" select="0"></xsl:param> + + +Description + +If non-zero, number labels for chapter, +appendix, and other component elements are prefixed with +the label of the part element that contains them. So you might see +Chapter II.3 instead of Chapter 3. Also, the labels for formal +elements such as table and figure will include +the part label. If there is no part element container, then no prefix +is generated. + + +This feature is most useful when the +label.from.part parameter is turned on. +In that case, there would be more than one chapter +1, and the extra part label prefix will identify +each chapter unambiguously. + + + + + +HTML + + +html.base +uri + + +html.base +An HTML base URI + + + + +<xsl:param name="html.base"></xsl:param> + + +Description + +If html.base is set, it is used for the base element +in the head of the html documents. The parameter specifies +the base URL for all relative URLs in the document. This is useful +for dynamically served html where the base URI needs to be +shifted. + + + + + + +html.stylesheet.type +string + + +html.stylesheet.type +The type of the stylesheet used in the generated HTML + + + +<xsl:param name="html.stylesheet.type">text/css</xsl:param> + + +Description + +The type of the stylesheet to place in the HTML link tag. + + + + + + + +html.stylesheet +string + + +html.stylesheet +Name of the stylesheet(s) to use in the generated HTML + + + + +<xsl:param name="html.stylesheet"></xsl:param> + + + +Description + +The html.stylesheet parameter is either +empty, indicating that no stylesheet link tag should be +generated in the html output, or it is a list of one or more +stylesheet files. + +Multiple stylesheets are space-delimited. If you need to +reference a stylesheet URI that includes a space, encode it with +%20. A separate html link element will +be generated for each stylesheet in the order they are listed in the +parameter. + + + + + + +css.decoration +boolean + + +css.decoration +Enable CSS decoration of elements + + + + +<xsl:param name="css.decoration" select="1"></xsl:param> + + + +Description + + +If non-zero, then html elements produced by the stylesheet may be +decorated with style attributes. For example, the +li tags produced for list items may include a +fragment of CSS in the style attribute which sets +the CSS property "list-style-type". + + + + + + + +spacing.paras +boolean + + +spacing.paras +Insert additional <p> elements for spacing? + + + + +<xsl:param name="spacing.paras" select="0"></xsl:param> + + + +Description + +When non-zero, additional, empty paragraphs are inserted in +several contexts (for example, around informal figures), to create a +more pleasing visual appearance in many browsers. + + + + + + + +emphasis.propagates.style +boolean + + +emphasis.propagates.style +Pass emphasis role attribute through to HTML? + + + +<xsl:param name="emphasis.propagates.style" select="1"></xsl:param> + + +Description +If non-zero, the role attribute of +emphasis elements will be passed through to the HTML as a +class attribute on a span that surrounds the +emphasis. + + + + + +para.propagates.style +boolean + + +para.propagates.style +Pass para role attribute through to HTML? + + + + +<xsl:param name="para.propagates.style" select="1"></xsl:param> + + + +Description + +If true, the role attribute of para elements +will be passed through to the HTML as a class attribute on the +p generated for the paragraph. + + + + + + +phrase.propagates.style +boolean + + +phrase.propagates.style +Pass phrase role attribute through to HTML? + + + + +<xsl:param name="phrase.propagates.style" select="1"></xsl:param> + + +Description + +If non-zero, the role attribute of phrase elements +will be passed through to the HTML as a class +attribute on a span that surrounds the +phrase. + + + + + + +entry.propagates.style +boolean + + +entry.propagates.style +Pass entry role attribute through to HTML? + + + + +<xsl:param name="entry.propagates.style" select="1"></xsl:param> + + + +Description + +If true, the role attribute of entry elements +will be passed through to the HTML as a class attribute on the +td or th generated for the table +cell. + + + + + + +html.longdesc +boolean + + +html.longdesc +Should longdesc URIs be created? + + + +<xsl:param name="html.longdesc" select="1"></xsl:param> + + +Description +If non-zero, HTML files will be created for the +longdesc attribute. These files +are created from the textobjects in +mediaobjects and +inlinemediaobject. + + + + + + +html.longdesc.link +boolean + + +html.longdesc.link +Should a link to the longdesc be included in the HTML? + + + + +<xsl:param name="html.longdesc.link" select="$html.longdesc"></xsl:param> + + + +Description + +If non-zero, links will be created to the +HTML files created for the +longdesc attribute. It makes no +sense to enable this option without also enabling the +html.longdesc parameter. + + + + + + + + +make.valid.html +boolean + + +make.valid.html +Attempt to make sure the HTML output is valid HTML + + + + +<xsl:param name="make.valid.html" select="0"></xsl:param> + + + +Description + +If make.valid.html is true, the stylesheets take +extra effort to ensure that the resulting HTML is valid. This may mean that some +para tags are translated into HTML divs or +that other substitutions occur. + +This parameter is different from html.cleanup +because it changes the resulting markup; it does not use extension functions +to manipulate result-tree-fragments and is therefore applicable to any +XSLT processor. + + + + + + +html.cleanup +boolean + + +html.cleanup +Attempt to clean up the resulting HTML? + + + + +<xsl:param name="html.cleanup" select="1"></xsl:param> + + + +Description + +If non-zero, and if the EXSLT +extensions are supported by your processor, the resulting HTML will be +cleaned up. This improves the chances that the +resulting HTML will be valid. It may also improve the formatting of +some elements. + +This parameter is different from make.valid.html +because it uses extension functions to manipulate result-tree-fragments. + + + + + + +html.append +string + + +html.append +Specifies content to append to HTML output + + + +<xsl:param name="html.append"></xsl:param> + + +Description + +Specifies content to append to the end of HTML files output by +the html/docbook.xsl stylesheet, after the +closing <html> tag. You probably don’t want to set any +value for this parameter; but if you do, the only value it should ever +be set to is a newline character: &#x0a; or +&#10; + + + + + + +draft.mode +list +no +yes +maybe + + +draft.mode +Select draft mode + + + + +<xsl:param name="draft.mode">no</xsl:param> + + + +Description + +Selects draft mode. If draft.mode is +yes, the entire document will be treated +as a draft. If it is no, the entire document +will be treated as a final copy. If it is maybe, +individual sections will be treated as draft or final independently, depending +on how their status attribute is set. + + + + + + + +draft.watermark.image +uri + + +draft.watermark.image +The URI of the image to be used for draft watermarks + + + + +<xsl:param name="draft.watermark.image">images/draft.png</xsl:param> + + + +Description + +The image to be used for draft watermarks. + + + + + + +generate.id.attributes +boolean + + +generate.id.attributes +Generate ID attributes on container elements? + + + + +<xsl:param name="generate.id.attributes" select="0"></xsl:param> + + + +Description + +If non-zero, the HTML stylesheet will generate ID attributes on +containers. For example, the markup: + +<section id="foo"><title>Some Title</title> +<para>Some para.</para> +</section> + +might produce: + +<div class="section" id="foo"> +<h2>Some Title</h2> +<p>Some para.</p> +</div> + +The alternative is to generate anchors: + +<div class="section"> +<h2><a name="foo"></a>Some Title</h2> +<p>Some para.</p> +</div> + +Because the name attribute of +the a element and the id +attribute of other tags are both of type ID, producing both +generates invalid documents. + +As of version 1.50, you can use this switch to control which type of +identifier is generated. For backwards-compatibility, generating +a anchors is preferred. + +Note: at present, this switch is incompletely implemented. +Disabling ID attributes will suppress them, but enabling ID attributes +will not suppress the anchors. + + + + + + +generate.meta.abstract +boolean + + +generate.meta.abstract +Generate HTML META element from abstract? + + + + +<xsl:param name="generate.meta.abstract" select="1"></xsl:param> + + + +Description + +If non-zero, document abstracts will be reproduced in the HTML +head, with >meta name="description" content="..." + + + + + + + +make.clean.html +boolean + + +make.clean.html +Make HTML conform to modern coding standards + + + + +<xsl:param name="make.clean.html" select="0"></xsl:param> + + + +Description + +If make.clean.html is true, the stylesheets take +extra effort to ensure that the resulting HTML is conforms to +modern HTML coding standards. In addition to eliminating +excessive and noncompliant coding, it moves presentation +HTML coding to a CSS stylesheet. + +The resulting HTML is dependent on +CSS for formatting, and so the stylesheet is capable of +generating a supporting CSS file. The docbook.css.source +and custom.css.source parameters control +how a CSS file is generated. + +If you require your CSS to reside in the HTML +head element, then the generate.css.header +can be used to do that. + +The make.clean.html parameter is +different from html.cleanup +because the former changes the resulting markup; it does not use extension functions +like the latter to manipulate result-tree-fragments, +and is therefore applicable to any XSLT processor. + +If make.clean.html is set to zero (the default), +then the stylesheet retains its original +old style +HTML formatting features. + + + + + + docbook.css.source + string + + + docbook.css.source + Name of the default CSS input file + + + + <xsl:param name="docbook.css.source">docbook.css.xml</xsl:param> + + + Description + +The docbook.css.source parameter +specifies the name of the file containing the default DocBook +CSS styles. Those styles are necessary when the +make.clean.html parameter is nonzero. + +The file is a well-formed XML file that +must consist of a single style root +element that contains CSS styles as its text content. +The default value of the parameter (and filename) +is docbook.css.xml. +The stylesheets ship with the default file. You can substitute +your own and specify its path in this parameter. + +If docbook.css.source is not blank, +and make.clean.html is nonzero, then +the stylesheet takes the following actions: + + + + The stylesheet uses the XSLT document() + function to open the file specified by the parameter and + load it into a variable. + + + The stylesheet forms an output pathname consisting of the + value of the base.dir parameter (if it is set) + and the value of docbook.css.source, + with the .xml suffix stripped off. + + + + The stylesheet removes the style + wrapper element and writes just the CSS text content to the output file. + + + The stylesheet adds a link element to the + HTML HEAD element to reference the external CSS stylesheet. + For example: + <link rel="stylesheet" href="docbook.css" type="text/css"> + + However, if the docbook.css.link + parameter is set to zero, then no link is written + for the default CSS file. That is useful if a custom + CSS file will import the default CSS stylesheet to ensure + proper cascading of styles. + + + +If the docbook.css.source parameter +is changed from its default docbook.css.xml to blank, +then no default CSS is generated. Likewise if the +make.clean.html parameter is set to zero, +then no default CSS is generated. The +custom.css.source parameter can be used +instead to generate a complete custom CSS file. + +You can use the generate.css.header +parameter to instead write the CSS to each HTML HEAD +element in a style tag instead of an external CSS file. + + + + + + +docbook.css.link +boolean + + +docbook.css.link +Insert a link referencing the default CSS stylesheet + + + + +<xsl:param name="docbook.css.link" select="1"></xsl:param> + + + +Description + +The stylesheets are capable of generating a default +CSS stylesheet file. The parameters +make.clean.html and +docbook.css.source control that feature. + +Normally if a default CSS file is generated, then +the stylesheet inserts a link tag in the HTML +HEAD element to reference it. +However, you can omit that link reference if +you set the docbook.css.link to zero +(1 is the default). + +This parameter is useful when you want to import the +default CSS into a custom CSS file generated using the +custom.css.source parameter. + + + + + + + + custom.css.source + string + + + custom.css.source + Name of a custom CSS input file + + + + <xsl:param name="custom.css.source"></xsl:param> + + + Description + +The custom.css.source +parameter enables you to add CSS styles to DocBook's +HTML output. + +The parameter +specifies the name of a file containing custom +CSS styles. The file must be a well-formed XML file that +consists of a single style root +element that contains CSS styles as its text content. +For example: +<?xml version="1.0"?> +<style> +h2 { + font-weight: bold; + color: blue; +} +... +</style> + + +The filename specified by the parameter +should have a .xml +filename suffix, although that is not required. +The default value of this parameter is blank. + +If custom.css.source is not blank, then +the stylesheet takes the following actions. +These actions take place regardless of the value of +the make.clean.html parameter. + + + + The stylesheet uses the XSLT document() + function to open the file specified by the parameter and + load it into a variable. + + + The stylesheet forms an output pathname consisting of the + value of the base.dir parameter (if it is set) + and the value of custom.css.source, + with the .xml suffix stripped off. + + + + The stylesheet removes the style + wrapper element and writes just the CSS text content to the output file. + + + The stylesheet adds a link element to the + HTML HEAD element to reference this external CSS stylesheet. + For example: + <link rel="stylesheet" href="custom.css" type="text/css"> + + + + + + + +If the make.clean.html parameter is nonzero +(the default is zero), +and if the docbook.css.source parameter +is not blank (the default is not blank), +then the stylesheet will also generate a default CSS file +and add a link tag to reference it. +The link to the custom CSS comes after the +link to the default, so it should cascade properly +in most browsers. +If you do not want two link tags, and +instead want your custom CSS to import the default generated +CSS file, then do the following: + + + + + Add a line like the following to your custom CSS source file: + @import url("docbook.css") + + + + Set the docbook.css.link parameter + to zero. This will omit the link tag + that references the default CSS file. + + + +If you set make.clean.html to nonzero but +you do not want the default CSS generated, then also set +the docbook.css.source parameter to blank. +Then no default CSS will be generated, and so +all CSS styles must come from your custom CSS file. + +You can use the generate.css.header +parameter to instead write the CSS to each HTML HEAD +element in a style tag instead of an external CSS file. + + + + + + +generate.css.header +boolean + + +generate.css.header +Insert generated CSS styles in HEAD element + + + + +<xsl:param name="generate.css.header" select="0"></xsl:param> + + + +Description + +The stylesheets are capable of generating both default +and custom CSS stylesheet files. The parameters +make.clean.html, +docbook.css.source, and +custom.css.source control that feature. + +If you require that CSS styles reside in the HTML +HEAD element instead of external CSS files, +then set the generate.css.header +parameter to nonzero (it is zero by default). +Then instead of generating the CSS in external files, +they are wrapped in style elements in +the HEAD element of each HTML output file. + + + + + +XSLT Processing + + +rootid +string + + +rootid +Specify the root element to format + + + + +<xsl:param name="rootid"></xsl:param> + + +Description + +If rootid is not empty, it must be the +value of an ID that occurs in the document being formatted. The entire +document will be loaded and parsed, but formatting will begin at the +element identified, rather than at the root. For example, this allows +you to process only chapter 4 of a book. +Because the entire document is available to the processor, automatic +numbering, cross references, and other dependencies are correctly +resolved. + + + + + + +suppress.navigation +boolean + + +suppress.navigation +Disable header and footer navigation + + + + +<xsl:param name="suppress.navigation" select="0"></xsl:param> + + + +Description + + +If non-zero, header and footer navigation will be suppressed. + + + + + + +suppress.header.navigation +boolean + + +suppress.header.navigation +Disable header navigation + + + + +<xsl:param name="suppress.header.navigation" select="0"></xsl:param> + + + +Description + +If non-zero, header navigation will be suppressed. + + + + + + +suppress.footer.navigation +boolean + + +suppress.footer.navigation +Disable footer navigation + + + +<xsl:param name="suppress.footer.navigation">0</xsl:param> + + +Description + + +If non-zero, footer navigation will be suppressed. + + + + + + +header.rule +boolean + + +header.rule +Rule under headers? + + + + +<xsl:param name="header.rule" select="1"></xsl:param> + + + +Description + +If non-zero, a rule will be drawn below the page headers. + + + + + + +footer.rule +boolean + + +footer.rule +Rule over footers? + + + + +<xsl:param name="footer.rule" select="1"></xsl:param> + + + +Description + +If non-zero, a rule will be drawn above the page footers. + + + + + + +id.warnings +boolean + + +id.warnings +Should warnings be generated for titled elements without IDs? + + + +<xsl:param name="id.warnings" select="0"></xsl:param> + + +Description +If non-zero, the stylesheet will issue a warning for any element +(other than the root element) which has a title but does not have an +ID. + + + +Meta/*Info and Titlepages + + +inherit.keywords +boolean + + +inherit.keywords +Inherit keywords from ancestor elements? + + + + +<xsl:param name="inherit.keywords" select="1"></xsl:param> + + +Description + +If inherit.keywords +is non-zero, the keyword meta for each HTML +head element will include all of the keywords from +ancestor elements. Otherwise, only the keywords from the current section +will be used. + + + + + + + +make.single.year.ranges +boolean + + +make.single.year.ranges +Print single-year ranges (e.g., 1998-1999) + + + + +<xsl:param name="make.single.year.ranges" select="0"></xsl:param> + + +Description + +If non-zero, year ranges that span a single year will be printed +in range notation (1998-1999) instead of discrete notation +(1998, 1999). + + + + + + +make.year.ranges +boolean + + +make.year.ranges +Collate copyright years into ranges? + + + +<xsl:param name="make.year.ranges" select="0"></xsl:param> + + +Description + +If non-zero, multiple copyright year elements will be +collated into ranges. +This works only if each year number is put into a separate +year element. The copyright element permits multiple +year elements. If a year element contains a dash or +a comma, then that year element will not be merged into +any range. + + + + + + + +author.othername.in.middle +boolean + + +author.othername.in.middle +Is othername in author a +middle name? + + + + +<xsl:param name="author.othername.in.middle" select="1"></xsl:param> + + +Description + +If non-zero, the othername of an author +appears between the firstname and +surname. Otherwise, othername +is suppressed. + + + + + + + +blurb.on.titlepage.enabled +boolean + + +blurb.on.titlepage.enabled +Display personblurb and authorblurb on title pages? + + + + +<xsl:param name="blurb.on.titlepage.enabled" select="0"></xsl:param> + + + +Description + +If non-zero, output from authorblurb and +personblurb elements is displayed on title pages. If zero +(the default), output from those elements is suppressed on title pages +(unless you are using a titlepage customization +that causes them to be included). + + + + + + +contrib.inline.enabled +boolean + + +contrib.inline.enabled +Display contrib output inline? + + + +<xsl:param name="contrib.inline.enabled">1</xsl:param> + + +Description + +If non-zero (the default), output of the contrib element is +displayed as inline content rather than as block content. + + + + + + +editedby.enabled +boolean + + +editedby.enabled +Display “Edited by” heading above editor name? + + + +<xsl:param name="editedby.enabled">1</xsl:param> + + +Description + +If non-zero, a localized Edited +by heading is displayed above editor names in output of the +editor element. + + + + + + +abstract.notitle.enabled +boolean + + +abstract.notitle.enabled +Suppress display of abstract titles? + + + <xsl:param name="abstract.notitle.enabled" select="0"></xsl:param> + +Description +If non-zero, in output of the abstract element on titlepages, +display of the abstract title is suppressed. + + + + + +othercredit.like.author.enabled +boolean + + +othercredit.like.author.enabled +Display othercredit in same style as author? + + + +<xsl:param name="othercredit.like.author.enabled">0</xsl:param> + + +Description + +If non-zero, output of the +othercredit element on titlepages is displayed in +the same style as author and +editor output. If zero then +othercredit output is displayed using a style +different than that of author and +editor. + + + + + + +generate.legalnotice.link +boolean + + +generate.legalnotice.link +Write legalnotice to separate chunk and generate link? + + + +<xsl:param name="generate.legalnotice.link" select="0"></xsl:param> + + +Description + +If the value of generate.legalnotice.link +is non-zero, the stylesheet: + + + + writes the contents of legalnotice to a separate + HTML file + + + inserts a hyperlink to the legalnotice file + + + adds (in the HTML head) either a single + link or element or multiple + link elements (depending on the value of the + html.head.legalnotice.link.multiple + parameter), with the value or values derived from the + html.head.legalnotice.link.types + parameter + + + + Otherwise, if generate.legalnotice.link is + zero, legalnotice contents are rendered on the title + page. + +The name of the separate HTML file is computed as follows: + + + + If a filename is given by the dbhtml filename +processing instruction, that filename is used. + + + If the legalnotice has an id/xml:id +attribute, and if use.id.as.filename != 0, the filename +is the concatenation of the id value and the value of the html.ext +parameter. + + + If the legalnotice does not have an id/xml:id + attribute, or if use.id.as.filename = 0, the filename is the concatenation of "ln-", +auto-generated id value, and html.ext value. + + + + + + + + + + + +generate.revhistory.link +boolean + + +generate.revhistory.link +Write revhistory to separate chunk and generate link? + + + +<xsl:param name="generate.revhistory.link" select="0"></xsl:param> + + +Description + +If non-zero, the contents of revhistory are written +to a separate HTML file and a link to the file is +generated. Otherwise, revhistory contents are rendered on +the title page. + +The name of the separate HTML file is computed as follows: + + + + If a filename is given by the dbhtml filename processing instruction, +that filename is used. + + + If the revhistory has an id/xml:id +attribute, and if use.id.as.filename != 0, the filename is the concatenation of +the id value and the value of the html.ext parameter. + + + If the revhistory does not have an id/xml:id +attribute, or if use.id.as.filename = 0, the filename is the concatenation of "rh-", +auto-generated id value, and html.ext value. + + + + + + + + + + + +html.head.legalnotice.link.types +string + + +html.head.legalnotice.link.types +Specifies link types for legalnotice link in html head + + + + +<xsl:param name="html.head.legalnotice.link.types">copyright</xsl:param> + + + +Description + +The value of +html.head.legalnotice.link.types is a +space-separated list of link types, as described in Section 6.12 +of the HTML 4.01 specification. If the value of the +generate.legalnotice.link parameter is +non-zero, then the stylesheet generates (in the +head section of the HTML source) either a single +HTML link element or, if the value of the +html.head.legalnotice.link.multiple is +non-zero, one link element for each link type +specified. Each link has the following attributes: + + + + a rel attribute whose + value is derived from the value of + html.head.legalnotice.link.types + + + an href attribute whose + value is set to the URL of the file containing the + legalnotice + + + a title attribute whose + value is set to the title of the corresponding + legalnotice (or a title programatically + determined by the stylesheet) + + + +For example: + + <link rel="license" href="ln-id2524073.html" title="Legal Notice"> + + +About the default value + + In an ideal world, the default value of + html.head.legalnotice.link.types would + probably be “license”, since the content of the + DocBook legalnotice is typically license + information, not copyright information. However, the default value + is “copyright” for pragmatic reasons: because + that’s among the set of “recognized link types” listed in Section + 6.12 of the HTML 4.01 specification, and because certain + browsers and browser extensions are preconfigured to recognize that + value. + + + + + + + +html.head.legalnotice.link.multiple +boolean + + +html.head.legalnotice.link.multiple +Generate multiple link instances in html head for legalnotice? + + + + +<xsl:param name="html.head.legalnotice.link.multiple" select="1"></xsl:param> + + + +Description + +If html.head.legalnotice.link.multiple is +non-zero and the value of +html.head.legalnotice.link.types contains +multiple link types, then the stylesheet generates (in the +head section of the HTML source) one +link element for each link type specified. For +example, if the value of +html.head.legalnotice.link.types is +“copyright license”: + + <link rel="copyright" href="ln-id2524073.html" title="Legal Notice"> + <link rel="license" href="ln-id2524073.html" title="Legal Notice"> + + Otherwise, the stylesheet generates generates a single + link instance; for example: + + <link rel="copyright license" href="ln-id2524073.html" title="Legal Notice"> + + + + + +Reference Pages + + +funcsynopsis.decoration +boolean + + +funcsynopsis.decoration +Decorate elements of a funcsynopsis? + + + + +<xsl:param name="funcsynopsis.decoration" select="1"></xsl:param> + + + +Description + +If non-zero, elements of the funcsynopsis will be +decorated (e.g. rendered as bold or italic text). The decoration is controlled by +templates that can be redefined in a customization layer. + + + + + + + +funcsynopsis.style +list +ansi +kr + + +funcsynopsis.style +What style of funcsynopsis should be generated? + + + +<xsl:param name="funcsynopsis.style">kr</xsl:param> + + +Description + +If funcsynopsis.style is ansi, +ANSI-style function synopses are generated for a +funcsynopsis, otherwise K&R-style +function synopses are generated. + + + + + + + +function.parens +boolean + + +function.parens +Generate parens after a function? + + + + +<xsl:param name="function.parens" select="0"></xsl:param> + + + +Description + +If non-zero, the formatting of a function element +will include generated parentheses. + + + + + + + +refentry.generate.name +boolean + + +refentry.generate.name +Output NAME header before refnames? + + + + +<xsl:param name="refentry.generate.name" select="1"></xsl:param> + + + +Description + +If non-zero, a "NAME" section title is output before the list +of refnames. This parameter and +refentry.generate.title are mutually +exclusive. This means that if you change this parameter to zero, you +should set refentry.generate.title to non-zero unless +you want get quite strange output. + + + + + + + +refentry.generate.title +boolean + + +refentry.generate.title +Output title before refnames? + + + + +<xsl:param name="refentry.generate.title" select="0"></xsl:param> + + + +Description + +If non-zero, the reference page title or first name is +output before the list of refnames. This parameter and +refentry.generate.name are mutually exclusive. +This means that if you change this parameter to non-zero, you +should set refentry.generate.name to zero unless +you want get quite strange output. + + + + + + + +refentry.xref.manvolnum +boolean + + +refentry.xref.manvolnum +Output manvolnum as part of +refentry cross-reference? + + + + +<xsl:param name="refentry.xref.manvolnum" select="1"></xsl:param> + + + +Description + +if non-zero, the manvolnum is used when cross-referencing +refentrys, either with xref +or citerefentry. + + + + + + + +citerefentry.link +boolean + + +citerefentry.link +Generate URL links when cross-referencing RefEntrys? + + + + +<xsl:param name="citerefentry.link" select="0"></xsl:param> + + +Description + +If non-zero, a web link will be generated, presumably +to an online man->HTML gateway. The text of the link is +generated by the generate.citerefentry.link template. + + + + + + + +refentry.separator +boolean + + +refentry.separator +Generate a separator between consecutive RefEntry elements? + + + + +<xsl:param name="refentry.separator" select="1"></xsl:param> + + + +Description + +If true, a separator will be generated between consecutive +reference pages. + + + + + + + +refclass.suppress +boolean + + +refclass.suppress +Suppress display of refclass contents? + + + + +<xsl:param name="refclass.suppress" select="0"></xsl:param> + + +Description + +If the value of refclass.suppress is +non-zero, then display of refclass contents is +suppressed in output. + + + + +Tables + + +default.table.width +length + + +default.table.width +The default width of tables + + + +<xsl:param name="default.table.width"></xsl:param> + + +Description +If non-zero, this value will be used for the +width attribute on tables that do not specify an +alternate width (with the dbhtml table-width or +dbfo table-width processing instruction). + + + + + +nominal.table.width +length + + +nominal.table.width +The (absolute) nominal width of tables + + + + +<xsl:param name="nominal.table.width">6in</xsl:param> + + + +Description + +In order to convert CALS column widths into HTML column widths, it +is sometimes necessary to have an absolute table width to use for conversion +of mixed absolute and relative widths. This value must be an absolute +length (not a percentage). + + + + + + +table.borders.with.css +boolean + + +table.borders.with.css +Use CSS to specify table, row, and cell borders? + + + + +<xsl:param name="table.borders.with.css" select="0"></xsl:param> + + + +Description + +If non-zero, CSS will be used to draw table borders. + + + + + + + +table.cell.border.style +list +none +solid +dotted +dashed +double +groove +ridge +inset +outset +solid + + +table.cell.border.style +Specifies the border style of table cells + + + + +<xsl:param name="table.cell.border.style">solid</xsl:param> + + + +Description + +Specifies the border style of table cells. + + + To control properties of cell borders in HTML output, you must also turn on the + table.borders.with.css parameter. + + + + + + + +table.cell.border.thickness +length + + +table.cell.border.thickness +Specifies the thickness of table cell borders + + + + +<xsl:param name="table.cell.border.thickness">0.5pt</xsl:param> + + + +Description + +If non-zero, specifies the thickness of borders on table +cells. The units are points. See +CSS + + + To control properties of cell borders in HTML output, you must also turn on the + table.borders.with.css parameter. + + + + + + + +table.cell.border.color +color + + +table.cell.border.color +Specifies the border color of table cells + + + + +<xsl:param name="table.cell.border.color"></xsl:param> + + + + +Description + +Set the color of table cell borders. If non-zero, the value is used +for the border coloration. See CSS. A +color is either a keyword or a numerical RGB specification. +Keywords are aqua, black, blue, fuchsia, gray, green, lime, maroon, +navy, olive, orange, purple, red, silver, teal, white, and +yellow. + + + To control properties of cell borders in HTML output, you must also turn on the + table.borders.with.css parameter. + + + + + + + +table.frame.border.style +list +none +solid +dotted +dashed +double +groove +ridge +inset +outset +solid + + +table.frame.border.style +Specifies the border style of table frames + + + + +<xsl:param name="table.frame.border.style">solid</xsl:param> + + + +Description + +Specifies the border style of table frames. + + + + + + +table.frame.border.thickness +length + + +table.frame.border.thickness +Specifies the thickness of the frame border + + + + +<xsl:param name="table.frame.border.thickness">0.5pt</xsl:param> + + + +Description + +Specifies the thickness of the border on the table's frame. + + + + + + +table.frame.border.color +color + + +table.frame.border.color +Specifies the border color of table frames + + + + +<xsl:param name="table.frame.border.color"></xsl:param> + + + + +Description + +Specifies the border color of table frames. + + + + + + +default.table.frame +string + + +default.table.frame +The default framing of tables + + + + +<xsl:param name="default.table.frame">all</xsl:param> + + + +Description + +This value will be used when there is no frame attribute on the +table. + + + + + + +html.cellspacing +integer + + +html.cellspacing +Default value for cellspacing in HTML tables + + + + +<xsl:param name="html.cellspacing"></xsl:param> + + + +Description + +If non-zero, this value will be used as the default cellspacing +value in HTML tables. nn for pixels or nn% for percentage +length. E.g. 5 or 5% + + + + + + +html.cellpadding +integer + + +html.cellpadding +Default value for cellpadding in HTML tables + + + + +<xsl:param name="html.cellpadding"></xsl:param> + + + +Description + +If non-zero, this value will be used as the default cellpadding value +in HTML tables. nn for pixels or nn% for percentage length. E.g. 5 or +5% + + + + +QAndASet + + +qanda.defaultlabel +list +number +qanda +none + + +qanda.defaultlabel +Sets the default for defaultlabel on QandASet. + + + + +<xsl:param name="qanda.defaultlabel">number</xsl:param> + + + +Description + +If no defaultlabel attribute is specified on +a qandaset, this value is used. It is generally one of the legal +values for the defaultlabel attribute (none, +number or +qanda), or one of the additional stylesheet-specific values +(qnumber or qnumberanda). +The default value is 'number'. + +The values are rendered as follows: + +qanda + +questions are labeled "Q:" and +answers are labeled "A:". + + + +number + +The questions are enumerated and the answers +are not labeled. + + + +qnumber + +The questions are labeled "Q:" followed by a number, and answers are not +labeled. +When sections are numbered, adding a label +to the number distinguishes the question numbers +from the section numbers. +This value is not allowed in the +defaultlabel attribute +of a qandaset element. + + + +qnumberanda + +The questions are labeled "Q:" followed by a number, and +the answers are labeled "A:". +When sections are numbered, adding a label +to the number distinguishes the question numbers +from the section numbers. +This value is not allowed in the +defaultlabel attribute +of a qandaset element. + + + +none + +No distinguishing label precedes Questions or Answers. + + + + + + + + + + +qanda.inherit.numeration +boolean + + +qanda.inherit.numeration +Does enumeration of QandASet components inherit the numeration of parent elements? + + + + +<xsl:param name="qanda.inherit.numeration" select="1"></xsl:param> + + + +Description + +If non-zero, numbered qandadiv elements and +question and answer inherit the enumeration of +the ancestors of the qandaset. + + + + + + + +qanda.in.toc +boolean + + +qanda.in.toc +Should qandaentry questions appear in +the document table of contents? + + + +<xsl:param name="qanda.in.toc" select="0"></xsl:param> + + +Description + +If true (non-zero), then the generated table of contents +for a document will include qandaset titles, +qandadiv titles, +and question elements. The default value (zero) excludes +them from the TOC. + +This parameter does not affect any tables of contents +that may be generated inside a qandaset or qandadiv. + + + + + + + +qanda.nested.in.toc +boolean + + +qanda.nested.in.toc +Should nested answer/qandaentry instances appear in TOC? + + + + +<xsl:param name="qanda.nested.in.toc" select="0"></xsl:param> + + + +Description + +If non-zero, instances of qandaentry +that are children of answer elements are shown in +the TOC. + + + + +Linking + + +target.database.document +uri + + +target.database.document +Name of master database file for resolving +olinks + + + + <xsl:param name="target.database.document">olinkdb.xml</xsl:param> + + +Description + + +To resolve olinks between documents, the stylesheets use a master +database document that identifies the target datafiles for all the +documents within the scope of the olinks. This parameter value is the +URI of the master document to be read during processing to resolve +olinks. The default value is olinkdb.xml. + +The data structure of the file is defined in the +targetdatabase.dtd DTD. The database file +provides the high level elements to record the identifiers, locations, +and relationships of documents. The cross reference data for +individual documents is generally pulled into the database using +system entity references or XIncludes. See also +targets.filename. + + + + +targets.filename +string + + +targets.filename +Name of cross reference targets data file + + +<xsl:param name="targets.filename">target.db</xsl:param> + + +Description + + +In order to resolve olinks efficiently, the stylesheets can +generate an external data file containing information about +all potential cross reference endpoints in a document. +This parameter lets you change the name of the generated +file from the default name target.db. +The name must agree with that used in the target database +used to resolve olinks during processing. +See also target.database.document. + + + + + + +olink.base.uri +uri + + +olink.base.uri +Base URI used in olink hrefs + + +<xsl:param name="olink.base.uri"></xsl:param> + + +Description + +When cross reference data is collected for resolving olinks, it +may be necessary to prepend a base URI to each target's href. This +parameter lets you set that base URI when cross reference data is +collected. This feature is needed when you want to link to a document +that is processed without chunking. The output filename for such a +document is not known to the XSL stylesheet; the only target +information consists of fragment identifiers such as +#idref. To enable the resolution of olinks between +documents, you should pass the name of the HTML output file as the +value of this parameter. Then the hrefs recorded in the cross +reference data collection look like +outfile.html#idref, which can be reached as links +from other documents. + + + + + +use.local.olink.style +boolean + + +use.local.olink.style +Process olinks using xref style of current +document + + +<xsl:param name="use.local.olink.style" select="0"></xsl:param> + +Description + +When cross reference data is collected for use by olinks, the data for each potential target includes one field containing a completely assembled cross reference string, as if it were an xref generated in that document. Other fields record the separate title, number, and element name of each target. When an olink is formed to a target from another document, the olink resolves to that preassembled string by default. If the use.local.olink.style parameter is set to non-zero, then instead the cross +reference string is formed again from the target title, number, and +element name, using the stylesheet processing the targeting document. +Then olinks will match the xref style in the targeting document +rather than in the target document. If both documents are processed +with the same stylesheet, then the results will be the same. + + + + + +current.docid +string + + +current.docid +targetdoc identifier for the document being +processed + + +<xsl:param name="current.docid"></xsl:param> + + +Description + +When olinks between documents are resolved for HTML output, the stylesheet can compute the relative path between the current document and the target document. The stylesheet needs to know the targetdoc identifiers for both documents, as they appear in the target.database.document database file. This parameter passes to the stylesheet +the targetdoc identifier of the current document, since that +identifier does not appear in the document itself. +This parameter can also be used for print output. If an olink's targetdoc id differs from the current.docid, then the stylesheet can append the target document's title to the generated olink text. That identifies to the reader that the link is to a different document, not the current document. See also olink.doctitle to enable that feature. + + + + + +olink.doctitle +list +no +yes +maybe + + +olink.doctitle +show the document title for external olinks? + + + +<xsl:param name="olink.doctitle">no</xsl:param> + + +Description + +When olinks between documents are resolved, the generated text +may not make it clear that the reference is to another document. +It is possible for the stylesheets to append the other document's +title to external olinks. For this to happen, two parameters must +be set. + + +This olink.doctitle parameter +should be set to either yes or maybe +to enable this feature. + + + +And you should also set the current.docid +parameter to the document id for the document currently +being processed for output. + + + + + +Then if an olink's targetdoc id differs from +the current.docid value, the stylesheet knows +that it is a reference to another document and can +append the target document's +title to the generated olink text. + +The text for the target document's title is copied from the +olink database from the ttl element +of the top-level div for that document. +If that ttl element is missing or empty, +no title is output. + + +The supported values for olink.doctitle are: + + + +yes + + +Always insert the title to the target document if it is not +the current document. + + + + +no + + +Never insert the title to the target document, even if requested +in an xrefstyle attribute. + + + + +maybe + + +Only insert the title to the target document, if requested +in an xrefstyle attribute. + + + + +An xrefstyle attribute +may override the global setting for individual olinks. +The following values are supported in an +xrefstyle +attribute using the select: syntax: + + + + +docname + + +Insert the target document name for this olink using the +docname gentext template, but only +if the value of olink.doctitle +is not no. + + + + +docnamelong + + +Insert the target document name for this olink using the +docnamelong gentext template, but only +if the value of olink.doctitle +is not no. + + + + +nodocname + + +Omit the target document name even if +the value of olink.doctitle +is yes. + + + + +Another way of inserting the target document name +for a single olink is to employ an +xrefstyle +attribute using the template: syntax. +The %o placeholder (the letter o, not zero) +in such a template +will be filled in with the target document's title when it is processed. +This will occur regardless of +the value of olink.doctitle. + +Note that prior to version 1.66 of the XSL stylesheets, +the allowed values for this parameter were 0 and 1. Those +values are still supported and mapped to 'no' and 'yes', respectively. + + + + + + +olink.debug +boolean + + +olink.debug +Turn on debugging messages for olinks + + + + +<xsl:param name="olink.debug" select="0"></xsl:param> + + + +Description + +If non-zero, then each olink will generate several +messages about how it is being resolved during processing. +This is useful when an olink does not resolve properly +and the standard error messages are not sufficient to +find the problem. + + +You may need to read through the olink XSL templates +to understand the context for some of the debug messages. + + + + + + + +olink.properties +attribute set + + +olink.properties +Properties associated with the cross-reference +text of an olink. + + + + +<xsl:attribute-set name="olink.properties"> + <xsl:attribute name="show-destination">replace</xsl:attribute> +</xsl:attribute-set> + + + +Description + +This attribute set is applied to the +fo:basic-link element of an olink. It is not applied to the +optional page number or optional title of the external +document. + + + + + + +olink.lang.fallback.sequence +string + + +olink.lang.fallback.sequence +look up translated documents if olink not found? + + + +<xsl:param name="olink.lang.fallback.sequence"></xsl:param> + + +Description + + +This parameter defines a list of lang values +to search among to resolve olinks. + + +Normally an olink tries to resolve to a document in the same +language as the olink itself. The language of an olink +is determined by its nearest ancestor element with a +lang attribute, otherwise the +value of the l10n.gentext.default.lang +parameter. + + +An olink database can contain target data for the same +document in multiple languages. Each set of data has the +same value for the targetdoc attribute in +the document element in the database, but with a +different lang attribute value. + + +When an olink is being resolved, the target is first +sought in the document with the same language as the olink. +If no match is found there, then this parameter is consulted +for additional languages to try. + +The olink.lang.fallback.sequence +must be a whitespace separated list of lang values to +try. The first one with a match in the olink database is used. +The default value is empty. + +For example, a document might be written in German +and contain an olink with +targetdoc="adminguide". +When the document is processed, the processor +first looks for a target dataset in the +olink database starting with: + +<document targetdoc="adminguide" lang="de">. + + +If there is no such element, then the +olink.lang.fallback.sequence +parameter is consulted. +If its value is, for example, fr en, then the processor next +looks for targetdoc="adminguide" lang="fr", and +then for targetdoc="adminguide" lang="en". +If there is still no match, it looks for +targetdoc="adminguide" with no +lang attribute. + + +This parameter is useful when a set of documents is only +partially translated, or is in the process of being translated. +If a target of an olink has not yet been translated, then this +parameter permits the processor to look for the document in +other languages. This assumes the reader would rather have +a link to a document in a different language than to have +a broken link. + + + + + + + +insert.olink.page.number +list +no +yes +maybe + + +insert.olink.page.number +Turns page numbers in olinks on and off + + + + +<xsl:param name="insert.olink.page.number">no</xsl:param> + + + +Description + +The value of this parameter determines if +cross references made between documents with +olink will +include page number citations. +In most cases this is only applicable to references in printed output. + +The parameter has three possible values. + + + +no +No page number references will be generated for olinks. + + + +yes +Page number references will be generated +for all olink references. +The style of page reference may be changed +if an xrefstyle +attribute is used. + + + +maybe +Page number references will not be generated +for an olink element unless +it has an +xrefstyle +attribute whose value specifies a page reference. + + + +Olinks that point to targets within the same document +are treated as xrefs, and controlled by +the insert.xref.page.number parameter. + + +Page number references for olinks to +external documents can only be inserted if the +information exists in the olink database. +This means each olink target element +(div or obj) +must have a page attribute +whose value is its page number in the target document. +The XSL stylesheets are not able to extract that information +during processing because pages have not yet been created in +XSLT transformation. Only the XSL-FO processor knows what +page each element is placed on. +Therefore some postprocessing must take place to populate +page numbers in the olink database. + + + + + + + + + +insert.olink.pdf.frag +boolean + + +insert.olink.pdf.frag +Add fragment identifiers for links into PDF files + + + + +<xsl:param name="insert.olink.pdf.frag" select="0"></xsl:param> + + + +Description + +The value of this parameter determines whether +the cross reference URIs to PDF documents made with +olink will +include fragment identifiers. + + +When forming a URI to link to a PDF document, +a fragment identifier (typically a '#' followed by an +id value) appended to the PDF filename can be used by +the PDF viewer to open +the PDF file to a location within the document instead of +the first page. +However, not all PDF files have id +values embedded in them, and not all PDF viewers can +handle fragment identifiers. + + +If insert.olink.pdf.frag is set +to a non-zero value, then any olink targeting a +PDF file will have the fragment identifier appended to the URI. +The URI is formed by concatenating the value of the +olink.base.uri parameter, the +value of the baseuri +attribute from the document +element in the olink database with the matching +targetdoc value, +and the value of the href +attribute for the targeted element in the olink database. +The href attribute +contains the fragment identifier. + + +If insert.olink.pdf.frag is set +to zero (the default value), then +the href attribute +from the olink database +is not appended to PDF olinks, so the fragment identifier is left off. +A PDF olink is any olink for which the +baseuri attribute +from the matching document +element in the olink database ends with '.pdf'. +Any other olinks will still have the fragment identifier added. + + + + + + +prefer.internal.olink +boolean + + +prefer.internal.olink +Prefer a local olink reference to an external reference + + + + +<xsl:param name="prefer.internal.olink" select="0"></xsl:param> + + + +Description + +If you are re-using XML content modules in multiple documents, +you may want to redirect some of your olinks. This parameter +permits you to redirect an olink to the current document. + + +For example: you are writing documentation for a product, +which includes 3 manuals: a little installation +booklet (booklet.xml), a user +guide (user.xml), and a reference manual (reference.xml). +All 3 documents begin with the same introduction section (intro.xml) that +contains a reference to the customization section (custom.xml) which is +included in both user.xml and reference.xml documents. + + +How do you write the link to custom.xml in intro.xml +so that it is interpreted correctly in all 3 documents? + +If you use xref, it will fail in user.xml. + +If you use olink (pointing to reference.xml), +the reference in user.xml +will point to the customization section of the reference manual, while it is +actually available in user.xml. + + + +If you set the prefer.internal.olink +parameter to a non-zero value, then the processor will +first look in the olink database +for the olink's targetptr attribute value +in document matching the current.docid +parameter value. If it isn't found there, then +it tries the document in the database +with the targetdoc +value that matches the olink's targetdoc +attribute. + + +This feature permits an olink reference to resolve to +the current document if there is an element +with an id matching the olink's targetptr +value. The current document's olink data must be +included in the target database for this to work. + + +There is a potential for incorrect links if +the same id attribute value is used for different +content in different documents. +Some of your olinks may be redirected to the current document +when they shouldn't be. It is not possible to control +individual olink instances. + + + + + + + +link.mailto.url +string + + +link.mailto.url +Mailto URL for the LINK REL=made HTML HEAD element + + + + +<xsl:param name="link.mailto.url"></xsl:param> + + + +Description + +If not the empty string, this address will be used for the +rel=made link element in the html head + + + + + + + +ulink.target +string + + +ulink.target +The HTML anchor target for ULinks + + + + +<xsl:param name="ulink.target">_top</xsl:param> + + + +Description + +If ulink.target is non-zero, its value will +be used for the target attribute +on anchors generated for ulinks. + + + + + + +olink.fragid +string + + +olink.fragid +Names the fragment identifier portion of an OLink resolver query + + + +<xsl:param name="olink.fragid">fragid=</xsl:param> + + +Description +The fragment identifier portion of an olink target. + + + + + +olink.outline.ext +string + + +olink.outline.ext +The extension of OLink outline files + + + + +<xsl:param name="olink.outline.ext">.olink</xsl:param> + + + +Description + +The extension to be expected for OLink outline files +Bob has this parameter as dead. Please don't use + + + + + + +olink.pubid +string + + +olink.pubid +Names the public identifier portion of an OLink resolver query + + + + +<xsl:param name="olink.pubid">pubid</xsl:param> + + + +Description + + + + + + + + +olink.sysid +string + + +olink.sysid +Names the system identifier portion of an OLink resolver query + + + + +<xsl:param name="olink.sysid">sysid</xsl:param> + + + +Description + +FIXME + + + + + + +olink.resolver +string + + +olink.resolver +The root name of the OLink resolver (usually a script) + + + + <xsl:param name="olink.resolver">/cgi-bin/olink</xsl:param> + + +Description +FIXME: + + + +Cross References + + +collect.xref.targets +list +no +yes +only + + +collect.xref.targets +Controls whether cross reference data is +collected + + +<xsl:param name="collect.xref.targets">no</xsl:param> + + +Description + + +In order to resolve olinks efficiently, the stylesheets can +generate an external data file containing information about +all potential cross reference endpoints in a document. +This parameter determines whether the collection process is run when the document is processed by the stylesheet. The default value is no, which means the data file is not generated during processing. The other choices are yes, which means the data file is created and the document is processed for output, and only, which means the data file is created but the document is not processed for output. +See also targets.filename. + + + + + + +insert.xref.page.number +list +no +yes +maybe + + +insert.xref.page.number +Turns page numbers in xrefs on and off + + + + +<xsl:param name="insert.xref.page.number">no</xsl:param> + + + +Description + +The value of this parameter determines if +cross references (xrefs) in +printed output will +include page number citations. +It has three possible values. + + + +no +No page number references will be generated. + + + +yes +Page number references will be generated +for all xref elements. +The style of page reference may be changed +if an xrefstyle +attribute is used. + + + +maybe +Page number references will not be generated +for an xref element unless +it has an +xrefstyle +attribute whose value specifies a page reference. + + + + + + + + + +use.role.as.xrefstyle +boolean + + +use.role.as.xrefstyle +Use role attribute for +xrefstyle on xref? + + + + +<xsl:param name="use.role.as.xrefstyle" select="1"></xsl:param> + + + +Description + +In DocBook documents that conform to a schema older than V4.3, this parameter allows +role to serve the purpose of specifying the cross reference style. + +If non-zero, the role attribute on +xref will be used to select the cross reference style. +In DocBook V4.3, the xrefstyle attribute was added for this purpose. +If the xrefstyle attribute is present, +role will be ignored, regardless of the setting +of this parameter. + + + +Example + +The following small stylesheet shows how to configure the +stylesheets to make use of the cross reference style: + +<?xml version="1.0"?> +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + version="1.0"> + +<xsl:import href="../xsl/html/docbook.xsl"/> + +<xsl:output method="html"/> + +<xsl:param name="local.l10n.xml" select="document('')"/> +<l:i18n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0"> + <l:l10n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0" language="en"> + <l:context name="xref"> + <l:template name="chapter" style="title" text="Chapter %n, %t"/> + <l:template name="chapter" text="Chapter %n"/> + </l:context> + </l:l10n> +</l:i18n> + +</xsl:stylesheet> + +With this stylesheet, the cross references in the following document: + +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN" + "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd"> +<book id="book"><title>Book</title> + +<preface> +<title>Preface</title> + +<para>Normal: <xref linkend="ch1"/>.</para> +<para>Title: <xref xrefstyle="title" linkend="ch1"/>.</para> + +</preface> + +<chapter id="ch1"> +<title>First Chapter</title> + +<para>Irrelevant.</para> + +</chapter> +</book> + +will appear as: + + +Normal: Chapter 1. +Title: Chapter 1, First Chapter. + + + + + + + +xref.with.number.and.title +boolean + + +xref.with.number.and.title +Use number and title in cross references + + + + +<xsl:param name="xref.with.number.and.title" select="1"></xsl:param> + + + +Description + +A cross reference may include the number (for example, the number of +an example or figure) and the title which is a required child of some +targets. This parameter inserts both the relevant number as well as +the title into the link. + + + + + + +xref.label-page.separator +string + + +xref.label-page.separator +Punctuation or space separating label from page number in xref + + + +<xsl:param name="xref.label-page.separator"><xsl:text> </xsl:text></xsl:param> + + +Description + + +This parameter allows you to control the punctuation of certain +types of generated cross reference text. +When cross reference text is generated for an +xref or +olink element +using an xrefstyle attribute +that makes use of the select: feature, +and the selected components include both label and page +but no title, +then the value of this parameter is inserted between +label and page number in the output. +If a title is included, then other separators are used. + + + + + + + +xref.label-title.separator +string + + +xref.label-title.separator +Punctuation or space separating label from title in xref + + + +<xsl:param name="xref.label-title.separator">: </xsl:param> + + +Description + + +This parameter allows you to control the punctuation of certain +types of generated cross reference text. +When cross reference text is generated for an +xref or +olink element +using an xrefstyle attribute +that makes use of the select: feature, +and the selected components include both label and title, +then the value of this parameter is inserted between +label and title in the output. + + + + + + + +xref.title-page.separator +string + + +xref.title-page.separator +Punctuation or space separating title from page number in xref + + + +<xsl:param name="xref.title-page.separator"><xsl:text> </xsl:text></xsl:param> + + +Description + + +This parameter allows you to control the punctuation of certain +types of generated cross reference text. +When cross reference text is generated for an +xref or +olink element +using an xrefstyle attribute +that makes use of the select: feature, +and the selected components include both title and page number, +then the value of this parameter is inserted between +title and page number in the output. + + + + + +Lists + + +segmentedlist.as.table +boolean + + +segmentedlist.as.table +Format segmented lists as tables? + + + + +<xsl:param name="segmentedlist.as.table" select="0"></xsl:param> + + + +Description + +If non-zero, segmentedlists will be formatted as +tables. + + + + + + +variablelist.as.table +boolean + + +variablelist.as.table +Format variablelists as tables? + + + + +<xsl:param name="variablelist.as.table" select="0"></xsl:param> + + + +Description + +If non-zero, variablelists will be formatted as +tables. A processing instruction exists to specify a particular width for the +column containing the terms: +dbhtml term-width=".25in" + +You can override this setting with a processing instruction as the +child of variablelist: dbhtml +list-presentation="table" or dbhtml +list-presentation="list". + +This parameter only applies to the HTML transformations. In the +FO case, proper list markup is robust enough to handle the formatting. +But see also variablelist.as.blocks. + + <variablelist> + <?dbhtml list-presentation="table"?> + <?dbhtml term-width="1.5in"?> + <?dbfo list-presentation="list"?> + <?dbfo term-width="1in"?> + <varlistentry> + <term>list</term> + <listitem> + <para> + Formatted as a table even if variablelist.as.table is set to 0. + </para> + </listitem> + </varlistentry> + </variablelist> + + + + + + +variablelist.term.separator +string + + +variablelist.term.separator +Text to separate terms within a multi-term +varlistentry + + + + +<xsl:param name="variablelist.term.separator">, </xsl:param> + + +Description + +When a varlistentry contains multiple term +elements, the string specified in the value of the +variablelist.term.separator parameter is placed +after each term except the last. + + + To generate a line break between multiple terms in + a varlistentry, set a non-zero value for the + variablelist.term.break.after parameter. If + you do so, you may also want to set the value of the + variablelist.term.separator parameter to an + empty string (to suppress rendering of the default comma and space + after each term). + + + + + + + +variablelist.term.break.after +boolean + + +variablelist.term.break.after +Generate line break after each term within a +multi-term varlistentry? + + + + +<xsl:param name="variablelist.term.break.after">0</xsl:param> + + +Description + +Set a non-zero value for the +variablelist.term.break.after parameter to +generate a line break between terms in a +multi-term varlistentry. + + +If you set a non-zero value for +variablelist.term.break.after, you may also +want to set the value of the +variablelist.term.separator parameter to an +empty string (to suppress rendering of the default comma and space +after each term). + + + + + +Bibliography + + +bibliography.style +list +normal +iso690 + + +bibliography.style +Style used for formatting of biblioentries. + + + + +<xsl:param name="bibliography.style">normal</xsl:param> + + + +Description + +Currently only normal and +iso690 styles are supported. + +In order to use ISO690 style to the full extent you might need +to use additional markup described on the +following WiKi page. + + + + + + +biblioentry.item.separator +string + + +biblioentry.item.separator +Text to separate bibliography entries + + + +<xsl:param name="biblioentry.item.separator">. </xsl:param> + + +Description + +Text to separate bibliography entries + + + + + + + +bibliography.collection +string + + +bibliography.collection +Name of the bibliography collection file + + + + +<xsl:param name="bibliography.collection">http://docbook.sourceforge.net/release/bibliography/bibliography.xml</xsl:param> + + + + +Description + +Maintaining bibliography entries across a set of documents is tedious, time +consuming, and error prone. It makes much more sense, usually, to store all of +the bibliography entries in a single place and simply extract +the ones you need in each document. + +That's the purpose of the +bibliography.collection parameter. To setup a global +bibliography database, follow these steps: + +First, create a stand-alone bibliography document that contains all of +the documents that you wish to reference. Make sure that each bibliography +entry (whether you use biblioentry or bibliomixed) +has an ID. + +My global bibliography, ~/bibliography.xml begins +like this: + + +<!DOCTYPE bibliography + PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN" + "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd"> +<bibliography><title>References</title> + +<bibliomixed id="xml-rec"><abbrev>XML 1.0</abbrev>Tim Bray, +Jean Paoli, C. M. Sperberg-McQueen, and Eve Maler, editors. +<citetitle><ulink url="http://www.w3.org/TR/REC-xml">Extensible Markup +Language (XML) 1.0 Second Edition</ulink></citetitle>. +World Wide Web Consortium, 2000. +</bibliomixed> + +<bibliomixed id="xml-names"><abbrev>Namespaces</abbrev>Tim Bray, +Dave Hollander, +and Andrew Layman, editors. +<citetitle><ulink url="http://www.w3.org/TR/REC-xml-names/">Namespaces in +XML</ulink></citetitle>. +World Wide Web Consortium, 1999. +</bibliomixed> + +<!-- ... --> +</bibliography> + + + +When you create a bibliography in your document, simply +provide empty bibliomixed +entries for each document that you wish to cite. Make sure that these +elements have the same ID as the corresponding real +entry in your global bibliography. + +For example: + + +<bibliography><title>Bibliography</title> + +<bibliomixed id="xml-rec"/> +<bibliomixed id="xml-names"/> +<bibliomixed id="DKnuth86">Donald E. Knuth. <citetitle>Computers and +Typesetting: Volume B, TeX: The Program</citetitle>. Addison-Wesley, +1986. ISBN 0-201-13437-3. +</bibliomixed> +<bibliomixed id="relaxng"/> + +</bibliography> + + +Note that it's perfectly acceptable to mix entries from your +global bibliography with normal entries. You can use +xref or other elements to cross-reference your +bibliography entries in exactly the same way you do now. + +Finally, when you are ready to format your document, simply set the +bibliography.collection parameter (in either a +customization layer or directly through your processor's interface) to +point to your global bibliography. + +The stylesheets will format the bibliography in your document as if +all of the entries referenced appeared there literally. + + + + + + +bibliography.numbered +boolean + + +bibliography.numbered +Should bibliography entries be numbered? + + + + +<xsl:param name="bibliography.numbered" select="0"></xsl:param> + + + +Description + +If non-zero bibliography entries will be numbered + + + + +Glossary + + +glossterm.auto.link +boolean + + +glossterm.auto.link +Generate links from glossterm to glossentry automatically? + + + + +<xsl:param name="glossterm.auto.link" select="0"></xsl:param> + + + +Description + +If non-zero, links from inline glossterms to the corresponding +glossentry elements in a glossary or glosslist +will be automatically generated. This is useful when your glossterms are consistent +and you don't want to add links manually. + +The automatic link generation feature is not used on glossterm elements +that have a linkend attribute. + + + + + + +firstterm.only.link +boolean + + +firstterm.only.link +Does automatic glossterm linking only apply to firstterms? + + + + +<xsl:param name="firstterm.only.link" select="0"></xsl:param> + + + +Description + +If non-zero, only firstterms will be automatically linked +to the glossary. If glossary linking is not enabled, this parameter +has no effect. + + + + + + +glossary.collection +string + + +glossary.collection +Name of the glossary collection file + + + + +<xsl:param name="glossary.collection"></xsl:param> + + + +Description + +Glossaries maintained independently across a set of documents +are likely to become inconsistent unless considerable effort is +expended to keep them in sync. It makes much more sense, usually, to +store all of the glossary entries in a single place and simply +extract the ones you need in each document. + +That's the purpose of the +glossary.collection parameter. To setup a global +glossary database, follow these steps: + +Setting Up the Glossary Database + +First, create a stand-alone glossary document that contains all of +the entries that you wish to reference. Make sure that each glossary +entry has an ID. + +Here's an example glossary: + + + +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE glossary + PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN" + "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd"> +<glossary> +<glossaryinfo> +<editor><firstname>Eric</firstname><surname>Raymond</surname></editor> +<title>Jargon File 4.2.3 (abridged)</title> +<releaseinfo>Just some test data</releaseinfo> +</glossaryinfo> + +<glossdiv><title>0</title> + +<glossentry> +<glossterm>0</glossterm> +<glossdef> +<para>Numeric zero, as opposed to the letter `O' (the 15th letter of +the English alphabet). In their unmodified forms they look a lot +alike, and various kluges invented to make them visually distinct have +compounded the confusion. If your zero is center-dotted and letter-O +is not, or if letter-O looks almost rectangular but zero looks more +like an American football stood on end (or the reverse), you're +probably looking at a modern character display (though the dotted zero +seems to have originated as an option on IBM 3270 controllers). If +your zero is slashed but letter-O is not, you're probably looking at +an old-style ASCII graphic set descended from the default typewheel on +the venerable ASR-33 Teletype (Scandinavians, for whom /O is a letter, +curse this arrangement). (Interestingly, the slashed zero long +predates computers; Florian Cajori's monumental "A History of +Mathematical Notations" notes that it was used in the twelfth and +thirteenth centuries.) If letter-O has a slash across it and the zero +does not, your display is tuned for a very old convention used at IBM +and a few other early mainframe makers (Scandinavians curse <emphasis>this</emphasis> +arrangement even more, because it means two of their letters collide). +Some Burroughs/Unisys equipment displays a zero with a <emphasis>reversed</emphasis> +slash. Old CDC computers rendered letter O as an unbroken oval and 0 +as an oval broken at upper right and lower left. And yet another +convention common on early line printers left zero unornamented but +added a tail or hook to the letter-O so that it resembled an inverted +Q or cursive capital letter-O (this was endorsed by a draft ANSI +standard for how to draw ASCII characters, but the final standard +changed the distinguisher to a tick-mark in the upper-left corner). +Are we sufficiently confused yet?</para> +</glossdef> +</glossentry> + +<glossentry> +<glossterm>1TBS</glossterm> +<glossdef> +<para role="accidence"> +<phrase role="pronounce"></phrase> +<phrase role="partsofspeach">n</phrase> +</para> +<para>The "One True Brace Style"</para> +<glossseealso>indent style</glossseealso> +</glossdef> +</glossentry> + +<!-- ... --> + +</glossdiv> + +<!-- ... --> + +</glossary> + + + + +Marking Up Glossary Terms + +That takes care of the glossary database, now you have to get the entries +into your document. Unlike bibliography entries, which can be empty, creating +placeholder glossary entries would be very tedious. So instead, +support for glossary.collection relies on implicit linking. + +In your source document, simply use firstterm and +glossterm to identify the terms you wish to have included +in the glossary. The stylesheets assume that you will either set the +baseform attribute correctly, or that the +content of the element exactly matches a term in your glossary. + +If you're using a glossary.collection, don't +make explicit links on the terms in your document. + +So, in your document, you might write things like this: + + +<para>This is dummy text, without any real meaning. +The point is simply to reference glossary terms like <glossterm>0</glossterm> +and the <firstterm baseform="1TBS">One True Brace Style (1TBS)</firstterm>. +The <glossterm>1TBS</glossterm>, as you can probably imagine, is a nearly +religious issue.</para> + + +If you set the firstterm.only.link parameter, +only the terms marked with firstterm will be links. +Otherwise, all the terms will be linked. + + + +Marking Up the Glossary + +The glossary itself has to be identified for the stylesheets. For lack +of a better choice, the role is used. +To identify the glossary as the target for automatic processing, set +the role to auto. The title of this +glossary (and any other information from the glossaryinfo +that's rendered by your stylesheet) will be displayed, but the entries will +come from the database. + + +Unfortunately, the glossary can't be empty, so you must put in +at least one glossentry. The content of this entry +is irrelevant, it will not be rendered: + + +<glossary role="auto"> +<glossentry> +<glossterm>Irrelevant</glossterm> +<glossdef> +<para>If you can see this, the document was processed incorrectly. Use +the <parameter>glossary.collection</parameter> parameter.</para> +</glossdef> +</glossentry> +</glossary> + + +What about glossary divisions? If your glossary database has glossary +divisions and your automatic glossary contains at least +one glossdiv, the automic glossary will have divisions. +If the glossdiv is missing from either location, no divisions +will be rendered. + +Glossary entries (and divisions, if appropriate) in the glossary will +occur in precisely the order they occur in your database. + + + +Formatting the Document + +Finally, when you are ready to format your document, simply set the +glossary.collection parameter (in either a +customization layer or directly through your processor's interface) to +point to your global glossary. + +The stylesheets will format the glossary in your document as if +all of the entries implicilty referenced appeared there literally. + + +Limitations + +Glossary cross-references within the glossary are +not supported. For example, this will not work: + + +<glossentry> +<glossterm>gloss-1</glossterm> +<glossdef><para>A description that references <glossterm>gloss-2</glossterm>.</para> +<glossseealso>gloss-2</glossseealso> +</glossdef> +</glossentry> + + +If you put glossary cross-references in your glossary that way, +you'll get the cryptic error: Warning: +glossary.collection specified, but there are 0 automatic +glossaries. + +Instead, you must do two things: + + + +Markup your glossary using glossseealso: + + +<glossentry> +<glossterm>gloss-1</glossterm> +<glossdef><para>A description that references <glossterm>gloss-2</glossterm>.</para> +<glossseealso>gloss-2</glossseealso> +</glossdef> +</glossentry> + + + + +Make sure there is at least one glossterm reference to +gloss-2 in your document. The +easiest way to do that is probably within a remark in your +automatic glossary: + + +<glossary role="auto"> +<remark>Make sure there's a reference to <glossterm>gloss-2</glossterm>.</remark> +<glossentry> +<glossterm>Irrelevant</glossterm> +<glossdef> +<para>If you can see this, the document was processed incorrectly. Use +the <parameter>glossary.collection</parameter> parameter.</para> +</glossdef> +</glossentry> +</glossary> + + + + + + + + + + +glossary.sort +boolean + + +glossary.sort +Sort glossentry elements? + + + + +<xsl:param name="glossary.sort" select="0"></xsl:param> + + + +Description + +If non-zero, then the glossentry elements within a +glossary, glossdiv, or glosslist are sorted on the glossterm, using +the current lang setting. If zero (the default), then +glossentry elements are not sorted and are presented +in document order. + + + + + + + +glossentry.show.acronym +list +no +yes +primary + + +glossentry.show.acronym +Display glossentry acronyms? + + + + +<xsl:param name="glossentry.show.acronym">no</xsl:param> + + + +Description + +A setting of yes means they should be displayed; +no means they shouldn't. If primary is used, +then they are shown as the primary text for the entry. + + +This setting controls both acronym and +abbrev elements in the glossentry. + + + + + +Miscellaneous + + +formal.procedures +boolean + + +formal.procedures +Selects formal or informal procedures + + + + +<xsl:param name="formal.procedures" select="1"></xsl:param> + + + +Description + +Formal procedures are numbered and always have a title. + + + + + + + +formal.title.placement +table + + +formal.title.placement +Specifies where formal object titles should occur + + + + +<xsl:param name="formal.title.placement"> +figure before +example before +equation before +table before +procedure before +task before +</xsl:param> + + + +Description + +Specifies where formal object titles should occur. For each formal object +type (figure, +example, +equation, +table, and procedure) +you can specify either the keyword +before or +after. + + + + + + +runinhead.default.title.end.punct +string + + +runinhead.default.title.end.punct +Default punctuation character on a run-in-head + + + +<xsl:param name="runinhead.default.title.end.punct">.</xsl:param> + + + +Description + +If non-zero, For a formalpara, use the specified +string as the separator between the title and following text. The period is the default value. + + + + + + +runinhead.title.end.punct +string + + +runinhead.title.end.punct +Characters that count as punctuation on a run-in-head + + + + +<xsl:param name="runinhead.title.end.punct">.!?:</xsl:param> + + + +Description + +Specify which characters are to be counted as punctuation. These +characters are checked for a match with the last character of the +title. If no match is found, the +runinhead.default.title.end.punct contents are +inserted. This is to avoid duplicated punctuation in the output. + + + + + + + +show.comments +boolean + + +show.comments +Display remark elements? + + + + +<xsl:param name="show.comments" select="1"></xsl:param> + + + +Description + +If non-zero, comments will be displayed, otherwise they +are suppressed. Comments here refers to the remark element +(which was called comment prior to DocBook +4.0), not XML comments (<-- like this -->) which are +unavailable. + + + + + + + +show.revisionflag +boolean + + +show.revisionflag +Enable decoration of elements that have a revisionflag + + + + +<xsl:param name="show.revisionflag" select="0"></xsl:param> + + + +Description + + +If show.revisionflag is turned on, then the stylesheets +may produce additional markup designed to allow a CSS stylesheet to +highlight elements that have specific revisionflag settings. + +The markup inserted will be usually be either a <span> or +<div> with an appropriate class +attribute. (The value of the class attribute will be the same as the +value of the revisionflag attribute). In some contexts, for example +tables, where extra markup would be structurally illegal, the class +attribute will be added to the appropriate container element. + +In general, the stylesheets only test for revisionflag in contexts +where an importing stylesheet would have to redefine whole templates. +Most of the revisionflag processing is expected to be done by another +stylesheet, for example changebars.xsl. + + + + + + +shade.verbatim +boolean + + +shade.verbatim +Should verbatim environments be shaded? + + + +<xsl:param name="shade.verbatim" select="0"></xsl:param> + + +Description + +In the FO stylesheet, if this parameter is non-zero then the +shade.verbatim.style properties will be applied +to verbatim environments. + +In the HTML stylesheet, this parameter is now deprecated. Use +CSS instead. + + + + + + +shade.verbatim.style +attribute set + + +shade.verbatim.style +Properties that specify the style of shaded verbatim listings + + + + +<xsl:attribute-set name="shade.verbatim.style"> + <xsl:attribute name="border">0</xsl:attribute> + <xsl:attribute name="bgcolor">#E0E0E0</xsl:attribute> +</xsl:attribute-set> + + + + +Description + +Properties that specify the style of shaded verbatim listings. The +parameters specified (the border and background color) are added to +the styling of the xsl-fo output. A border might be specified as "thin +black solid" for example. See xsl-fo + + + + + + +punct.honorific +string + + +punct.honorific +Punctuation after an honorific in a personal name. + + + + +<xsl:param name="punct.honorific">.</xsl:param> + + + +Description + +This parameter specifies the punctuation that should be added after an +honorific in a personal name. + + + + + + +tex.math.in.alt +list +plain +latex + + +tex.math.in.alt +TeX notation used for equations + + + + +<xsl:param name="tex.math.in.alt"></xsl:param> + + + +Description + +If you want type math directly in TeX notation in equations, +this parameter specifies notation used. Currently are supported two +values -- plain and latex. Empty +value means that you are not using TeX math at all. + +Preferred way for including TeX alternative of math is inside of +textobject element. Eg.: + +<inlineequation> +<inlinemediaobject> +<imageobject> +<imagedata fileref="eq1.gif"/> +</imageobject> +<textobject><phrase>E=mc squared</phrase></textobject> +<textobject role="tex"><phrase>E=mc^2</phrase></textobject> +</inlinemediaobject> +</inlineequation> + +If you are using graphic element, you can +store TeX inside alt element: + +<inlineequation> +<alt role="tex">a^2+b^2=c^2</alt> +<graphic fileref="a2b2c2.gif"/> +</inlineequation> + +If you want use this feature, you should process your FO with +PassiveTeX, which only supports TeX math notation. When calling +stylsheet, don't forget to specify also +passivetex.extensions=1. + +If you want equations in HTML, just process generated file +tex-math-equations.tex by TeX or LaTeX. Then run +dvi2bitmap program on result DVI file. You will get images for +equations in your document. + + + This feature is useful for print/PDF output only if you + use the obsolete and now unsupported PassiveTeX XSL-FO + engine. + + + + +Related Parameters + tex.math.delims, + passivetex.extensions, + tex.math.file + + + + + + +tex.math.file +string + + +tex.math.file +Name of temporary file for generating images from equations + + + + +<xsl:param name="tex.math.file">tex-math-equations.tex</xsl:param> + + + +Description + +Name of auxiliary file for TeX equations. This file can be +processed by dvi2bitmap to get bitmap versions of equations for HTML +output. + + +Related Parameters + tex.math.in.alt, + tex.math.delims, + + +More information + For how-to documentation on embedding TeX equations and + generating output from them, see + DBTeXMath. + + + + + +tex.math.delims +boolean + + +tex.math.delims +Should equations output for processing by TeX be +surrounded by math mode delimiters? + + + + +<xsl:param name="tex.math.delims" select="1"></xsl:param> + + + +Description + +For compatibility with DSSSL based DBTeXMath from Allin Cottrell +you should set this parameter to 0. + + + This feature is useful for print/PDF output only if you + use the obsolete and now unsupported PassiveTeX XSL-FO + engine. + + + +Related Parameters + tex.math.in.alt, + passivetex.extensions + + +See Also + You can also use the dbtex delims processing + instruction to control whether delimiters are output. + + + + + + + +pixels.per.inch +integer + + +pixels.per.inch +How many pixels are there per inch? + + + + +<xsl:param name="pixels.per.inch">90</xsl:param> + + + +Description + +When lengths are converted to pixels, this value is used to +determine the size of a pixel. The default value is taken from the +XSL +Recommendation. + + + + + + + +points.per.em +number + + +points.per.em +Specify the nominal size of an em-space in points + + + + +<xsl:param name="points.per.em">10</xsl:param> + + + +Description + +The fixed value used for calculations based upon the size of a +character. The assumption made is that ten point font is in use. This +assumption may not be valid. + + + + + + +use.svg +boolean + + +use.svg +Allow SVG in the result tree? + + + + +<xsl:param name="use.svg" select="1"></xsl:param> + + + +Description + +If non-zero, SVG will be considered an acceptable image format. SVG +is passed through to the result tree, so correct rendering of the resulting +diagram depends on the formatter (FO processor or web browser) that is used +to process the output from the stylesheet. + + + + + + +menuchoice.separator +string + + +menuchoice.separator +Separator between items of a menuchoice +other than guimenuitem and +guisubmenu + + + + +<xsl:param name="menuchoice.separator">+</xsl:param> + + + +Description + +Separator used to connect items of a menuchoice other +than guimenuitem and guisubmenu. The latter +elements are linked with menuchoice.menu.separator. + + + + + + + +menuchoice.menu.separator +string + + +menuchoice.menu.separator +Separator between items of a menuchoice +with guimenuitem or +guisubmenu + + + + +<xsl:param name="menuchoice.menu.separator"> → </xsl:param> + + + +Description + +Separator used to connect items of a menuchoice with +guimenuitem or guisubmenu. Other elements +are linked with menuchoice.separator. + +The default value is &#x2192;, which is the +&rarr; (right arrow) character entity. +The current FOP (0.20.5) requires setting the font-family +explicitly. + +The default value also includes spaces around the arrow, +which will allow a line to break. Replace the spaces with +&#xA0; (nonbreaking space) if you don't want those +spaces to break. + + + + + + + +default.float.class +string + + +default.float.class +Specifies the default float class + + + + +<xsl:param name="default.float.class"> + <xsl:choose> + <xsl:when test="contains($stylesheet.result.type,'html')">left</xsl:when> + <xsl:otherwise>before</xsl:otherwise> + </xsl:choose> +</xsl:param> + + + +Description + +Selects the direction in which a float should be placed. for +xsl-fo this is before, for html it is left. For Western texts, the +before direction is the top of the page. + + + + + + +footnote.number.format +list +11,2,3... +AA,B,C... +aa,b,c... +ii,ii,iii... +II,II,III... + + +footnote.number.format +Identifies the format used for footnote numbers + + + + +<xsl:param name="footnote.number.format">1</xsl:param> + + + +Description + +The footnote.number.format specifies the format +to use for footnote numeration (1, i, I, a, or A). + + + + + + +table.footnote.number.format +list +11,2,3... +AA,B,C... +aa,b,c... +ii,ii,iii... +II,II,III... + + +table.footnote.number.format +Identifies the format used for footnote numbers in tables + + + + +<xsl:param name="table.footnote.number.format">a</xsl:param> + + + +Description + +The table.footnote.number.format specifies the format +to use for footnote numeration (1, i, I, a, or A) in tables. + + + + + + +footnote.number.symbols + + + +footnote.number.symbols +Special characters to use as footnote markers + + + + +<xsl:param name="footnote.number.symbols"></xsl:param> + + + +Description + +If footnote.number.symbols is not the empty string, +footnotes will use the characters it contains as footnote symbols. For example, +*&#x2020;&#x2021;&#x25CA;&#x2720; will identify +footnotes with *, , , +, and . If there are more footnotes +than symbols, the stylesheets will fall back to numbered footnotes using +footnote.number.format. + +The use of symbols for footnotes depends on the ability of your +processor (or browser) to render the symbols you select. Not all systems are +capable of displaying the full range of Unicode characters. If the quoted characters +in the preceding paragraph are not displayed properly, that's a good indicator +that you may have trouble using those symbols for footnotes. + + + + + + +table.footnote.number.symbols +string + + +table.footnote.number.symbols +Special characters to use a footnote markers in tables + + + + +<xsl:param name="table.footnote.number.symbols"></xsl:param> + + + +Description + +If table.footnote.number.symbols is not the empty string, +table footnotes will use the characters it contains as footnote symbols. For example, +*&#x2020;&#x2021;&#x25CA;&#x2720; will identify +footnotes with *, , , +, and . If there are more footnotes +than symbols, the stylesheets will fall back to numbered footnotes using +table.footnote.number.format. + +The use of symbols for footnotes depends on the ability of your +processor (or browser) to render the symbols you select. Not all systems are +capable of displaying the full range of Unicode characters. If the quoted characters +in the preceding paragraph are not displayed properly, that's a good indicator +that you may have trouble using those symbols for footnotes. + + + + + + +highlight.source +boolean + + +highlight.source +Should the content of programlisting +be syntactically highlighted? + + + + +<xsl:param name="highlight.source" select="0"></xsl:param> + + + +Description + +When this parameter is non-zero, the stylesheets will try to do syntax highlighting of the +content of programlisting elements. You specify the language for each programlisting +by using the language attribute. The highlight.default.language +parameter can be used to specify the language for programlistings without a language +attribute. Syntax highlighting also works for screen and synopsis elements. + +The actual highlighting work is done by the XSLTHL extension module. This is an external Java library that has to be +downloaded separately (see below). + + +In order to use this extension, you must + +add xslthl-2.x.x.jar to your Java classpath. The latest version is available +from the XSLT syntax highlighting project +at SourceForge. + + +use a customization layer in which you import one of the following stylesheet modules: + + + html/highlight.xsl + + + + xhtml/highlight.xsl + + + + xhtml-1_1/highlight.xsl + + + + fo/highlight.xsl + + + + + +let either the xslthl.config Java system property or the +highlight.xslthl.config parameter point to the configuration file for syntax +highlighting (using URL syntax). DocBook XSL comes with a ready-to-use configuration file, +highlighting/xslthl-config.xml. + + + +The extension works with Saxon 6.5.x and Xalan-J. (Saxon 8.5 or later is also supported, but since it is +an XSLT 2.0 processor it is not guaranteed to work with DocBook XSL in all circumstances.) + +The following is an example of a Saxon 6 command adapted for syntax highlighting, to be used on Windows: + + +java -cp c:/Java/saxon.jar;c:/Java/xslthl-2.0.1.jar +-Dxslthl.config=file:///c:/docbook-xsl/highlighting/xslthl-config.xml com.icl.saxon.StyleSheet +-o test.html test.xml myhtml.xsl + + + + + + + +highlight.xslthl.config +uri + + +highlight.xslthl.config +Location of XSLTHL configuration file + + + + +<xsl:param name="highlight.xslthl.config"></xsl:param> + + + +Description + +This location has precedence over the corresponding Java property. + +Please note that usually you have to specify location as URL not +just as a simple path on the local +filesystem. E.g. file:///home/user/xslthl/my-xslthl-config.xml. + + + + + + + + +highlight.default.language +string + + +highlight.default.language +Default language of programlisting + + + + +<xsl:param name="highlight.default.language"></xsl:param> + + + +Description + +This language is used when there is no language attribute on programlisting. + + + + + + +email.delimiters.enabled +boolean + + +email.delimiters.enabled +Generate delimiters around email addresses? + + + + +<xsl:param name="email.delimiters.enabled" select="1"></xsl:param> + + + +Description + +If non-zero, delimiters + +For delimiters, the +stylesheets are currently hard-coded to output angle +brackets. + +are generated around e-mail addresses +(the output of the email element). + + + + + + +exsl.node.set.available +boolean + + +exsl.node.set.available +Is the test function-available('exsl:node-set') true? + + + +<xsl:param name="exsl.node.set.available"> + <xsl:choose> + <xsl:when exsl:foo="" test="function-available('exsl:node-set') or contains(system-property('xsl:vendor'), 'Apache Software Foundation')">1</xsl:when> + <xsl:otherwise>0</xsl:otherwise> + </xsl:choose> +</xsl:param> + + + +Description + +If non-zero, +then the exsl:node-set() function is available to be used in +the stylesheet. +If zero, then the function is not available. +This param automatically detects the presence of +the function and does not normally need to be set manually. + +This param was created to handle a long-standing +bug in the Xalan processor that fails to detect the +function even though it is available. + + + + +Annotations + + +annotation.support +boolean + + +annotation.support +Enable annotations? + + + + +<xsl:param name="annotation.support" select="0"></xsl:param> + + + +Description + +If non-zero, the stylesheets will attempt to support annotation +elements in HTML by including some JavaScript (see +annotation.js). + + + + + + +annotation.js +string + + +annotation.js +URIs identifying JavaScript files with support for annotation popups + + + + + +<xsl:param name="annotation.js"> +<xsl:text>http://docbook.sourceforge.net/release/script/AnchorPosition.js http://docbook.sourceforge.net/release/script/PopupWindow.js</xsl:text></xsl:param> + + + + +Description + +If annotation.support is enabled and the +document contains annotations, then the URIs listed +in this parameter will be included. These JavaScript files are required +for popup annotation support. + + + + + + +annotation.css +string + + +annotation.css +CSS rules for annotations + + + + +<xsl:param name="annotation.css"> +/* ====================================================================== + Annotations +*/ + +div.annotation-list { visibility: hidden; + } + +div.annotation-nocss { position: absolute; + visibility: hidden; + } + +div.annotation-popup { position: absolute; + z-index: 4; + visibility: hidden; + padding: 0px; + margin: 2px; + border-style: solid; + border-width: 1px; + width: 200px; + background-color: white; + } + +div.annotation-title { padding: 1px; + font-weight: bold; + border-bottom-style: solid; + border-bottom-width: 1px; + color: white; + background-color: black; + } + +div.annotation-body { padding: 2px; + } + +div.annotation-body p { margin-top: 0px; + padding-top: 0px; + } + +div.annotation-close { position: absolute; + top: 2px; + right: 2px; + } +</xsl:param> + + + +Description + +If annotation.support is enabled and the +document contains annotations, then the CSS in this +parameter will be included in the document. + + + + + + +annotation.graphic.open +uri + + +annotation.graphic.open +Image for identifying a link that opens an annotation popup + + + + +<xsl:param name="annotation.graphic.open">http://docbook.sourceforge.net/release/images/annot-open.png</xsl:param> + + + +Description + +This image is used inline to identify the location of +annotations. It may be replaced by a user provided graphic. The size should be approximately 10x10 pixels. + + + + + + +annotation.graphic.close +uri + + +annotation.graphic.close +Image for identifying a link that closes an annotation popup + + + + +<xsl:param name="annotation.graphic.close"> +http://docbook.sourceforge.net/release/images/annot-close.png</xsl:param> + + + +Description + +This image is used on popup annotations as the “x” that the +user can click to dismiss the popup. +This image is used on popup annotations as the “x” that the user can +click to dismiss the popup. It may be replaced by a user provided graphic. The size should be approximately 10x10 pixels. + + + + +Graphics + + +img.src.path +string + + +img.src.path +Path to HTML/FO image files + + + +<xsl:param name="img.src.path"></xsl:param> + + +Description + +Add a path prefix to the value of the fileref +attribute of graphic, inlinegraphic, and imagedata elements. The resulting +compound path is used in the output as the value of the src +attribute of img (HTML) or external-graphic (FO). + + + +The path given by img.src.path could be relative to the directory where the HTML/FO +files are created, or it could be an absolute URI. +The default value is empty. +Be sure to include a trailing slash if needed. + + +This prefix is not applied to any filerefs that start +with "/" or contain "//:". + + + + + + + +keep.relative.image.uris +boolean + + +keep.relative.image.uris +Should image URIs be resolved against xml:base? + + + + +<xsl:param name="keep.relative.image.uris" select="1"></xsl:param> + + + + +Description + +If non-zero, relative URIs (in, for example +fileref attributes) will be used in the generated +output. Otherwise, the URIs will be made absolute with respect to the +base URI. + +Note that the stylesheets calculate (and use) the absolute form +for some purposes, this only applies to the resulting output. + + + + + + +graphic.default.extension +string + + +graphic.default.extension +Default extension for graphic filenames + + + +<xsl:param name="graphic.default.extension"></xsl:param> + + +Description + +If a graphic or mediaobject +includes a reference to a filename that does not include an extension, +and the format attribute is +unspecified, the default extension will be used. + + + + + + + +default.image.width +length + + +default.image.width +The default width of images + + + + +<xsl:param name="default.image.width"></xsl:param> + + + +Description + +If specified, this value will be used for the +width attribute on images that do not specify any +viewport dimensions. + + + + + + +nominal.image.width +length + + +nominal.image.width +The nominal image width + + + + +<xsl:param name="nominal.image.width" select="6 * $pixels.per.inch"></xsl:param> + + + +Description + +Graphic widths expressed as a percentage are problematic. In the +following discussion, we speak of width and contentwidth, but +the same issues apply to depth and contentdepth. + +A width of 50% means "half of the available space for the image." +That's fine. But note that in HTML, this is a dynamic property and +the image size will vary if the browser window is resized. + +A contentwidth of 50% means "half of the actual image width". +But what does that mean if the stylesheets cannot assess the image's +actual size? Treating this as a width of 50% is one possibility, but +it produces behavior (dynamic scaling) that seems entirely out of +character with the meaning. + +Instead, the stylesheets define a +nominal.image.width and convert percentages to +actual values based on that nominal size. + + + + + + +nominal.image.depth +length + + +nominal.image.depth +Nominal image depth + + + + +<xsl:param name="nominal.image.depth" select="4 * $pixels.per.inch"></xsl:param> + + + +Description + +See nominal.image.width. + + + + + + +use.embed.for.svg +boolean + + +use.embed.for.svg +Use HTML embed for SVG? + + + + +<xsl:param name="use.embed.for.svg" select="0"></xsl:param> + + + +Description + +If non-zero, an embed element will be created for +SVG figures. An object is always created, +this parameter merely controls whether or not an additional embed +is generated inside the object. + +On the plus side, this may be more portable among browsers and plug-ins. +On the minus side, it isn't valid HTML. + + + + + + +make.graphic.viewport +boolean + + +make.graphic.viewport +Use tables in HTML to make viewports for graphics + + + + +<xsl:param name="make.graphic.viewport" select="1"></xsl:param> + + + +Description + +The HTML img element only supports the notion +of content-area scaling; it doesn't support the distinction between a +content-area and a viewport-area, so we have to make some compromises. + +If make.graphic.viewport is non-zero, a table +will be used to frame the image. This creates an effective viewport-area. + + +Tables and alignment don't work together, so this parameter is ignored +if alignment is specified on an image. + + + + + +preferred.mediaobject.role +string + + +preferred.mediaobject.role +Select which mediaobject to use based on +this value of an object's role attribute. + + + + + +<xsl:param name="preferred.mediaobject.role"></xsl:param> + + + +Description + +A mediaobject may contain several objects such as imageobjects. +If the parameter use.role.for.mediaobject is +non-zero, then the role attribute on +imageobjects and other objects within a +mediaobject container will be used to select which object +will be used. If one of the objects has a role value that matches the +preferred.mediaobject.role parameter, then it +has first priority for selection. If more than one has such a role +value, the first one is used. + + +See the use.role.for.mediaobject parameter +for the sequence of selection. + + + + + +use.role.for.mediaobject +boolean + + +use.role.for.mediaobject +Use role attribute +value for selecting which of several objects within a mediaobject to use. + + + + + +<xsl:param name="use.role.for.mediaobject" select="1"></xsl:param> + + + +Description + +If non-zero, the role attribute on +imageobjects or other objects within a mediaobject container will be used to select which object will be +used. + + +The order of selection when then parameter is non-zero is: + + + + If the stylesheet parameter preferred.mediaobject.role has a value, then the object whose role equals that value is selected. + + +Else if an object's role attribute has a value of +html for HTML processing or +fo for FO output, then the first +of such objects is selected. + + + +Else the first suitable object is selected. + + + +If the value of +use.role.for.mediaobject +is zero, then role attributes are not considered +and the first suitable object +with or without a role value is used. + + + + + + +ignore.image.scaling +boolean + + +ignore.image.scaling +Tell the stylesheets to ignore the author's image scaling attributes + + + + +<xsl:param name="ignore.image.scaling" select="0"></xsl:param> + + + +Description + +If non-zero, the scaling attributes on graphics and media objects are +ignored. + + + + +Chunking + + +chunker.output.cdata-section-elements +string + + +chunker.output.cdata-section-elements +List of elements to escape with CDATA sections + + + +<xsl:param name="chunker.output.cdata-section-elements"></xsl:param> + + +Description +This parameter specifies the list of elements that should be escaped +as CDATA sections by the chunking stylesheet. Not all processors support +specification of this parameter. + + +This parameter is documented here, but the declaration is actually +in the chunker.xsl stylesheet module. + + + + + + +chunker.output.doctype-public +string + + +chunker.output.doctype-public +Public identifer to use in the document type of generated pages + + + +<xsl:param name="chunker.output.doctype-public"></xsl:param> + + +Description +This parameter specifies the public identifier that should be used by +the chunking stylesheet in the document type declaration of chunked pages. +Not all processors support specification of +this parameter. + + +This parameter is documented here, but the declaration is actually +in the chunker.xsl stylesheet module. + + + + + + +chunker.output.doctype-system +uri + + +chunker.output.doctype-system +System identifier to use for the document type in generated pages + + + +<xsl:param name="chunker.output.doctype-system"></xsl:param> + + +Description +This parameter specifies the system identifier that should be used by +the chunking stylesheet in the document type declaration of chunked pages. +Not all processors support specification of +this parameter. + + +This parameter is documented here, but the declaration is actually +in the chunker.xsl stylesheet module. + + + + + + +chunker.output.encoding +string + + +chunker.output.encoding +Encoding used in generated pages + + + +<xsl:param name="chunker.output.encoding">ISO-8859-1</xsl:param> + + +Description +This parameter specifies the encoding to be used in files +generated by the chunking stylesheet. Not all processors support +specification of this parameter. + +This parameter used to be named default.encoding. + +This parameter is documented here, but the declaration is actually +in the chunker.xsl stylesheet module. + + + + + + +chunker.output.indent +string + + +chunker.output.indent +Specification of indentation on generated pages + + + +<xsl:param name="chunker.output.indent">no</xsl:param> + + +Description +This parameter specifies the value of the indent +specification for generated pages. Not all processors support +specification of this parameter. + + +This parameter is documented here, but the declaration is actually +in the chunker.xsl stylesheet module. + + + + + + +chunker.output.media-type +string + + +chunker.output.media-type +Media type to use in generated pages + + + +<xsl:param name="chunker.output.media-type"></xsl:param> + + +Description +This parameter specifies the media type that should be used by +the chunking stylesheet. Not all processors support specification of +this parameter. + +This parameter specifies the media type that should be used by the +chunking stylesheet. This should be one from those defined in +[RFC2045] and + [RFC2046] + +This parameter is documented here, but the declaration is actually +in the chunker.xsl stylesheet module. +It must be one from html, xml or text + + + + + + +chunker.output.method +list +html +xml + + +chunker.output.method +Method used in generated pages + + + +<xsl:param name="chunker.output.method">html</xsl:param> + + +Description +This parameter specifies the output method to be used in files +generated by the chunking stylesheet. + +This parameter used to be named output.method. + +This parameter is documented here, but the declaration is actually +in the chunker.xsl stylesheet module. + + + + + + +chunker.output.omit-xml-declaration +string + + +chunker.output.omit-xml-declaration +Omit-xml-declaration for generated pages + + + +<xsl:param name="chunker.output.omit-xml-declaration">no</xsl:param> + + +Description +This parameter specifies the value of the omit-xml-declaration +specification for generated pages. Not all processors support +specification of this parameter. + + +This parameter is documented here, but the declaration is actually +in the chunker.xsl stylesheet module. + + + + + + +chunker.output.standalone +string + + +chunker.output.standalone +Standalone declaration for generated pages + + + +<xsl:param name="chunker.output.standalone">no</xsl:param> + + +Description +This parameter specifies the value of the standalone + specification for generated pages. It must be either + yes or no. Not all + processors support specification of this parameter. + + +This parameter is documented here, but the declaration is actually +in the chunker.xsl stylesheet module. + + + + + + +saxon.character.representation +string + + +saxon.character.representation +Saxon character representation used in generated HTML pages + + + + <xsl:param name="saxon.character.representation" select="'entity;decimal'"></xsl:param> + + +Description + +This parameter has effect only when Saxon 6 is used (version 6.4.2 or later). +It sets the character representation in files generated by the chunking stylesheets. +If you want to suppress entity references for characters with direct representations in +chunker.output.encoding, set the parameter value to native. + + + For more information, see Saxon output character representation. + + +This parameter is documented here, but the declaration is actually +in the chunker.xsl stylesheet module. + + + + + + + + +html.ext +string + + +html.ext +Identifies the extension of generated HTML files + + + + +<xsl:param name="html.ext">.html</xsl:param> + + + +Description + +The extension identified by html.ext will +be used as the filename extension for chunks created by this +stylesheet. + + + + + + +use.id.as.filename +boolean + + +use.id.as.filename +Use ID value of chunk elements as the filename? + + + + +<xsl:param name="use.id.as.filename" select="0"></xsl:param> + + + +Description + +If use.id.as.filename +is non-zero, the filename of chunk elements that have IDs will be +derived from the ID value. + + + + + + + +html.extra.head.links +boolean + + +html.extra.head.links +Toggle extra HTML head link information + + + + +<xsl:param name="html.extra.head.links" select="0"></xsl:param> + + + +Description + +If non-zero, extra link elements will be +generated in the head of chunked HTML files. These +extra links point to chapters, appendixes, sections, etc. as supported +by the Site Navigation Bar in Mozilla 1.0 (as of CR1, at least). + + + + + + + +root.filename +uri + + +root.filename +Identifies the name of the root HTML file when chunking + + + + +<xsl:param name="root.filename">index</xsl:param> + + + +Description + +The root.filename is the base filename for +the chunk created for the root of each document processed. + + + + + + + +base.dir +uri + + +base.dir +The base directory of chunks + + + + +<xsl:param name="base.dir"></xsl:param> + + + +Description + +If specified, the base.dir identifies +the output directory for chunks. (If not specified, the output directory +is system dependent.) + + + + + + + generate.manifest + boolean + + + generate.manifest + Generate a manifest file? + + + + <xsl:param name="generate.manifest" select="0"></xsl:param> + + + Description + + If non-zero, a list of HTML files generated by the + stylesheet transformation is written to the file named by + the manifest parameter. + + + + + + + manifest + string + + + manifest + Name of manifest file + + + + + <xsl:param name="manifest">HTML.manifest</xsl:param> + + + + Description + + The name of the file to which a manifest is written (if the + value of the generate.manifest parameter + is non-zero). + + + + + + +manifest.in.base.dir +boolean + + +manifest.in.base.dir +Should the manifest file be written into base.dir? + + + + +<xsl:param name="manifest.in.base.dir" select="0"></xsl:param> + + + +Description + +If non-zero, the manifest file as well as project files for HTML Help and +Eclipse Help are written into base.dir instead +of the current directory. + + + + + + +chunk.toc +string + + +chunk.toc +An explicit TOC to be used for chunking + + + + +<xsl:param name="chunk.toc"></xsl:param> + + + +Description + +The chunk.toc identifies an explicit TOC that +will be used for chunking. This parameter is only used by the +chunktoc.xsl stylesheet (and customization layers built +from it). + + + + + + +chunk.tocs.and.lots +boolean + + +chunk.tocs.and.lots +Should ToC and LoTs be in separate chunks? + + + + +<xsl:param name="chunk.tocs.and.lots" select="0"></xsl:param> + + + +Description + +If non-zero, ToC and LoT (List of Examples, List of Figures, etc.) +will be put in a separate chunk. At the moment, this chunk is not in the +normal forward/backward navigation list. Instead, a new link is added to the +navigation footer. + +This feature is still somewhat experimental. Feedback welcome. + + + + + + +chunk.separate.lots +boolean + + +chunk.separate.lots +Should each LoT be in its own separate chunk? + + + + +<xsl:param name="chunk.separate.lots" select="0"></xsl:param> + + + +Description + +If non-zero, each of the ToC and LoTs +(List of Examples, List of Figures, etc.) +will be put in its own separate chunk. +The title page includes generated links to each of the separate files. + + +This feature depends on the +chunk.tocs.and.lots +parameter also being non-zero. + + + + + + + +chunk.tocs.and.lots.has.title +boolean + + +chunk.tocs.and.lots.has.title +Should ToC and LoTs in a separate chunks have title? + + + + +<xsl:param name="chunk.tocs.and.lots.has.title" select="1"></xsl:param> + + + +Description + +If non-zero title of document is shown before ToC/LoT in +separate chunk. + + + + + + +chunk.section.depth +integer + + +chunk.section.depth +Depth to which sections should be chunked + + + + +<xsl:param name="chunk.section.depth" select="1"></xsl:param> + + + +Description + +This parameter sets the depth of section chunking. + + + + + + +chunk.first.sections +boolean + + +chunk.first.sections +Chunk the first top-level section? + + + + +<xsl:param name="chunk.first.sections" select="0"></xsl:param> + + + +Description + +If non-zero, a chunk will be created for the first top-level +sect1 or section elements in +each component. Otherwise, that section will be part of the chunk for +its parent. + + + + + + + +chunk.quietly +boolean + + +chunk.quietly +Omit the chunked filename messages. + + + + +<xsl:param name="chunk.quietly" select="0"></xsl:param> + + + +Description + +If zero (the default), the XSL processor emits a message naming +each separate chunk filename as it is being output. +If nonzero, then the messages are suppressed. + + + + + + + +chunk.append +string + + +chunk.append +Specifies content to append to chunked HTML output + + + +<xsl:param name="chunk.append"></xsl:param> + + +Description + +Specifies content to append to the end of HTML files output by +the html/chunk.xsl stylesheet, after the closing +<html> tag. You probably don’t want to set any value +for this parameter; but if you do, the only value it should ever be +set to is a newline character: &#x0a; or +&#10; + + + + + + +navig.graphics +boolean + + +navig.graphics +Use graphics in navigational headers and footers? + + + + +<xsl:param name="navig.graphics" select="0"></xsl:param> + + + +Description + +If non-zero, the navigational headers and footers in chunked +HTML are presented in an alternate style that uses graphical icons for +Next, Previous, Up, and Home. Default graphics are provided in the +distribution. If zero, text is used instead of graphics. + + + + + + + +navig.graphics.extension +string + + +navig.graphics.extension +Extension for navigational graphics + + + + +<xsl:param name="navig.graphics.extension">.gif</xsl:param> + + + +Description + +Sets the filename extension to use on navigational graphics used +in the headers and footers of chunked HTML. + + + + + + +navig.graphics.path +string + + +navig.graphics.path +Path to navigational graphics + + + + +<xsl:param name="navig.graphics.path">images/</xsl:param> + + + +Description + +Sets the path, probably relative to the directory where the HTML +files are created, to the navigational graphics used in the +headers and footers of chunked HTML. + + + + + + + +navig.showtitles +boolean + + +navig.showtitles +Display titles in HTML headers and footers? + + + +<xsl:param name="navig.showtitles">1</xsl:param> + + +Description + +If non-zero, +the headers and footers of chunked HTML +display the titles of the next and previous chunks, +along with the words 'Next' and 'Previous' (or the +equivalent graphical icons if navig.graphics is true). +If false (zero), then only the words 'Next' and 'Previous' +(or the icons) are displayed. + + + + + +Profiling + +The following parameters can be used for attribute-based +profiling of your document. For more information about profiling, see +Profiling (conditional text). + + + +profile.arch +string + + +profile.arch +Target profile for arch +attribute + + + + +<xsl:param name="profile.arch"></xsl:param> + + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + + + + +profile.audience +string + + +profile.audience +Target profile for audience +attribute + + + + +<xsl:param name="profile.audience"></xsl:param> + + + +Description + +Value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + + + + +profile.condition +string + + +profile.condition +Target profile for condition +attribute + + + + +<xsl:param name="profile.condition"></xsl:param> + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + + + + +profile.conformance +string + + +profile.conformance +Target profile for conformance +attribute + + + + +<xsl:param name="profile.conformance"></xsl:param> + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + + + + +profile.lang +string + + +profile.lang +Target profile for lang +attribute + + + + +<xsl:param name="profile.lang"></xsl:param> + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + + + + +profile.os +string + + +profile.os +Target profile for os +attribute + + + + +<xsl:param name="profile.os"></xsl:param> + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + + + + +profile.revision +string + + +profile.revision +Target profile for revision +attribute + + + + +<xsl:param name="profile.revision"></xsl:param> + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + + + + +profile.revisionflag +string + + +profile.revisionflag +Target profile for revisionflag +attribute + + + + +<xsl:param name="profile.revisionflag"></xsl:param> + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + + + + +profile.role +string + + +profile.role +Target profile for role +attribute + + + + +<xsl:param name="profile.role"></xsl:param> + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + +Note that role is often +used for other purposes than profiling. For example it is commonly +used to get emphasize in bold font: + +<emphasis role="bold">very important</emphasis> + +If you are using role for +these purposes do not forget to add values like bold to +value of this parameter. If you forgot you will get document with +small pieces missing which are very hard to track. + +For this reason it is not recommended to use role attribute for profiling. You should +rather use profiling specific attributes like userlevel, os, arch, condition, etc. + + + + + + + +profile.security +string + + +profile.security +Target profile for security +attribute + + + + +<xsl:param name="profile.security"></xsl:param> + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + + + + +profile.status +string + + +profile.status +Target profile for status +attribute + + + + +<xsl:param name="profile.status"></xsl:param> + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + + + + +profile.userlevel +string + + +profile.userlevel +Target profile for userlevel +attribute + + + + +<xsl:param name="profile.userlevel"></xsl:param> + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + + + + +profile.vendor +string + + +profile.vendor +Target profile for vendor +attribute + + + + +<xsl:param name="profile.vendor"></xsl:param> + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + + + + +profile.wordsize +string + + +profile.wordsize +Target profile for wordsize +attribute + + + + +<xsl:param name="profile.wordsize"></xsl:param> + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + + + + +profile.attribute +string + + +profile.attribute +Name of user-specified profiling attribute + + + + +<xsl:param name="profile.attribute"></xsl:param> + + + +Description + +This parameter is used in conjuction with +profile.value. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + + + + +profile.value +string + + +profile.value +Target profile for user-specified attribute + + + + +<xsl:param name="profile.value"></xsl:param> + + + +Description + +When you are using this parameter you must also specify name of +profiling attribute with parameter +profile.attribute. + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + + + + +profile.separator +string + + +profile.separator +Separator character for compound profile values + + + + +<xsl:param name="profile.separator">;</xsl:param> + + + +Description + +Separator character used for compound profile values. See profile.arch + + + + +HTML Help + + +htmlhelp.encoding +string + + +htmlhelp.encoding +Character encoding to use in files for HTML Help compiler. + + + + +<xsl:param name="htmlhelp.encoding">iso-8859-1</xsl:param> + + + +Description + +HTML Help Compiler is not UTF-8 aware, so you should always use an +appropriate single-byte encoding here. Use one from iana, the registered charset values. + + + + + + +htmlhelp.autolabel +boolean + + +htmlhelp.autolabel +Should tree-like ToC use autonumbering feature? + + + + +<xsl:param name="htmlhelp.autolabel" select="0"></xsl:param> + + + +Description + +Set this to non-zero to include chapter and section numbers into ToC +in the left panel. + + + + + + +htmlhelp.chm +string + + +htmlhelp.chm +Filename of output HTML Help file. + + + + +<xsl:param name="htmlhelp.chm">htmlhelp.chm</xsl:param> + + + +Description + +Set the name of resulting CHM file + + + + + + +htmlhelp.default.topic +string + + +htmlhelp.default.topic +Name of file with default topic + + + + +<xsl:param name="htmlhelp.default.topic"></xsl:param> + + + +Description + +Normally first chunk of document is displayed when you open HTML +Help file. If you want to display another topic, simply set its +filename by this parameter. + +This is useful especially if you don't generate ToC in front of +your document and you also hide root element in ToC. E.g.: + +<xsl:param name="generate.book.toc" select="0"/> +<xsl:param name="htmlhelp.hhc.show.root" select="0"/> +<xsl:param name="htmlhelp.default.topic">pr01.html</xsl:param> + + + + + + + +htmlhelp.display.progress +boolean + + +htmlhelp.display.progress +Display compile progress? + + + + +<xsl:param name="htmlhelp.display.progress" select="1"></xsl:param> + + + +Description + +Set to non-zero to to display compile progress + + + + + + + +htmlhelp.hhp +string + + +htmlhelp.hhp +Filename of project file. + + + + +<xsl:param name="htmlhelp.hhp">htmlhelp.hhp</xsl:param> + + + +Description + +Change this parameter if you want different name of project +file than htmlhelp.hhp. + + + + + + +htmlhelp.hhc +string + + +htmlhelp.hhc +Filename of TOC file. + + + + +<xsl:param name="htmlhelp.hhc">toc.hhc</xsl:param> + + + +Description + +Set the name of the TOC file. The default is toc.hhc. + + + + + + +htmlhelp.hhk +string + + +htmlhelp.hhk +Filename of index file. + + + + +<xsl:param name="htmlhelp.hhk">index.hhk</xsl:param> + + + +Description + +set the name of the index file. The default is index.hhk. + + + + + + +htmlhelp.hhp.tail +string + + +htmlhelp.hhp.tail +Additional content for project file. + + + + +<xsl:param name="htmlhelp.hhp.tail"></xsl:param> + + + +Description + +If you want to include some additional parameters into project file, +store appropriate part of project file into this parameter. + + + + + + +htmlhelp.hhp.window +string + + +htmlhelp.hhp.window +Name of default window. + + + + +<xsl:param name="htmlhelp.hhp.window">Main</xsl:param> + + + +Description + +Name of default window. If empty no [WINDOWS] section will be +added to project file. + + + + + + +htmlhelp.hhp.windows +string + + +htmlhelp.hhp.windows +Definition of additional windows + + + + +<xsl:param name="htmlhelp.hhp.windows"></xsl:param> + + + +Description + +Content of this parameter is placed at the end of [WINDOWS] +section of project file. You can use it for defining your own +addtional windows. + + + + + + +htmlhelp.enhanced.decompilation +boolean + + +htmlhelp.enhanced.decompilation +Allow enhanced decompilation of CHM? + + + + +<xsl:param name="htmlhelp.enhanced.decompilation" select="0"></xsl:param> + + + +Description + +When non-zero this parameter enables enhanced decompilation of CHM. + + + + + + +htmlhelp.enumerate.images +boolean + + +htmlhelp.enumerate.images +Should the paths to all used images be added to the project file? + + + + +<xsl:param name="htmlhelp.enumerate.images" select="0"></xsl:param> + + + +Description + +Set to non-zero if you insert images into your documents as +external binary entities or if you are using absolute image paths. + + + + + + +htmlhelp.force.map.and.alias +boolean + + +htmlhelp.force.map.and.alias +Should [MAP] and [ALIAS] sections be added to the project file unconditionally? + + + +<xsl:param name="htmlhelp.force.map.and.alias" select="0"></xsl:param> + + +Description + Set to non-zero if you have your own + alias.h and context.h + files and you want to include references to them in the project + file. + + + + + +htmlhelp.map.file +string + + +htmlhelp.map.file +Filename of map file. + + + +<xsl:param name="htmlhelp.map.file">context.h</xsl:param> + + +Description +Set the name of map file. The default is + context.h. (used for context-sensitive + help). + + + + + +htmlhelp.alias.file +string + + +htmlhelp.alias.file +Filename of alias file. + + + + +<xsl:param name="htmlhelp.alias.file">alias.h</xsl:param> + + + +Description + +Specifies the filename of the alias file (used for context-sensitive help). + + + + + + +htmlhelp.hhc.section.depth +integer + + +htmlhelp.hhc.section.depth +Depth of TOC for sections in a left pane. + + + + +<xsl:param name="htmlhelp.hhc.section.depth">5</xsl:param> + + + +Description + +Set the section depth in the left pane of HTML Help viewer. + + + + + + +htmlhelp.hhc.show.root +boolean + + +htmlhelp.hhc.show.root +Should there be an entry for the root element in the ToC? + + + + +<xsl:param name="htmlhelp.hhc.show.root" select="1"></xsl:param> + + + +Description + +If set to zero, there will be no entry for the root element in the +ToC. This is useful when you want to provide the user with an expanded +ToC as a default. + + + + + + +htmlhelp.hhc.folders.instead.books +boolean + + +htmlhelp.hhc.folders.instead.books +Use folder icons in ToC (instead of book icons)? + + + + +<xsl:param name="htmlhelp.hhc.folders.instead.books" select="1"></xsl:param> + + + +Description + +Set to non-zero for folder-like icons or zero for book-like icons in the ToC. +If you want to use folder-like icons, you must switch off the binary ToC using +htmlhelp.hhc.binary. + + + + + + + + +htmlhelp.hhc.binary +boolean + + +htmlhelp.hhc.binary +Generate binary ToC? + + + + +<xsl:param name="htmlhelp.hhc.binary" select="1"></xsl:param> + + + +Description + +Set to non-zero to generate a binary TOC. You must create a binary TOC +if you want to add Prev/Next buttons to toolbar (which is default +behaviour). Files with binary TOC can't be merged. + + + + + + +htmlhelp.hhc.width +integer + + +htmlhelp.hhc.width +Width of navigation pane + + + + +<xsl:param name="htmlhelp.hhc.width"></xsl:param> + + + +Description + +This parameter specifies the width of the navigation pane (containing TOC and +other navigation tabs) in pixels. + + + + + + +htmlhelp.title +string + + +htmlhelp.title +Title of HTML Help + + + + +<xsl:param name="htmlhelp.title"></xsl:param> + + + +Description + +Content of this parameter will be used as a title for generated +HTML Help. If empty, title will be automatically taken from document. + + + + + + +htmlhelp.show.menu +boolean + + +htmlhelp.show.menu +Should the menu bar be shown? + + + + +<xsl:param name="htmlhelp.show.menu" select="0"></xsl:param> + + + +Description + +Set to non-zero to have an application menu bar in your HTML Help window. + + + + + + + +htmlhelp.show.toolbar.text +boolean + + +htmlhelp.show.toolbar.text +Show text under toolbar buttons? + + + + +<xsl:param name="htmlhelp.show.toolbar.text" select="1"></xsl:param> + + + +Description + +Set to non-zero to display texts under toolbar buttons, zero to switch +off displays. + + + + + + +htmlhelp.show.advanced.search +boolean + + +htmlhelp.show.advanced.search +Should advanced search features be available? + + + + +<xsl:param name="htmlhelp.show.advanced.search" select="0"></xsl:param> + + + +Description + +If you want advanced search features in your help, turn this +parameter to 1. + + + + + + +htmlhelp.show.favorities +boolean + + +htmlhelp.show.favorities +Should the Favorites tab be shown? + + + + +<xsl:param name="htmlhelp.show.favorities" select="0"></xsl:param> + + + +Description + +Set to non-zero to include a Favorites tab in the navigation pane +of the help window. + + + + + + +htmlhelp.button.hideshow +boolean + + +htmlhelp.button.hideshow +Should the Hide/Show button be shown? + + + + +<xsl:param name="htmlhelp.button.hideshow" select="1"></xsl:param> + + + +Description + +Set to non-zero to include the Hide/Show button shown on toolbar + + + + + + +htmlhelp.button.back +boolean + + +htmlhelp.button.back +Should the Back button be shown? + + + + +<xsl:param name="htmlhelp.button.back" select="1"></xsl:param> + + + +Description + +Set to non-zero to include the Hide/Show button shown on toolbar + + + + + + +htmlhelp.button.forward +boolean + + +htmlhelp.button.forward +Should the Forward button be shown? + + + + +<xsl:param name="htmlhelp.button.forward" select="0"></xsl:param> + + + +Description + +Set to non-zero to include the Forward button on the toolbar. + + + + + + +htmlhelp.button.stop +boolean + + +htmlhelp.button.stop +Should the Stop button be shown? + + + + +<xsl:param name="htmlhelp.button.stop" select="0"></xsl:param> + + + +Description + +If you want Stop button shown on toolbar, turn this +parameter to 1. + + + + + + +htmlhelp.button.refresh +boolean + + +htmlhelp.button.refresh +Should the Refresh button be shown? + + + + +<xsl:param name="htmlhelp.button.refresh" select="0"></xsl:param> + + + +Description + +Set to non-zero to include the Stop button on the toolbar. + + + + + + +htmlhelp.button.home +boolean + + +htmlhelp.button.home +Should the Home button be shown? + + + + +<xsl:param name="htmlhelp.button.home" select="0"></xsl:param> + + + +Description + +Set to non-zero to include the Home button on the toolbar. + + + + + + +htmlhelp.button.home.url +string + + +htmlhelp.button.home.url +URL address of page accessible by Home button + + + + +<xsl:param name="htmlhelp.button.home.url"></xsl:param> + + + +Description + +URL address of page accessible by Home button. + + + + + + +htmlhelp.button.options +boolean + + +htmlhelp.button.options +Should the Options button be shown? + + + + +<xsl:param name="htmlhelp.button.options" select="1"></xsl:param> + + + +Description + +If you want Options button shown on toolbar, turn this +parameter to 1. + + + + + + +htmlhelp.button.print +boolean + + +htmlhelp.button.print +Should the Print button be shown? + + + + +<xsl:param name="htmlhelp.button.print" select="1"></xsl:param> + + + +Description + +Set to non-zero to include the Print button on the toolbar. + + + + + + + +htmlhelp.button.locate +boolean + + +htmlhelp.button.locate +Should the Locate button be shown? + + + + +<xsl:param name="htmlhelp.button.locate" select="0"></xsl:param> + + + +Description + +If you want Locate button shown on toolbar, turn this +parameter to 1. + + + + + + +htmlhelp.button.jump1 +boolean + + +htmlhelp.button.jump1 +Should the Jump1 button be shown? + + + +<xsl:param name="htmlhelp.button.jump1" select="0"></xsl:param> + + +Description + Set to non-zero to include the Jump1 button on the toolbar. + + + + + +htmlhelp.button.jump1.url +string + + +htmlhelp.button.jump1.url +URL address of page accessible by Jump1 button + + + + +<xsl:param name="htmlhelp.button.jump1.url"></xsl:param> + + + +Description + +URL address of page accessible by Jump1 button. + + + + + + +htmlhelp.button.jump1.title +string + + +htmlhelp.button.jump1.title +Title of Jump1 button + + + + +<xsl:param name="htmlhelp.button.jump1.title">User1</xsl:param> + + + +Description + +Title of Jump1 button. + + + + + + +htmlhelp.button.jump2 +boolean + + +htmlhelp.button.jump2 +Should the Jump2 button be shown? + + + + +<xsl:param name="htmlhelp.button.jump2" select="0"></xsl:param> + + + +Description + +Set to non-zero to include the Jump2 button on the toolbar. + + + + + + +htmlhelp.button.jump2.url +string + + +htmlhelp.button.jump2.url +URL address of page accessible by Jump2 button + + + + +<xsl:param name="htmlhelp.button.jump2.url"></xsl:param> + + + +Description + +URL address of page accessible by Jump2 button. + + + + + + +htmlhelp.button.jump2.title +string + + +htmlhelp.button.jump2.title +Title of Jump2 button + + + + +<xsl:param name="htmlhelp.button.jump2.title">User2</xsl:param> + + + +Description + +Title of Jump2 button. + + + + + + +htmlhelp.button.next +boolean + + +htmlhelp.button.next +Should the Next button be shown? + + + + +<xsl:param name="htmlhelp.button.next" select="1"></xsl:param> + + + +Description + +Set to non-zero to include the Next button on the toolbar. + + + + + + +htmlhelp.button.prev +boolean + + +htmlhelp.button.prev +Should the Prev button be shown? + + + + +<xsl:param name="htmlhelp.button.prev" select="1"></xsl:param> + + + +Description + +Set to non-zero to include the Prev button on the toolbar. + + + + + + + +htmlhelp.button.zoom +boolean + + +htmlhelp.button.zoom +Should the Zoom button be shown? + + + + +<xsl:param name="htmlhelp.button.zoom" select="0"></xsl:param> + + + +Description + +Set to non-zero to include the Zoom button on the toolbar. + + + + + + + +htmlhelp.remember.window.position +boolean + + +htmlhelp.remember.window.position +Remember help window position? + + + + +<xsl:param name="htmlhelp.remember.window.position" select="0"></xsl:param> + + + +Description + +Set to non-zero to remember help window position between starts. + + + + + + +htmlhelp.window.geometry +string + + +htmlhelp.window.geometry +Set initial geometry of help window + + + + +<xsl:param name="htmlhelp.window.geometry"></xsl:param> + + + +Description + +This parameter specifies initial position of help +window. E.g. + +<xsl:param name="htmlhelp.window.geometry">[160,64,992,704]</xsl:param> + + + + + + +htmlhelp.use.hhk +boolean + + +htmlhelp.use.hhk +Should the index be built using the HHK file? + + + + +<xsl:param name="htmlhelp.use.hhk" select="0"></xsl:param> + + + +Description + +If non-zero, the index is created using the HHK file (instead of using object +elements in the HTML files). For more information, see Generating an index. + + + + + +htmlhelp.only +boolean + + +htmlhelp.only +Should only project files be generated? + + + + +<xsl:param name="htmlhelp.only" select="0"></xsl:param> + + + +Description + + +Set to non-zero if you want to play with various HTML Help parameters +and you don't need to regenerate all HTML files. This setting will not +process whole document, only project files (hhp, hhc, hhk,...) will be +generated. + + + + + +Eclipse Help Platform + + +eclipse.autolabel +boolean + + +eclipse.autolabel +Should tree-like ToC use autonumbering feature? + + + + +<xsl:param name="eclipse.autolabel" select="0"></xsl:param> + + + +Description + +If you want to include chapter and section numbers into ToC in +the left panel, set this parameter to 1. + + + + + + +eclipse.plugin.name +string + + +eclipse.plugin.name +Eclipse Help plugin name + + + + +<xsl:param name="eclipse.plugin.name">DocBook Online Help Sample</xsl:param> + + + +Description + +Eclipse Help plugin name. + + + + + + +eclipse.plugin.id +string + + +eclipse.plugin.id +Eclipse Help plugin id + + + + +<xsl:param name="eclipse.plugin.id">com.example.help</xsl:param> + + + +Description + +Eclipse Help plugin id. You should change this id to something +unique for each help. + + + + + + +eclipse.plugin.provider +string + + +eclipse.plugin.provider +Eclipse Help plugin provider name + + + + +<xsl:param name="eclipse.plugin.provider">Example provider</xsl:param> + + + +Description + +Eclipse Help plugin provider name. + + + + +JavaHelp + + +javahelp.encoding +string + + +javahelp.encoding +Character encoding to use in control files for JavaHelp. + + + + +<xsl:param name="javahelp.encoding">iso-8859-1</xsl:param> + + + +Description + +JavaHelp crashes on some characters when written as character +references. In that case you can use this parameter to select an appropriate encoding. + + + + + + + +Localization + + +l10n.gentext.language +string + + +l10n.gentext.language +Sets the gentext language + + + + +<xsl:param name="l10n.gentext.language"></xsl:param> + + + +Description + +If this parameter is set to any value other than the empty string, its +value will be used as the value for the language when generating text. Setting +l10n.gentext.language overrides any settings within the +document being formatted. + +It's much more likely that you might want to set the +l10n.gentext.default.language parameter. + + + + + + + l10n.gentext.default.language + string + + + l10n.gentext.default.language + Sets the default language for generated text + + + + +<xsl:param name="l10n.gentext.default.language">en</xsl:param> + + + +Description + +The value of the l10n.gentext.default.language +parameter is used as the language for generated text if no setting is provided +in the source document. + + + + + + +l10n.gentext.use.xref.language +boolean + + +l10n.gentext.use.xref.language +Use the language of target when generating cross-reference text? + + + + +<xsl:param name="l10n.gentext.use.xref.language" select="0"></xsl:param> + + + +Description + +If non-zero, the language of the target will be used when +generating cross reference text. Usually, the current +language is used when generating text (that is, the language of the +element that contains the cross-reference element). But setting this parameter +allows the language of the element pointed to to control +the generated text. + +Consider the following example: + + +<para lang="en">See also <xref linkend="chap3"/>.</para> + + + +Suppose that Chapter 3 happens to be written in German. +If l10n.gentext.use.xref.language is non-zero, the +resulting text will be something like this: + +
    +See also Kapital 3. +
    + +Where the more traditional rendering would be: + +
    +See also Chapter 3. +
    + +
    +
    + + + +l10n.lang.value.rfc.compliant +boolean + + +l10n.lang.value.rfc.compliant +Make value of lang attribute RFC compliant? + + + + +<xsl:param name="l10n.lang.value.rfc.compliant" select="1"></xsl:param> + + + +Description + +If non-zero, ensure that the values for all lang attributes in HTML output are RFC +compliantSection 8.1.1, Language Codes, in the HTML 4.0 Recommendation states that: + +
    [RFC1766] defines and explains the language codes +that must be used in HTML documents. +Briefly, language codes consist of a primary code and a possibly +empty series of subcodes: + +language-code = primary-code ( "-" subcode )* + +And in RFC 1766, Tags for the Identification +of Languages, the EBNF for "language tag" is given as: + +Language-Tag = Primary-tag *( "-" Subtag ) +Primary-tag = 1*8ALPHA +Subtag = 1*8ALPHA + +
    +
    . + +by taking any underscore characters in any lang values found in source documents, and +replacing them with hyphen characters in output HTML files. For +example, zh_CN in a source document becomes +zh-CN in the HTML output form that source. + + +This parameter does not cause any case change in lang values, because RFC 1766 +explicitly states that all "language tags" (as it calls them) "are +to be treated as case insensitive". + +
    + +
    +
    + + + +writing.mode +string + + +writing.mode +Direction of text flow based on locale + + + + +<xsl:param name="writing.mode"> + <xsl:call-template name="gentext"> + <xsl:with-param name="key">writing-mode</xsl:with-param> + <xsl:with-param name="lang"> + <xsl:call-template name="l10n.language"> + <xsl:with-param name="target" select="/*[1]"></xsl:with-param> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> +</xsl:param> + + + +Description + +Sets direction of text flow and text alignment based on locale. +The value is normally taken from the gentext file for the +lang attribute of the document's root element, using the +key name 'writing-mode' to look it up in the gentext file. +But the param can also be +set on the command line to override that gentext value. + +Accepted values are: + + + lr-tb + + Left-to-right text flow in each line, lines stack top to bottom. + + + + rl-tb + + Right-to-left text flow in each line, lines stack top to bottom. + + + + tb-rl + + Top-to-bottom text flow in each vertical line, lines stack right to left. + Supported by only a few XSL-FO processors. Not supported in HTML output. + + + + lr + + Shorthand for lr-tb. + + + + rl + + Shorthand for rl-tb. + + + + tb + + Shorthand for tb-rl. + + + + + + + + +
    +
    + + + + FO Parameter Reference + + + This is reference documentation for all user-configurable + parameters in the DocBook XSL FO stylesheets (for generating + XSL-FO output destined for final print/PDF output). + + + Admonitions + + +admon.graphics +boolean + + +admon.graphics +Use graphics in admonitions? + + + + +<xsl:param name="admon.graphics" select="0"></xsl:param> + + + +Description + +If true (non-zero), admonitions are presented in an alternate style that uses +a graphic. Default graphics are provided in the distribution. + + + + + + + +admon.graphics.extension +string + + +admon.graphics.extension +Filename extension for admonition graphics + + + + +<xsl:param name="admon.graphics.extension">.png</xsl:param> + + + +Description + +Sets the filename extension to use on admonition graphics. + + + + + + +admon.graphics.path +string + + +admon.graphics.path +Path to admonition graphics + + + +<xsl:param name="admon.graphics.path">images/</xsl:param> + + +Description + +Sets the path to the directory containing the admonition graphics +(caution.png, important.png etc). This location is normally relative +to the output html directory. See base.dir + + + + + + +admon.textlabel +boolean + + +admon.textlabel +Use text label in admonitions? + + + + +<xsl:param name="admon.textlabel" select="1"></xsl:param> + + + +Description + +If true (non-zero), admonitions are presented with a generated +text label such as Note or Warning in the appropriate language. +If zero, such labels are turned off, but any title child +of the admonition element are still output. +The default value is 1. + + + + + + + + + admonition.title.properties + attribute set + + +admonition.title.properties +To set the style for admonitions titles. + + + + +<xsl:attribute-set name="admonition.title.properties"> + <xsl:attribute name="font-size">14pt</xsl:attribute> + <xsl:attribute name="font-weight">bold</xsl:attribute> + <xsl:attribute name="hyphenate">false</xsl:attribute> + <xsl:attribute name="keep-with-next.within-column">always</xsl:attribute> +</xsl:attribute-set> + + +Description +How do you want admonitions titles styled? +Set the font-size, weight etc to the style required. + + + + + + + admonition.properties + attribute set + + +admonition.properties +To set the style for admonitions. + + + +<xsl:attribute-set name="admonition.properties"></xsl:attribute-set> + + +Description +How do you want admonitions styled? +Set the font-size, weight, etc. to the style required + + + + + + +graphical.admonition.properties +attribute set + + +graphical.admonition.properties +To add properties to the outer block of a graphical admonition. + + + +<xsl:attribute-set name="graphical.admonition.properties"> + <xsl:attribute name="space-before.optimum">1em</xsl:attribute> + <xsl:attribute name="space-before.minimum">0.8em</xsl:attribute> + <xsl:attribute name="space-before.maximum">1.2em</xsl:attribute> + <xsl:attribute name="space-after.optimum">1em</xsl:attribute> + <xsl:attribute name="space-after.minimum">0.8em</xsl:attribute> + <xsl:attribute name="space-after.maximum">1.2em</xsl:attribute> +</xsl:attribute-set> + + +Description +These properties are added to the outer block containing the +entire graphical admonition, including its title. +It is used when the parameter +admon.graphics is set to nonzero. +Use this attribute-set to set the space above and below, +and any indent for the whole admonition. + +In addition to these properties, a graphical admonition +also applies the admonition.title.properties +attribute-set to the title, and applies the +admonition.properties attribute-set +to the rest of the content. + + + + + + +nongraphical.admonition.properties +attribute set + + +nongraphical.admonition.properties +To add properties to the outer block of a nongraphical admonition. + + + +<xsl:attribute-set name="nongraphical.admonition.properties"> + <xsl:attribute name="space-before.minimum">0.8em</xsl:attribute> + <xsl:attribute name="space-before.optimum">1em</xsl:attribute> + <xsl:attribute name="space-before.maximum">1.2em</xsl:attribute> + <xsl:attribute name="margin-{$direction.align.start}">0.25in</xsl:attribute> + <xsl:attribute name="margin-{$direction.align.end}">0.25in</xsl:attribute> +</xsl:attribute-set> + + +Description +These properties are added to the outer block containing the +entire nongraphical admonition, including its title. +It is used when the parameter +admon.graphics is set to zero. +Use this attribute-set to set the space above and below, +and any indent for the whole admonition. + +In addition to these properties, a nongraphical admonition +also applies the admonition.title.properties +attribute-set to the title, and the +admonition.properties attribute-set +to the rest of the content. + + + + +Callouts + + +callout.defaultcolumn +integer + + +callout.defaultcolumn +Indicates what column callouts appear in by default + + + + +<xsl:param name="callout.defaultcolumn">60</xsl:param> + + + +Description + +If a callout does not identify a column (for example, if it uses +the linerange unit), +it will appear in the default column. + + + + + + + +callout.graphics +boolean + + +callout.graphics +Use graphics for callouts? + + + + +<xsl:param name="callout.graphics" select="1"></xsl:param> + + + +Description + +If non-zero, callouts are presented with graphics (e.g., reverse-video +circled numbers instead of "(1)", "(2)", etc.). +Default graphics are provided in the distribution. + + + + + + + +callout.graphics.extension +string + + +callout.graphics.extension +Filename extension for callout graphics + + + + + +<xsl:param name="callout.graphics.extension">.svg</xsl:param> + + + +Description +Sets the filename extension to use on callout graphics. + + +The Docbook XSL distribution provides callout graphics in the following formats: +SVG (extension: .svg) +PNG (extension: .png) +GIF (extension: .gif) + + + + + + +callout.graphics.number.limit +integer + + +callout.graphics.number.limit +Number of the largest callout graphic + + + + + +<xsl:param name="callout.graphics.number.limit">30</xsl:param> + + + +Description + +If callout.graphics is non-zero, graphics +are used to represent callout numbers instead of plain text. The value +of callout.graphics.number.limit is the largest +number for which a graphic exists. If the callout number exceeds this +limit, the default presentation "(plain text instead of a graphic)" +will be used. + + + + + + + +callout.graphics.path +string + + +callout.graphics.path +Path to callout graphics + + + + +<xsl:param name="callout.graphics.path">images/callouts/</xsl:param> + + + +Description + +Sets the path to the directory holding the callout graphics. his +location is normally relative to the output html directory. see +base.dir. Always terminate the directory with / since the graphic file +is appended to this string, hence needs the separator. + + + + + + + +callout.icon.size +length + + +callout.icon.size +Specifies the size of callout marker icons + + + + +<xsl:param name="callout.icon.size">7pt</xsl:param> + + + +Description + +Specifies the size of the callout marker icons. +The default size is 7 points. + + + + + + +callout.unicode +boolean + + +callout.unicode +Use Unicode characters rather than images for callouts. + + + +<xsl:param name="callout.unicode" select="0"></xsl:param> + + +Description + +The stylesheets can use either an image of the numbers one to ten, or the single Unicode character which represents the numeral, in white on a black background. Use this to select the Unicode character option. + + + + + + + +callout.unicode.font +string + + +callout.unicode.font +Specify a font for Unicode glyphs + + + + +<xsl:param name="callout.unicode.font">ZapfDingbats</xsl:param> + + + +Description + +The name of the font to specify around Unicode callout glyphs. +If set to the empty string, no font change will occur. + + + + + + + +callout.unicode.number.limit +integer + + +callout.unicode.number.limit +Number of the largest unicode callout character + + + + +<xsl:param name="callout.unicode.number.limit">10</xsl:param> + + + +Description + +If callout.unicode +is non-zero, unicode characters are used to represent +callout numbers. The value of +callout.unicode.number.limit +is +the largest number for which a unicode character exists. If the callout number +exceeds this limit, the default presentation "(nnn)" will always +be used. + + + + + + + +callout.unicode.start.character +integer + + +callout.unicode.start.character +First Unicode character to use, decimal value. + + + + +<xsl:param name="callout.unicode.start.character">10102</xsl:param> + + + +Description + +If callout.graphics is zero and callout.unicode +is non-zero, unicode characters are used to represent +callout numbers. The value of +callout.unicode.start.character +is the decimal unicode value used for callout number one. Currently, +only 10102 is supported in the stylesheets for this parameter. + + + + + + + +callouts.extension +boolean + + +callouts.extension +Enable the callout extension + + + + +<xsl:param name="callouts.extension" select="1"></xsl:param> + + + +Description + +The callouts extension processes areaset +elements in programlistingco and other text-based +callout elements. + + + + + +ToC/LoT/Index Generation + + +autotoc.label.separator +string + + +autotoc.label.separator +Separator between labels and titles in the ToC + + + + +<xsl:param name="autotoc.label.separator">. </xsl:param> + + + +Description + +String used to separate labels and titles in a table of contents. + + + + + + +process.empty.source.toc +boolean + + +process.empty.source.toc +Generate automated TOC if toc element occurs in a source document? + + + +<xsl:param name="process.empty.source.toc" select="0"></xsl:param> + + +Description + +Specifies that if an empty toc element is found in a +source document, an automated TOC is generated at this point in the +document. + + Depending on what the value of the + generate.toc parameter is, setting this + parameter to 1 could result in generation of + duplicate automated TOCs. So the + process.empty.source.toc is primarily useful + as an "override": by placing an empty toc in your + document and setting this parameter to 1, you can + force a TOC to be generated even if generate.toc + says not to. + + + + + + + + +process.source.toc +boolean + + +process.source.toc +Process a non-empty toc element if it occurs in a source document? + + + +<xsl:param name="process.source.toc" select="0"></xsl:param> + + +Description + +Specifies that the contents of a non-empty "hard-coded" +toc element in a source document are processed to +generate a TOC in output. + + This parameter has no effect on automated generation of + TOCs. An automated TOC may still be generated along with the + "hard-coded" TOC. To suppress automated TOC generation, adjust the + value of the generate.toc paramameter. + + The process.source.toc parameter also has + no effect if the toc element is empty; handling + for empty toc is controlled by the + process.empty.source.toc parameter. + + + + + + + + +generate.toc +table + + +generate.toc +Control generation of ToCs and LoTs + + + + + +<xsl:param name="generate.toc"> +/appendix toc,title +article/appendix nop +/article toc,title +book toc,title,figure,table,example,equation +/chapter toc,title +part toc,title +/preface toc,title +reference toc,title +/sect1 toc +/sect2 toc +/sect3 toc +/sect4 toc +/sect5 toc +/section toc +set toc,title +</xsl:param> + + + +Description + +This parameter has a structured value. It is a table of space-delimited +path/value pairs. Each path identifies some element in the source document +using a restricted subset of XPath (only the implicit child axis, no wildcards, +no predicates). Paths can be either relative or absolute. + +When processing a particular element, the stylesheets consult this table to +determine if a ToC (or LoT(s)) should be generated. + +For example, consider the entry: + +book toc,figure + +This indicates that whenever a book is formatted, a +Table Of Contents and a List of Figures should be generated. Similarly, + +/chapter toc + +indicates that whenever a document that has a root +of chapter is formatted, a Table of +Contents should be generated. The entry chapter would match +all chapters, but /chapter matches only chapter +document elements. + +Generally, the longest match wins. So, for example, if you want to distinguish +articles in books from articles in parts, you could use these two entries: + +book/article toc,figure +part/article toc + +Note that an article in a part can never match a book/article, +so if you want nothing to be generated for articles in parts, you can simply leave +that rule out. + +If you want to leave the rule in, to make it explicit that you're turning +something off, use the value nop. For example, the following +entry disables ToCs and LoTs for articles: + +article nop + +Do not simply leave the word article in the file +without a matching value. That'd be just begging the silly little +path/value parser to get confused. + +Section ToCs are further controlled by the +generate.section.toc.level parameter. +For a given section level to have a ToC, it must have both an entry in +generate.toc and be within the range enabled by +generate.section.toc.level. + + + + + +generate.index +boolean + + +generate.index +Do you want an index? + + + +<xsl:param name="generate.index" select="1"></xsl:param> + + +Description + +Specify if an index should be generated. + + + + + + +make.index.markup +boolean + + +make.index.markup +Generate XML index markup in the index? + + + + +<xsl:param name="make.index.markup" select="0"></xsl:param> + + + +Description + +This parameter enables a very neat trick for getting properly +merged, collated back-of-the-book indexes. G. Ken Holman suggested +this trick at Extreme Markup Languages 2002 and I'm indebted to him +for it. + +Jeni Tennison's excellent code in +autoidx.xsl does a great job of merging and +sorting indexterms in the document and building a +back-of-the-book index. However, there's one thing that it cannot +reasonably be expected to do: merge page numbers into ranges. (I would +not have thought that it could collate and suppress duplicate page +numbers, but in fact it appears to manage that task somehow.) + +Ken's trick is to produce a document in which the index at the +back of the book is displayed in XML. Because the index +is generated by the FO processor, all of the page numbers have been resolved. +It's a bit hard to explain, but what it boils down to is that instead of having +an index at the back of the book that looks like this: + +
    +A +ap1, 1, 2, 3 + +
    + +you get one that looks like this: + +
    +<indexdiv>A</indexdiv> +<indexentry> +<primaryie>ap1</primaryie>, +<phrase role="pageno">1</phrase>, +<phrase role="pageno">2</phrase>, +<phrase role="pageno">3</phrase> +</indexentry> +
    + +After building a PDF file with this sort of odd-looking index, you can +extract the text from the PDF file and the result is a proper index expressed in +XML. + +Now you have data that's amenable to processing and a simple Perl script +(such as fo/pdf2index) can +merge page ranges and generate a proper index. + +Finally, reformat your original document using this literal index instead of +an automatically generated one and bingo! + +
    +
    + + + +index.method +list +basic +kosek +kimber + + +index.method +Select method used to group index entries in an index + + + + +<xsl:param name="index.method">basic</xsl:param> + + + +Description + +This parameter lets you select which method to use for sorting and grouping + index entries in an index. +Indexes in Latin-based languages that have accented characters typically +sort together accented words and unaccented words. +Thus Á (U+00C1 LATIN CAPITAL LETTER A WITH ACUTE) would sort together +with A (U+0041 LATIN CAPITAL LETTER A), so both would appear in the A +section of the index. +Languages using other alphabets (such as Russian, which is written in the Cyrillic alphabet) +and languages using ideographic chararacters (such as Japanese) +require grouping specific to the languages and alphabets. + + +The default indexing method is limited. +It can group accented characters in Latin-based languages only. +It cannot handle non-Latin alphabets or ideographic languages. +The other indexing methods require extensions of one type or +another, and do not work with +all XSLT processors, which is why they are not used by default. + +The three choices for indexing method are: + + +basic + + +(default) Sort and groups words based only on the Latin alphabet. +Words with accented Latin letters will group and sort with +their respective primary letter, but +words in non-Latin alphabets will be +put in the Symbols section of the index. + + + + +kosek + + +This method sorts and groups words based on letter groups configured in +the DocBook locale file for the given language. +See, for example, the French locale file common/fr.xml. +This method requires that the XSLT processor +supports the EXSLT extensions (most do). +It also requires support for using +user-defined functions in xsl:key (xsltproc does not). + +This method is suitable for any language for which you can +list all the individual characters that should appear +in each letter group in an index. +It is probably not practical to use it for ideographic languages +such as Chinese that have hundreds or thousands of characters. + + +To use the kosek method, you must: + + + +Use a processor that supports its extensions, such as +Saxon 6 or Xalan (xsltproc and Saxon 8 do not). + + + +Set the index.method parameter's value to kosek. + + + +Import the appropriate index extensions stylesheet module +fo/autoidx-kosek.xsl or +html/autoidx-kosek.xsl into your +customization. + + + + + + + +kimber + + +This method uses extensions to the Saxon processor to implement +sophisticated indexing processes. It uses its own +configuration file, which can include information for any number of +languages. Each language's configuration can group +words using one of two processes. In the +enumerated process similar to that used in the kosek method, +you indicate the groupings character-by-character. +In the between-key process, you specify the +break-points in the sort order that should start a new group. +The latter configuration is useful for ideographic languages +such as Chinese, Japanese, and Korean. +You can also define your own collation algorithms and how you +want mixed Latin-alphabet words sorted. + + +For a whitepaper describing the extensions, see: +http://www.innodata-isogen.com/knowledge_center/white_papers/back_of_book_for_xsl_fo.pdf. + + + +To download the extension library, see +http://www.innodata-isogen.com/knowledge_center/tools_downloads/i18nsupport. + + + + +To use the kimber method, you must: + + + +Use Saxon (version 6 or 8) as your XSLT processor. + + + +Install and configure the Innodata Isogen library, using +the documentation that comes with it. + + + +Set the index.method parameter's value to kimber. + + + +Import the appropriate index extensions stylesheet module +fo/autoidx-kimber.xsl or +html/autoidx-kimber.xsl into your +customization. + + + + + + + + + + + + + +index.on.type +boolean + + +index.on.type +Select indexterms based on type +attribute value + + + + +<xsl:param name="index.on.type" select="0"></xsl:param> + + + +Description + + +If non-zero, +then an index element that has a +type attribute +value will contain only those indexterm +elements with a matching type attribute value. +If an index has no type +attribute or it is blank, then the index will contain +all indexterms in the current scope. + + + +If index.on.type is zero, then the +type attribute has no effect +on selecting indexterms for an index. + + +For those using DocBook version 4.2 or earlier, +the type attribute is not available +for index terms. However, you can achieve the same +effect by using the role attribute +in the same manner on indexterm +and index, and setting the stylesheet parameter +index.on.role to a nonzero value. + + + + + + + +index.on.role +boolean + + +index.on.role +Select indexterms based on role value + + + + +<xsl:param name="index.on.role" select="0"></xsl:param> + + + +Description + + +If non-zero, +then an index element that has a +role attribute +value will contain only those indexterm +elements with a matching role value. +If an index has no role +attribute or it is blank, then the index will contain +all indexterms in the current scope. + + +If index.on.role is zero, then the +role attribute has no effect +on selecting indexterms for an index. + + +If you are using DocBook version 4.3 or later, you should +use the type attribute instead of role +on indexterm and index, +and set the index.on.type to a nonzero +value. + + + + + + + +index.preferred.page.properties +attribute set + + +index.preferred.page.properties +Properties used to emphasize page number references for +significant index terms + + + + +<xsl:attribute-set name="index.preferred.page.properties"> + <xsl:attribute name="font-weight">bold</xsl:attribute> +</xsl:attribute-set> + + + +Description + +Properties used to emphasize page number references for +significant index terms (significance=preferred). Currently works only with +XEP. + + + + + + +index.entry.properties +attribute set + + +index.entry.properties +Properties applied to the formatted entries +in an index + + + + +<xsl:attribute-set name="index.entry.properties"> + <xsl:attribute name="start-indent">0pt</xsl:attribute> +</xsl:attribute-set> + + + +Description + +This attribute set is applied to the block containing +the entries in a letter division in an index. It can be used to set the +font-size, font-family, and other inheritable properties that will be +applied to all index entries. + + + + + + +index.div.title.properties +attribute set + + +index.div.title.properties +Properties associated with the letter headings in an +index + + + + +<xsl:attribute-set name="index.div.title.properties"> + <xsl:attribute name="margin-{$direction.align.start}">0pt</xsl:attribute> + <xsl:attribute name="font-size">14.4pt</xsl:attribute> + <xsl:attribute name="font-family"><xsl:value-of select="$title.fontset"></xsl:value-of></xsl:attribute> + <xsl:attribute name="font-weight">bold</xsl:attribute> + <xsl:attribute name="keep-with-next.within-column">always</xsl:attribute> + <xsl:attribute name="space-before.optimum"><xsl:value-of select="concat($body.font.master,'pt')"></xsl:value-of></xsl:attribute> + <xsl:attribute name="space-before.minimum"><xsl:value-of select="concat($body.font.master,'pt * 0.8')"></xsl:value-of></xsl:attribute> + <xsl:attribute name="space-before.maximum"><xsl:value-of select="concat($body.font.master,'pt * 1.2')"></xsl:value-of></xsl:attribute> + <xsl:attribute name="start-indent">0pt</xsl:attribute> +</xsl:attribute-set> + + + +Description + +This attribute set is used on the letter headings that separate +the divisions in an index. + + + + + + +index.number.separator +string + + +index.number.separator +Override for punctuation separating page numbers in index + + + + +<xsl:param name="index.number.separator"></xsl:param> + + + +Description + +This parameter permits you to override the text to insert between +page references in a formatted index entry. Typically +that would be a comma and a space. + + +Because this text may be locale dependent, +this parameter's value is normally taken from a gentext +template named 'number-separator' in the +context 'index' in the stylesheet +locale file for the language +of the current document. +This parameter can be used to override the gentext string, +and would typically be used on the command line. +This parameter would apply to all languages. + + +So this text string can be customized in two ways. +You can reset the default gentext string using +the local.l10n.xml parameter, or you can +override the gentext with the content of this parameter. +The content can be a simple string, or it can be +something more complex such as a call-template. + + +In HTML index output, section title references are used instead of +page number references. This punctuation appears between +such section titles in an HTML index. + + + + + + + +index.range.separator +string + + +index.range.separator +Override for punctuation separating the two numbers +in a page range in index + + + + +<xsl:param name="index.range.separator"></xsl:param> + + + +Description + +This parameter permits you +to override the text to insert between +the two numbers of a page range in an index. +This parameter is only used by those XSL-FO processors +that support an extension for generating such page ranges +(such as XEP). + +Because this text may be locale dependent, +this parameter's value is normally taken from a gentext +template named 'range-separator' in the +context 'index' in the stylesheet +locale file for the language +of the current document. +This parameter can be used to override the gentext string, +and would typically be used on the command line. +This parameter would apply to all languages. + + +So this text string can be customized in two ways. +You can reset the default gentext string using +the local.l10n.xml parameter, or you can +override the gentext with the content of this parameter. +The content can be a simple string, or it can be +something more complex such as a call-template. + + +In HTML index output, section title references are used instead of +page number references. So there are no page ranges +and this parameter has no effect. + + + + + + + +index.term.separator +string + + +index.term.separator +Override for punctuation separating an index term +from its list of page references in an index + + + + +<xsl:param name="index.term.separator"></xsl:param> + + + +Description + +This parameter permits you to override +the text to insert between +the end of an index term and its list of page references. +Typically that might be a comma and a space. + + +Because this text may be locale dependent, +this parameter's value is normally taken from a gentext +template named 'term-separator' in the +context 'index' in the stylesheet +locale file for the language +of the current document. +This parameter can be used to override the gentext string, +and would typically be used on the command line. +This parameter would apply to all languages. + + +So this text string can be customized in two ways. +You can reset the default gentext string using +the local.l10n.xml parameter, or you can +fill in the content for this normally empty +override parameter. +The content can be a simple string, or it can be +something more complex such as a call-template. +For fo output, it could be an fo:leader +element to provide space of a specific length, or a dot leader. + + + + + + + +xep.index.item.properties +attribute set + + +xep.index.item.properties +Properties associated with XEP index-items + + + + +<xsl:attribute-set name="xep.index.item.properties" use-attribute-sets="index.page.number.properties"> + <xsl:attribute name="merge-subsequent-page-numbers">true</xsl:attribute> + <xsl:attribute name="link-back">true</xsl:attribute> +</xsl:attribute-set> + + + +Description + +Properties associated with XEP index-items, which generate +page numbers in an index processed by XEP. For more info see +the XEP documentation section "Indexes" in +http://www.renderx.com/reference.html#Indexes. + +This attribute-set also adds by default any properties from the +index.page.number.properties +attribute-set. + + + + + +toc.section.depth +integer + + +toc.section.depth +How deep should recursive sections appear +in the TOC? + + + +<xsl:param name="toc.section.depth">2</xsl:param> + + +Description + +Specifies the depth to which recursive sections should appear in the +TOC. + + + + + + + +toc.max.depth +integer + + +toc.max.depth +How many levels should be created for each TOC? + + + +<xsl:param name="toc.max.depth">8</xsl:param> + + +Description + +Specifies the maximal depth of TOC on all levels. + + + + + + +toc.indent.width +float + + +toc.indent.width +Amount of indentation for TOC entries + + + + +<xsl:param name="toc.indent.width">24</xsl:param> +<!-- inconsistant point specification? --> + + + +Description + +Specifies, in points, the distance by which each level of the +TOC is indented from its parent. + +This value is expressed in points, without +a unit (in other words, it is a bare number). Using a bare number allows the stylesheet +to perform calculations that would otherwise have to be performed by the FO processor +because not all processors support expressions. + + + + + + +toc.line.properties +attribute set + + +toc.line.properties +Properties for lines in ToCs and LoTs + + + + +<xsl:attribute-set name="toc.line.properties"> + <xsl:attribute name="text-align-last">justify</xsl:attribute> + <xsl:attribute name="text-align">start</xsl:attribute> + <xsl:attribute name="end-indent"><xsl:value-of select="concat($toc.indent.width, 'pt')"></xsl:value-of></xsl:attribute> + <xsl:attribute name="last-line-end-indent"><xsl:value-of select="concat('-', $toc.indent.width, 'pt')"></xsl:value-of></xsl:attribute> +</xsl:attribute-set> + + + +Description + +Properties which are applied to every line in ToC (or LoT). You can +modify them in order to change appearance of all, or some lines. For +example, in order to make lines for chapters bold, specify the +following in your customization layer: + +<xsl:attribute-set name="toc.line.properties"> + <xsl:attribute name="font-weight"> + <xsl:choose> + <xsl:when test="self::chapter">bold</xsl:when> + <xsl:otherwise>normal</xsl:otherwise> + </xsl:choose> + </xsl:attribute> +</xsl:attribute-set> + + + + + + +toc.margin.properties +attribute set + + +toc.margin.properties +Margin properties used on Tables of Contents + + + + +<xsl:attribute-set name="toc.margin.properties"> + <xsl:attribute name="space-before.minimum">0.5em</xsl:attribute> + <xsl:attribute name="space-before.optimum">1em</xsl:attribute> + <xsl:attribute name="space-before.maximum">2em</xsl:attribute> + <xsl:attribute name="space-after.minimum">0.5em</xsl:attribute> + <xsl:attribute name="space-after.optimum">1em</xsl:attribute> + <xsl:attribute name="space-after.maximum">2em</xsl:attribute> +</xsl:attribute-set> + + + +Description +This attribute set is used on Tables of Contents. These attributes are set +on the wrapper that surrounds the ToC block, not on each individual lines. + + + + + +bridgehead.in.toc +boolean + + +bridgehead.in.toc +Should bridgehead elements appear in the TOC? + + + +<xsl:param name="bridgehead.in.toc" select="0"></xsl:param> + + +Description + +If non-zero, bridgeheads appear in the TOC. Note that +this option is not fully supported and may be removed in a future +version of the stylesheets. + + + + + + + +simplesect.in.toc +boolean + + +simplesect.in.toc +Should simplesect elements appear in the TOC? + + + +<xsl:param name="simplesect.in.toc" select="0"></xsl:param> + + +Description + +If non-zero, simplesects will be included in the TOC. + + + + + + + +generate.section.toc.level +integer + + +generate.section.toc.level +Control depth of TOC generation in sections + + + + +<xsl:param name="generate.section.toc.level" select="0"></xsl:param> + + + +Description + +The generate.section.toc.level parameter +controls the depth of section in which TOCs will be generated. Note +that this is related to, but not the same as +toc.section.depth, which controls the depth to +which TOC entries will be generated in a given TOC. +If, for example, generate.section.toc.level +is 3, TOCs will be generated in first, second, and third +level sections, but not in fourth level sections. + + + + + + + + +
    Processor Extensions + + +arbortext.extensions +boolean + + +arbortext.extensions +Enable Arbortext extensions? + + + +<xsl:param name="arbortext.extensions" select="0"></xsl:param> + + +Description + +If non-zero, +Arbortext +extensions will be used. + +This parameter can also affect which graphics file formats +are supported + + + + + + +axf.extensions +boolean + + +axf.extensions +Enable XSL Formatter extensions? + + + + +<xsl:param name="axf.extensions" select="0"></xsl:param> + + + +Description + +If non-zero, +XSL Formatter +extensions will be used. XSL Formatter extensions consists of PDF bookmarks, +document information and better index processing. + +This parameter can also affect which graphics file formats +are supported + + + + + + +fop.extensions +boolean + + +fop.extensions +Enable extensions for FOP version 0.20.5 and earlier + + + +<xsl:param name="fop.extensions" select="0"></xsl:param> + + +Description + +If non-zero, extensions intended for +FOP +version 0.20.5 and earlier will be used. +At present, this consists of PDF bookmarks. + + +This parameter can also affect which graphics file formats +are supported. + +If you are using a version of FOP beyond +version 0.20.5, then use the fop1.extensions parameter +instead. + + + + + + +fop1.extensions +boolean + + +fop1.extensions +Enable extensions for FOP version 0.90 and later + + + +<xsl:param name="fop1.extensions" select="0"></xsl:param> + + +Description + +If non-zero, extensions for +FOP +version 0.90 and later will be used. + + +This parameter can also affect which graphics file formats +are supported. + +The original fop.extensions parameter +should still be used for FOP version 0.20.5 and earlier. + + + + + + +passivetex.extensions +boolean + + +passivetex.extensions +Enable PassiveTeX extensions? + + + +<xsl:param name="passivetex.extensions" select="0"></xsl:param> + + +Description + +If non-zero, +PassiveTeX +extensions will be used. At present, this consists of PDF bookmarks +and sorted index terms. + + +This parameter can also affect which graphics file formats +are supported + + + PassiveTeX is incomplete and development has ceased. In most cases, +another XSL-FO engine is probably a better choice. + + + + + + + +tex.math.in.alt +list +plain +latex + + +tex.math.in.alt +TeX notation used for equations + + + + +<xsl:param name="tex.math.in.alt"></xsl:param> + + + +Description + +If you want type math directly in TeX notation in equations, +this parameter specifies notation used. Currently are supported two +values -- plain and latex. Empty +value means that you are not using TeX math at all. + +Preferred way for including TeX alternative of math is inside of +textobject element. Eg.: + +<inlineequation> +<inlinemediaobject> +<imageobject> +<imagedata fileref="eq1.gif"/> +</imageobject> +<textobject><phrase>E=mc squared</phrase></textobject> +<textobject role="tex"><phrase>E=mc^2</phrase></textobject> +</inlinemediaobject> +</inlineequation> + +If you are using graphic element, you can +store TeX inside alt element: + +<inlineequation> +<alt role="tex">a^2+b^2=c^2</alt> +<graphic fileref="a2b2c2.gif"/> +</inlineequation> + +If you want use this feature, you should process your FO with +PassiveTeX, which only supports TeX math notation. When calling +stylsheet, don't forget to specify also +passivetex.extensions=1. + +If you want equations in HTML, just process generated file +tex-math-equations.tex by TeX or LaTeX. Then run +dvi2bitmap program on result DVI file. You will get images for +equations in your document. + + + This feature is useful for print/PDF output only if you + use the obsolete and now unsupported PassiveTeX XSL-FO + engine. + + + + +Related Parameters + tex.math.delims, + passivetex.extensions, + tex.math.file + + + + + + +tex.math.delims +boolean + + +tex.math.delims +Should equations output for processing by TeX be +surrounded by math mode delimiters? + + + + +<xsl:param name="tex.math.delims" select="1"></xsl:param> + + + +Description + +For compatibility with DSSSL based DBTeXMath from Allin Cottrell +you should set this parameter to 0. + + + This feature is useful for print/PDF output only if you + use the obsolete and now unsupported PassiveTeX XSL-FO + engine. + + + +Related Parameters + tex.math.in.alt, + passivetex.extensions + + +See Also + You can also use the dbtex delims processing + instruction to control whether delimiters are output. + + + + + + + +xep.extensions +boolean + + +xep.extensions +Enable XEP extensions? + + + +<xsl:param name="xep.extensions" select="0"></xsl:param> + + +Description + +If non-zero, +XEP +extensions will be used. XEP extensions consists of PDF bookmarks, +document information and better index processing. + + +This parameter can also affect which graphics file formats +are supported + + + +Stylesheet Extensions + + +linenumbering.everyNth +integer + + +linenumbering.everyNth +Indicate which lines should be numbered + + + + +<xsl:param name="linenumbering.everyNth">5</xsl:param> + + + +Description + +If line numbering is enabled, everyNth line will be +numbered. Note that numbering is one based, not zero based. + + + + + + + +linenumbering.extension +boolean + + +linenumbering.extension +Enable the line numbering extension + + + + +<xsl:param name="linenumbering.extension" select="1"></xsl:param> + + + +Description + +If non-zero, verbatim environments (address, literallayout, +programlisting, screen, synopsis) that specify line numbering will +have line numbers. + + + + + + + +linenumbering.separator +string + + +linenumbering.separator +Specify a separator between line numbers and lines + + + + +<xsl:param name="linenumbering.separator"><xsl:text> </xsl:text></xsl:param> + + + +Description + +The separator is inserted between line numbers and lines in the +verbatim environment. The default value is a single white space. + Note the interaction with linenumbering.width + + + + + + + +linenumbering.width +integer + + +linenumbering.width +Indicates the width of line numbers + + + + +<xsl:param name="linenumbering.width">3</xsl:param> + + + +Description + +If line numbering is enabled, line numbers will appear right +justified in a field "width" characters wide. + + + + + + + +tablecolumns.extension +boolean + + +tablecolumns.extension +Enable the table columns extension function + + + + +<xsl:param name="tablecolumns.extension" select="1"></xsl:param> + + + +Description + +The table columns extension function adjusts the widths of table +columns in the HTML result to more accurately reflect the specifications +in the CALS table. + + + + + + + + textinsert.extension + boolean + + + textinsert.extension + Enables the textinsert extension element + + + + <xsl:param name="textinsert.extension" select="1"></xsl:param> + + + Description + The textinsert extension element inserts the contents of + a file into the result tree (as text). + + To use the textinsert extension element, you must use + either Saxon or Xalan as your XSLT processor (it doesn’t + work with xsltproc), along with either the DocBook Saxon + extensions or DocBook Xalan extensions (for more + information about those extensions, see DocBook Saxon Extensions and DocBook Xalan Extensions), and you must set both + the use.extensions and + textinsert.extension parameters to + 1. + As an alternative to using the textinsert element, + consider using an Xinclude element with the + parse="text" attribute and value + specified, as detailed in Using XInclude for text inclusions. + + + See Also + You can also use the dbhtml-include href processing + instruction to insert external files — both files containing + plain text and files with markup content (including HTML + content). + + More information + For how-to documentation on inserting contents of + external code files and other text files into output, see + External code files. + For guidelines on inserting contents of + HTML files into output, see Inserting external HTML code. + + + + + +textdata.default.encoding +string + + +textdata.default.encoding +Default encoding of external text files which are included +using textdata element + + + + +<xsl:param name="textdata.default.encoding"></xsl:param> + + + +Description + +Specifies the encoding of any external text files included using +textdata element. This value is used only when you do +not specify encoding by the appropriate attribute +directly on textdata. An empty string is interpreted as the system +default encoding. + + + + + + +use.extensions +boolean + + +use.extensions +Enable extensions + + + + +<xsl:param name="use.extensions" select="0"></xsl:param> + + + +Description + +If non-zero, extensions may be used. Each extension is +further controlled by its own parameter. But if +use.extensions is zero, no extensions will +be used. + + + + + +Automatic labelling + + +appendix.autolabel +list +0none +11,2,3... +AA,B,C... +aa,b,c... +ii,ii,iii... +II,II,III... + + +appendix.autolabel +Specifies the labeling format for Appendix titles + + + + +<xsl:param name="appendix.autolabel">A</xsl:param> + + + +Description + +If non-zero, then appendices will be numbered using the +parameter value as the number format if the value matches one of the +following: + + + + + 1 or arabic + + Arabic numeration (1, 2, 3 ...). + + + + A or upperalpha + + Uppercase letter numeration (A, B, C ...). + + + + a or loweralpha + + Lowercase letter numeration (a, b, c ...). + + + + I or upperroman + + Uppercase roman numeration (I, II, III ...). + + + + i or lowerroman + + Lowercase roman letter numeration (i, ii, iii ...). + + + + +Any nonzero value other than the above will generate +the default number format (upperalpha). + + + + + + + +chapter.autolabel +list +0none +11,2,3... +AA,B,C... +aa,b,c... +ii,ii,iii... +II,II,III... + + +chapter.autolabel +Specifies the labeling format for Chapter titles + + + + +<xsl:param name="chapter.autolabel" select="1"></xsl:param> + + +Description + +If non-zero, then chapters will be numbered using the parameter +value as the number format if the value matches one of the following: + + + + + 1 or arabic + + Arabic numeration (1, 2, 3 ...). + + + + A or upperalpha + + Uppercase letter numeration (A, B, C ...). + + + + a or loweralpha + + Lowercase letter numeration (a, b, c ...). + + + + I or upperroman + + Uppercase roman numeration (I, II, III ...). + + + + i or lowerroman + + Lowercase roman letter numeration (i, ii, iii ...). + + + + +Any nonzero value other than the above will generate +the default number format (arabic). + + + + + + + +part.autolabel +list +0none +11,2,3... +AA,B,C... +aa,b,c... +ii,ii,iii... +II,II,III... + + +part.autolabel +Specifies the labeling format for Part titles + + + + +<xsl:param name="part.autolabel">I</xsl:param> + + + +Description + +If non-zero, then parts will be numbered using the parameter +value as the number format if the value matches one of the following: + + + + + 1 or arabic + + Arabic numeration (1, 2, 3 ...). + + + + A or upperalpha + + Uppercase letter numeration (A, B, C ...). + + + + a or loweralpha + + Lowercase letter numeration (a, b, c ...). + + + + I or upperroman + + Uppercase roman numeration (I, II, III ...). + + + + i or lowerroman + + Lowercase roman letter numeration (i, ii, iii ...). + + + + +Any nonzero value other than the above will generate +the default number format (upperroman). + + + + + + + + +reference.autolabel +list +0none +11,2,3... +AA,B,C... +aa,b,c... +ii,ii,iii... +II,II,III... + + +reference.autolabel +Specifies the labeling format for Reference titles + + + + <xsl:param name="reference.autolabel">I</xsl:param> + + +Description +If non-zero, references will be numbered using the parameter + value as the number format if the value matches one of the + following: + + + + 1 or arabic + + Arabic numeration (1, 2, 3 ...). + + + + A or upperalpha + + Uppercase letter numeration (A, B, C ...). + + + + a or loweralpha + + Lowercase letter numeration (a, b, c ...). + + + + I or upperroman + + Uppercase roman numeration (I, II, III ...). + + + + i or lowerroman + + Lowercase roman letter numeration (i, ii, iii ...). + + + +Any non-zero value other than the above will generate +the default number format (upperroman). + + + + + + +preface.autolabel +list +0none +11,2,3... +AA,B,C... +aa,b,c... +ii,ii,iii... +II,II,III... + + +preface.autolabel +Specifices the labeling format for Preface titles + + + +<xsl:param name="preface.autolabel" select="0"></xsl:param> + + +Description + +If non-zero then prefaces will be numbered using the parameter +value as the number format if the value matches one of the following: + + + + + 1 or arabic + + Arabic numeration (1, 2, 3 ...). + + + + A or upperalpha + + Uppercase letter numeration (A, B, C ...). + + + + a or loweralpha + + Lowercase letter numeration (a, b, c ...). + + + + I or upperroman + + Uppercase roman numeration (I, II, III ...). + + + + i or lowerroman + + Lowercase roman letter numeration (i, ii, iii ...). + + + + +Any nonzero value other than the above will generate +the default number format (arabic). + + + + + + + + +section.autolabel +boolean + + +section.autolabel +Are sections enumerated? + + + +<xsl:param name="section.autolabel" select="0"></xsl:param> + + +Description + +If true (non-zero), unlabeled sections will be enumerated. + + + + + + + +section.autolabel.max.depth +integer + + +section.autolabel.max.depth +The deepest level of sections that are numbered. + + + + +<xsl:param name="section.autolabel.max.depth">8</xsl:param> + + + +Description + +When section numbering is turned on by the +section.autolabel parameter, then this +parameter controls the depth of section nesting that is +numbered. Sections nested to a level deeper than this value will not +be numbered. + + + + + + + +section.label.includes.component.label +boolean + + +section.label.includes.component.label +Do section labels include the component label? + + + +<xsl:param name="section.label.includes.component.label" select="0"></xsl:param> + + +Description + +If non-zero, section labels are prefixed with the label of the +component that contains them. + + + + + + + +label.from.part +boolean + + +label.from.part +Renumber components in each part? + + + + +<xsl:param name="label.from.part" select="0"></xsl:param> + + + +Description + +If label.from.part is non-zero, then + numbering of components — preface, + chapter, appendix, and + reference (when reference occurs at the + component level) — is re-started within each + part. +If label.from.part is zero (the + default), numbering of components is not + re-started within each part; instead, components are + numbered sequentially throughout each book, + regardless of whether or not they occur within part + instances. + + + + + + +component.label.includes.part.label +boolean + + +component.label.includes.part.label +Do component labels include the part label? + + + +<xsl:param name="component.label.includes.part.label" select="0"></xsl:param> + + +Description + +If non-zero, number labels for chapter, +appendix, and other component elements are prefixed with +the label of the part element that contains them. So you might see +Chapter II.3 instead of Chapter 3. Also, the labels for formal +elements such as table and figure will include +the part label. If there is no part element container, then no prefix +is generated. + + +This feature is most useful when the +label.from.part parameter is turned on. +In that case, there would be more than one chapter +1, and the extra part label prefix will identify +each chapter unambiguously. + + + + + +XSLT Processing + + +rootid +string + + +rootid +Specify the root element to format + + + + +<xsl:param name="rootid"></xsl:param> + + +Description + +If rootid is not empty, it must be the +value of an ID that occurs in the document being formatted. The entire +document will be loaded and parsed, but formatting will begin at the +element identified, rather than at the root. For example, this allows +you to process only chapter 4 of a book. +Because the entire document is available to the processor, automatic +numbering, cross references, and other dependencies are correctly +resolved. + + + + +Meta/*Info + + +make.single.year.ranges +boolean + + +make.single.year.ranges +Print single-year ranges (e.g., 1998-1999) + + + + +<xsl:param name="make.single.year.ranges" select="0"></xsl:param> + + +Description + +If non-zero, year ranges that span a single year will be printed +in range notation (1998-1999) instead of discrete notation +(1998, 1999). + + + + + + +make.year.ranges +boolean + + +make.year.ranges +Collate copyright years into ranges? + + + +<xsl:param name="make.year.ranges" select="0"></xsl:param> + + +Description + +If non-zero, multiple copyright year elements will be +collated into ranges. +This works only if each year number is put into a separate +year element. The copyright element permits multiple +year elements. If a year element contains a dash or +a comma, then that year element will not be merged into +any range. + + + + + + + +author.othername.in.middle +boolean + + +author.othername.in.middle +Is othername in author a +middle name? + + + + +<xsl:param name="author.othername.in.middle" select="1"></xsl:param> + + +Description + +If non-zero, the othername of an author +appears between the firstname and +surname. Otherwise, othername +is suppressed. + + + + + +Reference Pages + + +funcsynopsis.decoration +boolean + + +funcsynopsis.decoration +Decorate elements of a funcsynopsis? + + + + +<xsl:param name="funcsynopsis.decoration" select="1"></xsl:param> + + + +Description + +If non-zero, elements of the funcsynopsis will be +decorated (e.g. rendered as bold or italic text). The decoration is controlled by +templates that can be redefined in a customization layer. + + + + + + + +funcsynopsis.style +list +ansi +kr + + +funcsynopsis.style +What style of funcsynopsis should be generated? + + + +<xsl:param name="funcsynopsis.style">kr</xsl:param> + + +Description + +If funcsynopsis.style is ansi, +ANSI-style function synopses are generated for a +funcsynopsis, otherwise K&R-style +function synopses are generated. + + + + + + + +function.parens +boolean + + +function.parens +Generate parens after a function? + + + + +<xsl:param name="function.parens" select="0"></xsl:param> + + + +Description + +If non-zero, the formatting of a function element +will include generated parentheses. + + + + + + + +refentry.generate.name +boolean + + +refentry.generate.name +Output NAME header before refnames? + + + + +<xsl:param name="refentry.generate.name" select="1"></xsl:param> + + + +Description + +If non-zero, a "NAME" section title is output before the list +of refnames. This parameter and +refentry.generate.title are mutually +exclusive. This means that if you change this parameter to zero, you +should set refentry.generate.title to non-zero unless +you want get quite strange output. + + + + + + + +refentry.generate.title +boolean + + +refentry.generate.title +Output title before refnames? + + + + +<xsl:param name="refentry.generate.title" select="0"></xsl:param> + + + +Description + +If non-zero, the reference page title or first name is +output before the list of refnames. This parameter and +refentry.generate.name are mutually exclusive. +This means that if you change this parameter to non-zero, you +should set refentry.generate.name to zero unless +you want get quite strange output. + + + + + + + +refentry.pagebreak +boolean + + +refentry.pagebreak +Start each refentry on a new page + + + +<xsl:param name="refentry.pagebreak" select="1"></xsl:param> + + +Description + +If non-zero (the default), each refentry +element will start on a new page. If zero, a page +break will not be generated between refentry elements. +The exception is when the refentry elements are children of +a part element, in which case the page breaks are always +retained. That is because a part element does not generate +a page-sequence for its children, so each refentry must +start its own page-sequence. + + + + + + + +refentry.title.properties +attribute set + + +refentry.title.properties +Title properties for a refentry title + + + + +<xsl:attribute-set name="refentry.title.properties"> + <xsl:attribute name="font-family"> + <xsl:value-of select="$title.font.family"></xsl:value-of> + </xsl:attribute> + <xsl:attribute name="font-size">18pt</xsl:attribute> + <xsl:attribute name="font-weight">bold</xsl:attribute> + <xsl:attribute name="space-after">1em</xsl:attribute> + <xsl:attribute name="hyphenate">false</xsl:attribute> + <xsl:attribute name="keep-with-next.within-column">always</xsl:attribute> + <xsl:attribute name="space-before.minimum">0.8em</xsl:attribute> + <xsl:attribute name="space-before.optimum">1.0em</xsl:attribute> + <xsl:attribute name="space-before.maximum">1.2em</xsl:attribute> + <xsl:attribute name="space-after.optimum">0.5em</xsl:attribute> + <xsl:attribute name="space-after.minimum">0.4em</xsl:attribute> + <xsl:attribute name="space-after.maximum">0.6em</xsl:attribute> + <xsl:attribute name="start-indent"><xsl:value-of select="$title.margin.left"></xsl:value-of></xsl:attribute> +</xsl:attribute-set> + + + +Description + +Formatting properties applied to the title generated for the +refnamediv part of output for +refentry when the value of the +refentry.generate.title parameter is +non-zero. The font size is supplied by the appropriate section.levelX.title.properties +attribute-set, computed from the location of the +refentry in the section hierarchy. + + + This parameter has no effect on the the title generated for + the refnamediv part of output for + refentry when the value of the + refentry.generate.name parameter is + non-zero. By default, that title is formatted with the same + properties as the titles for all other first-level children of + refentry. + + + + + + + +refentry.xref.manvolnum +boolean + + +refentry.xref.manvolnum +Output manvolnum as part of +refentry cross-reference? + + + + +<xsl:param name="refentry.xref.manvolnum" select="1"></xsl:param> + + + +Description + +if non-zero, the manvolnum is used when cross-referencing +refentrys, either with xref +or citerefentry. + + + + + + + +refclass.suppress +boolean + + +refclass.suppress +Suppress display of refclass contents? + + + + +<xsl:param name="refclass.suppress" select="0"></xsl:param> + + +Description + +If the value of refclass.suppress is +non-zero, then display of refclass contents is +suppressed in output. + + + + +Tables + + +default.table.width +length + + +default.table.width +The default width of tables + + + +<xsl:param name="default.table.width"></xsl:param> + + +Description +If non-zero, this value will be used for the +width attribute on tables that do not specify an +alternate width (with the dbhtml table-width or +dbfo table-width processing instruction). + + + + + +nominal.table.width +length + + +nominal.table.width +The (absolute) nominal width of tables + + + + +<xsl:param name="nominal.table.width">6in</xsl:param> + + + +Description + +In order to convert CALS column widths into HTML column widths, it +is sometimes necessary to have an absolute table width to use for conversion +of mixed absolute and relative widths. This value must be an absolute +length (not a percentage). + + + + + + +default.table.frame +string + + +default.table.frame +The default framing of tables + + + + +<xsl:param name="default.table.frame">all</xsl:param> + + + +Description + +This value will be used when there is no frame attribute on the +table. + + + + + + +default.table.rules +string + + +default.table.rules +The default column and row rules for tables using HTML markup + + + + +<xsl:param name="default.table.rules">none</xsl:param> + + + +Description + +Tables using HTML markup elements can use an attribute +named rules on the table or +informaltable element +to specify whether column and row border rules should be +displayed. This parameter lets you specify a global default +style for all HTML tables that don't otherwise have +that attribute. +These are the supported values: + + +all + +Rules will appear between all rows and columns. + + + +rows + +Rules will appear between rows only. + + + +cols + +Rules will appear between columns only. + + + +groups + +Rules will appear between row groups (thead, tfoot, tbody). +No support for rules between column groups yet. + + + + +none + +No rules. This is the default value. + + + + + + +The border after the last row and the border after +the last column are not affected by +this setting. Those borders are controlled by +the frame attribute on the table element. + + + + + + + +table.cell.padding +attribute set + + +table.cell.padding +Specifies the padding of table cells + + + + +<xsl:attribute-set name="table.cell.padding"> + <xsl:attribute name="padding-start">2pt</xsl:attribute> + <xsl:attribute name="padding-end">2pt</xsl:attribute> + <xsl:attribute name="padding-top">2pt</xsl:attribute> + <xsl:attribute name="padding-bottom">2pt</xsl:attribute> +</xsl:attribute-set> + + + +Description + +Specifies the padding of table cells. + + + + + + +table.frame.border.thickness +length + + +table.frame.border.thickness +Specifies the thickness of the frame border + + + + +<xsl:param name="table.frame.border.thickness">0.5pt</xsl:param> + + + +Description + +Specifies the thickness of the border on the table's frame. + + + + + + +table.frame.border.style +list +none +solid +dotted +dashed +double +groove +ridge +inset +outset +solid + + +table.frame.border.style +Specifies the border style of table frames + + + + +<xsl:param name="table.frame.border.style">solid</xsl:param> + + + +Description + +Specifies the border style of table frames. + + + + + + +table.frame.border.color +color + + +table.frame.border.color +Specifies the border color of table frames + + + + + +<xsl:param name="table.frame.border.color">black</xsl:param> + + + +Description + +Specifies the border color of table frames. + + + + + + +table.cell.border.thickness +length + + +table.cell.border.thickness +Specifies the thickness of table cell borders + + + + +<xsl:param name="table.cell.border.thickness">0.5pt</xsl:param> + + + +Description + +If non-zero, specifies the thickness of borders on table +cells. The units are points. See +CSS + + + To control properties of cell borders in HTML output, you must also turn on the + table.borders.with.css parameter. + + + + + + + +table.cell.border.style +list +none +solid +dotted +dashed +double +groove +ridge +inset +outset +solid + + +table.cell.border.style +Specifies the border style of table cells + + + + +<xsl:param name="table.cell.border.style">solid</xsl:param> + + + +Description + +Specifies the border style of table cells. + + + To control properties of cell borders in HTML output, you must also turn on the + table.borders.with.css parameter. + + + + + + + +table.cell.border.color +color + + +table.cell.border.color +Specifies the border color of table cells + + + + + +<xsl:param name="table.cell.border.color">black</xsl:param> + + + +Description + +Set the color of table cell borders. If non-zero, the value is used +for the border coloration. See CSS. A +color is either a keyword or a numerical RGB specification. +Keywords are aqua, black, blue, fuchsia, gray, green, lime, maroon, +navy, olive, orange, purple, red, silver, teal, white, and +yellow. + + + To control properties of cell borders in HTML output, you must also turn on the + table.borders.with.css parameter. + + + + + + + +table.table.properties +attribute set + + +table.table.properties +Properties associated with a table + + + + +<xsl:attribute-set name="table.table.properties"> + <xsl:attribute name="border-before-width.conditionality">retain</xsl:attribute> + <xsl:attribute name="border-collapse">collapse</xsl:attribute> +</xsl:attribute-set> + + + +Description + +The styling for tables. This parameter should really +have been called table.properties, but that parameter +name was inadvertently established for the block-level properties +of the table as a whole. + + +See also table.properties. + + + + +Linking + + +current.docid +string + + +current.docid +targetdoc identifier for the document being +processed + + +<xsl:param name="current.docid"></xsl:param> + + +Description + +When olinks between documents are resolved for HTML output, the stylesheet can compute the relative path between the current document and the target document. The stylesheet needs to know the targetdoc identifiers for both documents, as they appear in the target.database.document database file. This parameter passes to the stylesheet +the targetdoc identifier of the current document, since that +identifier does not appear in the document itself. +This parameter can also be used for print output. If an olink's targetdoc id differs from the current.docid, then the stylesheet can append the target document's title to the generated olink text. That identifies to the reader that the link is to a different document, not the current document. See also olink.doctitle to enable that feature. + + + + + +collect.xref.targets +list +no +yes +only + + +collect.xref.targets +Controls whether cross reference data is +collected + + +<xsl:param name="collect.xref.targets">no</xsl:param> + + +Description + + +In order to resolve olinks efficiently, the stylesheets can +generate an external data file containing information about +all potential cross reference endpoints in a document. +This parameter determines whether the collection process is run when the document is processed by the stylesheet. The default value is no, which means the data file is not generated during processing. The other choices are yes, which means the data file is created and the document is processed for output, and only, which means the data file is created but the document is not processed for output. +See also targets.filename. + + + + + + +insert.olink.page.number +list +no +yes +maybe + + +insert.olink.page.number +Turns page numbers in olinks on and off + + + + +<xsl:param name="insert.olink.page.number">no</xsl:param> + + + +Description + +The value of this parameter determines if +cross references made between documents with +olink will +include page number citations. +In most cases this is only applicable to references in printed output. + +The parameter has three possible values. + + + +no +No page number references will be generated for olinks. + + + +yes +Page number references will be generated +for all olink references. +The style of page reference may be changed +if an xrefstyle +attribute is used. + + + +maybe +Page number references will not be generated +for an olink element unless +it has an +xrefstyle +attribute whose value specifies a page reference. + + + +Olinks that point to targets within the same document +are treated as xrefs, and controlled by +the insert.xref.page.number parameter. + + +Page number references for olinks to +external documents can only be inserted if the +information exists in the olink database. +This means each olink target element +(div or obj) +must have a page attribute +whose value is its page number in the target document. +The XSL stylesheets are not able to extract that information +during processing because pages have not yet been created in +XSLT transformation. Only the XSL-FO processor knows what +page each element is placed on. +Therefore some postprocessing must take place to populate +page numbers in the olink database. + + + + + + + + + +insert.olink.pdf.frag +boolean + + +insert.olink.pdf.frag +Add fragment identifiers for links into PDF files + + + + +<xsl:param name="insert.olink.pdf.frag" select="0"></xsl:param> + + + +Description + +The value of this parameter determines whether +the cross reference URIs to PDF documents made with +olink will +include fragment identifiers. + + +When forming a URI to link to a PDF document, +a fragment identifier (typically a '#' followed by an +id value) appended to the PDF filename can be used by +the PDF viewer to open +the PDF file to a location within the document instead of +the first page. +However, not all PDF files have id +values embedded in them, and not all PDF viewers can +handle fragment identifiers. + + +If insert.olink.pdf.frag is set +to a non-zero value, then any olink targeting a +PDF file will have the fragment identifier appended to the URI. +The URI is formed by concatenating the value of the +olink.base.uri parameter, the +value of the baseuri +attribute from the document +element in the olink database with the matching +targetdoc value, +and the value of the href +attribute for the targeted element in the olink database. +The href attribute +contains the fragment identifier. + + +If insert.olink.pdf.frag is set +to zero (the default value), then +the href attribute +from the olink database +is not appended to PDF olinks, so the fragment identifier is left off. +A PDF olink is any olink for which the +baseuri attribute +from the matching document +element in the olink database ends with '.pdf'. +Any other olinks will still have the fragment identifier added. + + + + + + +olink.base.uri +uri + + +olink.base.uri +Base URI used in olink hrefs + + +<xsl:param name="olink.base.uri"></xsl:param> + + +Description + +When cross reference data is collected for resolving olinks, it +may be necessary to prepend a base URI to each target's href. This +parameter lets you set that base URI when cross reference data is +collected. This feature is needed when you want to link to a document +that is processed without chunking. The output filename for such a +document is not known to the XSL stylesheet; the only target +information consists of fragment identifiers such as +#idref. To enable the resolution of olinks between +documents, you should pass the name of the HTML output file as the +value of this parameter. Then the hrefs recorded in the cross +reference data collection look like +outfile.html#idref, which can be reached as links +from other documents. + + + + + +olink.debug +boolean + + +olink.debug +Turn on debugging messages for olinks + + + + +<xsl:param name="olink.debug" select="0"></xsl:param> + + + +Description + +If non-zero, then each olink will generate several +messages about how it is being resolved during processing. +This is useful when an olink does not resolve properly +and the standard error messages are not sufficient to +find the problem. + + +You may need to read through the olink XSL templates +to understand the context for some of the debug messages. + + + + + + + +olink.doctitle +list +no +yes +maybe + + +olink.doctitle +show the document title for external olinks? + + + +<xsl:param name="olink.doctitle">no</xsl:param> + + +Description + +When olinks between documents are resolved, the generated text +may not make it clear that the reference is to another document. +It is possible for the stylesheets to append the other document's +title to external olinks. For this to happen, two parameters must +be set. + + +This olink.doctitle parameter +should be set to either yes or maybe +to enable this feature. + + + +And you should also set the current.docid +parameter to the document id for the document currently +being processed for output. + + + + + +Then if an olink's targetdoc id differs from +the current.docid value, the stylesheet knows +that it is a reference to another document and can +append the target document's +title to the generated olink text. + +The text for the target document's title is copied from the +olink database from the ttl element +of the top-level div for that document. +If that ttl element is missing or empty, +no title is output. + + +The supported values for olink.doctitle are: + + + +yes + + +Always insert the title to the target document if it is not +the current document. + + + + +no + + +Never insert the title to the target document, even if requested +in an xrefstyle attribute. + + + + +maybe + + +Only insert the title to the target document, if requested +in an xrefstyle attribute. + + + + +An xrefstyle attribute +may override the global setting for individual olinks. +The following values are supported in an +xrefstyle +attribute using the select: syntax: + + + + +docname + + +Insert the target document name for this olink using the +docname gentext template, but only +if the value of olink.doctitle +is not no. + + + + +docnamelong + + +Insert the target document name for this olink using the +docnamelong gentext template, but only +if the value of olink.doctitle +is not no. + + + + +nodocname + + +Omit the target document name even if +the value of olink.doctitle +is yes. + + + + +Another way of inserting the target document name +for a single olink is to employ an +xrefstyle +attribute using the template: syntax. +The %o placeholder (the letter o, not zero) +in such a template +will be filled in with the target document's title when it is processed. +This will occur regardless of +the value of olink.doctitle. + +Note that prior to version 1.66 of the XSL stylesheets, +the allowed values for this parameter were 0 and 1. Those +values are still supported and mapped to 'no' and 'yes', respectively. + + + + + + +olink.lang.fallback.sequence +string + + +olink.lang.fallback.sequence +look up translated documents if olink not found? + + + +<xsl:param name="olink.lang.fallback.sequence"></xsl:param> + + +Description + + +This parameter defines a list of lang values +to search among to resolve olinks. + + +Normally an olink tries to resolve to a document in the same +language as the olink itself. The language of an olink +is determined by its nearest ancestor element with a +lang attribute, otherwise the +value of the l10n.gentext.default.lang +parameter. + + +An olink database can contain target data for the same +document in multiple languages. Each set of data has the +same value for the targetdoc attribute in +the document element in the database, but with a +different lang attribute value. + + +When an olink is being resolved, the target is first +sought in the document with the same language as the olink. +If no match is found there, then this parameter is consulted +for additional languages to try. + +The olink.lang.fallback.sequence +must be a whitespace separated list of lang values to +try. The first one with a match in the olink database is used. +The default value is empty. + +For example, a document might be written in German +and contain an olink with +targetdoc="adminguide". +When the document is processed, the processor +first looks for a target dataset in the +olink database starting with: + +<document targetdoc="adminguide" lang="de">. + + +If there is no such element, then the +olink.lang.fallback.sequence +parameter is consulted. +If its value is, for example, fr en, then the processor next +looks for targetdoc="adminguide" lang="fr", and +then for targetdoc="adminguide" lang="en". +If there is still no match, it looks for +targetdoc="adminguide" with no +lang attribute. + + +This parameter is useful when a set of documents is only +partially translated, or is in the process of being translated. +If a target of an olink has not yet been translated, then this +parameter permits the processor to look for the document in +other languages. This assumes the reader would rather have +a link to a document in a different language than to have +a broken link. + + + + + + + +olink.properties +attribute set + + +olink.properties +Properties associated with the cross-reference +text of an olink. + + + + +<xsl:attribute-set name="olink.properties"> + <xsl:attribute name="show-destination">replace</xsl:attribute> +</xsl:attribute-set> + + + +Description + +This attribute set is applied to the +fo:basic-link element of an olink. It is not applied to the +optional page number or optional title of the external +document. + + + + + + +prefer.internal.olink +boolean + + +prefer.internal.olink +Prefer a local olink reference to an external reference + + + + +<xsl:param name="prefer.internal.olink" select="0"></xsl:param> + + + +Description + +If you are re-using XML content modules in multiple documents, +you may want to redirect some of your olinks. This parameter +permits you to redirect an olink to the current document. + + +For example: you are writing documentation for a product, +which includes 3 manuals: a little installation +booklet (booklet.xml), a user +guide (user.xml), and a reference manual (reference.xml). +All 3 documents begin with the same introduction section (intro.xml) that +contains a reference to the customization section (custom.xml) which is +included in both user.xml and reference.xml documents. + + +How do you write the link to custom.xml in intro.xml +so that it is interpreted correctly in all 3 documents? + +If you use xref, it will fail in user.xml. + +If you use olink (pointing to reference.xml), +the reference in user.xml +will point to the customization section of the reference manual, while it is +actually available in user.xml. + + + +If you set the prefer.internal.olink +parameter to a non-zero value, then the processor will +first look in the olink database +for the olink's targetptr attribute value +in document matching the current.docid +parameter value. If it isn't found there, then +it tries the document in the database +with the targetdoc +value that matches the olink's targetdoc +attribute. + + +This feature permits an olink reference to resolve to +the current document if there is an element +with an id matching the olink's targetptr +value. The current document's olink data must be +included in the target database for this to work. + + +There is a potential for incorrect links if +the same id attribute value is used for different +content in different documents. +Some of your olinks may be redirected to the current document +when they shouldn't be. It is not possible to control +individual olink instances. + + + + + + + +target.database.document +uri + + +target.database.document +Name of master database file for resolving +olinks + + + + <xsl:param name="target.database.document">olinkdb.xml</xsl:param> + + +Description + + +To resolve olinks between documents, the stylesheets use a master +database document that identifies the target datafiles for all the +documents within the scope of the olinks. This parameter value is the +URI of the master document to be read during processing to resolve +olinks. The default value is olinkdb.xml. + +The data structure of the file is defined in the +targetdatabase.dtd DTD. The database file +provides the high level elements to record the identifiers, locations, +and relationships of documents. The cross reference data for +individual documents is generally pulled into the database using +system entity references or XIncludes. See also +targets.filename. + + + + +targets.filename +string + + +targets.filename +Name of cross reference targets data file + + +<xsl:param name="targets.filename">target.db</xsl:param> + + +Description + + +In order to resolve olinks efficiently, the stylesheets can +generate an external data file containing information about +all potential cross reference endpoints in a document. +This parameter lets you change the name of the generated +file from the default name target.db. +The name must agree with that used in the target database +used to resolve olinks during processing. +See also target.database.document. + + + + + + +use.local.olink.style +boolean + + +use.local.olink.style +Process olinks using xref style of current +document + + +<xsl:param name="use.local.olink.style" select="0"></xsl:param> + +Description + +When cross reference data is collected for use by olinks, the data for each potential target includes one field containing a completely assembled cross reference string, as if it were an xref generated in that document. Other fields record the separate title, number, and element name of each target. When an olink is formed to a target from another document, the olink resolves to that preassembled string by default. If the use.local.olink.style parameter is set to non-zero, then instead the cross +reference string is formed again from the target title, number, and +element name, using the stylesheet processing the targeting document. +Then olinks will match the xref style in the targeting document +rather than in the target document. If both documents are processed +with the same stylesheet, then the results will be the same. + + + +Cross References + + +insert.xref.page.number +list +no +yes +maybe + + +insert.xref.page.number +Turns page numbers in xrefs on and off + + + + +<xsl:param name="insert.xref.page.number">no</xsl:param> + + + +Description + +The value of this parameter determines if +cross references (xrefs) in +printed output will +include page number citations. +It has three possible values. + + + +no +No page number references will be generated. + + + +yes +Page number references will be generated +for all xref elements. +The style of page reference may be changed +if an xrefstyle +attribute is used. + + + +maybe +Page number references will not be generated +for an xref element unless +it has an +xrefstyle +attribute whose value specifies a page reference. + + + + + + + + + +xref.properties +attribute set + + +xref.properties +Properties associated with cross-reference text + + + + +<xsl:attribute-set name="xref.properties"> +</xsl:attribute-set> + + + +Description + +This attribute set is used to set properties +on cross reference text. + + + + + + +xref.label-title.separator +string + + +xref.label-title.separator +Punctuation or space separating label from title in xref + + + +<xsl:param name="xref.label-title.separator">: </xsl:param> + + +Description + + +This parameter allows you to control the punctuation of certain +types of generated cross reference text. +When cross reference text is generated for an +xref or +olink element +using an xrefstyle attribute +that makes use of the select: feature, +and the selected components include both label and title, +then the value of this parameter is inserted between +label and title in the output. + + + + + + + +xref.label-page.separator +string + + +xref.label-page.separator +Punctuation or space separating label from page number in xref + + + +<xsl:param name="xref.label-page.separator"><xsl:text> </xsl:text></xsl:param> + + +Description + + +This parameter allows you to control the punctuation of certain +types of generated cross reference text. +When cross reference text is generated for an +xref or +olink element +using an xrefstyle attribute +that makes use of the select: feature, +and the selected components include both label and page +but no title, +then the value of this parameter is inserted between +label and page number in the output. +If a title is included, then other separators are used. + + + + + + + +xref.title-page.separator +string + + +xref.title-page.separator +Punctuation or space separating title from page number in xref + + + +<xsl:param name="xref.title-page.separator"><xsl:text> </xsl:text></xsl:param> + + +Description + + +This parameter allows you to control the punctuation of certain +types of generated cross reference text. +When cross reference text is generated for an +xref or +olink element +using an xrefstyle attribute +that makes use of the select: feature, +and the selected components include both title and page number, +then the value of this parameter is inserted between +title and page number in the output. + + + + + + + +insert.link.page.number +list +no +yes +maybe + + +insert.link.page.number +Turns page numbers in link elements on and off + + + + +<xsl:param name="insert.link.page.number">no</xsl:param> + + + +Description + +The value of this parameter determines if +cross references using the link element in +printed output will +include standard page number citations. +It has three possible values. + + + +no +No page number references will be generated. + + + +yes +Page number references will be generated +for all link elements. +The style of page reference may be changed +if an xrefstyle +attribute is used. + + + +maybe +Page number references will not be generated +for a link element unless +it has an +xrefstyle +attribute whose value specifies a page reference. + + + + +Although the xrefstyle attribute +can be used to turn the page reference on or off, it cannot be +used to control the formatting of the page number as it +can in xref. +In link it will always format with +the style established by the +gentext template with name="page.citation" +in the l:context name="xref". + + + + +Lists + + +compact.list.item.spacing +attribute set + + +compact.list.item.spacing +What space do you want between list items (when spacing="compact")? + + + +<xsl:attribute-set name="compact.list.item.spacing"> + <xsl:attribute name="space-before.optimum">0em</xsl:attribute> + <xsl:attribute name="space-before.minimum">0em</xsl:attribute> + <xsl:attribute name="space-before.maximum">0.2em</xsl:attribute> +</xsl:attribute-set> + +Description +Specify what spacing you want between each list item when +spacing is +compact. + + + + + +itemizedlist.properties +attribute set + + +itemizedlist.properties +Properties that apply to each list-block generated by itemizedlist. + + + +<xsl:attribute-set name="itemizedlist.properties" use-attribute-sets="list.block.properties"> +</xsl:attribute-set> + +Description +Properties that apply to each fo:list-block generated by itemizedlist. + + + + + +itemizedlist.label.properties +attribute set + + +itemizedlist.label.properties +Properties that apply to each label inside itemized list. + + + +<xsl:attribute-set name="itemizedlist.label.properties"> +</xsl:attribute-set> + +Description +Properties that apply to each label inside itemized list. E.g.: +<xsl:attribute-set name="itemizedlist.label.properties"> + <xsl:attribute name="text-align">right</xsl:attribute> +</xsl:attribute-set> + + + + + +itemizedlist.label.width +length + + + itemizedlist.label.width +The default width of the label (bullet) in an itemized list. + + + + + <xsl:param name="itemizedlist.label.width">1.0em</xsl:param> + + + +Description +Specifies the default width of the label (usually a bullet or other +symbol) in an itemized list. You can override the default value on any +particular list with the “dbfo” processing instruction using the +“label-width” pseudoattribute. + + + + + +list.block.properties +attribute set + + +list.block.properties +Properties that apply to each list-block generated by list. + + + +<xsl:attribute-set name="list.block.properties"> + <xsl:attribute name="provisional-label-separation">0.2em</xsl:attribute> + <xsl:attribute name="provisional-distance-between-starts">1.5em</xsl:attribute> +</xsl:attribute-set> + +Description +Properties that apply to each fo:list-block generated by itemizedlist/orderedlist. + + + + + +list.block.spacing +attribute set + + +list.block.spacing +What spacing do you want before and after lists? + + + +<xsl:attribute-set name="list.block.spacing"> + <xsl:attribute name="space-before.optimum">1em</xsl:attribute> + <xsl:attribute name="space-before.minimum">0.8em</xsl:attribute> + <xsl:attribute name="space-before.maximum">1.2em</xsl:attribute> + <xsl:attribute name="space-after.optimum">1em</xsl:attribute> + <xsl:attribute name="space-after.minimum">0.8em</xsl:attribute> + <xsl:attribute name="space-after.maximum">1.2em</xsl:attribute> +</xsl:attribute-set> + +Description +Specify the spacing required before and after a list. It is necessary to specify the space after a list block because lists can come inside of paras. + + + + + +list.item.spacing +attribute set + + +list.item.spacing +What space do you want between list items? + + + +<xsl:attribute-set name="list.item.spacing"> + <xsl:attribute name="space-before.optimum">1em</xsl:attribute> + <xsl:attribute name="space-before.minimum">0.8em</xsl:attribute> + <xsl:attribute name="space-before.maximum">1.2em</xsl:attribute> +</xsl:attribute-set> + +Description +Specify what spacing you want between each list item. + + + + + +orderedlist.properties +attribute set + + +orderedlist.properties +Properties that apply to each list-block generated by orderedlist. + + + +<xsl:attribute-set name="orderedlist.properties" use-attribute-sets="list.block.properties"> + <xsl:attribute name="provisional-distance-between-starts">2em</xsl:attribute> +</xsl:attribute-set> + +Description +Properties that apply to each fo:list-block generated by orderedlist. + + + + + +orderedlist.label.properties +attribute set + + +orderedlist.label.properties +Properties that apply to each label inside ordered list. + + + +<xsl:attribute-set name="orderedlist.label.properties"> +</xsl:attribute-set> + +Description +Properties that apply to each label inside ordered list. E.g.: +<xsl:attribute-set name="orderedlist.label.properties"> + <xsl:attribute name="text-align">right</xsl:attribute> +</xsl:attribute-set> + + + + + +orderedlist.label.width +length + + +orderedlist.label.width +The default width of the label (number) in an ordered list. + + + + +<xsl:param name="orderedlist.label.width">1.2em</xsl:param> + + + +Description +Specifies the default width of the label (usually a number or +sequence of numbers) in an ordered list. You can override the default +value on any particular list with the “dbfo” processing instruction +using the “label-width” pseudoattribute. + + + + + +variablelist.max.termlength +number + + +variablelist.max.termlength +Specifies the longest term in variablelists + + + + +<xsl:param name="variablelist.max.termlength">24</xsl:param> + + + +Description + +In variablelists, the listitem +is indented to leave room for the +term elements. That indent may be computed +if it is not specified with a termlength +attribute on the variablelist element. + + +The computation counts characters in the +term elements in the list +to find the longest term. However, some terms are very long +and would produce extreme indents. This parameter lets you +set a maximum character count. Any terms longer than the maximum +would line wrap. The default value is 24. + + +The character counts are converted to physical widths +by multiplying by 0.50em. There will be some variability +in how many actual characters fit in the space +since some characters are wider than others. + + + + + + + +variablelist.term.separator +string + + +variablelist.term.separator +Text to separate terms within a multi-term +varlistentry + + + + +<xsl:param name="variablelist.term.separator">, </xsl:param> + + +Description + +When a varlistentry contains multiple term +elements, the string specified in the value of the +variablelist.term.separator parameter is placed +after each term except the last. + + + To generate a line break between multiple terms in + a varlistentry, set a non-zero value for the + variablelist.term.break.after parameter. If + you do so, you may also want to set the value of the + variablelist.term.separator parameter to an + empty string (to suppress rendering of the default comma and space + after each term). + + + + + + + +variablelist.term.properties +attribute set + + +variablelist.term.properties +To add properties to the term elements in a variablelist. + + + + +<xsl:attribute-set name="variablelist.term.properties"> +</xsl:attribute-set> + + +Description +These properties are added to the block containing a +term in a variablelist. +Use this attribute-set to set +font properties or alignment, for example. + + + + + + +variablelist.term.break.after +boolean + + +variablelist.term.break.after +Generate line break after each term within a +multi-term varlistentry? + + + + +<xsl:param name="variablelist.term.break.after">0</xsl:param> + + +Description + +Set a non-zero value for the +variablelist.term.break.after parameter to +generate a line break between terms in a +multi-term varlistentry. + + +If you set a non-zero value for +variablelist.term.break.after, you may also +want to set the value of the +variablelist.term.separator parameter to an +empty string (to suppress rendering of the default comma and space +after each term). + + + + + +QAndASet + + +qandadiv.autolabel +boolean + + +qandadiv.autolabel +Are divisions in QAndASets enumerated? + + + +<xsl:param name="qandadiv.autolabel" select="1"></xsl:param> + + +Description + +If non-zero, unlabeled qandadivs will be enumerated. + + + + + + + +qanda.inherit.numeration +boolean + + +qanda.inherit.numeration +Does enumeration of QandASet components inherit the numeration of parent elements? + + + + +<xsl:param name="qanda.inherit.numeration" select="1"></xsl:param> + + + +Description + +If non-zero, numbered qandadiv elements and +question and answer inherit the enumeration of +the ancestors of the qandaset. + + + + + + + +qanda.defaultlabel +list +number +qanda +none + + +qanda.defaultlabel +Sets the default for defaultlabel on QandASet. + + + + +<xsl:param name="qanda.defaultlabel">number</xsl:param> + + + +Description + +If no defaultlabel attribute is specified on +a qandaset, this value is used. It is generally one of the legal +values for the defaultlabel attribute (none, +number or +qanda), or one of the additional stylesheet-specific values +(qnumber or qnumberanda). +The default value is 'number'. + +The values are rendered as follows: + +qanda + +questions are labeled "Q:" and +answers are labeled "A:". + + + +number + +The questions are enumerated and the answers +are not labeled. + + + +qnumber + +The questions are labeled "Q:" followed by a number, and answers are not +labeled. +When sections are numbered, adding a label +to the number distinguishes the question numbers +from the section numbers. +This value is not allowed in the +defaultlabel attribute +of a qandaset element. + + + +qnumberanda + +The questions are labeled "Q:" followed by a number, and +the answers are labeled "A:". +When sections are numbered, adding a label +to the number distinguishes the question numbers +from the section numbers. +This value is not allowed in the +defaultlabel attribute +of a qandaset element. + + + +none + +No distinguishing label precedes Questions or Answers. + + + + + + + + + + +qanda.in.toc +boolean + + +qanda.in.toc +Should qandaentry questions appear in +the document table of contents? + + + +<xsl:param name="qanda.in.toc" select="0"></xsl:param> + + +Description + +If true (non-zero), then the generated table of contents +for a document will include qandaset titles, +qandadiv titles, +and question elements. The default value (zero) excludes +them from the TOC. + +This parameter does not affect any tables of contents +that may be generated inside a qandaset or qandadiv. + + + + + + + +qanda.nested.in.toc +boolean + + +qanda.nested.in.toc +Should nested answer/qandaentry instances appear in TOC? + + + + +<xsl:param name="qanda.nested.in.toc" select="0"></xsl:param> + + + +Description + +If non-zero, instances of qandaentry +that are children of answer elements are shown in +the TOC. + + + + +Bibliography + + +bibliography.style +list +normal +iso690 + + +bibliography.style +Style used for formatting of biblioentries. + + + + +<xsl:param name="bibliography.style">normal</xsl:param> + + + +Description + +Currently only normal and +iso690 styles are supported. + +In order to use ISO690 style to the full extent you might need +to use additional markup described on the +following WiKi page. + + + + + + +biblioentry.item.separator +string + + +biblioentry.item.separator +Text to separate bibliography entries + + + +<xsl:param name="biblioentry.item.separator">. </xsl:param> + + +Description + +Text to separate bibliography entries + + + + + + + +bibliography.collection +string + + +bibliography.collection +Name of the bibliography collection file + + + + +<xsl:param name="bibliography.collection">http://docbook.sourceforge.net/release/bibliography/bibliography.xml</xsl:param> + + + + +Description + +Maintaining bibliography entries across a set of documents is tedious, time +consuming, and error prone. It makes much more sense, usually, to store all of +the bibliography entries in a single place and simply extract +the ones you need in each document. + +That's the purpose of the +bibliography.collection parameter. To setup a global +bibliography database, follow these steps: + +First, create a stand-alone bibliography document that contains all of +the documents that you wish to reference. Make sure that each bibliography +entry (whether you use biblioentry or bibliomixed) +has an ID. + +My global bibliography, ~/bibliography.xml begins +like this: + + +<!DOCTYPE bibliography + PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN" + "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd"> +<bibliography><title>References</title> + +<bibliomixed id="xml-rec"><abbrev>XML 1.0</abbrev>Tim Bray, +Jean Paoli, C. M. Sperberg-McQueen, and Eve Maler, editors. +<citetitle><ulink url="http://www.w3.org/TR/REC-xml">Extensible Markup +Language (XML) 1.0 Second Edition</ulink></citetitle>. +World Wide Web Consortium, 2000. +</bibliomixed> + +<bibliomixed id="xml-names"><abbrev>Namespaces</abbrev>Tim Bray, +Dave Hollander, +and Andrew Layman, editors. +<citetitle><ulink url="http://www.w3.org/TR/REC-xml-names/">Namespaces in +XML</ulink></citetitle>. +World Wide Web Consortium, 1999. +</bibliomixed> + +<!-- ... --> +</bibliography> + + + +When you create a bibliography in your document, simply +provide empty bibliomixed +entries for each document that you wish to cite. Make sure that these +elements have the same ID as the corresponding real +entry in your global bibliography. + +For example: + + +<bibliography><title>Bibliography</title> + +<bibliomixed id="xml-rec"/> +<bibliomixed id="xml-names"/> +<bibliomixed id="DKnuth86">Donald E. Knuth. <citetitle>Computers and +Typesetting: Volume B, TeX: The Program</citetitle>. Addison-Wesley, +1986. ISBN 0-201-13437-3. +</bibliomixed> +<bibliomixed id="relaxng"/> + +</bibliography> + + +Note that it's perfectly acceptable to mix entries from your +global bibliography with normal entries. You can use +xref or other elements to cross-reference your +bibliography entries in exactly the same way you do now. + +Finally, when you are ready to format your document, simply set the +bibliography.collection parameter (in either a +customization layer or directly through your processor's interface) to +point to your global bibliography. + +The stylesheets will format the bibliography in your document as if +all of the entries referenced appeared there literally. + + + + + + +bibliography.numbered +boolean + + +bibliography.numbered +Should bibliography entries be numbered? + + + + +<xsl:param name="bibliography.numbered" select="0"></xsl:param> + + + +Description + +If non-zero bibliography entries will be numbered + + + + + + + biblioentry.properties + attribute set + + +biblioentry.properties +To set the style for biblioentry. + + + +<xsl:attribute-set name="biblioentry.properties" use-attribute-sets="normal.para.spacing"> + <xsl:attribute name="start-indent">0.5in</xsl:attribute> + <xsl:attribute name="text-indent">-0.5in</xsl:attribute> +</xsl:attribute-set> + + +Description +How do you want biblioentry styled? +Set the font-size, weight, space-above and space-below, indents, etc. to the style required + + + + +Glossary + + +glossterm.auto.link +boolean + + +glossterm.auto.link +Generate links from glossterm to glossentry automatically? + + + + +<xsl:param name="glossterm.auto.link" select="0"></xsl:param> + + + +Description + +If non-zero, links from inline glossterms to the corresponding +glossentry elements in a glossary or glosslist +will be automatically generated. This is useful when your glossterms are consistent +and you don't want to add links manually. + +The automatic link generation feature is not used on glossterm elements +that have a linkend attribute. + + + + + + +firstterm.only.link +boolean + + +firstterm.only.link +Does automatic glossterm linking only apply to firstterms? + + + + +<xsl:param name="firstterm.only.link" select="0"></xsl:param> + + + +Description + +If non-zero, only firstterms will be automatically linked +to the glossary. If glossary linking is not enabled, this parameter +has no effect. + + + + + + +glossary.collection +string + + +glossary.collection +Name of the glossary collection file + + + + +<xsl:param name="glossary.collection"></xsl:param> + + + +Description + +Glossaries maintained independently across a set of documents +are likely to become inconsistent unless considerable effort is +expended to keep them in sync. It makes much more sense, usually, to +store all of the glossary entries in a single place and simply +extract the ones you need in each document. + +That's the purpose of the +glossary.collection parameter. To setup a global +glossary database, follow these steps: + +Setting Up the Glossary Database + +First, create a stand-alone glossary document that contains all of +the entries that you wish to reference. Make sure that each glossary +entry has an ID. + +Here's an example glossary: + + + +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE glossary + PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN" + "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd"> +<glossary> +<glossaryinfo> +<editor><firstname>Eric</firstname><surname>Raymond</surname></editor> +<title>Jargon File 4.2.3 (abridged)</title> +<releaseinfo>Just some test data</releaseinfo> +</glossaryinfo> + +<glossdiv><title>0</title> + +<glossentry> +<glossterm>0</glossterm> +<glossdef> +<para>Numeric zero, as opposed to the letter `O' (the 15th letter of +the English alphabet). In their unmodified forms they look a lot +alike, and various kluges invented to make them visually distinct have +compounded the confusion. If your zero is center-dotted and letter-O +is not, or if letter-O looks almost rectangular but zero looks more +like an American football stood on end (or the reverse), you're +probably looking at a modern character display (though the dotted zero +seems to have originated as an option on IBM 3270 controllers). If +your zero is slashed but letter-O is not, you're probably looking at +an old-style ASCII graphic set descended from the default typewheel on +the venerable ASR-33 Teletype (Scandinavians, for whom /O is a letter, +curse this arrangement). (Interestingly, the slashed zero long +predates computers; Florian Cajori's monumental "A History of +Mathematical Notations" notes that it was used in the twelfth and +thirteenth centuries.) If letter-O has a slash across it and the zero +does not, your display is tuned for a very old convention used at IBM +and a few other early mainframe makers (Scandinavians curse <emphasis>this</emphasis> +arrangement even more, because it means two of their letters collide). +Some Burroughs/Unisys equipment displays a zero with a <emphasis>reversed</emphasis> +slash. Old CDC computers rendered letter O as an unbroken oval and 0 +as an oval broken at upper right and lower left. And yet another +convention common on early line printers left zero unornamented but +added a tail or hook to the letter-O so that it resembled an inverted +Q or cursive capital letter-O (this was endorsed by a draft ANSI +standard for how to draw ASCII characters, but the final standard +changed the distinguisher to a tick-mark in the upper-left corner). +Are we sufficiently confused yet?</para> +</glossdef> +</glossentry> + +<glossentry> +<glossterm>1TBS</glossterm> +<glossdef> +<para role="accidence"> +<phrase role="pronounce"></phrase> +<phrase role="partsofspeach">n</phrase> +</para> +<para>The "One True Brace Style"</para> +<glossseealso>indent style</glossseealso> +</glossdef> +</glossentry> + +<!-- ... --> + +</glossdiv> + +<!-- ... --> + +</glossary> + + + + +Marking Up Glossary Terms + +That takes care of the glossary database, now you have to get the entries +into your document. Unlike bibliography entries, which can be empty, creating +placeholder glossary entries would be very tedious. So instead, +support for glossary.collection relies on implicit linking. + +In your source document, simply use firstterm and +glossterm to identify the terms you wish to have included +in the glossary. The stylesheets assume that you will either set the +baseform attribute correctly, or that the +content of the element exactly matches a term in your glossary. + +If you're using a glossary.collection, don't +make explicit links on the terms in your document. + +So, in your document, you might write things like this: + + +<para>This is dummy text, without any real meaning. +The point is simply to reference glossary terms like <glossterm>0</glossterm> +and the <firstterm baseform="1TBS">One True Brace Style (1TBS)</firstterm>. +The <glossterm>1TBS</glossterm>, as you can probably imagine, is a nearly +religious issue.</para> + + +If you set the firstterm.only.link parameter, +only the terms marked with firstterm will be links. +Otherwise, all the terms will be linked. + + + +Marking Up the Glossary + +The glossary itself has to be identified for the stylesheets. For lack +of a better choice, the role is used. +To identify the glossary as the target for automatic processing, set +the role to auto. The title of this +glossary (and any other information from the glossaryinfo +that's rendered by your stylesheet) will be displayed, but the entries will +come from the database. + + +Unfortunately, the glossary can't be empty, so you must put in +at least one glossentry. The content of this entry +is irrelevant, it will not be rendered: + + +<glossary role="auto"> +<glossentry> +<glossterm>Irrelevant</glossterm> +<glossdef> +<para>If you can see this, the document was processed incorrectly. Use +the <parameter>glossary.collection</parameter> parameter.</para> +</glossdef> +</glossentry> +</glossary> + + +What about glossary divisions? If your glossary database has glossary +divisions and your automatic glossary contains at least +one glossdiv, the automic glossary will have divisions. +If the glossdiv is missing from either location, no divisions +will be rendered. + +Glossary entries (and divisions, if appropriate) in the glossary will +occur in precisely the order they occur in your database. + + + +Formatting the Document + +Finally, when you are ready to format your document, simply set the +glossary.collection parameter (in either a +customization layer or directly through your processor's interface) to +point to your global glossary. + +The stylesheets will format the glossary in your document as if +all of the entries implicilty referenced appeared there literally. + + +Limitations + +Glossary cross-references within the glossary are +not supported. For example, this will not work: + + +<glossentry> +<glossterm>gloss-1</glossterm> +<glossdef><para>A description that references <glossterm>gloss-2</glossterm>.</para> +<glossseealso>gloss-2</glossseealso> +</glossdef> +</glossentry> + + +If you put glossary cross-references in your glossary that way, +you'll get the cryptic error: Warning: +glossary.collection specified, but there are 0 automatic +glossaries. + +Instead, you must do two things: + + + +Markup your glossary using glossseealso: + + +<glossentry> +<glossterm>gloss-1</glossterm> +<glossdef><para>A description that references <glossterm>gloss-2</glossterm>.</para> +<glossseealso>gloss-2</glossseealso> +</glossdef> +</glossentry> + + + + +Make sure there is at least one glossterm reference to +gloss-2 in your document. The +easiest way to do that is probably within a remark in your +automatic glossary: + + +<glossary role="auto"> +<remark>Make sure there's a reference to <glossterm>gloss-2</glossterm>.</remark> +<glossentry> +<glossterm>Irrelevant</glossterm> +<glossdef> +<para>If you can see this, the document was processed incorrectly. Use +the <parameter>glossary.collection</parameter> parameter.</para> +</glossdef> +</glossentry> +</glossary> + + + + + + + + + + +glossary.as.blocks +boolean + + +glossary.as.blocks +Present glossarys using blocks instead of lists? + + + + +<xsl:param name="glossary.as.blocks" select="0"></xsl:param> + + + +Description + +If non-zero, glossarys will be formatted as +blocks. + +If you have long glossterms, proper list +markup in the FO case may produce unattractive lists. By setting this +parameter, you can force the stylesheets to produce block markup +instead of proper lists. + +You can override this setting with a processing instruction as the +child of glossary: dbfo +glossary-presentation="blocks" or dbfo +glossary-presentation="list" + + + + + + +glosslist.as.blocks +boolean + + +glosslist.as.blocks +Use blocks for glosslists? + + + + +<xsl:param name="glosslist.as.blocks" select="0"></xsl:param> + + + +Description + +See glossary.as.blocks. + + + + + + +glossentry.list.item.properties +attribute set + + +glossentry.list.item.properties +To add properties to each glossentry in a list. + + + +<xsl:attribute-set name="glossentry.list.item.properties"> + <xsl:attribute name="space-before.optimum">1em</xsl:attribute> + <xsl:attribute name="space-before.minimum">0.8em</xsl:attribute> + <xsl:attribute name="space-before.maximum">1.2em</xsl:attribute> +</xsl:attribute-set> + + +Description +These properties are added to the fo:list-item containing a +glossentry in a glossary when the glossary.as.blocks parameter +is zero. +Use this attribute-set to set +spacing between entries, for example. + + + + + + +glossterm.block.properties +attribute set + + +glossterm.block.properties +To add properties to the block of a glossentry's glossterm. + + + +<xsl:attribute-set name="glossterm.block.properties"> + <xsl:attribute name="space-before.optimum">1em</xsl:attribute> + <xsl:attribute name="space-before.minimum">0.8em</xsl:attribute> + <xsl:attribute name="space-before.maximum">1.2em</xsl:attribute> + <xsl:attribute name="keep-with-next.within-column">always</xsl:attribute> + <xsl:attribute name="keep-together.within-column">always</xsl:attribute> +</xsl:attribute-set> + + +Description +These properties are added to the block containing a +glossary term in a glossary when the glossary.as.blocks parameter +is non-zero. +Use this attribute-set to set the space above and below, +font properties, +and any indent for the glossary term. + + + + + + +glossdef.block.properties +attribute set + + +glossdef.block.properties +To add properties to the block of a glossary definition. + + + +<xsl:attribute-set name="glossdef.block.properties"> + <xsl:attribute name="margin-{$direction.align.start}">.25in</xsl:attribute> +</xsl:attribute-set> + + +Description +These properties are added to the block containing a +glossary definition in a glossary when +the glossary.as.blocks parameter +is non-zero. +Use this attribute-set to set the space above and below, +any font properties, +and any indent for the glossary definition. + + + + + + +glossterm.list.properties +attribute set + + +glossterm.list.properties +To add properties to the glossterm in a list. + + + + +<xsl:attribute-set name="glossterm.list.properties"> +</xsl:attribute-set> + + +Description +These properties are added to the block containing a +glossary term in a glossary when the glossary.as.blocks parameter +is zero. +Use this attribute-set to set +font properties, for example. + + + + + + +glossdef.list.properties +attribute set + + +glossdef.list.properties +To add properties to the glossary definition in a list. + + + + +<xsl:attribute-set name="glossdef.list.properties"> +</xsl:attribute-set> + + +Description +These properties are added to the block containing a +glossary definition in a glossary when +the glossary.as.blocks parameter +is zero. +Use this attribute-set to set font properties, for example. + + + + + + +glossterm.width +length + + +glossterm.width +Width of glossterm in list presentation mode + + + + +<xsl:param name="glossterm.width">2in</xsl:param> + + + +Description + +This parameter specifies the width reserved for glossary terms when +a list presentation is used. + + + + + + +glossterm.separation +length + + +glossterm.separation +Separation between glossary terms and descriptions in list mode + + + + +<xsl:param name="glossterm.separation">0.25in</xsl:param> + + + +Description + +Specifies the miminum horizontal +separation between glossary terms and descriptions when +they are presented side-by-side using lists +when the glossary.as.blocks +is zero. + + + + + + +glossentry.show.acronym +list +no +yes +primary + + +glossentry.show.acronym +Display glossentry acronyms? + + + + +<xsl:param name="glossentry.show.acronym">no</xsl:param> + + + +Description + +A setting of yes means they should be displayed; +no means they shouldn't. If primary is used, +then they are shown as the primary text for the entry. + + +This setting controls both acronym and +abbrev elements in the glossentry. + + + + + + + +glossary.sort +boolean + + +glossary.sort +Sort glossentry elements? + + + + +<xsl:param name="glossary.sort" select="0"></xsl:param> + + + +Description + +If non-zero, then the glossentry elements within a +glossary, glossdiv, or glosslist are sorted on the glossterm, using +the current lang setting. If zero (the default), then +glossentry elements are not sorted and are presented +in document order. + + + + + +Miscellaneous + + +formal.procedures +boolean + + +formal.procedures +Selects formal or informal procedures + + + + +<xsl:param name="formal.procedures" select="1"></xsl:param> + + + +Description + +Formal procedures are numbered and always have a title. + + + + + + + +formal.title.placement +table + + +formal.title.placement +Specifies where formal object titles should occur + + + + +<xsl:param name="formal.title.placement"> +figure before +example before +equation before +table before +procedure before +task before +</xsl:param> + + + +Description + +Specifies where formal object titles should occur. For each formal object +type (figure, +example, +equation, +table, and procedure) +you can specify either the keyword +before or +after. + + + + + + +runinhead.default.title.end.punct +string + + +runinhead.default.title.end.punct +Default punctuation character on a run-in-head + + + +<xsl:param name="runinhead.default.title.end.punct">.</xsl:param> + + + +Description + +If non-zero, For a formalpara, use the specified +string as the separator between the title and following text. The period is the default value. + + + + + + +runinhead.title.end.punct +string + + +runinhead.title.end.punct +Characters that count as punctuation on a run-in-head + + + + +<xsl:param name="runinhead.title.end.punct">.!?:</xsl:param> + + + +Description + +Specify which characters are to be counted as punctuation. These +characters are checked for a match with the last character of the +title. If no match is found, the +runinhead.default.title.end.punct contents are +inserted. This is to avoid duplicated punctuation in the output. + + + + + + + +show.comments +boolean + + +show.comments +Display remark elements? + + + + +<xsl:param name="show.comments" select="1"></xsl:param> + + + +Description + +If non-zero, comments will be displayed, otherwise they +are suppressed. Comments here refers to the remark element +(which was called comment prior to DocBook +4.0), not XML comments (<-- like this -->) which are +unavailable. + + + + + + + +punct.honorific +string + + +punct.honorific +Punctuation after an honorific in a personal name. + + + + +<xsl:param name="punct.honorific">.</xsl:param> + + + +Description + +This parameter specifies the punctuation that should be added after an +honorific in a personal name. + + + + + + +segmentedlist.as.table +boolean + + +segmentedlist.as.table +Format segmented lists as tables? + + + + +<xsl:param name="segmentedlist.as.table" select="0"></xsl:param> + + + +Description + +If non-zero, segmentedlists will be formatted as +tables. + + + + + + +variablelist.as.blocks +boolean + + +variablelist.as.blocks +Format variablelists lists as blocks? + + + + +<xsl:param name="variablelist.as.blocks" select="0"></xsl:param> + + + +Description + +If non-zero, variablelists will be formatted as +blocks. + +If you have long terms, proper list markup in the FO case may produce +unattractive lists. By setting this parameter, you can force the stylesheets +to produce block markup instead of proper lists. + +You can override this setting with a processing instruction as the +child of variablelist: dbfo +list-presentation="blocks" or dbfo +list-presentation="list". + +When using list-presentation="list", +you can also control the amount of space used for the terms with +the dbfo term-width=".25in" processing instruction, +the termlength attribute on variablelist, +or allow the stylesheets to attempt to calculate the amount of space to leave based on the +number of letters in the longest term. + + + <variablelist> + <?dbfo list-presentation="list"?> + <?dbfo term-width="1.5in"?> + <?dbhtml list-presentation="table"?> + <?dbhtml term-width="1.5in"?> + <varlistentry> + <term>list</term> + <listitem> + <para> + Formatted as a list even if variablelist.as.blocks is set to 1. + </para> + </listitem> + </varlistentry> + </variablelist> + + + + + + + + + blockquote.properties + attribute set + + +blockquote.properties +To set the style for block quotations. + + + + +<xsl:attribute-set name="blockquote.properties"> +<xsl:attribute name="margin-{$direction.align.start}">0.5in</xsl:attribute> +<xsl:attribute name="margin-{$direction.align.end}">0.5in</xsl:attribute> +<xsl:attribute name="space-after.minimum">0.5em</xsl:attribute> +<xsl:attribute name="space-after.optimum">1em</xsl:attribute> +<xsl:attribute name="space-after.maximum">2em</xsl:attribute> +</xsl:attribute-set> + + + +Description + +The blockquote.properties attribute set specifies +the formating properties of block quotations. + + + + + + +ulink.show +boolean + + +ulink.show +Display URLs after ulinks? + + + + +<xsl:param name="ulink.show" select="1"></xsl:param> + + + +Description + +If non-zero, the URL of each ulink will +appear after the text of the link. If the text of the link and the URL +are identical, the URL is suppressed. + +See also ulink.footnotes. + +DocBook 5 does not have an ulink element. When processing +DocBoook 5 documents, ulink.show applies to all inline +elements that are marked up with xlink:href attributes +that point to external resources. + + + + + + + +ulink.footnotes +boolean + + +ulink.footnotes +Generate footnotes for ulinks? + + + + +<xsl:param name="ulink.footnotes" select="0"></xsl:param> + + + +Description + +If non-zero, and if ulink.show also is non-zero, +the URL of each ulink will appear as a footnote. + +DocBook 5 does not have an ulink element. When processing +DocBoook 5 documents, ulink.footnotes applies to all inline +elements that are marked up with xlink:href attributes +that point to external resources. + + + + + + + +ulink.hyphenate +string + + +ulink.hyphenate +Allow URLs to be automatically hyphenated + + + + +<xsl:param name="ulink.hyphenate"></xsl:param> + + + +Description + +If not empty, the specified character (or more generally, content) is +added to URLs after every character included in the string +in the ulink.hyphenate.chars parameter (default +is /). If the character in this parameter is a +Unicode soft hyphen (0x00AD) or Unicode zero-width space (0x200B), some FO +processors will be able to reasonably hyphenate long URLs. + +As of 28 Jan 2002, discretionary hyphens are more widely and correctly +supported than zero-width spaces for this purpose. + + + + + + +ulink.hyphenate.chars +string + + +ulink.hyphenate.chars +List of characters to allow ulink URLs to be automatically hyphenated on + + + + +<xsl:param name="ulink.hyphenate.chars">/</xsl:param> + + + +Description + +If the ulink.hyphenate is not empty, then +hyphenation of ulinks is turned on, and any +character contained in this parameter is treated as an allowable +hyphenation point. + +The default value is /, but the parameter +could be customized +to contain other URL characters, as for example: + +<xsl:param name="ulink.hyphenate.chars">:/@&?.#</xsl:param> + + + + + + + +shade.verbatim +boolean + + +shade.verbatim +Should verbatim environments be shaded? + + + +<xsl:param name="shade.verbatim" select="0"></xsl:param> + + +Description + +In the FO stylesheet, if this parameter is non-zero then the +shade.verbatim.style properties will be applied +to verbatim environments. + +In the HTML stylesheet, this parameter is now deprecated. Use +CSS instead. + + + + + + +shade.verbatim.style +attribute set + + +shade.verbatim.style +Properties that specify the style of shaded verbatim listings + + + + + +<xsl:attribute-set name="shade.verbatim.style"> + <xsl:attribute name="background-color">#E0E0E0</xsl:attribute> +</xsl:attribute-set> + + + +Description + +Properties that specify the style of shaded verbatim listings. The +parameters specified (the border and background color) are added to +the styling of the xsl-fo output. A border might be specified as "thin +black solid" for example. See xsl-fo + + + + + + +hyphenate.verbatim +boolean + + +hyphenate.verbatim +Should verbatim environments be hyphenated on space characters? + + + +<xsl:param name="hyphenate.verbatim" select="0"></xsl:param> + + +Description + +If the lines of program listing are too long to fit into one +line it is quite common to split them at space and indicite by hook +arrow that code continues on the next line. You can turn on this +behaviour for programlisting, +screen and synopsis elements by +using this parameter. + +Note that you must also enable line wrapping for verbatim environments and +select appropriate hyphenation character (e.g. hook arrow). This can +be done using monospace.verbatim.properties +attribute set: + +<xsl:attribute-set name="monospace.verbatim.properties" + use-attribute-sets="verbatim.properties monospace.properties"> + <xsl:attribute name="wrap-option">wrap</xsl:attribute> + <xsl:attribute name="hyphenation-character">&#x25BA;</xsl:attribute> +</xsl:attribute-set> + +For a list of arrows available in Unicode see http://www.unicode.org/charts/PDF/U2190.pdf and http://www.unicode.org/charts/PDF/U2900.pdf and make sure that +selected character is available in the font you are using for verbatim +environments. + + + + + + +hyphenate.verbatim.characters +string + + +hyphenate.verbatim.characters +List of characters after which a line break can occur in listings + + + + +<xsl:param name="hyphenate.verbatim.characters"></xsl:param> + + + +Description + +If you enable hyphenate.verbatim line +breaks are allowed only on space characters. If this is not enough for +your document, you can specify list of additional characters after +which line break is allowed in this parameter. + + + + + + +use.svg +boolean + + +use.svg +Allow SVG in the result tree? + + + + +<xsl:param name="use.svg" select="1"></xsl:param> + + + +Description + +If non-zero, SVG will be considered an acceptable image format. SVG +is passed through to the result tree, so correct rendering of the resulting +diagram depends on the formatter (FO processor or web browser) that is used +to process the output from the stylesheet. + + + + + + +use.role.as.xrefstyle +boolean + + +use.role.as.xrefstyle +Use role attribute for +xrefstyle on xref? + + + + +<xsl:param name="use.role.as.xrefstyle" select="1"></xsl:param> + + + +Description + +In DocBook documents that conform to a schema older than V4.3, this parameter allows +role to serve the purpose of specifying the cross reference style. + +If non-zero, the role attribute on +xref will be used to select the cross reference style. +In DocBook V4.3, the xrefstyle attribute was added for this purpose. +If the xrefstyle attribute is present, +role will be ignored, regardless of the setting +of this parameter. + + + +Example + +The following small stylesheet shows how to configure the +stylesheets to make use of the cross reference style: + +<?xml version="1.0"?> +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + version="1.0"> + +<xsl:import href="../xsl/html/docbook.xsl"/> + +<xsl:output method="html"/> + +<xsl:param name="local.l10n.xml" select="document('')"/> +<l:i18n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0"> + <l:l10n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0" language="en"> + <l:context name="xref"> + <l:template name="chapter" style="title" text="Chapter %n, %t"/> + <l:template name="chapter" text="Chapter %n"/> + </l:context> + </l:l10n> +</l:i18n> + +</xsl:stylesheet> + +With this stylesheet, the cross references in the following document: + +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN" + "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd"> +<book id="book"><title>Book</title> + +<preface> +<title>Preface</title> + +<para>Normal: <xref linkend="ch1"/>.</para> +<para>Title: <xref xrefstyle="title" linkend="ch1"/>.</para> + +</preface> + +<chapter id="ch1"> +<title>First Chapter</title> + +<para>Irrelevant.</para> + +</chapter> +</book> + +will appear as: + + +Normal: Chapter 1. +Title: Chapter 1, First Chapter. + + + + + + + +menuchoice.separator +string + + +menuchoice.separator +Separator between items of a menuchoice +other than guimenuitem and +guisubmenu + + + + +<xsl:param name="menuchoice.separator">+</xsl:param> + + + +Description + +Separator used to connect items of a menuchoice other +than guimenuitem and guisubmenu. The latter +elements are linked with menuchoice.menu.separator. + + + + + + + +menuchoice.menu.separator +string + + +menuchoice.menu.separator +Separator between items of a menuchoice +with guimenuitem or +guisubmenu + + + + +<xsl:param name="menuchoice.menu.separator"> → </xsl:param> + + + +Description + +Separator used to connect items of a menuchoice with +guimenuitem or guisubmenu. Other elements +are linked with menuchoice.separator. + +The default value is &#x2192;, which is the +&rarr; (right arrow) character entity. +The current FOP (0.20.5) requires setting the font-family +explicitly. + +The default value also includes spaces around the arrow, +which will allow a line to break. Replace the spaces with +&#xA0; (nonbreaking space) if you don't want those +spaces to break. + + + + + + + +default.float.class +string + + +default.float.class +Specifies the default float class + + + + +<xsl:param name="default.float.class"> + <xsl:choose> + <xsl:when test="contains($stylesheet.result.type,'html')">left</xsl:when> + <xsl:otherwise>before</xsl:otherwise> + </xsl:choose> +</xsl:param> + + + +Description + +Selects the direction in which a float should be placed. for +xsl-fo this is before, for html it is left. For Western texts, the +before direction is the top of the page. + + + + + + +footnote.number.format +list +11,2,3... +AA,B,C... +aa,b,c... +ii,ii,iii... +II,II,III... + + +footnote.number.format +Identifies the format used for footnote numbers + + + + +<xsl:param name="footnote.number.format">1</xsl:param> + + + +Description + +The footnote.number.format specifies the format +to use for footnote numeration (1, i, I, a, or A). + + + + + + +table.footnote.number.format +list +11,2,3... +AA,B,C... +aa,b,c... +ii,ii,iii... +II,II,III... + + +table.footnote.number.format +Identifies the format used for footnote numbers in tables + + + + +<xsl:param name="table.footnote.number.format">a</xsl:param> + + + +Description + +The table.footnote.number.format specifies the format +to use for footnote numeration (1, i, I, a, or A) in tables. + + + + + + +footnote.number.symbols + + + +footnote.number.symbols +Special characters to use as footnote markers + + + + +<xsl:param name="footnote.number.symbols"></xsl:param> + + + +Description + +If footnote.number.symbols is not the empty string, +footnotes will use the characters it contains as footnote symbols. For example, +*&#x2020;&#x2021;&#x25CA;&#x2720; will identify +footnotes with *, , , +, and . If there are more footnotes +than symbols, the stylesheets will fall back to numbered footnotes using +footnote.number.format. + +The use of symbols for footnotes depends on the ability of your +processor (or browser) to render the symbols you select. Not all systems are +capable of displaying the full range of Unicode characters. If the quoted characters +in the preceding paragraph are not displayed properly, that's a good indicator +that you may have trouble using those symbols for footnotes. + + + + + + +table.footnote.number.symbols +string + + +table.footnote.number.symbols +Special characters to use a footnote markers in tables + + + + +<xsl:param name="table.footnote.number.symbols"></xsl:param> + + + +Description + +If table.footnote.number.symbols is not the empty string, +table footnotes will use the characters it contains as footnote symbols. For example, +*&#x2020;&#x2021;&#x25CA;&#x2720; will identify +footnotes with *, , , +, and . If there are more footnotes +than symbols, the stylesheets will fall back to numbered footnotes using +table.footnote.number.format. + +The use of symbols for footnotes depends on the ability of your +processor (or browser) to render the symbols you select. Not all systems are +capable of displaying the full range of Unicode characters. If the quoted characters +in the preceding paragraph are not displayed properly, that's a good indicator +that you may have trouble using those symbols for footnotes. + + + + + + +footnote.properties +attribute set + + +footnote.properties +Properties applied to each footnote body + + + + + +<xsl:attribute-set name="footnote.properties"> + <xsl:attribute name="font-family"><xsl:value-of select="$body.fontset"></xsl:value-of></xsl:attribute> + <xsl:attribute name="font-size"><xsl:value-of select="$footnote.font.size"></xsl:value-of></xsl:attribute> + <xsl:attribute name="font-weight">normal</xsl:attribute> + <xsl:attribute name="font-style">normal</xsl:attribute> + <xsl:attribute name="text-align"><xsl:value-of select="$alignment"></xsl:value-of></xsl:attribute> + <xsl:attribute name="start-indent">0pt</xsl:attribute> + <xsl:attribute name="text-indent">0pt</xsl:attribute> + <xsl:attribute name="hyphenate"><xsl:value-of select="$hyphenate"></xsl:value-of></xsl:attribute> + <xsl:attribute name="wrap-option">wrap</xsl:attribute> + <xsl:attribute name="linefeed-treatment">treat-as-space</xsl:attribute> +</xsl:attribute-set> + + + +Description + +This attribute set is applied to the footnote-block +for each footnote. +It can be used to set the +font-size, font-family, and other inheritable properties that will be +applied to all footnotes. + + + + + + +table.footnote.properties +attribute set + + +table.footnote.properties +Properties applied to each table footnote body + + + + + +<xsl:attribute-set name="table.footnote.properties"> + <xsl:attribute name="font-family"><xsl:value-of select="$body.fontset"></xsl:value-of></xsl:attribute> + <xsl:attribute name="font-size"><xsl:value-of select="$footnote.font.size"></xsl:value-of></xsl:attribute> + <xsl:attribute name="font-weight">normal</xsl:attribute> + <xsl:attribute name="font-style">normal</xsl:attribute> + <xsl:attribute name="space-before">2pt</xsl:attribute> + <xsl:attribute name="text-align"><xsl:value-of select="$alignment"></xsl:value-of></xsl:attribute> +</xsl:attribute-set> + + + +Description + +This attribute set is applied to the footnote-block +for each table footnote. +It can be used to set the +font-size, font-family, and other inheritable properties that will be +applied to all table footnotes. + + + + + + +footnote.mark.properties +attribute set + + +footnote.mark.properties +Properties applied to each footnote mark + + + + + +<xsl:attribute-set name="footnote.mark.properties"> + <xsl:attribute name="font-family"><xsl:value-of select="$body.fontset"></xsl:value-of></xsl:attribute> + <xsl:attribute name="font-size">75%</xsl:attribute> + <xsl:attribute name="font-weight">normal</xsl:attribute> + <xsl:attribute name="font-style">normal</xsl:attribute> +</xsl:attribute-set> + + + +Description + +This attribute set is applied to the footnote mark used +for each footnote. +It should contain only inline properties. + + +The property to make the mark a superscript is contained in the +footnote template itself, because the current version of FOP reports +an error if baseline-shift is used. + + + + + + + +footnote.sep.leader.properties +attribute set + + +footnote.sep.leader.properties +Properties associated with footnote separators + + + + +<xsl:attribute-set name="footnote.sep.leader.properties"> + <xsl:attribute name="color">black</xsl:attribute> + <xsl:attribute name="leader-pattern">rule</xsl:attribute> + <xsl:attribute name="leader-length">1in</xsl:attribute> +</xsl:attribute-set> + + + +Description + +The styling for the rule line that separates the +footnotes from the body text. +These are properties applied to the fo:leader used as +the separator. + +If you want to do more than just set properties on +the leader element, then you can customize the template +named footnote.separator in +fo/pagesetup.xsl. + + + + + + +xref.with.number.and.title +boolean + + +xref.with.number.and.title +Use number and title in cross references + + + + +<xsl:param name="xref.with.number.and.title" select="1"></xsl:param> + + + +Description + +A cross reference may include the number (for example, the number of +an example or figure) and the title which is a required child of some +targets. This parameter inserts both the relevant number as well as +the title into the link. + + + + + + +superscript.properties +attribute set + + +superscript.properties +Properties associated with superscripts + + + + +<xsl:attribute-set name="superscript.properties"> + <xsl:attribute name="font-size">75%</xsl:attribute> +</xsl:attribute-set> + + + +Description + +Specifies styling properties for superscripts. + + + + + + +subscript.properties +attribute set + + +subscript.properties +Properties associated with subscripts + + + + +<xsl:attribute-set name="subscript.properties"> + <xsl:attribute name="font-size">75%</xsl:attribute> +</xsl:attribute-set> + + + +Description + +Specifies styling properties for subscripts. + + + + + + +pgwide.properties +attribute set + + +pgwide.properties +Properties to make a figure or table page wide. + + + + + +<xsl:attribute-set name="pgwide.properties"> + <xsl:attribute name="start-indent">0pt</xsl:attribute> +</xsl:attribute-set> + + + +Description + +This attribute set is used to set the properties +that make a figure or table "page wide" in fo output. +It comes into effect when an attribute pgwide="1" +is used. + + + +By default, it sets start-indent +to 0pt. +In a stylesheet that sets the parameter +body.start.indent +to a non-zero value in order to indent body text, +this attribute set can be used to outdent pgwide +figures to the start margin. + + +If a document uses a multi-column page layout, +then this attribute set could try setting span +to a value of all. However, this may +not work with some processors because a span property must be on an +fo:block that is a direct child of fo:flow. It may work in +some processors anyway. + + + + + + + +highlight.source +boolean + + +highlight.source +Should the content of programlisting +be syntactically highlighted? + + + + +<xsl:param name="highlight.source" select="0"></xsl:param> + + + +Description + +When this parameter is non-zero, the stylesheets will try to do syntax highlighting of the +content of programlisting elements. You specify the language for each programlisting +by using the language attribute. The highlight.default.language +parameter can be used to specify the language for programlistings without a language +attribute. Syntax highlighting also works for screen and synopsis elements. + +The actual highlighting work is done by the XSLTHL extension module. This is an external Java library that has to be +downloaded separately (see below). + + +In order to use this extension, you must + +add xslthl-2.x.x.jar to your Java classpath. The latest version is available +from the XSLT syntax highlighting project +at SourceForge. + + +use a customization layer in which you import one of the following stylesheet modules: + + + html/highlight.xsl + + + + xhtml/highlight.xsl + + + + xhtml-1_1/highlight.xsl + + + + fo/highlight.xsl + + + + + +let either the xslthl.config Java system property or the +highlight.xslthl.config parameter point to the configuration file for syntax +highlighting (using URL syntax). DocBook XSL comes with a ready-to-use configuration file, +highlighting/xslthl-config.xml. + + + +The extension works with Saxon 6.5.x and Xalan-J. (Saxon 8.5 or later is also supported, but since it is +an XSLT 2.0 processor it is not guaranteed to work with DocBook XSL in all circumstances.) + +The following is an example of a Saxon 6 command adapted for syntax highlighting, to be used on Windows: + + +java -cp c:/Java/saxon.jar;c:/Java/xslthl-2.0.1.jar +-Dxslthl.config=file:///c:/docbook-xsl/highlighting/xslthl-config.xml com.icl.saxon.StyleSheet +-o test.html test.xml myhtml.xsl + + + + + + + +highlight.xslthl.config +uri + + +highlight.xslthl.config +Location of XSLTHL configuration file + + + + +<xsl:param name="highlight.xslthl.config"></xsl:param> + + + +Description + +This location has precedence over the corresponding Java property. + +Please note that usually you have to specify location as URL not +just as a simple path on the local +filesystem. E.g. file:///home/user/xslthl/my-xslthl-config.xml. + + + + + + + + +highlight.default.language +string + + +highlight.default.language +Default language of programlisting + + + + +<xsl:param name="highlight.default.language"></xsl:param> + + + +Description + +This language is used when there is no language attribute on programlisting. + + + + + + +email.delimiters.enabled +boolean + + +email.delimiters.enabled +Generate delimiters around email addresses? + + + + +<xsl:param name="email.delimiters.enabled" select="1"></xsl:param> + + + +Description + +If non-zero, delimiters + +For delimiters, the +stylesheets are currently hard-coded to output angle +brackets. + +are generated around e-mail addresses +(the output of the email element). + + + + + + +email.mailto.enabled +boolean + + +email.mailto.enabled +Generate mailto: links for email addresses? + + + + +<xsl:param name="email.mailto.enabled" select="0"></xsl:param> + + + +Description + +If non-zero the generated output for the email element +will be a clickable mailto: link that brings up the default mail client +on the system. + + + + + + +section.container.element +list +block +wrapper + + +section.container.element +Select XSL-FO element name to contain sections + + + + +<xsl:param name="section.container.element">block</xsl:param> + + + +Description + +Selects the element name for outer container of +each section. The choices are block (default) +or wrapper. +The fo: namespace prefix is added +by the stylesheet to form the full element name. + + +This element receives the section id +attribute and the appropriate section level attribute-set. + + +Changing this parameter to wrapper +is only necessary when producing multi-column output +that contains page-wide spans. Using fo:wrapper +avoids the nesting of fo:block +elements that prevents spans from working (the standard says +a span must be on a block that is a direct child of +fo:flow). + + +If set to wrapper, the +section attribute-sets only support properties +that are inheritable. That's because there is no +block to apply them to. Properties such as +font-family are inheritable, but properties such as +border are not. + + +Only some XSL-FO processors need to use this parameter. +The Antenna House processor, for example, will handle +spans in nested blocks without changing the element name. +The RenderX XEP product and FOP follow the XSL-FO standard +and need to use wrapper. + + + + + + + +monospace.verbatim.font.width +length + + +monospace.verbatim.font.width +Width of a single monospace font character + + + + +<xsl:param name="monospace.verbatim.font.width">0.60em</xsl:param> + + + +Description + +Specifies with em units the width of a single character +of the monospace font. The default value is 0.6em. + +This parameter is only used when a screen +or programlisting element has a +width attribute, which is +expressed as a plain integer to indicate the maximum character count +of each line. +To convert this character count to an actual maximum width +measurement, the width of the font characters must be provided. +Different monospace fonts have different character width, +so this parameter should be adjusted to fit the +monospace font being used. + + + + + + + +exsl.node.set.available +boolean + + +exsl.node.set.available +Is the test function-available('exsl:node-set') true? + + + +<xsl:param name="exsl.node.set.available"> + <xsl:choose> + <xsl:when exsl:foo="" test="function-available('exsl:node-set') or contains(system-property('xsl:vendor'), 'Apache Software Foundation')">1</xsl:when> + <xsl:otherwise>0</xsl:otherwise> + </xsl:choose> +</xsl:param> + + + +Description + +If non-zero, +then the exsl:node-set() function is available to be used in +the stylesheet. +If zero, then the function is not available. +This param automatically detects the presence of +the function and does not normally need to be set manually. + +This param was created to handle a long-standing +bug in the Xalan processor that fails to detect the +function even though it is available. + + + + + + +bookmarks.collapse +boolean + + +bookmarks.collapse +Specifies the initial state of bookmarks + + + + +<xsl:param name="bookmarks.collapse" select="1"></xsl:param> + + + +Description + +If non-zero, the bookmark tree is collapsed so that only the +top-level bookmarks are displayed initially. Otherwise, the whole tree +of bookmarks is displayed. + +This parameter currently works with FOP 0.93 or later. + + + + +Graphics + + +graphic.default.extension +string + + +graphic.default.extension +Default extension for graphic filenames + + + +<xsl:param name="graphic.default.extension"></xsl:param> + + +Description + +If a graphic or mediaobject +includes a reference to a filename that does not include an extension, +and the format attribute is +unspecified, the default extension will be used. + + + + + + + +default.image.width +length + + +default.image.width +The default width of images + + + + +<xsl:param name="default.image.width"></xsl:param> + + + +Description + +If specified, this value will be used for the +width attribute on images that do not specify any +viewport dimensions. + + + + + + +preferred.mediaobject.role +string + + +preferred.mediaobject.role +Select which mediaobject to use based on +this value of an object's role attribute. + + + + + +<xsl:param name="preferred.mediaobject.role"></xsl:param> + + + +Description + +A mediaobject may contain several objects such as imageobjects. +If the parameter use.role.for.mediaobject is +non-zero, then the role attribute on +imageobjects and other objects within a +mediaobject container will be used to select which object +will be used. If one of the objects has a role value that matches the +preferred.mediaobject.role parameter, then it +has first priority for selection. If more than one has such a role +value, the first one is used. + + +See the use.role.for.mediaobject parameter +for the sequence of selection. + + + + + +use.role.for.mediaobject +boolean + + +use.role.for.mediaobject +Use role attribute +value for selecting which of several objects within a mediaobject to use. + + + + + +<xsl:param name="use.role.for.mediaobject" select="1"></xsl:param> + + + +Description + +If non-zero, the role attribute on +imageobjects or other objects within a mediaobject container will be used to select which object will be +used. + + +The order of selection when then parameter is non-zero is: + + + + If the stylesheet parameter preferred.mediaobject.role has a value, then the object whose role equals that value is selected. + + +Else if an object's role attribute has a value of +html for HTML processing or +fo for FO output, then the first +of such objects is selected. + + + +Else the first suitable object is selected. + + + +If the value of +use.role.for.mediaobject +is zero, then role attributes are not considered +and the first suitable object +with or without a role value is used. + + + + + + +ignore.image.scaling +boolean + + +ignore.image.scaling +Tell the stylesheets to ignore the author's image scaling attributes + + + + +<xsl:param name="ignore.image.scaling" select="0"></xsl:param> + + + +Description + +If non-zero, the scaling attributes on graphics and media objects are +ignored. + + + + + + +img.src.path +string + + +img.src.path +Path to HTML/FO image files + + + +<xsl:param name="img.src.path"></xsl:param> + + +Description + +Add a path prefix to the value of the fileref +attribute of graphic, inlinegraphic, and imagedata elements. The resulting +compound path is used in the output as the value of the src +attribute of img (HTML) or external-graphic (FO). + + + +The path given by img.src.path could be relative to the directory where the HTML/FO +files are created, or it could be an absolute URI. +The default value is empty. +Be sure to include a trailing slash if needed. + + +This prefix is not applied to any filerefs that start +with "/" or contain "//:". + + + + + + + +keep.relative.image.uris +boolean + + +keep.relative.image.uris +Should image URIs be resolved against xml:base? + + + + + +<xsl:param name="keep.relative.image.uris" select="0"></xsl:param> + + + +Description + +If non-zero, relative URIs (in, for example +fileref attributes) will be used in the generated +output. Otherwise, the URIs will be made absolute with respect to the +base URI. + +Note that the stylesheets calculate (and use) the absolute form +for some purposes, this only applies to the resulting output. + + + + +Pagination and General Styles + +
    Understanding XSL FO Margins + +To make sense of the parameters in this section, it's useful to +consider . + +
    + Page Model + + + + + + + + Figure showing page margins + + This figure shows the physical page with the various FO page regions + identified. + + +
    + +First, let's consider the regions on the page. + +The white region is the physical page. Its dimensions are determined by +the page.height and page.width +parameters. + +The yellow region is the region-body. The size and placement of +the region body is constrained by the dimensions labelled in the +figure. + +The pink region at the top of the page is the region-before. The +darker area inside the region-before is the header text. In XSL, the default +display alignment for a region is before, but the +DocBook stylesheets still explicitly make it before. That's +why the darker area is at the top. + +The pink region at the bottom of the page is the region-after. +The darker area is the footer text. In XSL, the default display +alignment for a region is before, +but the DocBook stylesheets explicitly make it +after. That's why the darker area is at the bottom. + +The dimensions in the figure are: + + +The page-master margin-top. + +The region-before extent. + +The region-body margin-top. + +The region-after extent. + +The page-master margin-bottom. + +The region-body margin-bottom. + +The sum of the page-master margin-left and the +region-body margin-left. In DocBook, the region-body margin-left is +zero by default, so this is simply the page-master margin-left. + +The sum of the page-master margin-right and the +region-body margin-right. In DocBook, the region-body margin-right is +zero by default, so this is simply the page-master margin-right. + + + +
    +
    + + + +page.height +length + + +page.height +The height of the physical page + + + +<xsl:param name="page.height"> + <xsl:choose> + <xsl:when test="$page.orientation = 'portrait'"> + <xsl:value-of select="$page.height.portrait"></xsl:value-of> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="$page.width.portrait"></xsl:value-of> + </xsl:otherwise> + </xsl:choose> +</xsl:param> + + +Description + +The page height is generally calculated from the +paper.type and +page.orientation parameters. + + + + + + + +page.height.portrait +length + + +page.height.portrait +Specify the physical size of the long edge of the page + + + +<xsl:param name="page.height.portrait"> + <xsl:choose> + <xsl:when test="$paper.type = 'A4landscape'">210mm</xsl:when> + <xsl:when test="$paper.type = 'USletter'">11in</xsl:when> + <xsl:when test="$paper.type = 'USlandscape'">8.5in</xsl:when> + <xsl:when test="$paper.type = '4A0'">2378mm</xsl:when> + <xsl:when test="$paper.type = '2A0'">1682mm</xsl:when> + <xsl:when test="$paper.type = 'A0'">1189mm</xsl:when> + <xsl:when test="$paper.type = 'A1'">841mm</xsl:when> + <xsl:when test="$paper.type = 'A2'">594mm</xsl:when> + <xsl:when test="$paper.type = 'A3'">420mm</xsl:when> + <xsl:when test="$paper.type = 'A4'">297mm</xsl:when> + <xsl:when test="$paper.type = 'A5'">210mm</xsl:when> + <xsl:when test="$paper.type = 'A6'">148mm</xsl:when> + <xsl:when test="$paper.type = 'A7'">105mm</xsl:when> + <xsl:when test="$paper.type = 'A8'">74mm</xsl:when> + <xsl:when test="$paper.type = 'A9'">52mm</xsl:when> + <xsl:when test="$paper.type = 'A10'">37mm</xsl:when> + <xsl:when test="$paper.type = 'B0'">1414mm</xsl:when> + <xsl:when test="$paper.type = 'B1'">1000mm</xsl:when> + <xsl:when test="$paper.type = 'B2'">707mm</xsl:when> + <xsl:when test="$paper.type = 'B3'">500mm</xsl:when> + <xsl:when test="$paper.type = 'B4'">353mm</xsl:when> + <xsl:when test="$paper.type = 'B5'">250mm</xsl:when> + <xsl:when test="$paper.type = 'B6'">176mm</xsl:when> + <xsl:when test="$paper.type = 'B7'">125mm</xsl:when> + <xsl:when test="$paper.type = 'B8'">88mm</xsl:when> + <xsl:when test="$paper.type = 'B9'">62mm</xsl:when> + <xsl:when test="$paper.type = 'B10'">44mm</xsl:when> + <xsl:when test="$paper.type = 'C0'">1297mm</xsl:when> + <xsl:when test="$paper.type = 'C1'">917mm</xsl:when> + <xsl:when test="$paper.type = 'C2'">648mm</xsl:when> + <xsl:when test="$paper.type = 'C3'">458mm</xsl:when> + <xsl:when test="$paper.type = 'C4'">324mm</xsl:when> + <xsl:when test="$paper.type = 'C5'">229mm</xsl:when> + <xsl:when test="$paper.type = 'C6'">162mm</xsl:when> + <xsl:when test="$paper.type = 'C7'">114mm</xsl:when> + <xsl:when test="$paper.type = 'C8'">81mm</xsl:when> + <xsl:when test="$paper.type = 'C9'">57mm</xsl:when> + <xsl:when test="$paper.type = 'C10'">40mm</xsl:when> + <xsl:otherwise>11in</xsl:otherwise> + </xsl:choose> +</xsl:param> + + +Description + +The portrait page height is the length of the long +edge of the physical page. + + + + + + + +page.margin.bottom +length + + +page.margin.bottom +The bottom margin of the page + + + + +<xsl:param name="page.margin.bottom">0.5in</xsl:param> + + + +Description + +The bottom page margin is the distance from the bottom of the region-after +to the physical bottom of the page. + + + + + + + +page.margin.inner +length + + +page.margin.inner +The inner page margin + + + +<xsl:param name="page.margin.inner"> + <xsl:choose> + <xsl:when test="$double.sided != 0">1.25in</xsl:when> + <xsl:otherwise>1in</xsl:otherwise> + </xsl:choose> +</xsl:param> + + +Description + +The inner page margin is the distance from bound edge of the +page to the first column of text. + +The inner page margin is the distance from bound edge of the +page to the outer edge of the first column of text. + +In left-to-right text direction, +this is the left margin of recto (front side) pages. +For single-sided output, it is the left margin +of all pages. + +In right-to-left text direction, +this is the right margin of recto pages. +For single-sided output, this is the +right margin of all pages. + + +Current versions (at least as of version 4.13) +of the XEP XSL-FO processor do not +correctly handle these margin settings for documents +with right-to-left text direction. +The workaround in that situation is to reverse +the values for page.margin.inner +and page.margin.outer, until +this bug is fixed by RenderX. It does not affect documents +with left-to-right text direction. + + + + + + + +page.margin.outer +length + + +page.margin.outer +The outer page margin + + + +<xsl:param name="page.margin.outer"> + <xsl:choose> + <xsl:when test="$double.sided != 0">0.75in</xsl:when> + <xsl:otherwise>1in</xsl:otherwise> + </xsl:choose> +</xsl:param> + + +Description + +The outer page margin is the distance from non-bound edge of the +page to the outer edge of the last column of text. + +In left-to-right text direction, +this is the right margin of recto (front side) pages. +For single-sided output, it is the right margin +of all pages. + +In right-to-left text direction, +this is the left margin of recto pages. +For single-sided output, this is the +left margin of all pages. + + +Current versions (at least as of version 4.13) +of the XEP XSL-FO processor do not +correctly handle these margin settings for documents +with right-to-left text direction. +The workaround in that situation is to reverse +the values for page.margin.inner +and page.margin.outer, until +this bug is fixed by RenderX. It does not affect documents +with left-to-right text direction. + + + + + + + +page.margin.top +length + + +page.margin.top +The top margin of the page + + + + +<xsl:param name="page.margin.top">0.5in</xsl:param> + + + +Description + +The top page margin is the distance from the physical top of the +page to the top of the region-before. + + + + + + +page.orientation +list +portrait +landscape + + +page.orientation +Select the page orientation + + + + +<xsl:param name="page.orientation">portrait</xsl:param> + + + +Description + + Select one from portrait or landscape. +In portrait orientation, the short edge is horizontal; in +landscape orientation, it is vertical. + + + + + + + +page.width +length + + +page.width +The width of the physical page + + + +<xsl:param name="page.width"> + <xsl:choose> + <xsl:when test="$page.orientation = 'portrait'"> + <xsl:value-of select="$page.width.portrait"></xsl:value-of> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="$page.height.portrait"></xsl:value-of> + </xsl:otherwise> + </xsl:choose> +</xsl:param> + + +Description + +The page width is generally calculated from the +paper.type and +page.orientation parameters. + + + + + + +page.width.portrait +length + + +page.width.portrait +Specify the physical size of the short edge of the page + + + +<xsl:param name="page.width.portrait"> + <xsl:choose> + <xsl:when test="$paper.type = 'USletter'">8.5in</xsl:when> + <xsl:when test="$paper.type = '4A0'">1682mm</xsl:when> + <xsl:when test="$paper.type = '2A0'">1189mm</xsl:when> + <xsl:when test="$paper.type = 'A0'">841mm</xsl:when> + <xsl:when test="$paper.type = 'A1'">594mm</xsl:when> + <xsl:when test="$paper.type = 'A2'">420mm</xsl:when> + <xsl:when test="$paper.type = 'A3'">297mm</xsl:when> + <xsl:when test="$paper.type = 'A4'">210mm</xsl:when> + <xsl:when test="$paper.type = 'A5'">148mm</xsl:when> + <xsl:when test="$paper.type = 'A6'">105mm</xsl:when> + <xsl:when test="$paper.type = 'A7'">74mm</xsl:when> + <xsl:when test="$paper.type = 'A8'">52mm</xsl:when> + <xsl:when test="$paper.type = 'A9'">37mm</xsl:when> + <xsl:when test="$paper.type = 'A10'">26mm</xsl:when> + <xsl:when test="$paper.type = 'B0'">1000mm</xsl:when> + <xsl:when test="$paper.type = 'B1'">707mm</xsl:when> + <xsl:when test="$paper.type = 'B2'">500mm</xsl:when> + <xsl:when test="$paper.type = 'B3'">353mm</xsl:when> + <xsl:when test="$paper.type = 'B4'">250mm</xsl:when> + <xsl:when test="$paper.type = 'B5'">176mm</xsl:when> + <xsl:when test="$paper.type = 'B6'">125mm</xsl:when> + <xsl:when test="$paper.type = 'B7'">88mm</xsl:when> + <xsl:when test="$paper.type = 'B8'">62mm</xsl:when> + <xsl:when test="$paper.type = 'B9'">44mm</xsl:when> + <xsl:when test="$paper.type = 'B10'">31mm</xsl:when> + <xsl:when test="$paper.type = 'C0'">917mm</xsl:when> + <xsl:when test="$paper.type = 'C1'">648mm</xsl:when> + <xsl:when test="$paper.type = 'C2'">458mm</xsl:when> + <xsl:when test="$paper.type = 'C3'">324mm</xsl:when> + <xsl:when test="$paper.type = 'C4'">229mm</xsl:when> + <xsl:when test="$paper.type = 'C5'">162mm</xsl:when> + <xsl:when test="$paper.type = 'C6'">114mm</xsl:when> + <xsl:when test="$paper.type = 'C7'">81mm</xsl:when> + <xsl:when test="$paper.type = 'C8'">57mm</xsl:when> + <xsl:when test="$paper.type = 'C9'">40mm</xsl:when> + <xsl:when test="$paper.type = 'C10'">28mm</xsl:when> + <xsl:otherwise>8.5in</xsl:otherwise> + </xsl:choose> +</xsl:param> + + +Description + +The portrait page width is the length of the short +edge of the physical page. + + + + + + + +paper.type +list +open +open +USletter8.5x11in +USlandscape11x8.5in +USlegal8.5inx14in +USlegallandscape14inx8.5in +4A02378x1682mm +2A01682x1189mm +A01189x841mm +A1841x594mm +A2594x420mm +A3420x297mm +A4297x210mm +A5210x148mm +A6148x105mm +A7105x74mm +A874x52mm +A952x37mm +A1037x26mm +B01414x1000mm +B11000x707mm +B2707x500mm +B3500x353mm +B4353x250mm +B5250x176mm +B6176x125mm +B7125x88mm +B888x62mm +B962x44mm +B1044x31mm +C01297x917mm +C1917x648mm +C2648x458mm +C3458x324mm +C4324x229mm +C5229x162mm +C6162x114mm +C7114x81mm +C881x57mm +C957x40mm +C1040x28mm + + +paper.type +Select the paper type + + + + +<xsl:param name="paper.type">USletter</xsl:param> + + + +Description + +The paper type is a convenient way to specify the paper size. +The list of known paper sizes includes USletter and most of the A, +B, and C sizes. See page.width.portrait, for example. + + + + + + + + + +double.sided +boolean + + +double.sided +Is the document to be printed double sided? + + + + +<xsl:param name="double.sided" select="0"></xsl:param> + + + +Description + +Double-sided documents are printed with a slightly wider margin +on the binding edge of the page. + +FIXME: The current set of parameters does not take writing direction +into account. + + + + + + +body.margin.bottom +length + + +body.margin.bottom +The bottom margin of the body text + + + + +<xsl:param name="body.margin.bottom">0.5in</xsl:param> + + + +Description + +The body bottom margin is the distance from the last line of text +in the page body to the bottom of the region-after. + + + + + + + +body.margin.top +length + + +body.margin.top +To specify the size of the top margin of a page + + + + +<xsl:param name="body.margin.top">0.5in</xsl:param> + + + +Description + +The body top margin is the distance from the top of the +region-before to the first line of text in the page body. + + + + + + +body.start.indent +length + + +body.start.indent +The start-indent for the body text + + + + +<xsl:param name="body.start.indent"> + <xsl:choose> + <xsl:when test="$fop.extensions != 0">0pt</xsl:when> + <xsl:when test="$passivetex.extensions != 0">0pt</xsl:when> + <xsl:otherwise>4pc</xsl:otherwise> + </xsl:choose> +</xsl:param> + + + +Description + +This parameter provides +the means of indenting the body text relative to +section titles. +For left-to-right text direction, it indents the left side. +For right-to-left text direction, it indents the right side. +It is used in place of the +title.margin.left for +all XSL-FO processors except FOP 0.25. +It enables support for side floats to appear +in the indented margin area. + +This start-indent property is added to the fo:flow +for certain page sequences. Which page-sequences it is +applied to is determined by the template named +set.flow.properties. +By default, that template adds it to the flow +for page-sequences using the body +master-reference, as well as appendixes and prefaces. + +If this parameter is used, section titles should have +a start-indent value of 0pt if they are to be +outdented relative to the body text. + + +If you are using FOP, then set this parameter to a zero +width value and set the title.margin.left +parameter to the negative value of the desired indent. + + +See also body.end.indent and +title.margin.left. + + + + + + + +body.end.indent +length + + +body.end.indent +The end-indent for the body text + + + + +<xsl:param name="body.end.indent">0pt</xsl:param> + + + +Description + +This end-indent property is added to the fo:flow +for certain page sequences. Which page-sequences it is +applied to is determined by the template named +set.flow.properties. +By default, that template adds it to the flow +for page-sequences using the body +master-reference, as well as appendixes and prefaces. + + +See also body.start.indent. + + + + + + + +alignment + list + open + left + start + right + end + center + justify + + +alignment +Specify the default text alignment + + + +<xsl:param name="alignment">justify</xsl:param> + + +Description + +The default text alignment is used for most body text. +Allowed values are +left, +right, +start, +end, +center, +justify. +The default value is justify. + + + + + + + +hyphenate +list +closed +true +false + + +hyphenate +Specify hyphenation behavior + + + +<xsl:param name="hyphenate">true</xsl:param> + + +Description + +If true, words may be hyphenated. Otherwise, they may not. + + + + + + + +line-height +string + + +line-height +Specify the line-height property + + + + +<xsl:param name="line-height">normal</xsl:param> + + + +Description + +Sets the line-height property. + + + + + + +column.count.back +integer + + +column.count.back +Number of columns on back matter pages + + + + +<xsl:param name="column.count.back" select="1"></xsl:param> + + + +Description + +Number of columns on back matter (appendix, glossary, etc.) pages. + + + + + + +column.count.body +integer + + +column.count.body +Number of columns on body pages + + + + +<xsl:param name="column.count.body" select="1"></xsl:param> + + + +Description + +Number of columns on body pages. + + + + + + +column.count.front +integer + + +column.count.front +Number of columns on front matter pages + + + + +<xsl:param name="column.count.front" select="1"></xsl:param> + + + +Description + +Number of columns on front matter (dedication, preface, etc.) pages. + + + + + + +column.count.index +integer + + +column.count.index +Number of columns on index pages + + + + +<xsl:param name="column.count.index">2</xsl:param> + + + +Description + +Number of columns on index pages. + + + + + + +column.count.lot +integer + + +column.count.lot +Number of columns on a 'List-of-Titles' page + + + + +<xsl:param name="column.count.lot" select="1"></xsl:param> + + + +Description + +Number of columns on a page sequence containing the Table of Contents, +List of Figures, etc. + + + + + + +column.count.titlepage +integer + + +column.count.titlepage +Number of columns on a title page + + + + +<xsl:param name="column.count.titlepage" select="1"></xsl:param> + + + +Description + +Number of columns on a title page + + + + + + +column.gap.back +length + + +column.gap.back +Gap between columns in back matter + + + + +<xsl:param name="column.gap.back">12pt</xsl:param> + + + +Description + +Specifies the gap between columns in back matter (if +column.count.back is greater than one). + + + + + + +column.gap.body +length + + +column.gap.body +Gap between columns in the body + + + + +<xsl:param name="column.gap.body">12pt</xsl:param> + + + +Description + +Specifies the gap between columns in body matter (if +column.count.body is greater than one). + + + + + + +column.gap.front +length + + +column.gap.front +Gap between columns in the front matter + + + + +<xsl:param name="column.gap.front">12pt</xsl:param> + + + +Description + +Specifies the gap between columns in front matter (if +column.count.front is greater than one). + + + + + + +column.gap.index +length + + +column.gap.index +Gap between columns in the index + + + + +<xsl:param name="column.gap.index">12pt</xsl:param> + + + +Description + +Specifies the gap between columns in indexes (if +column.count.index is greater than one). + + + + + + +column.gap.lot +length + + +column.gap.lot +Gap between columns on a 'List-of-Titles' page + + + + +<xsl:param name="column.gap.lot">12pt</xsl:param> + + + +Description + +Specifies the gap between columns on 'List-of-Titles' pages (if +column.count.lot is greater than one). + + + + + + +column.gap.titlepage +length + + +column.gap.titlepage +Gap between columns on title pages + + + + +<xsl:param name="column.gap.titlepage">12pt</xsl:param> + + + +Description + +Specifies the gap between columns on title pages (if +column.count.titlepage is greater than one). + + + + + + + +region.after.extent +length + + +region.after.extent +Specifies the height of the footer. + + + + +<xsl:param name="region.after.extent">0.4in</xsl:param> + + + +Description + +The region after extent is the height of the area where footers +are printed. + + + + + + + +region.before.extent +length + + +region.before.extent +Specifies the height of the header + + + + +<xsl:param name="region.before.extent">0.4in</xsl:param> + + + +Description + +The region before extent is the height of the area where headers +are printed. + + + + + + + +default.units +list +cm +mm +in +pt +pc +px +em + + +default.units +Default units for an unqualified dimension + + + + +<xsl:param name="default.units">pt</xsl:param> + + + +Description + +If an unqualified dimension is encountered (for example, in a +graphic width), the default.units will be used for the +units. Unqualified dimensions are not allowed in XSL Formatting Objects. + + + + + + + +normal.para.spacing +attribute set + + +normal.para.spacing +What space do you want between normal paragraphs + + + +<xsl:attribute-set name="normal.para.spacing"> + <xsl:attribute name="space-before.optimum">1em</xsl:attribute> + <xsl:attribute name="space-before.minimum">0.8em</xsl:attribute> + <xsl:attribute name="space-before.maximum">1.2em</xsl:attribute> +</xsl:attribute-set> + +Description +Specify the spacing required between normal paragraphs + + + + + +body.font.master + number + + +body.font.master +Specifies the default point size for body text + + + + +<xsl:param name="body.font.master">10</xsl:param> + + + +Description + +The body font size is specified in two parameters +(body.font.master and body.font.size) +so that math can be performed on the font size by XSLT. + + + + + + + +body.font.size +length + + +body.font.size +Specifies the default font size for body text + + + + +<xsl:param name="body.font.size"> + <xsl:value-of select="$body.font.master"></xsl:value-of><xsl:text>pt</xsl:text> +</xsl:param> + + +Description + +The body font size is specified in two parameters +(body.font.master and body.font.size) +so that math can be performed on the font size by XSLT. + + + + + + + +footnote.font.size +length + + +footnote.font.size +The font size for footnotes + + + +<xsl:param name="footnote.font.size"> + <xsl:value-of select="$body.font.master * 0.8"></xsl:value-of><xsl:text>pt</xsl:text> +</xsl:param> + + +Description + +The footnote font size is used for...footnotes! + + + + + + + +title.margin.left +length + + +title.margin.left +Adjust the left margin for titles + + + + +<xsl:param name="title.margin.left"> + <xsl:choose> + <xsl:when test="$fop.extensions != 0">-4pc</xsl:when> + <xsl:when test="$passivetex.extensions != 0">0pt</xsl:when> + <xsl:otherwise>0pt</xsl:otherwise> + </xsl:choose> +</xsl:param> + + + +Description + +This parameter provides +the means of adjusting the left margin for titles +when the XSL-FO processor being used is +an old version of FOP (0.25 and earlier). +It is only useful when the fop.extensions +is nonzero. + +The left margin of the body region +is calculated to include this space, +and titles are outdented to the left outside +the body region by this amount, +effectively leaving titles at the intended left margin +and the body text indented. +Currently this method is only used for old FOP because +it cannot properly use the body.start.indent +parameter. + + +The default value when the fop.extensions +parameter is nonzero is -4pc, which means the +body text is indented 4 picas relative to +the titles. +The default value when the fop.extensions +parameter equals zero is 0pt, and +the body indent should instead be specified +using the body.start.indent +parameter. + + +If you set the value to zero, be sure to still include +a unit indicator such as 0pt, or +the FO processor will report errors. + + + + + + + +draft.mode +list +no +yes +maybe + + +draft.mode +Select draft mode + + + + +<xsl:param name="draft.mode">no</xsl:param> + + + +Description + +Selects draft mode. If draft.mode is +yes, the entire document will be treated +as a draft. If it is no, the entire document +will be treated as a final copy. If it is maybe, +individual sections will be treated as draft or final independently, depending +on how their status attribute is set. + + + + + + + +draft.watermark.image +uri + + +draft.watermark.image +The URI of the image to be used for draft watermarks + + + + +<xsl:param name="draft.watermark.image">images/draft.png</xsl:param> + + + +Description + +The image to be used for draft watermarks. + + + + + + +headers.on.blank.pages +boolean + + +headers.on.blank.pages +Put headers on blank pages? + + + + +<xsl:param name="headers.on.blank.pages" select="1"></xsl:param> + + + +Description + +If non-zero, headers will be placed on blank pages. + + + + + + +footers.on.blank.pages +boolean + + +footers.on.blank.pages +Put footers on blank pages? + + + + +<xsl:param name="footers.on.blank.pages" select="1"></xsl:param> + + + +Description + +If non-zero, footers will be placed on blank pages. + + + + + + +header.rule +boolean + + +header.rule +Rule under headers? + + + + +<xsl:param name="header.rule" select="1"></xsl:param> + + + +Description + +If non-zero, a rule will be drawn below the page headers. + + + + + + +footer.rule +boolean + + +footer.rule +Rule over footers? + + + + +<xsl:param name="footer.rule" select="1"></xsl:param> + + + +Description + +If non-zero, a rule will be drawn above the page footers. + + + + + + +header.column.widths +string + + +header.column.widths +Specify relative widths of header areas + + + +<xsl:param name="header.column.widths">1 1 1</xsl:param> + + +Description + +Page headers in print output use a three column table +to position text at the left, center, and right side of +the header on the page. +This parameter lets you specify the relative sizes of the +three columns. The default value is +"1 1 1". + +The parameter value must be three numbers, separated +by white space. The first number represents the relative +width of the inside header for +double-sided output. The second number is the relative +width of the center header. The third number is the +relative width of the outside header for +double-sided output. + +For single-sided output, the first number is the +relative width of left header for left-to-right +text direction, or the right header for right-to-left +text direction. +The third number is the +relative width of right header for left-to-right +text direction, or the left header for right-to-left +text direction. + +The numbers are used to specify the column widths +for the table that makes up the header area. +In the FO output, this looks like: + + + +<fo:table-column column-number="1" + column-width="proportional-column-width(1)"/> + + + +The proportional-column-width() +function computes a column width by dividing its +argument by the total of the arguments for all the columns, and +then multiplying the result by the width of the whole table +(assuming all the column specs use the function). +Its argument can be any positive integer or floating point number. +Zero is an acceptable value, although some FO processors +may warn about it, in which case using a very small number might +be more satisfactory. + + +For example, the value "1 2 1" means the center +header should have twice the width of the other areas. +A value of "0 0 1" means the entire header area +is reserved for the right (or outside) header text. +Note that to keep the center area centered on +the page, the left and right values must be +the same. A specification like "1 2 3" means the +center area is no longer centered on the page +since the right area is three times the width of the left area. + + + + + + + +footer.column.widths +string + + +footer.column.widths +Specify relative widths of footer areas + + + +<xsl:param name="footer.column.widths">1 1 1</xsl:param> + + +Description + +Page footers in print output use a three column table +to position text at the left, center, and right side of +the footer on the page. +This parameter lets you specify the relative sizes of the +three columns. The default value is +"1 1 1". + +The parameter value must be three numbers, separated +by white space. The first number represents the relative +width of the inside footer for +double-sided output. The second number is the relative +width of the center footer. The third number is the +relative width of the outside footer for +double-sided output. + +For single-sided output, the first number is the +relative width of left footer for left-to-right +text direction, or the right footer for right-to-left +text direction. +The third number is the +relative width of right footer for left-to-right +text direction, or the left footer for right-to-left +text direction. + +The numbers are used to specify the column widths +for the table that makes up the footer area. +In the FO output, this looks like: + + + +<fo:table-column column-number="1" + column-width="proportional-column-width(1)"/> + + + +The proportional-column-width() +function computes a column width by dividing its +argument by the total of the arguments for all the columns, and +then multiplying the result by the width of the whole table +(assuming all the column specs use the function). +Its argument can be any positive integer or floating point number. +Zero is an acceptable value, although some FO processors +may warn about it, in which case using a very small number might +be more satisfactory. + + +For example, the value "1 2 1" means the center +footer should have twice the width of the other areas. +A value of "0 0 1" means the entire footer area +is reserved for the right (or outside) footer text. +Note that to keep the center area centered on +the page, the left and right values must be +the same. A specification like "1 2 3" means the +center area is no longer centered on the page +since the right area is three times the width of the left area. + + + + + + + +header.table.properties +attribute set + + +header.table.properties +Apply properties to the header layout table + + + + +<xsl:attribute-set name="header.table.properties"> + <xsl:attribute name="table-layout">fixed</xsl:attribute> + <xsl:attribute name="width">100%</xsl:attribute> +</xsl:attribute-set> + + + +Description + +Properties applied to the table that lays out the page header. + + + + + + +header.table.height +length + + +header.table.height +Specify the minimum height of the table containing the running page headers + + + +<xsl:param name="header.table.height">14pt</xsl:param> + + +Description + +Page headers in print output use a three column table +to position text at the left, center, and right side of +the header on the page. +This parameter lets you specify the minimum height +of the single row in the table. +Since this specifies only the minimum height, +the table should automatically grow to fit taller content. +The default value is "14pt". + + + + + + +footer.table.properties +attribute set + + +footer.table.properties +Apply properties to the footer layout table + + + + +<xsl:attribute-set name="footer.table.properties"> + <xsl:attribute name="table-layout">fixed</xsl:attribute> + <xsl:attribute name="width">100%</xsl:attribute> +</xsl:attribute-set> + + + +Description + +Properties applied to the table that lays out the page footer. + + + + + + +footer.table.height +length + + +footer.table.height +Specify the minimum height of the table containing the running page footers + + + +<xsl:param name="footer.table.height">14pt</xsl:param> + + +Description + +Page footers in print output use a three column table +to position text at the left, center, and right side of +the footer on the page. +This parameter lets you specify the minimum height +of the single row in the table. +Since this specifies only the minimum height, +the table should automatically grow to fit taller content. +The default value is "14pt". + + + + + + +header.content.properties +attribute set + + +header.content.properties +Properties of page header content + + + + +<xsl:attribute-set name="header.content.properties"> + <xsl:attribute name="font-family"> + <xsl:value-of select="$body.fontset"></xsl:value-of> + </xsl:attribute> + <xsl:attribute name="margin-left"> + <xsl:value-of select="$title.margin.left"></xsl:value-of> + </xsl:attribute> +</xsl:attribute-set> + + + +Description + +Properties of page header content. + + + + + + +footer.content.properties +attribute set + + +footer.content.properties +Properties of page footer content + + + + +<xsl:attribute-set name="footer.content.properties"> + <xsl:attribute name="font-family"> + <xsl:value-of select="$body.fontset"></xsl:value-of> + </xsl:attribute> + <xsl:attribute name="margin-left"> + <xsl:value-of select="$title.margin.left"></xsl:value-of> + </xsl:attribute> +</xsl:attribute-set> + + + +Description + +Properties of page footer content. + + + + + + +marker.section.level +integer + + +marker.section.level +Control depth of sections shown in running headers or footers + + + + +<xsl:param name="marker.section.level">2</xsl:param> + + + +Description + +The marker.section.level parameter +controls the depth of section levels that may be displayed +in running headers and footers. For example, if the value +is 2 (the default), then titles from sect1 and +sect2 or equivalent section +elements are candidates for use in running headers and +footers. + +Each candidate title is marked in the FO output with a +<fo:marker marker-class-name="section.head.marker"> +element. + +In order for such titles to appear in headers +or footers, the header.content +or footer.content template +must be customized to retrieve the marker using +an output element such as: + + +<fo:retrieve-marker retrieve-class-name="section.head.marker" + retrieve-position="first-including-carryover" + retrieve-boundary="page-sequence"/> + + + + + + +
    Font Families + + +body.font.family +list +open +serif +sans-serif +monospace + + +body.font.family +The default font family for body text + + + + +<xsl:param name="body.font.family">serif</xsl:param> + + + +Description + +The body font family is the default font used for text in the page body. + + + + + + + +dingbat.font.family +list +open +serif +sans-serif +monospace + + +dingbat.font.family +The font family for copyright, quotes, and other symbols + + + + +<xsl:param name="dingbat.font.family">serif</xsl:param> + + + +Description + +The dingbat font family is used for dingbats. If it is defined +as the empty string, no font change is effected around dingbats. + + + + + + + +monospace.font.family +string + + +monospace.font.family +The default font family for monospace environments + + + + +<xsl:param name="monospace.font.family">monospace</xsl:param> + + + +Description + +The monospace font family is used for verbatim environments +(program listings, screens, etc.). + + + + + + + +sans.font.family +string + + +sans.font.family +The default sans-serif font family + + + + +<xsl:param name="sans.font.family">sans-serif</xsl:param> + + + +Description + +The default sans-serif font family. At the present, this isn't +actually used by the stylesheets. + + + + + + + +title.font.family +list +open +serif +sans-serif +monospace + + +title.font.family +The default font family for titles + + + + +<xsl:param name="title.font.family">sans-serif</xsl:param> + + + +Description + +The title font family is used for titles (chapter, section, figure, +etc.) + + + + + + + +symbol.font.family +list +open +serif +sans-serif +monospace + + +symbol.font.family +The font families to be searched for symbols outside + of the body font + + + + +<xsl:param name="symbol.font.family">Symbol,ZapfDingbats</xsl:param> + + + +Description + +A typical body or title font does not contain all +the character glyphs that DocBook supports. This parameter +specifies additional fonts that should be searched for +special characters not in the normal font. +These symbol font names are automatically appended +to the body or title font family name when fonts +are specified in a +font-family +property in the FO output. + +The symbol font names should be entered as a +comma-separated list. The default value is +Symbol,ZapfDingbats. + + + + + +Property Sets + + +formal.object.properties +attribute set + + +formal.object.properties +Properties associated with a formal object such as a figure, or other component that has a title + + + + +<xsl:attribute-set name="formal.object.properties"> + <xsl:attribute name="space-before.minimum">0.5em</xsl:attribute> + <xsl:attribute name="space-before.optimum">1em</xsl:attribute> + <xsl:attribute name="space-before.maximum">2em</xsl:attribute> + <xsl:attribute name="space-after.minimum">0.5em</xsl:attribute> + <xsl:attribute name="space-after.optimum">1em</xsl:attribute> + <xsl:attribute name="space-after.maximum">2em</xsl:attribute> + <xsl:attribute name="keep-together.within-column">always</xsl:attribute> +</xsl:attribute-set> + + + +Description + +The styling for formal objects in docbook. Specify the spacing +before and after the object. + + + + + + +formal.title.properties +attribute set + + +formal.title.properties +Style the title element of formal object such as a figure. + + + + +<xsl:attribute-set name="formal.title.properties" use-attribute-sets="normal.para.spacing"> + <xsl:attribute name="font-weight">bold</xsl:attribute> + <xsl:attribute name="font-size"> + <xsl:value-of select="$body.font.master * 1.2"></xsl:value-of> + <xsl:text>pt</xsl:text> + </xsl:attribute> + <xsl:attribute name="hyphenate">false</xsl:attribute> + <xsl:attribute name="space-after.minimum">0.4em</xsl:attribute> + <xsl:attribute name="space-after.optimum">0.6em</xsl:attribute> + <xsl:attribute name="space-after.maximum">0.8em</xsl:attribute> +</xsl:attribute-set> + + +Description +Specify how the title should be styled. Specify the font size and weight of the title of the formal object. + + + + + +informal.object.properties +attribute set + + +informal.object.properties +Properties associated with an informal (untitled) object, such as an informalfigure + + + +<xsl:attribute-set name="informal.object.properties"> + <xsl:attribute name="space-before.minimum">0.5em</xsl:attribute> + <xsl:attribute name="space-before.optimum">1em</xsl:attribute> + <xsl:attribute name="space-before.maximum">2em</xsl:attribute> + <xsl:attribute name="space-after.minimum">0.5em</xsl:attribute> + <xsl:attribute name="space-after.optimum">1em</xsl:attribute> + <xsl:attribute name="space-after.maximum">2em</xsl:attribute> +</xsl:attribute-set> + +Description +The styling for informal objects in docbook. Specify the spacing before and after the object. + + + + + +monospace.properties +attribute set + + +monospace.properties +Properties of monospaced content + + + + +<xsl:attribute-set name="monospace.properties"> + <xsl:attribute name="font-family"> + <xsl:value-of select="$monospace.font.family"></xsl:value-of> + </xsl:attribute> +</xsl:attribute-set> + + + +Description + +Specifies the font name for monospaced output. This property set +used to set the font-size as well, but that doesn't work very well +when different fonts are used (as they are in titles and paragraphs, +for example). + +If you want to set the font-size in a customization layer, it's +probably going to be more appropriate to set font-size-adjust, if your +formatter supports it. + + + + + + +verbatim.properties +attribute set + + +verbatim.properties +Properties associated with verbatim text + + + + +<xsl:attribute-set name="verbatim.properties"> + <xsl:attribute name="space-before.minimum">0.8em</xsl:attribute> + <xsl:attribute name="space-before.optimum">1em</xsl:attribute> + <xsl:attribute name="space-before.maximum">1.2em</xsl:attribute> + <xsl:attribute name="space-after.minimum">0.8em</xsl:attribute> + <xsl:attribute name="space-after.optimum">1em</xsl:attribute> + <xsl:attribute name="space-after.maximum">1.2em</xsl:attribute> + <xsl:attribute name="hyphenate">false</xsl:attribute> + <xsl:attribute name="wrap-option">no-wrap</xsl:attribute> + <xsl:attribute name="white-space-collapse">false</xsl:attribute> + <xsl:attribute name="white-space-treatment">preserve</xsl:attribute> + <xsl:attribute name="linefeed-treatment">preserve</xsl:attribute> + <xsl:attribute name="text-align">start</xsl:attribute> +</xsl:attribute-set> + + +Description +This attribute set is used on all verbatim environments. + + + + + + +monospace.verbatim.properties +attribute set + + +monospace.verbatim.properties +What font and size do you want for monospaced content? + + + + +<xsl:attribute-set name="monospace.verbatim.properties" use-attribute-sets="verbatim.properties monospace.properties"> + <xsl:attribute name="text-align">start</xsl:attribute> + <xsl:attribute name="wrap-option">no-wrap</xsl:attribute> +</xsl:attribute-set> + + +Description +Specify the font name and size you want for monospaced output + + + + + +sidebar.properties +attribute set + + +sidebar.properties +Attribute set for sidebar properties + + + + +<xsl:attribute-set name="sidebar.properties" use-attribute-sets="formal.object.properties"> + <xsl:attribute name="border-style">solid</xsl:attribute> + <xsl:attribute name="border-width">1pt</xsl:attribute> + <xsl:attribute name="border-color">black</xsl:attribute> + <xsl:attribute name="background-color">#DDDDDD</xsl:attribute> + <xsl:attribute name="padding-start">12pt</xsl:attribute> + <xsl:attribute name="padding-end">12pt</xsl:attribute> + <xsl:attribute name="padding-top">6pt</xsl:attribute> + <xsl:attribute name="padding-bottom">6pt</xsl:attribute> + <xsl:attribute name="margin-{$direction.align.start}">0pt</xsl:attribute> + <xsl:attribute name="margin-{$direction.align.end}">0pt</xsl:attribute> +<!-- + <xsl:attribute name="margin-top">6pt</xsl:attribute> + <xsl:attribute name="margin-bottom">6pt</xsl:attribute> +--> +</xsl:attribute-set> + + + +Description + +The styling for sidebars. + + + + + + +sidebar.title.properties +attribute set + + +sidebar.title.properties +Attribute set for sidebar titles + + + + +<xsl:attribute-set name="sidebar.title.properties"> + <xsl:attribute name="font-weight">bold</xsl:attribute> + <xsl:attribute name="hyphenate">false</xsl:attribute> + <xsl:attribute name="text-align">start</xsl:attribute> + <xsl:attribute name="keep-with-next.within-column">always</xsl:attribute> +</xsl:attribute-set> + + + +Description + +The styling for sidebars titles. + + + + + + +sidebar.float.type +list +none +before +left +start +right +end +inside +outside + + +sidebar.float.type +Select type of float for sidebar elements + + + + +<xsl:param name="sidebar.float.type">none</xsl:param> + + + +Description + +Selects the type of float for sidebar elements. + + + +If sidebar.float.type is +none, then +no float is used. + + + +If sidebar.float.type is +before, then +the float appears at the top of the page. On some processors, +that may be the next page rather than the current page. + + + + +If sidebar.float.type is +left, +then a left side float is used. + + + + +If sidebar.float.type is +start, +then when the text direction is left-to-right a left side float is used. +When the text direction is right-to-left, a right side float is used. + + + + +If sidebar.float.type is +right, +then a right side float is used. + + + + +If sidebar.float.type is +end, +then when the text direction is left-to-right a right side float is used. +When the text direction is right-to-left, a left side float is used. + + + + +If your XSL-FO processor supports floats positioned on the +inside or +outside +of double-sided pages, then you have those two +options for side floats as well. + + + + + + + + + +sidebar.float.width +length + + +sidebar.float.width +Set the default width for sidebars + + + + +<xsl:param name="sidebar.float.width">1in</xsl:param> + + + +Description + +Sets the default width for sidebars when used as a side float. +The width determines the degree to which the sidebar block intrudes into +the text area. + +If sidebar.float.type is +before or +none, then +this parameter is ignored. + + + + + + + +margin.note.properties +attribute set + + +margin.note.properties +Attribute set for margin.note properties + + + + +<xsl:attribute-set name="margin.note.properties"> + <xsl:attribute name="font-size">90%</xsl:attribute> + <xsl:attribute name="text-align">start</xsl:attribute> +</xsl:attribute-set> + + + +Description + +The styling for margin notes. +By default, margin notes are not implemented for any +element. A stylesheet customization is needed to make +use of this attribute-set. + +You can use a template named floater +to create the customization. +That template can create side floats by specifying the +content and characteristics as template parameters. + + +For example: +<xsl:template match="para[@role='marginnote']"> + <xsl:call-template name="floater"> + <xsl:with-param name="position"> + <xsl:value-of select="$margin.note.float.type"/> + </xsl:with-param> + <xsl:with-param name="width"> + <xsl:value-of select="$margin.note.width"/> + </xsl:with-param> + <xsl:with-param name="content"> + <xsl:apply-imports/> + </xsl:with-param> + </xsl:call-template> +</xsl:template> + + + + + + +margin.note.title.properties +attribute set + + +margin.note.title.properties +Attribute set for margin note titles + + + + +<xsl:attribute-set name="margin.note.title.properties"> + <xsl:attribute name="font-weight">bold</xsl:attribute> + <xsl:attribute name="hyphenate">false</xsl:attribute> + <xsl:attribute name="text-align">start</xsl:attribute> + <xsl:attribute name="keep-with-next.within-column">always</xsl:attribute> +</xsl:attribute-set> + + + +Description + +The styling for margin note titles. + + + + + + +margin.note.float.type +list +none +before +left +start +right +end +inside +outside + + +margin.note.float.type +Select type of float for margin note customizations + + + + +<xsl:param name="margin.note.float.type">none</xsl:param> + + + +Description + +Selects the type of float for margin notes. +DocBook does not define a margin note element, so this +feature must be implemented as a customization of the stylesheet. +See margin.note.properties for +an example. + + + +If margin.note.float.type is +none, then +no float is used. + + + +If margin.note.float.type is +before, then +the float appears at the top of the page. On some processors, +that may be the next page rather than the current page. + + + +If margin.note.float.type is +left or +start, then +a left side float is used. + + + +If margin.note.float.type is +right or +end, then +a right side float is used. + + + +If your XSL-FO processor supports floats positioned on the +inside or +outside +of double-sided pages, then you have those two +options for side floats as well. + + + + + + + + + +margin.note.width +length + + +margin.note.width +Set the default width for margin notes + + + + +<xsl:param name="margin.note.width">1in</xsl:param> + + + +Description + +Sets the default width for margin notes when used as a side +float. The width determines the degree to which the margin note block +intrudes into the text area. + +If margin.note.float.type is +before or +none, then +this parameter is ignored. + + + + + + + +component.title.properties +attribute set + + +component.title.properties +Properties for component titles + + + + +<xsl:attribute-set name="component.title.properties"> + <xsl:attribute name="keep-with-next.within-column">always</xsl:attribute> + <xsl:attribute name="space-before.optimum"><xsl:value-of select="concat($body.font.master, 'pt')"></xsl:value-of></xsl:attribute> + <xsl:attribute name="space-before.minimum"><xsl:value-of select="concat($body.font.master, 'pt * 0.8')"></xsl:value-of></xsl:attribute> + <xsl:attribute name="space-before.maximum"><xsl:value-of select="concat($body.font.master, 'pt * 1.2')"></xsl:value-of></xsl:attribute> + <xsl:attribute name="hyphenate">false</xsl:attribute> + <xsl:attribute name="text-align"> + <xsl:choose> + <xsl:when test="((parent::article | parent::articleinfo | parent::info/parent::article) and not(ancestor::book) and not(self::bibliography)) or (parent::slides | parent::slidesinfo)">center</xsl:when> + <xsl:otherwise>start</xsl:otherwise> + </xsl:choose> + </xsl:attribute> + <xsl:attribute name="start-indent"><xsl:value-of select="$title.margin.left"></xsl:value-of></xsl:attribute> +</xsl:attribute-set> + + + +Description + +The properties common to all component titles. + + + + + + +component.titlepage.properties +attribute set + + +component.titlepage.properties +Properties for component titlepages + + + + +<xsl:attribute-set name="component.titlepage.properties"> +</xsl:attribute-set> + + + +Description + +The properties that are applied to the outer block containing +all the component title page information. +Its main use is to set a span="all" +property on the block that is a direct child of the flow. + +This attribute-set also applies to index titlepages. It is empty by default. + + + + + + +section.title.properties +attribute set + + +section.title.properties +Properties for section titles + + + + +<xsl:attribute-set name="section.title.properties"> + <xsl:attribute name="font-family"> + <xsl:value-of select="$title.font.family"></xsl:value-of> + </xsl:attribute> + <xsl:attribute name="font-weight">bold</xsl:attribute> + <!-- font size is calculated dynamically by section.heading template --> + <xsl:attribute name="keep-with-next.within-column">always</xsl:attribute> + <xsl:attribute name="space-before.minimum">0.8em</xsl:attribute> + <xsl:attribute name="space-before.optimum">1.0em</xsl:attribute> + <xsl:attribute name="space-before.maximum">1.2em</xsl:attribute> + <xsl:attribute name="text-align">start</xsl:attribute> + <xsl:attribute name="start-indent"><xsl:value-of select="$title.margin.left"></xsl:value-of></xsl:attribute> +</xsl:attribute-set> + + + +Description + +The properties common to all section titles. + + + + + + +section.title.level1.properties +attribute set + + +section.title.level1.properties +Properties for level-1 section titles + + + + +<xsl:attribute-set name="section.title.level1.properties"> + <xsl:attribute name="font-size"> + <xsl:value-of select="$body.font.master * 2.0736"></xsl:value-of> + <xsl:text>pt</xsl:text> + </xsl:attribute> +</xsl:attribute-set> + + + +Description + +The properties of level-1 section titles. + + + + + + + +section.title.level2.properties +attribute set + + +section.title.level2.properties +Properties for level-2 section titles + + + + +<xsl:attribute-set name="section.title.level2.properties"> + <xsl:attribute name="font-size"> + <xsl:value-of select="$body.font.master * 1.728"></xsl:value-of> + <xsl:text>pt</xsl:text> + </xsl:attribute> +</xsl:attribute-set> + + + +Description + +The properties of level-2 section titles. + + + + + + +section.title.level3.properties +attribute set + + +section.title.level3.properties +Properties for level-3 section titles + + + + +<xsl:attribute-set name="section.title.level3.properties"> + <xsl:attribute name="font-size"> + <xsl:value-of select="$body.font.master * 1.44"></xsl:value-of> + <xsl:text>pt</xsl:text> + </xsl:attribute> +</xsl:attribute-set> + + + +Description + +The properties of level-3 section titles. + + + + + + +section.title.level4.properties +attribute set + + +section.title.level4.properties +Properties for level-4 section titles + + + + +<xsl:attribute-set name="section.title.level4.properties"> + <xsl:attribute name="font-size"> + <xsl:value-of select="$body.font.master * 1.2"></xsl:value-of> + <xsl:text>pt</xsl:text> + </xsl:attribute> +</xsl:attribute-set> + + + +Description + +The properties of level-4 section titles. + + + + + + +section.title.level5.properties +attribute set + + +section.title.level5.properties +Properties for level-5 section titles + + + + +<xsl:attribute-set name="section.title.level5.properties"> + <xsl:attribute name="font-size"> + <xsl:value-of select="$body.font.master"></xsl:value-of> + <xsl:text>pt</xsl:text> + </xsl:attribute> +</xsl:attribute-set> + + + +Description + +The properties of level-5 section titles. + + + + + + +section.title.level6.properties +attribute set + + +section.title.level6.properties +Properties for level-6 section titles + + + + +<xsl:attribute-set name="section.title.level6.properties"> + <xsl:attribute name="font-size"> + <xsl:value-of select="$body.font.master"></xsl:value-of> + <xsl:text>pt</xsl:text> + </xsl:attribute> +</xsl:attribute-set> + + + +Description + +The properties of level-6 section titles. This property set is actually +used for all titles below level 5. + + + + + + +section.properties +attribute set + + +section.properties +Properties for all section levels + + + + +<xsl:attribute-set name="section.properties"> +</xsl:attribute-set> + + + +Description + +The properties that apply to the containing +block of all section levels, and therefore apply to +the whole section. +This attribute set is inherited by the +more specific attribute sets such as +section.level1.properties. +The default is empty. + + + + + + + +section.level1.properties +attribute set + + +section.level1.properties +Properties for level-1 sections + + + + +<xsl:attribute-set name="section.level1.properties" use-attribute-sets="section.properties"> +</xsl:attribute-set> + + + +Description + +The properties that apply to the containing +block of a level-1 section, and therefore apply to +the whole section. This includes sect1 +elements and section elements at level 1. + + +For example, you could start each level-1 section on +a new page by using: +<xsl:attribute-set name="section.level1.properties"> + <xsl:attribute name="break-before">page</xsl:attribute> +</xsl:attribute-set> + + +This attribute set inherits attributes from the +general section.properties attribute set. + + + + + + + +section.level2.properties +attribute set + + +section.level2.properties +Properties for level-2 sections + + + + +<xsl:attribute-set name="section.level2.properties" use-attribute-sets="section.properties"> +</xsl:attribute-set> + + + +Description + +The properties that apply to the containing +block of a level-2 section, and therefore apply to +the whole section. This includes sect2 +elements and section elements at level 2. + + +For example, you could start each level-2 section on +a new page by using: +<xsl:attribute-set name="section.level2.properties"> + <xsl:attribute name="break-before">page</xsl:attribute> +</xsl:attribute-set> + + +This attribute set inherits attributes from the +general section.properties attribute set. + + + + + + + +section.level3.properties +attribute set + + +section.level3.properties +Properties for level-3 sections + + + + +<xsl:attribute-set name="section.level3.properties" use-attribute-sets="section.properties"> +</xsl:attribute-set> + + + +Description + +The properties that apply to the containing +block of a level-3 section, and therefore apply to +the whole section. This includes sect3 +elements and section elements at level 3. + + +For example, you could start each level-3 section on +a new page by using: +<xsl:attribute-set name="section.level3.properties"> + <xsl:attribute name="break-before">page</xsl:attribute> +</xsl:attribute-set> + + +This attribute set inherits attributes from the +general section.properties attribute set. + + + + + + + +section.level4.properties +attribute set + + +section.level4.properties +Properties for level-4 sections + + + + +<xsl:attribute-set name="section.level4.properties" use-attribute-sets="section.properties"> +</xsl:attribute-set> + + + +Description + +The properties that apply to the containing +block of a level-4 section, and therefore apply to +the whole section. This includes sect4 +elements and section elements at level 4. + + +For example, you could start each level-4 section on +a new page by using: +<xsl:attribute-set name="section.level4.properties"> + <xsl:attribute name="break-before">page</xsl:attribute> +</xsl:attribute-set> + + +This attribute set inherits attributes from the +general section.properties attribute set. + + + + + + + +section.level5.properties +attribute set + + +section.level5.properties +Properties for level-5 sections + + + + +<xsl:attribute-set name="section.level5.properties" use-attribute-sets="section.properties"> +</xsl:attribute-set> + + + +Description + +The properties that apply to the containing +block of a level-5 section, and therefore apply to +the whole section. This includes sect5 +elements and section elements at level 5. + + +For example, you could start each level-5 section on +a new page by using: +<xsl:attribute-set name="section.level5.properties"> + <xsl:attribute name="break-before">page</xsl:attribute> +</xsl:attribute-set> + + +This attribute set inherits attributes from the +general section.properties attribute set. + + + + + + + +section.level6.properties +attribute set + + +section.level6.properties +Properties for level-6 sections + + + + +<xsl:attribute-set name="section.level6.properties" use-attribute-sets="section.properties"> +</xsl:attribute-set> + + + +Description + +The properties that apply to the containing +block of a level 6 or lower section, and therefore apply to +the whole section. This includes +section elements at level 6 and lower. + + +For example, you could start each level-6 section on +a new page by using: +<xsl:attribute-set name="section.level6.properties"> + <xsl:attribute name="break-before">page</xsl:attribute> +</xsl:attribute-set> + + +This attribute set inherits attributes from the +general section.properties attribute set. + + + + + + + +figure.properties +attribute set + + +figure.properties +Properties associated with a figure + + + + +<xsl:attribute-set name="figure.properties" use-attribute-sets="formal.object.properties"></xsl:attribute-set> + + + +Description + +The styling for figures. + + + + + + +example.properties +attribute set + + +example.properties +Properties associated with a example + + + + +<xsl:attribute-set name="example.properties" use-attribute-sets="formal.object.properties"></xsl:attribute-set> + + + +Description + +The styling for examples. + + + + + + +equation.properties +attribute set + + +equation.properties +Properties associated with a equation + + + + +<xsl:attribute-set name="equation.properties" use-attribute-sets="formal.object.properties"></xsl:attribute-set> + + + +Description + +The styling for equations. + + + + + + +equation.number.properties +attribute set + + +equation.number.properties +Properties that apply to the fo:table-cell containing the number +of an equation that does not have a title. + + + +<xsl:attribute-set name="equation.number.properties"> + <xsl:attribute name="text-align">end</xsl:attribute> + <xsl:attribute name="display-align">center</xsl:attribute> +</xsl:attribute-set> + +Description +Properties that apply to the fo:table-cell containing the number +of an equation when it has no title. The number in an equation with a +title is formatted along with the title, and this attribute-set does not apply. + + + + + +table.properties +attribute set + + +table.properties +Properties associated with the block surrounding a table + + + + +<xsl:attribute-set name="table.properties" use-attribute-sets="formal.object.properties"> + <xsl:attribute name="keep-together.within-column">auto</xsl:attribute> +</xsl:attribute-set> + + + +Description + +Block styling properties for tables. This parameter should really +have been called table.block.properties or something +like that, but we’re leaving it to avoid backwards-compatibility +problems. + +See also table.table.properties. + + + + + + +informalfigure.properties +attribute set + + +informalfigure.properties +Properties associated with an informalfigure + + + + +<xsl:attribute-set name="informalfigure.properties" use-attribute-sets="informal.object.properties"></xsl:attribute-set> + + + +Description + +The styling for informalfigures. + + + + + + +informalexample.properties +attribute set + + +informalexample.properties +Properties associated with an informalexample + + + + +<xsl:attribute-set name="informalexample.properties" use-attribute-sets="informal.object.properties"></xsl:attribute-set> + + + +Description + +The styling for informalexamples. + + + + + + +informalequation.properties +attribute set + + +informalequation.properties +Properties associated with an informalequation + + + + +<xsl:attribute-set name="informalequation.properties" use-attribute-sets="informal.object.properties"></xsl:attribute-set> + + + +Description + +The styling for informalequations. + + + + + + +informaltable.properties +attribute set + + +informaltable.properties +Properties associated with the block surrounding an informaltable + + + + +<xsl:attribute-set name="informaltable.properties" use-attribute-sets="informal.object.properties"></xsl:attribute-set> + + + +Description + +Block styling properties for informaltables. This parameter should really +have been called informaltable.block.properties or something +like that, but we’re leaving it to avoid backwards-compatibility +problems. + +See also table.table.properties. + + + + + + +procedure.properties +attribute set + + +procedure.properties +Properties associated with a procedure + + + + +<xsl:attribute-set name="procedure.properties" use-attribute-sets="formal.object.properties"> + <xsl:attribute name="keep-together.within-column">auto</xsl:attribute> +</xsl:attribute-set> + + + +Description + +The styling for procedures. + + + + + + +root.properties +attribute set + + +root.properties +The properties of the fo:root element + + + + +<xsl:attribute-set name="root.properties"> + <xsl:attribute name="font-family"> + <xsl:value-of select="$body.fontset"></xsl:value-of> + </xsl:attribute> + <xsl:attribute name="font-size"> + <xsl:value-of select="$body.font.size"></xsl:value-of> + </xsl:attribute> + <xsl:attribute name="text-align"> + <xsl:value-of select="$alignment"></xsl:value-of> + </xsl:attribute> + <xsl:attribute name="line-height"> + <xsl:value-of select="$line-height"></xsl:value-of> + </xsl:attribute> + <xsl:attribute name="font-selection-strategy">character-by-character</xsl:attribute> + <xsl:attribute name="line-height-shift-adjustment">disregard-shifts</xsl:attribute> + <xsl:attribute name="writing-mode"> + <xsl:value-of select="$direction.mode"></xsl:value-of> + </xsl:attribute> +</xsl:attribute-set> + + + +Description + +This property set is used on the fo:root element of +an FO file. It defines a set of default, global parameters. + + + + + + +qanda.title.properties +attribute set + + +qanda.title.properties +Properties for qanda set titles + + + + +<xsl:attribute-set name="qanda.title.properties"> + <xsl:attribute name="font-family"> + <xsl:value-of select="$title.font.family"></xsl:value-of> + </xsl:attribute> + <xsl:attribute name="font-weight">bold</xsl:attribute> + <!-- font size is calculated dynamically by qanda.heading template --> + <xsl:attribute name="keep-with-next.within-column">always</xsl:attribute> + <xsl:attribute name="space-before.minimum">0.8em</xsl:attribute> + <xsl:attribute name="space-before.optimum">1.0em</xsl:attribute> + <xsl:attribute name="space-before.maximum">1.2em</xsl:attribute> +</xsl:attribute-set> + + + +Description + +The properties common to all qanda set titles. + + + + + + +qanda.title.level1.properties +attribute set + + +qanda.title.level1.properties +Properties for level-1 qanda set titles + + + + +<xsl:attribute-set name="qanda.title.level1.properties"> + <xsl:attribute name="font-size"> + <xsl:value-of select="$body.font.master * 2.0736"></xsl:value-of> + <xsl:text>pt</xsl:text> + </xsl:attribute> +</xsl:attribute-set> + + + +Description + +The properties of level-1 qanda set titles. + + + + + + +qanda.title.level2.properties +attribute set + + +qanda.title.level2.properties +Properties for level-2 qanda set titles + + + + +<xsl:attribute-set name="qanda.title.level2.properties"> + <xsl:attribute name="font-size"> + <xsl:value-of select="$body.font.master * 1.728"></xsl:value-of> + <xsl:text>pt</xsl:text> + </xsl:attribute> +</xsl:attribute-set> + + + +Description + +The properties of level-2 qanda set titles. + + + + + + +qanda.title.level3.properties +attribute set + + +qanda.title.level3.properties +Properties for level-3 qanda set titles + + + + +<xsl:attribute-set name="qanda.title.level3.properties"> + <xsl:attribute name="font-size"> + <xsl:value-of select="$body.font.master * 1.44"></xsl:value-of> + <xsl:text>pt</xsl:text> + </xsl:attribute> +</xsl:attribute-set> + + + +Description + +The properties of level-3 qanda set titles. + + + + + + +qanda.title.level4.properties +attribute set + + +qanda.title.level4.properties +Properties for level-4 qanda set titles + + + + +<xsl:attribute-set name="qanda.title.level4.properties"> + <xsl:attribute name="font-size"> + <xsl:value-of select="$body.font.master * 1.2"></xsl:value-of> + <xsl:text>pt</xsl:text> + </xsl:attribute> +</xsl:attribute-set> + + + +Description + +The properties of level-4 qanda set titles. + + + + + + +qanda.title.level5.properties +attribute set + + +qanda.title.level5.properties +Properties for level-5 qanda set titles + + + + +<xsl:attribute-set name="qanda.title.level5.properties"> + <xsl:attribute name="font-size"> + <xsl:value-of select="$body.font.master"></xsl:value-of> + <xsl:text>pt</xsl:text> + </xsl:attribute> +</xsl:attribute-set> + + + +Description + +The properties of level-5 qanda set titles. + + + + + + +qanda.title.level6.properties +attribute set + + +qanda.title.level6.properties +Properties for level-6 qanda set titles + + + + +<xsl:attribute-set name="qanda.title.level6.properties"> + <xsl:attribute name="font-size"> + <xsl:value-of select="$body.font.master"></xsl:value-of> + <xsl:text>pt</xsl:text> + </xsl:attribute> +</xsl:attribute-set> + + + +Description + +The properties of level-6 qanda set titles. +This property set is actually +used for all titles below level 5. + + + + + + +article.appendix.title.properties +attribute set + + +article.appendix.title.properties +Properties for appendix titles that appear in an article + + + + +<xsl:attribute-set name="article.appendix.title.properties" use-attribute-sets="section.title.properties section.title.level1.properties"> + <xsl:attribute name="margin-{$direction.align.start}"> + <xsl:value-of select="$title.margin.left"></xsl:value-of> + </xsl:attribute> +</xsl:attribute-set> + + + +Description + +The properties for the title of an appendix that +appears inside an article. The default is to use +the properties of sect1 titles. + + + + + + +abstract.properties +attribute set + + +abstract.properties +Properties associated with the block surrounding an abstract + + + + +<xsl:attribute-set name="abstract.properties"> + <xsl:attribute name="start-indent">0.0in</xsl:attribute> + <xsl:attribute name="end-indent">0.0in</xsl:attribute> +</xsl:attribute-set> + + + +Description + +Block styling properties for abstract. + +See also abstract.title.properties. + + + + + + +abstract.title.properties +attribute set + + +abstract.title.properties +Properties for abstract titles + + + + +<xsl:attribute-set name="abstract.title.properties"> + <xsl:attribute name="font-family"><xsl:value-of select="$title.fontset"></xsl:value-of></xsl:attribute> + <xsl:attribute name="font-weight">bold</xsl:attribute> + <xsl:attribute name="keep-with-next.within-column">always</xsl:attribute> + <xsl:attribute name="keep-with-next.within-column">always</xsl:attribute> + <xsl:attribute name="space-before.optimum"><xsl:value-of select="concat($body.font.master, 'pt')"></xsl:value-of></xsl:attribute> + <xsl:attribute name="space-before.minimum"><xsl:value-of select="concat($body.font.master, 'pt * 0.8')"></xsl:value-of></xsl:attribute> + <xsl:attribute name="space-before.maximum"><xsl:value-of select="concat($body.font.master, 'pt * 1.2')"></xsl:value-of></xsl:attribute> + <xsl:attribute name="hyphenate">false</xsl:attribute> + <xsl:attribute name="text-align">center</xsl:attribute> +</xsl:attribute-set> + + + +Description + +The properties for abstract titles. + +See also abstract.properties. + + + + + + +index.page.number.properties +attribute set + + +index.page.number.properties +Properties associated with index page numbers + + + + +<xsl:attribute-set name="index.page.number.properties"> +</xsl:attribute-set> + + + +Description + +Properties associated with page numbers in indexes. +Changing color to indicate the page number is a link is +one possibility. + + + + + + + +revhistory.table.properties +attribute set + + +revhistory.table.properties +The properties of table used for formatting revhistory + + + + +<xsl:attribute-set name="revhistory.table.properties"> +</xsl:attribute-set> + + + +Description + +This property set defines appearance of revhistory table. + + + + + + +revhistory.table.cell.properties +attribute set + + +revhistory.table.cell.properties +The properties of table cells used for formatting revhistory + + + + +<xsl:attribute-set name="revhistory.table.cell.properties"> +</xsl:attribute-set> + + + +Description + +This property set defines appearance of individual cells in revhistory table. + + + + + + +revhistory.title.properties +attribute set + + +revhistory.title.properties +The properties of revhistory title + + + + +<xsl:attribute-set name="revhistory.title.properties"> +</xsl:attribute-set> + + + +Description + +This property set defines appearance of revhistory title. + + + + +Profiling + +The following parameters can be used for attribute-based +profiling of your document. For more information about profiling, see +Profiling (conditional text). + + + +profile.arch +string + + +profile.arch +Target profile for arch +attribute + + + + +<xsl:param name="profile.arch"></xsl:param> + + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + + + + +profile.audience +string + + +profile.audience +Target profile for audience +attribute + + + + +<xsl:param name="profile.audience"></xsl:param> + + + +Description + +Value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + + + + +profile.condition +string + + +profile.condition +Target profile for condition +attribute + + + + +<xsl:param name="profile.condition"></xsl:param> + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + + + + +profile.conformance +string + + +profile.conformance +Target profile for conformance +attribute + + + + +<xsl:param name="profile.conformance"></xsl:param> + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + + + + +profile.lang +string + + +profile.lang +Target profile for lang +attribute + + + + +<xsl:param name="profile.lang"></xsl:param> + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + + + + +profile.os +string + + +profile.os +Target profile for os +attribute + + + + +<xsl:param name="profile.os"></xsl:param> + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + + + + +profile.revision +string + + +profile.revision +Target profile for revision +attribute + + + + +<xsl:param name="profile.revision"></xsl:param> + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + + + + +profile.revisionflag +string + + +profile.revisionflag +Target profile for revisionflag +attribute + + + + +<xsl:param name="profile.revisionflag"></xsl:param> + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + + + + +profile.role +string + + +profile.role +Target profile for role +attribute + + + + +<xsl:param name="profile.role"></xsl:param> + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + +Note that role is often +used for other purposes than profiling. For example it is commonly +used to get emphasize in bold font: + +<emphasis role="bold">very important</emphasis> + +If you are using role for +these purposes do not forget to add values like bold to +value of this parameter. If you forgot you will get document with +small pieces missing which are very hard to track. + +For this reason it is not recommended to use role attribute for profiling. You should +rather use profiling specific attributes like userlevel, os, arch, condition, etc. + + + + + + + +profile.security +string + + +profile.security +Target profile for security +attribute + + + + +<xsl:param name="profile.security"></xsl:param> + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + + + + +profile.status +string + + +profile.status +Target profile for status +attribute + + + + +<xsl:param name="profile.status"></xsl:param> + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + + + + +profile.userlevel +string + + +profile.userlevel +Target profile for userlevel +attribute + + + + +<xsl:param name="profile.userlevel"></xsl:param> + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + + + + +profile.vendor +string + + +profile.vendor +Target profile for vendor +attribute + + + + +<xsl:param name="profile.vendor"></xsl:param> + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + + + + +profile.wordsize +string + + +profile.wordsize +Target profile for wordsize +attribute + + + + +<xsl:param name="profile.wordsize"></xsl:param> + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + + + + +profile.attribute +string + + +profile.attribute +Name of user-specified profiling attribute + + + + +<xsl:param name="profile.attribute"></xsl:param> + + + +Description + +This parameter is used in conjuction with +profile.value. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + + + + +profile.value +string + + +profile.value +Target profile for user-specified attribute + + + + +<xsl:param name="profile.value"></xsl:param> + + + +Description + +When you are using this parameter you must also specify name of +profiling attribute with parameter +profile.attribute. + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + + + + +profile.separator +string + + +profile.separator +Separator character for compound profile values + + + + +<xsl:param name="profile.separator">;</xsl:param> + + + +Description + +Separator character used for compound profile values. See profile.arch + + + + +Localization + + +l10n.gentext.language +string + + +l10n.gentext.language +Sets the gentext language + + + + +<xsl:param name="l10n.gentext.language"></xsl:param> + + + +Description + +If this parameter is set to any value other than the empty string, its +value will be used as the value for the language when generating text. Setting +l10n.gentext.language overrides any settings within the +document being formatted. + +It's much more likely that you might want to set the +l10n.gentext.default.language parameter. + + + + + + + l10n.gentext.default.language + string + + + l10n.gentext.default.language + Sets the default language for generated text + + + + +<xsl:param name="l10n.gentext.default.language">en</xsl:param> + + + +Description + +The value of the l10n.gentext.default.language +parameter is used as the language for generated text if no setting is provided +in the source document. + + + + + + +l10n.gentext.use.xref.language +boolean + + +l10n.gentext.use.xref.language +Use the language of target when generating cross-reference text? + + + + +<xsl:param name="l10n.gentext.use.xref.language" select="0"></xsl:param> + + + +Description + +If non-zero, the language of the target will be used when +generating cross reference text. Usually, the current +language is used when generating text (that is, the language of the +element that contains the cross-reference element). But setting this parameter +allows the language of the element pointed to to control +the generated text. + +Consider the following example: + + +<para lang="en">See also <xref linkend="chap3"/>.</para> + + + +Suppose that Chapter 3 happens to be written in German. +If l10n.gentext.use.xref.language is non-zero, the +resulting text will be something like this: + +
    +See also Kapital 3. +
    + +Where the more traditional rendering would be: + +
    +See also Chapter 3. +
    + +
    +
    + + + +l10n.lang.value.rfc.compliant +boolean + + +l10n.lang.value.rfc.compliant +Make value of lang attribute RFC compliant? + + + + +<xsl:param name="l10n.lang.value.rfc.compliant" select="1"></xsl:param> + + + +Description + +If non-zero, ensure that the values for all lang attributes in HTML output are RFC +compliantSection 8.1.1, Language Codes, in the HTML 4.0 Recommendation states that: + +
    [RFC1766] defines and explains the language codes +that must be used in HTML documents. +Briefly, language codes consist of a primary code and a possibly +empty series of subcodes: + +language-code = primary-code ( "-" subcode )* + +And in RFC 1766, Tags for the Identification +of Languages, the EBNF for "language tag" is given as: + +Language-Tag = Primary-tag *( "-" Subtag ) +Primary-tag = 1*8ALPHA +Subtag = 1*8ALPHA + +
    +
    . + +by taking any underscore characters in any lang values found in source documents, and +replacing them with hyphen characters in output HTML files. For +example, zh_CN in a source document becomes +zh-CN in the HTML output form that source. + + +This parameter does not cause any case change in lang values, because RFC 1766 +explicitly states that all "language tags" (as it calls them) "are +to be treated as case insensitive". + +
    + +
    +
    + + + +writing.mode +string + + +writing.mode +Direction of text flow based on locale + + + + +<xsl:param name="writing.mode"> + <xsl:call-template name="gentext"> + <xsl:with-param name="key">writing-mode</xsl:with-param> + <xsl:with-param name="lang"> + <xsl:call-template name="l10n.language"> + <xsl:with-param name="target" select="/*[1]"></xsl:with-param> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> +</xsl:param> + + + +Description + +Sets direction of text flow and text alignment based on locale. +The value is normally taken from the gentext file for the +lang attribute of the document's root element, using the +key name 'writing-mode' to look it up in the gentext file. +But the param can also be +set on the command line to override that gentext value. + +Accepted values are: + + + lr-tb + + Left-to-right text flow in each line, lines stack top to bottom. + + + + rl-tb + + Right-to-left text flow in each line, lines stack top to bottom. + + + + tb-rl + + Top-to-bottom text flow in each vertical line, lines stack right to left. + Supported by only a few XSL-FO processors. Not supported in HTML output. + + + + lr + + Shorthand for lr-tb. + + + + rl + + Shorthand for rl-tb. + + + + tb + + Shorthand for tb-rl. + + + + + + + + +
    EBNF + + +ebnf.assignment +rtf + + +ebnf.assignment +The EBNF production assignment operator + + + + + +<xsl:param name="ebnf.assignment"> + <fo:inline font-family="{$monospace.font.family}"> + <xsl:text>::=</xsl:text> + </fo:inline> +</xsl:param> + + + +Description + +The ebnf.assignment parameter determines what +text is used to show assignment in productions +in productionsets. + +While ::= is common, so are several +other operators. + + + + + + +ebnf.statement.terminator +rtf + + +ebnf.statement.terminator +Punctuation that ends an EBNF statement. + + + + + +<xsl:param name="ebnf.statement.terminator"></xsl:param> + + + +Description + +The ebnf.statement.terminator parameter determines what +text is used to terminate each production +in productionset. + +Some notations end each statement with a period. + + + + +Prepress + + +crop.marks +boolean + + +crop.marks +Output crop marks? + + + + +<xsl:param name="crop.marks" select="0"></xsl:param> + + + +Description + +If non-zero, crop marks will be added to each page. Currently this +works only with XEP if you have xep.extensions set. + + + + + + +crop.mark.width +length + + +crop.mark.width +Width of crop marks. + + + + +<xsl:param name="crop.mark.width">0.5pt</xsl:param> + + + +Description + +Width of crop marks. Crop marks are controlled by +crop.marks parameter. + + + + + + +crop.mark.offset +length + + +crop.mark.offset +Length of crop marks. + + + + +<xsl:param name="crop.mark.offset">24pt</xsl:param> + + + +Description + +Length of crop marks. Crop marks are controlled by +crop.marks parameter. + + + + + + +crop.mark.bleed +length + + +crop.mark.bleed +Length of invisible part of crop marks. + + + + +<xsl:param name="crop.mark.bleed">6pt</xsl:param> + + + +Description + +Length of invisible part of crop marks. Crop marks are controlled by +crop.marks parameter. + + + + + +
    + + + + Manpages Parameter Reference + + + This is reference documentation for all user-configurable + parameters in the DocBook XSL "manpages" stylesheet (for + generating groff/nroff output). Note that the manpages + stylesheet is a customization layer of the DocBook XSL HTML + stylesheet. Therefore, you can also use a number of HTML stylesheet parameters + to control manpages output (in addition to the + manpages-specific parameters listed in this section). + + + + Hyphenation, justification, and breaking + + +man.hyphenate +boolean + + +man.hyphenate +Enable hyphenation? + + + + +<xsl:param name="man.hyphenate">0</xsl:param> + + +Description + +If non-zero, hyphenation is enabled. + + +The default value for this parameter is zero because groff is +not particularly smart about how it does hyphenation; it can end up +hyphenating a lot of things that you don't want hyphenated. To +mitigate that, the default behavior of the stylesheets is to suppress +hyphenation of computer inlines, filenames, and URLs. (You can +override the default behavior by setting non-zero values for the +man.hyphenate.urls, +man.hyphenate.filenames, and +man.hyphenate.computer.inlines parameters.) But +the best way is still to just globally disable hyphenation, as the +stylesheets do by default. + +The only good reason to enabled hyphenation is if you have also +enabled justification (which is disabled by default). The reason is +that justified text can look very bad unless you also hyphenate it; to +quote the Hypenation node from the groff info page: + +
    + Since the odds are not great for finding a set of + words, for every output line, which fit nicely on a line without + inserting excessive amounts of space between words, 'gtroff' + hyphenates words so that it can justify lines without inserting too + much space between words. +
    + +So, if you set a non-zero value for the +man.justify parameter (to enable +justification), then you should probably also set a non-zero value for +man.hyphenate (to enable hyphenation).
    +
    + + +
    +
    + + + +man.hyphenate.urls +boolean + + +man.hyphenate.urls +Hyphenate URLs? + + + + +<xsl:param name="man.hyphenate.urls">0</xsl:param> + + +Description + +If zero (the default), hyphenation is suppressed for output of +the ulink url attribute. + + + If hyphenation is already turned off globally (that is, if + man.hyphenate is zero, setting + man.hyphenate.urls is not necessary. + + +If man.hyphenate.urls is non-zero, URLs +will not be treated specially and are subject to hyphenation just like +other words. + + + If you are thinking about setting a non-zero value for + man.hyphenate.urls in order to make long + URLs break across lines, you'd probably be better off + experimenting with setting the + man.break.after.slash parameter first. That + will cause long URLs to be broken after slashes. + + + + + + + +man.hyphenate.filenames +boolean + + +man.hyphenate.filenames +Hyphenate filenames? + + + + +<xsl:param name="man.hyphenate.filenames">0</xsl:param> + + +Description + +If zero (the default), hyphenation is suppressed for +filename output. + + + If hyphenation is already turned off globally (that is, if + man.hyphenate is zero, setting + man.hyphenate.filenames is not + necessary. + + +If man.hyphenate.filenames is non-zero, +filenames will not be treated specially and are subject to hyphenation +just like other words. + + + If you are thinking about setting a non-zero value for + man.hyphenate.filenames in order to make long + filenames/pathnames break across lines, you'd probably be better off + experimenting with setting the + man.break.after.slash parameter first. That + will cause long pathnames to be broken after slashes. + + + + + + + +man.hyphenate.computer.inlines +boolean + + +man.hyphenate.computer.inlines +Hyphenate computer inlines? + + + + +<xsl:param name="man.hyphenate.computer.inlines">0</xsl:param> + + +Description + +If zero (the default), hyphenation is suppressed for +computer inlines such as environment variables, +constants, etc. This parameter current affects output of the following +elements: + + + classname + constant + envar + errorcode + option + replaceable + userinput + type + varname + + + + + If hyphenation is already turned off globally (that is, if + man.hyphenate is zero, setting the + man.hyphenate.computer.inlines is not + necessary. + + +If man.hyphenate.computer.inlines is +non-zero, computer inlines will not be treated specially and will be +hyphenated like other words when needed. + + + + + + +man.justify +boolean + + +man.justify +Justify text to both right and left margins? + + + + +<xsl:param name="man.justify">0</xsl:param> + + +Description + +If non-zero, text is justified to both the right and left +margins (or, in roff terminology, "adjusted and filled" to both the +right and left margins). If zero (the default), text is adjusted to +the left margin only -- producing what is traditionally called +"ragged-right" text. + + +The default value for this parameter is zero because justified +text looks good only when it is also hyphenated. Without hyphenation, +excessive amounts of space often end up getting between words, in +order to "pad" lines out to align on the right margin. + +The problem is that groff is not particularly smart about how it +does hyphenation; it can end up hyphenating a lot of things that you +don't want hyphenated. So, disabling both justification and +hyphenation ensures that hyphens won't get inserted where you don't +want to them, and you don't end up with lines containing excessive +amounts of space between words. + +However, if do you decide to set a non-zero value for the +man.justify parameter (to enable +justification), then you should probably also set a non-zero value for +man.hyphenate (to enable hyphenation). + +Yes, these default settings run counter to how most existing man +pages are formatted. But there are some notable exceptions, such as +the perl man pages. + + + + + + +man.break.after.slash +boolean + + +man.break.after.slash +Enable line-breaking after slashes? + + + + +<xsl:param name="man.break.after.slash">0</xsl:param> + + +Description + +If non-zero, line-breaking after slashes is enabled. This is +mainly useful for causing long URLs or pathnames/filenames to be +broken up or "wrapped" across lines (though it also has the side +effect of sometimes causing relatively short URLs and pathnames to be +broken up across lines too). + +If zero (the default), line-breaking after slashes is +disabled. In that case, strings containing slashes (for example, URLs +or filenames) are not broken across lines, even if they exceed the +maximum column widith. + + + If you set a non-zero value for this parameter, check your + man-page output carefuly afterwards, in order to make sure that the + setting has not introduced an excessive amount of breaking-up of URLs + or pathnames. If your content contains mostly short URLs or + pathnames, setting a non-zero value for + man.break.after.slash will probably result in + in a significant number of relatively short URLs and pathnames being + broken across lines, which is probably not what you want. + + + + + +
    + Indentation + + +man.indent.width +length + + +man.indent.width +Specifies width used for adjusted indents + + + + +<xsl:param name="man.indent.width">4</xsl:param> + + + +Description +The man.indent.width parameter specifies +the width used for adjusted indents. The value of +man.indent.width is used for indenting of +lists, verbatims, headings, and elsewhere, depending on whether the +values of certain man.indent.* boolean parameters +are non-zero. + +The value of man.indent.width should +include a valid roff measurement unit (for example, +n or u). The default value of +4n specifies a 4-en width; when viewed on a +console, that amounts to the width of four characters. For details +about roff measurment units, see the Measurements +node in the groff info page. + + + + + + +man.indent.refsect +boolean + + +man.indent.refsect +Adjust indentation of refsect* and refsection? + + + + +<xsl:param name="man.indent.refsect" select="0"></xsl:param> + + +Description + +If the value of man.indent.refsect is +non-zero, the width of the left margin for +refsect1, refsect2 and +refsect3 contents and titles (and first-level, +second-level, and third-level nested +refsectioninstances) is adjusted by the value of +the man.indent.width parameter. With +man.indent.width set to its default value of +3n, the main results are that: + + + + contents of refsect1 are output with a + left margin of three characters instead the roff default of seven + or eight characters + + + contents of refsect2 are displayed in + console output with a left margin of six characters instead the of + the roff default of seven characters + + + the contents of refsect3 and nested + refsection instances are adjusted + accordingly. + + + +If instead the value of man.indent.refsect is +zero, no margin adjustment is done for refsect* +output. + + + If your content is primarly comprised of + refsect1 and refsect2 content + (or the refsection equivalent) – with few or + no refsect3 or lower nested sections , you may be + able to “conserve” space in your output by setting + man.indent.refsect to a non-zero value. Doing + so will “squeeze” the left margin in such as way as to provide an + additional four characters of “room” per line in + refsect1 output. That extra room may be useful + if, for example, you have many verbatim sections with long lines in + them. + + + + + + + +man.indent.blurbs +boolean + + +man.indent.blurbs +Adjust indentation of blurbs? + + + + +<xsl:param name="man.indent.blurbs" select="1"></xsl:param> + + +Description + +If the value of man.indent.blurbs is +non-zero, the width of the left margin for +authorblurb, personblurb, and +contrib output is set to the value of the +man.indent.width parameter +(3n by default). If instead the value of +man.indent.blurbs is zero, the built-in roff +default width (7.2n) is used. + + + + + + +man.indent.lists +boolean + + +man.indent.lists +Adjust indentation of lists? + + + + +<xsl:param name="man.indent.lists" select="1"></xsl:param> + + +Description + +If the value of man.indent.lists is +non-zero, the width of the left margin for list items in +itemizedlist, +orderedlist, +variablelist output (and output of some other +lists) is set to the value of the +man.indent.width parameter +(4n by default). If instead the value of +man.indent.lists is zero, the built-in roff +default width (7.2n) is used. + + + + + + +man.indent.verbatims +boolean + + +man.indent.verbatims +Adjust indentation of verbatims? + + + + +<xsl:param name="man.indent.verbatims" select="1"></xsl:param> + + +Description + +If the value of man.indent.verbatims is +non-zero, the width of the left margin for output of verbatim +environments (programlisting, +screen, and so on) is set to the value of the +man.indent.width parameter +(3n by default). If instead the value of +man.indent.verbatims is zero, the built-in roff +default width (7.2n) is used. + + + + + + Fonts + + +man.font.funcprototype +string + + +man.font.funcprototype +Specifies font for funcprototype output + + + + + <xsl:param name="man.font.funcprototype">BI</xsl:param> + + + +Description + +The man.font.funcprototype parameter +specifies the font for funcprototype output. It +should be a valid roff font name, such as BI or +B. + + + + + + +man.font.funcsynopsisinfo +string + + +man.font.funcsynopsisinfo +Specifies font for funcsynopsisinfo output + + + + + <xsl:param name="man.font.funcsynopsisinfo">B</xsl:param> + + + +Description + +The man.font.funcsynopsisinfo parameter +specifies the font for funcsynopsisinfo output. It +should be a valid roff font name, such as B or +I. + + + + + + +man.font.links +string + + +man.font.links +Specifies font for links + + + + +<xsl:param name="man.font.links">B</xsl:param> + + + +Description + +The man.font.links parameter +specifies the font for output of links (ulink instances +and any instances of any element with an xlink:href attribute). + +The value of man.font.links must be + either B or I, or empty. If +the value is empty, no font formatting is applied to links. + +If you set man.endnotes.are.numbered and/or +man.endnotes.list.enabled to zero (disabled), then +you should probably also set an empty value for +man.font.links. But if +man.endnotes.are.numbered is non-zero (enabled), +you should probably keep +man.font.links set to +B or IThe + main purpose of applying a font format to links in most output +formats it to indicate that the formatted text is +“clickable”; given that links rendered in man pages are +not “real” hyperlinks that users can click on, it might +seem like there is never a good reason to have font formatting for +link contents in man output. +In fact, if you suppress the +display of inline link references (by setting +man.endnotes.are.numbered to zero), there is no +good reason to apply font formatting to links. However, if +man.endnotes.are.numbered is non-zero, having +font formatting for links (arguably) serves a purpose: It provides +“context” information about exactly what part of the text +is being “annotated” by the link. Depending on how you +mark up your content, that context information may or may not +have value.. + + +Related Parameters + man.endnotes.list.enabled, + man.endnotes.are.numbered + + + + + + +man.font.table.headings +string + + +man.font.table.headings +Specifies font for table headings + + + + + <xsl:param name="man.font.table.headings">B</xsl:param> + + + +Description + +The man.font.table.headings parameter +specifies the font for table headings. It should be +a valid roff font, such as B or +I. + + + + + + +man.font.table.title +string + + +man.font.table.title +Specifies font for table headings + + + + + <xsl:param name="man.font.table.title">B</xsl:param> + + + +Description + +The man.font.table.title parameter +specifies the font for table titles. It should be +a valid roff font, such as B or +I. + + + + + + SYNOPSIS section + + +man.funcsynopsis.style +list +ansi +kr + + +man.funcsynopsis.style +What style of funcsynopsis should be generated? + + +<xsl:param name="man.funcsynopsis.style">ansi</xsl:param> + +Description +If man.funcsynopsis.style is +ansi, ANSI-style function synopses are +generated for a funcsynopsis, otherwise K&R-style +function synopses are generated. + + + + + AUTHORS and COPYRIGHT sections + + +man.authors.section.enabled +boolean + + +man.authors.section.enabled +Display auto-generated AUTHORS section? + + + +<xsl:param name="man.authors.section.enabled">1</xsl:param> + + +Description + +If the value of +man.authors.section.enabled is non-zero +(the default), then an AUTHORS section is +generated near the end of each man page. The output of the +AUTHORS section is assembled from any +author, editor, and othercredit +metadata found in the contents of the child info or +refentryinfo (if any) of the refentry +itself, or from any author, editor, and +othercredit metadata that may appear in info +contents of any ancestors of the refentry. + +If the value of +man.authors.section.enabled is zero, the +the auto-generated AUTHORS section is +suppressed. + +Set the value of + man.authors.section.enabled to zero if + you want to have a manually created AUTHORS + section in your source, and you want it to appear in output + instead of the auto-generated AUTHORS + section. + + + + + +man.copyright.section.enabled +boolean + + +man.copyright.section.enabled +Display auto-generated COPYRIGHT section? + + + +<xsl:param name="man.copyright.section.enabled">1</xsl:param> + + +Description + +If the value of +man.copyright.section.enabled is non-zero +(the default), then a COPYRIGHT section is +generated near the end of each man page. The output of the +COPYRIGHT section is assembled from any +copyright and legalnotice metadata found in +the contents of the child info or +refentryinfo (if any) of the refentry +itself, or from any copyright and +legalnotice metadata that may appear in info +contents of any ancestors of the refentry. + +If the value of +man.copyright.section.enabled is zero, the +the auto-generated COPYRIGHT section is +suppressed. + +Set the value of + man.copyright.section.enabled to zero if + you want to have a manually created COPYRIGHT + section in your source, and you want it to appear in output + instead of the auto-generated COPYRIGHT + section. + + + + + Endnotes and link handling + + +man.endnotes.list.enabled +boolean + + +man.endnotes.list.enabled +Display endnotes list at end of man page? + + + + +<xsl:param name="man.endnotes.list.enabled">1</xsl:param> + + + +Description + +If the value of man.endnotes.list.enabled is +non-zero (the default), then an endnotes list is added to the end of +the output man page. + +If the value of man.endnotes.list.enabled is +zero, the list is suppressed — unless link numbering is enabled (that +is, if man.endnotes.are.numbered is non-zero), in +which case, that setting overrides the +man.endnotes.list.enabled setting, and the +endnotes list is still displayed. The reason is that inline +numbering of notesources associated with endnotes only makes sense +if a (numbered) list of endnotes is also generated. + + + Leaving + man.endnotes.list.enabled at its default + (non-zero) value ensures that no “out of line” information (such + as the URLs for hyperlinks and images) gets lost in your + man-page output. It just gets “rearranged”. + So if you’re thinking about disabling endnotes listing by + setting the value of + man.endnotes.list.enabled to zero: + Before you do so, first take some time to carefully consider + the information needs and experiences of your users. The “out + of line” information has value even if the presentation of it + in text output is not as interactive as it may be in other + output formats. + As far as the specific case of URLs: Even though the URLs + displayed in text output may not be “real” (clickable) + hyperlinks, many X terminals have convenience features for + recognizing URLs and can, for example, present users with + an options to open a URL in a browser with the user clicks on + the URL is a terminal window. And short of those, users with X + terminals can always manually cut and paste the URLs into a web + browser. + Also, note that various “man to html” tools, such as the + widely used man2html (VH-Man2html) + application, automatically mark up URLs with a@href markup + during conversion — resulting in “real” hyperlinks in HTML + output from those tools. + + +To “turn off” numbering of endnotes in the +endnotes list, set man.endnotes.are.numbered +to zero. The endnotes list will +still be displayed; it will just be displayed without the +numbersIt can still make sense to have +the list of endnotes displayed even if you have endnotes numbering turned +off. In that case, your endnotes list basically becomes a “list +of references” without any association with specific text in +your document. This is probably the best option if you find the inline +endnotes numbering obtrusive. Your users will still have access to all the “out of line” +such as URLs for hyperlinks. + + +The default heading for the endnotes list is +NOTES. To change that, set a non-empty +value for the man.endnotes.list.heading +parameter. + +In the case of notesources that are links: Along with the +URL for each link, the endnotes list includes the contents of the +link. The list thus includes only non-empty + +A “non-empty” link is one that looks like +this: <ulink url="http://docbook.sf.net/snapshot/xsl/doc/manpages/">manpages</ulink> +an “empty link” is on that looks like this: <ulink url="http://docbook.sf.net/snapshot/xsl/doc/manpages/"/> + links. + +Empty links are never included, and never numbered. They are simply +displayed inline, without any numbering. + +In addition, if there are multiple instances of links in a +refentry that have the same URL, the URL is listed only +once. The contents listed for that link in the endnotes list are +the contents of the first link which has that URL. + +If you disable endnotes listing, you should probably also set +man.links.are.underlined to zero (to disable +link underlining). + + + + + +man.endnotes.list.heading +string + + +man.endnotes.list.heading +Specifies an alternate name for endnotes list + + + + +<xsl:param name="man.endnotes.list.heading"></xsl:param> + + + +Description + +If the value of the +man.endnotes.are.numbered parameter +and/or the man.endnotes.list.enabled +parameter is non-zero (the defaults for both are non-zero), a +numbered list of endnotes is generated near the end of each man +page. The default heading for the list of endnotes is the +equivalent of the English word NOTES in +the current locale. To cause an alternate heading to be displayed, +set a non-empty value for the +man.endnotes.list.heading parameter — +for example, REFERENCES. + + + + + +man.endnotes.are.numbered +boolean + + +man.endnotes.are.numbered +Number endnotes? + + + + +<xsl:param name="man.endnotes.are.numbered">1</xsl:param> + + + +Description + +If the value of man.endnotes.are.numbered is +non-zero (the default), then for each non-empty +A “non-empty” notesource is one that looks like +this: <ulink url="http://docbook.sf.net/snapshot/xsl/doc/manpages/">manpages</ulink> +an “empty” notesource is on that looks like this: <ulink url="http://docbook.sf.net/snapshot/xsl/doc/manpages/"/> + “notesource”: + + + + a number (in square brackets) is displayed inline after the + rendered inline contents (if any) of the notesource + + + the contents of the notesource are included in a + numbered list of endnotes that is generated at the end of + each man page; the number for each endnote corresponds to + the inline number for the notesource with which it is + associated + + +The default heading for the list of endnotes is +NOTES. To output a different heading, set a value +for the man.endnotes.section.heading +parameter. + + + The endnotes list is also displayed (but without + numbers) if the value of + man.endnotes.list.enabled is + non-zero. + + + +If the value of man.endnotes.are.numbered is +zero, numbering of endnotess is suppressed; only inline +contents (if any) of the notesource are displayed inline. + + If you are thinking about disabling endnote numbering by setting + the value of man.endnotes.are.numbered to zero, + before you do so, first take some time to carefully + consider the information needs and experiences of your users. The + square-bracketed numbers displayed inline after notesources may seem + obstrusive and aesthetically unpleasingAs far as notesources that are links, ytou might + think it would be better to just display URLs for non-empty + links inline, after their content, rather than displaying + square-bracketed numbers all over the place. But it's not better. In + fact, it's not even practical, because many (most) URLs for links + are too long to be displayed inline. They end up overflowing the + right margin. You can set a non-zero value for + man.break.after.slash parameter to deal with + that, but it could be argued that what you end up with is at least + as ugly, and definitely more obstrusive, then having short + square-bracketed numbers displayed inline., + + but in a text-only output format, the + numbered-notesources/endnotes-listing mechanism is the only + practical way to handle this kind of content. + + Also, users of “text based” browsers such as + lynx will already be accustomed to seeing inline + numbers for links. And various "man to html" applications, such as + the widely used man2html (VH-Man2html) + application, can automatically turn URLs into "real" HTML hyperlinks + in output. So leaving man.endnotes.are.numbered + at its default (non-zero) value ensures that no information is + lost in your man-page output. It just gets + “rearranged”. + + +The handling of empty links is not affected by this +parameter. Empty links are handled simply by displaying their URLs +inline. Empty links are never auto-numbered. + +If you disable endnotes numbering, you should probably also set +man.font.links to an empty value (to +disable font formatting for links. + + +Related Parameters + man.endnotes.list.enabled, + man.font.links + + + + + + man.base.url.for.relative.links + string + + + man.base.url.for.relative.links + Specifies a base URL for relative links + + + + <xsl:param name="man.base.url.for.relative.links">[set $man.base.url.for.relative.links]/</xsl:param> + + + Description + + For any “notesource” listed in the auto-generated + “NOTES” section of output man pages (which is generated when + the value of the + man.endnotes.list.enabled parameter + is non-zero), if the notesource is a link source with a + relative URI, the URI is displayed in output with the value + of the + man.base.url.for.relative.links + parameter prepended to the value of the link URI. + + + A link source is an notesource that references an + external resource: + + + a ulink element with a url attribute + + + any element with an xlink:href attribute + + + an imagedata, audiodata, or + videodata element + + + + + + If you use relative URIs in link sources in your DocBook + refentry source, and you leave + man.base.url.for.relative.links + unset, the relative links will appear “as is” in the “Notes” + section of any man-page output generated from your source. + That’s probably not what you want, because such relative + links are only usable in the context of HTML output. So, to + make the links meaningful and usable in the context of + man-page output, set a value for + man.base.url.for.relative.links that + points to the online version of HTML output generated from + your DocBook refentry source. For + example: + <xsl:param name="man.base.url.for.relative.links" + >http://www.kernel.org/pub/software/scm/git/docs/</xsl:param> + + + + + Related Parameters + man.endnotes.list.enabled + + + + + + Lists + + +man.segtitle.suppress +boolean + + +man.segtitle.suppress +Suppress display of segtitle contents? + + + + +<xsl:param name="man.segtitle.suppress" select="0"></xsl:param> + + +Description + +If the value of man.segtitle.suppress is +non-zero, then display of segtitle contents is +suppressed in output. + + + + + + Character/string substitution + + +man.charmap.enabled +boolean + + +man.charmap.enabled +Apply character map before final output? + + + + +<xsl:param name="man.charmap.enabled" select="1"></xsl:param> + + + +Description + +If the value of the man.charmap.enabled +parameter is non-zero, a "character map" is used to substitute certain +Unicode symbols and special characters with appropriate roff/groff +equivalents, just before writing each man-page file to the +filesystem. If instead the value of +man.charmap.enabled is zero, Unicode characters +are passed through "as is". + +Details + +For converting certain Unicode symbols and special characters in +UTF-8 or UTF-16 encoded XML source to appropriate groff/roff +equivalents in man-page output, the DocBook XSL Stylesheets +distribution includes a roff character map that is compliant with the XSLT character +map format as detailed in the XSLT 2.0 specification. The map +contains more than 800 character mappings and can be considered the +standard roff character map for the distribution. + +You can use the man.charmap.uri +parameter to specify a URI for the location for an alternate roff +character map to use in place of the standard roff character map +provided in the distribution. + +You can also use a subset of a character map. For details, +see the man.charmap.use.subset, +man.charmap.subset.profile, and +man.charmap.subset.profile.english +parameters. + + + + + + + +man.charmap.uri +uri + + +man.charmap.uri +URI for custom roff character map + + + + +<xsl:param name="man.charmap.uri"></xsl:param> + + + +Description + +For converting certain Unicode symbols and special characters in +UTF-8 or UTF-16 encoded XML source to appropriate groff/roff +equivalents in man-page output, the DocBook XSL Stylesheets +distribution includes an XSLT character +map. That character map can be considered the standard roff +character map for the distribution. + +If the value of the man.charmap.uri +parameter is non-empty, that value is used as the URI for the location +for an alternate roff character map to use in place of the standard +roff character map provided in the distribution. + + +Do not set a value for man.charmap.uri +unless you have a custom roff character map that differs from the +standard one provided in the distribution. + + + + + + +man.charmap.use.subset +boolean + + +man.charmap.use.subset +Use subset of character map instead of full map? + + + + +<xsl:param name="man.charmap.use.subset" select="1"></xsl:param> + + + +Description + +If the value of the +man.charmap.use.subset parameter is non-zero, +a subset of the roff character map is used instead of the full roff +character map. The profile of the subset used is determined either +by the value of the +man.charmap.subset.profile +parameter (if the source is not in English) or the +man.charmap.subset.profile.english +parameter (if the source is in English). + + + You may want to experiment with setting a non-zero value of + man.charmap.use.subset, so that the full + character map is used. Depending on which XSLT engine you run, + setting a non-zero value for + man.charmap.use.subset may significantly + increase the time needed to process your documents. Or it may + not. For example, if you set it and run it with xsltproc, it seems + to dramatically increase processing time; on the other hand, if you + set it and run it with Saxon, it does not seem to increase + processing time nearly as much. + + If processing time is not a important concern and/or you can + tolerate the increase in processing time imposed by using the full + character map, set man.charmap.use.subset to + zero. + + +Details + +For converting certain Unicode symbols and special characters in +UTF-8 or UTF-16 encoded XML source to appropriate groff/roff +equivalents in man-page output, the DocBook XSL Stylesheets +distribution includes a roff character map that is compliant with the XSLT character +map format as detailed in the XSLT 2.0 specification. The map +contains more than 800 character mappings and can be considered the +standard roff character map for the distribution. + + +You can use the man.charmap.uri +parameter to specify a URI for the location for an alternate roff +character map to use in place of the standard roff character map +provided in the distribution. + + +Because it is not terrifically efficient to use the standard +800-character character map in full -- and for most (or all) users, +never necessary to use it in full -- the DocBook XSL Stylesheets +support a mechanism for using, within any given character map, a +subset of character mappings instead of the full set. You can use the +man.charmap.subset.profile or +man.charmap.subset.profile.english +parameter to tune the profile of that subset to use. + + + + + + + +man.charmap.subset.profile +string + + +man.charmap.subset.profile +Profile of character map subset + + + + +<xsl:param name="man.charmap.subset.profile"> +@*[local-name() = 'block'] = 'Miscellaneous Technical' or +(@*[local-name() = 'block'] = 'C1 Controls And Latin-1 Supplement (Latin-1 Supplement)' and + (@*[local-name() = 'class'] = 'symbols' or + @*[local-name() = 'class'] = 'letters') +) or +@*[local-name() = 'block'] = 'Latin Extended-A' +or +(@*[local-name() = 'block'] = 'General Punctuation' and + (@*[local-name() = 'class'] = 'spaces' or + @*[local-name() = 'class'] = 'dashes' or + @*[local-name() = 'class'] = 'quotes' or + @*[local-name() = 'class'] = 'bullets' + ) +) or +@*[local-name() = 'name'] = 'HORIZONTAL ELLIPSIS' or +@*[local-name() = 'name'] = 'WORD JOINER' or +@*[local-name() = 'name'] = 'SERVICE MARK' or +@*[local-name() = 'name'] = 'TRADE MARK SIGN' or +@*[local-name() = 'name'] = 'ZERO WIDTH NO-BREAK SPACE' +</xsl:param> + + + +Description + +If the value of the +man.charmap.use.subset parameter is non-zero, +and your DocBook source is not written in English (that + is, if the lang or xml:lang attribute on the root element + in your DocBook source or on the first refentry + element in your source has a value other than + en), then the character-map subset specified + by the man.charmap.subset.profile + parameter is used instead of the full roff character map. + +Otherwise, if the lang or xml:lang attribute on the root + element in your DocBook + source or on the first refentry element in your source + has the value en or if it has no lang or xml:lang attribute, then the character-map + subset specified by the + man.charmap.subset.profile.english + parameter is used instead of + man.charmap.subset.profile. + +The difference between the two subsets is that + man.charmap.subset.profile provides + mappings for characters in Western European languages that are + not part of the Roman (English) alphabet (ASCII character set). + +The value of man.charmap.subset.profile +is a string representing an XPath expression that matches attribute +names and values for output-character +elements in the character map. + +The attributes supported in the standard roff character map included in the distribution are: + + + character + + a raw Unicode character or numeric Unicode + character-entity value (either in decimal or hex); all + characters have this attribute + + + + name + + a standard full/long ISO/Unicode character name (e.g., + "OHM SIGN"); all characters have this attribute + + + + block + + a standard Unicode "block" name (e.g., "General + Punctuation"); all characters have this attribute. For the full + list of Unicode block names supported in the standard roff + character map, see . + + + + class + + a class of characters (e.g., "spaces"). Not all + characters have this attribute; currently, it is used only with + certain characters within the "C1 Controls And Latin-1 + Supplement" and "General Punctuation" blocks. For details, see + . + + + + entity + + an ISO entity name (e.g., "ohm"); not all characters + have this attribute, because not all characters have ISO entity + names; for example, of the 800 or so characters in the standard + roff character map included in the distribution, only around 300 + have ISO entity names. + + + + + string + + a string representing an roff/groff escape-code (with + "@esc@" used in place of the backslash), or a simple ASCII + string; all characters in the roff character map have this + attribute + + + + +The value of man.charmap.subset.profile +is evaluated as an XPath expression at run-time to select a portion of +the roff character map to use. You can tune the subset used by adding +or removing parts. For example, if you need to use a wide range of +mathematical operators in a document, and you want to have them +converted into roff markup properly, you might add the following: + + @*[local-name() = 'block'] ='MathematicalOperators' + +That will cause a additional set of around 67 additional "math" +characters to be converted into roff markup. + + +Depending on which XSLT engine you use, either the EXSLT +dyn:evaluate extension function (for xsltproc or +Xalan) or saxon:evaluate extension function (for +Saxon) are used to dynamically evaluate the value of +man.charmap.subset.profile at run-time. If you +don't use xsltproc, Saxon, Xalan -- or some other XSLT engine that +supports dyn:evaluate -- you must either set the +value of the man.charmap.use.subset parameter +to zero and process your documents using the full character map +instead, or set the value of the +man.charmap.enabled parameter to zero instead +(so that character-map processing is disabled completely. + + +An alternative to using +man.charmap.subset.profile is to create your +own custom character map, and set the value of +man.charmap.uri to the URI/filename for +that. If you use a custom character map, you will probably want to +include in it just the characters you want to use, and so you will +most likely also want to set the value of +man.charmap.use.subset to zero. +You can create a +custom character map by making a copy of the standard roff character map provided in the distribution, and +then adding to, changing, and/or deleting from that. + + +If you author your DocBook XML source in UTF-8 or UTF-16 +encoding and aren't sure what OSes or environments your man-page +output might end up being viewed on, and not sure what version of +nroff/groff those environments might have, you should be careful about +what Unicode symbols and special characters you use in your source and +what parts you add to the value of +man.charmap.subset.profile. +Many of the escape codes used are specific to groff and using +them may not provide the expected output on an OS or environment that +uses nroff instead of groff. +On the other hand, if you intend for your man-page output to be +viewed only on modern systems (for example, GNU/Linux systems, FreeBSD +systems, or Cygwin environments) that have a good, up-to-date groff, +then you can safely include a wide range of Unicode symbols and +special characters in your UTF-8 or UTF-16 encoded DocBook XML source +and add any of the supported Unicode block names to the value of +man.charmap.subset.profile. + + + +For other details, see the documentation for the +man.charmap.use.subset parameter. + +Supported Unicode block names and "class" values + + + Below is the full list of Unicode block names and "class" + values supported in the standard roff stylesheet provided in the + distribution, along with a description of which codepoints from the + Unicode range corresponding to that block name or block/class + combination are supported. + + + + C1 Controls And Latin-1 Supplement (Latin-1 Supplement) (x00a0 to x00ff) + class values + + + symbols + + + letters + + + + + Latin Extended-A (x0100 to x017f, partial) + + + Spacing Modifier Letters (x02b0 to x02ee, partial) + + + Greek and Coptic (x0370 to x03ff, partial) + + + General Punctuation (x2000 to x206f, partial) + class values + + + spaces + + + dashes + + + quotes + + + daggers + + + bullets + + + leaders + + + primes + + + + + + Superscripts and Subscripts (x2070 to x209f) + + + Currency Symbols (x20a0 to x20b1) + + + Letterlike Symbols (x2100 to x214b) + + + Number Forms (x2150 to x218f) + + + Arrows (x2190 to x21ff, partial) + + + Mathematical Operators (x2200 to x22ff, partial) + + + Control Pictures (x2400 to x243f) + + + Enclosed Alphanumerics (x2460 to x24ff) + + + Geometric Shapes (x25a0 to x25f7, partial) + + + Miscellaneous Symbols (x2600 to x26ff, partial) + + + Dingbats (x2700 to x27be, partial) + + + Alphabetic Presentation Forms (xfb00 to xfb04 only) + + + + + + + + +man.charmap.subset.profile.english +string + + +man.charmap.subset.profile.english +Profile of character map subset + + + + +<xsl:param name="man.charmap.subset.profile.english"> +@*[local-name() = 'block'] = 'Miscellaneous Technical' or +(@*[local-name() = 'block'] = 'C1 Controls And Latin-1 Supplement (Latin-1 Supplement)' and + @*[local-name() = 'class'] = 'symbols') +or +(@*[local-name() = 'block'] = 'General Punctuation' and + (@*[local-name() = 'class'] = 'spaces' or + @*[local-name() = 'class'] = 'dashes' or + @*[local-name() = 'class'] = 'quotes' or + @*[local-name() = 'class'] = 'bullets' + ) +) or +@*[local-name() = 'name'] = 'HORIZONTAL ELLIPSIS' or +@*[local-name() = 'name'] = 'WORD JOINER' or +@*[local-name() = 'name'] = 'SERVICE MARK' or +@*[local-name() = 'name'] = 'TRADE MARK SIGN' or +@*[local-name() = 'name'] = 'ZERO WIDTH NO-BREAK SPACE' +</xsl:param> + + + +Description + +If the value of the + man.charmap.use.subset parameter is + non-zero, and your DocBook source is written in English (that + is, if its lang or xml:lang attribute on the root element + in your DocBook source or on the first refentry + element in your source has the value en or if + it has no lang or xml:lang attribute), then the + character-map subset specified by the + man.charmap.subset.profile.english + parameter is used instead of the full roff character map. + +Otherwise, if the lang or xml:lang attribute + on the root element in your DocBook source or on the first + refentry element in your source has a value other + than en, then the character-map subset + specified by the + man.charmap.subset.profile parameter is + used instead of + man.charmap.subset.profile.english. + +The difference between the two subsets is that + man.charmap.subset.profile provides + mappings for characters in Western European languages that are + not part of the Roman (English) alphabet (ASCII character set). + +The value of man.charmap.subset.profile.english +is a string representing an XPath expression that matches attribute +names and values for output-character elements in the character map. + +For other details, see the documentation for the +man.charmap.subset.profile.english and +man.charmap.use.subset parameters. + + + + + + +man.string.subst.map.local.pre +string + + +man.string.subst.map.local.pre +Specifies “local” string substitutions + + + + + <xsl:param name="man.string.subst.map.local.pre"></xsl:param> + + + +Description + +Use the man.string.subst.map.local.pre +parameter to specify any “local” string substitutions to perform over +the entire roff source for each man page before +performing the string substitutions specified by the man.string.subst.map parameter. + +For details about the format of this parameter, see the +documentation for the man.string.subst.map +parameter. + + + + + + +man.string.subst.map +rtf + + +man.string.subst.map +Specifies a set of string substitutions + + + + +<xsl:param name="man.string.subst.map"> + + <!-- * remove no-break marker at beginning of line (stylesheet artifact) --> + <ss:substitution oldstring="▒▀" newstring="▒"></ss:substitution> + <!-- * replace U+2580 no-break marker (stylesheet-added) w/ no-break space --> + <ss:substitution oldstring="▀" newstring="\ "></ss:substitution> + + <!-- ==================================================================== --> + + <!-- * squeeze multiple newlines before a roff request --> + <ss:substitution oldstring=" + +." newstring=" +."></ss:substitution> + <!-- * remove any .sp instances that directly precede a .PP --> + <ss:substitution oldstring=".sp +.PP" newstring=".PP"></ss:substitution> + <!-- * remove any .sp instances that directly follow a .PP --> + <ss:substitution oldstring=".sp +.sp" newstring=".sp"></ss:substitution> + <!-- * squeeze multiple .sp instances into a single .sp--> + <ss:substitution oldstring=".PP +.sp" newstring=".PP"></ss:substitution> + <!-- * squeeze multiple newlines after start of no-fill (verbatim) env. --> + <ss:substitution oldstring=".nf + +" newstring=".nf +"></ss:substitution> + <!-- * squeeze multiple newlines after REstoring margin --> + <ss:substitution oldstring=".RE + +" newstring=".RE +"></ss:substitution> + <!-- * U+2591 is a marker we add before and after every Parameter in --> + <!-- * Funcprototype output --> + <ss:substitution oldstring="░" newstring=" "></ss:substitution> + <!-- * U+2592 is a marker we add for the newline before output of <sbr>; --> + <ss:substitution oldstring="▒" newstring=" +"></ss:substitution> + <!-- * --> + <!-- * Now deal with some other characters that are added by the --> + <!-- * stylesheets during processing. --> + <!-- * --> + <!-- * bullet --> + <ss:substitution oldstring="•" newstring="\(bu"></ss:substitution> + <!-- * left double quote --> + <ss:substitution oldstring="“" newstring="\(lq"></ss:substitution> + <!-- * right double quote --> + <ss:substitution oldstring="”" newstring="\(rq"></ss:substitution> + <!-- * left single quote --> + <ss:substitution oldstring="‘" newstring="\(oq"></ss:substitution> + <!-- * right single quote --> + <ss:substitution oldstring="’" newstring="\(cq"></ss:substitution> + <!-- * copyright sign --> + <ss:substitution oldstring="©" newstring="\(co"></ss:substitution> + <!-- * registered sign --> + <ss:substitution oldstring="®" newstring="\(rg"></ss:substitution> + <!-- * ...servicemark... --> + <!-- * There is no groff equivalent for it. --> + <ss:substitution oldstring="℠" newstring="(SM)"></ss:substitution> + <!-- * ...trademark... --> + <!-- * We don't do "\(tm" because for console output, --> + <!-- * groff just renders that as "tm"; that is: --> + <!-- * --> + <!-- * Product&#x2122; -> Producttm --> + <!-- * --> + <!-- * So we just make it to "(TM)" instead; thus: --> + <!-- * --> + <!-- * Product&#x2122; -> Product(TM) --> + <ss:substitution oldstring="™" newstring="(TM)"></ss:substitution> + +</xsl:param> + + + +Description + +The man.string.subst.map parameter +contains a map that specifies a set of +string substitutions to perform over the entire roff source for each +man page, either just before generating final man-page output (that +is, before writing man-page files to disk) or, if the value of the +man.charmap.enabled parameter is non-zero, +before applying the roff character map. + +You can use man.string.subst.map as a +“lightweight” character map to perform “essential” substitutions -- +that is, substitutions that are always performed, +even if the value of the man.charmap.enabled +parameter is zero. For example, you can use it to replace quotation +marks or other special characters that are generated by the DocBook +XSL stylesheets for a particular locale setting (as opposed to those +characters that are actually in source XML documents), or to replace +any special characters that may be automatically generated by a +particular customization of the DocBook XSL stylesheets. + + + Do you not change value of the + man.string.subst.map parameter unless you are + sure what you are doing. First consider adding your + string-substitution mappings to either or both of the following + parameters: + + + man.string.subst.map.local.pre + applied before + man.string.subst.map + + + man.string.subst.map.local.post + applied after + man.string.subst.map + + + By default, both of those parameters contain no + string substitutions. They are intended as a means for you to + specify your own local string-substitution mappings. + + If you remove any of default mappings from the value of the + man.string.subst.map parameter, you are + likely to end up with broken output. And be very careful about adding + anything to it; it’s used for doing string substitution over the + entire roff source of each man page – it causes target strings to be + replaced in roff requests and escapes, not just in the visible + contents of the page. + + + + + + Contents of the substitution map + + The string-substitution map contains one or more + ss:substitution elements, each of which has two + attributes: + + + oldstring + + string to replace + + + + newstring + + string with which to replace oldstring + + + + It may also include XML comments (that is, delimited with + "<!--" and "-->"). + + + + + + + + +man.string.subst.map.local.post +string + + +man.string.subst.map.local.post +Specifies “local” string substitutions + + + + +<xsl:param name="man.string.subst.map.local.post"></xsl:param> + + + +Description + +Use the man.string.subst.map.local.post +parameter to specify any “local” string substitutions to perform over +the entire roff source for each man page after +performing the string substitutions specified by the man.string.subst.map parameter. + +For details about the format of this parameter, see the +documentation for the man.string.subst.map +parameter. + + + + + + Refentry metadata gathering + + +refentry.meta.get.quietly +boolean + + +refentry.meta.get.quietly +Suppress notes and warnings when gathering refentry metadata? + + + + +<xsl:param name="refentry.meta.get.quietly" select="0"></xsl:param> + + + +Description + +If zero (the default), notes and warnings about “missing” markup +are generated during gathering of refentry metadata. If non-zero, the +metadata is gathered “quietly” -- that is, the notes and warnings are +suppressed. + + + If you are processing a large amount of refentry + content, you may be able to speed up processing significantly by + setting a non-zero value for + refentry.meta.get.quietly. + + + + + + + +refentry.date.profile +string + + +refentry.date.profile +Specifies profile for refentry "date" data + + + + +<xsl:param name="refentry.date.profile"> + (($info[//date])[last()]/date)[1]| + (($info[//pubdate])[last()]/pubdate)[1] +</xsl:param> + + + +Description + +The value of refentry.date.profile is a +string representing an XPath expression. It is evaluated at run-time +and used only if refentry.date.profile.enabled +is non-zero. Otherwise, the refentry metadata-gathering +logic "hard coded" into the stylesheets is used. + + The man(7) man page describes this content +as "the date of the last revision". In man pages, it is the content +that is usually displayed in the center footer. + + + + + + +refentry.date.profile.enabled +boolean + + +refentry.date.profile.enabled +Enable refentry "date" profiling? + + + + +<xsl:param name="refentry.date.profile.enabled">0</xsl:param> + + +Description + +If the value of +refentry.date.profile.enabled is non-zero, then +during refentry metadata gathering, the info profile +specified by the customizable +refentry.date.profile parameter is used. + +If instead the value of +refentry.date.profile.enabled is zero (the +default), then "hard coded" logic within the DocBook XSL stylesheets +is used for gathering refentry "date" data. + +If you find that the default refentry +metadata-gathering behavior is causing incorrect "date" data to show +up in your output, then consider setting a non-zero value for +refentry.date.profile.enabled and adjusting the +value of refentry.date.profile to cause correct +data to be gathered. + +Note that the terms "source" and "date" have special meanings in +this context. For details, see the documentation for the +refentry.date.profile parameter. + + + + + + +refentry.manual.profile +string + + +refentry.manual.profile +Specifies profile for refentry "manual" data + + + + +<xsl:param name="refentry.manual.profile"> + (($info[//title])[last()]/title)[1]| + ../title/node() +</xsl:param> + + + +Description + +The value of refentry.manual.profile is +a string representing an XPath expression. It is evaluated at +run-time and used only if +refentry.manual.profile.enabled is +non-zero. Otherwise, the refentry metadata-gathering logic +"hard coded" into the stylesheets is used. + +In man pages, this content is usually displayed in the middle of +the header of the page. The man(7) man page +describes this as "the title of the manual (e.g., Linux +Programmer's Manual)". Here are some examples from +existing man pages: + + + dpkg utilities + (dpkg-name) + + + User Contributed Perl Documentation + (GET) + + + GNU Development Tools + (ld) + + + Emperor Norton Utilities + (ddate) + + + Debian GNU/Linux manual + (faked) + + + GIMP Manual Pages + (gimp) + + + KDOC Documentation System + (qt2kdoc) + + + + + + + + + +refentry.manual.profile.enabled +boolean + + +refentry.manual.profile.enabled +Enable refentry "manual" profiling? + + + + +<xsl:param name="refentry.manual.profile.enabled">0</xsl:param> + + +Description + +If the value of +refentry.manual.profile.enabled is +non-zero, then during refentry metadata gathering, the info +profile specified by the customizable +refentry.manual.profile parameter is +used. + +If instead the value of +refentry.manual.profile.enabled is zero (the +default), then "hard coded" logic within the DocBook XSL stylesheets +is used for gathering refentry "manual" data. + +If you find that the default refentry +metadata-gathering behavior is causing incorrect "manual" data to show +up in your output, then consider setting a non-zero value for +refentry.manual.profile.enabled and adjusting +the value of refentry.manual.profile to cause +correct data to be gathered. + +Note that the term "manual" has a special meanings in this +context. For details, see the documentation for the +refentry.manual.profile parameter. + + + + + + +refentry.source.name.suppress +boolean + + +refentry.source.name.suppress +Suppress "name" part of refentry "source" contents? + + + + +<xsl:param name="refentry.source.name.suppress">0</xsl:param> + + +Description + +If the value of +refentry.source.name.suppress is non-zero, then +during refentry metadata gathering, no "source name" data +is added to the refentry "source" contents. Instead (unless +refentry.version.suppress is also non-zero), +only "version" data is added to the "source" contents. + +If you find that the refentry metadata gathering +mechanism is causing unwanted "source name" data to show up in your +output -- for example, in the footer (or possibly header) of a man +page -- then you might consider setting a non-zero value for +refentry.source.name.suppress. + +Note that the terms "source", "source name", and "version" have +special meanings in this context. For details, see the documentation +for the refentry.source.name.profile +parameter. + + + + + + +refentry.source.name.profile +string + + +refentry.source.name.profile +Specifies profile for refentry "source name" data + + + + +<xsl:param name="refentry.source.name.profile"> + (($info[//productname])[last()]/productname)[1]| + (($info[//corpname])[last()]/corpname)[1]| + (($info[//corpcredit])[last()]/corpcredit)[1]| + (($info[//corpauthor])[last()]/corpauthor)[1]| + (($info[//orgname])[last()]/orgname)[1]| + (($info[//publishername])[last()]/publishername)[1] +</xsl:param> + + + +Description + +The value of refentry.source.name.profile +is a string representing an XPath expression. It is evaluated at +run-time and used only if +refentry.source.name.profile.enabled is +non-zero. Otherwise, the refentry metadata-gathering logic +"hard coded" into the stylesheets is used. + +A "source name" is one part of a (potentially) two-part +Name Version +"source" field. In man pages, it is usually displayed in the left +footer of the page. It typically indicates the software system or +product that the item documented in the man page belongs to. The +man(7) man page describes it as "the source of +the command", and provides the following examples: + + + For binaries, use something like: GNU, NET-2, SLS + Distribution, MCC Distribution. + + + For system calls, use the version of the kernel that you + are currently looking at: Linux 0.99.11. + + + For library calls, use the source of the function: GNU, BSD + 4.3, Linux DLL 4.4.1. + + + + +In practice, there are many pages that simply have a Version +number in the "source" field. So, it looks like what we have is a +two-part field, +Name Version, +where: + + + Name + + product name (e.g., BSD) or org. name (e.g., GNU) + + + + Version + + version number + + + +Each part is optional. If the Name is a +product name, then the Version is probably +the version of the product. Or there may be no +Name, in which case, if there is a +Version, it is probably the version +of the item itself, not the product it is part of. Or, if the +Name is an organization name, then there +probably will be no Version. + + + + + +refentry.source.name.profile.enabled +boolean + + +refentry.source.name.profile.enabled +Enable refentry "source name" profiling? + + + + +<xsl:param name="refentry.source.name.profile.enabled">0</xsl:param> + + +Description + +If the value of +refentry.source.name.profile.enabled is +non-zero, then during refentry metadata gathering, the info +profile specified by the customizable +refentry.source.name.profile parameter is +used. + +If instead the value of +refentry.source.name.profile.enabled is zero (the +default), then "hard coded" logic within the DocBook XSL stylesheets +is used for gathering refentry "source name" data. + +If you find that the default refentry +metadata-gathering behavior is causing incorrect "source name" data to +show up in your output, then consider setting a non-zero value for +refentry.source.name.profile.enabled and +adjusting the value of +refentry.source.name.profile to cause correct +data to be gathered. + +Note that the terms "source" and "source name" have special +meanings in this context. For details, see the documentation for the +refentry.source.name.profile parameter. + + + + + + +refentry.version.suppress +boolean + + +refentry.version.suppress +Suppress "version" part of refentry "source" contents? + + + + +<xsl:param name="refentry.version.suppress">0</xsl:param> + + +Description + +If the value of refentry.version.suppress +is non-zero, then during refentry metadata gathering, no +"version" data is added to the refentry "source" +contents. Instead (unless +refentry.source.name.suppress is also +non-zero), only "source name" data is added to the "source" +contents. + +If you find that the refentry metadata gathering +mechanism is causing unwanted "version" data to show up in your output +-- for example, in the footer (or possibly header) of a man page -- +then you might consider setting a non-zero value for +refentry.version.suppress. + +Note that the terms "source", "source name", and "version" have +special meanings in this context. For details, see the documentation +for the refentry.source.name.profile +parameter. + + + + + + +refentry.version.profile +string + + +refentry.version.profile +Specifies profile for refentry "version" data + + + + +<xsl:param name="refentry.version.profile"> + (($info[//productnumber])[last()]/productnumber)[1]| + (($info[//edition])[last()]/edition)[1]| + (($info[//releaseinfo])[last()]/releaseinfo)[1] +</xsl:param> + + + +Description + +The value of refentry.version.profile is +a string representing an XPath expression. It is evaluated at +run-time and used only if +refentry.version.profile.enabled is +non-zero. Otherwise, the refentry metadata-gathering logic +"hard coded" into the stylesheets is used. + +A "source.name" is one part of a (potentially) two-part +Name Version +"source" field. For more details, see the documentation for the +refentry.source.name.profile parameter. + + + + + + +refentry.version.profile.enabled +boolean + + +refentry.version.profile.enabled +Enable refentry "version" profiling? + + + + +<xsl:param name="refentry.version.profile.enabled">0</xsl:param> + + +Description + +If the value of +refentry.version.profile.enabled is +non-zero, then during refentry metadata gathering, the info +profile specified by the customizable +refentry.version.profile parameter is +used. + +If instead the value of +refentry.version.profile.enabled is zero (the +default), then "hard coded" logic within the DocBook XSL stylesheets +is used for gathering refentry "version" data. + +If you find that the default refentry +metadata-gathering behavior is causing incorrect "version" data to show +up in your output, then consider setting a non-zero value for +refentry.version.profile.enabled and adjusting +the value of refentry.version.profile to cause +correct data to be gathered. + +Note that the terms "source" and "version" have special +meanings in this context. For details, see the documentation for the +refentry.version.profile parameter. + + + + + + +refentry.manual.fallback.profile +string + + +refentry.manual.fallback.profile +Specifies profile of "fallback" for refentry "manual" data + + + + +<xsl:param name="refentry.manual.fallback.profile"> +refmeta/refmiscinfo[not(@class = 'date')][1]/node()</xsl:param> + + + +Description + +The value of +refentry.manual.fallback.profile is a string +representing an XPath expression. It is evaluated at run-time and +used only if no "manual" data can be found by other means (that is, +either using the refentry metadata-gathering logic "hard +coded" in the stylesheets, or the value of +refentry.manual.profile, if it is +enabled). + + +Depending on which XSLT engine you run, either the EXSLT +dyn:evaluate extension function (for xsltproc or +Xalan) or saxon:evaluate extension function (for +Saxon) are used to dynamically evaluate the value of +refentry.manual.fallback.profile at +run-time. If you don't use xsltproc, Saxon, Xalan -- or some other +XSLT engine that supports dyn:evaluate -- you +must manually disable fallback processing by setting an empty value +for the refentry.manual.fallback.profile +parameter. + + + + + + + +refentry.source.fallback.profile +string + + +refentry.source.fallback.profile +Specifies profile of "fallback" for refentry "source" data + + + + +<xsl:param name="refentry.source.fallback.profile"> +refmeta/refmiscinfo[not(@class = 'date')][1]/node()</xsl:param> + + + +Description + +The value of +refentry.source.fallback.profile is a string +representing an XPath expression. It is evaluated at run-time and used +only if no "source" data can be found by other means (that is, either +using the refentry metadata-gathering logic "hard coded" in +the stylesheets, or the value of the +refentry.source.name.profile and +refentry.version.profile parameters, if those +are enabled). + + +Depending on which XSLT engine you run, either the EXSLT +dyn:evaluate extension function (for xsltproc or +Xalan) or saxon:evaluate extension function (for +Saxon) are used to dynamically evaluate the value of +refentry.source.fallback.profile at +run-time. If you don't use xsltproc, Saxon, Xalan -- or some other +XSLT engine that supports dyn:evaluate -- you +must manually disable fallback processing by setting an empty value +for the refentry.source.fallback.profile +parameter. + + + + + + + Page header/footer + + +man.th.extra1.suppress +boolean + + +man.th.extra1.suppress +Suppress extra1 part of header/footer? + + + + +<xsl:param name="man.th.extra1.suppress">0</xsl:param> + + +Description + +If the value of man.th.extra1.suppress is +non-zero, then the extra1 part of the +.TH title line header/footer is suppressed. + +The content of the extra1 field is almost +always displayed in the center footer of the page and is, universally, +a date. + + + + + + +man.th.extra2.suppress +boolean + + +man.th.extra2.suppress +Suppress extra2 part of header/footer? + + + + +<xsl:param name="man.th.extra2.suppress">0</xsl:param> + + +Description + +If the value of man.th.extra2.suppress is +non-zero, then the extra2 part of the +.TH title line header/footer is suppressed. + +The content of the extra2 field is usually +displayed in the left footer of the page and is typically "source" +data, often in the form +Name Version; +for example, "GTK+ 1.2" (from the gtk-options(7) +man page). + + + You can use the + refentry.source.name.suppress and + refentry.version.suppress parameters to + independently suppress the Name and + Version parts of the + extra2 field. + + + + + + + +man.th.extra3.suppress +boolean + + +man.th.extra3.suppress +Suppress extra3 part of header/footer? + + + + +<xsl:param name="man.th.extra3.suppress">0</xsl:param> + + +Description + +If the value of man.th.extra3.suppress is +non-zero, then the extra3 part of the +.TH title line header/footer is +suppressed. + +The content of the extra3 field is usually +displayed in the middle header of the page and is typically a "manual +name"; for example, "GTK+ User's Manual" (from the +gtk-options(7) man page). + + + + + + +man.th.title.max.length +integer + + +man.th.title.max.length +Maximum length of title in header/footer + + + + +<xsl:param name="man.th.title.max.length">20</xsl:param> + + + +Description + +Specifies the maximum permitted length of the title part of the +man-page .TH title line header/footer. If the title +exceeds the maxiumum specified, it is truncated down to the maximum +permitted length. + +Details + + +Every man page generated using the DocBook stylesheets has a +title line, specified using the TH roff +macro. Within that title line, there is always, at a minimum, a title, +followed by a section value (representing a man "section" -- usually +just a number). + +The title and section are displayed, together, in the visible +header of each page. Where in the header they are displayed depends on +OS the man page is viewed on, and on what version of nroff/groff/man +is used for viewing the page. But, at a minimum and across all +systems, the title and section are displayed on the right-hand column +of the header. On many systems -- those with a modern groff, including +Linux systems -- they are displayed twice: both in the left and right +columns of the header. + +So if the length of the title exceeds a certain percentage of +the column width in which the page is viewed, the left and right +titles can end up overlapping, making them unreadable, or breaking to +another line, which doesn't look particularly good. + +So the stylesheets provide the +man.th.title.max.length parameter as a means +for truncating titles that exceed the maximum length that can be +viewing properly in a page header. + +The default value is reasonable but somewhat arbitrary. If you +have pages with long titles, you may want to experiment with changing +the value in order to achieve the correct aesthetic results. + + + + + + + +man.th.extra2.max.length +integer + + +man.th.extra2.max.length +Maximum length of extra2 in header/footer + + + + +<xsl:param name="man.th.extra2.max.length">30</xsl:param> + + + +Description + +Specifies the maximum permitted length of the +extra2 part of the man-page part of the +.TH title line header/footer. If the +extra2 content exceeds the maxiumum specified, it +is truncated down to the maximum permitted length. + +The content of the extra2 field is usually +displayed in the left footer of the page and is typically "source" +data indicating the software system or product that the item +documented in the man page belongs to, often in the form +Name Version; +for example, "GTK+ 1.2" (from the gtk-options(7) +man page). + +The default value for this parameter is reasonable but somewhat +arbitrary. If you are processing pages with long "source" information, +you may want to experiment with changing the value in order to achieve +the correct aesthetic results. + + + + + +man.th.extra3.max.length +integer + + +man.th.extra3.max.length +Maximum length of extra3 in header/footer + + + + +<xsl:param name="man.th.extra3.max.length">30</xsl:param> + + + +Description + +Specifies the maximum permitted length of the +extra3 part of the man-page .TH +title line header/footer. If the extra3 content +exceeds the maxiumum specified, it is truncated down to the maximum +permitted length. + +The content of the extra3 field is usually +displayed in the middle header of the page and is typically a "manual +name"; for example, "GTK+ User's Manual" (from the +gtk-options(7) man page). + +The default value for this parameter is reasonable but somewhat +arbitrary. If you are processing pages with long "manual names" -- or +especially if you are processing pages that have both long "title" +parts (command/function, etc. names) and long +manual names -- you may want to experiment with changing the value in +order to achieve the correct aesthetic results. + + + + + Output + + + man.output.manifest.enabled + boolean + + + man.output.manifest.enabled + Generate a manifest file? + + + + <xsl:param name="man.output.manifest.enabled" select="0"></xsl:param> + + + Description + + If non-zero, a list of filenames for man pages generated by + the stylesheet transformation is written to the file named by the + man.output.manifest.filename parameter. + + + + + + + man.output.manifest.filename + string + + + man.output.manifest.filename + Name of manifest file + + + + <xsl:param name="man.output.manifest.filename">MAN.MANIFEST</xsl:param> + + + Description + + The man.output.manifest.filename parameter + specifies the name of the file to which the manpages manifest file + is written (if the value of the + man.output.manifest.enabled parameter is + non-zero). + + + + + + +man.output.in.separate.dir +boolean + + +man.output.in.separate.dir +Output man-page files in separate output directory? + + + + +<xsl:param name="man.output.in.separate.dir" select="0"></xsl:param> + + + +Description + +If the value of man.output.in.separate.dir +parameter is non-zero, man-page files are output in a separate +directory, specified by the man.output.base.dir +parameter; otherwise, if the value of +man.output.in.separate.dir is zero, man-page files +are not output in a separate directory. + + + + + + +man.output.lang.in.name.enabled +boolean + + +man.output.lang.in.name.enabled +Include $LANG value in man-page filename/pathname? + + + + +<xsl:param name="man.output.lang.in.name.enabled" select="0"></xsl:param> + + + +Description + + The man.output.lang.in.name.enabled + parameter specifies whether a $lang value is + included in man-page filenames and pathnames. + + If the value of + man.output.lang.in.name.enabled is non-zero, + man-page files are output with the $lang value + included in their filenames or pathnames as follows; + + + + if man.output.subdirs.enabled is + non-zero, each file is output to, e.g., a + man/$lang/man8/foo.8 + pathname + + + if man.output.subdirs.enabled is + zero, each file is output with a + foo.$lang.8 + filename + + + + + + + + + +man.output.base.dir +uri + + +man.output.base.dir +Specifies separate output directory + + + +<xsl:param name="man.output.base.dir">man/</xsl:param> + + +Description + +The man.output.base.dir parameter +specifies the base directory into which man-page files are output. The +man.output.subdirs.enabled parameter controls +whether the files are output in subdirectories within the base +directory. + + + The values of the man.output.base.dir + and man.output.subdirs.enabled parameters are + used only if the value of + man.output.in.separate.dir parameter is + non-zero. If the value of the + man.output.in.separate.dir is zero, man-page + files are not output in a separate directory. + + + + + + + +man.output.subdirs.enabled +boolean + + +man.output.subdirs.enabled +Output man-page files in subdirectories within base output directory? + + + + +<xsl:param name="man.output.subdirs.enabled" select="1"></xsl:param> + + + +Description + +The man.output.subdirs.enabled parameter +controls whether man-pages files are output in subdirectories within +the base directory specified by the directory specified by the +man.output.base.dir parameter. + + + The values of the man.output.base.dir + and man.output.subdirs.enabled parameters are + used only if the value of + man.output.in.separate.dir parameter is + non-zero. If the value of the + man.output.in.separate.dir is zero, man-page + files are not output in a separate directory. + + + + + + + +man.output.quietly +boolean + + +man.output.quietly +Suppress filename messages emitted when generating output? + + + + +<xsl:param name="man.output.quietly" select="0"></xsl:param> + + + +Description + +If zero (the default), for each man-page file created, a message +with the name of the file is emitted. If non-zero, the files are +output "quietly" -- that is, the filename messages are +suppressed. + + + If you are processing a large amount of refentry + content, you may be able to speed up processing significantly by + setting a non-zero value for + man.output.quietly. + + + + + + + +man.output.encoding +string + + +man.output.encoding +Encoding used for man-page output + + + + +<xsl:param name="man.output.encoding">UTF-8</xsl:param> + + + +Description + +This parameter specifies the encoding to use for files generated +by the manpages stylesheet. Not all processors support specification +of this parameter. + + + If the value of the man.charmap.enabled + parameter is non-zero (the default), keeping the + man.output.encoding parameter at its default + value (UTF-8) or setting it to + UTF-16 does not cause your + man pages to be output in raw UTF-8 or UTF-16 -- because + any Unicode characters for which matches are found in the enabled + character map will be replaced with roff escape sequences before the + final man-page files are generated. + + So if you want to generate "real" UTF-8 man pages, without any + character substitution being performed on your content, you need to + set man.charmap.enabled to zero (which will + completely disable character-map processing). + + You may also need to set + man.charmap.enabled to zero if you want to + output man pages in an encoding other than UTF-8 + or UTF-16. Character-map processing is based on + Unicode character values and may not work with other output + encodings. + + + + + + + +man.output.better.ps.enabled +boolean + + +man.output.better.ps.enabled +Enable enhanced print/PostScript output? + + + +<xsl:param name="man.output.better.ps.enabled">0</xsl:param> + + +Description + +If the value of the +man.output.better.ps.enabled parameter is +non-zero, certain markup is embedded in each generated man page +such that PostScript output from the man -Tps +command for that page will include a number of enhancements +designed to improve the quality of that output. + +If man.output.better.ps.enabled is +zero (the default), no such markup is embedded in generated man +pages, and no enhancements are included in the PostScript +output generated from those man pages by the man + -Tps command. + + + The enhancements provided by this parameter rely on + features that are specific to groff (GNU troff) and that are + not part of “classic” AT&T troff or any of its + derivatives. Therefore, any man pages you generate with this + parameter enabled will be readable only on systems on which + the groff (GNU troff) program is installed, such as GNU/Linux + systems. The pages will not not be + readable on systems on with the classic troff (AT&T + troff) command is installed. + + +The value of this parameter only affects PostScript output + generated from the man command. It has no + effect on output generated using the FO backend. + + + You can generate PostScript output for any man page by + running the following command: + man FOO -Tps > FOO.ps + You can then generate PDF output by running the following + command: + ps2pdf FOO.ps + + + + + + + Other + + +man.table.footnotes.divider +string + + +man.table.footnotes.divider +Specifies divider string that appears before table footnotes + + + + +<xsl:param name="man.table.footnotes.divider">----</xsl:param> + + + +Description + +In each table that contains footenotes, the string specified by +the man.table.footnotes.divider parameter is +output before the list of footnotes for the table. + + + + + + +man.subheading.divider.enabled +boolean + + +man.subheading.divider.enabled +Add divider comment to roff source before/after subheadings? + + + + +<xsl:param name="man.subheading.divider.enabled">0</xsl:param> + + + +Description + +If the value of the +man.subheading.divider.enabled parameter is +non-zero, the contents of the +man.subheading.divider parameter are used to +add a "divider" before and after subheadings in the roff +output. The divider is not visisble in the +rendered man page; it is added as a comment, in the source, +simply for the purpose of increasing reability of the source. + +If man.subheading.divider.enabled is zero +(the default), the subheading divider is suppressed. + + + + + + +man.subheading.divider +string + + +man.subheading.divider +Specifies string to use as divider comment before/after subheadings + + + + +<xsl:param name="man.subheading.divider">========================================================================</xsl:param> + + + +Description + +If the value of the +man.subheading.divider.enabled parameter is +non-zero, the contents of the +man.subheading.divider parameter are used to +add a "divider" before and after subheadings in the roff +output. The divider is not visisble in the +rendered man page; it is added as a comment, in the source, +simply for the purpose of increasing reability of the source. + +If man.subheading.divider.enabled is zero +(the default), the subheading divider is suppressed. + + + + + +
    + + + + Roundtrip Parameter Reference + + + This is reference documentation for all user-configurable + parameters in the DocBook “Roundtrip” Stylesheets (for + transforming DocBook to WordML, OpenDocument, and Apple Pages, + and for converting from those formats back to DocBook). + + + + + + +wordml.template +uri + + +wordml.template +Specify the template WordML document + + + + +<xsl:param name="wordml.template"></xsl:param> + + + +Description + +The wordml.template parameter specifies a WordML document to use as a template for the generated document. The template document is used to define the (extensive) headers for the generated document, in particular the paragraph and character styles that are used to format the various elements. Any content in the template document is ignored. + +A template document is used in order to allow maintenance of the paragraph and character styles to be done using Word itself, rather than these XSL stylesheets. + + + + + + +pages.template +uri + + +pages.template +Specify the template Pages document + + + + +<xsl:param name="pages.template"></xsl:param> + + + +Description + +The pages.template parameter specifies a Pages (the Apple word processing application) document to use as a template for the generated document. The template document is used to define the (extensive) headers for the generated document, in particular the paragraph and character styles that are used to format the various elements. Any content in the template document is ignored. + +A template document is used in order to allow maintenance of the paragraph and character styles to be done using Pages itself, rather than these XSL stylesheets. + + + + + + + Slides Parameter Reference + + + + This is reference documentation for all + user-configurable parameters in the DocBook XSL Slides + stylesheets (for generating HTML and PDF slide + presentations). + + The Slides stylesheet for HTML output is a + customization layer of the DocBook XSL HTML + stylesheet; the Slides stylesheet for FO output is a + customization layer of the DocBook XSL FO stylesheet. + Therefore, in addition to the slides-specific + parameters listed in this section, you can also use a + number of HTML stylesheet + parameters and FO + stylesheet parameters to control Slides + output. + + + +HTML: General Parameters + + +keyboard.nav +boolean + + +keyboard.nav +Enable keyboard navigation? + + + + +<xsl:param name="keyboard.nav" select="1"></xsl:param> + + + +Description + +If non-zero, JavaScript is added to the slides to enable keyboard +navigation. Pressing 'n', space, or return moves forward; pressing 'p' moves +backward. + + + + + + +css.stylesheet +uri + + +css.stylesheet +CSS stylesheet for slides + + + + +<xsl:param name="css.stylesheet">slides.css</xsl:param> + + + +Description + +Identifies the CSS stylesheet used by all the slides. This parameter +can be set in the source document with the <?dbhtml?> pseudo-attribute +css-stylesheet. + + + + + + +css.stylesheet.dir +uri + + +css.stylesheet.dir +Default directory for CSS stylesheets + + + + +<xsl:param name="css.stylesheet.dir"></xsl:param> + + + +Description + +Identifies the default directory for the CSS stylesheet +generated on all the slides. This parameter can be set in the source +document with the <?dbhtml?> pseudo-attribute +css-stylesheet-dir. + +If non-empty, this value is prepended to each of the stylesheets. + + + + + + + +titlefoil.html +filename + + +titlefoil.html +Name of title foil HTML file + + + + +<xsl:param name="titlefoil.html" select="concat('index', $html.ext)"></xsl:param> + + + +Description + +Sets the filename used for the slides titlepage. + + + + + + +toc.html +filename + + +toc.html +Name of ToC HTML file + + + + +<xsl:param name="toc.html" select="concat('toc', $html.ext)"></xsl:param> + + + +Description + +Sets the filename used for the table of contents page. + + + + + + +foilgroup.toc +boolean + + +foilgroup.toc +Put ToC on foilgroup pages? + + + + +<xsl:param name="foilgroup.toc" select="1"></xsl:param> + + + +Description + +If non-zero, a ToC will be placed on foilgroup pages (after any +other content). + + + + + + + +output.indent +list +no +yes + + +output.indent +Indent output? + + + + +<xsl:param name="output.indent">no</xsl:param> + + + +Description + +Specifies the setting of the indent +parameter on the HTML slides. For more information, see the discussion +of the xsl:output element in the XSLT specification. +Select from yes or no. + + + + + + +overlay +boolean + + +overlay +Overlay footer navigation? + + + + +<xsl:param name="overlay" select="0"></xsl:param> + + + +Description + +If non-zero, JavaScript is added to the slides to make the +bottom navigation appear at the bottom of each page. This option and +multiframe are mutually exclusive. + +If this parameter is zero, the bottom navigation simply appears +below the content of each slide. + + + + + + +show.foil.number +boolean + + +show.foil.number +Show foil number on each foil? + + + + +<xsl:param name="show.foil.number" select="0"></xsl:param> + + + +Description + +If non-zero, on each slide there will be its number. Currently +not supported in all output formats. + + + + + +HTML: Frames Parameters + + +nav.separator +boolean + + +nav.separator +Output separator between navigation and body? + + + + +<xsl:param name="nav.separator" select="1"></xsl:param> + + + +Description + +If non-zero, a separator (<HR>) is +added between the navigation links and the content of each slide. + + + + + + +toc.row.height +length + + +toc.row.height +Height of ToC rows in dynamic ToCs + + + + +<xsl:param name="toc.row.height">22</xsl:param> + + + +Description + +This parameter specifies the height of each row in the table of +contents. This is only applicable if a dynamic ToC is used. You may want to +adjust this parameter for optimal appearance with the font and image +sizes selected by your CSS +stylesheet. + + + + + + + +toc.bg.color +color + + +toc.bg.color +Background color for ToC frame + + + + +<xsl:param name="toc.bg.color">#FFFFFF</xsl:param> + + + +Description + +Specifies the background color used in the ToC frame. + + + + + + +body.bg.color +color + + +body.bg.color +Background color for body frame + + + + +<xsl:param name="body.bg.color">#FFFFFF</xsl:param> + + + +Description + +Specifies the background color used in the body column of +tabular slides. + + + + + + +toc.width +length + + +toc.width +Width of ToC frame + + + + +<xsl:param name="toc.width">250</xsl:param> +<!-- Presumably in pixels? --> + + + +Description + +Specifies the width of the ToC frame in pixels. + + + + + + +toc.hide.show +boolean + + +toc.hide.show +Enable hide/show button for ToC frame + + + + +<xsl:param name="toc.hide.show" select="0"></xsl:param> + + + +Description + +If non-zero, JavaScript (and an additional icon, see +hidetoc.image and +showtoc.image) is added to each slide +to allow the ToC panel to be toggled on each panel. + +There is a bug in Mozilla 1.0 (at least as of CR3) that causes +the browser to reload the titlepage when this feature is used. + + + + + + +dynamic.toc +boolean + + +dynamic.toc +Dynamic ToCs? + + + + +<xsl:param name="dynamic.toc" select="0"></xsl:param> + + + +Description + +If non-zero, JavaScript is used to make the ToC panel dynamic. +In a dynamic ToC, each section in the ToC can be expanded and collapsed by +clicking on the appropriate image. + + + + + + +active.toc +boolean + + +active.toc +Active ToCs? + + + + +<xsl:param name="active.toc" select="0"></xsl:param> + + + +Description + +If non-zero, JavaScript is used to keep the ToC and the current slide +in sync. That is, each time the slide changes, the corresponding +ToC entry will be underlined. + + + + + + + + +multiframe +boolean + + +multiframe +Use multiple frames for slide bodies? + + + + +<xsl:param name="multiframe" select="0"></xsl:param> + + + +Description + +If non-zero, multiple frames are used for the body of each +slide. This is one way of forcing the slide navigation elements to +appear in constant locations. The other way is with overlays. The overlay and +multiframe parameters are mutually +exclusive. + + + + + + +multiframe.top.bgcolor +color + + +multiframe.top.bgcolor +Background color for top navigation frame + + + + +<xsl:param name="multiframe.top.bgcolor">white</xsl:param> + + + +Description + +Specifies the background color of the top navigation frame when +multiframe is enabled. + + + + + + +multiframe.bottom.bgcolor +color + + +multiframe.bottom.bgcolor +Background color for bottom navigation frame + + + + +<xsl:param name="multiframe.bottom.bgcolor">white</xsl:param> + + + +Description + +Specifies the background color of the bottom navigation frame when +multiframe is enabled. + + + + + + +multiframe.navigation.height +length + + +multiframe.navigation.height +Height of navigation frames + + + + +<xsl:param name="multiframe.navigation.height">40</xsl:param> + + + +Description + +Specifies the height of the navigation frames in pixels when +multiframe is enabled. + + + + + +HTML: Graphics Parameters + + +graphics.dir +uri + + +graphics.dir +Graphics directory + + + + +<xsl:param name="graphics.dir"></xsl:param> + + + +Description + +Identifies the graphics directory for the navigation components +generated on all the slides. This parameter can be set in the source +document with the <?dbhtml?> pseudo-attribute +graphics-dir. + +If non-empty, this value is prepended to each of the graphic +image paths. + + + + + + +bullet.image +filename + + +bullet.image +Bullet image + + + + +<xsl:param name="bullet.image">toc/bullet.png</xsl:param> + + + +Description + +Specifies the filename of the bullet image used for foils in the +framed ToC. + + + + + + +next.image +filename + + +next.image +Right-arrow image + + + + +<xsl:param name="next.image">active/nav-next.png</xsl:param> + + + +Description + +Specifies the filename of the right-pointing navigation arrow. + + + + + + +prev.image +filename + + +prev.image +Left-arrow image + + + + +<xsl:param name="prev.image">active/nav-prev.png</xsl:param> + + + +Description + +Specifies the filename of the left-pointing navigation arrow. + + + + + + +up.image +filename + + +up.image +Up-arrow image + + + + +<xsl:param name="up.image">active/nav-up.png</xsl:param> + + + +Description + +Specifies the filename of the upward-pointing navigation arrow. + + + + + + +home.image +filename + + +home.image +Home image + + + + +<xsl:param name="home.image">active/nav-home.png</xsl:param> + + + +Description + +Specifies the filename of the home navigation icon. + + + + + + +toc.image +filename + + +toc.image +ToC image + + + + +<xsl:param name="toc.image">active/nav-toc.png</xsl:param> + + + +Description + +Specifies the filename of the ToC navigation icon. + + + + + + + +no.next.image +filename + + +no.next.image +Inactive right-arrow image + + + + +<xsl:param name="no.next.image">inactive/nav-next.png</xsl:param> + + + +Description + +Specifies the filename of the inactive right-pointing navigation arrow. + + + + + + +no.prev.image +filename + + +no.prev.image +Inactive left-arrow image + + + + +<xsl:param name="no.prev.image">inactive/nav-prev.png</xsl:param> + + + +Description + +Specifies the filename of the inactive left-pointing navigation arrow. + + + + + + +no.up.image +filename + + +no.up.image +Inactive up-arrow image + + + + +<xsl:param name="no.up.image">inactive/nav-up.png</xsl:param> + + + +Description + +Specifies the filename of the inactive upward-pointing navigation arrow. + + + + + + +no.home.image +filename + + +no.home.image +Inactive home image + + + + +<xsl:param name="no.home.image">inactive/nav-home.png</xsl:param> + + + +Description + +Specifies the filename of the inactive home navigation icon. + + + + + + +no.toc.image +filename + + +no.toc.image +Inactive ToC image + + + + +<xsl:param name="no.toc.image">inactive/nav-toc.png</xsl:param> + + + +Description + +Specifies the filename of the inactive ToC navigation icon. + + + + + + + +plus.image +filename + + +plus.image +Plus image + + + + +<xsl:param name="plus.image">toc/closed.png</xsl:param> + + + +Description + +Specifies the filename of the plus image; the image used in a +dynamic ToC to indicate that a section +can be expanded. + + + + + + +minus.image +filename + + +minus.image +Minus image + + + + +<xsl:param name="minus.image">toc/open.png</xsl:param> + + + +Description + +Specifies the filename of the minus image; the image used in a +dynamic ToC to indicate that a section +can be collapsed. + + + + + + +hidetoc.image +filename + + +hidetoc.image +Hide ToC image + + + + +<xsl:param name="hidetoc.image">hidetoc.gif</xsl:param> + + + +Description + +Specifies the filename of the hide ToC image. This is used +when the ToC hide/show parameter is +enabled. + + + + + + +showtoc.image +filename + + +showtoc.image +Show ToC image + + + + +<xsl:param name="showtoc.image">showtoc.gif</xsl:param> + + + +Description + +Specifies the filename of the show ToC image. This is used +when the ToC hide/show parameter is +enabled. + + + + + +HTML: JavaScript Parameters + + +script.dir +uri + + +script.dir +Script directory + + + + +<xsl:param name="script.dir"></xsl:param> + + + +Description + +Identifies the JavaScript source directory for the slides. +This parameter can be set in the source +document with the <?dbhtml?> pseudo-attribute +script-dir. + +If non-empty, this value is prepended to each of the JavaScript files. + + + + + + + +ua.js +filename + + +ua.js +UA JavaScript file + + + + +<xsl:param name="ua.js">ua.js</xsl:param> + + + +Description + +Specifies the filename of the UA JavaScript file. It's unlikely +that you will ever need to change this parameter. + + + + + + +xbDOM.js +filename + + +xbDOM.js +xbDOM JavaScript file + + + + +<xsl:param name="xbDOM.js">xbDOM.js</xsl:param> + + + +Description + +Specifies the filename of the xbDOM JavaScript file. It's unlikely +that you will ever need to change this parameter. + + + + + + +xbStyle.js +filename + + +xbStyle.js +xbStyle JavaScript file + + + + +<xsl:param name="xbStyle.js">xbStyle.js</xsl:param> + + + +Description + +Specifies the filename of the xbStyle JavaScript file. It's unlikely +that you will ever need to change this parameter. + + + + + + +xbLibrary.js +filename + + +xbLibrary.js +xbLibrary JavaScript file + + + + +<xsl:param name="xbLibrary.js">xbLibrary.js</xsl:param> + + + +Description + +Specifies the filename of the xbLibrary JavaScript file. It's unlikely +that you will ever need to change this parameter. + + + + + + +xbCollapsibleLists.js +filename + + +xbCollapsibleLists.js +xbCollapsibleLists JavaScript file + + + + +<xsl:param name="xbCollapsibleLists.js">xbCollapsibleLists.js</xsl:param> + + + +Description + +Specifies the filename of the xbCollapsibleLists JavaScript file. It's unlikely +that you will ever need to change this parameter. + + + + + + +overlay.js +filename + + +overlay.js +Overlay JavaScript file + + + + +<xsl:param name="overlay.js">overlay.js</xsl:param> + + + +Description + +Specifies the filename of the overlay JavaScript file. It's unlikely +that you will ever need to change this parameter. + + + + + + +slides.js +filename + + +slides.js +Slides overlay file + + + + +<xsl:param name="slides.js">slides.js</xsl:param> + + + +Description + +Specifies the filename of the slides JavaScript file. It's unlikely +that you will ever need to change this parameter. + + + + + +HTML: Localization Parameters + + +text.home +string + + +text.home +Home + + + + +<xsl:param name="text.home">Home</xsl:param> + + + +Description + +FIXME: + + + + + + +text.toc +string + + +text.toc +FIXME: + + + + +<xsl:param name="text.toc">ToC</xsl:param> + + + +Description + +FIXME: + + + + + + +text.prev +string + + +text.prev +FIXME: + + + + +<xsl:param name="text.prev">Prev</xsl:param> + + + +Description + +FIXME: + + + + + + +text.up +string + + +text.up +FIXME: + + + + +<xsl:param name="text.up">Up</xsl:param> + + + +Description + +FIXME: + + + + + + +text.next +string + + +text.next +FIXME: + + + + +<xsl:param name="text.next">Next</xsl:param> + + + +Description + +FIXME: + + + + + + + + + FO: General Params + + +slide.title.font.family +list +open +serif +sans-serif +monospace + + +slide.title.font.family +Specifies font family to use for slide titles + + + + +<xsl:param name="slide.title.font.family">Helvetica</xsl:param> + + + +Description + +Specifies the font family to use for slides titles. + + + + + + +slide.font.family +list +open +serif +sans-serif +monospace + + +slide.font.family +Specifies font family to use for slide bodies + + + + +<xsl:param name="slide.font.family">Helvetica</xsl:param> + + + +Description + +Specifies the font family to use for slides bodies. + + + + + + +foil.title.master +number + + +foil.title.master +Specifies unitless font size to use for foil titles + + + + +<xsl:param name="foil.title.master">36</xsl:param> +<!-- Inconsistant use of point size? --> + + + +Description + +Specifies a unitless font size to use for foil titles; used in +combination with the foil.title.size +parameter. + + + + + +foil.title.size +length + + +foil.title.size +Specifies font size to use for foil titles, including units + + + + + <xsl:param name="foil.title.size"> + <xsl:value-of select="$foil.title.master"></xsl:value-of><xsl:text>pt</xsl:text> + </xsl:param> + + + +Description + +This parameter combines the value of the +foil.title.master parameter with a unit +specification. The default unit is pt +(points). + + + + + + FO: Property Sets + + +slides.properties +attribute set + + +slides.properties +Specifies properties for all slides + + + + + <xsl:attribute-set name="slides.properties"> + <xsl:attribute name="font-family"> + <xsl:value-of select="$slide.font.family"></xsl:value-of> + </xsl:attribute> + </xsl:attribute-set> + + + +Description + +This parameter specifies properties that are applied to all slides. + + + + + + +foilgroup.properties +attribute set + + +foilgroup.properties +Specifies properties for all foilgroups + + + + + <xsl:attribute-set name="foilgroup.properties"> + <xsl:attribute name="font-family"> + <xsl:value-of select="$slide.font.family"></xsl:value-of> + </xsl:attribute> + </xsl:attribute-set> + + + +Description + +This parameter specifies properties that are applied to all foilgroups. + + + + + + +foil.subtitle.properties +attribute set + + +foil.subtitle.properties +Specifies properties for all foil subtitles + + + + + <xsl:attribute-set name="foil.subtitle.properties"> + <xsl:attribute name="font-family"> + <xsl:value-of select="$slide.title.font.family"></xsl:value-of> + </xsl:attribute> + <xsl:attribute name="text-align">center</xsl:attribute> + <xsl:attribute name="font-size"> + <xsl:value-of select="$foil.title.master * 0.8"></xsl:value-of><xsl:text>pt</xsl:text> + </xsl:attribute> + <xsl:attribute name="space-after">12pt</xsl:attribute> + </xsl:attribute-set> + + + +Description + +This parameter specifies properties that are applied to all foil subtitles. + + + + + + +foil.properties +attribute set + + +foil.properties +Specifies properties for all foils + + + + + <xsl:attribute-set name="foil.properties"> + <xsl:attribute name="font-family"> + <xsl:value-of select="$slide.font.family"></xsl:value-of> + </xsl:attribute> + <xsl:attribute name="margin-{$direction.align.start}">1in</xsl:attribute> + <xsl:attribute name="margin-{$direction.align.end}">1in</xsl:attribute> + <xsl:attribute name="font-size"> + <xsl:value-of select="$body.font.size"></xsl:value-of> + </xsl:attribute> + <xsl:attribute name="font-weight">bold</xsl:attribute> + </xsl:attribute-set> + + + +Description + +This parameter specifies properties that are applied to all foils. + + + + + + +speakernote.properties +attribute set + + +speakernote.properties +Specifies properties for all speakernotes + + + + + <xsl:attribute-set name="speakernote.properties"> + <xsl:attribute name="font-family">Times Roman</xsl:attribute> + <xsl:attribute name="font-style">italic</xsl:attribute> + <xsl:attribute name="font-size">12pt</xsl:attribute> + <xsl:attribute name="font-weight">normal</xsl:attribute> + </xsl:attribute-set> + + + +Description + +This parameter specifies properties that are applied to all speakernotes. + + + + + + +running.foot.properties +attribute set + + +running.foot.properties +Specifies properties for running foot on each slide + + + + + <xsl:attribute-set name="running.foot.properties"> + <xsl:attribute name="font-family"> + <xsl:value-of select="$slide.font.family"></xsl:value-of> + </xsl:attribute> + <xsl:attribute name="font-size">14pt</xsl:attribute> + <xsl:attribute name="color">#9F9F9F</xsl:attribute> + </xsl:attribute-set> + + + +Description + +This parameter specifies properties that are applied to the +running foot area of each slide. + + + + + + + + + + Website Parameter Reference + + + This is reference documentation for all user-configurable + parameters in the DocBook XSL Website stylesheet (for + generating websites from DocBook XML sources). Note that the + Website stylesheet is a customization layer of the DocBook XSL + HTML stylesheet. Therefore, in addition to the + Website-specific parameters listed in this section, you can + also use a number of HTML + stylesheet parameters to control Website output. + + + +General Parameters + + +autolayout-file +filename + + +autolayout-file +Identifies the autolayout.xml file + + + + +<xsl:param name="autolayout-file">autolayout.xml</xsl:param> + + + +Description +When the source pages are spread over several directories, this +parameter can be set (for example, from the command line of a batch-mode +XSLT processor) to indicate the location of the autolayout.xml file. +FIXME: for browser-based use, there needs to be a PI for this... + + + + + + +body.attributes +attribute set + + +body.attributes +DEPRECATED + + + + +<xsl:attribute-set name="body.attributes"> + <xsl:attribute name="bgcolor">white</xsl:attribute> + <xsl:attribute name="text">black</xsl:attribute> + <xsl:attribute name="link">#0000FF</xsl:attribute> + <xsl:attribute name="vlink">#840084</xsl:attribute> + <xsl:attribute name="alink">#0000FF</xsl:attribute> +</xsl:attribute-set> + + + +Description +DEPRECATED + + + + + +currentpage.marker +string + + +currentpage.marker +The text symbol used to mark the current page + + + + +<xsl:param name="currentpage.marker">@</xsl:param> + + + +Description +Character to use as identifying the current page in + + + + + +dry-run +boolean + + +dry-run +Indicates that no files should be produced + + + + <xsl:param name="dry-run" select="0"></xsl:param> + + +Description +When using the XSLT processor to manage dependencies and construct +the website, this parameter can be used to suppress the generation of +new and updated files. Effectively, this allows you to see what the +stylesheet would do, without actually making any changes. +Only applies when XSLT-based chunking is being used. + + + + + +feedback.href +uri + + +feedback.href +HREF (URI) for feedback link + + + + +<xsl:param name="feedback.href"></xsl:param> + + + +Description +The feedback.href value is used as the value +for the href attribute on the feedback +link. If feedback.href +is empty, no feedback link is generated. + + + + + +feedback.link.text +string + + +feedback.link.text +The text of the feedback link + + + + +<xsl:param name="feedback.link.text">Feedback</xsl:param> + + + +Description +The contents of this variable is used as the text of the feedback +link if feedback.href is not empty. If +feedback.href is empty, no feedback link is +generated. + + + + + +feedback.with.ids +boolean + + +feedback.with.ids +Toggle use of IDs in feedback + + + + +<xsl:param name="feedback.with.ids" select="0"></xsl:param> + + + +Description +If feedback.with.ids is non-zero, the ID of the +current page will be added to the feedback link. This can be used, for +example, if the feedback.href is a CGI script. + + + + + +filename-prefix +string + + +filename-prefix +Prefix added to all filenames + + + + +<xsl:param name="filename-prefix"></xsl:param> + + + +Description +To produce the text-only (that is, non-tabular) layout +of a website simultaneously with the tabular layout, the filenames have to +be distinguished. That's accomplished by adding the +filename-prefix to the front of each filename. + + + + + +footer.hr +boolean + + +footer.hr +Toggle <HR> before footer + + + + +<xsl:param name="footer.hr" select="1"></xsl:param> + + + +Description +If non-zero, an <HR> is generated at the bottom of each web page, +before the footer. + + + + + +header.hr +boolean + + +header.hr +Toggle <HR> after header + + + + +<xsl:param name="header.hr" select="1"></xsl:param> + + + +Description +If non-zero, an <HR> is generated at the bottom of each web page, +before the footer. + + + + + +output-root +filename + + +output-root +Specifies the root directory of the website + + + + +<xsl:param name="output-root">.</xsl:param> + + + +Description +When using the XSLT processor to manage dependencies and construct +the website, this parameter can be used to indicate the root directory +where the resulting pages are placed. +Only applies when XSLT-based chunking is being used. + + + + + +rebuild-all +boolean + + +rebuild-all +Indicates that all files should be produced + + + + +<xsl:param name="rebuild-all" select="0"></xsl:param> + + + +Description +When using the XSLT processor to manage dependencies and construct +the website, this parameter can be used to regenerate the whole website, +updating even pages that don't appear to need to be updated. +The dependency extension only looks at the source documents. So +if you change something in the stylesheet, for example, that has a global +effect, you can use this parameter to force the stylesheet to rebuild the +whole website. + +Only applies when XSLT-based chunking is being used. + + + + + +sequential.links +boolean + + +sequential.links +Make sequentional links? + + + + +<xsl:param name="sequential.links" select="0"></xsl:param> + + + +Description +FIXME + + + + + +suppress.homepage.title +boolean + + +suppress.homepage.title +Suppress title on homepage? + + + + +<xsl:param name="suppress.homepage.title" select="1"></xsl:param> + + + +Description +FIXME:If non-zero, the title on the homepage is suppressed? + + + + + +table.spacer.image +filename + + +table.spacer.image +Invisible pixel for tabular accessibility + + + + +<xsl:param name="table.spacer.image">graphics/spacer.gif</xsl:param> + + + +Description +This is the 1x1 pixel, transparent pixel used for the table trick to increase the accessibility of the tabular +website presentation. + + + + +Navigation Parameters + + +banner.before.navigation +boolean + + +banner.before.navigation +Put banner before navigation? + + + + +<xsl:param name="banner.before.navigation" select="1"></xsl:param> + + + +Description +FIXME + + + + + +navbgcolor +color + + +navbgcolor +The background color of the navigation TOC + + + + +<xsl:param name="navbgcolor">#4080FF</xsl:param> + + + +Description +The background color of the navigation TOC. +Only applies with the tabular presentation is being used. + + + + + +navbodywidth +length + + +navbodywidth +Specifies the width of the navigation table body + + + + +<xsl:param name="navbodywidth"></xsl:param> + + + +Description +The width of the body column. +Only applies with the tabular presentation is being used. + + + + + +nav.table.summary +string + + +nav.table.summary +HTML Table summary attribute value for navigation tables + + + + +<xsl:param name="nav.table.summary">Navigation</xsl:param> + + + +Description +The value of this parameter is used as the value of the table +summary attribute for the navigation table. +Only applies with the tabular presentation is being used. + + + + + +navtocwidth +length + + +navtocwidth +Specifies the width of the navigation table TOC + + + + +<xsl:param name="navtocwidth">220</xsl:param> + + + +Description +The width, in pixels, of the navigation column. +Only applies with the tabular presentation is being used. + + + + + +textbgcolor +color + + +textbgcolor +The background color of the table body + + + + +<xsl:param name="textbgcolor">white</xsl:param> + + + +Description +The background color of the table body. +Only applies with the tabular presentation is being used. + + + + +ToC Parameters + + +toc.blank.graphic +boolean + + +toc.blank.graphic +Use graphic for "blanks" in TOC? + + + + +<xsl:param name="toc.blank.graphic" select="1"></xsl:param> + + + +Description +If non-zero, "blanks" in the the TOC will be accomplished +with the graphic identified by toc.spacer.image. + +Only applies with the tabular presentation is being used. + + + + + +toc.blank.image +filename + + +toc.blank.image +The image for "blanks" in the TOC + + + + +<xsl:param name="toc.blank.image">graphics/blank.gif</xsl:param> + + + +Description +If toc.blank.graphic is non-zero, this image +will be used to for "blanks" in the TOC. +Only applies with the tabular presentation is being used. + + + + + +toc.blank.text +string + + +toc.blank.text +The text for "blanks" in the TOC + + + + +<xsl:param name="toc.blank.text">   </xsl:param> + + + +Description +If toc.blank.graphic is zero, this text string +will be used for "blanks" in the TOC. +Only applies with the tabular presentation is being used. + + + + + +toc.pointer.graphic +boolean + + +toc.pointer.graphic +Use graphic for TOC pointer? + + + + +<xsl:param name="toc.pointer.graphic" select="1"></xsl:param> + + + +Description +If non-zero, the "pointer" in the TOC will be displayed +with the graphic identified by toc.pointer.image. + +Only applies with the tabular presentation is being used. + + + + + +toc.pointer.image +filename + + +toc.pointer.image +The image for the "pointer" in the TOC + + + + +<xsl:param name="toc.pointer.image">graphics/arrow.gif</xsl:param> + + + +Description +If toc.pointer.graphic is non-zero, this image +will be used for the "pointer" in the TOC. +Only applies with the tabular presentation is being used. + + + + + +toc.pointer.text +string + + +toc.pointer.text +The text for the "pointer" in the TOC + + + + +<xsl:param name="toc.pointer.text"> > </xsl:param> + + + +Description +If toc.pointer.graphic is zero, this text string +will be used to display the "pointer" in the TOC. +Only applies with the tabular presentation is being used. + + + + + +toc.spacer.graphic +boolean + + +toc.spacer.graphic +Use graphic for TOC spacer? + + + + +<xsl:param name="toc.spacer.graphic" select="1"></xsl:param> + + + +Description +If non-zero, the indentation in the TOC will be accomplished +with the graphic identified by toc.spacer.image. + +Only applies with the tabular presentation is being used. + + + + + +toc.spacer.image +filename + + +toc.spacer.image +The image for spacing the TOC + + + + +<xsl:param name="toc.spacer.image">graphics/blank.gif</xsl:param> + + + +Description +If toc.spacer.graphic is non-zero, this image +will be used to indent the TOC. +Only applies with the tabular presentation is being used. + + + + + +toc.spacer.text +string + + +toc.spacer.text +The text for spacing the TOC + + + + +<xsl:param name="toc.spacer.text">   </xsl:param> + + + +Description +If toc.spacer.graphic is zero, this text string +will be used to indent the TOC. +Only applies with the tabular presentation is being used. + + + + + +
    + DocBook XSL Stylesheets User Reference: PIs + + + + + This is generated reference documentation for all + user-specifiable processing instructions in the DocBook + XSL stylesheets. + + You add these PIs at particular points in a document to + cause specific “exceptions” to formatting/output behavior. To + make global changes in formatting/output behavior across an + entire document, it’s better to do it by setting an + appropriate stylesheet parameter (if there is one). + + + + + + HTML Processing Instruction Reference + + $Id: pi.xsl 8394 2009-04-02 20:31:30Z mzjn $ + + + + Introduction + +This is generated reference documentation for all + user-specifiable processing instructions (PIs) in the DocBook + XSL stylesheets for HTML output. + + +You add these PIs at particular points in a document to + cause specific “exceptions” to formatting/output behavior. To + make global changes in formatting/output behavior across an + entire document, it’s better to do it by setting an + appropriate stylesheet parameter (if there is one). + + + + + + + + +dbhtml_background-color +Sets background color for an image + + + + dbhtml background-color="color" + + +Description + +Use the dbhtml background-color PI before or + after an image (graphic, inlinegraphic, + imagedata, or videodata element) as a + sibling to the element, to set a background color for the + image. + + Parameters + + + background-color="color" + + +An HTML color value + + + + + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Background color + + + + + +dbhtml_bgcolor +Sets background color on a CALS table row or table cell + + + + dbhtml bgcolor="color" + + +Description + +Use the dbhtml bgcolor PI as child of a CALS table row + or cell to set a background color for that table row or cell. + + Parameters + + + bgcolor="color" + + +An HTML color value + + + + + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Cell background color + + + + + +dbhtml_cellpadding +Specifies cellpadding in CALS table or qandaset output + + + + dbhtml cellpadding="number" + + +Description + +Use the dbhtml cellpadding PI as a child of a + CALS table or qandaset to specify the value + for the HTML cellpadding attribute in the + output HTML table. + + Parameters + + + cellpadding="number" + + +Specifies the cellpadding + + + + + + Related Global Parameters + +html.cellpadding + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Cell spacing and cell padding, + Q and A formatting + + + + + +dbhtml_cellspacing +Specifies cellspacing in CALS table or qandaset output + + + + dbhtml cellspacing="number" + + +Description + +Use the dbhtml cellspacing PI as a child of a + CALS table or qandaset to specify the value + for the HTML cellspacing attribute in the + output HTML table. + + Parameters + + + cellspacing="number" + + +Specifies the cellspacing + + + + + + Related Global Parameters + +html.cellspacing + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Cell spacing and cell padding, + Q and A formatting + + + + + +dbhtml_class +Set value of the class attribute for a CALS table row + + + + dbhtml class="name" + + +Description + +Use the dbhtml class PI as a child of a + row to specify a class + attribute and value in the HTML output for that row. + + Parameters + + + class="name" + + +Specifies the class name + + + + + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Table styles in HTML output + + + + + +dbhtml_dir +Specifies a directory name in which to write files + + + + dbhtml dir="path" + + +Description + +When chunking output, use the dbhtml dir PI + as a child of a chunk source to cause the output of that + chunk to be written to the specified directory; also, use it + as a child of a mediaobject to specify a + directory into which any long-description files for that + mediaobject will be written. + + Parameters + + + dir="path" + + +Specifies the pathname for the directory + + + + + + Related Global Parameters + +base.dir + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +dbhtml dir processing instruction + + + + + +dbhtml_filename +Specifies a filename for a chunk + + + + dbhtml filename="filename" + + +Description + +When chunking output, use the dbhtml filename + PI as a child of a chunk source to specify a filename for + the output file for that chunk. + + Parameters + + + filename="path" + + +Specifies the filename for the file + + + + + + Related Global Parameters + +use.id.as.filename + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +dbhtml filenames + + + + + +dbhtml_funcsynopsis-style +Specifies presentation style for a funcsynopsis + + + + dbhtml funcsynopsis-style="kr"|"ansi" + + +Description + +Use the dbhtml funcsynopsis-style PI as a child of + a funcsynopsis or anywhere within a funcsynopsis + to control the presentation style for output of all + funcprototype instances within that funcsynopsis. + + Parameters + + + funcsynopsis-style="kr" + + +Displays funcprototype output in K&R style + + + + funcsynopsis-style="ansi" + + +Displays funcprototype output in ANSI style + + + + + + Related Global Parameters + +funcsynopsis.style + + + + + +dbhtml_img.src.path +Specifies a path to the location of an image file + + + + dbhtml img.src.path="path" + + +Description + +Use the dbhtml img.src.path PI before or + after an image (graphic, + inlinegraphic, imagedata, or + videodata element) as a sibling to the element, + to specify a path to the location of the image; in HTML + output, the value specified for the + img.src.path attribute is prepended to the + filename. + + Parameters + + + img.src.path="path" + + +Specifies the pathname to prepend to the name of the image file + + + + + + Related Global Parameters + +img.src.path + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Using fileref + + + + + +dbhtml_label-width +Specifies the label width for a qandaset + + + + dbhtml label-width="width" + + +Description + +Use the dbhtml label-width PI as a child of a + qandaset to specify the width of labels. + + Parameters + + + label-width="width" + + +Specifies the label width (including units) + + + + + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Q and A formatting + + + + + +dbhtml_linenumbering.everyNth +Specifies interval for line numbers in verbatims + + + + dbhtml linenumbering.everyNth="N" + + +Description + +Use the dbhtml linenumbering.everyNth PI as a child + of a “verbatim” element – programlisting, + screen, synopsis — to specify + the interval at which lines are numbered. + + Parameters + + + linenumbering.everyNth="N" + + +Specifies numbering interval; a number is output + before every Nth line + + + + + + Related Global Parameters + +linenumbering.everyNth + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Line numbering + + + + + +dbhtml_linenumbering.separator +Specifies separator text for line numbers in verbatims + + + + dbhtml linenumbering.separator="text" + + +Description + +Use the dbhtml linenumbering.separator PI as a child + of a “verbatim” element – programlisting, + screen, synopsis — to specify + the separator text output between the line numbers and content. + + Parameters + + + linenumbering.separator="text" + + +Specifies the text (zero or more characters) + + + + + + Related Global Parameters + +linenumbering.separator + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Line numbering + + + + + +dbhtml_linenumbering.width +Specifies width for line numbers in verbatims + + + + dbhtml linenumbering.width="width" + + +Description + +Use the dbhtml linenumbering.width PI as a child + of a “verbatim” element – programlisting, + screen, synopsis — to specify + the width set aside for line numbers. + + Parameters + + + linenumbering.width="width" + + +Specifies the width (inluding units) + + + + + + Related Global Parameters + +linenumbering.width + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Line numbering + + + + + +dbhtml_list-presentation +Specifies presentation style for a variablelist or + segmentedlist + + + + dbhtml list-presentation="list"|"table" + + +Description + +Use the dbhtml list-presentation PI as a child of + a variablelist or segmentedlist to + control the presentation style for the list (to cause it, for + example, to be displayed as a table). + + Parameters + + + list-presentation="list" + + +Displays the list as a list + + + + list-presentation="table" + + +Displays the list as a table + + + + + + Related Global Parameters + + + + +variablelist.as.table + + + + +segmentedlist.as.table + + + + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Variable list formatting in HTML + + + + + +dbhtml_list-width +Specifies the width of a variablelist or simplelist + + + + dbhtml list-width="width" + + +Description + +Use the dbhtml list-width PI as a child of a + variablelist or a simplelist presented + as a table, to specify the output width. + + Parameters + + + list-width="width" + + +Specifies the output width (including units) + + + + + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Variable list formatting in HTML + + + + + +dbhtml_row-height +Specifies the height for a CALS table row + + + + dbhtml row-height="height" + + +Description + +Use the dbhtml row-height PI as a child of a + row to specify the height of the row. + + Parameters + + + row-height="height" + + +Specifies the row height (including units) + + + + + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Row height + + + + + +dbhtml_start +(obsolete) Sets the starting number on an ordered list + + + + dbhtml start="character" + + +Description + +This PI is obsolete. The intent of + this PI was to provide a means for setting a specific starting + number for an ordered list. Instead of this PI, set a value + for the override attribute on the first + listitem in the list; that will have the same + effect as what this PI was intended for. + + Parameters + + + start="character" + + +Specifies the character to use as the starting + number; use 0-9, a-z, A-Z, or lowercase or uppercase + Roman numerals + + + + + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +List starting number + + + + + +dbhtml_stop-chunking +Do not chunk any descendants of this element. + + + + dbhtml stop-chunking + + +Description + +When generating chunked HTML output, adding this PI as the child of an element that contains elements that would normally be generated on separate pages if generating chunked output causes chunking to stop at this point. No descendants of the current element will be split into new HTML pages: +<section> +<title>Configuring pencil</title> +<?dbhtml stop-chunking?> + +... + +</section> + + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Chunking into multiple HTML files + + + + + +dbhtml_table-summary +Specifies summary for CALS table, variablelist, segmentedlist, or qandaset output + + + + dbhtml table-summary="text" + + +Description + +Use the dbhtml table-summary PI as a child of + a CALS table, variablelist, + segmentedlist, or qandaset to specify + the text for the HTML summary attribute + in the output HTML table. + + Parameters + + + table-summary="text" + + +Specifies the summary text (zero or more characters) + + + + + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Variable list formatting in HTML, + Table summary text + + + + + +dbhtml_table-width +Specifies the width for a CALS table + + + + dbhtml table-width="width" + + +Description + +Use the dbhtml table-width PI as a child of a + CALS table to specify the width of the table in + output. + + Parameters + + + table-width="width" + + +Specifies the table width (including units or as a percentage) + + + + + + Related Global Parameters + +default.table.width + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Table width + + + + + +dbhtml_term-presentation +Sets character formatting for terms in a variablelist + + + + dbhtml term-presentation="bold"|"italic"|"bold-italic" + + +Description + +Use the dbhtml term-presentation PI as a child + of a variablelist to set character formatting for + the term output of the list. + + Parameters + + + term-presentation="bold" + + +Specifies that terms are displayed in bold + + + + term-presentation="italic" + + +Specifies that terms are displayed in italic + + + + term-presentation="bold-italic" + + +Specifies that terms are displayed in bold-italic + + + + + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Variable list formatting in HTML + + + + + +dbhtml_term-separator +Specifies separator text among terms in a varlistentry + + + + dbhtml term-separator="text" + + +Description + +Use the dbhtml term-separator PI as a child + of a variablelist to specify the separator text + among term instances. + + Parameters + + + term-separator="text" + + +Specifies the text (zero or more characters) + + + + + + Related Global Parameters + +variablelist.term.separator + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Variable list formatting in HTML + + + + + +dbhtml_term-width +Specifies the term width for a variablelist + + + + dbhtml term-width="width" + + +Description + +Use the dbhtml term-width PI as a child of a + variablelist to specify the width for + term output. + + Parameters + + + term-width="width" + + +Specifies the term width (including units) + + + + + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Variable list formatting in HTML + + + + + +dbhtml_toc +Specifies whether a TOC should be generated for a qandaset + + + + dbhtml toc="0"|"1" + + +Description + +Use the dbhtml toc PI as a child of a + qandaset to specify whether a table of contents + (TOC) is generated for the qandaset. + + Parameters + + + toc="0" + + +If zero, no TOC is generated + + + + toc="1" + + +If 1 (or any non-zero value), + a TOC is generated + + + + + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Q and A list of questions, + Q and A formatting + + + + + +dbcmdlist +Generates a hyperlinked list of commands + + + + dbcmdlist + + +Description + +Use the dbcmdlist PI as the child of any + element (for example, refsynopsisdiv) containing multiple + cmdsynopsis instances; a hyperlinked navigational + “command list” will be generated at the top of output for that + element, enabling users to quickly jump + to each command synopsis. + + Parameters + +[No parameters] + + + + + +dbfunclist +Generates a hyperlinked list of functions + + + + dbfunclist + + +Description + +Use the dbfunclist PI as the child of any + element (for example, refsynopsisdiv) containing multiple + funcsynopsis instances; a hyperlinked + navigational “function list” will be generated at the top of + output for that element, enabling users to quickly + jump to to each function synopsis. + + Parameters + +[No parameters] + + + + + +dbhtml-include_href +Copies an external well-formed HTML/XML file into current doc + + + + dbhtml-include href="URI" + + +Description + +Use the dbhtml-include href PI anywhere in a + document to cause the contents of the file referenced by the + href pseudo-attribute to be copied/inserted “as + is” into your HTML output at the point in document order + where the PI occurs in the source. + + + +The referenced file may contain plain text (as long as + it is “wrapped” in an html element — see the + note below) or markup in any arbitrary vocabulary, + including HTML — but it must conform to XML + well-formedness constraints (because the feature in XSLT + 1.0 for opening external files, the + document() function, can only handle + files that meet XML well-formedness constraints). + + +Among other things, XML well-formedness constraints + require a document to have a single root + element. So if the content you want to + include is plain text or is markup that does + not have a single root element, + wrap the content in an + html element. The stylesheets will + strip out that surrounding html “wrapper” when + they find it, leaving just the content you want to + insert. + + + Parameters + + + href="URI" + + +Specifies the URI for the file to include; the URI + can be, for example, a remote http: + URI, or a local filesystem file: + URI + + + + + + Related Global Parameters + +textinsert.extension + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Inserting external HTML code, + External code files + + + + + +dbhh +Sets topic name and topic id for context-sensitive HTML Help + + + + dbhh topicname="name" topicid="id" + + +Description + +Use the dbhh PI as a child of components + that should be used as targets for context-sensitive help requests. + + Parameters + + + topicname="name" + + +Specifies a unique string constant that identifies a help topic + + + + topicid="id" + + +Specifies a unique integer value for the topicname string + + + + + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Context-sensitive help + + + + + + FO Processing Instruction Reference + + $Id: pi.xsl 8487 2009-07-14 21:43:36Z bobstayton $ + + + + + Introduction + + +This is generated reference documentation for all + user-specifiable processing instructions (PIs) in the DocBook + XSL stylesheets for FO output. + + +You add these PIs at particular points in a document to + cause specific “exceptions” to formatting/output behavior. To + make global changes in formatting/output behavior across an + entire document, it’s better to do it by setting an + appropriate stylesheet parameter (if there is one). + + + + + + + + +dbfo_background-color +Sets background color for an image + + + + dbfo background-color="color" + + +Description + +Use the dbfo background-color PI before or + after an image (graphic, inlinegraphic, + imagedata, or videodata element) as a + sibling to the element, to set a background color for the + image. + + Parameters + + + background-color="color" + + +An HTML color value + + + + + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Background color + + + + + +dbfo_bgcolor +Sets background color on a table row or table cell + + + + dbfo bgcolor="color" + + +Description + +Use the dbfo bgcolor PI as child of a table row + or cell to set a background color for that table row or cell. + + +This PI works for both CALS and HTML tables. + + Parameters + + + bgcolor="color" + + +An HTML color value + + + + + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Cell background color + + + + + +dbfo_float-type +Specifies float behavior for a sidebar + + + + dbfo float-type="margin.note" + + +Description + +Use the dbfo float-type PI to specify the float + behavior for a sidebar (to cause the sidebar to be + displayed as a marginal note). + + Parameters + + + float-type="margin.note" + + +Specifies that the sidebar should be + displayed as a marginal note. + + + + + + Related Global Parameters + +sidebar.float.type (parameter), + sidebar.float.width (parameter), + sidebar.properties (attribute-set), + sidebar.title.properties (attribute-set) + + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +A sidebar as + side float + + + + + +dbfo_funcsynopsis-style +Specifies presentation style for a funcsynopsis + + + + dbfo funcsynopsis-style="kr"|"ansi" + + +Description + +Use the dbfo funcsynopsis-style PI as a child of + a funcsynopsis or anywhere within a funcsynopsis + to control the presentation style for output of all + funcprototype instances within that funcsynopsis. + + Parameters + + + funcsynopsis-style="kr" + + +Displays funcprototype output in K&R style + + + + funcsynopsis-style="ansi" + + +Displays funcprototype output in ANSI style + + + + + + Related Global Parameters + +funcsynopsis.style + + + + + +dbfo_glossary-presentation +Specifies presentation style for a glossary + + + + dbfo glossary-presentation="list"|"blocks" + + +Description + +Use the dbfo glossary-presentation PI as a child of + a glossary to control its presentation style. + + Parameters + + + glossary-presentation="list" + + +Displays the glossary as a list + + + + glossary-presentation="blocks" + + +Displays the glossary as blocks + + + + + + Related Global Parameters + +glossary.as.blocks + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Glossary + formatting in print + + + + + +dbfo_glosslist-presentation +Specifies presentation style for a glosslist + + + + dbfo glosslist-presentation="list"|"blocks" + + +Description + +Use the dbfo glosslist-presentation PI as a child of + a glosslist to control its presentation style. + + Parameters + + + glosslist-presentation="list" + + +Displays the glosslist as a list + + + + glosslist-presentation="blocks" + + +Displays the glosslist as blocks + + + + + + Related Global Parameters + +glosslist.as.blocks + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Glossary + formatting in print + + + + + +dbfo_glossterm-width +Specifies the glossterm width for a glossary or + glosslist + + + + dbfo glossterm-width="width" + + +Description + +Use the dbfo glossterm-width PI as a child of a + glossary or glosslist to specify the + width for output of glossterm instances in the + output. + + Parameters + + + glossterm-width="width" + + +Specifies the glossterm width (including units) + + + + + + Related Global Parameters + +glossterm.width, + glossterm.separation + + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Glossary + formatting in print + + + + + +dbfo_keep-together +Specifies “keep” behavior for a table, example, + figure, equation, procedure, or task + + + + dbfo keep-together="auto"|"always" + + +Description + +Use the dbfo keep-together PI as a child of a + formal object (table, example, + figure, equation, procedure, or + task) to specify “keep” behavior (to allow the object to + “break” across a page). + + +The PI also works with informaltable, informalexample, + informalfigure and informalequation. + + + + Parameters + + + keep-together="auto" + + +Enables the object to break across a page + + + + keep-together="always" + + +Prevents the object from breaking across a page (the + default stylesheet behavior) + + + + + + Related Global Parameters + +formal.object.properties + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Keep-together processing instruction + + + + + +dbfo_label-width +Specifies the label width for a qandaset, itemizedlist, orderedlist + or calloutlist + + + + dbfo label-width="width" + + +Description + +Use the dbfo label-width PI as a child of a + qandaset, itemizedlist, orderedlist, + or calloutlist to specify the width of labels. + + Parameters + + + label-width="width" + + +Specifies the label width (including units) + + + + + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Q and A formatting + + + + + +dbfo_linenumbering.everyNth +Specifies interval for line numbers in verbatims + + + + dbfo linenumbering.everyNth="N" + + +Description + +Use the dbfo linenumbering.everyNth PI as a child + of a “verbatim” element – programlisting, + screen, synopsis — to specify + the interval at which lines are numbered. + + Parameters + + + linenumbering.everyNth="N" + + +Specifies numbering interval; a number is output + before every Nth line + + + + + + Related Global Parameters + +linenumbering.everyNth + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Line numbering + + + + + +dbfo_linenumbering.separator +Specifies separator text for line numbers in verbatims + + + + dbfo linenumbering.separator="text" + + +Description + +Use the dbfo linenumbering.separator PI as a child + of a “verbatim” element – programlisting, + screen, synopsis — to specify + the separator text output between the line numbers and content. + + Parameters + + + linenumbering.separator="text" + + +Specifies the text (zero or more characters) + + + + + + Related Global Parameters + +linenumbering.separator + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Line numbering + + + + + +dbfo_linenumbering.width +Specifies width for line numbers in verbatims + + + + dbfo linenumbering.width="width" + + +Description + +Use the dbfo linenumbering.width PI as a child + of a “verbatim” element – programlisting, + screen, synopsis — to specify + the width set aside for line numbers. + + Parameters + + + linenumbering.width="width" + + +Specifies the width (inluding units) + + + + + + Related Global Parameters + +linenumbering.width + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Line numbering + + + + + +dbfo_list-presentation +Specifies presentation style for a variablelist or + segmentedlist + + + + dbfo list-presentation="list"|"blocks"|"table" + + +Description + +Use the dbfo list-presentation PI as a child of + a variablelist or segmentedlist to + control the presentation style for the list (to cause it, for + example, to be displayed as a table). + + Parameters + + + list-presentation="list" + + +Displays the list as a list + + + + list-presentation="blocks" + + +(variablelist only) Displays the list as blocks + + + + list-presentation="table" + + +(segmentedlist only) Displays the list as a table + + + + + + Related Global Parameters + + + + +variablelist.as.blocks + + + + +variablelist.as.table + + + + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Variable list formatting in print + + + + + +dbfo_list-width +Specifies the width of a horizontal simplelist + + + + dbfo list-width="width" + + +Description + +Use the dbfo list-width PI as a child of a + simplelist whose class + value is horizontal, to specify the width + of the simplelist. + + Parameters + + + list-width="width" + + +Specifies the simplelist width (including units) + + + + + + + + + +dbfo_orientation +Specifies the orientation for a CALS table row or cell + + + + dbfo orientation="0"|"90"|"180"|"270"|"-90"|"-180"|"-270" + + +Description + +Use the dbfo orientation PI as a child of a CALS + table row or cell to specify the orientation + (rotation) for the row or cell. + + Parameters + + + orientation="0"|"90"|"180"|"270"|"-90"|"-180"|"-270" + + +Specifies the number of degrees by which the cell or + row is rotated + + + + + + + + + +dbfo_pgwide +Specifies if an equation or example goes across full page width + + + + dbfo pgwide="0"|"1" + + +Description + +Use the dbfo pgwide PI as a child of an + equation or example to specify that the + content should rendered across the full width of the page. + + Parameters + + + pgwide="0" + + +If zero, the content is rendered across the current + text flow + + + + pgwide="1" + + +If 1 (or any non-zero value), the + content is rendered across the full width of the page + + + + + + Related Global Parameters + +pgwide.properties + + + + + +dbfo_rotated-width +Specifies the width for a CALS table entry or + row + + + + dbfo rotated-width="width" + + +Description + +Use the dbfo rotated-width PI as a child of + entry or row instance in a CALS table to specify the + width of that the entry or row; or + use it higher up in table to cause the width to be inherited + recursively down. + + Parameters + + + rotated-width="width" + + +Specifies the width of a row or cell (including units) + + + + + + + + + +dbfo_sidebar-width +Specifies the width of a sidebar + + + + dbfo sidebar-width="width" + + +Description + +Use the dbfo sidebar-width PI as a child of a + sidebar to specify the width of the sidebar. + + Parameters + + + sidebar-width="width" + + +Specifies the sidebar width (including units) + + + + + + Related Global Parameters + +sidebar.float.type parameter, + sidebar.float.width parameter, + sidebar.properties attribute-set, + sidebar.title.properties + + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +A sidebar as + side float + + + + + +dbfo_start +(obsolete) Sets the starting number on an ordered list + + + + dbfo start="character" + + +Description + +This PI is obsolete. The intent of + it was to provide a means for setting a specific starting + number for an ordered list. Instead of this PI, set a value + for the override attribute on the first + listitem in the list; that will have the same + effect as what this PI was intended for. + + Parameters + + + start="character" + + +Specifies the character to use as the starting + number; use 0-9, a-z, A-Z, or lowercase or uppercase + Roman numerals + + + + + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +List starting number + + + + + +dbfo_table-width +Specifies the width for a CALS table or for revhistory + output + + + + dbfo table-width="width" + + +Description + +Use the dbfo table-width PI as a child or + sibling of a CALS table, or as a child of an + informaltable, entrytbl, or + revhistory instance (which is rendered as a table + in output) to specify the width of the table in output. + + Parameters + + + table-width="width" + + +Specifies the table width (including units or as a percentage) + + + + + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Table width + + + + + +dbfo_term-width +Specifies the term width for a variablelist + + + + dbfo term-width="width" + + +Description + +Use the dbfo term-width PI as a child of a + variablelist to specify the width for + term output. + + Parameters + + + term-width="width" + + +Specifies the term width (including units) + + + + + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Variable list formatting in print + + + + + +dbfo_toc +Specifies whether a TOC should be generated for a qandaset + + + + dbfo toc="0"|"1" + + +Description + +Use the dbfo toc PI as a child of a + qandaset to specify whether a table of contents + (TOC) is generated for the qandaset. + + Parameters + + + toc="0" + + +If zero, no TOC is generated + + + + toc="1" + + +If 1 (or any non-zero value), + a TOC is generated + + + + + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Q and A list of questions, + Q and A formatting + + + + + +dbfo-need +Specify a need for space (a kind of soft page break) + + + + dbfo-need height="n" [space-before="n"] + + +Description + +A “need” is a request for space on a page. If the + requested space is not available, the page breaks and the + content that follows the need request appears on the next + page. If the requested space is available, then no page break + is inserted. + + Parameters + + + height="n" + + +The amount of height needed (including units) + + + + space-before="n" + + +The amount of extra vertical space to add (including units) + + + + + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Soft page breaks + + + + + +dbfo_row-height +Specifies the height for a CALS table row + + + + dbfo row-height="height" + + +Description + +Use the dbfo row-height PI as a child of a + row to specify the height of the row. + + Parameters + + + row-height="height" + + +Specifies the row height (including units) + + + + + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Row height + + + + + + manpages Processing Instruction Reference + + $Id: pi.xsl 7644 2008-01-16 11:04:07Z xmldoc $ + + + + Introduction + +This is generated reference documentation for all + user-specifiable processing instructions (PIs) in the DocBook + XSL stylesheets for manpages output. + + +You add these PIs at particular points in a document to + cause specific “exceptions” to formatting/output behavior. To + make global changes in formatting/output behavior across an + entire document, it’s better to do it by setting an + appropriate stylesheet parameter (if there is one). + + + + + + + + +dbman_funcsynopsis-style +Specifies presentation style for a funcsynopsis. + + + + dbman funcsynopsis-style="kr"|"ansi" + + +Description + +Use the dbman + funcsynopsis-style PI as a child of a + funcsynopsis or anywhere within a funcsynopsis + to control the presentation style for output of all + funcprototype instances within that funcsynopsis. + + Parameters + + + funcsynopsis-style="kr" + + +Displays the funcprototype in K&R style + + + + funcsynopsis-style="ansi" + + +Displays the funcprototype in ANSI style + + + + + + Related Global Parameters + +man.funcsynopsis.style + + + + + + Common Processing Instruction Reference + + $Id: pi.xsl 8782 2010-07-27 21:15:17Z mzjn $ + + + + Introduction + +This is generated reference documentation for all + user-specifiable processing instructions (PIs) in the + “common” part of the DocBook XSL stylesheets. + + +You add these PIs at particular points in a document to + cause specific “exceptions” to formatting/output behavior. To + make global changes in formatting/output behavior across an + entire document, it’s better to do it by setting an + appropriate stylesheet parameter (if there is one). + + + + + + + + +dbchoice_choice +Generates a localized choice separator + + + + dbchoice choice="and"|"or"|string" + + +Description + +Use the dbchoice choice PI to + generate an appropriate localized “choice” separator (for + example, and or or) + before the final item in an inline simplelist + + + +This PI is a less-than-ideal hack; support for it may + disappear in the future (particularly if and when a more + appropriate means for marking up "choice" lists becomes + available in DocBook). + + + Parameters + + + choice="and" + + +generates a localized and separator + + + + choice="or" + + +generates a localized or separator + + + + choice="string" + + +generates a literal string separator + + + + + + + + + +dbtimestamp +Inserts a date timestamp + + + + dbtimestamp format="formatstring" [padding="0"|"1"] + + +Description + +Use the dbtimestamp PI at any point in a + source document to cause a date timestamp (a formatted + string representing the current date and time) to be + inserted in output of the document. + + Parameters + + + format="formatstring" + + +Specifies format in which the date and time are + output + + + +For details of the content of the format string, + see Date and time. + + + + + padding="0"|"1" + + +Specifies padding behavior; if non-zero, padding is is added + + + + + + + + + +dbtex_delims +Generates delimiters around embedded TeX equations + in output + + + + dbtex delims="no"|"yes" + + +Description + +Use the dbtex delims PI as a + child of a textobject containing embedded TeX + markup, to cause that markup to be surrounded by + $ delimiter characters in output. + + + +This feature is useful for print/PDF output only if you + use the obsolete and now unsupported PassiveTeX XSL-FO + engine. + + + Parameters + + + dbtex delims="no"|"yes" + + +Specifies whether delimiters are output + + + + + + Related Global Parameters + +tex.math.delims + + + + + + DocBook XSL Stylesheets Developer Reference + + + This is technical reference documentation for + developers using the DocBook XSL Stylesheets. It is not + intended to be user documentation, but is instead + provided for developers writing customization layers for + the stylesheets. + + + + + + XSL Library Template Reference + + Introduction + This is technical reference documentation for the + vocabulary-independent “library” templates in the DocBook XSL + Stylesheets. + This is not intended to be user documentation. It is + provided for developers writing customization layers for the + stylesheets. + + + + General Library Templates + + + +dot.count +Returns the number of . characters in a string + + +Description + + Given a string, the dot.count + template returns the number of dot/period characters in the + string. This template is useful, for example, when testing the + nesting level of nested inline markup (for nested emphasis, + quotations, etc.). + + +<xsl:template name="dot.count"> + <!-- Returns the number of "." characters in a string --> + <xsl:param name="string"></xsl:param> + <xsl:param name="count" select="0"></xsl:param> + <xsl:choose> + <xsl:when test="contains($string, '.')"> + <xsl:call-template name="dot.count"> + <xsl:with-param name="string" select="substring-after($string, '.')"></xsl:with-param> + <xsl:with-param name="count" select="$count+1"></xsl:with-param> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="$count"></xsl:value-of> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + + + + + + + + + +copy-string +Returns count copies of a string + + +Description + + Given a string, the copy-string + template creates n copies of the + string, when the value of n is + given by the count parameter. + + +<xsl:template name="copy-string"> + <!-- returns 'count' copies of 'string' --> + <xsl:param name="string"></xsl:param> + <xsl:param name="count" select="0"></xsl:param> + <xsl:param name="result"></xsl:param> + + <xsl:choose> + <xsl:when test="$count>0"> + <xsl:call-template name="copy-string"> + <xsl:with-param name="string" select="$string"></xsl:with-param> + <xsl:with-param name="count" select="$count - 1"></xsl:with-param> + <xsl:with-param name="result"> + <xsl:value-of select="$result"></xsl:value-of> + <xsl:value-of select="$string"></xsl:value-of> + </xsl:with-param> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="$result"></xsl:value-of> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + + + + + + + + + +string.subst +Substitute one text string for another in a string + + +Description + +The string.subst template replaces all +occurances of target in string +with replacement and returns the result. + + + +<xsl:template name="string.subst"> + <xsl:param name="string"></xsl:param> + <xsl:param name="target"></xsl:param> + <xsl:param name="replacement"></xsl:param> + + <xsl:choose> + <xsl:when test="contains($string, $target)"> + <xsl:variable name="rest"> + <xsl:call-template name="string.subst"> + <xsl:with-param name="string" select="substring-after($string, $target)"></xsl:with-param> + <xsl:with-param name="target" select="$target"></xsl:with-param> + <xsl:with-param name="replacement" select="$replacement"></xsl:with-param> + </xsl:call-template> + </xsl:variable> + <xsl:value-of select="concat(substring-before($string, $target), $replacement, $rest)"></xsl:value-of> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="$string"></xsl:value-of> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + + + + + + + + + +xpointer.idref +Extract IDREF from an XPointer + + +Description + +The xpointer.idref template returns the +ID portion of an XPointer which is a pointer to an ID within the current +document, or the empty string if it is not. +In other words, xpointer.idref returns +foo when passed either #foo +or #xpointer(id('foo')), otherwise it returns +the empty string. + + +<xsl:template name="xpointer.idref"> + <xsl:param name="xpointer">http://...</xsl:param> + <xsl:choose> + <xsl:when test="starts-with($xpointer, '#xpointer(id(')"> + <xsl:variable name="rest" select="substring-after($xpointer, '#xpointer(id(')"></xsl:variable> + <xsl:variable name="quote" select="substring($rest, 1, 1)"></xsl:variable> + <xsl:value-of select="substring-before(substring-after($xpointer, $quote), $quote)"></xsl:value-of> + </xsl:when> + <xsl:when test="starts-with($xpointer, '#')"> + <xsl:value-of select="substring-after($xpointer, '#')"></xsl:value-of> + </xsl:when> + <!-- otherwise it's a pointer to some other document --> + </xsl:choose> +</xsl:template> + + + + + + + + + + +length-magnitude +Return the unqualified dimension from a length specification + + +Description + +The length-magnitude template returns the +unqualified length ("20" for "20pt") from a dimension. + + + +<xsl:template name="length-magnitude"> + <xsl:param name="length" select="'0pt'"></xsl:param> + + <xsl:choose> + <xsl:when test="string-length($length) = 0"></xsl:when> + <xsl:when test="substring($length,1,1) = '0' or substring($length,1,1) = '1' or substring($length,1,1) = '2' or substring($length,1,1) = '3' or substring($length,1,1) = '4' or substring($length,1,1) = '5' or substring($length,1,1) = '6' or substring($length,1,1) = '7' or substring($length,1,1) = '8' or substring($length,1,1) = '9' or substring($length,1,1) = '.'"> + <xsl:value-of select="substring($length,1,1)"></xsl:value-of> + <xsl:call-template name="length-magnitude"> + <xsl:with-param name="length" select="substring($length,2)"></xsl:with-param> + </xsl:call-template> + </xsl:when> + </xsl:choose> +</xsl:template> + + + + + + + + + +length-units +Return the units from a length specification + + +Description + +The length-units template returns the +units ("pt" for "20pt") from a length. If no units are supplied on the +length, the defauilt.units are returned. + + +<xsl:template name="length-units"> + <xsl:param name="length" select="'0pt'"></xsl:param> + <xsl:param name="default.units" select="'px'"></xsl:param> + <xsl:variable name="magnitude"> + <xsl:call-template name="length-magnitude"> + <xsl:with-param name="length" select="$length"></xsl:with-param> + </xsl:call-template> + </xsl:variable> + + <xsl:variable name="units"> + <xsl:value-of select="substring($length, string-length($magnitude)+1)"></xsl:value-of> + </xsl:variable> + + <xsl:choose> + <xsl:when test="$units = ''"> + <xsl:value-of select="$default.units"></xsl:value-of> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="$units"></xsl:value-of> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + + + + + + + + + +length-spec +Return a fully qualified length specification + + +Description + +The length-spec template returns the +qualified length from a dimension. If an unqualified length is given, +the default.units will be added to it. + + + +<xsl:template name="length-spec"> + <xsl:param name="length" select="'0pt'"></xsl:param> + <xsl:param name="default.units" select="'px'"></xsl:param> + + <xsl:variable name="magnitude"> + <xsl:call-template name="length-magnitude"> + <xsl:with-param name="length" select="$length"></xsl:with-param> + </xsl:call-template> + </xsl:variable> + + <xsl:variable name="units"> + <xsl:value-of select="substring($length, string-length($magnitude)+1)"></xsl:value-of> + </xsl:variable> + + <xsl:value-of select="$magnitude"></xsl:value-of> + <xsl:choose> + <xsl:when test="$units='cm' or $units='mm' or $units='in' or $units='pt' or $units='pc' or $units='px' or $units='em'"> + <xsl:value-of select="$units"></xsl:value-of> + </xsl:when> + <xsl:when test="$units = ''"> + <xsl:value-of select="$default.units"></xsl:value-of> + </xsl:when> + <xsl:otherwise> + <xsl:message> + <xsl:text>Unrecognized unit of measure: </xsl:text> + <xsl:value-of select="$units"></xsl:value-of> + <xsl:text>.</xsl:text> + </xsl:message> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + + + + + + + + + +length-in-points +Returns the size, in points, of a specified length + + +Description + +The length-in-points template converts a length +specification to points and returns that value as an unqualified +number. + + + +There is no way for the template to infer the size of an +em. It relies on the default em.size +which is initially 10 (for 10pt). + +Similarly, converting pixels to points relies on the +pixels.per.inch parameter which is initially +90. + + + + +<xsl:template name="length-in-points"> + <xsl:param name="length" select="'0pt'"></xsl:param> + <xsl:param name="em.size" select="10"></xsl:param> + <xsl:param name="pixels.per.inch" select="90"></xsl:param> + + <xsl:variable name="magnitude"> + <xsl:call-template name="length-magnitude"> + <xsl:with-param name="length" select="$length"></xsl:with-param> + </xsl:call-template> + </xsl:variable> + + <xsl:variable name="units"> + <xsl:value-of select="substring($length, string-length($magnitude)+1)"></xsl:value-of> + </xsl:variable> + + <xsl:choose> + <xsl:when test="$units = 'pt'"> + <xsl:value-of select="$magnitude"></xsl:value-of> + </xsl:when> + <xsl:when test="$units = 'cm'"> + <xsl:value-of select="$magnitude div 2.54 * 72.0"></xsl:value-of> + </xsl:when> + <xsl:when test="$units = 'mm'"> + <xsl:value-of select="$magnitude div 25.4 * 72.0"></xsl:value-of> + </xsl:when> + <xsl:when test="$units = 'in'"> + <xsl:value-of select="$magnitude * 72.0"></xsl:value-of> + </xsl:when> + <xsl:when test="$units = 'pc'"> + <xsl:value-of select="$magnitude * 12.0"></xsl:value-of> + </xsl:when> + <xsl:when test="$units = 'px'"> + <xsl:value-of select="$magnitude div $pixels.per.inch * 72.0"></xsl:value-of> + </xsl:when> + <xsl:when test="$units = 'em'"> + <xsl:value-of select="$magnitude * $em.size"></xsl:value-of> + </xsl:when> + <xsl:otherwise> + <xsl:message> + <xsl:text>Unrecognized unit of measure: </xsl:text> + <xsl:value-of select="$units"></xsl:value-of> + <xsl:text>.</xsl:text> + </xsl:message> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + + + + + + + + + +pi-attribute +Extract a pseudo-attribute from a PI + + +Description + +The pi-attribute template extracts a pseudo-attribute +from a processing instruction. For example, given the PI +<?foo bar="1" baz='red'?>, +<xsl:call-template name="pi-attribute"> + <xsl:with-param name="pis" select="processing-instruction('foo')"/> + <xsl:with-param name="attribute" select="'baz'"/> +</xsl:call-template> +will return red. This template returns the first matching +attribute that it finds. Presented with processing instructions that +contain badly formed pseudo-attributes (missing or unbalanced quotes, +for example), the template may silently return erroneous results. + + +<xsl:template name="pi-attribute"> + <xsl:param name="pis" select="processing-instruction('BOGUS_PI')"></xsl:param> + <xsl:param name="attribute">filename</xsl:param> + <xsl:param name="count">1</xsl:param> + + <xsl:choose> + <xsl:when test="$count>count($pis)"> + <!-- not found --> + </xsl:when> + <xsl:otherwise> + <xsl:variable name="pi"> + <xsl:value-of select="$pis[$count]"></xsl:value-of> + </xsl:variable> + <xsl:variable name="pivalue"> + <xsl:value-of select="concat(' ', normalize-space($pi))"></xsl:value-of> + </xsl:variable> + <xsl:choose> + <xsl:when test="contains($pivalue,concat(' ', $attribute, '='))"> + <xsl:variable name="rest" select="substring-after($pivalue,concat(' ', $attribute,'='))"></xsl:variable> + <xsl:variable name="quote" select="substring($rest,1,1)"></xsl:variable> + <xsl:value-of select="substring-before(substring($rest,2),$quote)"></xsl:value-of> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="pi-attribute"> + <xsl:with-param name="pis" select="$pis"></xsl:with-param> + <xsl:with-param name="attribute" select="$attribute"></xsl:with-param> + <xsl:with-param name="count" select="$count + 1"></xsl:with-param> + </xsl:call-template> + </xsl:otherwise> + </xsl:choose> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + + + + + + + + + +lookup.key +Retrieve the value associated with a particular key in a table + + +Description + +Given a table of space-delimited key/value pairs, +the lookup.key template extracts the value associated +with a particular key. + + +<xsl:template name="lookup.key"> + <xsl:param name="key" select="''"></xsl:param> + <xsl:param name="table" select="''"></xsl:param> + + <xsl:if test="contains($table, ' ')"> + <xsl:choose> + <xsl:when test="substring-before($table, ' ') = $key"> + <xsl:variable name="rest" select="substring-after($table, ' ')"></xsl:variable> + <xsl:choose> + <xsl:when test="contains($rest, ' ')"> + <xsl:value-of select="substring-before($rest, ' ')"></xsl:value-of> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="$rest"></xsl:value-of> + </xsl:otherwise> + </xsl:choose> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="lookup.key"> + <xsl:with-param name="key" select="$key"></xsl:with-param> + <xsl:with-param name="table" select="substring-after(substring-after($table,' '), ' ')"></xsl:with-param> + </xsl:call-template> + </xsl:otherwise> + </xsl:choose> + </xsl:if> +</xsl:template> + + + + + + + + + +xpath.location +Calculate the XPath child-sequence to the current node + + +Description + +The xpath.location template calculates the +absolute path from the root of the tree to the current element node. + + + +<xsl:template name="xpath.location"> + <xsl:param name="node" select="."></xsl:param> + <xsl:param name="path" select="''"></xsl:param> + + <xsl:variable name="next.path"> + <xsl:value-of select="local-name($node)"></xsl:value-of> + <xsl:if test="$path != ''">/</xsl:if> + <xsl:value-of select="$path"></xsl:value-of> + </xsl:variable> + + <xsl:choose> + <xsl:when test="$node/parent::*"> + <xsl:call-template name="xpath.location"> + <xsl:with-param name="node" select="$node/parent::*"></xsl:with-param> + <xsl:with-param name="path" select="$next.path"></xsl:with-param> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:text>/</xsl:text> + <xsl:value-of select="$next.path"></xsl:value-of> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + + + + + + + + + +comment-escape-string +Prepare a string for inclusion in an XML comment + + +Description + +The comment-escape-string template returns a string +that has been transformed so that it can safely be output as an XML comment. +Internal occurrences of "--" will be replaced with "- -" and a leading and/or +trailing space will be added to the string, if necessary. + + +<xsl:template name="comment-escape-string"> + <xsl:param name="string" select="''"></xsl:param> + + <xsl:if test="starts-with($string, '-')"> + <xsl:text> </xsl:text> + </xsl:if> + + <xsl:call-template name="comment-escape-string.recursive"> + <xsl:with-param name="string" select="$string"></xsl:with-param> + </xsl:call-template> + + <xsl:if test="substring($string, string-length($string), 1) = '-'"> + <xsl:text> </xsl:text> + </xsl:if> +</xsl:template> + + + + + + + + + +comment-escape-string.recursive +Internal function used by comment-escape-string + + +Description + +The comment-escape-string.recursive template is used +by comment-escape-string. + + +<xsl:template name="comment-escape-string.recursive"> + <xsl:param name="string" select="''"></xsl:param> + <xsl:choose> + <xsl:when test="contains($string, '--')"> + <xsl:value-of select="substring-before($string, '--')"></xsl:value-of> + <xsl:value-of select="'- -'"></xsl:value-of> + <xsl:call-template name="comment-escape-string.recursive"> + <xsl:with-param name="string" select="substring-after($string, '--')"></xsl:with-param> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="$string"></xsl:value-of> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + + + + + + + + +trim.text +Trim leading and trailing whitespace from a text node + + +Description + +Given a text node, this function trims leading and trailing +whitespace from it and returns the trimmed contents. + + + + <xsl:template name="trim.text"> + <xsl:param name="contents" select="."></xsl:param> + <xsl:variable name="contents-left-trimmed"> + <xsl:call-template name="trim-left"> + <xsl:with-param name="contents" select="$contents"></xsl:with-param> + </xsl:call-template> + </xsl:variable> + <xsl:variable name="contents-trimmed"> + <xsl:call-template name="trim-right"> + <xsl:with-param name="contents" select="$contents-left-trimmed"></xsl:with-param> + </xsl:call-template> + </xsl:variable> + <xsl:value-of select="$contents-trimmed"></xsl:value-of> + </xsl:template> + + <xsl:template name="trim-left"> + <xsl:param name="contents"></xsl:param> + <xsl:choose> + <xsl:when test="starts-with($contents,' +') or starts-with($contents,' ') or starts-with($contents,' ') or starts-with($contents,' ')"> + <xsl:call-template name="trim-left"> + <xsl:with-param name="contents" select="substring($contents, 2)"></xsl:with-param> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="$contents"></xsl:value-of> + </xsl:otherwise> + </xsl:choose> + </xsl:template> + + <xsl:template name="trim-right"> + <xsl:param name="contents"></xsl:param> + <xsl:variable name="last-char"> + <xsl:value-of select="substring($contents, string-length($contents), 1)"></xsl:value-of> + </xsl:variable> + <xsl:choose> + <xsl:when test="($last-char = ' +') or ($last-char = ' ') or ($last-char = ' ') or ($last-char = ' ')"> + <xsl:call-template name="trim-right"> + <xsl:with-param name="contents" select="substring($contents, 1, string-length($contents) - 1)"></xsl:with-param> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="$contents"></xsl:value-of> + </xsl:otherwise> + </xsl:choose> + </xsl:template> + + + + + + + + + +str.tokenize.keep.delimiters +Tokenize a string while preserving any delimiters + +Description +Based on the occurrence of one or more delimiter characters, +this function breaks a string into a list of tokens and delimiters, +marking up each of the tokens with a token element +and preserving the delimiters as text nodes between the tokens. + + This function is a very slightly modified version of a + function from the EXSLT + site. The original is available at: + +
    + + The str.tokenize.keep.delimiters function + differs only in that it preserves the delimiters instead of + discarding them.
    +
    + + <xsl:template name="str.tokenize.keep.delimiters"> + <xsl:param name="string" select="''"></xsl:param> + <xsl:param name="delimiters" select="' '"></xsl:param> + <xsl:choose> + <xsl:when test="not($string)"></xsl:when> + <xsl:when test="not($delimiters)"> + <xsl:call-template name="str.tokenize.keep.delimiters-characters"> + <xsl:with-param name="string" select="$string"></xsl:with-param> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="str.tokenize.keep.delimiters-delimiters"> + <xsl:with-param name="string" select="$string"></xsl:with-param> + <xsl:with-param name="delimiters" select="$delimiters"></xsl:with-param> + </xsl:call-template> + </xsl:otherwise> + </xsl:choose> + </xsl:template> + <xsl:template name="str.tokenize.keep.delimiters-characters"> + <xsl:param name="string"></xsl:param> + <xsl:if test="$string"> + <ssb:token><xsl:value-of select="substring($string, 1, 1)"></xsl:value-of></ssb:token> + <xsl:call-template name="str.tokenize.keep.delimiters-characters"> + <xsl:with-param name="string" select="substring($string, 2)"></xsl:with-param> + </xsl:call-template> + </xsl:if> + </xsl:template> + <xsl:template name="str.tokenize.keep.delimiters-delimiters"> + <xsl:param name="string"></xsl:param> + <xsl:param name="delimiters"></xsl:param> + <xsl:variable name="delimiter" select="substring($delimiters, 1, 1)"></xsl:variable> + <xsl:choose> + <xsl:when test="not($delimiter)"> + <ssb:token><xsl:value-of select="$string"></xsl:value-of></ssb:token> + </xsl:when> + <xsl:when test="contains($string, $delimiter)"> + <xsl:if test="not(starts-with($string, $delimiter))"> + <xsl:call-template name="str.tokenize.keep.delimiters-delimiters"> + <xsl:with-param name="string" select="substring-before($string, $delimiter)"></xsl:with-param> + <xsl:with-param name="delimiters" select="substring($delimiters, 2)"></xsl:with-param> + </xsl:call-template> + </xsl:if> + <!-- output each delimiter --> + <xsl:value-of select="$delimiter"></xsl:value-of> + <xsl:call-template name="str.tokenize.keep.delimiters-delimiters"> + <xsl:with-param name="string" select="substring-after($string, $delimiter)"></xsl:with-param> + <xsl:with-param name="delimiters" select="$delimiters"></xsl:with-param> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="str.tokenize.keep.delimiters-delimiters"> + <xsl:with-param name="string" select="$string"></xsl:with-param> + <xsl:with-param name="delimiters" select="substring($delimiters, 2)"></xsl:with-param> + </xsl:call-template> + </xsl:otherwise> + </xsl:choose> + </xsl:template> + +
    +
    + + + + + + apply-string-subst-map + Apply a string-substitution map + + Description + This function applies a “string substitution” map. Use it when + you want to do multiple string substitutions on the same target + content. It reads in two things: content, the + content on which to perform the substitution, and + map.contents, a node set of + elements (the names of the elements don't matter), with each element + having the following attributes: + + + oldstring, a string to + be replaced + + + newstring, a string with + which to replace oldstring + + + The function uses map.contents to + do substitution on content, and then + returns the modified contents. + + This function is a very slightly modified version of Jeni + Tennison’s replace_strings function in the + multiple string replacements section of Dave Pawson’s + XSLT + FAQ. + The apply-string-subst-map function is + essentially the same function as the + apply-character-map function; the only + difference is that in the map that + apply-string-subst-map expects, oldstring and newstring attributes are used instead of + character and string attributes. + + + <xsl:template name="apply-string-subst-map"> + <xsl:param name="content"></xsl:param> + <xsl:param name="map.contents"></xsl:param> + <xsl:variable name="replaced_text"> + <xsl:call-template name="string.subst"> + <xsl:with-param name="string" select="$content"></xsl:with-param> + <xsl:with-param name="target" select="$map.contents[1]/@oldstring"></xsl:with-param> + <xsl:with-param name="replacement" select="$map.contents[1]/@newstring"></xsl:with-param> + </xsl:call-template> + </xsl:variable> + <xsl:choose> + <xsl:when test="$map.contents[2]"> + <xsl:call-template name="apply-string-subst-map"> + <xsl:with-param name="content" select="$replaced_text"></xsl:with-param> + <xsl:with-param name="map.contents" select="$map.contents[position() > 1]"></xsl:with-param> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="$replaced_text"></xsl:value-of> + </xsl:otherwise> + </xsl:choose> + </xsl:template> + + + +
    +Relative URI Functions + +Introduction + +These functions manipulate relative URI references. + +The following assumptions must hold true: + + + +All URIs are relative. + + +No URI contains the ../ sequence +which would effectively move up the hierarchy. + + + +If these assumptions do not hold, the results are unpredictable. + + + + + + + +count.uri.path.depth +Count the number of path components in a relative URI + + +Description + +This function counts the number of path components in a relative URI. + + +<xsl:template name="count.uri.path.depth"> + <xsl:param name="filename" select="''"></xsl:param> + <xsl:param name="count" select="0"></xsl:param> + + <xsl:choose> + <xsl:when test="contains($filename, '/')"> + <xsl:call-template name="count.uri.path.depth"> + <xsl:with-param name="filename" select="substring-after($filename, '/')"></xsl:with-param> + <xsl:with-param name="count" select="$count + 1"></xsl:with-param> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="$count"></xsl:value-of> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + + + + + + + + + +trim.common.uri.paths +Trim common leading path components from a relative URI + + +Description + +This function trims common leading path components from a relative URI. + + +<xsl:template name="trim.common.uri.paths"> + <xsl:param name="uriA" select="''"></xsl:param> + <xsl:param name="uriB" select="''"></xsl:param> + <xsl:param name="return" select="'A'"></xsl:param> + + <xsl:choose> + <xsl:when test="contains($uriA, '/') and contains($uriB, '/') and substring-before($uriA, '/') = substring-before($uriB, '/')"> + <xsl:call-template name="trim.common.uri.paths"> + <xsl:with-param name="uriA" select="substring-after($uriA, '/')"></xsl:with-param> + <xsl:with-param name="uriB" select="substring-after($uriB, '/')"></xsl:with-param> + <xsl:with-param name="return" select="$return"></xsl:with-param> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:choose> + <xsl:when test="$return = 'A'"> + <xsl:value-of select="$uriA"></xsl:value-of> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="$uriB"></xsl:value-of> + </xsl:otherwise> + </xsl:choose> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + + + + + + +
    + Common Template Reference + + + + + This is technical reference documentation for the + “base”, “refentry”, and “utility” sets of common + templates in the DocBook XSL Stylesheets. These + templates are “common” in that they are shared across + output formats (that is, they’re not + output-format-dependent) + This documentation is not intended to be user + documentation. It is provided for developers writing + customization layers for the stylesheets. + + + + + Common » Base Template Reference + + $Id: common.xsl 8784 2010-07-28 12:32:54Z mzjn $ + + + + + Introduction + +This is technical reference documentation for the “base” + set of common templates in the DocBook XSL Stylesheets. + + +This is not intended to be user documentation. It is + provided for developers writing customization layers for the + stylesheets. + + + + + +is.component +Tests if a given node is a component-level element + + +<xsl:template name="is.component"> +<xsl:param name="node" select="."/> + ... +</xsl:template> + +Description + +This template returns '1' if the specified node is a component +(Chapter, Appendix, etc.), and '0' otherwise. + +Parameters + + +node + + +The node which is to be tested. + + + + + +Returns + +This template returns '1' if the specified node is a component +(Chapter, Appendix, etc.), and '0' otherwise. + + + + + +is.section +Tests if a given node is a section-level element + + +<xsl:template name="is.section"> +<xsl:param name="node" select="."/> + ... +</xsl:template> + +Description + +This template returns '1' if the specified node is a section +(Section, Sect1, Sect2, etc.), and '0' otherwise. + +Parameters + + +node + + +The node which is to be tested. + + + + + +Returns + +This template returns '1' if the specified node is a section +(Section, Sect1, Sect2, etc.), and '0' otherwise. + + + + + +section.level +Returns the hierarchical level of a section + + +<xsl:template name="section.level"> +<xsl:param name="node" select="."/> + ... +</xsl:template> + +Description + +This template calculates the hierarchical level of a section. +The element sect1 is at level 1, sect2 is +at level 2, etc. + + + +Recursive sections are calculated down to the fifth level. + +Parameters + + +node + + +The section node for which the level should be calculated. +Defaults to the context node. + + + + + +Returns + +The section level, 1, 2, etc. + + + + + + +qanda.section.level +Returns the hierarchical level of a QandASet + + +<xsl:template name="qanda.section.level"/> + +Description + +This template calculates the hierarchical level of a QandASet. + + +Returns + +The level, 1, 2, etc. + + + + + + +select.mediaobject +Selects and processes an appropriate media object from a list + + +<xsl:template name="select.mediaobject"> +<xsl:param name="olist" select="imageobject|imageobjectco |videoobject|audioobject|textobject"/> + ... +</xsl:template> + +Description + +This template takes a list of media objects (usually the +children of a mediaobject or inlinemediaobject) and processes +the "right" object. + + + +This template relies on a template named +"select.mediaobject.index" to determine which object +in the list is appropriate. + + + +If no acceptable object is located, nothing happens. + +Parameters + + +olist + + +The node list of potential objects to examine. + + + + + +Returns + +Calls <xsl:apply-templates> on the selected object. + + + + + +select.mediaobject.index +Selects the position of the appropriate media object from a list + + +<xsl:template name="select.mediaobject.index"> +<xsl:param name="olist" select="imageobject|imageobjectco |videoobject|audioobject|textobject"/> +<xsl:param name="count">1</xsl:param> + ... +</xsl:template> + +Description + +This template takes a list of media objects (usually the +children of a mediaobject or inlinemediaobject) and determines +the "right" object. It returns the position of that object +to be used by the calling template. + + + +If the parameter use.role.for.mediaobject +is nonzero, then it first checks for an object with +a role attribute of the appropriate value. It takes the first +of those. Otherwise, it takes the first acceptable object +through a recursive pass through the list. + + + +This template relies on a template named "is.acceptable.mediaobject" +to determine if a given object is an acceptable graphic. The semantics +of media objects is that the first acceptable graphic should be used. + + + + +If no acceptable object is located, no index is returned. + +Parameters + + +olist + + +The node list of potential objects to examine. + + + +count + + +The position in the list currently being considered by the +recursive process. + + + + + +Returns + +Returns the position in the original list of the selected object. + + + + + +is.acceptable.mediaobject +Returns '1' if the specified media object is recognized + + +<xsl:template name="is.acceptable.mediaobject"> +<xsl:param name="object"/> + ... +</xsl:template> + +Description + +This template examines a media object and returns '1' if the +object is recognized as a graphic. + +Parameters + + +object + + +The media object to consider. + + + + + +Returns + +0 or 1 + + + + + +check.id.unique +Warn users about references to non-unique IDs + + +<xsl:template name="check.id.unique"> +<xsl:param name="linkend"/> + ... +</xsl:template> + +Description + +If passed an ID in linkend, +check.id.unique prints +a warning message to the user if either the ID does not exist or +the ID is not unique. + + + + + +check.idref.targets +Warn users about incorrectly typed references + + +<xsl:template name="check.idref.targets"> +<xsl:param name="linkend"/> +<xsl:param name="element-list"/> + ... +</xsl:template> + +Description + +If passed an ID in linkend, +check.idref.targets makes sure that the element +pointed to by the link is one of the elements listed in +element-list and warns the user otherwise. + + + + + +copyright.years +Print a set of years with collapsed ranges + + +<xsl:template name="copyright.years"> +<xsl:param name="years"/> +<xsl:param name="print.ranges" select="1"/> +<xsl:param name="single.year.ranges" select="0"/> +<xsl:param name="firstyear" select="0"/> +<xsl:param name="nextyear" select="0"/> + ... +</xsl:template> + +Description + +This template prints a list of year elements with consecutive +years printed as a range. In other words: + + +<year>1992</year> +<year>1993</year> +<year>1994</year> + + +is printed 1992-1994, whereas: + + +<year>1992</year> +<year>1994</year> + + +is printed 1992, 1994. + + + +This template assumes that all the year elements contain only +decimal year numbers, that the elements are sorted in increasing +numerical order, that there are no duplicates, and that all the years +are expressed in full century+year +(1999 not 99) notation. + +Parameters + + +years + + +The initial set of year elements. + + + +print.ranges + + +If non-zero, multi-year ranges are collapsed. If zero, all years +are printed discretely. + + + +single.year.ranges + + +If non-zero, two consecutive years will be printed as a range, +otherwise, they will be printed discretely. In other words, a single +year range is 1991-1992 but discretely it's +1991, 1992. + + + + + +Returns + +This template returns the formatted list of years. + + + + + +find.path.params +Search in a table for the "best" match for the node + + +<xsl:template name="find.path.params"> +<xsl:param name="node" select="."/> +<xsl:param name="table" select="''"/> +<xsl:param name="location"> + <xsl:call-template name="xpath.location"> + <xsl:with-param name="node" select="$node"/> + </xsl:call-template> + </xsl:param> + ... +</xsl:template> + +Description + +This template searches in a table for the value that most-closely +(in the typical best-match sense of XSLT) matches the current (element) +node location. + + + + + +string.upper +Converts a string to all uppercase letters + + +<xsl:template name="string.upper"> +<xsl:param name="string" select="''"/> + ... +</xsl:template> + +Description + +Given a string, this template does a language-aware conversion +of that string to all uppercase letters, based on the values of the +lowercase.alpha and +uppercase.alpha gentext keys for the current +locale. It affects only those characters found in the values of +lowercase.alpha and +uppercase.alpha. All other characters are left +unchanged. + +Parameters + + +string + + +The string to convert to uppercase. + + + + + + + + + +string.lower +Converts a string to all lowercase letters + + +<xsl:template name="string.lower"> +<xsl:param name="string" select="''"/> + ... +</xsl:template> + +Description + +Given a string, this template does a language-aware conversion +of that string to all lowercase letters, based on the values of the +uppercase.alpha and +lowercase.alpha gentext keys for the current +locale. It affects only those characters found in the values of +uppercase.alpha and +lowercase.alpha. All other characters are left +unchanged. + +Parameters + + +string + + +The string to convert to lowercase. + + + + + + + + + +select.choice.separator +Returns localized choice separator + + +<xsl:template name="select.choice.separator"/> + +Description + +This template enables auto-generation of an appropriate + localized "choice" separator (for example, "and" or "or") before + the final item in an inline list (though it could also be useful + for generating choice separators for non-inline lists). + + +It currently works by evaluating a processing instruction + (PI) of the form <?dbchoice choice="foo"?> : + + + + if the value of the choice + pseudo-attribute is "and" or "or", returns a localized "and" + or "or" + + + otherwise returns the literal value of the + choice pseudo-attribute + + + + The latter is provided only as a temporary workaround because the + locale files do not currently have translations for the word + or. So if you want to generate a a + logical "or" separator in French (for example), you currently need + to do this: + <?dbchoice choice="ou"?> + + + + +The dbchoice processing instruction is + an unfortunate hack; support for it may disappear in the future + (particularly if and when a more appropriate means for marking + up "choice" lists becomes available in DocBook). + + + + + + +evaluate.info.profile +Evaluates an info profile + + +<xsl:template name="evaluate.info.profile"> +<xsl:param name="profile"/> +<xsl:param name="info"/> + ... +</xsl:template> + +Description + +This template evaluates an "info profile" matching the XPath + expression given by the profile + parameter. It relies on the XSLT evaluate() + extension function. + + + +The value of the profile parameter + can include the literal string $info. If found + in the value of the profile parameter, the + literal string $info string is replaced with + the value of the info parameter, which + should be a set of *info nodes; the + expression is then evaluated using the XSLT + evaluate() extension function. + + Parameters + + + + profile + + +A string representing an XPath expression + + + + + info + + +A set of *info nodes + + + + + + Returns + +Returns a node (the result of evaluating the + profile parameter) + + + + + + Common » Refentry Metadata Template Reference + + $Id: refentry.xsl 7867 2008-03-07 09:54:25Z xmldoc $ + + + + + Introduction + +This is technical reference documentation for the “refentry + metadata” templates in the DocBook XSL Stylesheets. + + +This is not intended to be user documentation. It is provided + for developers writing customization layers for the stylesheets. + + + +Currently, only the manpages stylesheets make use of these + templates. They are, however, potentially useful elsewhere. + + + + + + +get.refentry.metadata +Gathers metadata from a refentry and its ancestors + + +<xsl:template name="get.refentry.metadata"> +<xsl:param name="refname"/> +<xsl:param name="info"/> +<xsl:param name="prefs"/> + ... +</xsl:template> + +Description + +Reference documentation for particular commands, functions, + etc., is sometimes viewed in isolation from its greater "context". For + example, users view Unix man pages as, well, individual pages, not as + part of a "book" of some kind. Therefore, it is sometimes necessary to + embed "context" information in output for each refentry. + + + +However, one problem is that different users mark up that + context information in different ways. Often (usually), the + context information is not actually part of the content of the + refentry itself, but instead part of the content of a + parent or ancestor element to the refentry. And + even then, DocBook provides a variety of elements that users might + potentially use to mark up the same kind of information. One user + might use the productnumber element to mark up version + information about a particular product, while another might use + the releaseinfo element. + + + +Taking all that in mind, the + get.refentry.metadata template tries to gather + metadata from a refentry element and its ancestor + elements in an intelligent and user-configurable way. The basic + mechanism used in the XPath expressions throughout this stylesheet + is to select the relevant metadata from the *info element that is + closest to the actual refentry – either on the + refentry itself, or on its nearest ancestor. + + + + +The get.refentry.metadata + template is actually just sort of a "driver" template; it + calls other templates that do the actual data collection, + then returns the data as a set. + + + + Parameters + + + + refname + + +The first refname in the refentry + + + + + info + + +A set of info nodes (from a refentry + element and its ancestors) + + + + + prefs + + +A node containing user preferences (from global + stylesheet parameters) + + + + + + Returns + +Returns a node set with the following elements. The + descriptions are verbatim from the man(7) man + page. + + + + title + + +the title of the man page (e.g., MAN) + + + + + section + + +the section number the man page should be placed in (e.g., + 7) + + + + + date + + +the date of the last revision + + + + + source + + +the source of the command + + + + + manual + + +the title of the manual (e.g., Linux + Programmer's Manual) + + + + + + + + + + + +get.refentry.title +Gets title metadata for a refentry + + +<xsl:template name="get.refentry.title"> +<xsl:param name="refname"/> + ... +</xsl:template> + +Description + +The man(7) man page describes this as "the + title of the man page (e.g., MAN). This differs + from refname in that, if the refentry has a + refentrytitle, we use that as the title; + otherwise, we just use first refname in the first + refnamediv in the source. + + Parameters + + + + refname + + +The first refname in the refentry + + + + + + Returns + +Returns a title node. + + + + +get.refentry.section +Gets section metadata for a refentry + + +<xsl:template name="get.refentry.section"> +<xsl:param name="refname"/> +<xsl:param name="quiet" select="0"/> + ... +</xsl:template> + +Description + +The man(7) man page describes this as "the + section number the man page should be placed in (e.g., + 7)". If we do not find a manvolnum + specified in the source, and we find that the refentry is + for a function, we use the section number 3 + ["Library calls (functions within program libraries)"]; otherwise, we + default to using 1 ["Executable programs or shell + commands"]. + + Parameters + + + + refname + + +The first refname in the refentry + + + + + quiet + + +If non-zero, no "missing" message is emitted + + + + + + Returns + +Returns a string representing a section number. + + + + +get.refentry.date +Gets date metadata for a refentry + + +<xsl:template name="get.refentry.date"> +<xsl:param name="refname"/> +<xsl:param name="info"/> +<xsl:param name="prefs"/> + ... +</xsl:template> + +Description + +The man(7) man page describes this as "the + date of the last revision". If we cannot find a date in the source, we + generate one. + + Parameters + + + + refname + + +The first refname in the refentry + + + + + info + + +A set of info nodes (from a refentry + element and its ancestors) + + + + + prefs + + +A node containing users preferences (from global stylesheet parameters) + + + + + + Returns + +Returns a date node. + + + + + +get.refentry.source +Gets source metadata for a refentry + + +<xsl:template name="get.refentry.source"> +<xsl:param name="refname"/> +<xsl:param name="info"/> +<xsl:param name="prefs"/> + ... +</xsl:template> + +Description + +The man(7) man page describes this as "the + source of the command", and provides the following examples: + + + + +For binaries, use something like: GNU, NET-2, SLS + Distribution, MCC Distribution. + + + + +For system calls, use the version of the kernel that you are + currently looking at: Linux 0.99.11. + + + + +For library calls, use the source of the function: GNU, BSD + 4.3, Linux DLL 4.4.1. + + + + + + + + +The solbook(5) man page describes + something very much like what man(7) calls + "source", except that solbook(5) names it + "software" and describes it like this: +
    + +This is the name of the software product that the topic + discussed on the reference page belongs to. For example UNIX + commands are part of the SunOS x.x + release. + +
    +
    + + + +In practice, there are many pages that simply have a version + number in the "source" field. So, it looks like what we have is a + two-part field, + Name Version, + where: + + + + Name + + +product name (e.g., BSD) or org. name (e.g., GNU) + + + + + Version + + +version name + + + + + + Each part is optional. If the Name is a + product name, then the Version is probably + the version of the product. Or there may be no + Name, in which case, if there is a + Version, it is probably the version of the + item itself, not the product it is part of. Or, if the + Name is an organization name, then there + probably will be no Version. + + +
    Parameters + + + + refname + + +The first refname in the refentry + + + + + info + + +A set of info nodes (from a refentry + element and its ancestors) + + + + + prefs + + +A node containing users preferences (from global + stylesheet parameters) + + + + + + Returns + +Returns a source node. + +
    + + + +get.refentry.source.name +Gets source-name metadata for a refentry + + +<xsl:template name="get.refentry.source.name"> +<xsl:param name="refname"/> +<xsl:param name="info"/> +<xsl:param name="prefs"/> + ... +</xsl:template> + +Description + +A "source name" is one part of a (potentially) two-part + Name Version + source field. For more details, see the documentation for the + get.refentry.source template. + + Parameters + + + + refname + + +The first refname in the refentry + + + + + info + + +A set of info nodes (from a refentry + element and its ancestors) + + + + + prefs + + +A node containing users preferences (from global + stylesheet parameters) + + + + + + Returns + +Depending on what output method is used for the + current stylesheet, either returns a text node or possibly an element + node, containing "source name" data. + + + + + +get.refentry.version +Gets version metadata for a refentry + + +<xsl:template name="get.refentry.version"> +<xsl:param name="refname"/> +<xsl:param name="info"/> +<xsl:param name="prefs"/> + ... +</xsl:template> + +Description + +A "version" is one part of a (potentially) two-part + Name Version + source field. For more details, see the documentation for the + get.refentry.source template. + + Parameters + + + + refname + + +The first refname in the refentry + + + + + info + + +A set of info nodes (from a refentry + element and its ancestors) + + + + + prefs + + +A node containing users preferences (from global + stylesheet parameters) + + + + + + Returns + +Depending on what output method is used for the + current stylesheet, either returns a text node or possibly an element + node, containing "version" data. + + + + + +get.refentry.manual +Gets source metadata for a refentry + + +<xsl:template name="get.refentry.manual"> +<xsl:param name="refname"/> +<xsl:param name="info"/> +<xsl:param name="prefs"/> + ... +</xsl:template> + +Description + +The man(7) man page describes this as "the + title of the manual (e.g., Linux Programmer's + Manual)". Here are some examples from existing man pages: + + + + +dpkg utilities + (dpkg-name) + + + + +User Contributed Perl Documentation + (GET) + + + + +GNU Development Tools + (ld) + + + + +Emperor Norton Utilities + (ddate) + + + + +Debian GNU/Linux manual + (faked) + + + + +GIMP Manual Pages + (gimp) + + + + +KDOC Documentation System + (qt2kdoc) + + + + + + + + +The solbook(5) man page describes + something very much like what man(7) calls + "manual", except that solbook(5) names it + "sectdesc" and describes it like this: +
    + +This is the section title of the reference page; for + example User Commands. + +
    +
    + + +
    Parameters + + + + refname + + +The first refname in the refentry + + + + + info + + +A set of info nodes (from a refentry + element and its ancestors) + + + + + prefs + + +A node containing users preferences (from global + stylesheet parameters) + + + + + + Returns + +Returns a manual node. + +
    + + + +get.refentry.metadata.prefs +Gets user preferences for refentry metadata gathering + + +<xsl:template name="get.refentry.metadata.prefs"/> + +Description + +The DocBook XSL stylesheets include several user-configurable + global stylesheet parameters for controlling refentry + metadata gathering. Those parameters are not read directly by the + other refentry metadata-gathering + templates. Instead, they are read only by the + get.refentry.metadata.prefs template, + which assembles them into a structure that is then passed to + the other refentry metadata-gathering + templates. + + + +So the, get.refentry.metadata.prefs + template is the only interface to collecting stylesheet parameters for + controlling refentry metadata gathering. + + Parameters + +There are no local parameters for this template; however, it + does rely on a number of global parameters. + + Returns + +Returns a manual node. + + + + + +set.refentry.metadata +Sets content of a refentry metadata item + + +<xsl:template name="set.refentry.metadata"> +<xsl:param name="refname"/> +<xsl:param name="info"/> +<xsl:param name="contents"/> +<xsl:param name="context"/> +<xsl:param name="preferred"/> + ... +</xsl:template> + +Description + +The set.refentry.metadata template is + called each time a suitable source element is found for a certain + metadata field. + + Parameters + + + + refname + + +The first refname in the refentry + + + + + info + + +A single *info node that contains the selected source element. + + + + + contents + + +A node containing the selected source element. + + + + + context + + +A string describing the metadata context in which the + set.refentry.metadata template was + called: either "date", "source", "version", or "manual". + + + + + + Returns + +Returns formatted contents of a selected source element. + +
    + + + Common » Utility Template Reference + + $Id: utility.xsl 7101 2007-07-20 15:32:12Z xmldoc $ + + + + + Introduction + +This is technical reference documentation for the + miscellaneous utility templates in the DocBook XSL + Stylesheets. + + + +These templates are defined in a separate file from the set + of “common” templates because some of the common templates + reference DocBook XSL stylesheet parameters, requiring the + entire set of parameters to be imported/included in any + stylesheet that imports/includes the common templates. + + +The utility templates don’t import or include any DocBook + XSL stylesheet parameters, so the utility templates can be used + without importing the whole set of parameters. + + + +This is not intended to be user documentation. It is + provided for developers writing customization layers for the + stylesheets. + + + + + +log.message +Logs/emits formatted notes and warnings + + +<xsl:template name="log.message"> +<xsl:param name="level"/> +<xsl:param name="source"/> +<xsl:param name="context-desc"/> +<xsl:param name="context-desc-field-length">12</xsl:param> +<xsl:param name="context-desc-padded"> + <xsl:if test="not($context-desc = '')"> + <xsl:call-template name="pad-string"> + <xsl:with-param name="leftRight">right</xsl:with-param> + <xsl:with-param name="padVar" select="substring($context-desc, 1, $context-desc-field-length)"/> + <xsl:with-param name="length" select="$context-desc-field-length"/> + </xsl:call-template> + </xsl:if> + </xsl:param> +<xsl:param name="message"/> +<xsl:param name="message-field-length" select="45"/> +<xsl:param name="message-padded"> + <xsl:variable name="spaces-for-blank-level"> + <!-- * if the level field is blank, we'll need to pad out --> + <!-- * the message field with spaces to compensate --> + <xsl:choose> + <xsl:when test="$level = ''"> + <xsl:value-of select="4 + 2"/> + <!-- * 4 = hard-coded length of comment text ("Note" or "Warn") --> + <!-- * + 2 = length of colon-plus-space separator ": " --> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="0"/> + </xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:variable name="spaces-for-blank-context-desc"> + <!-- * if the context-description field is blank, we'll need --> + <!-- * to pad out the message field with spaces to compensate --> + <xsl:choose> + <xsl:when test="$context-desc = ''"> + <xsl:value-of select="$context-desc-field-length + 2"/> + <!-- * + 2 = length of colon-plus-space separator ": " --> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="0"/> + </xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:variable name="extra-spaces" select="$spaces-for-blank-level + $spaces-for-blank-context-desc"/> + <xsl:call-template name="pad-string"> + <xsl:with-param name="leftRight">right</xsl:with-param> + <xsl:with-param name="padVar" select="substring($message, 1, ($message-field-length + $extra-spaces))"/> + <xsl:with-param name="length" select="$message-field-length + $extra-spaces"/> + </xsl:call-template> + </xsl:param> + ... +</xsl:template> + +Description + +The log.message template is a utility + template for logging/emitting formatted messages – that is, + notes and warnings, along with a given log “level” and an + identifier for the “source” that the message relates to. + + Parameters + + + level + + +Text to log/emit in the message-level field to + indicate the message level + (Note or + Warning) + + + + source + + +Text to log/emit in the source field to identify the + “source” to which the notification/warning relates. + This can be any arbitrary string, but because the + message lacks line and column numbers to identify the + exact part of the source document to which it + relates, the intention is that the value you pass + into the source parameter should + give the user some way to identify the portion of + their source document on which to take potentially + take action in response to the log message (for + example, to edit, change, or add content). + + +So the source value should be, + for example, an ID, book/chapter/article title, title + of some formal object, or even a string giving an + XPath expression. + + + + context-desc + + +Text to log/emit in the context-description field to + describe the context for the message. + + + + context-desc-field-length + + +Specifies length of the context-description field + (in characters); default is 12 + + +If the text specified by the + context-desc parameter is longer + than the number of characters specified in + context-desc-field-length, it is + truncated to context-desc-field-length + (12 characters by default). + + +If the specified text is shorter than + context-desc-field-length, + it is right-padded out to + context-desc-field-length (12 by + default). + + +If no value has been specified for the + context-desc parameter, the field is + left empty and the text of the log message begins with + the value of the message + parameter. + + + + message + + +Text to log/emit in the actual message field + + + + message-field-length + + +Specifies length of the message + field (in characters); default is 45 + + + + + + Returns + +Outputs a message (generally, to standard error). + + + + +get.doc.title +Gets a title from the current document + + +<xsl:template name="get.doc.title"/> + +Description + +The get.doc.title template is a + utility template for returning the first title found in the + current document. + + Returns + +Returns a string containing some identifying title for the + current document . + + + + +pad-string +Right-pads or left-pads a string out to a certain length + + +<xsl:template name="pad-string"> +<xsl:param name="padChar" select="' '"/> +<xsl:param name="leftRight">left</xsl:param> +<xsl:param name="padVar"/> +<xsl:param name="length"/> + ... +</xsl:template> + +Description + +This function takes string padVar and + pads it out in the direction rightLeft to + the string-length length, using string + padChar (a space character by default) as + the padding string (note that padChar can + be a string; it is not limited to just being a single + character). + + + +This function began as a copy of Nate Austin's + prepend-pad function in the Padding + Content section of Dave Pawson's XSLT + FAQ. + + + Returns + +Returns a (padded) string. + + + + + Common » Character-Map Template Reference + + $Id: charmap.xsl 7266 2007-08-22 11:58:42Z xmldoc $ + + + + + Introduction + +This is technical reference documentation for the + character-map templates in the DocBook XSL Stylesheets. + + + +These templates are defined in a separate file from the set + of “common” templates because some of the common templates + reference DocBook XSL stylesheet parameters, requiring the + entire set of parameters to be imported/included in any + stylesheet that imports/includes the common templates. + + +The character-map templates don’t import or include + any DocBook XSL stylesheet parameters, so the + character-map templates can be used without importing the + whole set of parameters. + + + +This is not intended to be user documentation. It is + provided for developers writing customization layers for the + stylesheets. + + + + + +apply-character-map +Applies an XSLT character map + + +<xsl:template name="apply-character-map"> +<xsl:param name="content"/> +<xsl:param name="map.contents"/> + ... +</xsl:template> + +Description + +This template applies an XSLT character map; that is, it causes certain + individual characters to be substituted with strings of one + or more characters. It is useful mainly for replacing + multiple “special” characters or symbols in the same target + content. It uses the value of + map.contents to do substitution on + content, and then returns the + modified contents. + + + +This template is a very slightly modified version of + Jeni Tennison’s replace_strings + template in the multiple string replacements section of Dave Pawson’s + XSLT FAQ. + + +The apply-string-subst-map + template is essentially the same template as the + apply-character-map template; the + only difference is that in the map that + apply-string-subst-map expects, oldstring and newstring attributes are used + instead of character and string attributes. + + + Parameters + + + content + + +The content on which to perform the character-map + substitution. + + + + map.contents + + +A node set of elements, with each element having + the following attributes: + + + + character, a + character to be replaced + + + string, a + string with which to replace character + + + + + + + + + + + + + +read-character-map +Reads in all or part of an XSLT character map + + +<xsl:template name="read-character-map"> +<xsl:param name="use.subset"/> +<xsl:param name="subset.profile"/> +<xsl:param name="uri"/> + ... +</xsl:template> + +Description + +The XSLT 2.0 specification describes character maps and explains how they may be used + to allow a specific character appearing in a text or + attribute node in a final result tree to be substituted by + a specified string of characters during serialization. The + read-character-map template provides a + means for reading and using character maps with XSLT + 1.0-based tools. + + +This template reads the character-map contents from + uri (in full or in part, depending on + the value of the use.subset + parameter), then passes those contents to the + apply-character-map template, along with + content, the data on which to perform + the character substitution. + + +Using the character map “in part” means that it uses only + those output-character elements that match the + XPath expression given in the value of the + subset.profile parameter. The current + implementation of that capability here relies on the + evaluate extension XSLT function. + + Parameters + + + use.subset + + +Specifies whether to use a subset of the character + map instead of the whole map; boolean + 0 or 1 + + + + subset.profile + + +XPath expression that specifies what subset of the + character map to use + + + + uri + + +URI for a character map + + + + + + + +
    + + + + + Formatting Object Table Reference + + $Id: table.xsl 8814 2010-08-09 21:19:53Z bobstayton $ + + + + Introduction + +This is technical reference documentation for the FO + table-processing templates in the DocBook XSL Stylesheets. + + +This is not intended to be user documentation. It is + provided for developers writing customization layers for the + stylesheets. + + + + + +calc.column.width +Calculate an XSL FO table column width specification from a +CALS table column width specification. + + +<xsl:template name="calc.column.width"> +<xsl:param name="colwidth">1*</xsl:param> + ... +</xsl:template> + +Description + +CALS expresses table column widths in the following basic +forms: + + + + + + +99.99units, a fixed length specifier. + + + + +99.99, a fixed length specifier without any units. + + + + +99.99*, a relative length specifier. + + + + +99.99*+99.99units, a combination of both. + + + + + + +The CALS units are points (pt), picas (pi), centimeters (cm), +millimeters (mm), and inches (in). These are the same units as XSL, +except that XSL abbreviates picas "pc" instead of "pi". If a length +specifier has no units, the CALS default unit (pt) is assumed. + + + +Relative length specifiers are represented in XSL with the +proportional-column-width() function. + + + +Here are some examples: + + + + + + +"36pt" becomes "36pt" + + + + +"3pi" becomes "3pc" + + + + +"36" becomes "36pt" + + + + +"3*" becomes "proportional-column-width(3)" + + + + +"3*+2pi" becomes "proportional-column-width(3)+2pc" + + + + +"1*+2" becomes "proportional-column-width(1)+2pt" + + + + +Parameters + + +colwidth + + +The CALS column width specification. + + + + + +Returns + +The XSL column width specification. + + + + + + + + + + Titlepage Template Stylesheet Reference + + $Id: titlepage.xsl 7058 2007-07-17 13:59:29Z xmldoc $ + + + + Introduction + +This is technical reference documentation for the + “titlepage” templates in the DocBook XSL Stylesheets. + + +This is not intended to be user documentation. It is + provided for developers writing customization layers for the + stylesheets. + + + + + +t:templates +Construct a stylesheet for the templates provided + + +<xsl:template match="t:templates"/> + +Description + +The t:templates element is the root of a +set of templates. This template creates an appropriate +xsl:stylesheet for the templates. + + + +If the t:templates element has a +base-stylesheet attribute, an +xsl:import statement is constructed for it. + + + + + +xsl:* +Copy xsl: elements straight through + + +<xsl:template match="xsl:*"/> + +Description + +This template simply copies the xsl: elements +straight through into the result tree. + + + + + +t:titlepage +Create the templates necessary to construct a title page + + +<xsl:template match="t:titlepage"/> + +Description + +The t:titlepage element creates a set of +templates for processing the titlepage for an element. The +root of this template set is the template named +wrapper.titlepage. That is the +template that should be called to generate the title page. + + + + +The t:titlepage element has three attributes: + + + +element + +The name of the source document element for which +these templates apply. In other words, to make a title page for the +article element, set the +element attribute to +article. This attribute is required. + + + +wrapper + +The entire title page can be wrapped with an element. +This attribute identifies that element. + + + +class + +If the class attribute +is set, a class attribute with this +value will be added to the wrapper element that surrounds the entire +title page. + + + + + + + + + +Any other attributes are copied through literally to the +wrapper element. + + + +The content of a t:titlepage is one or +more t:titlepage-content, +t:titlepage-separator, and +t:titlepage-before elements. + + + +Each of these elements may be provided for the recto +and verso sides of the title page. + + + + + + +@* (in copy.literal.atts mode) +Copy t:titlepage attributes + + +<xsl:template match="@*" mode="copy.literal.atts"/> + +Description + +This template copies all of the other attributes +from a t:titlepage element onto the specified +wrapper. + + + + + +t:titlepage-content +Create templates for the content of one side of a title page + + +<xsl:template match="t:titlepage-content"/> + +Description + +The title page content, that is, the elements from the source +document that are rendered on the title page, can be controlled independently +for the recto and verso sides of the title page. + + + +The t:titlepage-content element has two attributes: + + + +side + +Identifies the side of the page to which this title +page content applies. The +side attribute is required and +must be set to either +recto or +verso. In addition, you must specify +exactly one t:titlepage-content for each side +within each t:titlepage. + + + +order + +Indicates how the order of the elements presented on +the title page is determined. If the +order is +document, the elements are presented +in document order. Otherwise (if the +order is +stylesheet), the elements are presented +in the order that they appear in the template (and consequently in +the stylesheet). + + + + + + + + + +The content of a t:titlepage-content element is +a list of element names. These names should be unqualified. They identify +the elements in the source document that should appear on the title page. + + + + +Each element may have a single attribute: +predicate. The value of this +attribute is used as a predicate for the expression that matches +the element on which it occurs. + + + +In other words, to put only the first three authors on the +recto-side of a title +page, you could specify: + + + <t:titlepage-contents side="recto"> + <!-- other titlepage elements --> + <author predicate="[count(previous-sibling::author)<2]"/> + <!-- other titlepage elements --> + </t:titlepage-contents> + + + + + +Usually, the elements so named are empty. But it is possible to +make one level of selection within them. Suppose that you want to +process authorgroup elements on the title page, but +you want to select only proper authors, editors, or corporate authors, +not collaborators or other credited authors. + + + +In that case, you can put a t:or group inside +the authorgroup element: + + + <t:titlepage-contents side="recto"> + <!-- other titlepage elements --> + <authorgroup> + <t:or> + <author/> + <editor/> + <corpauthor/> + </t:or> + </authorgroup> + <!-- other titlepage elements --> + </t:titlepage-contents> + + + + + +This will have the effect of automatically generating a template +for processing authorgroups in the title page mode, +selecting only the specified children. If you need more complex processing, +you'll have to construct the templates by hand. + + + + + + +t:titlepage-separator +Create templates for the separator + + +<xsl:template match="t:titlepage-separator"/> + +Description + +The title page is separated from the content which follows it by +the markup specified in the t:titlepage-separator +element. + + + + + +t:titlepage-before +Create templates for what precedes a title page + + +<xsl:template match="t:titlepage-before"/> + +Description + +Each side of the title page is preceded by the markup specified +in the t:titlepage-before element for that +side. + + + + + +* (in copy mode) +Copy elements + + +<xsl:template match="*" mode="copy"/> + +Description + +This template simply copies the elements that it applies to +straight through into the result tree. + + + + + +@* (in copy mode) +Copy attributes + + +<xsl:template match="@*" mode="copy"/> + +Description + +This template simply copies the attributes that it applies to +straight through into the result tree. + + + + + +* (in document.order mode) +Create rules to process titlepage elements in document order + + +<xsl:template match="*" mode="document.order"/> + +Description + +This template is called to process all of the children of the +t:titlepage-content element. It creates the hairy +select expression necessary to process each of those elements in +the title page. + + + +Note that this template automatically handles the case where +some DocBook elements, like title and subtitle, can occur both inside +the *info elements where metadata is usually stored and outside. + + + + +It also automatically calculates the name for the *info container +and handles elements that have historically had containers with different +names. + + + + + + +* (in document.order mode) +Create rules to process titlepage elements in stylesheet order + + +<xsl:template match="*" mode="document.order"/> + +Description + +This template is called to process all of the children of the +t:titlepage-content element. It creates the set +of xsl:apply-templates elements necessary +process each of those elements in the title page. + + + +Note that this template automatically handles the case where +some DocBook elements, like title and subtitle, can occur both inside +the *info elements where metadata is usually stored and outside. + + + + +It also automatically calculates the name for the *info container +and handles elements that have historically had containers with different +names. + + + + + + +* (in titlepage.specialrules mode) +Create templates for special rules + + +<xsl:template match="*" mode="titlepage.specialrules"/> + +Description + +This template is called to process all of the descendants of the +t:titlepage-content element that require special +processing. At present, that's just t:or elements. + + + + + + +* (in titlepage.subrules mode) +Create template for individual special rules + + +<xsl:template match="*" mode="titlepage.subrules"/> + +Description + +This template is called to process the children of special +template elements. + + + + + + +t:or +Process the t:or special rule + + +<xsl:template match="t:or"/><xsl:template match="t:or" mode="titlepage.subrules"/> + +Description + +This template processes t:or. + + + + + +t:or (in titlepage.subrules mode) +Process the t:or special rule in +titlepage.subrules mode + + +<xsl:template match="t:or" mode="titlepage.subrules"/> + +Description + +The titlepage.subrules mode doesn't apply to t:or, so just +reprocess this node in the normal mode. + + + + + +element-or-list +Construct the "or-list" used in the select attribute for +special rules. + + +<xsl:template name="element-or-list"> +<xsl:param name="elements" select="*"/> +<xsl:param name="element.count" select="count($elements)"/> +<xsl:param name="count" select="1"/> +<xsl:param name="orlist"/> + ... +</xsl:template> + +Description + +Walk through each of the children of t:or, producing the +text of the select attribute. + + + + +
    +
    \ No newline at end of file diff --git a/docbook-xsl-1.76.1/docsrc/warranty.xml b/docbook-xsl-1.76.1/docsrc/warranty.xml new file mode 100644 index 0000000..3c70d32 --- /dev/null +++ b/docbook-xsl-1.76.1/docsrc/warranty.xml @@ -0,0 +1,11 @@ +Warranty +THE SOFTWARE IS PROVIDED AS IS, +WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT +LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR +PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL NORMAN WALSH OR ANY +OTHER CONTRIBUTOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT +OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + diff --git a/docbook-xsl-1.76.1/eclipse/eclipse.xsl b/docbook-xsl-1.76.1/eclipse/eclipse.xsl new file mode 100644 index 0000000..07ddcea --- /dev/null +++ b/docbook-xsl-1.76.1/eclipse/eclipse.xsl @@ -0,0 +1,306 @@ + + + + + + + + + + + + + + + + + + + Note + + + namesp. cut + + + stripped namespace before processing + + + + + + + Note + + + namesp. cut + + + processing stripped document + + + + + + + + + + + ID ' + + ' not found in document. + + + + + + + + Formatting from + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ( + + + ) + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/eclipse/eclipse3.xsl b/docbook-xsl-1.76.1/eclipse/eclipse3.xsl new file mode 100644 index 0000000..c0d3a4e --- /dev/null +++ b/docbook-xsl-1.76.1/eclipse/eclipse3.xsl @@ -0,0 +1,111 @@ + + + + + + + + 1 + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Manifest-Version: 1.0 + + Bundle-Version: 1.0 + + Bundle-Name: + + Bundle-SymbolicName: + + Bundle-Vendor: + + + + + \ No newline at end of file diff --git a/docbook-xsl-1.76.1/eclipse/profile-eclipse.xsl b/docbook-xsl-1.76.1/eclipse/profile-eclipse.xsl new file mode 100644 index 0000000..5040c9b --- /dev/null +++ b/docbook-xsl-1.76.1/eclipse/profile-eclipse.xsl @@ -0,0 +1,269 @@ + + + + + + + + + +Note: namesp. cut : stripped namespace before processingNote: namesp. cut : processing stripped document + + + + + + + + + + + + + + + + ID ' + + ' not found in document. + + + + + + + + Formatting from + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ( + + + ) + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/epub/README b/docbook-xsl-1.76.1/epub/README new file mode 100644 index 0000000..5e2587a --- /dev/null +++ b/docbook-xsl-1.76.1/epub/README @@ -0,0 +1,88 @@ +---------------------------------------------------------------------- + README file for the DocBook XSL Stylesheets +---------------------------------------------------------------------- + +These are XSL stylesheets for transforming DocBook XML document +instances into .epub format. + +.epub is an open standard of the The International Digital Publishing Forum (IDPF), +a the trade and standards association for the digital publishing industry. + +An alpha-quality reference implementation (dbtoepub) for a DocBook to .epub +converter (written in Ruby) is available under bin/. + +From http://idpf.org + What is EPUB, .epub, OPS/OCF & OEB? + + ".epub" is the file extension of an XML format for reflowable digital + books and publications. ".epub" is composed of three open standards, + the Open Publication Structure (OPS), Open Packaging Format (OPF) and + Open Container Format (OCF), produced by the IDPF. "EPUB" allows + publishers to produce and send a single digital publication file + through distribution and offers consumers interoperability between + software/hardware for unencrypted reflowable digital books and other + publications. The Open eBook Publication Structure or "OEB", + originally produced in 1999, is the precursor to OPS. + +---------------------------------------------------------------------- +.epub Constraints +---------------------------------------------------------------------- + +.epub does not support all of the image formats that DocBook supports. +When an image is available in an accepted format, it will be used. The +accepted @formats are: 'GIF','GIF87a','GIF89a','JPEG','JPG','PNG','SVG' +A mime-type for the image will be guessed from the file extension, +which may not work if your file extensions are non-standard. + +Non-supported elements: + * + * , , , with text/XML + @filerefs + * + * in lists (generic XHTML rendering inability) + * (just make your programlistings + siblings, rather than descendents of paras) + +---------------------------------------------------------------------- +dbtoepub Reference Implementation +---------------------------------------------------------------------- + +An alpha-quality DocBook to .epub conversion program, dbtoepub, is provided +in bin/dbtoepub. + +This tool requires: + - 'xsltproc' in your PATH + - 'zip' in your PATH + - Ruby 1.8.4+ + +Windows compatibility has not been extensively tested; bug reports encouraged. +[See http://www.zlatkovic.com/libxml.en.html and http://unxutils.sourceforge.net/] + +$ dbtoepub --help + Usage: dbtoepub [OPTIONS] [DocBook Files] + + dbtoepub converts DocBook and
    s into to .epub files. + + .epub is defined by the IDPF at www.idpf.org and is made up of 3 standards: + - Open Publication Structure (OPS) + - Open Packaging Format (OPF) + - Open Container Format (OCF) + + Specific options: + -d, --debug Show debugging output. + -h, --help Display usage info + -v, --verbose Make output verbose + + +---------------------------------------------------------------------- +Validation +---------------------------------------------------------------------- + +The epubcheck project provides limited validation for .epub documents. +See http://code.google.com/p/epubcheck/ for details. + +---------------------------------------------------------------------- +Copyright information +---------------------------------------------------------------------- +See the accompanying file named COPYING. + diff --git a/docbook-xsl-1.76.1/epub/bin/dbtoepub b/docbook-xsl-1.76.1/epub/bin/dbtoepub new file mode 100755 index 0000000..9976f81 --- /dev/null +++ b/docbook-xsl-1.76.1/epub/bin/dbtoepub @@ -0,0 +1,76 @@ +#!/usr/bin/env ruby +# This program converts DocBook documents into .epub files. +# +# Usage: dbtoepub [OPTIONS] [DocBook Files] +# +# .epub is defined by the IDPF at www.idpf.org and is made up of 3 standards: +# - Open Publication Structure (OPS) +# - Open Packaging Format (OPF) +# - Open Container Format (OCF) +# +# Specific options: +# -c, --css [FILE] Use FILE for CSS on generated XHTML. +# -d, --debug Show debugging output. +# -f, --font [OTF FILE] Embed OTF FILE in .epub. +# -h, --help Display usage info. +# -s, --stylesheet [XSL FILE] Use XSL FILE as a customization +# layer (imports epub/docbook.xsl). +# -v, --verbose Make output verbose. + +lib = File.expand_path(File.join(File.dirname(__FILE__), 'lib')) +$LOAD_PATH.unshift(lib) if File.exist?(lib) + +require 'fileutils' +require 'optparse' +require 'tmpdir' + +require 'docbook' + +verbose = false +debug = false +css_file = nil +otf_files = [] +customization_layer = nil +output_file = nil + +#$DEBUG=true + +# Set up the OptionParser +opts = OptionParser.new +opts.banner = "Usage: #{File.basename($0)} [OPTIONS] [DocBook Files] + +#{File.basename($0)} converts DocBook and
    s into to .epub files. + +.epub is defined by the IDPF at www.idpf.org and is made up of 3 standards: +- Open Publication Structure (OPS) +- Open Packaging Format (OPF) +- Open Container Format (OCF) + +Specific options:" +opts.on("-c", "--css [FILE]", "Use FILE for CSS on generated XHTML.") {|f| css_file = f} +opts.on("-d", "--debug", "Show debugging output.") {debug = true; verbose = true} +opts.on("-f", "--font [OTF FILE]", "Embed OTF FILE in .epub.") {|f| otf_files << f} +opts.on("-h", "--help", "Display usage info.") {puts opts.to_s; exit 0} +opts.on("-o", "--output [OUTPUT FILE]", "Output ePub file as OUTPUT FILE.") {|f| output_file = f} +opts.on("-s", "--stylesheet [XSL FILE]", "Use XSL FILE as a customization layer (imports epub/docbook.xsl).") {|f| customization_layer = f} +opts.on("-v", "--verbose", "Make output verbose.") {verbose = true} + +db_files = opts.parse(ARGV) +if db_files.size == 0 + puts opts.to_s + exit 0 +end + +db_files.each {|docbook_file| + dir = File.expand_path(File.join(Dir.tmpdir, ".epubtmp#{Time.now.to_f.to_s}")) + FileUtils.mkdir_p(dir) + e = DocBook::Epub.new(docbook_file, dir, css_file, customization_layer, otf_files) + + if output_file + epub_file = output_file + else + epub_file = File.basename(docbook_file, ".xml") + ".epub" + end + puts "Rendering DocBook file #{docbook_file} to #{epub_file}" if verbose + e.render_to_file(epub_file) +} diff --git a/docbook-xsl-1.76.1/epub/bin/lib/docbook.rb b/docbook-xsl-1.76.1/epub/bin/lib/docbook.rb new file mode 100755 index 0000000..14110d6 --- /dev/null +++ b/docbook-xsl-1.76.1/epub/bin/lib/docbook.rb @@ -0,0 +1,227 @@ +require 'fileutils' +require 'rexml/parsers/pullparser' + +module DocBook + + class Epub + CHECKER = "epubcheck" + STYLESHEET = File.expand_path(File.join(File.dirname(__FILE__), '..', '..', "docbook.xsl")) + CALLOUT_PATH = File.join('images', 'callouts') + CALLOUT_FULL_PATH = File.expand_path(File.join(File.dirname(__FILE__), '..', '..', '..', CALLOUT_PATH)) + CALLOUT_LIMIT = 15 + CALLOUT_EXT = ".png" + XSLT_PROCESSOR = "xsltproc" + OUTPUT_DIR = ".epubtmp#{Time.now.to_f.to_s}" + MIMETYPE = "application/epub+zip" + META_DIR = "META-INF" + OEBPS_DIR = "OEBPS" + ZIPPER = "zip" + + attr_reader :output_dir + + def initialize(docbook_file, output_dir=OUTPUT_DIR, css_file=nil, customization_layer=nil, embedded_fonts=[]) + @docbook_file = docbook_file + @output_dir = output_dir + @meta_dir = File.join(@output_dir, META_DIR) + @oebps_dir = File.join(@output_dir, OEBPS_DIR) + @css_file = css_file ? File.expand_path(css_file) : css_file + @embedded_fonts = embedded_fonts + @to_delete = [] + + if customization_layer + @stylesheet = File.expand_path(customization_layer) + else + @stylesheet = STYLESHEET + end + + unless File.exist?(@docbook_file) + raise ArgumentError.new("File #{@docbook_file} does not exist") + end + end + + def render_to_file(output_file, verbose=false) + render_to_epub(output_file, verbose) + bundle_epub(output_file, verbose) + cleanup_files(@to_delete) + end + + def self.invalid?(file) + # Obnoxiously, we can't just check for a non-zero output... + cmd = %Q(#{CHECKER} "#{file}") + output = `#{cmd} 2>&1` + + if $?.to_i == 0 + return false + else + STDERR.puts output if $DEBUG + return output + end + end + + private + def render_to_epub(output_file, verbose) + @collapsed_docbook_file = collapse_docbook() + + chunk_quietly = "--stringparam chunk.quietly " + (verbose ? '0' : '1') + callout_path = "--stringparam callout.graphics.path #{CALLOUT_PATH}/" + callout_limit = "--stringparam callout.graphics.number.limit #{CALLOUT_LIMIT}" + callout_ext = "--stringparam callout.graphics.extension #{CALLOUT_EXT}" + html_stylesheet = "--stringparam html.stylesheet #{File.basename(@css_file)}" if @css_file + base = "--stringparam base.dir #{OEBPS_DIR}/" + unless @embedded_fonts.empty? + embedded_fonts = @embedded_fonts.map {|f| File.basename(f)}.join(',') + font = "--stringparam epub.embedded.fonts \"#{embedded_fonts}\"" + end + meta = "--stringparam epub.metainf.dir #{META_DIR}/" + oebps = "--stringparam epub.oebps.dir #{OEBPS_DIR}/" + options = [chunk_quietly, + callout_path, + callout_limit, + callout_ext, + base, + font, + meta, + oebps, + html_stylesheet, + ].join(" ") + # Double-quote stylesheet & file to help Windows cmd.exe + db2epub_cmd = %Q(cd "#{@output_dir}" && #{XSLT_PROCESSOR} #{options} "#{@stylesheet}" "#{@collapsed_docbook_file}") + STDERR.puts db2epub_cmd if $DEBUG + success = system(db2epub_cmd) + raise "Could not render as .epub to #{output_file} (#{db2epub_cmd})" unless success + @to_delete << Dir["#{@meta_dir}/*"] + @to_delete << Dir["#{@oebps_dir}/*"] + end + + def bundle_epub(output_file, verbose) + + quiet = verbose ? "" : "-q" + mimetype_filename = write_mimetype() + meta = File.basename(@meta_dir) + oebps = File.basename(@oebps_dir) + images = copy_images() + csses = copy_csses() + fonts = copy_fonts() + callouts = copy_callouts() + # zip -X -r ../book.epub mimetype META-INF OEBPS + # Double-quote stylesheet & file to help Windows cmd.exe + zip_cmd = %Q(cd "#{@output_dir}" && #{ZIPPER} #{quiet} -X -r "#{File.expand_path(output_file)}" "#{mimetype_filename}" "#{meta}" "#{oebps}") + puts zip_cmd if $DEBUG + success = system(zip_cmd) + raise "Could not bundle into .epub file to #{output_file}" unless success + end + + # Input must be collapsed because REXML couldn't find figures in files that + # were XIncluded or added by ENTITY + # http://sourceforge.net/tracker/?func=detail&aid=2750442&group_id=21935&atid=373747 + def collapse_docbook + # Double-quote stylesheet & file to help Windows cmd.exe + collapsed_file = File.join(File.expand_path(File.dirname(@docbook_file)), + '.collapsed.' + File.basename(@docbook_file)) + entity_collapse_command = %Q(xmllint --loaddtd --noent -o "#{collapsed_file}" "#{@docbook_file}") + entity_success = system(entity_collapse_command) + raise "Could not collapse named entites in #{@docbook_file}" unless entity_success + + xinclude_collapse_command = %Q(xmllint --xinclude -o "#{collapsed_file}" "#{collapsed_file}") + xinclude_success = system(xinclude_collapse_command) + raise "Could not collapse XIncludes in #{@docbook_file}" unless xinclude_success + + @to_delete << collapsed_file + return collapsed_file + end + + def copy_callouts + new_callout_images = [] + if has_callouts? + calloutglob = "#{CALLOUT_FULL_PATH}/*#{CALLOUT_EXT}" + Dir.glob(calloutglob).each {|img| + img_new_filename = File.join(@oebps_dir, CALLOUT_PATH, File.basename(img)) + + # TODO: What to rescue for these two? + FileUtils.mkdir_p(File.dirname(img_new_filename)) + FileUtils.cp(img, img_new_filename) + @to_delete << img_new_filename + new_callout_images << img + } + end + return new_callout_images + end + + def copy_fonts + new_fonts = [] + @embedded_fonts.each {|font_file| + font_new_filename = File.join(@oebps_dir, File.basename(font_file)) + FileUtils.cp(font_file, font_new_filename) + new_fonts << font_file + } + return new_fonts + end + + def copy_csses + if @css_file + css_new_filename = File.join(@oebps_dir, File.basename(@css_file)) + FileUtils.cp(@css_file, css_new_filename) + end + end + + def copy_images + image_references = get_image_refs() + new_images = [] + image_references.each {|img| + # TODO: It'd be cooler if we had a filetype lookup rather than just + # extension + if img =~ /\.(svg|png|gif|jpe?g|xml)/i + img_new_filename = File.join(@oebps_dir, img) + img_full = File.join(File.expand_path(File.dirname(@docbook_file)), img) + + # TODO: What to rescue for these two? + FileUtils.mkdir_p(File.dirname(img_new_filename)) + puts(img_full + ": " + img_new_filename) if $DEBUG + FileUtils.cp(img_full, img_new_filename) + @to_delete << img_new_filename + new_images << img_full + end + } + return new_images + end + + def write_mimetype + mimetype_filename = File.join(@output_dir, "mimetype") + File.open(mimetype_filename, "w") {|f| f.print MIMETYPE} + @to_delete << mimetype_filename + return File.basename(mimetype_filename) + end + + def cleanup_files(file_list) + file_list.flatten.each {|f| + # Yikes + FileUtils.rm_r(f, :force => true ) + } + end + + # Returns an Array of all of the (image) @filerefs in a document + def get_image_refs + parser = REXML::Parsers::PullParser.new(File.new(@collapsed_docbook_file)) + image_refs = [] + while parser.has_next? + el = parser.pull + if el.start_element? and (el[0] == "imagedata" or el[0] == "graphic") + image_refs << el[1]['fileref'] + end + end + return image_refs.uniq + end + + # Returns true if the document has code callouts + def has_callouts? + parser = REXML::Parsers::PullParser.new(File.new(@collapsed_docbook_file)) + while parser.has_next? + el = parser.pull + if el.start_element? and (el[0] == "calloutlist" or el[0] == "co") + return true + end + end + return false + end + end +end diff --git a/docbook-xsl-1.76.1/epub/bin/xslt/obfuscate.xsl b/docbook-xsl-1.76.1/epub/bin/xslt/obfuscate.xsl new file mode 100644 index 0000000..4ea4cd5 --- /dev/null +++ b/docbook-xsl-1.76.1/epub/bin/xslt/obfuscate.xsl @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/epub/docbook.xsl b/docbook-xsl-1.76.1/epub/docbook.xsl new file mode 100644 index 0000000..753fcd0 --- /dev/null +++ b/docbook-xsl-1.76.1/epub/docbook.xsl @@ -0,0 +1,1690 @@ + + + + + + + + + + 1 + 2 + + book toc,title + + + + + 4 + + + + + + + + + + + + + + + ncxtoc + htmltoc + + + + + + 0 + + + + + + + + .png + + + + + + + + + + + + + + + + 1 + + + 1 + + + 1 + + + 1 + + + 0 + + + + + + + + + + + + + + + + + + Note + + + namesp. cut + + + stripped namespace before processing + + + + + + + Note + + + namesp. cut + + + processing stripped document + + + + + + + + + + + ID ' + + ' not found in document. + + + + + + + + + Formatting from + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + urn: + + : + + + + + urn:isbn: + + + + urn:issn: + + + + + + + + + + + + + _ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2.0 + + + + + + + + + + + + + + + + + + + + + + cover + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1.0 + + + + + + + application/oebps-package+xml + + + + + + + + + + + + + + + + + + + + + + + + + 2005-1 + + + + + + cover + + + + + + + dtb:uid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + : + + + + + + + + : + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + © + + + + + + + + + + + + + + + + cover + Cover + + + + + + + + + + + toc + Table of Contents + + + + + + + + + + + + + + + + + + + + + + yes + + no + + + + + + + + + + yes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + application/x-dtbncx+xml + + + + + + + application/xhtml+xml + + + + + + + + + + + text/css + css + + + + + + + + + + + application/xhtml+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/gif + + + image/gif + + + image/png + + + image/png + + + image/jpeg + + + image/jpeg + + + image/jpeg + + + image/jpeg + + + image/svg+xml + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARNING: mediaobjectco almost certainly will not render as expected in .epub! + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + application/xhtml+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (missing alt) + + + + + + + + + + + + + + text-align: + + middle + + + + + + + + + + + + + + + + + + + + + + 1 + + + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + + 1 + + 1 + 1 + 1 + 1 + 1 + 1 + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No insertfile extension available. + + + + + + + + No insertfile extension available. Use a different processor (with extensions) or turn on $use.extensions and $textinsert.extension (see docs for more). + + + + + + + + + + + + + + + + + + + + + + + + + + + + Cover + + text/css + + img { max-width: 100%; } + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -toc + + + + + + + + + + + + + + + + + + + + + + + + font/opentype + + + + WARNING: OpenType fonts should be supplied! ( + + ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 6 + + + + + + + + + + clear: both + + + + + + + + + + + + + + + + + + + + + + + 1 + + + + + + + + + + + + 1 + + + + + + + 1 + 2 + 3 + 4 + 5 + + + + + + + + + + + + + + + + + + + + + + + + 6 + 5 + 4 + 3 + 2 + 1 + + + + + title + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/extensions/LICENSE.txt b/docbook-xsl-1.76.1/extensions/LICENSE.txt new file mode 100755 index 0000000..fed77d9 --- /dev/null +++ b/docbook-xsl-1.76.1/extensions/LICENSE.txt @@ -0,0 +1,264 @@ +LICENSE + + Copyright (c) 2008 N. Quaine - NexWave Solutions All Rights Reserved. + +CONDITIONS + +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: +Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. +Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. +Neither the name of the copyright holders nor the names of the contributors may be used to endorse or promote products derived from this software without specific prior written permission. + +DISCLAIMER + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR + IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND + FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR + OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + POSSIBILITY OF SUCH DAMAGE. + + + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + + +Some code in src/java/org/apache/lucene/util/UnicodeUtil.java was +derived from unicode conversion examples available at +http://www.unicode.org/Public/PROGRAMS/CVTUTF. Here is the copyright +from those sources: + +/* + * Copyright 2001-2004 Unicode, Inc. + * + * Disclaimer + * + * This source code is provided as is by Unicode, Inc. No claims are + * made as to fitness for any particular purpose. No warranties of any + * kind are expressed or implied. The recipient agrees to determine + * applicability of information provided. If this file has been + * purchased on magnetic or optical media from Unicode, Inc., the + * sole remedy for any claim will be exchange of defective media + * within 90 days of receipt. + * + * Limitations on Rights to Redistribute This Code + * + * Unicode, Inc. hereby grants the right to freely use the information + * supplied in this file in the creation of products supporting the + * Unicode Standard, and to make copies of this file in any form + * for internal or external distribution as long as this notice + * remains attached. + */ + + +Some code in src/java/org/apache/lucene/util/ArrayUtil.java was +derived from Python 2.4.2 sources available at +http://www.python.org. Full license is here: + + http://www.python.org/download/releases/2.4.2/license/ + + diff --git a/docbook-xsl-1.76.1/extensions/NOTICE.txt b/docbook-xsl-1.76.1/extensions/NOTICE.txt new file mode 100755 index 0000000..35f247d --- /dev/null +++ b/docbook-xsl-1.76.1/extensions/NOTICE.txt @@ -0,0 +1,12 @@ +The webhelpindexer is released under the Apache 2.0 license and +includes software from other projects. + +The webhelpindexer was originally developed by N. Quaine and released +under a MIT/BSD-style license. See LICENSE.txt. + +This product includes software developed by The Apache Software +Foundation (http://www.apache.org/). See LICENSE.txt. + +This product also includes software released as part of the Snowball +project maintained by Martin Porter and Richard Boulton released under +a BSD-style license: http://snowball.tartarus.org/ diff --git a/docbook-xsl-1.76.1/extensions/README.LIBXSLT b/docbook-xsl-1.76.1/extensions/README.LIBXSLT new file mode 100644 index 0000000..2c80274 --- /dev/null +++ b/docbook-xsl-1.76.1/extensions/README.LIBXSLT @@ -0,0 +1,52 @@ +---------------------------------------------------------------------- + README file for the libxslt extensions +---------------------------------------------------------------------- +$Id: README.LIBXSLT 7877 2008-03-08 04:07:52Z xmldoc $ + +These are XSLT extensions written in Python for use with the DocBook XML +stylesheets and the libxslt library[1]. + +Currently, the only available extension is a function for adjusting column +widths in tables. For more information, see the section describing the +equivalent Java extension in "DocBook XSL: The Complete Guide"[2]. + +---------------------------------------------------------------------- +Preparations +---------------------------------------------------------------------- +In addition to libxml2 and libxslt, the following software needs to +be installed before you start using the extensions: + +1. Python[3]. + +2. Python bindings for libxml2/libxslt. Most distributions of + libxml2/libxslt for Unix/Linux include these bindings. + A native Windows port is provided by Stéphane Bidoul[4]. + +---------------------------------------------------------------------- +Installation of the extensions +---------------------------------------------------------------------- +No special installation step is needed. + +---------------------------------------------------------------------- +How to use the extensions +---------------------------------------------------------------------- +Instead of using xsltproc, you run a Python program (xslt.py). The +command has this general form: + +python xslt.py xmlfile xslfile [outputfile] [param1=val1 [param2=val]...] + +Modify paths, filenames, and parameters as needed. Make sure to set +the "use.extensions" and "tablecolumns.extension" parameters to 1. + +---------------------------------------------------------------------- +Manifest +---------------------------------------------------------------------- +README.LIBXSLT This file +xslt.py Executable script file +docbook.py Module that implements extensions + +---------------------------------------------------------------------- +[1] http://xmlsoft.org/XSLT +[2] http://www.sagehill.net/docbookxsl/ColumnWidths.html +[3] http://www.python.org/download +[4] http://users.skynet.be/sbi/libxml-python diff --git a/docbook-xsl-1.76.1/extensions/README.txt b/docbook-xsl-1.76.1/extensions/README.txt new file mode 100644 index 0000000..35c6fa0 --- /dev/null +++ b/docbook-xsl-1.76.1/extensions/README.txt @@ -0,0 +1,4 @@ +See webhelp/docs/index.html for more information about the webhelp +indexer and the webhelp output format. See webhelp/docs/index.html for +more information about the webhelp indexer and the webhelp output +format. diff --git a/docbook-xsl-1.76.1/extensions/docbook.py b/docbook-xsl-1.76.1/extensions/docbook.py new file mode 100644 index 0000000..c070602 --- /dev/null +++ b/docbook-xsl-1.76.1/extensions/docbook.py @@ -0,0 +1,239 @@ +# docbook.py: extension module +# $Id: docbook.py 8353 2009-03-17 16:57:50Z mzjn $ + +import sys +import string +import libxml2 +import libxslt +import re +import math + +# Some globals +pixelsPerInch = 96.0 +unitHash = { 'in': pixelsPerInch, + 'cm': pixelsPerInch / 2.54, + 'mm': pixelsPerInch / 25.4, + 'pc': (pixelsPerInch / 72.0) * 12, + 'pt': pixelsPerInch / 72.0, + 'px': 1 } + +# ====================================================================== + +def adjustColumnWidths(ctx, nodeset): + # + # Small check to verify the context is correcly accessed + # + try: + pctxt = libxslt.xpathParserContext(_obj=ctx) + ctxt = pctxt.context() + tctxt = ctxt.transformContext() + except: + pass + + # Get the nominal table width + varString = lookupVariable(tctxt, "nominal.table.width", None) + if varString == None: + nominalWidth = 6 * pixelsPerInch; + else: + nominalWidth = convertLength(varString); + + # Get the requested table width + tableWidth = lookupVariable(tctxt, "table.width", "100%") + + foStylesheet = (tctxt.variableLookup("stylesheet.result.type", None) == "fo") + + relTotal = 0 + relParts = [] + + absTotal = 0 + absParts = [] + + colgroup = libxml2.xmlNode(_obj = nodeset[0]) + # If this is an foStylesheet, we've been passed a list of fo:table-columns. + # Otherwise we've been passed a colgroup that contains a list of cols. + if foStylesheet: + colChildren = colgroup + else: + colChildren = colgroup.children + + col = colChildren + while col != None: + if foStylesheet: + width = col.prop("column-width") + else: + width = col.prop("width") + + if width == None: + width = "1*" + + relPart = 0.0 + absPart = 0.0 + starPos = string.find(width, "*") + if starPos >= 0: + relPart, absPart = string.split(width, "*", 2) + relPart = float(relPart) + relTotal = relTotal + float(relPart) + else: + absPart = width + + pixels = convertLength(absPart) + absTotal = absTotal + pixels + + relParts.append(relPart) + absParts.append(pixels) + + col = col.next + + # Ok, now we have the relative widths and absolute widths in + # two parallel arrays. + # + # - If there are no relative widths, output the absolute widths + # - If there are no absolute widths, output the relative widths + # - If there are a mixture of relative and absolute widths, + # - If the table width is absolute, turn these all into absolute + # widths. + # - If the table width is relative, turn these all into absolute + # widths in the nominalWidth and then turn them back into + # percentages. + + widths = [] + + if relTotal == 0: + for absPart in absParts: + if foStylesheet: + inches = absPart / pixelsPerInch + widths.append("%4.2fin" % inches) + else: + widths.append("%d" % absPart) + elif absTotal == 0: + for relPart in relParts: + rel = relPart / relTotal * 100 + widths.append(rel) + widths = correctRoundingError(widths) + else: + pixelWidth = nominalWidth + if string.find(tableWidth, "%") < 0: + pixelWidth = convertLength(tableWidth) + + if pixelWidth <= absTotal: + print "Table is wider than table width" + else: + pixelWidth = pixelWidth - absTotal + + absTotal = 0 + for count in range(len(relParts)): + rel = relParts[count] / relTotal * pixelWidth + relParts[count] = rel + absParts[count] + absTotal = absTotal + rel + absParts[count] + + if string.find(tableWidth, "%") < 0: + for count in range(len(relParts)): + if foStylesheet: + pixels = relParts[count] + inches = pixels / pixelsPerInch + widths.append("%4.2fin" % inches) + else: + widths.append(relParts[count]) + else: + for count in range(len(relParts)): + rel = relParts[count] / absTotal * 100 + widths.append(rel) + widths = correctRoundingError(widths) + + # Danger, Will Robinson! In-place modification of the result tree! + # Side-effect free? We don' need no steenkin' side-effect free! + count = 0 + col = colChildren + while col != None: + if foStylesheet: + col.setProp("column-width", widths[count]) + else: + col.setProp("width", widths[count]) + + count = count+1 + col = col.next + + return nodeset + +def convertLength(length): + # Given "3.4in" return the width in pixels + global pixelsPerInch + global unitHash + + m = re.search('([+-]?[\d\.]+)(\S+)', length) + if m != None and m.lastindex > 1: + unit = pixelsPerInch + if unitHash.has_key(m.group(2)): + unit = unitHash[m.group(2)] + else: + print "Unrecognized length: " + m.group(2) + + pixels = unit * float(m.group(1)) + else: + pixels = 0 + + return pixels + +def correctRoundingError(floatWidths): + # The widths are currently floating point numbers, we have to truncate + # them back to integers and then distribute the error so that they sum + # to exactly 100%. + + totalWidth = 0 + widths = [] + for width in floatWidths: + width = math.floor(width) + widths.append(width) + totalWidth = totalWidth + math.floor(width) + + totalError = 100 - totalWidth + columnError = totalError / len(widths) + error = 0 + for count in range(len(widths)): + width = widths[count] + error = error + columnError + if error >= 1.0: + adj = math.floor(error) + error = error - adj + widths[count] = "%d%%" % (width + adj) + else: + widths[count] = "%d%%" % width + + return widths + +def lookupVariable(tctxt, varName, default): + varString = tctxt.variableLookup(varName, None) + if varString == None: + return default + + # If it's a list, get the first element + if type(varString) == type([]): + varString = varString[0] + + # If it's not a string, it must be a node, get its content + if type(varString) != type(""): + varString = varString.content + + return varString + +# ====================================================================== +# Random notes... + +#once you have a node which is a libxml2 python xmlNode wrapper all common +#operations are possible: +# .children .last .parent .next .prev .doc for navigation +# .content .type for introspection +# .prop("attribute_name") to lookup attribute values + +# # Now make a nodeset to return +# # Danger, Will Robinson! This creates a memory leak! +# newDoc = libxml2.newDoc("1.0") +# newColGroup = newDoc.newDocNode(None, "colgroup", None) +# newDoc.addChild(newColGroup) +# col = colgroup.children +# while col != None: +# newCol = newDoc.newDocNode(None, "col", None) +# newCol.copyPropList(col); +# newCol.setProp("width", "4") +# newColGroup.addChild(newCol) +# col = col.next diff --git a/docbook-xsl-1.76.1/extensions/lucene-analyzers-3.0.0.jar b/docbook-xsl-1.76.1/extensions/lucene-analyzers-3.0.0.jar new file mode 100644 index 0000000..9f26ecf Binary files /dev/null and b/docbook-xsl-1.76.1/extensions/lucene-analyzers-3.0.0.jar differ diff --git a/docbook-xsl-1.76.1/extensions/lucene-core-3.0.0.jar b/docbook-xsl-1.76.1/extensions/lucene-core-3.0.0.jar new file mode 100644 index 0000000..38d78c3 Binary files /dev/null and b/docbook-xsl-1.76.1/extensions/lucene-core-3.0.0.jar differ diff --git a/docbook-xsl-1.76.1/extensions/saxon65.jar b/docbook-xsl-1.76.1/extensions/saxon65.jar new file mode 100644 index 0000000..5bad294 Binary files /dev/null and b/docbook-xsl-1.76.1/extensions/saxon65.jar differ diff --git a/docbook-xsl-1.76.1/extensions/webhelpindexer.jar b/docbook-xsl-1.76.1/extensions/webhelpindexer.jar new file mode 100644 index 0000000..50c3ccc Binary files /dev/null and b/docbook-xsl-1.76.1/extensions/webhelpindexer.jar differ diff --git a/docbook-xsl-1.76.1/extensions/xalan27.jar b/docbook-xsl-1.76.1/extensions/xalan27.jar new file mode 100644 index 0000000..7f06fdb Binary files /dev/null and b/docbook-xsl-1.76.1/extensions/xalan27.jar differ diff --git a/docbook-xsl-1.76.1/extensions/xslt.py b/docbook-xsl-1.76.1/extensions/xslt.py new file mode 100644 index 0000000..c712f65 --- /dev/null +++ b/docbook-xsl-1.76.1/extensions/xslt.py @@ -0,0 +1,84 @@ +#!/usr/bin/python -u +# $Id: xslt.py 8353 2009-03-17 16:57:50Z mzjn $ + +import sys +import libxml2 +import libxslt +from docbook import adjustColumnWidths + +# Check the arguments +usage = "Usage: %s xmlfile.xml xslfile.xsl [outputfile] [param1=val [param2=val]...]" % sys.argv[0] + +xmlfile = None +xslfile = None +outfile = "-" +params = {} + +try: + xmlfile = sys.argv[1] + xslfile = sys.argv[2] +except IndexError: + print usage + sys.exit(1) + +def quote(astring): + if astring.find("'") < 0: + return "'" + astring + "'" + else: + return '"' + astring + '"' + +try: + outfile = sys.argv[3] + if outfile.find("=") > 0: + name, value = outfile.split("=", 2) + params[name] = quote(value) + outfile = None + + count = 4 + while (sys.argv[count]): + try: + name, value = sys.argv[count].split("=", 2) + if params.has_key(name): + print "Warning: '%s' re-specified; replacing value" % name + params[name] = quote(value) + except ValueError: + print "Invalid parameter specification: '" + sys.argv[count] + "'" + print usage + sys.exit(1) + count = count+1 +except IndexError: + pass + +# ====================================================================== +# Memory debug specific +# libxml2.debugMemory(1) + +# Setup environment +libxml2.lineNumbersDefault(1) +libxml2.substituteEntitiesDefault(1) +libxslt.registerExtModuleFunction("adjustColumnWidths", + "http://nwalsh.com/xslt/ext/xsltproc/python/Table", + adjustColumnWidths) + +# Initialize and run +styledoc = libxml2.parseFile(xslfile) +style = libxslt.parseStylesheetDoc(styledoc) +doc = libxml2.parseFile(xmlfile) +result = style.applyStylesheet(doc, params) + +# Save the result +if outfile: + style.saveResultToFilename(outfile, result, 0) +else: + print result + +# Free things up +style.freeStylesheet() +doc.freeDoc() +result.freeDoc() + +# Memory debug specific +#libxslt.cleanup() +#if libxml2.debugMemory(1) != 0: +# print "Memory leak %d bytes" % (libxml2.debugMemory(1)) +# libxml2.dumpMemory() diff --git a/docbook-xsl-1.76.1/fo/admon.xsl b/docbook-xsl-1.76.1/fo/admon.xsl new file mode 100644 index 0000000..4f69be4 --- /dev/null +++ b/docbook-xsl-1.76.1/fo/admon.xsl @@ -0,0 +1,130 @@ + + + + + + + + + + + + + + + + + + + 36pt + + + + + + + + + note + warning + caution + tip + important + note + + + + + + + + + + url( + + ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/fo/annotations.xsl b/docbook-xsl-1.76.1/fo/annotations.xsl new file mode 100644 index 0000000..ba6baa6 --- /dev/null +++ b/docbook-xsl-1.76.1/fo/annotations.xsl @@ -0,0 +1,18 @@ + + + + + + + + diff --git a/docbook-xsl-1.76.1/fo/autoidx-kimber.xsl b/docbook-xsl-1.76.1/fo/autoidx-kimber.xsl new file mode 100644 index 0000000..434572f --- /dev/null +++ b/docbook-xsl-1.76.1/fo/autoidx-kimber.xsl @@ -0,0 +1,172 @@ + + +%common.entities; + + + + + +]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR: the 'kimber' index method requires the + Saxon version 6 or 8 XSLT processor. + + + + + + ERROR: the 'kimber' index method requires the + Innodata Isogen Java extensions for + internationalized indexes. Install those + extensions, or use a different index method. + For more information, see: + http://www.innodata-isogen.com/knowledge_center/tools_downloads/i18nsupport + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/fo/autoidx-kosek.xsl b/docbook-xsl-1.76.1/fo/autoidx-kosek.xsl new file mode 100644 index 0000000..7ed5414 --- /dev/null +++ b/docbook-xsl-1.76.1/fo/autoidx-kosek.xsl @@ -0,0 +1,139 @@ + + +%common.entities; +]> + + + + + + + + + + + + + + + + ERROR: the 'kosek' index method does not + work with the xsltproc XSLT processor. + + + + + + ERROR: the 'kosek' index method does not + work with the Saxon 8 XSLT processor. + + + + + + + ERROR: the 'kosek' index method requires the + exslt:node-set() function. Use a processor that + has it, or use a different index method. + + + + + + ERROR: the 'kosek' index method requires the + index extension functions be imported: + xsl:import href="common/autoidx-kosek.xsl" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/fo/autoidx-ng.xsl b/docbook-xsl-1.76.1/fo/autoidx-ng.xsl new file mode 100644 index 0000000..9407b5c --- /dev/null +++ b/docbook-xsl-1.76.1/fo/autoidx-ng.xsl @@ -0,0 +1,20 @@ + + + + + + + + +kosek + + diff --git a/docbook-xsl-1.76.1/fo/autoidx.xsl b/docbook-xsl-1.76.1/fo/autoidx.xsl new file mode 100644 index 0000000..920760f --- /dev/null +++ b/docbook-xsl-1.76.1/fo/autoidx.xsl @@ -0,0 +1,1330 @@ + + +%common.entities; +]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR: the 'kosek' index method does not + work with the xsltproc XSLT processor. + + + + + + + ERROR: the 'kosek' index method requires the + exslt:node-set() function. Use a processor that + has it, or use a different index method. + + + + + + ERROR: the 'kosek' index method requires the + kosek index extensions be imported: + xsl:import href="fo/autoidx-kosek.xsl" + + + + + + + + + + + + + + ERROR: the 'kimber' index method requires the + Saxon version 6 or 8 XSLT processor. + + + + + + ERROR: the 'kimber' index method requires the + kimber index extensions be imported: + xsl:import href="fo/autoidx-kimber.xsl" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + true + + + + + + + + + + + + + + + + + + + + + + + , + + + + + + + + + , + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + true + + + + + + + + + + + + + + + + + + + + + + + + , + + , + + + + + + + + + , + + , + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ( + + + + + + ) + + + + + + + + + + + + ( + + + + + + ) + + + + + + + + + + + + + + + + + <index> + + <indexdiv> + <title> + + + + </title> + + + + + + + </indexdiv> + + + + + + + + + </index> + + + + + + + + < + + > + + + + + + + + + + + + + <indexdiv> + <title> + + </title> + + + + + + + + </indexdiv> + + + + + + + + + + + + + + + + + + + + + + + + + <indexentry> + <primaryie> + <phrase> + + + + </phrase> + , + + + + + + + + + + + </primaryie> + + + + + + + + + + + + + + + + + + + + + + + + </indexentry> + + + + + + + + + + + <secondaryie> + <phrase> + + + + </phrase> + , + + + + + + + + + + + </secondaryie> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <tertiaryie> + <phrase> + + + + </phrase> + , + + + + + + + + + + + </tertiaryie> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <phrase role="pageno"> + <link linkend=" + + "> + + + - + + + </link> + </phrase> + + + <phrase role="pageno"> + + <link linkend=" + + "> + + + + + + </link> + + </phrase> + + + + + + + + + + + + + + + + + + + + + + + <phrase fole="pageno"> + + <link linkend=" + + "> + + + + + + </link> + + </phrase> + + + + + + + + + + + + + + + + + + + <phrase role="pageno"> + + <link linkend=" + + "> + + + + + + </link> + + </phrase> + + + + + + + + + + <seeie> + <phrase> + + + + </phrase> + </seeie> + + + + + + + + + <seealsoie> + <phrase> + + + + </phrase> + </seealsoie> + + + + + + + + + + + + + &lt; + + + + + + + + &amp; + + + + + + + + &lt; + + + + + + + + &amp; + + + + + + + + + + + + + + + + + + + + + + + + + + + + index + term-separator + + + + + + + + + + + + + + index + number-separator + + + + + + + + + + + + + + index + range-separator + + + + + + + + diff --git a/docbook-xsl-1.76.1/fo/autotoc.xsl b/docbook-xsl-1.76.1/fo/autotoc.xsl new file mode 100644 index 0000000..c1079b8 --- /dev/null +++ b/docbook-xsl-1.76.1/fo/autotoc.xsl @@ -0,0 +1,915 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + false + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + false + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 3em + -3em + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/fo/axf.xsl b/docbook-xsl-1.76.1/fo/axf.xsl new file mode 100644 index 0000000..e63c3a6 --- /dev/null +++ b/docbook-xsl-1.76.1/fo/axf.xsl @@ -0,0 +1,110 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + author + + + + + + + + + + + + + + + + + + + + + keywords + + + + + , + + + + + + + + + subject + + + + + , + + + + + + + + + + + + + + crop + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/fo/biblio-iso690.xsl b/docbook-xsl-1.76.1/fo/biblio-iso690.xsl new file mode 100644 index 0000000..1bc3858 --- /dev/null +++ b/docbook-xsl-1.76.1/fo/biblio-iso690.xsl @@ -0,0 +1,1300 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + In + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/fo/biblio.xsl b/docbook-xsl-1.76.1/fo/biblio.xsl new file mode 100644 index 0000000..4524612 --- /dev/null +++ b/docbook-xsl-1.76.1/fo/biblio.xsl @@ -0,0 +1,1169 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No bibliography entry: + + found in + + + + Error: no bibliography entry: + + found in + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No bibliography entry: + + found in + + + + Error: no bibliography entry: + + found in + + + + + + + + + + + + + + + + + + + + [ + + ] + + + [ + + ] + + + [ + + ] + + + [ + + ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + copyright + + + + + + + + + + + + + , + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/fo/block.xsl b/docbook-xsl-1.76.1/fo/block.xsl new file mode 100644 index 0000000..ce19b41 --- /dev/null +++ b/docbook-xsl-1.76.1/fo/block.xsl @@ -0,0 +1,654 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +   + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0pt + 0pt + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0pt + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0pt + 0.5em + 0pt + + + + + 0.5em + 0pt + 0pt + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0pt + 0.5em + 0pt + + + + + 0.5em + 0pt + 0pt + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + , + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/fo/callout.xsl b/docbook-xsl-1.76.1/fo/callout.xsl new file mode 100644 index 0000000..a31f218 --- /dev/null +++ b/docbook-xsl-1.76.1/fo/callout.xsl @@ -0,0 +1,231 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Don't know how to do callouts with + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Error: coref link is broken: + + + + + + Error: coref doesn't point to a co: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + url( + + ) + + + + + + + + + + + + + + + + + + + + + + + + + + Don't know how to generate Unicode callouts + when $callout.unicode.start.character is + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/fo/component.xsl b/docbook-xsl-1.76.1/fo/component.xsl new file mode 100644 index 0000000..1466413 --- /dev/null +++ b/docbook-xsl-1.76.1/fo/component.xsl @@ -0,0 +1,887 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 6 + 5 + 4 + 3 + 2 + 1 + + + + + + + + + + + + + inherit + + + + + + + + + + + + + + + + + + + + + false + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + false + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/fo/division.xsl b/docbook-xsl-1.76.1/fo/division.xsl new file mode 100644 index 0000000..975d8c5 --- /dev/null +++ b/docbook-xsl-1.76.1/fo/division.xsl @@ -0,0 +1,612 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + + + false + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/fo/docbook.xsl b/docbook-xsl-1.76.1/fo/docbook.xsl new file mode 100644 index 0000000..ee0a1eb --- /dev/null +++ b/docbook-xsl-1.76.1/fo/docbook.xsl @@ -0,0 +1,335 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Element + + in namespace ' + + ' encountered + + in + + + , but no template matches. + + + + < + + > + + </ + + > + + + + + + + + + + + + + + + + + Note + + + namesp. cut + + + stripped namespace before processing + + + + + + + Note + + + namesp. cut + + + processing stripped document + + + + + + + + Unable to strip the namespace from DB5 document, + cannot proceed. + + + + + + + + + + ID ' + + ' not found in document. + + + + + ERROR: Document root element ($rootid= + + ) for FO output + must be one of the following elements: + + + + + + + + + + + + + + + + + + + + + ERROR: Document root element for FO output + must be one of the following elements: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + [could not find document title] + + + + + + false + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Making + + pages on + + paper ( + + x + + ) + + + + + + diff --git a/docbook-xsl-1.76.1/fo/ebnf.xsl b/docbook-xsl-1.76.1/fo/ebnf.xsl new file mode 100644 index 0000000..09dcb11 --- /dev/null +++ b/docbook-xsl-1.76.1/fo/ebnf.xsl @@ -0,0 +1,325 @@ + + + + + + + + +$Id: ebnf.xsl 6910 2007-06-28 23:23:30Z xmldoc $ + +Walsh +Norman +199920002001 +Norman Walsh + + +HTML EBNF Reference + + +
    Introduction + +This is technical reference documentation for the DocBook XSL +Stylesheets; it documents (some of) the parameters, templates, and +other elements of the stylesheets. + +This reference describes the templates and parameters relevant +to formatting EBNF markup. + +This is not intended to be user documentation. +It is provided for developers writing customization layers for the +stylesheets, and for anyone who's interested in how it +works. + +Although I am trying to be thorough, this documentation is known +to be incomplete. Don't forget to read the source, too :-) +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + [ + + ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +   + + + + + + + + + + + + + + Error: no ID for productionrecap linkend: + + . + + + + + + Warning: multiple "IDs" for productionrecap linkend: + + . + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + production + + + + + + + + + Non-terminals with no content must point to + production elements in the current document. + + + Invalid xpointer for empty nt: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ??? + + + + + + + + + + + + + /*  + +  */ + + + + + + + + + + constraintdef + + + + + + + + + + + + + + + + + + + : + + + + + + + : + + + + + + + + + +  ] + + + + + + + + + + + + + + + + + +
    diff --git a/docbook-xsl-1.76.1/fo/fo-rtf.xsl b/docbook-xsl-1.76.1/fo/fo-rtf.xsl new file mode 100644 index 0000000..4aa0f32 --- /dev/null +++ b/docbook-xsl-1.76.1/fo/fo-rtf.xsl @@ -0,0 +1,154 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/fo/fo.xsl b/docbook-xsl-1.76.1/fo/fo.xsl new file mode 100644 index 0000000..854098f --- /dev/null +++ b/docbook-xsl-1.76.1/fo/fo.xsl @@ -0,0 +1,117 @@ + + + + + + + + + + + left + left + left + right + top + left + + + + + + right + right + right + left + bottom + right + + + + + + + WARNING: FOP does not support right-to-left writing-mode + lr-tb + + + WARNING: FOP does not support right-to-left writing-mode + lr-tb + + lr-tb + rl-tb + tb-rl + lr-tb + + + + + + + + + + + + + + + + + + + bullet + + + o + © + + + ® + (SM) + " + " + ' + ' + + - + o + + + + + + + + + + + + + + + + + + + # + + + + + + + diff --git a/docbook-xsl-1.76.1/fo/footnote.xsl b/docbook-xsl-1.76.1/fo/footnote.xsl new file mode 100644 index 0000000..cc0242d --- /dev/null +++ b/docbook-xsl-1.76.1/fo/footnote.xsl @@ -0,0 +1,220 @@ + + + + + + + + + + + super + + + super + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +ERROR: A footnoteref element has a linkend that points to an element that is not a footnote. +Typically this happens when an id attribute is accidentally applied to the child of a footnote element. +target element: +linkend/id: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Warning: footnote number may not be generated + correctly; + + unexpected as first child of footnote. + + + + + + + + + diff --git a/docbook-xsl-1.76.1/fo/fop.xsl b/docbook-xsl-1.76.1/fo/fop.xsl new file mode 100644 index 0000000..c82a48d --- /dev/null +++ b/docbook-xsl-1.76.1/fo/fop.xsl @@ -0,0 +1,93 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/fo/fop1.xsl b/docbook-xsl-1.76.1/fo/fop1.xsl new file mode 100644 index 0000000..61cb89e --- /dev/null +++ b/docbook-xsl-1.76.1/fo/fop1.xsl @@ -0,0 +1,223 @@ + + + + + + + + + + hide + show + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + , + + + + + + + + + + + + + + + + , + + + + + + + + + + + DocBook XSL Stylesheets with Apache FOP + + + + + + + + diff --git a/docbook-xsl-1.76.1/fo/formal.xsl b/docbook-xsl-1.76.1/fo/formal.xsl new file mode 100644 index 0000000..bb40aa9 --- /dev/null +++ b/docbook-xsl-1.76.1/fo/formal.xsl @@ -0,0 +1,642 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + always + + + always + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ( + + ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + before + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + before + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Broken table: tr descendent of CALS Table. + The text in the first tr is: + + + + + + Broken table: row descendent of HTML table. + The text in the first row is: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + before + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/fo/glossary.xsl b/docbook-xsl-1.76.1/fo/glossary.xsl new file mode 100644 index 0000000..366b3cb --- /dev/null +++ b/docbook-xsl-1.76.1/fo/glossary.xsl @@ -0,0 +1,1169 @@ + + +%common.entities; +]> + + + + + + + + + + + + + + + + + + + + + + &setup-language-variable; + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + &setup-language-variable; + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Warning: processing automatic glossary + without a glossary.collection file. + + + + + + Warning: processing automatic glossary but unable to + open glossary.collection file ' + + ' + + + + + + + + + + + + &setup-language-variable; + + + + + + + + + + + + + + + + + + + + + + + + + + + Warning: processing automatic glossary + without a glossary.collection file. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Warning: processing automatic glossary + without a glossary.collection file. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + &setup-language-variable; + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + &setup-language-variable; + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + &setup-language-variable; + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + 1 + + + + + + + + + + + + ( + + ) + + + + + + + + + + + + ( + + ) + + + + + + + + + + + + + + + + + + + + + + + + + + + , + + + + + , + + + + + , + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Warning: glosssee @otherterm reference not found: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Warning: glossseealso @otherterm reference not found: + + + + + + + + + + + + + + + + + + + + + + + + + &setup-language-variable; + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + 1 + + + + + + + + + + ( + + ) + + + + + + + + + + + + ( + + ) + + + + + + + + + + + + + + + + + + + + + + + + , + + + + + , + + + + + , + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Warning: glosssee @otherterm reference not found: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Warning: glossseealso @otherterm reference not found: + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/fo/graphics.xsl b/docbook-xsl-1.76.1/fo/graphics.xsl new file mode 100644 index 0000000..bbbcc0d --- /dev/null +++ b/docbook-xsl-1.76.1/fo/graphics.xsl @@ -0,0 +1,648 @@ + + + + ]> + + + + + + + + + + + + PNG PDF JPG JPEG linespecific + + + BMP GIF TIFF SVG PNG EPS JPG JPEG linespecific + + + BMP GIF TIFF SVG PNG EPS JPG JPEG linespecific + + + PNG PDF JPG JPEG linespecific GIF GIF87a GIF89a TIFF BMP + + + SVG PNG PDF JPG JPEG linespecific GIF GIF87a GIF89a TIFF BMP + + + PNG PDF JPG JPEG linespecific GIF GIF87a GIF89a TIFF BMP + + + + + + + 1 + + + + + + + png pdf jpg jpeg + + + bmp gif tif tiff svg png pdf jpg jpeg eps + + + bmp gif tif tiff svg png pdf jpg jpeg eps + + + png pdf jpg jpeg gif tif tiff bmp + + + svg png pdf jpg jpeg gif tif tiff bmp eps + + + svg png pdf jpg jpeg gif tif tiff bmp eps + + + + + + + + + 1 + + + + + + + + + + + + + + application/postscript + application/pdf + image/png + image/svg+xml + image/jpeg + image/gif + image/gif + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + 0 + 0 + 0 + + 1 + 1 + 0 + + + + + + 0 + 1.0 + + + + 1.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + auto + + + + + + + + + + + + + + + + auto + + + + + + auto + + + + + + + + + + auto + + + + + + auto + + + + + + + + + + + + % + + scale-to-fit + auto + + + + + + auto + + + + + + + + + + + + % + + scale-to-fit + auto + + + + + + + + + + + + + + + + + + + + + + + + + before + center + after + auto + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Don't know how to insert files with + + + + + + + + Cannot insert + . Check use.extensions and textinsert.extension parameters. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Don't know how to insert files with + + + + + + + + Cannot insert + . Check use.extensions and textinsert.extension parameters. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Don't know how to insert files with + + + + + + + + Cannot insert + . Check use.extensions and textinsert.extension parameters. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/fo/highlight.xsl b/docbook-xsl-1.76.1/fo/highlight.xsl new file mode 100644 index 0000000..7843ad2 --- /dev/null +++ b/docbook-xsl-1.76.1/fo/highlight.xsl @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/fo/htmltbl.xsl b/docbook-xsl-1.76.1/fo/htmltbl.xsl new file mode 100644 index 0000000..4918b8a --- /dev/null +++ b/docbook-xsl-1.76.1/fo/htmltbl.xsl @@ -0,0 +1,425 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + fixed + + + + + + + + + + + + 100% + + + + + + + all + all + bottom + top + topbot + sides + lhs + rhs + none + all + none + + + + + + + all + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + none + none + none + none + + + + + none + none + none + + + + + + + + + + + + + + + + 1 + + 1 + 1 + + 1 + 0 + + + + + none + none + none + + + + + + + + + + + + + none + none + + + + + 1 + + 1 + 1 + + 1 + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + none + none + none + + + + + + + + + + + + none + none + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/fo/index.xsl b/docbook-xsl-1.76.1/fo/index.xsl new file mode 100644 index 0000000..ff298d1 --- /dev/null +++ b/docbook-xsl-1.76.1/fo/index.xsl @@ -0,0 +1,484 @@ + + +%common.entities; +]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + body + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + body + index + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +.tnacifingis + + + + + + + + + fo:wrapper + + + + + + + + + + + + + + , + + + + , + + + + + + + + + + + , + + + + , + + + + + + + + + + + + + + + + + + + + , + + + + , + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ( + + + + + + ) + + + + + + + + + ( + + + + + + ) + + + + + + + + + ( + + + + + + ) + + + + + + + + + + + + + + + 3pc + 2pc + 1pc + + + ( + + + + + + ) + + + + + + + + + + + + + fo:block + fo:wrapper + fo:inline + + + + diff --git a/docbook-xsl-1.76.1/fo/info.xsl b/docbook-xsl-1.76.1/fo/info.xsl new file mode 100644 index 0000000..7497b82 --- /dev/null +++ b/docbook-xsl-1.76.1/fo/info.xsl @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/fo/inline.xsl b/docbook-xsl-1.76.1/fo/inline.xsl new file mode 100644 index 0000000..cbc8cff --- /dev/null +++ b/docbook-xsl-1.76.1/fo/inline.xsl @@ -0,0 +1,1288 @@ + + +%common.entities; +]> + + + + + + + + + + + + + + + + + + + + + + + + 1 + 0 + + + + + + + + + 1 + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + XLink to nonexistent id: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + XLink to nonexistent id: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ltr + rtl + + + + + + + + + + + + + + + + + + + + + + + + + + ltr + rtl + + + + + + + + + + + + + + + + + + + + + ltr + rtl + + + + + + + + + + + + + + + + + + + + + + ltr + rtl + + + + + + + + + + + + + + + + + + + + + + ltr + rtl + + + + + + + + + + + + + + + + + + + + + + ltr + rtl + + + + + + + + + + + + + + + + + + + + + + ltr + rtl + + + + + + super + + + super + + + + + + + + + + + + + + + + + + + + + ltr + rtl + + + + + + sub + + + sub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ( + + ) + + + + + + + + + + + , + + + + + + + , + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + There's no entry for + + in + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Error: no glossentry for glossterm: + + . + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + element + + + + + + + + + + + + + + + + + </ + + > + + + + + + + & + + ; + + + + + + + &# + + ; + + + + + + + % + + ; + + + + + + + <? + + > + + + + + + + <? + + ?> + + + + + + + < + + > + + + + + + + < + + /> + + + + + + + <!-- + + --> + + + + + + + + + + + + + + + < + + + + + + mailto: + + + + + + + + + + > + + + + + + + + + + + + + + - + - + - + + + + + + + + + + + + + + + + + + + + + + ( + + ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + [ + + + + + + + + + + + + + + + + + + ] + + + + [ + + ] + + + + + + + + + + + + + [ + + + + + + + + + + + ] + + + + [ + + ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/fo/keywords.xsl b/docbook-xsl-1.76.1/fo/keywords.xsl new file mode 100644 index 0000000..6070b91 --- /dev/null +++ b/docbook-xsl-1.76.1/fo/keywords.xsl @@ -0,0 +1,21 @@ + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/fo/lists.xsl b/docbook-xsl-1.76.1/fo/lists.xsl new file mode 100644 index 0000000..51052f1 --- /dev/null +++ b/docbook-xsl-1.76.1/fo/lists.xsl @@ -0,0 +1,1393 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + em + + + em * 0.60 + + + + + + + + + + + + + + em + + + em * 0.60 + + + + + + + + + 1em + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.25in + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 100% + + + + + + + + + + + + auto + + + + + + fixed + + + + + + + + + + + 1 + + + + + + + + + + + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + , + + + + + + + + + + + + + + + + + + + + + + + + + + + + 100% + + + + + + + + + + + auto + + + + + + fixed + + + + + + + + + + 1 + + + + + + + + + + + 1 + + + + + + + + + + + + + + + + + + + + + 1 + 1 + + + + + + + + + + + + + + + + + + + + 1 + 1 + + 1 + + + + + + + + + + + + + + + + + + + + 1 + 1 + + + + + + + + + + + + + + + + + + + + + + + 1 + 1 + 1 + + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + before + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + . + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + : + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + : ??? + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ??? + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/fo/math.xsl b/docbook-xsl-1.76.1/fo/math.xsl new file mode 100644 index 0000000..6d7d470 --- /dev/null +++ b/docbook-xsl-1.76.1/fo/math.xsl @@ -0,0 +1,140 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $ + + + + $ + + + + + + + + + + + + + $$ + + + + $$ + + + + + + + + + Your equation is misplaced. It should be in inlineequation, equation or informalequation. + + + + + + + + + + + + + + 0 + 0 + 1 + + + + + + diff --git a/docbook-xsl-1.76.1/fo/pagesetup.xsl b/docbook-xsl-1.76.1/fo/pagesetup.xsl new file mode 100644 index 0000000..116a2ca --- /dev/null +++ b/docbook-xsl-1.76.1/fo/pagesetup.xsl @@ -0,0 +1,2569 @@ + + + + + + + + + + , + + + + + + , + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + blank + + + + + blank-body + + + + + + + + + + + + + + + + + + + + titlepage-first + + + + + + + + + + + + + + + + + + + + + titlepage-odd + + + + + + + + + + + + + + + + + + + + + titlepage-even + + + + + + + + + + + + + + + + + + + + + + lot-first + + + + + + + + + + + + + + + + + + + + + lot-odd + + + + + + + + + + + + + + + + + + + + + lot-even + + + + + + + + + + + + + + + + + + + + + + front-first + + + + + + + + + + + + + + + + + + + + + front-odd + + + + + + + + + + + + + + + + + + + + + front-even + + + + + + + + + + + + + + + + + + + + + + + + + body-first + + + + + + + + + + + + + + + + + + + + + body-odd + + + + + + + + + + + + + + + + + + + + + body-even + + + + + + + + + + + + + + + + + + + + + + back-first + + + + + + + + + + + + + + + + + + + + + back-odd + + + + + + + + + + + + + + + + + + + + + back-even + + + + + + + + + + + + + + + + + + + + + + index-first + + + + + + + + + + + + + + + + + + + + + index-odd + + + + + + + + + + + + + + + + + + + + + index-even + + + + + + + + + + + + + + + + + + + + + + + blank-draft + + + + + + + + + + fixed + no-repeat + center + center + + + + + + + + + + + + + + + + + + + + titlepage-first-draft + + + + + + + + + + fixed + no-repeat + center + center + + + + + + + + + + + + + + + + + + + titlepage-odd-draft + + + + + + + + + + fixed + no-repeat + center + center + + + + + + + + + + + + + + + + + + + titlepage-even-draft + + + + + + + + + + fixed + no-repeat + center + center + + + + + + + + + + + + + + + + + + + + lot-first-draft + + + + + + + + + + fixed + no-repeat + center + center + + + + + + + + + + + + + + + + + + + lot-odd-draft + + + + + + + + + + fixed + no-repeat + center + center + + + + + + + + + + + + + + + + + + + lot-even-draft + + + + + + + + + + fixed + no-repeat + center + center + + + + + + + + + + + + + + + + + + + + front-first-draft + + + + + + + + + + fixed + no-repeat + center + center + + + + + + + + + + + + + + + + + + + front-odd-draft + + + + + + + + + + fixed + no-repeat + center + center + + + + + + + + + + + + + + + + + + + front-even-draft + + + + + + + + + + fixed + no-repeat + center + center + + + + + + + + + + + + + + + + + + + + body-first-draft + + + + + + + + + + fixed + no-repeat + center + center + + + + + + + + + + + + + + + + + + + body-odd-draft + + + + + + + + + + fixed + no-repeat + center + center + + + + + + + + + + + + + + + + + + + body-even-draft + + + + + + + + + + fixed + no-repeat + center + center + + + + + + + + + + + + + + + + + + + + back-first-draft + + + + + + + + + + fixed + no-repeat + center + center + + + + + + + + + + + + + + + + + + + back-odd-draft + + + + + + + + + + fixed + no-repeat + center + center + + + + + + + + + + + + + + + + + + + back-even-draft + + + + + + + + + + fixed + no-repeat + center + center + + + + + + + + + + + + + + + + + + + + index-first-draft + + + + + + + + + + fixed + no-repeat + center + center + + + + + + + + + + + + + + + + + + + index-odd-draft + + + + + + + + + + fixed + no-repeat + center + center + + + + + + + + + + + + + + + + + + + index-even-draft + + + + + + + + + + fixed + no-repeat + center + center + + + + + + + + + + + + + + + + + titlepage-even + titlepage-odd + + + + + + + + + + + + + + + + lot-even + lot-odd + + + + + + + + + + + + + + + + front-even + front-odd + + + + + + + + + + + + + + + + body-even + body-odd + + + + + + + + + + + + + + + + back-even + back-odd + + + + + + + + + + + + + + + + index-even + index-odd + + + + + + + + + + + + + + + + + titlepage-even-draft + titlepage-odd-draft + + + + + + + + + + + + + + + + lot-even-draft + lot-odd-draft + + + + + + + + + + + + + + + + front-even-draft + front-odd-draft + + + + + + + + + + + + + + + + body-even-draft + body-odd-draft + + + + + + + + + + + + + + + + back-even-draft + back-odd-draft + + + + + + + + + + + + + + + + index-even-draft + index-odd-draft + + + + + + + + + + + + + + + + + + + + + + + + + + + + lot + front + front + front + back + back + back + index + back + body + + + + + -draft + + + + + + -draft + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.5pt + solid + black + + + + + + + + + + 0.5pt + solid + black + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0pt + + + + + + 1 + 1 + 3 + + + + + + 3 + 3 + 1 + + + + + + + + + + + + + + proportional-column-width( + + header + + + ) + + + + + proportional-column-width( + + header + + + ) + + + + + proportional-column-width( + + header + + + ) + + + + + + + + + + + baseline + + + + + + + + + + + + + baseline + + + + + + + + + + + + + baseline + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Error: value in .column.widths at position is not a number. + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0pt + + + + + + 1 + 1 + 3 + + + + + + 3 + 3 + 1 + + + + + + + + + + + + + proportional-column-width( + + footer + + + ) + + + + + proportional-column-width( + + footer + + + ) + + + + + proportional-column-width( + + footer + + + ) + + + + + + + + + + + baseline + + + + + + + + + + + + + baseline + + + + + + + + + + + + + baseline + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + i + i + i + i + 1 + + + + + + + + + + + + + + auto-odd + 1 + + + auto-odd + 1 + 1 + auto-odd + + + + + + + auto + 1 + auto + 1 + 1 + auto + + + + + + + + + + + + end-on-even + + no-force + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/fo/param.xml b/docbook-xsl-1.76.1/fo/param.xml new file mode 100644 index 0000000..d179d36 --- /dev/null +++ b/docbook-xsl-1.76.1/fo/param.xml @@ -0,0 +1,12445 @@ + + + +FO Parameter Reference + +$Id: param.xweb 8543 2009-12-02 06:05:24Z bobstayton $ + + + + Walsh + Norman + + + + 1999 + 2000 + 2001 + 2002 + 2003 + 2004 + 2005 + 2006 + 2007 + Norman Walsh + + + This is reference documentation for all user-configurable + parameters in the DocBook XSL FO stylesheets (for generating + XSL-FO output destined for final print/PDF output). + + +Admonitions + + +admon.graphics +boolean + + +admon.graphics +Use graphics in admonitions? + + + + +<xsl:param name="admon.graphics" select="0"></xsl:param> + + + +Description + +If true (non-zero), admonitions are presented in an alternate style that uses +a graphic. Default graphics are provided in the distribution. + + + + + + + +admon.graphics.extension +string + + +admon.graphics.extension +Filename extension for admonition graphics + + + + +<xsl:param name="admon.graphics.extension">.png</xsl:param> + + + +Description + +Sets the filename extension to use on admonition graphics. + + + + + + +admon.graphics.path +string + + +admon.graphics.path +Path to admonition graphics + + + +<xsl:param name="admon.graphics.path">images/</xsl:param> + + +Description + +Sets the path to the directory containing the admonition graphics +(caution.png, important.png etc). This location is normally relative +to the output html directory. See base.dir + + + + + + +admon.textlabel +boolean + + +admon.textlabel +Use text label in admonitions? + + + + +<xsl:param name="admon.textlabel" select="1"></xsl:param> + + + +Description + +If true (non-zero), admonitions are presented with a generated +text label such as Note or Warning in the appropriate language. +If zero, such labels are turned off, but any title child +of the admonition element are still output. +The default value is 1. + + + + + + + + + admonition.title.properties + attribute set + + +admonition.title.properties +To set the style for admonitions titles. + + + + +<xsl:attribute-set name="admonition.title.properties"> + <xsl:attribute name="font-size">14pt</xsl:attribute> + <xsl:attribute name="font-weight">bold</xsl:attribute> + <xsl:attribute name="hyphenate">false</xsl:attribute> + <xsl:attribute name="keep-with-next.within-column">always</xsl:attribute> +</xsl:attribute-set> + + +Description +How do you want admonitions titles styled? +Set the font-size, weight etc to the style required. + + + + + + + admonition.properties + attribute set + + +admonition.properties +To set the style for admonitions. + + + +<xsl:attribute-set name="admonition.properties"></xsl:attribute-set> + + +Description +How do you want admonitions styled? +Set the font-size, weight, etc. to the style required + + + + + + +graphical.admonition.properties +attribute set + + +graphical.admonition.properties +To add properties to the outer block of a graphical admonition. + + + +<xsl:attribute-set name="graphical.admonition.properties"> + <xsl:attribute name="space-before.optimum">1em</xsl:attribute> + <xsl:attribute name="space-before.minimum">0.8em</xsl:attribute> + <xsl:attribute name="space-before.maximum">1.2em</xsl:attribute> + <xsl:attribute name="space-after.optimum">1em</xsl:attribute> + <xsl:attribute name="space-after.minimum">0.8em</xsl:attribute> + <xsl:attribute name="space-after.maximum">1.2em</xsl:attribute> +</xsl:attribute-set> + + +Description +These properties are added to the outer block containing the +entire graphical admonition, including its title. +It is used when the parameter +admon.graphics is set to nonzero. +Use this attribute-set to set the space above and below, +and any indent for the whole admonition. + +In addition to these properties, a graphical admonition +also applies the admonition.title.properties +attribute-set to the title, and applies the +admonition.properties attribute-set +to the rest of the content. + + + + + + +nongraphical.admonition.properties +attribute set + + +nongraphical.admonition.properties +To add properties to the outer block of a nongraphical admonition. + + + +<xsl:attribute-set name="nongraphical.admonition.properties"> + <xsl:attribute name="space-before.minimum">0.8em</xsl:attribute> + <xsl:attribute name="space-before.optimum">1em</xsl:attribute> + <xsl:attribute name="space-before.maximum">1.2em</xsl:attribute> + <xsl:attribute name="margin-{$direction.align.start}">0.25in</xsl:attribute> + <xsl:attribute name="margin-{$direction.align.end}">0.25in</xsl:attribute> +</xsl:attribute-set> + + +Description +These properties are added to the outer block containing the +entire nongraphical admonition, including its title. +It is used when the parameter +admon.graphics is set to zero. +Use this attribute-set to set the space above and below, +and any indent for the whole admonition. + +In addition to these properties, a nongraphical admonition +also applies the admonition.title.properties +attribute-set to the title, and the +admonition.properties attribute-set +to the rest of the content. + + + + + +Callouts + + +callout.defaultcolumn +integer + + +callout.defaultcolumn +Indicates what column callouts appear in by default + + + + +<xsl:param name="callout.defaultcolumn">60</xsl:param> + + + +Description + +If a callout does not identify a column (for example, if it uses +the linerange unit), +it will appear in the default column. + + + + + + + +callout.graphics +boolean + + +callout.graphics +Use graphics for callouts? + + + + +<xsl:param name="callout.graphics" select="1"></xsl:param> + + + +Description + +If non-zero, callouts are presented with graphics (e.g., reverse-video +circled numbers instead of "(1)", "(2)", etc.). +Default graphics are provided in the distribution. + + + + + + + +callout.graphics.extension +string + + +callout.graphics.extension +Filename extension for callout graphics + + + + + +<xsl:param name="callout.graphics.extension">.svg</xsl:param> + + + +Description +Sets the filename extension to use on callout graphics. + + +The Docbook XSL distribution provides callout graphics in the following formats: +SVG (extension: .svg) +PNG (extension: .png) +GIF (extension: .gif) + + + + + + +callout.graphics.number.limit +integer + + +callout.graphics.number.limit +Number of the largest callout graphic + + + + + +<xsl:param name="callout.graphics.number.limit">30</xsl:param> + + + +Description + +If callout.graphics is non-zero, graphics +are used to represent callout numbers instead of plain text. The value +of callout.graphics.number.limit is the largest +number for which a graphic exists. If the callout number exceeds this +limit, the default presentation "(plain text instead of a graphic)" +will be used. + + + + + + + +callout.graphics.path +string + + +callout.graphics.path +Path to callout graphics + + + + +<xsl:param name="callout.graphics.path">images/callouts/</xsl:param> + + + +Description + +Sets the path to the directory holding the callout graphics. his +location is normally relative to the output html directory. see +base.dir. Always terminate the directory with / since the graphic file +is appended to this string, hence needs the separator. + + + + + + + +callout.icon.size +length + + +callout.icon.size +Specifies the size of callout marker icons + + + + +<xsl:param name="callout.icon.size">7pt</xsl:param> + + + +Description + +Specifies the size of the callout marker icons. +The default size is 7 points. + + + + + + +callout.unicode +boolean + + +callout.unicode +Use Unicode characters rather than images for callouts. + + + +<xsl:param name="callout.unicode" select="0"></xsl:param> + + +Description + +The stylesheets can use either an image of the numbers one to ten, or the single Unicode character which represents the numeral, in white on a black background. Use this to select the Unicode character option. + + + + + + + +callout.unicode.font +string + + +callout.unicode.font +Specify a font for Unicode glyphs + + + + +<xsl:param name="callout.unicode.font">ZapfDingbats</xsl:param> + + + +Description + +The name of the font to specify around Unicode callout glyphs. +If set to the empty string, no font change will occur. + + + + + + + +callout.unicode.number.limit +integer + + +callout.unicode.number.limit +Number of the largest unicode callout character + + + + +<xsl:param name="callout.unicode.number.limit">10</xsl:param> + + + +Description + +If callout.unicode +is non-zero, unicode characters are used to represent +callout numbers. The value of +callout.unicode.number.limit +is +the largest number for which a unicode character exists. If the callout number +exceeds this limit, the default presentation "(nnn)" will always +be used. + + + + + + + +callout.unicode.start.character +integer + + +callout.unicode.start.character +First Unicode character to use, decimal value. + + + + +<xsl:param name="callout.unicode.start.character">10102</xsl:param> + + + +Description + +If callout.graphics is zero and callout.unicode +is non-zero, unicode characters are used to represent +callout numbers. The value of +callout.unicode.start.character +is the decimal unicode value used for callout number one. Currently, +only 10102 is supported in the stylesheets for this parameter. + + + + + + + +callouts.extension +boolean + + +callouts.extension +Enable the callout extension + + + + +<xsl:param name="callouts.extension" select="1"></xsl:param> + + + +Description + +The callouts extension processes areaset +elements in programlistingco and other text-based +callout elements. + + + + + + +ToC/LoT/Index Generation + + +autotoc.label.separator +string + + +autotoc.label.separator +Separator between labels and titles in the ToC + + + + +<xsl:param name="autotoc.label.separator">. </xsl:param> + + + +Description + +String used to separate labels and titles in a table of contents. + + + + + + +process.empty.source.toc +boolean + + +process.empty.source.toc +Generate automated TOC if toc element occurs in a source document? + + + +<xsl:param name="process.empty.source.toc" select="0"></xsl:param> + + +Description + +Specifies that if an empty toc element is found in a +source document, an automated TOC is generated at this point in the +document. + + Depending on what the value of the + generate.toc parameter is, setting this + parameter to 1 could result in generation of + duplicate automated TOCs. So the + process.empty.source.toc is primarily useful + as an "override": by placing an empty toc in your + document and setting this parameter to 1, you can + force a TOC to be generated even if generate.toc + says not to. + + + + + + + + +process.source.toc +boolean + + +process.source.toc +Process a non-empty toc element if it occurs in a source document? + + + +<xsl:param name="process.source.toc" select="0"></xsl:param> + + +Description + +Specifies that the contents of a non-empty "hard-coded" +toc element in a source document are processed to +generate a TOC in output. + + This parameter has no effect on automated generation of + TOCs. An automated TOC may still be generated along with the + "hard-coded" TOC. To suppress automated TOC generation, adjust the + value of the generate.toc paramameter. + + The process.source.toc parameter also has + no effect if the toc element is empty; handling + for empty toc is controlled by the + process.empty.source.toc parameter. + + + + + + + + +generate.toc +table + + +generate.toc +Control generation of ToCs and LoTs + + + + + +<xsl:param name="generate.toc"> +/appendix toc,title +article/appendix nop +/article toc,title +book toc,title,figure,table,example,equation +/chapter toc,title +part toc,title +/preface toc,title +reference toc,title +/sect1 toc +/sect2 toc +/sect3 toc +/sect4 toc +/sect5 toc +/section toc +set toc,title +</xsl:param> + + + +Description + +This parameter has a structured value. It is a table of space-delimited +path/value pairs. Each path identifies some element in the source document +using a restricted subset of XPath (only the implicit child axis, no wildcards, +no predicates). Paths can be either relative or absolute. + +When processing a particular element, the stylesheets consult this table to +determine if a ToC (or LoT(s)) should be generated. + +For example, consider the entry: + +book toc,figure + +This indicates that whenever a book is formatted, a +Table Of Contents and a List of Figures should be generated. Similarly, + +/chapter toc + +indicates that whenever a document that has a root +of chapter is formatted, a Table of +Contents should be generated. The entry chapter would match +all chapters, but /chapter matches only chapter +document elements. + +Generally, the longest match wins. So, for example, if you want to distinguish +articles in books from articles in parts, you could use these two entries: + +book/article toc,figure +part/article toc + +Note that an article in a part can never match a book/article, +so if you want nothing to be generated for articles in parts, you can simply leave +that rule out. + +If you want to leave the rule in, to make it explicit that you're turning +something off, use the value nop. For example, the following +entry disables ToCs and LoTs for articles: + +article nop + +Do not simply leave the word article in the file +without a matching value. That'd be just begging the silly little +path/value parser to get confused. + +Section ToCs are further controlled by the +generate.section.toc.level parameter. +For a given section level to have a ToC, it must have both an entry in +generate.toc and be within the range enabled by +generate.section.toc.level. + + + + + +generate.index +boolean + + +generate.index +Do you want an index? + + + +<xsl:param name="generate.index" select="1"></xsl:param> + + +Description + +Specify if an index should be generated. + + + + + + +make.index.markup +boolean + + +make.index.markup +Generate XML index markup in the index? + + + + +<xsl:param name="make.index.markup" select="0"></xsl:param> + + + +Description + +This parameter enables a very neat trick for getting properly +merged, collated back-of-the-book indexes. G. Ken Holman suggested +this trick at Extreme Markup Languages 2002 and I'm indebted to him +for it. + +Jeni Tennison's excellent code in +autoidx.xsl does a great job of merging and +sorting indexterms in the document and building a +back-of-the-book index. However, there's one thing that it cannot +reasonably be expected to do: merge page numbers into ranges. (I would +not have thought that it could collate and suppress duplicate page +numbers, but in fact it appears to manage that task somehow.) + +Ken's trick is to produce a document in which the index at the +back of the book is displayed in XML. Because the index +is generated by the FO processor, all of the page numbers have been resolved. +It's a bit hard to explain, but what it boils down to is that instead of having +an index at the back of the book that looks like this: + +
    +A +ap1, 1, 2, 3 + +
    + +you get one that looks like this: + +
    +<indexdiv>A</indexdiv> +<indexentry> +<primaryie>ap1</primaryie>, +<phrase role="pageno">1</phrase>, +<phrase role="pageno">2</phrase>, +<phrase role="pageno">3</phrase> +</indexentry> +
    + +After building a PDF file with this sort of odd-looking index, you can +extract the text from the PDF file and the result is a proper index expressed in +XML. + +Now you have data that's amenable to processing and a simple Perl script +(such as fo/pdf2index) can +merge page ranges and generate a proper index. + +Finally, reformat your original document using this literal index instead of +an automatically generated one and bingo! + +
    +
    + + + +index.method +list +basic +kosek +kimber + + +index.method +Select method used to group index entries in an index + + + + +<xsl:param name="index.method">basic</xsl:param> + + + +Description + +This parameter lets you select which method to use for sorting and grouping + index entries in an index. +Indexes in Latin-based languages that have accented characters typically +sort together accented words and unaccented words. +Thus Á (U+00C1 LATIN CAPITAL LETTER A WITH ACUTE) would sort together +with A (U+0041 LATIN CAPITAL LETTER A), so both would appear in the A +section of the index. +Languages using other alphabets (such as Russian, which is written in the Cyrillic alphabet) +and languages using ideographic chararacters (such as Japanese) +require grouping specific to the languages and alphabets. + + +The default indexing method is limited. +It can group accented characters in Latin-based languages only. +It cannot handle non-Latin alphabets or ideographic languages. +The other indexing methods require extensions of one type or +another, and do not work with +all XSLT processors, which is why they are not used by default. + +The three choices for indexing method are: + + +basic + + +(default) Sort and groups words based only on the Latin alphabet. +Words with accented Latin letters will group and sort with +their respective primary letter, but +words in non-Latin alphabets will be +put in the Symbols section of the index. + + + + +kosek + + +This method sorts and groups words based on letter groups configured in +the DocBook locale file for the given language. +See, for example, the French locale file common/fr.xml. +This method requires that the XSLT processor +supports the EXSLT extensions (most do). +It also requires support for using +user-defined functions in xsl:key (xsltproc does not). + +This method is suitable for any language for which you can +list all the individual characters that should appear +in each letter group in an index. +It is probably not practical to use it for ideographic languages +such as Chinese that have hundreds or thousands of characters. + + +To use the kosek method, you must: + + + +Use a processor that supports its extensions, such as +Saxon 6 or Xalan (xsltproc and Saxon 8 do not). + + + +Set the index.method parameter's value to kosek. + + + +Import the appropriate index extensions stylesheet module +fo/autoidx-kosek.xsl or +html/autoidx-kosek.xsl into your +customization. + + + + + + + +kimber + + +This method uses extensions to the Saxon processor to implement +sophisticated indexing processes. It uses its own +configuration file, which can include information for any number of +languages. Each language's configuration can group +words using one of two processes. In the +enumerated process similar to that used in the kosek method, +you indicate the groupings character-by-character. +In the between-key process, you specify the +break-points in the sort order that should start a new group. +The latter configuration is useful for ideographic languages +such as Chinese, Japanese, and Korean. +You can also define your own collation algorithms and how you +want mixed Latin-alphabet words sorted. + + +For a whitepaper describing the extensions, see: +http://www.innodata-isogen.com/knowledge_center/white_papers/back_of_book_for_xsl_fo.pdf. + + + +To download the extension library, see +http://www.innodata-isogen.com/knowledge_center/tools_downloads/i18nsupport. + + + + +To use the kimber method, you must: + + + +Use Saxon (version 6 or 8) as your XSLT processor. + + + +Install and configure the Innodata Isogen library, using +the documentation that comes with it. + + + +Set the index.method parameter's value to kimber. + + + +Import the appropriate index extensions stylesheet module +fo/autoidx-kimber.xsl or +html/autoidx-kimber.xsl into your +customization. + + + + + + + + + + + + + +index.on.type +boolean + + +index.on.type +Select indexterms based on type +attribute value + + + + +<xsl:param name="index.on.type" select="0"></xsl:param> + + + +Description + + +If non-zero, +then an index element that has a +type attribute +value will contain only those indexterm +elements with a matching type attribute value. +If an index has no type +attribute or it is blank, then the index will contain +all indexterms in the current scope. + + + +If index.on.type is zero, then the +type attribute has no effect +on selecting indexterms for an index. + + +For those using DocBook version 4.2 or earlier, +the type attribute is not available +for index terms. However, you can achieve the same +effect by using the role attribute +in the same manner on indexterm +and index, and setting the stylesheet parameter +index.on.role to a nonzero value. + + + + + + + +index.on.role +boolean + + +index.on.role +Select indexterms based on role value + + + + +<xsl:param name="index.on.role" select="0"></xsl:param> + + + +Description + + +If non-zero, +then an index element that has a +role attribute +value will contain only those indexterm +elements with a matching role value. +If an index has no role +attribute or it is blank, then the index will contain +all indexterms in the current scope. + + +If index.on.role is zero, then the +role attribute has no effect +on selecting indexterms for an index. + + +If you are using DocBook version 4.3 or later, you should +use the type attribute instead of role +on indexterm and index, +and set the index.on.type to a nonzero +value. + + + + + + + +index.preferred.page.properties +attribute set + + +index.preferred.page.properties +Properties used to emphasize page number references for +significant index terms + + + + +<xsl:attribute-set name="index.preferred.page.properties"> + <xsl:attribute name="font-weight">bold</xsl:attribute> +</xsl:attribute-set> + + + +Description + +Properties used to emphasize page number references for +significant index terms (significance=preferred). Currently works only with +XEP. + + + + + + +index.entry.properties +attribute set + + +index.entry.properties +Properties applied to the formatted entries +in an index + + + + +<xsl:attribute-set name="index.entry.properties"> + <xsl:attribute name="start-indent">0pt</xsl:attribute> +</xsl:attribute-set> + + + +Description + +This attribute set is applied to the block containing +the entries in a letter division in an index. It can be used to set the +font-size, font-family, and other inheritable properties that will be +applied to all index entries. + + + + + + +index.div.title.properties +attribute set + + +index.div.title.properties +Properties associated with the letter headings in an +index + + + + +<xsl:attribute-set name="index.div.title.properties"> + <xsl:attribute name="margin-{$direction.align.start}">0pt</xsl:attribute> + <xsl:attribute name="font-size">14.4pt</xsl:attribute> + <xsl:attribute name="font-family"><xsl:value-of select="$title.fontset"></xsl:value-of></xsl:attribute> + <xsl:attribute name="font-weight">bold</xsl:attribute> + <xsl:attribute name="keep-with-next.within-column">always</xsl:attribute> + <xsl:attribute name="space-before.optimum"><xsl:value-of select="concat($body.font.master,'pt')"></xsl:value-of></xsl:attribute> + <xsl:attribute name="space-before.minimum"><xsl:value-of select="concat($body.font.master,'pt * 0.8')"></xsl:value-of></xsl:attribute> + <xsl:attribute name="space-before.maximum"><xsl:value-of select="concat($body.font.master,'pt * 1.2')"></xsl:value-of></xsl:attribute> + <xsl:attribute name="start-indent">0pt</xsl:attribute> +</xsl:attribute-set> + + + +Description + +This attribute set is used on the letter headings that separate +the divisions in an index. + + + + + + +index.number.separator +string + + +index.number.separator +Override for punctuation separating page numbers in index + + + + +<xsl:param name="index.number.separator"></xsl:param> + + + +Description + +This parameter permits you to override the text to insert between +page references in a formatted index entry. Typically +that would be a comma and a space. + + +Because this text may be locale dependent, +this parameter's value is normally taken from a gentext +template named 'number-separator' in the +context 'index' in the stylesheet +locale file for the language +of the current document. +This parameter can be used to override the gentext string, +and would typically be used on the command line. +This parameter would apply to all languages. + + +So this text string can be customized in two ways. +You can reset the default gentext string using +the local.l10n.xml parameter, or you can +override the gentext with the content of this parameter. +The content can be a simple string, or it can be +something more complex such as a call-template. + + +In HTML index output, section title references are used instead of +page number references. This punctuation appears between +such section titles in an HTML index. + + + + + + + +index.range.separator +string + + +index.range.separator +Override for punctuation separating the two numbers +in a page range in index + + + + +<xsl:param name="index.range.separator"></xsl:param> + + + +Description + +This parameter permits you +to override the text to insert between +the two numbers of a page range in an index. +This parameter is only used by those XSL-FO processors +that support an extension for generating such page ranges +(such as XEP). + +Because this text may be locale dependent, +this parameter's value is normally taken from a gentext +template named 'range-separator' in the +context 'index' in the stylesheet +locale file for the language +of the current document. +This parameter can be used to override the gentext string, +and would typically be used on the command line. +This parameter would apply to all languages. + + +So this text string can be customized in two ways. +You can reset the default gentext string using +the local.l10n.xml parameter, or you can +override the gentext with the content of this parameter. +The content can be a simple string, or it can be +something more complex such as a call-template. + + +In HTML index output, section title references are used instead of +page number references. So there are no page ranges +and this parameter has no effect. + + + + + + + +index.term.separator +string + + +index.term.separator +Override for punctuation separating an index term +from its list of page references in an index + + + + +<xsl:param name="index.term.separator"></xsl:param> + + + +Description + +This parameter permits you to override +the text to insert between +the end of an index term and its list of page references. +Typically that might be a comma and a space. + + +Because this text may be locale dependent, +this parameter's value is normally taken from a gentext +template named 'term-separator' in the +context 'index' in the stylesheet +locale file for the language +of the current document. +This parameter can be used to override the gentext string, +and would typically be used on the command line. +This parameter would apply to all languages. + + +So this text string can be customized in two ways. +You can reset the default gentext string using +the local.l10n.xml parameter, or you can +fill in the content for this normally empty +override parameter. +The content can be a simple string, or it can be +something more complex such as a call-template. +For fo output, it could be an fo:leader +element to provide space of a specific length, or a dot leader. + + + + + + + +xep.index.item.properties +attribute set + + +xep.index.item.properties +Properties associated with XEP index-items + + + + +<xsl:attribute-set name="xep.index.item.properties" use-attribute-sets="index.page.number.properties"> + <xsl:attribute name="merge-subsequent-page-numbers">true</xsl:attribute> + <xsl:attribute name="link-back">true</xsl:attribute> +</xsl:attribute-set> + + + +Description + +Properties associated with XEP index-items, which generate +page numbers in an index processed by XEP. For more info see +the XEP documentation section "Indexes" in +http://www.renderx.com/reference.html#Indexes. + +This attribute-set also adds by default any properties from the +index.page.number.properties +attribute-set. + + + + + +toc.section.depth +integer + + +toc.section.depth +How deep should recursive sections appear +in the TOC? + + + +<xsl:param name="toc.section.depth">2</xsl:param> + + +Description + +Specifies the depth to which recursive sections should appear in the +TOC. + + + + + + + +toc.max.depth +integer + + +toc.max.depth +How many levels should be created for each TOC? + + + +<xsl:param name="toc.max.depth">8</xsl:param> + + +Description + +Specifies the maximal depth of TOC on all levels. + + + + + + +toc.indent.width +float + + +toc.indent.width +Amount of indentation for TOC entries + + + + +<xsl:param name="toc.indent.width">24</xsl:param> +<!-- inconsistant point specification? --> + + + +Description + +Specifies, in points, the distance by which each level of the +TOC is indented from its parent. + +This value is expressed in points, without +a unit (in other words, it is a bare number). Using a bare number allows the stylesheet +to perform calculations that would otherwise have to be performed by the FO processor +because not all processors support expressions. + + + + + + +toc.line.properties +attribute set + + +toc.line.properties +Properties for lines in ToCs and LoTs + + + + +<xsl:attribute-set name="toc.line.properties"> + <xsl:attribute name="text-align-last">justify</xsl:attribute> + <xsl:attribute name="text-align">start</xsl:attribute> + <xsl:attribute name="end-indent"><xsl:value-of select="concat($toc.indent.width, 'pt')"></xsl:value-of></xsl:attribute> + <xsl:attribute name="last-line-end-indent"><xsl:value-of select="concat('-', $toc.indent.width, 'pt')"></xsl:value-of></xsl:attribute> +</xsl:attribute-set> + + + +Description + +Properties which are applied to every line in ToC (or LoT). You can +modify them in order to change appearance of all, or some lines. For +example, in order to make lines for chapters bold, specify the +following in your customization layer: + +<xsl:attribute-set name="toc.line.properties"> + <xsl:attribute name="font-weight"> + <xsl:choose> + <xsl:when test="self::chapter">bold</xsl:when> + <xsl:otherwise>normal</xsl:otherwise> + </xsl:choose> + </xsl:attribute> +</xsl:attribute-set> + + + + + + +toc.margin.properties +attribute set + + +toc.margin.properties +Margin properties used on Tables of Contents + + + + +<xsl:attribute-set name="toc.margin.properties"> + <xsl:attribute name="space-before.minimum">0.5em</xsl:attribute> + <xsl:attribute name="space-before.optimum">1em</xsl:attribute> + <xsl:attribute name="space-before.maximum">2em</xsl:attribute> + <xsl:attribute name="space-after.minimum">0.5em</xsl:attribute> + <xsl:attribute name="space-after.optimum">1em</xsl:attribute> + <xsl:attribute name="space-after.maximum">2em</xsl:attribute> +</xsl:attribute-set> + + + +Description +This attribute set is used on Tables of Contents. These attributes are set +on the wrapper that surrounds the ToC block, not on each individual lines. + + + + + +bridgehead.in.toc +boolean + + +bridgehead.in.toc +Should bridgehead elements appear in the TOC? + + + +<xsl:param name="bridgehead.in.toc" select="0"></xsl:param> + + +Description + +If non-zero, bridgeheads appear in the TOC. Note that +this option is not fully supported and may be removed in a future +version of the stylesheets. + + + + + + + +simplesect.in.toc +boolean + + +simplesect.in.toc +Should simplesect elements appear in the TOC? + + + +<xsl:param name="simplesect.in.toc" select="0"></xsl:param> + + +Description + +If non-zero, simplesects will be included in the TOC. + + + + + + + +generate.section.toc.level +integer + + +generate.section.toc.level +Control depth of TOC generation in sections + + + + +<xsl:param name="generate.section.toc.level" select="0"></xsl:param> + + + +Description + +The generate.section.toc.level parameter +controls the depth of section in which TOCs will be generated. Note +that this is related to, but not the same as +toc.section.depth, which controls the depth to +which TOC entries will be generated in a given TOC. +If, for example, generate.section.toc.level +is 3, TOCs will be generated in first, second, and third +level sections, but not in fourth level sections. + + + + + + + + +
    +Processor Extensions + + +arbortext.extensions +boolean + + +arbortext.extensions +Enable Arbortext extensions? + + + +<xsl:param name="arbortext.extensions" select="0"></xsl:param> + + +Description + +If non-zero, +Arbortext +extensions will be used. + +This parameter can also affect which graphics file formats +are supported + + + + + + +axf.extensions +boolean + + +axf.extensions +Enable XSL Formatter extensions? + + + + +<xsl:param name="axf.extensions" select="0"></xsl:param> + + + +Description + +If non-zero, +XSL Formatter +extensions will be used. XSL Formatter extensions consists of PDF bookmarks, +document information and better index processing. + +This parameter can also affect which graphics file formats +are supported + + + + + + +fop.extensions +boolean + + +fop.extensions +Enable extensions for FOP version 0.20.5 and earlier + + + +<xsl:param name="fop.extensions" select="0"></xsl:param> + + +Description + +If non-zero, extensions intended for +FOP +version 0.20.5 and earlier will be used. +At present, this consists of PDF bookmarks. + + +This parameter can also affect which graphics file formats +are supported. + +If you are using a version of FOP beyond +version 0.20.5, then use the fop1.extensions parameter +instead. + + + + + + +fop1.extensions +boolean + + +fop1.extensions +Enable extensions for FOP version 0.90 and later + + + +<xsl:param name="fop1.extensions" select="0"></xsl:param> + + +Description + +If non-zero, extensions for +FOP +version 0.90 and later will be used. + + +This parameter can also affect which graphics file formats +are supported. + +The original fop.extensions parameter +should still be used for FOP version 0.20.5 and earlier. + + + + + + +passivetex.extensions +boolean + + +passivetex.extensions +Enable PassiveTeX extensions? + + + +<xsl:param name="passivetex.extensions" select="0"></xsl:param> + + +Description + +If non-zero, +PassiveTeX +extensions will be used. At present, this consists of PDF bookmarks +and sorted index terms. + + +This parameter can also affect which graphics file formats +are supported + + + PassiveTeX is incomplete and development has ceased. In most cases, +another XSL-FO engine is probably a better choice. + + + + + + + +tex.math.in.alt +list +plain +latex + + +tex.math.in.alt +TeX notation used for equations + + + + +<xsl:param name="tex.math.in.alt"></xsl:param> + + + +Description + +If you want type math directly in TeX notation in equations, +this parameter specifies notation used. Currently are supported two +values -- plain and latex. Empty +value means that you are not using TeX math at all. + +Preferred way for including TeX alternative of math is inside of +textobject element. Eg.: + +<inlineequation> +<inlinemediaobject> +<imageobject> +<imagedata fileref="eq1.gif"/> +</imageobject> +<textobject><phrase>E=mc squared</phrase></textobject> +<textobject role="tex"><phrase>E=mc^2</phrase></textobject> +</inlinemediaobject> +</inlineequation> + +If you are using graphic element, you can +store TeX inside alt element: + +<inlineequation> +<alt role="tex">a^2+b^2=c^2</alt> +<graphic fileref="a2b2c2.gif"/> +</inlineequation> + +If you want use this feature, you should process your FO with +PassiveTeX, which only supports TeX math notation. When calling +stylsheet, don't forget to specify also +passivetex.extensions=1. + +If you want equations in HTML, just process generated file +tex-math-equations.tex by TeX or LaTeX. Then run +dvi2bitmap program on result DVI file. You will get images for +equations in your document. + + + This feature is useful for print/PDF output only if you + use the obsolete and now unsupported PassiveTeX XSL-FO + engine. + + + + +Related Parameters + tex.math.delims, + passivetex.extensions, + tex.math.file + + + + + + +tex.math.delims +boolean + + +tex.math.delims +Should equations output for processing by TeX be +surrounded by math mode delimiters? + + + + +<xsl:param name="tex.math.delims" select="1"></xsl:param> + + + +Description + +For compatibility with DSSSL based DBTeXMath from Allin Cottrell +you should set this parameter to 0. + + + This feature is useful for print/PDF output only if you + use the obsolete and now unsupported PassiveTeX XSL-FO + engine. + + + +Related Parameters + tex.math.in.alt, + passivetex.extensions + + +See Also + You can also use the dbtex delims processing + instruction to control whether delimiters are output. + + + + + + + +xep.extensions +boolean + + +xep.extensions +Enable XEP extensions? + + + +<xsl:param name="xep.extensions" select="0"></xsl:param> + + +Description + +If non-zero, +XEP +extensions will be used. XEP extensions consists of PDF bookmarks, +document information and better index processing. + + +This parameter can also affect which graphics file formats +are supported + + + + +Stylesheet Extensions + + +linenumbering.everyNth +integer + + +linenumbering.everyNth +Indicate which lines should be numbered + + + + +<xsl:param name="linenumbering.everyNth">5</xsl:param> + + + +Description + +If line numbering is enabled, everyNth line will be +numbered. Note that numbering is one based, not zero based. + + + + + + + +linenumbering.extension +boolean + + +linenumbering.extension +Enable the line numbering extension + + + + +<xsl:param name="linenumbering.extension" select="1"></xsl:param> + + + +Description + +If non-zero, verbatim environments (address, literallayout, +programlisting, screen, synopsis) that specify line numbering will +have line numbers. + + + + + + + +linenumbering.separator +string + + +linenumbering.separator +Specify a separator between line numbers and lines + + + + +<xsl:param name="linenumbering.separator"><xsl:text> </xsl:text></xsl:param> + + + +Description + +The separator is inserted between line numbers and lines in the +verbatim environment. The default value is a single white space. + Note the interaction with linenumbering.width + + + + + + + +linenumbering.width +integer + + +linenumbering.width +Indicates the width of line numbers + + + + +<xsl:param name="linenumbering.width">3</xsl:param> + + + +Description + +If line numbering is enabled, line numbers will appear right +justified in a field "width" characters wide. + + + + + + + +tablecolumns.extension +boolean + + +tablecolumns.extension +Enable the table columns extension function + + + + +<xsl:param name="tablecolumns.extension" select="1"></xsl:param> + + + +Description + +The table columns extension function adjusts the widths of table +columns in the HTML result to more accurately reflect the specifications +in the CALS table. + + + + + + + + textinsert.extension + boolean + + + textinsert.extension + Enables the textinsert extension element + + + + <xsl:param name="textinsert.extension" select="1"></xsl:param> + + + Description + The textinsert extension element inserts the contents of + a file into the result tree (as text). + + To use the textinsert extension element, you must use + either Saxon or Xalan as your XSLT processor (it doesn’t + work with xsltproc), along with either the DocBook Saxon + extensions or DocBook Xalan extensions (for more + information about those extensions, see DocBook Saxon Extensions and DocBook Xalan Extensions), and you must set both + the use.extensions and + textinsert.extension parameters to + 1. + As an alternative to using the textinsert element, + consider using an Xinclude element with the + parse="text" attribute and value + specified, as detailed in Using XInclude for text inclusions. + + + See Also + You can also use the dbhtml-include href processing + instruction to insert external files — both files containing + plain text and files with markup content (including HTML + content). + + More information + For how-to documentation on inserting contents of + external code files and other text files into output, see + External code files. + For guidelines on inserting contents of + HTML files into output, see Inserting external HTML code. + + + + + +textdata.default.encoding +string + + +textdata.default.encoding +Default encoding of external text files which are included +using textdata element + + + + +<xsl:param name="textdata.default.encoding"></xsl:param> + + + +Description + +Specifies the encoding of any external text files included using +textdata element. This value is used only when you do +not specify encoding by the appropriate attribute +directly on textdata. An empty string is interpreted as the system +default encoding. + + + + + + +use.extensions +boolean + + +use.extensions +Enable extensions + + + + +<xsl:param name="use.extensions" select="0"></xsl:param> + + + +Description + +If non-zero, extensions may be used. Each extension is +further controlled by its own parameter. But if +use.extensions is zero, no extensions will +be used. + + + + + + +Automatic labelling + + +appendix.autolabel +list +0none +11,2,3... +AA,B,C... +aa,b,c... +ii,ii,iii... +II,II,III... + + +appendix.autolabel +Specifies the labeling format for Appendix titles + + + + +<xsl:param name="appendix.autolabel">A</xsl:param> + + + +Description + +If non-zero, then appendices will be numbered using the +parameter value as the number format if the value matches one of the +following: + + + + + 1 or arabic + + Arabic numeration (1, 2, 3 ...). + + + + A or upperalpha + + Uppercase letter numeration (A, B, C ...). + + + + a or loweralpha + + Lowercase letter numeration (a, b, c ...). + + + + I or upperroman + + Uppercase roman numeration (I, II, III ...). + + + + i or lowerroman + + Lowercase roman letter numeration (i, ii, iii ...). + + + + +Any nonzero value other than the above will generate +the default number format (upperalpha). + + + + + + + +chapter.autolabel +list +0none +11,2,3... +AA,B,C... +aa,b,c... +ii,ii,iii... +II,II,III... + + +chapter.autolabel +Specifies the labeling format for Chapter titles + + + + +<xsl:param name="chapter.autolabel" select="1"></xsl:param> + + +Description + +If non-zero, then chapters will be numbered using the parameter +value as the number format if the value matches one of the following: + + + + + 1 or arabic + + Arabic numeration (1, 2, 3 ...). + + + + A or upperalpha + + Uppercase letter numeration (A, B, C ...). + + + + a or loweralpha + + Lowercase letter numeration (a, b, c ...). + + + + I or upperroman + + Uppercase roman numeration (I, II, III ...). + + + + i or lowerroman + + Lowercase roman letter numeration (i, ii, iii ...). + + + + +Any nonzero value other than the above will generate +the default number format (arabic). + + + + + + + +part.autolabel +list +0none +11,2,3... +AA,B,C... +aa,b,c... +ii,ii,iii... +II,II,III... + + +part.autolabel +Specifies the labeling format for Part titles + + + + +<xsl:param name="part.autolabel">I</xsl:param> + + + +Description + +If non-zero, then parts will be numbered using the parameter +value as the number format if the value matches one of the following: + + + + + 1 or arabic + + Arabic numeration (1, 2, 3 ...). + + + + A or upperalpha + + Uppercase letter numeration (A, B, C ...). + + + + a or loweralpha + + Lowercase letter numeration (a, b, c ...). + + + + I or upperroman + + Uppercase roman numeration (I, II, III ...). + + + + i or lowerroman + + Lowercase roman letter numeration (i, ii, iii ...). + + + + +Any nonzero value other than the above will generate +the default number format (upperroman). + + + + + + + + +reference.autolabel +list +0none +11,2,3... +AA,B,C... +aa,b,c... +ii,ii,iii... +II,II,III... + + +reference.autolabel +Specifies the labeling format for Reference titles + + + + <xsl:param name="reference.autolabel">I</xsl:param> + + +Description +If non-zero, references will be numbered using the parameter + value as the number format if the value matches one of the + following: + + + + 1 or arabic + + Arabic numeration (1, 2, 3 ...). + + + + A or upperalpha + + Uppercase letter numeration (A, B, C ...). + + + + a or loweralpha + + Lowercase letter numeration (a, b, c ...). + + + + I or upperroman + + Uppercase roman numeration (I, II, III ...). + + + + i or lowerroman + + Lowercase roman letter numeration (i, ii, iii ...). + + + +Any non-zero value other than the above will generate +the default number format (upperroman). + + + + + + +preface.autolabel +list +0none +11,2,3... +AA,B,C... +aa,b,c... +ii,ii,iii... +II,II,III... + + +preface.autolabel +Specifices the labeling format for Preface titles + + + +<xsl:param name="preface.autolabel" select="0"></xsl:param> + + +Description + +If non-zero then prefaces will be numbered using the parameter +value as the number format if the value matches one of the following: + + + + + 1 or arabic + + Arabic numeration (1, 2, 3 ...). + + + + A or upperalpha + + Uppercase letter numeration (A, B, C ...). + + + + a or loweralpha + + Lowercase letter numeration (a, b, c ...). + + + + I or upperroman + + Uppercase roman numeration (I, II, III ...). + + + + i or lowerroman + + Lowercase roman letter numeration (i, ii, iii ...). + + + + +Any nonzero value other than the above will generate +the default number format (arabic). + + + + + + + + +section.autolabel +boolean + + +section.autolabel +Are sections enumerated? + + + +<xsl:param name="section.autolabel" select="0"></xsl:param> + + +Description + +If true (non-zero), unlabeled sections will be enumerated. + + + + + + + +section.autolabel.max.depth +integer + + +section.autolabel.max.depth +The deepest level of sections that are numbered. + + + + +<xsl:param name="section.autolabel.max.depth">8</xsl:param> + + + +Description + +When section numbering is turned on by the +section.autolabel parameter, then this +parameter controls the depth of section nesting that is +numbered. Sections nested to a level deeper than this value will not +be numbered. + + + + + + + +section.label.includes.component.label +boolean + + +section.label.includes.component.label +Do section labels include the component label? + + + +<xsl:param name="section.label.includes.component.label" select="0"></xsl:param> + + +Description + +If non-zero, section labels are prefixed with the label of the +component that contains them. + + + + + + + +label.from.part +boolean + + +label.from.part +Renumber components in each part? + + + + +<xsl:param name="label.from.part" select="0"></xsl:param> + + + +Description + +If label.from.part is non-zero, then + numbering of components — preface, + chapter, appendix, and + reference (when reference occurs at the + component level) — is re-started within each + part. +If label.from.part is zero (the + default), numbering of components is not + re-started within each part; instead, components are + numbered sequentially throughout each book, + regardless of whether or not they occur within part + instances. + + + + + + +component.label.includes.part.label +boolean + + +component.label.includes.part.label +Do component labels include the part label? + + + +<xsl:param name="component.label.includes.part.label" select="0"></xsl:param> + + +Description + +If non-zero, number labels for chapter, +appendix, and other component elements are prefixed with +the label of the part element that contains them. So you might see +Chapter II.3 instead of Chapter 3. Also, the labels for formal +elements such as table and figure will include +the part label. If there is no part element container, then no prefix +is generated. + + +This feature is most useful when the +label.from.part parameter is turned on. +In that case, there would be more than one chapter +1, and the extra part label prefix will identify +each chapter unambiguously. + + + + + + +XSLT Processing + + +rootid +string + + +rootid +Specify the root element to format + + + + +<xsl:param name="rootid"></xsl:param> + + +Description + +If rootid is not empty, it must be the +value of an ID that occurs in the document being formatted. The entire +document will be loaded and parsed, but formatting will begin at the +element identified, rather than at the root. For example, this allows +you to process only chapter 4 of a book. +Because the entire document is available to the processor, automatic +numbering, cross references, and other dependencies are correctly +resolved. + + + + + +Meta/*Info + + +make.single.year.ranges +boolean + + +make.single.year.ranges +Print single-year ranges (e.g., 1998-1999) + + + + +<xsl:param name="make.single.year.ranges" select="0"></xsl:param> + + +Description + +If non-zero, year ranges that span a single year will be printed +in range notation (1998-1999) instead of discrete notation +(1998, 1999). + + + + + + +make.year.ranges +boolean + + +make.year.ranges +Collate copyright years into ranges? + + + +<xsl:param name="make.year.ranges" select="0"></xsl:param> + + +Description + +If non-zero, multiple copyright year elements will be +collated into ranges. +This works only if each year number is put into a separate +year element. The copyright element permits multiple +year elements. If a year element contains a dash or +a comma, then that year element will not be merged into +any range. + + + + + + + +author.othername.in.middle +boolean + + +author.othername.in.middle +Is othername in author a +middle name? + + + + +<xsl:param name="author.othername.in.middle" select="1"></xsl:param> + + +Description + +If non-zero, the othername of an author +appears between the firstname and +surname. Otherwise, othername +is suppressed. + + + + + + +Reference Pages + + +funcsynopsis.decoration +boolean + + +funcsynopsis.decoration +Decorate elements of a funcsynopsis? + + + + +<xsl:param name="funcsynopsis.decoration" select="1"></xsl:param> + + + +Description + +If non-zero, elements of the funcsynopsis will be +decorated (e.g. rendered as bold or italic text). The decoration is controlled by +templates that can be redefined in a customization layer. + + + + + + + +funcsynopsis.style +list +ansi +kr + + +funcsynopsis.style +What style of funcsynopsis should be generated? + + + +<xsl:param name="funcsynopsis.style">kr</xsl:param> + + +Description + +If funcsynopsis.style is ansi, +ANSI-style function synopses are generated for a +funcsynopsis, otherwise K&R-style +function synopses are generated. + + + + + + + +function.parens +boolean + + +function.parens +Generate parens after a function? + + + + +<xsl:param name="function.parens" select="0"></xsl:param> + + + +Description + +If non-zero, the formatting of a function element +will include generated parentheses. + + + + + + + +refentry.generate.name +boolean + + +refentry.generate.name +Output NAME header before refnames? + + + + +<xsl:param name="refentry.generate.name" select="1"></xsl:param> + + + +Description + +If non-zero, a "NAME" section title is output before the list +of refnames. This parameter and +refentry.generate.title are mutually +exclusive. This means that if you change this parameter to zero, you +should set refentry.generate.title to non-zero unless +you want get quite strange output. + + + + + + + +refentry.generate.title +boolean + + +refentry.generate.title +Output title before refnames? + + + + +<xsl:param name="refentry.generate.title" select="0"></xsl:param> + + + +Description + +If non-zero, the reference page title or first name is +output before the list of refnames. This parameter and +refentry.generate.name are mutually exclusive. +This means that if you change this parameter to non-zero, you +should set refentry.generate.name to zero unless +you want get quite strange output. + + + + + + + +refentry.pagebreak +boolean + + +refentry.pagebreak +Start each refentry on a new page + + + +<xsl:param name="refentry.pagebreak" select="1"></xsl:param> + + +Description + +If non-zero (the default), each refentry +element will start on a new page. If zero, a page +break will not be generated between refentry elements. +The exception is when the refentry elements are children of +a part element, in which case the page breaks are always +retained. That is because a part element does not generate +a page-sequence for its children, so each refentry must +start its own page-sequence. + + + + + + + +refentry.title.properties +attribute set + + +refentry.title.properties +Title properties for a refentry title + + + + +<xsl:attribute-set name="refentry.title.properties"> + <xsl:attribute name="font-family"> + <xsl:value-of select="$title.font.family"></xsl:value-of> + </xsl:attribute> + <xsl:attribute name="font-size">18pt</xsl:attribute> + <xsl:attribute name="font-weight">bold</xsl:attribute> + <xsl:attribute name="space-after">1em</xsl:attribute> + <xsl:attribute name="hyphenate">false</xsl:attribute> + <xsl:attribute name="keep-with-next.within-column">always</xsl:attribute> + <xsl:attribute name="space-before.minimum">0.8em</xsl:attribute> + <xsl:attribute name="space-before.optimum">1.0em</xsl:attribute> + <xsl:attribute name="space-before.maximum">1.2em</xsl:attribute> + <xsl:attribute name="space-after.optimum">0.5em</xsl:attribute> + <xsl:attribute name="space-after.minimum">0.4em</xsl:attribute> + <xsl:attribute name="space-after.maximum">0.6em</xsl:attribute> + <xsl:attribute name="start-indent"><xsl:value-of select="$title.margin.left"></xsl:value-of></xsl:attribute> +</xsl:attribute-set> + + + +Description + +Formatting properties applied to the title generated for the +refnamediv part of output for +refentry when the value of the +refentry.generate.title parameter is +non-zero. The font size is supplied by the appropriate section.levelX.title.properties +attribute-set, computed from the location of the +refentry in the section hierarchy. + + + This parameter has no effect on the the title generated for + the refnamediv part of output for + refentry when the value of the + refentry.generate.name parameter is + non-zero. By default, that title is formatted with the same + properties as the titles for all other first-level children of + refentry. + + + + + + + +refentry.xref.manvolnum +boolean + + +refentry.xref.manvolnum +Output manvolnum as part of +refentry cross-reference? + + + + +<xsl:param name="refentry.xref.manvolnum" select="1"></xsl:param> + + + +Description + +if non-zero, the manvolnum is used when cross-referencing +refentrys, either with xref +or citerefentry. + + + + + + + +refclass.suppress +boolean + + +refclass.suppress +Suppress display of refclass contents? + + + + +<xsl:param name="refclass.suppress" select="0"></xsl:param> + + +Description + +If the value of refclass.suppress is +non-zero, then display of refclass contents is +suppressed in output. + + + + + +Tables + + +default.table.width +length + + +default.table.width +The default width of tables + + + +<xsl:param name="default.table.width"></xsl:param> + + +Description +If non-zero, this value will be used for the +width attribute on tables that do not specify an +alternate width (with the dbhtml table-width or +dbfo table-width processing instruction). + + + + + +nominal.table.width +length + + +nominal.table.width +The (absolute) nominal width of tables + + + + +<xsl:param name="nominal.table.width">6in</xsl:param> + + + +Description + +In order to convert CALS column widths into HTML column widths, it +is sometimes necessary to have an absolute table width to use for conversion +of mixed absolute and relative widths. This value must be an absolute +length (not a percentage). + + + + + + +default.table.frame +string + + +default.table.frame +The default framing of tables + + + + +<xsl:param name="default.table.frame">all</xsl:param> + + + +Description + +This value will be used when there is no frame attribute on the +table. + + + + + + +default.table.rules +string + + +default.table.rules +The default column and row rules for tables using HTML markup + + + + +<xsl:param name="default.table.rules">none</xsl:param> + + + +Description + +Tables using HTML markup elements can use an attribute +named rules on the table or +informaltable element +to specify whether column and row border rules should be +displayed. This parameter lets you specify a global default +style for all HTML tables that don't otherwise have +that attribute. +These are the supported values: + + +all + +Rules will appear between all rows and columns. + + + +rows + +Rules will appear between rows only. + + + +cols + +Rules will appear between columns only. + + + +groups + +Rules will appear between row groups (thead, tfoot, tbody). +No support for rules between column groups yet. + + + + +none + +No rules. This is the default value. + + + + + + +The border after the last row and the border after +the last column are not affected by +this setting. Those borders are controlled by +the frame attribute on the table element. + + + + + + + +table.cell.padding +attribute set + + +table.cell.padding +Specifies the padding of table cells + + + + +<xsl:attribute-set name="table.cell.padding"> + <xsl:attribute name="padding-start">2pt</xsl:attribute> + <xsl:attribute name="padding-end">2pt</xsl:attribute> + <xsl:attribute name="padding-top">2pt</xsl:attribute> + <xsl:attribute name="padding-bottom">2pt</xsl:attribute> +</xsl:attribute-set> + + + +Description + +Specifies the padding of table cells. + + + + + + +table.frame.border.thickness +length + + +table.frame.border.thickness +Specifies the thickness of the frame border + + + + +<xsl:param name="table.frame.border.thickness">0.5pt</xsl:param> + + + +Description + +Specifies the thickness of the border on the table's frame. + + + + + + +table.frame.border.style +list +none +solid +dotted +dashed +double +groove +ridge +inset +outset +solid + + +table.frame.border.style +Specifies the border style of table frames + + + + +<xsl:param name="table.frame.border.style">solid</xsl:param> + + + +Description + +Specifies the border style of table frames. + + + + + + +table.frame.border.color +color + + +table.frame.border.color +Specifies the border color of table frames + + + + + +<xsl:param name="table.frame.border.color">black</xsl:param> + + + +Description + +Specifies the border color of table frames. + + + + + + +table.cell.border.thickness +length + + +table.cell.border.thickness +Specifies the thickness of table cell borders + + + + +<xsl:param name="table.cell.border.thickness">0.5pt</xsl:param> + + + +Description + +If non-zero, specifies the thickness of borders on table +cells. The units are points. See +CSS + + + To control properties of cell borders in HTML output, you must also turn on the + table.borders.with.css parameter. + + + + + + + +table.cell.border.style +list +none +solid +dotted +dashed +double +groove +ridge +inset +outset +solid + + +table.cell.border.style +Specifies the border style of table cells + + + + +<xsl:param name="table.cell.border.style">solid</xsl:param> + + + +Description + +Specifies the border style of table cells. + + + To control properties of cell borders in HTML output, you must also turn on the + table.borders.with.css parameter. + + + + + + + +table.cell.border.color +color + + +table.cell.border.color +Specifies the border color of table cells + + + + + +<xsl:param name="table.cell.border.color">black</xsl:param> + + + +Description + +Set the color of table cell borders. If non-zero, the value is used +for the border coloration. See CSS. A +color is either a keyword or a numerical RGB specification. +Keywords are aqua, black, blue, fuchsia, gray, green, lime, maroon, +navy, olive, orange, purple, red, silver, teal, white, and +yellow. + + + To control properties of cell borders in HTML output, you must also turn on the + table.borders.with.css parameter. + + + + + + + +table.table.properties +attribute set + + +table.table.properties +Properties associated with a table + + + + +<xsl:attribute-set name="table.table.properties"> + <xsl:attribute name="border-before-width.conditionality">retain</xsl:attribute> + <xsl:attribute name="border-collapse">collapse</xsl:attribute> +</xsl:attribute-set> + + + +Description + +The styling for tables. This parameter should really +have been called table.properties, but that parameter +name was inadvertently established for the block-level properties +of the table as a whole. + + +See also table.properties. + + + + + +Linking + + +current.docid +string + + +current.docid +targetdoc identifier for the document being +processed + + +<xsl:param name="current.docid"></xsl:param> + + +Description + +When olinks between documents are resolved for HTML output, the stylesheet can compute the relative path between the current document and the target document. The stylesheet needs to know the targetdoc identifiers for both documents, as they appear in the target.database.document database file. This parameter passes to the stylesheet +the targetdoc identifier of the current document, since that +identifier does not appear in the document itself. +This parameter can also be used for print output. If an olink's targetdoc id differs from the current.docid, then the stylesheet can append the target document's title to the generated olink text. That identifies to the reader that the link is to a different document, not the current document. See also olink.doctitle to enable that feature. + + + + + +collect.xref.targets +list +no +yes +only + + +collect.xref.targets +Controls whether cross reference data is +collected + + +<xsl:param name="collect.xref.targets">no</xsl:param> + + +Description + + +In order to resolve olinks efficiently, the stylesheets can +generate an external data file containing information about +all potential cross reference endpoints in a document. +This parameter determines whether the collection process is run when the document is processed by the stylesheet. The default value is no, which means the data file is not generated during processing. The other choices are yes, which means the data file is created and the document is processed for output, and only, which means the data file is created but the document is not processed for output. +See also targets.filename. + + + + + + +insert.olink.page.number +list +no +yes +maybe + + +insert.olink.page.number +Turns page numbers in olinks on and off + + + + +<xsl:param name="insert.olink.page.number">no</xsl:param> + + + +Description + +The value of this parameter determines if +cross references made between documents with +olink will +include page number citations. +In most cases this is only applicable to references in printed output. + +The parameter has three possible values. + + + +no +No page number references will be generated for olinks. + + + +yes +Page number references will be generated +for all olink references. +The style of page reference may be changed +if an xrefstyle +attribute is used. + + + +maybe +Page number references will not be generated +for an olink element unless +it has an +xrefstyle +attribute whose value specifies a page reference. + + + +Olinks that point to targets within the same document +are treated as xrefs, and controlled by +the insert.xref.page.number parameter. + + +Page number references for olinks to +external documents can only be inserted if the +information exists in the olink database. +This means each olink target element +(div or obj) +must have a page attribute +whose value is its page number in the target document. +The XSL stylesheets are not able to extract that information +during processing because pages have not yet been created in +XSLT transformation. Only the XSL-FO processor knows what +page each element is placed on. +Therefore some postprocessing must take place to populate +page numbers in the olink database. + + + + + + + + + +insert.olink.pdf.frag +boolean + + +insert.olink.pdf.frag +Add fragment identifiers for links into PDF files + + + + +<xsl:param name="insert.olink.pdf.frag" select="0"></xsl:param> + + + +Description + +The value of this parameter determines whether +the cross reference URIs to PDF documents made with +olink will +include fragment identifiers. + + +When forming a URI to link to a PDF document, +a fragment identifier (typically a '#' followed by an +id value) appended to the PDF filename can be used by +the PDF viewer to open +the PDF file to a location within the document instead of +the first page. +However, not all PDF files have id +values embedded in them, and not all PDF viewers can +handle fragment identifiers. + + +If insert.olink.pdf.frag is set +to a non-zero value, then any olink targeting a +PDF file will have the fragment identifier appended to the URI. +The URI is formed by concatenating the value of the +olink.base.uri parameter, the +value of the baseuri +attribute from the document +element in the olink database with the matching +targetdoc value, +and the value of the href +attribute for the targeted element in the olink database. +The href attribute +contains the fragment identifier. + + +If insert.olink.pdf.frag is set +to zero (the default value), then +the href attribute +from the olink database +is not appended to PDF olinks, so the fragment identifier is left off. +A PDF olink is any olink for which the +baseuri attribute +from the matching document +element in the olink database ends with '.pdf'. +Any other olinks will still have the fragment identifier added. + + + + + + +olink.base.uri +uri + + +olink.base.uri +Base URI used in olink hrefs + + +<xsl:param name="olink.base.uri"></xsl:param> + + +Description + +When cross reference data is collected for resolving olinks, it +may be necessary to prepend a base URI to each target's href. This +parameter lets you set that base URI when cross reference data is +collected. This feature is needed when you want to link to a document +that is processed without chunking. The output filename for such a +document is not known to the XSL stylesheet; the only target +information consists of fragment identifiers such as +#idref. To enable the resolution of olinks between +documents, you should pass the name of the HTML output file as the +value of this parameter. Then the hrefs recorded in the cross +reference data collection look like +outfile.html#idref, which can be reached as links +from other documents. + + + + + +olink.debug +boolean + + +olink.debug +Turn on debugging messages for olinks + + + + +<xsl:param name="olink.debug" select="0"></xsl:param> + + + +Description + +If non-zero, then each olink will generate several +messages about how it is being resolved during processing. +This is useful when an olink does not resolve properly +and the standard error messages are not sufficient to +find the problem. + + +You may need to read through the olink XSL templates +to understand the context for some of the debug messages. + + + + + + + +olink.doctitle +list +no +yes +maybe + + +olink.doctitle +show the document title for external olinks? + + + +<xsl:param name="olink.doctitle">no</xsl:param> + + +Description + +When olinks between documents are resolved, the generated text +may not make it clear that the reference is to another document. +It is possible for the stylesheets to append the other document's +title to external olinks. For this to happen, two parameters must +be set. + + +This olink.doctitle parameter +should be set to either yes or maybe +to enable this feature. + + + +And you should also set the current.docid +parameter to the document id for the document currently +being processed for output. + + + + + +Then if an olink's targetdoc id differs from +the current.docid value, the stylesheet knows +that it is a reference to another document and can +append the target document's +title to the generated olink text. + +The text for the target document's title is copied from the +olink database from the ttl element +of the top-level div for that document. +If that ttl element is missing or empty, +no title is output. + + +The supported values for olink.doctitle are: + + + +yes + + +Always insert the title to the target document if it is not +the current document. + + + + +no + + +Never insert the title to the target document, even if requested +in an xrefstyle attribute. + + + + +maybe + + +Only insert the title to the target document, if requested +in an xrefstyle attribute. + + + + +An xrefstyle attribute +may override the global setting for individual olinks. +The following values are supported in an +xrefstyle +attribute using the select: syntax: + + + + +docname + + +Insert the target document name for this olink using the +docname gentext template, but only +if the value of olink.doctitle +is not no. + + + + +docnamelong + + +Insert the target document name for this olink using the +docnamelong gentext template, but only +if the value of olink.doctitle +is not no. + + + + +nodocname + + +Omit the target document name even if +the value of olink.doctitle +is yes. + + + + +Another way of inserting the target document name +for a single olink is to employ an +xrefstyle +attribute using the template: syntax. +The %o placeholder (the letter o, not zero) +in such a template +will be filled in with the target document's title when it is processed. +This will occur regardless of +the value of olink.doctitle. + +Note that prior to version 1.66 of the XSL stylesheets, +the allowed values for this parameter were 0 and 1. Those +values are still supported and mapped to 'no' and 'yes', respectively. + + + + + + +olink.lang.fallback.sequence +string + + +olink.lang.fallback.sequence +look up translated documents if olink not found? + + + +<xsl:param name="olink.lang.fallback.sequence"></xsl:param> + + +Description + + +This parameter defines a list of lang values +to search among to resolve olinks. + + +Normally an olink tries to resolve to a document in the same +language as the olink itself. The language of an olink +is determined by its nearest ancestor element with a +lang attribute, otherwise the +value of the l10n.gentext.default.lang +parameter. + + +An olink database can contain target data for the same +document in multiple languages. Each set of data has the +same value for the targetdoc attribute in +the document element in the database, but with a +different lang attribute value. + + +When an olink is being resolved, the target is first +sought in the document with the same language as the olink. +If no match is found there, then this parameter is consulted +for additional languages to try. + +The olink.lang.fallback.sequence +must be a whitespace separated list of lang values to +try. The first one with a match in the olink database is used. +The default value is empty. + +For example, a document might be written in German +and contain an olink with +targetdoc="adminguide". +When the document is processed, the processor +first looks for a target dataset in the +olink database starting with: + +<document targetdoc="adminguide" lang="de">. + + +If there is no such element, then the +olink.lang.fallback.sequence +parameter is consulted. +If its value is, for example, fr en, then the processor next +looks for targetdoc="adminguide" lang="fr", and +then for targetdoc="adminguide" lang="en". +If there is still no match, it looks for +targetdoc="adminguide" with no +lang attribute. + + +This parameter is useful when a set of documents is only +partially translated, or is in the process of being translated. +If a target of an olink has not yet been translated, then this +parameter permits the processor to look for the document in +other languages. This assumes the reader would rather have +a link to a document in a different language than to have +a broken link. + + + + + + + +olink.properties +attribute set + + +olink.properties +Properties associated with the cross-reference +text of an olink. + + + + +<xsl:attribute-set name="olink.properties"> + <xsl:attribute name="show-destination">replace</xsl:attribute> +</xsl:attribute-set> + + + +Description + +This attribute set is applied to the +fo:basic-link element of an olink. It is not applied to the +optional page number or optional title of the external +document. + + + + + + +prefer.internal.olink +boolean + + +prefer.internal.olink +Prefer a local olink reference to an external reference + + + + +<xsl:param name="prefer.internal.olink" select="0"></xsl:param> + + + +Description + +If you are re-using XML content modules in multiple documents, +you may want to redirect some of your olinks. This parameter +permits you to redirect an olink to the current document. + + +For example: you are writing documentation for a product, +which includes 3 manuals: a little installation +booklet (booklet.xml), a user +guide (user.xml), and a reference manual (reference.xml). +All 3 documents begin with the same introduction section (intro.xml) that +contains a reference to the customization section (custom.xml) which is +included in both user.xml and reference.xml documents. + + +How do you write the link to custom.xml in intro.xml +so that it is interpreted correctly in all 3 documents? + +If you use xref, it will fail in user.xml. + +If you use olink (pointing to reference.xml), +the reference in user.xml +will point to the customization section of the reference manual, while it is +actually available in user.xml. + + + +If you set the prefer.internal.olink +parameter to a non-zero value, then the processor will +first look in the olink database +for the olink's targetptr attribute value +in document matching the current.docid +parameter value. If it isn't found there, then +it tries the document in the database +with the targetdoc +value that matches the olink's targetdoc +attribute. + + +This feature permits an olink reference to resolve to +the current document if there is an element +with an id matching the olink's targetptr +value. The current document's olink data must be +included in the target database for this to work. + + +There is a potential for incorrect links if +the same id attribute value is used for different +content in different documents. +Some of your olinks may be redirected to the current document +when they shouldn't be. It is not possible to control +individual olink instances. + + + + + + + +target.database.document +uri + + +target.database.document +Name of master database file for resolving +olinks + + + + <xsl:param name="target.database.document">olinkdb.xml</xsl:param> + + +Description + + +To resolve olinks between documents, the stylesheets use a master +database document that identifies the target datafiles for all the +documents within the scope of the olinks. This parameter value is the +URI of the master document to be read during processing to resolve +olinks. The default value is olinkdb.xml. + +The data structure of the file is defined in the +targetdatabase.dtd DTD. The database file +provides the high level elements to record the identifiers, locations, +and relationships of documents. The cross reference data for +individual documents is generally pulled into the database using +system entity references or XIncludes. See also +targets.filename. + + + + +targets.filename +string + + +targets.filename +Name of cross reference targets data file + + +<xsl:param name="targets.filename">target.db</xsl:param> + + +Description + + +In order to resolve olinks efficiently, the stylesheets can +generate an external data file containing information about +all potential cross reference endpoints in a document. +This parameter lets you change the name of the generated +file from the default name target.db. +The name must agree with that used in the target database +used to resolve olinks during processing. +See also target.database.document. + + + + + + +use.local.olink.style +boolean + + +use.local.olink.style +Process olinks using xref style of current +document + + +<xsl:param name="use.local.olink.style" select="0"></xsl:param> + +Description + +When cross reference data is collected for use by olinks, the data for each potential target includes one field containing a completely assembled cross reference string, as if it were an xref generated in that document. Other fields record the separate title, number, and element name of each target. When an olink is formed to a target from another document, the olink resolves to that preassembled string by default. If the use.local.olink.style parameter is set to non-zero, then instead the cross +reference string is formed again from the target title, number, and +element name, using the stylesheet processing the targeting document. +Then olinks will match the xref style in the targeting document +rather than in the target document. If both documents are processed +with the same stylesheet, then the results will be the same. + + + + +Cross References + + +insert.xref.page.number +list +no +yes +maybe + + +insert.xref.page.number +Turns page numbers in xrefs on and off + + + + +<xsl:param name="insert.xref.page.number">no</xsl:param> + + + +Description + +The value of this parameter determines if +cross references (xrefs) in +printed output will +include page number citations. +It has three possible values. + + + +no +No page number references will be generated. + + + +yes +Page number references will be generated +for all xref elements. +The style of page reference may be changed +if an xrefstyle +attribute is used. + + + +maybe +Page number references will not be generated +for an xref element unless +it has an +xrefstyle +attribute whose value specifies a page reference. + + + + + + + + + +xref.properties +attribute set + + +xref.properties +Properties associated with cross-reference text + + + + +<xsl:attribute-set name="xref.properties"> +</xsl:attribute-set> + + + +Description + +This attribute set is used to set properties +on cross reference text. + + + + + + +xref.label-title.separator +string + + +xref.label-title.separator +Punctuation or space separating label from title in xref + + + +<xsl:param name="xref.label-title.separator">: </xsl:param> + + +Description + + +This parameter allows you to control the punctuation of certain +types of generated cross reference text. +When cross reference text is generated for an +xref or +olink element +using an xrefstyle attribute +that makes use of the select: feature, +and the selected components include both label and title, +then the value of this parameter is inserted between +label and title in the output. + + + + + + + +xref.label-page.separator +string + + +xref.label-page.separator +Punctuation or space separating label from page number in xref + + + +<xsl:param name="xref.label-page.separator"><xsl:text> </xsl:text></xsl:param> + + +Description + + +This parameter allows you to control the punctuation of certain +types of generated cross reference text. +When cross reference text is generated for an +xref or +olink element +using an xrefstyle attribute +that makes use of the select: feature, +and the selected components include both label and page +but no title, +then the value of this parameter is inserted between +label and page number in the output. +If a title is included, then other separators are used. + + + + + + + +xref.title-page.separator +string + + +xref.title-page.separator +Punctuation or space separating title from page number in xref + + + +<xsl:param name="xref.title-page.separator"><xsl:text> </xsl:text></xsl:param> + + +Description + + +This parameter allows you to control the punctuation of certain +types of generated cross reference text. +When cross reference text is generated for an +xref or +olink element +using an xrefstyle attribute +that makes use of the select: feature, +and the selected components include both title and page number, +then the value of this parameter is inserted between +title and page number in the output. + + + + + + + +insert.link.page.number +list +no +yes +maybe + + +insert.link.page.number +Turns page numbers in link elements on and off + + + + +<xsl:param name="insert.link.page.number">no</xsl:param> + + + +Description + +The value of this parameter determines if +cross references using the link element in +printed output will +include standard page number citations. +It has three possible values. + + + +no +No page number references will be generated. + + + +yes +Page number references will be generated +for all link elements. +The style of page reference may be changed +if an xrefstyle +attribute is used. + + + +maybe +Page number references will not be generated +for a link element unless +it has an +xrefstyle +attribute whose value specifies a page reference. + + + + +Although the xrefstyle attribute +can be used to turn the page reference on or off, it cannot be +used to control the formatting of the page number as it +can in xref. +In link it will always format with +the style established by the +gentext template with name="page.citation" +in the l:context name="xref". + + + + + +Lists + + +compact.list.item.spacing +attribute set + + +compact.list.item.spacing +What space do you want between list items (when spacing="compact")? + + + +<xsl:attribute-set name="compact.list.item.spacing"> + <xsl:attribute name="space-before.optimum">0em</xsl:attribute> + <xsl:attribute name="space-before.minimum">0em</xsl:attribute> + <xsl:attribute name="space-before.maximum">0.2em</xsl:attribute> +</xsl:attribute-set> + +Description +Specify what spacing you want between each list item when +spacing is +compact. + + + + + +itemizedlist.properties +attribute set + + +itemizedlist.properties +Properties that apply to each list-block generated by itemizedlist. + + + +<xsl:attribute-set name="itemizedlist.properties" use-attribute-sets="list.block.properties"> +</xsl:attribute-set> + +Description +Properties that apply to each fo:list-block generated by itemizedlist. + + + + + +itemizedlist.label.properties +attribute set + + +itemizedlist.label.properties +Properties that apply to each label inside itemized list. + + + +<xsl:attribute-set name="itemizedlist.label.properties"> +</xsl:attribute-set> + +Description +Properties that apply to each label inside itemized list. E.g.: +<xsl:attribute-set name="itemizedlist.label.properties"> + <xsl:attribute name="text-align">right</xsl:attribute> +</xsl:attribute-set> + + + + + +itemizedlist.label.width +length + + + itemizedlist.label.width +The default width of the label (bullet) in an itemized list. + + + + + <xsl:param name="itemizedlist.label.width">1.0em</xsl:param> + + + +Description +Specifies the default width of the label (usually a bullet or other +symbol) in an itemized list. You can override the default value on any +particular list with the “dbfo” processing instruction using the +“label-width” pseudoattribute. + + + + + +list.block.properties +attribute set + + +list.block.properties +Properties that apply to each list-block generated by list. + + + +<xsl:attribute-set name="list.block.properties"> + <xsl:attribute name="provisional-label-separation">0.2em</xsl:attribute> + <xsl:attribute name="provisional-distance-between-starts">1.5em</xsl:attribute> +</xsl:attribute-set> + +Description +Properties that apply to each fo:list-block generated by itemizedlist/orderedlist. + + + + + +list.block.spacing +attribute set + + +list.block.spacing +What spacing do you want before and after lists? + + + +<xsl:attribute-set name="list.block.spacing"> + <xsl:attribute name="space-before.optimum">1em</xsl:attribute> + <xsl:attribute name="space-before.minimum">0.8em</xsl:attribute> + <xsl:attribute name="space-before.maximum">1.2em</xsl:attribute> + <xsl:attribute name="space-after.optimum">1em</xsl:attribute> + <xsl:attribute name="space-after.minimum">0.8em</xsl:attribute> + <xsl:attribute name="space-after.maximum">1.2em</xsl:attribute> +</xsl:attribute-set> + +Description +Specify the spacing required before and after a list. It is necessary to specify the space after a list block because lists can come inside of paras. + + + + + +list.item.spacing +attribute set + + +list.item.spacing +What space do you want between list items? + + + +<xsl:attribute-set name="list.item.spacing"> + <xsl:attribute name="space-before.optimum">1em</xsl:attribute> + <xsl:attribute name="space-before.minimum">0.8em</xsl:attribute> + <xsl:attribute name="space-before.maximum">1.2em</xsl:attribute> +</xsl:attribute-set> + +Description +Specify what spacing you want between each list item. + + + + + +orderedlist.properties +attribute set + + +orderedlist.properties +Properties that apply to each list-block generated by orderedlist. + + + +<xsl:attribute-set name="orderedlist.properties" use-attribute-sets="list.block.properties"> + <xsl:attribute name="provisional-distance-between-starts">2em</xsl:attribute> +</xsl:attribute-set> + +Description +Properties that apply to each fo:list-block generated by orderedlist. + + + + + +orderedlist.label.properties +attribute set + + +orderedlist.label.properties +Properties that apply to each label inside ordered list. + + + +<xsl:attribute-set name="orderedlist.label.properties"> +</xsl:attribute-set> + +Description +Properties that apply to each label inside ordered list. E.g.: +<xsl:attribute-set name="orderedlist.label.properties"> + <xsl:attribute name="text-align">right</xsl:attribute> +</xsl:attribute-set> + + + + + +orderedlist.label.width +length + + +orderedlist.label.width +The default width of the label (number) in an ordered list. + + + + +<xsl:param name="orderedlist.label.width">1.2em</xsl:param> + + + +Description +Specifies the default width of the label (usually a number or +sequence of numbers) in an ordered list. You can override the default +value on any particular list with the “dbfo” processing instruction +using the “label-width” pseudoattribute. + + + + + +variablelist.max.termlength +number + + +variablelist.max.termlength +Specifies the longest term in variablelists + + + + +<xsl:param name="variablelist.max.termlength">24</xsl:param> + + + +Description + +In variablelists, the listitem +is indented to leave room for the +term elements. That indent may be computed +if it is not specified with a termlength +attribute on the variablelist element. + + +The computation counts characters in the +term elements in the list +to find the longest term. However, some terms are very long +and would produce extreme indents. This parameter lets you +set a maximum character count. Any terms longer than the maximum +would line wrap. The default value is 24. + + +The character counts are converted to physical widths +by multiplying by 0.50em. There will be some variability +in how many actual characters fit in the space +since some characters are wider than others. + + + + + + + +variablelist.term.separator +string + + +variablelist.term.separator +Text to separate terms within a multi-term +varlistentry + + + + +<xsl:param name="variablelist.term.separator">, </xsl:param> + + +Description + +When a varlistentry contains multiple term +elements, the string specified in the value of the +variablelist.term.separator parameter is placed +after each term except the last. + + + To generate a line break between multiple terms in + a varlistentry, set a non-zero value for the + variablelist.term.break.after parameter. If + you do so, you may also want to set the value of the + variablelist.term.separator parameter to an + empty string (to suppress rendering of the default comma and space + after each term). + + + + + + + +variablelist.term.properties +attribute set + + +variablelist.term.properties +To add properties to the term elements in a variablelist. + + + + +<xsl:attribute-set name="variablelist.term.properties"> +</xsl:attribute-set> + + +Description +These properties are added to the block containing a +term in a variablelist. +Use this attribute-set to set +font properties or alignment, for example. + + + + + + +variablelist.term.break.after +boolean + + +variablelist.term.break.after +Generate line break after each term within a +multi-term varlistentry? + + + + +<xsl:param name="variablelist.term.break.after">0</xsl:param> + + +Description + +Set a non-zero value for the +variablelist.term.break.after parameter to +generate a line break between terms in a +multi-term varlistentry. + + +If you set a non-zero value for +variablelist.term.break.after, you may also +want to set the value of the +variablelist.term.separator parameter to an +empty string (to suppress rendering of the default comma and space +after each term). + + + + + + +QAndASet + + +qandadiv.autolabel +boolean + + +qandadiv.autolabel +Are divisions in QAndASets enumerated? + + + +<xsl:param name="qandadiv.autolabel" select="1"></xsl:param> + + +Description + +If non-zero, unlabeled qandadivs will be enumerated. + + + + + + + +qanda.inherit.numeration +boolean + + +qanda.inherit.numeration +Does enumeration of QandASet components inherit the numeration of parent elements? + + + + +<xsl:param name="qanda.inherit.numeration" select="1"></xsl:param> + + + +Description + +If non-zero, numbered qandadiv elements and +question and answer inherit the enumeration of +the ancestors of the qandaset. + + + + + + + +qanda.defaultlabel +list +number +qanda +none + + +qanda.defaultlabel +Sets the default for defaultlabel on QandASet. + + + + +<xsl:param name="qanda.defaultlabel">number</xsl:param> + + + +Description + +If no defaultlabel attribute is specified on +a qandaset, this value is used. It is generally one of the legal +values for the defaultlabel attribute (none, +number or +qanda), or one of the additional stylesheet-specific values +(qnumber or qnumberanda). +The default value is 'number'. + +The values are rendered as follows: + +qanda + +questions are labeled "Q:" and +answers are labeled "A:". + + + +number + +The questions are enumerated and the answers +are not labeled. + + + +qnumber + +The questions are labeled "Q:" followed by a number, and answers are not +labeled. +When sections are numbered, adding a label +to the number distinguishes the question numbers +from the section numbers. +This value is not allowed in the +defaultlabel attribute +of a qandaset element. + + + +qnumberanda + +The questions are labeled "Q:" followed by a number, and +the answers are labeled "A:". +When sections are numbered, adding a label +to the number distinguishes the question numbers +from the section numbers. +This value is not allowed in the +defaultlabel attribute +of a qandaset element. + + + +none + +No distinguishing label precedes Questions or Answers. + + + + + + + + + + +qanda.in.toc +boolean + + +qanda.in.toc +Should qandaentry questions appear in +the document table of contents? + + + +<xsl:param name="qanda.in.toc" select="0"></xsl:param> + + +Description + +If true (non-zero), then the generated table of contents +for a document will include qandaset titles, +qandadiv titles, +and question elements. The default value (zero) excludes +them from the TOC. + +This parameter does not affect any tables of contents +that may be generated inside a qandaset or qandadiv. + + + + + + + +qanda.nested.in.toc +boolean + + +qanda.nested.in.toc +Should nested answer/qandaentry instances appear in TOC? + + + + +<xsl:param name="qanda.nested.in.toc" select="0"></xsl:param> + + + +Description + +If non-zero, instances of qandaentry +that are children of answer elements are shown in +the TOC. + + + + + +Bibliography + + +bibliography.style +list +normal +iso690 + + +bibliography.style +Style used for formatting of biblioentries. + + + + +<xsl:param name="bibliography.style">normal</xsl:param> + + + +Description + +Currently only normal and +iso690 styles are supported. + +In order to use ISO690 style to the full extent you might need +to use additional markup described on the +following WiKi page. + + + + + + +biblioentry.item.separator +string + + +biblioentry.item.separator +Text to separate bibliography entries + + + +<xsl:param name="biblioentry.item.separator">. </xsl:param> + + +Description + +Text to separate bibliography entries + + + + + + + +bibliography.collection +string + + +bibliography.collection +Name of the bibliography collection file + + + + +<xsl:param name="bibliography.collection">http://docbook.sourceforge.net/release/bibliography/bibliography.xml</xsl:param> + + + + +Description + +Maintaining bibliography entries across a set of documents is tedious, time +consuming, and error prone. It makes much more sense, usually, to store all of +the bibliography entries in a single place and simply extract +the ones you need in each document. + +That's the purpose of the +bibliography.collection parameter. To setup a global +bibliography database, follow these steps: + +First, create a stand-alone bibliography document that contains all of +the documents that you wish to reference. Make sure that each bibliography +entry (whether you use biblioentry or bibliomixed) +has an ID. + +My global bibliography, ~/bibliography.xml begins +like this: + + +<!DOCTYPE bibliography + PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN" + "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd"> +<bibliography><title>References</title> + +<bibliomixed id="xml-rec"><abbrev>XML 1.0</abbrev>Tim Bray, +Jean Paoli, C. M. Sperberg-McQueen, and Eve Maler, editors. +<citetitle><ulink url="http://www.w3.org/TR/REC-xml">Extensible Markup +Language (XML) 1.0 Second Edition</ulink></citetitle>. +World Wide Web Consortium, 2000. +</bibliomixed> + +<bibliomixed id="xml-names"><abbrev>Namespaces</abbrev>Tim Bray, +Dave Hollander, +and Andrew Layman, editors. +<citetitle><ulink url="http://www.w3.org/TR/REC-xml-names/">Namespaces in +XML</ulink></citetitle>. +World Wide Web Consortium, 1999. +</bibliomixed> + +<!-- ... --> +</bibliography> + + + +When you create a bibliography in your document, simply +provide empty bibliomixed +entries for each document that you wish to cite. Make sure that these +elements have the same ID as the corresponding real +entry in your global bibliography. + +For example: + + +<bibliography><title>Bibliography</title> + +<bibliomixed id="xml-rec"/> +<bibliomixed id="xml-names"/> +<bibliomixed id="DKnuth86">Donald E. Knuth. <citetitle>Computers and +Typesetting: Volume B, TeX: The Program</citetitle>. Addison-Wesley, +1986. ISBN 0-201-13437-3. +</bibliomixed> +<bibliomixed id="relaxng"/> + +</bibliography> + + +Note that it's perfectly acceptable to mix entries from your +global bibliography with normal entries. You can use +xref or other elements to cross-reference your +bibliography entries in exactly the same way you do now. + +Finally, when you are ready to format your document, simply set the +bibliography.collection parameter (in either a +customization layer or directly through your processor's interface) to +point to your global bibliography. + +The stylesheets will format the bibliography in your document as if +all of the entries referenced appeared there literally. + + + + + + +bibliography.numbered +boolean + + +bibliography.numbered +Should bibliography entries be numbered? + + + + +<xsl:param name="bibliography.numbered" select="0"></xsl:param> + + + +Description + +If non-zero bibliography entries will be numbered + + + + + + + biblioentry.properties + attribute set + + +biblioentry.properties +To set the style for biblioentry. + + + +<xsl:attribute-set name="biblioentry.properties" use-attribute-sets="normal.para.spacing"> + <xsl:attribute name="start-indent">0.5in</xsl:attribute> + <xsl:attribute name="text-indent">-0.5in</xsl:attribute> +</xsl:attribute-set> + + +Description +How do you want biblioentry styled? +Set the font-size, weight, space-above and space-below, indents, etc. to the style required + + + + + +Glossary + + +glossterm.auto.link +boolean + + +glossterm.auto.link +Generate links from glossterm to glossentry automatically? + + + + +<xsl:param name="glossterm.auto.link" select="0"></xsl:param> + + + +Description + +If non-zero, links from inline glossterms to the corresponding +glossentry elements in a glossary or glosslist +will be automatically generated. This is useful when your glossterms are consistent +and you don't want to add links manually. + +The automatic link generation feature is not used on glossterm elements +that have a linkend attribute. + + + + + + +firstterm.only.link +boolean + + +firstterm.only.link +Does automatic glossterm linking only apply to firstterms? + + + + +<xsl:param name="firstterm.only.link" select="0"></xsl:param> + + + +Description + +If non-zero, only firstterms will be automatically linked +to the glossary. If glossary linking is not enabled, this parameter +has no effect. + + + + + + +glossary.collection +string + + +glossary.collection +Name of the glossary collection file + + + + +<xsl:param name="glossary.collection"></xsl:param> + + + +Description + +Glossaries maintained independently across a set of documents +are likely to become inconsistent unless considerable effort is +expended to keep them in sync. It makes much more sense, usually, to +store all of the glossary entries in a single place and simply +extract the ones you need in each document. + +That's the purpose of the +glossary.collection parameter. To setup a global +glossary database, follow these steps: + +Setting Up the Glossary Database + +First, create a stand-alone glossary document that contains all of +the entries that you wish to reference. Make sure that each glossary +entry has an ID. + +Here's an example glossary: + + + +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE glossary + PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN" + "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd"> +<glossary> +<glossaryinfo> +<editor><firstname>Eric</firstname><surname>Raymond</surname></editor> +<title>Jargon File 4.2.3 (abridged)</title> +<releaseinfo>Just some test data</releaseinfo> +</glossaryinfo> + +<glossdiv><title>0</title> + +<glossentry> +<glossterm>0</glossterm> +<glossdef> +<para>Numeric zero, as opposed to the letter `O' (the 15th letter of +the English alphabet). In their unmodified forms they look a lot +alike, and various kluges invented to make them visually distinct have +compounded the confusion. If your zero is center-dotted and letter-O +is not, or if letter-O looks almost rectangular but zero looks more +like an American football stood on end (or the reverse), you're +probably looking at a modern character display (though the dotted zero +seems to have originated as an option on IBM 3270 controllers). If +your zero is slashed but letter-O is not, you're probably looking at +an old-style ASCII graphic set descended from the default typewheel on +the venerable ASR-33 Teletype (Scandinavians, for whom /O is a letter, +curse this arrangement). (Interestingly, the slashed zero long +predates computers; Florian Cajori's monumental "A History of +Mathematical Notations" notes that it was used in the twelfth and +thirteenth centuries.) If letter-O has a slash across it and the zero +does not, your display is tuned for a very old convention used at IBM +and a few other early mainframe makers (Scandinavians curse <emphasis>this</emphasis> +arrangement even more, because it means two of their letters collide). +Some Burroughs/Unisys equipment displays a zero with a <emphasis>reversed</emphasis> +slash. Old CDC computers rendered letter O as an unbroken oval and 0 +as an oval broken at upper right and lower left. And yet another +convention common on early line printers left zero unornamented but +added a tail or hook to the letter-O so that it resembled an inverted +Q or cursive capital letter-O (this was endorsed by a draft ANSI +standard for how to draw ASCII characters, but the final standard +changed the distinguisher to a tick-mark in the upper-left corner). +Are we sufficiently confused yet?</para> +</glossdef> +</glossentry> + +<glossentry> +<glossterm>1TBS</glossterm> +<glossdef> +<para role="accidence"> +<phrase role="pronounce"></phrase> +<phrase role="partsofspeach">n</phrase> +</para> +<para>The "One True Brace Style"</para> +<glossseealso>indent style</glossseealso> +</glossdef> +</glossentry> + +<!-- ... --> + +</glossdiv> + +<!-- ... --> + +</glossary> + + + + +Marking Up Glossary Terms + +That takes care of the glossary database, now you have to get the entries +into your document. Unlike bibliography entries, which can be empty, creating +placeholder glossary entries would be very tedious. So instead, +support for glossary.collection relies on implicit linking. + +In your source document, simply use firstterm and +glossterm to identify the terms you wish to have included +in the glossary. The stylesheets assume that you will either set the +baseform attribute correctly, or that the +content of the element exactly matches a term in your glossary. + +If you're using a glossary.collection, don't +make explicit links on the terms in your document. + +So, in your document, you might write things like this: + + +<para>This is dummy text, without any real meaning. +The point is simply to reference glossary terms like <glossterm>0</glossterm> +and the <firstterm baseform="1TBS">One True Brace Style (1TBS)</firstterm>. +The <glossterm>1TBS</glossterm>, as you can probably imagine, is a nearly +religious issue.</para> + + +If you set the firstterm.only.link parameter, +only the terms marked with firstterm will be links. +Otherwise, all the terms will be linked. + + + +Marking Up the Glossary + +The glossary itself has to be identified for the stylesheets. For lack +of a better choice, the role is used. +To identify the glossary as the target for automatic processing, set +the role to auto. The title of this +glossary (and any other information from the glossaryinfo +that's rendered by your stylesheet) will be displayed, but the entries will +come from the database. + + +Unfortunately, the glossary can't be empty, so you must put in +at least one glossentry. The content of this entry +is irrelevant, it will not be rendered: + + +<glossary role="auto"> +<glossentry> +<glossterm>Irrelevant</glossterm> +<glossdef> +<para>If you can see this, the document was processed incorrectly. Use +the <parameter>glossary.collection</parameter> parameter.</para> +</glossdef> +</glossentry> +</glossary> + + +What about glossary divisions? If your glossary database has glossary +divisions and your automatic glossary contains at least +one glossdiv, the automic glossary will have divisions. +If the glossdiv is missing from either location, no divisions +will be rendered. + +Glossary entries (and divisions, if appropriate) in the glossary will +occur in precisely the order they occur in your database. + + + +Formatting the Document + +Finally, when you are ready to format your document, simply set the +glossary.collection parameter (in either a +customization layer or directly through your processor's interface) to +point to your global glossary. + +The stylesheets will format the glossary in your document as if +all of the entries implicilty referenced appeared there literally. + + +Limitations + +Glossary cross-references within the glossary are +not supported. For example, this will not work: + + +<glossentry> +<glossterm>gloss-1</glossterm> +<glossdef><para>A description that references <glossterm>gloss-2</glossterm>.</para> +<glossseealso>gloss-2</glossseealso> +</glossdef> +</glossentry> + + +If you put glossary cross-references in your glossary that way, +you'll get the cryptic error: Warning: +glossary.collection specified, but there are 0 automatic +glossaries. + +Instead, you must do two things: + + + +Markup your glossary using glossseealso: + + +<glossentry> +<glossterm>gloss-1</glossterm> +<glossdef><para>A description that references <glossterm>gloss-2</glossterm>.</para> +<glossseealso>gloss-2</glossseealso> +</glossdef> +</glossentry> + + + + +Make sure there is at least one glossterm reference to +gloss-2 in your document. The +easiest way to do that is probably within a remark in your +automatic glossary: + + +<glossary role="auto"> +<remark>Make sure there's a reference to <glossterm>gloss-2</glossterm>.</remark> +<glossentry> +<glossterm>Irrelevant</glossterm> +<glossdef> +<para>If you can see this, the document was processed incorrectly. Use +the <parameter>glossary.collection</parameter> parameter.</para> +</glossdef> +</glossentry> +</glossary> + + + + + + + + + + +glossary.as.blocks +boolean + + +glossary.as.blocks +Present glossarys using blocks instead of lists? + + + + +<xsl:param name="glossary.as.blocks" select="0"></xsl:param> + + + +Description + +If non-zero, glossarys will be formatted as +blocks. + +If you have long glossterms, proper list +markup in the FO case may produce unattractive lists. By setting this +parameter, you can force the stylesheets to produce block markup +instead of proper lists. + +You can override this setting with a processing instruction as the +child of glossary: dbfo +glossary-presentation="blocks" or dbfo +glossary-presentation="list" + + + + + + +glosslist.as.blocks +boolean + + +glosslist.as.blocks +Use blocks for glosslists? + + + + +<xsl:param name="glosslist.as.blocks" select="0"></xsl:param> + + + +Description + +See glossary.as.blocks. + + + + + + +glossentry.list.item.properties +attribute set + + +glossentry.list.item.properties +To add properties to each glossentry in a list. + + + +<xsl:attribute-set name="glossentry.list.item.properties"> + <xsl:attribute name="space-before.optimum">1em</xsl:attribute> + <xsl:attribute name="space-before.minimum">0.8em</xsl:attribute> + <xsl:attribute name="space-before.maximum">1.2em</xsl:attribute> +</xsl:attribute-set> + + +Description +These properties are added to the fo:list-item containing a +glossentry in a glossary when the glossary.as.blocks parameter +is zero. +Use this attribute-set to set +spacing between entries, for example. + + + + + + +glossterm.block.properties +attribute set + + +glossterm.block.properties +To add properties to the block of a glossentry's glossterm. + + + +<xsl:attribute-set name="glossterm.block.properties"> + <xsl:attribute name="space-before.optimum">1em</xsl:attribute> + <xsl:attribute name="space-before.minimum">0.8em</xsl:attribute> + <xsl:attribute name="space-before.maximum">1.2em</xsl:attribute> + <xsl:attribute name="keep-with-next.within-column">always</xsl:attribute> + <xsl:attribute name="keep-together.within-column">always</xsl:attribute> +</xsl:attribute-set> + + +Description +These properties are added to the block containing a +glossary term in a glossary when the glossary.as.blocks parameter +is non-zero. +Use this attribute-set to set the space above and below, +font properties, +and any indent for the glossary term. + + + + + + +glossdef.block.properties +attribute set + + +glossdef.block.properties +To add properties to the block of a glossary definition. + + + +<xsl:attribute-set name="glossdef.block.properties"> + <xsl:attribute name="margin-{$direction.align.start}">.25in</xsl:attribute> +</xsl:attribute-set> + + +Description +These properties are added to the block containing a +glossary definition in a glossary when +the glossary.as.blocks parameter +is non-zero. +Use this attribute-set to set the space above and below, +any font properties, +and any indent for the glossary definition. + + + + + + +glossterm.list.properties +attribute set + + +glossterm.list.properties +To add properties to the glossterm in a list. + + + + +<xsl:attribute-set name="glossterm.list.properties"> +</xsl:attribute-set> + + +Description +These properties are added to the block containing a +glossary term in a glossary when the glossary.as.blocks parameter +is zero. +Use this attribute-set to set +font properties, for example. + + + + + + +glossdef.list.properties +attribute set + + +glossdef.list.properties +To add properties to the glossary definition in a list. + + + + +<xsl:attribute-set name="glossdef.list.properties"> +</xsl:attribute-set> + + +Description +These properties are added to the block containing a +glossary definition in a glossary when +the glossary.as.blocks parameter +is zero. +Use this attribute-set to set font properties, for example. + + + + + + +glossterm.width +length + + +glossterm.width +Width of glossterm in list presentation mode + + + + +<xsl:param name="glossterm.width">2in</xsl:param> + + + +Description + +This parameter specifies the width reserved for glossary terms when +a list presentation is used. + + + + + + +glossterm.separation +length + + +glossterm.separation +Separation between glossary terms and descriptions in list mode + + + + +<xsl:param name="glossterm.separation">0.25in</xsl:param> + + + +Description + +Specifies the miminum horizontal +separation between glossary terms and descriptions when +they are presented side-by-side using lists +when the glossary.as.blocks +is zero. + + + + + + +glossentry.show.acronym +list +no +yes +primary + + +glossentry.show.acronym +Display glossentry acronyms? + + + + +<xsl:param name="glossentry.show.acronym">no</xsl:param> + + + +Description + +A setting of yes means they should be displayed; +no means they shouldn't. If primary is used, +then they are shown as the primary text for the entry. + + +This setting controls both acronym and +abbrev elements in the glossentry. + + + + + + + +glossary.sort +boolean + + +glossary.sort +Sort glossentry elements? + + + + +<xsl:param name="glossary.sort" select="0"></xsl:param> + + + +Description + +If non-zero, then the glossentry elements within a +glossary, glossdiv, or glosslist are sorted on the glossterm, using +the current lang setting. If zero (the default), then +glossentry elements are not sorted and are presented +in document order. + + + + + + +Miscellaneous + + +formal.procedures +boolean + + +formal.procedures +Selects formal or informal procedures + + + + +<xsl:param name="formal.procedures" select="1"></xsl:param> + + + +Description + +Formal procedures are numbered and always have a title. + + + + + + + +formal.title.placement +table + + +formal.title.placement +Specifies where formal object titles should occur + + + + +<xsl:param name="formal.title.placement"> +figure before +example before +equation before +table before +procedure before +task before +</xsl:param> + + + +Description + +Specifies where formal object titles should occur. For each formal object +type (figure, +example, +equation, +table, and procedure) +you can specify either the keyword +before or +after. + + + + + + +runinhead.default.title.end.punct +string + + +runinhead.default.title.end.punct +Default punctuation character on a run-in-head + + + +<xsl:param name="runinhead.default.title.end.punct">.</xsl:param> + + + +Description + +If non-zero, For a formalpara, use the specified +string as the separator between the title and following text. The period is the default value. + + + + + + +runinhead.title.end.punct +string + + +runinhead.title.end.punct +Characters that count as punctuation on a run-in-head + + + + +<xsl:param name="runinhead.title.end.punct">.!?:</xsl:param> + + + +Description + +Specify which characters are to be counted as punctuation. These +characters are checked for a match with the last character of the +title. If no match is found, the +runinhead.default.title.end.punct contents are +inserted. This is to avoid duplicated punctuation in the output. + + + + + + + +show.comments +boolean + + +show.comments +Display remark elements? + + + + +<xsl:param name="show.comments" select="1"></xsl:param> + + + +Description + +If non-zero, comments will be displayed, otherwise they +are suppressed. Comments here refers to the remark element +(which was called comment prior to DocBook +4.0), not XML comments (<-- like this -->) which are +unavailable. + + + + + + + +punct.honorific +string + + +punct.honorific +Punctuation after an honorific in a personal name. + + + + +<xsl:param name="punct.honorific">.</xsl:param> + + + +Description + +This parameter specifies the punctuation that should be added after an +honorific in a personal name. + + + + + + +segmentedlist.as.table +boolean + + +segmentedlist.as.table +Format segmented lists as tables? + + + + +<xsl:param name="segmentedlist.as.table" select="0"></xsl:param> + + + +Description + +If non-zero, segmentedlists will be formatted as +tables. + + + + + + +variablelist.as.blocks +boolean + + +variablelist.as.blocks +Format variablelists lists as blocks? + + + + +<xsl:param name="variablelist.as.blocks" select="0"></xsl:param> + + + +Description + +If non-zero, variablelists will be formatted as +blocks. + +If you have long terms, proper list markup in the FO case may produce +unattractive lists. By setting this parameter, you can force the stylesheets +to produce block markup instead of proper lists. + +You can override this setting with a processing instruction as the +child of variablelist: dbfo +list-presentation="blocks" or dbfo +list-presentation="list". + +When using list-presentation="list", +you can also control the amount of space used for the terms with +the dbfo term-width=".25in" processing instruction, +the termlength attribute on variablelist, +or allow the stylesheets to attempt to calculate the amount of space to leave based on the +number of letters in the longest term. + + + <variablelist> + <?dbfo list-presentation="list"?> + <?dbfo term-width="1.5in"?> + <?dbhtml list-presentation="table"?> + <?dbhtml term-width="1.5in"?> + <varlistentry> + <term>list</term> + <listitem> + <para> + Formatted as a list even if variablelist.as.blocks is set to 1. + </para> + </listitem> + </varlistentry> + </variablelist> + + + + + + + + + blockquote.properties + attribute set + + +blockquote.properties +To set the style for block quotations. + + + + +<xsl:attribute-set name="blockquote.properties"> +<xsl:attribute name="margin-{$direction.align.start}">0.5in</xsl:attribute> +<xsl:attribute name="margin-{$direction.align.end}">0.5in</xsl:attribute> +<xsl:attribute name="space-after.minimum">0.5em</xsl:attribute> +<xsl:attribute name="space-after.optimum">1em</xsl:attribute> +<xsl:attribute name="space-after.maximum">2em</xsl:attribute> +</xsl:attribute-set> + + + +Description + +The blockquote.properties attribute set specifies +the formating properties of block quotations. + + + + + + +ulink.show +boolean + + +ulink.show +Display URLs after ulinks? + + + + +<xsl:param name="ulink.show" select="1"></xsl:param> + + + +Description + +If non-zero, the URL of each ulink will +appear after the text of the link. If the text of the link and the URL +are identical, the URL is suppressed. + +See also ulink.footnotes. + +DocBook 5 does not have an ulink element. When processing +DocBoook 5 documents, ulink.show applies to all inline +elements that are marked up with xlink:href attributes +that point to external resources. + + + + + + + +ulink.footnotes +boolean + + +ulink.footnotes +Generate footnotes for ulinks? + + + + +<xsl:param name="ulink.footnotes" select="0"></xsl:param> + + + +Description + +If non-zero, and if ulink.show also is non-zero, +the URL of each ulink will appear as a footnote. + +DocBook 5 does not have an ulink element. When processing +DocBoook 5 documents, ulink.footnotes applies to all inline +elements that are marked up with xlink:href attributes +that point to external resources. + + + + + + + +ulink.hyphenate +string + + +ulink.hyphenate +Allow URLs to be automatically hyphenated + + + + +<xsl:param name="ulink.hyphenate"></xsl:param> + + + +Description + +If not empty, the specified character (or more generally, content) is +added to URLs after every character included in the string +in the ulink.hyphenate.chars parameter (default +is /). If the character in this parameter is a +Unicode soft hyphen (0x00AD) or Unicode zero-width space (0x200B), some FO +processors will be able to reasonably hyphenate long URLs. + +As of 28 Jan 2002, discretionary hyphens are more widely and correctly +supported than zero-width spaces for this purpose. + + + + + + +ulink.hyphenate.chars +string + + +ulink.hyphenate.chars +List of characters to allow ulink URLs to be automatically hyphenated on + + + + +<xsl:param name="ulink.hyphenate.chars">/</xsl:param> + + + +Description + +If the ulink.hyphenate is not empty, then +hyphenation of ulinks is turned on, and any +character contained in this parameter is treated as an allowable +hyphenation point. + +The default value is /, but the parameter +could be customized +to contain other URL characters, as for example: + +<xsl:param name="ulink.hyphenate.chars">:/@&?.#</xsl:param> + + + + + + + +shade.verbatim +boolean + + +shade.verbatim +Should verbatim environments be shaded? + + + +<xsl:param name="shade.verbatim" select="0"></xsl:param> + + +Description + +In the FO stylesheet, if this parameter is non-zero then the +shade.verbatim.style properties will be applied +to verbatim environments. + +In the HTML stylesheet, this parameter is now deprecated. Use +CSS instead. + + + + + + +shade.verbatim.style +attribute set + + +shade.verbatim.style +Properties that specify the style of shaded verbatim listings + + + + + +<xsl:attribute-set name="shade.verbatim.style"> + <xsl:attribute name="background-color">#E0E0E0</xsl:attribute> +</xsl:attribute-set> + + + +Description + +Properties that specify the style of shaded verbatim listings. The +parameters specified (the border and background color) are added to +the styling of the xsl-fo output. A border might be specified as "thin +black solid" for example. See xsl-fo + + + + + + +hyphenate.verbatim +boolean + + +hyphenate.verbatim +Should verbatim environments be hyphenated on space characters? + + + +<xsl:param name="hyphenate.verbatim" select="0"></xsl:param> + + +Description + +If the lines of program listing are too long to fit into one +line it is quite common to split them at space and indicite by hook +arrow that code continues on the next line. You can turn on this +behaviour for programlisting, +screen and synopsis elements by +using this parameter. + +Note that you must also enable line wrapping for verbatim environments and +select appropriate hyphenation character (e.g. hook arrow). This can +be done using monospace.verbatim.properties +attribute set: + +<xsl:attribute-set name="monospace.verbatim.properties" + use-attribute-sets="verbatim.properties monospace.properties"> + <xsl:attribute name="wrap-option">wrap</xsl:attribute> + <xsl:attribute name="hyphenation-character">&#x25BA;</xsl:attribute> +</xsl:attribute-set> + +For a list of arrows available in Unicode see http://www.unicode.org/charts/PDF/U2190.pdf and http://www.unicode.org/charts/PDF/U2900.pdf and make sure that +selected character is available in the font you are using for verbatim +environments. + + + + + + +hyphenate.verbatim.characters +string + + +hyphenate.verbatim.characters +List of characters after which a line break can occur in listings + + + + +<xsl:param name="hyphenate.verbatim.characters"></xsl:param> + + + +Description + +If you enable hyphenate.verbatim line +breaks are allowed only on space characters. If this is not enough for +your document, you can specify list of additional characters after +which line break is allowed in this parameter. + + + + + + +use.svg +boolean + + +use.svg +Allow SVG in the result tree? + + + + +<xsl:param name="use.svg" select="1"></xsl:param> + + + +Description + +If non-zero, SVG will be considered an acceptable image format. SVG +is passed through to the result tree, so correct rendering of the resulting +diagram depends on the formatter (FO processor or web browser) that is used +to process the output from the stylesheet. + + + + + + +use.role.as.xrefstyle +boolean + + +use.role.as.xrefstyle +Use role attribute for +xrefstyle on xref? + + + + +<xsl:param name="use.role.as.xrefstyle" select="1"></xsl:param> + + + +Description + +In DocBook documents that conform to a schema older than V4.3, this parameter allows +role to serve the purpose of specifying the cross reference style. + +If non-zero, the role attribute on +xref will be used to select the cross reference style. +In DocBook V4.3, the xrefstyle attribute was added for this purpose. +If the xrefstyle attribute is present, +role will be ignored, regardless of the setting +of this parameter. + + + +Example + +The following small stylesheet shows how to configure the +stylesheets to make use of the cross reference style: + +<?xml version="1.0"?> +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + version="1.0"> + +<xsl:import href="../xsl/html/docbook.xsl"/> + +<xsl:output method="html"/> + +<xsl:param name="local.l10n.xml" select="document('')"/> +<l:i18n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0"> + <l:l10n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0" language="en"> + <l:context name="xref"> + <l:template name="chapter" style="title" text="Chapter %n, %t"/> + <l:template name="chapter" text="Chapter %n"/> + </l:context> + </l:l10n> +</l:i18n> + +</xsl:stylesheet> + +With this stylesheet, the cross references in the following document: + +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN" + "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd"> +<book id="book"><title>Book</title> + +<preface> +<title>Preface</title> + +<para>Normal: <xref linkend="ch1"/>.</para> +<para>Title: <xref xrefstyle="title" linkend="ch1"/>.</para> + +</preface> + +<chapter id="ch1"> +<title>First Chapter</title> + +<para>Irrelevant.</para> + +</chapter> +</book> + +will appear as: + + +Normal: Chapter 1. +Title: Chapter 1, First Chapter. + + + + + + + +menuchoice.separator +string + + +menuchoice.separator +Separator between items of a menuchoice +other than guimenuitem and +guisubmenu + + + + +<xsl:param name="menuchoice.separator">+</xsl:param> + + + +Description + +Separator used to connect items of a menuchoice other +than guimenuitem and guisubmenu. The latter +elements are linked with menuchoice.menu.separator. + + + + + + + +menuchoice.menu.separator +string + + +menuchoice.menu.separator +Separator between items of a menuchoice +with guimenuitem or +guisubmenu + + + + +<xsl:param name="menuchoice.menu.separator"> → </xsl:param> + + + +Description + +Separator used to connect items of a menuchoice with +guimenuitem or guisubmenu. Other elements +are linked with menuchoice.separator. + +The default value is &#x2192;, which is the +&rarr; (right arrow) character entity. +The current FOP (0.20.5) requires setting the font-family +explicitly. + +The default value also includes spaces around the arrow, +which will allow a line to break. Replace the spaces with +&#xA0; (nonbreaking space) if you don't want those +spaces to break. + + + + + + + +default.float.class +string + + +default.float.class +Specifies the default float class + + + + +<xsl:param name="default.float.class"> + <xsl:choose> + <xsl:when test="contains($stylesheet.result.type,'html')">left</xsl:when> + <xsl:otherwise>before</xsl:otherwise> + </xsl:choose> +</xsl:param> + + + +Description + +Selects the direction in which a float should be placed. for +xsl-fo this is before, for html it is left. For Western texts, the +before direction is the top of the page. + + + + + + +footnote.number.format +list +11,2,3... +AA,B,C... +aa,b,c... +ii,ii,iii... +II,II,III... + + +footnote.number.format +Identifies the format used for footnote numbers + + + + +<xsl:param name="footnote.number.format">1</xsl:param> + + + +Description + +The footnote.number.format specifies the format +to use for footnote numeration (1, i, I, a, or A). + + + + + + +table.footnote.number.format +list +11,2,3... +AA,B,C... +aa,b,c... +ii,ii,iii... +II,II,III... + + +table.footnote.number.format +Identifies the format used for footnote numbers in tables + + + + +<xsl:param name="table.footnote.number.format">a</xsl:param> + + + +Description + +The table.footnote.number.format specifies the format +to use for footnote numeration (1, i, I, a, or A) in tables. + + + + + + +footnote.number.symbols + + + +footnote.number.symbols +Special characters to use as footnote markers + + + + +<xsl:param name="footnote.number.symbols"></xsl:param> + + + +Description + +If footnote.number.symbols is not the empty string, +footnotes will use the characters it contains as footnote symbols. For example, +*&#x2020;&#x2021;&#x25CA;&#x2720; will identify +footnotes with *, , , +, and . If there are more footnotes +than symbols, the stylesheets will fall back to numbered footnotes using +footnote.number.format. + +The use of symbols for footnotes depends on the ability of your +processor (or browser) to render the symbols you select. Not all systems are +capable of displaying the full range of Unicode characters. If the quoted characters +in the preceding paragraph are not displayed properly, that's a good indicator +that you may have trouble using those symbols for footnotes. + + + + + + +table.footnote.number.symbols +string + + +table.footnote.number.symbols +Special characters to use a footnote markers in tables + + + + +<xsl:param name="table.footnote.number.symbols"></xsl:param> + + + +Description + +If table.footnote.number.symbols is not the empty string, +table footnotes will use the characters it contains as footnote symbols. For example, +*&#x2020;&#x2021;&#x25CA;&#x2720; will identify +footnotes with *, , , +, and . If there are more footnotes +than symbols, the stylesheets will fall back to numbered footnotes using +table.footnote.number.format. + +The use of symbols for footnotes depends on the ability of your +processor (or browser) to render the symbols you select. Not all systems are +capable of displaying the full range of Unicode characters. If the quoted characters +in the preceding paragraph are not displayed properly, that's a good indicator +that you may have trouble using those symbols for footnotes. + + + + + + +footnote.properties +attribute set + + +footnote.properties +Properties applied to each footnote body + + + + + +<xsl:attribute-set name="footnote.properties"> + <xsl:attribute name="font-family"><xsl:value-of select="$body.fontset"></xsl:value-of></xsl:attribute> + <xsl:attribute name="font-size"><xsl:value-of select="$footnote.font.size"></xsl:value-of></xsl:attribute> + <xsl:attribute name="font-weight">normal</xsl:attribute> + <xsl:attribute name="font-style">normal</xsl:attribute> + <xsl:attribute name="text-align"><xsl:value-of select="$alignment"></xsl:value-of></xsl:attribute> + <xsl:attribute name="start-indent">0pt</xsl:attribute> + <xsl:attribute name="text-indent">0pt</xsl:attribute> + <xsl:attribute name="hyphenate"><xsl:value-of select="$hyphenate"></xsl:value-of></xsl:attribute> + <xsl:attribute name="wrap-option">wrap</xsl:attribute> + <xsl:attribute name="linefeed-treatment">treat-as-space</xsl:attribute> +</xsl:attribute-set> + + + +Description + +This attribute set is applied to the footnote-block +for each footnote. +It can be used to set the +font-size, font-family, and other inheritable properties that will be +applied to all footnotes. + + + + + + +table.footnote.properties +attribute set + + +table.footnote.properties +Properties applied to each table footnote body + + + + + +<xsl:attribute-set name="table.footnote.properties"> + <xsl:attribute name="font-family"><xsl:value-of select="$body.fontset"></xsl:value-of></xsl:attribute> + <xsl:attribute name="font-size"><xsl:value-of select="$footnote.font.size"></xsl:value-of></xsl:attribute> + <xsl:attribute name="font-weight">normal</xsl:attribute> + <xsl:attribute name="font-style">normal</xsl:attribute> + <xsl:attribute name="space-before">2pt</xsl:attribute> + <xsl:attribute name="text-align"><xsl:value-of select="$alignment"></xsl:value-of></xsl:attribute> +</xsl:attribute-set> + + + +Description + +This attribute set is applied to the footnote-block +for each table footnote. +It can be used to set the +font-size, font-family, and other inheritable properties that will be +applied to all table footnotes. + + + + + + +footnote.mark.properties +attribute set + + +footnote.mark.properties +Properties applied to each footnote mark + + + + + +<xsl:attribute-set name="footnote.mark.properties"> + <xsl:attribute name="font-family"><xsl:value-of select="$body.fontset"></xsl:value-of></xsl:attribute> + <xsl:attribute name="font-size">75%</xsl:attribute> + <xsl:attribute name="font-weight">normal</xsl:attribute> + <xsl:attribute name="font-style">normal</xsl:attribute> +</xsl:attribute-set> + + + +Description + +This attribute set is applied to the footnote mark used +for each footnote. +It should contain only inline properties. + + +The property to make the mark a superscript is contained in the +footnote template itself, because the current version of FOP reports +an error if baseline-shift is used. + + + + + + + +footnote.sep.leader.properties +attribute set + + +footnote.sep.leader.properties +Properties associated with footnote separators + + + + +<xsl:attribute-set name="footnote.sep.leader.properties"> + <xsl:attribute name="color">black</xsl:attribute> + <xsl:attribute name="leader-pattern">rule</xsl:attribute> + <xsl:attribute name="leader-length">1in</xsl:attribute> +</xsl:attribute-set> + + + +Description + +The styling for the rule line that separates the +footnotes from the body text. +These are properties applied to the fo:leader used as +the separator. + +If you want to do more than just set properties on +the leader element, then you can customize the template +named footnote.separator in +fo/pagesetup.xsl. + + + + + + +xref.with.number.and.title +boolean + + +xref.with.number.and.title +Use number and title in cross references + + + + +<xsl:param name="xref.with.number.and.title" select="1"></xsl:param> + + + +Description + +A cross reference may include the number (for example, the number of +an example or figure) and the title which is a required child of some +targets. This parameter inserts both the relevant number as well as +the title into the link. + + + + + + +superscript.properties +attribute set + + +superscript.properties +Properties associated with superscripts + + + + +<xsl:attribute-set name="superscript.properties"> + <xsl:attribute name="font-size">75%</xsl:attribute> +</xsl:attribute-set> + + + +Description + +Specifies styling properties for superscripts. + + + + + + +subscript.properties +attribute set + + +subscript.properties +Properties associated with subscripts + + + + +<xsl:attribute-set name="subscript.properties"> + <xsl:attribute name="font-size">75%</xsl:attribute> +</xsl:attribute-set> + + + +Description + +Specifies styling properties for subscripts. + + + + + + +pgwide.properties +attribute set + + +pgwide.properties +Properties to make a figure or table page wide. + + + + + +<xsl:attribute-set name="pgwide.properties"> + <xsl:attribute name="start-indent">0pt</xsl:attribute> +</xsl:attribute-set> + + + +Description + +This attribute set is used to set the properties +that make a figure or table "page wide" in fo output. +It comes into effect when an attribute pgwide="1" +is used. + + + +By default, it sets start-indent +to 0pt. +In a stylesheet that sets the parameter +body.start.indent +to a non-zero value in order to indent body text, +this attribute set can be used to outdent pgwide +figures to the start margin. + + +If a document uses a multi-column page layout, +then this attribute set could try setting span +to a value of all. However, this may +not work with some processors because a span property must be on an +fo:block that is a direct child of fo:flow. It may work in +some processors anyway. + + + + + + + +highlight.source +boolean + + +highlight.source +Should the content of programlisting +be syntactically highlighted? + + + + +<xsl:param name="highlight.source" select="0"></xsl:param> + + + +Description + +When this parameter is non-zero, the stylesheets will try to do syntax highlighting of the +content of programlisting elements. You specify the language for each programlisting +by using the language attribute. The highlight.default.language +parameter can be used to specify the language for programlistings without a language +attribute. Syntax highlighting also works for screen and synopsis elements. + +The actual highlighting work is done by the XSLTHL extension module. This is an external Java library that has to be +downloaded separately (see below). + + +In order to use this extension, you must + +add xslthl-2.x.x.jar to your Java classpath. The latest version is available +from the XSLT syntax highlighting project +at SourceForge. + + +use a customization layer in which you import one of the following stylesheet modules: + + + html/highlight.xsl + + + + xhtml/highlight.xsl + + + + xhtml-1_1/highlight.xsl + + + + fo/highlight.xsl + + + + + +let either the xslthl.config Java system property or the +highlight.xslthl.config parameter point to the configuration file for syntax +highlighting (using URL syntax). DocBook XSL comes with a ready-to-use configuration file, +highlighting/xslthl-config.xml. + + + +The extension works with Saxon 6.5.x and Xalan-J. (Saxon 8.5 or later is also supported, but since it is +an XSLT 2.0 processor it is not guaranteed to work with DocBook XSL in all circumstances.) + +The following is an example of a Saxon 6 command adapted for syntax highlighting, to be used on Windows: + + +java -cp c:/Java/saxon.jar;c:/Java/xslthl-2.0.1.jar +-Dxslthl.config=file:///c:/docbook-xsl/highlighting/xslthl-config.xml com.icl.saxon.StyleSheet +-o test.html test.xml myhtml.xsl + + + + + + + +highlight.xslthl.config +uri + + +highlight.xslthl.config +Location of XSLTHL configuration file + + + + +<xsl:param name="highlight.xslthl.config"></xsl:param> + + + +Description + +This location has precedence over the corresponding Java property. + +Please note that usually you have to specify location as URL not +just as a simple path on the local +filesystem. E.g. file:///home/user/xslthl/my-xslthl-config.xml. + + + + + + + + +highlight.default.language +string + + +highlight.default.language +Default language of programlisting + + + + +<xsl:param name="highlight.default.language"></xsl:param> + + + +Description + +This language is used when there is no language attribute on programlisting. + + + + + + +email.delimiters.enabled +boolean + + +email.delimiters.enabled +Generate delimiters around email addresses? + + + + +<xsl:param name="email.delimiters.enabled" select="1"></xsl:param> + + + +Description + +If non-zero, delimiters + +For delimiters, the +stylesheets are currently hard-coded to output angle +brackets. + +are generated around e-mail addresses +(the output of the email element). + + + + + + +email.mailto.enabled +boolean + + +email.mailto.enabled +Generate mailto: links for email addresses? + + + + +<xsl:param name="email.mailto.enabled" select="0"></xsl:param> + + + +Description + +If non-zero the generated output for the email element +will be a clickable mailto: link that brings up the default mail client +on the system. + + + + + + +section.container.element +list +block +wrapper + + +section.container.element +Select XSL-FO element name to contain sections + + + + +<xsl:param name="section.container.element">block</xsl:param> + + + +Description + +Selects the element name for outer container of +each section. The choices are block (default) +or wrapper. +The fo: namespace prefix is added +by the stylesheet to form the full element name. + + +This element receives the section id +attribute and the appropriate section level attribute-set. + + +Changing this parameter to wrapper +is only necessary when producing multi-column output +that contains page-wide spans. Using fo:wrapper +avoids the nesting of fo:block +elements that prevents spans from working (the standard says +a span must be on a block that is a direct child of +fo:flow). + + +If set to wrapper, the +section attribute-sets only support properties +that are inheritable. That's because there is no +block to apply them to. Properties such as +font-family are inheritable, but properties such as +border are not. + + +Only some XSL-FO processors need to use this parameter. +The Antenna House processor, for example, will handle +spans in nested blocks without changing the element name. +The RenderX XEP product and FOP follow the XSL-FO standard +and need to use wrapper. + + + + + + + +monospace.verbatim.font.width +length + + +monospace.verbatim.font.width +Width of a single monospace font character + + + + +<xsl:param name="monospace.verbatim.font.width">0.60em</xsl:param> + + + +Description + +Specifies with em units the width of a single character +of the monospace font. The default value is 0.6em. + +This parameter is only used when a screen +or programlisting element has a +width attribute, which is +expressed as a plain integer to indicate the maximum character count +of each line. +To convert this character count to an actual maximum width +measurement, the width of the font characters must be provided. +Different monospace fonts have different character width, +so this parameter should be adjusted to fit the +monospace font being used. + + + + + + + +exsl.node.set.available +boolean + + +exsl.node.set.available +Is the test function-available('exsl:node-set') true? + + + +<xsl:param name="exsl.node.set.available"> + <xsl:choose> + <xsl:when exsl:foo="" test="function-available('exsl:node-set') or contains(system-property('xsl:vendor'), 'Apache Software Foundation')">1</xsl:when> + <xsl:otherwise>0</xsl:otherwise> + </xsl:choose> +</xsl:param> + + + +Description + +If non-zero, +then the exsl:node-set() function is available to be used in +the stylesheet. +If zero, then the function is not available. +This param automatically detects the presence of +the function and does not normally need to be set manually. + +This param was created to handle a long-standing +bug in the Xalan processor that fails to detect the +function even though it is available. + + + + + + +bookmarks.collapse +boolean + + +bookmarks.collapse +Specifies the initial state of bookmarks + + + + +<xsl:param name="bookmarks.collapse" select="1"></xsl:param> + + + +Description + +If non-zero, the bookmark tree is collapsed so that only the +top-level bookmarks are displayed initially. Otherwise, the whole tree +of bookmarks is displayed. + +This parameter currently works with FOP 0.93 or later. + + + + + +Graphics + + +graphic.default.extension +string + + +graphic.default.extension +Default extension for graphic filenames + + + +<xsl:param name="graphic.default.extension"></xsl:param> + + +Description + +If a graphic or mediaobject +includes a reference to a filename that does not include an extension, +and the format attribute is +unspecified, the default extension will be used. + + + + + + + +default.image.width +length + + +default.image.width +The default width of images + + + + +<xsl:param name="default.image.width"></xsl:param> + + + +Description + +If specified, this value will be used for the +width attribute on images that do not specify any +viewport dimensions. + + + + + + +preferred.mediaobject.role +string + + +preferred.mediaobject.role +Select which mediaobject to use based on +this value of an object's role attribute. + + + + + +<xsl:param name="preferred.mediaobject.role"></xsl:param> + + + +Description + +A mediaobject may contain several objects such as imageobjects. +If the parameter use.role.for.mediaobject is +non-zero, then the role attribute on +imageobjects and other objects within a +mediaobject container will be used to select which object +will be used. If one of the objects has a role value that matches the +preferred.mediaobject.role parameter, then it +has first priority for selection. If more than one has such a role +value, the first one is used. + + +See the use.role.for.mediaobject parameter +for the sequence of selection. + + + + + +use.role.for.mediaobject +boolean + + +use.role.for.mediaobject +Use role attribute +value for selecting which of several objects within a mediaobject to use. + + + + + +<xsl:param name="use.role.for.mediaobject" select="1"></xsl:param> + + + +Description + +If non-zero, the role attribute on +imageobjects or other objects within a mediaobject container will be used to select which object will be +used. + + +The order of selection when then parameter is non-zero is: + + + + If the stylesheet parameter preferred.mediaobject.role has a value, then the object whose role equals that value is selected. + + +Else if an object's role attribute has a value of +html for HTML processing or +fo for FO output, then the first +of such objects is selected. + + + +Else the first suitable object is selected. + + + +If the value of +use.role.for.mediaobject +is zero, then role attributes are not considered +and the first suitable object +with or without a role value is used. + + + + + + +ignore.image.scaling +boolean + + +ignore.image.scaling +Tell the stylesheets to ignore the author's image scaling attributes + + + + +<xsl:param name="ignore.image.scaling" select="0"></xsl:param> + + + +Description + +If non-zero, the scaling attributes on graphics and media objects are +ignored. + + + + + + +img.src.path +string + + +img.src.path +Path to HTML/FO image files + + + +<xsl:param name="img.src.path"></xsl:param> + + +Description + +Add a path prefix to the value of the fileref +attribute of graphic, inlinegraphic, and imagedata elements. The resulting +compound path is used in the output as the value of the src +attribute of img (HTML) or external-graphic (FO). + + + +The path given by img.src.path could be relative to the directory where the HTML/FO +files are created, or it could be an absolute URI. +The default value is empty. +Be sure to include a trailing slash if needed. + + +This prefix is not applied to any filerefs that start +with "/" or contain "//:". + + + + + + + +keep.relative.image.uris +boolean + + +keep.relative.image.uris +Should image URIs be resolved against xml:base? + + + + + +<xsl:param name="keep.relative.image.uris" select="0"></xsl:param> + + + +Description + +If non-zero, relative URIs (in, for example +fileref attributes) will be used in the generated +output. Otherwise, the URIs will be made absolute with respect to the +base URI. + +Note that the stylesheets calculate (and use) the absolute form +for some purposes, this only applies to the resulting output. + + + + + +Pagination and General Styles + +
    Understanding XSL FO Margins + +To make sense of the parameters in this section, it's useful to +consider . + +
    + Page Model + + + + + + + + Figure showing page margins + + This figure shows the physical page with the various FO page regions + identified. + + +
    + +First, let's consider the regions on the page. + +The white region is the physical page. Its dimensions are determined by +the page.height and page.width +parameters. + +The yellow region is the region-body. The size and placement of +the region body is constrained by the dimensions labelled in the +figure. + +The pink region at the top of the page is the region-before. The +darker area inside the region-before is the header text. In XSL, the default +display alignment for a region is before, but the +DocBook stylesheets still explicitly make it before. That's +why the darker area is at the top. + +The pink region at the bottom of the page is the region-after. +The darker area is the footer text. In XSL, the default display +alignment for a region is before, +but the DocBook stylesheets explicitly make it +after. That's why the darker area is at the bottom. + +The dimensions in the figure are: + + +The page-master margin-top. + +The region-before extent. + +The region-body margin-top. + +The region-after extent. + +The page-master margin-bottom. + +The region-body margin-bottom. + +The sum of the page-master margin-left and the +region-body margin-left. In DocBook, the region-body margin-left is +zero by default, so this is simply the page-master margin-left. + +The sum of the page-master margin-right and the +region-body margin-right. In DocBook, the region-body margin-right is +zero by default, so this is simply the page-master margin-right. + + + +
    +
    + + + +page.height +length + + +page.height +The height of the physical page + + + +<xsl:param name="page.height"> + <xsl:choose> + <xsl:when test="$page.orientation = 'portrait'"> + <xsl:value-of select="$page.height.portrait"></xsl:value-of> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="$page.width.portrait"></xsl:value-of> + </xsl:otherwise> + </xsl:choose> +</xsl:param> + + +Description + +The page height is generally calculated from the +paper.type and +page.orientation parameters. + + + + + + + +page.height.portrait +length + + +page.height.portrait +Specify the physical size of the long edge of the page + + + +<xsl:param name="page.height.portrait"> + <xsl:choose> + <xsl:when test="$paper.type = 'A4landscape'">210mm</xsl:when> + <xsl:when test="$paper.type = 'USletter'">11in</xsl:when> + <xsl:when test="$paper.type = 'USlandscape'">8.5in</xsl:when> + <xsl:when test="$paper.type = '4A0'">2378mm</xsl:when> + <xsl:when test="$paper.type = '2A0'">1682mm</xsl:when> + <xsl:when test="$paper.type = 'A0'">1189mm</xsl:when> + <xsl:when test="$paper.type = 'A1'">841mm</xsl:when> + <xsl:when test="$paper.type = 'A2'">594mm</xsl:when> + <xsl:when test="$paper.type = 'A3'">420mm</xsl:when> + <xsl:when test="$paper.type = 'A4'">297mm</xsl:when> + <xsl:when test="$paper.type = 'A5'">210mm</xsl:when> + <xsl:when test="$paper.type = 'A6'">148mm</xsl:when> + <xsl:when test="$paper.type = 'A7'">105mm</xsl:when> + <xsl:when test="$paper.type = 'A8'">74mm</xsl:when> + <xsl:when test="$paper.type = 'A9'">52mm</xsl:when> + <xsl:when test="$paper.type = 'A10'">37mm</xsl:when> + <xsl:when test="$paper.type = 'B0'">1414mm</xsl:when> + <xsl:when test="$paper.type = 'B1'">1000mm</xsl:when> + <xsl:when test="$paper.type = 'B2'">707mm</xsl:when> + <xsl:when test="$paper.type = 'B3'">500mm</xsl:when> + <xsl:when test="$paper.type = 'B4'">353mm</xsl:when> + <xsl:when test="$paper.type = 'B5'">250mm</xsl:when> + <xsl:when test="$paper.type = 'B6'">176mm</xsl:when> + <xsl:when test="$paper.type = 'B7'">125mm</xsl:when> + <xsl:when test="$paper.type = 'B8'">88mm</xsl:when> + <xsl:when test="$paper.type = 'B9'">62mm</xsl:when> + <xsl:when test="$paper.type = 'B10'">44mm</xsl:when> + <xsl:when test="$paper.type = 'C0'">1297mm</xsl:when> + <xsl:when test="$paper.type = 'C1'">917mm</xsl:when> + <xsl:when test="$paper.type = 'C2'">648mm</xsl:when> + <xsl:when test="$paper.type = 'C3'">458mm</xsl:when> + <xsl:when test="$paper.type = 'C4'">324mm</xsl:when> + <xsl:when test="$paper.type = 'C5'">229mm</xsl:when> + <xsl:when test="$paper.type = 'C6'">162mm</xsl:when> + <xsl:when test="$paper.type = 'C7'">114mm</xsl:when> + <xsl:when test="$paper.type = 'C8'">81mm</xsl:when> + <xsl:when test="$paper.type = 'C9'">57mm</xsl:when> + <xsl:when test="$paper.type = 'C10'">40mm</xsl:when> + <xsl:otherwise>11in</xsl:otherwise> + </xsl:choose> +</xsl:param> + + +Description + +The portrait page height is the length of the long +edge of the physical page. + + + + + + + +page.margin.bottom +length + + +page.margin.bottom +The bottom margin of the page + + + + +<xsl:param name="page.margin.bottom">0.5in</xsl:param> + + + +Description + +The bottom page margin is the distance from the bottom of the region-after +to the physical bottom of the page. + + + + + + + +page.margin.inner +length + + +page.margin.inner +The inner page margin + + + +<xsl:param name="page.margin.inner"> + <xsl:choose> + <xsl:when test="$double.sided != 0">1.25in</xsl:when> + <xsl:otherwise>1in</xsl:otherwise> + </xsl:choose> +</xsl:param> + + +Description + +The inner page margin is the distance from bound edge of the +page to the first column of text. + +The inner page margin is the distance from bound edge of the +page to the outer edge of the first column of text. + +In left-to-right text direction, +this is the left margin of recto (front side) pages. +For single-sided output, it is the left margin +of all pages. + +In right-to-left text direction, +this is the right margin of recto pages. +For single-sided output, this is the +right margin of all pages. + + +Current versions (at least as of version 4.13) +of the XEP XSL-FO processor do not +correctly handle these margin settings for documents +with right-to-left text direction. +The workaround in that situation is to reverse +the values for page.margin.inner +and page.margin.outer, until +this bug is fixed by RenderX. It does not affect documents +with left-to-right text direction. + + + + + + + +page.margin.outer +length + + +page.margin.outer +The outer page margin + + + +<xsl:param name="page.margin.outer"> + <xsl:choose> + <xsl:when test="$double.sided != 0">0.75in</xsl:when> + <xsl:otherwise>1in</xsl:otherwise> + </xsl:choose> +</xsl:param> + + +Description + +The outer page margin is the distance from non-bound edge of the +page to the outer edge of the last column of text. + +In left-to-right text direction, +this is the right margin of recto (front side) pages. +For single-sided output, it is the right margin +of all pages. + +In right-to-left text direction, +this is the left margin of recto pages. +For single-sided output, this is the +left margin of all pages. + + +Current versions (at least as of version 4.13) +of the XEP XSL-FO processor do not +correctly handle these margin settings for documents +with right-to-left text direction. +The workaround in that situation is to reverse +the values for page.margin.inner +and page.margin.outer, until +this bug is fixed by RenderX. It does not affect documents +with left-to-right text direction. + + + + + + + +page.margin.top +length + + +page.margin.top +The top margin of the page + + + + +<xsl:param name="page.margin.top">0.5in</xsl:param> + + + +Description + +The top page margin is the distance from the physical top of the +page to the top of the region-before. + + + + + + +page.orientation +list +portrait +landscape + + +page.orientation +Select the page orientation + + + + +<xsl:param name="page.orientation">portrait</xsl:param> + + + +Description + + Select one from portrait or landscape. +In portrait orientation, the short edge is horizontal; in +landscape orientation, it is vertical. + + + + + + + +page.width +length + + +page.width +The width of the physical page + + + +<xsl:param name="page.width"> + <xsl:choose> + <xsl:when test="$page.orientation = 'portrait'"> + <xsl:value-of select="$page.width.portrait"></xsl:value-of> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="$page.height.portrait"></xsl:value-of> + </xsl:otherwise> + </xsl:choose> +</xsl:param> + + +Description + +The page width is generally calculated from the +paper.type and +page.orientation parameters. + + + + + + +page.width.portrait +length + + +page.width.portrait +Specify the physical size of the short edge of the page + + + +<xsl:param name="page.width.portrait"> + <xsl:choose> + <xsl:when test="$paper.type = 'USletter'">8.5in</xsl:when> + <xsl:when test="$paper.type = '4A0'">1682mm</xsl:when> + <xsl:when test="$paper.type = '2A0'">1189mm</xsl:when> + <xsl:when test="$paper.type = 'A0'">841mm</xsl:when> + <xsl:when test="$paper.type = 'A1'">594mm</xsl:when> + <xsl:when test="$paper.type = 'A2'">420mm</xsl:when> + <xsl:when test="$paper.type = 'A3'">297mm</xsl:when> + <xsl:when test="$paper.type = 'A4'">210mm</xsl:when> + <xsl:when test="$paper.type = 'A5'">148mm</xsl:when> + <xsl:when test="$paper.type = 'A6'">105mm</xsl:when> + <xsl:when test="$paper.type = 'A7'">74mm</xsl:when> + <xsl:when test="$paper.type = 'A8'">52mm</xsl:when> + <xsl:when test="$paper.type = 'A9'">37mm</xsl:when> + <xsl:when test="$paper.type = 'A10'">26mm</xsl:when> + <xsl:when test="$paper.type = 'B0'">1000mm</xsl:when> + <xsl:when test="$paper.type = 'B1'">707mm</xsl:when> + <xsl:when test="$paper.type = 'B2'">500mm</xsl:when> + <xsl:when test="$paper.type = 'B3'">353mm</xsl:when> + <xsl:when test="$paper.type = 'B4'">250mm</xsl:when> + <xsl:when test="$paper.type = 'B5'">176mm</xsl:when> + <xsl:when test="$paper.type = 'B6'">125mm</xsl:when> + <xsl:when test="$paper.type = 'B7'">88mm</xsl:when> + <xsl:when test="$paper.type = 'B8'">62mm</xsl:when> + <xsl:when test="$paper.type = 'B9'">44mm</xsl:when> + <xsl:when test="$paper.type = 'B10'">31mm</xsl:when> + <xsl:when test="$paper.type = 'C0'">917mm</xsl:when> + <xsl:when test="$paper.type = 'C1'">648mm</xsl:when> + <xsl:when test="$paper.type = 'C2'">458mm</xsl:when> + <xsl:when test="$paper.type = 'C3'">324mm</xsl:when> + <xsl:when test="$paper.type = 'C4'">229mm</xsl:when> + <xsl:when test="$paper.type = 'C5'">162mm</xsl:when> + <xsl:when test="$paper.type = 'C6'">114mm</xsl:when> + <xsl:when test="$paper.type = 'C7'">81mm</xsl:when> + <xsl:when test="$paper.type = 'C8'">57mm</xsl:when> + <xsl:when test="$paper.type = 'C9'">40mm</xsl:when> + <xsl:when test="$paper.type = 'C10'">28mm</xsl:when> + <xsl:otherwise>8.5in</xsl:otherwise> + </xsl:choose> +</xsl:param> + + +Description + +The portrait page width is the length of the short +edge of the physical page. + + + + + + + +paper.type +list +open +open +USletter8.5x11in +USlandscape11x8.5in +USlegal8.5inx14in +USlegallandscape14inx8.5in +4A02378x1682mm +2A01682x1189mm +A01189x841mm +A1841x594mm +A2594x420mm +A3420x297mm +A4297x210mm +A5210x148mm +A6148x105mm +A7105x74mm +A874x52mm +A952x37mm +A1037x26mm +B01414x1000mm +B11000x707mm +B2707x500mm +B3500x353mm +B4353x250mm +B5250x176mm +B6176x125mm +B7125x88mm +B888x62mm +B962x44mm +B1044x31mm +C01297x917mm +C1917x648mm +C2648x458mm +C3458x324mm +C4324x229mm +C5229x162mm +C6162x114mm +C7114x81mm +C881x57mm +C957x40mm +C1040x28mm + + +paper.type +Select the paper type + + + + +<xsl:param name="paper.type">USletter</xsl:param> + + + +Description + +The paper type is a convenient way to specify the paper size. +The list of known paper sizes includes USletter and most of the A, +B, and C sizes. See page.width.portrait, for example. + + + + + + + + + +double.sided +boolean + + +double.sided +Is the document to be printed double sided? + + + + +<xsl:param name="double.sided" select="0"></xsl:param> + + + +Description + +Double-sided documents are printed with a slightly wider margin +on the binding edge of the page. + +FIXME: The current set of parameters does not take writing direction +into account. + + + + + + +body.margin.bottom +length + + +body.margin.bottom +The bottom margin of the body text + + + + +<xsl:param name="body.margin.bottom">0.5in</xsl:param> + + + +Description + +The body bottom margin is the distance from the last line of text +in the page body to the bottom of the region-after. + + + + + + + +body.margin.top +length + + +body.margin.top +To specify the size of the top margin of a page + + + + +<xsl:param name="body.margin.top">0.5in</xsl:param> + + + +Description + +The body top margin is the distance from the top of the +region-before to the first line of text in the page body. + + + + + + +body.start.indent +length + + +body.start.indent +The start-indent for the body text + + + + +<xsl:param name="body.start.indent"> + <xsl:choose> + <xsl:when test="$fop.extensions != 0">0pt</xsl:when> + <xsl:when test="$passivetex.extensions != 0">0pt</xsl:when> + <xsl:otherwise>4pc</xsl:otherwise> + </xsl:choose> +</xsl:param> + + + +Description + +This parameter provides +the means of indenting the body text relative to +section titles. +For left-to-right text direction, it indents the left side. +For right-to-left text direction, it indents the right side. +It is used in place of the +title.margin.left for +all XSL-FO processors except FOP 0.25. +It enables support for side floats to appear +in the indented margin area. + +This start-indent property is added to the fo:flow +for certain page sequences. Which page-sequences it is +applied to is determined by the template named +set.flow.properties. +By default, that template adds it to the flow +for page-sequences using the body +master-reference, as well as appendixes and prefaces. + +If this parameter is used, section titles should have +a start-indent value of 0pt if they are to be +outdented relative to the body text. + + +If you are using FOP, then set this parameter to a zero +width value and set the title.margin.left +parameter to the negative value of the desired indent. + + +See also body.end.indent and +title.margin.left. + + + + + + + +body.end.indent +length + + +body.end.indent +The end-indent for the body text + + + + +<xsl:param name="body.end.indent">0pt</xsl:param> + + + +Description + +This end-indent property is added to the fo:flow +for certain page sequences. Which page-sequences it is +applied to is determined by the template named +set.flow.properties. +By default, that template adds it to the flow +for page-sequences using the body +master-reference, as well as appendixes and prefaces. + + +See also body.start.indent. + + + + + + + +alignment + list + open + left + start + right + end + center + justify + + +alignment +Specify the default text alignment + + + +<xsl:param name="alignment">justify</xsl:param> + + +Description + +The default text alignment is used for most body text. +Allowed values are +left, +right, +start, +end, +center, +justify. +The default value is justify. + + + + + + + +hyphenate +list +closed +true +false + + +hyphenate +Specify hyphenation behavior + + + +<xsl:param name="hyphenate">true</xsl:param> + + +Description + +If true, words may be hyphenated. Otherwise, they may not. + + + + + + + +line-height +string + + +line-height +Specify the line-height property + + + + +<xsl:param name="line-height">normal</xsl:param> + + + +Description + +Sets the line-height property. + + + + + + +column.count.back +integer + + +column.count.back +Number of columns on back matter pages + + + + +<xsl:param name="column.count.back" select="1"></xsl:param> + + + +Description + +Number of columns on back matter (appendix, glossary, etc.) pages. + + + + + + +column.count.body +integer + + +column.count.body +Number of columns on body pages + + + + +<xsl:param name="column.count.body" select="1"></xsl:param> + + + +Description + +Number of columns on body pages. + + + + + + +column.count.front +integer + + +column.count.front +Number of columns on front matter pages + + + + +<xsl:param name="column.count.front" select="1"></xsl:param> + + + +Description + +Number of columns on front matter (dedication, preface, etc.) pages. + + + + + + +column.count.index +integer + + +column.count.index +Number of columns on index pages + + + + +<xsl:param name="column.count.index">2</xsl:param> + + + +Description + +Number of columns on index pages. + + + + + + +column.count.lot +integer + + +column.count.lot +Number of columns on a 'List-of-Titles' page + + + + +<xsl:param name="column.count.lot" select="1"></xsl:param> + + + +Description + +Number of columns on a page sequence containing the Table of Contents, +List of Figures, etc. + + + + + + +column.count.titlepage +integer + + +column.count.titlepage +Number of columns on a title page + + + + +<xsl:param name="column.count.titlepage" select="1"></xsl:param> + + + +Description + +Number of columns on a title page + + + + + + +column.gap.back +length + + +column.gap.back +Gap between columns in back matter + + + + +<xsl:param name="column.gap.back">12pt</xsl:param> + + + +Description + +Specifies the gap between columns in back matter (if +column.count.back is greater than one). + + + + + + +column.gap.body +length + + +column.gap.body +Gap between columns in the body + + + + +<xsl:param name="column.gap.body">12pt</xsl:param> + + + +Description + +Specifies the gap between columns in body matter (if +column.count.body is greater than one). + + + + + + +column.gap.front +length + + +column.gap.front +Gap between columns in the front matter + + + + +<xsl:param name="column.gap.front">12pt</xsl:param> + + + +Description + +Specifies the gap between columns in front matter (if +column.count.front is greater than one). + + + + + + +column.gap.index +length + + +column.gap.index +Gap between columns in the index + + + + +<xsl:param name="column.gap.index">12pt</xsl:param> + + + +Description + +Specifies the gap between columns in indexes (if +column.count.index is greater than one). + + + + + + +column.gap.lot +length + + +column.gap.lot +Gap between columns on a 'List-of-Titles' page + + + + +<xsl:param name="column.gap.lot">12pt</xsl:param> + + + +Description + +Specifies the gap between columns on 'List-of-Titles' pages (if +column.count.lot is greater than one). + + + + + + +column.gap.titlepage +length + + +column.gap.titlepage +Gap between columns on title pages + + + + +<xsl:param name="column.gap.titlepage">12pt</xsl:param> + + + +Description + +Specifies the gap between columns on title pages (if +column.count.titlepage is greater than one). + + + + + + + +region.after.extent +length + + +region.after.extent +Specifies the height of the footer. + + + + +<xsl:param name="region.after.extent">0.4in</xsl:param> + + + +Description + +The region after extent is the height of the area where footers +are printed. + + + + + + + +region.before.extent +length + + +region.before.extent +Specifies the height of the header + + + + +<xsl:param name="region.before.extent">0.4in</xsl:param> + + + +Description + +The region before extent is the height of the area where headers +are printed. + + + + + + + +default.units +list +cm +mm +in +pt +pc +px +em + + +default.units +Default units for an unqualified dimension + + + + +<xsl:param name="default.units">pt</xsl:param> + + + +Description + +If an unqualified dimension is encountered (for example, in a +graphic width), the default.units will be used for the +units. Unqualified dimensions are not allowed in XSL Formatting Objects. + + + + + + + +normal.para.spacing +attribute set + + +normal.para.spacing +What space do you want between normal paragraphs + + + +<xsl:attribute-set name="normal.para.spacing"> + <xsl:attribute name="space-before.optimum">1em</xsl:attribute> + <xsl:attribute name="space-before.minimum">0.8em</xsl:attribute> + <xsl:attribute name="space-before.maximum">1.2em</xsl:attribute> +</xsl:attribute-set> + +Description +Specify the spacing required between normal paragraphs + + + + + +body.font.master + number + + +body.font.master +Specifies the default point size for body text + + + + +<xsl:param name="body.font.master">10</xsl:param> + + + +Description + +The body font size is specified in two parameters +(body.font.master and body.font.size) +so that math can be performed on the font size by XSLT. + + + + + + + +body.font.size +length + + +body.font.size +Specifies the default font size for body text + + + + +<xsl:param name="body.font.size"> + <xsl:value-of select="$body.font.master"></xsl:value-of><xsl:text>pt</xsl:text> +</xsl:param> + + +Description + +The body font size is specified in two parameters +(body.font.master and body.font.size) +so that math can be performed on the font size by XSLT. + + + + + + + +footnote.font.size +length + + +footnote.font.size +The font size for footnotes + + + +<xsl:param name="footnote.font.size"> + <xsl:value-of select="$body.font.master * 0.8"></xsl:value-of><xsl:text>pt</xsl:text> +</xsl:param> + + +Description + +The footnote font size is used for...footnotes! + + + + + + + +title.margin.left +length + + +title.margin.left +Adjust the left margin for titles + + + + +<xsl:param name="title.margin.left"> + <xsl:choose> + <xsl:when test="$fop.extensions != 0">-4pc</xsl:when> + <xsl:when test="$passivetex.extensions != 0">0pt</xsl:when> + <xsl:otherwise>0pt</xsl:otherwise> + </xsl:choose> +</xsl:param> + + + +Description + +This parameter provides +the means of adjusting the left margin for titles +when the XSL-FO processor being used is +an old version of FOP (0.25 and earlier). +It is only useful when the fop.extensions +is nonzero. + +The left margin of the body region +is calculated to include this space, +and titles are outdented to the left outside +the body region by this amount, +effectively leaving titles at the intended left margin +and the body text indented. +Currently this method is only used for old FOP because +it cannot properly use the body.start.indent +parameter. + + +The default value when the fop.extensions +parameter is nonzero is -4pc, which means the +body text is indented 4 picas relative to +the titles. +The default value when the fop.extensions +parameter equals zero is 0pt, and +the body indent should instead be specified +using the body.start.indent +parameter. + + +If you set the value to zero, be sure to still include +a unit indicator such as 0pt, or +the FO processor will report errors. + + + + + + + +draft.mode +list +no +yes +maybe + + +draft.mode +Select draft mode + + + + +<xsl:param name="draft.mode">no</xsl:param> + + + +Description + +Selects draft mode. If draft.mode is +yes, the entire document will be treated +as a draft. If it is no, the entire document +will be treated as a final copy. If it is maybe, +individual sections will be treated as draft or final independently, depending +on how their status attribute is set. + + + + + + + +draft.watermark.image +uri + + +draft.watermark.image +The URI of the image to be used for draft watermarks + + + + +<xsl:param name="draft.watermark.image">images/draft.png</xsl:param> + + + +Description + +The image to be used for draft watermarks. + + + + + + +headers.on.blank.pages +boolean + + +headers.on.blank.pages +Put headers on blank pages? + + + + +<xsl:param name="headers.on.blank.pages" select="1"></xsl:param> + + + +Description + +If non-zero, headers will be placed on blank pages. + + + + + + +footers.on.blank.pages +boolean + + +footers.on.blank.pages +Put footers on blank pages? + + + + +<xsl:param name="footers.on.blank.pages" select="1"></xsl:param> + + + +Description + +If non-zero, footers will be placed on blank pages. + + + + + + +header.rule +boolean + + +header.rule +Rule under headers? + + + + +<xsl:param name="header.rule" select="1"></xsl:param> + + + +Description + +If non-zero, a rule will be drawn below the page headers. + + + + + + +footer.rule +boolean + + +footer.rule +Rule over footers? + + + + +<xsl:param name="footer.rule" select="1"></xsl:param> + + + +Description + +If non-zero, a rule will be drawn above the page footers. + + + + + + +header.column.widths +string + + +header.column.widths +Specify relative widths of header areas + + + +<xsl:param name="header.column.widths">1 1 1</xsl:param> + + +Description + +Page headers in print output use a three column table +to position text at the left, center, and right side of +the header on the page. +This parameter lets you specify the relative sizes of the +three columns. The default value is +"1 1 1". + +The parameter value must be three numbers, separated +by white space. The first number represents the relative +width of the inside header for +double-sided output. The second number is the relative +width of the center header. The third number is the +relative width of the outside header for +double-sided output. + +For single-sided output, the first number is the +relative width of left header for left-to-right +text direction, or the right header for right-to-left +text direction. +The third number is the +relative width of right header for left-to-right +text direction, or the left header for right-to-left +text direction. + +The numbers are used to specify the column widths +for the table that makes up the header area. +In the FO output, this looks like: + + + +<fo:table-column column-number="1" + column-width="proportional-column-width(1)"/> + + + +The proportional-column-width() +function computes a column width by dividing its +argument by the total of the arguments for all the columns, and +then multiplying the result by the width of the whole table +(assuming all the column specs use the function). +Its argument can be any positive integer or floating point number. +Zero is an acceptable value, although some FO processors +may warn about it, in which case using a very small number might +be more satisfactory. + + +For example, the value "1 2 1" means the center +header should have twice the width of the other areas. +A value of "0 0 1" means the entire header area +is reserved for the right (or outside) header text. +Note that to keep the center area centered on +the page, the left and right values must be +the same. A specification like "1 2 3" means the +center area is no longer centered on the page +since the right area is three times the width of the left area. + + + + + + + +footer.column.widths +string + + +footer.column.widths +Specify relative widths of footer areas + + + +<xsl:param name="footer.column.widths">1 1 1</xsl:param> + + +Description + +Page footers in print output use a three column table +to position text at the left, center, and right side of +the footer on the page. +This parameter lets you specify the relative sizes of the +three columns. The default value is +"1 1 1". + +The parameter value must be three numbers, separated +by white space. The first number represents the relative +width of the inside footer for +double-sided output. The second number is the relative +width of the center footer. The third number is the +relative width of the outside footer for +double-sided output. + +For single-sided output, the first number is the +relative width of left footer for left-to-right +text direction, or the right footer for right-to-left +text direction. +The third number is the +relative width of right footer for left-to-right +text direction, or the left footer for right-to-left +text direction. + +The numbers are used to specify the column widths +for the table that makes up the footer area. +In the FO output, this looks like: + + + +<fo:table-column column-number="1" + column-width="proportional-column-width(1)"/> + + + +The proportional-column-width() +function computes a column width by dividing its +argument by the total of the arguments for all the columns, and +then multiplying the result by the width of the whole table +(assuming all the column specs use the function). +Its argument can be any positive integer or floating point number. +Zero is an acceptable value, although some FO processors +may warn about it, in which case using a very small number might +be more satisfactory. + + +For example, the value "1 2 1" means the center +footer should have twice the width of the other areas. +A value of "0 0 1" means the entire footer area +is reserved for the right (or outside) footer text. +Note that to keep the center area centered on +the page, the left and right values must be +the same. A specification like "1 2 3" means the +center area is no longer centered on the page +since the right area is three times the width of the left area. + + + + + + + +header.table.properties +attribute set + + +header.table.properties +Apply properties to the header layout table + + + + +<xsl:attribute-set name="header.table.properties"> + <xsl:attribute name="table-layout">fixed</xsl:attribute> + <xsl:attribute name="width">100%</xsl:attribute> +</xsl:attribute-set> + + + +Description + +Properties applied to the table that lays out the page header. + + + + + + +header.table.height +length + + +header.table.height +Specify the minimum height of the table containing the running page headers + + + +<xsl:param name="header.table.height">14pt</xsl:param> + + +Description + +Page headers in print output use a three column table +to position text at the left, center, and right side of +the header on the page. +This parameter lets you specify the minimum height +of the single row in the table. +Since this specifies only the minimum height, +the table should automatically grow to fit taller content. +The default value is "14pt". + + + + + + +footer.table.properties +attribute set + + +footer.table.properties +Apply properties to the footer layout table + + + + +<xsl:attribute-set name="footer.table.properties"> + <xsl:attribute name="table-layout">fixed</xsl:attribute> + <xsl:attribute name="width">100%</xsl:attribute> +</xsl:attribute-set> + + + +Description + +Properties applied to the table that lays out the page footer. + + + + + + +footer.table.height +length + + +footer.table.height +Specify the minimum height of the table containing the running page footers + + + +<xsl:param name="footer.table.height">14pt</xsl:param> + + +Description + +Page footers in print output use a three column table +to position text at the left, center, and right side of +the footer on the page. +This parameter lets you specify the minimum height +of the single row in the table. +Since this specifies only the minimum height, +the table should automatically grow to fit taller content. +The default value is "14pt". + + + + + + +header.content.properties +attribute set + + +header.content.properties +Properties of page header content + + + + +<xsl:attribute-set name="header.content.properties"> + <xsl:attribute name="font-family"> + <xsl:value-of select="$body.fontset"></xsl:value-of> + </xsl:attribute> + <xsl:attribute name="margin-left"> + <xsl:value-of select="$title.margin.left"></xsl:value-of> + </xsl:attribute> +</xsl:attribute-set> + + + +Description + +Properties of page header content. + + + + + + +footer.content.properties +attribute set + + +footer.content.properties +Properties of page footer content + + + + +<xsl:attribute-set name="footer.content.properties"> + <xsl:attribute name="font-family"> + <xsl:value-of select="$body.fontset"></xsl:value-of> + </xsl:attribute> + <xsl:attribute name="margin-left"> + <xsl:value-of select="$title.margin.left"></xsl:value-of> + </xsl:attribute> +</xsl:attribute-set> + + + +Description + +Properties of page footer content. + + + + + + +marker.section.level +integer + + +marker.section.level +Control depth of sections shown in running headers or footers + + + + +<xsl:param name="marker.section.level">2</xsl:param> + + + +Description + +The marker.section.level parameter +controls the depth of section levels that may be displayed +in running headers and footers. For example, if the value +is 2 (the default), then titles from sect1 and +sect2 or equivalent section +elements are candidates for use in running headers and +footers. + +Each candidate title is marked in the FO output with a +<fo:marker marker-class-name="section.head.marker"> +element. + +In order for such titles to appear in headers +or footers, the header.content +or footer.content template +must be customized to retrieve the marker using +an output element such as: + + +<fo:retrieve-marker retrieve-class-name="section.head.marker" + retrieve-position="first-including-carryover" + retrieve-boundary="page-sequence"/> + + + + + + +
    +Font Families + + +body.font.family +list +open +serif +sans-serif +monospace + + +body.font.family +The default font family for body text + + + + +<xsl:param name="body.font.family">serif</xsl:param> + + + +Description + +The body font family is the default font used for text in the page body. + + + + + + + +dingbat.font.family +list +open +serif +sans-serif +monospace + + +dingbat.font.family +The font family for copyright, quotes, and other symbols + + + + +<xsl:param name="dingbat.font.family">serif</xsl:param> + + + +Description + +The dingbat font family is used for dingbats. If it is defined +as the empty string, no font change is effected around dingbats. + + + + + + + +monospace.font.family +string + + +monospace.font.family +The default font family for monospace environments + + + + +<xsl:param name="monospace.font.family">monospace</xsl:param> + + + +Description + +The monospace font family is used for verbatim environments +(program listings, screens, etc.). + + + + + + + +sans.font.family +string + + +sans.font.family +The default sans-serif font family + + + + +<xsl:param name="sans.font.family">sans-serif</xsl:param> + + + +Description + +The default sans-serif font family. At the present, this isn't +actually used by the stylesheets. + + + + + + + +title.font.family +list +open +serif +sans-serif +monospace + + +title.font.family +The default font family for titles + + + + +<xsl:param name="title.font.family">sans-serif</xsl:param> + + + +Description + +The title font family is used for titles (chapter, section, figure, +etc.) + + + + + + + +symbol.font.family +list +open +serif +sans-serif +monospace + + +symbol.font.family +The font families to be searched for symbols outside + of the body font + + + + +<xsl:param name="symbol.font.family">Symbol,ZapfDingbats</xsl:param> + + + +Description + +A typical body or title font does not contain all +the character glyphs that DocBook supports. This parameter +specifies additional fonts that should be searched for +special characters not in the normal font. +These symbol font names are automatically appended +to the body or title font family name when fonts +are specified in a +font-family +property in the FO output. + +The symbol font names should be entered as a +comma-separated list. The default value is +Symbol,ZapfDingbats. + + + + + + +Property Sets + + +formal.object.properties +attribute set + + +formal.object.properties +Properties associated with a formal object such as a figure, or other component that has a title + + + + +<xsl:attribute-set name="formal.object.properties"> + <xsl:attribute name="space-before.minimum">0.5em</xsl:attribute> + <xsl:attribute name="space-before.optimum">1em</xsl:attribute> + <xsl:attribute name="space-before.maximum">2em</xsl:attribute> + <xsl:attribute name="space-after.minimum">0.5em</xsl:attribute> + <xsl:attribute name="space-after.optimum">1em</xsl:attribute> + <xsl:attribute name="space-after.maximum">2em</xsl:attribute> + <xsl:attribute name="keep-together.within-column">always</xsl:attribute> +</xsl:attribute-set> + + + +Description + +The styling for formal objects in docbook. Specify the spacing +before and after the object. + + + + + + +formal.title.properties +attribute set + + +formal.title.properties +Style the title element of formal object such as a figure. + + + + +<xsl:attribute-set name="formal.title.properties" use-attribute-sets="normal.para.spacing"> + <xsl:attribute name="font-weight">bold</xsl:attribute> + <xsl:attribute name="font-size"> + <xsl:value-of select="$body.font.master * 1.2"></xsl:value-of> + <xsl:text>pt</xsl:text> + </xsl:attribute> + <xsl:attribute name="hyphenate">false</xsl:attribute> + <xsl:attribute name="space-after.minimum">0.4em</xsl:attribute> + <xsl:attribute name="space-after.optimum">0.6em</xsl:attribute> + <xsl:attribute name="space-after.maximum">0.8em</xsl:attribute> +</xsl:attribute-set> + + +Description +Specify how the title should be styled. Specify the font size and weight of the title of the formal object. + + + + + +informal.object.properties +attribute set + + +informal.object.properties +Properties associated with an informal (untitled) object, such as an informalfigure + + + +<xsl:attribute-set name="informal.object.properties"> + <xsl:attribute name="space-before.minimum">0.5em</xsl:attribute> + <xsl:attribute name="space-before.optimum">1em</xsl:attribute> + <xsl:attribute name="space-before.maximum">2em</xsl:attribute> + <xsl:attribute name="space-after.minimum">0.5em</xsl:attribute> + <xsl:attribute name="space-after.optimum">1em</xsl:attribute> + <xsl:attribute name="space-after.maximum">2em</xsl:attribute> +</xsl:attribute-set> + +Description +The styling for informal objects in docbook. Specify the spacing before and after the object. + + + + + +monospace.properties +attribute set + + +monospace.properties +Properties of monospaced content + + + + +<xsl:attribute-set name="monospace.properties"> + <xsl:attribute name="font-family"> + <xsl:value-of select="$monospace.font.family"></xsl:value-of> + </xsl:attribute> +</xsl:attribute-set> + + + +Description + +Specifies the font name for monospaced output. This property set +used to set the font-size as well, but that doesn't work very well +when different fonts are used (as they are in titles and paragraphs, +for example). + +If you want to set the font-size in a customization layer, it's +probably going to be more appropriate to set font-size-adjust, if your +formatter supports it. + + + + + + +verbatim.properties +attribute set + + +verbatim.properties +Properties associated with verbatim text + + + + +<xsl:attribute-set name="verbatim.properties"> + <xsl:attribute name="space-before.minimum">0.8em</xsl:attribute> + <xsl:attribute name="space-before.optimum">1em</xsl:attribute> + <xsl:attribute name="space-before.maximum">1.2em</xsl:attribute> + <xsl:attribute name="space-after.minimum">0.8em</xsl:attribute> + <xsl:attribute name="space-after.optimum">1em</xsl:attribute> + <xsl:attribute name="space-after.maximum">1.2em</xsl:attribute> + <xsl:attribute name="hyphenate">false</xsl:attribute> + <xsl:attribute name="wrap-option">no-wrap</xsl:attribute> + <xsl:attribute name="white-space-collapse">false</xsl:attribute> + <xsl:attribute name="white-space-treatment">preserve</xsl:attribute> + <xsl:attribute name="linefeed-treatment">preserve</xsl:attribute> + <xsl:attribute name="text-align">start</xsl:attribute> +</xsl:attribute-set> + + +Description +This attribute set is used on all verbatim environments. + + + + + + +monospace.verbatim.properties +attribute set + + +monospace.verbatim.properties +What font and size do you want for monospaced content? + + + + +<xsl:attribute-set name="monospace.verbatim.properties" use-attribute-sets="verbatim.properties monospace.properties"> + <xsl:attribute name="text-align">start</xsl:attribute> + <xsl:attribute name="wrap-option">no-wrap</xsl:attribute> +</xsl:attribute-set> + + +Description +Specify the font name and size you want for monospaced output + + + + + +sidebar.properties +attribute set + + +sidebar.properties +Attribute set for sidebar properties + + + + +<xsl:attribute-set name="sidebar.properties" use-attribute-sets="formal.object.properties"> + <xsl:attribute name="border-style">solid</xsl:attribute> + <xsl:attribute name="border-width">1pt</xsl:attribute> + <xsl:attribute name="border-color">black</xsl:attribute> + <xsl:attribute name="background-color">#DDDDDD</xsl:attribute> + <xsl:attribute name="padding-start">12pt</xsl:attribute> + <xsl:attribute name="padding-end">12pt</xsl:attribute> + <xsl:attribute name="padding-top">6pt</xsl:attribute> + <xsl:attribute name="padding-bottom">6pt</xsl:attribute> + <xsl:attribute name="margin-{$direction.align.start}">0pt</xsl:attribute> + <xsl:attribute name="margin-{$direction.align.end}">0pt</xsl:attribute> +<!-- + <xsl:attribute name="margin-top">6pt</xsl:attribute> + <xsl:attribute name="margin-bottom">6pt</xsl:attribute> +--> +</xsl:attribute-set> + + + +Description + +The styling for sidebars. + + + + + + +sidebar.title.properties +attribute set + + +sidebar.title.properties +Attribute set for sidebar titles + + + + +<xsl:attribute-set name="sidebar.title.properties"> + <xsl:attribute name="font-weight">bold</xsl:attribute> + <xsl:attribute name="hyphenate">false</xsl:attribute> + <xsl:attribute name="text-align">start</xsl:attribute> + <xsl:attribute name="keep-with-next.within-column">always</xsl:attribute> +</xsl:attribute-set> + + + +Description + +The styling for sidebars titles. + + + + + + +sidebar.float.type +list +none +before +left +start +right +end +inside +outside + + +sidebar.float.type +Select type of float for sidebar elements + + + + +<xsl:param name="sidebar.float.type">none</xsl:param> + + + +Description + +Selects the type of float for sidebar elements. + + + +If sidebar.float.type is +none, then +no float is used. + + + +If sidebar.float.type is +before, then +the float appears at the top of the page. On some processors, +that may be the next page rather than the current page. + + + + +If sidebar.float.type is +left, +then a left side float is used. + + + + +If sidebar.float.type is +start, +then when the text direction is left-to-right a left side float is used. +When the text direction is right-to-left, a right side float is used. + + + + +If sidebar.float.type is +right, +then a right side float is used. + + + + +If sidebar.float.type is +end, +then when the text direction is left-to-right a right side float is used. +When the text direction is right-to-left, a left side float is used. + + + + +If your XSL-FO processor supports floats positioned on the +inside or +outside +of double-sided pages, then you have those two +options for side floats as well. + + + + + + + + + +sidebar.float.width +length + + +sidebar.float.width +Set the default width for sidebars + + + + +<xsl:param name="sidebar.float.width">1in</xsl:param> + + + +Description + +Sets the default width for sidebars when used as a side float. +The width determines the degree to which the sidebar block intrudes into +the text area. + +If sidebar.float.type is +before or +none, then +this parameter is ignored. + + + + + + + +margin.note.properties +attribute set + + +margin.note.properties +Attribute set for margin.note properties + + + + +<xsl:attribute-set name="margin.note.properties"> + <xsl:attribute name="font-size">90%</xsl:attribute> + <xsl:attribute name="text-align">start</xsl:attribute> +</xsl:attribute-set> + + + +Description + +The styling for margin notes. +By default, margin notes are not implemented for any +element. A stylesheet customization is needed to make +use of this attribute-set. + +You can use a template named floater +to create the customization. +That template can create side floats by specifying the +content and characteristics as template parameters. + + +For example: +<xsl:template match="para[@role='marginnote']"> + <xsl:call-template name="floater"> + <xsl:with-param name="position"> + <xsl:value-of select="$margin.note.float.type"/> + </xsl:with-param> + <xsl:with-param name="width"> + <xsl:value-of select="$margin.note.width"/> + </xsl:with-param> + <xsl:with-param name="content"> + <xsl:apply-imports/> + </xsl:with-param> + </xsl:call-template> +</xsl:template> + + + + + + +margin.note.title.properties +attribute set + + +margin.note.title.properties +Attribute set for margin note titles + + + + +<xsl:attribute-set name="margin.note.title.properties"> + <xsl:attribute name="font-weight">bold</xsl:attribute> + <xsl:attribute name="hyphenate">false</xsl:attribute> + <xsl:attribute name="text-align">start</xsl:attribute> + <xsl:attribute name="keep-with-next.within-column">always</xsl:attribute> +</xsl:attribute-set> + + + +Description + +The styling for margin note titles. + + + + + + +margin.note.float.type +list +none +before +left +start +right +end +inside +outside + + +margin.note.float.type +Select type of float for margin note customizations + + + + +<xsl:param name="margin.note.float.type">none</xsl:param> + + + +Description + +Selects the type of float for margin notes. +DocBook does not define a margin note element, so this +feature must be implemented as a customization of the stylesheet. +See margin.note.properties for +an example. + + + +If margin.note.float.type is +none, then +no float is used. + + + +If margin.note.float.type is +before, then +the float appears at the top of the page. On some processors, +that may be the next page rather than the current page. + + + +If margin.note.float.type is +left or +start, then +a left side float is used. + + + +If margin.note.float.type is +right or +end, then +a right side float is used. + + + +If your XSL-FO processor supports floats positioned on the +inside or +outside +of double-sided pages, then you have those two +options for side floats as well. + + + + + + + + + +margin.note.width +length + + +margin.note.width +Set the default width for margin notes + + + + +<xsl:param name="margin.note.width">1in</xsl:param> + + + +Description + +Sets the default width for margin notes when used as a side +float. The width determines the degree to which the margin note block +intrudes into the text area. + +If margin.note.float.type is +before or +none, then +this parameter is ignored. + + + + + + + +component.title.properties +attribute set + + +component.title.properties +Properties for component titles + + + + +<xsl:attribute-set name="component.title.properties"> + <xsl:attribute name="keep-with-next.within-column">always</xsl:attribute> + <xsl:attribute name="space-before.optimum"><xsl:value-of select="concat($body.font.master, 'pt')"></xsl:value-of></xsl:attribute> + <xsl:attribute name="space-before.minimum"><xsl:value-of select="concat($body.font.master, 'pt * 0.8')"></xsl:value-of></xsl:attribute> + <xsl:attribute name="space-before.maximum"><xsl:value-of select="concat($body.font.master, 'pt * 1.2')"></xsl:value-of></xsl:attribute> + <xsl:attribute name="hyphenate">false</xsl:attribute> + <xsl:attribute name="text-align"> + <xsl:choose> + <xsl:when test="((parent::article | parent::articleinfo | parent::info/parent::article) and not(ancestor::book) and not(self::bibliography)) or (parent::slides | parent::slidesinfo)">center</xsl:when> + <xsl:otherwise>start</xsl:otherwise> + </xsl:choose> + </xsl:attribute> + <xsl:attribute name="start-indent"><xsl:value-of select="$title.margin.left"></xsl:value-of></xsl:attribute> +</xsl:attribute-set> + + + +Description + +The properties common to all component titles. + + + + + + +component.titlepage.properties +attribute set + + +component.titlepage.properties +Properties for component titlepages + + + + +<xsl:attribute-set name="component.titlepage.properties"> +</xsl:attribute-set> + + + +Description + +The properties that are applied to the outer block containing +all the component title page information. +Its main use is to set a span="all" +property on the block that is a direct child of the flow. + +This attribute-set also applies to index titlepages. It is empty by default. + + + + + + +section.title.properties +attribute set + + +section.title.properties +Properties for section titles + + + + +<xsl:attribute-set name="section.title.properties"> + <xsl:attribute name="font-family"> + <xsl:value-of select="$title.font.family"></xsl:value-of> + </xsl:attribute> + <xsl:attribute name="font-weight">bold</xsl:attribute> + <!-- font size is calculated dynamically by section.heading template --> + <xsl:attribute name="keep-with-next.within-column">always</xsl:attribute> + <xsl:attribute name="space-before.minimum">0.8em</xsl:attribute> + <xsl:attribute name="space-before.optimum">1.0em</xsl:attribute> + <xsl:attribute name="space-before.maximum">1.2em</xsl:attribute> + <xsl:attribute name="text-align">start</xsl:attribute> + <xsl:attribute name="start-indent"><xsl:value-of select="$title.margin.left"></xsl:value-of></xsl:attribute> +</xsl:attribute-set> + + + +Description + +The properties common to all section titles. + + + + + + +section.title.level1.properties +attribute set + + +section.title.level1.properties +Properties for level-1 section titles + + + + +<xsl:attribute-set name="section.title.level1.properties"> + <xsl:attribute name="font-size"> + <xsl:value-of select="$body.font.master * 2.0736"></xsl:value-of> + <xsl:text>pt</xsl:text> + </xsl:attribute> +</xsl:attribute-set> + + + +Description + +The properties of level-1 section titles. + + + + + + + +section.title.level2.properties +attribute set + + +section.title.level2.properties +Properties for level-2 section titles + + + + +<xsl:attribute-set name="section.title.level2.properties"> + <xsl:attribute name="font-size"> + <xsl:value-of select="$body.font.master * 1.728"></xsl:value-of> + <xsl:text>pt</xsl:text> + </xsl:attribute> +</xsl:attribute-set> + + + +Description + +The properties of level-2 section titles. + + + + + + +section.title.level3.properties +attribute set + + +section.title.level3.properties +Properties for level-3 section titles + + + + +<xsl:attribute-set name="section.title.level3.properties"> + <xsl:attribute name="font-size"> + <xsl:value-of select="$body.font.master * 1.44"></xsl:value-of> + <xsl:text>pt</xsl:text> + </xsl:attribute> +</xsl:attribute-set> + + + +Description + +The properties of level-3 section titles. + + + + + + +section.title.level4.properties +attribute set + + +section.title.level4.properties +Properties for level-4 section titles + + + + +<xsl:attribute-set name="section.title.level4.properties"> + <xsl:attribute name="font-size"> + <xsl:value-of select="$body.font.master * 1.2"></xsl:value-of> + <xsl:text>pt</xsl:text> + </xsl:attribute> +</xsl:attribute-set> + + + +Description + +The properties of level-4 section titles. + + + + + + +section.title.level5.properties +attribute set + + +section.title.level5.properties +Properties for level-5 section titles + + + + +<xsl:attribute-set name="section.title.level5.properties"> + <xsl:attribute name="font-size"> + <xsl:value-of select="$body.font.master"></xsl:value-of> + <xsl:text>pt</xsl:text> + </xsl:attribute> +</xsl:attribute-set> + + + +Description + +The properties of level-5 section titles. + + + + + + +section.title.level6.properties +attribute set + + +section.title.level6.properties +Properties for level-6 section titles + + + + +<xsl:attribute-set name="section.title.level6.properties"> + <xsl:attribute name="font-size"> + <xsl:value-of select="$body.font.master"></xsl:value-of> + <xsl:text>pt</xsl:text> + </xsl:attribute> +</xsl:attribute-set> + + + +Description + +The properties of level-6 section titles. This property set is actually +used for all titles below level 5. + + + + + + +section.properties +attribute set + + +section.properties +Properties for all section levels + + + + +<xsl:attribute-set name="section.properties"> +</xsl:attribute-set> + + + +Description + +The properties that apply to the containing +block of all section levels, and therefore apply to +the whole section. +This attribute set is inherited by the +more specific attribute sets such as +section.level1.properties. +The default is empty. + + + + + + + +section.level1.properties +attribute set + + +section.level1.properties +Properties for level-1 sections + + + + +<xsl:attribute-set name="section.level1.properties" use-attribute-sets="section.properties"> +</xsl:attribute-set> + + + +Description + +The properties that apply to the containing +block of a level-1 section, and therefore apply to +the whole section. This includes sect1 +elements and section elements at level 1. + + +For example, you could start each level-1 section on +a new page by using: +<xsl:attribute-set name="section.level1.properties"> + <xsl:attribute name="break-before">page</xsl:attribute> +</xsl:attribute-set> + + +This attribute set inherits attributes from the +general section.properties attribute set. + + + + + + + +section.level2.properties +attribute set + + +section.level2.properties +Properties for level-2 sections + + + + +<xsl:attribute-set name="section.level2.properties" use-attribute-sets="section.properties"> +</xsl:attribute-set> + + + +Description + +The properties that apply to the containing +block of a level-2 section, and therefore apply to +the whole section. This includes sect2 +elements and section elements at level 2. + + +For example, you could start each level-2 section on +a new page by using: +<xsl:attribute-set name="section.level2.properties"> + <xsl:attribute name="break-before">page</xsl:attribute> +</xsl:attribute-set> + + +This attribute set inherits attributes from the +general section.properties attribute set. + + + + + + + +section.level3.properties +attribute set + + +section.level3.properties +Properties for level-3 sections + + + + +<xsl:attribute-set name="section.level3.properties" use-attribute-sets="section.properties"> +</xsl:attribute-set> + + + +Description + +The properties that apply to the containing +block of a level-3 section, and therefore apply to +the whole section. This includes sect3 +elements and section elements at level 3. + + +For example, you could start each level-3 section on +a new page by using: +<xsl:attribute-set name="section.level3.properties"> + <xsl:attribute name="break-before">page</xsl:attribute> +</xsl:attribute-set> + + +This attribute set inherits attributes from the +general section.properties attribute set. + + + + + + + +section.level4.properties +attribute set + + +section.level4.properties +Properties for level-4 sections + + + + +<xsl:attribute-set name="section.level4.properties" use-attribute-sets="section.properties"> +</xsl:attribute-set> + + + +Description + +The properties that apply to the containing +block of a level-4 section, and therefore apply to +the whole section. This includes sect4 +elements and section elements at level 4. + + +For example, you could start each level-4 section on +a new page by using: +<xsl:attribute-set name="section.level4.properties"> + <xsl:attribute name="break-before">page</xsl:attribute> +</xsl:attribute-set> + + +This attribute set inherits attributes from the +general section.properties attribute set. + + + + + + + +section.level5.properties +attribute set + + +section.level5.properties +Properties for level-5 sections + + + + +<xsl:attribute-set name="section.level5.properties" use-attribute-sets="section.properties"> +</xsl:attribute-set> + + + +Description + +The properties that apply to the containing +block of a level-5 section, and therefore apply to +the whole section. This includes sect5 +elements and section elements at level 5. + + +For example, you could start each level-5 section on +a new page by using: +<xsl:attribute-set name="section.level5.properties"> + <xsl:attribute name="break-before">page</xsl:attribute> +</xsl:attribute-set> + + +This attribute set inherits attributes from the +general section.properties attribute set. + + + + + + + +section.level6.properties +attribute set + + +section.level6.properties +Properties for level-6 sections + + + + +<xsl:attribute-set name="section.level6.properties" use-attribute-sets="section.properties"> +</xsl:attribute-set> + + + +Description + +The properties that apply to the containing +block of a level 6 or lower section, and therefore apply to +the whole section. This includes +section elements at level 6 and lower. + + +For example, you could start each level-6 section on +a new page by using: +<xsl:attribute-set name="section.level6.properties"> + <xsl:attribute name="break-before">page</xsl:attribute> +</xsl:attribute-set> + + +This attribute set inherits attributes from the +general section.properties attribute set. + + + + + + + +figure.properties +attribute set + + +figure.properties +Properties associated with a figure + + + + +<xsl:attribute-set name="figure.properties" use-attribute-sets="formal.object.properties"></xsl:attribute-set> + + + +Description + +The styling for figures. + + + + + + +example.properties +attribute set + + +example.properties +Properties associated with a example + + + + +<xsl:attribute-set name="example.properties" use-attribute-sets="formal.object.properties"></xsl:attribute-set> + + + +Description + +The styling for examples. + + + + + + +equation.properties +attribute set + + +equation.properties +Properties associated with a equation + + + + +<xsl:attribute-set name="equation.properties" use-attribute-sets="formal.object.properties"></xsl:attribute-set> + + + +Description + +The styling for equations. + + + + + + +equation.number.properties +attribute set + + +equation.number.properties +Properties that apply to the fo:table-cell containing the number +of an equation that does not have a title. + + + +<xsl:attribute-set name="equation.number.properties"> + <xsl:attribute name="text-align">end</xsl:attribute> + <xsl:attribute name="display-align">center</xsl:attribute> +</xsl:attribute-set> + +Description +Properties that apply to the fo:table-cell containing the number +of an equation when it has no title. The number in an equation with a +title is formatted along with the title, and this attribute-set does not apply. + + + + + +table.properties +attribute set + + +table.properties +Properties associated with the block surrounding a table + + + + +<xsl:attribute-set name="table.properties" use-attribute-sets="formal.object.properties"> + <xsl:attribute name="keep-together.within-column">auto</xsl:attribute> +</xsl:attribute-set> + + + +Description + +Block styling properties for tables. This parameter should really +have been called table.block.properties or something +like that, but we’re leaving it to avoid backwards-compatibility +problems. + +See also table.table.properties. + + + + + + +informalfigure.properties +attribute set + + +informalfigure.properties +Properties associated with an informalfigure + + + + +<xsl:attribute-set name="informalfigure.properties" use-attribute-sets="informal.object.properties"></xsl:attribute-set> + + + +Description + +The styling for informalfigures. + + + + + + +informalexample.properties +attribute set + + +informalexample.properties +Properties associated with an informalexample + + + + +<xsl:attribute-set name="informalexample.properties" use-attribute-sets="informal.object.properties"></xsl:attribute-set> + + + +Description + +The styling for informalexamples. + + + + + + +informalequation.properties +attribute set + + +informalequation.properties +Properties associated with an informalequation + + + + +<xsl:attribute-set name="informalequation.properties" use-attribute-sets="informal.object.properties"></xsl:attribute-set> + + + +Description + +The styling for informalequations. + + + + + + +informaltable.properties +attribute set + + +informaltable.properties +Properties associated with the block surrounding an informaltable + + + + +<xsl:attribute-set name="informaltable.properties" use-attribute-sets="informal.object.properties"></xsl:attribute-set> + + + +Description + +Block styling properties for informaltables. This parameter should really +have been called informaltable.block.properties or something +like that, but we’re leaving it to avoid backwards-compatibility +problems. + +See also table.table.properties. + + + + + + +procedure.properties +attribute set + + +procedure.properties +Properties associated with a procedure + + + + +<xsl:attribute-set name="procedure.properties" use-attribute-sets="formal.object.properties"> + <xsl:attribute name="keep-together.within-column">auto</xsl:attribute> +</xsl:attribute-set> + + + +Description + +The styling for procedures. + + + + + + +root.properties +attribute set + + +root.properties +The properties of the fo:root element + + + + +<xsl:attribute-set name="root.properties"> + <xsl:attribute name="font-family"> + <xsl:value-of select="$body.fontset"></xsl:value-of> + </xsl:attribute> + <xsl:attribute name="font-size"> + <xsl:value-of select="$body.font.size"></xsl:value-of> + </xsl:attribute> + <xsl:attribute name="text-align"> + <xsl:value-of select="$alignment"></xsl:value-of> + </xsl:attribute> + <xsl:attribute name="line-height"> + <xsl:value-of select="$line-height"></xsl:value-of> + </xsl:attribute> + <xsl:attribute name="font-selection-strategy">character-by-character</xsl:attribute> + <xsl:attribute name="line-height-shift-adjustment">disregard-shifts</xsl:attribute> + <xsl:attribute name="writing-mode"> + <xsl:value-of select="$direction.mode"></xsl:value-of> + </xsl:attribute> +</xsl:attribute-set> + + + +Description + +This property set is used on the fo:root element of +an FO file. It defines a set of default, global parameters. + + + + + + +qanda.title.properties +attribute set + + +qanda.title.properties +Properties for qanda set titles + + + + +<xsl:attribute-set name="qanda.title.properties"> + <xsl:attribute name="font-family"> + <xsl:value-of select="$title.font.family"></xsl:value-of> + </xsl:attribute> + <xsl:attribute name="font-weight">bold</xsl:attribute> + <!-- font size is calculated dynamically by qanda.heading template --> + <xsl:attribute name="keep-with-next.within-column">always</xsl:attribute> + <xsl:attribute name="space-before.minimum">0.8em</xsl:attribute> + <xsl:attribute name="space-before.optimum">1.0em</xsl:attribute> + <xsl:attribute name="space-before.maximum">1.2em</xsl:attribute> +</xsl:attribute-set> + + + +Description + +The properties common to all qanda set titles. + + + + + + +qanda.title.level1.properties +attribute set + + +qanda.title.level1.properties +Properties for level-1 qanda set titles + + + + +<xsl:attribute-set name="qanda.title.level1.properties"> + <xsl:attribute name="font-size"> + <xsl:value-of select="$body.font.master * 2.0736"></xsl:value-of> + <xsl:text>pt</xsl:text> + </xsl:attribute> +</xsl:attribute-set> + + + +Description + +The properties of level-1 qanda set titles. + + + + + + +qanda.title.level2.properties +attribute set + + +qanda.title.level2.properties +Properties for level-2 qanda set titles + + + + +<xsl:attribute-set name="qanda.title.level2.properties"> + <xsl:attribute name="font-size"> + <xsl:value-of select="$body.font.master * 1.728"></xsl:value-of> + <xsl:text>pt</xsl:text> + </xsl:attribute> +</xsl:attribute-set> + + + +Description + +The properties of level-2 qanda set titles. + + + + + + +qanda.title.level3.properties +attribute set + + +qanda.title.level3.properties +Properties for level-3 qanda set titles + + + + +<xsl:attribute-set name="qanda.title.level3.properties"> + <xsl:attribute name="font-size"> + <xsl:value-of select="$body.font.master * 1.44"></xsl:value-of> + <xsl:text>pt</xsl:text> + </xsl:attribute> +</xsl:attribute-set> + + + +Description + +The properties of level-3 qanda set titles. + + + + + + +qanda.title.level4.properties +attribute set + + +qanda.title.level4.properties +Properties for level-4 qanda set titles + + + + +<xsl:attribute-set name="qanda.title.level4.properties"> + <xsl:attribute name="font-size"> + <xsl:value-of select="$body.font.master * 1.2"></xsl:value-of> + <xsl:text>pt</xsl:text> + </xsl:attribute> +</xsl:attribute-set> + + + +Description + +The properties of level-4 qanda set titles. + + + + + + +qanda.title.level5.properties +attribute set + + +qanda.title.level5.properties +Properties for level-5 qanda set titles + + + + +<xsl:attribute-set name="qanda.title.level5.properties"> + <xsl:attribute name="font-size"> + <xsl:value-of select="$body.font.master"></xsl:value-of> + <xsl:text>pt</xsl:text> + </xsl:attribute> +</xsl:attribute-set> + + + +Description + +The properties of level-5 qanda set titles. + + + + + + +qanda.title.level6.properties +attribute set + + +qanda.title.level6.properties +Properties for level-6 qanda set titles + + + + +<xsl:attribute-set name="qanda.title.level6.properties"> + <xsl:attribute name="font-size"> + <xsl:value-of select="$body.font.master"></xsl:value-of> + <xsl:text>pt</xsl:text> + </xsl:attribute> +</xsl:attribute-set> + + + +Description + +The properties of level-6 qanda set titles. +This property set is actually +used for all titles below level 5. + + + + + + +article.appendix.title.properties +attribute set + + +article.appendix.title.properties +Properties for appendix titles that appear in an article + + + + +<xsl:attribute-set name="article.appendix.title.properties" use-attribute-sets="section.title.properties section.title.level1.properties"> + <xsl:attribute name="margin-{$direction.align.start}"> + <xsl:value-of select="$title.margin.left"></xsl:value-of> + </xsl:attribute> +</xsl:attribute-set> + + + +Description + +The properties for the title of an appendix that +appears inside an article. The default is to use +the properties of sect1 titles. + + + + + + +abstract.properties +attribute set + + +abstract.properties +Properties associated with the block surrounding an abstract + + + + +<xsl:attribute-set name="abstract.properties"> + <xsl:attribute name="start-indent">0.0in</xsl:attribute> + <xsl:attribute name="end-indent">0.0in</xsl:attribute> +</xsl:attribute-set> + + + +Description + +Block styling properties for abstract. + +See also abstract.title.properties. + + + + + + +abstract.title.properties +attribute set + + +abstract.title.properties +Properties for abstract titles + + + + +<xsl:attribute-set name="abstract.title.properties"> + <xsl:attribute name="font-family"><xsl:value-of select="$title.fontset"></xsl:value-of></xsl:attribute> + <xsl:attribute name="font-weight">bold</xsl:attribute> + <xsl:attribute name="keep-with-next.within-column">always</xsl:attribute> + <xsl:attribute name="keep-with-next.within-column">always</xsl:attribute> + <xsl:attribute name="space-before.optimum"><xsl:value-of select="concat($body.font.master, 'pt')"></xsl:value-of></xsl:attribute> + <xsl:attribute name="space-before.minimum"><xsl:value-of select="concat($body.font.master, 'pt * 0.8')"></xsl:value-of></xsl:attribute> + <xsl:attribute name="space-before.maximum"><xsl:value-of select="concat($body.font.master, 'pt * 1.2')"></xsl:value-of></xsl:attribute> + <xsl:attribute name="hyphenate">false</xsl:attribute> + <xsl:attribute name="text-align">center</xsl:attribute> +</xsl:attribute-set> + + + +Description + +The properties for abstract titles. + +See also abstract.properties. + + + + + + +index.page.number.properties +attribute set + + +index.page.number.properties +Properties associated with index page numbers + + + + +<xsl:attribute-set name="index.page.number.properties"> +</xsl:attribute-set> + + + +Description + +Properties associated with page numbers in indexes. +Changing color to indicate the page number is a link is +one possibility. + + + + + + + +revhistory.table.properties +attribute set + + +revhistory.table.properties +The properties of table used for formatting revhistory + + + + +<xsl:attribute-set name="revhistory.table.properties"> +</xsl:attribute-set> + + + +Description + +This property set defines appearance of revhistory table. + + + + + + +revhistory.table.cell.properties +attribute set + + +revhistory.table.cell.properties +The properties of table cells used for formatting revhistory + + + + +<xsl:attribute-set name="revhistory.table.cell.properties"> +</xsl:attribute-set> + + + +Description + +This property set defines appearance of individual cells in revhistory table. + + + + + + +revhistory.title.properties +attribute set + + +revhistory.title.properties +The properties of revhistory title + + + + +<xsl:attribute-set name="revhistory.title.properties"> +</xsl:attribute-set> + + + +Description + +This property set defines appearance of revhistory title. + + + + + +Profiling + +The following parameters can be used for attribute-based +profiling of your document. For more information about profiling, see +Profiling (conditional text). + + + +profile.arch +string + + +profile.arch +Target profile for arch +attribute + + + + +<xsl:param name="profile.arch"></xsl:param> + + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + + + + +profile.audience +string + + +profile.audience +Target profile for audience +attribute + + + + +<xsl:param name="profile.audience"></xsl:param> + + + +Description + +Value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + + + + +profile.condition +string + + +profile.condition +Target profile for condition +attribute + + + + +<xsl:param name="profile.condition"></xsl:param> + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + + + + +profile.conformance +string + + +profile.conformance +Target profile for conformance +attribute + + + + +<xsl:param name="profile.conformance"></xsl:param> + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + + + + +profile.lang +string + + +profile.lang +Target profile for lang +attribute + + + + +<xsl:param name="profile.lang"></xsl:param> + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + + + + +profile.os +string + + +profile.os +Target profile for os +attribute + + + + +<xsl:param name="profile.os"></xsl:param> + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + + + + +profile.revision +string + + +profile.revision +Target profile for revision +attribute + + + + +<xsl:param name="profile.revision"></xsl:param> + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + + + + +profile.revisionflag +string + + +profile.revisionflag +Target profile for revisionflag +attribute + + + + +<xsl:param name="profile.revisionflag"></xsl:param> + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + + + + +profile.role +string + + +profile.role +Target profile for role +attribute + + + + +<xsl:param name="profile.role"></xsl:param> + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + +Note that role is often +used for other purposes than profiling. For example it is commonly +used to get emphasize in bold font: + +<emphasis role="bold">very important</emphasis> + +If you are using role for +these purposes do not forget to add values like bold to +value of this parameter. If you forgot you will get document with +small pieces missing which are very hard to track. + +For this reason it is not recommended to use role attribute for profiling. You should +rather use profiling specific attributes like userlevel, os, arch, condition, etc. + + + + + + + +profile.security +string + + +profile.security +Target profile for security +attribute + + + + +<xsl:param name="profile.security"></xsl:param> + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + + + + +profile.status +string + + +profile.status +Target profile for status +attribute + + + + +<xsl:param name="profile.status"></xsl:param> + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + + + + +profile.userlevel +string + + +profile.userlevel +Target profile for userlevel +attribute + + + + +<xsl:param name="profile.userlevel"></xsl:param> + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + + + + +profile.vendor +string + + +profile.vendor +Target profile for vendor +attribute + + + + +<xsl:param name="profile.vendor"></xsl:param> + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + + + + +profile.wordsize +string + + +profile.wordsize +Target profile for wordsize +attribute + + + + +<xsl:param name="profile.wordsize"></xsl:param> + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + + + + +profile.attribute +string + + +profile.attribute +Name of user-specified profiling attribute + + + + +<xsl:param name="profile.attribute"></xsl:param> + + + +Description + +This parameter is used in conjuction with +profile.value. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + + + + +profile.value +string + + +profile.value +Target profile for user-specified attribute + + + + +<xsl:param name="profile.value"></xsl:param> + + + +Description + +When you are using this parameter you must also specify name of +profiling attribute with parameter +profile.attribute. + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + + + + +profile.separator +string + + +profile.separator +Separator character for compound profile values + + + + +<xsl:param name="profile.separator">;</xsl:param> + + + +Description + +Separator character used for compound profile values. See profile.arch + + + + + +Localization + + +l10n.gentext.language +string + + +l10n.gentext.language +Sets the gentext language + + + + +<xsl:param name="l10n.gentext.language"></xsl:param> + + + +Description + +If this parameter is set to any value other than the empty string, its +value will be used as the value for the language when generating text. Setting +l10n.gentext.language overrides any settings within the +document being formatted. + +It's much more likely that you might want to set the +l10n.gentext.default.language parameter. + + + + + + + l10n.gentext.default.language + string + + + l10n.gentext.default.language + Sets the default language for generated text + + + + +<xsl:param name="l10n.gentext.default.language">en</xsl:param> + + + +Description + +The value of the l10n.gentext.default.language +parameter is used as the language for generated text if no setting is provided +in the source document. + + + + + + +l10n.gentext.use.xref.language +boolean + + +l10n.gentext.use.xref.language +Use the language of target when generating cross-reference text? + + + + +<xsl:param name="l10n.gentext.use.xref.language" select="0"></xsl:param> + + + +Description + +If non-zero, the language of the target will be used when +generating cross reference text. Usually, the current +language is used when generating text (that is, the language of the +element that contains the cross-reference element). But setting this parameter +allows the language of the element pointed to to control +the generated text. + +Consider the following example: + + +<para lang="en">See also <xref linkend="chap3"/>.</para> + + + +Suppose that Chapter 3 happens to be written in German. +If l10n.gentext.use.xref.language is non-zero, the +resulting text will be something like this: + +
    +See also Kapital 3. +
    + +Where the more traditional rendering would be: + +
    +See also Chapter 3. +
    + +
    +
    + + + +l10n.lang.value.rfc.compliant +boolean + + +l10n.lang.value.rfc.compliant +Make value of lang attribute RFC compliant? + + + + +<xsl:param name="l10n.lang.value.rfc.compliant" select="1"></xsl:param> + + + +Description + +If non-zero, ensure that the values for all lang attributes in HTML output are RFC +compliantSection 8.1.1, Language Codes, in the HTML 4.0 Recommendation states that: + +
    [RFC1766] defines and explains the language codes +that must be used in HTML documents. +Briefly, language codes consist of a primary code and a possibly +empty series of subcodes: + +language-code = primary-code ( "-" subcode )* + +And in RFC 1766, Tags for the Identification +of Languages, the EBNF for "language tag" is given as: + +Language-Tag = Primary-tag *( "-" Subtag ) +Primary-tag = 1*8ALPHA +Subtag = 1*8ALPHA + +
    +
    . + +by taking any underscore characters in any lang values found in source documents, and +replacing them with hyphen characters in output HTML files. For +example, zh_CN in a source document becomes +zh-CN in the HTML output form that source. + + +This parameter does not cause any case change in lang values, because RFC 1766 +explicitly states that all "language tags" (as it calls them) "are +to be treated as case insensitive". + +
    + +
    +
    + + + +writing.mode +string + + +writing.mode +Direction of text flow based on locale + + + + +<xsl:param name="writing.mode"> + <xsl:call-template name="gentext"> + <xsl:with-param name="key">writing-mode</xsl:with-param> + <xsl:with-param name="lang"> + <xsl:call-template name="l10n.language"> + <xsl:with-param name="target" select="/*[1]"></xsl:with-param> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> +</xsl:param> + + + +Description + +Sets direction of text flow and text alignment based on locale. +The value is normally taken from the gentext file for the +lang attribute of the document's root element, using the +key name 'writing-mode' to look it up in the gentext file. +But the param can also be +set on the command line to override that gentext value. + +Accepted values are: + + + lr-tb + + Left-to-right text flow in each line, lines stack top to bottom. + + + + rl-tb + + Right-to-left text flow in each line, lines stack top to bottom. + + + + tb-rl + + Top-to-bottom text flow in each vertical line, lines stack right to left. + Supported by only a few XSL-FO processors. Not supported in HTML output. + + + + lr + + Shorthand for lr-tb. + + + + rl + + Shorthand for rl-tb. + + + + tb + + Shorthand for tb-rl. + + + + + + + + +
    +EBNF + + +ebnf.assignment +rtf + + +ebnf.assignment +The EBNF production assignment operator + + + + + +<xsl:param name="ebnf.assignment"> + <fo:inline font-family="{$monospace.font.family}"> + <xsl:text>::=</xsl:text> + </fo:inline> +</xsl:param> + + + +Description + +The ebnf.assignment parameter determines what +text is used to show assignment in productions +in productionsets. + +While ::= is common, so are several +other operators. + + + + + + +ebnf.statement.terminator +rtf + + +ebnf.statement.terminator +Punctuation that ends an EBNF statement. + + + + + +<xsl:param name="ebnf.statement.terminator"></xsl:param> + + + +Description + +The ebnf.statement.terminator parameter determines what +text is used to terminate each production +in productionset. + +Some notations end each statement with a period. + + + + + +Prepress + + +crop.marks +boolean + + +crop.marks +Output crop marks? + + + + +<xsl:param name="crop.marks" select="0"></xsl:param> + + + +Description + +If non-zero, crop marks will be added to each page. Currently this +works only with XEP if you have xep.extensions set. + + + + + + +crop.mark.width +length + + +crop.mark.width +Width of crop marks. + + + + +<xsl:param name="crop.mark.width">0.5pt</xsl:param> + + + +Description + +Width of crop marks. Crop marks are controlled by +crop.marks parameter. + + + + + + +crop.mark.offset +length + + +crop.mark.offset +Length of crop marks. + + + + +<xsl:param name="crop.mark.offset">24pt</xsl:param> + + + +Description + +Length of crop marks. Crop marks are controlled by +crop.marks parameter. + + + + + + +crop.mark.bleed +length + + +crop.mark.bleed +Length of invisible part of crop marks. + + + + +<xsl:param name="crop.mark.bleed">6pt</xsl:param> + + + +Description + +Length of invisible part of crop marks. Crop marks are controlled by +crop.marks parameter. + + + + + + +The Stylesheet + +The param.xsl stylesheet is just a wrapper +around all these parameters. + + +<xsl:stylesheet exclude-result-prefixes="src" version="1.0"> + +<!-- This file is generated from param.xweb --> + +<!-- ******************************************************************** + $Id: param.xweb 8543 2009-12-02 06:05:24Z bobstayton $ + ******************************************************************** + + This file is part of the XSL DocBook Stylesheet distribution. + See ../README or http://docbook.sf.net/release/xsl/current/ for + copyright and other information. + + ******************************************************************** --> + +<src:fragref linkend="abstract.properties.frag"></src:fragref> +<src:fragref linkend="abstract.title.properties.frag"></src:fragref> +<src:fragref linkend="admon.graphics.extension.frag"></src:fragref> +<src:fragref linkend="admon.graphics.frag"></src:fragref> +<src:fragref linkend="admon.graphics.path.frag"></src:fragref> +<src:fragref linkend="admon.textlabel.frag"></src:fragref> +<src:fragref linkend="admonition.properties.frag"></src:fragref> +<src:fragref linkend="admonition.title.properties.frag"></src:fragref> +<src:fragref linkend="graphical.admonition.properties.frag"></src:fragref> +<src:fragref linkend="nongraphical.admonition.properties.frag"></src:fragref> +<src:fragref linkend="alignment.frag"></src:fragref> +<src:fragref linkend="appendix.autolabel.frag"></src:fragref> +<src:fragref linkend="arbortext.extensions.frag"></src:fragref> +<src:fragref linkend="article.appendix.title.properties.frag"></src:fragref> +<src:fragref linkend="author.othername.in.middle.frag"></src:fragref> +<src:fragref linkend="autotoc.label.separator.frag"></src:fragref> +<src:fragref linkend="axf.extensions.frag"></src:fragref> +<src:fragref linkend="biblioentry.item.separator.frag"></src:fragref> +<src:fragref linkend="biblioentry.properties.frag"></src:fragref> +<src:fragref linkend="bibliography.collection.frag"></src:fragref> +<src:fragref linkend="bibliography.numbered.frag"></src:fragref> +<src:fragref linkend="bibliography.style.frag"></src:fragref> +<src:fragref linkend="blockquote.properties.frag"></src:fragref> +<src:fragref linkend="body.font.family.frag"></src:fragref> +<src:fragref linkend="body.font.master.frag"></src:fragref> +<src:fragref linkend="body.font.size.frag"></src:fragref> +<src:fragref linkend="body.margin.bottom.frag"></src:fragref> +<src:fragref linkend="body.margin.top.frag"></src:fragref> +<src:fragref linkend="body.start.indent.frag"></src:fragref> +<src:fragref linkend="body.end.indent.frag"></src:fragref> +<src:fragref linkend="bookmarks.collapse.frag"></src:fragref> +<src:fragref linkend="bridgehead.in.toc.frag"></src:fragref> +<src:fragref linkend="callout.defaultcolumn.frag"></src:fragref> +<src:fragref linkend="callout.graphics.extension.frag"></src:fragref> +<src:fragref linkend="callout.graphics.frag"></src:fragref> +<src:fragref linkend="callout.icon.size.frag"></src:fragref> +<src:fragref linkend="callout.graphics.number.limit.frag"></src:fragref> +<src:fragref linkend="callout.graphics.path.frag"></src:fragref> +<src:fragref linkend="callout.unicode.font.frag"></src:fragref> +<src:fragref linkend="callout.unicode.frag"></src:fragref> +<src:fragref linkend="callout.unicode.number.limit.frag"></src:fragref> +<src:fragref linkend="callout.unicode.start.character.frag"></src:fragref> +<src:fragref linkend="callouts.extension.frag"></src:fragref> +<src:fragref linkend="chapter.autolabel.frag"></src:fragref> +<src:fragref linkend="collect.xref.targets.frag"></src:fragref> +<src:fragref linkend="column.count.back.frag"></src:fragref> +<src:fragref linkend="column.count.body.frag"></src:fragref> +<src:fragref linkend="column.count.front.frag"></src:fragref> +<src:fragref linkend="column.count.index.frag"></src:fragref> +<src:fragref linkend="column.count.lot.frag"></src:fragref> +<src:fragref linkend="column.count.titlepage.frag"></src:fragref> +<src:fragref linkend="column.gap.back.frag"></src:fragref> +<src:fragref linkend="column.gap.body.frag"></src:fragref> +<src:fragref linkend="column.gap.front.frag"></src:fragref> +<src:fragref linkend="column.gap.index.frag"></src:fragref> +<src:fragref linkend="column.gap.lot.frag"></src:fragref> +<src:fragref linkend="column.gap.titlepage.frag"></src:fragref> +<src:fragref linkend="compact.list.item.spacing.frag"></src:fragref> +<src:fragref linkend="component.label.includes.part.label.frag"></src:fragref> +<src:fragref linkend="component.title.properties.frag"></src:fragref> +<src:fragref linkend="component.titlepage.properties.frag"></src:fragref> +<src:fragref linkend="crop.marks.frag"></src:fragref> +<src:fragref linkend="crop.mark.width.frag"></src:fragref> +<src:fragref linkend="crop.mark.offset.frag"></src:fragref> +<src:fragref linkend="crop.mark.bleed.frag"></src:fragref> +<src:fragref linkend="current.docid.frag"></src:fragref> +<src:fragref linkend="default.float.class.frag"></src:fragref> +<src:fragref linkend="default.image.width.frag"></src:fragref> +<src:fragref linkend="default.table.width.frag"></src:fragref> +<src:fragref linkend="default.table.frame.frag"></src:fragref> +<src:fragref linkend="default.table.rules.frag"></src:fragref> +<src:fragref linkend="default.units.frag"></src:fragref> +<src:fragref linkend="dingbat.font.family.frag"></src:fragref> +<src:fragref linkend="double.sided.frag"></src:fragref> +<src:fragref linkend="draft.mode.frag"></src:fragref> +<src:fragref linkend="draft.watermark.image.frag"></src:fragref> +<src:fragref linkend="ebnf.assignment.frag"></src:fragref> +<src:fragref linkend="ebnf.statement.terminator.frag"></src:fragref> +<src:fragref linkend="email.delimiters.enabled.frag"></src:fragref> +<src:fragref linkend="email.mailto.enabled.frag"></src:fragref> +<src:fragref linkend="equation.properties.frag"></src:fragref> +<src:fragref linkend="equation.number.properties.frag"></src:fragref> +<src:fragref linkend="example.properties.frag"></src:fragref> +<src:fragref linkend="exsl.node.set.available.frag"></src:fragref> +<src:fragref linkend="figure.properties.frag"></src:fragref> +<src:fragref linkend="firstterm.only.link.frag"></src:fragref> +<src:fragref linkend="footer.content.properties.frag"></src:fragref> +<src:fragref linkend="footer.rule.frag"></src:fragref> +<src:fragref linkend="footer.column.widths.frag"></src:fragref> +<src:fragref linkend="footer.table.height.frag"></src:fragref> +<src:fragref linkend="footer.table.properties.frag"></src:fragref> +<src:fragref linkend="footers.on.blank.pages.frag"></src:fragref> +<src:fragref linkend="footnote.font.size.frag"></src:fragref> +<src:fragref linkend="footnote.number.format.frag"></src:fragref> +<src:fragref linkend="footnote.number.symbols.frag"></src:fragref> +<src:fragref linkend="footnote.mark.properties.frag"></src:fragref> +<src:fragref linkend="footnote.properties.frag"></src:fragref> +<src:fragref linkend="footnote.sep.leader.properties.frag"></src:fragref> +<src:fragref linkend="fop.extensions.frag"></src:fragref> +<src:fragref linkend="fop1.extensions.frag"></src:fragref> +<src:fragref linkend="formal.object.properties.frag"></src:fragref> +<src:fragref linkend="formal.procedures.frag"></src:fragref> +<src:fragref linkend="formal.title.placement.frag"></src:fragref> +<src:fragref linkend="formal.title.properties.frag"></src:fragref> +<src:fragref linkend="funcsynopsis.decoration.frag"></src:fragref> +<src:fragref linkend="funcsynopsis.style.frag"></src:fragref> +<src:fragref linkend="function.parens.frag"></src:fragref> +<src:fragref linkend="generate.index.frag"></src:fragref> +<src:fragref linkend="generate.section.toc.level.frag"></src:fragref> +<src:fragref linkend="generate.toc.frag"></src:fragref> +<src:fragref linkend="glossary.as.blocks.frag"></src:fragref> +<src:fragref linkend="glossary.collection.frag"></src:fragref> +<src:fragref linkend="glossary.sort.frag"></src:fragref> +<src:fragref linkend="glossentry.show.acronym.frag"></src:fragref> +<src:fragref linkend="glosslist.as.blocks.frag"></src:fragref> +<src:fragref linkend="glossterm.auto.link.frag"></src:fragref> +<src:fragref linkend="glossterm.separation.frag"></src:fragref> +<src:fragref linkend="glossterm.width.frag"></src:fragref> +<src:fragref linkend="glossentry.list.item.properties.frag"></src:fragref> +<src:fragref linkend="glossterm.list.properties.frag"></src:fragref> +<src:fragref linkend="glossterm.block.properties.frag"></src:fragref> +<src:fragref linkend="glossdef.list.properties.frag"></src:fragref> +<src:fragref linkend="glossdef.block.properties.frag"></src:fragref> +<src:fragref linkend="graphic.default.extension.frag"></src:fragref> +<src:fragref linkend="header.content.properties.frag"></src:fragref> +<src:fragref linkend="header.rule.frag"></src:fragref> +<src:fragref linkend="header.column.widths.frag"></src:fragref> +<src:fragref linkend="header.table.height.frag"></src:fragref> +<src:fragref linkend="header.table.properties.frag"></src:fragref> +<src:fragref linkend="headers.on.blank.pages.frag"></src:fragref> +<src:fragref linkend="highlight.default.language.frag"></src:fragref> +<src:fragref linkend="highlight.source.frag"></src:fragref> +<src:fragref linkend="highlight.xslthl.config.frag"></src:fragref> +<src:fragref linkend="hyphenate.frag"></src:fragref> +<src:fragref linkend="hyphenate.verbatim.frag"></src:fragref> +<src:fragref linkend="hyphenate.verbatim.characters.frag"></src:fragref> +<src:fragref linkend="ignore.image.scaling.frag"></src:fragref> +<src:fragref linkend="img.src.path.frag"></src:fragref> +<src:fragref linkend="index.method.frag"></src:fragref> +<src:fragref linkend="index.on.role.frag"></src:fragref> +<src:fragref linkend="index.on.type.frag"></src:fragref> +<src:fragref linkend="index.page.number.properties.frag"></src:fragref> +<src:fragref linkend="informalequation.properties.frag"></src:fragref> +<src:fragref linkend="informalexample.properties.frag"></src:fragref> +<src:fragref linkend="informalfigure.properties.frag"></src:fragref> +<src:fragref linkend="informal.object.properties.frag"></src:fragref> +<src:fragref linkend="informaltable.properties.frag"></src:fragref> +<src:fragref linkend="index.preferred.page.properties.frag"></src:fragref> +<src:fragref linkend="index.div.title.properties.frag"></src:fragref> +<src:fragref linkend="index.entry.properties.frag"></src:fragref> +<src:fragref linkend="index.number.separator.frag"></src:fragref> +<src:fragref linkend="index.range.separator.frag"></src:fragref> +<src:fragref linkend="index.term.separator.frag"></src:fragref> +<src:fragref linkend="insert.link.page.number.frag"></src:fragref> +<src:fragref linkend="insert.xref.page.number.frag"></src:fragref> +<src:fragref linkend="itemizedlist.properties.frag"></src:fragref> +<src:fragref linkend="itemizedlist.label.properties.frag"></src:fragref> +<src:fragref linkend="itemizedlist.label.width.frag"></src:fragref> +<src:fragref linkend="keep.relative.image.uris.frag"></src:fragref> +<src:fragref linkend="l10n.gentext.default.language.frag"></src:fragref> +<src:fragref linkend="l10n.gentext.language.frag"></src:fragref> +<src:fragref linkend="l10n.gentext.use.xref.language.frag"></src:fragref> +<src:fragref linkend="l10n.lang.value.rfc.compliant.frag"></src:fragref> +<src:fragref linkend="label.from.part.frag"></src:fragref> +<src:fragref linkend="line-height.frag"></src:fragref> +<src:fragref linkend="linenumbering.everyNth.frag"></src:fragref> +<src:fragref linkend="linenumbering.extension.frag"></src:fragref> +<src:fragref linkend="linenumbering.separator.frag"></src:fragref> +<src:fragref linkend="linenumbering.width.frag"></src:fragref> +<src:fragref linkend="list.block.properties.frag"></src:fragref> +<src:fragref linkend="list.block.spacing.frag"></src:fragref> +<src:fragref linkend="list.item.spacing.frag"></src:fragref> +<src:fragref linkend="make.index.markup.frag"></src:fragref> +<src:fragref linkend="make.single.year.ranges.frag"></src:fragref> +<src:fragref linkend="make.year.ranges.frag"></src:fragref> +<src:fragref linkend="margin.note.properties.frag"></src:fragref> +<src:fragref linkend="margin.note.title.properties.frag"></src:fragref> +<src:fragref linkend="margin.note.float.type.frag"></src:fragref> +<src:fragref linkend="margin.note.width.frag"></src:fragref> +<src:fragref linkend="marker.section.level.frag"></src:fragref> +<src:fragref linkend="menuchoice.menu.separator.frag"></src:fragref> +<src:fragref linkend="menuchoice.separator.frag"></src:fragref> +<src:fragref linkend="monospace.font.family.frag"></src:fragref> +<src:fragref linkend="monospace.properties.frag"></src:fragref> +<src:fragref linkend="monospace.verbatim.properties.frag"></src:fragref> +<src:fragref linkend="monospace.verbatim.font.width.frag"></src:fragref> +<src:fragref linkend="nominal.table.width.frag"></src:fragref> +<src:fragref linkend="normal.para.spacing.frag"></src:fragref> +<src:fragref linkend="olink.doctitle.frag"></src:fragref> +<src:fragref linkend="olink.base.uri.frag"></src:fragref> +<src:fragref linkend="olink.debug.frag"></src:fragref> +<src:fragref linkend="olink.properties.frag"></src:fragref> +<src:fragref linkend="olink.lang.fallback.sequence.frag"></src:fragref> +<src:fragref linkend="orderedlist.properties.frag"></src:fragref> +<src:fragref linkend="orderedlist.label.properties.frag"></src:fragref> +<src:fragref linkend="orderedlist.label.width.frag"></src:fragref> +<src:fragref linkend="prefer.internal.olink.frag"></src:fragref> +<src:fragref linkend="insert.olink.page.number.frag"></src:fragref> +<src:fragref linkend="insert.olink.pdf.frag.frag"></src:fragref> +<src:fragref linkend="page.height.frag"></src:fragref> +<src:fragref linkend="page.height.portrait.frag"></src:fragref> +<src:fragref linkend="page.margin.bottom.frag"></src:fragref> +<src:fragref linkend="page.margin.inner.frag"></src:fragref> +<src:fragref linkend="page.margin.outer.frag"></src:fragref> +<src:fragref linkend="page.margin.top.frag"></src:fragref> +<src:fragref linkend="page.orientation.frag"></src:fragref> +<src:fragref linkend="page.width.frag"></src:fragref> +<src:fragref linkend="page.width.portrait.frag"></src:fragref> +<src:fragref linkend="paper.type.frag"></src:fragref> +<src:fragref linkend="part.autolabel.frag"></src:fragref> +<src:fragref linkend="passivetex.extensions.frag"></src:fragref> +<src:fragref linkend="pgwide.properties.frag"></src:fragref> +<src:fragref linkend="preface.autolabel.frag"></src:fragref> +<src:fragref linkend="preferred.mediaobject.role.frag"></src:fragref> +<src:fragref linkend="procedure.properties.frag"></src:fragref> +<src:fragref linkend="process.empty.source.toc.frag"></src:fragref> +<src:fragref linkend="process.source.toc.frag"></src:fragref> +<src:fragref linkend="profile.arch.frag"></src:fragref> +<src:fragref linkend="profile.audience.frag"></src:fragref> +<src:fragref linkend="profile.attribute.frag"></src:fragref> +<src:fragref linkend="profile.condition.frag"></src:fragref> +<src:fragref linkend="profile.conformance.frag"></src:fragref> +<src:fragref linkend="profile.lang.frag"></src:fragref> +<src:fragref linkend="profile.os.frag"></src:fragref> +<src:fragref linkend="profile.revision.frag"></src:fragref> +<src:fragref linkend="profile.revisionflag.frag"></src:fragref> +<src:fragref linkend="profile.role.frag"></src:fragref> +<src:fragref linkend="profile.security.frag"></src:fragref> +<src:fragref linkend="profile.separator.frag"></src:fragref> +<src:fragref linkend="profile.status.frag"></src:fragref> +<src:fragref linkend="profile.userlevel.frag"></src:fragref> +<src:fragref linkend="profile.value.frag"></src:fragref> +<src:fragref linkend="profile.vendor.frag"></src:fragref> +<src:fragref linkend="profile.wordsize.frag"></src:fragref> +<src:fragref linkend="punct.honorific.frag"></src:fragref> +<src:fragref linkend="qanda.defaultlabel.frag"></src:fragref> +<src:fragref linkend="qanda.in.toc.frag"></src:fragref> +<src:fragref linkend="qanda.nested.in.toc.frag"></src:fragref> +<src:fragref linkend="qanda.inherit.numeration.frag"></src:fragref> +<src:fragref linkend="qandadiv.autolabel.frag"></src:fragref> +<src:fragref linkend="qanda.title.level1.properties.frag"></src:fragref> +<src:fragref linkend="qanda.title.level2.properties.frag"></src:fragref> +<src:fragref linkend="qanda.title.level3.properties.frag"></src:fragref> +<src:fragref linkend="qanda.title.level4.properties.frag"></src:fragref> +<src:fragref linkend="qanda.title.level5.properties.frag"></src:fragref> +<src:fragref linkend="qanda.title.level6.properties.frag"></src:fragref> +<src:fragref linkend="qanda.title.properties.frag"></src:fragref> +<src:fragref linkend="refentry.generate.name.frag"></src:fragref> +<src:fragref linkend="refentry.generate.title.frag"></src:fragref> +<src:fragref linkend="refentry.pagebreak.frag"></src:fragref> +<src:fragref linkend="refentry.title.properties.frag"></src:fragref> +<src:fragref linkend="refentry.xref.manvolnum.frag"></src:fragref> +<src:fragref linkend="reference.autolabel.frag"></src:fragref> +<src:fragref linkend="refclass.suppress.frag"></src:fragref> +<src:fragref linkend="region.after.extent.frag"></src:fragref> +<src:fragref linkend="region.before.extent.frag"></src:fragref> +<src:fragref linkend="revhistory.table.properties.frag"></src:fragref> +<src:fragref linkend="revhistory.table.cell.properties.frag"></src:fragref> +<src:fragref linkend="revhistory.title.properties.frag"></src:fragref> +<src:fragref linkend="root.properties.frag"></src:fragref> +<src:fragref linkend="rootid.frag"></src:fragref> +<src:fragref linkend="runinhead.default.title.end.punct.frag"></src:fragref> +<src:fragref linkend="runinhead.title.end.punct.frag"></src:fragref> +<src:fragref linkend="sans.font.family.frag"></src:fragref> +<src:fragref linkend="section.autolabel.frag"></src:fragref> +<src:fragref linkend="section.autolabel.max.depth.frag"></src:fragref> +<src:fragref linkend="section.container.element.frag"></src:fragref> +<src:fragref linkend="section.label.includes.component.label.frag"></src:fragref> +<src:fragref linkend="section.title.level1.properties.frag"></src:fragref> +<src:fragref linkend="section.title.level2.properties.frag"></src:fragref> +<src:fragref linkend="section.title.level3.properties.frag"></src:fragref> +<src:fragref linkend="section.title.level4.properties.frag"></src:fragref> +<src:fragref linkend="section.title.level5.properties.frag"></src:fragref> +<src:fragref linkend="section.title.level6.properties.frag"></src:fragref> +<src:fragref linkend="section.title.properties.frag"></src:fragref> +<src:fragref linkend="section.level1.properties.frag"></src:fragref> +<src:fragref linkend="section.level2.properties.frag"></src:fragref> +<src:fragref linkend="section.level3.properties.frag"></src:fragref> +<src:fragref linkend="section.level4.properties.frag"></src:fragref> +<src:fragref linkend="section.level5.properties.frag"></src:fragref> +<src:fragref linkend="section.level6.properties.frag"></src:fragref> +<src:fragref linkend="section.properties.frag"></src:fragref> +<src:fragref linkend="segmentedlist.as.table.frag"></src:fragref> +<src:fragref linkend="shade.verbatim.frag"></src:fragref> +<src:fragref linkend="shade.verbatim.style.frag"></src:fragref> +<src:fragref linkend="show.comments.frag"></src:fragref> +<src:fragref linkend="sidebar.properties.frag"></src:fragref> +<src:fragref linkend="sidebar.title.properties.frag"></src:fragref> +<src:fragref linkend="sidebar.float.type.frag"></src:fragref> +<src:fragref linkend="sidebar.float.width.frag"></src:fragref> +<src:fragref linkend="simplesect.in.toc.frag"></src:fragref> +<src:fragref linkend="subscript.properties.frag"></src:fragref> +<src:fragref linkend="superscript.properties.frag"></src:fragref> +<src:fragref linkend="symbol.font.family.frag"></src:fragref> +<src:fragref linkend="table.cell.border.color.frag"></src:fragref> +<src:fragref linkend="table.cell.border.style.frag"></src:fragref> +<src:fragref linkend="table.cell.border.thickness.frag"></src:fragref> +<src:fragref linkend="table.cell.padding.frag"></src:fragref> +<src:fragref linkend="table.footnote.number.format.frag"></src:fragref> +<src:fragref linkend="table.footnote.number.symbols.frag"></src:fragref> +<src:fragref linkend="table.footnote.properties.frag"></src:fragref> +<src:fragref linkend="table.frame.border.color.frag"></src:fragref> +<src:fragref linkend="table.frame.border.style.frag"></src:fragref> +<src:fragref linkend="table.frame.border.thickness.frag"></src:fragref> +<src:fragref linkend="table.properties.frag"></src:fragref> +<src:fragref linkend="tablecolumns.extension.frag"></src:fragref> +<src:fragref linkend="table.table.properties.frag"></src:fragref> +<src:fragref linkend="target.database.document.frag"></src:fragref> +<src:fragref linkend="targets.filename.frag"></src:fragref> +<src:fragref linkend="textdata.default.encoding.frag"></src:fragref> +<src:fragref linkend="tex.math.delims.frag"></src:fragref> +<src:fragref linkend="tex.math.in.alt.frag"></src:fragref> +<src:fragref linkend="textinsert.extension.frag"></src:fragref> +<src:fragref linkend="title.font.family.frag"></src:fragref> +<src:fragref linkend="title.margin.left.frag"></src:fragref> +<src:fragref linkend="toc.indent.width.frag"></src:fragref> +<src:fragref linkend="toc.line.properties.frag"></src:fragref> +<src:fragref linkend="toc.margin.properties.frag"></src:fragref> +<src:fragref linkend="toc.max.depth.frag"></src:fragref> +<src:fragref linkend="toc.section.depth.frag"></src:fragref> +<src:fragref linkend="ulink.footnotes.frag"></src:fragref> +<src:fragref linkend="ulink.hyphenate.frag"></src:fragref> +<src:fragref linkend="ulink.hyphenate.chars.frag"></src:fragref> +<src:fragref linkend="ulink.show.frag"></src:fragref> +<src:fragref linkend="use.extensions.frag"></src:fragref> +<src:fragref linkend="use.local.olink.style.frag"></src:fragref> +<src:fragref linkend="use.role.as.xrefstyle.frag"></src:fragref> +<src:fragref linkend="use.role.for.mediaobject.frag"></src:fragref> +<src:fragref linkend="use.svg.frag"></src:fragref> +<src:fragref linkend="variablelist.as.blocks.frag"></src:fragref> +<src:fragref linkend="variablelist.max.termlength.frag"></src:fragref> +<src:fragref linkend="variablelist.term.separator.frag"></src:fragref> +<src:fragref linkend="variablelist.term.properties.frag"></src:fragref> +<src:fragref linkend="variablelist.term.break.after.frag"></src:fragref> +<src:fragref linkend="verbatim.properties.frag"></src:fragref> +<src:fragref linkend="writing.mode.frag"></src:fragref> +<src:fragref linkend="xep.extensions.frag"></src:fragref> +<src:fragref linkend="xep.index.item.properties.frag"></src:fragref> +<src:fragref linkend="xref.label-page.separator.frag"></src:fragref> +<src:fragref linkend="xref.label-title.separator.frag"></src:fragref> +<src:fragref linkend="xref.properties.frag"></src:fragref> +<src:fragref linkend="xref.title-page.separator.frag"></src:fragref> +<src:fragref linkend="xref.with.number.and.title.frag"></src:fragref> + +</xsl:stylesheet> + + + +
    diff --git a/docbook-xsl-1.76.1/fo/param.xsl b/docbook-xsl-1.76.1/fo/param.xsl new file mode 100644 index 0000000..b65ac4d --- /dev/null +++ b/docbook-xsl-1.76.1/fo/param.xsl @@ -0,0 +1,946 @@ + + + + + + + + + 0.0in + 0.0in + + + + bold + always + always + + + + false + center + +.png + +images/ + + + + 14pt + bold + false + always + + + 1em + 0.8em + 1.2em + 1em + 0.8em + 1.2em + + + 0.8em + 1em + 1.2em + 0.25in + 0.25in + +justify +A + + + + + + + +. + +. + + 0.5in + -0.5in + +http://docbook.sourceforge.net/release/bibliography/bibliography.xml + + +normal + +0.5in +0.5in +0.5em +1em +2em + +serif +10 + + pt + +0.5in +0.5in + + + 0pt + 0pt + 4pc + + +0pt + + +60 + +.svg + +7pt + +30 +images/callouts/ +ZapfDingbats + +10 +10102 + + +no + + + +2 + + +12pt +12pt +12pt +12pt +12pt +12pt + + 0em + 0em + 0.2em + + + + always + + + + false + + + center + start + + + + + + + +0.5pt +24pt +6pt + + + + left + before + + + + +all +none +pt +serif + +no +images/draft.png + + + + ::= + + + + + + + + + end + center + + + + + 1 + 0 + + + + + + + + + + + + + +1 1 1 +14pt + + fixed + 100% + + + + pt + +1 + + + + 75% + normal + normal + + + + + normal + normal + + 0pt + 0pt + + wrap + treat-as-space + + + black + rule + 1in + + + + + 0.5em + 1em + 2em + 0.5em + 1em + 2em + always + + + +figure before +example before +equation before +table before +procedure before +task before + + + bold + + + pt + + false + 0.4em + 0.6em + 0.8em + + +kr + + + + + +/appendix toc,title +article/appendix nop +/article toc,title +book toc,title,figure,table,example,equation +/chapter toc,title +part toc,title +/preface toc,title +reference toc,title +/sect1 toc +/sect2 toc +/sect3 toc +/sect4 toc +/sect5 toc +/section toc +set toc,title + + + + +no + + +0.25in +2in + + 1em + 0.8em + 1.2em + + + + + 1em + 0.8em + 1.2em + always + always + + + + + .25in + + + + + + + + + + + +1 1 1 +14pt + + fixed + 100% + + + + + +true + + + + +basic + + + + + + + + + 0.5em + 1em + 2em + 0.5em + 1em + 2em + + + + bold + + + 0pt + 14.4pt + + bold + always + + + + 0pt + + + 0pt + + + + +no +no + + + + + 1.0em + + + +en + + + + +normal +5 + + +3 + + 0.2em + 1.5em + + + 1em + 0.8em + 1.2em + 1em + 0.8em + 1.2em + + + 1em + 0.8em + 1.2em + + + + + + 90% + start + + + bold + false + start + always + +none +1in +2 + ++ +monospace + + + + + + + start + no-wrap + +0.60em +6in + + 1em + 0.8em + 1.2em + +no + + + + replace + + + + 2em + + + +1.2em + +no + + + + + + + + + + + + + + 210mm + 11in + 8.5in + 2378mm + 1682mm + 1189mm + 841mm + 594mm + 420mm + 297mm + 210mm + 148mm + 105mm + 74mm + 52mm + 37mm + 1414mm + 1000mm + 707mm + 500mm + 353mm + 250mm + 176mm + 125mm + 88mm + 62mm + 44mm + 1297mm + 917mm + 648mm + 458mm + 324mm + 229mm + 162mm + 114mm + 81mm + 57mm + 40mm + 11in + + +0.5in + + + 1.25in + 1in + + + + + 0.75in + 1in + + +0.5in +portrait + + + + + + + + + + + + + 8.5in + 1682mm + 1189mm + 841mm + 594mm + 420mm + 297mm + 210mm + 148mm + 105mm + 74mm + 52mm + 37mm + 26mm + 1000mm + 707mm + 500mm + 353mm + 250mm + 176mm + 125mm + 88mm + 62mm + 44mm + 31mm + 917mm + 648mm + 458mm + 324mm + 229mm + 162mm + 114mm + 81mm + 57mm + 40mm + 28mm + 8.5in + + +USletter +I + + + 0pt + + + + + auto + + + + + + + + + + + + + + +; + + + + + +. +number + + + + + + + + pt + + + + + + pt + + + + + + pt + + + + + + pt + + + + + + pt + + + + + + pt + + + + + + + bold + + always + 0.8em + 1.0em + 1.2em + + + + + + + + + 18pt + bold + 1em + false + always + 0.8em + 1.0em + 1.2em + 0.5em + 0.4em + 0.6em + + + + I + +0.4in +0.4in + + + + + + + + + + + + + + + + + + + + character-by-character + disregard-shifts + + + + + +. +.!?: +sans-serif + +8 +block + + + + + pt + + + + + + pt + + + + + + pt + + + + + + pt + + + + + + pt + + + + + + pt + + + + + + + bold + + always + 0.8em + 1.0em + 1.2em + start + + + + + + + + + + + + + + + + + + + + + #E0E0E0 + + + + solid + 1pt + black + #DDDDDD + 12pt + 12pt + 6pt + 6pt + 0pt + 0pt + + + + bold + false + start + always + +none +1in + + + 75% + + + 75% + +Symbol,ZapfDingbats + +black +solid +0.5pt + + 2pt + 2pt + 2pt + 2pt + +a + + + + + normal + normal + 2pt + + + +black +solid +0.5pt + + auto + + + + retain + collapse + + olinkdb.xml +target.db + + + + +sans-serif + + + -4pc + 0pt + 0pt + + +24 + + + justify + start + + + + + 0.5em + 1em + 2em + 0.5em + 1em + 2em + +8 +2 + + +/ + + + + + + + +24 +, + + +0 + + 0.8em + 1em + 1.2em + 0.8em + 1em + 1.2em + false + no-wrap + false + preserve + preserve + start + + + + writing-mode + + + + + + + + + + true + true + + +: + + + + + + diff --git a/docbook-xsl-1.76.1/fo/passivetex.xsl b/docbook-xsl-1.76.1/fo/passivetex.xsl new file mode 100644 index 0000000..9fa28ec --- /dev/null +++ b/docbook-xsl-1.76.1/fo/passivetex.xsl @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/fo/pdf2index b/docbook-xsl-1.76.1/fo/pdf2index new file mode 100755 index 0000000..c14d8ec --- /dev/null +++ b/docbook-xsl-1.76.1/fo/pdf2index @@ -0,0 +1,140 @@ +#!/usr/bin/perl -- # -*- Perl -*- + +# this needs some cleanup... + +my $PSTOTEXT = "pstotext"; + +my $pdf = shift @ARGV; + +my $index = ""; +my $inindex = 0; +open (F, "$PSTOTEXT $pdf |"); +while () { + if (/^<\/index/) { + $index .= $_; + $inindex = 0; + } + $inindex = 1 if /^.*?<\/phrase>\s*)+)/s) { + $cindex .= $1; + $_ = $2; + $index = $'; # ' + + my @pages = m/.*?<\/phrase>\s*/sg; + + # Expand ranges + if ($#pages >= 0) { + my @mpages = (); + foreach my $page (@pages) { + my $pageno = &pageno($page); + if ($pageno =~ /^([0-9]+)[^0-9]([0-9]+)$/) { # funky - + for (my $count = $1; $count <= $2; $count++) { + push (@mpages, "$count"); + } + } else { + push (@mpages, $page); + } + } + @pages = sort rangesort @mpages; + } + + # Remove duplicates... + if ($#pages > 0) { + my @mpages = (); + my $current = ""; + foreach my $page (@pages) { + my $pageno = &pageno($page); + if ($pageno ne $current) { + push (@mpages, $page); + $current = $pageno; + } + } + @pages = @mpages; + } + + # Collapse ranges... + if ($#pages > 1) { + my @cpages = (); + while (@pages) { + my $count = 0; + my $len = &rangelen($count, @pages); + if ($len <= 2) { + my $page = shift @pages; + push (@cpages, $page); + } else { + my $fpage = shift @pages; + my $lpage = ""; + while ($len > 1) { + $lpage = shift @pages; + $len--; + } + my $fpno = &pageno($fpage); + my $lpno = &pageno($lpage); + $fpage =~ s/>$fpno${fpno}-$lpno//; + $page =~ s/^//; + + return $1 if $page =~ /^([^<>]+)/; + return "?"; +} + +sub rangesort { + my $apno = &pageno($a); + my $bpno = &pageno($b); + + # Make sure roman pages come before arabic ones, otherwise sort them in order + return -1 if ($apno !~ /^\d+/ && $bpno =~ /^\d+/); + return 1 if ($apno =~ /^\d+/ && $bpno !~ /^\d+/); + return $apno <=> $bpno; +} + +sub rangelen { + my $count = shift; + my @pages = @_; + my $len = 1; + my $inrange = 1; + + my $current = &pageno($pages[$count]); + while ($count < $#pages && $inrange) { + $count++; + my $next = &pageno($pages[$count]); + if ($current + 1 eq $next) { + $current = $next; + $inrange = 1; + $len++; + } else { + $inrange = 0; + } + } + + return $len; +} diff --git a/docbook-xsl-1.76.1/fo/pi.xml b/docbook-xsl-1.76.1/fo/pi.xml new file mode 100644 index 0000000..701d414 --- /dev/null +++ b/docbook-xsl-1.76.1/fo/pi.xml @@ -0,0 +1,1002 @@ + + +FO Processing Instruction Reference + + $Id: pi.xsl 8487 2009-07-14 21:43:36Z bobstayton $ + + + + + Introduction + + +This is generated reference documentation for all + user-specifiable processing instructions (PIs) in the DocBook + XSL stylesheets for FO output. + + +You add these PIs at particular points in a document to + cause specific “exceptions†to formatting/output behavior. To + make global changes in formatting/output behavior across an + entire document, it’s better to do it by setting an + appropriate stylesheet parameter (if there is one). + + + + + + + + +dbfo_background-color +Sets background color for an image + + + + dbfo background-color="color" + + +Description + +Use the dbfo background-color PI before or + after an image (graphic, inlinegraphic, + imagedata, or videodata element) as a + sibling to the element, to set a background color for the + image. + + Parameters + + + background-color="color" + + +An HTML color value + + + + + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Background color + + + + + +dbfo_bgcolor +Sets background color on a table row or table cell + + + + dbfo bgcolor="color" + + +Description + +Use the dbfo bgcolor PI as child of a table row + or cell to set a background color for that table row or cell. + + +This PI works for both CALS and HTML tables. + + Parameters + + + bgcolor="color" + + +An HTML color value + + + + + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Cell background color + + + + + +dbfo_float-type +Specifies float behavior for a sidebar + + + + dbfo float-type="margin.note" + + +Description + +Use the dbfo float-type PI to specify the float + behavior for a sidebar (to cause the sidebar to be + displayed as a marginal note). + + Parameters + + + float-type="margin.note" + + +Specifies that the sidebar should be + displayed as a marginal note. + + + + + + Related Global Parameters + +sidebar.float.type (parameter), + sidebar.float.width (parameter), + sidebar.properties (attribute-set), + sidebar.title.properties (attribute-set) + + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +A sidebar as + side float + + + + + +dbfo_funcsynopsis-style +Specifies presentation style for a funcsynopsis + + + + dbfo funcsynopsis-style="kr"|"ansi" + + +Description + +Use the dbfo funcsynopsis-style PI as a child of + a funcsynopsis or anywhere within a funcsynopsis + to control the presentation style for output of all + funcprototype instances within that funcsynopsis. + + Parameters + + + funcsynopsis-style="kr" + + +Displays funcprototype output in K&R style + + + + funcsynopsis-style="ansi" + + +Displays funcprototype output in ANSI style + + + + + + Related Global Parameters + +funcsynopsis.style + + + + + +dbfo_glossary-presentation +Specifies presentation style for a glossary + + + + dbfo glossary-presentation="list"|"blocks" + + +Description + +Use the dbfo glossary-presentation PI as a child of + a glossary to control its presentation style. + + Parameters + + + glossary-presentation="list" + + +Displays the glossary as a list + + + + glossary-presentation="blocks" + + +Displays the glossary as blocks + + + + + + Related Global Parameters + +glossary.as.blocks + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Glossary + formatting in print + + + + + +dbfo_glosslist-presentation +Specifies presentation style for a glosslist + + + + dbfo glosslist-presentation="list"|"blocks" + + +Description + +Use the dbfo glosslist-presentation PI as a child of + a glosslist to control its presentation style. + + Parameters + + + glosslist-presentation="list" + + +Displays the glosslist as a list + + + + glosslist-presentation="blocks" + + +Displays the glosslist as blocks + + + + + + Related Global Parameters + +glosslist.as.blocks + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Glossary + formatting in print + + + + + +dbfo_glossterm-width +Specifies the glossterm width for a glossary or + glosslist + + + + dbfo glossterm-width="width" + + +Description + +Use the dbfo glossterm-width PI as a child of a + glossary or glosslist to specify the + width for output of glossterm instances in the + output. + + Parameters + + + glossterm-width="width" + + +Specifies the glossterm width (including units) + + + + + + Related Global Parameters + +glossterm.width, + glossterm.separation + + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Glossary + formatting in print + + + + + +dbfo_keep-together +Specifies “keep†behavior for a table, example, + figure, equation, procedure, or task + + + + dbfo keep-together="auto"|"always" + + +Description + +Use the dbfo keep-together PI as a child of a + formal object (table, example, + figure, equation, procedure, or + task) to specify “keep†behavior (to allow the object to + “break†across a page). + + +The PI also works with informaltable, informalexample, + informalfigure and informalequation. + + + + Parameters + + + keep-together="auto" + + +Enables the object to break across a page + + + + keep-together="always" + + +Prevents the object from breaking across a page (the + default stylesheet behavior) + + + + + + Related Global Parameters + +formal.object.properties + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Keep-together processing instruction + + + + + +dbfo_label-width +Specifies the label width for a qandaset, itemizedlist, orderedlist + or calloutlist + + + + dbfo label-width="width" + + +Description + +Use the dbfo label-width PI as a child of a + qandaset, itemizedlist, orderedlist, + or calloutlist to specify the width of labels. + + Parameters + + + label-width="width" + + +Specifies the label width (including units) + + + + + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Q and A formatting + + + + + +dbfo_linenumbering.everyNth +Specifies interval for line numbers in verbatims + + + + dbfo linenumbering.everyNth="N" + + +Description + +Use the dbfo linenumbering.everyNth PI as a child + of a “verbatim†element – programlisting, + screen, synopsis — to specify + the interval at which lines are numbered. + + Parameters + + + linenumbering.everyNth="N" + + +Specifies numbering interval; a number is output + before every Nth line + + + + + + Related Global Parameters + +linenumbering.everyNth + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Line numbering + + + + + +dbfo_linenumbering.separator +Specifies separator text for line numbers in verbatims + + + + dbfo linenumbering.separator="text" + + +Description + +Use the dbfo linenumbering.separator PI as a child + of a “verbatim†element – programlisting, + screen, synopsis — to specify + the separator text output between the line numbers and content. + + Parameters + + + linenumbering.separator="text" + + +Specifies the text (zero or more characters) + + + + + + Related Global Parameters + +linenumbering.separator + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Line numbering + + + + + +dbfo_linenumbering.width +Specifies width for line numbers in verbatims + + + + dbfo linenumbering.width="width" + + +Description + +Use the dbfo linenumbering.width PI as a child + of a “verbatim†element – programlisting, + screen, synopsis — to specify + the width set aside for line numbers. + + Parameters + + + linenumbering.width="width" + + +Specifies the width (inluding units) + + + + + + Related Global Parameters + +linenumbering.width + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Line numbering + + + + + +dbfo_list-presentation +Specifies presentation style for a variablelist or + segmentedlist + + + + dbfo list-presentation="list"|"blocks"|"table" + + +Description + +Use the dbfo list-presentation PI as a child of + a variablelist or segmentedlist to + control the presentation style for the list (to cause it, for + example, to be displayed as a table). + + Parameters + + + list-presentation="list" + + +Displays the list as a list + + + + list-presentation="blocks" + + +(variablelist only) Displays the list as blocks + + + + list-presentation="table" + + +(segmentedlist only) Displays the list as a table + + + + + + Related Global Parameters + + + + +variablelist.as.blocks + + + + +variablelist.as.table + + + + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Variable list formatting in print + + + + + +dbfo_list-width +Specifies the width of a horizontal simplelist + + + + dbfo list-width="width" + + +Description + +Use the dbfo list-width PI as a child of a + simplelist whose class + value is horizontal, to specify the width + of the simplelist. + + Parameters + + + list-width="width" + + +Specifies the simplelist width (including units) + + + + + + + + + +dbfo_orientation +Specifies the orientation for a CALS table row or cell + + + + dbfo orientation="0"|"90"|"180"|"270"|"-90"|"-180"|"-270" + + +Description + +Use the dbfo orientation PI as a child of a CALS + table row or cell to specify the orientation + (rotation) for the row or cell. + + Parameters + + + orientation="0"|"90"|"180"|"270"|"-90"|"-180"|"-270" + + +Specifies the number of degrees by which the cell or + row is rotated + + + + + + + + + +dbfo_pgwide +Specifies if an equation or example goes across full page width + + + + dbfo pgwide="0"|"1" + + +Description + +Use the dbfo pgwide PI as a child of an + equation or example to specify that the + content should rendered across the full width of the page. + + Parameters + + + pgwide="0" + + +If zero, the content is rendered across the current + text flow + + + + pgwide="1" + + +If 1 (or any non-zero value), the + content is rendered across the full width of the page + + + + + + Related Global Parameters + +pgwide.properties + + + + + +dbfo_rotated-width +Specifies the width for a CALS table entry or + row + + + + dbfo rotated-width="width" + + +Description + +Use the dbfo rotated-width PI as a child of + entry or row instance in a CALS table to specify the + width of that the entry or row; or + use it higher up in table to cause the width to be inherited + recursively down. + + Parameters + + + rotated-width="width" + + +Specifies the width of a row or cell (including units) + + + + + + + + + +dbfo_sidebar-width +Specifies the width of a sidebar + + + + dbfo sidebar-width="width" + + +Description + +Use the dbfo sidebar-width PI as a child of a + sidebar to specify the width of the sidebar. + + Parameters + + + sidebar-width="width" + + +Specifies the sidebar width (including units) + + + + + + Related Global Parameters + +sidebar.float.type parameter, + sidebar.float.width parameter, + sidebar.properties attribute-set, + sidebar.title.properties + + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +A sidebar as + side float + + + + + +dbfo_start +(obsolete) Sets the starting number on an ordered list + + + + dbfo start="character" + + +Description + +This PI is obsolete. The intent of + it was to provide a means for setting a specific starting + number for an ordered list. Instead of this PI, set a value + for the override attribute on the first + listitem in the list; that will have the same + effect as what this PI was intended for. + + Parameters + + + start="character" + + +Specifies the character to use as the starting + number; use 0-9, a-z, A-Z, or lowercase or uppercase + Roman numerals + + + + + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +List starting number + + + + + +dbfo_table-width +Specifies the width for a CALS table or for revhistory + output + + + + dbfo table-width="width" + + +Description + +Use the dbfo table-width PI as a child or + sibling of a CALS table, or as a child of an + informaltable, entrytbl, or + revhistory instance (which is rendered as a table + in output) to specify the width of the table in output. + + Parameters + + + table-width="width" + + +Specifies the table width (including units or as a percentage) + + + + + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Table width + + + + + +dbfo_term-width +Specifies the term width for a variablelist + + + + dbfo term-width="width" + + +Description + +Use the dbfo term-width PI as a child of a + variablelist to specify the width for + term output. + + Parameters + + + term-width="width" + + +Specifies the term width (including units) + + + + + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Variable list formatting in print + + + + + +dbfo_toc +Specifies whether a TOC should be generated for a qandaset + + + + dbfo toc="0"|"1" + + +Description + +Use the dbfo toc PI as a child of a + qandaset to specify whether a table of contents + (TOC) is generated for the qandaset. + + Parameters + + + toc="0" + + +If zero, no TOC is generated + + + + toc="1" + + +If 1 (or any non-zero value), + a TOC is generated + + + + + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Q and A list of questions, + Q and A formatting + + + + + +dbfo-need +Specify a need for space (a kind of soft page break) + + + + dbfo-need height="n" [space-before="n"] + + +Description + +A “need†is a request for space on a page. If the + requested space is not available, the page breaks and the + content that follows the need request appears on the next + page. If the requested space is available, then no page break + is inserted. + + Parameters + + + height="n" + + +The amount of height needed (including units) + + + + space-before="n" + + +The amount of extra vertical space to add (including units) + + + + + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Soft page breaks + + + + + +dbfo_row-height +Specifies the height for a CALS table row + + + + dbfo row-height="height" + + +Description + +Use the dbfo row-height PI as a child of a + row to specify the height of the row. + + Parameters + + + row-height="height" + + +Specifies the row height (including units) + + + + + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Row height + + + + diff --git a/docbook-xsl-1.76.1/fo/pi.xsl b/docbook-xsl-1.76.1/fo/pi.xsl new file mode 100644 index 0000000..c5f258b --- /dev/null +++ b/docbook-xsl-1.76.1/fo/pi.xsl @@ -0,0 +1,1092 @@ + + + + + +FO Processing Instruction Reference + + $Id: pi.xsl 8487 2009-07-14 21:43:36Z bobstayton $ + + + + + Introduction + + This is generated reference documentation for all + user-specifiable processing instructions (PIs) in the DocBook + XSL stylesheets for FO output. + + You add these PIs at particular points in a document to + cause specific “exceptions†to formatting/output behavior. To + make global changes in formatting/output behavior across an + entire document, it’s better to do it by setting an + appropriate stylesheet parameter (if there is one). + + + + + + + + + Sets background color for an image + + Use the dbfo background-color PI before or + after an image (graphic, inlinegraphic, + imagedata, or videodata element) as a + sibling to the element, to set a background color for the + image. + + + dbfo background-color="color" + + + + background-color="color" + + An HTML color value + + + + + + Background color + + + + + + + + + + + + Sets background color on a table row or table cell + + Use the dbfo bgcolor PI as child of a table row + or cell to set a background color for that table row or cell. + This PI works for both CALS and HTML tables. + + + dbfo bgcolor="color" + + + + bgcolor="color" + + An HTML color value + + + + + + Cell background color + + + + + + + + + + + + Specifies float behavior for a sidebar + + Use the dbfo float-type PI to specify the float + behavior for a sidebar (to cause the sidebar to be + displayed as a marginal note). + + + dbfo float-type="margin.note" + + + + float-type="margin.note" + + Specifies that the sidebar should be + displayed as a marginal note. + + + + + + sidebar.float.type (parameter), + sidebar.float.width (parameter), + sidebar.properties (attribute-set), + sidebar.title.properties (attribute-set) + + + + A sidebar as + side float + + + + + + + + + + + + Specifies presentation style for a funcsynopsis + + Use the dbfo funcsynopsis-style PI as a child of + a funcsynopsis or anywhere within a funcsynopsis + to control the presentation style for output of all + funcprototype instances within that funcsynopsis. + + + dbfo funcsynopsis-style="kr"|"ansi" + + + + funcsynopsis-style="kr" + + Displays funcprototype output in K&R style + + + funcsynopsis-style="ansi" + + Displays funcprototype output in ANSI style + + + + + + funcsynopsis.style + + + + + + + + + + + + Specifies presentation style for a glossary + + Use the dbfo glossary-presentation PI as a child of + a glossary to control its presentation style. + + + dbfo glossary-presentation="list"|"blocks" + + + + glossary-presentation="list" + + Displays the glossary as a list + + + glossary-presentation="blocks" + + Displays the glossary as blocks + + + + + + glossary.as.blocks + + + Glossary + formatting in print + + + + + + + + + + + + Specifies presentation style for a glosslist + + Use the dbfo glosslist-presentation PI as a child of + a glosslist to control its presentation style. + + + dbfo glosslist-presentation="list"|"blocks" + + + + glosslist-presentation="list" + + Displays the glosslist as a list + + + glosslist-presentation="blocks" + + Displays the glosslist as blocks + + + + + + glosslist.as.blocks + + + Glossary + formatting in print + + + + + + + + + + + + Specifies the glossterm width for a glossary or + glosslist + + Use the dbfo glossterm-width PI as a child of a + glossary or glosslist to specify the + width for output of glossterm instances in the + output. + + + dbfo glossterm-width="width" + + + + glossterm-width="width" + + Specifies the glossterm width (including units) + + + + + + glossterm.width, + glossterm.separation + + + + Glossary + formatting in print + + + + + + + + + + + + Specifies “keep†behavior for a table, example, + figure, equation, procedure, or task + + Use the dbfo keep-together PI as a child of a + formal object (table, example, + figure, equation, procedure, or + task) to specify “keep†behavior (to allow the object to + “break†across a page). + The PI also works with informaltable, informalexample, + informalfigure and informalequation. + + + + + dbfo keep-together="auto"|"always" + + + + keep-together="auto" + + Enables the object to break across a page + + + keep-together="always" + + Prevents the object from breaking across a page (the + default stylesheet behavior) + + + + + + formal.object.properties + + + Keep-together processing instruction + + + + + + + + + + + + Specifies the label width for a qandaset, itemizedlist, orderedlist + or calloutlist + + Use the dbfo label-width PI as a child of a + qandaset, itemizedlist, orderedlist, + or calloutlist to specify the width of labels. + + + dbfo label-width="width" + + + + label-width="width" + + Specifies the label width (including units) + + + + + + Q and A formatting + + + + + + + + + + + + Specifies interval for line numbers in verbatims + + Use the dbfo linenumbering.everyNth PI as a child + of a “verbatim†element – programlisting, + screen, synopsis — to specify + the interval at which lines are numbered. + + + dbfo linenumbering.everyNth="N" + + + + linenumbering.everyNth="N" + + Specifies numbering interval; a number is output + before every Nth line + + + + + + linenumbering.everyNth + + + Line numbering + + + + + + + + + + + + Specifies separator text for line numbers in verbatims + + Use the dbfo linenumbering.separator PI as a child + of a “verbatim†element – programlisting, + screen, synopsis — to specify + the separator text output between the line numbers and content. + + + dbfo linenumbering.separator="text" + + + + linenumbering.separator="text" + + Specifies the text (zero or more characters) + + + + + + linenumbering.separator + + + Line numbering + + + + + + + + + + + + Specifies width for line numbers in verbatims + + Use the dbfo linenumbering.width PI as a child + of a “verbatim†element – programlisting, + screen, synopsis — to specify + the width set aside for line numbers. + + + dbfo linenumbering.width="width" + + + + linenumbering.width="width" + + Specifies the width (inluding units) + + + + + + linenumbering.width + + + Line numbering + + + + + + + + + + + + Specifies presentation style for a variablelist or + segmentedlist + + Use the dbfo list-presentation PI as a child of + a variablelist or segmentedlist to + control the presentation style for the list (to cause it, for + example, to be displayed as a table). + + + dbfo list-presentation="list"|"blocks"|"table" + + + + list-presentation="list" + + Displays the list as a list + + + list-presentation="blocks" + + (variablelist only) Displays the list as blocks + + + list-presentation="table" + + (segmentedlist only) Displays the list as a table + + + + + + + + variablelist.as.blocks + + + variablelist.as.table + + + + + Variable list formatting in print + + + + + + + + + + + + Specifies the width of a horizontal simplelist + + Use the dbfo list-width PI as a child of a + simplelist whose class + value is horizontal, to specify the width + of the simplelist. + + + dbfo list-width="width" + + + + list-width="width" + + Specifies the simplelist width (including units) + + + + + + + + + + + + + + + Specifies the orientation for a CALS table row or cell + + Use the dbfo orientation PI as a child of a CALS + table row or cell to specify the orientation + (rotation) for the row or cell. + + + dbfo orientation="0"|"90"|"180"|"270"|"-90"|"-180"|"-270" + + + + orientation="0"|"90"|"180"|"270"|"-90"|"-180"|"-270" + + Specifies the number of degrees by which the cell or + row is rotated + + + + + + + + + + + + + + + Specifies if an equation or example goes across full page width + + Use the dbfo pgwide PI as a child of an + equation or example to specify that the + content should rendered across the full width of the page. + + + dbfo pgwide="0"|"1" + + + + pgwide="0" + + If zero, the content is rendered across the current + text flow + + + pgwide="1" + + If 1 (or any non-zero value), the + content is rendered across the full width of the page + + + + + + pgwide.properties + + + + + + + + + + + + Specifies the width for a CALS table entry or + row + + Use the dbfo rotated-width PI as a child of + entry or row instance in a CALS table to specify the + width of that the entry or row; or + use it higher up in table to cause the width to be inherited + recursively down. + + + dbfo rotated-width="width" + + + + rotated-width="width" + + Specifies the width of a row or cell (including units) + + + + + + + + + + + + + + + Specifies the width of a sidebar + + Use the dbfo sidebar-width PI as a child of a + sidebar to specify the width of the sidebar. + + + dbfo sidebar-width="width" + + + + sidebar-width="width" + + Specifies the sidebar width (including units) + + + + + + sidebar.float.type parameter, + sidebar.float.width parameter, + sidebar.properties attribute-set, + sidebar.title.properties + + + + A sidebar as + side float + + + + + + + + + + + + (obsolete) Sets the starting number on an ordered list + + This PI is obsolete. The intent of + it was to provide a means for setting a specific starting + number for an ordered list. Instead of this PI, set a value + for the override attribute on the first + listitem in the list; that will have the same + effect as what this PI was intended for. + + + dbfo start="character" + + + + start="character" + + Specifies the character to use as the starting + number; use 0-9, a-z, A-Z, or lowercase or uppercase + Roman numerals + + + + + + List starting number + + + + + + + + + + + + Specifies the width for a CALS table or for revhistory + output + + Use the dbfo table-width PI as a child or + sibling of a CALS table, or as a child of an + informaltable, entrytbl, or + revhistory instance (which is rendered as a table + in output) to specify the width of the table in output. + + + dbfo table-width="width" + + + + table-width="width" + + Specifies the table width (including units or as a percentage) + + + + + + Table width + + + + + + + + + + + + Specifies the term width for a variablelist + + Use the dbfo term-width PI as a child of a + variablelist to specify the width for + term output. + + + dbfo term-width="width" + + + + term-width="width" + + Specifies the term width (including units) + + + + + + Variable list formatting in print + + + + + + + + + + + + Specifies whether a TOC should be generated for a qandaset + + Use the dbfo toc PI as a child of a + qandaset to specify whether a table of contents + (TOC) is generated for the qandaset. + + + dbfo toc="0"|"1" + + + + toc="0" + + If zero, no TOC is generated + + + toc="1" + + If 1 (or any non-zero value), + a TOC is generated + + + + + + Q and A list of questions, + Q and A formatting + + + + + + + + + + + + Specify a need for space (a kind of soft page break) + + A “need†is a request for space on a page. If the + requested space is not available, the page breaks and the + content that follows the need request appears on the next + page. If the requested space is available, then no page break + is inserted. + + + dbfo-need height="n" [space-before="n"] + + + + height="n" + + The amount of height needed (including units) + + + space-before="n" + + The amount of extra vertical space to add (including units) + + + + + + Soft page breaks + + + + + Specifies the height for a CALS table row + + Use the dbfo row-height PI as a child of a + row to specify the height of the row. + + + dbfo row-height="height" + + + + row-height="height" + + Specifies the row height (including units) + + + + + + Row height + + + + + + + + + + + + + + + + + + + + + + + + + 0pt + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + filename + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/fo/profile-docbook.xsl b/docbook-xsl-1.76.1/fo/profile-docbook.xsl new file mode 100644 index 0000000..3b9b9c1 --- /dev/null +++ b/docbook-xsl-1.76.1/fo/profile-docbook.xsl @@ -0,0 +1,289 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Element + + in namespace ' + + ' encountered + + in + + + , but no template matches. + + + + < + + > + + </ + + > + + + + + + +Note: namesp. cut : stripped namespace before processingNote: namesp. cut : processing stripped document + + + + + + + + + + + + + + + + + + ID ' + + ' not found in document. + + + + + ERROR: Document root element ($rootid= + + ) for FO output + must be one of the following elements: + + + + + + + + + + + + + + + + + + + + + ERROR: Document root element for FO output + must be one of the following elements: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + [could not find document title] + + + + + + false + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Making + + pages on + + paper ( + + x + + ) + + + + + + diff --git a/docbook-xsl-1.76.1/fo/ptc.xsl b/docbook-xsl-1.76.1/fo/ptc.xsl new file mode 100644 index 0000000..a8874d8 --- /dev/null +++ b/docbook-xsl-1.76.1/fo/ptc.xsl @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/fo/qandaset.xsl b/docbook-xsl-1.76.1/fo/qandaset.xsl new file mode 100644 index 0000000..cbf118a --- /dev/null +++ b/docbook-xsl-1.76.1/fo/qandaset.xsl @@ -0,0 +1,395 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2.5em + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + em * 0.50 + + + 5em + + + 4em + + + 3em + + 2.5em + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2.5em + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/fo/refentry.xsl b/docbook-xsl-1.76.1/fo/refentry.xsl new file mode 100644 index 0000000..1a35693 --- /dev/null +++ b/docbook-xsl-1.76.1/fo/refentry.xsl @@ -0,0 +1,638 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + page + + + + + + + + + + + + + + ( + + ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1em + + + + + + + + + + + , + + + + + + + + + em-dash + + + + + + + + + + + + + + + + : + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + false + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/fo/sections.xsl b/docbook-xsl-1.76.1/fo/sections.xsl new file mode 100644 index 0000000..4569f2d --- /dev/null +++ b/docbook-xsl-1.76.1/fo/sections.xsl @@ -0,0 +1,764 @@ + + + + + + + + + + + + + + + + + + + + 1 + 2 + 3 + 4 + 5 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + 2 + 3 + 4 + 5 + + + + + + + + + + + + + + + + + + + + 1 + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + false + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2 + + + + + + + + + + + + 2 + + + + + + 1 + 2 + 3 + 4 + 5 + + + + + + + + + 1 + 0 + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/fo/spaces.xsl b/docbook-xsl-1.76.1/fo/spaces.xsl new file mode 100644 index 0000000..d34c9cd --- /dev/null +++ b/docbook-xsl-1.76.1/fo/spaces.xsl @@ -0,0 +1,274 @@ + + + + + + + + + + + + + + + + + + + + + + + + +0.5em +1em +0.5em +1em +0.33em +0.25em +0.16em + + +0.2em +0.1em + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/fo/synop.xsl b/docbook-xsl-1.76.1/fo/synop.xsl new file mode 100644 index 0000000..92afc20 --- /dev/null +++ b/docbook-xsl-1.76.1/fo/synop.xsl @@ -0,0 +1,1007 @@ + + + +]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ( + + ) + +   + + + + + + + + + + + + + + + + + ( + + ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (void); + + + (); + + + + + + (...); + + + + + + + + + + + + ( + + + + + + + + + + + , + + + ); + + + + + + + + + + + + + + + , + + + + + + + ; + + + + + ( + + ) + + + + + + + + + + + + + + + + + + + + + + +java + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Unrecognized language on + + : + + + + + + + + + + + + &RE; + + + + + + + + + + extends + + + &RE;     + + + + implements + + + &RE;     + + + + throws + + +  {&RE; + + } + + + + + + + + + + + , + + + + + + + + + + + +   + + + + + + , + + + + + + + , + + + + + + + , + + + + + + +    + + ; + + + + + + +   + + + + +   + + + + + + + + + void  + + + + + + + + 0 + + ,&RE; + + +   + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ( + + + + ) + + &RE;    throws  + + + + + + + ; + + + + + + + + + + + : + + + &RE;     + + + + implements + + + &RE;     + + + + throws + + +  {&RE; + + } + + + + + + + + + + , + + + + + + + +   + + + + + + , + + + + + + + , + + + + + + + , + + + + + + +    + + ; + + + + + + +   + + + + +   + + + + + + + + + void  + + + + + + + + + , + + + + + + + + + + + + + + + + + + + + + + + + ( + + ) + + &RE;    throws  + + + + + + + ; + + + + + + + + + interface + + + : + + + &RE;     + + + + implements + + + &RE;     + + + + throws + + +  {&RE; + + } + + + + + + + + + + , + + + + + + + +   + + + + + + , + + + + + + + , + + + + + + + , + + + + + + +    + + ; + + + + + + +   + + + + +   + + + + + + + + + void  + + + + + + + + + , + + + + + + + + + + + + + + + + + + + + + + + + ( + + ) + + &RE;    raises( + + ) + + + + + + ; + + + + + + + + + package + + ;&RE; + + + @ISA = ( + + );&RE; + + + + + + + + + + + + + , + + + + + + + +   + + + + + + , + + + + + + + , + + + + + + + , + + + + + + +    + + ; + + + + + + +   + + + + +   + + + + + + + + + void  + + + + + + + + + , + + + + + + + + + + + + + + + sub + + + { ... }; + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/fo/table.xml b/docbook-xsl-1.76.1/fo/table.xml new file mode 100644 index 0000000..f29952a --- /dev/null +++ b/docbook-xsl-1.76.1/fo/table.xml @@ -0,0 +1,135 @@ + + + + + + Formatting Object Table Reference + + $Id: table.xsl 8814 2010-08-09 21:19:53Z bobstayton $ + + + + Introduction + +This is technical reference documentation for the FO + table-processing templates in the DocBook XSL Stylesheets. + + +This is not intended to be user documentation. It is + provided for developers writing customization layers for the + stylesheets. + + + + + +calc.column.width +Calculate an XSL FO table column width specification from a +CALS table column width specification. + + +<xsl:template name="calc.column.width"> +<xsl:param name="colwidth">1*</xsl:param> + ... +</xsl:template> + +Description + +CALS expresses table column widths in the following basic +forms: + + + + + + +99.99units, a fixed length specifier. + + + + +99.99, a fixed length specifier without any units. + + + + +99.99*, a relative length specifier. + + + + +99.99*+99.99units, a combination of both. + + + + + + +The CALS units are points (pt), picas (pi), centimeters (cm), +millimeters (mm), and inches (in). These are the same units as XSL, +except that XSL abbreviates picas "pc" instead of "pi". If a length +specifier has no units, the CALS default unit (pt) is assumed. + + + +Relative length specifiers are represented in XSL with the +proportional-column-width() function. + + + +Here are some examples: + + + + + + +"36pt" becomes "36pt" + + + + +"3pi" becomes "3pc" + + + + +"36" becomes "36pt" + + + + +"3*" becomes "proportional-column-width(3)" + + + + +"3*+2pi" becomes "proportional-column-width(3)+2pc" + + + + +"1*+2" becomes "proportional-column-width(1)+2pt" + + + + +Parameters + + +colwidth + + +The CALS column width specification. + + + + + +Returns + +The XSL column width specification. + + + + diff --git a/docbook-xsl-1.76.1/fo/table.xsl b/docbook-xsl-1.76.1/fo/table.xsl new file mode 100644 index 0000000..c9a60c9 --- /dev/null +++ b/docbook-xsl-1.76.1/fo/table.xsl @@ -0,0 +1,1681 @@ + + + + + + + + + + + Formatting Object Table Reference + + $Id: table.xsl 8814 2010-08-09 21:19:53Z bobstayton $ + + + + Introduction + This is technical reference documentation for the FO + table-processing templates in the DocBook XSL Stylesheets. + This is not intended to be user documentation. It is + provided for developers writing customization layers for the + stylesheets. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0pt + none + 0pt + 0pt + 0pt + 0pt + 0pt + 0pt + + + 0pt + none + 0pt + 0pt + 0pt + 0pt + 0pt + 0pt + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + before + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + + + + + + + + + + + + + + + always + + + + + + + + + + + + + + + + + + + + + + + + + + + + + all + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + none + none + none + + + + + + + + + + + + + + + + + + none + none + + + + + + + + + + + + + + + + + + none + none + none + + + + + + + + + + + + none + none + none + + + + + + + + + none + none + + + + none + + + + + + + + + none + none + + + + + + + + + + + + + + + + + + + + + none + none + none + none + + + + Impossible frame on table: + + + none + none + none + none + + + + + + + + + + + + + + + + + + + + + + + + + + Error: CALS tables must specify the number of columns. + + + + + + + + + + + + + + + + + + + + + + + + + fixed + + + + + + + + + + + + + + + + + + + + + No adjustColumnWidths function available. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + NOWIDTH + NOWIDTH + + + + + + + + + + + + + + + + + + NOWIDTH + NOWIDTH + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 100% + + + + 100% + + + auto + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Warning: overlapped row contains content! + + + + This row intentionally left blank + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + always + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +   + + + + + + fixed + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + before + center + after + + + Unexpected valign value: + + , center used. + + center + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + before + center + after + + + Unexpected valign value: + + , center used. + + center + + + + + + + + + + + + + + + + + + bold + + + + bold + + + + + + + + + + + + + + + + + + 1 + + + + + + + + + + + + + + : + + + + + + + + 0: + + + + + + + + + + + + + + + 0 + + : + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + + 1 + 1 + + + + + + + + + + + + + + + + + + + + + + + + + 1* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + + 1 + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Calculate an XSL FO table column width specification from a +CALS table column width specification. + + +CALS expresses table column widths in the following basic +forms: + + + +99.99units, a fixed length specifier. + + +99.99, a fixed length specifier without any units. + + +99.99*, a relative length specifier. + + +99.99*+99.99units, a combination of both. + + + +The CALS units are points (pt), picas (pi), centimeters (cm), +millimeters (mm), and inches (in). These are the same units as XSL, +except that XSL abbreviates picas "pc" instead of "pi". If a length +specifier has no units, the CALS default unit (pt) is assumed. + +Relative length specifiers are represented in XSL with the +proportional-column-width() function. + +Here are some examples: + + + +"36pt" becomes "36pt" + + +"3pi" becomes "3pc" + + +"36" becomes "36pt" + + +"3*" becomes "proportional-column-width(3)" + + +"3*+2pi" becomes "proportional-column-width(3)+2pc" + + +"1*+2" becomes "proportional-column-width(1)+2pt" + + + + + + +colwidth + +The CALS column width specification. + + + + + + +The XSL column width specification. + + + + + 1* + + + + + + + + + + + + proportional-column-width( + + + + + + 1.00 + + + ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + pc + pt + + + + + + + diff --git a/docbook-xsl-1.76.1/fo/task.xsl b/docbook-xsl-1.76.1/fo/task.xsl new file mode 100644 index 0000000..c864bc6 --- /dev/null +++ b/docbook-xsl-1.76.1/fo/task.xsl @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + before + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/fo/titlepage.templates.xml b/docbook-xsl-1.76.1/fo/titlepage.templates.xml new file mode 100644 index 0000000..e3434bc --- /dev/null +++ b/docbook-xsl-1.76.1/fo/titlepage.templates.xml @@ -0,0 +1,1354 @@ + + + + + + + + + + + + +]> + + + + + + + + + + + + + <subtitle/> + + <corpauthor space-before="0.5em" + font-size="&hsize2;"/> + <authorgroup space-before="0.5em" + font-size="&hsize2;"/> + <author space-before="0.5em" + font-size="&hsize2;"/> + + <!-- If you add editor, include this t:predicate attribute + because only the first editor generates the list of editors. + <editor t:predicate="[position() = 1]"/> + --> + <othercredit space-before="0.5em"/> + <releaseinfo space-before="0.5em"/> + <copyright space-before="0.5em"/> + <legalnotice text-align="start" + margin-left="0.5in" + margin-right="0.5in" + font-family="{$body.fontset}"/> + <pubdate space-before="0.5em"/> + <revision space-before="0.5em"/> + <revhistory space-before="0.5em"/> + <abstract space-before="0.5em" + text-align="start" + margin-left="0.5in" + margin-right="0.5in" + font-family="{$body.fontset}"/> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + </t:titlepage-content> + + <t:titlepage-separator> + </t:titlepage-separator> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + </t:titlepage-before> +</t:titlepage> + +<!-- ==================================================================== --> + +<t:titlepage t:element="set" t:wrapper="fo:block"> + <t:titlepage-content t:side="recto"> + <title + t:named-template="division.title" + param:node="ancestor-or-self::set[1]" + text-align="center" + font-size="&hsize5;" + space-before="&hsize5space;" + font-weight="bold" + font-family="{$title.fontset}"/> + <subtitle + font-family="{$title.fontset}" + text-align="center"/> + <corpauthor/> + <authorgroup/> + <author/> + <othercredit/> + <releaseinfo/> + <copyright/> + <legalnotice/> + <pubdate/> + <revision/> + <revhistory/> + <abstract/> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + </t:titlepage-content> + + <t:titlepage-separator> + </t:titlepage-separator> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + </t:titlepage-before> +</t:titlepage> + +<!-- ==================================================================== --> + + <t:titlepage t:element="book" t:wrapper="fo:block"> + <t:titlepage-content t:side="recto"> + <title + t:named-template="division.title" + param:node="ancestor-or-self::book[1]" + text-align="center" + font-size="&hsize5;" + space-before="&hsize5space;" + font-weight="bold" + font-family="{$title.fontset}"/> + <subtitle + text-align="center" + font-size="&hsize4;" + space-before="&hsize4space;" + font-family="{$title.fontset}"/> + <corpauthor font-size="&hsize3;" + keep-with-next.within-column="always" + space-before="2in"/> + <authorgroup space-before="2in"/> + <author font-size="&hsize3;" + space-before="&hsize2space;" + keep-with-next.within-column="always"/> + <!-- If you add editor, include this t:predicate attribute + because only the first editor generates the list of editors. + <editor t:predicate="[position() = 1]"/> + --> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + <title + t:named-template="book.verso.title" + font-size="&hsize2;" + font-weight="bold" + font-family="{$title.fontset}"/> + <corpauthor/> + <authorgroup t:named-template="verso.authorgroup"/> + <author/> + <!-- If you add editor, include this t:predicate attribute + because only the first editor generates the list of editors. + <editor t:predicate="[position() = 1]"/> + --> + <othercredit/> + <releaseinfo space-before="0.5em"/> + <pubdate space-before="1em"/> + <copyright/> + <abstract/> + <legalnotice font-size="8pt"/> + </t:titlepage-content> + + <t:titlepage-separator> + <fo:block break-after="page"/> + </t:titlepage-separator> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + <fo:block break-after="page"/> + </t:titlepage-before> +</t:titlepage> + +<!-- ==================================================================== --> + +<t:titlepage t:element="part" t:wrapper="fo:block"> + <t:titlepage-content t:side="recto"> + <title + t:named-template="division.title" + param:node="ancestor-or-self::part[1]" + text-align="center" + font-size="&hsize5;" + space-before="&hsize5space;" + font-weight="bold" + font-family="{$title.fontset}"/> + <subtitle + text-align="center" + font-size="&hsize4;" + space-before="&hsize4space;" + font-weight='bold' + font-style='italic' + font-family="{$title.fontset}"/> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + </t:titlepage-content> + + <t:titlepage-separator> + </t:titlepage-separator> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + </t:titlepage-before> +</t:titlepage> + +<t:titlepage t:element="partintro" t:wrapper="fo:block"> + <t:titlepage-content t:side="recto"> + <title + text-align="center" + font-size="&hsize5;" + font-weight="bold" + space-before="1em" + font-family="{$title.fontset}"/> + <subtitle + text-align="center" + font-size="&hsize2;" + font-weight="bold" + font-style="italic" + font-family="{$title.fontset}"/> + <corpauthor/> + <authorgroup/> + <author/> + <othercredit/> + <releaseinfo/> + <copyright/> + <legalnotice/> + <pubdate/> + <revision/> + <revhistory/> + <abstract/> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + </t:titlepage-content> + + <t:titlepage-separator> + </t:titlepage-separator> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + </t:titlepage-before> +</t:titlepage> + +<!-- ==================================================================== --> + +<t:titlepage t:element="reference" t:wrapper="fo:block"> + <t:titlepage-content t:side="recto"> + <title + t:named-template="division.title" + param:node="ancestor-or-self::reference[1]" + text-align="center" + font-size="&hsize5;" + space-before="&hsize5space;" + font-weight="bold" + font-family="{$title.fontset}"/> + <subtitle + font-family="{$title.fontset}" + text-align="center"/> + <corpauthor/> + <authorgroup/> + <author/> + <othercredit/> + <releaseinfo/> + <copyright/> + <legalnotice/> + <pubdate/> + <revision/> + <revhistory/> + <abstract/> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + </t:titlepage-content> + + <t:titlepage-separator> + </t:titlepage-separator> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + </t:titlepage-before> +</t:titlepage> + +<!-- ==================================================================== --> + +<t:titlepage t:element="refsynopsisdiv" t:wrapper="fo:block"> + <t:titlepage-content t:side="recto"> + <title + font-family="{$title.fontset}"/> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + </t:titlepage-content> + + <t:titlepage-separator> + </t:titlepage-separator> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + </t:titlepage-before> +</t:titlepage> + +<!-- ==================================================================== --> + +<t:titlepage t:element="refsection" t:wrapper="fo:block"> + <t:titlepage-content t:side="recto"> + <title + font-family="{$title.fontset}"/> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + </t:titlepage-content> + + <t:titlepage-separator> + </t:titlepage-separator> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + </t:titlepage-before> +</t:titlepage> + +<!-- ==================================================================== --> + +<t:titlepage t:element="refsect1" t:wrapper="fo:block"> + <t:titlepage-content t:side="recto"> + <title + font-family="{$title.fontset}"/> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + </t:titlepage-content> + + <t:titlepage-separator> + </t:titlepage-separator> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + </t:titlepage-before> +</t:titlepage> + +<!-- ==================================================================== --> + +<t:titlepage t:element="refsect2" t:wrapper="fo:block"> + <t:titlepage-content t:side="recto"> + <title + font-family="{$title.fontset}"/> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + </t:titlepage-content> + + <t:titlepage-separator> + </t:titlepage-separator> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + </t:titlepage-before> +</t:titlepage> + +<!-- ==================================================================== --> + +<t:titlepage t:element="refsect3" t:wrapper="fo:block"> + <t:titlepage-content t:side="recto"> + <title + font-family="{$title.fontset}"/> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + </t:titlepage-content> + + <t:titlepage-separator> + </t:titlepage-separator> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + </t:titlepage-before> +</t:titlepage> + +<!-- ==================================================================== --> + + <t:titlepage t:element="dedication" t:wrapper="fo:block"> + <t:titlepage-content t:side="recto"> + <title + t:force="1" + t:named-template="component.title" + param:node="ancestor-or-self::dedication[1]" + margin-left="{$title.margin.left}" + font-size="&hsize5;" + font-family="{$title.fontset}" + font-weight="bold"/> + <subtitle + font-family="{$title.fontset}"/> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + </t:titlepage-content> + + <t:titlepage-separator> + </t:titlepage-separator> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + </t:titlepage-before> +</t:titlepage> + +<!-- ==================================================================== --> + +<!-- Same formatting as dedication --> + <t:titlepage t:element="acknowledgements" t:wrapper="fo:block"> + <t:titlepage-content t:side="recto"> + <title + t:force="1" + t:named-template="component.title" + param:node="ancestor-or-self::acknowledgements[1]" + margin-left="{$title.margin.left}" + font-size="&hsize5;" + font-family="{$title.fontset}" + font-weight="bold"/> + <subtitle + font-family="{$title.fontset}"/> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + </t:titlepage-content> + + <t:titlepage-separator> + </t:titlepage-separator> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + </t:titlepage-before> +</t:titlepage> + + +<!-- ==================================================================== --> + + <t:titlepage t:element="preface" t:wrapper="fo:block"> + <t:titlepage-content t:side="recto"> + <title + t:force="1" + t:named-template="component.title" + param:node="ancestor-or-self::preface[1]" + margin-left="{$title.margin.left}" + font-size="&hsize5;" + font-family="{$title.fontset}" + font-weight="bold"/> + <subtitle + font-family="{$title.fontset}"/> + <corpauthor/> + <authorgroup/> + <author/> + <othercredit/> + <releaseinfo/> + <copyright/> + <legalnotice/> + <pubdate/> + <revision/> + <revhistory/> + <abstract/> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + </t:titlepage-content> + + <t:titlepage-separator> + </t:titlepage-separator> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + </t:titlepage-before> +</t:titlepage> + +<!-- ==================================================================== --> + + <t:titlepage t:element="chapter" t:wrapper="fo:block" + font-family="{$title.fontset}"> + <t:titlepage-content t:side="recto" margin-left="{$title.margin.left}"> + <title t:named-template="component.title" + param:node="ancestor-or-self::chapter[1]" + font-size="&hsize5;" + font-weight="bold"/> + + <subtitle space-before="0.5em" + font-style="italic" + font-size="&hsize2;" + font-weight="bold"/> + + <corpauthor space-before="0.5em" + space-after="0.5em" + font-size="&hsize2;"/> + + <authorgroup space-before="0.5em" + space-after="0.5em" + font-size="&hsize2;"/> + + <author space-before="0.5em" + space-after="0.5em" + font-size="&hsize2;"/> + + <othercredit/> + <releaseinfo/> + <copyright/> + <legalnotice/> + <pubdate/> + <revision/> + <revhistory/> + <abstract/> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + </t:titlepage-content> + + <t:titlepage-separator> + </t:titlepage-separator> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + </t:titlepage-before> +</t:titlepage> + +<!-- ==================================================================== --> + + <t:titlepage t:element="appendix" t:wrapper="fo:block"> + <t:titlepage-content t:side="recto"> + <title + t:named-template="component.title" + param:node="ancestor-or-self::appendix[1]" + margin-left="{$title.margin.left}" + font-size="&hsize5;" + font-weight="bold" + font-family="{$title.fontset}"/> + <subtitle + font-family="{$title.fontset}"/> + <corpauthor/> + <authorgroup/> + <author/> + <othercredit/> + <releaseinfo/> + <copyright/> + <legalnotice/> + <pubdate/> + <revision/> + <revhistory/> + <abstract/> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + </t:titlepage-content> + + <t:titlepage-separator> + </t:titlepage-separator> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + </t:titlepage-before> +</t:titlepage> + +<!-- ==================================================================== --> + +<t:titlepage t:element="section" t:wrapper="fo:block"> + <t:titlepage-content t:side="recto"> + <title + margin-left="{$title.margin.left}" + font-family="{$title.fontset}"/> + <subtitle + font-family="{$title.fontset}"/> + <corpauthor/> + <authorgroup/> + <author/> + <othercredit/> + <releaseinfo/> + <copyright/> + <legalnotice/> + <pubdate/> + <revision/> + <revhistory/> + <abstract/> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + </t:titlepage-content> + + <t:titlepage-separator> + </t:titlepage-separator> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + </t:titlepage-before> +</t:titlepage> + +<t:titlepage t:element="sect1" t:wrapper="fo:block"> + <t:titlepage-content t:side="recto"> + <title + margin-left="{$title.margin.left}" + font-family="{$title.fontset}"/> + <subtitle + font-family="{$title.fontset}"/> + <corpauthor/> + <authorgroup/> + <author/> + <othercredit/> + <releaseinfo/> + <copyright/> + <legalnotice/> + <pubdate/> + <revision/> + <revhistory/> + <abstract/> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + </t:titlepage-content> + + <t:titlepage-separator> + </t:titlepage-separator> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + </t:titlepage-before> +</t:titlepage> + +<t:titlepage t:element="sect2" t:wrapper="fo:block"> + <t:titlepage-content t:side="recto"> + <title + margin-left="{$title.margin.left}" + font-family="{$title.fontset}"/> + <subtitle + font-family="{$title.fontset}"/> + <corpauthor/> + <authorgroup/> + <author/> + <othercredit/> + <releaseinfo/> + <copyright/> + <legalnotice/> + <pubdate/> + <revision/> + <revhistory/> + <abstract/> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + </t:titlepage-content> + + <t:titlepage-separator> + </t:titlepage-separator> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + </t:titlepage-before> +</t:titlepage> + +<t:titlepage t:element="sect3" t:wrapper="fo:block"> + <t:titlepage-content t:side="recto"> + <title + margin-left="{$title.margin.left}" + font-family="{$title.fontset}"/> + <subtitle + font-family="{$title.fontset}"/> + <corpauthor/> + <authorgroup/> + <author/> + <othercredit/> + <releaseinfo/> + <copyright/> + <legalnotice/> + <pubdate/> + <revision/> + <revhistory/> + <abstract/> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + </t:titlepage-content> + + <t:titlepage-separator> + </t:titlepage-separator> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + </t:titlepage-before> +</t:titlepage> + +<t:titlepage t:element="sect4" t:wrapper="fo:block"> + <t:titlepage-content t:side="recto"> + <title + margin-left="{$title.margin.left}" + font-family="{$title.fontset}"/> + <subtitle + font-family="{$title.fontset}"/> + <corpauthor/> + <authorgroup/> + <author/> + <othercredit/> + <releaseinfo/> + <copyright/> + <legalnotice/> + <pubdate/> + <revision/> + <revhistory/> + <abstract/> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + </t:titlepage-content> + + <t:titlepage-separator> + </t:titlepage-separator> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + </t:titlepage-before> +</t:titlepage> + +<t:titlepage t:element="sect5" t:wrapper="fo:block"> + <t:titlepage-content t:side="recto"> + <title + margin-left="{$title.margin.left}" + font-family="{$title.fontset}"/> + <subtitle + font-family="{$title.fontset}"/> + <corpauthor/> + <authorgroup/> + <author/> + <othercredit/> + <releaseinfo/> + <copyright/> + <legalnotice/> + <pubdate/> + <revision/> + <revhistory/> + <abstract/> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + </t:titlepage-content> + + <t:titlepage-separator> + </t:titlepage-separator> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + </t:titlepage-before> +</t:titlepage> + +<t:titlepage t:element="simplesect" t:wrapper="fo:block"> + <t:titlepage-content t:side="recto"> + <title + margin-left="{$title.margin.left}" + font-family="{$title.fontset}"/> + <subtitle + font-family="{$title.fontset}"/> + <corpauthor/> + <authorgroup/> + <author/> + <othercredit/> + <releaseinfo/> + <copyright/> + <legalnotice/> + <pubdate/> + <revision/> + <revhistory/> + <abstract/> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + </t:titlepage-content> + + <t:titlepage-separator> + </t:titlepage-separator> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + </t:titlepage-before> +</t:titlepage> + +<!-- ==================================================================== --> + + <t:titlepage t:element="bibliography" t:wrapper="fo:block"> + <t:titlepage-content t:side="recto"> + <title + t:force="1" + t:named-template="component.title" + param:node="ancestor-or-self::bibliography[1]" + margin-left="{$title.margin.left}" + font-size="&hsize5;" + font-family="{$title.fontset}" + font-weight="bold"/> + <subtitle + font-family="{$title.fontset}"/> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + </t:titlepage-content> + + <t:titlepage-separator> + </t:titlepage-separator> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + </t:titlepage-before> + </t:titlepage> + +<!-- ==================================================================== --> + + <t:titlepage t:element="bibliodiv" t:wrapper="fo:block"> + <t:titlepage-content t:side="recto"> + <title t:named-template="component.title" + param:node="ancestor-or-self::bibliodiv[1]" + margin-left="{$title.margin.left}" + font-size="&hsize4;" + font-family="{$title.fontset}" + font-weight="bold"/> + <subtitle + font-family="{$title.fontset}"/> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + </t:titlepage-content> + + <t:titlepage-separator> + </t:titlepage-separator> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + </t:titlepage-before> + </t:titlepage> + +<!-- ==================================================================== --> + + <t:titlepage t:element="glossary" t:wrapper="fo:block"> + <t:titlepage-content t:side="recto"> + <title + t:force="1" + t:named-template="component.title" + param:node="ancestor-or-self::glossary[1]" + margin-left="{$title.margin.left}" + font-size="&hsize5;" + font-family="{$title.fontset}" + font-weight="bold"/> + <subtitle + font-family="{$title.fontset}"/> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + </t:titlepage-content> + + <t:titlepage-separator> + </t:titlepage-separator> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + </t:titlepage-before> + </t:titlepage> + +<!-- ==================================================================== --> + + <t:titlepage t:element="glossdiv" t:wrapper="fo:block"> + <t:titlepage-content t:side="recto"> + <title t:named-template="component.title" + param:node="ancestor-or-self::glossdiv[1]" + margin-left="{$title.margin.left}" + font-size="&hsize4;" + font-family="{$title.fontset}" + font-weight="bold"/> + <subtitle + font-family="{$title.fontset}"/> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + </t:titlepage-content> + + <t:titlepage-separator> + </t:titlepage-separator> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + </t:titlepage-before> + </t:titlepage> + +<!-- ==================================================================== --> + + <t:titlepage t:element="index" t:wrapper="fo:block"> + <t:titlepage-content t:side="recto"> + <title + t:force="1" + t:named-template="component.title" + param:node="ancestor-or-self::index[1]" + param:pagewide="1" + margin-left="0pt" + font-size="&hsize5;" + font-family="{$title.fontset}" + font-weight="bold"/> + <subtitle + font-family="{$title.fontset}"/> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + </t:titlepage-content> + + <t:titlepage-separator> + </t:titlepage-separator> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + </t:titlepage-before> + </t:titlepage> + +<!-- ==================================================================== --> + + <!-- The indexdiv.title template is used so that manual and --> + <!-- automatically generated indexdiv titles get the same --> + <!-- formatting. --> + + <t:titlepage t:element="indexdiv" t:wrapper="fo:block"> + <t:titlepage-content t:side="recto"> + <title t:force="1" + t:named-template="indexdiv.title" + param:title="title"/> + <subtitle + font-family="{$title.fontset}"/> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + </t:titlepage-content> + + <t:titlepage-separator> + </t:titlepage-separator> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + </t:titlepage-before> + </t:titlepage> + +<!-- ==================================================================== --> + + <t:titlepage t:element="setindex" t:wrapper="fo:block"> + <t:titlepage-content t:side="recto"> + <title + t:force="1" + t:named-template="component.title" + param:node="ancestor-or-self::setindex[1]" + param:pagewide="1" + margin-left="0pt" + font-size="&hsize5;" + font-family="{$title.fontset}" + font-weight="bold"/> + <subtitle + font-family="{$title.fontset}"/> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + </t:titlepage-content> + + <t:titlepage-separator> + </t:titlepage-separator> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + </t:titlepage-before> + </t:titlepage> + +<!-- ==================================================================== --> + + <t:titlepage t:element="colophon" t:wrapper="fo:block"> + <t:titlepage-content t:side="recto"> + <title + t:force="1" + t:named-template="component.title" + param:node="ancestor-or-self::colophon[1]" + margin-left="{$title.margin.left}" + font-size="&hsize5;" + font-family="{$title.fontset}" + font-weight="bold"/> + <subtitle + font-family="{$title.fontset}"/> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + </t:titlepage-content> + + <t:titlepage-separator> + </t:titlepage-separator> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + </t:titlepage-before> +</t:titlepage> + +<!-- ==================================================================== --> + + <t:titlepage t:element="sidebar" t:wrapper="fo:block"> + <t:titlepage-content t:side="recto"> + <title + font-family="{$title.fontset}" + font-weight="bold"/> + <subtitle + font-family="{$title.fontset}"/> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + </t:titlepage-content> + + <t:titlepage-separator> + </t:titlepage-separator> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + </t:titlepage-before> + </t:titlepage> + +<!-- ==================================================================== --> +<t:titlepage t:element="qandaset" t:wrapper="fo:block" + font-family="{$title.fontset}"> + + <t:titlepage-content t:side="recto" + start-indent="0pt" + text-align="center"> + + <title t:named-template="component.title" + param:node="ancestor-or-self::qandaset[1]" + keep-with-next.within-column="always" + font-size="&hsize5;" + font-weight="bold"/> + + <subtitle/> + + <corpauthor space-before="0.5em" + font-size="&hsize2;"/> + <authorgroup space-before="0.5em" + font-size="&hsize2;"/> + <author space-before="0.5em" + font-size="&hsize2;"/> + + <othercredit space-before="0.5em"/> + <releaseinfo space-before="0.5em"/> + <copyright space-before="0.5em"/> + <legalnotice text-align="start" + margin-left="0.5in" + margin-right="0.5in" + font-family="{$body.fontset}"/> + <pubdate space-before="0.5em"/> + <revision space-before="0.5em"/> + <revhistory space-before="0.5em"/> + <abstract space-before="0.5em" + text-align="start" + margin-left="0.5in" + margin-right="0.5in" + font-family="{$body.fontset}"/> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + </t:titlepage-content> + + <t:titlepage-separator> + </t:titlepage-separator> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + </t:titlepage-before> +</t:titlepage> + +<!-- ==================================================================== --> + + <t:titlepage t:element="table.of.contents" t:wrapper="fo:block"> + <t:titlepage-content t:side="recto"> + <title + t:force="1" + t:named-template="gentext" + param:key="'TableofContents'" + space-before.minimum="1em" + space-before.optimum="1.5em" + space-before.maximum="2em" + space-after="0.5em" + margin-left="{$title.margin.left}" + start-indent="0pt" + font-size="&hsize3;" + font-weight="bold" + font-family="{$title.fontset}"/> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + </t:titlepage-content> + + <t:titlepage-separator> + </t:titlepage-separator> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + </t:titlepage-before> + </t:titlepage> + + <t:titlepage t:element="list.of.tables" t:wrapper="fo:block"> + <t:titlepage-content t:side="recto"> + <title + t:force="1" + t:named-template="gentext" + param:key="'ListofTables'" + space-before.minimum="1em" + space-before.optimum="1.5em" + space-before.maximum="2em" + space-after="0.5em" + margin-left="{$title.margin.left}" + start-indent="0pt" + font-size="&hsize3;" + font-weight="bold" + font-family="{$title.fontset}"/> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + </t:titlepage-content> + + <t:titlepage-separator> + </t:titlepage-separator> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + </t:titlepage-before> + </t:titlepage> + + <t:titlepage t:element="list.of.figures" t:wrapper="fo:block"> + <t:titlepage-content t:side="recto"> + <title + t:force="1" + t:named-template="gentext" + param:key="'ListofFigures'" + space-before.minimum="1em" + space-before.optimum="1.5em" + space-before.maximum="2em" + space-after="0.5em" + margin-left="{$title.margin.left}" + start-indent="0pt" + font-size="&hsize3;" + font-weight="bold" + font-family="{$title.fontset}"/> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + </t:titlepage-content> + + <t:titlepage-separator> + </t:titlepage-separator> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + </t:titlepage-before> + </t:titlepage> + + <t:titlepage t:element="list.of.examples" t:wrapper="fo:block"> + <t:titlepage-content t:side="recto"> + <title + t:force="1" + t:named-template="gentext" + param:key="'ListofExamples'" + space-before.minimum="1em" + space-before.optimum="1.5em" + space-before.maximum="2em" + space-after="0.5em" + margin-left="{$title.margin.left}" + start-indent="0pt" + font-size="&hsize3;" + font-weight="bold" + font-family="{$title.fontset}"/> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + </t:titlepage-content> + + <t:titlepage-separator> + </t:titlepage-separator> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + </t:titlepage-before> + </t:titlepage> + + <t:titlepage t:element="list.of.equations" t:wrapper="fo:block"> + <t:titlepage-content t:side="recto"> + <title + t:force="1" + t:named-template="gentext" + param:key="'ListofEquations'" + space-before.minimum="1em" + space-before.optimum="1.5em" + space-before.maximum="2em" + space-after="0.5em" + margin-left="{$title.margin.left}" + start-indent="0pt" + font-size="&hsize3;" + font-weight="bold" + font-family="{$title.fontset}"/> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + </t:titlepage-content> + + <t:titlepage-separator> + </t:titlepage-separator> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + </t:titlepage-before> + </t:titlepage> + + <t:titlepage t:element="list.of.procedures" t:wrapper="fo:block"> + <t:titlepage-content t:side="recto"> + <title + t:force="1" + t:named-template="gentext" + param:key="'ListofProcedures'" + space-before.minimum="1em" + space-before.optimum="1.5em" + space-before.maximum="2em" + space-after="0.5em" + margin-left="{$title.margin.left}" + start-indent="0pt" + font-size="&hsize3;" + font-weight="bold" + font-family="{$title.fontset}"/> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + </t:titlepage-content> + + <t:titlepage-separator> + </t:titlepage-separator> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + </t:titlepage-before> + </t:titlepage> + + <t:titlepage t:element="list.of.unknowns" t:wrapper="fo:block"> + <t:titlepage-content t:side="recto"> + <title + t:force="1" + t:named-template="gentext" + param:key="'ListofUnknown'" + space-before.minimum="1em" + space-before.optimum="1.5em" + space-before.maximum="2em" + space-after="0.5em" + margin-left="{$title.margin.left}" + start-indent="0pt" + font-size="&hsize3;" + font-weight="bold" + font-family="{$title.fontset}"/> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + </t:titlepage-content> + + <t:titlepage-separator> + </t:titlepage-separator> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + </t:titlepage-before> + </t:titlepage> + +<!-- ==================================================================== --> + +</t:templates> diff --git a/docbook-xsl-1.76.1/fo/titlepage.templates.xsl b/docbook-xsl-1.76.1/fo/titlepage.templates.xsl new file mode 100644 index 0000000..0b9cafa --- /dev/null +++ b/docbook-xsl-1.76.1/fo/titlepage.templates.xsl @@ -0,0 +1,5182 @@ +<?xml version="1.0"?> + +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:exsl="http://exslt.org/common" version="1.0" exclude-result-prefixes="exsl"> + +<!-- This stylesheet was created by template/titlepage.xsl--> + +<xsl:template name="article.titlepage.recto"> + <xsl:choose> + <xsl:when test="articleinfo/title"> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="articleinfo/title"/> + </xsl:when> + <xsl:when test="artheader/title"> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="artheader/title"/> + </xsl:when> + <xsl:when test="info/title"> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="info/title"/> + </xsl:when> + <xsl:when test="title"> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="title"/> + </xsl:when> + </xsl:choose> + + <xsl:choose> + <xsl:when test="articleinfo/subtitle"> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="articleinfo/subtitle"/> + </xsl:when> + <xsl:when test="artheader/subtitle"> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="artheader/subtitle"/> + </xsl:when> + <xsl:when test="info/subtitle"> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="info/subtitle"/> + </xsl:when> + <xsl:when test="subtitle"> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="subtitle"/> + </xsl:when> + </xsl:choose> + + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="articleinfo/corpauthor"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="artheader/corpauthor"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="info/corpauthor"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="articleinfo/authorgroup"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="artheader/authorgroup"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="info/authorgroup"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="articleinfo/author"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="artheader/author"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="info/author"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="articleinfo/othercredit"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="artheader/othercredit"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="info/othercredit"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="articleinfo/releaseinfo"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="artheader/releaseinfo"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="info/releaseinfo"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="articleinfo/copyright"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="artheader/copyright"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="info/copyright"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="articleinfo/legalnotice"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="artheader/legalnotice"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="info/legalnotice"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="articleinfo/pubdate"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="artheader/pubdate"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="info/pubdate"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="articleinfo/revision"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="artheader/revision"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="info/revision"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="articleinfo/revhistory"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="artheader/revhistory"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="info/revhistory"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="articleinfo/abstract"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="artheader/abstract"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="info/abstract"/> +</xsl:template> + +<xsl:template name="article.titlepage.verso"> +</xsl:template> + +<xsl:template name="article.titlepage.separator"> +</xsl:template> + +<xsl:template name="article.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="article.titlepage.before.verso"> +</xsl:template> + +<xsl:template name="article.titlepage"> + <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" font-family="{$title.fontset}"> + <xsl:variable name="recto.content"> + <xsl:call-template name="article.titlepage.before.recto"/> + <xsl:call-template name="article.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <fo:block start-indent="0pt" text-align="center"><xsl:copy-of select="$recto.content"/></fo:block> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="article.titlepage.before.verso"/> + <xsl:call-template name="article.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <fo:block><xsl:copy-of select="$verso.content"/></fo:block> + </xsl:if> + <xsl:call-template name="article.titlepage.separator"/> + </fo:block> +</xsl:template> + +<xsl:template match="*" mode="article.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="article.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="title" mode="article.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="article.titlepage.recto.style" keep-with-next.within-column="always" font-size="24.8832pt" font-weight="bold"> +<xsl:call-template name="component.title"> +<xsl:with-param name="node" select="ancestor-or-self::article[1]"/> +</xsl:call-template> +</fo:block> +</xsl:template> + +<xsl:template match="subtitle" mode="article.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="article.titlepage.recto.style"> +<xsl:apply-templates select="." mode="article.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="corpauthor" mode="article.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="article.titlepage.recto.style" space-before="0.5em" font-size="14.4pt"> +<xsl:apply-templates select="." mode="article.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="authorgroup" mode="article.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="article.titlepage.recto.style" space-before="0.5em" font-size="14.4pt"> +<xsl:apply-templates select="." mode="article.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="author" mode="article.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="article.titlepage.recto.style" space-before="0.5em" font-size="14.4pt"> +<xsl:apply-templates select="." mode="article.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="othercredit" mode="article.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="article.titlepage.recto.style" space-before="0.5em"> +<xsl:apply-templates select="." mode="article.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="releaseinfo" mode="article.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="article.titlepage.recto.style" space-before="0.5em"> +<xsl:apply-templates select="." mode="article.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="copyright" mode="article.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="article.titlepage.recto.style" space-before="0.5em"> +<xsl:apply-templates select="." mode="article.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="legalnotice" mode="article.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="article.titlepage.recto.style" text-align="start" margin-left="0.5in" margin-right="0.5in" font-family="{$body.fontset}"> +<xsl:apply-templates select="." mode="article.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="pubdate" mode="article.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="article.titlepage.recto.style" space-before="0.5em"> +<xsl:apply-templates select="." mode="article.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="revision" mode="article.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="article.titlepage.recto.style" space-before="0.5em"> +<xsl:apply-templates select="." mode="article.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="revhistory" mode="article.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="article.titlepage.recto.style" space-before="0.5em"> +<xsl:apply-templates select="." mode="article.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="abstract" mode="article.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="article.titlepage.recto.style" space-before="0.5em" text-align="start" margin-left="0.5in" margin-right="0.5in" font-family="{$body.fontset}"> +<xsl:apply-templates select="." mode="article.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template name="set.titlepage.recto"> + <xsl:choose> + <xsl:when test="setinfo/title"> + <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="setinfo/title"/> + </xsl:when> + <xsl:when test="info/title"> + <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="info/title"/> + </xsl:when> + <xsl:when test="title"> + <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="title"/> + </xsl:when> + </xsl:choose> + + <xsl:choose> + <xsl:when test="setinfo/subtitle"> + <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="setinfo/subtitle"/> + </xsl:when> + <xsl:when test="info/subtitle"> + <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="info/subtitle"/> + </xsl:when> + <xsl:when test="subtitle"> + <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="subtitle"/> + </xsl:when> + </xsl:choose> + + <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="setinfo/corpauthor"/> + <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="info/corpauthor"/> + <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="setinfo/authorgroup"/> + <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="info/authorgroup"/> + <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="setinfo/author"/> + <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="info/author"/> + <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="setinfo/othercredit"/> + <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="info/othercredit"/> + <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="setinfo/releaseinfo"/> + <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="info/releaseinfo"/> + <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="setinfo/copyright"/> + <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="info/copyright"/> + <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="setinfo/legalnotice"/> + <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="info/legalnotice"/> + <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="setinfo/pubdate"/> + <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="info/pubdate"/> + <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="setinfo/revision"/> + <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="info/revision"/> + <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="setinfo/revhistory"/> + <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="info/revhistory"/> + <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="setinfo/abstract"/> + <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="info/abstract"/> +</xsl:template> + +<xsl:template name="set.titlepage.verso"> +</xsl:template> + +<xsl:template name="set.titlepage.separator"> +</xsl:template> + +<xsl:template name="set.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="set.titlepage.before.verso"> +</xsl:template> + +<xsl:template name="set.titlepage"> + <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> + <xsl:variable name="recto.content"> + <xsl:call-template name="set.titlepage.before.recto"/> + <xsl:call-template name="set.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <fo:block><xsl:copy-of select="$recto.content"/></fo:block> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="set.titlepage.before.verso"/> + <xsl:call-template name="set.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <fo:block><xsl:copy-of select="$verso.content"/></fo:block> + </xsl:if> + <xsl:call-template name="set.titlepage.separator"/> + </fo:block> +</xsl:template> + +<xsl:template match="*" mode="set.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="set.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="title" mode="set.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="set.titlepage.recto.style" text-align="center" font-size="24.8832pt" space-before="18.6624pt" font-weight="bold" font-family="{$title.fontset}"> +<xsl:call-template name="division.title"> +<xsl:with-param name="node" select="ancestor-or-self::set[1]"/> +</xsl:call-template> +</fo:block> +</xsl:template> + +<xsl:template match="subtitle" mode="set.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="set.titlepage.recto.style" font-family="{$title.fontset}" text-align="center"> +<xsl:apply-templates select="." mode="set.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="corpauthor" mode="set.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="set.titlepage.recto.style"> +<xsl:apply-templates select="." mode="set.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="authorgroup" mode="set.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="set.titlepage.recto.style"> +<xsl:apply-templates select="." mode="set.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="author" mode="set.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="set.titlepage.recto.style"> +<xsl:apply-templates select="." mode="set.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="othercredit" mode="set.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="set.titlepage.recto.style"> +<xsl:apply-templates select="." mode="set.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="releaseinfo" mode="set.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="set.titlepage.recto.style"> +<xsl:apply-templates select="." mode="set.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="copyright" mode="set.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="set.titlepage.recto.style"> +<xsl:apply-templates select="." mode="set.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="legalnotice" mode="set.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="set.titlepage.recto.style"> +<xsl:apply-templates select="." mode="set.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="pubdate" mode="set.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="set.titlepage.recto.style"> +<xsl:apply-templates select="." mode="set.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="revision" mode="set.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="set.titlepage.recto.style"> +<xsl:apply-templates select="." mode="set.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="revhistory" mode="set.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="set.titlepage.recto.style"> +<xsl:apply-templates select="." mode="set.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="abstract" mode="set.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="set.titlepage.recto.style"> +<xsl:apply-templates select="." mode="set.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template name="book.titlepage.recto"> + <xsl:choose> + <xsl:when test="bookinfo/title"> + <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/title"/> + </xsl:when> + <xsl:when test="info/title"> + <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/title"/> + </xsl:when> + <xsl:when test="title"> + <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="title"/> + </xsl:when> + </xsl:choose> + + <xsl:choose> + <xsl:when test="bookinfo/subtitle"> + <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/subtitle"/> + </xsl:when> + <xsl:when test="info/subtitle"> + <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/subtitle"/> + </xsl:when> + <xsl:when test="subtitle"> + <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="subtitle"/> + </xsl:when> + </xsl:choose> + + <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/corpauthor"/> + <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/corpauthor"/> + <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/authorgroup"/> + <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/authorgroup"/> + <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/author"/> + <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/author"/> +</xsl:template> + +<xsl:template name="book.titlepage.verso"> + <xsl:choose> + <xsl:when test="bookinfo/title"> + <xsl:apply-templates mode="book.titlepage.verso.auto.mode" select="bookinfo/title"/> + </xsl:when> + <xsl:when test="info/title"> + <xsl:apply-templates mode="book.titlepage.verso.auto.mode" select="info/title"/> + </xsl:when> + <xsl:when test="title"> + <xsl:apply-templates mode="book.titlepage.verso.auto.mode" select="title"/> + </xsl:when> + </xsl:choose> + + <xsl:apply-templates mode="book.titlepage.verso.auto.mode" select="bookinfo/corpauthor"/> + <xsl:apply-templates mode="book.titlepage.verso.auto.mode" select="info/corpauthor"/> + <xsl:apply-templates mode="book.titlepage.verso.auto.mode" select="bookinfo/authorgroup"/> + <xsl:apply-templates mode="book.titlepage.verso.auto.mode" select="info/authorgroup"/> + <xsl:apply-templates mode="book.titlepage.verso.auto.mode" select="bookinfo/author"/> + <xsl:apply-templates mode="book.titlepage.verso.auto.mode" select="info/author"/> + <xsl:apply-templates mode="book.titlepage.verso.auto.mode" select="bookinfo/othercredit"/> + <xsl:apply-templates mode="book.titlepage.verso.auto.mode" select="info/othercredit"/> + <xsl:apply-templates mode="book.titlepage.verso.auto.mode" select="bookinfo/releaseinfo"/> + <xsl:apply-templates mode="book.titlepage.verso.auto.mode" select="info/releaseinfo"/> + <xsl:apply-templates mode="book.titlepage.verso.auto.mode" select="bookinfo/pubdate"/> + <xsl:apply-templates mode="book.titlepage.verso.auto.mode" select="info/pubdate"/> + <xsl:apply-templates mode="book.titlepage.verso.auto.mode" select="bookinfo/copyright"/> + <xsl:apply-templates mode="book.titlepage.verso.auto.mode" select="info/copyright"/> + <xsl:apply-templates mode="book.titlepage.verso.auto.mode" select="bookinfo/abstract"/> + <xsl:apply-templates mode="book.titlepage.verso.auto.mode" select="info/abstract"/> + <xsl:apply-templates mode="book.titlepage.verso.auto.mode" select="bookinfo/legalnotice"/> + <xsl:apply-templates mode="book.titlepage.verso.auto.mode" select="info/legalnotice"/> +</xsl:template> + +<xsl:template name="book.titlepage.separator"><fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" break-after="page"/> +</xsl:template> + +<xsl:template name="book.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="book.titlepage.before.verso"><fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" break-after="page"/> +</xsl:template> + +<xsl:template name="book.titlepage"> + <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> + <xsl:variable name="recto.content"> + <xsl:call-template name="book.titlepage.before.recto"/> + <xsl:call-template name="book.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <fo:block><xsl:copy-of select="$recto.content"/></fo:block> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="book.titlepage.before.verso"/> + <xsl:call-template name="book.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <fo:block><xsl:copy-of select="$verso.content"/></fo:block> + </xsl:if> + <xsl:call-template name="book.titlepage.separator"/> + </fo:block> +</xsl:template> + +<xsl:template match="*" mode="book.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="book.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="title" mode="book.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="book.titlepage.recto.style" text-align="center" font-size="24.8832pt" space-before="18.6624pt" font-weight="bold" font-family="{$title.fontset}"> +<xsl:call-template name="division.title"> +<xsl:with-param name="node" select="ancestor-or-self::book[1]"/> +</xsl:call-template> +</fo:block> +</xsl:template> + +<xsl:template match="subtitle" mode="book.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="book.titlepage.recto.style" text-align="center" font-size="20.736pt" space-before="15.552pt" font-family="{$title.fontset}"> +<xsl:apply-templates select="." mode="book.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="corpauthor" mode="book.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="book.titlepage.recto.style" font-size="17.28pt" keep-with-next.within-column="always" space-before="2in"> +<xsl:apply-templates select="." mode="book.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="authorgroup" mode="book.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="book.titlepage.recto.style" space-before="2in"> +<xsl:apply-templates select="." mode="book.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="author" mode="book.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="book.titlepage.recto.style" font-size="17.28pt" space-before="10.8pt" keep-with-next.within-column="always"> +<xsl:apply-templates select="." mode="book.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="title" mode="book.titlepage.verso.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="book.titlepage.verso.style" font-size="14.4pt" font-weight="bold" font-family="{$title.fontset}"> +<xsl:call-template name="book.verso.title"> +</xsl:call-template> +</fo:block> +</xsl:template> + +<xsl:template match="corpauthor" mode="book.titlepage.verso.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="book.titlepage.verso.style"> +<xsl:apply-templates select="." mode="book.titlepage.verso.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="authorgroup" mode="book.titlepage.verso.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="book.titlepage.verso.style"> +<xsl:call-template name="verso.authorgroup"> +</xsl:call-template> +</fo:block> +</xsl:template> + +<xsl:template match="author" mode="book.titlepage.verso.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="book.titlepage.verso.style"> +<xsl:apply-templates select="." mode="book.titlepage.verso.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="othercredit" mode="book.titlepage.verso.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="book.titlepage.verso.style"> +<xsl:apply-templates select="." mode="book.titlepage.verso.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="releaseinfo" mode="book.titlepage.verso.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="book.titlepage.verso.style" space-before="0.5em"> +<xsl:apply-templates select="." mode="book.titlepage.verso.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="pubdate" mode="book.titlepage.verso.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="book.titlepage.verso.style" space-before="1em"> +<xsl:apply-templates select="." mode="book.titlepage.verso.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="copyright" mode="book.titlepage.verso.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="book.titlepage.verso.style"> +<xsl:apply-templates select="." mode="book.titlepage.verso.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="abstract" mode="book.titlepage.verso.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="book.titlepage.verso.style"> +<xsl:apply-templates select="." mode="book.titlepage.verso.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="legalnotice" mode="book.titlepage.verso.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="book.titlepage.verso.style" font-size="8pt"> +<xsl:apply-templates select="." mode="book.titlepage.verso.mode"/> +</fo:block> +</xsl:template> + +<xsl:template name="part.titlepage.recto"> + <xsl:choose> + <xsl:when test="partinfo/title"> + <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="partinfo/title"/> + </xsl:when> + <xsl:when test="docinfo/title"> + <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="docinfo/title"/> + </xsl:when> + <xsl:when test="info/title"> + <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="info/title"/> + </xsl:when> + <xsl:when test="title"> + <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="title"/> + </xsl:when> + </xsl:choose> + + <xsl:choose> + <xsl:when test="partinfo/subtitle"> + <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="partinfo/subtitle"/> + </xsl:when> + <xsl:when test="docinfo/subtitle"> + <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="docinfo/subtitle"/> + </xsl:when> + <xsl:when test="info/subtitle"> + <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="info/subtitle"/> + </xsl:when> + <xsl:when test="subtitle"> + <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="subtitle"/> + </xsl:when> + </xsl:choose> + +</xsl:template> + +<xsl:template name="part.titlepage.verso"> +</xsl:template> + +<xsl:template name="part.titlepage.separator"> +</xsl:template> + +<xsl:template name="part.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="part.titlepage.before.verso"> +</xsl:template> + +<xsl:template name="part.titlepage"> + <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> + <xsl:variable name="recto.content"> + <xsl:call-template name="part.titlepage.before.recto"/> + <xsl:call-template name="part.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <fo:block><xsl:copy-of select="$recto.content"/></fo:block> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="part.titlepage.before.verso"/> + <xsl:call-template name="part.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <fo:block><xsl:copy-of select="$verso.content"/></fo:block> + </xsl:if> + <xsl:call-template name="part.titlepage.separator"/> + </fo:block> +</xsl:template> + +<xsl:template match="*" mode="part.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="part.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="title" mode="part.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="part.titlepage.recto.style" text-align="center" font-size="24.8832pt" space-before="18.6624pt" font-weight="bold" font-family="{$title.fontset}"> +<xsl:call-template name="division.title"> +<xsl:with-param name="node" select="ancestor-or-self::part[1]"/> +</xsl:call-template> +</fo:block> +</xsl:template> + +<xsl:template match="subtitle" mode="part.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="part.titlepage.recto.style" text-align="center" font-size="20.736pt" space-before="15.552pt" font-weight="bold" font-style="italic" font-family="{$title.fontset}"> +<xsl:apply-templates select="." mode="part.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template name="partintro.titlepage.recto"> + <xsl:choose> + <xsl:when test="partintroinfo/title"> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="partintroinfo/title"/> + </xsl:when> + <xsl:when test="docinfo/title"> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="docinfo/title"/> + </xsl:when> + <xsl:when test="info/title"> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="info/title"/> + </xsl:when> + <xsl:when test="title"> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="title"/> + </xsl:when> + </xsl:choose> + + <xsl:choose> + <xsl:when test="partintroinfo/subtitle"> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="partintroinfo/subtitle"/> + </xsl:when> + <xsl:when test="docinfo/subtitle"> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="docinfo/subtitle"/> + </xsl:when> + <xsl:when test="info/subtitle"> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="info/subtitle"/> + </xsl:when> + <xsl:when test="subtitle"> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="subtitle"/> + </xsl:when> + </xsl:choose> + + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="partintroinfo/corpauthor"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="docinfo/corpauthor"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="info/corpauthor"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="partintroinfo/authorgroup"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="docinfo/authorgroup"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="info/authorgroup"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="partintroinfo/author"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="docinfo/author"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="info/author"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="partintroinfo/othercredit"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="docinfo/othercredit"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="info/othercredit"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="partintroinfo/releaseinfo"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="docinfo/releaseinfo"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="info/releaseinfo"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="partintroinfo/copyright"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="docinfo/copyright"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="info/copyright"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="partintroinfo/legalnotice"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="docinfo/legalnotice"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="info/legalnotice"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="partintroinfo/pubdate"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="docinfo/pubdate"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="info/pubdate"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="partintroinfo/revision"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="docinfo/revision"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="info/revision"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="partintroinfo/revhistory"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="docinfo/revhistory"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="info/revhistory"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="partintroinfo/abstract"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="docinfo/abstract"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="info/abstract"/> +</xsl:template> + +<xsl:template name="partintro.titlepage.verso"> +</xsl:template> + +<xsl:template name="partintro.titlepage.separator"> +</xsl:template> + +<xsl:template name="partintro.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="partintro.titlepage.before.verso"> +</xsl:template> + +<xsl:template name="partintro.titlepage"> + <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> + <xsl:variable name="recto.content"> + <xsl:call-template name="partintro.titlepage.before.recto"/> + <xsl:call-template name="partintro.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <fo:block><xsl:copy-of select="$recto.content"/></fo:block> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="partintro.titlepage.before.verso"/> + <xsl:call-template name="partintro.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <fo:block><xsl:copy-of select="$verso.content"/></fo:block> + </xsl:if> + <xsl:call-template name="partintro.titlepage.separator"/> + </fo:block> +</xsl:template> + +<xsl:template match="*" mode="partintro.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="partintro.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="title" mode="partintro.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="partintro.titlepage.recto.style" text-align="center" font-size="24.8832pt" font-weight="bold" space-before="1em" font-family="{$title.fontset}"> +<xsl:apply-templates select="." mode="partintro.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="subtitle" mode="partintro.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="partintro.titlepage.recto.style" text-align="center" font-size="14.4pt" font-weight="bold" font-style="italic" font-family="{$title.fontset}"> +<xsl:apply-templates select="." mode="partintro.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="corpauthor" mode="partintro.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="partintro.titlepage.recto.style"> +<xsl:apply-templates select="." mode="partintro.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="authorgroup" mode="partintro.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="partintro.titlepage.recto.style"> +<xsl:apply-templates select="." mode="partintro.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="author" mode="partintro.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="partintro.titlepage.recto.style"> +<xsl:apply-templates select="." mode="partintro.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="othercredit" mode="partintro.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="partintro.titlepage.recto.style"> +<xsl:apply-templates select="." mode="partintro.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="releaseinfo" mode="partintro.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="partintro.titlepage.recto.style"> +<xsl:apply-templates select="." mode="partintro.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="copyright" mode="partintro.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="partintro.titlepage.recto.style"> +<xsl:apply-templates select="." mode="partintro.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="legalnotice" mode="partintro.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="partintro.titlepage.recto.style"> +<xsl:apply-templates select="." mode="partintro.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="pubdate" mode="partintro.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="partintro.titlepage.recto.style"> +<xsl:apply-templates select="." mode="partintro.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="revision" mode="partintro.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="partintro.titlepage.recto.style"> +<xsl:apply-templates select="." mode="partintro.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="revhistory" mode="partintro.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="partintro.titlepage.recto.style"> +<xsl:apply-templates select="." mode="partintro.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="abstract" mode="partintro.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="partintro.titlepage.recto.style"> +<xsl:apply-templates select="." mode="partintro.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template name="reference.titlepage.recto"> + <xsl:choose> + <xsl:when test="referenceinfo/title"> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="referenceinfo/title"/> + </xsl:when> + <xsl:when test="docinfo/title"> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="docinfo/title"/> + </xsl:when> + <xsl:when test="info/title"> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="info/title"/> + </xsl:when> + <xsl:when test="title"> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="title"/> + </xsl:when> + </xsl:choose> + + <xsl:choose> + <xsl:when test="referenceinfo/subtitle"> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="referenceinfo/subtitle"/> + </xsl:when> + <xsl:when test="docinfo/subtitle"> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="docinfo/subtitle"/> + </xsl:when> + <xsl:when test="info/subtitle"> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="info/subtitle"/> + </xsl:when> + <xsl:when test="subtitle"> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="subtitle"/> + </xsl:when> + </xsl:choose> + + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="referenceinfo/corpauthor"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="docinfo/corpauthor"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="info/corpauthor"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="referenceinfo/authorgroup"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="docinfo/authorgroup"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="info/authorgroup"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="referenceinfo/author"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="docinfo/author"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="info/author"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="referenceinfo/othercredit"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="docinfo/othercredit"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="info/othercredit"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="referenceinfo/releaseinfo"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="docinfo/releaseinfo"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="info/releaseinfo"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="referenceinfo/copyright"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="docinfo/copyright"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="info/copyright"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="referenceinfo/legalnotice"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="docinfo/legalnotice"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="info/legalnotice"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="referenceinfo/pubdate"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="docinfo/pubdate"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="info/pubdate"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="referenceinfo/revision"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="docinfo/revision"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="info/revision"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="referenceinfo/revhistory"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="docinfo/revhistory"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="info/revhistory"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="referenceinfo/abstract"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="docinfo/abstract"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="info/abstract"/> +</xsl:template> + +<xsl:template name="reference.titlepage.verso"> +</xsl:template> + +<xsl:template name="reference.titlepage.separator"> +</xsl:template> + +<xsl:template name="reference.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="reference.titlepage.before.verso"> +</xsl:template> + +<xsl:template name="reference.titlepage"> + <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> + <xsl:variable name="recto.content"> + <xsl:call-template name="reference.titlepage.before.recto"/> + <xsl:call-template name="reference.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <fo:block><xsl:copy-of select="$recto.content"/></fo:block> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="reference.titlepage.before.verso"/> + <xsl:call-template name="reference.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <fo:block><xsl:copy-of select="$verso.content"/></fo:block> + </xsl:if> + <xsl:call-template name="reference.titlepage.separator"/> + </fo:block> +</xsl:template> + +<xsl:template match="*" mode="reference.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="reference.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="title" mode="reference.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="reference.titlepage.recto.style" text-align="center" font-size="24.8832pt" space-before="18.6624pt" font-weight="bold" font-family="{$title.fontset}"> +<xsl:call-template name="division.title"> +<xsl:with-param name="node" select="ancestor-or-self::reference[1]"/> +</xsl:call-template> +</fo:block> +</xsl:template> + +<xsl:template match="subtitle" mode="reference.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="reference.titlepage.recto.style" font-family="{$title.fontset}" text-align="center"> +<xsl:apply-templates select="." mode="reference.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="corpauthor" mode="reference.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="reference.titlepage.recto.style"> +<xsl:apply-templates select="." mode="reference.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="authorgroup" mode="reference.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="reference.titlepage.recto.style"> +<xsl:apply-templates select="." mode="reference.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="author" mode="reference.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="reference.titlepage.recto.style"> +<xsl:apply-templates select="." mode="reference.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="othercredit" mode="reference.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="reference.titlepage.recto.style"> +<xsl:apply-templates select="." mode="reference.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="releaseinfo" mode="reference.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="reference.titlepage.recto.style"> +<xsl:apply-templates select="." mode="reference.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="copyright" mode="reference.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="reference.titlepage.recto.style"> +<xsl:apply-templates select="." mode="reference.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="legalnotice" mode="reference.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="reference.titlepage.recto.style"> +<xsl:apply-templates select="." mode="reference.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="pubdate" mode="reference.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="reference.titlepage.recto.style"> +<xsl:apply-templates select="." mode="reference.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="revision" mode="reference.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="reference.titlepage.recto.style"> +<xsl:apply-templates select="." mode="reference.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="revhistory" mode="reference.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="reference.titlepage.recto.style"> +<xsl:apply-templates select="." mode="reference.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="abstract" mode="reference.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="reference.titlepage.recto.style"> +<xsl:apply-templates select="." mode="reference.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template name="refsynopsisdiv.titlepage.recto"> + <xsl:choose> + <xsl:when test="refsynopsisdivinfo/title"> + <xsl:apply-templates mode="refsynopsisdiv.titlepage.recto.auto.mode" select="refsynopsisdivinfo/title"/> + </xsl:when> + <xsl:when test="docinfo/title"> + <xsl:apply-templates mode="refsynopsisdiv.titlepage.recto.auto.mode" select="docinfo/title"/> + </xsl:when> + <xsl:when test="info/title"> + <xsl:apply-templates mode="refsynopsisdiv.titlepage.recto.auto.mode" select="info/title"/> + </xsl:when> + <xsl:when test="title"> + <xsl:apply-templates mode="refsynopsisdiv.titlepage.recto.auto.mode" select="title"/> + </xsl:when> + </xsl:choose> + +</xsl:template> + +<xsl:template name="refsynopsisdiv.titlepage.verso"> +</xsl:template> + +<xsl:template name="refsynopsisdiv.titlepage.separator"> +</xsl:template> + +<xsl:template name="refsynopsisdiv.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="refsynopsisdiv.titlepage.before.verso"> +</xsl:template> + +<xsl:template name="refsynopsisdiv.titlepage"> + <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> + <xsl:variable name="recto.content"> + <xsl:call-template name="refsynopsisdiv.titlepage.before.recto"/> + <xsl:call-template name="refsynopsisdiv.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <fo:block><xsl:copy-of select="$recto.content"/></fo:block> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="refsynopsisdiv.titlepage.before.verso"/> + <xsl:call-template name="refsynopsisdiv.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <fo:block><xsl:copy-of select="$verso.content"/></fo:block> + </xsl:if> + <xsl:call-template name="refsynopsisdiv.titlepage.separator"/> + </fo:block> +</xsl:template> + +<xsl:template match="*" mode="refsynopsisdiv.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="refsynopsisdiv.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="title" mode="refsynopsisdiv.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="refsynopsisdiv.titlepage.recto.style" font-family="{$title.fontset}"> +<xsl:apply-templates select="." mode="refsynopsisdiv.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template name="refsection.titlepage.recto"> + <xsl:choose> + <xsl:when test="refsectioninfo/title"> + <xsl:apply-templates mode="refsection.titlepage.recto.auto.mode" select="refsectioninfo/title"/> + </xsl:when> + <xsl:when test="docinfo/title"> + <xsl:apply-templates mode="refsection.titlepage.recto.auto.mode" select="docinfo/title"/> + </xsl:when> + <xsl:when test="info/title"> + <xsl:apply-templates mode="refsection.titlepage.recto.auto.mode" select="info/title"/> + </xsl:when> + <xsl:when test="title"> + <xsl:apply-templates mode="refsection.titlepage.recto.auto.mode" select="title"/> + </xsl:when> + </xsl:choose> + +</xsl:template> + +<xsl:template name="refsection.titlepage.verso"> +</xsl:template> + +<xsl:template name="refsection.titlepage.separator"> +</xsl:template> + +<xsl:template name="refsection.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="refsection.titlepage.before.verso"> +</xsl:template> + +<xsl:template name="refsection.titlepage"> + <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> + <xsl:variable name="recto.content"> + <xsl:call-template name="refsection.titlepage.before.recto"/> + <xsl:call-template name="refsection.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <fo:block><xsl:copy-of select="$recto.content"/></fo:block> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="refsection.titlepage.before.verso"/> + <xsl:call-template name="refsection.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <fo:block><xsl:copy-of select="$verso.content"/></fo:block> + </xsl:if> + <xsl:call-template name="refsection.titlepage.separator"/> + </fo:block> +</xsl:template> + +<xsl:template match="*" mode="refsection.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="refsection.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="title" mode="refsection.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="refsection.titlepage.recto.style" font-family="{$title.fontset}"> +<xsl:apply-templates select="." mode="refsection.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template name="refsect1.titlepage.recto"> + <xsl:choose> + <xsl:when test="refsect1info/title"> + <xsl:apply-templates mode="refsect1.titlepage.recto.auto.mode" select="refsect1info/title"/> + </xsl:when> + <xsl:when test="docinfo/title"> + <xsl:apply-templates mode="refsect1.titlepage.recto.auto.mode" select="docinfo/title"/> + </xsl:when> + <xsl:when test="info/title"> + <xsl:apply-templates mode="refsect1.titlepage.recto.auto.mode" select="info/title"/> + </xsl:when> + <xsl:when test="title"> + <xsl:apply-templates mode="refsect1.titlepage.recto.auto.mode" select="title"/> + </xsl:when> + </xsl:choose> + +</xsl:template> + +<xsl:template name="refsect1.titlepage.verso"> +</xsl:template> + +<xsl:template name="refsect1.titlepage.separator"> +</xsl:template> + +<xsl:template name="refsect1.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="refsect1.titlepage.before.verso"> +</xsl:template> + +<xsl:template name="refsect1.titlepage"> + <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> + <xsl:variable name="recto.content"> + <xsl:call-template name="refsect1.titlepage.before.recto"/> + <xsl:call-template name="refsect1.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <fo:block><xsl:copy-of select="$recto.content"/></fo:block> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="refsect1.titlepage.before.verso"/> + <xsl:call-template name="refsect1.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <fo:block><xsl:copy-of select="$verso.content"/></fo:block> + </xsl:if> + <xsl:call-template name="refsect1.titlepage.separator"/> + </fo:block> +</xsl:template> + +<xsl:template match="*" mode="refsect1.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="refsect1.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="title" mode="refsect1.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="refsect1.titlepage.recto.style" font-family="{$title.fontset}"> +<xsl:apply-templates select="." mode="refsect1.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template name="refsect2.titlepage.recto"> + <xsl:choose> + <xsl:when test="refsect2info/title"> + <xsl:apply-templates mode="refsect2.titlepage.recto.auto.mode" select="refsect2info/title"/> + </xsl:when> + <xsl:when test="docinfo/title"> + <xsl:apply-templates mode="refsect2.titlepage.recto.auto.mode" select="docinfo/title"/> + </xsl:when> + <xsl:when test="info/title"> + <xsl:apply-templates mode="refsect2.titlepage.recto.auto.mode" select="info/title"/> + </xsl:when> + <xsl:when test="title"> + <xsl:apply-templates mode="refsect2.titlepage.recto.auto.mode" select="title"/> + </xsl:when> + </xsl:choose> + +</xsl:template> + +<xsl:template name="refsect2.titlepage.verso"> +</xsl:template> + +<xsl:template name="refsect2.titlepage.separator"> +</xsl:template> + +<xsl:template name="refsect2.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="refsect2.titlepage.before.verso"> +</xsl:template> + +<xsl:template name="refsect2.titlepage"> + <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> + <xsl:variable name="recto.content"> + <xsl:call-template name="refsect2.titlepage.before.recto"/> + <xsl:call-template name="refsect2.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <fo:block><xsl:copy-of select="$recto.content"/></fo:block> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="refsect2.titlepage.before.verso"/> + <xsl:call-template name="refsect2.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <fo:block><xsl:copy-of select="$verso.content"/></fo:block> + </xsl:if> + <xsl:call-template name="refsect2.titlepage.separator"/> + </fo:block> +</xsl:template> + +<xsl:template match="*" mode="refsect2.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="refsect2.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="title" mode="refsect2.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="refsect2.titlepage.recto.style" font-family="{$title.fontset}"> +<xsl:apply-templates select="." mode="refsect2.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template name="refsect3.titlepage.recto"> + <xsl:choose> + <xsl:when test="refsect3info/title"> + <xsl:apply-templates mode="refsect3.titlepage.recto.auto.mode" select="refsect3info/title"/> + </xsl:when> + <xsl:when test="docinfo/title"> + <xsl:apply-templates mode="refsect3.titlepage.recto.auto.mode" select="docinfo/title"/> + </xsl:when> + <xsl:when test="info/title"> + <xsl:apply-templates mode="refsect3.titlepage.recto.auto.mode" select="info/title"/> + </xsl:when> + <xsl:when test="title"> + <xsl:apply-templates mode="refsect3.titlepage.recto.auto.mode" select="title"/> + </xsl:when> + </xsl:choose> + +</xsl:template> + +<xsl:template name="refsect3.titlepage.verso"> +</xsl:template> + +<xsl:template name="refsect3.titlepage.separator"> +</xsl:template> + +<xsl:template name="refsect3.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="refsect3.titlepage.before.verso"> +</xsl:template> + +<xsl:template name="refsect3.titlepage"> + <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> + <xsl:variable name="recto.content"> + <xsl:call-template name="refsect3.titlepage.before.recto"/> + <xsl:call-template name="refsect3.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <fo:block><xsl:copy-of select="$recto.content"/></fo:block> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="refsect3.titlepage.before.verso"/> + <xsl:call-template name="refsect3.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <fo:block><xsl:copy-of select="$verso.content"/></fo:block> + </xsl:if> + <xsl:call-template name="refsect3.titlepage.separator"/> + </fo:block> +</xsl:template> + +<xsl:template match="*" mode="refsect3.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="refsect3.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="title" mode="refsect3.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="refsect3.titlepage.recto.style" font-family="{$title.fontset}"> +<xsl:apply-templates select="." mode="refsect3.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template name="dedication.titlepage.recto"> + <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="dedication.titlepage.recto.style" margin-left="{$title.margin.left}" font-size="24.8832pt" font-family="{$title.fontset}" font-weight="bold"> +<xsl:call-template name="component.title"> +<xsl:with-param name="node" select="ancestor-or-self::dedication[1]"/> +</xsl:call-template></fo:block> + <xsl:choose> + <xsl:when test="dedicationinfo/subtitle"> + <xsl:apply-templates mode="dedication.titlepage.recto.auto.mode" select="dedicationinfo/subtitle"/> + </xsl:when> + <xsl:when test="docinfo/subtitle"> + <xsl:apply-templates mode="dedication.titlepage.recto.auto.mode" select="docinfo/subtitle"/> + </xsl:when> + <xsl:when test="info/subtitle"> + <xsl:apply-templates mode="dedication.titlepage.recto.auto.mode" select="info/subtitle"/> + </xsl:when> + <xsl:when test="subtitle"> + <xsl:apply-templates mode="dedication.titlepage.recto.auto.mode" select="subtitle"/> + </xsl:when> + </xsl:choose> + +</xsl:template> + +<xsl:template name="dedication.titlepage.verso"> +</xsl:template> + +<xsl:template name="dedication.titlepage.separator"> +</xsl:template> + +<xsl:template name="dedication.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="dedication.titlepage.before.verso"> +</xsl:template> + +<xsl:template name="dedication.titlepage"> + <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> + <xsl:variable name="recto.content"> + <xsl:call-template name="dedication.titlepage.before.recto"/> + <xsl:call-template name="dedication.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <fo:block><xsl:copy-of select="$recto.content"/></fo:block> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="dedication.titlepage.before.verso"/> + <xsl:call-template name="dedication.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <fo:block><xsl:copy-of select="$verso.content"/></fo:block> + </xsl:if> + <xsl:call-template name="dedication.titlepage.separator"/> + </fo:block> +</xsl:template> + +<xsl:template match="*" mode="dedication.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="dedication.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="subtitle" mode="dedication.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="dedication.titlepage.recto.style" font-family="{$title.fontset}"> +<xsl:apply-templates select="." mode="dedication.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template name="acknowledgements.titlepage.recto"> + <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="acknowledgements.titlepage.recto.style" margin-left="{$title.margin.left}" font-size="24.8832pt" font-family="{$title.fontset}" font-weight="bold"> +<xsl:call-template name="component.title"> +<xsl:with-param name="node" select="ancestor-or-self::acknowledgements[1]"/> +</xsl:call-template></fo:block> + <xsl:choose> + <xsl:when test="acknowledgementsinfo/subtitle"> + <xsl:apply-templates mode="acknowledgements.titlepage.recto.auto.mode" select="acknowledgementsinfo/subtitle"/> + </xsl:when> + <xsl:when test="docinfo/subtitle"> + <xsl:apply-templates mode="acknowledgements.titlepage.recto.auto.mode" select="docinfo/subtitle"/> + </xsl:when> + <xsl:when test="info/subtitle"> + <xsl:apply-templates mode="acknowledgements.titlepage.recto.auto.mode" select="info/subtitle"/> + </xsl:when> + <xsl:when test="subtitle"> + <xsl:apply-templates mode="acknowledgements.titlepage.recto.auto.mode" select="subtitle"/> + </xsl:when> + </xsl:choose> + +</xsl:template> + +<xsl:template name="acknowledgements.titlepage.verso"> +</xsl:template> + +<xsl:template name="acknowledgements.titlepage.separator"> +</xsl:template> + +<xsl:template name="acknowledgements.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="acknowledgements.titlepage.before.verso"> +</xsl:template> + +<xsl:template name="acknowledgements.titlepage"> + <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> + <xsl:variable name="recto.content"> + <xsl:call-template name="acknowledgements.titlepage.before.recto"/> + <xsl:call-template name="acknowledgements.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <fo:block><xsl:copy-of select="$recto.content"/></fo:block> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="acknowledgements.titlepage.before.verso"/> + <xsl:call-template name="acknowledgements.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <fo:block><xsl:copy-of select="$verso.content"/></fo:block> + </xsl:if> + <xsl:call-template name="acknowledgements.titlepage.separator"/> + </fo:block> +</xsl:template> + +<xsl:template match="*" mode="acknowledgements.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="acknowledgements.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="subtitle" mode="acknowledgements.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="acknowledgements.titlepage.recto.style" font-family="{$title.fontset}"> +<xsl:apply-templates select="." mode="acknowledgements.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template name="preface.titlepage.recto"> + <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="preface.titlepage.recto.style" margin-left="{$title.margin.left}" font-size="24.8832pt" font-family="{$title.fontset}" font-weight="bold"> +<xsl:call-template name="component.title"> +<xsl:with-param name="node" select="ancestor-or-self::preface[1]"/> +</xsl:call-template></fo:block> + <xsl:choose> + <xsl:when test="prefaceinfo/subtitle"> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="prefaceinfo/subtitle"/> + </xsl:when> + <xsl:when test="docinfo/subtitle"> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="docinfo/subtitle"/> + </xsl:when> + <xsl:when test="info/subtitle"> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="info/subtitle"/> + </xsl:when> + <xsl:when test="subtitle"> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="subtitle"/> + </xsl:when> + </xsl:choose> + + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="prefaceinfo/corpauthor"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="docinfo/corpauthor"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="info/corpauthor"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="prefaceinfo/authorgroup"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="docinfo/authorgroup"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="info/authorgroup"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="prefaceinfo/author"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="docinfo/author"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="info/author"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="prefaceinfo/othercredit"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="docinfo/othercredit"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="info/othercredit"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="prefaceinfo/releaseinfo"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="docinfo/releaseinfo"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="info/releaseinfo"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="prefaceinfo/copyright"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="docinfo/copyright"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="info/copyright"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="prefaceinfo/legalnotice"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="docinfo/legalnotice"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="info/legalnotice"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="prefaceinfo/pubdate"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="docinfo/pubdate"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="info/pubdate"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="prefaceinfo/revision"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="docinfo/revision"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="info/revision"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="prefaceinfo/revhistory"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="docinfo/revhistory"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="info/revhistory"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="prefaceinfo/abstract"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="docinfo/abstract"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="info/abstract"/> +</xsl:template> + +<xsl:template name="preface.titlepage.verso"> +</xsl:template> + +<xsl:template name="preface.titlepage.separator"> +</xsl:template> + +<xsl:template name="preface.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="preface.titlepage.before.verso"> +</xsl:template> + +<xsl:template name="preface.titlepage"> + <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> + <xsl:variable name="recto.content"> + <xsl:call-template name="preface.titlepage.before.recto"/> + <xsl:call-template name="preface.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <fo:block><xsl:copy-of select="$recto.content"/></fo:block> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="preface.titlepage.before.verso"/> + <xsl:call-template name="preface.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <fo:block><xsl:copy-of select="$verso.content"/></fo:block> + </xsl:if> + <xsl:call-template name="preface.titlepage.separator"/> + </fo:block> +</xsl:template> + +<xsl:template match="*" mode="preface.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="preface.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="subtitle" mode="preface.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="preface.titlepage.recto.style" font-family="{$title.fontset}"> +<xsl:apply-templates select="." mode="preface.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="corpauthor" mode="preface.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="preface.titlepage.recto.style"> +<xsl:apply-templates select="." mode="preface.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="authorgroup" mode="preface.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="preface.titlepage.recto.style"> +<xsl:apply-templates select="." mode="preface.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="author" mode="preface.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="preface.titlepage.recto.style"> +<xsl:apply-templates select="." mode="preface.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="othercredit" mode="preface.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="preface.titlepage.recto.style"> +<xsl:apply-templates select="." mode="preface.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="releaseinfo" mode="preface.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="preface.titlepage.recto.style"> +<xsl:apply-templates select="." mode="preface.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="copyright" mode="preface.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="preface.titlepage.recto.style"> +<xsl:apply-templates select="." mode="preface.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="legalnotice" mode="preface.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="preface.titlepage.recto.style"> +<xsl:apply-templates select="." mode="preface.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="pubdate" mode="preface.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="preface.titlepage.recto.style"> +<xsl:apply-templates select="." mode="preface.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="revision" mode="preface.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="preface.titlepage.recto.style"> +<xsl:apply-templates select="." mode="preface.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="revhistory" mode="preface.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="preface.titlepage.recto.style"> +<xsl:apply-templates select="." mode="preface.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="abstract" mode="preface.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="preface.titlepage.recto.style"> +<xsl:apply-templates select="." mode="preface.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template name="chapter.titlepage.recto"> + <xsl:choose> + <xsl:when test="chapterinfo/title"> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="chapterinfo/title"/> + </xsl:when> + <xsl:when test="docinfo/title"> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="docinfo/title"/> + </xsl:when> + <xsl:when test="info/title"> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="info/title"/> + </xsl:when> + <xsl:when test="title"> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="title"/> + </xsl:when> + </xsl:choose> + + <xsl:choose> + <xsl:when test="chapterinfo/subtitle"> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="chapterinfo/subtitle"/> + </xsl:when> + <xsl:when test="docinfo/subtitle"> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="docinfo/subtitle"/> + </xsl:when> + <xsl:when test="info/subtitle"> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="info/subtitle"/> + </xsl:when> + <xsl:when test="subtitle"> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="subtitle"/> + </xsl:when> + </xsl:choose> + + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="chapterinfo/corpauthor"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="docinfo/corpauthor"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="info/corpauthor"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="chapterinfo/authorgroup"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="docinfo/authorgroup"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="info/authorgroup"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="chapterinfo/author"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="docinfo/author"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="info/author"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="chapterinfo/othercredit"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="docinfo/othercredit"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="info/othercredit"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="chapterinfo/releaseinfo"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="docinfo/releaseinfo"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="info/releaseinfo"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="chapterinfo/copyright"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="docinfo/copyright"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="info/copyright"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="chapterinfo/legalnotice"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="docinfo/legalnotice"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="info/legalnotice"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="chapterinfo/pubdate"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="docinfo/pubdate"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="info/pubdate"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="chapterinfo/revision"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="docinfo/revision"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="info/revision"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="chapterinfo/revhistory"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="docinfo/revhistory"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="info/revhistory"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="chapterinfo/abstract"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="docinfo/abstract"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="info/abstract"/> +</xsl:template> + +<xsl:template name="chapter.titlepage.verso"> +</xsl:template> + +<xsl:template name="chapter.titlepage.separator"> +</xsl:template> + +<xsl:template name="chapter.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="chapter.titlepage.before.verso"> +</xsl:template> + +<xsl:template name="chapter.titlepage"> + <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" font-family="{$title.fontset}"> + <xsl:variable name="recto.content"> + <xsl:call-template name="chapter.titlepage.before.recto"/> + <xsl:call-template name="chapter.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <fo:block margin-left="{$title.margin.left}"><xsl:copy-of select="$recto.content"/></fo:block> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="chapter.titlepage.before.verso"/> + <xsl:call-template name="chapter.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <fo:block><xsl:copy-of select="$verso.content"/></fo:block> + </xsl:if> + <xsl:call-template name="chapter.titlepage.separator"/> + </fo:block> +</xsl:template> + +<xsl:template match="*" mode="chapter.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="chapter.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="title" mode="chapter.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="chapter.titlepage.recto.style" font-size="24.8832pt" font-weight="bold"> +<xsl:call-template name="component.title"> +<xsl:with-param name="node" select="ancestor-or-self::chapter[1]"/> +</xsl:call-template> +</fo:block> +</xsl:template> + +<xsl:template match="subtitle" mode="chapter.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="chapter.titlepage.recto.style" space-before="0.5em" font-style="italic" font-size="14.4pt" font-weight="bold"> +<xsl:apply-templates select="." mode="chapter.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="corpauthor" mode="chapter.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="chapter.titlepage.recto.style" space-before="0.5em" space-after="0.5em" font-size="14.4pt"> +<xsl:apply-templates select="." mode="chapter.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="authorgroup" mode="chapter.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="chapter.titlepage.recto.style" space-before="0.5em" space-after="0.5em" font-size="14.4pt"> +<xsl:apply-templates select="." mode="chapter.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="author" mode="chapter.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="chapter.titlepage.recto.style" space-before="0.5em" space-after="0.5em" font-size="14.4pt"> +<xsl:apply-templates select="." mode="chapter.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="othercredit" mode="chapter.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="chapter.titlepage.recto.style"> +<xsl:apply-templates select="." mode="chapter.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="releaseinfo" mode="chapter.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="chapter.titlepage.recto.style"> +<xsl:apply-templates select="." mode="chapter.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="copyright" mode="chapter.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="chapter.titlepage.recto.style"> +<xsl:apply-templates select="." mode="chapter.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="legalnotice" mode="chapter.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="chapter.titlepage.recto.style"> +<xsl:apply-templates select="." mode="chapter.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="pubdate" mode="chapter.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="chapter.titlepage.recto.style"> +<xsl:apply-templates select="." mode="chapter.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="revision" mode="chapter.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="chapter.titlepage.recto.style"> +<xsl:apply-templates select="." mode="chapter.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="revhistory" mode="chapter.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="chapter.titlepage.recto.style"> +<xsl:apply-templates select="." mode="chapter.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="abstract" mode="chapter.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="chapter.titlepage.recto.style"> +<xsl:apply-templates select="." mode="chapter.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template name="appendix.titlepage.recto"> + <xsl:choose> + <xsl:when test="appendixinfo/title"> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="appendixinfo/title"/> + </xsl:when> + <xsl:when test="docinfo/title"> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="docinfo/title"/> + </xsl:when> + <xsl:when test="info/title"> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="info/title"/> + </xsl:when> + <xsl:when test="title"> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="title"/> + </xsl:when> + </xsl:choose> + + <xsl:choose> + <xsl:when test="appendixinfo/subtitle"> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="appendixinfo/subtitle"/> + </xsl:when> + <xsl:when test="docinfo/subtitle"> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="docinfo/subtitle"/> + </xsl:when> + <xsl:when test="info/subtitle"> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="info/subtitle"/> + </xsl:when> + <xsl:when test="subtitle"> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="subtitle"/> + </xsl:when> + </xsl:choose> + + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="appendixinfo/corpauthor"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="docinfo/corpauthor"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="info/corpauthor"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="appendixinfo/authorgroup"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="docinfo/authorgroup"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="info/authorgroup"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="appendixinfo/author"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="docinfo/author"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="info/author"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="appendixinfo/othercredit"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="docinfo/othercredit"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="info/othercredit"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="appendixinfo/releaseinfo"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="docinfo/releaseinfo"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="info/releaseinfo"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="appendixinfo/copyright"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="docinfo/copyright"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="info/copyright"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="appendixinfo/legalnotice"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="docinfo/legalnotice"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="info/legalnotice"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="appendixinfo/pubdate"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="docinfo/pubdate"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="info/pubdate"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="appendixinfo/revision"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="docinfo/revision"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="info/revision"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="appendixinfo/revhistory"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="docinfo/revhistory"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="info/revhistory"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="appendixinfo/abstract"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="docinfo/abstract"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="info/abstract"/> +</xsl:template> + +<xsl:template name="appendix.titlepage.verso"> +</xsl:template> + +<xsl:template name="appendix.titlepage.separator"> +</xsl:template> + +<xsl:template name="appendix.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="appendix.titlepage.before.verso"> +</xsl:template> + +<xsl:template name="appendix.titlepage"> + <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> + <xsl:variable name="recto.content"> + <xsl:call-template name="appendix.titlepage.before.recto"/> + <xsl:call-template name="appendix.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <fo:block><xsl:copy-of select="$recto.content"/></fo:block> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="appendix.titlepage.before.verso"/> + <xsl:call-template name="appendix.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <fo:block><xsl:copy-of select="$verso.content"/></fo:block> + </xsl:if> + <xsl:call-template name="appendix.titlepage.separator"/> + </fo:block> +</xsl:template> + +<xsl:template match="*" mode="appendix.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="appendix.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="title" mode="appendix.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="appendix.titlepage.recto.style" margin-left="{$title.margin.left}" font-size="24.8832pt" font-weight="bold" font-family="{$title.fontset}"> +<xsl:call-template name="component.title"> +<xsl:with-param name="node" select="ancestor-or-self::appendix[1]"/> +</xsl:call-template> +</fo:block> +</xsl:template> + +<xsl:template match="subtitle" mode="appendix.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="appendix.titlepage.recto.style" font-family="{$title.fontset}"> +<xsl:apply-templates select="." mode="appendix.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="corpauthor" mode="appendix.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="appendix.titlepage.recto.style"> +<xsl:apply-templates select="." mode="appendix.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="authorgroup" mode="appendix.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="appendix.titlepage.recto.style"> +<xsl:apply-templates select="." mode="appendix.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="author" mode="appendix.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="appendix.titlepage.recto.style"> +<xsl:apply-templates select="." mode="appendix.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="othercredit" mode="appendix.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="appendix.titlepage.recto.style"> +<xsl:apply-templates select="." mode="appendix.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="releaseinfo" mode="appendix.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="appendix.titlepage.recto.style"> +<xsl:apply-templates select="." mode="appendix.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="copyright" mode="appendix.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="appendix.titlepage.recto.style"> +<xsl:apply-templates select="." mode="appendix.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="legalnotice" mode="appendix.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="appendix.titlepage.recto.style"> +<xsl:apply-templates select="." mode="appendix.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="pubdate" mode="appendix.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="appendix.titlepage.recto.style"> +<xsl:apply-templates select="." mode="appendix.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="revision" mode="appendix.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="appendix.titlepage.recto.style"> +<xsl:apply-templates select="." mode="appendix.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="revhistory" mode="appendix.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="appendix.titlepage.recto.style"> +<xsl:apply-templates select="." mode="appendix.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="abstract" mode="appendix.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="appendix.titlepage.recto.style"> +<xsl:apply-templates select="." mode="appendix.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template name="section.titlepage.recto"> + <xsl:choose> + <xsl:when test="sectioninfo/title"> + <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="sectioninfo/title"/> + </xsl:when> + <xsl:when test="info/title"> + <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="info/title"/> + </xsl:when> + <xsl:when test="title"> + <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="title"/> + </xsl:when> + </xsl:choose> + + <xsl:choose> + <xsl:when test="sectioninfo/subtitle"> + <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="sectioninfo/subtitle"/> + </xsl:when> + <xsl:when test="info/subtitle"> + <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="info/subtitle"/> + </xsl:when> + <xsl:when test="subtitle"> + <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="subtitle"/> + </xsl:when> + </xsl:choose> + + <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="sectioninfo/corpauthor"/> + <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="info/corpauthor"/> + <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="sectioninfo/authorgroup"/> + <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="info/authorgroup"/> + <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="sectioninfo/author"/> + <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="info/author"/> + <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="sectioninfo/othercredit"/> + <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="info/othercredit"/> + <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="sectioninfo/releaseinfo"/> + <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="info/releaseinfo"/> + <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="sectioninfo/copyright"/> + <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="info/copyright"/> + <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="sectioninfo/legalnotice"/> + <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="info/legalnotice"/> + <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="sectioninfo/pubdate"/> + <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="info/pubdate"/> + <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="sectioninfo/revision"/> + <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="info/revision"/> + <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="sectioninfo/revhistory"/> + <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="info/revhistory"/> + <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="sectioninfo/abstract"/> + <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="info/abstract"/> +</xsl:template> + +<xsl:template name="section.titlepage.verso"> +</xsl:template> + +<xsl:template name="section.titlepage.separator"> +</xsl:template> + +<xsl:template name="section.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="section.titlepage.before.verso"> +</xsl:template> + +<xsl:template name="section.titlepage"> + <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> + <xsl:variable name="recto.content"> + <xsl:call-template name="section.titlepage.before.recto"/> + <xsl:call-template name="section.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <fo:block><xsl:copy-of select="$recto.content"/></fo:block> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="section.titlepage.before.verso"/> + <xsl:call-template name="section.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <fo:block><xsl:copy-of select="$verso.content"/></fo:block> + </xsl:if> + <xsl:call-template name="section.titlepage.separator"/> + </fo:block> +</xsl:template> + +<xsl:template match="*" mode="section.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="section.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="title" mode="section.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="section.titlepage.recto.style" margin-left="{$title.margin.left}" font-family="{$title.fontset}"> +<xsl:apply-templates select="." mode="section.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="subtitle" mode="section.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="section.titlepage.recto.style" font-family="{$title.fontset}"> +<xsl:apply-templates select="." mode="section.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="corpauthor" mode="section.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="section.titlepage.recto.style"> +<xsl:apply-templates select="." mode="section.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="authorgroup" mode="section.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="section.titlepage.recto.style"> +<xsl:apply-templates select="." mode="section.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="author" mode="section.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="section.titlepage.recto.style"> +<xsl:apply-templates select="." mode="section.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="othercredit" mode="section.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="section.titlepage.recto.style"> +<xsl:apply-templates select="." mode="section.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="releaseinfo" mode="section.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="section.titlepage.recto.style"> +<xsl:apply-templates select="." mode="section.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="copyright" mode="section.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="section.titlepage.recto.style"> +<xsl:apply-templates select="." mode="section.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="legalnotice" mode="section.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="section.titlepage.recto.style"> +<xsl:apply-templates select="." mode="section.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="pubdate" mode="section.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="section.titlepage.recto.style"> +<xsl:apply-templates select="." mode="section.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="revision" mode="section.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="section.titlepage.recto.style"> +<xsl:apply-templates select="." mode="section.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="revhistory" mode="section.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="section.titlepage.recto.style"> +<xsl:apply-templates select="." mode="section.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="abstract" mode="section.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="section.titlepage.recto.style"> +<xsl:apply-templates select="." mode="section.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template name="sect1.titlepage.recto"> + <xsl:choose> + <xsl:when test="sect1info/title"> + <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="sect1info/title"/> + </xsl:when> + <xsl:when test="info/title"> + <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="info/title"/> + </xsl:when> + <xsl:when test="title"> + <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="title"/> + </xsl:when> + </xsl:choose> + + <xsl:choose> + <xsl:when test="sect1info/subtitle"> + <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="sect1info/subtitle"/> + </xsl:when> + <xsl:when test="info/subtitle"> + <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="info/subtitle"/> + </xsl:when> + <xsl:when test="subtitle"> + <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="subtitle"/> + </xsl:when> + </xsl:choose> + + <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="sect1info/corpauthor"/> + <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="info/corpauthor"/> + <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="sect1info/authorgroup"/> + <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="info/authorgroup"/> + <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="sect1info/author"/> + <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="info/author"/> + <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="sect1info/othercredit"/> + <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="info/othercredit"/> + <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="sect1info/releaseinfo"/> + <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="info/releaseinfo"/> + <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="sect1info/copyright"/> + <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="info/copyright"/> + <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="sect1info/legalnotice"/> + <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="info/legalnotice"/> + <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="sect1info/pubdate"/> + <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="info/pubdate"/> + <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="sect1info/revision"/> + <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="info/revision"/> + <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="sect1info/revhistory"/> + <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="info/revhistory"/> + <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="sect1info/abstract"/> + <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="info/abstract"/> +</xsl:template> + +<xsl:template name="sect1.titlepage.verso"> +</xsl:template> + +<xsl:template name="sect1.titlepage.separator"> +</xsl:template> + +<xsl:template name="sect1.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="sect1.titlepage.before.verso"> +</xsl:template> + +<xsl:template name="sect1.titlepage"> + <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> + <xsl:variable name="recto.content"> + <xsl:call-template name="sect1.titlepage.before.recto"/> + <xsl:call-template name="sect1.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <fo:block><xsl:copy-of select="$recto.content"/></fo:block> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="sect1.titlepage.before.verso"/> + <xsl:call-template name="sect1.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <fo:block><xsl:copy-of select="$verso.content"/></fo:block> + </xsl:if> + <xsl:call-template name="sect1.titlepage.separator"/> + </fo:block> +</xsl:template> + +<xsl:template match="*" mode="sect1.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="sect1.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="title" mode="sect1.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect1.titlepage.recto.style" margin-left="{$title.margin.left}" font-family="{$title.fontset}"> +<xsl:apply-templates select="." mode="sect1.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="subtitle" mode="sect1.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect1.titlepage.recto.style" font-family="{$title.fontset}"> +<xsl:apply-templates select="." mode="sect1.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="corpauthor" mode="sect1.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect1.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect1.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="authorgroup" mode="sect1.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect1.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect1.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="author" mode="sect1.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect1.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect1.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="othercredit" mode="sect1.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect1.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect1.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="releaseinfo" mode="sect1.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect1.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect1.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="copyright" mode="sect1.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect1.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect1.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="legalnotice" mode="sect1.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect1.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect1.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="pubdate" mode="sect1.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect1.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect1.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="revision" mode="sect1.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect1.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect1.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="revhistory" mode="sect1.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect1.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect1.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="abstract" mode="sect1.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect1.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect1.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template name="sect2.titlepage.recto"> + <xsl:choose> + <xsl:when test="sect2info/title"> + <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="sect2info/title"/> + </xsl:when> + <xsl:when test="info/title"> + <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="info/title"/> + </xsl:when> + <xsl:when test="title"> + <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="title"/> + </xsl:when> + </xsl:choose> + + <xsl:choose> + <xsl:when test="sect2info/subtitle"> + <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="sect2info/subtitle"/> + </xsl:when> + <xsl:when test="info/subtitle"> + <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="info/subtitle"/> + </xsl:when> + <xsl:when test="subtitle"> + <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="subtitle"/> + </xsl:when> + </xsl:choose> + + <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="sect2info/corpauthor"/> + <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="info/corpauthor"/> + <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="sect2info/authorgroup"/> + <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="info/authorgroup"/> + <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="sect2info/author"/> + <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="info/author"/> + <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="sect2info/othercredit"/> + <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="info/othercredit"/> + <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="sect2info/releaseinfo"/> + <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="info/releaseinfo"/> + <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="sect2info/copyright"/> + <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="info/copyright"/> + <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="sect2info/legalnotice"/> + <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="info/legalnotice"/> + <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="sect2info/pubdate"/> + <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="info/pubdate"/> + <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="sect2info/revision"/> + <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="info/revision"/> + <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="sect2info/revhistory"/> + <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="info/revhistory"/> + <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="sect2info/abstract"/> + <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="info/abstract"/> +</xsl:template> + +<xsl:template name="sect2.titlepage.verso"> +</xsl:template> + +<xsl:template name="sect2.titlepage.separator"> +</xsl:template> + +<xsl:template name="sect2.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="sect2.titlepage.before.verso"> +</xsl:template> + +<xsl:template name="sect2.titlepage"> + <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> + <xsl:variable name="recto.content"> + <xsl:call-template name="sect2.titlepage.before.recto"/> + <xsl:call-template name="sect2.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <fo:block><xsl:copy-of select="$recto.content"/></fo:block> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="sect2.titlepage.before.verso"/> + <xsl:call-template name="sect2.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <fo:block><xsl:copy-of select="$verso.content"/></fo:block> + </xsl:if> + <xsl:call-template name="sect2.titlepage.separator"/> + </fo:block> +</xsl:template> + +<xsl:template match="*" mode="sect2.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="sect2.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="title" mode="sect2.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect2.titlepage.recto.style" margin-left="{$title.margin.left}" font-family="{$title.fontset}"> +<xsl:apply-templates select="." mode="sect2.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="subtitle" mode="sect2.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect2.titlepage.recto.style" font-family="{$title.fontset}"> +<xsl:apply-templates select="." mode="sect2.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="corpauthor" mode="sect2.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect2.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect2.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="authorgroup" mode="sect2.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect2.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect2.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="author" mode="sect2.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect2.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect2.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="othercredit" mode="sect2.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect2.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect2.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="releaseinfo" mode="sect2.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect2.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect2.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="copyright" mode="sect2.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect2.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect2.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="legalnotice" mode="sect2.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect2.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect2.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="pubdate" mode="sect2.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect2.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect2.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="revision" mode="sect2.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect2.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect2.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="revhistory" mode="sect2.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect2.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect2.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="abstract" mode="sect2.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect2.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect2.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template name="sect3.titlepage.recto"> + <xsl:choose> + <xsl:when test="sect3info/title"> + <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="sect3info/title"/> + </xsl:when> + <xsl:when test="info/title"> + <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="info/title"/> + </xsl:when> + <xsl:when test="title"> + <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="title"/> + </xsl:when> + </xsl:choose> + + <xsl:choose> + <xsl:when test="sect3info/subtitle"> + <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="sect3info/subtitle"/> + </xsl:when> + <xsl:when test="info/subtitle"> + <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="info/subtitle"/> + </xsl:when> + <xsl:when test="subtitle"> + <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="subtitle"/> + </xsl:when> + </xsl:choose> + + <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="sect3info/corpauthor"/> + <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="info/corpauthor"/> + <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="sect3info/authorgroup"/> + <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="info/authorgroup"/> + <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="sect3info/author"/> + <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="info/author"/> + <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="sect3info/othercredit"/> + <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="info/othercredit"/> + <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="sect3info/releaseinfo"/> + <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="info/releaseinfo"/> + <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="sect3info/copyright"/> + <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="info/copyright"/> + <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="sect3info/legalnotice"/> + <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="info/legalnotice"/> + <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="sect3info/pubdate"/> + <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="info/pubdate"/> + <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="sect3info/revision"/> + <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="info/revision"/> + <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="sect3info/revhistory"/> + <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="info/revhistory"/> + <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="sect3info/abstract"/> + <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="info/abstract"/> +</xsl:template> + +<xsl:template name="sect3.titlepage.verso"> +</xsl:template> + +<xsl:template name="sect3.titlepage.separator"> +</xsl:template> + +<xsl:template name="sect3.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="sect3.titlepage.before.verso"> +</xsl:template> + +<xsl:template name="sect3.titlepage"> + <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> + <xsl:variable name="recto.content"> + <xsl:call-template name="sect3.titlepage.before.recto"/> + <xsl:call-template name="sect3.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <fo:block><xsl:copy-of select="$recto.content"/></fo:block> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="sect3.titlepage.before.verso"/> + <xsl:call-template name="sect3.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <fo:block><xsl:copy-of select="$verso.content"/></fo:block> + </xsl:if> + <xsl:call-template name="sect3.titlepage.separator"/> + </fo:block> +</xsl:template> + +<xsl:template match="*" mode="sect3.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="sect3.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="title" mode="sect3.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect3.titlepage.recto.style" margin-left="{$title.margin.left}" font-family="{$title.fontset}"> +<xsl:apply-templates select="." mode="sect3.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="subtitle" mode="sect3.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect3.titlepage.recto.style" font-family="{$title.fontset}"> +<xsl:apply-templates select="." mode="sect3.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="corpauthor" mode="sect3.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect3.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect3.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="authorgroup" mode="sect3.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect3.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect3.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="author" mode="sect3.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect3.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect3.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="othercredit" mode="sect3.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect3.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect3.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="releaseinfo" mode="sect3.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect3.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect3.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="copyright" mode="sect3.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect3.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect3.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="legalnotice" mode="sect3.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect3.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect3.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="pubdate" mode="sect3.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect3.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect3.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="revision" mode="sect3.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect3.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect3.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="revhistory" mode="sect3.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect3.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect3.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="abstract" mode="sect3.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect3.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect3.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template name="sect4.titlepage.recto"> + <xsl:choose> + <xsl:when test="sect4info/title"> + <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="sect4info/title"/> + </xsl:when> + <xsl:when test="info/title"> + <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="info/title"/> + </xsl:when> + <xsl:when test="title"> + <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="title"/> + </xsl:when> + </xsl:choose> + + <xsl:choose> + <xsl:when test="sect4info/subtitle"> + <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="sect4info/subtitle"/> + </xsl:when> + <xsl:when test="info/subtitle"> + <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="info/subtitle"/> + </xsl:when> + <xsl:when test="subtitle"> + <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="subtitle"/> + </xsl:when> + </xsl:choose> + + <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="sect4info/corpauthor"/> + <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="info/corpauthor"/> + <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="sect4info/authorgroup"/> + <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="info/authorgroup"/> + <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="sect4info/author"/> + <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="info/author"/> + <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="sect4info/othercredit"/> + <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="info/othercredit"/> + <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="sect4info/releaseinfo"/> + <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="info/releaseinfo"/> + <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="sect4info/copyright"/> + <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="info/copyright"/> + <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="sect4info/legalnotice"/> + <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="info/legalnotice"/> + <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="sect4info/pubdate"/> + <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="info/pubdate"/> + <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="sect4info/revision"/> + <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="info/revision"/> + <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="sect4info/revhistory"/> + <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="info/revhistory"/> + <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="sect4info/abstract"/> + <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="info/abstract"/> +</xsl:template> + +<xsl:template name="sect4.titlepage.verso"> +</xsl:template> + +<xsl:template name="sect4.titlepage.separator"> +</xsl:template> + +<xsl:template name="sect4.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="sect4.titlepage.before.verso"> +</xsl:template> + +<xsl:template name="sect4.titlepage"> + <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> + <xsl:variable name="recto.content"> + <xsl:call-template name="sect4.titlepage.before.recto"/> + <xsl:call-template name="sect4.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <fo:block><xsl:copy-of select="$recto.content"/></fo:block> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="sect4.titlepage.before.verso"/> + <xsl:call-template name="sect4.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <fo:block><xsl:copy-of select="$verso.content"/></fo:block> + </xsl:if> + <xsl:call-template name="sect4.titlepage.separator"/> + </fo:block> +</xsl:template> + +<xsl:template match="*" mode="sect4.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="sect4.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="title" mode="sect4.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect4.titlepage.recto.style" margin-left="{$title.margin.left}" font-family="{$title.fontset}"> +<xsl:apply-templates select="." mode="sect4.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="subtitle" mode="sect4.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect4.titlepage.recto.style" font-family="{$title.fontset}"> +<xsl:apply-templates select="." mode="sect4.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="corpauthor" mode="sect4.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect4.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect4.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="authorgroup" mode="sect4.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect4.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect4.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="author" mode="sect4.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect4.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect4.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="othercredit" mode="sect4.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect4.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect4.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="releaseinfo" mode="sect4.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect4.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect4.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="copyright" mode="sect4.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect4.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect4.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="legalnotice" mode="sect4.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect4.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect4.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="pubdate" mode="sect4.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect4.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect4.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="revision" mode="sect4.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect4.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect4.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="revhistory" mode="sect4.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect4.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect4.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="abstract" mode="sect4.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect4.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect4.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template name="sect5.titlepage.recto"> + <xsl:choose> + <xsl:when test="sect5info/title"> + <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="sect5info/title"/> + </xsl:when> + <xsl:when test="info/title"> + <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="info/title"/> + </xsl:when> + <xsl:when test="title"> + <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="title"/> + </xsl:when> + </xsl:choose> + + <xsl:choose> + <xsl:when test="sect5info/subtitle"> + <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="sect5info/subtitle"/> + </xsl:when> + <xsl:when test="info/subtitle"> + <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="info/subtitle"/> + </xsl:when> + <xsl:when test="subtitle"> + <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="subtitle"/> + </xsl:when> + </xsl:choose> + + <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="sect5info/corpauthor"/> + <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="info/corpauthor"/> + <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="sect5info/authorgroup"/> + <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="info/authorgroup"/> + <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="sect5info/author"/> + <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="info/author"/> + <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="sect5info/othercredit"/> + <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="info/othercredit"/> + <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="sect5info/releaseinfo"/> + <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="info/releaseinfo"/> + <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="sect5info/copyright"/> + <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="info/copyright"/> + <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="sect5info/legalnotice"/> + <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="info/legalnotice"/> + <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="sect5info/pubdate"/> + <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="info/pubdate"/> + <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="sect5info/revision"/> + <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="info/revision"/> + <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="sect5info/revhistory"/> + <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="info/revhistory"/> + <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="sect5info/abstract"/> + <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="info/abstract"/> +</xsl:template> + +<xsl:template name="sect5.titlepage.verso"> +</xsl:template> + +<xsl:template name="sect5.titlepage.separator"> +</xsl:template> + +<xsl:template name="sect5.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="sect5.titlepage.before.verso"> +</xsl:template> + +<xsl:template name="sect5.titlepage"> + <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> + <xsl:variable name="recto.content"> + <xsl:call-template name="sect5.titlepage.before.recto"/> + <xsl:call-template name="sect5.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <fo:block><xsl:copy-of select="$recto.content"/></fo:block> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="sect5.titlepage.before.verso"/> + <xsl:call-template name="sect5.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <fo:block><xsl:copy-of select="$verso.content"/></fo:block> + </xsl:if> + <xsl:call-template name="sect5.titlepage.separator"/> + </fo:block> +</xsl:template> + +<xsl:template match="*" mode="sect5.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="sect5.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="title" mode="sect5.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect5.titlepage.recto.style" margin-left="{$title.margin.left}" font-family="{$title.fontset}"> +<xsl:apply-templates select="." mode="sect5.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="subtitle" mode="sect5.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect5.titlepage.recto.style" font-family="{$title.fontset}"> +<xsl:apply-templates select="." mode="sect5.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="corpauthor" mode="sect5.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect5.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect5.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="authorgroup" mode="sect5.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect5.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect5.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="author" mode="sect5.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect5.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect5.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="othercredit" mode="sect5.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect5.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect5.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="releaseinfo" mode="sect5.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect5.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect5.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="copyright" mode="sect5.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect5.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect5.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="legalnotice" mode="sect5.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect5.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect5.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="pubdate" mode="sect5.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect5.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect5.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="revision" mode="sect5.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect5.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect5.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="revhistory" mode="sect5.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect5.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect5.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="abstract" mode="sect5.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sect5.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect5.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template name="simplesect.titlepage.recto"> + <xsl:choose> + <xsl:when test="simplesectinfo/title"> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="simplesectinfo/title"/> + </xsl:when> + <xsl:when test="docinfo/title"> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="docinfo/title"/> + </xsl:when> + <xsl:when test="info/title"> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="info/title"/> + </xsl:when> + <xsl:when test="title"> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="title"/> + </xsl:when> + </xsl:choose> + + <xsl:choose> + <xsl:when test="simplesectinfo/subtitle"> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="simplesectinfo/subtitle"/> + </xsl:when> + <xsl:when test="docinfo/subtitle"> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="docinfo/subtitle"/> + </xsl:when> + <xsl:when test="info/subtitle"> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="info/subtitle"/> + </xsl:when> + <xsl:when test="subtitle"> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="subtitle"/> + </xsl:when> + </xsl:choose> + + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="simplesectinfo/corpauthor"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="docinfo/corpauthor"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="info/corpauthor"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="simplesectinfo/authorgroup"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="docinfo/authorgroup"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="info/authorgroup"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="simplesectinfo/author"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="docinfo/author"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="info/author"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="simplesectinfo/othercredit"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="docinfo/othercredit"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="info/othercredit"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="simplesectinfo/releaseinfo"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="docinfo/releaseinfo"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="info/releaseinfo"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="simplesectinfo/copyright"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="docinfo/copyright"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="info/copyright"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="simplesectinfo/legalnotice"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="docinfo/legalnotice"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="info/legalnotice"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="simplesectinfo/pubdate"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="docinfo/pubdate"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="info/pubdate"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="simplesectinfo/revision"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="docinfo/revision"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="info/revision"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="simplesectinfo/revhistory"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="docinfo/revhistory"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="info/revhistory"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="simplesectinfo/abstract"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="docinfo/abstract"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="info/abstract"/> +</xsl:template> + +<xsl:template name="simplesect.titlepage.verso"> +</xsl:template> + +<xsl:template name="simplesect.titlepage.separator"> +</xsl:template> + +<xsl:template name="simplesect.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="simplesect.titlepage.before.verso"> +</xsl:template> + +<xsl:template name="simplesect.titlepage"> + <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> + <xsl:variable name="recto.content"> + <xsl:call-template name="simplesect.titlepage.before.recto"/> + <xsl:call-template name="simplesect.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <fo:block><xsl:copy-of select="$recto.content"/></fo:block> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="simplesect.titlepage.before.verso"/> + <xsl:call-template name="simplesect.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <fo:block><xsl:copy-of select="$verso.content"/></fo:block> + </xsl:if> + <xsl:call-template name="simplesect.titlepage.separator"/> + </fo:block> +</xsl:template> + +<xsl:template match="*" mode="simplesect.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="simplesect.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="title" mode="simplesect.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="simplesect.titlepage.recto.style" margin-left="{$title.margin.left}" font-family="{$title.fontset}"> +<xsl:apply-templates select="." mode="simplesect.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="subtitle" mode="simplesect.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="simplesect.titlepage.recto.style" font-family="{$title.fontset}"> +<xsl:apply-templates select="." mode="simplesect.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="corpauthor" mode="simplesect.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="simplesect.titlepage.recto.style"> +<xsl:apply-templates select="." mode="simplesect.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="authorgroup" mode="simplesect.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="simplesect.titlepage.recto.style"> +<xsl:apply-templates select="." mode="simplesect.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="author" mode="simplesect.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="simplesect.titlepage.recto.style"> +<xsl:apply-templates select="." mode="simplesect.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="othercredit" mode="simplesect.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="simplesect.titlepage.recto.style"> +<xsl:apply-templates select="." mode="simplesect.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="releaseinfo" mode="simplesect.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="simplesect.titlepage.recto.style"> +<xsl:apply-templates select="." mode="simplesect.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="copyright" mode="simplesect.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="simplesect.titlepage.recto.style"> +<xsl:apply-templates select="." mode="simplesect.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="legalnotice" mode="simplesect.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="simplesect.titlepage.recto.style"> +<xsl:apply-templates select="." mode="simplesect.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="pubdate" mode="simplesect.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="simplesect.titlepage.recto.style"> +<xsl:apply-templates select="." mode="simplesect.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="revision" mode="simplesect.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="simplesect.titlepage.recto.style"> +<xsl:apply-templates select="." mode="simplesect.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="revhistory" mode="simplesect.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="simplesect.titlepage.recto.style"> +<xsl:apply-templates select="." mode="simplesect.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="abstract" mode="simplesect.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="simplesect.titlepage.recto.style"> +<xsl:apply-templates select="." mode="simplesect.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template name="bibliography.titlepage.recto"> + <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="bibliography.titlepage.recto.style" margin-left="{$title.margin.left}" font-size="24.8832pt" font-family="{$title.fontset}" font-weight="bold"> +<xsl:call-template name="component.title"> +<xsl:with-param name="node" select="ancestor-or-self::bibliography[1]"/> +</xsl:call-template></fo:block> + <xsl:choose> + <xsl:when test="bibliographyinfo/subtitle"> + <xsl:apply-templates mode="bibliography.titlepage.recto.auto.mode" select="bibliographyinfo/subtitle"/> + </xsl:when> + <xsl:when test="docinfo/subtitle"> + <xsl:apply-templates mode="bibliography.titlepage.recto.auto.mode" select="docinfo/subtitle"/> + </xsl:when> + <xsl:when test="info/subtitle"> + <xsl:apply-templates mode="bibliography.titlepage.recto.auto.mode" select="info/subtitle"/> + </xsl:when> + <xsl:when test="subtitle"> + <xsl:apply-templates mode="bibliography.titlepage.recto.auto.mode" select="subtitle"/> + </xsl:when> + </xsl:choose> + +</xsl:template> + +<xsl:template name="bibliography.titlepage.verso"> +</xsl:template> + +<xsl:template name="bibliography.titlepage.separator"> +</xsl:template> + +<xsl:template name="bibliography.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="bibliography.titlepage.before.verso"> +</xsl:template> + +<xsl:template name="bibliography.titlepage"> + <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> + <xsl:variable name="recto.content"> + <xsl:call-template name="bibliography.titlepage.before.recto"/> + <xsl:call-template name="bibliography.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <fo:block><xsl:copy-of select="$recto.content"/></fo:block> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="bibliography.titlepage.before.verso"/> + <xsl:call-template name="bibliography.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <fo:block><xsl:copy-of select="$verso.content"/></fo:block> + </xsl:if> + <xsl:call-template name="bibliography.titlepage.separator"/> + </fo:block> +</xsl:template> + +<xsl:template match="*" mode="bibliography.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="bibliography.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="subtitle" mode="bibliography.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="bibliography.titlepage.recto.style" font-family="{$title.fontset}"> +<xsl:apply-templates select="." mode="bibliography.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template name="bibliodiv.titlepage.recto"> + <xsl:choose> + <xsl:when test="bibliodivinfo/title"> + <xsl:apply-templates mode="bibliodiv.titlepage.recto.auto.mode" select="bibliodivinfo/title"/> + </xsl:when> + <xsl:when test="docinfo/title"> + <xsl:apply-templates mode="bibliodiv.titlepage.recto.auto.mode" select="docinfo/title"/> + </xsl:when> + <xsl:when test="info/title"> + <xsl:apply-templates mode="bibliodiv.titlepage.recto.auto.mode" select="info/title"/> + </xsl:when> + <xsl:when test="title"> + <xsl:apply-templates mode="bibliodiv.titlepage.recto.auto.mode" select="title"/> + </xsl:when> + </xsl:choose> + + <xsl:choose> + <xsl:when test="bibliodivinfo/subtitle"> + <xsl:apply-templates mode="bibliodiv.titlepage.recto.auto.mode" select="bibliodivinfo/subtitle"/> + </xsl:when> + <xsl:when test="docinfo/subtitle"> + <xsl:apply-templates mode="bibliodiv.titlepage.recto.auto.mode" select="docinfo/subtitle"/> + </xsl:when> + <xsl:when test="info/subtitle"> + <xsl:apply-templates mode="bibliodiv.titlepage.recto.auto.mode" select="info/subtitle"/> + </xsl:when> + <xsl:when test="subtitle"> + <xsl:apply-templates mode="bibliodiv.titlepage.recto.auto.mode" select="subtitle"/> + </xsl:when> + </xsl:choose> + +</xsl:template> + +<xsl:template name="bibliodiv.titlepage.verso"> +</xsl:template> + +<xsl:template name="bibliodiv.titlepage.separator"> +</xsl:template> + +<xsl:template name="bibliodiv.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="bibliodiv.titlepage.before.verso"> +</xsl:template> + +<xsl:template name="bibliodiv.titlepage"> + <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> + <xsl:variable name="recto.content"> + <xsl:call-template name="bibliodiv.titlepage.before.recto"/> + <xsl:call-template name="bibliodiv.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <fo:block><xsl:copy-of select="$recto.content"/></fo:block> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="bibliodiv.titlepage.before.verso"/> + <xsl:call-template name="bibliodiv.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <fo:block><xsl:copy-of select="$verso.content"/></fo:block> + </xsl:if> + <xsl:call-template name="bibliodiv.titlepage.separator"/> + </fo:block> +</xsl:template> + +<xsl:template match="*" mode="bibliodiv.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="bibliodiv.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="title" mode="bibliodiv.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="bibliodiv.titlepage.recto.style" margin-left="{$title.margin.left}" font-size="20.736pt" font-family="{$title.fontset}" font-weight="bold"> +<xsl:call-template name="component.title"> +<xsl:with-param name="node" select="ancestor-or-self::bibliodiv[1]"/> +</xsl:call-template> +</fo:block> +</xsl:template> + +<xsl:template match="subtitle" mode="bibliodiv.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="bibliodiv.titlepage.recto.style" font-family="{$title.fontset}"> +<xsl:apply-templates select="." mode="bibliodiv.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template name="glossary.titlepage.recto"> + <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="glossary.titlepage.recto.style" margin-left="{$title.margin.left}" font-size="24.8832pt" font-family="{$title.fontset}" font-weight="bold"> +<xsl:call-template name="component.title"> +<xsl:with-param name="node" select="ancestor-or-self::glossary[1]"/> +</xsl:call-template></fo:block> + <xsl:choose> + <xsl:when test="glossaryinfo/subtitle"> + <xsl:apply-templates mode="glossary.titlepage.recto.auto.mode" select="glossaryinfo/subtitle"/> + </xsl:when> + <xsl:when test="docinfo/subtitle"> + <xsl:apply-templates mode="glossary.titlepage.recto.auto.mode" select="docinfo/subtitle"/> + </xsl:when> + <xsl:when test="info/subtitle"> + <xsl:apply-templates mode="glossary.titlepage.recto.auto.mode" select="info/subtitle"/> + </xsl:when> + <xsl:when test="subtitle"> + <xsl:apply-templates mode="glossary.titlepage.recto.auto.mode" select="subtitle"/> + </xsl:when> + </xsl:choose> + +</xsl:template> + +<xsl:template name="glossary.titlepage.verso"> +</xsl:template> + +<xsl:template name="glossary.titlepage.separator"> +</xsl:template> + +<xsl:template name="glossary.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="glossary.titlepage.before.verso"> +</xsl:template> + +<xsl:template name="glossary.titlepage"> + <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> + <xsl:variable name="recto.content"> + <xsl:call-template name="glossary.titlepage.before.recto"/> + <xsl:call-template name="glossary.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <fo:block><xsl:copy-of select="$recto.content"/></fo:block> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="glossary.titlepage.before.verso"/> + <xsl:call-template name="glossary.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <fo:block><xsl:copy-of select="$verso.content"/></fo:block> + </xsl:if> + <xsl:call-template name="glossary.titlepage.separator"/> + </fo:block> +</xsl:template> + +<xsl:template match="*" mode="glossary.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="glossary.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="subtitle" mode="glossary.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="glossary.titlepage.recto.style" font-family="{$title.fontset}"> +<xsl:apply-templates select="." mode="glossary.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template name="glossdiv.titlepage.recto"> + <xsl:choose> + <xsl:when test="glossdivinfo/title"> + <xsl:apply-templates mode="glossdiv.titlepage.recto.auto.mode" select="glossdivinfo/title"/> + </xsl:when> + <xsl:when test="docinfo/title"> + <xsl:apply-templates mode="glossdiv.titlepage.recto.auto.mode" select="docinfo/title"/> + </xsl:when> + <xsl:when test="info/title"> + <xsl:apply-templates mode="glossdiv.titlepage.recto.auto.mode" select="info/title"/> + </xsl:when> + <xsl:when test="title"> + <xsl:apply-templates mode="glossdiv.titlepage.recto.auto.mode" select="title"/> + </xsl:when> + </xsl:choose> + + <xsl:choose> + <xsl:when test="glossdivinfo/subtitle"> + <xsl:apply-templates mode="glossdiv.titlepage.recto.auto.mode" select="glossdivinfo/subtitle"/> + </xsl:when> + <xsl:when test="docinfo/subtitle"> + <xsl:apply-templates mode="glossdiv.titlepage.recto.auto.mode" select="docinfo/subtitle"/> + </xsl:when> + <xsl:when test="info/subtitle"> + <xsl:apply-templates mode="glossdiv.titlepage.recto.auto.mode" select="info/subtitle"/> + </xsl:when> + <xsl:when test="subtitle"> + <xsl:apply-templates mode="glossdiv.titlepage.recto.auto.mode" select="subtitle"/> + </xsl:when> + </xsl:choose> + +</xsl:template> + +<xsl:template name="glossdiv.titlepage.verso"> +</xsl:template> + +<xsl:template name="glossdiv.titlepage.separator"> +</xsl:template> + +<xsl:template name="glossdiv.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="glossdiv.titlepage.before.verso"> +</xsl:template> + +<xsl:template name="glossdiv.titlepage"> + <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> + <xsl:variable name="recto.content"> + <xsl:call-template name="glossdiv.titlepage.before.recto"/> + <xsl:call-template name="glossdiv.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <fo:block><xsl:copy-of select="$recto.content"/></fo:block> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="glossdiv.titlepage.before.verso"/> + <xsl:call-template name="glossdiv.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <fo:block><xsl:copy-of select="$verso.content"/></fo:block> + </xsl:if> + <xsl:call-template name="glossdiv.titlepage.separator"/> + </fo:block> +</xsl:template> + +<xsl:template match="*" mode="glossdiv.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="glossdiv.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="title" mode="glossdiv.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="glossdiv.titlepage.recto.style" margin-left="{$title.margin.left}" font-size="20.736pt" font-family="{$title.fontset}" font-weight="bold"> +<xsl:call-template name="component.title"> +<xsl:with-param name="node" select="ancestor-or-self::glossdiv[1]"/> +</xsl:call-template> +</fo:block> +</xsl:template> + +<xsl:template match="subtitle" mode="glossdiv.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="glossdiv.titlepage.recto.style" font-family="{$title.fontset}"> +<xsl:apply-templates select="." mode="glossdiv.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template name="index.titlepage.recto"> + <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="index.titlepage.recto.style" margin-left="0pt" font-size="24.8832pt" font-family="{$title.fontset}" font-weight="bold"> +<xsl:call-template name="component.title"> +<xsl:with-param name="node" select="ancestor-or-self::index[1]"/> +<xsl:with-param name="pagewide" select="1"/> +</xsl:call-template></fo:block> + <xsl:choose> + <xsl:when test="indexinfo/subtitle"> + <xsl:apply-templates mode="index.titlepage.recto.auto.mode" select="indexinfo/subtitle"/> + </xsl:when> + <xsl:when test="docinfo/subtitle"> + <xsl:apply-templates mode="index.titlepage.recto.auto.mode" select="docinfo/subtitle"/> + </xsl:when> + <xsl:when test="info/subtitle"> + <xsl:apply-templates mode="index.titlepage.recto.auto.mode" select="info/subtitle"/> + </xsl:when> + <xsl:when test="subtitle"> + <xsl:apply-templates mode="index.titlepage.recto.auto.mode" select="subtitle"/> + </xsl:when> + </xsl:choose> + +</xsl:template> + +<xsl:template name="index.titlepage.verso"> +</xsl:template> + +<xsl:template name="index.titlepage.separator"> +</xsl:template> + +<xsl:template name="index.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="index.titlepage.before.verso"> +</xsl:template> + +<xsl:template name="index.titlepage"> + <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> + <xsl:variable name="recto.content"> + <xsl:call-template name="index.titlepage.before.recto"/> + <xsl:call-template name="index.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <fo:block><xsl:copy-of select="$recto.content"/></fo:block> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="index.titlepage.before.verso"/> + <xsl:call-template name="index.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <fo:block><xsl:copy-of select="$verso.content"/></fo:block> + </xsl:if> + <xsl:call-template name="index.titlepage.separator"/> + </fo:block> +</xsl:template> + +<xsl:template match="*" mode="index.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="index.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="subtitle" mode="index.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="index.titlepage.recto.style" font-family="{$title.fontset}"> +<xsl:apply-templates select="." mode="index.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template name="indexdiv.titlepage.recto"> + <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="indexdiv.titlepage.recto.style"> +<xsl:call-template name="indexdiv.title"> +<xsl:with-param name="title" select="title"/> +</xsl:call-template></fo:block> + <xsl:choose> + <xsl:when test="indexdivinfo/subtitle"> + <xsl:apply-templates mode="indexdiv.titlepage.recto.auto.mode" select="indexdivinfo/subtitle"/> + </xsl:when> + <xsl:when test="docinfo/subtitle"> + <xsl:apply-templates mode="indexdiv.titlepage.recto.auto.mode" select="docinfo/subtitle"/> + </xsl:when> + <xsl:when test="info/subtitle"> + <xsl:apply-templates mode="indexdiv.titlepage.recto.auto.mode" select="info/subtitle"/> + </xsl:when> + <xsl:when test="subtitle"> + <xsl:apply-templates mode="indexdiv.titlepage.recto.auto.mode" select="subtitle"/> + </xsl:when> + </xsl:choose> + +</xsl:template> + +<xsl:template name="indexdiv.titlepage.verso"> +</xsl:template> + +<xsl:template name="indexdiv.titlepage.separator"> +</xsl:template> + +<xsl:template name="indexdiv.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="indexdiv.titlepage.before.verso"> +</xsl:template> + +<xsl:template name="indexdiv.titlepage"> + <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> + <xsl:variable name="recto.content"> + <xsl:call-template name="indexdiv.titlepage.before.recto"/> + <xsl:call-template name="indexdiv.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <fo:block><xsl:copy-of select="$recto.content"/></fo:block> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="indexdiv.titlepage.before.verso"/> + <xsl:call-template name="indexdiv.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <fo:block><xsl:copy-of select="$verso.content"/></fo:block> + </xsl:if> + <xsl:call-template name="indexdiv.titlepage.separator"/> + </fo:block> +</xsl:template> + +<xsl:template match="*" mode="indexdiv.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="indexdiv.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="subtitle" mode="indexdiv.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="indexdiv.titlepage.recto.style" font-family="{$title.fontset}"> +<xsl:apply-templates select="." mode="indexdiv.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template name="setindex.titlepage.recto"> + <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="setindex.titlepage.recto.style" margin-left="0pt" font-size="24.8832pt" font-family="{$title.fontset}" font-weight="bold"> +<xsl:call-template name="component.title"> +<xsl:with-param name="node" select="ancestor-or-self::setindex[1]"/> +<xsl:with-param name="pagewide" select="1"/> +</xsl:call-template></fo:block> + <xsl:choose> + <xsl:when test="setindexinfo/subtitle"> + <xsl:apply-templates mode="setindex.titlepage.recto.auto.mode" select="setindexinfo/subtitle"/> + </xsl:when> + <xsl:when test="docinfo/subtitle"> + <xsl:apply-templates mode="setindex.titlepage.recto.auto.mode" select="docinfo/subtitle"/> + </xsl:when> + <xsl:when test="info/subtitle"> + <xsl:apply-templates mode="setindex.titlepage.recto.auto.mode" select="info/subtitle"/> + </xsl:when> + <xsl:when test="subtitle"> + <xsl:apply-templates mode="setindex.titlepage.recto.auto.mode" select="subtitle"/> + </xsl:when> + </xsl:choose> + +</xsl:template> + +<xsl:template name="setindex.titlepage.verso"> +</xsl:template> + +<xsl:template name="setindex.titlepage.separator"> +</xsl:template> + +<xsl:template name="setindex.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="setindex.titlepage.before.verso"> +</xsl:template> + +<xsl:template name="setindex.titlepage"> + <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> + <xsl:variable name="recto.content"> + <xsl:call-template name="setindex.titlepage.before.recto"/> + <xsl:call-template name="setindex.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <fo:block><xsl:copy-of select="$recto.content"/></fo:block> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="setindex.titlepage.before.verso"/> + <xsl:call-template name="setindex.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <fo:block><xsl:copy-of select="$verso.content"/></fo:block> + </xsl:if> + <xsl:call-template name="setindex.titlepage.separator"/> + </fo:block> +</xsl:template> + +<xsl:template match="*" mode="setindex.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="setindex.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="subtitle" mode="setindex.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="setindex.titlepage.recto.style" font-family="{$title.fontset}"> +<xsl:apply-templates select="." mode="setindex.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template name="colophon.titlepage.recto"> + <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="colophon.titlepage.recto.style" margin-left="{$title.margin.left}" font-size="24.8832pt" font-family="{$title.fontset}" font-weight="bold"> +<xsl:call-template name="component.title"> +<xsl:with-param name="node" select="ancestor-or-self::colophon[1]"/> +</xsl:call-template></fo:block> + <xsl:choose> + <xsl:when test="colophoninfo/subtitle"> + <xsl:apply-templates mode="colophon.titlepage.recto.auto.mode" select="colophoninfo/subtitle"/> + </xsl:when> + <xsl:when test="docinfo/subtitle"> + <xsl:apply-templates mode="colophon.titlepage.recto.auto.mode" select="docinfo/subtitle"/> + </xsl:when> + <xsl:when test="info/subtitle"> + <xsl:apply-templates mode="colophon.titlepage.recto.auto.mode" select="info/subtitle"/> + </xsl:when> + <xsl:when test="subtitle"> + <xsl:apply-templates mode="colophon.titlepage.recto.auto.mode" select="subtitle"/> + </xsl:when> + </xsl:choose> + +</xsl:template> + +<xsl:template name="colophon.titlepage.verso"> +</xsl:template> + +<xsl:template name="colophon.titlepage.separator"> +</xsl:template> + +<xsl:template name="colophon.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="colophon.titlepage.before.verso"> +</xsl:template> + +<xsl:template name="colophon.titlepage"> + <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> + <xsl:variable name="recto.content"> + <xsl:call-template name="colophon.titlepage.before.recto"/> + <xsl:call-template name="colophon.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <fo:block><xsl:copy-of select="$recto.content"/></fo:block> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="colophon.titlepage.before.verso"/> + <xsl:call-template name="colophon.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <fo:block><xsl:copy-of select="$verso.content"/></fo:block> + </xsl:if> + <xsl:call-template name="colophon.titlepage.separator"/> + </fo:block> +</xsl:template> + +<xsl:template match="*" mode="colophon.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="colophon.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="subtitle" mode="colophon.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="colophon.titlepage.recto.style" font-family="{$title.fontset}"> +<xsl:apply-templates select="." mode="colophon.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template name="sidebar.titlepage.recto"> + <xsl:choose> + <xsl:when test="sidebarinfo/title"> + <xsl:apply-templates mode="sidebar.titlepage.recto.auto.mode" select="sidebarinfo/title"/> + </xsl:when> + <xsl:when test="docinfo/title"> + <xsl:apply-templates mode="sidebar.titlepage.recto.auto.mode" select="docinfo/title"/> + </xsl:when> + <xsl:when test="info/title"> + <xsl:apply-templates mode="sidebar.titlepage.recto.auto.mode" select="info/title"/> + </xsl:when> + <xsl:when test="title"> + <xsl:apply-templates mode="sidebar.titlepage.recto.auto.mode" select="title"/> + </xsl:when> + </xsl:choose> + + <xsl:choose> + <xsl:when test="sidebarinfo/subtitle"> + <xsl:apply-templates mode="sidebar.titlepage.recto.auto.mode" select="sidebarinfo/subtitle"/> + </xsl:when> + <xsl:when test="docinfo/subtitle"> + <xsl:apply-templates mode="sidebar.titlepage.recto.auto.mode" select="docinfo/subtitle"/> + </xsl:when> + <xsl:when test="info/subtitle"> + <xsl:apply-templates mode="sidebar.titlepage.recto.auto.mode" select="info/subtitle"/> + </xsl:when> + <xsl:when test="subtitle"> + <xsl:apply-templates mode="sidebar.titlepage.recto.auto.mode" select="subtitle"/> + </xsl:when> + </xsl:choose> + +</xsl:template> + +<xsl:template name="sidebar.titlepage.verso"> +</xsl:template> + +<xsl:template name="sidebar.titlepage.separator"> +</xsl:template> + +<xsl:template name="sidebar.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="sidebar.titlepage.before.verso"> +</xsl:template> + +<xsl:template name="sidebar.titlepage"> + <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> + <xsl:variable name="recto.content"> + <xsl:call-template name="sidebar.titlepage.before.recto"/> + <xsl:call-template name="sidebar.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <fo:block><xsl:copy-of select="$recto.content"/></fo:block> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="sidebar.titlepage.before.verso"/> + <xsl:call-template name="sidebar.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <fo:block><xsl:copy-of select="$verso.content"/></fo:block> + </xsl:if> + <xsl:call-template name="sidebar.titlepage.separator"/> + </fo:block> +</xsl:template> + +<xsl:template match="*" mode="sidebar.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="sidebar.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="title" mode="sidebar.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sidebar.titlepage.recto.style" font-family="{$title.fontset}" font-weight="bold"> +<xsl:apply-templates select="." mode="sidebar.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="subtitle" mode="sidebar.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="sidebar.titlepage.recto.style" font-family="{$title.fontset}"> +<xsl:apply-templates select="." mode="sidebar.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template name="qandaset.titlepage.recto"> + <xsl:choose> + <xsl:when test="qandasetinfo/title"> + <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="qandasetinfo/title"/> + </xsl:when> + <xsl:when test="blockinfo/title"> + <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="blockinfo/title"/> + </xsl:when> + <xsl:when test="info/title"> + <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="info/title"/> + </xsl:when> + <xsl:when test="title"> + <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="title"/> + </xsl:when> + </xsl:choose> + + <xsl:choose> + <xsl:when test="qandasetinfo/subtitle"> + <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="qandasetinfo/subtitle"/> + </xsl:when> + <xsl:when test="blockinfo/subtitle"> + <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="blockinfo/subtitle"/> + </xsl:when> + <xsl:when test="info/subtitle"> + <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="info/subtitle"/> + </xsl:when> + <xsl:when test="subtitle"> + <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="subtitle"/> + </xsl:when> + </xsl:choose> + + <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="qandasetinfo/corpauthor"/> + <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="blockinfo/corpauthor"/> + <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="info/corpauthor"/> + <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="qandasetinfo/authorgroup"/> + <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="blockinfo/authorgroup"/> + <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="info/authorgroup"/> + <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="qandasetinfo/author"/> + <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="blockinfo/author"/> + <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="info/author"/> + <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="qandasetinfo/othercredit"/> + <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="blockinfo/othercredit"/> + <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="info/othercredit"/> + <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="qandasetinfo/releaseinfo"/> + <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="blockinfo/releaseinfo"/> + <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="info/releaseinfo"/> + <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="qandasetinfo/copyright"/> + <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="blockinfo/copyright"/> + <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="info/copyright"/> + <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="qandasetinfo/legalnotice"/> + <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="blockinfo/legalnotice"/> + <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="info/legalnotice"/> + <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="qandasetinfo/pubdate"/> + <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="blockinfo/pubdate"/> + <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="info/pubdate"/> + <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="qandasetinfo/revision"/> + <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="blockinfo/revision"/> + <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="info/revision"/> + <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="qandasetinfo/revhistory"/> + <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="blockinfo/revhistory"/> + <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="info/revhistory"/> + <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="qandasetinfo/abstract"/> + <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="blockinfo/abstract"/> + <xsl:apply-templates mode="qandaset.titlepage.recto.auto.mode" select="info/abstract"/> +</xsl:template> + +<xsl:template name="qandaset.titlepage.verso"> +</xsl:template> + +<xsl:template name="qandaset.titlepage.separator"> +</xsl:template> + +<xsl:template name="qandaset.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="qandaset.titlepage.before.verso"> +</xsl:template> + +<xsl:template name="qandaset.titlepage"> + <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" font-family="{$title.fontset}"> + <xsl:variable name="recto.content"> + <xsl:call-template name="qandaset.titlepage.before.recto"/> + <xsl:call-template name="qandaset.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <fo:block start-indent="0pt" text-align="center"><xsl:copy-of select="$recto.content"/></fo:block> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="qandaset.titlepage.before.verso"/> + <xsl:call-template name="qandaset.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <fo:block><xsl:copy-of select="$verso.content"/></fo:block> + </xsl:if> + <xsl:call-template name="qandaset.titlepage.separator"/> + </fo:block> +</xsl:template> + +<xsl:template match="*" mode="qandaset.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="qandaset.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="title" mode="qandaset.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="qandaset.titlepage.recto.style" keep-with-next.within-column="always" font-size="24.8832pt" font-weight="bold"> +<xsl:call-template name="component.title"> +<xsl:with-param name="node" select="ancestor-or-self::qandaset[1]"/> +</xsl:call-template> +</fo:block> +</xsl:template> + +<xsl:template match="subtitle" mode="qandaset.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="qandaset.titlepage.recto.style"> +<xsl:apply-templates select="." mode="qandaset.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="corpauthor" mode="qandaset.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="qandaset.titlepage.recto.style" space-before="0.5em" font-size="14.4pt"> +<xsl:apply-templates select="." mode="qandaset.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="authorgroup" mode="qandaset.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="qandaset.titlepage.recto.style" space-before="0.5em" font-size="14.4pt"> +<xsl:apply-templates select="." mode="qandaset.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="author" mode="qandaset.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="qandaset.titlepage.recto.style" space-before="0.5em" font-size="14.4pt"> +<xsl:apply-templates select="." mode="qandaset.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="othercredit" mode="qandaset.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="qandaset.titlepage.recto.style" space-before="0.5em"> +<xsl:apply-templates select="." mode="qandaset.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="releaseinfo" mode="qandaset.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="qandaset.titlepage.recto.style" space-before="0.5em"> +<xsl:apply-templates select="." mode="qandaset.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="copyright" mode="qandaset.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="qandaset.titlepage.recto.style" space-before="0.5em"> +<xsl:apply-templates select="." mode="qandaset.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="legalnotice" mode="qandaset.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="qandaset.titlepage.recto.style" text-align="start" margin-left="0.5in" margin-right="0.5in" font-family="{$body.fontset}"> +<xsl:apply-templates select="." mode="qandaset.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="pubdate" mode="qandaset.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="qandaset.titlepage.recto.style" space-before="0.5em"> +<xsl:apply-templates select="." mode="qandaset.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="revision" mode="qandaset.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="qandaset.titlepage.recto.style" space-before="0.5em"> +<xsl:apply-templates select="." mode="qandaset.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="revhistory" mode="qandaset.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="qandaset.titlepage.recto.style" space-before="0.5em"> +<xsl:apply-templates select="." mode="qandaset.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template match="abstract" mode="qandaset.titlepage.recto.auto.mode"> +<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="qandaset.titlepage.recto.style" space-before="0.5em" text-align="start" margin-left="0.5in" margin-right="0.5in" font-family="{$body.fontset}"> +<xsl:apply-templates select="." mode="qandaset.titlepage.recto.mode"/> +</fo:block> +</xsl:template> + +<xsl:template name="table.of.contents.titlepage.recto"> + <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="table.of.contents.titlepage.recto.style" space-before.minimum="1em" space-before.optimum="1.5em" space-before.maximum="2em" space-after="0.5em" margin-left="{$title.margin.left}" start-indent="0pt" font-size="17.28pt" font-weight="bold" font-family="{$title.fontset}"> +<xsl:call-template name="gentext"> +<xsl:with-param name="key" select="'TableofContents'"/> +</xsl:call-template></fo:block> +</xsl:template> + +<xsl:template name="table.of.contents.titlepage.verso"> +</xsl:template> + +<xsl:template name="table.of.contents.titlepage.separator"> +</xsl:template> + +<xsl:template name="table.of.contents.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="table.of.contents.titlepage.before.verso"> +</xsl:template> + +<xsl:template name="table.of.contents.titlepage"> + <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> + <xsl:variable name="recto.content"> + <xsl:call-template name="table.of.contents.titlepage.before.recto"/> + <xsl:call-template name="table.of.contents.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <fo:block><xsl:copy-of select="$recto.content"/></fo:block> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="table.of.contents.titlepage.before.verso"/> + <xsl:call-template name="table.of.contents.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <fo:block><xsl:copy-of select="$verso.content"/></fo:block> + </xsl:if> + <xsl:call-template name="table.of.contents.titlepage.separator"/> + </fo:block> +</xsl:template> + +<xsl:template match="*" mode="table.of.contents.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="table.of.contents.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template name="list.of.tables.titlepage.recto"> + <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="list.of.tables.titlepage.recto.style" space-before.minimum="1em" space-before.optimum="1.5em" space-before.maximum="2em" space-after="0.5em" margin-left="{$title.margin.left}" start-indent="0pt" font-size="17.28pt" font-weight="bold" font-family="{$title.fontset}"> +<xsl:call-template name="gentext"> +<xsl:with-param name="key" select="'ListofTables'"/> +</xsl:call-template></fo:block> +</xsl:template> + +<xsl:template name="list.of.tables.titlepage.verso"> +</xsl:template> + +<xsl:template name="list.of.tables.titlepage.separator"> +</xsl:template> + +<xsl:template name="list.of.tables.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="list.of.tables.titlepage.before.verso"> +</xsl:template> + +<xsl:template name="list.of.tables.titlepage"> + <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> + <xsl:variable name="recto.content"> + <xsl:call-template name="list.of.tables.titlepage.before.recto"/> + <xsl:call-template name="list.of.tables.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <fo:block><xsl:copy-of select="$recto.content"/></fo:block> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="list.of.tables.titlepage.before.verso"/> + <xsl:call-template name="list.of.tables.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <fo:block><xsl:copy-of select="$verso.content"/></fo:block> + </xsl:if> + <xsl:call-template name="list.of.tables.titlepage.separator"/> + </fo:block> +</xsl:template> + +<xsl:template match="*" mode="list.of.tables.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="list.of.tables.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template name="list.of.figures.titlepage.recto"> + <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="list.of.figures.titlepage.recto.style" space-before.minimum="1em" space-before.optimum="1.5em" space-before.maximum="2em" space-after="0.5em" margin-left="{$title.margin.left}" start-indent="0pt" font-size="17.28pt" font-weight="bold" font-family="{$title.fontset}"> +<xsl:call-template name="gentext"> +<xsl:with-param name="key" select="'ListofFigures'"/> +</xsl:call-template></fo:block> +</xsl:template> + +<xsl:template name="list.of.figures.titlepage.verso"> +</xsl:template> + +<xsl:template name="list.of.figures.titlepage.separator"> +</xsl:template> + +<xsl:template name="list.of.figures.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="list.of.figures.titlepage.before.verso"> +</xsl:template> + +<xsl:template name="list.of.figures.titlepage"> + <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> + <xsl:variable name="recto.content"> + <xsl:call-template name="list.of.figures.titlepage.before.recto"/> + <xsl:call-template name="list.of.figures.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <fo:block><xsl:copy-of select="$recto.content"/></fo:block> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="list.of.figures.titlepage.before.verso"/> + <xsl:call-template name="list.of.figures.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <fo:block><xsl:copy-of select="$verso.content"/></fo:block> + </xsl:if> + <xsl:call-template name="list.of.figures.titlepage.separator"/> + </fo:block> +</xsl:template> + +<xsl:template match="*" mode="list.of.figures.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="list.of.figures.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template name="list.of.examples.titlepage.recto"> + <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="list.of.examples.titlepage.recto.style" space-before.minimum="1em" space-before.optimum="1.5em" space-before.maximum="2em" space-after="0.5em" margin-left="{$title.margin.left}" start-indent="0pt" font-size="17.28pt" font-weight="bold" font-family="{$title.fontset}"> +<xsl:call-template name="gentext"> +<xsl:with-param name="key" select="'ListofExamples'"/> +</xsl:call-template></fo:block> +</xsl:template> + +<xsl:template name="list.of.examples.titlepage.verso"> +</xsl:template> + +<xsl:template name="list.of.examples.titlepage.separator"> +</xsl:template> + +<xsl:template name="list.of.examples.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="list.of.examples.titlepage.before.verso"> +</xsl:template> + +<xsl:template name="list.of.examples.titlepage"> + <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> + <xsl:variable name="recto.content"> + <xsl:call-template name="list.of.examples.titlepage.before.recto"/> + <xsl:call-template name="list.of.examples.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <fo:block><xsl:copy-of select="$recto.content"/></fo:block> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="list.of.examples.titlepage.before.verso"/> + <xsl:call-template name="list.of.examples.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <fo:block><xsl:copy-of select="$verso.content"/></fo:block> + </xsl:if> + <xsl:call-template name="list.of.examples.titlepage.separator"/> + </fo:block> +</xsl:template> + +<xsl:template match="*" mode="list.of.examples.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="list.of.examples.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template name="list.of.equations.titlepage.recto"> + <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="list.of.equations.titlepage.recto.style" space-before.minimum="1em" space-before.optimum="1.5em" space-before.maximum="2em" space-after="0.5em" margin-left="{$title.margin.left}" start-indent="0pt" font-size="17.28pt" font-weight="bold" font-family="{$title.fontset}"> +<xsl:call-template name="gentext"> +<xsl:with-param name="key" select="'ListofEquations'"/> +</xsl:call-template></fo:block> +</xsl:template> + +<xsl:template name="list.of.equations.titlepage.verso"> +</xsl:template> + +<xsl:template name="list.of.equations.titlepage.separator"> +</xsl:template> + +<xsl:template name="list.of.equations.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="list.of.equations.titlepage.before.verso"> +</xsl:template> + +<xsl:template name="list.of.equations.titlepage"> + <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> + <xsl:variable name="recto.content"> + <xsl:call-template name="list.of.equations.titlepage.before.recto"/> + <xsl:call-template name="list.of.equations.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <fo:block><xsl:copy-of select="$recto.content"/></fo:block> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="list.of.equations.titlepage.before.verso"/> + <xsl:call-template name="list.of.equations.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <fo:block><xsl:copy-of select="$verso.content"/></fo:block> + </xsl:if> + <xsl:call-template name="list.of.equations.titlepage.separator"/> + </fo:block> +</xsl:template> + +<xsl:template match="*" mode="list.of.equations.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="list.of.equations.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template name="list.of.procedures.titlepage.recto"> + <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="list.of.procedures.titlepage.recto.style" space-before.minimum="1em" space-before.optimum="1.5em" space-before.maximum="2em" space-after="0.5em" margin-left="{$title.margin.left}" start-indent="0pt" font-size="17.28pt" font-weight="bold" font-family="{$title.fontset}"> +<xsl:call-template name="gentext"> +<xsl:with-param name="key" select="'ListofProcedures'"/> +</xsl:call-template></fo:block> +</xsl:template> + +<xsl:template name="list.of.procedures.titlepage.verso"> +</xsl:template> + +<xsl:template name="list.of.procedures.titlepage.separator"> +</xsl:template> + +<xsl:template name="list.of.procedures.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="list.of.procedures.titlepage.before.verso"> +</xsl:template> + +<xsl:template name="list.of.procedures.titlepage"> + <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> + <xsl:variable name="recto.content"> + <xsl:call-template name="list.of.procedures.titlepage.before.recto"/> + <xsl:call-template name="list.of.procedures.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <fo:block><xsl:copy-of select="$recto.content"/></fo:block> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="list.of.procedures.titlepage.before.verso"/> + <xsl:call-template name="list.of.procedures.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <fo:block><xsl:copy-of select="$verso.content"/></fo:block> + </xsl:if> + <xsl:call-template name="list.of.procedures.titlepage.separator"/> + </fo:block> +</xsl:template> + +<xsl:template match="*" mode="list.of.procedures.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="list.of.procedures.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template name="list.of.unknowns.titlepage.recto"> + <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="list.of.unknowns.titlepage.recto.style" space-before.minimum="1em" space-before.optimum="1.5em" space-before.maximum="2em" space-after="0.5em" margin-left="{$title.margin.left}" start-indent="0pt" font-size="17.28pt" font-weight="bold" font-family="{$title.fontset}"> +<xsl:call-template name="gentext"> +<xsl:with-param name="key" select="'ListofUnknown'"/> +</xsl:call-template></fo:block> +</xsl:template> + +<xsl:template name="list.of.unknowns.titlepage.verso"> +</xsl:template> + +<xsl:template name="list.of.unknowns.titlepage.separator"> +</xsl:template> + +<xsl:template name="list.of.unknowns.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="list.of.unknowns.titlepage.before.verso"> +</xsl:template> + +<xsl:template name="list.of.unknowns.titlepage"> + <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"> + <xsl:variable name="recto.content"> + <xsl:call-template name="list.of.unknowns.titlepage.before.recto"/> + <xsl:call-template name="list.of.unknowns.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <fo:block><xsl:copy-of select="$recto.content"/></fo:block> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="list.of.unknowns.titlepage.before.verso"/> + <xsl:call-template name="list.of.unknowns.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <fo:block><xsl:copy-of select="$verso.content"/></fo:block> + </xsl:if> + <xsl:call-template name="list.of.unknowns.titlepage.separator"/> + </fo:block> +</xsl:template> + +<xsl:template match="*" mode="list.of.unknowns.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="list.of.unknowns.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +</xsl:stylesheet> + diff --git a/docbook-xsl-1.76.1/fo/titlepage.xsl b/docbook-xsl-1.76.1/fo/titlepage.xsl new file mode 100644 index 0000000..2e2ec75 --- /dev/null +++ b/docbook-xsl-1.76.1/fo/titlepage.xsl @@ -0,0 +1,767 @@ +<?xml version='1.0'?> +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + xmlns:fo="http://www.w3.org/1999/XSL/Format" + version='1.0'> + +<!-- ******************************************************************** + $Id: titlepage.xsl 8804 2010-08-09 16:41:43Z bobstayton $ + ******************************************************************** + + This file is part of the XSL DocBook Stylesheet distribution. + See ../README or http://docbook.sf.net/release/xsl/current/ for + copyright and other information. + + ******************************************************************** --> + +<!-- ==================================================================== --> + +<xsl:attribute-set name="book.titlepage.recto.style"> + <xsl:attribute name="font-family"> + <xsl:value-of select="$title.fontset"/> + </xsl:attribute> + <xsl:attribute name="font-weight">bold</xsl:attribute> + <xsl:attribute name="font-size">12pt</xsl:attribute> + <xsl:attribute name="text-align">center</xsl:attribute> +</xsl:attribute-set> + +<xsl:attribute-set name="book.titlepage.verso.style"> + <xsl:attribute name="font-size">10pt</xsl:attribute> +</xsl:attribute-set> + +<xsl:attribute-set name="article.titlepage.recto.style"/> +<xsl:attribute-set name="article.titlepage.verso.style"/> + +<xsl:attribute-set name="set.titlepage.recto.style"/> +<xsl:attribute-set name="set.titlepage.verso.style"/> + +<xsl:attribute-set name="part.titlepage.recto.style"> + <xsl:attribute name="text-align">center</xsl:attribute> +</xsl:attribute-set> + +<xsl:attribute-set name="part.titlepage.verso.style"/> + +<xsl:attribute-set name="partintro.titlepage.recto.style"/> +<xsl:attribute-set name="partintro.titlepage.verso.style"/> + +<xsl:attribute-set name="reference.titlepage.recto.style"/> +<xsl:attribute-set name="reference.titlepage.verso.style"/> + +<xsl:attribute-set name="dedication.titlepage.recto.style"/> +<xsl:attribute-set name="dedication.titlepage.verso.style"/> + +<xsl:attribute-set name="acknowledgements.titlepage.recto.style"/> +<xsl:attribute-set name="acknowledgements.titlepage.verso.style"/> + +<xsl:attribute-set name="preface.titlepage.recto.style"/> +<xsl:attribute-set name="preface.titlepage.verso.style"/> + +<xsl:attribute-set name="chapter.titlepage.recto.style"/> +<xsl:attribute-set name="chapter.titlepage.verso.style"/> + +<xsl:attribute-set name="appendix.titlepage.recto.style"/> +<xsl:attribute-set name="appendix.titlepage.verso.style"/> + +<xsl:attribute-set name="bibliography.titlepage.recto.style"/> +<xsl:attribute-set name="bibliography.titlepage.verso.style"/> + +<xsl:attribute-set name="bibliodiv.titlepage.recto.style"/> +<xsl:attribute-set name="bibliodiv.titlepage.verso.style"/> + +<xsl:attribute-set name="glossary.titlepage.recto.style"/> +<xsl:attribute-set name="glossary.titlepage.verso.style"/> + +<xsl:attribute-set name="glossdiv.titlepage.recto.style"/> +<xsl:attribute-set name="glossdiv.titlepage.verso.style"/> + +<xsl:attribute-set name="index.titlepage.recto.style"/> +<xsl:attribute-set name="index.titlepage.verso.style"/> + +<xsl:attribute-set name="setindex.titlepage.recto.style"/> +<xsl:attribute-set name="setindex.titlepage.verso.style"/> + +<xsl:attribute-set name="indexdiv.titlepage.recto.style"/> +<xsl:attribute-set name="indexdiv.titlepage.verso.style"/> + +<xsl:attribute-set name="colophon.titlepage.recto.style"/> +<xsl:attribute-set name="colophon.titlepage.verso.style"/> + +<xsl:attribute-set name="sidebar.titlepage.recto.style"/> +<xsl:attribute-set name="sidebar.titlepage.verso.style"/> + +<xsl:attribute-set name="qandaset.titlepage.recto.style"/> +<xsl:attribute-set name="qandaset.titlepage.verso.style"/> + +<xsl:attribute-set name="section.titlepage.recto.style"> + <xsl:attribute name="keep-together.within-column">always</xsl:attribute> +</xsl:attribute-set> + +<xsl:attribute-set name="section.titlepage.verso.style"> + <xsl:attribute name="keep-together.within-column">always</xsl:attribute> + <xsl:attribute name="keep-with-next.within-column">always</xsl:attribute> +</xsl:attribute-set> + +<xsl:attribute-set name="sect1.titlepage.recto.style" + use-attribute-sets="section.titlepage.recto.style"/> +<xsl:attribute-set name="sect1.titlepage.verso.style" + use-attribute-sets="section.titlepage.verso.style"/> + +<xsl:attribute-set name="sect2.titlepage.recto.style" + use-attribute-sets="section.titlepage.recto.style"/> +<xsl:attribute-set name="sect2.titlepage.verso.style" + use-attribute-sets="section.titlepage.verso.style"/> + +<xsl:attribute-set name="sect3.titlepage.recto.style" + use-attribute-sets="section.titlepage.recto.style"/> +<xsl:attribute-set name="sect3.titlepage.verso.style" + use-attribute-sets="section.titlepage.verso.style"/> + +<xsl:attribute-set name="sect4.titlepage.recto.style" + use-attribute-sets="section.titlepage.recto.style"/> +<xsl:attribute-set name="sect4.titlepage.verso.style" + use-attribute-sets="section.titlepage.verso.style"/> + +<xsl:attribute-set name="sect5.titlepage.recto.style" + use-attribute-sets="section.titlepage.recto.style"/> +<xsl:attribute-set name="sect5.titlepage.verso.style" + use-attribute-sets="section.titlepage.verso.style"/> + +<xsl:attribute-set name="simplesect.titlepage.recto.style" + use-attribute-sets="section.titlepage.recto.style"/> +<xsl:attribute-set name="simplesect.titlepage.verso.style" + use-attribute-sets="section.titlepage.verso.style"/> + +<xsl:attribute-set name="refnamediv.titlepage.recto.style" + use-attribute-sets="section.titlepage.recto.style"/> +<xsl:attribute-set name="refnamediv.titlepage.verso.style" + use-attribute-sets="section.titlepage.verso.style"/> + +<xsl:attribute-set name="refsynopsisdiv.titlepage.recto.style" + use-attribute-sets="section.titlepage.recto.style"/> +<xsl:attribute-set name="refsynopsisdiv.titlepage.verso.style" + use-attribute-sets="section.titlepage.verso.style"/> + +<xsl:attribute-set name="refsection.titlepage.recto.style" + use-attribute-sets="section.titlepage.recto.style"/> +<xsl:attribute-set name="refsection.titlepage.verso.style" + use-attribute-sets="section.titlepage.verso.style"/> + +<xsl:attribute-set name="refsect1.titlepage.recto.style" + use-attribute-sets="section.titlepage.recto.style"/> +<xsl:attribute-set name="refsect1.titlepage.verso.style" + use-attribute-sets="section.titlepage.verso.style"/> + +<xsl:attribute-set name="refsect2.titlepage.recto.style" + use-attribute-sets="section.titlepage.recto.style"/> +<xsl:attribute-set name="refsect2.titlepage.verso.style" + use-attribute-sets="section.titlepage.verso.style"/> + +<xsl:attribute-set name="refsect3.titlepage.recto.style" + use-attribute-sets="section.titlepage.recto.style"/> +<xsl:attribute-set name="refsect3.titlepage.verso.style" + use-attribute-sets="section.titlepage.verso.style"/> + +<xsl:attribute-set name="table.of.contents.titlepage.recto.style"/> +<xsl:attribute-set name="table.of.contents.titlepage.verso.style"/> + +<xsl:attribute-set name="list.of.tables.titlepage.recto.style"/> +<xsl:attribute-set name="list.of.tables.contents.titlepage.verso.style"/> + +<xsl:attribute-set name="list.of.figures.titlepage.recto.style"/> +<xsl:attribute-set name="list.of.figures.contents.titlepage.verso.style"/> + +<xsl:attribute-set name="list.of.equations.titlepage.recto.style"/> +<xsl:attribute-set name="list.of.equations.contents.titlepage.verso.style"/> + +<xsl:attribute-set name="list.of.examples.titlepage.recto.style"/> +<xsl:attribute-set name="list.of.examples.contents.titlepage.verso.style"/> + +<xsl:attribute-set name="list.of.procedures.titlepage.recto.style"/> +<xsl:attribute-set name="list.of.procedures.contents.titlepage.verso.style"/> + +<xsl:attribute-set name="list.of.unknowns.titlepage.recto.style"/> +<xsl:attribute-set name="list.of.unknowns.contents.titlepage.verso.style"/> + +<!-- ==================================================================== --> + +<xsl:template match="*" mode="titlepage.mode"> + <!-- if an element isn't found in this mode, try the default mode --> + <xsl:apply-templates select="."/> +</xsl:template> + +<xsl:template match="abbrev" mode="titlepage.mode"> + <xsl:apply-templates mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="abstract" mode="titlepage.mode"> + <fo:block xsl:use-attribute-sets="abstract.properties"> + <fo:block xsl:use-attribute-sets="abstract.title.properties"> + <xsl:choose> + <xsl:when test="title|info/title"> + <xsl:apply-templates select="title|info/title"/> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="gentext"> + <xsl:with-param name="key" select="'Abstract'"/> + </xsl:call-template> + </xsl:otherwise> + </xsl:choose> + </fo:block> + <xsl:apply-templates select="*[not(self::title)]" mode="titlepage.mode"/> + </fo:block> +</xsl:template> + +<xsl:template match="abstract/title" mode="titlepage.mode"/> + +<xsl:template match="abstract/title" mode="titlepage.abstract.title.mode"> + <xsl:apply-templates mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="address" mode="titlepage.mode"> + <!-- use the normal address handling code --> + <xsl:apply-templates select="."/> +</xsl:template> + +<xsl:template match="affiliation" mode="titlepage.mode"> + <fo:block> + <xsl:apply-templates mode="titlepage.mode"/> + </fo:block> +</xsl:template> + +<xsl:template match="artpagenums" mode="titlepage.mode"> + <xsl:apply-templates mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="author" mode="titlepage.mode"> + <fo:block> + <xsl:call-template name="anchor"/> + <xsl:choose> + <xsl:when test="orgname"> + <xsl:apply-templates/> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="person.name"/> + <xsl:if test="affiliation/orgname"> + <xsl:text>, </xsl:text> + <xsl:apply-templates select="affiliation/orgname" mode="titlepage.mode"/> + </xsl:if> + <xsl:if test="email|affiliation/address/email"> + <xsl:text> </xsl:text> + <xsl:apply-templates select="(email|affiliation/address/email)[1]"/> + </xsl:if> + </xsl:otherwise> + </xsl:choose> + </fo:block> +</xsl:template> + +<xsl:template match="authorblurb" mode="titlepage.mode"> + <xsl:apply-templates mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="authorgroup" mode="titlepage.mode"> + <fo:wrapper> + <xsl:call-template name="anchor"/> + <xsl:apply-templates mode="titlepage.mode"/> + </fo:wrapper> +</xsl:template> + +<xsl:template match="authorinitials" mode="titlepage.mode"> + <xsl:apply-templates mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="bibliomisc" mode="titlepage.mode"> + <xsl:apply-templates mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="bibliomset" mode="titlepage.mode"> + <xsl:apply-templates mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="collab" mode="titlepage.mode"> + <xsl:apply-templates mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="confgroup" mode="titlepage.mode"> + <fo:block> + <xsl:apply-templates mode="titlepage.mode"/> + </fo:block> +</xsl:template> + +<xsl:template match="confdates" mode="titlepage.mode"> + <fo:block> + <xsl:apply-templates mode="titlepage.mode"/> + </fo:block> +</xsl:template> + +<xsl:template match="conftitle" mode="titlepage.mode"> + <fo:block> + <xsl:apply-templates mode="titlepage.mode"/> + </fo:block> +</xsl:template> + +<xsl:template match="confnum" mode="titlepage.mode"> + <!-- suppress --> +</xsl:template> + +<xsl:template match="contractnum" mode="titlepage.mode"> + <xsl:apply-templates mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="contractsponsor" mode="titlepage.mode"> + <xsl:apply-templates mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="contrib" mode="titlepage.mode"> + <xsl:apply-templates mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="copyright" mode="titlepage.mode"> + <xsl:call-template name="gentext"> + <xsl:with-param name="key" select="'Copyright'"/> + </xsl:call-template> + <xsl:call-template name="gentext.space"/> + <xsl:call-template name="dingbat"> + <xsl:with-param name="dingbat">copyright</xsl:with-param> + </xsl:call-template> + <xsl:call-template name="gentext.space"/> + <xsl:call-template name="copyright.years"> + <xsl:with-param name="years" select="year"/> + <xsl:with-param name="print.ranges" select="$make.year.ranges"/> + <xsl:with-param name="single.year.ranges" + select="$make.single.year.ranges"/> + </xsl:call-template> + <xsl:call-template name="gentext.space"/> + <xsl:apply-templates select="holder" mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="year" mode="titlepage.mode"> + <xsl:apply-templates/> +</xsl:template> + +<xsl:template match="holder" mode="titlepage.mode"> + <xsl:apply-templates/> + <xsl:if test="position() < last()"> + <xsl:text>, </xsl:text> + </xsl:if> +</xsl:template> + +<xsl:template match="corpauthor" mode="titlepage.mode"> + <xsl:apply-templates mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="corpcredit" mode="titlepage.mode"> + <xsl:apply-templates mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="corpname" mode="titlepage.mode"> + <xsl:apply-templates mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="date" mode="titlepage.mode"> + <xsl:apply-templates mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="edition" mode="titlepage.mode"> + <xsl:apply-templates mode="titlepage.mode"/> + <xsl:call-template name="gentext.space"/> + <xsl:call-template name="gentext"> + <xsl:with-param name="key" select="'Edition'"/> + </xsl:call-template> +</xsl:template> + +<xsl:template match="editor" mode="titlepage.mode"> + <!-- The first editor is dealt with in the following template, + which in turn displays all editors of the same mode. --> +</xsl:template> + +<xsl:template match="editor[1]" priority="2" mode="titlepage.mode"> + <xsl:call-template name="gentext.edited.by"/> + <xsl:call-template name="gentext.space"/> + <xsl:call-template name="person.name.list"> + <xsl:with-param name="person.list" select="../editor"/> + </xsl:call-template> +</xsl:template> + +<xsl:template match="firstname" mode="titlepage.mode"> + <xsl:apply-templates mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="graphic" mode="titlepage.mode"> + <!-- use the normal graphic handling code --> + <xsl:apply-templates select="."/> +</xsl:template> + +<xsl:template match="honorific" mode="titlepage.mode"> + <xsl:apply-templates mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="isbn" mode="titlepage.mode"> + <xsl:apply-templates mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="issn" mode="titlepage.mode"> + <xsl:apply-templates mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="biblioid" mode="titlepage.mode"> + <xsl:apply-templates mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="itermset" mode="titlepage.mode"> + <!-- discard --> +</xsl:template> + +<xsl:template match="invpartnumber" mode="titlepage.mode"> + <xsl:apply-templates mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="issuenum" mode="titlepage.mode"> + <xsl:apply-templates mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="jobtitle" mode="titlepage.mode"> + <fo:block> + <xsl:apply-templates mode="titlepage.mode"/> + </fo:block> +</xsl:template> + +<xsl:template match="keywordset" mode="titlepage.mode"> +</xsl:template> + +<xsl:template match="legalnotice" mode="titlepage.mode"> + + <xsl:variable name="id"> + <xsl:call-template name="object.id"/> + </xsl:variable> + + <fo:block id="{$id}"> + <xsl:if test="title"> <!-- FIXME: add param for using default title? --> + <xsl:call-template name="formal.object.heading"/> + </xsl:if> + <xsl:apply-templates mode="titlepage.mode"/> + </fo:block> +</xsl:template> + +<xsl:template match="legalnotice/title" mode="titlepage.mode"> +</xsl:template> + +<xsl:template match="lineage" mode="titlepage.mode"> + <xsl:apply-templates mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="modespec" mode="titlepage.mode"> + <!-- discard --> +</xsl:template> + +<xsl:template match="orgdiv" mode="titlepage.mode"> + <xsl:if test="preceding-sibling::*[1][self::orgname]"> + <xsl:text> </xsl:text> + </xsl:if> + <xsl:apply-templates mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="orgname" mode="titlepage.mode"> + <xsl:apply-templates mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="othercredit" mode="titlepage.mode"> + <xsl:variable name="contrib" select="string(contrib)"/> + <xsl:choose> + <xsl:when test="contrib"> + <xsl:if test="not(preceding-sibling::othercredit[string(contrib)=$contrib])"> + <fo:block> + <xsl:apply-templates mode="titlepage.mode" select="contrib"/> + <xsl:text>: </xsl:text> + <xsl:call-template name="person.name"/> + <xsl:apply-templates mode="titlepage.mode" select="affiliation"/> + <xsl:apply-templates select="following-sibling::othercredit[string(contrib)=$contrib]" mode="titlepage.othercredits"/> + </fo:block> + </xsl:if> + </xsl:when> + <xsl:otherwise> + <fo:block><xsl:call-template name="person.name"/></fo:block> + <xsl:apply-templates mode="titlepage.mode" select="./affiliation"/> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template match="othercredit" mode="titlepage.othercredits"> + <xsl:text>, </xsl:text> + <xsl:call-template name="person.name"/> +</xsl:template> + +<xsl:template match="othername" mode="titlepage.mode"> + <xsl:apply-templates mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="pagenums" mode="titlepage.mode"> + <xsl:apply-templates mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="printhistory" mode="titlepage.mode"> + <xsl:apply-templates mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="productname" mode="titlepage.mode"> + <xsl:apply-templates mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="productnumber" mode="titlepage.mode"> + <xsl:apply-templates mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="pubdate" mode="titlepage.mode"> + <xsl:apply-templates mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="publisher" mode="titlepage.mode"> + <fo:block> + <xsl:apply-templates mode="titlepage.mode"/> + </fo:block> +</xsl:template> + +<xsl:template match="publishername" mode="titlepage.mode"> + <xsl:apply-templates mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="pubsnumber" mode="titlepage.mode"> + <xsl:apply-templates mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="releaseinfo" mode="titlepage.mode"> + <xsl:apply-templates mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="revhistory" mode="titlepage.mode"> + + <xsl:variable name="explicit.table.width"> + <xsl:call-template name="pi.dbfo_table-width"/> + </xsl:variable> + + <xsl:variable name="table.width"> + <xsl:choose> + <xsl:when test="$explicit.table.width != ''"> + <xsl:value-of select="$explicit.table.width"/> + </xsl:when> + <xsl:when test="$default.table.width = ''"> + <xsl:text>100%</xsl:text> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="$default.table.width"/> + </xsl:otherwise> + </xsl:choose> + </xsl:variable> + + <fo:table table-layout="fixed" width="{$table.width}" xsl:use-attribute-sets="revhistory.table.properties"> + <fo:table-column column-number="1" column-width="proportional-column-width(1)"/> + <fo:table-column column-number="2" column-width="proportional-column-width(1)"/> + <fo:table-column column-number="3" column-width="proportional-column-width(1)"/> + <fo:table-body start-indent="0pt" end-indent="0pt"> + <fo:table-row> + <fo:table-cell number-columns-spanned="3" xsl:use-attribute-sets="revhistory.table.cell.properties"> + <fo:block xsl:use-attribute-sets="revhistory.title.properties"> + <xsl:choose> + <xsl:when test="title|info/title"> + <xsl:apply-templates select="title|info/title" mode="titlepage.mode"/> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="gentext"> + <xsl:with-param name="key" select="'RevHistory'"/> + </xsl:call-template> + </xsl:otherwise> + </xsl:choose> + </fo:block> + </fo:table-cell> + </fo:table-row> + <xsl:apply-templates select="*[not(self::title)]" mode="titlepage.mode"/> + </fo:table-body> + </fo:table> + +</xsl:template> + + +<xsl:template match="revhistory/revision" mode="titlepage.mode"> + <xsl:variable name="revnumber" select="revnumber"/> + <xsl:variable name="revdate" select="date"/> + <xsl:variable name="revauthor" select="authorinitials|author"/> + <xsl:variable name="revremark" select="revremark|revdescription"/> + <fo:table-row> + <fo:table-cell xsl:use-attribute-sets="revhistory.table.cell.properties"> + <fo:block> + <xsl:if test="$revnumber"> + <xsl:call-template name="gentext"> + <xsl:with-param name="key" select="'Revision'"/> + </xsl:call-template> + <xsl:call-template name="gentext.space"/> + <xsl:apply-templates select="$revnumber[1]" mode="titlepage.mode"/> + </xsl:if> + </fo:block> + </fo:table-cell> + <fo:table-cell xsl:use-attribute-sets="revhistory.table.cell.properties"> + <fo:block> + <xsl:apply-templates select="$revdate[1]" mode="titlepage.mode"/> + </fo:block> + </fo:table-cell> + <fo:table-cell xsl:use-attribute-sets="revhistory.table.cell.properties"> + <fo:block> + <xsl:for-each select="$revauthor"> + <xsl:apply-templates select="." mode="titlepage.mode"/> + <xsl:if test="position() != last()"> + <xsl:text>, </xsl:text> + </xsl:if> + </xsl:for-each> + </fo:block> + </fo:table-cell> + </fo:table-row> + <xsl:if test="$revremark"> + <fo:table-row> + <fo:table-cell number-columns-spanned="3" xsl:use-attribute-sets="revhistory.table.cell.properties"> + <fo:block> + <xsl:apply-templates select="$revremark[1]" mode="titlepage.mode"/> + </fo:block> + </fo:table-cell> + </fo:table-row> + </xsl:if> +</xsl:template> + +<xsl:template match="revision/revnumber" mode="titlepage.mode"> + <xsl:apply-templates mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="revision/date" mode="titlepage.mode"> + <xsl:apply-templates mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="revision/authorinitials" mode="titlepage.mode"> + <xsl:apply-templates mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="revision/author" mode="titlepage.mode"> + <xsl:apply-templates mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="revision/revremark" mode="titlepage.mode"> + <xsl:apply-templates mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="revision/revdescription" mode="titlepage.mode"> + <xsl:apply-templates mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="seriesvolnums" mode="titlepage.mode"> + <xsl:apply-templates mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="shortaffil" mode="titlepage.mode"> + <xsl:apply-templates mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="subjectset" mode="titlepage.mode"> + <!-- discard --> +</xsl:template> + +<xsl:template match="subtitle" mode="titlepage.mode"> + <xsl:apply-templates mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="surname" mode="titlepage.mode"> + <xsl:apply-templates mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="title" mode="titlepage.mode"> + <xsl:apply-templates mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="titleabbrev" mode="titlepage.mode"> + <xsl:apply-templates mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="volumenum" mode="titlepage.mode"> + <xsl:apply-templates mode="titlepage.mode"/> +</xsl:template> + +<!-- ==================================================================== --> +<!-- Book templates --> + +<!-- Note: these templates cannot use *.titlepage.recto.mode or + *.titlepage.verso.mode. If they do then subsequent use of a custom + titlepage.templates.xml file will not work correctly. --> + +<!-- book recto --> + +<xsl:template match="bookinfo/authorgroup|book/info/authorgroup" + mode="titlepage.mode" priority="2"> + <fo:block> + <xsl:call-template name="anchor"/> + <xsl:apply-templates mode="titlepage.mode"/> + </fo:block> +</xsl:template> + +<!-- book verso --> + +<xsl:template name="book.verso.title"> + <fo:block> + <xsl:apply-templates mode="titlepage.mode"/> + + <xsl:if test="following-sibling::subtitle + |following-sibling::info/subtitle + |following-sibling::bookinfo/subtitle"> + <xsl:text>: </xsl:text> + + <xsl:apply-templates select="(following-sibling::subtitle + |following-sibling::info/subtitle + |following-sibling::bookinfo/subtitle)[1]" + mode="book.verso.subtitle.mode"/> + </xsl:if> + </fo:block> +</xsl:template> + +<xsl:template match="subtitle" mode="book.verso.subtitle.mode"> + <xsl:apply-templates mode="titlepage.mode"/> + <xsl:if test="following-sibling::subtitle"> + <xsl:text>: </xsl:text> + <xsl:apply-templates select="following-sibling::subtitle[1]" + mode="book.verso.subtitle.mode"/> + </xsl:if> +</xsl:template> + +<xsl:template name="verso.authorgroup"> + <fo:block> + <xsl:call-template name="gentext"> + <xsl:with-param name="key" select="'by'"/> + </xsl:call-template> + <xsl:text> </xsl:text> + <xsl:call-template name="person.name.list"> + <xsl:with-param name="person.list" select="author|corpauthor|editor"/> + </xsl:call-template> + </fo:block> + <xsl:apply-templates select="othercredit" mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="bookinfo/author|book/info/author" + mode="titlepage.mode" priority="2"> + <fo:block> + <xsl:call-template name="person.name"/> + </fo:block> +</xsl:template> + +<xsl:template match="bookinfo/corpauthor|book/info/corpauthor" + mode="titlepage.mode" priority="2"> + <fo:block> + <xsl:apply-templates/> + </fo:block> +</xsl:template> + +<xsl:template match="bookinfo/pubdate|book/info/pubdate" + mode="titlepage.mode" priority="2"> + <fo:block> + <xsl:call-template name="gentext"> + <xsl:with-param name="key" select="'pubdate'"/> + </xsl:call-template> + <xsl:text> </xsl:text> + <xsl:apply-templates mode="titlepage.mode"/> + </fo:block> +</xsl:template> + +<!-- ==================================================================== --> + +</xsl:stylesheet> diff --git a/docbook-xsl-1.76.1/fo/toc.xsl b/docbook-xsl-1.76.1/fo/toc.xsl new file mode 100644 index 0000000..cf32724 --- /dev/null +++ b/docbook-xsl-1.76.1/fo/toc.xsl @@ -0,0 +1,332 @@ +<?xml version='1.0'?> +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + xmlns:fo="http://www.w3.org/1999/XSL/Format" + version='1.0'> + +<!-- ******************************************************************** + $Id: toc.xsl 8323 2009-03-12 22:52:17Z bobstayton $ + ******************************************************************** + + This file is part of the XSL DocBook Stylesheet distribution. + See ../README or http://docbook.sf.net/release/xsl/current/ for + copyright and other information. + + ******************************************************************** --> + +<!-- ==================================================================== --> + +<!-- only set, book and part puts toc in its own page sequence --> + +<xsl:template match="set/toc | book/toc | part/toc"> + <xsl:variable name="toc.params"> + <xsl:call-template name="find.path.params"> + <xsl:with-param name="node" select="parent::*"/> + <xsl:with-param name="table" select="normalize-space($generate.toc)"/> + </xsl:call-template> + </xsl:variable> + + <!-- Do not output the toc element if one is already generated + by the use of $generate.toc parameter, or if + generating a source toc is turned off --> + <xsl:if test="not(contains($toc.params, 'toc')) and + ($process.source.toc != 0 or $process.empty.source.toc != 0)"> + <!-- Don't generate a page sequence unless there is content --> + <xsl:variable name="content"> + <xsl:choose> + <xsl:when test="* and $process.source.toc != 0"> + <xsl:apply-templates /> + </xsl:when> + <xsl:when test="count(*) = 0 and $process.empty.source.toc != 0"> + <!-- trick to switch context node to parent element --> + <xsl:for-each select="parent::*"> + <xsl:choose> + <xsl:when test="self::set"> + <xsl:call-template name="set.toc"> + <xsl:with-param name="toc.title.p" + select="contains($toc.params, 'title')"/> + </xsl:call-template> + </xsl:when> + <xsl:when test="self::book"> + <xsl:call-template name="division.toc"> + <xsl:with-param name="toc.title.p" + select="contains($toc.params, 'title')"/> + </xsl:call-template> + </xsl:when> + <xsl:when test="self::part"> + <xsl:call-template name="division.toc"> + <xsl:with-param name="toc.title.p" + select="contains($toc.params, 'title')"/> + </xsl:call-template> + </xsl:when> + </xsl:choose> + </xsl:for-each> + </xsl:when> + </xsl:choose> + </xsl:variable> + + <xsl:if test="string-length(normalize-space($content)) != 0"> + <xsl:variable name="lot-master-reference"> + <xsl:call-template name="select.pagemaster"> + <xsl:with-param name="pageclass" select="'lot'"/> + </xsl:call-template> + </xsl:variable> + + <xsl:call-template name="page.sequence"> + <xsl:with-param name="master-reference" + select="$lot-master-reference"/> + <xsl:with-param name="element" select="'toc'"/> + <xsl:with-param name="gentext-key" select="'TableofContents'"/> + <xsl:with-param name="content" select="$content"/> + </xsl:call-template> + </xsl:if> + </xsl:if> +</xsl:template> + +<xsl:template match="chapter/toc | appendix/toc | preface/toc | article/toc"> + <xsl:variable name="toc.params"> + <xsl:call-template name="find.path.params"> + <xsl:with-param name="node" select="parent::*"/> + <xsl:with-param name="table" select="normalize-space($generate.toc)"/> + </xsl:call-template> + </xsl:variable> + + <!-- Do not output the toc element if one is already generated + by the use of $generate.toc parameter, or if + generating a source toc is turned off --> + <xsl:if test="not(contains($toc.params, 'toc')) and + ($process.source.toc != 0 or $process.empty.source.toc != 0)"> + <xsl:choose> + <xsl:when test="* and $process.source.toc != 0"> + <fo:block> + <xsl:apply-templates/> + </fo:block> + </xsl:when> + <xsl:when test="count(*) = 0 and $process.empty.source.toc != 0"> + <!-- trick to switch context node to section element --> + <xsl:for-each select="parent::*"> + <xsl:call-template name="component.toc"> + <xsl:with-param name="toc.title.p" + select="contains($toc.params, 'title')"/> + </xsl:call-template> + </xsl:for-each> + </xsl:when> + </xsl:choose> + <xsl:call-template name="component.toc.separator"/> + </xsl:if> +</xsl:template> + +<xsl:template match="section/toc + |sect1/toc + |sect2/toc + |sect3/toc + |sect4/toc + |sect5/toc"> + + <xsl:variable name="toc.params"> + <xsl:call-template name="find.path.params"> + <xsl:with-param name="node" select="parent::*"/> + <xsl:with-param name="table" select="normalize-space($generate.toc)"/> + </xsl:call-template> + </xsl:variable> + + <!-- Do not output the toc element if one is already generated + by the use of $generate.toc parameter, or if + generating a source toc is turned off --> + <xsl:if test="not(contains($toc.params, 'toc')) and + ($process.source.toc != 0 or $process.empty.source.toc != 0)"> + <xsl:choose> + <xsl:when test="* and $process.source.toc != 0"> + <fo:block> + <xsl:apply-templates/> + </fo:block> + </xsl:when> + <xsl:when test="count(*) = 0 and $process.empty.source.toc != 0"> + <!-- trick to switch context node to section element --> + <xsl:for-each select="parent::*"> + <xsl:call-template name="section.toc"> + <xsl:with-param name="toc.title.p" + select="contains($toc.params, 'title')"/> + </xsl:call-template> + </xsl:for-each> + </xsl:when> + </xsl:choose> + <xsl:call-template name="section.toc.separator"/> + </xsl:if> +</xsl:template> + +<!-- ==================================================================== --> + +<xsl:template match="tocpart|tocchap + |toclevel1|toclevel2|toclevel3|toclevel4|toclevel5"> + <xsl:apply-templates select="tocentry"/> + <xsl:if test="tocchap|toclevel1|toclevel2|toclevel3|toclevel4|toclevel5"> + <fo:block start-indent="{count(ancestor::*)*2}pc"> + <xsl:apply-templates select="tocchap|toclevel1|toclevel2|toclevel3|toclevel4|toclevel5"/> + </fo:block> + </xsl:if> +</xsl:template> + +<xsl:template match="tocentry|lotentry|tocdiv|tocfront|tocback"> + <fo:block text-align-last="justify" + end-indent="2pc" + last-line-end-indent="-2pc"> + <fo:inline keep-with-next.within-line="always"> + <xsl:choose> + <xsl:when test="@linkend"> + <fo:basic-link internal-destination="{@linkend}"> + <xsl:apply-templates/> + </fo:basic-link> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates/> + </xsl:otherwise> + </xsl:choose> + </fo:inline> + + <xsl:choose> + <xsl:when test="@linkend"> + <fo:inline keep-together.within-line="always"> + <xsl:text> </xsl:text> + <fo:leader leader-pattern="dots" + keep-with-next.within-line="always"/> + <xsl:text> </xsl:text> + <fo:basic-link internal-destination="{@linkend}"> + <xsl:choose> + <xsl:when test="@pagenum"> + <xsl:value-of select="@pagenum"/> + </xsl:when> + <xsl:otherwise> + <fo:page-number-citation ref-id="{@linkend}"/> + </xsl:otherwise> + </xsl:choose> + </fo:basic-link> + </fo:inline> + </xsl:when> + <xsl:when test="@pagenum"> + <fo:inline keep-together.within-line="always"> + <xsl:text> </xsl:text> + <fo:leader leader-pattern="dots" + keep-with-next.within-line="always"/> + <xsl:text> </xsl:text> + <xsl:value-of select="@pagenum"/> + </fo:inline> + </xsl:when> + <xsl:otherwise> + <!-- just the leaders, what else can I do? --> + <fo:inline keep-together.within-line="always"> + <xsl:text> </xsl:text> + <fo:leader leader-pattern="space" + keep-with-next.within-line="always"/> + </fo:inline> + </xsl:otherwise> + </xsl:choose> + </fo:block> +</xsl:template> + +<xsl:template match="toc/title"> + <fo:block font-weight="bold"> + <xsl:apply-templates/> + </fo:block> +</xsl:template> + +<xsl:template match="toc/subtitle"> + <fo:block font-weight="bold"> + <xsl:apply-templates/> + </fo:block> +</xsl:template> + +<xsl:template match="toc/titleabbrev"> +</xsl:template> + +<!-- ==================================================================== --> + +<!-- A lot element must have content, because there is no attribute + to select what kind of list should be generated --> +<xsl:template match="book/lot | part/lot"> + <!-- Don't generate a page sequence unless there is content --> + <xsl:variable name="content"> + <xsl:choose> + <xsl:when test="* and $process.source.toc != 0"> + <xsl:apply-templates /> + </xsl:when> + <xsl:when test="not(child::*) and $process.empty.source.toc != 0"> + <xsl:call-template name="process.empty.lot"/> + </xsl:when> + </xsl:choose> + </xsl:variable> + + <xsl:if test="string-length(normalize-space($content)) != 0"> + <xsl:variable name="lot-master-reference"> + <xsl:call-template name="select.pagemaster"> + <xsl:with-param name="pageclass" select="'lot'"/> + </xsl:call-template> + </xsl:variable> + + <xsl:call-template name="page.sequence"> + <xsl:with-param name="master-reference" + select="$lot-master-reference"/> + <xsl:with-param name="element" select="'toc'"/> + <xsl:with-param name="content" select="$content"/> + </xsl:call-template> + </xsl:if> +</xsl:template> + +<xsl:template match="chapter/lot | appendix/lot | preface/lot | article/lot"> + <xsl:choose> + <xsl:when test="* and $process.source.toc != 0"> + <fo:block> + <xsl:apply-templates/> + </fo:block> + <xsl:call-template name="component.toc.separator"/> + </xsl:when> + <xsl:when test="not(child::*) and $process.empty.source.toc != 0"> + <xsl:call-template name="process.empty.lot"/> + </xsl:when> + </xsl:choose> +</xsl:template> + +<xsl:template match="section/lot + |sect1/lot + |sect2/lot + |sect3/lot + |sect4/lot + |sect5/lot"> + <xsl:choose> + <xsl:when test="* and $process.source.toc != 0"> + <fo:block> + <xsl:apply-templates/> + </fo:block> + <xsl:call-template name="section.toc.separator"/> + </xsl:when> + <xsl:when test="not(child::*) and $process.empty.source.toc != 0"> + <xsl:call-template name="process.empty.lot"/> + </xsl:when> + </xsl:choose> +</xsl:template> + +<xsl:template name="process.empty.lot"> + <!-- An empty lot element does not provide any information to indicate + what should be included in it. You can customize this + template to generate a lot based on @role or something --> + <xsl:message> + <xsl:text>Warning: don't know what to generate for </xsl:text> + <xsl:text>lot that has no children.</xsl:text> + </xsl:message> +</xsl:template> + +<xsl:template match="lot/title"> + <fo:block font-weight="bold"> + <xsl:apply-templates/> + </fo:block> +</xsl:template> + +<xsl:template match="lot/subtitle"> + <fo:block font-weight="bold"> + <xsl:apply-templates/> + </fo:block> +</xsl:template> + +<xsl:template match="lot/titleabbrev"> +</xsl:template> + +</xsl:stylesheet> diff --git a/docbook-xsl-1.76.1/fo/verbatim.xsl b/docbook-xsl-1.76.1/fo/verbatim.xsl new file mode 100644 index 0000000..098489a --- /dev/null +++ b/docbook-xsl-1.76.1/fo/verbatim.xsl @@ -0,0 +1,465 @@ +<?xml version='1.0'?> +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + xmlns:fo="http://www.w3.org/1999/XSL/Format" + xmlns:sverb="http://nwalsh.com/xslt/ext/com.nwalsh.saxon.Verbatim" + xmlns:xverb="com.nwalsh.xalan.Verbatim" + xmlns:lxslt="http://xml.apache.org/xslt" + xmlns:exsl="http://exslt.org/common" + exclude-result-prefixes="sverb xverb lxslt exsl" + version='1.0'> + +<!-- ******************************************************************** + $Id: verbatim.xsl 8344 2009-03-16 06:35:43Z bobstayton $ + ******************************************************************** + + This file is part of the XSL DocBook Stylesheet distribution. + See ../README or http://docbook.sf.net/release/xsl/current/ for + copyright and other information. + + ******************************************************************** --> + +<!-- XSLTHL highlighting is turned off by default. See highlighting/README + for instructions on how to turn on XSLTHL --> +<xsl:template name="apply-highlighting"> + <xsl:apply-templates/> +</xsl:template> + +<lxslt:component prefix="xverb" + functions="numberLines"/> + +<xsl:template match="programlisting|screen|synopsis"> + <xsl:param name="suppress-numbers" select="'0'"/> + <xsl:variable name="id"><xsl:call-template name="object.id"/></xsl:variable> + + <xsl:variable name="content"> + <xsl:choose> + <xsl:when test="$suppress-numbers = '0' + and @linenumbering = 'numbered' + and $use.extensions != '0' + and $linenumbering.extension != '0'"> + <xsl:call-template name="number.rtf.lines"> + <xsl:with-param name="rtf"> + <xsl:choose> + <xsl:when test="$highlight.source != 0"> + <xsl:call-template name="apply-highlighting"/> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates/> + </xsl:otherwise> + </xsl:choose> + </xsl:with-param> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:choose> + <xsl:when test="$highlight.source != 0"> + <xsl:call-template name="apply-highlighting"/> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates/> + </xsl:otherwise> + </xsl:choose> + </xsl:otherwise> + </xsl:choose> + </xsl:variable> + + <xsl:variable name="block.content"> + <xsl:choose> + <xsl:when test="$shade.verbatim != 0"> + <fo:block id="{$id}" + xsl:use-attribute-sets="monospace.verbatim.properties shade.verbatim.style"> + <xsl:choose> + <xsl:when test="$hyphenate.verbatim != 0 and + $exsl.node.set.available != 0"> + <xsl:apply-templates select="exsl:node-set($content)" + mode="hyphenate.verbatim"/> + </xsl:when> + <xsl:otherwise> + <xsl:copy-of select="$content"/> + </xsl:otherwise> + </xsl:choose> + </fo:block> + </xsl:when> + <xsl:otherwise> + <fo:block id="{$id}" + xsl:use-attribute-sets="monospace.verbatim.properties"> + <xsl:choose> + <xsl:when test="$hyphenate.verbatim != 0 and + $exsl.node.set.available != 0"> + <xsl:apply-templates select="exsl:node-set($content)" + mode="hyphenate.verbatim"/> + </xsl:when> + <xsl:otherwise> + <xsl:copy-of select="$content"/> + </xsl:otherwise> + </xsl:choose> + </fo:block> + </xsl:otherwise> + </xsl:choose> + </xsl:variable> + + <xsl:choose> + <!-- Need a block-container for these features --> + <xsl:when test="@width != '' or + (self::programlisting and + starts-with($writing.mode, 'rl'))"> + <fo:block-container start-indent="0pt" end-indent="0pt"> + <xsl:if test="@width != ''"> + <xsl:attribute name="width"> + <xsl:value-of select="concat(@width, '*', $monospace.verbatim.font.width)"/> + </xsl:attribute> + </xsl:if> + <!-- All known program code is left-to-right --> + <xsl:if test="self::programlisting and + starts-with($writing.mode, 'rl')"> + <xsl:attribute name="writing-mode">lr-tb</xsl:attribute> + </xsl:if> + <xsl:copy-of select="$block.content"/> + </fo:block-container> + </xsl:when> + <xsl:otherwise> + <xsl:copy-of select="$block.content"/> + </xsl:otherwise> + </xsl:choose> + +</xsl:template> + +<xsl:template match="literallayout"> + <xsl:param name="suppress-numbers" select="'0'"/> + + <xsl:variable name="id"><xsl:call-template name="object.id"/></xsl:variable> + + <xsl:variable name="content"> + <xsl:choose> + <xsl:when test="$suppress-numbers = '0' + and @linenumbering = 'numbered' + and $use.extensions != '0' + and $linenumbering.extension != '0'"> + <xsl:call-template name="number.rtf.lines"> + <xsl:with-param name="rtf"> + <xsl:apply-templates/> + </xsl:with-param> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates/> + </xsl:otherwise> + </xsl:choose> + </xsl:variable> + + <xsl:choose> + <xsl:when test="@class='monospaced'"> + <xsl:choose> + <xsl:when test="$shade.verbatim != 0"> + <fo:block id="{$id}" + xsl:use-attribute-sets="monospace.verbatim.properties shade.verbatim.style"> + + <xsl:copy-of select="$content"/> + </fo:block> + </xsl:when> + <xsl:otherwise> + <fo:block id="{$id}" + xsl:use-attribute-sets="monospace.verbatim.properties"> + <xsl:copy-of select="$content"/> + </fo:block> + </xsl:otherwise> + </xsl:choose> + </xsl:when> + <xsl:otherwise> + <xsl:choose> + <xsl:when test="$shade.verbatim != 0"> + <fo:block id="{$id}" + xsl:use-attribute-sets="verbatim.properties shade.verbatim.style"> + <xsl:copy-of select="$content"/> + </fo:block> + </xsl:when> + <xsl:otherwise> + <fo:block id="{$id}" + xsl:use-attribute-sets="verbatim.properties"> + <xsl:copy-of select="$content"/> + </fo:block> + </xsl:otherwise> + </xsl:choose> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template match="address"> + <xsl:param name="suppress-numbers" select="'0'"/> + + <xsl:variable name="content"> + <xsl:choose> + <xsl:when test="$suppress-numbers = '0' + and @linenumbering = 'numbered' + and $use.extensions != '0' + and $linenumbering.extension != '0'"> + <xsl:call-template name="number.rtf.lines"> + <xsl:with-param name="rtf"> + <xsl:apply-templates/> + </xsl:with-param> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates/> + </xsl:otherwise> + </xsl:choose> + </xsl:variable> + + <fo:block xsl:use-attribute-sets="verbatim.properties"> + <xsl:copy-of select="$content"/> + </fo:block> +</xsl:template> + +<xsl:template name="number.rtf.lines"> + <xsl:param name="rtf" select="''"/> + <xsl:param name="pi.context" select="."/> + + <!-- Save the global values --> + <xsl:variable name="global.linenumbering.everyNth" + select="$linenumbering.everyNth"/> + + <xsl:variable name="global.linenumbering.separator" + select="$linenumbering.separator"/> + + <xsl:variable name="global.linenumbering.width" + select="$linenumbering.width"/> + + <!-- Extract the <?dbfo linenumbering.*?> PI values --> + <xsl:variable name="pi.linenumbering.everyNth"> + <xsl:call-template name="pi.dbfo_linenumbering.everyNth"> + <xsl:with-param name="node" select="$pi.context"/> + </xsl:call-template> + </xsl:variable> + + <xsl:variable name="pi.linenumbering.separator"> + <xsl:call-template name="pi.dbfo_linenumbering.separator"> + <xsl:with-param name="node" select="$pi.context"/> + </xsl:call-template> + </xsl:variable> + + <xsl:variable name="pi.linenumbering.width"> + <xsl:call-template name="pi.dbfo_linenumbering.width"> + <xsl:with-param name="node" select="$pi.context"/> + </xsl:call-template> + </xsl:variable> + + <!-- Construct the 'in-context' values --> + <xsl:variable name="linenumbering.everyNth"> + <xsl:choose> + <xsl:when test="$pi.linenumbering.everyNth != ''"> + <xsl:value-of select="$pi.linenumbering.everyNth"/> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="$global.linenumbering.everyNth"/> + </xsl:otherwise> + </xsl:choose> + </xsl:variable> + + <xsl:variable name="linenumbering.separator"> + <xsl:choose> + <xsl:when test="$pi.linenumbering.separator != ''"> + <xsl:value-of select="$pi.linenumbering.separator"/> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="$global.linenumbering.separator"/> + </xsl:otherwise> + </xsl:choose> + </xsl:variable> + + <xsl:variable name="linenumbering.width"> + <xsl:choose> + <xsl:when test="$pi.linenumbering.width != ''"> + <xsl:value-of select="$pi.linenumbering.width"/> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="$global.linenumbering.width"/> + </xsl:otherwise> + </xsl:choose> + </xsl:variable> + + <xsl:variable name="linenumbering.startinglinenumber"> + <xsl:choose> + <xsl:when test="$pi.context/@startinglinenumber"> + <xsl:value-of select="$pi.context/@startinglinenumber"/> + </xsl:when> + <xsl:when test="$pi.context/@continuation='continues'"> + <xsl:variable name="lastLine"> + <xsl:choose> + <xsl:when test="$pi.context/self::programlisting"> + <xsl:call-template name="lastLineNumber"> + <xsl:with-param name="listings" + select="preceding::programlisting[@linenumbering='numbered']"/> + </xsl:call-template> + </xsl:when> + <xsl:when test="$pi.context/self::screen"> + <xsl:call-template name="lastLineNumber"> + <xsl:with-param name="listings" + select="preceding::screen[@linenumbering='numbered']"/> + </xsl:call-template> + </xsl:when> + <xsl:when test="$pi.context/self::literallayout"> + <xsl:call-template name="lastLineNumber"> + <xsl:with-param name="listings" + select="preceding::literallayout[@linenumbering='numbered']"/> + </xsl:call-template> + </xsl:when> + <xsl:when test="$pi.context/self::address"> + <xsl:call-template name="lastLineNumber"> + <xsl:with-param name="listings" + select="preceding::address[@linenumbering='numbered']"/> + </xsl:call-template> + </xsl:when> + <xsl:when test="$pi.context/self::synopsis"> + <xsl:call-template name="lastLineNumber"> + <xsl:with-param name="listings" + select="preceding::synopsis[@linenumbering='numbered']"/> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:message> + <xsl:text>Unexpected verbatim environment: </xsl:text> + <xsl:value-of select="local-name(.)"/> + </xsl:message> + <xsl:value-of select="0"/> + </xsl:otherwise> + </xsl:choose> + </xsl:variable> + + <xsl:value-of select="$lastLine + 1"/> + </xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + + <xsl:choose> + <xsl:when test="function-available('sverb:numberLines')"> + <xsl:copy-of select="sverb:numberLines($rtf)"/> + </xsl:when> + <xsl:when test="function-available('xverb:numberLines')"> + <xsl:copy-of select="xverb:numberLines($rtf)"/> + </xsl:when> + <xsl:otherwise> + <xsl:message terminate="yes"> + <xsl:text>No numberLines function available.</xsl:text> + </xsl:message> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<!-- ======================================================================== --> + +<xsl:template name="lastLineNumber"> + <xsl:param name="listings"/> + <xsl:param name="number" select="0"/> + + <xsl:variable name="lines"> + <xsl:call-template name="countLines"> + <xsl:with-param name="listing" select="string($listings[1])"/> + </xsl:call-template> + </xsl:variable> + + <xsl:choose> + <xsl:when test="not($listings)"> + <xsl:value-of select="$number"/> + </xsl:when> + <xsl:when test="$listings[1]/@startinglinenumber"> + <xsl:value-of select="$number + $listings[1]/@startinglinenumber + $lines - 1"/> + </xsl:when> + <xsl:when test="$listings[1]/@continuation='continues'"> + <xsl:call-template name="lastLineNumber"> + <xsl:with-param name="listings" select="listings[position() > 1]"/> + <xsl:with-param name="number" select="$number + $lines"/> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="$lines"/> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template name="countLines"> + <xsl:param name="listing"/> + <xsl:param name="count" select="1"/> + + <xsl:choose> + <xsl:when test="contains($listing, ' ')"> + <xsl:call-template name="countLines"> + <xsl:with-param name="listing" select="substring-after($listing, ' ')"/> + <xsl:with-param name="count" select="$count + 1"/> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="$count"/> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<!-- ======================================================================== --> + +<xsl:template match="node()|@*" mode="hyphenate.verbatim"> + <xsl:copy> + <xsl:copy-of select="@*"/> + <xsl:apply-templates mode="hyphenate.verbatim"/> + </xsl:copy> +</xsl:template> + +<xsl:template match="text()" mode="hyphenate.verbatim" priority="2"> + <xsl:call-template name="hyphenate.verbatim.block"> + <xsl:with-param name="content" select="."/> + </xsl:call-template> +</xsl:template> + +<xsl:template name="hyphenate.verbatim.block"> + <xsl:param name="content" select="''"/> + <xsl:param name="count" select="1"/> + + <!-- recurse on lines first to keep recursion depth reasonable --> + <xsl:choose> + <xsl:when test="contains($content, ' ')"> + <xsl:variable name="line" select="substring-before($content, ' ')"/> + <xsl:variable name="rest" select="substring-after($content, ' ')"/> + <xsl:call-template name="hyphenate.verbatim"> + <xsl:with-param name="content" select="concat($line, ' ')"/> + </xsl:call-template> + <xsl:call-template name="hyphenate.verbatim.block"> + <xsl:with-param name="content" select="$rest"/> + <xsl:with-param name="count" select="$count + 1"/> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="hyphenate.verbatim"> + <xsl:with-param name="content" select="$content"/> + </xsl:call-template> + </xsl:otherwise> + </xsl:choose> + +</xsl:template> + +<xsl:template name="hyphenate.verbatim"> + <xsl:param name="content"/> + <xsl:variable name="head" select="substring($content, 1, 1)"/> + <xsl:variable name="tail" select="substring($content, 2)"/> + <xsl:choose> + <!-- Place soft-hyphen after space or non-breakable space. --> + <xsl:when test="$head = ' ' or $head = ' '"> + <xsl:text> </xsl:text> + <xsl:text>­</xsl:text> + </xsl:when> + <xsl:when test="$hyphenate.verbatim.characters != '' and + translate($head, $hyphenate.verbatim.characters, '') = '' and not($tail = '')"> + <xsl:value-of select="$head"/> + <xsl:text>­</xsl:text> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="$head"/> + </xsl:otherwise> + </xsl:choose> + <xsl:if test="$tail"> + <xsl:call-template name="hyphenate.verbatim"> + <xsl:with-param name="content" select="$tail"/> + </xsl:call-template> + </xsl:if> +</xsl:template> + + +</xsl:stylesheet> diff --git a/docbook-xsl-1.76.1/fo/xep.xsl b/docbook-xsl-1.76.1/fo/xep.xsl new file mode 100644 index 0000000..14ce59f --- /dev/null +++ b/docbook-xsl-1.76.1/fo/xep.xsl @@ -0,0 +1,180 @@ +<?xml version='1.0'?> +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + xmlns:fo="http://www.w3.org/1999/XSL/Format" + xmlns:rx="http://www.renderx.com/XSL/Extensions" + version='1.0'> + +<!-- ******************************************************************** + $Id: xep.xsl 7531 2007-10-17 18:06:49Z dcramer $ + ******************************************************************** + (c) Stephane Bline Peregrine Systems 2001 + Implementation of xep extensions: + * Pdf bookmarks (based on the XEP 2.5 implementation) + * Document information (XEP 2.5 meta information extensions) + ******************************************************************** --> + +<!-- FIXME: Norm, I changed things so that the top-level element (book or set) + does not appear in the TOC. Is this the right thing? --> + +<xsl:template name="xep-document-information"> + <rx:meta-info> + <xsl:variable name="authors" + select="(//author|//editor|//corpauthor|//authorgroup)[1]"/> + <xsl:if test="$authors"> + <xsl:variable name="author"> + <xsl:choose> + <xsl:when test="$authors[self::authorgroup]"> + <xsl:call-template name="person.name.list"> + <xsl:with-param name="person.list" + select="$authors/*[self::author|self::corpauthor| + self::othercredit|self::editor]"/> + </xsl:call-template> + </xsl:when> + <xsl:when test="$authors[self::corpauthor]"> + <xsl:value-of select="$authors"/> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="person.name"> + <xsl:with-param name="node" select="$authors"/> + </xsl:call-template> + </xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:element name="rx:meta-field"> + <xsl:attribute name="name">author</xsl:attribute> + <xsl:attribute name="value"> + <xsl:value-of select="normalize-space($author)"/> + </xsl:attribute> + </xsl:element> + </xsl:if> + + <xsl:variable name="title"> + <xsl:apply-templates select="/*[1]" mode="label.markup"/> + <xsl:apply-templates select="/*[1]" mode="title.markup"/> + </xsl:variable> + + <xsl:element name="rx:meta-field"> + <xsl:attribute name="name">creator</xsl:attribute> + <xsl:attribute name="value"> + <xsl:text>DocBook </xsl:text> + <xsl:value-of select="$DistroTitle"/> + <xsl:text> V</xsl:text> + <xsl:value-of select="$VERSION"/> + </xsl:attribute> + </xsl:element> + + <xsl:element name="rx:meta-field"> + <xsl:attribute name="name">title</xsl:attribute> + <xsl:attribute name="value"> + <xsl:value-of select="normalize-space($title)"/> + </xsl:attribute> + </xsl:element> + + <xsl:if test="//keyword"> + <xsl:element name="rx:meta-field"> + <xsl:attribute name="name">keywords</xsl:attribute> + <xsl:attribute name="value"> + <xsl:for-each select="//keyword"> + <xsl:value-of select="normalize-space(.)"/> + <xsl:if test="position() != last()"> + <xsl:text>, </xsl:text> + </xsl:if> + </xsl:for-each> + </xsl:attribute> + </xsl:element> + </xsl:if> + + <xsl:if test="//subjectterm"> + <xsl:element name="rx:meta-field"> + <xsl:attribute name="name">subject</xsl:attribute> + <xsl:attribute name="value"> + <xsl:for-each select="//subjectterm"> + <xsl:value-of select="normalize-space(.)"/> + <xsl:if test="position() != last()"> + <xsl:text>, </xsl:text> + </xsl:if> + </xsl:for-each> + </xsl:attribute> + </xsl:element> + </xsl:if> + </rx:meta-info> +</xsl:template> + +<!-- ******************************************************************** + Pdf bookmarks + ******************************************************************** --> + +<xsl:template match="*" mode="xep.outline"> + <xsl:apply-templates select="*" mode="xep.outline"/> +</xsl:template> + +<xsl:template match="set|book|part|reference|preface|chapter|appendix|article + |glossary|bibliography|index|setindex + |refentry|refsynopsisdiv + |refsect1|refsect2|refsect3|refsection + |sect1|sect2|sect3|sect4|sect5|section" + mode="xep.outline"> + <xsl:variable name="id"> + <xsl:call-template name="object.id"/> + </xsl:variable> + <xsl:variable name="bookmark-label"> + <xsl:apply-templates select="." mode="object.title.markup"/> + </xsl:variable> + + <!-- Put the root element bookmark at the same level as its children --> + <!-- If the object is a set or book, generate a bookmark for the toc --> + <xsl:choose> + <xsl:when test="self::index and $generate.index = 0"/> + <xsl:when test="parent::*"> + <rx:bookmark internal-destination="{$id}"> + <rx:bookmark-label> + <xsl:value-of select="normalize-space($bookmark-label)"/> + </rx:bookmark-label> + <xsl:apply-templates select="*" mode="xep.outline"/> + </rx:bookmark> + </xsl:when> + <xsl:otherwise> + <xsl:if test="$bookmark-label != ''"> + <rx:bookmark internal-destination="{$id}"> + <rx:bookmark-label> + <xsl:value-of select="normalize-space($bookmark-label)"/> + </rx:bookmark-label> + </rx:bookmark> + </xsl:if> + + <xsl:variable name="toc.params"> + <xsl:call-template name="find.path.params"> + <xsl:with-param name="table" select="normalize-space($generate.toc)"/> + </xsl:call-template> + </xsl:variable> + <xsl:if test="contains($toc.params, 'toc') + and set|book|part|reference|section|sect1|refentry + |article|bibliography|glossary|chapter + |appendix"> + <rx:bookmark internal-destination="toc...{$id}"> + <rx:bookmark-label> + <xsl:call-template name="gentext"> + <xsl:with-param name="key" select="'TableofContents'"/> + </xsl:call-template> + </rx:bookmark-label> + </rx:bookmark> + </xsl:if> + <xsl:apply-templates select="*" mode="xep.outline"/> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template name="xep-pis"> + <xsl:if test="$crop.marks != 0"> + <xsl:processing-instruction name="xep-pdf-crop-mark-width"><xsl:value-of select="$crop.mark.width"/></xsl:processing-instruction> + <xsl:processing-instruction name="xep-pdf-crop-offset"><xsl:value-of select="$crop.mark.offset"/></xsl:processing-instruction> + <xsl:processing-instruction name="xep-pdf-bleed"><xsl:value-of select="$crop.mark.bleed"/></xsl:processing-instruction> + </xsl:if> + + <xsl:call-template name="user-xep-pis"/> +</xsl:template> + +<!-- Placeholder for user defined PIs --> +<xsl:template name="user-xep-pis"/> + +</xsl:stylesheet> diff --git a/docbook-xsl-1.76.1/fo/xref.xsl b/docbook-xsl-1.76.1/fo/xref.xsl new file mode 100644 index 0000000..771d39b --- /dev/null +++ b/docbook-xsl-1.76.1/fo/xref.xsl @@ -0,0 +1,1538 @@ +<?xml version='1.0'?> +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + xmlns:fo="http://www.w3.org/1999/XSL/Format" + xmlns:exsl="http://exslt.org/common" + xmlns:xlink='http://www.w3.org/1999/xlink' + exclude-result-prefixes="exsl xlink" + version='1.0'> + +<!-- ******************************************************************** + $Id: xref.xsl 8913 2010-10-01 04:44:57Z bobstayton $ + ******************************************************************** + + This file is part of the XSL DocBook Stylesheet distribution. + See ../README or http://docbook.sf.net/release/xsl/current/ for + copyright and other information. + + ******************************************************************** --> + +<!-- Use internal variable for olink xlink role for consistency --> +<xsl:variable + name="xolink.role">http://docbook.org/xlink/role/olink</xsl:variable> + +<!-- ==================================================================== --> + +<xsl:template match="anchor"> + <xsl:variable name="id"> + <xsl:call-template name="object.id"/> + </xsl:variable> + <fo:inline id="{$id}"/> +</xsl:template> + +<!-- ==================================================================== --> + +<xsl:template match="xref" name="xref"> + <xsl:param name="xhref" select="@xlink:href"/> + <!-- is the @xlink:href a local idref link? --> + <xsl:param name="xlink.idref"> + <xsl:if test="starts-with($xhref,'#') + and (not(contains($xhref,'(')) + or starts-with($xhref, '#xpointer(id('))"> + <xsl:call-template name="xpointer.idref"> + <xsl:with-param name="xpointer" select="$xhref"/> + </xsl:call-template> + </xsl:if> + </xsl:param> + <xsl:param name="xlink.targets" select="key('id',$xlink.idref)"/> + <xsl:param name="linkend.targets" select="key('id',@linkend)"/> + <xsl:param name="target" select="($xlink.targets | $linkend.targets)[1]"/> + <xsl:param name="refelem" select="local-name($target)"/> + + <xsl:variable name="xrefstyle"> + <xsl:choose> + <xsl:when test="@role and not(@xrefstyle) + and $use.role.as.xrefstyle != 0"> + <xsl:value-of select="@role"/> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="@xrefstyle"/> + </xsl:otherwise> + </xsl:choose> + </xsl:variable> + + <xsl:variable name="content"> + <fo:inline xsl:use-attribute-sets="xref.properties"> + <xsl:choose> + <xsl:when test="@endterm"> + <xsl:variable name="etargets" select="key('id',@endterm)"/> + <xsl:variable name="etarget" select="$etargets[1]"/> + <xsl:choose> + <xsl:when test="count($etarget) = 0"> + <xsl:message> + <xsl:value-of select="count($etargets)"/> + <xsl:text>Endterm points to nonexistent ID: </xsl:text> + <xsl:value-of select="@endterm"/> + </xsl:message> + <xsl:text>???</xsl:text> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates select="$etarget" mode="endterm"/> + </xsl:otherwise> + </xsl:choose> + </xsl:when> + + <xsl:when test="$target/@xreflabel"> + <xsl:call-template name="xref.xreflabel"> + <xsl:with-param name="target" select="$target"/> + </xsl:call-template> + </xsl:when> + + <xsl:when test="$target"> + <xsl:if test="not(parent::citation)"> + <xsl:apply-templates select="$target" mode="xref-to-prefix"/> + </xsl:if> + + <xsl:apply-templates select="$target" mode="xref-to"> + <xsl:with-param name="referrer" select="."/> + <xsl:with-param name="xrefstyle" select="$xrefstyle"/> + </xsl:apply-templates> + + <xsl:if test="not(parent::citation)"> + <xsl:apply-templates select="$target" mode="xref-to-suffix"/> + </xsl:if> + </xsl:when> + <xsl:otherwise> + <xsl:message> + <xsl:text>ERROR: xref linking to </xsl:text> + <xsl:value-of select="@linkend|@xlink:href"/> + <xsl:text> has no generated link text.</xsl:text> + </xsl:message> + <xsl:text>???</xsl:text> + </xsl:otherwise> + </xsl:choose> + </fo:inline> + </xsl:variable> + + <!-- Convert it into an active link --> + <xsl:call-template name="simple.xlink"> + <xsl:with-param name="content" select="$content"/> + </xsl:call-template> + + <!-- Add standard page reference? --> + <xsl:choose> + <xsl:when test="not($target)"> + <!-- page numbers only for local targets --> + </xsl:when> + <xsl:when test="starts-with(normalize-space($xrefstyle), 'select:') + and contains($xrefstyle, 'nopage')"> + <!-- negative xrefstyle in instance turns it off --> + </xsl:when> + <!-- positive xrefstyle already handles it --> + <xsl:when test="not(starts-with(normalize-space($xrefstyle), 'select:') + and (contains($xrefstyle, 'page') + or contains($xrefstyle, 'Page'))) + and ( $insert.xref.page.number = 'yes' + or $insert.xref.page.number = '1') + or (local-name($target) = 'para' and + $xrefstyle = '')"> + <xsl:apply-templates select="$target" mode="page.citation"> + <xsl:with-param name="id" select="$target/@id|$target/@xml:id"/> + </xsl:apply-templates> + </xsl:when> + </xsl:choose> +</xsl:template> + +<!-- ==================================================================== --> + +<!-- Handled largely like an xref --> +<!-- To be done: add support for begin, end, and units attributes --> +<xsl:template match="biblioref" name="biblioref"> + <xsl:variable name="targets" select="key('id',@linkend)"/> + <xsl:variable name="target" select="$targets[1]"/> + <xsl:variable name="refelem" select="local-name($target)"/> + + <xsl:call-template name="check.id.unique"> + <xsl:with-param name="linkend" select="@linkend"/> + </xsl:call-template> + + <xsl:choose> + <xsl:when test="$refelem=''"> + <xsl:message> + <xsl:text>XRef to nonexistent id: </xsl:text> + <xsl:value-of select="@linkend"/> + </xsl:message> + <xsl:text>???</xsl:text> + </xsl:when> + + <xsl:when test="@endterm"> + <fo:basic-link internal-destination="{@linkend}" + xsl:use-attribute-sets="xref.properties"> + <xsl:variable name="etargets" select="key('id',@endterm)"/> + <xsl:variable name="etarget" select="$etargets[1]"/> + <xsl:choose> + <xsl:when test="count($etarget) = 0"> + <xsl:message> + <xsl:value-of select="count($etargets)"/> + <xsl:text>Endterm points to nonexistent ID: </xsl:text> + <xsl:value-of select="@endterm"/> + </xsl:message> + <xsl:text>???</xsl:text> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates select="$etarget" mode="endterm"/> + </xsl:otherwise> + </xsl:choose> + </fo:basic-link> + </xsl:when> + + <xsl:when test="$target/@xreflabel"> + <fo:basic-link internal-destination="{@linkend}" + xsl:use-attribute-sets="xref.properties"> + <xsl:call-template name="xref.xreflabel"> + <xsl:with-param name="target" select="$target"/> + </xsl:call-template> + </fo:basic-link> + </xsl:when> + + <xsl:otherwise> + <xsl:if test="not(parent::citation)"> + <xsl:apply-templates select="$target" mode="xref-to-prefix"/> + </xsl:if> + + <fo:basic-link internal-destination="{@linkend}" + xsl:use-attribute-sets="xref.properties"> + <xsl:apply-templates select="$target" mode="xref-to"> + <xsl:with-param name="referrer" select="."/> + <xsl:with-param name="xrefstyle"> + <xsl:choose> + <xsl:when test="@role and not(@xrefstyle) and $use.role.as.xrefstyle != 0"> + <xsl:value-of select="@role"/> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="@xrefstyle"/> + </xsl:otherwise> + </xsl:choose> + </xsl:with-param> + </xsl:apply-templates> + </fo:basic-link> + + <xsl:if test="not(parent::citation)"> + <xsl:apply-templates select="$target" mode="xref-to-suffix"/> + </xsl:if> + </xsl:otherwise> + </xsl:choose> + +</xsl:template> + +<!-- ==================================================================== --> + +<xsl:template match="*" mode="endterm"> + <!-- Process the children of the endterm element --> + <xsl:variable name="endterm"> + <xsl:apply-templates select="child::node()"/> + </xsl:variable> + + <xsl:choose> + <xsl:when test="$exsl.node.set.available != 0"> + <xsl:apply-templates select="exsl:node-set($endterm)" mode="remove-ids"/> + </xsl:when> + <xsl:otherwise> + <xsl:copy-of select="$endterm"/> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template match="*" mode="remove-ids"> + <xsl:copy> + <xsl:for-each select="@*"> + <xsl:choose> + <xsl:when test="name(.) != 'id'"> + <xsl:copy/> + </xsl:when> + <xsl:otherwise> + <xsl:message>removing <xsl:value-of select="name(.)"/></xsl:message> + </xsl:otherwise> + </xsl:choose> + </xsl:for-each> + <xsl:apply-templates mode="remove-ids"/> + </xsl:copy> +</xsl:template> + +<!--- ==================================================================== --> + +<xsl:template match="*" mode="xref-to-prefix"/> +<xsl:template match="*" mode="xref-to-suffix"/> + +<xsl:template match="*" mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="verbose" select="1"/> + + + <xsl:if test="$verbose != 0"> + <xsl:message> + <xsl:text>Don't know what gentext to create for xref to: "</xsl:text> + <xsl:value-of select="name(.)"/> + <xsl:text>"</xsl:text> + </xsl:message> + <xsl:text>???</xsl:text> + </xsl:if> +</xsl:template> + +<xsl:template match="title" mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="verbose" select="1"/> + + <!-- if you xref to a title, xref to the parent... --> + <xsl:choose> + <!-- FIXME: how reliable is this? --> + <xsl:when test="contains(local-name(parent::*), 'info')"> + <xsl:apply-templates select="parent::*[2]" mode="xref-to"> + <xsl:with-param name="referrer" select="$referrer"/> + <xsl:with-param name="xrefstyle" select="$xrefstyle"/> + <xsl:with-param name="verbose" select="$verbose"/> + </xsl:apply-templates> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates select="parent::*" mode="xref-to"> + <xsl:with-param name="referrer" select="$referrer"/> + <xsl:with-param name="xrefstyle" select="$xrefstyle"/> + <xsl:with-param name="verbose" select="$verbose"/> + </xsl:apply-templates> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template match="abstract|article|authorblurb|bibliodiv|bibliomset + |biblioset|blockquote|calloutlist|caution|colophon + |constraintdef|formalpara|glossdiv|important|indexdiv + |itemizedlist|legalnotice|lot|msg|msgexplan|msgmain + |msgrel|msgset|msgsub|note|orderedlist|partintro + |productionset|qandadiv|refsynopsisdiv|segmentedlist + |set|setindex|sidebar|tip|toc|variablelist|warning" + mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="verbose" select="1"/> + + <!-- catch-all for things with (possibly optional) titles --> + <xsl:apply-templates select="." mode="object.xref.markup"> + <xsl:with-param name="purpose" select="'xref'"/> + <xsl:with-param name="xrefstyle" select="$xrefstyle"/> + <xsl:with-param name="referrer" select="$referrer"/> + <xsl:with-param name="verbose" select="$verbose"/> + </xsl:apply-templates> +</xsl:template> + +<xsl:template match="author|editor|othercredit|personname" mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="verbose" select="1"/> + + <xsl:call-template name="person.name"/> +</xsl:template> + +<xsl:template match="authorgroup" mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="verbose" select="1"/> + + <xsl:call-template name="person.name.list"/> +</xsl:template> + +<xsl:template match="figure|example|table|equation" mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="verbose" select="1"/> + + <xsl:apply-templates select="." mode="object.xref.markup"> + <xsl:with-param name="purpose" select="'xref'"/> + <xsl:with-param name="xrefstyle" select="$xrefstyle"/> + <xsl:with-param name="referrer" select="$referrer"/> + <xsl:with-param name="verbose" select="$verbose"/> + </xsl:apply-templates> +</xsl:template> + +<xsl:template match="procedure" mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="verbose"/> + + <xsl:apply-templates select="." mode="object.xref.markup"> + <xsl:with-param name="purpose" select="'xref'"/> + <xsl:with-param name="xrefstyle" select="$xrefstyle"/> + <xsl:with-param name="referrer" select="$referrer"/> + <xsl:with-param name="verbose" select="$verbose"/> + </xsl:apply-templates> +</xsl:template> + +<xsl:template match="task" mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="verbose"/> + + <xsl:apply-templates select="." mode="object.xref.markup"> + <xsl:with-param name="purpose" select="'xref'"/> + <xsl:with-param name="xrefstyle" select="$xrefstyle"/> + <xsl:with-param name="referrer" select="$referrer"/> + <xsl:with-param name="verbose" select="$verbose"/> + </xsl:apply-templates> +</xsl:template> + +<xsl:template match="cmdsynopsis" mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="verbose" select="1"/> + + <xsl:apply-templates select="(.//command)[1]" mode="xref"/> +</xsl:template> + +<xsl:template match="funcsynopsis" mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="verbose" select="1"/> + + <xsl:apply-templates select="(.//function)[1]" mode="xref"/> +</xsl:template> + +<xsl:template match="dedication|acknowledgements|preface|chapter|appendix" mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="verbose" select="1"/> + + <xsl:apply-templates select="." mode="object.xref.markup"> + <xsl:with-param name="purpose" select="'xref'"/> + <xsl:with-param name="xrefstyle" select="$xrefstyle"/> + <xsl:with-param name="referrer" select="$referrer"/> + <xsl:with-param name="verbose" select="$verbose"/> + </xsl:apply-templates> +</xsl:template> + +<xsl:template match="bibliography" mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="verbose" select="1"/> + + <xsl:apply-templates select="." mode="object.xref.markup"> + <xsl:with-param name="purpose" select="'xref'"/> + <xsl:with-param name="xrefstyle" select="$xrefstyle"/> + <xsl:with-param name="referrer" select="$referrer"/> + <xsl:with-param name="verbose" select="$verbose"/> + </xsl:apply-templates> +</xsl:template> + +<xsl:template match="biblioentry|bibliomixed" mode="xref-to-prefix"> + <xsl:text>[</xsl:text> +</xsl:template> + +<xsl:template match="biblioentry|bibliomixed" mode="xref-to-suffix"> + <xsl:text>]</xsl:text> +</xsl:template> + +<xsl:template match="biblioentry|bibliomixed" mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="verbose" select="1"/> + + <!-- handles both biblioentry and bibliomixed --> + <xsl:choose> + <xsl:when test="string(.) = ''"> + <xsl:variable name="bib" select="document($bibliography.collection,.)"/> + <xsl:variable name="id" select="(@id|@xml:id)[1]"/> + <xsl:variable name="entry" select="$bib/bibliography/ + *[@id=$id or @xml:id=$id][1]"/> + <xsl:choose> + <xsl:when test="$entry"> + <xsl:choose> + <xsl:when test="$bibliography.numbered != 0"> + <xsl:number from="bibliography" count="biblioentry|bibliomixed" + level="any" format="1"/> + </xsl:when> + <xsl:when test="local-name($entry/*[1]) = 'abbrev'"> + <xsl:apply-templates select="$entry/*[1]"/> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="(@id|@xml:id)[1]"/> + </xsl:otherwise> + </xsl:choose> + </xsl:when> + <xsl:otherwise> + <xsl:message> + <xsl:text>No bibliography entry: </xsl:text> + <xsl:value-of select="$id"/> + <xsl:text> found in </xsl:text> + <xsl:value-of select="$bibliography.collection"/> + </xsl:message> + <xsl:value-of select="(@id|@xml:id)[1]"/> + </xsl:otherwise> + </xsl:choose> + </xsl:when> + <xsl:otherwise> + <xsl:choose> + <xsl:when test="$bibliography.numbered != 0"> + <xsl:number from="bibliography" count="biblioentry|bibliomixed" + level="any" format="1"/> + </xsl:when> + <xsl:when test="local-name(*[1]) = 'abbrev'"> + <xsl:apply-templates select="*[1]"/> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="(@id|@xml:id)[1]"/> + </xsl:otherwise> + </xsl:choose> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template match="glossary" mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="verbose" select="1"/> + + <xsl:apply-templates select="." mode="object.xref.markup"> + <xsl:with-param name="purpose" select="'xref'"/> + <xsl:with-param name="xrefstyle" select="$xrefstyle"/> + <xsl:with-param name="referrer" select="$referrer"/> + <xsl:with-param name="verbose" select="$verbose"/> + </xsl:apply-templates> +</xsl:template> + +<xsl:template match="glossentry" mode="xref-to"> + <xsl:choose> + <xsl:when test="$glossentry.show.acronym = 'primary'"> + <xsl:choose> + <xsl:when test="acronym|abbrev"> + <xsl:apply-templates select="(acronym|abbrev)[1]"/> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates select="glossterm[1]" mode="xref-to"/> + </xsl:otherwise> + </xsl:choose> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates select="glossterm[1]" mode="xref-to"/> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template match="glossterm|firstterm" mode="xref-to"> + <xsl:apply-templates/> +</xsl:template> + +<xsl:template match="index" mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="verbose" select="1"/> + + <xsl:apply-templates select="." mode="object.xref.markup"> + <xsl:with-param name="purpose" select="'xref'"/> + <xsl:with-param name="xrefstyle" select="$xrefstyle"/> + <xsl:with-param name="referrer" select="$referrer"/> + <xsl:with-param name="verbose" select="$verbose"/> + </xsl:apply-templates> +</xsl:template> + +<xsl:template match="listitem" mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="verbose" select="1"/> + + <xsl:apply-templates select="." mode="object.xref.markup"> + <xsl:with-param name="purpose" select="'xref'"/> + <xsl:with-param name="xrefstyle" select="$xrefstyle"/> + <xsl:with-param name="referrer" select="$referrer"/> + <xsl:with-param name="verbose" select="$verbose"/> + </xsl:apply-templates> +</xsl:template> + +<xsl:template match="section|simplesect + |sect1|sect2|sect3|sect4|sect5 + |refsect1|refsect2|refsect3|refsection" mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="verbose" select="1"/> + + <xsl:apply-templates select="." mode="object.xref.markup"> + <xsl:with-param name="purpose" select="'xref'"/> + <xsl:with-param name="xrefstyle" select="$xrefstyle"/> + <xsl:with-param name="referrer" select="$referrer"/> + <xsl:with-param name="verbose" select="$verbose"/> + </xsl:apply-templates> + <!-- What about "in Chapter X"? --> +</xsl:template> + +<xsl:template match="bridgehead" mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="verbose" select="1"/> + + <xsl:apply-templates select="." mode="object.xref.markup"> + <xsl:with-param name="purpose" select="'xref'"/> + <xsl:with-param name="xrefstyle" select="$xrefstyle"/> + <xsl:with-param name="referrer" select="$referrer"/> + <xsl:with-param name="verbose" select="$verbose"/> + </xsl:apply-templates> + <!-- What about "in Chapter X"? --> +</xsl:template> + +<xsl:template match="qandaset" mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="verbose" select="1"/> + + <xsl:apply-templates select="." mode="object.xref.markup"> + <xsl:with-param name="purpose" select="'xref'"/> + <xsl:with-param name="xrefstyle" select="$xrefstyle"/> + <xsl:with-param name="referrer" select="$referrer"/> + <xsl:with-param name="verbose" select="$verbose"/> + </xsl:apply-templates> +</xsl:template> + +<xsl:template match="qandadiv" mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="verbose" select="1"/> + + <xsl:apply-templates select="." mode="object.xref.markup"> + <xsl:with-param name="purpose" select="'xref'"/> + <xsl:with-param name="xrefstyle" select="$xrefstyle"/> + <xsl:with-param name="referrer" select="$referrer"/> + <xsl:with-param name="verbose" select="$verbose"/> + </xsl:apply-templates> +</xsl:template> + +<xsl:template match="qandaentry" mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="verbose" select="1"/> + + <xsl:apply-templates select="question[1]" mode="xref-to"> + <xsl:with-param name="xrefstyle" select="$xrefstyle"/> + <xsl:with-param name="referrer" select="$referrer"/> + <xsl:with-param name="verbose" select="$verbose"/> + </xsl:apply-templates> +</xsl:template> + +<xsl:template match="question|answer" mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="verbose" select="1"/> + + <xsl:choose> + <xsl:when test="string-length(label) != 0"> + <xsl:apply-templates select="." mode="label.markup"/> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates select="." mode="object.xref.markup"> + <xsl:with-param name="purpose" select="'xref'"/> + <xsl:with-param name="xrefstyle" select="$xrefstyle"/> + <xsl:with-param name="referrer" select="$referrer"/> + <xsl:with-param name="verbose" select="$verbose"/> + </xsl:apply-templates> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template match="part|reference" mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="verbose" select="1"/> + + <xsl:apply-templates select="." mode="object.xref.markup"> + <xsl:with-param name="purpose" select="'xref'"/> + <xsl:with-param name="xrefstyle" select="$xrefstyle"/> + <xsl:with-param name="referrer" select="$referrer"/> + <xsl:with-param name="verbose" select="$verbose"/> + </xsl:apply-templates> +</xsl:template> + +<xsl:template match="refentry" mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="verbose" select="1"/> + + <xsl:choose> + <xsl:when test="refmeta/refentrytitle"> + <xsl:apply-templates select="refmeta/refentrytitle"/> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates select="refnamediv/refname[1]"/> + </xsl:otherwise> + </xsl:choose> + <xsl:apply-templates select="refmeta/manvolnum"/> +</xsl:template> + +<xsl:template match="refnamediv" mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="verbose" select="1"/> + + <xsl:apply-templates select="refname[1]" mode="xref-to"> + <xsl:with-param name="xrefstyle" select="$xrefstyle"/> + <xsl:with-param name="referrer" select="$referrer"/> + <xsl:with-param name="verbose" select="$verbose"/> + </xsl:apply-templates> +</xsl:template> + +<xsl:template match="refname" mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="verbose" select="1"/> + + <xsl:apply-templates mode="xref-to"> + <xsl:with-param name="xrefstyle" select="$xrefstyle"/> + <xsl:with-param name="referrer" select="$referrer"/> + <xsl:with-param name="verbose" select="$verbose"/> + </xsl:apply-templates> +</xsl:template> + +<xsl:template match="step" mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="verbose" select="1"/> + + <xsl:call-template name="gentext"> + <xsl:with-param name="key" select="'Step'"/> + </xsl:call-template> + <xsl:text> </xsl:text> + <xsl:apply-templates select="." mode="number"/> +</xsl:template> + +<xsl:template match="varlistentry" mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="verbose" select="1"/> + + <xsl:apply-templates select="term[1]" mode="xref-to"> + <xsl:with-param name="xrefstyle" select="$xrefstyle"/> + <xsl:with-param name="referrer" select="$referrer"/> + <xsl:with-param name="verbose" select="$verbose"/> + </xsl:apply-templates> +</xsl:template> + +<xsl:template match="varlistentry/term" mode="xref-to"> + <xsl:param name="verbose" select="1"/> + <!-- to avoid the comma that will be generated if there are several terms --> + <xsl:apply-templates/> +</xsl:template> + +<xsl:template match="co" mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="verbose" select="1"/> + + <xsl:apply-templates select="." mode="callout-bug"/> +</xsl:template> + +<xsl:template match="area|areaset" mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + + <xsl:call-template name="callout-bug"> + <xsl:with-param name="conum"> + <xsl:apply-templates select="." mode="conumber"/> + </xsl:with-param> + </xsl:call-template> +</xsl:template> + +<xsl:template match="book" mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="verbose" select="1"/> + + <xsl:apply-templates select="." mode="object.xref.markup"> + <xsl:with-param name="purpose" select="'xref'"/> + <xsl:with-param name="xrefstyle" select="$xrefstyle"/> + <xsl:with-param name="referrer" select="$referrer"/> + <xsl:with-param name="verbose" select="$verbose"/> + </xsl:apply-templates> +</xsl:template> + +<!-- These are elements for which no link text exists, so an xref to one + uses the xrefstyle attribute if specified, or if not it falls back + to the container element's link text --> +<xsl:template match="para|phrase|simpara|anchor|quote" mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="verbose"/> + + <xsl:variable name="context" select="(ancestor::simplesect + |ancestor::section + |ancestor::sect1 + |ancestor::sect2 + |ancestor::sect3 + |ancestor::sect4 + |ancestor::sect5 + |ancestor::refsection + |ancestor::refsect1 + |ancestor::refsect2 + |ancestor::refsect3 + |ancestor::chapter + |ancestor::appendix + |ancestor::preface + |ancestor::partintro + |ancestor::dedication + |ancestor::acknowledgements + |ancestor::colophon + |ancestor::bibliography + |ancestor::index + |ancestor::glossary + |ancestor::glossentry + |ancestor::listitem + |ancestor::varlistentry)[last()]"/> + + <xsl:choose> + <xsl:when test="$xrefstyle != ''"> + <xsl:apply-templates select="." mode="object.xref.markup"> + <xsl:with-param name="xrefstyle" select="$xrefstyle"/> + <xsl:with-param name="referrer" select="$referrer"/> + <xsl:with-param name="verbose" select="$verbose"/> + </xsl:apply-templates> + </xsl:when> + <xsl:otherwise> + <xsl:if test="$verbose != 0"> + <xsl:message> + <xsl:text>WARNING: xref to <</xsl:text> + <xsl:value-of select="local-name()"/> + <xsl:text> id="</xsl:text> + <xsl:value-of select="@id|@xml:id"/> + <xsl:text>"> has no generated text. Trying its ancestor elements.</xsl:text> + </xsl:message> + </xsl:if> + <xsl:apply-templates select="$context" mode="xref-to"> + <xsl:with-param name="xrefstyle" select="$xrefstyle"/> + <xsl:with-param name="referrer" select="$referrer"/> + <xsl:with-param name="verbose" select="$verbose"/> + </xsl:apply-templates> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template match="indexterm" mode="xref-to"> + <xsl:value-of select="primary"/> +</xsl:template> + +<xsl:template match="primary|secondary|tertiary" mode="xref-to"> + <xsl:value-of select="."/> +</xsl:template> + +<!-- ==================================================================== --> + +<xsl:template match="link" name="link"> + <xsl:param name="linkend" select="@linkend"/> + <xsl:param name="targets" select="key('id',$linkend)"/> + <xsl:param name="target" select="$targets[1]"/> + + <xsl:variable name="xrefstyle"> + <xsl:choose> + <xsl:when test="@role and not(@xrefstyle) + and $use.role.as.xrefstyle != 0"> + <xsl:value-of select="@role"/> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="@xrefstyle"/> + </xsl:otherwise> + </xsl:choose> + </xsl:variable> + + <xsl:variable name="content"> + <fo:inline xsl:use-attribute-sets="xref.properties"> + <xsl:choose> + <xsl:when test="count(child::node()) > 0"> + <!-- If it has content, use it --> + <xsl:apply-templates/> + </xsl:when> + <!-- look for an endterm --> + <xsl:when test="@endterm"> + <xsl:variable name="etargets" select="key('id',@endterm)"/> + <xsl:variable name="etarget" select="$etargets[1]"/> + <xsl:choose> + <xsl:when test="count($etarget) = 0"> + <xsl:message> + <xsl:value-of select="count($etargets)"/> + <xsl:text>Endterm points to nonexistent ID: </xsl:text> + <xsl:value-of select="@endterm"/> + </xsl:message> + <xsl:text>???</xsl:text> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates select="$etarget" mode="endterm"/> + </xsl:otherwise> + </xsl:choose> + </xsl:when> + <!-- Use the xlink:href if no other text --> + <xsl:when test="@xlink:href"> + <xsl:call-template name="hyphenate-url"> + <xsl:with-param name="url" select="@xlink:href"/> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:message> + <xsl:text>Link element has no content and no Endterm. </xsl:text> + <xsl:text>Nothing to show in the link to </xsl:text> + <xsl:value-of select="$target"/> + </xsl:message> + <xsl:text>???</xsl:text> + </xsl:otherwise> + </xsl:choose> + </fo:inline> + </xsl:variable> + + <xsl:call-template name="simple.xlink"> + <xsl:with-param name="node" select="."/> + <xsl:with-param name="linkend" select="$linkend"/> + <xsl:with-param name="content" select="$content"/> + </xsl:call-template> + + <!-- Add standard page reference? --> + <xsl:choose> + <!-- page numbering on link only enabled for @linkend --> + <!-- There is no link element in DB5 with xlink:href --> + <xsl:when test="not($linkend)"> + </xsl:when> + <!-- negative xrefstyle in instance turns it off --> + <xsl:when test="starts-with(normalize-space($xrefstyle), 'select:') + and contains($xrefstyle, 'nopage')"> + </xsl:when> + <xsl:when test="(starts-with(normalize-space($xrefstyle), 'select:') + and $insert.link.page.number = 'maybe' + and (contains($xrefstyle, 'page') + or contains($xrefstyle, 'Page'))) + or ( $insert.link.page.number = 'yes' + or $insert.link.page.number = '1') + or local-name($target) = 'para'"> + <xsl:apply-templates select="$target" mode="page.citation"> + <xsl:with-param name="id" select="$linkend"/> + </xsl:apply-templates> + </xsl:when> + </xsl:choose> +</xsl:template> + +<xsl:template match="ulink" name="ulink"> + <xsl:param name="url" select="@url"/> + + <xsl:variable name ="ulink.url"> + <xsl:call-template name="fo-external-image"> + <xsl:with-param name="filename" select="$url"/> + </xsl:call-template> + </xsl:variable> + + <fo:basic-link xsl:use-attribute-sets="xref.properties" + external-destination="{$ulink.url}"> + <xsl:choose> + <xsl:when test="count(child::node())=0 or (string(.) = $url)"> + <xsl:call-template name="hyphenate-url"> + <xsl:with-param name="url" select="$url"/> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates/> + </xsl:otherwise> + </xsl:choose> + </fo:basic-link> + <!-- * Call the template for determining whether the URL for this --> + <!-- * hyperlink is displayed, and how to display it (either inline or --> + <!-- * as a numbered footnote). --> + <xsl:call-template name="hyperlink.url.display"> + <xsl:with-param name="url" select="$url"/> + <xsl:with-param name="ulink.url" select="$ulink.url"/> + </xsl:call-template> +</xsl:template> + +<xsl:template name="hyperlink.url.display"> + <!-- * This template is called for all external hyperlinks (ulinks and --> + <!-- * for all simple xlinks); it determines whether the URL for the --> + <!-- * hyperlink is displayed, and how to display it (either inline or --> + <!-- * as a numbered footnote). --> + <xsl:param name="url"/> + <xsl:param name="ulink.url"> + <!-- * ulink.url is just the value of the URL wrapped in 'url(...)' --> + <xsl:call-template name="fo-external-image"> + <xsl:with-param name="filename" select="$url"/> + </xsl:call-template> + </xsl:param> + + <xsl:if test="count(child::node()) != 0 + and string(.) != $url + and $ulink.show != 0"> + <!-- * Display the URL for this hyperlink only if it is non-empty, --> + <!-- * and the value of its content is not a URL that is the same as --> + <!-- * URL it links to, and if ulink.show is non-zero. --> + <xsl:choose> + <xsl:when test="$ulink.footnotes != 0 and not(ancestor::footnote)"> + <!-- * ulink.show and ulink.footnote are both non-zero; that --> + <!-- * means we display the URL as a footnote (instead of inline) --> + <fo:footnote> + <xsl:call-template name="ulink.footnote.number"/> + <fo:footnote-body xsl:use-attribute-sets="footnote.properties"> + <fo:block> + <xsl:call-template name="ulink.footnote.number"/> + <xsl:text> </xsl:text> + <fo:basic-link external-destination="{$ulink.url}"> + <xsl:value-of select="$url"/> + </fo:basic-link> + </fo:block> + </fo:footnote-body> + </fo:footnote> + </xsl:when> + <xsl:otherwise> + <!-- * ulink.show is non-zero, but ulink.footnote is not; that --> + <!-- * means we display the URL inline --> + <fo:inline hyphenate="false"> + <!-- * put square brackets around the URL --> + <xsl:text> [</xsl:text> + <fo:basic-link external-destination="{$ulink.url}"> + <xsl:call-template name="hyphenate-url"> + <xsl:with-param name="url" select="$url"/> + </xsl:call-template> + </fo:basic-link> + <xsl:text>]</xsl:text> + </fo:inline> + </xsl:otherwise> + </xsl:choose> + </xsl:if> + +</xsl:template> + +<xsl:template name="ulink.footnote.number"> + <fo:inline xsl:use-attribute-sets="footnote.mark.properties"> + <xsl:choose> + <xsl:when test="$fop.extensions != 0"> + <xsl:attribute name="vertical-align">super</xsl:attribute> + </xsl:when> + <xsl:otherwise> + <xsl:attribute name="baseline-shift">super</xsl:attribute> + </xsl:otherwise> + </xsl:choose> + <xsl:variable name="fnum"> + <!-- * Determine the footnote number to display for this hyperlink, --> + <!-- * by counting all foonotes, ulinks, and any elements that have --> + <!-- * an xlink:href attribute that meets the following criteria: --> + <!-- * --> + <!-- * - the content of the element is not a URI that is the same --> + <!-- * URI as the value of the href attribute --> + <!-- * - the href attribute is not an internal ID reference (does --> + <!-- * not start with a hash sign) --> + <!-- * - the href is not part of an olink reference (the element --> + <!-- * - does not have an xlink:role attribute that indicates it is --> + <!-- * an olink, and the href does not contain a hash sign) --> + <!-- * - the element either has no xlink:type attribute or has --> + <!-- * an xlink:type attribute whose value is 'simple' --> + <!-- FIXME: list in @from is probably not complete --> + <xsl:number level="any" + from="chapter|appendix|preface|article|refentry|bibliography[not(parent::article)]" + count="footnote[not(@label)][not(ancestor::tgroup)] + |ulink[node()][@url != .][not(ancestor::footnote)] + |*[node()][@xlink:href][not(@xlink:href = .)][not(starts-with(@xlink:href,'#'))] + [not(contains(@xlink:href,'#') and @xlink:role = $xolink.role)] + [not(@xlink:type) or @xlink:type='simple'] + [not(ancestor::footnote)]" + format="1"/> + </xsl:variable> + <xsl:choose> + <xsl:when test="string-length($footnote.number.symbols) >= $fnum"> + <xsl:value-of select="substring($footnote.number.symbols, $fnum, 1)"/> + </xsl:when> + <xsl:otherwise> + <xsl:number value="$fnum" format="{$footnote.number.format}"/> + </xsl:otherwise> + </xsl:choose> + </fo:inline> +</xsl:template> + +<xsl:template name="hyphenate-url"> + <xsl:param name="url" select="''"/> + <xsl:choose> + <xsl:when test="$ulink.hyphenate = ''"> + <xsl:value-of select="$url"/> + </xsl:when> + <xsl:when test="string-length($url) > 1"> + <xsl:variable name="char" select="substring($url, 1, 1)"/> + <xsl:value-of select="$char"/> + <xsl:if test="contains($ulink.hyphenate.chars, $char)"> + <!-- Do not hyphen in-between // --> + <xsl:if test="not($char = '/' and substring($url,2,1) = '/')"> + <xsl:copy-of select="$ulink.hyphenate"/> + </xsl:if> + </xsl:if> + <!-- recurse to the next character --> + <xsl:call-template name="hyphenate-url"> + <xsl:with-param name="url" select="substring($url, 2)"/> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="$url"/> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template match="olink" name="olink"> + <!-- olink content may be passed in from xlink olink --> + <xsl:param name="content" select="NOTANELEMENT"/> + + <xsl:variable name="localinfo" select="@localinfo"/> + + <xsl:choose> + <!-- olinks resolved by stylesheet and target database --> + <xsl:when test="@targetdoc or @targetptr or + (@xlink:role=$xolink.role and + contains(@xlink:href, '#') )" > + + <xsl:variable name="targetdoc.att"> + <xsl:choose> + <xsl:when test="@targetdoc != ''"> + <xsl:value-of select="@targetdoc"/> + </xsl:when> + <xsl:when test="@xlink:role=$xolink.role and + contains(@xlink:href, '#')" > + <xsl:value-of select="substring-before(@xlink:href, '#')"/> + </xsl:when> + </xsl:choose> + </xsl:variable> + + <xsl:variable name="targetptr.att"> + <xsl:choose> + <xsl:when test="@targetptr != ''"> + <xsl:value-of select="@targetptr"/> + </xsl:when> + <xsl:when test="@xlink:role=$xolink.role and + contains(@xlink:href, '#')" > + <xsl:value-of select="substring-after(@xlink:href, '#')"/> + </xsl:when> + </xsl:choose> + </xsl:variable> + + <xsl:variable name="olink.lang"> + <xsl:call-template name="l10n.language"> + <xsl:with-param name="xref-context" select="true()"/> + </xsl:call-template> + </xsl:variable> + + <xsl:variable name="target.database.filename"> + <xsl:call-template name="select.target.database"> + <xsl:with-param name="targetdoc.att" select="$targetdoc.att"/> + <xsl:with-param name="targetptr.att" select="$targetptr.att"/> + <xsl:with-param name="olink.lang" select="$olink.lang"/> + </xsl:call-template> + </xsl:variable> + + <xsl:variable name="target.database" + select="document($target.database.filename, /)"/> + + <xsl:if test="$olink.debug != 0"> + <xsl:message> + <xsl:text>Olink debug: root element of target.database is '</xsl:text> + <xsl:value-of select="local-name($target.database/*[1])"/> + <xsl:text>'.</xsl:text> + </xsl:message> + </xsl:if> + + <xsl:variable name="olink.key"> + <xsl:call-template name="select.olink.key"> + <xsl:with-param name="targetdoc.att" select="$targetdoc.att"/> + <xsl:with-param name="targetptr.att" select="$targetptr.att"/> + <xsl:with-param name="olink.lang" select="$olink.lang"/> + <xsl:with-param name="target.database" select="$target.database"/> + </xsl:call-template> + </xsl:variable> + + <xsl:if test="string-length($olink.key) = 0"> + <xsl:message> + <xsl:text>Error: unresolved olink: </xsl:text> + <xsl:text>targetdoc/targetptr = '</xsl:text> + <xsl:value-of select="$targetdoc.att"/> + <xsl:text>/</xsl:text> + <xsl:value-of select="$targetptr.att"/> + <xsl:text>'.</xsl:text> + </xsl:message> + </xsl:if> + + <xsl:variable name="href"> + <xsl:call-template name="make.olink.href"> + <xsl:with-param name="olink.key" select="$olink.key"/> + <xsl:with-param name="target.database" select="$target.database"/> + </xsl:call-template> + </xsl:variable> + + <!-- Olink that points to internal id can be a link --> + <xsl:variable name="linkend"> + <xsl:call-template name="olink.as.linkend"> + <xsl:with-param name="olink.key" select="$olink.key"/> + <xsl:with-param name="olink.lang" select="$olink.lang"/> + <xsl:with-param name="target.database" select="$target.database"/> + </xsl:call-template> + </xsl:variable> + + <xsl:variable name="hottext"> + <xsl:choose> + <xsl:when test="string-length($content) != 0"> + <xsl:copy-of select="$content"/> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="olink.hottext"> + <xsl:with-param name="olink.key" select="$olink.key"/> + <xsl:with-param name="olink.lang" select="$olink.lang"/> + <xsl:with-param name="target.database" select="$target.database"/> + </xsl:call-template> + </xsl:otherwise> + </xsl:choose> + </xsl:variable> + + <xsl:variable name="olink.docname.citation"> + <xsl:call-template name="olink.document.citation"> + <xsl:with-param name="olink.key" select="$olink.key"/> + <xsl:with-param name="target.database" select="$target.database"/> + <xsl:with-param name="olink.lang" select="$olink.lang"/> + </xsl:call-template> + </xsl:variable> + + <xsl:variable name="olink.page.citation"> + <xsl:call-template name="olink.page.citation"> + <xsl:with-param name="olink.key" select="$olink.key"/> + <xsl:with-param name="target.database" select="$target.database"/> + <xsl:with-param name="olink.lang" select="$olink.lang"/> + <xsl:with-param name="linkend" select="$linkend"/> + </xsl:call-template> + </xsl:variable> + + <xsl:choose> + <xsl:when test="$linkend != ''"> + <fo:basic-link internal-destination="{$linkend}" + xsl:use-attribute-sets="xref.properties"> + <xsl:call-template name="anchor"/> + <xsl:copy-of select="$hottext"/> + <xsl:copy-of select="$olink.page.citation"/> + </fo:basic-link> + </xsl:when> + <xsl:when test="$href != ''"> + <xsl:choose> + <xsl:when test="$fop1.extensions != 0"> + <xsl:variable name="mybeg" select="substring-before($href,'#')"/> + <xsl:variable name="myend" select="substring-after($href,'#')"/> + <fo:basic-link external-destination="url({concat($mybeg,'#dest=',$myend)})" + xsl:use-attribute-sets="olink.properties"> + <xsl:copy-of select="$hottext"/> + </fo:basic-link> + <xsl:copy-of select="$olink.page.citation"/> + <xsl:copy-of select="$olink.docname.citation"/> + </xsl:when> + <xsl:when test="$xep.extensions != 0"> + <fo:basic-link external-destination="url({$href})" + xsl:use-attribute-sets="olink.properties"> + <xsl:call-template name="anchor"/> + <xsl:copy-of select="$hottext"/> + </fo:basic-link> + <xsl:copy-of select="$olink.page.citation"/> + <xsl:copy-of select="$olink.docname.citation"/> + </xsl:when> + <xsl:when test="$axf.extensions != 0"> + <fo:basic-link external-destination="{$href}" + xsl:use-attribute-sets="olink.properties"> + <xsl:copy-of select="$hottext"/> + </fo:basic-link> + <xsl:copy-of select="$olink.page.citation"/> + <xsl:copy-of select="$olink.docname.citation"/> + </xsl:when> + <xsl:otherwise> + <fo:basic-link external-destination="{$href}" + xsl:use-attribute-sets="olink.properties"> + <xsl:copy-of select="$hottext"/> + </fo:basic-link> + <xsl:copy-of select="$olink.page.citation"/> + <xsl:copy-of select="$olink.docname.citation"/> + </xsl:otherwise> + </xsl:choose> + </xsl:when> + <xsl:otherwise> + <xsl:copy-of select="$hottext"/> + <xsl:copy-of select="$olink.page.citation"/> + <xsl:copy-of select="$olink.docname.citation"/> + </xsl:otherwise> + </xsl:choose> + </xsl:when> + + <!-- olink never implemented in FO for old olink entity syntax --> + <xsl:otherwise> + <xsl:apply-templates/> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template match="*" mode="insert.olink.docname.markup"> + <xsl:param name="docname" select="''"/> + + <fo:inline font-style="italic"> + <xsl:value-of select="$docname"/> + </fo:inline> + +</xsl:template> + +<!-- This prevents error message when processing olinks with xrefstyle --> +<xsl:template match="olink" mode="object.xref.template"/> + + +<xsl:template name="olink.as.linkend"> + <xsl:param name="olink.key" select="''"/> + <xsl:param name="olink.lang" select="''"/> + <xsl:param name="target.database" select="NotANode"/> + + <xsl:variable name="targetdoc"> + <xsl:value-of select="substring-before($olink.key, '/')"/> + </xsl:variable> + + <xsl:variable name="targetptr"> + <xsl:value-of + select="substring-before(substring-after($olink.key, '/'), '/')"/> + </xsl:variable> + + <xsl:variable name="target.lang"> + <xsl:variable name="candidate"> + <xsl:for-each select="$target.database" > + <xsl:value-of + select="key('targetptr-key', $olink.key)[1]/@lang" /> + </xsl:for-each> + </xsl:variable> + <xsl:choose> + <xsl:when test="$candidate != ''"> + <xsl:value-of select="$candidate"/> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="$olink.lang"/> + </xsl:otherwise> + </xsl:choose> + </xsl:variable> + + <xsl:if test="$current.docid = $targetdoc and + $olink.lang = $target.lang"> + <xsl:variable name="targets" select="key('id',$targetptr)"/> + <xsl:variable name="target" select="$targets[1]"/> + <xsl:if test="$target"> + <xsl:value-of select="$targetptr"/> + </xsl:if> + </xsl:if> + +</xsl:template> + + +<xsl:template name="olink.outline"> + <xsl:param name="outline.base.uri"/> + <xsl:param name="localinfo"/> + <xsl:param name="return" select="href"/> + + <xsl:message terminate="yes">Fatal error: olink.outline template: what is this supposed to do?</xsl:message> +</xsl:template> + +<!-- ==================================================================== --> + +<xsl:template name="title.xref"> + <xsl:param name="target" select="."/> + <xsl:choose> + <xsl:when test="local-name($target) = 'figure' + or local-name($target) = 'example' + or local-name($target) = 'equation' + or local-name($target) = 'table' + or local-name($target) = 'dedication' + or local-name($target) = 'acknowledgements' + or local-name($target) = 'preface' + or local-name($target) = 'bibliography' + or local-name($target) = 'glossary' + or local-name($target) = 'index' + or local-name($target) = 'setindex' + or local-name($target) = 'colophon'"> + <xsl:call-template name="gentext.startquote"/> + <xsl:apply-templates select="$target" mode="title.markup"/> + <xsl:call-template name="gentext.endquote"/> + </xsl:when> + <xsl:otherwise> + <fo:inline font-style="italic"> + <xsl:apply-templates select="$target" mode="title.markup"/> + </fo:inline> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template name="number.xref"> + <xsl:param name="target" select="."/> + <xsl:apply-templates select="$target" mode="label.markup"/> +</xsl:template> + +<!-- ==================================================================== --> + +<xsl:template name="xref.xreflabel"> + <!-- called to process an xreflabel...you might use this to make --> + <!-- xreflabels come out in the right font for different targets, --> + <!-- for example. --> + <xsl:param name="target" select="."/> + <xsl:value-of select="$target/@xreflabel"/> +</xsl:template> + +<!-- ==================================================================== --> + +<xsl:template match="title" mode="xref"> + <xsl:apply-templates/> +</xsl:template> + +<xsl:template match="command" mode="xref"> + <xsl:call-template name="inline.boldseq"/> +</xsl:template> + +<xsl:template match="function" mode="xref"> + <xsl:call-template name="inline.monoseq"/> +</xsl:template> + +<xsl:template match="*" mode="page.citation"> + <xsl:param name="id" select="'???'"/> + + <fo:basic-link internal-destination="{$id}" + xsl:use-attribute-sets="xref.properties"> + <fo:inline keep-together.within-line="always"> + <xsl:call-template name="substitute-markup"> + <xsl:with-param name="template"> + <xsl:call-template name="gentext.template"> + <xsl:with-param name="name" select="'page.citation'"/> + <xsl:with-param name="context" select="'xref'"/> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> + </fo:inline> + </fo:basic-link> +</xsl:template> + +<xsl:template match="*" mode="pagenumber.markup"> + <xsl:variable name="id"> + <xsl:call-template name="object.id"/> + </xsl:variable> + <fo:page-number-citation ref-id="{$id}"/> +</xsl:template> + +<!-- ==================================================================== --> + +<xsl:template match="*" mode="insert.title.markup"> + <xsl:param name="purpose"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="title"/> + + <xsl:choose> + <!-- FIXME: what about the case where titleabbrev is inside the info? --> + <xsl:when test="$purpose = 'xref' and titleabbrev"> + <xsl:apply-templates select="." mode="titleabbrev.markup"/> + </xsl:when> + <xsl:otherwise> + <xsl:copy-of select="$title"/> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template match="chapter|appendix" mode="insert.title.markup"> + <xsl:param name="purpose"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="title"/> + + <xsl:choose> + <xsl:when test="$purpose = 'xref'"> + <fo:inline font-style="italic"> + <xsl:copy-of select="$title"/> + </fo:inline> + </xsl:when> + <xsl:otherwise> + <xsl:copy-of select="$title"/> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template match="*" mode="insert.subtitle.markup"> + <xsl:param name="purpose"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="subtitle"/> + + <xsl:copy-of select="$subtitle"/> +</xsl:template> + +<xsl:template match="*" mode="insert.label.markup"> + <xsl:param name="purpose"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="label"/> + + <xsl:copy-of select="$label"/> +</xsl:template> + +<xsl:template match="*" mode="insert.pagenumber.markup"> + <xsl:param name="purpose"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="pagenumber"/> + + <xsl:copy-of select="$pagenumber"/> +</xsl:template> + +<xsl:template match="*" mode="insert.direction.markup"> + <xsl:param name="purpose"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="direction"/> + + <xsl:copy-of select="$direction"/> +</xsl:template> + +<xsl:template match="olink" mode="pagenumber.markup"> + <!-- Local olinks can use page-citation --> + <xsl:variable name="targetdoc.att" select="@targetdoc"/> + <xsl:variable name="targetptr.att" select="@targetptr"/> + + <xsl:variable name="olink.lang"> + <xsl:call-template name="l10n.language"> + <xsl:with-param name="xref-context" select="true()"/> + </xsl:call-template> + </xsl:variable> + + <xsl:variable name="target.database.filename"> + <xsl:call-template name="select.target.database"> + <xsl:with-param name="targetdoc.att" select="$targetdoc.att"/> + <xsl:with-param name="targetptr.att" select="$targetptr.att"/> + <xsl:with-param name="olink.lang" select="$olink.lang"/> + </xsl:call-template> + </xsl:variable> + + <xsl:variable name="target.database" + select="document($target.database.filename, /)"/> + + <xsl:if test="$olink.debug != 0"> + <xsl:message> + <xsl:text>Olink debug: root element of target.database is '</xsl:text> + <xsl:value-of select="local-name($target.database/*[1])"/> + <xsl:text>'.</xsl:text> + </xsl:message> + </xsl:if> + + <xsl:variable name="olink.key"> + <xsl:call-template name="select.olink.key"> + <xsl:with-param name="targetdoc.att" select="$targetdoc.att"/> + <xsl:with-param name="targetptr.att" select="$targetptr.att"/> + <xsl:with-param name="olink.lang" select="$olink.lang"/> + <xsl:with-param name="target.database" select="$target.database"/> + </xsl:call-template> + </xsl:variable> + + <!-- Olink that points to internal id can be a link --> + <xsl:variable name="linkend"> + <xsl:call-template name="olink.as.linkend"> + <xsl:with-param name="olink.key" select="$olink.key"/> + <xsl:with-param name="olink.lang" select="$olink.lang"/> + <xsl:with-param name="target.database" select="$target.database"/> + </xsl:call-template> + </xsl:variable> + + <xsl:choose> + <xsl:when test="$linkend != ''"> + <fo:page-number-citation ref-id="{$linkend}"/> + </xsl:when> + <xsl:otherwise> + <xsl:message> + <xsl:text>Olink error: no page number linkend for local olink '</xsl:text> + <xsl:value-of select="$olink.key"/> + <xsl:text>'</xsl:text> + </xsl:message> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +</xsl:stylesheet> diff --git a/docbook-xsl-1.76.1/highlighting/README b/docbook-xsl-1.76.1/highlighting/README new file mode 100644 index 0000000..0b31d32 --- /dev/null +++ b/docbook-xsl-1.76.1/highlighting/README @@ -0,0 +1,16 @@ +To use the syntax higlighting extension with DocBook-XSL 1.74.3+, you must: +1. Use a processor that works with the extension: Saxon 6 or Xalan-J. +2. Add the latest version of xslthl-2.X.X.jar to your classpath. +3. Set the highlight.source parameter to 1. +4. Import into your customization one of the following stylesheet module: + * html/highlight.xsl + * xhtml/highlight.xsl + * xhtml-1_1/highlight.xsl + * fo/highlight.xsl +5. Use that customiztion layer. + + +Note: Saxon 8.5 or later is also supported, but since it is an XSLT 2.0 +processor it is not guaranteed to work with DocBook-XSL in all +circumstances. + diff --git a/docbook-xsl-1.76.1/highlighting/c-hl.xml b/docbook-xsl-1.76.1/highlighting/c-hl.xml new file mode 100644 index 0000000..1503dd1 --- /dev/null +++ b/docbook-xsl-1.76.1/highlighting/c-hl.xml @@ -0,0 +1,101 @@ +<?xml version="1.0" encoding="UTF-8"?> + <!-- + Syntax highlighting definition for C xslthl - XSLT Syntax Highlighting http://sourceforge.net/projects/xslthl/ + Copyright (C) 2005-2008 Michal Molhanec, Jirka Kosek, Michiel Hendriks This software is provided 'as-is', without any + express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this + software. Permission is granted to anyone to use this software for any purpose, including commercial applications, and + to alter it and redistribute it freely, subject to the following restrictions: 1. The origin of this software must not + be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an + acknowledgment in the product documentation would be appreciated but is not required. 2. Altered source versions must + be plainly marked as such, and must not be misrepresented as being the original software. 3. This notice may not be + removed or altered from any source distribution. Michal Molhanec <mol1111 at users.sourceforge.net> Jirka Kosek <kosek + at users.sourceforge.net> Michiel Hendriks <elmuerte at users.sourceforge.net> + --> +<highlighters> + <highlighter type="multiline-comment"> + <start>/**</start> + <end>*/</end> + <style>doccomment</style> + </highlighter> + <highlighter type="oneline-comment"> + <start>///</start> + <style>doccomment</style> + </highlighter> + <highlighter type="multiline-comment"> + <start>/*</start> + <end>*/</end> + </highlighter> + <highlighter type="oneline-comment">//</highlighter> + <highlighter type="oneline-comment"> + <!-- use the online-comment highlighter to detect directives --> + <start>#</start> + <lineBreakEscape>\</lineBreakEscape> + <style>directive</style> + </highlighter> + <highlighter type="string"> + <string>"</string> + <escape>\</escape> + </highlighter> + <highlighter type="string"> + <string>'</string> + <escape>\</escape> + </highlighter> + <highlighter type="hexnumber"> + <prefix>0x</prefix> + <suffix>ul</suffix> + <suffix>lu</suffix> + <suffix>u</suffix> + <suffix>l</suffix> + <ignoreCase /> + </highlighter> + <highlighter type="number"> + <point>.</point> + <pointStarts /> + <exponent>e</exponent> + <suffix>ul</suffix> + <suffix>lu</suffix> + <suffix>u</suffix> + <suffix>f</suffix> + <suffix>l</suffix> + <ignoreCase /> + </highlighter> + <highlighter type="keywords"> + <keyword>auto</keyword> + <keyword>_Bool</keyword> + <keyword>break</keyword> + <keyword>case</keyword> + <keyword>char</keyword> + <keyword>_Complex</keyword> + <keyword>const</keyword> + <keyword>continue</keyword> + <keyword>default</keyword> + <keyword>do</keyword> + <keyword>double</keyword> + <keyword>else</keyword> + <keyword>enum</keyword> + <keyword>extern</keyword> + <keyword>float</keyword> + <keyword>for</keyword> + <keyword>goto</keyword> + <keyword>if</keyword> + <keyword>_Imaginary</keyword> + <keyword>inline</keyword> + <keyword>int</keyword> + <keyword>long</keyword> + <keyword>register</keyword> + <keyword>restrict</keyword> + <keyword>return</keyword> + <keyword>short</keyword> + <keyword>signed</keyword> + <keyword>sizeof</keyword> + <keyword>static</keyword> + <keyword>struct</keyword> + <keyword>switch</keyword> + <keyword>typedef</keyword> + <keyword>union</keyword> + <keyword>unsigned</keyword> + <keyword>void</keyword> + <keyword>volatile</keyword> + <keyword>while</keyword> + </highlighter> +</highlighters> \ No newline at end of file diff --git a/docbook-xsl-1.76.1/highlighting/common.xsl b/docbook-xsl-1.76.1/highlighting/common.xsl new file mode 100644 index 0000000..e9b5650 --- /dev/null +++ b/docbook-xsl-1.76.1/highlighting/common.xsl @@ -0,0 +1,120 @@ +<?xml version='1.0'?> +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + + xmlns:s6hl="http://net.sf.xslthl/ConnectorSaxon6" + xmlns:sbhl="http://net.sf.xslthl/ConnectorSaxonB" + xmlns:xhl="http://net.sf.xslthl/ConnectorXalan" + xmlns:saxon6="http://icl.com/saxon" + xmlns:saxonb="http://saxon.sf.net/" + xmlns:xalan="http://xml.apache.org/xalan" + + xmlns:exsl="http://exslt.org/common" + xmlns:xslthl="http://xslthl.sf.net" + exclude-result-prefixes="exsl xslthl s6hl sbhl xhl" + version='1.0'> + +<!-- ******************************************************************** + $Id: common.xsl 8257 2009-02-20 04:40:16Z abdelazer $ + ******************************************************************** + + This file is part of the XSL DocBook Stylesheet distribution. + See ../README or http://docbook.sf.net/release/xsl/current/ for + and other information. + + ******************************************************************** --> + +<!-- this construction is needed to have the saxon and xalan connectors working alongside each other --> +<xalan:component prefix="xhl" functions="highlight"> + <xalan:script lang="javaclass" src="xalan://net.sf.xslthl.ConnectorXalan" /> +</xalan:component> + +<!-- for saxon 6 --> +<saxon6:script implements-prefix="s6hl" language="java" src="java:net.sf.xslthl.ConnectorSaxon6" /> + +<!-- for saxon 8.5 and later --> +<saxonb:script implements-prefix="sbhl" language="java" src="java:net.sf.xslthl.ConnectorSaxonB" /> + + +<!-- You can override this template to do more complex mapping of + language attribute to highlighter language ID (see xslthl-config.xml) --> +<xsl:template name="language.to.xslthl"> + <xsl:param name="context"/> + + <xsl:choose> + <xsl:when test="$context/@language != ''"> + <xsl:value-of select="$context/@language"/> + </xsl:when> + <xsl:when test="$highlight.default.language != ''"> + <xsl:value-of select="$highlight.default.language"/> + </xsl:when> + </xsl:choose> +</xsl:template> + +<xsl:template name="apply-highlighting"> + <xsl:choose> + <!-- Do we want syntax highlighting --> + <xsl:when test="$highlight.source != 0"> + <xsl:variable name="language"> + <xsl:call-template name="language.to.xslthl"> + <xsl:with-param name="context" select="."/> + </xsl:call-template> + </xsl:variable> + <xsl:choose> + <xsl:when test="$language != ''"> + <xsl:variable name="content"> + <xsl:apply-templates/> + </xsl:variable> + <xsl:choose> + <xsl:when test="function-available('s6hl:highlight')"> + <xsl:apply-templates select="s6hl:highlight($language, exsl:node-set($content), $highlight.xslthl.config)" + mode="xslthl"/> + </xsl:when> + <xsl:when test="function-available('sbhl:highlight')"> + <xsl:apply-templates select="sbhl:highlight($language, exsl:node-set($content), $highlight.xslthl.config)" + mode="xslthl"/> + </xsl:when> + <xsl:when test="function-available('xhl:highlight')"> + <xsl:apply-templates select="xhl:highlight($language, exsl:node-set($content), $highlight.xslthl.config)" + mode="xslthl"/> + </xsl:when> + <xsl:otherwise> + <xsl:copy-of select="$content"/> + </xsl:otherwise> + </xsl:choose> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates/> + </xsl:otherwise> + </xsl:choose> + </xsl:when> + <!-- No syntax highlighting --> + <xsl:otherwise> + <xsl:apply-templates/> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<!-- A fallback when the specific style isn't recognized --> +<xsl:template match="xslthl:*" mode="xslthl"> + <xsl:message> + <xsl:text>unprocessed xslthl style: </xsl:text> + <xsl:value-of select="local-name(.)" /> + </xsl:message> + <xsl:apply-templates mode="xslthl"/> +</xsl:template> + +<!-- Copy over already produced markup (FO/HTML) --> +<xsl:template match="node()" mode="xslthl" priority="-1"> + <xsl:copy> + <xsl:apply-templates select="node()" mode="xslthl"/> + </xsl:copy> +</xsl:template> + +<xsl:template match="*" mode="xslthl"> + <xsl:copy> + <xsl:copy-of select="@*"/> + <xsl:apply-templates select="node()" mode="xslthl"/> + </xsl:copy> +</xsl:template> + +</xsl:stylesheet> diff --git a/docbook-xsl-1.76.1/highlighting/cpp-hl.xml b/docbook-xsl-1.76.1/highlighting/cpp-hl.xml new file mode 100644 index 0000000..db57d5e --- /dev/null +++ b/docbook-xsl-1.76.1/highlighting/cpp-hl.xml @@ -0,0 +1,150 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + +Syntax highlighting definition for C++ + +xslthl - XSLT Syntax Highlighting +http://sourceforge.net/projects/xslthl/ +Copyright (C) 2005-2008 Michal Molhanec, Jirka Kosek, Michiel Hendriks + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. + +Michal Molhanec <mol1111 at users.sourceforge.net> +Jirka Kosek <kosek at users.sourceforge.net> +Michiel Hendriks <elmuerte at users.sourceforge.net> + +--> +<highlighters> + <highlighter type="multiline-comment"> + <start>/**</start> + <end>*/</end> + <style>doccomment</style> + </highlighter> + <highlighter type="oneline-comment"> + <start>///</start> + <style>doccomment</style> + </highlighter> + <highlighter type="multiline-comment"> + <start>/*</start> + <end>*/</end> + </highlighter> + <highlighter type="oneline-comment">//</highlighter> + <highlighter type="oneline-comment"> + <!-- use the online-comment highlighter to detect directives --> + <start>#</start> + <lineBreakEscape>\</lineBreakEscape> + <style>directive</style> + </highlighter> + <highlighter type="string"> + <string>"</string> + <escape>\</escape> + </highlighter> + <highlighter type="string"> + <string>'</string> + <escape>\</escape> + </highlighter> + <highlighter type="hexnumber"> + <prefix>0x</prefix> + <suffix>ul</suffix> + <suffix>lu</suffix> + <suffix>u</suffix> + <suffix>l</suffix> + <ignoreCase /> + </highlighter> + <highlighter type="number"> + <point>.</point> + <pointStarts /> + <exponent>e</exponent> + <suffix>ul</suffix> + <suffix>lu</suffix> + <suffix>u</suffix> + <suffix>f</suffix> + <suffix>l</suffix> + <ignoreCase /> + </highlighter> + <highlighter type="keywords"> + <!-- C keywords --> + <keyword>auto</keyword> + <keyword>_Bool</keyword> + <keyword>break</keyword> + <keyword>case</keyword> + <keyword>char</keyword> + <keyword>_Complex</keyword> + <keyword>const</keyword> + <keyword>continue</keyword> + <keyword>default</keyword> + <keyword>do</keyword> + <keyword>double</keyword> + <keyword>else</keyword> + <keyword>enum</keyword> + <keyword>extern</keyword> + <keyword>float</keyword> + <keyword>for</keyword> + <keyword>goto</keyword> + <keyword>if</keyword> + <keyword>_Imaginary</keyword> + <keyword>inline</keyword> + <keyword>int</keyword> + <keyword>long</keyword> + <keyword>register</keyword> + <keyword>restrict</keyword> + <keyword>return</keyword> + <keyword>short</keyword> + <keyword>signed</keyword> + <keyword>sizeof</keyword> + <keyword>static</keyword> + <keyword>struct</keyword> + <keyword>switch</keyword> + <keyword>typedef</keyword> + <keyword>union</keyword> + <keyword>unsigned</keyword> + <keyword>void</keyword> + <keyword>volatile</keyword> + <keyword>while</keyword> + <!-- C++ keywords --> + <keyword>asm</keyword> + <keyword>dynamic_cast</keyword> + <keyword>namespace</keyword> + <keyword>reinterpret_cast</keyword> + <keyword>try</keyword> + <keyword>bool</keyword> + <keyword>explicit</keyword> + <keyword>new</keyword> + <keyword>static_cast</keyword> + <keyword>typeid</keyword> + <keyword>catch</keyword> + <keyword>false</keyword> + <keyword>operator</keyword> + <keyword>template</keyword> + <keyword>typename</keyword> + <keyword>class</keyword> + <keyword>friend</keyword> + <keyword>private</keyword> + <keyword>this</keyword> + <keyword>using</keyword> + <keyword>const_cast</keyword> + <keyword>inline</keyword> + <keyword>public</keyword> + <keyword>throw</keyword> + <keyword>virtual</keyword> + <keyword>delete</keyword> + <keyword>mutable</keyword> + <keyword>protected</keyword> + <keyword>true</keyword> + <keyword>wchar_t</keyword> + </highlighter> +</highlighters> \ No newline at end of file diff --git a/docbook-xsl-1.76.1/highlighting/csharp-hl.xml b/docbook-xsl-1.76.1/highlighting/csharp-hl.xml new file mode 100644 index 0000000..99c2e3e --- /dev/null +++ b/docbook-xsl-1.76.1/highlighting/csharp-hl.xml @@ -0,0 +1,187 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + +Syntax highlighting definition for C# + +xslthl - XSLT Syntax Highlighting +http://sourceforge.net/projects/xslthl/ +Copyright (C) 2005-2008 Michal Molhanec, Jirka Kosek, Michiel Hendriks + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. + +Michal Molhanec <mol1111 at users.sourceforge.net> +Jirka Kosek <kosek at users.sourceforge.net> +Michiel Hendriks <elmuerte at users.sourceforge.net> + +--> +<highlighters> + <highlighter type="multiline-comment"> + <start>/**</start> + <end>*/</end> + <style>doccomment</style> + </highlighter> + <highlighter type="oneline-comment"> + <start>///</start> + <style>doccomment</style> + </highlighter> + <highlighter type="multiline-comment"> + <start>/*</start> + <end>*/</end> + </highlighter> + <highlighter type="oneline-comment">//</highlighter> + <highlighter type="annotation"> + <!-- annotations are called (custom) "attributes" in .NET --> + <start>[</start> + <end>]</end> + <valueStart>(</valueStart> + <valueEnd>)</valueEnd> + </highlighter> + <highlighter type="oneline-comment"> + <!-- C# supports a couple of directives --> + <start>#</start> + <lineBreakEscape>\</lineBreakEscape> + <style>directive</style> + </highlighter> + <highlighter type="string"> + <!-- strings starting with an "@" can span multiple lines --> + <string>@"</string> + <endString>"</endString> + <escape>\</escape> + <spanNewLines /> + </highlighter> + <highlighter type="string"> + <string>"</string> + <escape>\</escape> + </highlighter> + <highlighter type="string"> + <string>'</string> + <escape>\</escape> + </highlighter> + <highlighter type="hexnumber"> + <prefix>0x</prefix> + <suffix>ul</suffix> + <suffix>lu</suffix> + <suffix>u</suffix> + <suffix>l</suffix> + <ignoreCase /> + </highlighter> + <highlighter type="number"> + <point>.</point> + <pointStarts /> + <exponent>e</exponent> + <suffix>ul</suffix> + <suffix>lu</suffix> + <suffix>u</suffix> + <suffix>f</suffix> + <suffix>d</suffix> + <suffix>m</suffix> + <suffix>l</suffix> + <ignoreCase /> + </highlighter> + <highlighter type="keywords"> + <keyword>abstract</keyword> + <keyword>as</keyword> + <keyword>base</keyword> + <keyword>bool</keyword> + <keyword>break</keyword> + <keyword>byte</keyword> + <keyword>case</keyword> + <keyword>catch</keyword> + <keyword>char</keyword> + <keyword>checked</keyword> + <keyword>class</keyword> + <keyword>const</keyword> + <keyword>continue</keyword> + <keyword>decimal</keyword> + <keyword>default</keyword> + <keyword>delegate</keyword> + <keyword>do</keyword> + <keyword>double</keyword> + <keyword>else</keyword> + <keyword>enum</keyword> + <keyword>event</keyword> + <keyword>explicit</keyword> + <keyword>extern</keyword> + <keyword>false</keyword> + <keyword>finally</keyword> + <keyword>fixed</keyword> + <keyword>float</keyword> + <keyword>for</keyword> + <keyword>foreach</keyword> + <keyword>goto</keyword> + <keyword>if</keyword> + <keyword>implicit</keyword> + <keyword>in</keyword> + <keyword>int</keyword> + <keyword>interface</keyword> + <keyword>internal</keyword> + <keyword>is</keyword> + <keyword>lock</keyword> + <keyword>long</keyword> + <keyword>namespace</keyword> + <keyword>new</keyword> + <keyword>null</keyword> + <keyword>object</keyword> + <keyword>operator</keyword> + <keyword>out</keyword> + <keyword>override</keyword> + <keyword>params</keyword> + <keyword>private</keyword> + <keyword>protected</keyword> + <keyword>public</keyword> + <keyword>readonly</keyword> + <keyword>ref</keyword> + <keyword>return</keyword> + <keyword>sbyte</keyword> + <keyword>sealed</keyword> + <keyword>short</keyword> + <keyword>sizeof</keyword> + <keyword>stackalloc</keyword> + <keyword>static</keyword> + <keyword>string</keyword> + <keyword>struct</keyword> + <keyword>switch</keyword> + <keyword>this</keyword> + <keyword>throw</keyword> + <keyword>true</keyword> + <keyword>try</keyword> + <keyword>typeof</keyword> + <keyword>uint</keyword> + <keyword>ulong</keyword> + <keyword>unchecked</keyword> + <keyword>unsafe</keyword> + <keyword>ushort</keyword> + <keyword>using</keyword> + <keyword>virtual</keyword> + <keyword>void</keyword> + <keyword>volatile</keyword> + <keyword>while</keyword> + </highlighter> + <highlighter type="keywords"> + <!-- special words, not really keywords --> + <keyword>add</keyword> + <keyword>alias</keyword> + <keyword>get</keyword> + <keyword>global</keyword> + <keyword>partial</keyword> + <keyword>remove</keyword> + <keyword>set</keyword> + <keyword>value</keyword> + <keyword>where</keyword> + <keyword>yield</keyword> + </highlighter> +</highlighters> \ No newline at end of file diff --git a/docbook-xsl-1.76.1/highlighting/delphi-hl.xml b/docbook-xsl-1.76.1/highlighting/delphi-hl.xml new file mode 100644 index 0000000..d5b4d1a --- /dev/null +++ b/docbook-xsl-1.76.1/highlighting/delphi-hl.xml @@ -0,0 +1,200 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + +Syntax highlighting definition for Delphi (also suitable for Pascal) + +xslthl - XSLT Syntax Highlighting +http://sourceforge.net/projects/xslthl/ +Copyright (C) 2005-2008 Michal Molhanec, Jirka Kosek, Michiel Hendriks + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. + +Michal Molhanec <mol1111 at users.sourceforge.net> +Jirka Kosek <kosek at users.sourceforge.net> +Michiel Hendriks <elmuerte at users.sourceforge.net> + +--> +<highlighters> + <highlighter type="multiline-comment"> + <!-- multiline comments starting with an $ are directives --> + <start>{$</start> + <end>}</end> + <style>directive</style> + </highlighter> + <highlighter type="multiline-comment"> + <!-- multiline comments starting with an $ are directives --> + <start>(*$</start> + <end>)</end> + <style>directive</style> + </highlighter> + <highlighter type="multiline-comment"> + <start>{</start> + <end>}</end> + </highlighter> + <highlighter type="multiline-comment"> + <start>(*</start> + <end>*)</end> + </highlighter> + <highlighter type="oneline-comment">//</highlighter> + <highlighter type="string"> + <string>'</string> + <doubleEscapes /> + </highlighter> + <highlighter type="hexnumber"> + <prefix>#$</prefix> + <ignoreCase /> + <style>string</style> + </highlighter> + <highlighter type="number"> + <prefix>#</prefix> + <ignoreCase /> + <style>string</style> + </highlighter> + <highlighter type="hexnumber"> + <prefix>$</prefix> + <ignoreCase /> + </highlighter> + <highlighter type="number"> + <point>.</point> + <exponent>e</exponent> + <ignoreCase /> + </highlighter> + <highlighter type="keywords"> + <!-- Reserved words --> + <keyword>and</keyword> + <keyword>else</keyword> + <keyword>inherited</keyword> + <keyword>packed</keyword> + <keyword>then</keyword> + <keyword>array</keyword> + <keyword>end</keyword> + <keyword>initialization</keyword> + <keyword>procedure</keyword> + <keyword>threadvar</keyword> + <keyword>as</keyword> + <keyword>except</keyword> + <keyword>inline</keyword> + <keyword>program</keyword> + <keyword>to</keyword> + <keyword>asm</keyword> + <keyword>exports</keyword> + <keyword>interface</keyword> + <keyword>property</keyword> + <keyword>try</keyword> + <keyword>begin</keyword> + <keyword>file</keyword> + <keyword>is</keyword> + <keyword>raise</keyword> + <keyword>type</keyword> + <keyword>case</keyword> + <keyword>final</keyword> + <keyword>label</keyword> + <keyword>record</keyword> + <keyword>unit</keyword> + <keyword>class</keyword> + <keyword>finalization</keyword> + <keyword>library</keyword> + <keyword>repeat</keyword> + <keyword>unsafe</keyword> + <keyword>const</keyword> + <keyword>finally</keyword> + <keyword>mod</keyword> + <keyword>resourcestring</keyword> + <keyword>until</keyword> + <keyword>constructor</keyword> + <keyword>for</keyword> + <keyword>nil</keyword> + <keyword>sealed</keyword> + <keyword>uses</keyword> + <keyword>destructor</keyword> + <keyword>function</keyword> + <keyword>not</keyword> + <keyword>set</keyword> + <keyword>var</keyword> + <keyword>dispinterface</keyword> + <keyword>goto</keyword> + <keyword>object</keyword> + <keyword>shl</keyword> + <keyword>while</keyword> + <keyword>div</keyword> + <keyword>if</keyword> + <keyword>of</keyword> + <keyword>shr</keyword> + <keyword>with</keyword> + <keyword>do</keyword> + <keyword>implementation</keyword> + <keyword>or</keyword> + <keyword>static</keyword> + <keyword>xor</keyword> + <keyword>downto</keyword> + <keyword>in</keyword> + <keyword>out</keyword> + <keyword>string</keyword> + + <!-- Special meaning --> + <keyword>at</keyword> + <keyword>on</keyword> + + <!-- Directives --> + <keyword>absolute</keyword> + <keyword>dynamic</keyword> + <keyword>local</keyword> + <keyword>platform</keyword> + <keyword>requires</keyword> + <keyword>abstract</keyword> + <keyword>export</keyword> + <keyword>message</keyword> + <keyword>private</keyword> + <keyword>resident</keyword> + <keyword>assembler</keyword> + <keyword>external</keyword> + <keyword>name</keyword> + <keyword>protected</keyword> + <keyword>safecall</keyword> + <keyword>automated</keyword> + <keyword>far</keyword> + <keyword>near</keyword> + <keyword>public</keyword> + <keyword>stdcall</keyword> + <keyword>cdecl</keyword> + <keyword>forward</keyword> + <keyword>nodefault</keyword> + <keyword>published</keyword> + <keyword>stored</keyword> + <keyword>contains</keyword> + <keyword>implements</keyword> + <keyword>overload</keyword> + <keyword>read</keyword> + <keyword>varargs</keyword> + <keyword>default</keyword> + <keyword>index</keyword> + <keyword>override</keyword> + <keyword>readonly</keyword> + <keyword>virtual</keyword> + <keyword>deprecated</keyword> + <keyword>inline</keyword> + <keyword>package</keyword> + <keyword>register</keyword> + <keyword>write</keyword> + <keyword>dispid</keyword> + <keyword>library</keyword> + <keyword>pascal</keyword> + <keyword>reintroduce</keyword> + <keyword>writeonly</keyword> + <ignoreCase /> + </highlighter> +</highlighters> \ No newline at end of file diff --git a/docbook-xsl-1.76.1/highlighting/ini-hl.xml b/docbook-xsl-1.76.1/highlighting/ini-hl.xml new file mode 100644 index 0000000..8a938f3 --- /dev/null +++ b/docbook-xsl-1.76.1/highlighting/ini-hl.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + +Syntax highlighting definition for ini files + +xslthl - XSLT Syntax Highlighting +http://sourceforge.net/projects/xslthl/ +Copyright (C) 2005-2008 Michal Molhanec, Jirka Kosek, Michiel Hendriks + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. + +Michal Molhanec <mol1111 at users.sourceforge.net> +Jirka Kosek <kosek at users.sourceforge.net> +Michiel Hendriks <elmuerte at users.sourceforge.net> + +--> +<highlighters> + <highlighter type="oneline-comment">;</highlighter> + <highlighter type="regex"> + <!-- ini sections --> + <pattern>^(\[.+\]\s*)$</pattern> + <style>keyword</style> + <flags>MULTILINE</flags> + </highlighter> + <highlighter type="regex"> + <!-- the keys in an ini section --> + <pattern>^(.+)(?==)</pattern> + <style>attribute</style> + <flags>MULTILINE</flags> + </highlighter> +</highlighters> \ No newline at end of file diff --git a/docbook-xsl-1.76.1/highlighting/java-hl.xml b/docbook-xsl-1.76.1/highlighting/java-hl.xml new file mode 100644 index 0000000..672d518 --- /dev/null +++ b/docbook-xsl-1.76.1/highlighting/java-hl.xml @@ -0,0 +1,117 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + +Syntax highlighting definition for Java + +xslthl - XSLT Syntax Highlighting +http://sourceforge.net/projects/xslthl/ +Copyright (C) 2005-2008 Michal Molhanec, Jirka Kosek, Michiel Hendriks + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. + +Michal Molhanec <mol1111 at users.sourceforge.net> +Jirka Kosek <kosek at users.sourceforge.net> +Michiel Hendriks <elmuerte at users.sourceforge.net> + +--> +<highlighters> + <highlighter type="multiline-comment"> + <start>/**</start> + <end>*/</end> + <style>doccomment</style> + </highlighter> + <highlighter type="multiline-comment"> + <start>/*</start> + <end>*/</end> + </highlighter> + <highlighter type="oneline-comment">//</highlighter> + <highlighter type="string"> + <string>"</string> + <escape>\</escape> + </highlighter> + <highlighter type="string"> + <string>'</string> + <escape>\</escape> + </highlighter> + <highlighter type="annotation"> + <start>@</start> + <valueStart>(</valueStart> + <valueEnd>)</valueEnd> + </highlighter> + <highlighter type="hexnumber"> + <prefix>0x</prefix> + <ignoreCase /> + </highlighter> + <highlighter type="number"> + <point>.</point> + <exponent>e</exponent> + <suffix>f</suffix> + <suffix>d</suffix> + <suffix>l</suffix> + <ignoreCase /> + </highlighter> + <highlighter type="keywords"> + <keyword>abstract</keyword> + <keyword>boolean</keyword> + <keyword>break</keyword> + <keyword>byte</keyword> + <keyword>case</keyword> + <keyword>catch</keyword> + <keyword>char</keyword> + <keyword>class</keyword> + <keyword>const</keyword> + <keyword>continue</keyword> + <keyword>default</keyword> + <keyword>do</keyword> + <keyword>double</keyword> + <keyword>else</keyword> + <keyword>extends</keyword> + <keyword>final</keyword> + <keyword>finally</keyword> + <keyword>float</keyword> + <keyword>for</keyword> + <keyword>goto</keyword> + <keyword>if</keyword> + <keyword>implements</keyword> + <keyword>import</keyword> + <keyword>instanceof</keyword> + <keyword>int</keyword> + <keyword>interface</keyword> + <keyword>long</keyword> + <keyword>native</keyword> + <keyword>new</keyword> + <keyword>package</keyword> + <keyword>private</keyword> + <keyword>protected</keyword> + <keyword>public</keyword> + <keyword>return</keyword> + <keyword>short</keyword> + <keyword>static</keyword> + <keyword>strictfp</keyword> + <keyword>super</keyword> + <keyword>switch</keyword> + <keyword>synchronized</keyword> + <keyword>this</keyword> + <keyword>throw</keyword> + <keyword>throws</keyword> + <keyword>transient</keyword> + <keyword>try</keyword> + <keyword>void</keyword> + <keyword>volatile</keyword> + <keyword>while</keyword> + </highlighter> +</highlighters> \ No newline at end of file diff --git a/docbook-xsl-1.76.1/highlighting/javascript-hl.xml b/docbook-xsl-1.76.1/highlighting/javascript-hl.xml new file mode 100644 index 0000000..08c90ba --- /dev/null +++ b/docbook-xsl-1.76.1/highlighting/javascript-hl.xml @@ -0,0 +1,147 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + +Syntax highlighting definition for JavaScript + +xslthl - XSLT Syntax Highlighting +http://sourceforge.net/projects/xslthl/ +Copyright (C) 2005-2008 Michal Molhanec, Jirka Kosek, Michiel Hendriks + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. + +Michal Molhanec <mol1111 at users.sourceforge.net> +Jirka Kosek <kosek at users.sourceforge.net> +Michiel Hendriks <elmuerte at users.sourceforge.net> + +--> +<highlighters> + <highlighter type="multiline-comment"> + <start>/*</start> + <end>*/</end> + </highlighter> + <highlighter type="oneline-comment">//</highlighter> + <highlighter type="string"> + <string>"</string> + <escape>\</escape> + </highlighter> + <highlighter type="string"> + <string>'</string> + <escape>\</escape> + </highlighter> + <highlighter type="hexnumber"> + <prefix>0x</prefix> + <ignoreCase /> + </highlighter> + <highlighter type="number"> + <point>.</point> + <exponent>e</exponent> + <ignoreCase /> + </highlighter> + <highlighter type="keywords"> + <keyword>break</keyword> + <keyword>case</keyword> + <keyword>catch</keyword> + <keyword>continue</keyword> + <keyword>default</keyword> + <keyword>delete</keyword> + <keyword>do</keyword> + <keyword>else</keyword> + <keyword>finally</keyword> + <keyword>for</keyword> + <keyword>function</keyword> + <keyword>if</keyword> + <keyword>in</keyword> + <keyword>instanceof</keyword> + <keyword>new</keyword> + <keyword>return</keyword> + <keyword>switch</keyword> + <keyword>this</keyword> + <keyword>throw</keyword> + <keyword>try</keyword> + <keyword>typeof</keyword> + <keyword>var</keyword> + <keyword>void</keyword> + <keyword>while</keyword> + <keyword>with</keyword> + <!-- future keywords --> + <keyword>abstract</keyword> + <keyword>boolean</keyword> + <keyword>byte</keyword> + <keyword>char</keyword> + <keyword>class</keyword> + <keyword>const</keyword> + <keyword>debugger</keyword> + <keyword>double</keyword> + <keyword>enum</keyword> + <keyword>export</keyword> + <keyword>extends</keyword> + <keyword>final</keyword> + <keyword>float</keyword> + <keyword>goto</keyword> + <keyword>implements</keyword> + <keyword>import</keyword> + <keyword>int</keyword> + <keyword>interface</keyword> + <keyword>long</keyword> + <keyword>native</keyword> + <keyword>package</keyword> + <keyword>private</keyword> + <keyword>protected</keyword> + <keyword>public</keyword> + <keyword>short</keyword> + <keyword>static</keyword> + <keyword>super</keyword> + <keyword>synchronized</keyword> + <keyword>throws</keyword> + <keyword>transient</keyword> + <keyword>volatile</keyword> + </highlighter> + <highlighter type="keywords"> + <keyword>prototype</keyword> + <!-- Global Objects --> + <keyword>Array</keyword> + <keyword>Boolean</keyword> + <keyword>Date</keyword> + <keyword>Error</keyword> + <keyword>EvalError</keyword> + <keyword>Function</keyword> + <keyword>Math</keyword> + <keyword>Number</keyword> + <keyword>Object</keyword> + <keyword>RangeError</keyword> + <keyword>ReferenceError</keyword> + <keyword>RegExp</keyword> + <keyword>String</keyword> + <keyword>SyntaxError</keyword> + <keyword>TypeError</keyword> + <keyword>URIError</keyword> + <!-- Global functions --> + <keyword>decodeURI</keyword> + <keyword>decodeURIComponent</keyword> + <keyword>encodeURI</keyword> + <keyword>encodeURIComponent</keyword> + <keyword>eval</keyword> + <keyword>isFinite</keyword> + <keyword>isNaN</keyword> + <keyword>parseFloat</keyword> + <keyword>parseInt</keyword> + <!-- Global properties --> + <keyword>Infinity</keyword> + <keyword>NaN</keyword> + <keyword>undefined</keyword> + </highlighter> +</highlighters> \ No newline at end of file diff --git a/docbook-xsl-1.76.1/highlighting/m2-hl.xml b/docbook-xsl-1.76.1/highlighting/m2-hl.xml new file mode 100644 index 0000000..b145f74 --- /dev/null +++ b/docbook-xsl-1.76.1/highlighting/m2-hl.xml @@ -0,0 +1,90 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + +Syntax highlighting definition for Modulo-2 + +xslthl - XSLT Syntax Highlighting +http://sourceforge.net/projects/xslthl/ +Copyright (C) 2005-2008 Michal Molhanec, Jirka Kosek, Michiel Hendriks + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. + +Michal Molhanec <mol1111 at users.sourceforge.net> +Jirka Kosek <kosek at users.sourceforge.net> +Michiel Hendriks <elmuerte at users.sourceforge.net> + +--> +<highlighters> + <highlighter type="nested-multiline-comment"> + <start>(*</start> + <end>*)</end> + </highlighter> + <highlighter type="string"> + <string>"</string> + </highlighter> + <highlighter type="string"> + <string>'</string> + </highlighter> + <highlighter type="number"> + <point>.</point> + <exponent>e</exponent> + <ignoreCase /> + </highlighter> + <highlighter type="keywords"> + <keyword>and</keyword> + <keyword>array</keyword> + <keyword>begin</keyword> + <keyword>by</keyword> + <keyword>case</keyword> + <keyword>const</keyword> + <keyword>definition</keyword> + <keyword>div</keyword> + <keyword>do</keyword> + <keyword>else</keyword> + <keyword>elsif</keyword> + <keyword>end</keyword> + <keyword>exit</keyword> + <keyword>export</keyword> + <keyword>for</keyword> + <keyword>from</keyword> + <keyword>if</keyword> + <keyword>implementation</keyword> + <keyword>import</keyword> + <keyword>in</keyword> + <keyword>loop</keyword> + <keyword>mod</keyword> + <keyword>module</keyword> + <keyword>not</keyword> + <keyword>of</keyword> + <keyword>or</keyword> + <keyword>pointer</keyword> + <keyword>procedure</keyword> + <keyword>qualified</keyword> + <keyword>record</keyword> + <keyword>repeat</keyword> + <keyword>return</keyword> + <keyword>set</keyword> + <keyword>then</keyword> + <keyword>to</keyword> + <keyword>type</keyword> + <keyword>until</keyword> + <keyword>var</keyword> + <keyword>while</keyword> + <keyword>with</keyword> + <ignoreCase /> + </highlighter> +</highlighters> \ No newline at end of file diff --git a/docbook-xsl-1.76.1/highlighting/myxml-hl.xml b/docbook-xsl-1.76.1/highlighting/myxml-hl.xml new file mode 100644 index 0000000..afa4be7 --- /dev/null +++ b/docbook-xsl-1.76.1/highlighting/myxml-hl.xml @@ -0,0 +1,116 @@ +<?xml version='1.0'?> +<!-- + + Bakalarska prace: Zvyraznovani syntaxe v XSLT + Michal Molhanec 2005 + + myxml-hl.xml - konfigurace zvyraznovace XML, ktera zvlast zvyrazni + HTML elementy a XSL elementy + +--> +<highlighters> + +<wholehighlighter type='xml'> + <elementSet> + <style>html</style> + <element>A</element> + <element>ABBR</element> + <element>ACRONYM</element> + <element>ADDRESS</element> + <element>APPLET</element> + <element>AREA</element> + <element>B</element> + <element>BASE</element> + <element>BASEFONT</element> + <element>BDO</element> + <element>BIG</element> + <element>BLOCKQUOTE</element> + <element>BODY</element> + <element>BR</element> + <element>BUTTON</element> + <element>CAPTION</element> + <element>CENTER</element> + <element>CITE</element> + <element>CODE</element> + <element>COL</element> + <element>COLGROUP</element> + <element>DD</element> + <element>DEL</element> + <element>DFN</element> + <element>DIR</element> + <element>DIV</element> + <element>DL</element> + <element>DT</element> + <element>EM</element> + <element>FIELDSET</element> + <element>FONT</element> + <element>FORM</element> + <element>FRAME</element> + <element>FRAMESET</element> + <element>H1</element> + <element>H2</element> + <element>H3</element> + <element>H4</element> + <element>H5</element> + <element>H6</element> + <element>HEAD</element> + <element>HR</element> + <element>HTML</element> + <element>I</element> + <element>IFRAME</element> + <element>IMG</element> + <element>INPUT</element> + <element>INS</element> + <element>ISINDEX</element> + <element>KBD</element> + <element>LABEL</element> + <element>LEGEND</element> + <element>LI</element> + <element>LINK</element> + <element>MAP</element> + <element>MENU</element> + <element>META</element> + <element>NOFRAMES</element> + <element>NOSCRIPT</element> + <element>OBJECT</element> + <element>OL</element> + <element>OPTGROUP</element> + <element>OPTION</element> + <element>P</element> + <element>PARAM</element> + <element>PRE</element> + <element>Q</element> + <element>S</element> + <element>SAMP</element> + <element>SCRIPT</element> + <element>SELECT</element> + <element>SMALL</element> + <element>SPAN</element> + <element>STRIKE</element> + <element>STRONG</element> + <element>STYLE</element> + <element>SUB</element> + <element>SUP</element> + <element>TABLE</element> + <element>TBODY</element> + <element>TD</element> + <element>TEXTAREA</element> + <element>TFOOT</element> + <element>TH</element> + <element>THEAD</element> + <element>TITLE</element> + <element>TR</element> + <element>TT</element> + <element>U</element> + <element>UL</element> + <element>VAR</element> + <element>XMP</element> + <ignoreCase/> + </elementSet> + <elementPrefix> + <style>xslt</style> + <prefix>xsl:</prefix> + </elementPrefix> +</wholehighlighter> + +</highlighters> \ No newline at end of file diff --git a/docbook-xsl-1.76.1/highlighting/perl-hl.xml b/docbook-xsl-1.76.1/highlighting/perl-hl.xml new file mode 100644 index 0000000..da1924a --- /dev/null +++ b/docbook-xsl-1.76.1/highlighting/perl-hl.xml @@ -0,0 +1,120 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + +Syntax highlighting definition for Perl + +xslthl - XSLT Syntax Highlighting +http://sourceforge.net/projects/xslthl/ +Copyright (C) 2005-2008 Michal Molhanec, Jirka Kosek, Michiel Hendriks + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. + +Michal Molhanec <mol1111 at users.sourceforge.net> +Jirka Kosek <kosek at users.sourceforge.net> +Michiel Hendriks <elmuerte at users.sourceforge.net> + +--> +<highlighters> + <highlighter type="oneline-comment">#</highlighter> + <highlighter type="heredoc"> + <start><<</start> + <quote>'</quote> + <quote>"</quote> + <noWhiteSpace/> + </highlighter> + <highlighter type="string"> + <string>"</string> + <escape>\</escape> + </highlighter> + <highlighter type="string"> + <string>'</string> + <escape>\</escape> + <spanNewLines/> + </highlighter> + <highlighter type="hexnumber"> + <prefix>0x</prefix> + <ignoreCase /> + </highlighter> + <highlighter type="number"> + <point>.</point> + <pointStarts /> + <ignoreCase /> + </highlighter> + <highlighter type="keywords"> + <keyword>if</keyword> + <keyword>unless</keyword> + <keyword>while</keyword> + <keyword>until</keyword> + <keyword>foreach</keyword> + <keyword>else</keyword> + <keyword>elsif</keyword> + <keyword>for</keyword> + <keyword>when</keyword> + <keyword>default</keyword> + <keyword>given</keyword> + <!-- Keywords related to the control flow of your perl program --> + <keyword>caller</keyword> + <keyword>continue</keyword> + <keyword>die</keyword> + <keyword>do</keyword> + <keyword>dump</keyword> + <keyword>eval</keyword> + <keyword>exit</keyword> + <keyword>goto</keyword> + <keyword>last</keyword> + <keyword>next</keyword> + <keyword>redo</keyword> + <keyword>return</keyword> + <keyword>sub</keyword> + <keyword>wantarray</keyword> + <!-- Keywords related to scoping --> + <keyword>caller</keyword> + <keyword>import</keyword> + <keyword>local</keyword> + <keyword>my</keyword> + <keyword>package</keyword> + <keyword>use</keyword> + <!-- Keywords related to perl modules --> + <keyword>do</keyword> + <keyword>import</keyword> + <keyword>no</keyword> + <keyword>package</keyword> + <keyword>require</keyword> + <keyword>use</keyword> + <!-- Keywords related to classes and object-orientedness --> + <keyword>bless</keyword> + <keyword>dbmclose</keyword> + <keyword>dbmopen</keyword> + <keyword>package</keyword> + <keyword>ref</keyword> + <keyword>tie</keyword> + <keyword>tied</keyword> + <keyword>untie</keyword> + <keyword>use</keyword> + <!-- operators --> + <keyword>and</keyword> + <keyword>or</keyword> + <keyword>not</keyword> + <keyword>eq</keyword> + <keyword>ne</keyword> + <keyword>lt</keyword> + <keyword>gt</keyword> + <keyword>le</keyword> + <keyword>ge</keyword> + <keyword>cmp</keyword> + </highlighter> +</highlighters> \ No newline at end of file diff --git a/docbook-xsl-1.76.1/highlighting/php-hl.xml b/docbook-xsl-1.76.1/highlighting/php-hl.xml new file mode 100644 index 0000000..4a70225 --- /dev/null +++ b/docbook-xsl-1.76.1/highlighting/php-hl.xml @@ -0,0 +1,149 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + +Syntax highlighting definition for PHP + +xslthl - XSLT Syntax Highlighting +http://sourceforge.net/projects/xslthl/ +Copyright (C) 2005-2008 Michal Molhanec, Jirka Kosek, Michiel Hendriks + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. + +Michal Molhanec <mol1111 at users.sourceforge.net> +Jirka Kosek <kosek at users.sourceforge.net> +Michiel Hendriks <elmuerte at users.sourceforge.net> + +--> +<highlighters> + <highlighter type="multiline-comment"> + <start>/**</start> + <end>*/</end> + <style>doccomment</style> + </highlighter> + <highlighter type="oneline-comment"> + <start>///</start> + <style>doccomment</style> + </highlighter> + <highlighter type="multiline-comment"> + <start>/*</start> + <end>*/</end> + </highlighter> + <highlighter type="oneline-comment">//</highlighter> + <highlighter type="oneline-comment">#</highlighter> + <highlighter type="string"> + <string>"</string> + <escape>\</escape> + <spanNewLines /> + </highlighter> + <highlighter type="string"> + <string>'</string> + <escape>\</escape> + <spanNewLines /> + </highlighter> + <highlighter type="heredoc"> + <start><<<</start> + </highlighter> + <highlighter type="hexnumber"> + <prefix>0x</prefix> + <ignoreCase /> + </highlighter> + <highlighter type="number"> + <point>.</point> + <exponent>e</exponent> + <ignoreCase /> + </highlighter> + <highlighter type="keywords"> + <keyword>and</keyword> + <keyword>or</keyword> + <keyword>xor</keyword> + <keyword>__FILE__</keyword> + <keyword>exception</keyword> + <keyword>__LINE__</keyword> + <keyword>array</keyword> + <keyword>as</keyword> + <keyword>break</keyword> + <keyword>case</keyword> + <keyword>class</keyword> + <keyword>const</keyword> + <keyword>continue</keyword> + <keyword>declare</keyword> + <keyword>default</keyword> + <keyword>die</keyword> + <keyword>do</keyword> + <keyword>echo</keyword> + <keyword>else</keyword> + <keyword>elseif</keyword> + <keyword>empty</keyword> + <keyword>enddeclare</keyword> + <keyword>endfor</keyword> + <keyword>endforeach</keyword> + <keyword>endif</keyword> + <keyword>endswitch</keyword> + <keyword>endwhile</keyword> + <keyword>eval</keyword> + <keyword>exit</keyword> + <keyword>extends</keyword> + <keyword>for</keyword> + <keyword>foreach</keyword> + <keyword>function</keyword> + <keyword>global</keyword> + <keyword>if</keyword> + <keyword>include</keyword> + <keyword>include_once</keyword> + <keyword>isset</keyword> + <keyword>list</keyword> + <keyword>new</keyword> + <keyword>print</keyword> + <keyword>require</keyword> + <keyword>require_once</keyword> + <keyword>return</keyword> + <keyword>static</keyword> + <keyword>switch</keyword> + <keyword>unset</keyword> + <keyword>use</keyword> + <keyword>var</keyword> + <keyword>while</keyword> + <keyword>__FUNCTION__</keyword> + <keyword>__CLASS__</keyword> + <keyword>__METHOD__</keyword> + <keyword>final</keyword> + <keyword>php_user_filter</keyword> + <keyword>interface</keyword> + <keyword>implements</keyword> + <keyword>extends</keyword> + <keyword>public</keyword> + <keyword>private</keyword> + <keyword>protected</keyword> + <keyword>abstract</keyword> + <keyword>clone</keyword> + <keyword>try</keyword> + <keyword>catch</keyword> + <keyword>throw</keyword> + <keyword>cfunction</keyword> + <keyword>old_function</keyword> + <keyword>true</keyword> + <keyword>false</keyword> + <ignoreCase /> + </highlighter> + <highlighter type="word"> + <!-- highlight the php open and close tags as directives --> + <word>?></word> + <word><?php</word> + <word><?=</word> + <style>directive</style> + </highlighter> +</highlighters> \ No newline at end of file diff --git a/docbook-xsl-1.76.1/highlighting/python-hl.xml b/docbook-xsl-1.76.1/highlighting/python-hl.xml new file mode 100644 index 0000000..791bc7a --- /dev/null +++ b/docbook-xsl-1.76.1/highlighting/python-hl.xml @@ -0,0 +1,100 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + +Syntax highlighting definition for Python + +xslthl - XSLT Syntax Highlighting +http://sourceforge.net/projects/xslthl/ +Copyright (C) 2005-2008 Michal Molhanec, Jirka Kosek, Michiel Hendriks + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. + +Michal Molhanec <mol1111 at users.sourceforge.net> +Jirka Kosek <kosek at users.sourceforge.net> +Michiel Hendriks <elmuerte at users.sourceforge.net> + +--> +<highlighters> + <highlighter type="annotation"> + <!-- these are actually called decorators --> + <start>@</start> + <valueStart>(</valueStart> + <valueEnd>)</valueEnd> + </highlighter> + <highlighter type="oneline-comment">#</highlighter> + <highlighter type="string"> + <string>"""</string> + <spanNewLines /> + </highlighter> + <highlighter type="string"> + <string>'''</string> + <spanNewLines /> + </highlighter> + <highlighter type="string"> + <string>"</string> + <escape>\</escape> + </highlighter> + <highlighter type="string"> + <string>'</string> + <escape>\</escape> + </highlighter> + <highlighter type="hexnumber"> + <prefix>0x</prefix> + <suffix>l</suffix> + <ignoreCase /> + </highlighter> + <highlighter type="number"> + <point>.</point> + <pointStarts /> + <exponent>e</exponent> + <suffix>l</suffix> + <ignoreCase /> + </highlighter> + <highlighter type="keywords"> + <keyword>and</keyword> + <keyword>del</keyword> + <keyword>from</keyword> + <keyword>not</keyword> + <keyword>while</keyword> + <keyword>as</keyword> + <keyword>elif</keyword> + <keyword>global</keyword> + <keyword>or</keyword> + <keyword>with</keyword> + <keyword>assert</keyword> + <keyword>else</keyword> + <keyword>if</keyword> + <keyword>pass</keyword> + <keyword>yield</keyword> + <keyword>break</keyword> + <keyword>except</keyword> + <keyword>import</keyword> + <keyword>print</keyword> + <keyword>class</keyword> + <keyword>exec</keyword> + <keyword>in</keyword> + <keyword>raise</keyword> + <keyword>continue</keyword> + <keyword>finally</keyword> + <keyword>is</keyword> + <keyword>return</keyword> + <keyword>def</keyword> + <keyword>for</keyword> + <keyword>lambda</keyword> + <keyword>try</keyword> + </highlighter> +</highlighters> \ No newline at end of file diff --git a/docbook-xsl-1.76.1/highlighting/ruby-hl.xml b/docbook-xsl-1.76.1/highlighting/ruby-hl.xml new file mode 100644 index 0000000..78189b0 --- /dev/null +++ b/docbook-xsl-1.76.1/highlighting/ruby-hl.xml @@ -0,0 +1,109 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + +Syntax highlighting definition for Ruby + +xslthl - XSLT Syntax Highlighting +http://sourceforge.net/projects/xslthl/ +Copyright (C) 2005-2008 Michal Molhanec, Jirka Kosek, Michiel Hendriks + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. + +Michal Molhanec <mol1111 at users.sourceforge.net> +Jirka Kosek <kosek at users.sourceforge.net> +Michiel Hendriks <elmuerte at users.sourceforge.net> + +--> +<highlighters> + <highlighter type="oneline-comment">#</highlighter> + <highlighter type="heredoc"> + <start><<</start> + <noWhiteSpace/> + </highlighter> + <highlighter type="string"> + <string>"</string> + <escape>\</escape> + </highlighter> + <highlighter type="string"> + <string>%Q{</string> + <endString>}</endString> + <escape>\</escape> + </highlighter> + <highlighter type="string"> + <string>%/</string> + <endString>/</endString> + <escape>\</escape> + </highlighter> + <highlighter type="string"> + <string>'</string> + <escape>\</escape> + </highlighter> + <highlighter type="string"> + <string>%q{</string> + <endString>}</endString> + <escape>\</escape> + </highlighter> + <highlighter type="hexnumber"> + <prefix>0x</prefix> + <ignoreCase /> + </highlighter> + <highlighter type="number"> + <point>.</point> + <exponent>e</exponent> + <ignoreCase /> + </highlighter> + <highlighter type="keywords"> + <keyword>alias</keyword> + <keyword>and</keyword> + <keyword>BEGIN</keyword> + <keyword>begin</keyword> + <keyword>break</keyword> + <keyword>case</keyword> + <keyword>class</keyword> + <keyword>def</keyword> + <keyword>defined</keyword> + <keyword>do</keyword> + <keyword>else</keyword> + <keyword>elsif</keyword> + <keyword>END</keyword> + <keyword>end</keyword> + <keyword>ensure</keyword> + <keyword>false</keyword> + <keyword>for</keyword> + <keyword>if</keyword> + <keyword>in</keyword> + <keyword>module</keyword> + <keyword>next</keyword> + <keyword>nil</keyword> + <keyword>not</keyword> + <keyword>or</keyword> + <keyword>redo</keyword> + <keyword>rescue</keyword> + <keyword>retry</keyword> + <keyword>return</keyword> + <keyword>self</keyword> + <keyword>super</keyword> + <keyword>then</keyword> + <keyword>true</keyword> + <keyword>undef</keyword> + <keyword>unless</keyword> + <keyword>until</keyword> + <keyword>when</keyword> + <keyword>while</keyword> + <keyword>yield</keyword> + </highlighter> +</highlighters> \ No newline at end of file diff --git a/docbook-xsl-1.76.1/highlighting/tcl-hl.xml b/docbook-xsl-1.76.1/highlighting/tcl-hl.xml new file mode 100644 index 0000000..7a8fa9f --- /dev/null +++ b/docbook-xsl-1.76.1/highlighting/tcl-hl.xml @@ -0,0 +1,180 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + +xslthl highlighter definition fof Tcl/Tk. +written by Arndt Roger Schneider + +Copyright 2008 Arndt Roger Schneider +License: xlib/libpng + +This software is provided "as-is", without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must + not claim that you wrote the original software. If you use this + software in a product, an acknowledgment in the product + documentation would be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must + not be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. + +--> +<highlighters> + <highlighter type="oneline-comment">#</highlighter> + <highlighter type="string"> + <string>"</string> + <escape>\</escape> + </highlighter> + <highlighter type="regex"> + <pattern>-[\p{javaJavaIdentifierStart}][\p{javaJavaIdentifierPart}]+ + </pattern> + <style>none</style> + </highlighter> + <highlighter type="number"> + <point>.</point> + <ignoreCase /> + </highlighter> + <highlighter type="keywords"> + <!-- Tcl and itcl / structural --> + <keyword>if</keyword> + <keyword>then</keyword> + <keyword>else</keyword> + <keyword>elseif</keyword> + <keyword>for</keyword> + <keyword>foreach</keyword> + <keyword>break</keyword> + <keyword>continue</keyword> + <keyword>while</keyword> + <keyword>eval</keyword> + <keyword>case</keyword> + <keyword>in</keyword> + <keyword>switch</keyword> + <keyword>default</keyword> + <keyword>exit</keyword> + <keyword>error</keyword> + <keyword>proc</keyword> + <keyword>rename</keyword> + <keyword>exec</keyword> + <keyword>return</keyword> + <keyword>uplevel</keyword> + <keyword>upvar</keyword> + <keyword>constructor</keyword> + <keyword>destructor</keyword> + <keyword>itcl_class</keyword> + <keyword>loop</keyword> + <keyword>for_array_keys</keyword> + <keyword>for_recursive_glob</keyword> + <keyword>for_file</keyword> + <keyword>method</keyword> + <keyword>body</keyword> + <keyword>configbody</keyword> + <keyword>catch</keyword> + <keyword>namespace</keyword> + <keyword>class</keyword> + <keyword>array</keyword> + <keyword>set</keyword> + <keyword>unset</keyword> + <keyword>package</keyword> + <keyword>source</keyword> + + <!-- Additional commands --> + <keyword>subst</keyword> + <keyword>list</keyword> + <keyword>format</keyword> + <keyword>lappend</keyword> + <keyword>option</keyword> + <keyword>expr</keyword> + <keyword>puts</keyword> + <keyword>winfo</keyword> + <keyword>lindex</keyword> + <keyword>string</keyword> + + + <!-- Runtime Library / structural --> + <keyword>verified</keyword> + <keyword>seteach</keyword> + <keyword>fixme</keyword> + <keyword>debug</keyword> + <keyword>rtl::debug</keyword> + <keyword>rtl::verified</keyword> + <keyword>rtl::template</keyword> + <keyword>rtl::seteach</keyword> + + <!-- Runtime Library / Additional --> + <keyword>mkProc</keyword> + <keyword>getCreator</keyword> + <keyword>properties</keyword> + <keyword>lappendunique</keyword> + <keyword>rtl::lappendunique</keyword> + + <!-- geometry managers from Tk --> + <keyword>place</keyword> + <keyword>pack</keyword> + <keyword>grid</keyword> + + + <!-- Additional Tk stuff --> + <keyword>image</keyword> + <keyword>font</keyword> + <keyword>focus</keyword> + <keyword>tk</keyword> + <keyword>bind</keyword> + <keyword>after</keyword> + + <!-- Window classes from Tk, ... --> + <keyword>toplevel</keyword> + <keyword>frame</keyword> + <keyword>entry</keyword> + <keyword>listbox</keyword> + <keyword>button</keyword> + <keyword>radiobutton</keyword> + <keyword>checkbutton</keyword> + <keyword>canvas</keyword> + <keyword>menu</keyword> + <keyword>menubutton</keyword> + <keyword>text</keyword> + <keyword>label</keyword> + <keyword>message</keyword> + <!-- + The rest of Tk's windows is omitted: scrollbar, scale, panedwindow, labelframe, spinbox ... + --> + + <!-- ... from tkZinc, ... --> + <keyword>zinc</keyword> + + <!-- ... from tkpath, ... --> + <keyword>tkpath::gradient</keyword> + + <!-- ... from Runtime Library, ... --> + <keyword>rtl_combobox</keyword> + <keyword>rtl_tree</keyword> + <keyword>rtl_tabset</keyword> + <keyword>rtl_mlistbox</keyword> + <keyword>rtl_gridwin</keyword> + <keyword>rtlysizer</keyword> + <keyword>rtlxsizer</keyword> + <!-- + The rest of RTL's windows is omitted: spinbox, decoratedframe, symbolbar, symbolbarcustomize, question ... + --> + + <!-- ... from GEI, ... --> + <keyword>goolbar</keyword> + <keyword>gstripes</keyword> + <keyword>zoolbar</keyword> + <keyword>gistbox</keyword> + <keyword>gooleditor</keyword> + <keyword>galette</keyword> + </highlighter> +</highlighters> + <!-- + Local Variables: mode: sgml coding: utf-8-unix sgml-indent-step: 2 sgml-indent-data: t sgml-set-face: t + sgml-insert-missing-element-comment: nil End: + --> \ No newline at end of file diff --git a/docbook-xsl-1.76.1/highlighting/xslthl-config.xml b/docbook-xsl-1.76.1/highlighting/xslthl-config.xml new file mode 100644 index 0000000..b24e469 --- /dev/null +++ b/docbook-xsl-1.76.1/highlighting/xslthl-config.xml @@ -0,0 +1,46 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + +xslthl - XSLT Syntax Highlighting +http://sourceforge.net/projects/xslthl/ +Copyright (C) 2005-2008 Michal Molhanec, Jirka Kosek, Michiel Hendriks + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. + +Michal Molhanec <mol1111 at users.sourceforge.net> +Jirka Kosek <kosek at users.sourceforge.net> +Michiel Hendriks <elmuerte at users.sourceforge.net> + +--> +<xslthl-config> + <highlighter id="java" file="java-hl.xml" /> + <highlighter id="delphi" file="delphi-hl.xml" /> + <highlighter id="pascal" file="delphi-hl.xml" /> + <highlighter id="ini" file="ini-hl.xml" /> + <highlighter id="php" file="php-hl.xml" /> + <highlighter id="myxml" file="myxml-hl.xml" /> + <highlighter id="m2" file="m2-hl.xml" /> + <highlighter id="tcl" file="tcl-hl.xml" /> + <highlighter id="c" file="c-hl.xml" /> + <highlighter id="cpp" file="cpp-hl.xml" /> + <highlighter id="csharp" file="csharp-hl.xml" /> + <highlighter id="python" file="python-hl.xml" /> + <highlighter id="ruby" file="ruby-hl.xml" /> + <highlighter id="perl" file="perl-hl.xml" /> + <highlighter id="javascript" file="javascript-hl.xml" /> + <namespace prefix="xslthl" uri="http://xslthl.sf.net" /> +</xslthl-config> \ No newline at end of file diff --git a/docbook-xsl-1.76.1/html/admon.xsl b/docbook-xsl-1.76.1/html/admon.xsl new file mode 100644 index 0000000..3d1462d --- /dev/null +++ b/docbook-xsl-1.76.1/html/admon.xsl @@ -0,0 +1,134 @@ +<?xml version='1.0'?> +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + version='1.0'> + +<!-- ******************************************************************** + $Id: admon.xsl 8421 2009-05-04 07:49:49Z bobstayton $ + ******************************************************************** + + This file is part of the XSL DocBook Stylesheet distribution. + See ../README or http://docbook.sf.net/release/xsl/current/ for + copyright and other information. + + ******************************************************************** --> + +<xsl:template match="*" mode="admon.graphic.width"> + <xsl:param name="node" select="."/> + <xsl:text>25</xsl:text> +</xsl:template> + +<xsl:template match="note|important|warning|caution|tip"> + <xsl:choose> + <xsl:when test="$admon.graphics != 0"> + <xsl:call-template name="graphical.admonition"/> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="nongraphical.admonition"/> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template name="admon.graphic"> + <xsl:param name="node" select="."/> + <xsl:value-of select="$admon.graphics.path"/> + <xsl:choose> + <xsl:when test="local-name($node)='note'">note</xsl:when> + <xsl:when test="local-name($node)='warning'">warning</xsl:when> + <xsl:when test="local-name($node)='caution'">caution</xsl:when> + <xsl:when test="local-name($node)='tip'">tip</xsl:when> + <xsl:when test="local-name($node)='important'">important</xsl:when> + <xsl:otherwise>note</xsl:otherwise> + </xsl:choose> + <xsl:value-of select="$admon.graphics.extension"/> +</xsl:template> + +<xsl:template name="graphical.admonition"> + <xsl:variable name="admon.type"> + <xsl:choose> + <xsl:when test="local-name(.)='note'">Note</xsl:when> + <xsl:when test="local-name(.)='warning'">Warning</xsl:when> + <xsl:when test="local-name(.)='caution'">Caution</xsl:when> + <xsl:when test="local-name(.)='tip'">Tip</xsl:when> + <xsl:when test="local-name(.)='important'">Important</xsl:when> + <xsl:otherwise>Note</xsl:otherwise> + </xsl:choose> + </xsl:variable> + + <xsl:variable name="alt"> + <xsl:call-template name="gentext"> + <xsl:with-param name="key" select="$admon.type"/> + </xsl:call-template> + </xsl:variable> + + <div> + <xsl:call-template name="common.html.attributes"/> + <xsl:if test="$admon.style != ''"> + <xsl:attribute name="style"> + <xsl:value-of select="$admon.style"/> + </xsl:attribute> + </xsl:if> + + <table border="0"> + <xsl:attribute name="summary"> + <xsl:value-of select="$admon.type"/> + <xsl:if test="title|info/title"> + <xsl:text>: </xsl:text> + <xsl:value-of select="(title|info/title)[1]"/> + </xsl:if> + </xsl:attribute> + <tr> + <td rowspan="2" align="center" valign="top"> + <xsl:attribute name="width"> + <xsl:apply-templates select="." mode="admon.graphic.width"/> + </xsl:attribute> + <img alt="[{$alt}]"> + <xsl:attribute name="src"> + <xsl:call-template name="admon.graphic"/> + </xsl:attribute> + </img> + </td> + <th align="{$direction.align.start}"> + <xsl:call-template name="anchor"/> + <xsl:if test="$admon.textlabel != 0 or title or info/title"> + <xsl:apply-templates select="." mode="object.title.markup"/> + </xsl:if> + </th> + </tr> + <tr> + <td align="{$direction.align.start}" valign="top"> + <xsl:apply-templates/> + </td> + </tr> + </table> + </div> +</xsl:template> + +<xsl:template name="nongraphical.admonition"> + <div> + <xsl:call-template name="common.html.attributes"> + <xsl:with-param name="inherit" select="1"/> + </xsl:call-template> + <xsl:if test="$admon.style"> + <xsl:attribute name="style"> + <xsl:value-of select="$admon.style"/> + </xsl:attribute> + </xsl:if> + + <xsl:if test="$admon.textlabel != 0 or title or info/title"> + <h3 class="title"> + <xsl:call-template name="anchor"/> + <xsl:apply-templates select="." mode="object.title.markup"/> + </h3> + </xsl:if> + + <xsl:apply-templates/> + </div> +</xsl:template> + +<xsl:template match="note/title"></xsl:template> +<xsl:template match="important/title"></xsl:template> +<xsl:template match="warning/title"></xsl:template> +<xsl:template match="caution/title"></xsl:template> +<xsl:template match="tip/title"></xsl:template> + +</xsl:stylesheet> diff --git a/docbook-xsl-1.76.1/html/annotations.xsl b/docbook-xsl-1.76.1/html/annotations.xsl new file mode 100644 index 0000000..f010632 --- /dev/null +++ b/docbook-xsl-1.76.1/html/annotations.xsl @@ -0,0 +1,169 @@ +<?xml version='1.0'?> +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + version='1.0'> + +<xsl:template name="add.annotation.links"> + <xsl:param name="scripts" select="normalize-space($annotation.js)"/> + <xsl:choose> + <xsl:when test="contains($scripts, ' ')"> + <script type="text/javascript" src="{substring-before($scripts, ' ')}"/> + <xsl:call-template name="add.annotation.links"> + <xsl:with-param name="scripts" select="substring-after($scripts, ' ')"/> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <script type="text/javascript" src="{$scripts}"/> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template match="annotation"/> + +<xsl:template name="apply-annotations"> + <xsl:if test="$annotation.support != 0"> + <!-- do any annotations apply to the context node? --> + <xsl:variable name="id" select="(@id|@xml:id)[1]"/> + + <xsl:variable name="aids"> + <xsl:for-each select="//annotation"> + <xsl:if test="@annotates=$id + or starts-with(@annotates, concat($id, ' ')) + or contains(@annotates, concat(' ', $id, ' ')) + or substring(@annotates, string-length(@annotates)-3) + = concat(' ', $id)"> + <xsl:value-of select="generate-id()"/> + <xsl:text> </xsl:text> + </xsl:if> + </xsl:for-each> + <xsl:if test="normalize-space(@annotations) != ''"> + <xsl:call-template name="annotations-pointed-to"> + <xsl:with-param name="annotations" + select="normalize-space(@annotations)"/> + </xsl:call-template> + </xsl:if> + </xsl:variable> + + <xsl:if test="$aids != ''"> + <xsl:call-template name="apply-annotations-by-gid"> + <xsl:with-param name="gids" select="normalize-space($aids)"/> + </xsl:call-template> + </xsl:if> + </xsl:if> +</xsl:template> + +<xsl:template name="annotations-pointed-to"> + <xsl:param name="annotations"/> + <xsl:choose> + <xsl:when test="contains($annotations, ' ')"> + <xsl:variable name='a' + select="key('id', substring-before($annotations, ' '))"/> + <xsl:if test="$a"> + <xsl:value-of select="generate-id($a)"/> + <xsl:text> </xsl:text> + </xsl:if> + <xsl:call-template name="annotations-pointed-to"> + <xsl:with-param name="annotations" + select="substring-after($annotations, ' ')"/> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:variable name='a' + select="key('id', $annotations)"/> + <xsl:if test="$a"> + <xsl:value-of select="generate-id($a)"/> + <xsl:text> </xsl:text> + </xsl:if> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template name="apply-annotations-by-gid"> + <xsl:param name="gids"/> + + <xsl:choose> + <xsl:when test="contains($gids, ' ')"> + <xsl:variable name="gid" select="substring-before($gids, ' ')"/> + <xsl:apply-templates select="key('gid', $gid)" + mode="annotation-inline"/> + <xsl:call-template name="apply-annotations-by-gid"> + <xsl:with-param name="gids" + select="substring-after($gids, ' ')"/> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates select="key('gid', $gids)" + mode="annotation-inline"/> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template match="annotation" mode="annotation-inline"> + <xsl:variable name="title"> + <xsl:choose> + <xsl:when test="title"> + <xsl:value-of select="title"/> + </xsl:when> + <xsl:otherwise> + <xsl:text>[Annotation #</xsl:text> + <xsl:number count="annotation" level="any" format="1"/> + <xsl:text>]</xsl:text> + </xsl:otherwise> + </xsl:choose> + </xsl:variable> + + <a href="#annot-{generate-id(.)}" title="{$title}" + name="anch-{generate-id(.)}" id="anch-{generate-id(.)}"> + <xsl:apply-templates select="." mode="class.attribute"/> + <xsl:attribute name="onClick"> + <xsl:text>popup_</xsl:text> + <xsl:value-of select="generate-id(.)"/> + <xsl:text>.showPopup('anch-</xsl:text> + <xsl:value-of select="generate-id(.)"/> + <xsl:text>'); return false;</xsl:text> + </xsl:attribute> + <img src="{$annotation.graphic.open}" border="0" alt="{$title}"/> + </a> +</xsl:template> + +<xsl:template match="annotation" mode="annotation-popup"> + <div class="annotation-nocss"> + <p> + <a name="annot-{generate-id(.)}"/> + <xsl:text>Annotation #</xsl:text> + <xsl:number count="annotation" level="any" format="1"/> + <xsl:text>:</xsl:text> + </p> + </div> + + <div id="popup-{generate-id(.)}" class="annotation-popup"> + <xsl:if test="string-length(.) > 300"> + <xsl:attribute name="style">width:400px</xsl:attribute> + </xsl:if> + + <xsl:call-template name="annotation-title"/> + <div class="annotation-body"> + <xsl:apply-templates select="*[local-name(.) != 'title']"/> + </div> + <div class="annotation-close"> + <a href="#" onclick="popup_{generate-id(.)}.hidePopup();return false;"> + <xsl:apply-templates select="." mode="class.attribute"/> + <img src="{$annotation.graphic.close}" alt="X" border="0"/> + </a> + </div> + </div> +</xsl:template> + +<xsl:template name="annotation-title"> + <div class="annotation-title"> + <xsl:choose> + <xsl:when test="title"> + <xsl:apply-templates select="title/node()"/> + </xsl:when> + <xsl:otherwise> + <xsl:text>Annotation</xsl:text> + </xsl:otherwise> + </xsl:choose> + </div> +</xsl:template> + +</xsl:stylesheet> diff --git a/docbook-xsl-1.76.1/html/autoidx-kimber.xsl b/docbook-xsl-1.76.1/html/autoidx-kimber.xsl new file mode 100644 index 0000000..f67b1f6 --- /dev/null +++ b/docbook-xsl-1.76.1/html/autoidx-kimber.xsl @@ -0,0 +1,165 @@ +<?xml version="1.0"?> +<!DOCTYPE xsl:stylesheet [ +<!ENTITY % common.entities SYSTEM "../common/entities.ent"> +%common.entities; + +<!-- Documents using the kimber index method must have a lang attribute --> +<!-- Only one of these should be present in the entity --> +<!ENTITY lang 'concat(/*/@lang, /*/@xml:lang)'> + +]> +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + xmlns:k="http://www.isogen.com/functions/com.isogen.saxoni18n.Saxoni18nService" + exclude-result-prefixes="k" + version="1.0"> + +<!-- ******************************************************************** + $Id: autoidx-kimber.xsl 8729 2010-07-15 16:43:56Z bobstayton $ + ******************************************************************** + + This file is part of the XSL DocBook Stylesheet distribution. + See ../README or http://docbook.sf.net/release/xsl/current/ for + copyright and other information. + + ******************************************************************** --> + +<!-- ==================================================================== --> +<!-- The "kimber" method contributed by Eliot Kimber of Innodata Isogen. --> +<!-- ==================================================================== --> +<!-- *** THIS MODULE ONLY WORKS WITH SAXON 6 OR SAXON 8 *** --> +<!-- ==================================================================== --> + + +<xsl:include href="../common/autoidx-kimber.xsl"/> + +<!-- Java sort apparently works only on lang part, not country --> +<xsl:param name="sort.lang"> + <xsl:choose> + <xsl:when test="contains(⟨, '-')"> + <xsl:value-of select="substring-before(⟨, '-')"/> + </xsl:when> + <xsl:when test="contains(⟨, '_')"> + <xsl:value-of select="substring-before(⟨, '_')"/> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="⟨"/> + </xsl:otherwise> + </xsl:choose> +</xsl:param> + +<xsl:template name="generate-kimber-index"> + <xsl:param name="scope" select="NOTANODE"/> + + <xsl:variable name="vendor" select="system-property('xsl:vendor')"/> + <xsl:if test="not(contains($vendor, 'SAXON '))"> + <xsl:message terminate="yes"> + <xsl:text>ERROR: the 'kimber' index method requires the </xsl:text> + <xsl:text>Saxon version 6 or 8 XSLT processor.</xsl:text> + </xsl:message> + </xsl:if> + + <xsl:if test="not(function-available('k:getIndexGroupKey'))"> + <xsl:message terminate="yes"> + <xsl:text>ERROR: the 'kimber' index method requires the </xsl:text> + <xsl:text>Innodata Isogen Java extensions for </xsl:text> + <xsl:text>internationalized indexes. Install those </xsl:text> + <xsl:text>extensions, or use a different index method. </xsl:text> + <xsl:text>For more information, see: </xsl:text> + <xsl:text>http://www.innodata-isogen.com/knowledge_center/tools_downloads/i18nsupport</xsl:text> + </xsl:message> + </xsl:if> + + <xsl:variable name="role"> + <xsl:if test="$index.on.role != 0"> + <xsl:value-of select="@role"/> + </xsl:if> + </xsl:variable> + + <xsl:variable name="type"> + <xsl:if test="$index.on.type != 0"> + <xsl:value-of select="@type"/> + </xsl:if> + </xsl:variable> + + <xsl:variable name="terms" + select="//indexterm[count(.|key('k-group', k:getIndexGroupKey(⟨, &primary;))[&scope;][1]) = 1 and not(@class = 'endofrange')]"/> + + <xsl:variable name="alphabetical" + select="$terms[not(starts-with( + k:getIndexGroupKey(⟨, &primary;), + '#NUMERIC' + ))]"/> + + <xsl:variable name="others" + select="$terms[starts-with( + k:getIndexGroupKey(⟨, &primary;), + '#NUMERIC' + )]"/> + + <div class="index"> + <xsl:if test="$others"> + <div class="indexdev"> + <h3> + <xsl:call-template name="gentext"> + <xsl:with-param name="key" select="'index symbols'"/> + </xsl:call-template> + </h3> + <dl> + <xsl:apply-templates select="$others" + mode="index-symbol-div"> + <xsl:with-param name="scope" select="$scope"/> + <xsl:with-param name="role" select="$role"/> + <xsl:with-param name="type" select="$type"/> + <xsl:sort lang="{$sort.lang}" + select="k:getIndexGroupSortKey(⟨, + k:getIndexGroupKey(⟨, &primary;))"/> + </xsl:apply-templates> + </dl> + </div> + </xsl:if> + + <xsl:apply-templates select="$alphabetical" + mode="index-div-kimber"> + <xsl:with-param name="scope" select="$scope"/> + <xsl:with-param name="role" select="$role"/> + <xsl:with-param name="type" select="$type"/> + <xsl:sort lang="{$sort.lang}" + select="k:getIndexGroupSortKey(⟨, + k:getIndexGroupKey(⟨, &primary;))"/> + </xsl:apply-templates> + </div> + +</xsl:template> + +<xsl:template match="indexterm" mode="index-div-kimber"> + <xsl:param name="scope" select="."/> + <xsl:param name="role" select="''"/> + <xsl:param name="type" select="''"/> + + <xsl:variable name="key" + select="k:getIndexGroupKey(⟨, &primary;)"/> + + <xsl:variable name="label" + select="k:getIndexGroupLabel(⟨, $key)"/> + + <xsl:if test="key('k-group', $label)[&scope;][count(.|key('primary', &primary;)[&scope;][1]) = 1]"> + <div class="indexdiv"> + <h3> + <xsl:value-of select="$label"/> + </h3> + <dl> + <xsl:apply-templates select="key('k-group', $key)[&scope;] + [count(.|key('primary', &primary;)[&scope;] + [1])=1]" + mode="index-primary"> + <xsl:sort select="&primary;" lang="{$sort.lang}"/> + <xsl:with-param name="scope" select="$scope"/> + <xsl:with-param name="role" select="$role"/> + <xsl:with-param name="type" select="$type"/> + </xsl:apply-templates> + </dl> + </div> + </xsl:if> +</xsl:template> + +</xsl:stylesheet> diff --git a/docbook-xsl-1.76.1/html/autoidx-kosek.xsl b/docbook-xsl-1.76.1/html/autoidx-kosek.xsl new file mode 100644 index 0000000..d03ff4f --- /dev/null +++ b/docbook-xsl-1.76.1/html/autoidx-kosek.xsl @@ -0,0 +1,120 @@ +<?xml version="1.0"?> +<!DOCTYPE xsl:stylesheet [ +<!ENTITY % common.entities SYSTEM "../common/entities.ent"> +%common.entities; +]> +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + xmlns:i="urn:cz-kosek:functions:index" + xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0" + xmlns:func="http://exslt.org/functions" + xmlns:k="http://www.isogen.com/functions/com.isogen.saxoni18n.Saxoni18nService" + xmlns:exslt="http://exslt.org/common" + extension-element-prefixes="func exslt" + exclude-result-prefixes="func exslt i l k" + version="1.0"> + +<!-- ******************************************************************** + $Id: autoidx-kosek.xsl 8725 2010-07-15 08:08:04Z kosek $ + ******************************************************************** + + This file is part of the XSL DocBook Stylesheet distribution. + See ../README or http://docbook.sf.net/release/xsl/current/ for + copyright and other information. + + ******************************************************************** --> + +<!-- ==================================================================== --> +<!-- The "kosek" method contributed by Jirka Kosek. --> + +<xsl:include href="../common/autoidx-kosek.xsl"/> + +<xsl:template name="generate-kosek-index"> + <xsl:param name="scope" select="(ancestor::book|/)[last()]"/> + + <xsl:variable name="vendor" select="system-property('xsl:vendor')"/> + <xsl:if test="contains($vendor, 'libxslt')"> + <xsl:message terminate="yes"> + <xsl:text>ERROR: the 'kosek' index method does not </xsl:text> + <xsl:text>work with the xsltproc XSLT processor.</xsl:text> + </xsl:message> + </xsl:if> + + <xsl:if test="contains($vendor, 'Saxonica')"> + <xsl:message terminate="yes"> + <xsl:text>ERROR: the 'kosek' index method does not </xsl:text> + <xsl:text>work with the Saxon 8 XSLT processor.</xsl:text> + </xsl:message> + </xsl:if> + + <xsl:if test="$exsl.node.set.available = 0"> + <xsl:message terminate="yes"> + <xsl:text>ERROR: the 'kosek' index method requires the </xsl:text> + <xsl:text>exslt:node-set() function. Use a processor that </xsl:text> + <xsl:text>has it, or use a different index method.</xsl:text> + </xsl:message> + </xsl:if> + + <xsl:if test="not(function-available('i:group-index'))"> + <xsl:message terminate="yes"> + <xsl:text>ERROR: the 'kosek' index method requires the </xsl:text> + <xsl:text>index extension functions be imported: </xsl:text> + <xsl:text> xsl:import href="common/autoidx-kosek.xsl"</xsl:text> + </xsl:message> + </xsl:if> + + <xsl:variable name="role"> + <xsl:if test="$index.on.role != 0"> + <xsl:value-of select="@role"/> + </xsl:if> + </xsl:variable> + + <xsl:variable name="type"> + <xsl:if test="$index.on.type != 0"> + <xsl:value-of select="@type"/> + </xsl:if> + </xsl:variable> + + <xsl:variable name="terms" + select="//indexterm[count(.|key('group-code', i:group-index(&primary;))[&scope;][1]) = 1 and not(@class = 'endofrange')]"/> + + <div class="index"> + <xsl:apply-templates select="$terms" mode="index-div-kosek"> + <xsl:with-param name="scope" select="$scope"/> + <xsl:with-param name="role" select="$role"/> + <xsl:with-param name="type" select="$type"/> + <xsl:sort select="i:group-index(&primary;)" data-type="number"/> + </xsl:apply-templates> + </div> +</xsl:template> + +<xsl:template match="indexterm" mode="index-div-kosek"> + <xsl:param name="scope" select="."/> + <xsl:param name="role" select="''"/> + <xsl:param name="type" select="''"/> + + <xsl:variable name="key" + select="i:group-index(&primary;)"/> + + <xsl:variable name="lang"> + <xsl:call-template name="l10n.language"/> + </xsl:variable> + + <xsl:if test="key('group-code', $key)[&scope;][count(.|key('primary', &primary;)[&scope;][1]) = 1]"> + <div class="indexdiv"> + <h3> + <xsl:value-of select="i:group-letter($key)"/> + </h3> + <dl> + <xsl:apply-templates select="key('group-code', $key)[&scope;][count(.|key('primary', &primary;)[&scope;][1])=1]" + mode="index-primary"> + <xsl:sort select="&primary;" lang="{$lang}"/> + <xsl:with-param name="scope" select="$scope"/> + <xsl:with-param name="role" select="$role"/> + <xsl:with-param name="type" select="$type"/> + </xsl:apply-templates> + </dl> + </div> + </xsl:if> +</xsl:template> + +</xsl:stylesheet> diff --git a/docbook-xsl-1.76.1/html/autoidx-ng.xsl b/docbook-xsl-1.76.1/html/autoidx-ng.xsl new file mode 100644 index 0000000..9407b5c --- /dev/null +++ b/docbook-xsl-1.76.1/html/autoidx-ng.xsl @@ -0,0 +1,20 @@ +<?xml version="1.0"?> +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + version="1.0"> + +<!-- ******************************************************************** + $Id: autoidx-ng.xsl 6910 2007-06-28 23:23:30Z xmldoc $ + ******************************************************************** + + This file is part of the DocBook XSL Stylesheet distribution. + See ../README or http://docbook.sf.net/ for copyright + copyright and other information. + + ******************************************************************** --> + +<!-- You should have this directly in your customization file. --> +<!-- This file is there only to retain backward compatibility. --> +<xsl:import href="autoidx-kosek.xsl"/> +<xsl:param name="index.method">kosek</xsl:param> + +</xsl:stylesheet> diff --git a/docbook-xsl-1.76.1/html/autoidx.xsl b/docbook-xsl-1.76.1/html/autoidx.xsl new file mode 100644 index 0000000..7268fcd --- /dev/null +++ b/docbook-xsl-1.76.1/html/autoidx.xsl @@ -0,0 +1,739 @@ +<?xml version="1.0"?> +<!DOCTYPE xsl:stylesheet [ +<!ENTITY % common.entities SYSTEM "../common/entities.ent"> +%common.entities; +]> +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + xmlns:exslt="http://exslt.org/common" + extension-element-prefixes="exslt" + exclude-result-prefixes="exslt" + version="1.0"> + +<!-- ******************************************************************** + $Id: autoidx.xsl 8516 2009-08-12 02:54:56Z abdelazer $ + ******************************************************************** + + This file is part of the XSL DocBook Stylesheet distribution. + See ../README or http://docbook.sf.net/release/xsl/current/ for + copyright and other information. + + ******************************************************************** --> + +<!-- ==================================================================== --> +<!-- The "basic" method derived from Jeni Tennison's work. --> +<!-- The "kosek" method contributed by Jirka Kosek. --> +<!-- The "kimber" method contributed by Eliot Kimber of Innodata Isogen. --> + +<xsl:variable name="kimber.imported" select="0"/> +<xsl:variable name="kosek.imported" select="0"/> + +<xsl:key name="letter" + match="indexterm" + use="translate(substring(&primary;, 1, 1),&lowercase;,&uppercase;)"/> + +<xsl:key name="primary" + match="indexterm" + use="&primary;"/> + +<xsl:key name="secondary" + match="indexterm" + use="concat(&primary;, &sep;, &secondary;)"/> + +<xsl:key name="tertiary" + match="indexterm" + use="concat(&primary;, &sep;, &secondary;, &sep;, &tertiary;)"/> + +<xsl:key name="endofrange" + match="indexterm[@class='endofrange']" + use="@startref"/> + +<xsl:key name="primary-section" + match="indexterm[not(secondary) and not(see)]" + use="concat(&primary;, &sep;, §ion.id;)"/> + +<xsl:key name="secondary-section" + match="indexterm[not(tertiary) and not(see)]" + use="concat(&primary;, &sep;, &secondary;, &sep;, §ion.id;)"/> + +<xsl:key name="tertiary-section" + match="indexterm[not(see)]" + use="concat(&primary;, &sep;, &secondary;, &sep;, &tertiary;, &sep;, §ion.id;)"/> + +<xsl:key name="see-also" + match="indexterm[seealso]" + use="concat(&primary;, &sep;, &secondary;, &sep;, &tertiary;, &sep;, seealso)"/> + +<xsl:key name="see" + match="indexterm[see]" + use="concat(&primary;, &sep;, &secondary;, &sep;, &tertiary;, &sep;, see)"/> + +<xsl:key name="sections" match="*[@id or @xml:id]" use="@id|@xml:id"/> + + +<xsl:template name="generate-index"> + <xsl:param name="scope" select="(ancestor::book|/)[last()]"/> + + <xsl:choose> + <xsl:when test="$index.method = 'kosek'"> + <xsl:call-template name="generate-kosek-index"> + <xsl:with-param name="scope" select="$scope"/> + </xsl:call-template> + </xsl:when> + <xsl:when test="$index.method = 'kimber'"> + <xsl:call-template name="generate-kimber-index"> + <xsl:with-param name="scope" select="$scope"/> + </xsl:call-template> + </xsl:when> + + <xsl:otherwise> + <xsl:call-template name="generate-basic-index"> + <xsl:with-param name="scope" select="$scope"/> + </xsl:call-template> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template name="generate-basic-index"> + <xsl:param name="scope" select="NOTANODE"/> + + <xsl:variable name="role"> + <xsl:if test="$index.on.role != 0"> + <xsl:value-of select="@role"/> + </xsl:if> + </xsl:variable> + + <xsl:variable name="type"> + <xsl:if test="$index.on.type != 0"> + <xsl:value-of select="@type"/> + </xsl:if> + </xsl:variable> + + <xsl:variable name="terms" + select="//indexterm + [count(.|key('letter', + translate(substring(&primary;, 1, 1), + &lowercase;, + &uppercase;)) + [&scope;][1]) = 1 + and not(@class = 'endofrange')]"/> + + <xsl:variable name="alphabetical" + select="$terms[contains(concat(&lowercase;, &uppercase;), + substring(&primary;, 1, 1))]"/> + + <xsl:variable name="others" select="$terms[not(contains(concat(&lowercase;, + &uppercase;), + substring(&primary;, 1, 1)))]"/> + <div class="index"> + <xsl:if test="$others"> + <xsl:choose> + <xsl:when test="normalize-space($type) != '' and + $others[@type = $type][count(.|key('primary', &primary;)[&scope;][1]) = 1]"> + <div class="indexdiv"> + <h3> + <xsl:call-template name="gentext"> + <xsl:with-param name="key" select="'index symbols'"/> + </xsl:call-template> + </h3> + <dl> + <xsl:apply-templates select="$others[count(.|key('primary', &primary;)[&scope;][1]) = 1]" + mode="index-symbol-div"> + <xsl:with-param name="position" select="position()"/> + <xsl:with-param name="scope" select="$scope"/> + <xsl:with-param name="role" select="$role"/> + <xsl:with-param name="type" select="$type"/> + <xsl:sort select="translate(&primary;, &lowercase;, &uppercase;)"/> + </xsl:apply-templates> + </dl> + </div> + </xsl:when> + <xsl:when test="normalize-space($type) != ''"> + <!-- Output nothing, as there isn't a match for $other using this $type --> + </xsl:when> + <xsl:otherwise> + <div class="indexdiv"> + <h3> + <xsl:call-template name="gentext"> + <xsl:with-param name="key" select="'index symbols'"/> + </xsl:call-template> + </h3> + <dl> + <xsl:apply-templates select="$others[count(.|key('primary', + &primary;)[&scope;][1]) = 1]" + mode="index-symbol-div"> + <xsl:with-param name="position" select="position()"/> + <xsl:with-param name="scope" select="$scope"/> + <xsl:with-param name="role" select="$role"/> + <xsl:with-param name="type" select="$type"/> + <xsl:sort select="translate(&primary;, &lowercase;, &uppercase;)"/> + </xsl:apply-templates> + </dl> + </div> + </xsl:otherwise> + </xsl:choose> + </xsl:if> + + <xsl:apply-templates select="$alphabetical[count(.|key('letter', + translate(substring(&primary;, 1, 1), + &lowercase;,&uppercase;))[&scope;][1]) = 1]" + mode="index-div-basic"> + <xsl:with-param name="position" select="position()"/> + <xsl:with-param name="scope" select="$scope"/> + <xsl:with-param name="role" select="$role"/> + <xsl:with-param name="type" select="$type"/> + <xsl:sort select="translate(&primary;, &lowercase;, &uppercase;)"/> + </xsl:apply-templates> + </div> +</xsl:template> + +<!-- This template not used if html/autoidx-kosek.xsl is imported --> +<xsl:template name="generate-kosek-index"> + <xsl:param name="scope" select="NOTANODE"/> + + <xsl:variable name="vendor" select="system-property('xsl:vendor')"/> + <xsl:if test="contains($vendor, 'libxslt')"> + <xsl:message terminate="yes"> + <xsl:text>ERROR: the 'kosek' index method does not </xsl:text> + <xsl:text>work with the xsltproc XSLT processor.</xsl:text> + </xsl:message> + </xsl:if> + + + <xsl:if test="$exsl.node.set.available = 0"> + <xsl:message terminate="yes"> + <xsl:text>ERROR: the 'kosek' index method requires the </xsl:text> + <xsl:text>exslt:node-set() function. Use a processor that </xsl:text> + <xsl:text>has it, or use a different index method.</xsl:text> + </xsl:message> + </xsl:if> + + <xsl:if test="$kosek.imported = 0"> + <xsl:message terminate="yes"> + <xsl:text>ERROR: the 'kosek' index method requires the </xsl:text> + <xsl:text>kosek index extensions be imported: </xsl:text> + <xsl:text> xsl:import href="html/autoidx-kosek.xsl"</xsl:text> + </xsl:message> + </xsl:if> + +</xsl:template> + +<!-- This template not used if html/autoidx-kimber.xsl is imported --> +<xsl:template name="generate-kimber-index"> + <xsl:param name="scope" select="NOTANODE"/> + + <xsl:variable name="vendor" select="system-property('xsl:vendor')"/> + <xsl:if test="not(contains($vendor, 'SAXON '))"> + <xsl:message terminate="yes"> + <xsl:text>ERROR: the 'kimber' index method requires the </xsl:text> + <xsl:text>Saxon version 6 or 8 XSLT processor.</xsl:text> + </xsl:message> + </xsl:if> + + <xsl:if test="$kimber.imported = 0"> + <xsl:message terminate="yes"> + <xsl:text>ERROR: the 'kimber' index method requires the </xsl:text> + <xsl:text>kimber index extensions be imported: </xsl:text> + <xsl:text> xsl:import href="html/autoidx-kimber.xsl"</xsl:text> + </xsl:message> + </xsl:if> + +</xsl:template> + +<xsl:template match="indexterm" mode="index-div-basic"> + <xsl:param name="scope" select="."/> + <xsl:param name="role" select="''"/> + <xsl:param name="type" select="''"/> + + <xsl:variable name="key" + select="translate(substring(&primary;, 1, 1), + &lowercase;,&uppercase;)"/> + + <xsl:if test="key('letter', $key)[&scope;] + [count(.|key('primary', &primary;)[&scope;][1]) = 1]"> + <div class="indexdiv"> + <xsl:if test="contains(concat(&lowercase;, &uppercase;), $key)"> + <h3> + <xsl:value-of select="translate($key, &lowercase;, &uppercase;)"/> + </h3> + </xsl:if> + <dl> + <xsl:apply-templates select="key('letter', $key)[&scope;] + [count(.|key('primary', &primary;) + [&scope;][1])=1]" + mode="index-primary"> + <xsl:with-param name="position" select="position()"/> + <xsl:with-param name="scope" select="$scope"/> + <xsl:with-param name="role" select="$role"/> + <xsl:with-param name="type" select="$type"/> + <xsl:sort select="translate(&primary;, &lowercase;, &uppercase;)"/> + </xsl:apply-templates> + </dl> + </div> + </xsl:if> +</xsl:template> + +<xsl:template match="indexterm" mode="index-symbol-div"> + <xsl:param name="scope" select="/"/> + <xsl:param name="role" select="''"/> + <xsl:param name="type" select="''"/> + + <xsl:variable name="key" select="translate(substring(&primary;, 1, 1), + &lowercase;,&uppercase;)"/> + + <xsl:apply-templates select="key('letter', $key) + [&scope;][count(.|key('primary', &primary;)[1]) = 1]" + mode="index-primary"> + <xsl:with-param name="position" select="position()"/> + <xsl:with-param name="scope" select="$scope"/> + <xsl:with-param name="role" select="$role"/> + <xsl:with-param name="type" select="$type"/> + <xsl:sort select="translate(&primary;, &lowercase;, &uppercase;)"/> + </xsl:apply-templates> +</xsl:template> + +<xsl:template match="indexterm" mode="index-primary"> + <xsl:param name="scope" select="."/> + <xsl:param name="role" select="''"/> + <xsl:param name="type" select="''"/> + + <xsl:variable name="key" select="&primary;"/> + <xsl:variable name="refs" select="key('primary', $key)[&scope;]"/> + <dt> + <xsl:for-each select="$refs/primary"> + <xsl:if test="@id or @xml:id"> + <a name="{(@id|@xml:id)[1]}"/> + </xsl:if> + </xsl:for-each> + <xsl:value-of select="primary"/> + <xsl:choose> + <xsl:when test="$index.links.to.section = 1"> + <xsl:for-each select="$refs[generate-id() = generate-id(key('primary-section', concat($key, &sep;, §ion.id;))[&scope;][1])]"> + <xsl:apply-templates select="." mode="reference"> + <xsl:with-param name="position" select="position()"/> + <xsl:with-param name="scope" select="$scope"/> + <xsl:with-param name="role" select="$role"/> + <xsl:with-param name="type" select="$type"/> + </xsl:apply-templates> + </xsl:for-each> + </xsl:when> + <xsl:otherwise> + <xsl:for-each select="$refs[&scope;]"> + <xsl:apply-templates select="." mode="reference"> + <xsl:with-param name="position" select="position()"/> + <xsl:with-param name="scope" select="$scope"/> + <xsl:with-param name="role" select="$role"/> + <xsl:with-param name="type" select="$type"/> + </xsl:apply-templates> + </xsl:for-each> + </xsl:otherwise> + </xsl:choose> + + <xsl:if test="$refs[not(secondary)]/*[self::see]"> + <xsl:apply-templates select="$refs[generate-id() = generate-id(key('see', concat(&primary;, &sep;, &sep;, &sep;, see))[&scope;][1])]" + mode="index-see"> + <xsl:with-param name="position" select="position()"/> + <xsl:with-param name="scope" select="$scope"/> + <xsl:with-param name="role" select="$role"/> + <xsl:with-param name="type" select="$type"/> + <xsl:sort select="translate(see, &lowercase;, &uppercase;)"/> + </xsl:apply-templates> + </xsl:if> + </dt> + <xsl:if test="$refs/secondary or $refs[not(secondary)]/*[self::seealso]"> + <dd> + <dl> + <xsl:apply-templates select="$refs[generate-id() = generate-id(key('see-also', concat(&primary;, &sep;, &sep;, &sep;, seealso))[&scope;][1])]" + mode="index-seealso"> + <xsl:with-param name="position" select="position()"/> + <xsl:with-param name="scope" select="$scope"/> + <xsl:with-param name="role" select="$role"/> + <xsl:with-param name="type" select="$type"/> + <xsl:sort select="translate(seealso, &lowercase;, &uppercase;)"/> + </xsl:apply-templates> + <xsl:apply-templates select="$refs[secondary and count(.|key('secondary', concat($key, &sep;, &secondary;))[&scope;][1]) = 1]" + mode="index-secondary"> + <xsl:with-param name="position" select="position()"/> + <xsl:with-param name="scope" select="$scope"/> + <xsl:with-param name="role" select="$role"/> + <xsl:with-param name="type" select="$type"/> + <xsl:sort select="translate(&secondary;, &lowercase;, &uppercase;)"/> + </xsl:apply-templates> + </dl> + </dd> + </xsl:if> +</xsl:template> + +<xsl:template match="indexterm" mode="index-secondary"> + <xsl:param name="scope" select="."/> + <xsl:param name="role" select="''"/> + <xsl:param name="type" select="''"/> + + <xsl:variable name="key" select="concat(&primary;, &sep;, &secondary;)"/> + <xsl:variable name="refs" select="key('secondary', $key)[&scope;]"/> + <dt> + <xsl:for-each select="$refs/secondary"> + <xsl:if test="@id or @xml:id"> + <a name="{(@id|@xml:id)[1]}"/> + </xsl:if> + </xsl:for-each> + <xsl:value-of select="secondary"/> + <xsl:choose> + <xsl:when test="$index.links.to.section = 1"> + <xsl:for-each select="$refs[generate-id() = generate-id(key('secondary-section', concat($key, &sep;, §ion.id;))[&scope;][1])]"> + <xsl:apply-templates select="." mode="reference"> + <xsl:with-param name="position" select="position()"/> + <xsl:with-param name="scope" select="$scope"/> + <xsl:with-param name="role" select="$role"/> + <xsl:with-param name="type" select="$type"/> + </xsl:apply-templates> + </xsl:for-each> + </xsl:when> + <xsl:otherwise> + <xsl:for-each select="$refs[&scope;]"> + <xsl:apply-templates select="." mode="reference"> + <xsl:with-param name="position" select="position()"/> + <xsl:with-param name="scope" select="$scope"/> + <xsl:with-param name="role" select="$role"/> + <xsl:with-param name="type" select="$type"/> + </xsl:apply-templates> + </xsl:for-each> + </xsl:otherwise> + </xsl:choose> + + <xsl:if test="$refs[not(tertiary)]/*[self::see]"> + <xsl:apply-templates select="$refs[generate-id() = generate-id(key('see', concat(&primary;, &sep;, &secondary;, &sep;, &sep;, see))[&scope;][1])]" + mode="index-see"> + <xsl:with-param name="position" select="position()"/> + <xsl:with-param name="scope" select="$scope"/> + <xsl:with-param name="role" select="$role"/> + <xsl:with-param name="type" select="$type"/> + <xsl:sort select="translate(see, &lowercase;, &uppercase;)"/> + </xsl:apply-templates> + </xsl:if> + </dt> + <xsl:if test="$refs/tertiary or $refs[not(tertiary)]/*[self::seealso]"> + <dd> + <dl> + <xsl:apply-templates select="$refs[generate-id() = generate-id(key('see-also', concat(&primary;, &sep;, &secondary;, &sep;, &sep;, seealso))[&scope;][1])]" + mode="index-seealso"> + <xsl:with-param name="position" select="position()"/> + <xsl:with-param name="scope" select="$scope"/> + <xsl:with-param name="role" select="$role"/> + <xsl:with-param name="type" select="$type"/> + <xsl:sort select="translate(seealso, &lowercase;, &uppercase;)"/> + </xsl:apply-templates> + <xsl:apply-templates select="$refs[tertiary and count(.|key('tertiary', concat($key, &sep;, &tertiary;))[&scope;][1]) = 1]" + mode="index-tertiary"> + <xsl:with-param name="position" select="position()"/> + <xsl:with-param name="scope" select="$scope"/> + <xsl:with-param name="role" select="$role"/> + <xsl:with-param name="type" select="$type"/> + <xsl:sort select="translate(&tertiary;, &lowercase;, &uppercase;)"/> + </xsl:apply-templates> + </dl> + </dd> + </xsl:if> +</xsl:template> + +<xsl:template match="indexterm" mode="index-tertiary"> + <xsl:param name="scope" select="."/> + <xsl:param name="role" select="''"/> + <xsl:param name="type" select="''"/> + + <xsl:variable name="key" select="concat(&primary;, &sep;, &secondary;, &sep;, &tertiary;)"/> + <xsl:variable name="refs" select="key('tertiary', $key)[&scope;]"/> + <dt> + <xsl:for-each select="$refs/tertiary"> + <xsl:if test="@id or @xml:id"> + <a name="{(@id|@xml:id)[1]}"/> + </xsl:if> + </xsl:for-each> + <xsl:value-of select="tertiary"/> + <xsl:choose> + <xsl:when test="$index.links.to.section = 1"> + <xsl:for-each select="$refs[generate-id() = generate-id(key('tertiary-section', concat($key, &sep;, §ion.id;))[&scope;][1])]"> + <xsl:apply-templates select="." mode="reference"> + <xsl:with-param name="position" select="position()"/> + <xsl:with-param name="scope" select="$scope"/> + <xsl:with-param name="role" select="$role"/> + <xsl:with-param name="type" select="$type"/> + </xsl:apply-templates> + </xsl:for-each> + </xsl:when> + <xsl:otherwise> + <xsl:for-each select="$refs[&scope;]"> + <xsl:apply-templates select="." mode="reference"> + <xsl:with-param name="position" select="position()"/> + <xsl:with-param name="scope" select="$scope"/> + <xsl:with-param name="role" select="$role"/> + <xsl:with-param name="type" select="$type"/> + </xsl:apply-templates> + </xsl:for-each> + </xsl:otherwise> + </xsl:choose> + + <xsl:if test="$refs/see"> + <xsl:apply-templates select="$refs[generate-id() = generate-id(key('see', concat(&primary;, &sep;, &secondary;, &sep;, &tertiary;, &sep;, see))[&scope;][1])]" + mode="index-see"> + <xsl:with-param name="position" select="position()"/> + <xsl:with-param name="scope" select="$scope"/> + <xsl:with-param name="role" select="$role"/> + <xsl:with-param name="type" select="$type"/> + <xsl:sort select="translate(see, &lowercase;, &uppercase;)"/> + </xsl:apply-templates> + </xsl:if> + </dt> + <xsl:if test="$refs/seealso"> + <dd> + <dl> + <xsl:apply-templates select="$refs[generate-id() = generate-id(key('see-also', concat(&primary;, &sep;, &secondary;, &sep;, &tertiary;, &sep;, seealso))[&scope;][1])]" + mode="index-seealso"> + <xsl:with-param name="position" select="position()"/> + <xsl:with-param name="scope" select="$scope"/> + <xsl:with-param name="role" select="$role"/> + <xsl:with-param name="type" select="$type"/> + <xsl:sort select="translate(seealso, &lowercase;, &uppercase;)"/> + </xsl:apply-templates> + </dl> + </dd> + </xsl:if> +</xsl:template> + +<xsl:template match="indexterm" mode="reference"> + <xsl:param name="scope" select="."/> + <xsl:param name="role" select="''"/> + <xsl:param name="type" select="''"/> + <xsl:param name="position"/> + + <xsl:variable name="term.separator"> + <xsl:call-template name="index.separator"> + <xsl:with-param name="key" select="'index.term.separator'"/> + </xsl:call-template> + </xsl:variable> + + <xsl:variable name="number.separator"> + <xsl:call-template name="index.separator"> + <xsl:with-param name="key" select="'index.number.separator'"/> + </xsl:call-template> + </xsl:variable> + + <xsl:variable name="range.separator"> + <xsl:call-template name="index.separator"> + <xsl:with-param name="key" select="'index.range.separator'"/> + </xsl:call-template> + </xsl:variable> + + <xsl:choose> + <xsl:when test="$position = 1"> + <xsl:value-of select="$term.separator"/> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="$number.separator"/> + </xsl:otherwise> + </xsl:choose> + + <xsl:choose> + <xsl:when test="@zone and string(@zone)"> + <xsl:call-template name="reference"> + <xsl:with-param name="zones" select="normalize-space(@zone)"/> + <xsl:with-param name="position" select="position()"/> + <xsl:with-param name="scope" select="$scope"/> + <xsl:with-param name="role" select="$role"/> + <xsl:with-param name="type" select="$type"/> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <a> + <xsl:apply-templates select="." mode="class.attribute"/> + <xsl:variable name="title"> + <xsl:choose> + <xsl:when test="§ion;/titleabbrev and $index.prefer.titleabbrev != 0"> + <xsl:apply-templates select="§ion;" mode="titleabbrev.markup"/> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates select="§ion;" mode="title.markup"/> + </xsl:otherwise> + </xsl:choose> + </xsl:variable> + + <xsl:attribute name="href"> + <xsl:choose> + <xsl:when test="$index.links.to.section = 1"> + <xsl:call-template name="href.target"> + <xsl:with-param name="object" select="§ion;"/> + <xsl:with-param name="context" select="//index[&scope;][1]"/> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="href.target"> + <xsl:with-param name="object" select="."/> + <xsl:with-param name="context" select="//index[&scope;][1]"/> + </xsl:call-template> + </xsl:otherwise> + </xsl:choose> + + </xsl:attribute> + + <xsl:value-of select="$title"/> <!-- text only --> + </a> + + <xsl:variable name="id" select="(@id|@xml:id)[1]"/> + <xsl:if test="key('endofrange', $id)[&scope;]"> + <xsl:apply-templates select="key('endofrange', $id)[&scope;][last()]" + mode="reference"> + <xsl:with-param name="position" select="position()"/> + <xsl:with-param name="scope" select="$scope"/> + <xsl:with-param name="role" select="$role"/> + <xsl:with-param name="type" select="$type"/> + <xsl:with-param name="separator" select="$range.separator"/> + </xsl:apply-templates> + </xsl:if> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template name="reference"> + <xsl:param name="scope" select="."/> + <xsl:param name="role" select="''"/> + <xsl:param name="type" select="''"/> + <xsl:param name="zones"/> + + <xsl:choose> + <xsl:when test="contains($zones, ' ')"> + <xsl:variable name="zone" select="substring-before($zones, ' ')"/> + <xsl:variable name="target" select="key('sections', $zone)"/> + + <a> + <xsl:apply-templates select="." mode="class.attribute"/> + <xsl:attribute name="href"> + <xsl:call-template name="href.target"> + <xsl:with-param name="object" select="$target[1]"/> + <xsl:with-param name="context" select="//index[&scope;][1]"/> + </xsl:call-template> + </xsl:attribute> + <xsl:apply-templates select="$target[1]" mode="index-title-content"/> + </a> + <xsl:text>, </xsl:text> + <xsl:call-template name="reference"> + <xsl:with-param name="zones" select="substring-after($zones, ' ')"/> + <xsl:with-param name="position" select="position()"/> + <xsl:with-param name="scope" select="$scope"/> + <xsl:with-param name="role" select="$role"/> + <xsl:with-param name="type" select="$type"/> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:variable name="zone" select="$zones"/> + <xsl:variable name="target" select="key('sections', $zone)"/> + + <a> + <xsl:apply-templates select="." mode="class.attribute"/> + <xsl:attribute name="href"> + <xsl:call-template name="href.target"> + <xsl:with-param name="object" select="$target[1]"/> + <xsl:with-param name="context" select="//index[&scope;][1]"/> + </xsl:call-template> + </xsl:attribute> + <xsl:apply-templates select="$target[1]" mode="index-title-content"/> + </a> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template match="indexterm" mode="index-see"> + <xsl:param name="scope" select="."/> + <xsl:param name="role" select="''"/> + <xsl:param name="type" select="''"/> + + <xsl:text> (</xsl:text> + <xsl:call-template name="gentext"> + <xsl:with-param name="key" select="'see'"/> + </xsl:call-template> + <xsl:text> </xsl:text> + <xsl:value-of select="see"/> + <xsl:text>)</xsl:text> +</xsl:template> + +<xsl:template match="indexterm" mode="index-seealso"> + <xsl:param name="scope" select="."/> + <xsl:param name="role" select="''"/> + <xsl:param name="type" select="''"/> + + <xsl:for-each select="seealso"> + <xsl:sort select="translate(., &lowercase;, &uppercase;)"/> + <dt> + <xsl:text>(</xsl:text> + <xsl:call-template name="gentext"> + <xsl:with-param name="key" select="'seealso'"/> + </xsl:call-template> + <xsl:text> </xsl:text> + <xsl:value-of select="."/> + <xsl:text>)</xsl:text> + </dt> + </xsl:for-each> +</xsl:template> + +<xsl:template match="*" mode="index-title-content"> + <xsl:variable name="title"> + <xsl:apply-templates select="§ion;" mode="title.markup"/> + </xsl:variable> + + <xsl:value-of select="$title"/> +</xsl:template> + +<xsl:template name="index.separator"> + <xsl:param name="key" select="''"/> + <xsl:param name="lang"> + <xsl:call-template name="l10n.language"/> + </xsl:param> + + <xsl:choose> + <xsl:when test="$key = 'index.term.separator'"> + <xsl:choose> + <!-- Use the override if not blank --> + <xsl:when test="$index.term.separator != ''"> + <xsl:copy-of select="$index.term.separator"/> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="gentext.template"> + <xsl:with-param name="lang" select="$lang"/> + <xsl:with-param name="context">index</xsl:with-param> + <xsl:with-param name="name">term-separator</xsl:with-param> + </xsl:call-template> + </xsl:otherwise> + </xsl:choose> + </xsl:when> + <xsl:when test="$key = 'index.number.separator'"> + <xsl:choose> + <!-- Use the override if not blank --> + <xsl:when test="$index.number.separator != ''"> + <xsl:copy-of select="$index.number.separator"/> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="gentext.template"> + <xsl:with-param name="lang" select="$lang"/> + <xsl:with-param name="context">index</xsl:with-param> + <xsl:with-param name="name">number-separator</xsl:with-param> + </xsl:call-template> + </xsl:otherwise> + </xsl:choose> + </xsl:when> + <xsl:when test="$key = 'index.range.separator'"> + <xsl:choose> + <!-- Use the override if not blank --> + <xsl:when test="$index.range.separator != ''"> + <xsl:copy-of select="$index.range.separator"/> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="gentext.template"> + <xsl:with-param name="lang" select="$lang"/> + <xsl:with-param name="context">index</xsl:with-param> + <xsl:with-param name="name">range-separator</xsl:with-param> + </xsl:call-template> + </xsl:otherwise> + </xsl:choose> + </xsl:when> + </xsl:choose> +</xsl:template> + +</xsl:stylesheet> diff --git a/docbook-xsl-1.76.1/html/autotoc.xsl b/docbook-xsl-1.76.1/html/autotoc.xsl new file mode 100644 index 0000000..0859b49 --- /dev/null +++ b/docbook-xsl-1.76.1/html/autotoc.xsl @@ -0,0 +1,707 @@ +<?xml version='1.0'?> +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + version='1.0'> + +<!-- ******************************************************************** + $Id: autotoc.xsl 8558 2009-12-11 00:33:17Z bobstayton $ + ******************************************************************** + + This file is part of the XSL DocBook Stylesheet distribution. + See ../README or http://docbook.sf.net/release/xsl/current/ for + copyright and other information. + + ******************************************************************** --> + +<xsl:variable name="toc.listitem.type"> + <xsl:choose> + <xsl:when test="$toc.list.type = 'dl'">dt</xsl:when> + <xsl:otherwise>li</xsl:otherwise> + </xsl:choose> +</xsl:variable> + +<!-- this is just hack because dl and ul aren't completely isomorphic --> +<xsl:variable name="toc.dd.type"> + <xsl:choose> + <xsl:when test="$toc.list.type = 'dl'">dd</xsl:when> + <xsl:otherwise></xsl:otherwise> + </xsl:choose> +</xsl:variable> + +<xsl:template name="make.toc"> + <xsl:param name="toc-context" select="."/> + <xsl:param name="toc.title.p" select="true()"/> + <xsl:param name="nodes" select="/NOT-AN-ELEMENT"/> + + <xsl:variable name="nodes.plus" select="$nodes | qandaset"/> + + <xsl:variable name="toc.title"> + <xsl:if test="$toc.title.p"> + <xsl:choose> + <xsl:when test="$make.clean.html != 0"> + <div class="toc-title"> + <xsl:call-template name="gentext"> + <xsl:with-param name="key">TableofContents</xsl:with-param> + </xsl:call-template> + </div> + </xsl:when> + <xsl:otherwise> + <p> + <b> + <xsl:call-template name="gentext"> + <xsl:with-param name="key">TableofContents</xsl:with-param> + </xsl:call-template> + </b> + </p> + </xsl:otherwise> + </xsl:choose> + </xsl:if> + </xsl:variable> + + <xsl:choose> + <xsl:when test="$manual.toc != ''"> + <xsl:variable name="id"> + <xsl:call-template name="object.id"/> + </xsl:variable> + <xsl:variable name="toc" select="document($manual.toc, .)"/> + <xsl:variable name="tocentry" select="$toc//tocentry[@linkend=$id]"/> + <xsl:if test="$tocentry and $tocentry/*"> + <div class="toc"> + <xsl:copy-of select="$toc.title"/> + <xsl:element name="{$toc.list.type}"> + <xsl:call-template name="manual-toc"> + <xsl:with-param name="tocentry" select="$tocentry/*[1]"/> + </xsl:call-template> + </xsl:element> + </div> + </xsl:if> + </xsl:when> + <xsl:otherwise> + <xsl:choose> + <xsl:when test="$qanda.in.toc != 0"> + <xsl:if test="$nodes.plus"> + <div class="toc"> + <xsl:copy-of select="$toc.title"/> + <xsl:element name="{$toc.list.type}"> + <xsl:apply-templates select="$nodes.plus" mode="toc"> + <xsl:with-param name="toc-context" select="$toc-context"/> + </xsl:apply-templates> + </xsl:element> + </div> + </xsl:if> + </xsl:when> + <xsl:otherwise> + <xsl:if test="$nodes"> + <div class="toc"> + <xsl:copy-of select="$toc.title"/> + <xsl:element name="{$toc.list.type}"> + <xsl:apply-templates select="$nodes" mode="toc"> + <xsl:with-param name="toc-context" select="$toc-context"/> + </xsl:apply-templates> + </xsl:element> + </div> + </xsl:if> + </xsl:otherwise> + </xsl:choose> + + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template name="make.lots"> + <xsl:param name="toc.params" select="''"/> + <xsl:param name="toc"/> + + <xsl:if test="contains($toc.params, 'toc')"> + <xsl:copy-of select="$toc"/> + </xsl:if> + + <xsl:if test="contains($toc.params, 'figure')"> + <xsl:call-template name="list.of.titles"> + <xsl:with-param name="titles" select="'figure'"/> + <xsl:with-param name="nodes" select=".//figure"/> + </xsl:call-template> + </xsl:if> + + <xsl:if test="contains($toc.params, 'table')"> + <xsl:call-template name="list.of.titles"> + <xsl:with-param name="titles" select="'table'"/> + <xsl:with-param name="nodes" select=".//table"/> + </xsl:call-template> + </xsl:if> + + <xsl:if test="contains($toc.params, 'example')"> + <xsl:call-template name="list.of.titles"> + <xsl:with-param name="titles" select="'example'"/> + <xsl:with-param name="nodes" select=".//example"/> + </xsl:call-template> + </xsl:if> + + <xsl:if test="contains($toc.params, 'equation')"> + <xsl:call-template name="list.of.titles"> + <xsl:with-param name="titles" select="'equation'"/> + <xsl:with-param name="nodes" select=".//equation[title or info/title]"/> + </xsl:call-template> + </xsl:if> + + <xsl:if test="contains($toc.params, 'procedure')"> + <xsl:call-template name="list.of.titles"> + <xsl:with-param name="titles" select="'procedure'"/> + <xsl:with-param name="nodes" select=".//procedure[title]"/> + </xsl:call-template> + </xsl:if> +</xsl:template> + +<!-- ====================================================================== --> + +<xsl:template name="set.toc"> + <xsl:param name="toc-context" select="."/> + <xsl:param name="toc.title.p" select="true()"/> + + <xsl:call-template name="make.toc"> + <xsl:with-param name="toc-context" select="$toc-context"/> + <xsl:with-param name="toc.title.p" select="$toc.title.p"/> + <xsl:with-param name="nodes" select="book|setindex"/> + </xsl:call-template> +</xsl:template> + +<xsl:template name="division.toc"> + <xsl:param name="toc-context" select="."/> + <xsl:param name="toc.title.p" select="true()"/> + + <xsl:call-template name="make.toc"> + <xsl:with-param name="toc-context" select="$toc-context"/> + <xsl:with-param name="toc.title.p" select="$toc.title.p"/> + <xsl:with-param name="nodes" select="part|reference + |preface|chapter|appendix + |article + |bibliography|glossary|index + |refentry + |bridgehead[$bridgehead.in.toc != 0]"/> + + </xsl:call-template> +</xsl:template> + +<xsl:template name="component.toc"> + <xsl:param name="toc-context" select="."/> + <xsl:param name="toc.title.p" select="true()"/> + + <xsl:call-template name="make.toc"> + <xsl:with-param name="toc-context" select="$toc-context"/> + <xsl:with-param name="toc.title.p" select="$toc.title.p"/> + <xsl:with-param name="nodes" select="section|sect1 + |simplesect[$simplesect.in.toc != 0] + |refentry + |article|bibliography|glossary + |appendix|index + |bridgehead[not(@renderas) + and $bridgehead.in.toc != 0] + |.//bridgehead[@renderas='sect1' + and $bridgehead.in.toc != 0]"/> + </xsl:call-template> +</xsl:template> + +<xsl:template name="component.toc.separator"> + <!-- Customize to output something between + component.toc and first output --> +</xsl:template> + +<xsl:template name="section.toc"> + <xsl:param name="toc-context" select="."/> + <xsl:param name="toc.title.p" select="true()"/> + + <xsl:call-template name="make.toc"> + <xsl:with-param name="toc-context" select="$toc-context"/> + <xsl:with-param name="toc.title.p" select="$toc.title.p"/> + <xsl:with-param name="nodes" + select="section|sect1|sect2|sect3|sect4|sect5|refentry + |bridgehead[$bridgehead.in.toc != 0]"/> + + </xsl:call-template> +</xsl:template> + +<xsl:template name="section.toc.separator"> + <!-- Customize to output something between + section.toc and first output --> +</xsl:template> +<!-- ==================================================================== --> + +<xsl:template name="subtoc"> + <xsl:param name="toc-context" select="."/> + <xsl:param name="nodes" select="NOT-AN-ELEMENT"/> + + <xsl:variable name="nodes.plus" select="$nodes | qandaset"/> + + <xsl:variable name="subtoc"> + <xsl:element name="{$toc.list.type}"> + <xsl:choose> + <xsl:when test="$qanda.in.toc != 0"> + <xsl:apply-templates mode="toc" select="$nodes.plus"> + <xsl:with-param name="toc-context" select="$toc-context"/> + </xsl:apply-templates> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates mode="toc" select="$nodes"> + <xsl:with-param name="toc-context" select="$toc-context"/> + </xsl:apply-templates> + </xsl:otherwise> + </xsl:choose> + </xsl:element> + </xsl:variable> + + <xsl:variable name="depth"> + <xsl:choose> + <xsl:when test="local-name(.) = 'section'"> + <xsl:value-of select="count(ancestor::section) + 1"/> + </xsl:when> + <xsl:when test="local-name(.) = 'sect1'">1</xsl:when> + <xsl:when test="local-name(.) = 'sect2'">2</xsl:when> + <xsl:when test="local-name(.) = 'sect3'">3</xsl:when> + <xsl:when test="local-name(.) = 'sect4'">4</xsl:when> + <xsl:when test="local-name(.) = 'sect5'">5</xsl:when> + <xsl:when test="local-name(.) = 'refsect1'">1</xsl:when> + <xsl:when test="local-name(.) = 'refsect2'">2</xsl:when> + <xsl:when test="local-name(.) = 'refsect3'">3</xsl:when> + <xsl:when test="local-name(.) = 'simplesect'"> + <!-- sigh... --> + <xsl:choose> + <xsl:when test="local-name(..) = 'section'"> + <xsl:value-of select="count(ancestor::section)"/> + </xsl:when> + <xsl:when test="local-name(..) = 'sect1'">2</xsl:when> + <xsl:when test="local-name(..) = 'sect2'">3</xsl:when> + <xsl:when test="local-name(..) = 'sect3'">4</xsl:when> + <xsl:when test="local-name(..) = 'sect4'">5</xsl:when> + <xsl:when test="local-name(..) = 'sect5'">6</xsl:when> + <xsl:when test="local-name(..) = 'refsect1'">2</xsl:when> + <xsl:when test="local-name(..) = 'refsect2'">3</xsl:when> + <xsl:when test="local-name(..) = 'refsect3'">4</xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:when> + <xsl:otherwise>0</xsl:otherwise> + </xsl:choose> + </xsl:variable> + + <xsl:variable name="depth.from.context" select="count(ancestor::*)-count($toc-context/ancestor::*)"/> + + <xsl:variable name="subtoc.list"> + <xsl:choose> + <xsl:when test="$toc.dd.type = ''"> + <xsl:copy-of select="$subtoc"/> + </xsl:when> + <xsl:otherwise> + <xsl:element name="{$toc.dd.type}"> + <xsl:copy-of select="$subtoc"/> + </xsl:element> + </xsl:otherwise> + </xsl:choose> + </xsl:variable> + + <xsl:element name="{$toc.listitem.type}"> + <xsl:call-template name="toc.line"> + <xsl:with-param name="toc-context" select="$toc-context"/> + </xsl:call-template> + <xsl:if test="$toc.listitem.type = 'li' + and $toc.section.depth > $depth and + ( ($qanda.in.toc = 0 and count($nodes)>0) or + ($qanda.in.toc != 0 and count($nodes.plus)>0) ) + and $toc.max.depth > $depth.from.context"> + <xsl:copy-of select="$subtoc.list"/> + </xsl:if> + </xsl:element> + <xsl:if test="$toc.listitem.type != 'li' + and $toc.section.depth > $depth and + ( ($qanda.in.toc = 0 and count($nodes)>0) or + ($qanda.in.toc != 0 and count($nodes.plus)>0) ) + and $toc.max.depth > $depth.from.context"> + <xsl:copy-of select="$subtoc.list"/> + </xsl:if> +</xsl:template> + +<xsl:template name="toc.line"> + <xsl:param name="toc-context" select="."/> + <xsl:param name="depth" select="1"/> + <xsl:param name="depth.from.context" select="8"/> + + <span> + <xsl:attribute name="class"><xsl:value-of select="local-name(.)"/></xsl:attribute> + + <!-- * if $autotoc.label.in.hyperlink is zero, then output the label --> + <!-- * before the hyperlinked title (as the DSSSL stylesheet does) --> + <xsl:if test="$autotoc.label.in.hyperlink = 0"> + <xsl:variable name="label"> + <xsl:apply-templates select="." mode="label.markup"/> + </xsl:variable> + <xsl:copy-of select="$label"/> + <xsl:if test="$label != ''"> + <xsl:value-of select="$autotoc.label.separator"/> + </xsl:if> + </xsl:if> + + <a> + <xsl:attribute name="href"> + <xsl:call-template name="href.target"> + <xsl:with-param name="context" select="$toc-context"/> + <xsl:with-param name="toc-context" select="$toc-context"/> + </xsl:call-template> + </xsl:attribute> + + <!-- * if $autotoc.label.in.hyperlink is non-zero, then output the label --> + <!-- * as part of the hyperlinked title --> + <xsl:if test="not($autotoc.label.in.hyperlink = 0)"> + <xsl:variable name="label"> + <xsl:apply-templates select="." mode="label.markup"/> + </xsl:variable> + <xsl:copy-of select="$label"/> + <xsl:if test="$label != ''"> + <xsl:value-of select="$autotoc.label.separator"/> + </xsl:if> + </xsl:if> + + <xsl:apply-templates select="." mode="titleabbrev.markup"/> + </a> + </span> +</xsl:template> + +<xsl:template match="book" mode="toc"> + <xsl:param name="toc-context" select="."/> + + <xsl:call-template name="subtoc"> + <xsl:with-param name="toc-context" select="$toc-context"/> + <xsl:with-param name="nodes" select="part|reference + |preface|chapter|appendix + |article + |bibliography|glossary|index + |refentry + |bridgehead[$bridgehead.in.toc != 0]"/> + </xsl:call-template> +</xsl:template> + +<xsl:template match="setindex" mode="toc"> + <xsl:param name="toc-context" select="."/> + + <!-- If the setindex tag is not empty, it should be it in the TOC --> + <xsl:if test="* or $generate.index != 0"> + <xsl:call-template name="subtoc"> + <xsl:with-param name="toc-context" select="$toc-context"/> + </xsl:call-template> + </xsl:if> +</xsl:template> + +<xsl:template match="part|reference" mode="toc"> + <xsl:param name="toc-context" select="."/> + + <xsl:call-template name="subtoc"> + <xsl:with-param name="toc-context" select="$toc-context"/> + <xsl:with-param name="nodes" select="appendix|chapter|article + |index|glossary|bibliography + |preface|reference|refentry + |bridgehead[$bridgehead.in.toc != 0]"/> + </xsl:call-template> +</xsl:template> + +<xsl:template match="preface|chapter|appendix|article" mode="toc"> + <xsl:param name="toc-context" select="."/> + + <xsl:call-template name="subtoc"> + <xsl:with-param name="toc-context" select="$toc-context"/> + <xsl:with-param name="nodes" select="section|sect1 + |simplesect[$simplesect.in.toc != 0] + |refentry + |glossary|bibliography|index + |bridgehead[$bridgehead.in.toc != 0]"/> + </xsl:call-template> +</xsl:template> + +<xsl:template match="sect1" mode="toc"> + <xsl:param name="toc-context" select="."/> + <xsl:call-template name="subtoc"> + <xsl:with-param name="toc-context" select="$toc-context"/> + <xsl:with-param name="nodes" select="sect2 + |bridgehead[$bridgehead.in.toc != 0]"/> + </xsl:call-template> +</xsl:template> + +<xsl:template match="sect2" mode="toc"> + <xsl:param name="toc-context" select="."/> + + <xsl:call-template name="subtoc"> + <xsl:with-param name="toc-context" select="$toc-context"/> + <xsl:with-param name="nodes" select="sect3 + |bridgehead[$bridgehead.in.toc != 0]"/> + </xsl:call-template> +</xsl:template> + +<xsl:template match="sect3" mode="toc"> + <xsl:param name="toc-context" select="."/> + + <xsl:call-template name="subtoc"> + <xsl:with-param name="toc-context" select="$toc-context"/> + <xsl:with-param name="nodes" select="sect4 + |bridgehead[$bridgehead.in.toc != 0]"/> + </xsl:call-template> +</xsl:template> + +<xsl:template match="sect4" mode="toc"> + <xsl:param name="toc-context" select="."/> + + <xsl:call-template name="subtoc"> + <xsl:with-param name="toc-context" select="$toc-context"/> + <xsl:with-param name="nodes" select="sect5 + |bridgehead[$bridgehead.in.toc != 0]"/> + </xsl:call-template> +</xsl:template> + +<xsl:template match="sect5" mode="toc"> + <xsl:param name="toc-context" select="."/> + + <xsl:call-template name="subtoc"> + <xsl:with-param name="toc-context" select="$toc-context"/> + </xsl:call-template> +</xsl:template> + +<xsl:template match="simplesect" mode="toc"> + <xsl:param name="toc-context" select="."/> + + <xsl:call-template name="subtoc"> + <xsl:with-param name="toc-context" select="$toc-context"/> + </xsl:call-template> +</xsl:template> + +<xsl:template match="section" mode="toc"> + <xsl:param name="toc-context" select="."/> + + <xsl:call-template name="subtoc"> + <xsl:with-param name="toc-context" select="$toc-context"/> + <xsl:with-param name="nodes" select="section|refentry + |simplesect[$simplesect.in.toc != 0] + |bridgehead[$bridgehead.in.toc != 0]"/> + </xsl:call-template> +</xsl:template> + +<xsl:template match="bridgehead" mode="toc"> + <xsl:param name="toc-context" select="."/> + + <xsl:if test="$bridgehead.in.toc != 0"> + <xsl:call-template name="subtoc"> + <xsl:with-param name="toc-context" select="$toc-context"/> + </xsl:call-template> + </xsl:if> +</xsl:template> + +<xsl:template match="bibliography|glossary" mode="toc"> + <xsl:param name="toc-context" select="."/> + + <xsl:call-template name="subtoc"> + <xsl:with-param name="toc-context" select="$toc-context"/> + </xsl:call-template> +</xsl:template> + +<xsl:template match="index" mode="toc"> + <xsl:param name="toc-context" select="."/> + + <!-- If the index tag is not empty, it should be it in the TOC --> + <xsl:if test="* or $generate.index != 0"> + <xsl:call-template name="subtoc"> + <xsl:with-param name="toc-context" select="$toc-context"/> + </xsl:call-template> + </xsl:if> +</xsl:template> + +<xsl:template match="refentry" mode="toc"> + <xsl:param name="toc-context" select="."/> + + <xsl:variable name="refmeta" select=".//refmeta"/> + <xsl:variable name="refentrytitle" select="$refmeta//refentrytitle"/> + <xsl:variable name="refnamediv" select=".//refnamediv"/> + <xsl:variable name="refname" select="$refnamediv//refname"/> + <xsl:variable name="refdesc" select="$refnamediv//refdescriptor"/> + <xsl:variable name="title"> + <xsl:choose> + <xsl:when test="$refentrytitle"> + <xsl:apply-templates select="$refentrytitle[1]" + mode="titleabbrev.markup"/> + </xsl:when> + <xsl:when test="$refdesc"> + <xsl:apply-templates select="$refdesc" + mode="titleabbrev.markup"/> + </xsl:when> + <xsl:when test="$refname"> + <xsl:apply-templates select="$refname[1]" + mode="titleabbrev.markup"/> + </xsl:when> + </xsl:choose> + </xsl:variable> + + <xsl:element name="{$toc.listitem.type}"> + <span class='refentrytitle'> + <a> + <xsl:attribute name="href"> + <xsl:call-template name="href.target"> + <xsl:with-param name="toc-context" select="$toc-context"/> + </xsl:call-template> + </xsl:attribute> + <xsl:copy-of select="$title"/> + </a> + </span> + <span class='refpurpose'> + <xsl:if test="$annotate.toc != 0"> + <!-- * DocBook 5 says inlinemediaobject (among other things) --> + <!-- * is allowed in refpurpose; so we need to run --> + <!-- * apply-templates on refpurpose here, instead of value-of --> + <xsl:apply-templates select="refnamediv/refpurpose"/> + </xsl:if> + </span> + </xsl:element> +</xsl:template> + +<xsl:template match="title" mode="toc"> + <xsl:param name="toc-context" select="."/> + + <a> + <xsl:attribute name="href"> + <xsl:call-template name="href.target"> + <xsl:with-param name="object" select=".."/> + <xsl:with-param name="toc-context" select="$toc-context"/> + </xsl:call-template> + </xsl:attribute> + <xsl:apply-templates/> + </a> +</xsl:template> + +<xsl:template name="manual-toc"> + <xsl:param name="toc-context" select="."/> + <xsl:param name="tocentry"/> + + <!-- be careful, we don't want to change the current document to the other tree! --> + + <xsl:if test="$tocentry"> + <xsl:variable name="node" select="key('id', $tocentry/@linkend)"/> + + <xsl:element name="{$toc.listitem.type}"> + <xsl:variable name="label"> + <xsl:apply-templates select="$node" mode="label.markup"/> + </xsl:variable> + <xsl:copy-of select="$label"/> + <xsl:if test="$label != ''"> + <xsl:value-of select="$autotoc.label.separator"/> + </xsl:if> + <a> + <xsl:attribute name="href"> + <xsl:call-template name="href.target"> + <xsl:with-param name="object" select="$node"/> + <xsl:with-param name="toc-context" select="$toc-context"/> + </xsl:call-template> + </xsl:attribute> + <xsl:apply-templates select="$node" mode="titleabbrev.markup"/> + </a> + </xsl:element> + + <xsl:if test="$tocentry/*"> + <xsl:element name="{$toc.list.type}"> + <xsl:call-template name="manual-toc"> + <xsl:with-param name="tocentry" select="$tocentry/*[1]"/> + </xsl:call-template> + </xsl:element> + </xsl:if> + + <xsl:if test="$tocentry/following-sibling::*"> + <xsl:call-template name="manual-toc"> + <xsl:with-param name="tocentry" select="$tocentry/following-sibling::*[1]"/> + </xsl:call-template> + </xsl:if> + </xsl:if> +</xsl:template> + +<!-- ==================================================================== --> + +<xsl:template name="list.of.titles"> + <xsl:param name="toc-context" select="."/> + <xsl:param name="titles" select="'table'"/> + <xsl:param name="nodes" select=".//table"/> + + <xsl:if test="$nodes"> + <div class="list-of-{$titles}s"> + <xsl:choose> + <xsl:when test="$make.clean.html != 0"> + <div class="toc-title"> + <xsl:call-template name="gentext"> + <xsl:with-param name="key"> + <xsl:choose> + <xsl:when test="$titles='table'">ListofTables</xsl:when> + <xsl:when test="$titles='figure'">ListofFigures</xsl:when> + <xsl:when test="$titles='equation'">ListofEquations</xsl:when> + <xsl:when test="$titles='example'">ListofExamples</xsl:when> + <xsl:when test="$titles='procedure'">ListofProcedures</xsl:when> + <xsl:otherwise>ListofUnknown</xsl:otherwise> + </xsl:choose> + </xsl:with-param> + </xsl:call-template> + </div> + </xsl:when> + <xsl:otherwise> + <p> + <b> + <xsl:call-template name="gentext"> + <xsl:with-param name="key"> + <xsl:choose> + <xsl:when test="$titles='table'">ListofTables</xsl:when> + <xsl:when test="$titles='figure'">ListofFigures</xsl:when> + <xsl:when test="$titles='equation'">ListofEquations</xsl:when> + <xsl:when test="$titles='example'">ListofExamples</xsl:when> + <xsl:when test="$titles='procedure'">ListofProcedures</xsl:when> + <xsl:otherwise>ListofUnknown</xsl:otherwise> + </xsl:choose> + </xsl:with-param> + </xsl:call-template> + </b> + </p> + </xsl:otherwise> + </xsl:choose> + + <xsl:element name="{$toc.list.type}"> + <xsl:apply-templates select="$nodes" mode="toc"> + <xsl:with-param name="toc-context" select="$toc-context"/> + </xsl:apply-templates> + </xsl:element> + </div> + </xsl:if> +</xsl:template> + +<xsl:template match="figure|table|example|equation|procedure" mode="toc"> + <xsl:param name="toc-context" select="."/> + + <xsl:element name="{$toc.listitem.type}"> + <xsl:variable name="label"> + <xsl:apply-templates select="." mode="label.markup"/> + </xsl:variable> + <xsl:copy-of select="$label"/> + <xsl:if test="$label != ''"> + <xsl:value-of select="$autotoc.label.separator"/> + </xsl:if> + <a> + <xsl:attribute name="href"> + <xsl:call-template name="href.target"> + <xsl:with-param name="toc-context" select="$toc-context"/> + </xsl:call-template> + </xsl:attribute> + <xsl:apply-templates select="." mode="titleabbrev.markup"/> + </a> + </xsl:element> +</xsl:template> + +<!-- Used only if qanda.in.toc parameter is non-zero --> +<xsl:template match="qandaset" mode="toc"> + <xsl:param name="toc-context" select="."/> + <xsl:call-template name="subtoc"> + <xsl:with-param name="toc-context" select="$toc-context"/> + <xsl:with-param name="nodes" select="qandadiv | qandaentry"/> + </xsl:call-template> +</xsl:template> + +<xsl:template match="qandadiv|qandaentry" mode="toc"> + <xsl:apply-templates select="." mode="qandatoc.mode"/> +</xsl:template> + +</xsl:stylesheet> + diff --git a/docbook-xsl-1.76.1/html/biblio-iso690.xsl b/docbook-xsl-1.76.1/html/biblio-iso690.xsl new file mode 100644 index 0000000..d420bec --- /dev/null +++ b/docbook-xsl-1.76.1/html/biblio-iso690.xsl @@ -0,0 +1,1300 @@ +<?xml version="1.0" encoding="UTF-8"?> +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + version='1.0'> + + +<!-- ******************************************************************** + $Id: biblio.xsl 6402 2006-11-12 08:23:21Z bobstayton $ + ******************************************************************** + + This file is part of the XSL DocBook Stylesheet distribution. + See ../README or http://docbook.sf.net/release/xsl/current/ for + copyright and other information. + + The original code for processing bibliography in ISO690 style + was provided by Jana Dvorakova <jana4u@seznam.cz> + + ******************************************************************** --> + +<!-- ==================================================================== --> + +<!-- if biblioentry.alt.primary.seps is set to nonzero value then use alternative separators for primary responsibility - $alt.person.two.sep, $alt.person.last.sep, $alt.person.more.sep --> +<xsl:param name="biblioentry.alt.primary.seps" select="0"/> + +<!-- how many authors will be printed if there is more than three authors - set to number 1 (default value), 2 or 3 --> +<xsl:param name="biblioentry.primary.count" select="1"/> + +<!-- ==================================================================== --> + +<xsl:template name="iso690.makecitation"> +<!-- Types of resources --> + <xsl:choose> + + <!-- SYSTEMS OF ELECTRONIC COMMUNICATION : ENTIRE MESSAGE SYSTEM --> + <!-- same as Monographs --> + <xsl:when test="./@role='messagesystem'"> + <xsl:call-template name="iso690.monogr"/> + </xsl:when> + + <!-- SYSTEMS OF ELECTRONIC COMMUNICATION : ELECTRONIC MESSAGES --> + <!-- same as Contributions to Monographs --> + <xsl:when test="./@role='message'"> + <xsl:call-template name="iso690.paper.mon"/> + </xsl:when> + + <!-- SERIALS --> + <xsl:when test="./@role='serial' or ./biblioid/@class='issn' or ./issn"> + <xsl:call-template name="iso690.serial"/> + </xsl:when> + + <!-- PARTS OF MONOGRAPHS --> + <xsl:when test="./@role='part' or (./bibliomisc[@role='secnum']|./bibliomisc[@role='sectitle'])"> + <xsl:call-template name="iso690.monogr.part"/> + </xsl:when> + + <!-- CONTRIBUTIONS TO MONOGRAPHS --> + <xsl:when test="./@role='contribution' or (./biblioset/@relation='part' and ./biblioset/@relation='book')"> + <xsl:call-template name="iso690.paper.mon"/> + </xsl:when> + + <!-- ARTICLES, ETC., IN SERIALS --> + <xsl:when test="./@role='article' or (./biblioset/@relation='journal' and ./biblioset/@relation='article')"> + <xsl:call-template name="iso690.article"/> + </xsl:when> + + <!-- PATENT DOCUMENTS --> + <xsl:when test="./@role='patent' or (./bibliomisc[@role='patenttype'] and ./bibliomisc[@role='patentnum'])"> + <xsl:call-template name="iso690.patent"/> + </xsl:when> + + <!-- MONOGRAPHS --> + <xsl:otherwise> + <xsl:call-template name="iso690.monogr"/> + </xsl:otherwise> + + </xsl:choose> +</xsl:template> + +<!-- ==================================================================== --> + +<!-- MONOGRAPHS --> +<xsl:template name="iso690.monogr"> + <!-- Primary responsibility --> + <xsl:call-template name="iso690.primary"/> + <!-- Title and Type of medium --> + <xsl:call-template name="iso690.title"/> + <!-- Subordinate responsibility --> + <xsl:call-template name="iso690.secondary"/> + <!-- Edition --> + <xsl:call-template name="iso690.edition"/> + <!-- Place of publication, Publisher, Year/Date of publication, Date of update/revision, Date of citation --> + <xsl:call-template name="iso690.pub"/> + <!-- Extent --> + <xsl:call-template name="iso690.extent"/> + <!-- Series --> + <xsl:call-template name="iso690.serie"/> + <!-- Notes --> + <xsl:call-template name="iso690.notice"/> + <!-- Avaibility and access --> + <xsl:call-template name="iso690.access"/> + <!-- Standard number --> + <xsl:call-template name="iso690.isbn"/> +</xsl:template> + +<!-- SERIALS --> +<xsl:template name="iso690.serial"> + <!-- Title and Type of medium --> + <xsl:call-template name="iso690.title"/> + <!-- Responsibility [nonEL] --> + <xsl:if test="not(./bibliomisc[@role='medium'])"> + <xsl:call-template name="iso690.secondary"/> + </xsl:if> + <!-- Edition --> + <xsl:call-template name="iso690.edition"> + <xsl:with-param name="after" select="./bibliomisc[@role='issuing']"/> + </xsl:call-template> + <!-- Issue designation (date and/or num) [nonEL] --> + <xsl:if test="not(./bibliomisc[@role='medium'])"> + <xsl:call-template name="iso690.issuing"/> + </xsl:if> + <!-- Place of publication, Publisher, Year/Date of publication, Date of update/revision, Date of citation --> + <xsl:call-template name="iso690.pub"/> + <!-- Series --> + <xsl:call-template name="iso690.serie"/> + <!-- Notes --> + <xsl:call-template name="iso690.notice"/> + <!-- Avaibility and access --> + <xsl:call-template name="iso690.access"/> + <!-- Standard number --> + <xsl:call-template name="iso690.issn"/> +</xsl:template> + +<!-- PARTS OF MONOGRAPHS --> +<xsl:template name="iso690.monogr.part"> + <!-- Primary responsibility of host document --> + <xsl:call-template name="iso690.primary"/> + <!-- Title and Type of medium of host document --> + <xsl:call-template name="iso690.title"/> + <!-- Subordinate responsibility of host document [EL] --> + <xsl:if test="./bibliomisc[@role='medium']"> + <xsl:call-template name="iso690.secondary"/> + </xsl:if> + <!-- Edition --> + <xsl:call-template name="iso690.edition"> + <xsl:with-param name="after" select="./volumenum"/> + </xsl:call-template> + <!-- Numeration of the part [nonEL]--> + <xsl:if test="not(./bibliomisc[@role='medium'])"> + <xsl:call-template name="iso690.partnr"/> + <!-- Subordinate responsibility [nonEL] --> + <xsl:call-template name="iso690.secondary"/> + </xsl:if> + <!-- Place of publication, Publisher, Year/Date of publication, Date of update/revision, Date of citation --> + <xsl:call-template name="iso690.pub"/> + <!-- Location within host --> + <xsl:call-template name="iso690.part.location"/> + <xsl:if test="./bibliomisc[@role='medium']"> + <!-- Numeration within host document [EL] --> + <!-- Notes [EL] --> + <xsl:call-template name="iso690.notice"/> + <!-- Avaibility and access [EL] --> + <xsl:call-template name="iso690.access"/> + <!-- Standard number [EL] --> + <xsl:call-template name="iso690.isbn"/> + </xsl:if> +</xsl:template> + +<!-- CONTRIBUTIONS TO MONOGRAPHS --> +<xsl:template name="iso690.paper.mon"> +<!-- Contribution --> + <xsl:apply-templates mode="iso690.paper.part" select="./biblioset[@relation='part']"/> +<!-- In --> + <xsl:text>In </xsl:text> +<!-- Host --> + <xsl:apply-templates mode="iso690.paper.book" select="./biblioset[@relation='book']"/> +</xsl:template> + +<xsl:template match="biblioset" mode="iso690.paper.part"> +<!-- Contribution --> + <!-- Primary responsibility --> + <xsl:call-template name="iso690.primary"/> + <!-- Title --> + <xsl:call-template name="iso690.title"> + <xsl:with-param name="italic" select="0"/> + </xsl:call-template> +</xsl:template> + +<xsl:template match="biblioset" mode="iso690.paper.book"> +<!-- Host --> + <!-- Primary responsibility --> + <xsl:call-template name="iso690.primary"/> + <!-- Title and Type of medium --> + <xsl:call-template name="iso690.title"/> + <!-- Subordinate responsibility [EL] --> + <xsl:if test="./bibliomisc[@role='medium']"> + <xsl:call-template name="iso690.secondary"/> + </xsl:if> + <!-- Edition --> + <xsl:call-template name="iso690.edition"/> + <!-- Place of publication, Publisher, Year/Date of publication, Date of update/revision, Date of citation --> + <xsl:call-template name="iso690.paper.pub"/> + <!-- Numeration within host document [EL] --> + <!-- Location within host --> + <xsl:call-template name="iso690.location"/> + <xsl:if test="./bibliomisc[@role='medium']"> + <!-- Notes [EL] --> + <xsl:call-template name="iso690.notice"/> + <!-- Avaibility and access [EL] --> + <xsl:call-template name="iso690.access"/> + <!-- Standard number [EL] --> + <xsl:call-template name="iso690.isbn"/> + </xsl:if> +</xsl:template> + +<!-- ARTICLES, ETC., IN SERIALS --> +<xsl:template name="iso690.article"> +<!-- Article --> + <xsl:apply-templates mode="iso690.article.art" select="./biblioset[@relation='article']"/> +<!-- Serial --> + <xsl:apply-templates mode="iso690.article.jour" select="./biblioset[@relation='journal']"/> +</xsl:template> + +<xsl:template match="biblioset" mode="iso690.article.art"> +<!-- Article --> + <!-- Primary responsibility --> + <xsl:call-template name="iso690.primary"/> + <!-- Title --> + <xsl:call-template name="iso690.title"> + <xsl:with-param name="italic" select="0"/> + </xsl:call-template> + <!-- Subordinate responsibility [nonEL] --> + <xsl:if test="not(../*/bibliomisc[@role='medium'])"> + <xsl:call-template name="iso690.secondary"/> + </xsl:if> +</xsl:template> + +<xsl:template match="biblioset" mode="iso690.article.jour"> +<!-- Serial --> + <!-- Title and Type of medium --> + <xsl:call-template name="iso690.title"/> + <!-- Edition --> + <xsl:call-template name="iso690.edition"> + <xsl:with-param name="after" select="./pubdate[not(@role='issuing')]|./volumenum|./issuenum|./pagenums"/> + </xsl:call-template> + <!-- Number designation [EL] --> + <!-- Location within host --> + <xsl:call-template name="iso690.article.location"/> + <xsl:if test="./bibliomisc[@role='medium']"> + <!-- Notes [EL] --> + <xsl:call-template name="iso690.notice"/> + <!-- Avaibility and access [EL] --> + <xsl:call-template name="iso690.access"/> + <!-- Standard number [EL] --> + <xsl:call-template name="iso690.issn"/> + </xsl:if> +</xsl:template> + +<!-- PATENT DOCUMENTS --> +<xsl:template name="iso690.patent"> + <!-- Primary responsibility (applicant) --> + <xsl:call-template name="iso690.primary"/> + <!-- Title of the invention --> + <xsl:call-template name="iso690.title"/> + <!-- Subordinate responsibility --> + <xsl:call-template name="iso690.secondary"/> + <!-- Notes --> + <xsl:call-template name="iso690.notice"/> + <!-- Identification --> + <xsl:call-template name="iso690.pat.ident"/> +</xsl:template> + +<!-- ==================================================================== --> +<!-- Elements --> + +<!-- Primary responsibility --> +<xsl:template name="iso690.primary"> + <xsl:param name="primary.sep"> + <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'primary.sep'"/></xsl:call-template> + </xsl:param> + <xsl:choose> + <xsl:when test="./authorgroup/author|./author"> + <xsl:call-template name="iso690.author.list"> + <xsl:with-param name="person.list" select=".//authorgroup/author|.//author"/> + </xsl:call-template> + </xsl:when> + <xsl:when test="./authorgroup/editor|./editor"> + <xsl:call-template name="iso690.author.list"> + <xsl:with-param name="person.list" select=".//authorgroup/editor|.//editor"/> + </xsl:call-template> + </xsl:when> + <xsl:when test="./authorgroup/corpauthor|./corpauthor"> + <xsl:call-template name="iso690.author.list"> + <xsl:with-param name="person.list" select=".//authorgroup/corpauthor|.//corpauthor"/> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:if test="(./firstname)and(./surname)"> + <xsl:call-template name="iso690.author"/> + <xsl:call-template name="iso690.endsep"> + <xsl:with-param name="text" select="string(./firstname[1])"/> + <xsl:with-param name="sep" select="$primary.sep"/> + </xsl:call-template> + </xsl:if> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template name="iso690.author.list"> + <xsl:param name="person.list" + select="author|corpauthor|editor"/> + <xsl:param name="person.count" select="count($person.list)"/> + <xsl:param name="count" select="1"/> + <xsl:param name="group" select="./authorgroup[@role='many']"/> + <xsl:param name="many" select="0"/> + + <xsl:param name="primary.many"> + <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'primary.many'"/></xsl:call-template> + </xsl:param> + <xsl:param name="primary.editor"> + <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'primary.editor'"/></xsl:call-template> + </xsl:param> + <xsl:param name="primary.sep"> + <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'primary.sep'"/></xsl:call-template> + </xsl:param> + + <xsl:choose> + <xsl:when test="$count > $person.count"></xsl:when> + <xsl:otherwise> + <xsl:choose> + <xsl:when test="$person.count < 4 and not($group)"> + <xsl:call-template name="iso690.author"> + <xsl:with-param name="node" select="$person.list[position()=$count]"/> + </xsl:call-template> + <xsl:choose> + <xsl:when test="$person.count = 2 and $count = 1 and $biblioentry.alt.primary.seps != 0"> + <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'alt.person.two.sep'"/></xsl:call-template> + </xsl:when> + <xsl:when test="$person.count = 2 and $count = 1"> + <xsl:call-template name="gentext.template"> + <xsl:with-param name="context" select="'authorgroup'"/> + <xsl:with-param name="name" select="'sep2'"/> + </xsl:call-template> + </xsl:when> + <xsl:when test="$person.count > 2 and $count+1 = $person.count and $biblioentry.alt.primary.seps != 0"> + <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'alt.person.last.sep'"/></xsl:call-template> + </xsl:when> + <xsl:when test="$person.count > 2 and $count+1 = $person.count"> + <xsl:call-template name="gentext.template"> + <xsl:with-param name="context" select="'authorgroup'"/> + <xsl:with-param name="name" select="'seplast'"/> + </xsl:call-template> + </xsl:when> + <xsl:when test="$count < $person.count and $biblioentry.alt.primary.seps != 0"> + <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'alt.person.more.sep'"/></xsl:call-template> + </xsl:when> + <xsl:when test="$count < $person.count"> + <xsl:call-template name="gentext.template"> + <xsl:with-param name="context" select="'authorgroup'"/> + <xsl:with-param name="name" select="'sep'"/> + </xsl:call-template> + </xsl:when> + <xsl:when test="($count = $person.count)"> + <xsl:choose> + <xsl:when test="$many!=0"> + <xsl:if test="name($person.list[position()=$count])='editor'"> + <xsl:value-of select="$primary.editor"/> + </xsl:if> + <xsl:value-of select="$primary.many"/> + <xsl:call-template name="iso690.endsep"> + <xsl:with-param name="text" select="$primary.many"/> + <xsl:with-param name="sep" select="$primary.sep"/> + </xsl:call-template> + </xsl:when> + <xsl:when test="name($person.list[position()=$count])='editor'"> + <xsl:value-of select="$primary.editor"/> + <xsl:value-of select="$primary.sep"/> + </xsl:when> + <xsl:when test="name($person.list[position()=$count])='corpauthor'"> + <xsl:call-template name="iso690.endsep"> + <xsl:with-param name="text" select="string($person.list[position()=$count])"/> + <xsl:with-param name="sep" select="$primary.sep"/> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="iso690.endsep"> + <xsl:with-param name="text" select="string($person.list[position()=$count]//firstname[1])"/> + <xsl:with-param name="sep" select="$primary.sep"/> + </xsl:call-template> + </xsl:otherwise> + </xsl:choose> + </xsl:when> + </xsl:choose> + + <xsl:call-template name="iso690.author.list"> + <xsl:with-param name="person.list" select="$person.list"/> + <xsl:with-param name="person.count" select="$person.count"/> + <xsl:with-param name="count" select="$count+1"/> + <xsl:with-param name="many" select="$many"/> + <xsl:with-param name="group"/> + </xsl:call-template> + </xsl:when> + + <xsl:otherwise> + <xsl:choose> + <xsl:when test="($biblioentry.primary.count>=3) and ($person.count>=3)"> + <xsl:call-template name="iso690.author.list"> + <xsl:with-param name="person.list" select="$person.list[1]|$person.list[2]|$person.list[3]"/> + <xsl:with-param name="person.count" select="3"/> + <xsl:with-param name="count" select="1"/> + <xsl:with-param name="many" select="1"/> + <xsl:with-param name="group"/> + </xsl:call-template> + </xsl:when> + <xsl:when test="($biblioentry.primary.count>1) and ($person.count>1)"> + <xsl:call-template name="iso690.author.list"> + <xsl:with-param name="person.list" select="$person.list[1]|$person.list[2]"/> + <xsl:with-param name="person.count" select="2"/> + <xsl:with-param name="count" select="1"/> + <xsl:with-param name="many" select="1"/> + <xsl:with-param name="group"/> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="iso690.author.list"> + <xsl:with-param name="person.list" select="$person.list[1]"/> + <xsl:with-param name="person.count" select="1"/> + <xsl:with-param name="count" select="1"/> + <xsl:with-param name="many" select="1"/> + <xsl:with-param name="group"/> + </xsl:call-template> + </xsl:otherwise> + </xsl:choose> + </xsl:otherwise> + </xsl:choose> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template name="iso690.author"> + <xsl:param name="node" select="."/> + <xsl:param name="lastfirst.sep"> + <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'lastfirst.sep'"/></xsl:call-template> + </xsl:param> + <xsl:choose> + <xsl:when test="name($node)!='corpauthor'"> + <span style="text-transform:uppercase"> + <xsl:apply-templates mode="iso690.mode" select="$node//surname[1]"/> + </span> + <xsl:if test="$node//surname and $node//firstname"> + <xsl:value-of select="$lastfirst.sep"/> + </xsl:if> + <xsl:apply-templates mode="iso690.mode" select="$node//firstname[1]"/> + </xsl:when> + <xsl:otherwise> + <span style="text-transform:uppercase"> + <xsl:apply-templates mode="iso690.mode" select="$node"/> + </span> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template match="corpauthor|firstname|surname" mode="iso690.mode"> + <xsl:apply-templates mode="iso690.mode"/> +</xsl:template> + +<!-- Title and Type of medium --> +<xsl:template name="iso690.title"> + <xsl:param name="medium" select="./bibliomisc[@role='medium']"/> + <xsl:param name="italic" select="1"/> + <xsl:param name="sep"> + <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'title.sep'"/></xsl:call-template> + </xsl:param> + + <xsl:apply-templates mode="iso690.mode" select="./title"> + <xsl:with-param name="medium" select="$medium"/> + <xsl:with-param name="italic" select="$italic"/> + <xsl:with-param name="sep" select="$sep"/> + </xsl:apply-templates> +</xsl:template> + +<xsl:template match="title" mode="iso690.mode"> + <xsl:param name="medium"/> + <xsl:param name="italic" select="1"/> + <xsl:param name="sep"> + <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'title.sep'"/></xsl:call-template> + </xsl:param> + <xsl:param name="medium1"> + <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'medium1'"/></xsl:call-template> + </xsl:param> + <xsl:param name="medium2"> + <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'medium2'"/></xsl:call-template> + </xsl:param> + <xsl:choose> + <xsl:when test="$italic=1"> + <xsl:call-template name="iso690.italic.title"/> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="iso690.make.title"/> + </xsl:otherwise> + </xsl:choose> + <xsl:if test="$medium"> + <xsl:value-of select="$medium1"/> + <xsl:apply-templates mode="iso690.mode" select="$medium"/> + <xsl:value-of select="$medium2"/> + </xsl:if> + <xsl:call-template name="iso690.endsep"> + <xsl:with-param name="text" select="concat(string(.),string(../subtitle))"/> + <xsl:with-param name="sep" select="$sep"/> + </xsl:call-template> +</xsl:template> + +<xsl:template name="iso690.italic.title"> + <i> + <xsl:call-template name="iso690.make.title"/> + </i> +</xsl:template> + +<xsl:template name="iso690.make.title"> + <xsl:param name="submaintitle.sep"> + <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'submaintitle.sep'"/></xsl:call-template> + </xsl:param> + <xsl:apply-templates mode="iso690.mode"/> + <xsl:if test="../subtitle"> + <xsl:value-of select="$submaintitle.sep"/> + <xsl:apply-templates mode="iso690.mode" select="../subtitle"/> + </xsl:if> +</xsl:template> + +<xsl:template match="subtitle" mode="iso690.mode"> + <xsl:apply-templates mode="iso690.mode"/> +</xsl:template> + +<xsl:template match="bibliomisc[@role='medium']" mode="iso690.mode"> + <xsl:apply-templates mode="iso690.mode"/> +</xsl:template> + +<!-- Subordinate responsibility --> +<xsl:template name="iso690.secondary"> + <xsl:param name="secondary.sep"> + <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'secondary.sep'"/></xsl:call-template> + </xsl:param> + <xsl:param name="secondary.person.sep"> + <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'secondary.person.sep'"/></xsl:call-template> + </xsl:param> + <xsl:for-each select="./bibliomisc[@role='secondary']"> + <xsl:apply-templates mode="iso690.mode" select="."/> + <xsl:choose> + <xsl:when test="position()=count(../bibliomisc[@role='secondary'])"> + <xsl:call-template name="iso690.endsep"> + <xsl:with-param name="text" select="string(.)"/> + <xsl:with-param name="sep" select="$secondary.sep"/> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="$secondary.person.sep"/> + </xsl:otherwise> + </xsl:choose> + </xsl:for-each> +</xsl:template> + +<xsl:template match="bibliomisc[@role='secondary']" mode="iso690.mode"> + <xsl:apply-templates mode="iso690.mode"/> +</xsl:template> + +<!-- Edition --> +<xsl:template name="iso690.edition"> + <xsl:param name="after"/> + <xsl:param name="edition.serial.sep"> + <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'edition.serial.sep'"/></xsl:call-template> + </xsl:param> + <xsl:choose> + <xsl:when test="string($after)!=''"> + <xsl:apply-templates mode="iso690.mode" select="./edition"> + <xsl:with-param name="sep" select="$edition.serial.sep"/> + </xsl:apply-templates> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates mode="iso690.mode" select="./edition"/> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template match="edition" mode="iso690.mode"> + <xsl:param name="sep"> + <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'edition.sep'"/></xsl:call-template> + </xsl:param> + <xsl:apply-templates mode="iso690.mode"/> + <xsl:call-template name="iso690.endsep"> + <xsl:with-param name="text" select="string(.)"/> + <xsl:with-param name="sep" select="$sep"/> + </xsl:call-template> +</xsl:template> + +<!-- Issue designation (date and/or num) --> +<xsl:template name="iso690.issuing"> + <xsl:param name="issuing.div"> + <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'issuing.div'"/></xsl:call-template> + </xsl:param> + <xsl:param name="issuing.range"> + <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'issuing.range'"/></xsl:call-template> + </xsl:param> + <xsl:param name="issuing.sep"> + <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'issuing.sep'"/></xsl:call-template> + </xsl:param> + <xsl:choose> + <xsl:when test="./pubdate[@role='issuing'] and ./volumenum[2] and ./issuenum[2]"> + <xsl:call-template name="iso690.issuedate"/> + <xsl:apply-templates mode="iso690.mode" select="./volumenum[1]"> + <xsl:with-param name="sep" select="$issuing.div"/> + </xsl:apply-templates> + <xsl:apply-templates mode="iso690.mode" select="./issuenum[1]"> + <xsl:with-param name="sep" select="$issuing.range"/> + </xsl:apply-templates> + <xsl:apply-templates mode="iso690.mode" select="./volumenum[2]"> + <xsl:with-param name="sep" select="$issuing.div"/> + </xsl:apply-templates> + <xsl:apply-templates mode="iso690.mode" select="./issuenum[2]"> + <xsl:with-param name="sep" select="$issuing.sep"/> + </xsl:apply-templates> + </xsl:when> + <xsl:when test="./pubdate[@role='issuing'] and ./volumenum[2]"> + <xsl:call-template name="iso690.issuedate"/> + <xsl:apply-templates mode="iso690.mode" select="./volumenum[1]"> + <xsl:with-param name="sep" select="$issuing.range"/> + </xsl:apply-templates> + <xsl:apply-templates mode="iso690.mode" select="./volumenum[2]"> + <xsl:with-param name="sep" select="$issuing.sep"/> + </xsl:apply-templates> + </xsl:when> + <xsl:when test="./pubdate[@role='issuing'] and ./volumenum and ./issuenum"> + <xsl:apply-templates mode="iso690.mode" select="./pubdate[@role='issuing']"> + <xsl:with-param name="sep" select="$issuing.div"/> + </xsl:apply-templates> + <xsl:apply-templates mode="iso690.mode" select="./volumenum"> + <xsl:with-param name="sep" select="$issuing.div"/> + </xsl:apply-templates> + <xsl:apply-templates mode="iso690.mode" select="./issuenum"> + <xsl:with-param name="sep" select="$issuing.sep"/> + </xsl:apply-templates> + </xsl:when> + <xsl:when test="./pubdate[@role='issuing']"> + <xsl:apply-templates mode="iso690.mode" select="./pubdate[@role='issuing']"> + <xsl:with-param name="sep" select="$issuing.sep"/> + </xsl:apply-templates> + </xsl:when> + <xsl:when test="./volumenum"> + <xsl:apply-templates mode="iso690.mode" select="./volumenum"> + <xsl:with-param name="sep" select="$issuing.sep"/> + </xsl:apply-templates> + </xsl:when> + <xsl:when test="./issuenum"> + <xsl:apply-templates mode="iso690.mode" select="./issuenum"> + <xsl:with-param name="sep" select="$issuing.sep"/> + </xsl:apply-templates> + </xsl:when> + </xsl:choose> +</xsl:template> + +<xsl:template name="iso690.issuedate"> + <xsl:param name="issuing.div"> + <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'issuing.div'"/></xsl:call-template> + </xsl:param> + <xsl:param name="issuing.range"> + <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'issuing.range'"/></xsl:call-template> + </xsl:param> + <xsl:param name="issuing.sep"> + <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'issuing.sep'"/></xsl:call-template> + </xsl:param> + <xsl:choose> + <xsl:when test="./pubdate[@role='issuing'][2]"> + <xsl:apply-templates mode="iso690.mode" select="./pubdate[@role='issuing'][1]"> + <xsl:with-param name="sep" select="$issuing.range"/> + </xsl:apply-templates> + <xsl:apply-templates mode="iso690.mode" select="./pubdate[@role='issuing'][2]"> + <xsl:with-param name="sep" select="$issuing.div"/> + </xsl:apply-templates> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates mode="iso690.mode" select="./pubdate[@role='issuing']"> + <xsl:with-param name="sep" select="$issuing.div"/> + </xsl:apply-templates> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template match="pubdate[@role='issuing']" mode="iso690.mode"> + <xsl:param name="sep"/> + <xsl:variable name="substr" select="substring(string(.),string-length(string(.)))"/> + <xsl:apply-templates mode="iso690.mode"/> + <xsl:call-template name="iso690.space"> + <xsl:with-param name="text" select="$substr"/> + </xsl:call-template> + <xsl:choose> + <xsl:when test="$substr='-'"> + <xsl:call-template name="iso690.endsep"> + <xsl:with-param name="text" select="' '"/> + <xsl:with-param name="sep" select="$sep"/> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="iso690.endsep"> + <xsl:with-param name="text" select="string(.)"/> + <xsl:with-param name="sep" select="$sep"/> + </xsl:call-template> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<!-- Numeration of the part --> +<xsl:template name="iso690.partnr"> + <xsl:param name="partnr.sep"> + <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'partnr.sep'"/></xsl:call-template> + </xsl:param> + <xsl:apply-templates mode="iso690.mode" select="./volumenum"> + <xsl:with-param name="sep" select="$partnr.sep"/> + </xsl:apply-templates> +</xsl:template> + +<!-- Place of publication, Publisher, Year/Date of publication, Date of update/revision, Date of citation --> +<xsl:template name="iso690.pub"> + <xsl:param name="onlydate" select="0"/> + <xsl:param name="placesep"> + <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'placepubl.sep'"/></xsl:call-template> + </xsl:param> + <xsl:param name="pubsep"> + <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'publyear.sep'"/></xsl:call-template> + </xsl:param> + <xsl:param name="endsep"> + <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'pubinfo.sep'"/></xsl:call-template> + </xsl:param> + <xsl:choose> + <xsl:when test="(./publisher/publishername|./publishername|./publisher/address/city)and($onlydate=0)and(./pubdate[not(@role='issuing')]|./copyright/year|./date[@role='upd']|./date[@role='upd'])"> + <xsl:apply-templates mode="iso690.mode" select="./publisher/address/city"> + <xsl:with-param name="sep" select="$placesep"/> + </xsl:apply-templates> + <xsl:apply-templates mode="iso690.mode" select="./publisher/publishername|./publishername"> + <xsl:with-param name="sep" select="$pubsep"/> + </xsl:apply-templates> + <xsl:apply-templates mode="iso690.mode" select="./pubdate[not(@role='issuing')]|./copyright/year"> + <xsl:with-param name="sep" select="$endsep"/> + </xsl:apply-templates> + <xsl:if test="not(./pubdate[not(@role='issuing')]|./copyright/year)"> + <xsl:call-template name="iso690.data"> + <xsl:with-param name="sep" select="$endsep"/> + </xsl:call-template> + </xsl:if> + </xsl:when> + <xsl:when test="(./publisher/publishername|./publishername)and(./publisher/address/city)and($onlydate=0)"> + <xsl:apply-templates mode="iso690.mode" select="./publisher/address/city"> + <xsl:with-param name="sep" select="$placesep"/> + </xsl:apply-templates> + <xsl:apply-templates mode="iso690.mode" select="./publisher/publishername|./publishername"> + <xsl:with-param name="sep" select="$endsep"/> + </xsl:apply-templates> + </xsl:when> + <xsl:when test="($onlydate=1)or(./pubdate[not(@role='issuing')]|./copyright/year)"> + <xsl:apply-templates mode="iso690.mode" select="./pubdate[not(@role='issuing')]|./copyright/year"> + <xsl:with-param name="sep" select="$endsep"/> + </xsl:apply-templates> + <xsl:if test="$onlydate=1"> + <xsl:call-template name="iso690.location"> + <xsl:with-param name="onlypages" select="1"/> + </xsl:call-template> + </xsl:if> + </xsl:when> + <xsl:when test="not(./pubdate[not(@role='issuing')]|./copyright/year)"> + <xsl:call-template name="iso690.data"> + <xsl:with-param name="sep" select="$endsep"/> + </xsl:call-template> + </xsl:when> + </xsl:choose> +</xsl:template> + +<xsl:template name="iso690.paper.pub"> + <xsl:param name="spec.pubinfo.sep"> + <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'spec.pubinfo.sep'"/></xsl:call-template> + </xsl:param> + <xsl:choose> + <xsl:when test="./volumnum|./issuenum|./pagenums"> + <xsl:call-template name="iso690.pub"> + <xsl:with-param name="endsep" select="$spec.pubinfo.sep"/> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="iso690.pub"/> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template name="iso690.data"> + <xsl:param name="sep"/> + <xsl:param name="datecit2"> + <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'datecit2'"/></xsl:call-template> + </xsl:param> + <xsl:apply-templates mode="iso690.mode" select="./date[@role='upd']"> + <xsl:with-param name="sep"/> + </xsl:apply-templates> + <xsl:apply-templates mode="iso690.mode" select="./date[@role='cit']"/> + <xsl:choose> + <xsl:when test="./date[@role='cit']"> + <xsl:call-template name="iso690.endsep"> + <xsl:with-param name="text" select="$datecit2"/> + <xsl:with-param name="sep" select="$sep"/> + </xsl:call-template> + </xsl:when> + <xsl:when test="./date[@role='upd']"> + <xsl:call-template name="iso690.endsep"> + <xsl:with-param name="text" select="string(./date[@role='upd'])"/> + <xsl:with-param name="sep" select="$sep"/> + </xsl:call-template> + </xsl:when> + </xsl:choose> +</xsl:template> + +<xsl:template match="publisher/address/city|publishername" mode="iso690.mode"> + <xsl:param name="sep"/> + <xsl:param name="upd" select="0"/> + <xsl:apply-templates mode="iso690.mode"/> + <xsl:call-template name="iso690.endsep"> + <xsl:with-param name="text" select="string(.)"/> + <xsl:with-param name="sep" select="$sep"/> + </xsl:call-template> +</xsl:template> + +<xsl:template match="pubdate|copyright/year" mode="iso690.mode"> + <xsl:param name="sep"/> + <xsl:param name="upd" select="1"/> + <xsl:param name="datecit2"> + <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'datecit2'"/></xsl:call-template> + </xsl:param> + <xsl:variable name="substr" select="substring(string(.),string-length(string(.)))"/> + <xsl:if test="name(.)!='pubdate'"> + <xsl:value-of select="'©'"/><!-- copyright --> + </xsl:if> + <xsl:apply-templates mode="iso690.mode"/> + <xsl:call-template name="iso690.space"> + <xsl:with-param name="text" select="$substr"/> + </xsl:call-template> + <xsl:if test="$upd!=0"> + <xsl:choose> + <xsl:when test="name(.)='pubdate'"> + <xsl:apply-templates mode="iso690.mode" select="../date[@role='upd']"/> + <xsl:apply-templates mode="iso690.mode" select="../date[@role='cit']"/> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates mode="iso690.mode" select="../../date[@role='upd']"/> + <xsl:apply-templates mode="iso690.mode" select="../../date[@role='cit']"/> + </xsl:otherwise> + </xsl:choose> + </xsl:if> + <xsl:choose> + <xsl:when test="../date[@role='cit']|../../date[@role='cit'] and $upd!=0"> + <xsl:call-template name="iso690.endsep"> + <xsl:with-param name="text" select="$datecit2"/> + <xsl:with-param name="sep" select="$sep"/> + </xsl:call-template> + </xsl:when> + <xsl:when test="../date[@role='upd']|../../date[@role='upd'] and $upd!=0"> + <xsl:call-template name="iso690.endsep"> + <xsl:with-param name="text" select="string(../date[@role='upd'])"/> + <xsl:with-param name="sep" select="$sep"/> + </xsl:call-template> + </xsl:when> + <xsl:when test="$substr='-'"> + <xsl:call-template name="iso690.endsep"> + <xsl:with-param name="text" select="' '"/> + <xsl:with-param name="sep" select="$sep"/> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="iso690.endsep"> + <xsl:with-param name="text" select="string(.)"/> + <xsl:with-param name="sep" select="$sep"/> + </xsl:call-template> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template name="iso690.space"> + <xsl:param name="text" select="substring(string(.),string-length(string(.)))"/> + <xsl:if test="$text='-'"> + <xsl:value-of select="' '"/> + </xsl:if> +</xsl:template> + +<!-- Date of update/revision --> +<xsl:template match="date[@role='upd']" mode="iso690.mode"> + <xsl:param name="sep"> + <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'upd.sep'"/></xsl:call-template> + </xsl:param> + <xsl:value-of select="$sep"/> + <xsl:apply-templates mode="iso690.mode"/> +</xsl:template> + +<!-- Date of citation --> +<xsl:template match="date[@role='cit']" mode="iso690.mode"> + <xsl:param name="datecit1"> + <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'datecit1'"/></xsl:call-template> + </xsl:param> + <xsl:param name="datecit2"> + <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'datecit2'"/></xsl:call-template> + </xsl:param> + <xsl:value-of select="$datecit1"/> + <xsl:apply-templates mode="iso690.mode"/> + <xsl:value-of select="$datecit2"/> +</xsl:template> + +<!-- Extent --> +<xsl:template name="iso690.extent"> + <xsl:param name="extent.sep"> + <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'extent.sep'"/></xsl:call-template> + </xsl:param> + <xsl:apply-templates mode="iso690.mode" select="./pagenums"> + <xsl:with-param name="sep" select="$extent.sep"/> + </xsl:apply-templates> +</xsl:template> + +<!-- Location within host --> +<xsl:template name="iso690.part.location"> + <xsl:param name="location.sep"> + <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'location.sep'"/></xsl:call-template> + </xsl:param> + <xsl:choose> + <xsl:when test="./pagenums"> + <xsl:apply-templates mode="iso690.mode" select="./bibliomisc[@role='secnum']"/> + <xsl:apply-templates mode="iso690.mode" select="./bibliomisc[@role='sectitle']"/> + <xsl:apply-templates mode="iso690.mode" select="./pagenums"/> + </xsl:when> + <xsl:when test="./bibliomisc[@role='sectitle']"> + <xsl:apply-templates mode="iso690.mode" select="./bibliomisc[@role='secnum']"/> + <xsl:apply-templates mode="iso690.mode" select="./bibliomisc[@role='sectitle']"> + <xsl:with-param name="sep" select="$location.sep"/> + </xsl:apply-templates> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates mode="iso690.mode" select="./bibliomisc[@role='secnum']"> + <xsl:with-param name="sep" select="$location.sep"/> + </xsl:apply-templates> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template name="iso690.article.location"> + <xsl:param name="location.sep"> + <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'location.sep'"/></xsl:call-template> + </xsl:param> + <xsl:param name="locs.sep"> + <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'locs.sep'"/></xsl:call-template> + </xsl:param> + <xsl:choose> + <xsl:when test="not(./date[@role='upd']|./date[@role='cit'])"> + <xsl:choose> + <xsl:when test="./volumenum|./issuenum|./pagenums"> + <xsl:apply-templates mode="iso690.mode" select="./pubdate[not(@role='issuing')]"> + <xsl:with-param name="upd" select="0"/> + <xsl:with-param name="sep" select="$locs.sep"/> + </xsl:apply-templates> + <xsl:call-template name="iso690.location"/> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates mode="iso690.mode" select="./pubdate[not(@role='issuing')]"> + <xsl:with-param name="sep" select="$location.sep"/> + </xsl:apply-templates> + </xsl:otherwise> + </xsl:choose> + </xsl:when> + <xsl:otherwise> + <xsl:choose> + <xsl:when test="./volumenum|./issuenum|./pagenums"> + <xsl:apply-templates mode="iso690.mode" select="./pubdate[not(@role='issuing')]"> + <xsl:with-param name="upd" select="0"/> + <xsl:with-param name="sep" select="$locs.sep"/> + </xsl:apply-templates> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates mode="iso690.mode" select="./pubdate[not(@role='issuing')]"> + <xsl:with-param name="upd" select="0"/> + <xsl:with-param name="sep" select="$location.sep"/> + </xsl:apply-templates> + </xsl:otherwise> + </xsl:choose> + <xsl:choose> + <xsl:when test="./issuenum"> + <xsl:apply-templates mode="iso690.mode" select="./volumenum"/> + <xsl:apply-templates mode="iso690.mode" select="./issuenum"> + <xsl:with-param name="sep"/> + </xsl:apply-templates> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates mode="iso690.mode" select="./volumenum"> + <xsl:with-param name="sep"/> + </xsl:apply-templates> + </xsl:otherwise> + </xsl:choose> + <xsl:choose> + <xsl:when test="./pagenums"> + <xsl:call-template name="iso690.data"> + <xsl:with-param name="sep" select="$locs.sep"/> + </xsl:call-template> + <xsl:apply-templates mode="iso690.mode" select="./pagenums"/> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="iso690.data"> + <xsl:with-param name="sep" select="$location.sep"/> + </xsl:call-template> + </xsl:otherwise> + </xsl:choose> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template name="iso690.location"> + <xsl:param name="location.sep"> + <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'location.sep'"/></xsl:call-template> + </xsl:param> + <xsl:choose> + <xsl:when test="./volumenum and not(./issuenum) and not(./pagenums)"> + <xsl:apply-templates mode="iso690.mode" select="./volumenum"> + <xsl:with-param name="sep" select="$location.sep"/> + </xsl:apply-templates> + </xsl:when> + <xsl:when test="./issuenum and not(./pagenums)"> + <xsl:apply-templates mode="iso690.mode" select="./volumenum"/> + <xsl:apply-templates mode="iso690.mode" select="./issuenum"> + <xsl:with-param name="sep" select="$location.sep"/> + </xsl:apply-templates> + </xsl:when> + <xsl:when test="./pagenums"> + <xsl:apply-templates mode="iso690.mode" select="./volumenum"/> + <xsl:apply-templates mode="iso690.mode" select="./issuenum"/> + <xsl:apply-templates mode="iso690.mode" select="./pagenums"/> + </xsl:when> + </xsl:choose> +</xsl:template> + +<xsl:template match="bibliomisc[@role='secnum']|bibliomisc[@role='sectitle']" mode="iso690.mode"> + <xsl:param name="sep"> + <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'locs.sep'"/></xsl:call-template> + </xsl:param> + <xsl:apply-templates mode="iso690.mode"/> + <xsl:call-template name="iso690.endsep"> + <xsl:with-param name="text" select="string(.)"/> + <xsl:with-param name="sep" select="$sep"/> + </xsl:call-template> +</xsl:template> + +<xsl:template match="volumenum|issuenum" mode="iso690.mode"> + <xsl:param name="sep"> + <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'locs.sep'"/></xsl:call-template> + </xsl:param> + <xsl:apply-templates mode="iso690.mode"/> + <xsl:call-template name="iso690.endsep"> + <xsl:with-param name="text" select="string(.)"/> + <xsl:with-param name="sep" select="$sep"/> + </xsl:call-template> +</xsl:template> + +<xsl:template match="pagenums" mode="iso690.mode"> + <xsl:param name="sep"> + <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'location.sep'"/></xsl:call-template> + </xsl:param> + <xsl:apply-templates mode="iso690.mode"/> + <xsl:call-template name="iso690.endsep"> + <xsl:with-param name="text" select="string(.)"/> + <xsl:with-param name="sep" select="$sep"/> + </xsl:call-template> +</xsl:template> + +<!-- Series --> +<xsl:template name="iso690.serie"> + <xsl:apply-templates mode="iso690.mode" select=".//bibliomisc[@role='serie']"/> +</xsl:template> + +<!-- Notes --> +<xsl:template name="iso690.notice"> + <xsl:apply-templates mode="iso690.mode" select=".//bibliomisc[not(@role)]"/> +</xsl:template> + +<xsl:template match="bibliomisc[not(@role)]|bibliomisc[@role='serie']" mode="iso690.mode"> + <xsl:param name="notice.sep"> + <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'notice.sep'"/></xsl:call-template> + </xsl:param> + <xsl:apply-templates mode="iso690.mode"/> + <xsl:call-template name="iso690.endsep"> + <xsl:with-param name="text" select="string(.)"/> + <xsl:with-param name="sep" select="$notice.sep"/> + </xsl:call-template> +</xsl:template> + +<!-- Avaibility and access --> +<xsl:template name="iso690.access"> + <xsl:for-each select="./biblioid[@class='uri']|./bibliomisc[@role='access']"> + <xsl:choose> + <xsl:when test="position()=1"> + <xsl:apply-templates mode="iso690.mode" select="."/> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates mode="iso690.mode" select="."> + <xsl:with-param name="firstacc" select="0"/> + </xsl:apply-templates> + </xsl:otherwise> + </xsl:choose> + </xsl:for-each> +</xsl:template> + +<xsl:template match="biblioid[@class='uri']/ulink|bibliomisc[@role='access']/ulink" mode="iso690.mode"> + <xsl:param name="link1"> + <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'link1'"/></xsl:call-template> + </xsl:param> + <xsl:param name="link2"> + <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'link2'"/></xsl:call-template> + </xsl:param> + <xsl:value-of select="$link1"/> + <xsl:call-template name="ulink"/> + <xsl:value-of select="$link2"/> +</xsl:template> + +<xsl:template match="biblioid[@class='uri']|bibliomisc[@role='access']" mode="iso690.mode"> + <xsl:param name="firstacc" select="1"/> + <xsl:param name="access"> + <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'access'"/></xsl:call-template> + </xsl:param> + <xsl:param name="acctoo"> + <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'acctoo'"/></xsl:call-template> + </xsl:param> + <xsl:param name="onwww"> + <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'onwww'"/></xsl:call-template> + </xsl:param> + <xsl:param name="oninet"> + <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'oninet'"/></xsl:call-template> + </xsl:param> + <xsl:param name="access.end"> + <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'access.end'"/></xsl:call-template> + </xsl:param> + <xsl:param name="access.sep"> + <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'access.sep'"/></xsl:call-template> + </xsl:param> + <xsl:choose> + <xsl:when test="$firstacc=1"> + <xsl:value-of select="$access"/> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="$acctoo"/> + </xsl:otherwise> + </xsl:choose> + <xsl:choose> + <xsl:when test="(./ulink)and(string(./ulink)=string(.))"> + <xsl:choose> + <xsl:when test="(starts-with(./ulink/@url,'http://')or(starts-with(./ulink/@url,'https://')))"> + <xsl:value-of select="$onwww"/> + <xsl:value-of select="$access.end"/> + <xsl:apply-templates mode="iso690.mode" select="./ulink"/> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="$oninet"/> + <xsl:value-of select="$access.end"/> + <xsl:apply-templates mode="iso690.mode" select="./ulink"/> + </xsl:otherwise> + </xsl:choose> + </xsl:when> + <xsl:when test="(./ulink)and(string(./ulink)!=string(.))"> + <xsl:value-of select="text()[1]"/> + <xsl:call-template name="iso690.endsep"> + <xsl:with-param name="text" select="text()[1]"/> + <xsl:with-param name="sep" select="$access.end"/> + </xsl:call-template> + <xsl:apply-templates mode="iso690.mode" select="./ulink"/> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates mode="iso690.mode"/> + </xsl:otherwise> + </xsl:choose> + <xsl:value-of select="$access.sep"/> +</xsl:template> + +<!-- Standard number - ISBN --> +<xsl:template name="iso690.isbn"> + <xsl:choose> + <xsl:when test="./biblioid/@class='isbn'"> + <xsl:apply-templates mode="iso690.mode" select="./biblioid[@class='isbn']"/> + </xsl:when> + <xsl:when test="./isbn"> + <xsl:apply-templates mode="iso690.mode" select="./isbn"/> + </xsl:when> + </xsl:choose> +</xsl:template> + +<xsl:template match="isbn|biblioid[@class='isbn']" mode="iso690.mode"> + <xsl:param name="isbn"> + <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'isbn'"/></xsl:call-template> + </xsl:param> + <xsl:param name="stdnum.sep"> + <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'stdnum.sep'"/></xsl:call-template> + </xsl:param> + <xsl:value-of select="$isbn"/> + <xsl:apply-templates mode="iso690.mode"/> + <xsl:value-of select="$stdnum.sep"/> +</xsl:template> + +<!-- Standard number - ISSN --> +<xsl:template name="iso690.issn"> + <xsl:choose> + <xsl:when test="./biblioid/@class='issn'"> + <xsl:apply-templates mode="iso690.mode" select="./biblioid[@class='issn']"/> + </xsl:when> + <xsl:when test="./issn"> + <xsl:apply-templates mode="iso690.mode" select="./issn"/> + </xsl:when> + </xsl:choose> +</xsl:template> + +<xsl:template match="issn|biblioid[@class='issn']" mode="iso690.mode"> + <xsl:param name="issn"> + <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'issn'"/></xsl:call-template> + </xsl:param> + <xsl:param name="stdnum.sep"> + <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'stdnum.sep'"/></xsl:call-template> + </xsl:param> + <xsl:value-of select="$issn"/> + <xsl:apply-templates mode="iso690.mode"/> + <xsl:value-of select="$stdnum.sep"/> +</xsl:template> + +<!-- Identification of patent document --> +<xsl:template name="iso690.pat.ident"> + <xsl:param name="patdate.sep"> + <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'patdate.sep'"/></xsl:call-template> + </xsl:param> + <xsl:apply-templates mode="iso690.mode" select="./address/country"/> + <xsl:apply-templates mode="iso690.mode" select="./bibliomisc[@role='patenttype']"/> + <xsl:choose> + <xsl:when test="./biblioid[@class='other' and @otherclass='patentnum']"> + <xsl:apply-templates mode="iso690.mode" select="./biblioid[@class='other' and @otherclass='patentnum']"/> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates mode="iso690.mode" select="./bibliomisc[@role='patentnum']"/> + </xsl:otherwise> + </xsl:choose> + <xsl:apply-templates mode="iso690.mode" select="./pubdate[not(@role='issuing')]"> + <xsl:with-param name="sep" select="$patdate.sep"/> + </xsl:apply-templates> +</xsl:template> + +<!-- Country or issuing office --> +<xsl:template match="address/country" mode="iso690.mode"> + <xsl:param name="patcountry.sep"> + <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'patcountry.sep'"/></xsl:call-template> + </xsl:param> + <i> + <xsl:apply-templates mode="iso690.mode"/> + </i> + <xsl:value-of select="$patcountry.sep"/> +</xsl:template> + +<!-- Kind of patent document --> +<xsl:template match="bibliomisc[@role='patenttype']" mode="iso690.mode"> + <xsl:param name="pattype.sep"> + <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'pattype.sep'"/></xsl:call-template> + </xsl:param> + <i> + <xsl:apply-templates mode="iso690.mode"/> + </i> + <xsl:value-of select="$pattype.sep"/> +</xsl:template> + +<!-- Number --> +<xsl:template match="biblioid[@class='other' and @otherclass='patentnum']|bibliomisc[@role='patentnum']" mode="iso690.mode"> + <xsl:param name="patnum.sep"> + <xsl:call-template name="gentext.template"><xsl:with-param name="context" select="'iso690'"/><xsl:with-param name="name" select="'patnum.sep'"/></xsl:call-template> + </xsl:param> + <xsl:apply-templates mode="iso690.mode"/> + <xsl:value-of select="$patnum.sep"/> +</xsl:template> + +<!-- ==================================================================== --> +<!-- Supplementary templates --> + +<xsl:template name="iso690.endsep"> + <xsl:param name="text"/> + <xsl:param name="sep" select=". "/> + <xsl:choose> + <xsl:when test="substring($text,string-length($text))!=substring($sep,1,1)"> + <xsl:value-of select="$sep"/> + </xsl:when> + <xsl:when test="substring($text,string-length($text))=' '"> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="' '"/> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<!-- ==================================================================== --> + +<xsl:template match="*" mode="iso690.mode"> + <xsl:apply-templates select="."/><!-- try the default mode --> +</xsl:template> + +<!-- ==================================================================== --> + +</xsl:stylesheet> diff --git a/docbook-xsl-1.76.1/html/biblio.xsl b/docbook-xsl-1.76.1/html/biblio.xsl new file mode 100644 index 0000000..f145bb9 --- /dev/null +++ b/docbook-xsl-1.76.1/html/biblio.xsl @@ -0,0 +1,1253 @@ +<?xml version='1.0'?> +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + version='1.0'> + +<!-- ******************************************************************** + $Id: biblio.xsl 8421 2009-05-04 07:49:49Z bobstayton $ + ******************************************************************** + + This file is part of the XSL DocBook Stylesheet distribution. + See ../README or http://docbook.sf.net/release/xsl/current/ for + copyright and other information. + + ******************************************************************** --> + +<!-- ==================================================================== --> + +<xsl:template match="bibliography"> + <xsl:call-template name="id.warning"/> + + <div> + <xsl:call-template name="common.html.attributes"> + <xsl:with-param name="inherit" select="1"/> + </xsl:call-template> + <xsl:if test="$generate.id.attributes != 0"> + <xsl:attribute name="id"> + <xsl:call-template name="object.id"/> + </xsl:attribute> + </xsl:if> + + <xsl:call-template name="bibliography.titlepage"/> + + <xsl:apply-templates/> + + <xsl:if test="not(parent::article)"> + <xsl:call-template name="process.footnotes"/> + </xsl:if> + </div> +</xsl:template> + +<xsl:template match="bibliography/bibliographyinfo"></xsl:template> +<xsl:template match="bibliography/info"></xsl:template> +<xsl:template match="bibliography/title"></xsl:template> +<xsl:template match="bibliography/subtitle"></xsl:template> +<xsl:template match="bibliography/titleabbrev"></xsl:template> + +<!-- ==================================================================== --> + +<xsl:template match="bibliodiv"> + <xsl:call-template name="id.warning"/> + + <div> + <xsl:call-template name="common.html.attributes"> + <xsl:with-param name="inherit" select="0"/> + </xsl:call-template> + <xsl:apply-templates/> + </div> +</xsl:template> + +<xsl:template match="bibliodiv/title"> + <h3> + <xsl:call-template name="common.html.attributes"/> + <xsl:call-template name="anchor"> + <xsl:with-param name="node" select=".."/> + <xsl:with-param name="conditional" select="0"/> + </xsl:call-template> + <xsl:apply-templates/> + </h3> +</xsl:template> + +<!-- ==================================================================== --> + +<xsl:template match="bibliolist"> + <div> + <xsl:call-template name="common.html.attributes"> + <xsl:with-param name="inherit" select="0"/> + </xsl:call-template> + <xsl:call-template name="anchor"/> + <xsl:if test="blockinfo/title|info/title|title"> + <xsl:call-template name="formal.object.heading"/> + </xsl:if> + <xsl:apply-templates select="*[not(self::blockinfo) + and not(self::info) + and not(self::title) + and not(self::titleabbrev) + and not(self::biblioentry) + and not(self::bibliomixed)]"/> + <xsl:apply-templates select="biblioentry|bibliomixed"/> + </div> +</xsl:template> + +<!-- ==================================================================== --> + +<xsl:template match="biblioentry"> + <xsl:param name="label"> + <xsl:call-template name="biblioentry.label"/> + </xsl:param> + + <xsl:variable name="id"> + <xsl:call-template name="object.id"/> + </xsl:variable> + + <xsl:choose> + <xsl:when test="string(.) = ''"> + <xsl:variable name="bib" select="document($bibliography.collection,.)"/> + <xsl:variable name="entry" select="$bib/bibliography// + *[@id=$id or @xml:id=$id][1]"/> + <xsl:choose> + <xsl:when test="$entry"> + <xsl:choose> + <xsl:when test="$bibliography.numbered != 0"> + <xsl:apply-templates select="$entry"> + <xsl:with-param name="label" select="$label"/> + </xsl:apply-templates> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates select="$entry"/> + </xsl:otherwise> + </xsl:choose> + </xsl:when> + <xsl:otherwise> + <xsl:message> + <xsl:text>No bibliography entry: </xsl:text> + <xsl:value-of select="$id"/> + <xsl:text> found in </xsl:text> + <xsl:value-of select="$bibliography.collection"/> + </xsl:message> + <div> + <xsl:call-template name="common.html.attributes"/> + <xsl:call-template name="anchor"/> + <p> + <xsl:copy-of select="$label"/> + <xsl:text>Error: no bibliography entry: </xsl:text> + <xsl:value-of select="$id"/> + <xsl:text> found in </xsl:text> + <xsl:value-of select="$bibliography.collection"/> + </p> + </div> + </xsl:otherwise> + </xsl:choose> + </xsl:when> + <xsl:otherwise> + <div> + <xsl:call-template name="common.html.attributes"/> + <xsl:call-template name="anchor"> + <xsl:with-param name="conditional" select="0"/> + </xsl:call-template> + <p> + <xsl:copy-of select="$label"/> + <xsl:choose> + <xsl:when test="$bibliography.style = 'iso690'"> + <xsl:call-template name="iso690.makecitation"/> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates mode="bibliography.mode"/> + </xsl:otherwise> + </xsl:choose> + </p> + </div> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template match="bibliomixed"> + <xsl:param name="label"> + <xsl:call-template name="biblioentry.label"/> + </xsl:param> + + <xsl:variable name="id"> + <xsl:call-template name="object.id"/> + </xsl:variable> + + <xsl:choose> + <xsl:when test="string(.) = ''"> + <xsl:variable name="bib" select="document($bibliography.collection,.)"/> + <xsl:variable name="entry" select="$bib/bibliography// + *[@id=$id or @xml:id=$id][1]"/> + <xsl:choose> + <xsl:when test="$entry"> + <xsl:choose> + <xsl:when test="$bibliography.numbered != 0"> + <xsl:apply-templates select="$entry"> + <xsl:with-param name="label" select="$label"/> + </xsl:apply-templates> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates select="$entry"/> + </xsl:otherwise> + </xsl:choose> + </xsl:when> + <xsl:otherwise> + <xsl:message> + <xsl:text>No bibliography entry: </xsl:text> + <xsl:value-of select="$id"/> + <xsl:text> found in </xsl:text> + <xsl:value-of select="$bibliography.collection"/> + </xsl:message> + <div> + <xsl:call-template name="common.html.attributes"/> + <xsl:call-template name="anchor"/> + <p> + <xsl:copy-of select="$label"/> + <xsl:text>Error: no bibliography entry: </xsl:text> + <xsl:value-of select="$id"/> + <xsl:text> found in </xsl:text> + <xsl:value-of select="$bibliography.collection"/> + </p> + </div> + </xsl:otherwise> + </xsl:choose> + </xsl:when> + <xsl:otherwise> + <div> + <xsl:call-template name="common.html.attributes"/> + <xsl:call-template name="anchor"> + <xsl:with-param name="conditional" select="0"/> + </xsl:call-template> + <p> + <xsl:call-template name="common.html.attributes"/> + <xsl:copy-of select="$label"/> + <xsl:apply-templates mode="bibliomixed.mode"/> + </p> + </div> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template name="biblioentry.label"> + <xsl:param name="node" select="."/> + + <xsl:choose> + <xsl:when test="$bibliography.numbered != 0"> + <xsl:text>[</xsl:text> + <xsl:number from="bibliography" count="biblioentry|bibliomixed" + level="any" format="1"/> + <xsl:text>] </xsl:text> + </xsl:when> + <xsl:when test="local-name($node/child::*[1]) = 'abbrev'"> + <xsl:text>[</xsl:text> + <xsl:apply-templates select="$node/abbrev[1]"/> + <xsl:text>] </xsl:text> + </xsl:when> + <xsl:when test="$node/@xreflabel"> + <xsl:text>[</xsl:text> + <xsl:value-of select="$node/@xreflabel"/> + <xsl:text>] </xsl:text> + </xsl:when> + <xsl:when test="$node/@id"> + <xsl:text>[</xsl:text> + <xsl:value-of select="$node/@id"/> + <xsl:text>] </xsl:text> + </xsl:when> + <xsl:when test="$node/@xml:id"> + <xsl:text>[</xsl:text> + <xsl:value-of select="$node/@xml:id"/> + <xsl:text>] </xsl:text> + </xsl:when> + <xsl:otherwise><!-- nop --></xsl:otherwise> + </xsl:choose> +</xsl:template> + +<!-- ==================================================================== --> + +<xsl:template match="*" mode="bibliography.mode"> + <xsl:apply-templates select="."/><!-- try the default mode --> +</xsl:template> + +<xsl:template match="abbrev" mode="bibliography.mode"> + <xsl:if test="preceding-sibling::*"> + <xsl:apply-templates mode="bibliography.mode"/> + </xsl:if> +</xsl:template> + +<xsl:template match="abstract" mode="bibliography.mode"> + <!-- suppressed --> +</xsl:template> + +<xsl:template match="address" mode="bibliography.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliography.mode"/> + <xsl:copy-of select="$biblioentry.item.separator"/> + </span> +</xsl:template> + +<xsl:template match="affiliation" mode="bibliography.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliography.mode"/> + <xsl:copy-of select="$biblioentry.item.separator"/> + </span> +</xsl:template> + +<xsl:template match="shortaffil" mode="bibliography.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliography.mode"/> + <xsl:copy-of select="$biblioentry.item.separator"/> + </span> +</xsl:template> + +<xsl:template match="jobtitle" mode="bibliography.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliography.mode"/> + <xsl:copy-of select="$biblioentry.item.separator"/> + </span> +</xsl:template> + +<xsl:template match="artheader|articleinfo|info" mode="bibliography.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliography.mode"/> + <xsl:copy-of select="$biblioentry.item.separator"/> + </span> +</xsl:template> + +<xsl:template match="artpagenums" mode="bibliography.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliography.mode"/> + <xsl:copy-of select="$biblioentry.item.separator"/> + </span> +</xsl:template> + +<xsl:template match="author" mode="bibliography.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:call-template name="person.name"/> + <xsl:copy-of select="$biblioentry.item.separator"/> + </span> +</xsl:template> + +<xsl:template match="authorblurb|personblurb" mode="bibliography.mode"> + <!-- suppressed --> +</xsl:template> + +<xsl:template match="authorgroup" mode="bibliography.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:call-template name="person.name.list"/> + <xsl:copy-of select="$biblioentry.item.separator"/> + </span> +</xsl:template> + +<xsl:template match="authorinitials" mode="bibliography.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliography.mode"/> + <xsl:copy-of select="$biblioentry.item.separator"/> + </span> +</xsl:template> + +<xsl:template match="bibliomisc" mode="bibliography.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliography.mode"/> + <xsl:copy-of select="$biblioentry.item.separator"/> + </span> +</xsl:template> + +<xsl:template match="bibliomset" mode="bibliography.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliography.mode"/> + <xsl:copy-of select="$biblioentry.item.separator"/> + </span> +</xsl:template> + +<!-- ================================================== --> + +<xsl:template match="biblioset" mode="bibliography.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliography.mode"/> + </span> +</xsl:template> + +<xsl:template match="biblioset/title|biblioset/citetitle" + mode="bibliography.mode"> + <xsl:variable name="relation" select="../@relation"/> + <xsl:choose> + <xsl:when test="$relation='article' or @pubwork='article'"> + <xsl:call-template name="gentext.startquote"/> + <xsl:apply-templates/> + <xsl:call-template name="gentext.endquote"/> + </xsl:when> + <xsl:otherwise> + <i><xsl:apply-templates/></i> + </xsl:otherwise> + </xsl:choose> + <xsl:copy-of select="$biblioentry.item.separator"/> +</xsl:template> + +<!-- ================================================== --> + +<xsl:template match="bookbiblio" mode="bibliography.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliography.mode"/> + <xsl:copy-of select="$biblioentry.item.separator"/> + </span> +</xsl:template> + +<xsl:template match="citetitle" mode="bibliography.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:choose> + <xsl:when test="@pubwork = 'article'"> + <xsl:call-template name="gentext.startquote"/> + <xsl:call-template name="inline.charseq"/> + <xsl:call-template name="gentext.endquote"/> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="inline.italicseq"/> + </xsl:otherwise> + </xsl:choose> + <xsl:copy-of select="$biblioentry.item.separator"/> + </span> +</xsl:template> + +<xsl:template match="collab" mode="bibliography.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliography.mode"/> + <xsl:copy-of select="$biblioentry.item.separator"/> + </span> +</xsl:template> + +<xsl:template match="collabname" mode="bibliography.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliography.mode"/> + <xsl:copy-of select="$biblioentry.item.separator"/> + </span> +</xsl:template> + +<xsl:template match="confgroup" mode="bibliography.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliography.mode"/> + <xsl:copy-of select="$biblioentry.item.separator"/> + </span> +</xsl:template> + +<xsl:template match="confdates" mode="bibliography.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliography.mode"/> + <xsl:copy-of select="$biblioentry.item.separator"/> + </span> +</xsl:template> + +<xsl:template match="conftitle" mode="bibliography.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliography.mode"/> + <xsl:copy-of select="$biblioentry.item.separator"/> + </span> +</xsl:template> + +<xsl:template match="confnum" mode="bibliography.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliography.mode"/> + <xsl:copy-of select="$biblioentry.item.separator"/> + </span> +</xsl:template> + +<xsl:template match="confsponsor" mode="bibliography.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliography.mode"/> + <xsl:copy-of select="$biblioentry.item.separator"/> + </span> +</xsl:template> + +<xsl:template match="contractnum" mode="bibliography.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliography.mode"/> + <xsl:copy-of select="$biblioentry.item.separator"/> + </span> +</xsl:template> + +<xsl:template match="contractsponsor" mode="bibliography.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliography.mode"/> + <xsl:copy-of select="$biblioentry.item.separator"/> + </span> +</xsl:template> + +<xsl:template match="contrib" mode="bibliography.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliography.mode"/> + <xsl:copy-of select="$biblioentry.item.separator"/> + </span> +</xsl:template> + +<!-- ================================================== --> + +<xsl:template match="copyright" mode="bibliography.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:call-template name="gentext"> + <xsl:with-param name="key" select="'Copyright'"/> + </xsl:call-template> + <xsl:call-template name="gentext.space"/> + <xsl:call-template name="dingbat"> + <xsl:with-param name="dingbat">copyright</xsl:with-param> + </xsl:call-template> + <xsl:call-template name="gentext.space"/> + <xsl:apply-templates select="year" mode="bibliography.mode"/> + <xsl:if test="holder"> + <xsl:call-template name="gentext.space"/> + <xsl:apply-templates select="holder" mode="bibliography.mode"/> + </xsl:if> + <xsl:copy-of select="$biblioentry.item.separator"/> + </span> +</xsl:template> + +<xsl:template match="year" mode="bibliography.mode"> + <xsl:apply-templates/><xsl:text>, </xsl:text> +</xsl:template> + +<xsl:template match="year[position()=last()]" mode="bibliography.mode"> + <xsl:apply-templates/> +</xsl:template> + +<xsl:template match="holder" mode="bibliography.mode"> + <xsl:apply-templates/> +</xsl:template> + +<!-- ================================================== --> + +<xsl:template match="corpauthor" mode="bibliography.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliography.mode"/> + <xsl:copy-of select="$biblioentry.item.separator"/> + </span> +</xsl:template> + +<xsl:template match="corpcredit" mode="bibliography.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliography.mode"/> + <xsl:copy-of select="$biblioentry.item.separator"/> + </span> +</xsl:template> + +<xsl:template match="corpname" mode="bibliography.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliography.mode"/> + <xsl:copy-of select="$biblioentry.item.separator"/> + </span> +</xsl:template> + +<xsl:template match="date" mode="bibliography.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliography.mode"/> + <xsl:copy-of select="$biblioentry.item.separator"/> + </span> +</xsl:template> + +<xsl:template match="edition" mode="bibliography.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliography.mode"/> + <xsl:copy-of select="$biblioentry.item.separator"/> + </span> +</xsl:template> + +<xsl:template match="editor" mode="bibliography.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:call-template name="person.name"/> + <xsl:copy-of select="$biblioentry.item.separator"/> + </span> +</xsl:template> + +<xsl:template match="firstname" mode="bibliography.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliography.mode"/> + <xsl:copy-of select="$biblioentry.item.separator"/> + </span> +</xsl:template> + +<xsl:template match="honorific" mode="bibliography.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliography.mode"/> + <xsl:copy-of select="$biblioentry.item.separator"/> + </span> +</xsl:template> + +<xsl:template match="indexterm" mode="bibliography.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliography.mode"/> + <xsl:copy-of select="$biblioentry.item.separator"/> + </span> +</xsl:template> + +<xsl:template match="invpartnumber" mode="bibliography.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliography.mode"/> + <xsl:copy-of select="$biblioentry.item.separator"/> + </span> +</xsl:template> + +<xsl:template match="isbn" mode="bibliography.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliography.mode"/> + <xsl:copy-of select="$biblioentry.item.separator"/> + </span> +</xsl:template> + +<xsl:template match="issn" mode="bibliography.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliography.mode"/> + <xsl:copy-of select="$biblioentry.item.separator"/> + </span> +</xsl:template> + +<xsl:template match="issuenum" mode="bibliography.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliography.mode"/> + <xsl:copy-of select="$biblioentry.item.separator"/> + </span> +</xsl:template> + +<xsl:template match="lineage" mode="bibliography.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliography.mode"/> + <xsl:copy-of select="$biblioentry.item.separator"/> + </span> +</xsl:template> + +<xsl:template match="orgname" mode="bibliography.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliography.mode"/> + <xsl:copy-of select="$biblioentry.item.separator"/> + </span> +</xsl:template> + +<xsl:template match="orgdiv" mode="bibliography.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliography.mode"/> + <xsl:copy-of select="$biblioentry.item.separator"/> + </span> +</xsl:template> + +<xsl:template match="othercredit" mode="bibliography.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliography.mode"/> + <xsl:copy-of select="$biblioentry.item.separator"/> + </span> +</xsl:template> + +<xsl:template match="othername" mode="bibliography.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliography.mode"/> + <xsl:copy-of select="$biblioentry.item.separator"/> + </span> +</xsl:template> + +<xsl:template match="pagenums" mode="bibliography.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliography.mode"/> + <xsl:copy-of select="$biblioentry.item.separator"/> + </span> +</xsl:template> + +<xsl:template match="printhistory" mode="bibliography.mode"> + <!-- suppressed --> +</xsl:template> + +<xsl:template match="productname" mode="bibliography.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliography.mode"/> + <xsl:copy-of select="$biblioentry.item.separator"/> + </span> +</xsl:template> + +<xsl:template match="productnumber" mode="bibliography.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliography.mode"/> + <xsl:copy-of select="$biblioentry.item.separator"/> + </span> +</xsl:template> + +<xsl:template match="pubdate" mode="bibliography.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliography.mode"/> + <xsl:copy-of select="$biblioentry.item.separator"/> + </span> +</xsl:template> + +<xsl:template match="publisher" mode="bibliography.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliography.mode"/> + </span> +</xsl:template> + +<xsl:template match="publishername" mode="bibliography.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliography.mode"/> + <xsl:copy-of select="$biblioentry.item.separator"/> + </span> +</xsl:template> + +<xsl:template match="pubsnumber" mode="bibliography.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliography.mode"/> + <xsl:copy-of select="$biblioentry.item.separator"/> + </span> +</xsl:template> + +<xsl:template match="releaseinfo" mode="bibliography.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliography.mode"/> + <xsl:copy-of select="$biblioentry.item.separator"/> + </span> +</xsl:template> + +<xsl:template match="revhistory" mode="bibliography.mode"> + <!-- suppressed; how could this be represented? --> +</xsl:template> + +<xsl:template match="seriesinfo" mode="bibliography.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliography.mode"/> + </span> +</xsl:template> + +<xsl:template match="seriesvolnums" mode="bibliography.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliography.mode"/> + <xsl:copy-of select="$biblioentry.item.separator"/> + </span> +</xsl:template> + +<xsl:template match="subtitle" mode="bibliography.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliography.mode"/> + <xsl:copy-of select="$biblioentry.item.separator"/> + </span> +</xsl:template> + +<xsl:template match="surname" mode="bibliography.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliography.mode"/> + <xsl:copy-of select="$biblioentry.item.separator"/> + </span> +</xsl:template> + +<xsl:template match="title" mode="bibliography.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <i><xsl:apply-templates mode="bibliography.mode"/></i> + <xsl:copy-of select="$biblioentry.item.separator"/> + </span> +</xsl:template> + +<xsl:template match="titleabbrev" mode="bibliography.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliography.mode"/> + <xsl:copy-of select="$biblioentry.item.separator"/> + </span> +</xsl:template> + +<xsl:template match="volumenum" mode="bibliography.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliography.mode"/> + <xsl:copy-of select="$biblioentry.item.separator"/> + </span> +</xsl:template> + +<xsl:template match="bibliocoverage|biblioid|bibliorelation|bibliosource" + mode="bibliography.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliography.mode"/> + <xsl:copy-of select="$biblioentry.item.separator"/> + </span> +</xsl:template> + +<!-- See FR #1934434 and http://doi.org --> +<xsl:template match="biblioid[@class='doi']" + mode="bibliography.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <a href="{concat('http://dx.doi.org/', .)}">doi:<xsl:value-of select="."/></a> + </span> +</xsl:template> + +<!-- ==================================================================== --> + +<xsl:template match="*" mode="bibliomixed.mode"> + <xsl:apply-templates select="."/><!-- try the default mode --> +</xsl:template> + +<xsl:template match="abbrev" mode="bibliomixed.mode"> + <xsl:if test="preceding-sibling::*"> + <xsl:apply-templates mode="bibliomixed.mode"/> + </xsl:if> +</xsl:template> + +<xsl:template match="abstract" mode="bibliomixed.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliomixed.mode"/> + </span> +</xsl:template> + +<xsl:template match="address" mode="bibliomixed.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliomixed.mode"/> + </span> +</xsl:template> + +<xsl:template match="affiliation" mode="bibliomixed.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliomixed.mode"/> + </span> +</xsl:template> + +<xsl:template match="shortaffil" mode="bibliomixed.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliomixed.mode"/> + </span> +</xsl:template> + +<xsl:template match="jobtitle" mode="bibliomixed.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliomixed.mode"/> + </span> +</xsl:template> + +<xsl:template match="artpagenums" mode="bibliomixed.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliomixed.mode"/> + </span> +</xsl:template> + +<xsl:template match="author" mode="bibliomixed.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliomixed.mode"/> + </span> +</xsl:template> + +<xsl:template match="authorblurb|personblurb" mode="bibliomixed.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliomixed.mode"/> + </span> +</xsl:template> + +<xsl:template match="authorgroup" mode="bibliomixed.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliomixed.mode"/> + </span> +</xsl:template> + +<xsl:template match="authorinitials" mode="bibliomixed.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliomixed.mode"/> + </span> +</xsl:template> + +<xsl:template match="bibliomisc" mode="bibliomixed.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliomixed.mode"/> + </span> +</xsl:template> + +<!-- ================================================== --> + +<xsl:template match="bibliomset" mode="bibliomixed.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliomixed.mode"/> + </span> +</xsl:template> + +<xsl:template match="bibliomset/title|bibliomset/citetitle" + mode="bibliomixed.mode"> + <xsl:variable name="relation" select="../@relation"/> + <xsl:choose> + <xsl:when test="$relation='article' or @pubwork='article'"> + <xsl:call-template name="gentext.startquote"/> + <xsl:apply-templates/> + <xsl:call-template name="gentext.endquote"/> + </xsl:when> + <xsl:otherwise> + <i><xsl:apply-templates/></i> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<!-- ================================================== --> + +<xsl:template match="biblioset" mode="bibliomixed.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliomixed.mode"/> + </span> +</xsl:template> + +<xsl:template match="citetitle" mode="bibliomixed.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:choose> + <xsl:when test="@pubwork = 'article'"> + <xsl:call-template name="gentext.startquote"/> + <xsl:call-template name="inline.charseq"/> + <xsl:call-template name="gentext.endquote"/> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="inline.italicseq"/> + </xsl:otherwise> + </xsl:choose> + </span> +</xsl:template> + + +<xsl:template match="collab" mode="bibliomixed.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliomixed.mode"/> + </span> +</xsl:template> + +<xsl:template match="confgroup" mode="bibliomixed.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliomixed.mode"/> + </span> +</xsl:template> + +<xsl:template match="contractnum" mode="bibliomixed.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliomixed.mode"/> + </span> +</xsl:template> + +<xsl:template match="contractsponsor" mode="bibliomixed.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliomixed.mode"/> + </span> +</xsl:template> + +<xsl:template match="contrib" mode="bibliomixed.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliomixed.mode"/> + </span> +</xsl:template> + +<xsl:template match="copyright" mode="bibliomixed.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliomixed.mode"/> + </span> +</xsl:template> + +<xsl:template match="corpauthor" mode="bibliomixed.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliomixed.mode"/> + </span> +</xsl:template> + +<xsl:template match="corpcredit" mode="bibliomixed.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliomixed.mode"/> + </span> +</xsl:template> + +<xsl:template match="corpname" mode="bibliomixed.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliomixed.mode"/> + </span> +</xsl:template> + +<xsl:template match="date" mode="bibliomixed.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliomixed.mode"/> + </span> +</xsl:template> + +<xsl:template match="edition" mode="bibliomixed.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliomixed.mode"/> + </span> +</xsl:template> + +<xsl:template match="editor" mode="bibliomixed.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliomixed.mode"/> + </span> +</xsl:template> + +<xsl:template match="firstname" mode="bibliomixed.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliomixed.mode"/> + </span> +</xsl:template> + +<xsl:template match="honorific" mode="bibliomixed.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliomixed.mode"/> + </span> +</xsl:template> + +<xsl:template match="indexterm" mode="bibliomixed.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliomixed.mode"/> + </span> +</xsl:template> + +<xsl:template match="invpartnumber" mode="bibliomixed.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliomixed.mode"/> + </span> +</xsl:template> + +<xsl:template match="isbn" mode="bibliomixed.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliomixed.mode"/> + </span> +</xsl:template> + +<xsl:template match="issn" mode="bibliomixed.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliomixed.mode"/> + </span> +</xsl:template> + +<xsl:template match="issuenum" mode="bibliomixed.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliomixed.mode"/> + </span> +</xsl:template> + +<xsl:template match="lineage" mode="bibliomixed.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliomixed.mode"/> + </span> +</xsl:template> + +<xsl:template match="orgname" mode="bibliomixed.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliomixed.mode"/> + </span> +</xsl:template> + +<xsl:template match="othercredit" mode="bibliomixed.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliomixed.mode"/> + </span> +</xsl:template> + +<xsl:template match="othername" mode="bibliomixed.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliomixed.mode"/> + </span> +</xsl:template> + +<xsl:template match="pagenums" mode="bibliomixed.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliomixed.mode"/> + </span> +</xsl:template> + +<xsl:template match="printhistory" mode="bibliomixed.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliomixed.mode"/> + </span> +</xsl:template> + +<xsl:template match="productname" mode="bibliomixed.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliomixed.mode"/> + </span> +</xsl:template> + +<xsl:template match="productnumber" mode="bibliomixed.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliomixed.mode"/> + </span> +</xsl:template> + +<xsl:template match="pubdate" mode="bibliomixed.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliomixed.mode"/> + </span> +</xsl:template> + +<xsl:template match="publisher" mode="bibliomixed.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliomixed.mode"/> + </span> +</xsl:template> + +<xsl:template match="publishername" mode="bibliomixed.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliomixed.mode"/> + </span> +</xsl:template> + +<xsl:template match="pubsnumber" mode="bibliomixed.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliomixed.mode"/> + </span> +</xsl:template> + +<xsl:template match="releaseinfo" mode="bibliomixed.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliomixed.mode"/> + </span> +</xsl:template> + +<xsl:template match="revhistory" mode="bibliomixed.mode"> + <!-- suppressed; how could this be represented? --> +</xsl:template> + +<xsl:template match="seriesvolnums" mode="bibliomixed.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliomixed.mode"/> + </span> +</xsl:template> + +<xsl:template match="subtitle" mode="bibliomixed.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliomixed.mode"/> + </span> +</xsl:template> + +<xsl:template match="surname" mode="bibliomixed.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliomixed.mode"/> + </span> +</xsl:template> + +<xsl:template match="title" mode="bibliomixed.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliomixed.mode"/> + </span> +</xsl:template> + +<xsl:template match="titleabbrev" mode="bibliomixed.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliomixed.mode"/> + </span> +</xsl:template> + +<xsl:template match="volumenum" mode="bibliomixed.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliomixed.mode"/> + </span> +</xsl:template> + +<xsl:template match="bibliocoverage|biblioid|bibliorelation|bibliosource" + mode="bibliomixed.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates mode="bibliomixed.mode"/> + </span> +</xsl:template> + +<!-- See FR #1934434 and http://doi.org --> +<xsl:template match="biblioid[@class='doi']" + mode="bibliomixed.mode"> + <span> + <xsl:call-template name="common.html.attributes"/> + <a href="{concat('http://dx.doi.org/', .)}">doi:<xsl:value-of select="."/></a> + </span> +</xsl:template> + +<!-- ==================================================================== --> + +</xsl:stylesheet> diff --git a/docbook-xsl-1.76.1/html/block.xsl b/docbook-xsl-1.76.1/html/block.xsl new file mode 100644 index 0000000..c76beaf --- /dev/null +++ b/docbook-xsl-1.76.1/html/block.xsl @@ -0,0 +1,538 @@ +<?xml version='1.0'?> +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + version='1.0'> + +<!-- ******************************************************************** + $Id: block.xsl 8831 2010-08-13 17:08:49Z mzjn $ + ******************************************************************** + + This file is part of the XSL DocBook Stylesheet distribution. + See ../README or http://docbook.sf.net/release/xsl/current/ for + copyright and other information. + + ******************************************************************** --> + +<!-- ==================================================================== --> +<!-- What should we do about styling blockinfo? --> + +<xsl:template match="blockinfo|info"> + <!-- suppress --> +</xsl:template> + +<!-- ==================================================================== --> + +<xsl:template name="block.object"> + <div> + <xsl:call-template name="common.html.attributes"/> + <xsl:call-template name="anchor"/> + <xsl:apply-templates/> + </div> +</xsl:template> + +<!-- ==================================================================== --> + +<xsl:template match="para"> + <xsl:call-template name="paragraph"> + <xsl:with-param name="class"> + <xsl:if test="@role and $para.propagates.style != 0"> + <xsl:value-of select="@role"/> + </xsl:if> + </xsl:with-param> + <xsl:with-param name="content"> + <xsl:if test="position() = 1 and parent::listitem"> + <xsl:call-template name="anchor"> + <xsl:with-param name="node" select="parent::listitem"/> + </xsl:call-template> + </xsl:if> + + <xsl:call-template name="anchor"/> + <xsl:apply-templates/> + </xsl:with-param> + </xsl:call-template> +</xsl:template> + +<xsl:template name="paragraph"> + <xsl:param name="class" select="''"/> + <xsl:param name="content"/> + + <xsl:variable name="p"> + <p> + <xsl:choose> + <xsl:when test="$class != ''"> + <xsl:call-template name="common.html.attributes"> + <xsl:with-param name="class" select="$class"/> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="locale.html.attributes"/> + </xsl:otherwise> + </xsl:choose> + <xsl:copy-of select="$content"/> + </p> + </xsl:variable> + + <xsl:choose> + <xsl:when test="$html.cleanup != 0"> + <xsl:call-template name="unwrap.p"> + <xsl:with-param name="p" select="$p"/> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:copy-of select="$p"/> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template match="simpara"> + <!-- see also listitem/simpara in lists.xsl --> + <p> + <xsl:call-template name="locale.html.attributes"/> + <xsl:if test="@role and $para.propagates.style != 0"> + <xsl:apply-templates select="." mode="class.attribute"> + <xsl:with-param name="class" select="@role"/> + </xsl:apply-templates> + </xsl:if> + + <xsl:call-template name="anchor"/> + <xsl:apply-templates/> + </p> +</xsl:template> + +<xsl:template match="formalpara"> + <xsl:call-template name="paragraph"> + <xsl:with-param name="class"> + <xsl:if test="@role and $para.propagates.style != 0"> + <xsl:value-of select="@role"/> + </xsl:if> + </xsl:with-param> + <xsl:with-param name="content"> + <xsl:call-template name="anchor"/> + <xsl:apply-templates/> + </xsl:with-param> + </xsl:call-template> +</xsl:template> + +<!-- Only use title from info --> +<xsl:template match="formalpara/info"> + <xsl:apply-templates select="title"/> +</xsl:template> + +<xsl:template match="formalpara/title|formalpara/info/title"> + <xsl:variable name="titleStr"> + <xsl:apply-templates/> + </xsl:variable> + <xsl:variable name="lastChar"> + <xsl:if test="$titleStr != ''"> + <xsl:value-of select="substring($titleStr,string-length($titleStr),1)"/> + </xsl:if> + </xsl:variable> + + <xsl:choose> + <xsl:when test="$make.clean.html != 0"> + <span class="formalpara-title"> + <xsl:copy-of select="$titleStr"/> + <xsl:if test="$lastChar != '' + and not(contains($runinhead.title.end.punct, $lastChar))"> + <xsl:value-of select="$runinhead.default.title.end.punct"/> + </xsl:if> + <xsl:text> </xsl:text> + </span> + </xsl:when> + <xsl:otherwise> + <b> + <xsl:copy-of select="$titleStr"/> + <xsl:if test="$lastChar != '' + and not(contains($runinhead.title.end.punct, $lastChar))"> + <xsl:value-of select="$runinhead.default.title.end.punct"/> + </xsl:if> + <xsl:text> </xsl:text> + </b> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template match="formalpara/para"> + <xsl:apply-templates/> +</xsl:template> + +<!-- ==================================================================== --> + +<xsl:template match="blockquote"> + <div> + <xsl:call-template name="common.html.attributes"/> + <xsl:call-template name="anchor"/> + + <xsl:choose> + <xsl:when test="attribution"> + <table border="0" width="100%" + cellspacing="0" cellpadding="0" class="blockquote" + summary="Block quote"> + <tr> + <td width="10%" valign="top"> </td> + <td width="80%" valign="top"> + <xsl:apply-templates select="child::*[local-name(.)!='attribution']"/> + </td> + <td width="10%" valign="top"> </td> + </tr> + <tr> + <td width="10%" valign="top"> </td> + <td colspan="2" align="{$direction.align.end}" valign="top"> + <xsl:text>--</xsl:text> + <xsl:apply-templates select="attribution"/> + </td> + </tr> + </table> + </xsl:when> + <xsl:otherwise> + <blockquote> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates/> + </blockquote> + </xsl:otherwise> + </xsl:choose> + </div> +</xsl:template> + +<xsl:template match="blockquote/title|blockquote/info/title"> + <xsl:choose> + <xsl:when test="$make.clean.html != 0"> + <div class="blockquote-title"> + <xsl:apply-templates/> + </div> + </xsl:when> + <xsl:otherwise> + <div class="blockquote-title"> + <p> + <b> + <xsl:apply-templates/> + </b> + </p> + </div> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<!-- Use an em dash per Chicago Manual of Style and https://sourceforge.net/tracker/index.php?func=detail&aid=2793878&group_id=21935&atid=373747 --> +<xsl:template match="epigraph"> + <div> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates select="para|simpara|formalpara|literallayout"/> + <xsl:if test="attribution"> + <div class="attribution"> + <span>—<xsl:apply-templates select="attribution"/></span> + </div> + </xsl:if> + </div> +</xsl:template> + +<xsl:template match="attribution"> + <span> + <xsl:call-template name="common.html.attributes"/> + <xsl:apply-templates/> + </span> +</xsl:template> + +<!-- ==================================================================== --> + +<xsl:template match="abstract|sidebar"> + <div> + <xsl:call-template name="common.html.attributes"/> + <xsl:call-template name="anchor"/> + <xsl:call-template name="sidebar.titlepage"/> + <xsl:apply-templates/> + </div> +</xsl:template> + +<xsl:template match="abstract/title|sidebar/title"> +</xsl:template> + +<xsl:template match="sidebar/sidebarinfo|sidebar/info"/> + +<!-- ==================================================================== --> + +<xsl:template match="msgset"> + <xsl:apply-templates/> +</xsl:template> + +<xsl:template match="msgentry"> + <xsl:call-template name="block.object"/> +</xsl:template> + +<xsl:template match="simplemsgentry"> + <xsl:call-template name="block.object"/> +</xsl:template> + +<xsl:template match="msg"> + <xsl:call-template name="block.object"/> +</xsl:template> + +<xsl:template match="msgmain"> + <xsl:apply-templates/> +</xsl:template> + +<xsl:template match="msgmain/title"> + <xsl:choose> + <xsl:when test="$make.clean.html != 0"> + <span class="msgmain-title"> + <xsl:apply-templates/> + </span> + </xsl:when> + <xsl:otherwise> + <b><xsl:apply-templates/></b> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template match="msgsub"> + <xsl:apply-templates/> +</xsl:template> + +<xsl:template match="msgsub/title"> + <xsl:choose> + <xsl:when test="$make.clean.html != 0"> + <span class="msgsub-title"> + <xsl:apply-templates/> + </span> + </xsl:when> + <xsl:otherwise> + <b><xsl:apply-templates/></b> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template match="msgrel"> + <xsl:apply-templates/> +</xsl:template> + +<xsl:template match="msgrel/title"> + <xsl:choose> + <xsl:when test="$make.clean.html != 0"> + <span class="msgrel-title"> + <xsl:apply-templates/> + </span> + </xsl:when> + <xsl:otherwise> + <b><xsl:apply-templates/></b> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template match="msgtext"> + <xsl:apply-templates/> +</xsl:template> + +<xsl:template match="msginfo"> + <xsl:call-template name="block.object"/> +</xsl:template> + +<xsl:template match="msglevel"> + <xsl:choose> + <xsl:when test="$make.clean.html != 0"> + <div class="msglevel"> + <span class="msglevel-title"> + <xsl:call-template name="gentext.template"> + <xsl:with-param name="context" select="'msgset'"/> + <xsl:with-param name="name" select="'MsgLevel'"/> + </xsl:call-template> + </span> + <xsl:apply-templates/> + </div> + </xsl:when> + <xsl:otherwise> + <p> + <b> + <xsl:call-template name="gentext.template"> + <xsl:with-param name="context" select="'msgset'"/> + <xsl:with-param name="name" select="'MsgLevel'"/> + </xsl:call-template> + </b> + <xsl:apply-templates/> + </p> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template match="msgorig"> + <xsl:choose> + <xsl:when test="$make.clean.html != 0"> + <div class="msgorig"> + <span class="msgorig-title"> + <xsl:call-template name="gentext.template"> + <xsl:with-param name="context" select="'msgset'"/> + <xsl:with-param name="name" select="'MsgOrig'"/> + </xsl:call-template> + </span> + <xsl:apply-templates/> + </div> + </xsl:when> + <xsl:otherwise> + <p> + <b> + <xsl:call-template name="gentext.template"> + <xsl:with-param name="context" select="'msgset'"/> + <xsl:with-param name="name" select="'MsgOrig'"/> + </xsl:call-template> + </b> + <xsl:apply-templates/> + </p> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template match="msgaud"> + <xsl:choose> + <xsl:when test="$make.clean.html != 0"> + <div class="msgaud"> + <span class="msgaud-title"> + <xsl:call-template name="gentext.template"> + <xsl:with-param name="context" select="'msgset'"/> + <xsl:with-param name="name" select="'MsgAud'"/> + </xsl:call-template> + </span> + <xsl:apply-templates/> + </div> + </xsl:when> + <xsl:otherwise> + <p> + <b> + <xsl:call-template name="gentext.template"> + <xsl:with-param name="context" select="'msgset'"/> + <xsl:with-param name="name" select="'MsgAud'"/> + </xsl:call-template> + </b> + <xsl:apply-templates/> + </p> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template match="msgexplan"> + <xsl:call-template name="block.object"/> +</xsl:template> + +<xsl:template match="msgexplan/title"> + <xsl:choose> + <xsl:when test="$make.clean.html != 0"> + <div class="msgexplan"> + <span class="msgexplan-title"> + <xsl:apply-templates/> + </span> + </div> + </xsl:when> + <xsl:otherwise> + <p> + <b> + <xsl:apply-templates/> + </b> + </p> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<!-- ==================================================================== --> + +<xsl:template match="revhistory"> + <div> + <xsl:call-template name="common.html.attributes"/> + <table border="0" width="100%" summary="Revision history"> + <tr> + <th align="{$direction.align.start}" valign="top" colspan="3"> + <b> + <xsl:call-template name="gentext"> + <xsl:with-param name="key" select="'RevHistory'"/> + </xsl:call-template> + </b> + </th> + </tr> + <xsl:apply-templates/> + </table> + </div> +</xsl:template> + +<xsl:template match="revhistory/revision"> + <xsl:variable name="revnumber" select="revnumber"/> + <xsl:variable name="revdate" select="date"/> + <xsl:variable name="revauthor" select="authorinitials|author"/> + <xsl:variable name="revremark" select="revremark|revdescription"/> + <tr> + <td align="{$direction.align.start}"> + <xsl:if test="$revnumber"> + <xsl:call-template name="gentext"> + <xsl:with-param name="key" select="'Revision'"/> + </xsl:call-template> + <xsl:call-template name="gentext.space"/> + <xsl:apply-templates select="$revnumber"/> + </xsl:if> + </td> + <td align="{$direction.align.start}"> + <xsl:apply-templates select="$revdate"/> + </td> + <xsl:choose> + <xsl:when test="count($revauthor)=0"> + <td align="{$direction.align.start}"> + <xsl:call-template name="dingbat"> + <xsl:with-param name="dingbat">nbsp</xsl:with-param> + </xsl:call-template> + </td> + </xsl:when> + <xsl:otherwise> + <td align="{$direction.align.start}"> + <xsl:for-each select="$revauthor"> + <xsl:apply-templates select="."/> + <xsl:if test="position() != last()"> + <xsl:text>, </xsl:text> + </xsl:if> + </xsl:for-each> + </td> + </xsl:otherwise> + </xsl:choose> + </tr> + <xsl:if test="$revremark"> + <tr> + <td align="{$direction.align.start}" colspan="3"> + <xsl:apply-templates select="$revremark"/> + </td> + </tr> + </xsl:if> +</xsl:template> + +<xsl:template match="revision/revnumber"> + <xsl:apply-templates/> +</xsl:template> + +<xsl:template match="revision/date"> + <xsl:apply-templates/> +</xsl:template> + +<xsl:template match="revision/authorinitials"> + <xsl:text>, </xsl:text> + <xsl:apply-templates/> +</xsl:template> + +<xsl:template match="revision/authorinitials[1]" priority="2"> + <xsl:apply-templates/> +</xsl:template> + +<xsl:template match="revision/revremark"> + <xsl:apply-templates/> +</xsl:template> + +<xsl:template match="revision/revdescription"> + <xsl:apply-templates/> +</xsl:template> + +<!-- ==================================================================== --> + +<xsl:template match="ackno|acknowledgements[parent::article]"> + <xsl:call-template name="block.object"/> +</xsl:template> + +<!-- ==================================================================== --> + +<xsl:template match="highlights"> + <xsl:call-template name="block.object"/> +</xsl:template> + +<!-- ==================================================================== --> + +</xsl:stylesheet> diff --git a/docbook-xsl-1.76.1/html/callout.xsl b/docbook-xsl-1.76.1/html/callout.xsl new file mode 100644 index 0000000..88a9bd0 --- /dev/null +++ b/docbook-xsl-1.76.1/html/callout.xsl @@ -0,0 +1,201 @@ +<?xml version='1.0'?> +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + xmlns:sverb="http://nwalsh.com/xslt/ext/com.nwalsh.saxon.Verbatim" + xmlns:xverb="xalan://com.nwalsh.xalan.Verbatim" + xmlns:lxslt="http://xml.apache.org/xslt" + exclude-result-prefixes="sverb xverb lxslt" + version='1.0'> + +<!-- ******************************************************************** + $Id: callout.xsl 8421 2009-05-04 07:49:49Z bobstayton $ + ******************************************************************** + + This file is part of the XSL DocBook Stylesheet distribution. + See ../README or http://docbook.sf.net/release/xsl/current/ for + copyright and other information. + + ******************************************************************** --> + +<lxslt:component prefix="xverb" + functions="insertCallouts"/> + +<xsl:template match="programlistingco|screenco"> + <xsl:variable name="verbatim" select="programlisting|screen"/> + + <xsl:choose> + <xsl:when test="$use.extensions != '0' + and $callouts.extension != '0'"> + <xsl:variable name="rtf"> + <xsl:apply-templates select="$verbatim"> + <xsl:with-param name="suppress-numbers" select="'1'"/> + </xsl:apply-templates> + </xsl:variable> + + <xsl:variable name="rtf-with-callouts"> + <xsl:choose> + <xsl:when test="function-available('sverb:insertCallouts')"> + <xsl:copy-of select="sverb:insertCallouts(areaspec,$rtf)"/> + </xsl:when> + <xsl:when test="function-available('xverb:insertCallouts')"> + <xsl:copy-of select="xverb:insertCallouts(areaspec,$rtf)"/> + </xsl:when> + <xsl:otherwise> + <xsl:message terminate="yes"> + <xsl:text>No insertCallouts function is available.</xsl:text> + </xsl:message> + </xsl:otherwise> + </xsl:choose> + </xsl:variable> + + <xsl:choose> + <xsl:when test="$verbatim/@linenumbering = 'numbered' + and $linenumbering.extension != '0'"> + <div> + <xsl:call-template name="common.html.attributes"/> + <xsl:call-template name="number.rtf.lines"> + <xsl:with-param name="rtf" select="$rtf-with-callouts"/> + <xsl:with-param name="pi.context" + select="programlisting|screen"/> + </xsl:call-template> + <xsl:apply-templates select="calloutlist"/> + </div> + </xsl:when> + <xsl:otherwise> + <div> + <xsl:call-template name="common.html.attributes"/> + <xsl:copy-of select="$rtf-with-callouts"/> + <xsl:apply-templates select="calloutlist"/> + </div> + </xsl:otherwise> + </xsl:choose> + </xsl:when> + <xsl:otherwise> + <div> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:apply-templates/> + </div> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template match="areaspec|areaset|area"> +</xsl:template> + +<xsl:template match="areaset" mode="conumber"> + <xsl:number count="area|areaset" format="1"/> +</xsl:template> + +<xsl:template match="area" mode="conumber"> + <xsl:number count="area|areaset" format="1"/> +</xsl:template> + +<xsl:template match="co" name="co"> + <!-- Support a single linkend in HTML --> + <xsl:variable name="targets" select="key('id', @linkends)"/> + <xsl:variable name="target" select="$targets[1]"/> + <xsl:choose> + <xsl:when test="$target"> + <a> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:if test="@id or @xml:id"> + <xsl:attribute name="name"> + <xsl:value-of select="(@id|@xml:id)[1]"/> + </xsl:attribute> + </xsl:if> + <xsl:attribute name="href"> + <xsl:call-template name="href.target"> + <xsl:with-param name="object" select="$target"/> + </xsl:call-template> + </xsl:attribute> + <xsl:apply-templates select="." mode="callout-bug"/> + </a> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="anchor"/> + <xsl:apply-templates select="." mode="callout-bug"/> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template match="coref"> + <!-- tricky; this relies on the fact that we can process the "co" that's --> + <!-- "over there" as if it were "right here" --> + + <xsl:variable name="co" select="key('id', @linkend)"/> + <xsl:choose> + <xsl:when test="not($co)"> + <xsl:message> + <xsl:text>Error: coref link is broken: </xsl:text> + <xsl:value-of select="@linkend"/> + </xsl:message> + </xsl:when> + <xsl:when test="local-name($co) != 'co'"> + <xsl:message> + <xsl:text>Error: coref doesn't point to a co: </xsl:text> + <xsl:value-of select="@linkend"/> + </xsl:message> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates select="$co"/> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template match="co" mode="callout-bug"> + <xsl:call-template name="callout-bug"> + <xsl:with-param name="conum"> + <xsl:number count="co" + level="any" + from="programlisting|screen|literallayout|synopsis" + format="1"/> + </xsl:with-param> + </xsl:call-template> +</xsl:template> + +<xsl:template name="callout-bug"> + <xsl:param name="conum" select='1'/> + + <xsl:choose> + <xsl:when test="$callout.graphics != 0 + and $conum <= $callout.graphics.number.limit"> + <img src="{$callout.graphics.path}{$conum}{$callout.graphics.extension}" + alt="{$conum}" border="0"/> + </xsl:when> + <xsl:when test="$callout.unicode != 0 + and $conum <= $callout.unicode.number.limit"> + <xsl:choose> + <xsl:when test="$callout.unicode.start.character = 10102"> + <xsl:choose> + <xsl:when test="$conum = 1">❶</xsl:when> + <xsl:when test="$conum = 2">❷</xsl:when> + <xsl:when test="$conum = 3">❸</xsl:when> + <xsl:when test="$conum = 4">❹</xsl:when> + <xsl:when test="$conum = 5">❺</xsl:when> + <xsl:when test="$conum = 6">❻</xsl:when> + <xsl:when test="$conum = 7">❼</xsl:when> + <xsl:when test="$conum = 8">❽</xsl:when> + <xsl:when test="$conum = 9">❾</xsl:when> + <xsl:when test="$conum = 10">❿</xsl:when> + </xsl:choose> + </xsl:when> + <xsl:otherwise> + <xsl:message> + <xsl:text>Don't know how to generate Unicode callouts </xsl:text> + <xsl:text>when $callout.unicode.start.character is </xsl:text> + <xsl:value-of select="$callout.unicode.start.character"/> + </xsl:message> + <xsl:text>(</xsl:text> + <xsl:value-of select="$conum"/> + <xsl:text>)</xsl:text> + </xsl:otherwise> + </xsl:choose> + </xsl:when> + <xsl:otherwise> + <xsl:text>(</xsl:text> + <xsl:value-of select="$conum"/> + <xsl:text>)</xsl:text> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +</xsl:stylesheet> diff --git a/docbook-xsl-1.76.1/html/changebars.xsl b/docbook-xsl-1.76.1/html/changebars.xsl new file mode 100644 index 0000000..dae1cc3 --- /dev/null +++ b/docbook-xsl-1.76.1/html/changebars.xsl @@ -0,0 +1,121 @@ +<?xml version="1.0"?> +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + version="1.0"> + +<!-- ******************************************************************** + $Id: changebars.xsl 8128 2008-09-29 17:16:10Z mzjn $ + ******************************************************************** + + This file is part of the XSL DocBook Stylesheet distribution. + See ../README or http://docbook.sf.net/release/xsl/current/ for + copyright and other information. + + ******************************************************************** --> + +<!-- ==================================================================== --> +<xsl:import href="docbook.xsl"/> + +<xsl:param name="show.revisionflag" select="'1'"/> + +<xsl:template name="system.head.content"> +<xsl:param name="node" select="."/> + +<style type="text/css"> +<xsl:text> +div.added { background-color: #ffff99; + text-decoration: underline; } +div.deleted { text-decoration: line-through; + background-color: #FF7F7F; } +div.changed { background-color: #99ff99; } +div.off { } + +span.added { background-color: #ffff99; + text-decoration: underline; } +span.deleted { text-decoration: line-through; + background-color: #FF7F7F; } +span.changed { background-color: #99ff99; } +span.off { } +</xsl:text> +</style> +</xsl:template> + +<xsl:template match="*[@revisionflag]"> + <xsl:call-template name="block.or.inline.revision"/> +</xsl:template> + +<xsl:template name="block.or.inline.revision"> + <xsl:param name="revisionflag" select="@revisionflag"/> + + <xsl:choose> + <xsl:when test="local-name(.) = 'para' + or local-name(.) = 'formalpara' + or local-name(.) = 'simpara' + or local-name(.) = 'simplesect' + or local-name(.) = 'section' + or local-name(.) = 'sect1' + or local-name(.) = 'sect2' + or local-name(.) = 'sect3' + or local-name(.) = 'sect4' + or local-name(.) = 'sect5' + or local-name(.) = 'chapter' + or local-name(.) = 'preface' + or local-name(.) = 'itemizedlist' + or local-name(.) = 'orderedlist' + or local-name(.) = 'variablelist' + or local-name(.) = 'varlistentry' + or local-name(.) = 'informaltable' + or local-name(.) = 'informalexample' + or local-name(.) = 'note' + or local-name(.) = 'example' + or local-name(.) = 'mediaobject' + or local-name(.) = 'sidebar' + or local-name(.) = 'glossary' + or local-name(.) = 'glossentry' + or local-name(.) = 'bibliography' + or local-name(.) = 'index' + or local-name(.) = 'appendix'"> + <div class='{$revisionflag}'> + <xsl:apply-imports/> + </div> + </xsl:when> + <xsl:when test="local-name(.) = 'phrase' + or local-name(.) = 'ulink' + or local-name(.) = 'link' + or local-name(.) = 'olink' + or local-name(.) = 'inlinemediaobject' + or local-name(.) = 'filename' + or local-name(.) = 'literal' + or local-name(.) = 'member' + or local-name(.) = 'term' + or local-name(.) = 'guilabel' + or local-name(.) = 'glossterm' + or local-name(.) = 'sgmltag' + or local-name(.) = 'tag' + or local-name(.) = 'quote' + or local-name(.) = 'emphasis' + or local-name(.) = 'command' + or local-name(.) = 'xref'"> + <span class='{$revisionflag}'> + <xsl:apply-imports/> + </span> + </xsl:when> + <xsl:when test="local-name(.) = 'listitem' + or local-name(.) = 'entry' + or local-name(.) = 'title'"> + <!-- nop; these are handled directly in the stylesheet --> + <xsl:apply-imports/> + </xsl:when> + <xsl:otherwise> + <xsl:message> + <xsl:text>Revisionflag on unexpected element: </xsl:text> + <xsl:value-of select="local-name(.)"/> + <xsl:text> (Assuming block)</xsl:text> + </xsl:message> + <div class='{$revisionflag}'> + <xsl:apply-imports/> + </div> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +</xsl:stylesheet> diff --git a/docbook-xsl-1.76.1/html/chunk-changebars.xsl b/docbook-xsl-1.76.1/html/chunk-changebars.xsl new file mode 100644 index 0000000..6bfd3c0 --- /dev/null +++ b/docbook-xsl-1.76.1/html/chunk-changebars.xsl @@ -0,0 +1,99 @@ +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + xmlns:exsl="http://exslt.org/common" + xmlns:cf="http://docbook.sourceforge.net/xmlns/chunkfast/1.0" + version="1.0" + exclude-result-prefixes="exsl cf"> + +<!-- ******************************************************************** + $Id: chunk-changebars.xsl 8399 2009-04-08 07:37:42Z bobstayton $ + ******************************************************************** + + This file is part of the XSL DocBook Stylesheet distribution. + See ../README or http://docbook.sf.net/release/xsl/current/ for + copyright and other information. + + ******************************************************************** --> + +<!-- ==================================================================== --> + +<!-- This file is a variant of chunk.xsl, to be used for generating chunked + output with highlighting based on change markup. --> + +<xsl:import href="changebars.xsl"/> +<xsl:import href="chunk-common.xsl"/> + +<!-- This customization of "process-chunk-element" is needed in order to make change + highlighting be inherited by chunked children of an element with change markup. --> +<xsl:template name="process-chunk-element"> + <xsl:param name="content"> + <xsl:choose> + + <xsl:when test="ancestor-or-self::*[@revisionflag] and $show.revisionflag != 0"> + <xsl:variable name="revisionflag" select="ancestor-or-self::*[@revisionflag][1]/@revisionflag" /> + <xsl:call-template name="block.or.inline.revision"> + <xsl:with-param name="revisionflag" select="$revisionflag"/> + </xsl:call-template> + </xsl:when> + + <xsl:otherwise> + <xsl:apply-imports/> + </xsl:otherwise> + </xsl:choose> + </xsl:param> + + <xsl:choose> + <xsl:when test="$chunk.fast != 0 and $exsl.node.set.available != 0"> + <xsl:variable name="chunks" select="exsl:node-set($chunk.hierarchy)//cf:div"/> + <xsl:variable name="genid" select="generate-id()"/> + + <xsl:variable name="div" select="$chunks[@id=$genid or @xml:id=$genid]"/> + + <xsl:variable name="prevdiv" + select="($div/preceding-sibling::cf:div|$div/preceding::cf:div|$div/parent::cf:div)[last()]"/> + <xsl:variable name="prev" select="key('genid', ($prevdiv/@id|$prevdiv/@xml:id)[1])"/> + + <xsl:variable name="nextdiv" + select="($div/following-sibling::cf:div|$div/following::cf:div|$div/cf:div)[1]"/> + <xsl:variable name="next" select="key('genid', ($nextdiv/@id|$nextdiv/@xml:id)[1])"/> + + <xsl:choose> + <xsl:when test="$onechunk != 0 and parent::*"> + <xsl:copy-of select="$content"/> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="process-chunk"> + <xsl:with-param name="prev" select="$prev"/> + <xsl:with-param name="next" select="$next"/> + <xsl:with-param name="content" select="$content"/> + </xsl:call-template> + </xsl:otherwise> + </xsl:choose> + </xsl:when> + <xsl:otherwise> + <xsl:choose> + <xsl:when test="$onechunk != 0 and not(parent::*)"> + <xsl:call-template name="chunk-all-sections"> + <xsl:with-param name="content" select="$content"/> + </xsl:call-template> + </xsl:when> + <xsl:when test="$onechunk != 0"> + <xsl:copy-of select="$content"/> + </xsl:when> + <xsl:when test="$chunk.first.sections = 0"> + <xsl:call-template name="chunk-first-section-with-parent"> + <xsl:with-param name="content" select="$content"/> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="chunk-all-sections"> + <xsl:with-param name="content" select="$content"/> + </xsl:call-template> + </xsl:otherwise> + </xsl:choose> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:include href="chunk-code.xsl"/> + +</xsl:stylesheet> diff --git a/docbook-xsl-1.76.1/html/chunk-code.xsl b/docbook-xsl-1.76.1/html/chunk-code.xsl new file mode 100644 index 0000000..694e9fe --- /dev/null +++ b/docbook-xsl-1.76.1/html/chunk-code.xsl @@ -0,0 +1,674 @@ +<?xml version="1.0"?> +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + xmlns:exsl="http://exslt.org/common" + xmlns:cf="http://docbook.sourceforge.net/xmlns/chunkfast/1.0" + xmlns:ng="http://docbook.org/docbook-ng" + xmlns:db="http://docbook.org/ns/docbook" + exclude-result-prefixes="exsl cf ng db" + version="1.0"> + +<!-- ******************************************************************** + $Id: chunk-code.xsl 8596 2010-03-20 04:36:45Z bobstayton $ + ******************************************************************** + + This file is part of the XSL DocBook Stylesheet distribution. + See ../README or http://docbook.sf.net/release/xsl/current/ for + copyright and other information. + + ******************************************************************** --> + +<!-- ==================================================================== --> + + +<xsl:template match="*" mode="chunk-filename"> + <!-- returns the filename of a chunk --> + <xsl:variable name="ischunk"> + <xsl:call-template name="chunk"/> + </xsl:variable> + + <xsl:variable name="fn"> + <xsl:apply-templates select="." mode="recursive-chunk-filename"/> + </xsl:variable> + + <!-- + <xsl:message> + <xsl:value-of select="$ischunk"/> + <xsl:text> (</xsl:text> + <xsl:value-of select="local-name(.)"/> + <xsl:text>) </xsl:text> + <xsl:value-of select="$fn"/> + <xsl:text>, </xsl:text> + <xsl:call-template name="dbhtml-dir"/> + </xsl:message> + --> + + <!-- 2003-11-25 by ndw: + The following test used to read test="$ischunk != 0 and $fn != ''" + I've removed the ischunk part of the test so that href.to.uri and + href.from.uri will be fully qualified even if the source or target + isn't a chunk. I *think* that if $fn != '' then it's appropriate + to put the directory on the front, even if the element isn't a + chunk. I could be wrong. --> + + <xsl:if test="$fn != ''"> + <xsl:call-template name="dbhtml-dir"/> + </xsl:if> + + <xsl:value-of select="$fn"/> + <!-- You can't add the html.ext here because dbhtml filename= may already --> + <!-- have added it. It really does have to be handled in the recursive template --> +</xsl:template> + +<xsl:template match="*" mode="recursive-chunk-filename"> + <xsl:param name="recursive" select="false()"/> + + <!-- returns the filename of a chunk --> + <xsl:variable name="ischunk"> + <xsl:call-template name="chunk"/> + </xsl:variable> + + <xsl:variable name="dbhtml-filename"> + <xsl:call-template name="pi.dbhtml_filename"/> + </xsl:variable> + + <xsl:variable name="filename"> + <xsl:choose> + <xsl:when test="$dbhtml-filename != ''"> + <xsl:value-of select="$dbhtml-filename"/> + </xsl:when> + <!-- if this is the root element, use the root.filename --> + <xsl:when test="not(parent::*) and $root.filename != ''"> + <xsl:value-of select="$root.filename"/> + <xsl:value-of select="$html.ext"/> + </xsl:when> + <!-- Special case --> + <xsl:when test="self::legalnotice and not($generate.legalnotice.link = 0)"> + <xsl:choose> + <xsl:when test="(@id or @xml:id) and not($use.id.as.filename = 0)"> + <!-- * if this legalnotice has an ID, then go ahead and use --> + <!-- * just the value of that ID as the basename for the file --> + <!-- * (that is, without prepending an "ln-" too it) --> + <xsl:value-of select="(@id|@xml:id)[1]"/> + <xsl:value-of select="$html.ext"/> + </xsl:when> + <xsl:otherwise> + <!-- * otherwise, if this legalnotice does not have an ID, --> + <!-- * then we generate an ID... --> + <xsl:variable name="id"> + <xsl:call-template name="object.id"/> + </xsl:variable> + <!-- * ...and then we take that generated ID, prepend an --> + <!-- * "ln-" to it, and use that as the basename for the file --> + <xsl:value-of select="concat('ln-',$id,$html.ext)"/> + </xsl:otherwise> + </xsl:choose> + </xsl:when> + <!-- if there's no dbhtml filename, and if we're to use IDs as --> + <!-- filenames, then use the ID to generate the filename. --> + <xsl:when test="(@id or @xml:id) and $use.id.as.filename != 0"> + <xsl:value-of select="(@id|@xml:id)[1]"/> + <xsl:value-of select="$html.ext"/> + </xsl:when> + <xsl:otherwise></xsl:otherwise> + </xsl:choose> + </xsl:variable> + + <xsl:choose> + <xsl:when test="$ischunk='0'"> + <!-- if called on something that isn't a chunk, walk up... --> + <xsl:choose> + <xsl:when test="count(parent::*)>0"> + <xsl:apply-templates mode="recursive-chunk-filename" select="parent::*"> + <xsl:with-param name="recursive" select="$recursive"/> + </xsl:apply-templates> + </xsl:when> + <!-- unless there is no up, in which case return "" --> + <xsl:otherwise></xsl:otherwise> + </xsl:choose> + </xsl:when> + + <xsl:when test="not($recursive) and $filename != ''"> + <!-- if this chunk has an explicit name, use it --> + <xsl:value-of select="$filename"/> + </xsl:when> + + <xsl:when test="self::set"> + <xsl:value-of select="$root.filename"/> + <xsl:if test="not($recursive)"> + <xsl:value-of select="$html.ext"/> + </xsl:if> + </xsl:when> + + <xsl:when test="self::book"> + <xsl:text>bk</xsl:text> + <xsl:number level="any" format="01"/> + <xsl:if test="not($recursive)"> + <xsl:value-of select="$html.ext"/> + </xsl:if> + </xsl:when> + + <xsl:when test="self::article"> + <xsl:if test="/set"> + <!-- in a set, make sure we inherit the right book info... --> + <xsl:apply-templates mode="recursive-chunk-filename" select="parent::*"> + <xsl:with-param name="recursive" select="true()"/> + </xsl:apply-templates> + </xsl:if> + + <xsl:text>ar</xsl:text> + <xsl:number level="any" format="01" from="book"/> + <xsl:if test="not($recursive)"> + <xsl:value-of select="$html.ext"/> + </xsl:if> + </xsl:when> + + <xsl:when test="self::preface"> + <xsl:if test="/set"> + <!-- in a set, make sure we inherit the right book info... --> + <xsl:apply-templates mode="recursive-chunk-filename" select="parent::*"> + <xsl:with-param name="recursive" select="true()"/> + </xsl:apply-templates> + </xsl:if> + + <xsl:text>pr</xsl:text> + <xsl:number level="any" format="01" from="book"/> + <xsl:if test="not($recursive)"> + <xsl:value-of select="$html.ext"/> + </xsl:if> + </xsl:when> + + <xsl:when test="self::chapter"> + <xsl:if test="/set"> + <!-- in a set, make sure we inherit the right book info... --> + <xsl:apply-templates mode="recursive-chunk-filename" select="parent::*"> + <xsl:with-param name="recursive" select="true()"/> + </xsl:apply-templates> + </xsl:if> + + <xsl:text>ch</xsl:text> + <xsl:number level="any" format="01" from="book"/> + <xsl:if test="not($recursive)"> + <xsl:value-of select="$html.ext"/> + </xsl:if> + </xsl:when> + + <xsl:when test="self::appendix"> + <xsl:if test="/set"> + <!-- in a set, make sure we inherit the right book info... --> + <xsl:apply-templates mode="recursive-chunk-filename" select="parent::*"> + <xsl:with-param name="recursive" select="true()"/> + </xsl:apply-templates> + </xsl:if> + + <xsl:text>ap</xsl:text> + <xsl:number level="any" format="a" from="book"/> + <xsl:if test="not($recursive)"> + <xsl:value-of select="$html.ext"/> + </xsl:if> + </xsl:when> + + <xsl:when test="self::part"> + <xsl:choose> + <xsl:when test="/set"> + <!-- in a set, make sure we inherit the right book info... --> + <xsl:apply-templates mode="recursive-chunk-filename" select="parent::*"> + <xsl:with-param name="recursive" select="true()"/> + </xsl:apply-templates> + </xsl:when> + <xsl:otherwise> + </xsl:otherwise> + </xsl:choose> + + <xsl:text>pt</xsl:text> + <xsl:number level="any" format="01" from="book"/> + <xsl:if test="not($recursive)"> + <xsl:value-of select="$html.ext"/> + </xsl:if> + </xsl:when> + + <xsl:when test="self::reference"> + <xsl:choose> + <xsl:when test="/set"> + <!-- in a set, make sure we inherit the right book info... --> + <xsl:apply-templates mode="recursive-chunk-filename" select="parent::*"> + <xsl:with-param name="recursive" select="true()"/> + </xsl:apply-templates> + </xsl:when> + <xsl:otherwise> + </xsl:otherwise> + </xsl:choose> + + <xsl:text>rn</xsl:text> + <xsl:number level="any" format="01" from="book"/> + <xsl:if test="not($recursive)"> + <xsl:value-of select="$html.ext"/> + </xsl:if> + </xsl:when> + + <xsl:when test="self::refentry"> + <xsl:choose> + <xsl:when test="parent::reference"> + <xsl:apply-templates mode="recursive-chunk-filename" select="parent::*"> + <xsl:with-param name="recursive" select="true()"/> + </xsl:apply-templates> + </xsl:when> + <xsl:otherwise> + <xsl:if test="/set"> + <!-- in a set, make sure we inherit the right book info... --> + <xsl:apply-templates mode="recursive-chunk-filename" select="parent::*"> + <xsl:with-param name="recursive" select="true()"/> + </xsl:apply-templates> + </xsl:if> + </xsl:otherwise> + </xsl:choose> + + <xsl:text>re</xsl:text> + <xsl:number level="any" format="01" from="book"/> + <xsl:if test="not($recursive)"> + <xsl:value-of select="$html.ext"/> + </xsl:if> + </xsl:when> + + <xsl:when test="self::colophon"> + <xsl:choose> + <xsl:when test="/set"> + <!-- in a set, make sure we inherit the right book info... --> + <xsl:apply-templates mode="recursive-chunk-filename" select="parent::*"> + <xsl:with-param name="recursive" select="true()"/> + </xsl:apply-templates> + </xsl:when> + <xsl:otherwise> + </xsl:otherwise> + </xsl:choose> + + <xsl:text>co</xsl:text> + <xsl:number level="any" format="01" from="book"/> + <xsl:if test="not($recursive)"> + <xsl:value-of select="$html.ext"/> + </xsl:if> + </xsl:when> + + <xsl:when test="self::sect1 + or self::sect2 + or self::sect3 + or self::sect4 + or self::sect5 + or self::section"> + <xsl:apply-templates mode="recursive-chunk-filename" select="parent::*"> + <xsl:with-param name="recursive" select="true()"/> + </xsl:apply-templates> + <xsl:text>s</xsl:text> + <xsl:number format="01"/> + <xsl:if test="not($recursive)"> + <xsl:value-of select="$html.ext"/> + </xsl:if> + </xsl:when> + + <xsl:when test="self::bibliography"> + <xsl:choose> + <xsl:when test="/set"> + <!-- in a set, make sure we inherit the right book info... --> + <xsl:apply-templates mode="recursive-chunk-filename" select="parent::*"> + <xsl:with-param name="recursive" select="true()"/> + </xsl:apply-templates> + </xsl:when> + <xsl:otherwise> + </xsl:otherwise> + </xsl:choose> + + <xsl:text>bi</xsl:text> + <xsl:number level="any" format="01" from="book"/> + <xsl:if test="not($recursive)"> + <xsl:value-of select="$html.ext"/> + </xsl:if> + </xsl:when> + + <xsl:when test="self::glossary"> + <xsl:choose> + <xsl:when test="/set"> + <!-- in a set, make sure we inherit the right book info... --> + <xsl:apply-templates mode="recursive-chunk-filename" select="parent::*"> + <xsl:with-param name="recursive" select="true()"/> + </xsl:apply-templates> + </xsl:when> + <xsl:otherwise> + </xsl:otherwise> + </xsl:choose> + + <xsl:text>go</xsl:text> + <xsl:number level="any" format="01" from="book"/> + <xsl:if test="not($recursive)"> + <xsl:value-of select="$html.ext"/> + </xsl:if> + </xsl:when> + + <xsl:when test="self::index"> + <xsl:choose> + <xsl:when test="/set"> + <!-- in a set, make sure we inherit the right book info... --> + <xsl:apply-templates mode="recursive-chunk-filename" select="parent::*"> + <xsl:with-param name="recursive" select="true()"/> + </xsl:apply-templates> + </xsl:when> + <xsl:otherwise> + </xsl:otherwise> + </xsl:choose> + + <xsl:text>ix</xsl:text> + <xsl:number level="any" format="01" from="book"/> + <xsl:if test="not($recursive)"> + <xsl:value-of select="$html.ext"/> + </xsl:if> + </xsl:when> + + <xsl:when test="self::setindex"> + <xsl:text>si</xsl:text> + <xsl:number level="any" format="01" from="set"/> + <xsl:if test="not($recursive)"> + <xsl:value-of select="$html.ext"/> + </xsl:if> + </xsl:when> + + <xsl:otherwise> + <xsl:text>chunk-filename-error-</xsl:text> + <xsl:value-of select="name(.)"/> + <xsl:number level="any" format="01" from="set"/> + <xsl:if test="not($recursive)"> + <xsl:value-of select="$html.ext"/> + </xsl:if> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<!-- ==================================================================== --> + + + +<xsl:template match="processing-instruction('dbhtml')"> + <!-- nop --> +</xsl:template> + +<!-- ==================================================================== --> + + +<xsl:template match="*" mode="find.chunks"> + <xsl:variable name="chunk"> + <xsl:call-template name="chunk"/> + </xsl:variable> + + <xsl:choose> + <xsl:when test="$chunk != 0"> + <cf:div id="{generate-id()}"> + <xsl:apply-templates select="." mode="class.attribute"/> + <xsl:apply-templates select="*" mode="find.chunks"/> + </cf:div> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates select="*" mode="find.chunks"/> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template match="/"> + <!-- * Get a title for current doc so that we let the user --> + <!-- * know what document we are processing at this point. --> + <xsl:variable name="doc.title"> + <xsl:call-template name="get.doc.title"/> + </xsl:variable> + <xsl:choose> + <!-- Hack! If someone hands us a DocBook V5.x or DocBook NG document, + toss the namespace and continue. Use the docbook5 namespaced + stylesheets for DocBook5 if you don't want to use this feature.--> + <xsl:when test="$exsl.node.set.available != 0 + and (*/self::ng:* or */self::db:*)"> + <xsl:call-template name="log.message"> + <xsl:with-param name="level">Note</xsl:with-param> + <xsl:with-param name="source" select="$doc.title"/> + <xsl:with-param name="context-desc"> + <xsl:text>namesp. cut</xsl:text> + </xsl:with-param> + <xsl:with-param name="message"> + <xsl:text>stripped namespace before processing</xsl:text> + </xsl:with-param> + </xsl:call-template> + <xsl:variable name="nons"> + <xsl:apply-templates mode="stripNS"/> + </xsl:variable> + <xsl:call-template name="log.message"> + <xsl:with-param name="level">Note</xsl:with-param> + <xsl:with-param name="source" select="$doc.title"/> + <xsl:with-param name="context-desc"> + <xsl:text>namesp. cut</xsl:text> + </xsl:with-param> + <xsl:with-param name="message"> + <xsl:text>processing stripped document</xsl:text> + </xsl:with-param> + </xsl:call-template> + <xsl:apply-templates select="exsl:node-set($nons)"/> + </xsl:when> + <!-- Can't process unless namespace removed --> + <xsl:when test="*/self::ng:* or */self::db:*"> + <xsl:message terminate="yes"> + <xsl:text>Unable to strip the namespace from DB5 document,</xsl:text> + <xsl:text> cannot proceed.</xsl:text> + </xsl:message> + </xsl:when> + <xsl:otherwise> + <xsl:choose> + <xsl:when test="$rootid != ''"> + <xsl:choose> + <xsl:when test="count(key('id',$rootid)) = 0"> + <xsl:message terminate="yes"> + <xsl:text>ID '</xsl:text> + <xsl:value-of select="$rootid"/> + <xsl:text>' not found in document.</xsl:text> + </xsl:message> + </xsl:when> + <xsl:otherwise> + <xsl:if test="$collect.xref.targets = 'yes' or + $collect.xref.targets = 'only'"> + <xsl:apply-templates select="key('id', $rootid)" + mode="collect.targets"/> + </xsl:if> + <xsl:if test="$collect.xref.targets != 'only'"> + <xsl:apply-templates select="key('id',$rootid)" + mode="process.root"/> + <xsl:if test="$tex.math.in.alt != ''"> + <xsl:apply-templates select="key('id',$rootid)" + mode="collect.tex.math"/> + </xsl:if> + <xsl:if test="$generate.manifest != 0"> + <xsl:call-template name="generate.manifest"> + <xsl:with-param name="node" select="key('id',$rootid)"/> + </xsl:call-template> + </xsl:if> + </xsl:if> + </xsl:otherwise> + </xsl:choose> + </xsl:when> + <xsl:otherwise> + <xsl:if test="$collect.xref.targets = 'yes' or + $collect.xref.targets = 'only'"> + <xsl:apply-templates select="/" mode="collect.targets"/> + </xsl:if> + <xsl:if test="$collect.xref.targets != 'only'"> + <xsl:apply-templates select="/" mode="process.root"/> + <xsl:if test="$tex.math.in.alt != ''"> + <xsl:apply-templates select="/" mode="collect.tex.math"/> + </xsl:if> + <xsl:if test="$generate.manifest != 0"> + <xsl:call-template name="generate.manifest"> + <xsl:with-param name="node" select="/"/> + </xsl:call-template> + </xsl:if> + </xsl:if> + </xsl:otherwise> + </xsl:choose> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template match="*" mode="process.root"> + <xsl:apply-templates select="."/> + <xsl:call-template name="generate.css"/> +</xsl:template> + +<!-- ====================================================================== --> + +<xsl:template match="set|book|part|preface|chapter|appendix + |article + |reference|refentry + |book/glossary|article/glossary|part/glossary + |book/bibliography|article/bibliography|part/bibliography + |colophon"> + <xsl:choose> + <xsl:when test="$onechunk != 0 and parent::*"> + <xsl:apply-imports/> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="process-chunk-element"/> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template match="sect1|sect2|sect3|sect4|sect5|section"> + <xsl:variable name="ischunk"> + <xsl:call-template name="chunk"/> + </xsl:variable> + + <xsl:choose> + <xsl:when test="not(parent::*)"> + <xsl:call-template name="process-chunk-element"/> + </xsl:when> + <xsl:when test="$ischunk = 0"> + <xsl:apply-imports/> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="process-chunk-element"/> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template match="setindex + |book/index + |article/index + |part/index"> + <!-- some implementations use completely empty index tags to indicate --> + <!-- where an automatically generated index should be inserted. so --> + <!-- if the index is completely empty, skip it. --> + <xsl:if test="count(*)>0 or $generate.index != '0'"> + <xsl:call-template name="process-chunk-element"/> + </xsl:if> +</xsl:template> + +<!-- Resolve xml:base attributes --> +<xsl:template match="@fileref"> + <!-- need a check for absolute urls --> + <xsl:choose> + <xsl:when test="contains(., ':')"> + <!-- it has a uri scheme so it is an absolute uri --> + <xsl:value-of select="."/> + </xsl:when> + <xsl:when test="$keep.relative.image.uris != 0"> + <!-- leave it alone --> + <xsl:value-of select="."/> + </xsl:when> + <xsl:otherwise> + <!-- its a relative uri --> + <xsl:call-template name="relative-uri"> + <xsl:with-param name="destdir"> + <xsl:call-template name="dbhtml-dir"> + <xsl:with-param name="context" select=".."/> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<!-- ==================================================================== --> +<xsl:template match="set|book|part|preface|chapter|appendix + |article + |reference|refentry + |sect1|sect2|sect3|sect4|sect5 + |section + |book/glossary|article/glossary|part/glossary + |book/bibliography|article/bibliography|part/bibliography + |colophon" + mode="enumerate-files"> + <xsl:variable name="ischunk"><xsl:call-template name="chunk"/></xsl:variable> + <xsl:if test="$ischunk='1'"> + <xsl:call-template name="make-relative-filename"> + <xsl:with-param name="base.dir"> + <xsl:if test="$manifest.in.base.dir = 0"> + <xsl:value-of select="$base.dir"/> + </xsl:if> + </xsl:with-param> + <xsl:with-param name="base.name"> + <xsl:apply-templates mode="chunk-filename" select="."/> + </xsl:with-param> + </xsl:call-template> + <xsl:text> </xsl:text> + </xsl:if> + <xsl:apply-templates select="*" mode="enumerate-files"/> +</xsl:template> + +<xsl:template match="book/index|article/index|part/index" + mode="enumerate-files"> + <xsl:if test="$htmlhelp.output != 1"> + <xsl:variable name="ischunk"><xsl:call-template name="chunk"/></xsl:variable> + <xsl:if test="$ischunk='1'"> + <xsl:call-template name="make-relative-filename"> + <xsl:with-param name="base.dir"> + <xsl:if test="$manifest.in.base.dir = 0"> + <xsl:value-of select="$base.dir"/> + </xsl:if> + </xsl:with-param> + <xsl:with-param name="base.name"> + <xsl:apply-templates mode="chunk-filename" select="."/> + </xsl:with-param> + </xsl:call-template> + <xsl:text> </xsl:text> + </xsl:if> + <xsl:apply-templates select="*" mode="enumerate-files"/> + </xsl:if> +</xsl:template> + +<xsl:template match="legalnotice" mode="enumerate-files"> + <xsl:variable name="id"><xsl:call-template name="object.id"/></xsl:variable> + <xsl:if test="$generate.legalnotice.link != 0"> + <xsl:call-template name="make-relative-filename"> + <xsl:with-param name="base.dir"> + <xsl:if test="$manifest.in.base.dir = 0"> + <xsl:value-of select="$base.dir"/> + </xsl:if> + </xsl:with-param> + <xsl:with-param name="base.name"> + <xsl:apply-templates mode="chunk-filename" select="."/> + </xsl:with-param> + </xsl:call-template> + <xsl:text> </xsl:text> + </xsl:if> +</xsl:template> + +<xsl:template match="mediaobject[imageobject] | inlinemediaobject[imageobject]" mode="enumerate-files"> + <xsl:variable name="longdesc.uri"> + <xsl:call-template name="longdesc.uri"> + <xsl:with-param name="mediaobject" + select="."/> + </xsl:call-template> + </xsl:variable> + <xsl:variable name="mediaobject" select="."/> + + <xsl:if test="$html.longdesc != 0 and $mediaobject/textobject[not(phrase)]"> + <xsl:call-template name="longdesc.uri"> + <xsl:with-param name="mediaobject" select="$mediaobject"/> + </xsl:call-template> + <xsl:text> </xsl:text> + </xsl:if> +</xsl:template> + +<xsl:template match="text()" mode="enumerate-files"> +</xsl:template> + +</xsl:stylesheet> diff --git a/docbook-xsl-1.76.1/html/chunk-common.xsl b/docbook-xsl-1.76.1/html/chunk-common.xsl new file mode 100644 index 0000000..0ea2df5 --- /dev/null +++ b/docbook-xsl-1.76.1/html/chunk-common.xsl @@ -0,0 +1,1920 @@ +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + xmlns:exsl="http://exslt.org/common" + xmlns:cf="http://docbook.sourceforge.net/xmlns/chunkfast/1.0" + xmlns:ng="http://docbook.org/docbook-ng" + xmlns:db="http://docbook.org/ns/docbook" + version="1.0" + exclude-result-prefixes="exsl cf ng db"> + +<!-- ******************************************************************** + $Id: chunk-common.xsl 8551 2009-12-07 06:03:50Z bobstayton $ + ******************************************************************** + + This file is part of the XSL DocBook Stylesheet distribution. + See ../README or http://docbook.sf.net/release/xsl/current/ for + copyright and other information. + + ******************************************************************** --> + +<!-- ==================================================================== --> + +<xsl:param name="onechunk" select="0"/> +<xsl:param name="refentry.separator" select="0"/> +<xsl:param name="chunk.fast" select="0"/> + +<xsl:key name="genid" match="*" use="generate-id()"/> + +<!-- ==================================================================== --> + +<xsl:variable name="chunk.hierarchy"> + <xsl:if test="$chunk.fast != 0"> + <xsl:choose> + <xsl:when test="$exsl.node.set.available != 0"> + <xsl:message>Computing chunks...</xsl:message> + <xsl:apply-templates select="/*" mode="find.chunks"/> + </xsl:when> + <xsl:otherwise> + <xsl:message> + <xsl:text>Fast chunking requires exsl:node-set(). </xsl:text> + <xsl:text>Using "slow" chunking.</xsl:text> + </xsl:message> + </xsl:otherwise> + </xsl:choose> + </xsl:if> +</xsl:variable> + +<!-- ==================================================================== --> + +<xsl:template name="process-chunk-element"> + <xsl:param name="content"> + <xsl:apply-imports/> + </xsl:param> + + <xsl:choose> + <xsl:when test="$chunk.fast != 0 and $exsl.node.set.available != 0"> + <xsl:variable name="chunks" select="exsl:node-set($chunk.hierarchy)//cf:div"/> + <xsl:variable name="genid" select="generate-id()"/> + + <xsl:variable name="div" select="$chunks[@id=$genid or @xml:id=$genid]"/> + + <xsl:variable name="prevdiv" + select="($div/preceding-sibling::cf:div|$div/preceding::cf:div|$div/parent::cf:div)[last()]"/> + <xsl:variable name="prev" select="key('genid', ($prevdiv/@id|$prevdiv/@xml:id)[1])"/> + + <xsl:variable name="nextdiv" + select="($div/following-sibling::cf:div|$div/following::cf:div|$div/cf:div)[1]"/> + <xsl:variable name="next" select="key('genid', ($nextdiv/@id|$nextdiv/@xml:id)[1])"/> + + <xsl:choose> + <xsl:when test="$onechunk != 0 and parent::*"> + <xsl:copy-of select="$content"/> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="process-chunk"> + <xsl:with-param name="prev" select="$prev"/> + <xsl:with-param name="next" select="$next"/> + <xsl:with-param name="content" select="$content"/> + </xsl:call-template> + </xsl:otherwise> + </xsl:choose> + </xsl:when> + <xsl:otherwise> + <xsl:choose> + <xsl:when test="$onechunk != 0 and not(parent::*)"> + <xsl:call-template name="chunk-all-sections"> + <xsl:with-param name="content" select="$content"/> + </xsl:call-template> + </xsl:when> + <xsl:when test="$onechunk != 0"> + <xsl:copy-of select="$content"/> + </xsl:when> + <xsl:when test="$chunk.first.sections = 0"> + <xsl:call-template name="chunk-first-section-with-parent"> + <xsl:with-param name="content" select="$content"/> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="chunk-all-sections"> + <xsl:with-param name="content" select="$content"/> + </xsl:call-template> + </xsl:otherwise> + </xsl:choose> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template name="process-chunk"> + <xsl:param name="prev" select="."/> + <xsl:param name="next" select="."/> + <xsl:param name="content"> + <xsl:apply-imports/> + </xsl:param> + + <xsl:variable name="ischunk"> + <xsl:call-template name="chunk"/> + </xsl:variable> + + <xsl:variable name="chunkfn"> + <xsl:if test="$ischunk='1'"> + <xsl:apply-templates mode="chunk-filename" select="."/> + </xsl:if> + </xsl:variable> + + <xsl:if test="$ischunk='0'"> + <xsl:message> + <xsl:text>Error </xsl:text> + <xsl:value-of select="name(.)"/> + <xsl:text> is not a chunk!</xsl:text> + </xsl:message> + </xsl:if> + + <xsl:variable name="filename"> + <xsl:call-template name="make-relative-filename"> + <xsl:with-param name="base.dir" select="$base.dir"/> + <xsl:with-param name="base.name" select="$chunkfn"/> + </xsl:call-template> + </xsl:variable> + + <xsl:call-template name="write.chunk"> + <xsl:with-param name="filename" select="$filename"/> + <xsl:with-param name="content"> + <xsl:call-template name="chunk-element-content"> + <xsl:with-param name="prev" select="$prev"/> + <xsl:with-param name="next" select="$next"/> + <xsl:with-param name="content" select="$content"/> + </xsl:call-template> + </xsl:with-param> + <xsl:with-param name="quiet" select="$chunk.quietly"/> + </xsl:call-template> +</xsl:template> + +<xsl:template name="chunk-first-section-with-parent"> + <xsl:param name="content"> + <xsl:apply-imports/> + </xsl:param> + + <!-- These xpath expressions are really hairy. The trick is to pick sections --> + <!-- that are not first children and are not the children of first children --> + + <!-- Break these variables into pieces to work around + http://nagoya.apache.org/bugzilla/show_bug.cgi?id=6063 --> + + <xsl:variable name="prev-v1" + select="(ancestor::sect1[$chunk.section.depth > 0 + and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking']) + and preceding-sibling::sect1][1] + + |ancestor::sect2[$chunk.section.depth > 1 + and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking']) + and preceding-sibling::sect2 + and parent::sect1[preceding-sibling::sect1]][1] + + |ancestor::sect3[$chunk.section.depth > 2 + and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking']) + and preceding-sibling::sect3 + and parent::sect2[preceding-sibling::sect2] + and ancestor::sect1[preceding-sibling::sect1]][1] + + |ancestor::sect4[$chunk.section.depth > 3 + and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking']) + and preceding-sibling::sect4 + and parent::sect3[preceding-sibling::sect3] + and ancestor::sect2[preceding-sibling::sect2] + and ancestor::sect1[preceding-sibling::sect1]][1] + + |ancestor::sect5[$chunk.section.depth > 4 + and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking']) + and preceding-sibling::sect5 + and parent::sect4[preceding-sibling::sect4] + and ancestor::sect3[preceding-sibling::sect3] + and ancestor::sect2[preceding-sibling::sect2] + and ancestor::sect1[preceding-sibling::sect1]][1] + + |ancestor::section[$chunk.section.depth > count(ancestor::section) + and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking']) + and not(ancestor::section[not(preceding-sibling::section)])][1])[last()]"/> + + <xsl:variable name="prev-v2" + select="(preceding::sect1[$chunk.section.depth > 0 + and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking']) + and preceding-sibling::sect1][1] + + |preceding::sect2[$chunk.section.depth > 1 + and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking']) + and preceding-sibling::sect2 + and parent::sect1[preceding-sibling::sect1]][1] + + |preceding::sect3[$chunk.section.depth > 2 + and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking']) + and preceding-sibling::sect3 + and parent::sect2[preceding-sibling::sect2] + and ancestor::sect1[preceding-sibling::sect1]][1] + + |preceding::sect4[$chunk.section.depth > 3 + and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking']) + and preceding-sibling::sect4 + and parent::sect3[preceding-sibling::sect3] + and ancestor::sect2[preceding-sibling::sect2] + and ancestor::sect1[preceding-sibling::sect1]][1] + + |preceding::sect5[$chunk.section.depth > 4 + and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking']) + and preceding-sibling::sect5 + and parent::sect4[preceding-sibling::sect4] + and ancestor::sect3[preceding-sibling::sect3] + and ancestor::sect2[preceding-sibling::sect2] + and ancestor::sect1[preceding-sibling::sect1]][1] + + |preceding::section[$chunk.section.depth > count(ancestor::section) + and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking']) + and preceding-sibling::section + and not(ancestor::section[not(preceding-sibling::section)])][1])[last()]"/> + + <xsl:variable name="prev" + select="(preceding::book[1] + |preceding::preface[1] + |preceding::chapter[1] + |preceding::appendix[1] + |preceding::part[1] + |preceding::reference[1] + |preceding::refentry[1] + |preceding::colophon[1] + |preceding::article[1] + |preceding::bibliography[parent::article or parent::book or parent::part][1] + |preceding::glossary[parent::article or parent::book or parent::part][1] + |preceding::index[$generate.index != 0] + [parent::article or parent::book or parent::part][1] + |preceding::setindex[$generate.index != 0][1] + |ancestor::set + |ancestor::book[1] + |ancestor::preface[1] + |ancestor::chapter[1] + |ancestor::appendix[1] + |ancestor::part[1] + |ancestor::reference[1] + |ancestor::article[1] + |$prev-v1 + |$prev-v2)[last()]"/> + + <xsl:variable name="next-v1" + select="(following::sect1[$chunk.section.depth > 0 + and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking']) + and preceding-sibling::sect1][1] + + |following::sect2[$chunk.section.depth > 1 + and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking']) + and preceding-sibling::sect2 + and parent::sect1[preceding-sibling::sect1]][1] + + |following::sect3[$chunk.section.depth > 2 + and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking']) + and preceding-sibling::sect3 + and parent::sect2[preceding-sibling::sect2] + and ancestor::sect1[preceding-sibling::sect1]][1] + + |following::sect4[$chunk.section.depth > 3 + and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking']) + and preceding-sibling::sect4 + and parent::sect3[preceding-sibling::sect3] + and ancestor::sect2[preceding-sibling::sect2] + and ancestor::sect1[preceding-sibling::sect1]][1] + + |following::sect5[$chunk.section.depth > 4 + and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking']) + and preceding-sibling::sect5 + and parent::sect4[preceding-sibling::sect4] + and ancestor::sect3[preceding-sibling::sect3] + and ancestor::sect2[preceding-sibling::sect2] + and ancestor::sect1[preceding-sibling::sect1]][1] + + |following::section[$chunk.section.depth > count(ancestor::section) + and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking']) + and preceding-sibling::section + and not(ancestor::section[not(preceding-sibling::section)])][1])[1]"/> + + <xsl:variable name="next-v2" + select="(descendant::sect1[$chunk.section.depth > 0 + and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking']) + and preceding-sibling::sect1][1] + + |descendant::sect2[$chunk.section.depth > 1 + and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking']) + and preceding-sibling::sect2 + and parent::sect1[preceding-sibling::sect1]][1] + + |descendant::sect3[$chunk.section.depth > 2 + and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking']) + and preceding-sibling::sect3 + and parent::sect2[preceding-sibling::sect2] + and ancestor::sect1[preceding-sibling::sect1]][1] + + |descendant::sect4[$chunk.section.depth > 3 + and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking']) + and preceding-sibling::sect4 + and parent::sect3[preceding-sibling::sect3] + and ancestor::sect2[preceding-sibling::sect2] + and ancestor::sect1[preceding-sibling::sect1]][1] + + |descendant::sect5[$chunk.section.depth > 4 + and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking']) + and preceding-sibling::sect5 + and parent::sect4[preceding-sibling::sect4] + and ancestor::sect3[preceding-sibling::sect3] + and ancestor::sect2[preceding-sibling::sect2] + and ancestor::sect1[preceding-sibling::sect1]][1] + + |descendant::section[$chunk.section.depth > count(ancestor::section) + and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking']) + and preceding-sibling::section + and not(ancestor::section[not(preceding-sibling::section)])])[1]"/> + + <xsl:variable name="next" + select="(following::book[1] + |following::preface[1] + |following::chapter[1] + |following::appendix[1] + |following::part[1] + |following::reference[1] + |following::refentry[1] + |following::colophon[1] + |following::bibliography[parent::article or parent::book or parent::part][1] + |following::glossary[parent::article or parent::book or parent::part][1] + |following::index[$generate.index != 0] + [parent::article or parent::book or parent::part][1] + |following::article[1] + |following::setindex[$generate.index != 0][1] + |descendant::book[1] + |descendant::preface[1] + |descendant::chapter[1] + |descendant::appendix[1] + |descendant::article[1] + |descendant::bibliography[parent::article or parent::book or parent::part][1] + |descendant::glossary[parent::article or parent::book or parent::part][1] + |descendant::index[$generate.index != 0] + [parent::article or parent::book or parent::part][1] + |descendant::colophon[1] + |descendant::setindex[$generate.index != 0][1] + |descendant::part[1] + |descendant::reference[1] + |descendant::refentry[1] + |$next-v1 + |$next-v2)[1]"/> + + <xsl:call-template name="process-chunk"> + <xsl:with-param name="prev" select="$prev"/> + <xsl:with-param name="next" select="$next"/> + <xsl:with-param name="content" select="$content"/> + </xsl:call-template> +</xsl:template> + +<xsl:template name="chunk-all-sections"> + <xsl:param name="content"> + <xsl:apply-imports/> + </xsl:param> + + <xsl:variable name="prev-v1" + select="(preceding::sect1[$chunk.section.depth > 0 and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking'])][1] + |preceding::sect2[$chunk.section.depth > 1 and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking'])][1] + |preceding::sect3[$chunk.section.depth > 2 and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking'])][1] + |preceding::sect4[$chunk.section.depth > 3 and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking'])][1] + |preceding::sect5[$chunk.section.depth > 4 and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking'])][1] + |preceding::section[$chunk.section.depth > count(ancestor::section) and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking'])][1])[last()]"/> + + <xsl:variable name="prev-v2" + select="(ancestor::sect1[$chunk.section.depth > 0 and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking'])][1] + |ancestor::sect2[$chunk.section.depth > 1 and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking'])][1] + |ancestor::sect3[$chunk.section.depth > 2 and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking'])][1] + |ancestor::sect4[$chunk.section.depth > 3 and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking'])][1] + |ancestor::sect5[$chunk.section.depth > 4 and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking'])][1] + |ancestor::section[$chunk.section.depth > count(ancestor::section) and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking'])][1])[last()]"/> + + <xsl:variable name="prev" + select="(preceding::book[1] + |preceding::preface[1] + |preceding::chapter[1] + |preceding::appendix[1] + |preceding::part[1] + |preceding::reference[1] + |preceding::refentry[1] + |preceding::colophon[1] + |preceding::article[1] + |preceding::bibliography[parent::article or parent::book or parent::part][1] + |preceding::glossary[parent::article or parent::book or parent::part][1] + |preceding::index[$generate.index != 0] + [parent::article or parent::book or parent::part][1] + |preceding::setindex[$generate.index != 0][1] + |ancestor::set + |ancestor::book[1] + |ancestor::preface[1] + |ancestor::chapter[1] + |ancestor::appendix[1] + |ancestor::part[1] + |ancestor::reference[1] + |ancestor::article[1] + |$prev-v1 + |$prev-v2)[last()]"/> + + <xsl:variable name="next-v1" + select="(following::sect1[$chunk.section.depth > 0 and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking'])][1] + |following::sect2[$chunk.section.depth > 1 and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking'])][1] + |following::sect3[$chunk.section.depth > 2 and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking'])][1] + |following::sect4[$chunk.section.depth > 3 and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking'])][1] + |following::sect5[$chunk.section.depth > 4 and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking'])][1] + |following::section[$chunk.section.depth > count(ancestor::section) and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking'])][1])[1]"/> + + <xsl:variable name="next-v2" + select="(descendant::sect1[$chunk.section.depth > 0 and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking'])][1] + |descendant::sect2[$chunk.section.depth > 1 and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking'])][1] + |descendant::sect3[$chunk.section.depth > 2 and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking'])][1] + |descendant::sect4[$chunk.section.depth > 3 and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking'])][1] + |descendant::sect5[$chunk.section.depth > 4 and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking'])][1] + |descendant::section[$chunk.section.depth + > count(ancestor::section) and not(ancestor::*/processing-instruction('dbhtml')[normalize-space(.) ='stop-chunking'])][1])[1]"/> + + <xsl:variable name="next" + select="(following::book[1] + |following::preface[1] + |following::chapter[1] + |following::appendix[1] + |following::part[1] + |following::reference[1] + |following::refentry[1] + |following::colophon[1] + |following::bibliography[parent::article or parent::book or parent::part][1] + |following::glossary[parent::article or parent::book or parent::part][1] + |following::index[$generate.index != 0] + [parent::article or parent::book][1] + |following::article[1] + |following::setindex[$generate.index != 0][1] + |descendant::book[1] + |descendant::preface[1] + |descendant::chapter[1] + |descendant::appendix[1] + |descendant::article[1] + |descendant::bibliography[parent::article or parent::book][1] + |descendant::glossary[parent::article or parent::book or parent::part][1] + |descendant::index[$generate.index != 0] + [parent::article or parent::book][1] + |descendant::colophon[1] + |descendant::setindex[$generate.index != 0][1] + |descendant::part[1] + |descendant::reference[1] + |descendant::refentry[1] + |$next-v1 + |$next-v2)[1]"/> + + <xsl:call-template name="process-chunk"> + <xsl:with-param name="prev" select="$prev"/> + <xsl:with-param name="next" select="$next"/> + <xsl:with-param name="content" select="$content"/> + </xsl:call-template> +</xsl:template> + +<!-- ==================================================================== --> + +<!-- ==================================================================== --> + +<xsl:template name="make.lots"> + <xsl:param name="toc.params" select="''"/> + <xsl:param name="toc"/> + + <xsl:variable name="lots"> + <xsl:if test="contains($toc.params, 'toc')"> + <xsl:copy-of select="$toc"/> + </xsl:if> + + <xsl:if test="contains($toc.params, 'figure')"> + <xsl:choose> + <xsl:when test="$chunk.separate.lots != '0'"> + <xsl:call-template name="make.lot.chunk"> + <xsl:with-param name="type" select="'figure'"/> + <xsl:with-param name="lot"> + <xsl:call-template name="list.of.titles"> + <xsl:with-param name="titles" select="'figure'"/> + <xsl:with-param name="nodes" select=".//figure"/> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="list.of.titles"> + <xsl:with-param name="titles" select="'figure'"/> + <xsl:with-param name="nodes" select=".//figure"/> + </xsl:call-template> + </xsl:otherwise> + </xsl:choose> + </xsl:if> + + <xsl:if test="contains($toc.params, 'table')"> + <xsl:choose> + <xsl:when test="$chunk.separate.lots != '0'"> + <xsl:call-template name="make.lot.chunk"> + <xsl:with-param name="type" select="'table'"/> + <xsl:with-param name="lot"> + <xsl:call-template name="list.of.titles"> + <xsl:with-param name="titles" select="'table'"/> + <xsl:with-param name="nodes" select=".//table"/> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="list.of.titles"> + <xsl:with-param name="titles" select="'table'"/> + <xsl:with-param name="nodes" select=".//table"/> + </xsl:call-template> + </xsl:otherwise> + </xsl:choose> + </xsl:if> + + <xsl:if test="contains($toc.params, 'example')"> + <xsl:choose> + <xsl:when test="$chunk.separate.lots != '0'"> + <xsl:call-template name="make.lot.chunk"> + <xsl:with-param name="type" select="'example'"/> + <xsl:with-param name="lot"> + <xsl:call-template name="list.of.titles"> + <xsl:with-param name="titles" select="'example'"/> + <xsl:with-param name="nodes" select=".//example"/> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="list.of.titles"> + <xsl:with-param name="titles" select="'example'"/> + <xsl:with-param name="nodes" select=".//example"/> + </xsl:call-template> + </xsl:otherwise> + </xsl:choose> + </xsl:if> + + <xsl:if test="contains($toc.params, 'equation')"> + <xsl:choose> + <xsl:when test="$chunk.separate.lots != '0'"> + <xsl:call-template name="make.lot.chunk"> + <xsl:with-param name="type" select="'equation'"/> + <xsl:with-param name="lot"> + <xsl:call-template name="list.of.titles"> + <xsl:with-param name="titles" select="'equation'"/> + <xsl:with-param name="nodes" select=".//equation[title or info/title]"/> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="list.of.titles"> + <xsl:with-param name="titles" select="'equation'"/> + <xsl:with-param name="nodes" select=".//equation[title or info/title]"/> + </xsl:call-template> + </xsl:otherwise> + </xsl:choose> + </xsl:if> + + <xsl:if test="contains($toc.params, 'procedure')"> + <xsl:choose> + <xsl:when test="$chunk.separate.lots != '0'"> + <xsl:call-template name="make.lot.chunk"> + <xsl:with-param name="type" select="'procedure'"/> + <xsl:with-param name="lot"> + <xsl:call-template name="list.of.titles"> + <xsl:with-param name="titles" select="'procedure'"/> + <xsl:with-param name="nodes" select=".//procedure[title]"/> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="list.of.titles"> + <xsl:with-param name="titles" select="'procedure'"/> + <xsl:with-param name="nodes" select=".//procedure[title]"/> + </xsl:call-template> + </xsl:otherwise> + </xsl:choose> + </xsl:if> + </xsl:variable> + + <xsl:if test="string($lots) != ''"> + <xsl:choose> + <xsl:when test="$chunk.tocs.and.lots != 0 and not(parent::*)"> + <xsl:call-template name="write.chunk"> + <xsl:with-param name="filename"> + <xsl:call-template name="make-relative-filename"> + <xsl:with-param name="base.dir" select="$base.dir"/> + <xsl:with-param name="base.name"> + <xsl:call-template name="dbhtml-dir"/> + <xsl:apply-templates select="." mode="recursive-chunk-filename"> + <xsl:with-param name="recursive" select="true()"/> + </xsl:apply-templates> + <xsl:text>-toc</xsl:text> + <xsl:value-of select="$html.ext"/> + </xsl:with-param> + </xsl:call-template> + </xsl:with-param> + <xsl:with-param name="content"> + <xsl:call-template name="chunk-element-content"> + <xsl:with-param name="prev" select="/foo"/> + <xsl:with-param name="next" select="/foo"/> + <xsl:with-param name="nav.context" select="'toc'"/> + <xsl:with-param name="content"> + <xsl:if test="$chunk.tocs.and.lots.has.title != 0"> + <h1> + <xsl:apply-templates select="." mode="object.title.markup"/> + </h1> + </xsl:if> + <xsl:copy-of select="$lots"/> + </xsl:with-param> + </xsl:call-template> + </xsl:with-param> + <xsl:with-param name="quiet" select="$chunk.quietly"/> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:copy-of select="$lots"/> + </xsl:otherwise> + </xsl:choose> + </xsl:if> +</xsl:template> + +<xsl:template name="make.lot.chunk"> + <xsl:param name="type" select="''"/> + <xsl:param name="lot"/> + + <xsl:if test="string($lot) != ''"> + <xsl:variable name="filename"> + <xsl:call-template name="make-relative-filename"> + <xsl:with-param name="base.dir" select="$base.dir"/> + <xsl:with-param name="base.name"> + <xsl:call-template name="dbhtml-dir"/> + <xsl:value-of select="$type"/> + <xsl:text>-toc</xsl:text> + <xsl:value-of select="$html.ext"/> + </xsl:with-param> + </xsl:call-template> + </xsl:variable> + + <xsl:variable name="href"> + <xsl:call-template name="make-relative-filename"> + <xsl:with-param name="base.name"> + <xsl:call-template name="dbhtml-dir"/> + <xsl:value-of select="$type"/> + <xsl:text>-toc</xsl:text> + <xsl:value-of select="$html.ext"/> + </xsl:with-param> + </xsl:call-template> + </xsl:variable> + + <xsl:call-template name="write.chunk"> + <xsl:with-param name="filename" select="$filename"/> + <xsl:with-param name="content"> + <xsl:call-template name="chunk-element-content"> + <xsl:with-param name="prev" select="/foo"/> + <xsl:with-param name="next" select="/foo"/> + <xsl:with-param name="nav.context" select="'toc'"/> + <xsl:with-param name="content"> + <xsl:copy-of select="$lot"/> + </xsl:with-param> + </xsl:call-template> + </xsl:with-param> + <xsl:with-param name="quiet" select="$chunk.quietly"/> + </xsl:call-template> + <!-- And output a link to this file --> + <div> + <xsl:attribute name="class"> + <xsl:text>ListofTitles</xsl:text> + </xsl:attribute> + <a href="{$href}"> + <xsl:call-template name="gentext"> + <xsl:with-param name="key"> + <xsl:choose> + <xsl:when test="$type='table'">ListofTables</xsl:when> + <xsl:when test="$type='figure'">ListofFigures</xsl:when> + <xsl:when test="$type='equation'">ListofEquations</xsl:when> + <xsl:when test="$type='example'">ListofExamples</xsl:when> + <xsl:when test="$type='procedure'">ListofProcedures</xsl:when> + <xsl:otherwise>ListofUnknown</xsl:otherwise> + </xsl:choose> + </xsl:with-param> + </xsl:call-template> + </a> + </div> + </xsl:if> +</xsl:template> + +<!-- ==================================================================== --> + +<xsl:template name="in.other.chunk"> + <xsl:param name="chunk" select="."/> + <xsl:param name="node" select="."/> + + <xsl:variable name="is.chunk"> + <xsl:call-template name="chunk"> + <xsl:with-param name="node" select="$node"/> + </xsl:call-template> + </xsl:variable> + +<!-- + <xsl:message> + <xsl:text>in.other.chunk: </xsl:text> + <xsl:value-of select="name($chunk)"/> + <xsl:text> </xsl:text> + <xsl:value-of select="name($node)"/> + <xsl:text> </xsl:text> + <xsl:value-of select="$chunk = $node"/> + <xsl:text> </xsl:text> + <xsl:value-of select="$is.chunk"/> + </xsl:message> +--> + + <xsl:choose> + <xsl:when test="$chunk = $node">0</xsl:when> + <xsl:when test="$is.chunk = 1">1</xsl:when> + <xsl:when test="count($node) = 0">0</xsl:when> + <xsl:otherwise> + <xsl:call-template name="in.other.chunk"> + <xsl:with-param name="chunk" select="$chunk"/> + <xsl:with-param name="node" select="$node/parent::*"/> + </xsl:call-template> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template name="count.footnotes.in.this.chunk"> + <xsl:param name="node" select="."/> + <xsl:param name="footnotes" select="$node//footnote"/> + <xsl:param name="count" select="0"/> + +<!-- + <xsl:message> + <xsl:text>count.footnotes.in.this.chunk: </xsl:text> + <xsl:value-of select="name($node)"/> + </xsl:message> +--> + + <xsl:variable name="in.other.chunk"> + <xsl:call-template name="in.other.chunk"> + <xsl:with-param name="chunk" select="$node"/> + <xsl:with-param name="node" select="$footnotes[1]"/> + </xsl:call-template> + </xsl:variable> + + <xsl:choose> + <xsl:when test="count($footnotes) = 0"> + <xsl:value-of select="$count"/> + </xsl:when> + <xsl:otherwise> + <xsl:choose> + <xsl:when test="$in.other.chunk != 0"> + <xsl:call-template name="count.footnotes.in.this.chunk"> + <xsl:with-param name="node" select="$node"/> + <xsl:with-param name="footnotes" + select="$footnotes[position() > 1]"/> + <xsl:with-param name="count" select="$count"/> + </xsl:call-template> + </xsl:when> + <xsl:when test="$footnotes[1]/ancestor::table + |$footnotes[1]/ancestor::informaltable"> + <xsl:call-template name="count.footnotes.in.this.chunk"> + <xsl:with-param name="node" select="$node"/> + <xsl:with-param name="footnotes" + select="$footnotes[position() > 1]"/> + <xsl:with-param name="count" select="$count"/> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="count.footnotes.in.this.chunk"> + <xsl:with-param name="node" select="$node"/> + <xsl:with-param name="footnotes" + select="$footnotes[position() > 1]"/> + <xsl:with-param name="count" select="$count + 1"/> + </xsl:call-template> + </xsl:otherwise> + </xsl:choose> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template name="process.footnotes.in.this.chunk"> + <xsl:param name="node" select="."/> + <xsl:param name="footnotes" select="$node//footnote"/> + +<!-- + <xsl:message>process.footnotes.in.this.chunk</xsl:message> +--> + + <xsl:variable name="in.other.chunk"> + <xsl:call-template name="in.other.chunk"> + <xsl:with-param name="chunk" select="$node"/> + <xsl:with-param name="node" select="$footnotes[1]"/> + </xsl:call-template> + </xsl:variable> + + <xsl:choose> + <xsl:when test="count($footnotes) = 0"> + <!-- nop --> + </xsl:when> + <xsl:otherwise> + <xsl:choose> + <xsl:when test="$in.other.chunk != 0"> + <xsl:call-template name="process.footnotes.in.this.chunk"> + <xsl:with-param name="node" select="$node"/> + <xsl:with-param name="footnotes" + select="$footnotes[position() > 1]"/> + </xsl:call-template> + </xsl:when> + <xsl:when test="$footnotes[1]/ancestor::table + |$footnotes[1]/ancestor::informaltable"> + <xsl:call-template name="process.footnotes.in.this.chunk"> + <xsl:with-param name="node" select="$node"/> + <xsl:with-param name="footnotes" + select="$footnotes[position() > 1]"/> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates select="$footnotes[1]" + mode="process.footnote.mode"/> + <xsl:call-template name="process.footnotes.in.this.chunk"> + <xsl:with-param name="node" select="$node"/> + <xsl:with-param name="footnotes" + select="$footnotes[position() > 1]"/> + </xsl:call-template> + </xsl:otherwise> + </xsl:choose> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template name="process.footnotes"> + <xsl:variable name="footnotes" select=".//footnote"/> + <xsl:variable name="fcount"> + <xsl:call-template name="count.footnotes.in.this.chunk"> + <xsl:with-param name="node" select="."/> + <xsl:with-param name="footnotes" select="$footnotes"/> + </xsl:call-template> + </xsl:variable> + +<!-- + <xsl:message> + <xsl:value-of select="name(.)"/> + <xsl:text> fcount: </xsl:text> + <xsl:value-of select="$fcount"/> + </xsl:message> +--> + + <!-- Only bother to do this if there's at least one non-table footnote --> + <xsl:if test="$fcount > 0"> + <div class="footnotes"> + <br/> + <hr width="100" align="{$direction.align.start}"/> + <xsl:call-template name="process.footnotes.in.this.chunk"> + <xsl:with-param name="node" select="."/> + <xsl:with-param name="footnotes" select="$footnotes"/> + </xsl:call-template> + </div> + </xsl:if> + + <!-- FIXME: When chunking, only the annotations actually used + in this chunk should be referenced. I don't think it + does any harm to reference them all, but it adds + unnecessary bloat to each chunk. --> + <xsl:if test="$annotation.support != 0 and //annotation"> + <div class="annotation-list"> + <div class="annotation-nocss"> + <p>The following annotations are from this essay. You are seeing + them here because your browser doesn’t support the user-interface + techniques used to make them appear as ‘popups’ on modern browsers.</p> + </div> + + <xsl:apply-templates select="//annotation" + mode="annotation-popup"/> + </div> + </xsl:if> +</xsl:template> + +<xsl:template name="process.chunk.footnotes"> + <xsl:variable name="is.chunk"> + <xsl:call-template name="chunk"/> + </xsl:variable> + <xsl:if test="$is.chunk = 1"> + <xsl:call-template name="process.footnotes"/> + </xsl:if> +</xsl:template> + +<!-- ====================================================================== --> + +<xsl:template name="chunk"> + <xsl:param name="node" select="."/> + <!-- returns 1 if $node is a chunk --> + + <!-- ==================================================================== --> + <!-- What's a chunk? + + The root element + appendix + article + bibliography in article or part or book + book + chapter + colophon + glossary in article or part or book + index in article or part or book + part + preface + refentry + reference + sect{1,2,3,4,5} if position()>1 && depth < chunk.section.depth + section if position()>1 && depth < chunk.section.depth + set + setindex + --> + <!-- ==================================================================== --> + +<!-- + <xsl:message> + <xsl:text>chunk: </xsl:text> + <xsl:value-of select="name($node)"/> + <xsl:text>(</xsl:text> + <xsl:value-of select="$node/@id"/> + <xsl:text>)</xsl:text> + <xsl:text> csd: </xsl:text> + <xsl:value-of select="$chunk.section.depth"/> + <xsl:text> cfs: </xsl:text> + <xsl:value-of select="$chunk.first.sections"/> + <xsl:text> ps: </xsl:text> + <xsl:value-of select="count($node/parent::section)"/> + <xsl:text> prs: </xsl:text> + <xsl:value-of select="count($node/preceding-sibling::section)"/> + </xsl:message> +--> + + <xsl:choose> + <xsl:when test="$node/parent::*/processing-instruction('dbhtml')[normalize-space(.) = 'stop-chunking']">0</xsl:when> + <xsl:when test="not($node/parent::*)">1</xsl:when> + + <xsl:when test="local-name($node) = 'sect1' + and $chunk.section.depth >= 1 + and ($chunk.first.sections != 0 + or count($node/preceding-sibling::sect1) > 0)"> + <xsl:text>1</xsl:text> + </xsl:when> + <xsl:when test="local-name($node) = 'sect2' + and $chunk.section.depth >= 2 + and ($chunk.first.sections != 0 + or count($node/preceding-sibling::sect2) > 0)"> + <xsl:call-template name="chunk"> + <xsl:with-param name="node" select="$node/parent::*"/> + </xsl:call-template> + </xsl:when> + <xsl:when test="local-name($node) = 'sect3' + and $chunk.section.depth >= 3 + and ($chunk.first.sections != 0 + or count($node/preceding-sibling::sect3) > 0)"> + <xsl:call-template name="chunk"> + <xsl:with-param name="node" select="$node/parent::*"/> + </xsl:call-template> + </xsl:when> + <xsl:when test="local-name($node) = 'sect4' + and $chunk.section.depth >= 4 + and ($chunk.first.sections != 0 + or count($node/preceding-sibling::sect4) > 0)"> + <xsl:call-template name="chunk"> + <xsl:with-param name="node" select="$node/parent::*"/> + </xsl:call-template> + </xsl:when> + <xsl:when test="local-name($node) = 'sect5' + and $chunk.section.depth >= 5 + and ($chunk.first.sections != 0 + or count($node/preceding-sibling::sect5) > 0)"> + <xsl:call-template name="chunk"> + <xsl:with-param name="node" select="$node/parent::*"/> + </xsl:call-template> + </xsl:when> + <xsl:when test="local-name($node) = 'section' + and $chunk.section.depth >= count($node/ancestor::section)+1 + and ($chunk.first.sections != 0 + or count($node/preceding-sibling::section) > 0)"> + <xsl:call-template name="chunk"> + <xsl:with-param name="node" select="$node/parent::*"/> + </xsl:call-template> + </xsl:when> + + <xsl:when test="local-name($node)='preface'">1</xsl:when> + <xsl:when test="local-name($node)='chapter'">1</xsl:when> + <xsl:when test="local-name($node)='appendix'">1</xsl:when> + <xsl:when test="local-name($node)='article'">1</xsl:when> + <xsl:when test="local-name($node)='part'">1</xsl:when> + <xsl:when test="local-name($node)='reference'">1</xsl:when> + <xsl:when test="local-name($node)='refentry'">1</xsl:when> + <xsl:when test="local-name($node)='index' and ($generate.index != 0 or count($node/*) > 0) + and (local-name($node/parent::*) = 'article' + or local-name($node/parent::*) = 'book' + or local-name($node/parent::*) = 'part' + )">1</xsl:when> + <xsl:when test="local-name($node)='bibliography' + and (local-name($node/parent::*) = 'article' + or local-name($node/parent::*) = 'book' + or local-name($node/parent::*) = 'part' + )">1</xsl:when> + <xsl:when test="local-name($node)='glossary' + and (local-name($node/parent::*) = 'article' + or local-name($node/parent::*) = 'book' + or local-name($node/parent::*) = 'part' + )">1</xsl:when> + <xsl:when test="local-name($node)='colophon'">1</xsl:when> + <xsl:when test="local-name($node)='book'">1</xsl:when> + <xsl:when test="local-name($node)='set'">1</xsl:when> + <xsl:when test="local-name($node)='setindex'">1</xsl:when> + <xsl:when test="local-name($node)='legalnotice' + and $generate.legalnotice.link != 0">1</xsl:when> + <xsl:otherwise>0</xsl:otherwise> + </xsl:choose> +</xsl:template> + +<!-- ==================================================================== --> +<xsl:template name="href.target.uri"> + <xsl:param name="object" select="."/> + <xsl:variable name="ischunk"> + <xsl:call-template name="chunk"> + <xsl:with-param name="node" select="$object"/> + </xsl:call-template> + </xsl:variable> + + <xsl:apply-templates mode="chunk-filename" select="$object"/> + + <xsl:if test="$ischunk='0'"> + <xsl:text>#</xsl:text> + <xsl:call-template name="object.id"> + <xsl:with-param name="object" select="$object"/> + </xsl:call-template> + </xsl:if> +</xsl:template> + +<xsl:template name="href.target"> + <xsl:param name="context" select="."/> + <xsl:param name="object" select="."/> + <xsl:param name="toc-context" select="."/> + <!-- * If $toc-context contains some node other than the current node, --> + <!-- * it means we're processing a link in a TOC. In that case, to --> + <!-- * ensure the link will work correctly, we need to take a look at --> + <!-- * where the file containing the TOC will get written, and where --> + <!-- * the file that's being linked to will get written. --> + <xsl:variable name="toc-output-dir"> + <xsl:if test="not($toc-context = .)"> + <!-- * Get the $toc-context node and all its ancestors, look down --> + <!-- * through them to find the last/closest node to the --> + <!-- * toc-context node that has a "dbhtml dir" PI, and get the --> + <!-- * directory name from that. That's the name of the directory --> + <!-- * to which the current toc output file will get written. --> + <xsl:call-template name="dbhtml-dir"> + <xsl:with-param name="context" + select="$toc-context/ancestor-or-self::*[processing-instruction('dbhtml')[contains(.,'dir')]][last()]"/> + </xsl:call-template> + </xsl:if> + </xsl:variable> + <xsl:variable name="linked-file-output-dir"> + <xsl:if test="not($toc-context = .)"> + <!-- * Get the current node and all its ancestors, look down --> + <!-- * through them to find the last/closest node to the current --> + <!-- * node that has a "dbhtml dir" PI, and get the directory name --> + <!-- * from that. That's the name of the directory to which the --> + <!-- * file that's being linked to will get written. --> + <xsl:call-template name="dbhtml-dir"> + <xsl:with-param name="context" + select="ancestor-or-self::*[processing-instruction('dbhtml')[contains(.,'dir')]][last()]"/> + </xsl:call-template> + </xsl:if> + </xsl:variable> + <xsl:variable name="href.to.uri"> + <xsl:call-template name="href.target.uri"> + <xsl:with-param name="object" select="$object"/> + </xsl:call-template> + </xsl:variable> + <xsl:variable name="href.from.uri"> + <xsl:choose> + <xsl:when test="not($toc-context = .)"> + <xsl:call-template name="href.target.uri"> + <xsl:with-param name="object" select="$toc-context"/> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="href.target.uri"> + <xsl:with-param name="object" select="$context"/> + </xsl:call-template> + </xsl:otherwise> + </xsl:choose> + </xsl:variable> + <!-- * <xsl:message>toc-context: <xsl:value-of select="local-name($toc-context)"/></xsl:message> --> + <!-- * <xsl:message>node: <xsl:value-of select="local-name(.)"/></xsl:message> --> + <!-- * <xsl:message>context: <xsl:value-of select="local-name($context)"/></xsl:message> --> + <!-- * <xsl:message>object: <xsl:value-of select="local-name($object)"/></xsl:message> --> + <!-- * <xsl:message>toc-output-dir: <xsl:value-of select="$toc-output-dir"/></xsl:message> --> + <!-- * <xsl:message>linked-file-output-dir: <xsl:value-of select="$linked-file-output-dir"/></xsl:message> --> + <!-- * <xsl:message>href.to.uri: <xsl:value-of select="$href.to.uri"/></xsl:message> --> + <!-- * <xsl:message>href.from.uri: <xsl:value-of select="$href.from.uri"/></xsl:message> --> + <xsl:variable name="href.to"> + <xsl:choose> + <!-- * 2007-07-19, MikeSmith: Added the following conditional to --> + <!-- * deal with a problem case for links in TOCs. It checks to see --> + <!-- * if the output dir that a TOC will get written to is --> + <!-- * different from the output dir of the file being linked to. --> + <!-- * If it is different, we do not call trim.common.uri.paths. --> + <!-- * --> + <!-- * Reason why I added that conditional is: I ran into a bug for --> + <!-- * this case: --> + <!-- * --> + <!-- * 1. we are chunking into separate dirs --> + <!-- * --> + <!-- * 2. output for the TOC is written to current dir, but the file --> + <!-- * being linked to is written to some subdir "foo". --> + <!-- * --> + <!-- * For that case, links to that file in that TOC did not show --> + <!-- * the correct path - they omitted the "foo". --> + <!-- * --> + <!-- * The cause of that problem was that the trim.common.uri.paths --> + <!-- * template[1] was being called under all conditions. But it's --> + <!-- * apparent that we don't want to call trim.common.uri.paths in --> + <!-- * the case where a linked file is being written to a different --> + <!-- * directory than the TOC that contains the link, because doing --> + <!-- * so will cause a necessary (not redundant) directory-name --> + <!-- * part of the link to get inadvertently trimmed, resulting in --> + <!-- * a broken link to that file. Thus, added the conditional. --> + <!-- * --> + <!-- * [1] The purpose of the trim.common.uri.paths template is to --> + <!-- * prevent cases where, if we didn't call it, we end up with --> + <!-- * unnecessary, redundant directory names getting output; for --> + <!-- * example, "foo/foo/refname.html". --> + <xsl:when test="not($toc-output-dir = $linked-file-output-dir)"> + <xsl:value-of select="$href.to.uri"/> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="trim.common.uri.paths"> + <xsl:with-param name="uriA" select="$href.to.uri"/> + <xsl:with-param name="uriB" select="$href.from.uri"/> + <xsl:with-param name="return" select="'A'"/> + </xsl:call-template> + </xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:variable name="href.from"> + <xsl:call-template name="trim.common.uri.paths"> + <xsl:with-param name="uriA" select="$href.to.uri"/> + <xsl:with-param name="uriB" select="$href.from.uri"/> + <xsl:with-param name="return" select="'B'"/> + </xsl:call-template> + </xsl:variable> + <xsl:variable name="depth"> + <xsl:call-template name="count.uri.path.depth"> + <xsl:with-param name="filename" select="$href.from"/> + </xsl:call-template> + </xsl:variable> + <xsl:variable name="href"> + <xsl:call-template name="copy-string"> + <xsl:with-param name="string" select="'../'"/> + <xsl:with-param name="count" select="$depth"/> + </xsl:call-template> + <xsl:value-of select="$href.to"/> + </xsl:variable> + <!-- + <xsl:message> + <xsl:text>In </xsl:text> + <xsl:value-of select="name(.)"/> + <xsl:text> (</xsl:text> + <xsl:value-of select="$href.from"/> + <xsl:text>,</xsl:text> + <xsl:value-of select="$depth"/> + <xsl:text>) </xsl:text> + <xsl:value-of select="name($object)"/> + <xsl:text> href=</xsl:text> + <xsl:value-of select="$href"/> + </xsl:message> + --> + <xsl:value-of select="$href"/> +</xsl:template> + +<!-- Returns the complete olink href value if found --> +<!-- Must take into account any dbhtml dir of the chunk containing the olink --> +<xsl:template name="make.olink.href"> + <xsl:param name="olink.key" select="''"/> + <xsl:param name="target.database"/> + + <xsl:if test="$olink.key != ''"> + <xsl:variable name="target.href" > + <xsl:for-each select="$target.database" > + <xsl:value-of select="key('targetptr-key', $olink.key)[1]/@href" /> + </xsl:for-each> + </xsl:variable> + + <!-- an olink starting point may be in a subdirectory, so need + the "from" reference point to compute a relative path --> + + <xsl:variable name="from.href"> + <xsl:call-template name="olink.from.uri"> + <xsl:with-param name="target.database" select="$target.database"/> + <xsl:with-param name="object" select="."/> + <xsl:with-param name="object.targetdoc" select="$current.docid"/> + </xsl:call-template> + </xsl:variable> + + <!-- If the from.href has directory path, then must "../" upward + to document level --> + <xsl:variable name="upward.from.path"> + <xsl:call-template name="upward.path"> + <xsl:with-param name="path" select="$from.href"/> + </xsl:call-template> + </xsl:variable> + + <xsl:variable name="targetdoc"> + <xsl:value-of select="substring-before($olink.key, '/')"/> + </xsl:variable> + + <!-- Does the target database use a sitemap? --> + <xsl:variable name="use.sitemap"> + <xsl:choose> + <xsl:when test="$target.database//sitemap">1</xsl:when> + <xsl:otherwise>0</xsl:otherwise> + </xsl:choose> + </xsl:variable> + + + <!-- Get the baseuri for this targetptr --> + <xsl:variable name="baseuri" > + <xsl:choose> + <!-- Does the database use a sitemap? --> + <xsl:when test="$use.sitemap != 0" > + <xsl:choose> + <!-- Was current.docid parameter set? --> + <xsl:when test="$current.docid != ''"> + <!-- Was it found in the database? --> + <xsl:variable name="currentdoc.key" > + <xsl:for-each select="$target.database" > + <xsl:value-of select="key('targetdoc-key', + $current.docid)/@targetdoc" /> + </xsl:for-each> + </xsl:variable> + <xsl:choose> + <xsl:when test="$currentdoc.key != ''"> + <xsl:for-each select="$target.database" > + <xsl:call-template name="targetpath" > + <xsl:with-param name="dirnode" + select="key('targetdoc-key', $current.docid)/parent::dir"/> + <xsl:with-param name="targetdoc" select="$targetdoc"/> + </xsl:call-template> + </xsl:for-each > + </xsl:when> + <xsl:otherwise> + <xsl:message> + <xsl:text>Olink error: cannot compute relative </xsl:text> + <xsl:text>sitemap path because $current.docid '</xsl:text> + <xsl:value-of select="$current.docid"/> + <xsl:text>' not found in target database.</xsl:text> + </xsl:message> + </xsl:otherwise> + </xsl:choose> + </xsl:when> + <xsl:otherwise> + <xsl:message> + <xsl:text>Olink warning: cannot compute relative </xsl:text> + <xsl:text>sitemap path without $current.docid parameter</xsl:text> + </xsl:message> + </xsl:otherwise> + </xsl:choose> + <!-- In either case, add baseuri from its document entry--> + <xsl:variable name="docbaseuri"> + <xsl:for-each select="$target.database" > + <xsl:value-of select="key('targetdoc-key', $targetdoc)/@baseuri" /> + </xsl:for-each> + </xsl:variable> + <xsl:if test="$docbaseuri != ''" > + <xsl:value-of select="$docbaseuri"/> + </xsl:if> + </xsl:when> + <!-- No database sitemap in use --> + <xsl:otherwise> + <!-- Just use any baseuri from its document entry --> + <xsl:variable name="docbaseuri"> + <xsl:for-each select="$target.database" > + <xsl:value-of select="key('targetdoc-key', $targetdoc)/@baseuri" /> + </xsl:for-each> + </xsl:variable> + <xsl:if test="$docbaseuri != ''" > + <xsl:value-of select="$docbaseuri"/> + </xsl:if> + </xsl:otherwise> + </xsl:choose> + </xsl:variable> + + <!-- Form the href information --> + <xsl:if test="not(contains($baseuri, ':'))"> + <!-- if not an absolute uri, add upward path from olink chunk --> + <xsl:value-of select="$upward.from.path"/> + </xsl:if> + + <xsl:if test="$baseuri != ''"> + <xsl:value-of select="$baseuri"/> + <xsl:if test="substring($target.href,1,1) != '#'"> + <!--xsl:text>/</xsl:text--> + </xsl:if> + </xsl:if> + <!-- optionally turn off frag for PDF references --> + <xsl:if test="not($insert.olink.pdf.frag = 0 and + translate(substring($baseuri, string-length($baseuri) - 3), + 'PDF', 'pdf') = '.pdf' + and starts-with($target.href, '#') )"> + <xsl:value-of select="$target.href"/> + </xsl:if> + </xsl:if> +</xsl:template> + +<!-- Computes "../" to reach top --> +<xsl:template name="upward.path"> + <xsl:param name="path" select="''"/> + <xsl:choose> + <!-- Don't bother with absolute uris --> + <xsl:when test="contains($path, ':')"/> + <xsl:when test="starts-with($path, '/')"/> + <xsl:when test="contains($path, '/')"> + <xsl:text>../</xsl:text> + <xsl:call-template name="upward.path"> + <xsl:with-param name="path" select="substring-after($path, '/')"/> + </xsl:call-template> + </xsl:when> + </xsl:choose> + +</xsl:template> + +<!-- ==================================================================== --> + +<xsl:template name="html.head"> + <xsl:param name="prev" select="/foo"/> + <xsl:param name="next" select="/foo"/> + <xsl:variable name="this" select="."/> + <xsl:variable name="home" select="/*[1]"/> + <xsl:variable name="up" select="parent::*"/> + + <head> + <xsl:call-template name="system.head.content"/> + <xsl:call-template name="head.content"/> + + <xsl:if test="$home"> + <link rel="home"> + <xsl:attribute name="href"> + <xsl:call-template name="href.target"> + <xsl:with-param name="object" select="$home"/> + </xsl:call-template> + </xsl:attribute> + <xsl:attribute name="title"> + <xsl:apply-templates select="$home" + mode="object.title.markup.textonly"/> + </xsl:attribute> + </link> + </xsl:if> + + <xsl:if test="$up"> + <link rel="up"> + <xsl:attribute name="href"> + <xsl:call-template name="href.target"> + <xsl:with-param name="object" select="$up"/> + </xsl:call-template> + </xsl:attribute> + <xsl:attribute name="title"> + <xsl:apply-templates select="$up" mode="object.title.markup.textonly"/> + </xsl:attribute> + </link> + </xsl:if> + + <xsl:if test="$prev"> + <link rel="prev"> + <xsl:attribute name="href"> + <xsl:call-template name="href.target"> + <xsl:with-param name="object" select="$prev"/> + </xsl:call-template> + </xsl:attribute> + <xsl:attribute name="title"> + <xsl:apply-templates select="$prev" mode="object.title.markup.textonly"/> + </xsl:attribute> + </link> + </xsl:if> + + <xsl:if test="$next"> + <link rel="next"> + <xsl:attribute name="href"> + <xsl:call-template name="href.target"> + <xsl:with-param name="object" select="$next"/> + </xsl:call-template> + </xsl:attribute> + <xsl:attribute name="title"> + <xsl:apply-templates select="$next" mode="object.title.markup.textonly"/> + </xsl:attribute> + </link> + </xsl:if> + + <xsl:if test="$html.extra.head.links != 0"> + <xsl:for-each select="//part + |//reference + |//preface + |//chapter + |//article + |//refentry + |//appendix[not(parent::article)]|appendix + |//glossary[not(parent::article)]|glossary + |//index[not(parent::article)]|index"> + <link rel="{local-name(.)}"> + <xsl:attribute name="href"> + <xsl:call-template name="href.target"> + <xsl:with-param name="context" select="$this"/> + <xsl:with-param name="object" select="."/> + </xsl:call-template> + </xsl:attribute> + <xsl:attribute name="title"> + <xsl:apply-templates select="." mode="object.title.markup.textonly"/> + </xsl:attribute> + </link> + </xsl:for-each> + + <xsl:for-each select="section|sect1|refsection|refsect1"> + <link> + <xsl:attribute name="rel"> + <xsl:choose> + <xsl:when test="local-name($this) = 'section' + or local-name($this) = 'refsection'"> + <xsl:value-of select="'subsection'"/> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="'section'"/> + </xsl:otherwise> + </xsl:choose> + </xsl:attribute> + <xsl:attribute name="href"> + <xsl:call-template name="href.target"> + <xsl:with-param name="context" select="$this"/> + <xsl:with-param name="object" select="."/> + </xsl:call-template> + </xsl:attribute> + <xsl:attribute name="title"> + <xsl:apply-templates select="." mode="object.title.markup.textonly"/> + </xsl:attribute> + </link> + </xsl:for-each> + + <xsl:for-each select="sect2|sect3|sect4|sect5|refsect2|refsect3"> + <link rel="subsection"> + <xsl:attribute name="href"> + <xsl:call-template name="href.target"> + <xsl:with-param name="context" select="$this"/> + <xsl:with-param name="object" select="."/> + </xsl:call-template> + </xsl:attribute> + <xsl:attribute name="title"> + <xsl:apply-templates select="." mode="object.title.markup.textonly"/> + </xsl:attribute> + </link> + </xsl:for-each> + </xsl:if> + + <!-- * if we have a legalnotice and user wants it output as a --> + <!-- * separate page and $html.head.legalnotice.link.types is --> + <!-- * non-empty, we generate a link or links for each value in --> + <!-- * $html.head.legalnotice.link.types --> + <xsl:if test="//legalnotice + and not($generate.legalnotice.link = 0) + and not($html.head.legalnotice.link.types = '')"> + <xsl:call-template name="make.legalnotice.head.links"/> + </xsl:if> + + <xsl:call-template name="user.head.content"/> + </head> +</xsl:template> + +<!-- ==================================================================== --> + +<xsl:template name="header.navigation"> + <xsl:param name="prev" select="/foo"/> + <xsl:param name="next" select="/foo"/> + <xsl:param name="nav.context"/> + + <xsl:variable name="home" select="/*[1]"/> + <xsl:variable name="up" select="parent::*"/> + + <xsl:variable name="row1" select="$navig.showtitles != 0"/> + <xsl:variable name="row2" select="count($prev) > 0 + or (count($up) > 0 + and generate-id($up) != generate-id($home) + and $navig.showtitles != 0) + or count($next) > 0"/> + + <xsl:if test="$suppress.navigation = '0' and $suppress.header.navigation = '0'"> + <div class="navheader"> + <xsl:if test="$row1 or $row2"> + <table width="100%" summary="Navigation header"> + <xsl:if test="$row1"> + <tr> + <th colspan="3" align="center"> + <xsl:apply-templates select="." mode="object.title.markup"/> + </th> + </tr> + </xsl:if> + + <xsl:if test="$row2"> + <tr> + <td width="20%" align="{$direction.align.start}"> + <xsl:if test="count($prev)>0"> + <a accesskey="p"> + <xsl:attribute name="href"> + <xsl:call-template name="href.target"> + <xsl:with-param name="object" select="$prev"/> + </xsl:call-template> + </xsl:attribute> + <xsl:call-template name="navig.content"> + <xsl:with-param name="direction" select="'prev'"/> + </xsl:call-template> + </a> + </xsl:if> + <xsl:text> </xsl:text> + </td> + <th width="60%" align="center"> + <xsl:choose> + <xsl:when test="count($up) > 0 + and generate-id($up) != generate-id($home) + and $navig.showtitles != 0"> + <xsl:apply-templates select="$up" mode="object.title.markup"/> + </xsl:when> + <xsl:otherwise> </xsl:otherwise> + </xsl:choose> + </th> + <td width="20%" align="{$direction.align.end}"> + <xsl:text> </xsl:text> + <xsl:if test="count($next)>0"> + <a accesskey="n"> + <xsl:attribute name="href"> + <xsl:call-template name="href.target"> + <xsl:with-param name="object" select="$next"/> + </xsl:call-template> + </xsl:attribute> + <xsl:call-template name="navig.content"> + <xsl:with-param name="direction" select="'next'"/> + </xsl:call-template> + </a> + </xsl:if> + </td> + </tr> + </xsl:if> + </table> + </xsl:if> + <xsl:if test="$header.rule != 0"> + <hr/> + </xsl:if> + </div> + </xsl:if> +</xsl:template> + +<!-- ==================================================================== --> + +<xsl:template name="footer.navigation"> + <xsl:param name="prev" select="/foo"/> + <xsl:param name="next" select="/foo"/> + <xsl:param name="nav.context"/> + + <xsl:variable name="home" select="/*[1]"/> + <xsl:variable name="up" select="parent::*"/> + + <xsl:variable name="row1" select="count($prev) > 0 + or count($up) > 0 + or count($next) > 0"/> + + <xsl:variable name="row2" select="($prev and $navig.showtitles != 0) + or (generate-id($home) != generate-id(.) + or $nav.context = 'toc') + or ($chunk.tocs.and.lots != 0 + and $nav.context != 'toc') + or ($next and $navig.showtitles != 0)"/> + + <xsl:if test="$suppress.navigation = '0' and $suppress.footer.navigation = '0'"> + <div class="navfooter"> + <xsl:if test="$footer.rule != 0"> + <hr/> + </xsl:if> + + <xsl:if test="$row1 or $row2"> + <table width="100%" summary="Navigation footer"> + <xsl:if test="$row1"> + <tr> + <td width="40%" align="{$direction.align.start}"> + <xsl:if test="count($prev)>0"> + <a accesskey="p"> + <xsl:attribute name="href"> + <xsl:call-template name="href.target"> + <xsl:with-param name="object" select="$prev"/> + </xsl:call-template> + </xsl:attribute> + <xsl:call-template name="navig.content"> + <xsl:with-param name="direction" select="'prev'"/> + </xsl:call-template> + </a> + </xsl:if> + <xsl:text> </xsl:text> + </td> + <td width="20%" align="center"> + <xsl:choose> + <xsl:when test="count($up)>0 + and generate-id($up) != generate-id($home)"> + <a accesskey="u"> + <xsl:attribute name="href"> + <xsl:call-template name="href.target"> + <xsl:with-param name="object" select="$up"/> + </xsl:call-template> + </xsl:attribute> + <xsl:call-template name="navig.content"> + <xsl:with-param name="direction" select="'up'"/> + </xsl:call-template> + </a> + </xsl:when> + <xsl:otherwise> </xsl:otherwise> + </xsl:choose> + </td> + <td width="40%" align="{$direction.align.end}"> + <xsl:text> </xsl:text> + <xsl:if test="count($next)>0"> + <a accesskey="n"> + <xsl:attribute name="href"> + <xsl:call-template name="href.target"> + <xsl:with-param name="object" select="$next"/> + </xsl:call-template> + </xsl:attribute> + <xsl:call-template name="navig.content"> + <xsl:with-param name="direction" select="'next'"/> + </xsl:call-template> + </a> + </xsl:if> + </td> + </tr> + </xsl:if> + + <xsl:if test="$row2"> + <tr> + <td width="40%" align="{$direction.align.start}" valign="top"> + <xsl:if test="$navig.showtitles != 0"> + <xsl:apply-templates select="$prev" mode="object.title.markup"/> + </xsl:if> + <xsl:text> </xsl:text> + </td> + <td width="20%" align="center"> + <xsl:choose> + <xsl:when test="$home != . or $nav.context = 'toc'"> + <a accesskey="h"> + <xsl:attribute name="href"> + <xsl:call-template name="href.target"> + <xsl:with-param name="object" select="$home"/> + </xsl:call-template> + </xsl:attribute> + <xsl:call-template name="navig.content"> + <xsl:with-param name="direction" select="'home'"/> + </xsl:call-template> + </a> + <xsl:if test="$chunk.tocs.and.lots != 0 and $nav.context != 'toc'"> + <xsl:text> | </xsl:text> + </xsl:if> + </xsl:when> + <xsl:otherwise> </xsl:otherwise> + </xsl:choose> + + <xsl:if test="$chunk.tocs.and.lots != 0 and $nav.context != 'toc'"> + <a accesskey="t"> + <xsl:attribute name="href"> + <xsl:apply-templates select="/*[1]" + mode="recursive-chunk-filename"> + <xsl:with-param name="recursive" select="true()"/> + </xsl:apply-templates> + <xsl:text>-toc</xsl:text> + <xsl:value-of select="$html.ext"/> + </xsl:attribute> + <xsl:call-template name="gentext"> + <xsl:with-param name="key" select="'nav-toc'"/> + </xsl:call-template> + </a> + </xsl:if> + </td> + <td width="40%" align="{$direction.align.end}" valign="top"> + <xsl:text> </xsl:text> + <xsl:if test="$navig.showtitles != 0"> + <xsl:apply-templates select="$next" mode="object.title.markup"/> + </xsl:if> + </td> + </tr> + </xsl:if> + </table> + </xsl:if> + </div> + </xsl:if> +</xsl:template> + +<!-- ==================================================================== --> + +<xsl:template name="navig.content"> + <xsl:param name="direction" select="next"/> + <xsl:variable name="navtext"> + <xsl:choose> + <xsl:when test="$direction = 'prev'"> + <xsl:call-template name="gentext.nav.prev"/> + </xsl:when> + <xsl:when test="$direction = 'next'"> + <xsl:call-template name="gentext.nav.next"/> + </xsl:when> + <xsl:when test="$direction = 'up'"> + <xsl:call-template name="gentext.nav.up"/> + </xsl:when> + <xsl:when test="$direction = 'home'"> + <xsl:call-template name="gentext.nav.home"/> + </xsl:when> + <xsl:otherwise> + <xsl:text>xxx</xsl:text> + </xsl:otherwise> + </xsl:choose> + </xsl:variable> + + <xsl:choose> + <xsl:when test="$navig.graphics != 0"> + <img> + <xsl:attribute name="src"> + <xsl:value-of select="$navig.graphics.path"/> + <xsl:value-of select="$direction"/> + <xsl:value-of select="$navig.graphics.extension"/> + </xsl:attribute> + <xsl:attribute name="alt"> + <xsl:value-of select="$navtext"/> + </xsl:attribute> + </img> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="$navtext"/> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<!-- ==================================================================== --> + +<!-- * The following template assumes that the first legalnotice --> +<!-- * instance found in a document applies to the contents of the --> +<!-- * entire document. It generates an HTML link in each chunk, back --> +<!-- * to the file containing the contents of the first legalnotice. --> +<!-- * --> +<!-- * Actually, it may generate multiple link instances in each chunk, --> +<!-- * because it walks through the space-separated list of link --> +<!-- * types specified in the $html.head.legalnotice.link.types param, --> +<!-- * popping off link types and generating links for them until it --> +<!-- * depletes the list. --> + +<xsl:template name="make.legalnotice.head.links"> + <!-- * the following ID is used as part of the legalnotice filename; --> + <!-- * we need it in order to construct the filename for use in the --> + <!-- * value of the href attribute on the link --> + + <xsl:param name="ln-node" select="(//legalnotice)[1]"/> + + <xsl:param name="linktype"> + <xsl:choose> + <xsl:when test="contains($html.head.legalnotice.link.types, ' ')"> + <xsl:value-of + select="normalize-space( + substring-before($html.head.legalnotice.link.types, ' '))"/> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="$html.head.legalnotice.link.types"/> + </xsl:otherwise> + </xsl:choose> + </xsl:param> + <xsl:param + name="remaining.linktypes" + select="concat( + normalize-space( + substring-after($html.head.legalnotice.link.types, ' ')),' ')"/> + <xsl:if test="not($linktype = '')"> + + <!-- Compute name of legalnotice file (see titlepage.xsl) --> + <xsl:variable name="file"> + <xsl:call-template name="ln.or.rh.filename"> + <xsl:with-param name="node" select="$ln-node"/> + </xsl:call-template> + </xsl:variable> + + <link rel="{$linktype}"> + <xsl:attribute name="href"> + <xsl:value-of select="$file"/> + </xsl:attribute> + <xsl:attribute name="title"> + <xsl:apply-templates select="(//legalnotice)[1]" + mode="object.title.markup.textonly"/> + </xsl:attribute> + </link> + <xsl:call-template name="make.legalnotice.head.links"> + <!-- * pop the next value off the list of link types --> + <xsl:with-param + name="linktype" + select="substring-before($remaining.linktypes, ' ')"/> + <!-- * remove the link type from the list of remaining link types --> + <xsl:with-param + name="remaining.linktypes" + select="substring-after($remaining.linktypes, ' ')"/> + </xsl:call-template> + </xsl:if> +</xsl:template> + +<!-- ==================================================================== --> +<xsl:template name="chunk-element-content"> + <xsl:param name="prev"/> + <xsl:param name="next"/> + <xsl:param name="nav.context"/> + <xsl:param name="content"> + <xsl:apply-imports/> + </xsl:param> + + <xsl:call-template name="user.preroot"/> + + <html> + <xsl:call-template name="html.head"> + <xsl:with-param name="prev" select="$prev"/> + <xsl:with-param name="next" select="$next"/> + </xsl:call-template> + + <body> + <xsl:call-template name="body.attributes"/> + <xsl:call-template name="user.header.navigation"/> + + <xsl:call-template name="header.navigation"> + <xsl:with-param name="prev" select="$prev"/> + <xsl:with-param name="next" select="$next"/> + <xsl:with-param name="nav.context" select="$nav.context"/> + </xsl:call-template> + + <xsl:call-template name="user.header.content"/> + + <xsl:copy-of select="$content"/> + + <xsl:call-template name="user.footer.content"/> + + <xsl:call-template name="footer.navigation"> + <xsl:with-param name="prev" select="$prev"/> + <xsl:with-param name="next" select="$next"/> + <xsl:with-param name="nav.context" select="$nav.context"/> + </xsl:call-template> + + <xsl:call-template name="user.footer.navigation"/> + </body> + </html> + <xsl:value-of select="$chunk.append"/> +</xsl:template> + +<!-- ==================================================================== --> +<xsl:template name="generate.manifest"> + <xsl:param name="node" select="/"/> + <xsl:call-template name="write.text.chunk"> + <xsl:with-param name="filename"> + <xsl:if test="$manifest.in.base.dir != 0"> + <xsl:value-of select="$base.dir"/> + </xsl:if> + <xsl:value-of select="$manifest"/> + </xsl:with-param> + <xsl:with-param name="method" select="'text'"/> + <xsl:with-param name="content"> + <xsl:apply-templates select="$node" mode="enumerate-files"/> + </xsl:with-param> + <xsl:with-param name="encoding" select="$chunker.output.encoding"/> + </xsl:call-template> +</xsl:template> + +<!-- ==================================================================== --> + +<xsl:template name="dbhtml-dir"> + <xsl:param name="context" select="."/> + <!-- directories are now inherited from previous levels --> + <xsl:variable name="ppath"> + <xsl:if test="$context/parent::*"> + <xsl:call-template name="dbhtml-dir"> + <xsl:with-param name="context" select="$context/parent::*"/> + </xsl:call-template> + </xsl:if> + </xsl:variable> + <xsl:variable name="path"> + <xsl:call-template name="pi.dbhtml_dir"> + <xsl:with-param name="node" select="$context"/> + </xsl:call-template> + </xsl:variable> + <xsl:choose> + <xsl:when test="$path = ''"> + <xsl:if test="$ppath != ''"> + <xsl:value-of select="$ppath"/> + </xsl:if> + </xsl:when> + <xsl:otherwise> + <xsl:if test="$ppath != ''"> + <xsl:value-of select="$ppath"/> + <xsl:if test="substring($ppath, string-length($ppath), 1) != '/'"> + <xsl:text>/</xsl:text> + </xsl:if> + </xsl:if> + <xsl:value-of select="$path"/> + <xsl:text>/</xsl:text> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +</xsl:stylesheet> diff --git a/docbook-xsl-1.76.1/html/chunk.xsl b/docbook-xsl-1.76.1/html/chunk.xsl new file mode 100644 index 0000000..a89e242 --- /dev/null +++ b/docbook-xsl-1.76.1/html/chunk.xsl @@ -0,0 +1,52 @@ +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + xmlns:exsl="http://exslt.org/common" + version="1.0" + exclude-result-prefixes="exsl"> + +<!-- ******************************************************************** + $Id: chunk.xsl 6910 2007-06-28 23:23:30Z xmldoc $ + ******************************************************************** + + This file is part of the XSL DocBook Stylesheet distribution. + See ../README or http://docbook.sf.net/release/xsl/current/ for + copyright and other information. + + ******************************************************************** --> + +<!-- ==================================================================== --> + +<!-- First import the non-chunking templates that format elements + within each chunk file. In a customization, you should + create a separate non-chunking customization layer such + as mydocbook.xsl that imports the original docbook.xsl and + customizes any presentation templates. Then your chunking + customization should import mydocbook.xsl instead of + docbook.xsl. --> +<xsl:import href="docbook.xsl"/> + +<!-- chunk-common.xsl contains all the named templates for chunking. + In a customization file, you import chunk-common.xsl, then + add any customized chunking templates of the same name. + They will have import precedence over the original + chunking templates in chunk-common.xsl. --> +<xsl:import href="chunk-common.xsl"/> + +<!-- The manifest.xsl module is no longer imported because its + templates were moved into chunk-common and chunk-code --> + +<!-- chunk-code.xsl contains all the chunking templates that use + a match attribute. In a customization it should be referenced + using <xsl:include> instead of <xsl:import>, and then add + any customized chunking templates with match attributes. But be sure + to add a priority="1" to such customized templates to resolve + its conflict with the original, since they have the + same import precedence. + + Using xsl:include prevents adding another layer + of import precedence, which would cause any + customizations that use xsl:apply-imports to wrongly + apply the chunking version instead of the original + non-chunking version to format an element. --> +<xsl:include href="chunk-code.xsl"/> + +</xsl:stylesheet> diff --git a/docbook-xsl-1.76.1/html/chunker.xsl b/docbook-xsl-1.76.1/html/chunker.xsl new file mode 100644 index 0000000..89a5d23 --- /dev/null +++ b/docbook-xsl-1.76.1/html/chunker.xsl @@ -0,0 +1,439 @@ +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + xmlns:saxon="http://icl.com/saxon" + xmlns:lxslt="http://xml.apache.org/xslt" + xmlns:redirect="http://xml.apache.org/xalan/redirect" + xmlns:exsl="http://exslt.org/common" + xmlns:doc="http://nwalsh.com/xsl/documentation/1.0" + version="1.0" + exclude-result-prefixes="saxon lxslt redirect exsl doc" + extension-element-prefixes="saxon redirect lxslt exsl"> + +<!-- ******************************************************************** + $Id: chunker.xsl 8526 2009-10-14 18:59:40Z bobstayton $ + ******************************************************************** + + This file is part of the XSL DocBook Stylesheet distribution. + See ../README or http://docbook.sf.net/release/xsl/current/ for + copyright and other information. + + ******************************************************************** --> + +<!-- ==================================================================== --> + +<!-- This stylesheet works with XSLT implementations that support --> +<!-- exsl:document, saxon:output, or Xalan's redirect:write --> +<!-- Note: Only Saxon 6.4.2 or later is supported. --> + +<xsl:param name="chunker.output.method" select="'html'"/> +<xsl:param name="chunker.output.encoding" select="'ISO-8859-1'"/> +<xsl:param name="chunker.output.indent" select="'no'"/> +<xsl:param name="chunker.output.omit-xml-declaration" select="'no'"/> +<xsl:param name="chunker.output.standalone" select="'no'"/> +<xsl:param name="chunker.output.doctype-public" select="''"/> +<xsl:param name="chunker.output.doctype-system" select="''"/> +<xsl:param name="chunker.output.media-type" select="''"/> +<xsl:param name="chunker.output.cdata-section-elements" select="''"/> +<xsl:param name="chunker.output.quiet" select="0"/> + +<xsl:param name="saxon.character.representation" select="'entity;decimal'"/> + +<!-- ==================================================================== --> + +<xsl:template name="make-relative-filename"> + <xsl:param name="base.dir" select="'./'"/> + <xsl:param name="base.name" select="''"/> + + <xsl:choose> + <!-- put Saxon first to work around a bug in libxslt --> + <xsl:when test="element-available('saxon:output')"> + <!-- Saxon doesn't make the chunks relative --> + <xsl:value-of select="concat($base.dir,$base.name)"/> + </xsl:when> + <xsl:when test="element-available('exsl:document')"> + <!-- EXSL document does make the chunks relative, I think --> + <xsl:choose> + <xsl:when test="count(parent::*) = 0"> + <xsl:value-of select="concat($base.dir,$base.name)"/> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="$base.name"/> + </xsl:otherwise> + </xsl:choose> + </xsl:when> + <xsl:when test="element-available('redirect:write')"> + <!-- Xalan doesn't make the chunks relative --> + <xsl:value-of select="concat($base.dir,$base.name)"/> + </xsl:when> + <xsl:otherwise> + <xsl:message terminate="yes"> + <xsl:text>Don't know how to chunk with </xsl:text> + <xsl:value-of select="system-property('xsl:vendor')"/> + </xsl:message> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template name="write.chunk"> + <xsl:param name="filename" select="''"/> + <xsl:param name="quiet" select="$chunker.output.quiet"/> + <xsl:param name="suppress-context-node-name" select="0"/> + <xsl:param name="message-prolog"/> + <xsl:param name="message-epilog"/> + + <xsl:param name="method" select="$chunker.output.method"/> + <xsl:param name="encoding" select="$chunker.output.encoding"/> + <xsl:param name="indent" select="$chunker.output.indent"/> + <xsl:param name="omit-xml-declaration" + select="$chunker.output.omit-xml-declaration"/> + <xsl:param name="standalone" select="$chunker.output.standalone"/> + <xsl:param name="doctype-public" select="$chunker.output.doctype-public"/> + <xsl:param name="doctype-system" select="$chunker.output.doctype-system"/> + <xsl:param name="media-type" select="$chunker.output.media-type"/> + <xsl:param name="cdata-section-elements" + select="$chunker.output.cdata-section-elements"/> + + <xsl:param name="content"/> + + <xsl:if test="$quiet = 0"> + <xsl:message> + <xsl:if test="not($message-prolog = '')"> + <xsl:value-of select="$message-prolog"/> + </xsl:if> + <xsl:text>Writing </xsl:text> + <xsl:value-of select="$filename"/> + <xsl:if test="name(.) != '' and $suppress-context-node-name = 0"> + <xsl:text> for </xsl:text> + <xsl:value-of select="name(.)"/> + <xsl:if test="@id or @xml:id"> + <xsl:text>(</xsl:text> + <xsl:value-of select="(@id|@xml:id)[1]"/> + <xsl:text>)</xsl:text> + </xsl:if> + </xsl:if> + <xsl:if test="not($message-epilog = '')"> + <xsl:value-of select="$message-epilog"/> + </xsl:if> + </xsl:message> + </xsl:if> + + <xsl:choose> + <xsl:when test="element-available('exsl:document')"> + <xsl:choose> + <!-- Handle the permutations ... --> + <xsl:when test="$media-type != ''"> + <xsl:choose> + <xsl:when test="$doctype-public != '' and $doctype-system != ''"> + <exsl:document href="{$filename}" + method="{$method}" + encoding="{$encoding}" + indent="{$indent}" + omit-xml-declaration="{$omit-xml-declaration}" + cdata-section-elements="{$cdata-section-elements}" + media-type="{$media-type}" + doctype-public="{$doctype-public}" + doctype-system="{$doctype-system}" + standalone="{$standalone}"> + <xsl:copy-of select="$content"/> + </exsl:document> + </xsl:when> + <xsl:when test="$doctype-public != '' and $doctype-system = ''"> + <exsl:document href="{$filename}" + method="{$method}" + encoding="{$encoding}" + indent="{$indent}" + omit-xml-declaration="{$omit-xml-declaration}" + cdata-section-elements="{$cdata-section-elements}" + media-type="{$media-type}" + doctype-public="{$doctype-public}" + standalone="{$standalone}"> + <xsl:copy-of select="$content"/> + </exsl:document> + </xsl:when> + <xsl:when test="$doctype-public = '' and $doctype-system != ''"> + <exsl:document href="{$filename}" + method="{$method}" + encoding="{$encoding}" + indent="{$indent}" + omit-xml-declaration="{$omit-xml-declaration}" + cdata-section-elements="{$cdata-section-elements}" + media-type="{$media-type}" + doctype-system="{$doctype-system}" + standalone="{$standalone}"> + <xsl:copy-of select="$content"/> + </exsl:document> + </xsl:when> + <xsl:otherwise><!-- $doctype-public = '' and $doctype-system = ''"> --> + <exsl:document href="{$filename}" + method="{$method}" + encoding="{$encoding}" + indent="{$indent}" + omit-xml-declaration="{$omit-xml-declaration}" + cdata-section-elements="{$cdata-section-elements}" + media-type="{$media-type}" + standalone="{$standalone}"> + <xsl:copy-of select="$content"/> + </exsl:document> + </xsl:otherwise> + </xsl:choose> + </xsl:when> + <xsl:otherwise> + <xsl:choose> + <xsl:when test="$doctype-public != '' and $doctype-system != ''"> + <exsl:document href="{$filename}" + method="{$method}" + encoding="{$encoding}" + indent="{$indent}" + omit-xml-declaration="{$omit-xml-declaration}" + cdata-section-elements="{$cdata-section-elements}" + doctype-public="{$doctype-public}" + doctype-system="{$doctype-system}" + standalone="{$standalone}"> + <xsl:copy-of select="$content"/> + </exsl:document> + </xsl:when> + <xsl:when test="$doctype-public != '' and $doctype-system = ''"> + <exsl:document href="{$filename}" + method="{$method}" + encoding="{$encoding}" + indent="{$indent}" + omit-xml-declaration="{$omit-xml-declaration}" + cdata-section-elements="{$cdata-section-elements}" + doctype-public="{$doctype-public}" + standalone="{$standalone}"> + <xsl:copy-of select="$content"/> + </exsl:document> + </xsl:when> + <xsl:when test="$doctype-public = '' and $doctype-system != ''"> + <exsl:document href="{$filename}" + method="{$method}" + encoding="{$encoding}" + indent="{$indent}" + omit-xml-declaration="{$omit-xml-declaration}" + cdata-section-elements="{$cdata-section-elements}" + doctype-system="{$doctype-system}" + standalone="{$standalone}"> + <xsl:copy-of select="$content"/> + </exsl:document> + </xsl:when> + <xsl:otherwise><!-- $doctype-public = '' and $doctype-system = ''"> --> + <exsl:document href="{$filename}" + method="{$method}" + encoding="{$encoding}" + indent="{$indent}" + omit-xml-declaration="{$omit-xml-declaration}" + cdata-section-elements="{$cdata-section-elements}" + standalone="{$standalone}"> + <xsl:copy-of select="$content"/> + </exsl:document> + </xsl:otherwise> + </xsl:choose> + </xsl:otherwise> + </xsl:choose> + </xsl:when> + + <xsl:when test="element-available('saxon:output')"> + <xsl:choose> + <!-- Handle the permutations ... --> + <xsl:when test="$media-type != ''"> + <xsl:choose> + <xsl:when test="$doctype-public != '' and $doctype-system != ''"> + <saxon:output saxon:character-representation="{$saxon.character.representation}" + href="{$filename}" + method="{$method}" + encoding="{$encoding}" + indent="{$indent}" + omit-xml-declaration="{$omit-xml-declaration}" + cdata-section-elements="{$cdata-section-elements}" + media-type="{$media-type}" + doctype-public="{$doctype-public}" + doctype-system="{$doctype-system}" + standalone="{$standalone}"> + <xsl:copy-of select="$content"/> + </saxon:output> + </xsl:when> + <xsl:when test="$doctype-public != '' and $doctype-system = ''"> + <saxon:output saxon:character-representation="{$saxon.character.representation}" + href="{$filename}" + method="{$method}" + encoding="{$encoding}" + indent="{$indent}" + omit-xml-declaration="{$omit-xml-declaration}" + cdata-section-elements="{$cdata-section-elements}" + media-type="{$media-type}" + doctype-public="{$doctype-public}" + standalone="{$standalone}"> + <xsl:copy-of select="$content"/> + </saxon:output> + </xsl:when> + <xsl:when test="$doctype-public = '' and $doctype-system != ''"> + <saxon:output saxon:character-representation="{$saxon.character.representation}" + href="{$filename}" + method="{$method}" + encoding="{$encoding}" + indent="{$indent}" + omit-xml-declaration="{$omit-xml-declaration}" + cdata-section-elements="{$cdata-section-elements}" + media-type="{$media-type}" + doctype-system="{$doctype-system}" + standalone="{$standalone}"> + <xsl:copy-of select="$content"/> + </saxon:output> + </xsl:when> + <xsl:otherwise><!-- $doctype-public = '' and $doctype-system = ''"> --> + <saxon:output saxon:character-representation="{$saxon.character.representation}" + href="{$filename}" + method="{$method}" + encoding="{$encoding}" + indent="{$indent}" + omit-xml-declaration="{$omit-xml-declaration}" + cdata-section-elements="{$cdata-section-elements}" + media-type="{$media-type}" + standalone="{$standalone}"> + <xsl:copy-of select="$content"/> + </saxon:output> + </xsl:otherwise> + </xsl:choose> + </xsl:when> + <xsl:otherwise> + <xsl:choose> + <xsl:when test="$doctype-public != '' and $doctype-system != ''"> + <saxon:output saxon:character-representation="{$saxon.character.representation}" + href="{$filename}" + method="{$method}" + encoding="{$encoding}" + indent="{$indent}" + omit-xml-declaration="{$omit-xml-declaration}" + cdata-section-elements="{$cdata-section-elements}" + doctype-public="{$doctype-public}" + doctype-system="{$doctype-system}" + standalone="{$standalone}"> + <xsl:copy-of select="$content"/> + </saxon:output> + </xsl:when> + <xsl:when test="$doctype-public != '' and $doctype-system = ''"> + <saxon:output saxon:character-representation="{$saxon.character.representation}" + href="{$filename}" + method="{$method}" + encoding="{$encoding}" + indent="{$indent}" + omit-xml-declaration="{$omit-xml-declaration}" + cdata-section-elements="{$cdata-section-elements}" + doctype-public="{$doctype-public}" + standalone="{$standalone}"> + <xsl:copy-of select="$content"/> + </saxon:output> + </xsl:when> + <xsl:when test="$doctype-public = '' and $doctype-system != ''"> + <saxon:output saxon:character-representation="{$saxon.character.representation}" + href="{$filename}" + method="{$method}" + encoding="{$encoding}" + indent="{$indent}" + omit-xml-declaration="{$omit-xml-declaration}" + cdata-section-elements="{$cdata-section-elements}" + doctype-system="{$doctype-system}" + standalone="{$standalone}"> + <xsl:copy-of select="$content"/> + </saxon:output> + </xsl:when> + <xsl:otherwise><!-- $doctype-public = '' and $doctype-system = ''"> --> + <saxon:output saxon:character-representation="{$saxon.character.representation}" + href="{$filename}" + method="{$method}" + encoding="{$encoding}" + indent="{$indent}" + omit-xml-declaration="{$omit-xml-declaration}" + cdata-section-elements="{$cdata-section-elements}" + standalone="{$standalone}"> + <xsl:copy-of select="$content"/> + </saxon:output> + </xsl:otherwise> + </xsl:choose> + </xsl:otherwise> + </xsl:choose> + </xsl:when> + + <xsl:when test="element-available('redirect:write')"> + <!-- Xalan uses redirect --> + <redirect:write file="{$filename}"> + <xsl:copy-of select="$content"/> + </redirect:write> + </xsl:when> + + <xsl:otherwise> + <!-- it doesn't matter since we won't be making chunks... --> + <xsl:message terminate="yes"> + <xsl:text>Can't make chunks with </xsl:text> + <xsl:value-of select="system-property('xsl:vendor')"/> + <xsl:text>'s processor.</xsl:text> + </xsl:message> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template name="write.chunk.with.doctype"> + <xsl:param name="filename" select="''"/> + <xsl:param name="quiet" select="$chunker.output.quiet"/> + + <xsl:param name="method" select="$chunker.output.method"/> + <xsl:param name="encoding" select="$chunker.output.encoding"/> + <xsl:param name="indent" select="$chunker.output.indent"/> + <xsl:param name="omit-xml-declaration" + select="$chunker.output.omit-xml-declaration"/> + <xsl:param name="standalone" select="$chunker.output.standalone"/> + <xsl:param name="doctype-public" select="$chunker.output.doctype-public"/> + <xsl:param name="doctype-system" select="$chunker.output.doctype-system"/> + <xsl:param name="media-type" select="$chunker.output.media-type"/> + <xsl:param name="cdata-section-elements" + select="$chunker.output.cdata-section-elements"/> + + <xsl:param name="content"/> + + <xsl:call-template name="write.chunk"> + <xsl:with-param name="filename" select="$filename"/> + <xsl:with-param name="quiet" select="$quiet"/> + <xsl:with-param name="method" select="$method"/> + <xsl:with-param name="encoding" select="$encoding"/> + <xsl:with-param name="indent" select="$indent"/> + <xsl:with-param name="omit-xml-declaration" select="$omit-xml-declaration"/> + <xsl:with-param name="standalone" select="$standalone"/> + <xsl:with-param name="doctype-public" select="$doctype-public"/> + <xsl:with-param name="doctype-system" select="$doctype-system"/> + <xsl:with-param name="media-type" select="$media-type"/> + <xsl:with-param name="cdata-section-elements" select="$cdata-section-elements"/> + <xsl:with-param name="content" select="$content"/> + </xsl:call-template> +</xsl:template> + +<xsl:template name="write.text.chunk"> + <xsl:param name="filename" select="''"/> + <xsl:param name="quiet" select="$chunker.output.quiet"/> + <xsl:param name="suppress-context-node-name" select="0"/> + <xsl:param name="message-prolog"/> + <xsl:param name="message-epilog"/> + <xsl:param name="method" select="'text'"/> + <xsl:param name="encoding" select="$chunker.output.encoding"/> + <xsl:param name="media-type" select="$chunker.output.media-type"/> + <xsl:param name="content"/> + + <xsl:call-template name="write.chunk"> + <xsl:with-param name="filename" select="$filename"/> + <xsl:with-param name="quiet" select="$quiet"/> + <xsl:with-param name="suppress-context-node-name" select="$suppress-context-node-name"/> + <xsl:with-param name="message-prolog" select="$message-prolog"/> + <xsl:with-param name="message-epilog" select="$message-epilog"/> + <xsl:with-param name="method" select="$method"/> + <xsl:with-param name="encoding" select="$encoding"/> + <xsl:with-param name="indent" select="'no'"/> + <xsl:with-param name="omit-xml-declaration" select="'no'"/> + <xsl:with-param name="standalone" select="'no'"/> + <xsl:with-param name="doctype-public"/> + <xsl:with-param name="doctype-system"/> + <xsl:with-param name="media-type" select="$media-type"/> + <xsl:with-param name="cdata-section-elements"/> + <xsl:with-param name="content" select="$content"/> + </xsl:call-template> +</xsl:template> + + +</xsl:stylesheet> diff --git a/docbook-xsl-1.76.1/html/chunkfast.xsl b/docbook-xsl-1.76.1/html/chunkfast.xsl new file mode 100644 index 0000000..35a4631 --- /dev/null +++ b/docbook-xsl-1.76.1/html/chunkfast.xsl @@ -0,0 +1,72 @@ +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + xmlns:exsl="http://exslt.org/common" + xmlns:cf="http://docbook.sourceforge.net/xmlns/chunkfast/1.0" + version="1.0" + exclude-result-prefixes="cf exsl"> + +<!-- ******************************************************************** + $Id: chunkfast.xsl 8345 2009-03-16 06:44:07Z bobstayton $ + ******************************************************************** + + This file is part of the XSL DocBook Stylesheet distribution. + See ../README or http://docbook.sf.net/release/xsl/current/ for + copyright and other information. + + ******************************************************************** --> + +<!-- ==================================================================== --> + +<xsl:import href="chunk.xsl"/> +<xsl:param name="chunk.fast" select="1"/> + +<xsl:variable name="chunks" select="exsl:node-set($chunk.hierarchy)//cf:div"/> + +<!-- ==================================================================== --> + +<xsl:template name="process-chunk-element"> + <xsl:choose> + <xsl:when test="$chunk.fast != 0 and $exsl.node.set.available != 0"> + <xsl:variable name="genid" select="generate-id()"/> + + <xsl:variable name="div" select="$chunks[@id=$genid or @xml:id=$genid]"/> + + <xsl:variable name="prevdiv" + select="($div/preceding-sibling::cf:div|$div/preceding::cf:div|$div/parent::cf:div)[last()]"/> + <xsl:variable name="prev" select="key('genid', ($prevdiv/@id|$prevdiv/@xml:id)[1])"/> + + <xsl:variable name="nextdiv" + select="($div/following-sibling::cf:div|$div/following::cf:div|$div/cf:div)[1]"/> + <xsl:variable name="next" select="key('genid', ($nextdiv/@id|$nextdiv/@xml:id)[1])"/> + + <xsl:choose> + <xsl:when test="$onechunk != 0 and parent::*"> + <xsl:apply-imports/> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="process-chunk"> + <xsl:with-param name="prev" select="$prev"/> + <xsl:with-param name="next" select="$next"/> + </xsl:call-template> + </xsl:otherwise> + </xsl:choose> + </xsl:when> + <xsl:otherwise> + <xsl:choose> + <xsl:when test="$onechunk != 0 and not(parent::*)"> + <xsl:call-template name="chunk-all-sections"/> + </xsl:when> + <xsl:when test="$onechunk != 0"> + <xsl:apply-imports/> + </xsl:when> + <xsl:when test="$chunk.first.sections = 0"> + <xsl:call-template name="chunk-first-section-with-parent"/> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="chunk-all-sections"/> + </xsl:otherwise> + </xsl:choose> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +</xsl:stylesheet> diff --git a/docbook-xsl-1.76.1/html/chunktoc.xsl b/docbook-xsl-1.76.1/html/chunktoc.xsl new file mode 100644 index 0000000..8422aa4 --- /dev/null +++ b/docbook-xsl-1.76.1/html/chunktoc.xsl @@ -0,0 +1,543 @@ +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + xmlns:doc="http://nwalsh.com/xsl/documentation/1.0" + xmlns:exsl="http://exslt.org/common" + xmlns:ng="http://docbook.org/docbook-ng" + xmlns:db="http://docbook.org/ns/docbook" + version="1.0" + exclude-result-prefixes="doc exsl ng db"> + +<!-- ******************************************************************** + $Id: chunktoc.xsl 8545 2009-12-02 07:22:10Z bobstayton $ + ******************************************************************** + + This file is part of the XSL DocBook Stylesheet distribution. + See ../README or http://docbook.sf.net/release/xsl/current/ for + copyright and other information. + + ******************************************************************** --> + +<!-- ==================================================================== --> + +<xsl:import href="docbook.xsl"/> +<xsl:import href="chunk-common.xsl"/> + +<xsl:template name="chunk"> + <xsl:param name="node" select="."/> + <!-- returns 1 if $node is a chunk --> + + <xsl:variable name="id"> + <xsl:call-template name="object.id"> + <xsl:with-param name="object" select="$node"/> + </xsl:call-template> + </xsl:variable> + + <xsl:variable name="chunks" select="document($chunk.toc,/)"/> + + <xsl:choose> + <xsl:when test="$chunks//tocentry[@linkend=$id]">1</xsl:when> + <xsl:otherwise>0</xsl:otherwise> + </xsl:choose> +</xsl:template> + +<!-- ==================================================================== --> + +<xsl:template match="*" mode="chunk-filename"> + <!-- returns the filename of a chunk --> + + <xsl:variable name="id"> + <xsl:call-template name="object.id"/> + </xsl:variable> + + <xsl:variable name="chunks" select="document($chunk.toc,/)"/> + + <xsl:variable name="chunk" select="$chunks//tocentry[@linkend=$id]"/> + <xsl:variable name="filename"> + <xsl:call-template name="pi.dbhtml_filename"> + <xsl:with-param name="node" select="$chunk"/> + </xsl:call-template> + </xsl:variable> + + <xsl:choose> + <xsl:when test="$chunk"> + <xsl:value-of select="$filename"/> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates select="parent::*" mode="chunk-filename"/> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<!-- ==================================================================== --> + +<xsl:template name="process-chunk"> + <xsl:variable name="id"> + <xsl:call-template name="object.id"/> + </xsl:variable> + + <xsl:variable name="chunks" select="document($chunk.toc,/)"/> + + <xsl:variable name="chunk" select="$chunks//tocentry[@linkend=$id]"/> + <xsl:variable name="prev-id" + select="($chunk/preceding::tocentry + |$chunk/ancestor::tocentry)[last()]/@linkend"/> + <xsl:variable name="next-id" + select="($chunk/following::tocentry + |$chunk/child::tocentry)[1]/@linkend"/> + + <xsl:variable name="prev" select="key('id',$prev-id)"/> + <xsl:variable name="next" select="key('id',$next-id)"/> + + <xsl:variable name="ischunk"> + <xsl:call-template name="chunk"/> + </xsl:variable> + + <xsl:variable name="chunkfn"> + <xsl:if test="$ischunk='1'"> + <xsl:apply-templates mode="chunk-filename" select="."/> + </xsl:if> + </xsl:variable> + + <xsl:variable name="filename"> + <xsl:call-template name="make-relative-filename"> + <xsl:with-param name="base.dir" select="$base.dir"/> + <xsl:with-param name="base.name" select="$chunkfn"/> + </xsl:call-template> + </xsl:variable> + + <xsl:choose> + <xsl:when test="$ischunk = 0"> + <xsl:apply-imports/> + </xsl:when> + + <xsl:otherwise> + <xsl:call-template name="write.chunk"> + <xsl:with-param name="filename" select="$filename"/> + <xsl:with-param name="content"> + <xsl:call-template name="chunk-element-content"> + <xsl:with-param name="prev" select="$prev"/> + <xsl:with-param name="next" select="$next"/> + </xsl:call-template> + </xsl:with-param> + <xsl:with-param name="quiet" select="$chunk.quietly"/> + </xsl:call-template> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<!-- ==================================================================== --> + +<xsl:template match="set"> + <xsl:call-template name="process-chunk"/> +</xsl:template> + +<xsl:template match="book"> + <xsl:call-template name="process-chunk"/> +</xsl:template> + +<xsl:template match="appendix"> + <xsl:call-template name="process-chunk"/> +</xsl:template> + +<xsl:template match="book/glossary"> + <xsl:call-template name="process-chunk"/> +</xsl:template> + +<xsl:template match="book/bibliography"> + <xsl:call-template name="process-chunk"/> +</xsl:template> + +<xsl:template match="dedication" mode="dedication"> + <xsl:call-template name="process-chunk"/> +</xsl:template> + +<xsl:template match="preface|chapter"> + <xsl:call-template name="process-chunk"/> +</xsl:template> + +<xsl:template match="part|reference"> + <xsl:call-template name="process-chunk"/> +</xsl:template> + +<xsl:template match="refentry"> + <xsl:call-template name="process-chunk"/> +</xsl:template> + +<xsl:template match="colophon"> + <xsl:call-template name="process-chunk"/> +</xsl:template> + +<xsl:template match="article"> + <xsl:call-template name="process-chunk"/> +</xsl:template> + +<xsl:template match="article/glossary"> + <xsl:call-template name="process-chunk"/> +</xsl:template> + +<xsl:template match="article/bibliography"> + <xsl:call-template name="process-chunk"/> +</xsl:template> + +<xsl:template match="sect1|sect2|sect3|sect4|sect5|section"> + <xsl:variable name="ischunk"> + <xsl:call-template name="chunk"/> + </xsl:variable> + + <xsl:choose> + <xsl:when test="$ischunk != 0"> + <xsl:call-template name="process-chunk"/> + </xsl:when> + <xsl:otherwise> + <xsl:apply-imports/> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template match="setindex + |book/index + |article/index"> + <!-- some implementations use completely empty index tags to indicate --> + <!-- where an automatically generated index should be inserted. so --> + <!-- if the index is completely empty, skip it. --> + <xsl:if test="count(*)>0 or $generate.index != '0'"> + <xsl:call-template name="process-chunk"/> + </xsl:if> +</xsl:template> + +<!-- ==================================================================== --> + +<xsl:template match="/"> + <!-- * Get a title for current doc so that we let the user --> + <!-- * know what document we are processing at this point. --> + <xsl:variable name="doc.title"> + <xsl:call-template name="get.doc.title"/> + </xsl:variable> + <xsl:choose> + <xsl:when test="$chunk.toc = ''"> + <xsl:message terminate="yes"> + <xsl:text>The chunk.toc file is not set.</xsl:text> + </xsl:message> + </xsl:when> + <!-- Hack! If someone hands us a DocBook V5.x or DocBook NG document, + toss the namespace and continue. Use the docbook5 namespaced + stylesheets for DocBook5 if you don't want to use this feature.--> + <!-- include extra test for Xalan quirk --> + <xsl:when test="$exsl.node.set.available != 0 + and (*/self::ng:* or */self::db:*)"> + <xsl:call-template name="log.message"> + <xsl:with-param name="level">Note</xsl:with-param> + <xsl:with-param name="source" select="$doc.title"/> + <xsl:with-param name="context-desc"> + <xsl:text>namesp. cut</xsl:text> + </xsl:with-param> + <xsl:with-param name="message"> + <xsl:text>stripped namespace before processing</xsl:text> + </xsl:with-param> + </xsl:call-template> + <xsl:variable name="nons"> + <xsl:apply-templates mode="stripNS"/> + </xsl:variable> + <xsl:call-template name="log.message"> + <xsl:with-param name="level">Note</xsl:with-param> + <xsl:with-param name="source" select="$doc.title"/> + <xsl:with-param name="context-desc"> + <xsl:text>namesp. cut</xsl:text> + </xsl:with-param> + <xsl:with-param name="message"> + <xsl:text>processing stripped document</xsl:text> + </xsl:with-param> + </xsl:call-template> + <xsl:apply-templates select="exsl:node-set($nons)"/> + </xsl:when> + <!-- Can't process unless namespace removed --> + <xsl:when test="*/self::ng:* or */self::db:*"> + <xsl:message terminate="yes"> + <xsl:text>Unable to strip the namespace from DB5 document,</xsl:text> + <xsl:text> cannot proceed.</xsl:text> + </xsl:message> + </xsl:when> + <xsl:otherwise> + <xsl:choose> + <xsl:when test="$rootid != ''"> + <xsl:choose> + <xsl:when test="count(key('id',$rootid)) = 0"> + <xsl:message terminate="yes"> + <xsl:text>ID '</xsl:text> + <xsl:value-of select="$rootid"/> + <xsl:text>' not found in document.</xsl:text> + </xsl:message> + </xsl:when> + <xsl:otherwise> + <xsl:if test="$collect.xref.targets = 'yes' or + $collect.xref.targets = 'only'"> + <xsl:apply-templates select="key('id', $rootid)" + mode="collect.targets"/> + </xsl:if> + <xsl:if test="$collect.xref.targets != 'only'"> + <xsl:apply-templates select="key('id',$rootid)" + mode="process.root"/> + <xsl:if test="$tex.math.in.alt != ''"> + <xsl:apply-templates select="key('id',$rootid)" + mode="collect.tex.math"/> + </xsl:if> + <xsl:if test="$generate.manifest != 0"> + <xsl:call-template name="generate.manifest"> + <xsl:with-param name="node" select="key('id',$rootid)"/> + </xsl:call-template> + </xsl:if> + </xsl:if> + </xsl:otherwise> + </xsl:choose> + </xsl:when> + <xsl:otherwise> + <xsl:if test="$collect.xref.targets = 'yes' or + $collect.xref.targets = 'only'"> + <xsl:apply-templates select="/" mode="collect.targets"/> + </xsl:if> + <xsl:if test="$collect.xref.targets != 'only'"> + <xsl:apply-templates select="/" mode="process.root"/> + <xsl:if test="$tex.math.in.alt != ''"> + <xsl:apply-templates select="/" mode="collect.tex.math"/> + </xsl:if> + <xsl:if test="$generate.manifest != 0"> + <xsl:call-template name="generate.manifest"> + <xsl:with-param name="node" select="/"/> + </xsl:call-template> + </xsl:if> + </xsl:if> + </xsl:otherwise> + </xsl:choose> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template match="*" mode="process.root"> + <xsl:apply-templates select="."/> +</xsl:template> + +<xsl:template name="make.lots"> + <xsl:param name="toc.params" select="''"/> + <xsl:param name="toc"/> + + <xsl:variable name="lots"> + <xsl:if test="contains($toc.params, 'toc')"> + <xsl:copy-of select="$toc"/> + </xsl:if> + + <xsl:if test="contains($toc.params, 'figure')"> + <xsl:choose> + <xsl:when test="$chunk.separate.lots != '0'"> + <xsl:call-template name="make.lot.chunk"> + <xsl:with-param name="type" select="'figure'"/> + <xsl:with-param name="lot"> + <xsl:call-template name="list.of.titles"> + <xsl:with-param name="titles" select="'figure'"/> + <xsl:with-param name="nodes" select=".//figure"/> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="list.of.titles"> + <xsl:with-param name="titles" select="'figure'"/> + <xsl:with-param name="nodes" select=".//figure"/> + </xsl:call-template> + </xsl:otherwise> + </xsl:choose> + </xsl:if> + + <xsl:if test="contains($toc.params, 'table')"> + <xsl:choose> + <xsl:when test="$chunk.separate.lots != '0'"> + <xsl:call-template name="make.lot.chunk"> + <xsl:with-param name="type" select="'table'"/> + <xsl:with-param name="lot"> + <xsl:call-template name="list.of.titles"> + <xsl:with-param name="titles" select="'table'"/> + <xsl:with-param name="nodes" select=".//table"/> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="list.of.titles"> + <xsl:with-param name="titles" select="'table'"/> + <xsl:with-param name="nodes" select=".//table"/> + </xsl:call-template> + </xsl:otherwise> + </xsl:choose> + </xsl:if> + + <xsl:if test="contains($toc.params, 'example')"> + <xsl:choose> + <xsl:when test="$chunk.separate.lots != '0'"> + <xsl:call-template name="make.lot.chunk"> + <xsl:with-param name="type" select="'example'"/> + <xsl:with-param name="lot"> + <xsl:call-template name="list.of.titles"> + <xsl:with-param name="titles" select="'example'"/> + <xsl:with-param name="nodes" select=".//example"/> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="list.of.titles"> + <xsl:with-param name="titles" select="'example'"/> + <xsl:with-param name="nodes" select=".//example"/> + </xsl:call-template> + </xsl:otherwise> + </xsl:choose> + </xsl:if> + + <xsl:if test="contains($toc.params, 'equation')"> + <xsl:choose> + <xsl:when test="$chunk.separate.lots != '0'"> + <xsl:call-template name="make.lot.chunk"> + <xsl:with-param name="type" select="'equation'"/> + <xsl:with-param name="lot"> + <xsl:call-template name="list.of.titles"> + <xsl:with-param name="titles" select="'equation'"/> + <xsl:with-param name="nodes" select=".//equation"/> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="list.of.titles"> + <xsl:with-param name="titles" select="'equation'"/> + <xsl:with-param name="nodes" select=".//equation"/> + </xsl:call-template> + </xsl:otherwise> + </xsl:choose> + </xsl:if> + + <xsl:if test="contains($toc.params, 'procedure')"> + <xsl:choose> + <xsl:when test="$chunk.separate.lots != '0'"> + <xsl:call-template name="make.lot.chunk"> + <xsl:with-param name="type" select="'procedure'"/> + <xsl:with-param name="lot"> + <xsl:call-template name="list.of.titles"> + <xsl:with-param name="titles" select="'procedure'"/> + <xsl:with-param name="nodes" select=".//procedure[title]"/> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="list.of.titles"> + <xsl:with-param name="titles" select="'procedure'"/> + <xsl:with-param name="nodes" select=".//procedure[title]"/> + </xsl:call-template> + </xsl:otherwise> + </xsl:choose> + </xsl:if> + </xsl:variable> + + <xsl:if test="string($lots) != ''"> + <xsl:choose> + <xsl:when test="$chunk.tocs.and.lots != 0 and not(parent::*)"> + <xsl:call-template name="write.chunk"> + <xsl:with-param name="filename"> + <xsl:call-template name="make-relative-filename"> + <xsl:with-param name="base.dir" select="$base.dir"/> + <xsl:with-param name="base.name"> + <xsl:call-template name="dbhtml-dir"/> + <xsl:apply-templates select="." mode="recursive-chunk-filename"> + <xsl:with-param name="recursive" select="true()"/> + </xsl:apply-templates> + <xsl:text>-toc</xsl:text> + <xsl:value-of select="$html.ext"/> + </xsl:with-param> + </xsl:call-template> + </xsl:with-param> + <xsl:with-param name="content"> + <xsl:call-template name="chunk-element-content"> + <xsl:with-param name="prev" select="/foo"/> + <xsl:with-param name="next" select="/foo"/> + <xsl:with-param name="nav.context" select="'toc'"/> + <xsl:with-param name="content"> + <h1> + <xsl:apply-templates select="." mode="object.title.markup"/> + </h1> + <xsl:copy-of select="$lots"/> + </xsl:with-param> + </xsl:call-template> + </xsl:with-param> + <xsl:with-param name="quiet" select="$chunk.quietly"/> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:copy-of select="$lots"/> + </xsl:otherwise> + </xsl:choose> + </xsl:if> +</xsl:template> + +<xsl:template name="make.lot.chunk"> + <xsl:param name="type" select="''"/> + <xsl:param name="lot"/> + + <xsl:if test="string($lot) != ''"> + <xsl:variable name="filename"> + <xsl:call-template name="make-relative-filename"> + <xsl:with-param name="base.dir" select="$base.dir"/> + <xsl:with-param name="base.name"> + <xsl:call-template name="dbhtml-dir"/> + <xsl:value-of select="$type"/> + <xsl:text>-toc</xsl:text> + <xsl:value-of select="$html.ext"/> + </xsl:with-param> + </xsl:call-template> + </xsl:variable> + + <xsl:variable name="href"> + <xsl:call-template name="make-relative-filename"> + <xsl:with-param name="base.name"> + <xsl:call-template name="dbhtml-dir"/> + <xsl:value-of select="$type"/> + <xsl:text>-toc</xsl:text> + <xsl:value-of select="$html.ext"/> + </xsl:with-param> + </xsl:call-template> + </xsl:variable> + + <xsl:call-template name="write.chunk"> + <xsl:with-param name="filename" select="$filename"/> + <xsl:with-param name="content"> + <xsl:call-template name="chunk-element-content"> + <xsl:with-param name="prev" select="/foo"/> + <xsl:with-param name="next" select="/foo"/> + <xsl:with-param name="nav.context" select="'toc'"/> + <xsl:with-param name="content"> + <xsl:copy-of select="$lot"/> + </xsl:with-param> + </xsl:call-template> + </xsl:with-param> + <xsl:with-param name="quiet" select="$chunk.quietly"/> + </xsl:call-template> + <!-- And output a link to this file --> + <div> + <xsl:attribute name="class"> + <xsl:text>ListofTitles</xsl:text> + </xsl:attribute> + <a href="{$href}"> + <xsl:call-template name="gentext"> + <xsl:with-param name="key"> + <xsl:choose> + <xsl:when test="$type='table'">ListofTables</xsl:when> + <xsl:when test="$type='figure'">ListofFigures</xsl:when> + <xsl:when test="$type='equation'">ListofEquations</xsl:when> + <xsl:when test="$type='example'">ListofExamples</xsl:when> + <xsl:when test="$type='procedure'">ListofProcedures</xsl:when> + <xsl:otherwise>ListofUnknown</xsl:otherwise> + </xsl:choose> + </xsl:with-param> + </xsl:call-template> + </a> + </div> + </xsl:if> +</xsl:template> + +</xsl:stylesheet> diff --git a/docbook-xsl-1.76.1/html/component.xsl b/docbook-xsl-1.76.1/html/component.xsl new file mode 100644 index 0000000..666ea17 --- /dev/null +++ b/docbook-xsl-1.76.1/html/component.xsl @@ -0,0 +1,425 @@ +<?xml version='1.0'?> +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + version='1.0'> + +<!-- ******************************************************************** + $Id: component.xsl 8568 2010-01-11 03:16:56Z bobstayton $ + ******************************************************************** + + This file is part of the XSL DocBook Stylesheet distribution. + See ../README or http://docbook.sf.net/release/xsl/current/ for + copyright and other information. + + ******************************************************************** --> + +<!-- ==================================================================== --> + +<xsl:template name="component.title"> + <xsl:param name="node" select="."/> + + <xsl:variable name="level"> + <xsl:choose> + <xsl:when test="ancestor::section"> + <xsl:value-of select="count(ancestor::section)+1"/> + </xsl:when> + <xsl:when test="ancestor::sect5">6</xsl:when> + <xsl:when test="ancestor::sect4">5</xsl:when> + <xsl:when test="ancestor::sect3">4</xsl:when> + <xsl:when test="ancestor::sect2">3</xsl:when> + <xsl:when test="ancestor::sect1">2</xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + + <!-- Let's handle the case where a component (bibliography, for example) + occurs inside a section; will we need parameters for this? --> + + <xsl:element name="h{$level+1}"> + <xsl:attribute name="class">title</xsl:attribute> + <xsl:if test="$generate.id.attributes = 0"> + <xsl:call-template name="anchor"> + <xsl:with-param name="node" select="$node"/> + <xsl:with-param name="conditional" select="0"/> + </xsl:call-template> + </xsl:if> + <xsl:apply-templates select="$node" mode="object.title.markup"> + <xsl:with-param name="allow-anchors" select="1"/> + </xsl:apply-templates> + </xsl:element> +</xsl:template> + +<xsl:template name="component.subtitle"> + <xsl:param name="node" select="."/> + <xsl:variable name="subtitle" + select="($node/docinfo/subtitle + |$node/info/subtitle + |$node/prefaceinfo/subtitle + |$node/chapterinfo/subtitle + |$node/appendixinfo/subtitle + |$node/articleinfo/subtitle + |$node/artheader/subtitle + |$node/subtitle)[1]"/> + + <xsl:if test="$subtitle"> + <h3 class="subtitle"> + <i> + <xsl:apply-templates select="$node" mode="object.subtitle.markup"/> + </i> + </h3> + </xsl:if> +</xsl:template> + +<xsl:template name="component.separator"> +</xsl:template> + +<!-- ==================================================================== --> + +<xsl:template match="dedication" mode="dedication"> + <xsl:call-template name="id.warning"/> + + <div> + <xsl:call-template name="common.html.attributes"> + <xsl:with-param name="inherit" select="1"/> + </xsl:call-template> + <xsl:call-template name="dedication.titlepage"/> + <xsl:apply-templates/> + <xsl:call-template name="process.footnotes"/> + </div> +</xsl:template> + +<xsl:template match="dedication/title|dedication/info/title" + mode="titlepage.mode" priority="2"> + <xsl:call-template name="component.title"> + <xsl:with-param name="node" select="ancestor::dedication[1]"/> + </xsl:call-template> +</xsl:template> + +<xsl:template match="dedication/subtitle|dedication/info/subtitle" + mode="titlepage.mode" priority="2"> + <xsl:call-template name="component.subtitle"> + <xsl:with-param name="node" select="ancestor::dedication[1]"/> + </xsl:call-template> +</xsl:template> + +<xsl:template match="dedication"></xsl:template> <!-- see mode="dedication" --> +<xsl:template match="dedication/title"></xsl:template> +<xsl:template match="dedication/subtitle"></xsl:template> +<xsl:template match="dedication/titleabbrev"></xsl:template> + +<!-- ==================================================================== --> + +<xsl:template match="acknowledgements" mode="acknowledgements"> + <xsl:call-template name="id.warning"/> + + <div> + <xsl:call-template name="common.html.attributes"> + <xsl:with-param name="inherit" select="1"/> + </xsl:call-template> + <xsl:call-template name="acknowledgements.titlepage"/> + <xsl:apply-templates/> + <xsl:call-template name="process.footnotes"/> + </div> +</xsl:template> + +<xsl:template match="acknowledgements/title|acknowledgements/info/title" + mode="titlepage.mode" priority="2"> + <xsl:call-template name="component.title"> + <xsl:with-param name="node" select="ancestor::acknowledgements[1]"/> + </xsl:call-template> +</xsl:template> + +<xsl:template match="acknowledgements/subtitle|acknowledgements/info/subtitle" + mode="titlepage.mode" priority="2"> + <xsl:call-template name="component.subtitle"> + <xsl:with-param name="node" select="ancestor::acknowledgements[1]"/> + </xsl:call-template> +</xsl:template> + +<xsl:template match="acknowledgements"></xsl:template> <!-- see mode="acknowledgements" --> +<xsl:template match="acknowledgements/title"></xsl:template> +<xsl:template match="acknowledgements/subtitle"></xsl:template> +<xsl:template match="acknowledgements/titleabbrev"></xsl:template> + +<!-- ==================================================================== --> + +<xsl:template match="colophon"> + <xsl:call-template name="id.warning"/> + + <div> + <xsl:call-template name="common.html.attributes"> + <xsl:with-param name="inherit" select="1"/> + </xsl:call-template> + <xsl:if test="$generate.id.attributes != 0"> + <xsl:attribute name="id"> + <xsl:call-template name="object.id"/> + </xsl:attribute> + </xsl:if> + + <xsl:call-template name="component.separator"/> + <xsl:call-template name="component.title"/> + <xsl:call-template name="component.subtitle"/> + + <xsl:apply-templates/> + <xsl:call-template name="process.footnotes"/> + </div> +</xsl:template> + +<xsl:template match="colophon/title"></xsl:template> +<xsl:template match="colophon/subtitle"></xsl:template> +<xsl:template match="colophon/titleabbrev"></xsl:template> + +<!-- ==================================================================== --> + +<xsl:template match="preface"> + <xsl:call-template name="id.warning"/> + + <div> + <xsl:call-template name="common.html.attributes"> + <xsl:with-param name="inherit" select="1"/> + </xsl:call-template> + <xsl:if test="$generate.id.attributes != 0"> + <xsl:attribute name="id"> + <xsl:call-template name="object.id"/> + </xsl:attribute> + </xsl:if> + + <xsl:call-template name="component.separator"/> + <xsl:call-template name="preface.titlepage"/> + + <xsl:variable name="toc.params"> + <xsl:call-template name="find.path.params"> + <xsl:with-param name="table" select="normalize-space($generate.toc)"/> + </xsl:call-template> + </xsl:variable> + + <xsl:if test="contains($toc.params, 'toc')"> + <xsl:call-template name="component.toc"> + <xsl:with-param name="toc.title.p" select="contains($toc.params, 'title')"/> + </xsl:call-template> + <xsl:call-template name="component.toc.separator"/> + </xsl:if> + <xsl:apply-templates/> + <xsl:call-template name="process.footnotes"/> + </div> +</xsl:template> + +<xsl:template match="preface/title" mode="titlepage.mode" priority="2"> + <xsl:call-template name="component.title"> + <xsl:with-param name="node" select="ancestor::preface[1]"/> + </xsl:call-template> +</xsl:template> + +<xsl:template match="preface/subtitle + |preface/prefaceinfo/subtitle + |preface/info/subtitle + |preface/docinfo/subtitle" + mode="titlepage.mode" priority="2"> + <xsl:call-template name="component.subtitle"> + <xsl:with-param name="node" select="ancestor::preface[1]"/> + </xsl:call-template> +</xsl:template> + +<xsl:template match="preface/docinfo|prefaceinfo"></xsl:template> +<xsl:template match="preface/info"></xsl:template> +<xsl:template match="preface/title"></xsl:template> +<xsl:template match="preface/titleabbrev"></xsl:template> +<xsl:template match="preface/subtitle"></xsl:template> + +<!-- ==================================================================== --> + +<xsl:template match="chapter"> + <xsl:call-template name="id.warning"/> + + <div> + <xsl:call-template name="common.html.attributes"> + <xsl:with-param name="inherit" select="1"/> + </xsl:call-template> + <xsl:if test="$generate.id.attributes != 0"> + <xsl:attribute name="id"> + <xsl:call-template name="object.id"/> + </xsl:attribute> + </xsl:if> + + <xsl:call-template name="component.separator"/> + <xsl:call-template name="chapter.titlepage"/> + + <xsl:variable name="toc.params"> + <xsl:call-template name="find.path.params"> + <xsl:with-param name="table" select="normalize-space($generate.toc)"/> + </xsl:call-template> + </xsl:variable> + <xsl:if test="contains($toc.params, 'toc')"> + <xsl:call-template name="component.toc"> + <xsl:with-param name="toc.title.p" select="contains($toc.params, 'title')"/> + </xsl:call-template> + <xsl:call-template name="component.toc.separator"/> + </xsl:if> + <xsl:apply-templates/> + <xsl:call-template name="process.footnotes"/> + </div> +</xsl:template> + +<xsl:template match="chapter/title|chapter/chapterinfo/title|chapter/info/title" + mode="titlepage.mode" priority="2"> + <xsl:call-template name="component.title"> + <xsl:with-param name="node" select="ancestor::chapter[1]"/> + </xsl:call-template> +</xsl:template> + +<xsl:template match="chapter/subtitle + |chapter/chapterinfo/subtitle + |chapter/info/subtitle + |chapter/docinfo/subtitle" + mode="titlepage.mode" priority="2"> + <xsl:call-template name="component.subtitle"> + <xsl:with-param name="node" select="ancestor::chapter[1]"/> + </xsl:call-template> +</xsl:template> + +<xsl:template match="chapter/docinfo|chapterinfo"></xsl:template> +<xsl:template match="chapter/info"></xsl:template> +<xsl:template match="chapter/title"></xsl:template> +<xsl:template match="chapter/titleabbrev"></xsl:template> +<xsl:template match="chapter/subtitle"></xsl:template> + +<!-- ==================================================================== --> + +<xsl:template match="appendix"> + <xsl:variable name="ischunk"> + <xsl:call-template name="chunk"/> + </xsl:variable> + + <xsl:call-template name="id.warning"/> + + <div> + <xsl:call-template name="common.html.attributes"> + <xsl:with-param name="inherit" select="1"/> + </xsl:call-template> + <xsl:if test="$generate.id.attributes != 0"> + <xsl:attribute name="id"> + <xsl:call-template name="object.id"/> + </xsl:attribute> + </xsl:if> + + <xsl:choose> + <xsl:when test="parent::article and $ischunk = 0"> + <xsl:call-template name="section.heading"> + <xsl:with-param name="level" select="1"/> + <xsl:with-param name="title"> + <xsl:apply-templates select="." mode="object.title.markup"/> + </xsl:with-param> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="component.separator"/> + <xsl:call-template name="appendix.titlepage"/> + </xsl:otherwise> + </xsl:choose> + + <xsl:variable name="toc.params"> + <xsl:call-template name="find.path.params"> + <xsl:with-param name="table" select="normalize-space($generate.toc)"/> + </xsl:call-template> + </xsl:variable> + + <xsl:if test="contains($toc.params, 'toc')"> + <xsl:call-template name="component.toc"> + <xsl:with-param name="toc.title.p" select="contains($toc.params, 'title')"/> + </xsl:call-template> + <xsl:call-template name="component.toc.separator"/> + </xsl:if> + + <xsl:apply-templates/> + + <xsl:if test="not(parent::article) or $ischunk != 0"> + <xsl:call-template name="process.footnotes"/> + </xsl:if> + </div> +</xsl:template> + +<xsl:template match="appendix/title|appendix/appendixinfo/title" + mode="titlepage.mode" priority="2"> + <xsl:call-template name="component.title"> + <xsl:with-param name="node" select="ancestor::appendix[1]"/> + </xsl:call-template> +</xsl:template> + +<xsl:template match="appendix/subtitle + |appendix/appendixinfo/subtitle + |appendix/info/subtitle + |appendix/docinfo/subtitle" + mode="titlepage.mode" priority="2"> + <xsl:call-template name="component.subtitle"> + <xsl:with-param name="node" select="ancestor::appendix[1]"/> + </xsl:call-template> +</xsl:template> + +<xsl:template match="appendix/docinfo|appendixinfo"></xsl:template> +<xsl:template match="appendix/info"></xsl:template> +<xsl:template match="appendix/title"></xsl:template> +<xsl:template match="appendix/titleabbrev"></xsl:template> +<xsl:template match="appendix/subtitle"></xsl:template> + +<!-- ==================================================================== --> + +<xsl:template match="article"> + <xsl:call-template name="id.warning"/> + + <div> + <xsl:call-template name="common.html.attributes"> + <xsl:with-param name="inherit" select="1"/> + </xsl:call-template> + <xsl:if test="$generate.id.attributes != 0"> + <xsl:attribute name="id"> + <xsl:call-template name="object.id"/> + </xsl:attribute> + </xsl:if> + + <xsl:call-template name="article.titlepage"/> + + <xsl:variable name="toc.params"> + <xsl:call-template name="find.path.params"> + <xsl:with-param name="table" select="normalize-space($generate.toc)"/> + </xsl:call-template> + </xsl:variable> + + <xsl:call-template name="make.lots"> + <xsl:with-param name="toc.params" select="$toc.params"/> + <xsl:with-param name="toc"> + <xsl:call-template name="component.toc"> + <xsl:with-param name="toc.title.p" select="contains($toc.params, 'title')"/> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> + + <xsl:apply-templates/> + <xsl:call-template name="process.footnotes"/> + </div> +</xsl:template> + +<xsl:template match="article/title|article/articleinfo/title" mode="titlepage.mode" priority="2"> + <xsl:call-template name="component.title"> + <xsl:with-param name="node" select="ancestor::article[1]"/> + </xsl:call-template> +</xsl:template> + +<xsl:template match="article/subtitle + |article/articleinfo/subtitle + |article/info/subtitle + |article/artheader/subtitle" + mode="titlepage.mode" priority="2"> + <xsl:call-template name="component.subtitle"> + <xsl:with-param name="node" select="ancestor::article[1]"/> + </xsl:call-template> +</xsl:template> + +<xsl:template match="article/artheader|article/articleinfo"></xsl:template> +<xsl:template match="article/info"></xsl:template> +<xsl:template match="article/title"></xsl:template> +<xsl:template match="article/titleabbrev"></xsl:template> +<xsl:template match="article/subtitle"></xsl:template> + +<!-- ==================================================================== --> + +</xsl:stylesheet> + diff --git a/docbook-xsl-1.76.1/html/division.xsl b/docbook-xsl-1.76.1/html/division.xsl new file mode 100644 index 0000000..e910fdd --- /dev/null +++ b/docbook-xsl-1.76.1/html/division.xsl @@ -0,0 +1,217 @@ +<?xml version='1.0'?> +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + version='1.0'> + +<!-- ******************************************************************** + $Id: division.xsl 8421 2009-05-04 07:49:49Z bobstayton $ + ******************************************************************** + + This file is part of the XSL DocBook Stylesheet distribution. + See ../README or http://docbook.sf.net/release/xsl/current/ for + copyright and other information. + + ******************************************************************** --> + +<!-- ==================================================================== --> + +<xsl:template match="set"> + <xsl:call-template name="id.warning"/> + + <div> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:call-template name="dir"> + <xsl:with-param name="inherit" select="1"/> + </xsl:call-template> + <xsl:call-template name="language.attribute"/> + <xsl:if test="$generate.id.attributes != 0"> + <xsl:attribute name="id"> + <xsl:call-template name="object.id"/> + </xsl:attribute> + </xsl:if> + + <xsl:call-template name="set.titlepage"/> + + <xsl:variable name="toc.params"> + <xsl:call-template name="find.path.params"> + <xsl:with-param name="table" select="normalize-space($generate.toc)"/> + </xsl:call-template> + </xsl:variable> + + <xsl:call-template name="make.lots"> + <xsl:with-param name="toc.params" select="$toc.params"/> + <xsl:with-param name="toc"> + <xsl:call-template name="set.toc"> + <xsl:with-param name="toc.title.p" select="contains($toc.params, 'title')"/> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> + + <xsl:apply-templates/> + </div> +</xsl:template> + +<xsl:template match="set/setinfo"></xsl:template> +<xsl:template match="set/title"></xsl:template> +<xsl:template match="set/titleabbrev"></xsl:template> +<xsl:template match="set/subtitle"></xsl:template> + +<!-- ==================================================================== --> + +<xsl:template match="book"> + <xsl:call-template name="id.warning"/> + + <div> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:if test="$generate.id.attributes != 0"> + <xsl:attribute name="id"> + <xsl:call-template name="object.id"/> + </xsl:attribute> + </xsl:if> + + <xsl:call-template name="book.titlepage"/> + + <xsl:apply-templates select="dedication" mode="dedication"/> + <xsl:apply-templates select="acknowledgements" mode="acknowledgements"/> + + <xsl:variable name="toc.params"> + <xsl:call-template name="find.path.params"> + <xsl:with-param name="table" select="normalize-space($generate.toc)"/> + </xsl:call-template> + </xsl:variable> + + <xsl:call-template name="make.lots"> + <xsl:with-param name="toc.params" select="$toc.params"/> + <xsl:with-param name="toc"> + <xsl:call-template name="division.toc"> + <xsl:with-param name="toc.title.p" select="contains($toc.params, 'title')"/> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> + + <xsl:apply-templates/> + </div> +</xsl:template> + +<xsl:template match="book/bookinfo"></xsl:template> +<xsl:template match="book/info"></xsl:template> +<xsl:template match="book/title"></xsl:template> +<xsl:template match="book/titleabbrev"></xsl:template> +<xsl:template match="book/subtitle"></xsl:template> + +<!-- ==================================================================== --> + +<xsl:template match="part"> + <xsl:call-template name="id.warning"/> + + <div> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:if test="$generate.id.attributes != 0"> + <xsl:attribute name="id"> + <xsl:call-template name="object.id"/> + </xsl:attribute> + </xsl:if> + + <xsl:call-template name="part.titlepage"/> + + <xsl:variable name="toc.params"> + <xsl:call-template name="find.path.params"> + <xsl:with-param name="table" select="normalize-space($generate.toc)"/> + </xsl:call-template> + </xsl:variable> + <xsl:if test="not(partintro) and contains($toc.params, 'toc')"> + <xsl:call-template name="division.toc"/> + </xsl:if> + <xsl:apply-templates/> + </div> +</xsl:template> + +<xsl:template match="part" mode="make.part.toc"> + <xsl:call-template name="division.toc"/> +</xsl:template> + +<xsl:template match="reference" mode="make.part.toc"> + <xsl:call-template name="division.toc"/> +</xsl:template> + +<xsl:template match="part/docinfo"></xsl:template> +<xsl:template match="part/partinfo"></xsl:template> +<xsl:template match="part/info"></xsl:template> +<xsl:template match="part/title"></xsl:template> +<xsl:template match="part/titleabbrev"></xsl:template> +<xsl:template match="part/subtitle"></xsl:template> + +<xsl:template match="partintro"> + <xsl:call-template name="id.warning"/> + + <div> + <xsl:call-template name="common.html.attributes"/> + <xsl:if test="$generate.id.attributes != 0"> + <xsl:attribute name="id"> + <xsl:call-template name="object.id"/> + </xsl:attribute> + </xsl:if> + + <xsl:call-template name="partintro.titlepage"/> + <xsl:apply-templates/> + + <xsl:variable name="toc.params"> + <xsl:call-template name="find.path.params"> + <xsl:with-param name="node" select="parent::*"/> + <xsl:with-param name="table" select="normalize-space($generate.toc)"/> + </xsl:call-template> + </xsl:variable> + <xsl:if test="contains($toc.params, 'toc')"> + <!-- not ancestor::part because partintro appears in reference --> + <xsl:apply-templates select="parent::*" mode="make.part.toc"/> + </xsl:if> + <xsl:call-template name="process.footnotes"/> + </div> +</xsl:template> + +<xsl:template match="partintro/title"></xsl:template> +<xsl:template match="partintro/titleabbrev"></xsl:template> +<xsl:template match="partintro/subtitle"></xsl:template> + +<xsl:template match="partintro/title" mode="partintro.title.mode"> + <h2> + <xsl:apply-templates/> + </h2> +</xsl:template> + +<xsl:template match="partintro/subtitle" mode="partintro.title.mode"> + <h3> + <i><xsl:apply-templates/></i> + </h3> +</xsl:template> + +<!-- ==================================================================== --> + +<xsl:template match="book" mode="division.number"> + <xsl:number from="set" count="book" format="1."/> +</xsl:template> + +<xsl:template match="part" mode="division.number"> + <xsl:number from="book" count="part" format="I."/> +</xsl:template> + +<!-- ==================================================================== --> + +<xsl:template name="division.title"> + <xsl:param name="node" select="."/> + + <h1> + <xsl:attribute name="class">title</xsl:attribute> + <xsl:if test="$generate.id.attributes = 0"> + <xsl:call-template name="anchor"> + <xsl:with-param name="node" select="$node"/> + <xsl:with-param name="conditional" select="0"/> + </xsl:call-template> + </xsl:if> + <xsl:apply-templates select="$node" mode="object.title.markup"> + <xsl:with-param name="allow-anchors" select="1"/> + </xsl:apply-templates> + </h1> +</xsl:template> + +</xsl:stylesheet> + diff --git a/docbook-xsl-1.76.1/html/docbook.css.xml b/docbook-xsl-1.76.1/html/docbook.css.xml new file mode 100644 index 0000000..d93a25c --- /dev/null +++ b/docbook-xsl-1.76.1/html/docbook.css.xml @@ -0,0 +1,109 @@ +<?xml version="1.0"?> +<style> + +/********************************/ +/* start of styles in block.xsl */ + +.formalpara-title { + font-weight: bold; +} + +div.blockquote-title { + font-weight: bold; + margin-top: 1em; + margin-bottom: 1em; +} + +span.msgmain-title { + font-weight: bold; +} + +span.msgsub-title { + font-weight: bold; +} + +span.msgrel-title { + font-weight: bold; +} + +div.msglevel, div.msgorig, div.msgaud { + margin-top: 1em; + margin-bottom: 1em; +} + +span.msglevel-title, span.msgorig-title, span.msgaud-title { + font-weight: bold; +} + +div.msgexplan { + margin-top: 1em; + margin-bottom: 1em; +} + +span.msgexplan-title { + font-weight: bold; +} + +/* end of styles in block.xsl */ +/********************************/ + +/********************************/ +/* start of styles in autotoc.xsl */ + + font-weight: bold; + margin-top: 1em; + margin-bottom: 1em; +} + + +/* end of styles in autotoc.xsl */ +/********************************/ + +/********************************/ +/* start of styles in formal.xsl */ + +div.figure-title { + font-weight: bold; +} + +div.example-title { + font-weight: bold; +} + +div.equation-title { + font-weight: bold; +} + +div.table-title { + font-weight: bold; +} + +div.sidebar-title { + font-weight: bold; +} + + +/* end of styles in formal.xsl */ +/********************************/ + +/********************************/ +/* start of styles in verbatim.xsl */ + +div.programlisting { + white-space: pre; + font-family: monospace; +} + +div.screen { + white-space: pre; + font-family: monospace; +} + +div.synopsis { + white-space: pre; + font-family: monospace; +} + +/* end of styles in verbatim.xsl */ +/********************************/ +</style> diff --git a/docbook-xsl-1.76.1/html/docbook.xsl b/docbook-xsl-1.76.1/html/docbook.xsl new file mode 100644 index 0000000..523ed0d --- /dev/null +++ b/docbook-xsl-1.76.1/html/docbook.xsl @@ -0,0 +1,480 @@ +<?xml version='1.0'?> +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + xmlns:ng="http://docbook.org/docbook-ng" + xmlns:db="http://docbook.org/ns/docbook" + xmlns:exsl="http://exslt.org/common" + xmlns:exslt="http://exslt.org/common" + exclude-result-prefixes="db ng exsl exslt" + version='1.0'> + +<xsl:output method="html" + encoding="ISO-8859-1" + indent="no"/> + +<!-- ******************************************************************** + $Id: docbook.xsl 8783 2010-07-28 10:59:39Z mzjn $ + ******************************************************************** + + This file is part of the XSL DocBook Stylesheet distribution. + See ../README or http://docbook.sf.net/release/xsl/current/ for + copyright and other information. + + ******************************************************************** --> + +<!-- ==================================================================== --> + +<xsl:include href="../VERSION"/> +<xsl:include href="param.xsl"/> +<xsl:include href="../lib/lib.xsl"/> +<xsl:include href="../common/l10n.xsl"/> +<xsl:include href="../common/common.xsl"/> +<xsl:include href="../common/utility.xsl"/> +<xsl:include href="../common/labels.xsl"/> +<xsl:include href="../common/titles.xsl"/> +<xsl:include href="../common/subtitles.xsl"/> +<xsl:include href="../common/gentext.xsl"/> +<xsl:include href="../common/targets.xsl"/> +<xsl:include href="../common/olink.xsl"/> +<xsl:include href="../common/pi.xsl"/> +<xsl:include href="autotoc.xsl"/> +<xsl:include href="autoidx.xsl"/> +<xsl:include href="lists.xsl"/> +<xsl:include href="callout.xsl"/> +<xsl:include href="verbatim.xsl"/> +<xsl:include href="graphics.xsl"/> +<xsl:include href="xref.xsl"/> +<xsl:include href="formal.xsl"/> +<xsl:include href="table.xsl"/> +<xsl:include href="htmltbl.xsl"/> +<xsl:include href="sections.xsl"/> +<xsl:include href="inline.xsl"/> +<xsl:include href="footnote.xsl"/> +<xsl:include href="html.xsl"/> +<xsl:include href="info.xsl"/> +<xsl:include href="keywords.xsl"/> +<xsl:include href="division.xsl"/> +<xsl:include href="toc.xsl"/> +<xsl:include href="index.xsl"/> +<xsl:include href="refentry.xsl"/> +<xsl:include href="math.xsl"/> +<xsl:include href="admon.xsl"/> +<xsl:include href="component.xsl"/> +<xsl:include href="biblio.xsl"/> +<xsl:include href="biblio-iso690.xsl"/> +<xsl:include href="glossary.xsl"/> +<xsl:include href="block.xsl"/> +<xsl:include href="task.xsl"/> +<xsl:include href="qandaset.xsl"/> +<xsl:include href="synop.xsl"/> +<xsl:include href="titlepage.xsl"/> +<xsl:include href="titlepage.templates.xsl"/> +<xsl:include href="pi.xsl"/> +<xsl:include href="ebnf.xsl"/> +<xsl:include href="chunker.xsl"/> +<xsl:include href="html-rtf.xsl"/> +<xsl:include href="annotations.xsl"/> +<xsl:include href="../common/stripns.xsl"/> + +<xsl:param name="stylesheet.result.type" select="'html'"/> +<xsl:param name="htmlhelp.output" select="0"/> + +<!-- ==================================================================== --> + +<xsl:key name="id" match="*" use="@id|@xml:id"/> +<xsl:key name="gid" match="*" use="generate-id()"/> + +<!-- ==================================================================== --> + +<xsl:template match="*"> + <xsl:message> + <xsl:text>Element </xsl:text> + <xsl:value-of select="local-name(.)"/> + <xsl:text> in namespace '</xsl:text> + <xsl:value-of select="namespace-uri(.)"/> + <xsl:text>' encountered</xsl:text> + <xsl:if test="parent::*"> + <xsl:text> in </xsl:text> + <xsl:value-of select="name(parent::*)"/> + </xsl:if> + <xsl:text>, but no template matches.</xsl:text> + </xsl:message> + + <span style="color: red"> + <xsl:text><</xsl:text> + <xsl:value-of select="name(.)"/> + <xsl:text>></xsl:text> + <xsl:apply-templates/> + <xsl:text></</xsl:text> + <xsl:value-of select="name(.)"/> + <xsl:text>></xsl:text> + </span> +</xsl:template> + +<xsl:template match="text()"> + <xsl:value-of select="."/> +</xsl:template> + +<xsl:template name="body.attributes"> + <xsl:attribute name="bgcolor">white</xsl:attribute> + <xsl:attribute name="text">black</xsl:attribute> + <xsl:attribute name="link">#0000FF</xsl:attribute> + <xsl:attribute name="vlink">#840084</xsl:attribute> + <xsl:attribute name="alink">#0000FF</xsl:attribute> + <xsl:if test="starts-with($writing.mode, 'rl')"> + <xsl:attribute name="dir">rtl</xsl:attribute> + </xsl:if> +</xsl:template> + +<xsl:template name="head.content"> + <xsl:param name="node" select="."/> + <xsl:param name="title"> + <xsl:apply-templates select="$node" mode="object.title.markup.textonly"/> + </xsl:param> + + <title> + <xsl:copy-of select="$title"/> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Note + + + namesp. cut + + + stripped namespace before processing + + + + + + + + Note + + + namesp. cut + + + processing stripped document + + + + + + + + Unable to strip the namespace from DB5 document, + cannot proceed. + + + + + + + + + ID ' + + ' not found in document. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + + + diff --git a/docbook-xsl-1.76.1/html/ebnf.xsl b/docbook-xsl-1.76.1/html/ebnf.xsl new file mode 100644 index 0000000..b2ab23a --- /dev/null +++ b/docbook-xsl-1.76.1/html/ebnf.xsl @@ -0,0 +1,329 @@ + + + + + + + + +$Id: ebnf.xsl 8178 2008-12-15 22:26:38Z bobstayton $ + +Walsh +Norman +19992000 +Norman Walsh + + +HTML EBNF Reference + + +
    Introduction + +This is technical reference documentation for the DocBook XSL +Stylesheets; it documents (some of) the parameters, templates, and +other elements of the stylesheets. + +This reference describes the templates and parameters relevant +to formatting EBNF markup. + +This is not intended to be user documentation. +It is provided for developers writing customization layers for the +stylesheets, and for anyone who's interested in how it +works. + +Although I am trying to be thorough, this documentation is known +to be incomplete. Don't forget to read the source, too :-) +
    +
    +
    + + + + + + + + + + + + 1 + + + + + + EBNF + + for + + + + + + + + + + + + +
    + + +
    + + + + + + + + + + EBNF productions + +
    +
    +
    + + + + + + + + + + [ + + ] + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +   + + + + + + + + + + + + + Error: no ID for productionrecap linkend: + + . + + + + + + Warning: multiple "IDs" for productionrecap linkend: + + . + + + + + + + + + + + + + + + + | +
    +
    +
    + + + + + + + + + + + + + + + production + + + + + + + + + Non-terminals with no content must point to + production elements in the current document. + + + Invalid xpointer for empty nt: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ??? + + + + + + + + + + + + + /*  + +  */ +
    +
    + + + + + + + + + constraintdef + + + + + + + + + + + + + + + + : + + + + + + + : + + + + + + + + + +  ] + +
    +
    +
    + + +
    + + + +
    +
    + + +

    +
    + + + + diff --git a/docbook-xsl-1.76.1/html/footnote.xsl b/docbook-xsl-1.76.1/html/footnote.xsl new file mode 100644 index 0000000..035e3f3 --- /dev/null +++ b/docbook-xsl-1.76.1/html/footnote.xsl @@ -0,0 +1,313 @@ + + + + + + + + + + + #ftn. + + + + + + + [ + + + + + ] + + + + + [ + + + + + ] + + + + + + + + + + + +ERROR: A footnoteref element has a linkend that points to an element that is not a footnote. +Typically this happens when an id attribute is accidentally applied to the child of a footnote element. +target element: +linkend/id: + + + + + + + + + + + + #ftn. + + + + + [ + + + + + ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ftn. + + + + + + # + + + + + + + + + + + + + + [ + + + + + ] + + + + + + + + + + + + ftn. + + + + + + # + + + + + + + [ + + + + + ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    + +
    +
    + + +
    +
    +

    The following annotations are from this essay. You are seeing + them here because your browser doesn’t support the user-interface + techniques used to make them appear as ‘popups’ on modern browsers.

    +
    + + +
    +
    +
    + + + + + + + + +
    + + +
    +
    + + +
    + + + +
    +
    + + + + Warning: footnote number may not be generated + correctly; + + unexpected as first child of footnote. + +
    + + +
    +
    +
    +
    + + + + + + + + +
    diff --git a/docbook-xsl-1.76.1/html/formal.xsl b/docbook-xsl-1.76.1/html/formal.xsl new file mode 100644 index 0000000..768ca58 --- /dev/null +++ b/docbook-xsl-1.76.1/html/formal.xsl @@ -0,0 +1,425 @@ + + + + + +1 + + + + + + + + + + +
    + + + + + + + +
    + +
    + + + + + +

    + + +

    +

    + + + + + + + +
    +
    + +
    +
    +
    + + + + + + + + + -float + + + + + + + + + +
    + + + + + + + + + + + + + +
    + +
    +
    + +

    + + + +

    +
    +
    +
    + + + + + +
    +

    + + + + + + + + +

    +

    +
    + + + + + + + + + -float + + + + + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + before + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Broken table: tr descendent of CALS Table. + + + + + + + + + + before + + + + + + + + + + + + + + + + + + + + + + + + + Broken table: row descendent of HTML table. + + + + + + + + + + + + + + + + + + + + + + + + before + + + + + + + + + + + + + + + + + + + + + before + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + float: + + ; + + + +
    +
    + +
    diff --git a/docbook-xsl-1.76.1/html/glossary.xsl b/docbook-xsl-1.76.1/html/glossary.xsl new file mode 100644 index 0000000..f98ddbc --- /dev/null +++ b/docbook-xsl-1.76.1/html/glossary.xsl @@ -0,0 +1,492 @@ + + +%common.entities; +]> + + + + + + + + &setup-language-variable; + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + + + + + +
    +
    + + + +
    + + + + +
    +
    + + + + + + + + + + + &setup-language-variable; +
    + + + + + +
    + + + + + + + + + + +
    +
    +
    + + + + + &setup-language-variable; + + +
    + + + +
    + + + + + + + + + + +
    +
    +
    + + +

    + + +

    +
    + + + + + + + + +
    + + + + 0 + 1 + + + + + + + + ( + + ) + + + + + +
    +
    + +
    + + + + 0 + 1 + + + + + + + + ( + + ) + +
    +
    + +
    + + + + 0 + 1 + + + + + +
    +
    +
    + + +
    + + + + , + + + + + , + + + + + , + + + + + + + + + + + +
    +

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Warning: glosssee @otherterm reference not found: + + + + + + + + + + + + + + +

    +
    +
    + + +
    + + +

    + + + + + + + + + + + + + +

    +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Warning: glossseealso @otherterm reference not found: + + + + + + + + + + + + + + + + + + + + + + + + + + &setup-language-variable; + + + + + + + + Warning: processing automatic glossary + without a glossary.collection file. + + + + + + Warning: processing automatic glossary but unable to + open glossary.collection file ' + + ' + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + + + + + + + + + + + + + + +
    +
    +
    + + + + +
    +
    + + + + + + + + + + &setup-language-variable; + +
    + + + +
    + + + + ! + + + + + + + + + + + + + + + +
    +
    +
    + + + +
    diff --git a/docbook-xsl-1.76.1/html/graphics.xsl b/docbook-xsl-1.76.1/html/graphics.xsl new file mode 100644 index 0000000..93ea95f --- /dev/null +++ b/docbook-xsl-1.76.1/html/graphics.xsl @@ -0,0 +1,1515 @@ + + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + +
    + + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + 0 + 0 + + 1 + 0 + + + + + + 1.0 + 1.0 + + + + 1.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + px + + + + + + + + + + + px + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + px + + + + + + + + + + + px + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + middle + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Warning: imagemaps not supported + on scaled images + + + + 0 + + + + + + + + + + + + + + + + + + + + middle + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + height: + + px + + + + + + + + + + + +
    + + + + + background-color: + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + calspair + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + , + + , + + , + + + + + + + + + + + + Warning: only calspair or + otherunits='imagemap' supported + in imageobjectco + + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + middle + + + + + + + + + + + + + + + + + +
    + + + + + + + +
    +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No insertfile extension available. + + + + + + + Cannot insert + . Check use.extensions and textinsert.extension parameters. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + + + + + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No insertfile extension available. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No insertfile extension available. + + + + + + + Cannot insert + . Check use.extensions and textinsert.extension parameters. + + + + + + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    diff --git a/docbook-xsl-1.76.1/html/highlight.xsl b/docbook-xsl-1.76.1/html/highlight.xsl new file mode 100644 index 0000000..f7307a4 --- /dev/null +++ b/docbook-xsl-1.76.1/html/highlight.xsl @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/html/html-rtf.xsl b/docbook-xsl-1.76.1/html/html-rtf.xsl new file mode 100644 index 0000000..8de6bb3 --- /dev/null +++ b/docbook-xsl-1.76.1/html/html-rtf.xsl @@ -0,0 +1,336 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + + + +
    +
    +
    +
    + + + + + + + + + + + + + + +
    +
    + + + + + + + + + + +
    +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    diff --git a/docbook-xsl-1.76.1/html/html.xsl b/docbook-xsl-1.76.1/html/html.xsl new file mode 100644 index 0000000..bf76e83 --- /dev/null +++ b/docbook-xsl-1.76.1/html/html.xsl @@ -0,0 +1,612 @@ + + + + + + + + + + left + right + left + + + + + + right + left + right + + + + + + ltr + rtl + ltr + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + # + + + + + + + + + # + + + + + + + + + + + + + + + + + + + bullet + + + + + + + + + bullet + + + © + + + ® + (SM) +   + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ID recommended on + + + : + + + + ... + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR: no root element for CSS source file' + + '. + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR: missing CSS input filename. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/html/htmltbl.xsl b/docbook-xsl-1.76.1/html/htmltbl.xsl new file mode 100644 index 0000000..1fb5d6f --- /dev/null +++ b/docbook-xsl-1.76.1/html/htmltbl.xsl @@ -0,0 +1,135 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + float: + + left + right + + + + + + + + + + + + + none + none + + ; + + + + diff --git a/docbook-xsl-1.76.1/html/index.xsl b/docbook-xsl-1.76.1/html/index.xsl new file mode 100644 index 0000000..1837020 --- /dev/null +++ b/docbook-xsl-1.76.1/html/index.xsl @@ -0,0 +1,288 @@ + + + + + + + + + + + + + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    +
    +
    + + + + + + + + + + +
    +
    +
    + + + + + + + + + + + +
    + + + + + + + + + + + + + + + + + + + +
    +
    +
    + + + + + + + + + + + + +
    + + + + + + + + + +
    + +
    +
    +
    + + +

    + + +

    +
    + + + + + + + + + +
    + + + + + + + + + + + + +
    + +
    +
    + + + +
    +
    + + + + + + + + + + +
    +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    + + +
    +
    + +
    +
    + + + + + + + + + + + + + + +
    +
    +
    + + +
    + ( + + + + + + ) +
    +
    + + +
    + ( + + + + + + ) +
    +
    + + diff --git a/docbook-xsl-1.76.1/html/info.xsl b/docbook-xsl-1.76.1/html/info.xsl new file mode 100644 index 0000000..404ac13 --- /dev/null +++ b/docbook-xsl-1.76.1/html/info.xsl @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/html/inline.xsl b/docbook-xsl-1.76.1/html/inline.xsl new file mode 100644 index 0000000..cd3d342 --- /dev/null +++ b/docbook-xsl-1.76.1/html/inline.xsl @@ -0,0 +1,1490 @@ + + +%common.entities; +]> + + + + + + + + + + + + + + + + + + + _blank + _top + + + + + + + + + + + + + + 1 + 0 + + + + + + + + + 1 + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + XLink to nonexistent id: + + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + span + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ( + + ) + + + + + + + + + + + , + + + + + + + , + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + abbr + + + + + + acronym + + + + + + + + + + + + + + + + + + + + + + + + + + http://example.com/cgi-bin/man.cgi? + + ( + + ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + SM + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Warning: glossary.collection specified, but there are + + automatic glossaries + + + + + + + + + + + + + + + + + + + + + + + + There's no entry for + + in + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Error: no glossentry for glossterm: + + . + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + element + + + + + + + + + + + + + + + + </ + + > + + + & + + ; + + + &# + + ; + + + % + + ; + + + <? + + > + + + <? + + ?> + + + < + + > + + + < + + /> + + + <!-- + + --> + + + + + + + + + + + + + + + + + + + + + + < + + + + + mailto: + + + + + + > + + + + + + + + + + + + + - + - + - + + + + + + + + + + + + + + + + + + + + + + ( + + ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + [ + + + + + + + + + + + + + + + + + + + ] + + + [ + + ] + + + + + + + + + + + + + [ + + + + + + + + + + + + ] + + + [ + + ] + + + + + + + + + + + + +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/html/keywords.xsl b/docbook-xsl-1.76.1/html/keywords.xsl new file mode 100644 index 0000000..c12e39f --- /dev/null +++ b/docbook-xsl-1.76.1/html/keywords.xsl @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + , + + + + + diff --git a/docbook-xsl-1.76.1/html/lists.xsl b/docbook-xsl-1.76.1/html/lists.xsl new file mode 100644 index 0000000..52123b0 --- /dev/null +++ b/docbook-xsl-1.76.1/html/lists.xsl @@ -0,0 +1,1183 @@ + + + + + + + + +
    + + + + + + + + + +
      + + + + + + + + + + + + + +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + circle + disc + square + + + + + + +
  • + + + + list-style-type: + + + + + + + + + + + +
    + +
    +
    + + + +
    +
  • +
    + + + + + + + + + + + + + 1 + a + i + A + I + + + + Unexpected numeration: + + + + + + + +
    + + + + + + + + + + + + + + + + + + +
    +
    + +
      + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + + + + + + +
  • + + + + + + + + + + + + + + +
    + +
    +
    + + + +
    +
  • +
    + + + + + + + + + + + + + +
    + +
    +
    + + + +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + +
    +
    +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + +

    + + + + + + + + + + + + + +

    +
    +
    +
    + + +
    + + +
    +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + +

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    + + + + + +
    + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    +
    + + + + + + + + + +
    + +
    +
    + + + +
    +
    + + + + + + + + + + + + + + + 1 + + + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + , + + + + + + + + + + + + + + + + + + + + + + + 1 + + + +
    +
    + + + + + + + + + + + + 1 + + + +
    +
    + + + 1 + 1 + + + + + + + + + + + + + + + + + + + + + + + + + 1 + 1 + + 1 + + + + + + + + +   + + + + + + + + + + + + + + 1 + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + 1 + 1 + + 1 + + + + + + + + +   + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + before + + + + + + + + + +
    + + + + + 0 + 1 + + + + + + + + + + + + +
      + + +
    +
    + +
      + + + + + +
    +
    +
    + + + + +
    +
    + + + + + + + + + + + + +
      + + +
    +
    + + +
  • + + + +
  • +
    + + + +
      + + +
    +
    + + +

    + + + + +

    +
    + + + + + + + + +
    + + + + + + + + + + + + + + + + + +
    +
    + + +
    + + + + + + + +
    +
    + + + + + + + + + +
    + + + +
    +
    + + + + + + + + +
    + + + + + : + + + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + + + + + + + + +
    +
    + +
    + +
    +
    +
    +
    +
    + + + + + + + + + + + + + + + +

    + + + + +

    + + + + + +
    + +
    + + + + +
    +
    +
    +
    +
    + + + + + + + + + +

    + + + + + + + + + + + + + + + +

    +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ??? + + + + + # + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ??? + + + + + + + + + + + + + + + + + + + +
    diff --git a/docbook-xsl-1.76.1/html/maketoc.xsl b/docbook-xsl-1.76.1/html/maketoc.xsl new file mode 100644 index 0000000..1ba3931 --- /dev/null +++ b/docbook-xsl-1.76.1/html/maketoc.xsl @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + filename=" + + " + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/html/manifest.xsl b/docbook-xsl-1.76.1/html/manifest.xsl new file mode 100644 index 0000000..01faacc --- /dev/null +++ b/docbook-xsl-1.76.1/html/manifest.xsl @@ -0,0 +1,22 @@ + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/html/math.xsl b/docbook-xsl-1.76.1/html/math.xsl new file mode 100644 index 0000000..801b106 --- /dev/null +++ b/docbook-xsl-1.76.1/html/math.xsl @@ -0,0 +1,270 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Unsupported TeX math notation: + + + + + + + + + + + + + \nopagenumbers + + + + \bye + + + + + + + + + + + + + + + + + + + + + + + \special{dvi2bitmap outputfile + + } + + $ + + + + $ + + \vfill\eject + + + + + + + + + + + + + + + + + + + + + + + + \special{dvi2bitmap outputfile + + } + + $$ + + + + $$ + + \vfill\eject + + + + + + + + + \documentclass{article} + \pagestyle{empty} + \begin{document} + + + + \end{document} + + + + + + + + + + + + + + + + + + + + + + + \special{dvi2bitmap outputfile + + } + + $ + + + + $ + + \newpage + + + + + + + + + + + + + + + + + + + + + + + + \special{dvi2bitmap outputfile + + } + + $$ + + + + $$ + + \newpage + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + 0 + 1 + + + + + + diff --git a/docbook-xsl-1.76.1/html/oldchunker.xsl b/docbook-xsl-1.76.1/html/oldchunker.xsl new file mode 100644 index 0000000..fe6b17c --- /dev/null +++ b/docbook-xsl-1.76.1/html/oldchunker.xsl @@ -0,0 +1,202 @@ + + + + + + + + + + + + + +Encoding used in generated HTML pages + +This encoding is used in files generated by chunking stylesheet. Currently +only Saxon is able to change output encoding. + + + + + + + + + +Saxon character representation used in generated HTML pages + +This character representation is used in files generated by chunking stylesheet. If +you want to suppress entity references for characters with direct representation +in default.encoding, set this parameter to value native. + + + + + + + + + + + + + + + + + + + + + + + + Chunking isn't supported with + + + + + + + + + + + + + + + Writing + + + for + + + ( + + ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Can't make chunks with + + 's processor. + + + + + + + + + + + + + + + + Writing + + + for + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Can't make chunks with + + 's processor. + + + + + + diff --git a/docbook-xsl-1.76.1/html/onechunk.xsl b/docbook-xsl-1.76.1/html/onechunk.xsl new file mode 100644 index 0000000..527dccf --- /dev/null +++ b/docbook-xsl-1.76.1/html/onechunk.xsl @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + +1 + + + + # + + + + + + diff --git a/docbook-xsl-1.76.1/html/param.xml b/docbook-xsl-1.76.1/html/param.xml new file mode 100644 index 0000000..e70de9c --- /dev/null +++ b/docbook-xsl-1.76.1/html/param.xml @@ -0,0 +1,10905 @@ + + + +HTML Parameter Reference + +$Id: param.xweb 8552 2009-12-07 17:45:26Z bobstayton $ + + + + Walsh + Norman + + + + 1999 + 2000 + 2001 + 2002 + 2003 + 2004 + 2005 + 2006 + 2007 + Norman Walsh + + + This is reference documentation for all user-configurable + parameters in the DocBook XSL HTML stylesheets (for generating + HTML output). + + +Admonitions + + +admon.graphics.extension +string + + +admon.graphics.extension +Filename extension for admonition graphics + + + + +<xsl:param name="admon.graphics.extension">.png</xsl:param> + + + +Description + +Sets the filename extension to use on admonition graphics. + + + + + + +admon.graphics.path +string + + +admon.graphics.path +Path to admonition graphics + + + +<xsl:param name="admon.graphics.path">images/</xsl:param> + + +Description + +Sets the path to the directory containing the admonition graphics +(caution.png, important.png etc). This location is normally relative +to the output html directory. See base.dir + + + + + + +admon.graphics +boolean + + +admon.graphics +Use graphics in admonitions? + + + + +<xsl:param name="admon.graphics" select="0"></xsl:param> + + + +Description + +If true (non-zero), admonitions are presented in an alternate style that uses +a graphic. Default graphics are provided in the distribution. + + + + + + + +admon.textlabel +boolean + + +admon.textlabel +Use text label in admonitions? + + + + +<xsl:param name="admon.textlabel" select="1"></xsl:param> + + + +Description + +If true (non-zero), admonitions are presented with a generated +text label such as Note or Warning in the appropriate language. +If zero, such labels are turned off, but any title child +of the admonition element are still output. +The default value is 1. + + + + + + + +admon.style +string + + +admon.style +Specifies the CSS style attribute that should be added to +admonitions. + + + +<xsl:param name="admon.style"> + <xsl:value-of select="concat('margin-', $direction.align.start, ': 0.5in; margin-', $direction.align.end, ': 0.5in;')"></xsl:value-of> +</xsl:param> + + +Description + +Specifies the value of the CSS style +attribute that should be added to admonitions. + + + + + + +Callouts + + +callout.defaultcolumn +integer + + +callout.defaultcolumn +Indicates what column callouts appear in by default + + + + +<xsl:param name="callout.defaultcolumn">60</xsl:param> + + + +Description + +If a callout does not identify a column (for example, if it uses +the linerange unit), +it will appear in the default column. + + + + + + + +callout.graphics.extension +string + + +callout.graphics.extension +Filename extension for callout graphics + + + + +<xsl:param name="callout.graphics.extension">.png</xsl:param> + + + + +Description +Sets the filename extension to use on callout graphics. + + +The Docbook XSL distribution provides callout graphics in the following formats: +SVG (extension: .svg) +PNG (extension: .png) +GIF (extension: .gif) + + + + + + +callout.graphics.number.limit +integer + + +callout.graphics.number.limit +Number of the largest callout graphic + + + + +<xsl:param name="callout.graphics.number.limit">15</xsl:param> + + + + +Description + +If callout.graphics is non-zero, graphics +are used to represent callout numbers instead of plain text. The value +of callout.graphics.number.limit is the largest +number for which a graphic exists. If the callout number exceeds this +limit, the default presentation "(plain text instead of a graphic)" +will be used. + + + + + + + +callout.graphics.path +string + + +callout.graphics.path +Path to callout graphics + + + + +<xsl:param name="callout.graphics.path">images/callouts/</xsl:param> + + + +Description + +Sets the path to the directory holding the callout graphics. his +location is normally relative to the output html directory. see +base.dir. Always terminate the directory with / since the graphic file +is appended to this string, hence needs the separator. + + + + + + + +callout.graphics +boolean + + +callout.graphics +Use graphics for callouts? + + + + +<xsl:param name="callout.graphics" select="1"></xsl:param> + + + +Description + +If non-zero, callouts are presented with graphics (e.g., reverse-video +circled numbers instead of "(1)", "(2)", etc.). +Default graphics are provided in the distribution. + + + + + + + +callout.list.table +boolean + + +callout.list.table +Present callout lists using a table? + + + + +<xsl:param name="callout.list.table" select="1"></xsl:param> + + + +Description + +The default presentation of calloutlists uses +an HTML DL element. Some browsers don't align DLs very well +if callout.graphics is used. With this option +turned on, calloutlists are presented in an HTML +TABLE, which usually results in better alignment +of the callout number with the callout description. + + + + + + +callout.unicode.number.limit +integer + + +callout.unicode.number.limit +Number of the largest unicode callout character + + + + +<xsl:param name="callout.unicode.number.limit">10</xsl:param> + + + +Description + +If callout.unicode +is non-zero, unicode characters are used to represent +callout numbers. The value of +callout.unicode.number.limit +is +the largest number for which a unicode character exists. If the callout number +exceeds this limit, the default presentation "(nnn)" will always +be used. + + + + + + + +callout.unicode.start.character +integer + + +callout.unicode.start.character +First Unicode character to use, decimal value. + + + + +<xsl:param name="callout.unicode.start.character">10102</xsl:param> + + + +Description + +If callout.graphics is zero and callout.unicode +is non-zero, unicode characters are used to represent +callout numbers. The value of +callout.unicode.start.character +is the decimal unicode value used for callout number one. Currently, +only 10102 is supported in the stylesheets for this parameter. + + + + + + + +callout.unicode +boolean + + +callout.unicode +Use Unicode characters rather than images for callouts. + + + +<xsl:param name="callout.unicode" select="0"></xsl:param> + + +Description + +The stylesheets can use either an image of the numbers one to ten, or the single Unicode character which represents the numeral, in white on a black background. Use this to select the Unicode character option. + + + + + + + +callouts.extension +boolean + + +callouts.extension +Enable the callout extension + + + + +<xsl:param name="callouts.extension" select="1"></xsl:param> + + + +Description + +The callouts extension processes areaset +elements in programlistingco and other text-based +callout elements. + + + + + + +EBNF + + +ebnf.table.bgcolor +color + + +ebnf.table.bgcolor +Background color for EBNF tables + + + + +<xsl:param name="ebnf.table.bgcolor">#F5DCB3</xsl:param> + + + +Description + +Sets the background color for EBNF tables (a pale brown). No +bgcolor attribute is output if +ebnf.table.bgcolor is set to the null string. + + + + + + + +ebnf.table.border +boolean + + +ebnf.table.border +Selects border on EBNF tables + + + +<xsl:param name="ebnf.table.border" select="1"></xsl:param> + + +Description + +Selects the border on EBNF tables. If non-zero, the tables have +borders, otherwise they don't. + + + + + + +ebnf.assignment +rtf + + +ebnf.assignment +The EBNF production assignment operator + + + + +<xsl:param name="ebnf.assignment"> +<code>::=</code> +</xsl:param> + + + + +Description + +The ebnf.assignment parameter determines what +text is used to show assignment in productions +in productionsets. + +While ::= is common, so are several +other operators. + + + + + + +ebnf.statement.terminator +rtf + + +ebnf.statement.terminator +Punctuation that ends an EBNF statement. + + + + +<xsl:param name="ebnf.statement.terminator"></xsl:param> + + + + +Description + +The ebnf.statement.terminator parameter determines what +text is used to terminate each production +in productionset. + +Some notations end each statement with a period. + + + + + +ToC/LoT/Index Generation + + +annotate.toc +boolean + + +annotate.toc +Annotate the Table of Contents? + + + +<xsl:param name="annotate.toc" select="1"></xsl:param> + + +Description + +If true, TOCs will be annotated. At present, this just means +that the refpurpose of refentry +TOC entries will be displayed. + + + + + + + +autotoc.label.separator +string + + +autotoc.label.separator +Separator between labels and titles in the ToC + + + + +<xsl:param name="autotoc.label.separator">. </xsl:param> + + + +Description + +String used to separate labels and titles in a table of contents. + + + + + + +autotoc.label.in.hyperlink +boolean + + +autotoc.label.in.hyperlink +Include label in hyperlinked titles in TOC? + + + +<xsl:param name="autotoc.label.in.hyperlink" select="1"></xsl:param> + + +Description + +If the value of +autotoc.label.in.hyperlink is non-zero, labels +are included in hyperlinked titles in the TOC. If it is instead zero, +labels are still displayed prior to the hyperlinked titles, but +are not hyperlinked along with the titles. + + + + + + +process.source.toc +boolean + + +process.source.toc +Process a non-empty toc element if it occurs in a source document? + + + +<xsl:param name="process.source.toc" select="0"></xsl:param> + + +Description + +Specifies that the contents of a non-empty "hard-coded" +toc element in a source document are processed to +generate a TOC in output. + + This parameter has no effect on automated generation of + TOCs. An automated TOC may still be generated along with the + "hard-coded" TOC. To suppress automated TOC generation, adjust the + value of the generate.toc paramameter. + + The process.source.toc parameter also has + no effect if the toc element is empty; handling + for empty toc is controlled by the + process.empty.source.toc parameter. + + + + + + + + +process.empty.source.toc +boolean + + +process.empty.source.toc +Generate automated TOC if toc element occurs in a source document? + + + +<xsl:param name="process.empty.source.toc" select="0"></xsl:param> + + +Description + +Specifies that if an empty toc element is found in a +source document, an automated TOC is generated at this point in the +document. + + Depending on what the value of the + generate.toc parameter is, setting this + parameter to 1 could result in generation of + duplicate automated TOCs. So the + process.empty.source.toc is primarily useful + as an "override": by placing an empty toc in your + document and setting this parameter to 1, you can + force a TOC to be generated even if generate.toc + says not to. + + + + + + + + +bridgehead.in.toc +boolean + + +bridgehead.in.toc +Should bridgehead elements appear in the TOC? + + + +<xsl:param name="bridgehead.in.toc" select="0"></xsl:param> + + +Description + +If non-zero, bridgeheads appear in the TOC. Note that +this option is not fully supported and may be removed in a future +version of the stylesheets. + + + + + + + +simplesect.in.toc +boolean + + +simplesect.in.toc +Should simplesect elements appear in the TOC? + + + +<xsl:param name="simplesect.in.toc" select="0"></xsl:param> + + +Description + +If non-zero, simplesects will be included in the TOC. + + + + + + + +manual.toc +string + + +manual.toc +An explicit TOC to be used for the TOC + + + + +<xsl:param name="manual.toc"></xsl:param> + + + +Description + +The manual.toc identifies an explicit TOC that +will be used for building the printed TOC. + + + + + + + +toc.list.type +list +dl +ul +ol + + +toc.list.type +Type of HTML list element to use for Tables of Contents + + + +<xsl:param name="toc.list.type">dl</xsl:param> + + +Description + +When an automatically generated Table of Contents (or List of Titles) +is produced, this HTML element will be used to make the list. + + + + + + + +toc.section.depth +integer + + +toc.section.depth +How deep should recursive sections appear +in the TOC? + + + +<xsl:param name="toc.section.depth">2</xsl:param> + + +Description + +Specifies the depth to which recursive sections should appear in the +TOC. + + + + + + + +toc.max.depth +integer + + +toc.max.depth +How many levels should be created for each TOC? + + + +<xsl:param name="toc.max.depth">8</xsl:param> + + +Description + +Specifies the maximal depth of TOC on all levels. + + + + + + +generate.toc +table + + +generate.toc +Control generation of ToCs and LoTs + + + + +<xsl:param name="generate.toc"> +appendix toc,title +article/appendix nop +article toc,title +book toc,title,figure,table,example,equation +chapter toc,title +part toc,title +preface toc,title +qandadiv toc +qandaset toc +reference toc,title +sect1 toc +sect2 toc +sect3 toc +sect4 toc +sect5 toc +section toc +set toc,title +</xsl:param> + + + + +Description + +This parameter has a structured value. It is a table of space-delimited +path/value pairs. Each path identifies some element in the source document +using a restricted subset of XPath (only the implicit child axis, no wildcards, +no predicates). Paths can be either relative or absolute. + +When processing a particular element, the stylesheets consult this table to +determine if a ToC (or LoT(s)) should be generated. + +For example, consider the entry: + +book toc,figure + +This indicates that whenever a book is formatted, a +Table Of Contents and a List of Figures should be generated. Similarly, + +/chapter toc + +indicates that whenever a document that has a root +of chapter is formatted, a Table of +Contents should be generated. The entry chapter would match +all chapters, but /chapter matches only chapter +document elements. + +Generally, the longest match wins. So, for example, if you want to distinguish +articles in books from articles in parts, you could use these two entries: + +book/article toc,figure +part/article toc + +Note that an article in a part can never match a book/article, +so if you want nothing to be generated for articles in parts, you can simply leave +that rule out. + +If you want to leave the rule in, to make it explicit that you're turning +something off, use the value nop. For example, the following +entry disables ToCs and LoTs for articles: + +article nop + +Do not simply leave the word article in the file +without a matching value. That'd be just begging the silly little +path/value parser to get confused. + +Section ToCs are further controlled by the +generate.section.toc.level parameter. +For a given section level to have a ToC, it must have both an entry in +generate.toc and be within the range enabled by +generate.section.toc.level. + + + + + +generate.section.toc.level +integer + + +generate.section.toc.level +Control depth of TOC generation in sections + + + + +<xsl:param name="generate.section.toc.level" select="0"></xsl:param> + + + +Description + +The generate.section.toc.level parameter +controls the depth of section in which TOCs will be generated. Note +that this is related to, but not the same as +toc.section.depth, which controls the depth to +which TOC entries will be generated in a given TOC. +If, for example, generate.section.toc.level +is 3, TOCs will be generated in first, second, and third +level sections, but not in fourth level sections. + + + + + + + +generate.index +boolean + + +generate.index +Do you want an index? + + + +<xsl:param name="generate.index" select="1"></xsl:param> + + +Description + +Specify if an index should be generated. + + + + + + +index.method +list +basic +kosek +kimber + + +index.method +Select method used to group index entries in an index + + + + +<xsl:param name="index.method">basic</xsl:param> + + + +Description + +This parameter lets you select which method to use for sorting and grouping + index entries in an index. +Indexes in Latin-based languages that have accented characters typically +sort together accented words and unaccented words. +Thus Á (U+00C1 LATIN CAPITAL LETTER A WITH ACUTE) would sort together +with A (U+0041 LATIN CAPITAL LETTER A), so both would appear in the A +section of the index. +Languages using other alphabets (such as Russian, which is written in the Cyrillic alphabet) +and languages using ideographic chararacters (such as Japanese) +require grouping specific to the languages and alphabets. + + +The default indexing method is limited. +It can group accented characters in Latin-based languages only. +It cannot handle non-Latin alphabets or ideographic languages. +The other indexing methods require extensions of one type or +another, and do not work with +all XSLT processors, which is why they are not used by default. + +The three choices for indexing method are: + + +basic + + +(default) Sort and groups words based only on the Latin alphabet. +Words with accented Latin letters will group and sort with +their respective primary letter, but +words in non-Latin alphabets will be +put in the Symbols section of the index. + + + + +kosek + + +This method sorts and groups words based on letter groups configured in +the DocBook locale file for the given language. +See, for example, the French locale file common/fr.xml. +This method requires that the XSLT processor +supports the EXSLT extensions (most do). +It also requires support for using +user-defined functions in xsl:key (xsltproc does not). + +This method is suitable for any language for which you can +list all the individual characters that should appear +in each letter group in an index. +It is probably not practical to use it for ideographic languages +such as Chinese that have hundreds or thousands of characters. + + +To use the kosek method, you must: + + + +Use a processor that supports its extensions, such as +Saxon 6 or Xalan (xsltproc and Saxon 8 do not). + + + +Set the index.method parameter's value to kosek. + + + +Import the appropriate index extensions stylesheet module +fo/autoidx-kosek.xsl or +html/autoidx-kosek.xsl into your +customization. + + + + + + + +kimber + + +This method uses extensions to the Saxon processor to implement +sophisticated indexing processes. It uses its own +configuration file, which can include information for any number of +languages. Each language's configuration can group +words using one of two processes. In the +enumerated process similar to that used in the kosek method, +you indicate the groupings character-by-character. +In the between-key process, you specify the +break-points in the sort order that should start a new group. +The latter configuration is useful for ideographic languages +such as Chinese, Japanese, and Korean. +You can also define your own collation algorithms and how you +want mixed Latin-alphabet words sorted. + + +For a whitepaper describing the extensions, see: +http://www.innodata-isogen.com/knowledge_center/white_papers/back_of_book_for_xsl_fo.pdf. + + + +To download the extension library, see +http://www.innodata-isogen.com/knowledge_center/tools_downloads/i18nsupport. + + + + +To use the kimber method, you must: + + + +Use Saxon (version 6 or 8) as your XSLT processor. + + + +Install and configure the Innodata Isogen library, using +the documentation that comes with it. + + + +Set the index.method parameter's value to kimber. + + + +Import the appropriate index extensions stylesheet module +fo/autoidx-kimber.xsl or +html/autoidx-kimber.xsl into your +customization. + + + + + + + + + + + + + +index.on.type +boolean + + +index.on.type +Select indexterms based on type +attribute value + + + + +<xsl:param name="index.on.type" select="0"></xsl:param> + + + +Description + + +If non-zero, +then an index element that has a +type attribute +value will contain only those indexterm +elements with a matching type attribute value. +If an index has no type +attribute or it is blank, then the index will contain +all indexterms in the current scope. + + + +If index.on.type is zero, then the +type attribute has no effect +on selecting indexterms for an index. + + +For those using DocBook version 4.2 or earlier, +the type attribute is not available +for index terms. However, you can achieve the same +effect by using the role attribute +in the same manner on indexterm +and index, and setting the stylesheet parameter +index.on.role to a nonzero value. + + + + + + + +index.on.role +boolean + + +index.on.role +Select indexterms based on role value + + + + +<xsl:param name="index.on.role" select="0"></xsl:param> + + + +Description + + +If non-zero, +then an index element that has a +role attribute +value will contain only those indexterm +elements with a matching role value. +If an index has no role +attribute or it is blank, then the index will contain +all indexterms in the current scope. + + +If index.on.role is zero, then the +role attribute has no effect +on selecting indexterms for an index. + + +If you are using DocBook version 4.3 or later, you should +use the type attribute instead of role +on indexterm and index, +and set the index.on.type to a nonzero +value. + + + + + + + +index.links.to.section +boolean + + +index.links.to.section +HTML index entries link to container section title + + + + +<xsl:param name="index.links.to.section" select="1"></xsl:param> + + + +Description + +If zero, then an index entry in an index links +directly to the location of the +generated anchor that is output +for the indexterm. If two identical indexterm elements +exist in the same section, then both entries appear +in the index with the same title but link to different +locations. + +If non-zero, then an index entry in an index links to the +section title containing the indexterm, rather than +directly to the anchor output for the indexterm. +Duplicate indexterm entries in the same section are dropped. + + +The default value is 1, so index entries link to +section titles by default. + +In both cases, the link text in an index entry is the +title of the section containing the indexterm. +That is because HTML does not have numbered pages. +It also provides the reader with context information +for each link. + +This parameter lets you choose which style of +index linking you want. + + + +When set to 0, an index entry takes you +to the precise location of its corresponding indexterm. +However, if you have a lot of duplicate +entries in sections, then you have a lot of duplicate +titles in the index, which makes it more cluttered. +The reader may not recognize why duplicate titles +appear until they follow the links. Also, the links +may land the reader in the middle of a section where the +section title is not visible, which may also be +confusing to the reader. + + +When set to 1, an index entry link is +less precise, but duplicate titles in the +index entries are eliminated. +Landing on the section title location may confirm the reader's +expectation that a link that +shows a section title will take them to that section title, +not a location within the section. + + + + + + + + + +index.prefer.titleabbrev +boolean + + +index.prefer.titleabbrev +Should abbreviated titles be used as back references? + + + + +<xsl:param name="index.prefer.titleabbrev" select="0"></xsl:param> + + + +Description + +If non-zero, and if a titleabbrev is defined, the abbreviated title +is used as the link text of a back reference in the index. + + + + + + + +index.term.separator +string + + +index.term.separator +Override for punctuation separating an index term +from its list of page references in an index + + + + +<xsl:param name="index.term.separator"></xsl:param> + + + +Description + +This parameter permits you to override +the text to insert between +the end of an index term and its list of page references. +Typically that might be a comma and a space. + + +Because this text may be locale dependent, +this parameter's value is normally taken from a gentext +template named 'term-separator' in the +context 'index' in the stylesheet +locale file for the language +of the current document. +This parameter can be used to override the gentext string, +and would typically be used on the command line. +This parameter would apply to all languages. + + +So this text string can be customized in two ways. +You can reset the default gentext string using +the local.l10n.xml parameter, or you can +fill in the content for this normally empty +override parameter. +The content can be a simple string, or it can be +something more complex such as a call-template. +For fo output, it could be an fo:leader +element to provide space of a specific length, or a dot leader. + + + + + + + +index.number.separator +string + + +index.number.separator +Override for punctuation separating page numbers in index + + + + +<xsl:param name="index.number.separator"></xsl:param> + + + +Description + +This parameter permits you to override the text to insert between +page references in a formatted index entry. Typically +that would be a comma and a space. + + +Because this text may be locale dependent, +this parameter's value is normally taken from a gentext +template named 'number-separator' in the +context 'index' in the stylesheet +locale file for the language +of the current document. +This parameter can be used to override the gentext string, +and would typically be used on the command line. +This parameter would apply to all languages. + + +So this text string can be customized in two ways. +You can reset the default gentext string using +the local.l10n.xml parameter, or you can +override the gentext with the content of this parameter. +The content can be a simple string, or it can be +something more complex such as a call-template. + + +In HTML index output, section title references are used instead of +page number references. This punctuation appears between +such section titles in an HTML index. + + + + + + + +index.range.separator +string + + +index.range.separator +Override for punctuation separating the two numbers +in a page range in index + + + + +<xsl:param name="index.range.separator"></xsl:param> + + + +Description + +This parameter permits you +to override the text to insert between +the two numbers of a page range in an index. +This parameter is only used by those XSL-FO processors +that support an extension for generating such page ranges +(such as XEP). + +Because this text may be locale dependent, +this parameter's value is normally taken from a gentext +template named 'range-separator' in the +context 'index' in the stylesheet +locale file for the language +of the current document. +This parameter can be used to override the gentext string, +and would typically be used on the command line. +This parameter would apply to all languages. + + +So this text string can be customized in two ways. +You can reset the default gentext string using +the local.l10n.xml parameter, or you can +override the gentext with the content of this parameter. +The content can be a simple string, or it can be +something more complex such as a call-template. + + +In HTML index output, section title references are used instead of +page number references. So there are no page ranges +and this parameter has no effect. + + + + + + +Stylesheet Extensions + + +linenumbering.everyNth +integer + + +linenumbering.everyNth +Indicate which lines should be numbered + + + + +<xsl:param name="linenumbering.everyNth">5</xsl:param> + + + +Description + +If line numbering is enabled, everyNth line will be +numbered. Note that numbering is one based, not zero based. + + + + + + + +linenumbering.extension +boolean + + +linenumbering.extension +Enable the line numbering extension + + + + +<xsl:param name="linenumbering.extension" select="1"></xsl:param> + + + +Description + +If non-zero, verbatim environments (address, literallayout, +programlisting, screen, synopsis) that specify line numbering will +have line numbers. + + + + + + + +linenumbering.separator +string + + +linenumbering.separator +Specify a separator between line numbers and lines + + + + +<xsl:param name="linenumbering.separator"><xsl:text> </xsl:text></xsl:param> + + + +Description + +The separator is inserted between line numbers and lines in the +verbatim environment. The default value is a single white space. + Note the interaction with linenumbering.width + + + + + + + +linenumbering.width +integer + + +linenumbering.width +Indicates the width of line numbers + + + + +<xsl:param name="linenumbering.width">3</xsl:param> + + + +Description + +If line numbering is enabled, line numbers will appear right +justified in a field "width" characters wide. + + + + + + + +tablecolumns.extension +boolean + + +tablecolumns.extension +Enable the table columns extension function + + + + +<xsl:param name="tablecolumns.extension" select="1"></xsl:param> + + + +Description + +The table columns extension function adjusts the widths of table +columns in the HTML result to more accurately reflect the specifications +in the CALS table. + + + + + + + + textinsert.extension + boolean + + + textinsert.extension + Enables the textinsert extension element + + + + <xsl:param name="textinsert.extension" select="1"></xsl:param> + + + Description + The textinsert extension element inserts the contents of + a file into the result tree (as text). + + To use the textinsert extension element, you must use + either Saxon or Xalan as your XSLT processor (it doesn’t + work with xsltproc), along with either the DocBook Saxon + extensions or DocBook Xalan extensions (for more + information about those extensions, see DocBook Saxon Extensions and DocBook Xalan Extensions), and you must set both + the use.extensions and + textinsert.extension parameters to + 1. + As an alternative to using the textinsert element, + consider using an Xinclude element with the + parse="text" attribute and value + specified, as detailed in Using XInclude for text inclusions. + + + See Also + You can also use the dbhtml-include href processing + instruction to insert external files — both files containing + plain text and files with markup content (including HTML + content). + + More information + For how-to documentation on inserting contents of + external code files and other text files into output, see + External code files. + For guidelines on inserting contents of + HTML files into output, see Inserting external HTML code. + + + + + +textdata.default.encoding +string + + +textdata.default.encoding +Default encoding of external text files which are included +using textdata element + + + + +<xsl:param name="textdata.default.encoding"></xsl:param> + + + +Description + +Specifies the encoding of any external text files included using +textdata element. This value is used only when you do +not specify encoding by the appropriate attribute +directly on textdata. An empty string is interpreted as the system +default encoding. + + + + + + +graphicsize.extension +boolean + + +graphicsize.extension +Enable the getWidth()/getDepth() extension functions + + + + +<xsl:param name="graphicsize.extension" select="1"></xsl:param> + + + +Description + +If non-zero (and if use.extensions is non-zero +and if you're using a processor that supports extension functions), the +getWidth and getDepth functions +will be used to extract image sizes from graphics. + + + + + + +graphicsize.use.img.src.path +boolean + + +graphicsize.use.img.src.path +Prepend img.src.path before +filenames passed to extension functions + + + + +<xsl:param name="graphicsize.use.img.src.path" select="0"></xsl:param> + + + +Description + +If non-zero img.src.path parameter will +be appended before filenames passed to extension functions for +measuring image dimensions. + + + + + + +use.extensions +boolean + + +use.extensions +Enable extensions + + + + +<xsl:param name="use.extensions" select="0"></xsl:param> + + + +Description + +If non-zero, extensions may be used. Each extension is +further controlled by its own parameter. But if +use.extensions is zero, no extensions will +be used. + + + + + + +Automatic labelling + + +chapter.autolabel +list +0none +11,2,3... +AA,B,C... +aa,b,c... +ii,ii,iii... +II,II,III... + + +chapter.autolabel +Specifies the labeling format for Chapter titles + + + + +<xsl:param name="chapter.autolabel" select="1"></xsl:param> + + +Description + +If non-zero, then chapters will be numbered using the parameter +value as the number format if the value matches one of the following: + + + + + 1 or arabic + + Arabic numeration (1, 2, 3 ...). + + + + A or upperalpha + + Uppercase letter numeration (A, B, C ...). + + + + a or loweralpha + + Lowercase letter numeration (a, b, c ...). + + + + I or upperroman + + Uppercase roman numeration (I, II, III ...). + + + + i or lowerroman + + Lowercase roman letter numeration (i, ii, iii ...). + + + + +Any nonzero value other than the above will generate +the default number format (arabic). + + + + + + + +appendix.autolabel +list +0none +11,2,3... +AA,B,C... +aa,b,c... +ii,ii,iii... +II,II,III... + + +appendix.autolabel +Specifies the labeling format for Appendix titles + + + + +<xsl:param name="appendix.autolabel">A</xsl:param> + + + +Description + +If non-zero, then appendices will be numbered using the +parameter value as the number format if the value matches one of the +following: + + + + + 1 or arabic + + Arabic numeration (1, 2, 3 ...). + + + + A or upperalpha + + Uppercase letter numeration (A, B, C ...). + + + + a or loweralpha + + Lowercase letter numeration (a, b, c ...). + + + + I or upperroman + + Uppercase roman numeration (I, II, III ...). + + + + i or lowerroman + + Lowercase roman letter numeration (i, ii, iii ...). + + + + +Any nonzero value other than the above will generate +the default number format (upperalpha). + + + + + + + +part.autolabel +list +0none +11,2,3... +AA,B,C... +aa,b,c... +ii,ii,iii... +II,II,III... + + +part.autolabel +Specifies the labeling format for Part titles + + + + +<xsl:param name="part.autolabel">I</xsl:param> + + + +Description + +If non-zero, then parts will be numbered using the parameter +value as the number format if the value matches one of the following: + + + + + 1 or arabic + + Arabic numeration (1, 2, 3 ...). + + + + A or upperalpha + + Uppercase letter numeration (A, B, C ...). + + + + a or loweralpha + + Lowercase letter numeration (a, b, c ...). + + + + I or upperroman + + Uppercase roman numeration (I, II, III ...). + + + + i or lowerroman + + Lowercase roman letter numeration (i, ii, iii ...). + + + + +Any nonzero value other than the above will generate +the default number format (upperroman). + + + + + + + + +reference.autolabel +list +0none +11,2,3... +AA,B,C... +aa,b,c... +ii,ii,iii... +II,II,III... + + +reference.autolabel +Specifies the labeling format for Reference titles + + + + <xsl:param name="reference.autolabel">I</xsl:param> + + +Description +If non-zero, references will be numbered using the parameter + value as the number format if the value matches one of the + following: + + + + 1 or arabic + + Arabic numeration (1, 2, 3 ...). + + + + A or upperalpha + + Uppercase letter numeration (A, B, C ...). + + + + a or loweralpha + + Lowercase letter numeration (a, b, c ...). + + + + I or upperroman + + Uppercase roman numeration (I, II, III ...). + + + + i or lowerroman + + Lowercase roman letter numeration (i, ii, iii ...). + + + +Any non-zero value other than the above will generate +the default number format (upperroman). + + + + + + +preface.autolabel +list +0none +11,2,3... +AA,B,C... +aa,b,c... +ii,ii,iii... +II,II,III... + + +preface.autolabel +Specifices the labeling format for Preface titles + + + +<xsl:param name="preface.autolabel" select="0"></xsl:param> + + +Description + +If non-zero then prefaces will be numbered using the parameter +value as the number format if the value matches one of the following: + + + + + 1 or arabic + + Arabic numeration (1, 2, 3 ...). + + + + A or upperalpha + + Uppercase letter numeration (A, B, C ...). + + + + a or loweralpha + + Lowercase letter numeration (a, b, c ...). + + + + I or upperroman + + Uppercase roman numeration (I, II, III ...). + + + + i or lowerroman + + Lowercase roman letter numeration (i, ii, iii ...). + + + + +Any nonzero value other than the above will generate +the default number format (arabic). + + + + + + + + +qandadiv.autolabel +boolean + + +qandadiv.autolabel +Are divisions in QAndASets enumerated? + + + +<xsl:param name="qandadiv.autolabel" select="1"></xsl:param> + + +Description + +If non-zero, unlabeled qandadivs will be enumerated. + + + + + + + +section.autolabel +boolean + + +section.autolabel +Are sections enumerated? + + + +<xsl:param name="section.autolabel" select="0"></xsl:param> + + +Description + +If true (non-zero), unlabeled sections will be enumerated. + + + + + + + +section.autolabel.max.depth +integer + + +section.autolabel.max.depth +The deepest level of sections that are numbered. + + + + +<xsl:param name="section.autolabel.max.depth">8</xsl:param> + + + +Description + +When section numbering is turned on by the +section.autolabel parameter, then this +parameter controls the depth of section nesting that is +numbered. Sections nested to a level deeper than this value will not +be numbered. + + + + + + + +section.label.includes.component.label +boolean + + +section.label.includes.component.label +Do section labels include the component label? + + + +<xsl:param name="section.label.includes.component.label" select="0"></xsl:param> + + +Description + +If non-zero, section labels are prefixed with the label of the +component that contains them. + + + + + + + +label.from.part +boolean + + +label.from.part +Renumber components in each part? + + + + +<xsl:param name="label.from.part" select="0"></xsl:param> + + + +Description + +If label.from.part is non-zero, then + numbering of components — preface, + chapter, appendix, and + reference (when reference occurs at the + component level) — is re-started within each + part. +If label.from.part is zero (the + default), numbering of components is not + re-started within each part; instead, components are + numbered sequentially throughout each book, + regardless of whether or not they occur within part + instances. + + + + + + +component.label.includes.part.label +boolean + + +component.label.includes.part.label +Do component labels include the part label? + + + +<xsl:param name="component.label.includes.part.label" select="0"></xsl:param> + + +Description + +If non-zero, number labels for chapter, +appendix, and other component elements are prefixed with +the label of the part element that contains them. So you might see +Chapter II.3 instead of Chapter 3. Also, the labels for formal +elements such as table and figure will include +the part label. If there is no part element container, then no prefix +is generated. + + +This feature is most useful when the +label.from.part parameter is turned on. +In that case, there would be more than one chapter +1, and the extra part label prefix will identify +each chapter unambiguously. + + + + + + + +HTML + + +html.base +uri + + +html.base +An HTML base URI + + + + +<xsl:param name="html.base"></xsl:param> + + +Description + +If html.base is set, it is used for the base element +in the head of the html documents. The parameter specifies +the base URL for all relative URLs in the document. This is useful +for dynamically served html where the base URI needs to be +shifted. + + + + + + +html.stylesheet.type +string + + +html.stylesheet.type +The type of the stylesheet used in the generated HTML + + + +<xsl:param name="html.stylesheet.type">text/css</xsl:param> + + +Description + +The type of the stylesheet to place in the HTML link tag. + + + + + + + +html.stylesheet +string + + +html.stylesheet +Name of the stylesheet(s) to use in the generated HTML + + + + +<xsl:param name="html.stylesheet"></xsl:param> + + + +Description + +The html.stylesheet parameter is either +empty, indicating that no stylesheet link tag should be +generated in the html output, or it is a list of one or more +stylesheet files. + +Multiple stylesheets are space-delimited. If you need to +reference a stylesheet URI that includes a space, encode it with +%20. A separate html link element will +be generated for each stylesheet in the order they are listed in the +parameter. + + + + + + +css.decoration +boolean + + +css.decoration +Enable CSS decoration of elements + + + + +<xsl:param name="css.decoration" select="1"></xsl:param> + + + +Description + + +If non-zero, then html elements produced by the stylesheet may be +decorated with style attributes. For example, the +li tags produced for list items may include a +fragment of CSS in the style attribute which sets +the CSS property "list-style-type". + + + + + + + +spacing.paras +boolean + + +spacing.paras +Insert additional <p> elements for spacing? + + + + +<xsl:param name="spacing.paras" select="0"></xsl:param> + + + +Description + +When non-zero, additional, empty paragraphs are inserted in +several contexts (for example, around informal figures), to create a +more pleasing visual appearance in many browsers. + + + + + + + +emphasis.propagates.style +boolean + + +emphasis.propagates.style +Pass emphasis role attribute through to HTML? + + + +<xsl:param name="emphasis.propagates.style" select="1"></xsl:param> + + +Description +If non-zero, the role attribute of +emphasis elements will be passed through to the HTML as a +class attribute on a span that surrounds the +emphasis. + + + + + +para.propagates.style +boolean + + +para.propagates.style +Pass para role attribute through to HTML? + + + + +<xsl:param name="para.propagates.style" select="1"></xsl:param> + + + +Description + +If true, the role attribute of para elements +will be passed through to the HTML as a class attribute on the +p generated for the paragraph. + + + + + + +phrase.propagates.style +boolean + + +phrase.propagates.style +Pass phrase role attribute through to HTML? + + + + +<xsl:param name="phrase.propagates.style" select="1"></xsl:param> + + +Description + +If non-zero, the role attribute of phrase elements +will be passed through to the HTML as a class +attribute on a span that surrounds the +phrase. + + + + + + +entry.propagates.style +boolean + + +entry.propagates.style +Pass entry role attribute through to HTML? + + + + +<xsl:param name="entry.propagates.style" select="1"></xsl:param> + + + +Description + +If true, the role attribute of entry elements +will be passed through to the HTML as a class attribute on the +td or th generated for the table +cell. + + + + + + +html.longdesc +boolean + + +html.longdesc +Should longdesc URIs be created? + + + +<xsl:param name="html.longdesc" select="1"></xsl:param> + + +Description +If non-zero, HTML files will be created for the +longdesc attribute. These files +are created from the textobjects in +mediaobjects and +inlinemediaobject. + + + + + + +html.longdesc.link +boolean + + +html.longdesc.link +Should a link to the longdesc be included in the HTML? + + + + +<xsl:param name="html.longdesc.link" select="$html.longdesc"></xsl:param> + + + +Description + +If non-zero, links will be created to the +HTML files created for the +longdesc attribute. It makes no +sense to enable this option without also enabling the +html.longdesc parameter. + + + + + + + + +make.valid.html +boolean + + +make.valid.html +Attempt to make sure the HTML output is valid HTML + + + + +<xsl:param name="make.valid.html" select="0"></xsl:param> + + + +Description + +If make.valid.html is true, the stylesheets take +extra effort to ensure that the resulting HTML is valid. This may mean that some +para tags are translated into HTML divs or +that other substitutions occur. + +This parameter is different from html.cleanup +because it changes the resulting markup; it does not use extension functions +to manipulate result-tree-fragments and is therefore applicable to any +XSLT processor. + + + + + + +html.cleanup +boolean + + +html.cleanup +Attempt to clean up the resulting HTML? + + + + +<xsl:param name="html.cleanup" select="1"></xsl:param> + + + +Description + +If non-zero, and if the EXSLT +extensions are supported by your processor, the resulting HTML will be +cleaned up. This improves the chances that the +resulting HTML will be valid. It may also improve the formatting of +some elements. + +This parameter is different from make.valid.html +because it uses extension functions to manipulate result-tree-fragments. + + + + + + +html.append +string + + +html.append +Specifies content to append to HTML output + + + +<xsl:param name="html.append"></xsl:param> + + +Description + +Specifies content to append to the end of HTML files output by +the html/docbook.xsl stylesheet, after the +closing <html> tag. You probably don’t want to set any +value for this parameter; but if you do, the only value it should ever +be set to is a newline character: &#x0a; or +&#10; + + + + + + +draft.mode +list +no +yes +maybe + + +draft.mode +Select draft mode + + + + +<xsl:param name="draft.mode">no</xsl:param> + + + +Description + +Selects draft mode. If draft.mode is +yes, the entire document will be treated +as a draft. If it is no, the entire document +will be treated as a final copy. If it is maybe, +individual sections will be treated as draft or final independently, depending +on how their status attribute is set. + + + + + + + +draft.watermark.image +uri + + +draft.watermark.image +The URI of the image to be used for draft watermarks + + + + +<xsl:param name="draft.watermark.image">images/draft.png</xsl:param> + + + +Description + +The image to be used for draft watermarks. + + + + + + +generate.id.attributes +boolean + + +generate.id.attributes +Generate ID attributes on container elements? + + + + +<xsl:param name="generate.id.attributes" select="0"></xsl:param> + + + +Description + +If non-zero, the HTML stylesheet will generate ID attributes on +containers. For example, the markup: + +<section id="foo"><title>Some Title</title> +<para>Some para.</para> +</section> + +might produce: + +<div class="section" id="foo"> +<h2>Some Title</h2> +<p>Some para.</p> +</div> + +The alternative is to generate anchors: + +<div class="section"> +<h2><a name="foo"></a>Some Title</h2> +<p>Some para.</p> +</div> + +Because the name attribute of +the a element and the id +attribute of other tags are both of type ID, producing both +generates invalid documents. + +As of version 1.50, you can use this switch to control which type of +identifier is generated. For backwards-compatibility, generating +a anchors is preferred. + +Note: at present, this switch is incompletely implemented. +Disabling ID attributes will suppress them, but enabling ID attributes +will not suppress the anchors. + + + + + + +generate.meta.abstract +boolean + + +generate.meta.abstract +Generate HTML META element from abstract? + + + + +<xsl:param name="generate.meta.abstract" select="1"></xsl:param> + + + +Description + +If non-zero, document abstracts will be reproduced in the HTML +head, with >meta name="description" content="..." + + + + + + + +make.clean.html +boolean + + +make.clean.html +Make HTML conform to modern coding standards + + + + +<xsl:param name="make.clean.html" select="0"></xsl:param> + + + +Description + +If make.clean.html is true, the stylesheets take +extra effort to ensure that the resulting HTML is conforms to +modern HTML coding standards. In addition to eliminating +excessive and noncompliant coding, it moves presentation +HTML coding to a CSS stylesheet. + +The resulting HTML is dependent on +CSS for formatting, and so the stylesheet is capable of +generating a supporting CSS file. The docbook.css.source +and custom.css.source parameters control +how a CSS file is generated. + +If you require your CSS to reside in the HTML +head element, then the generate.css.header +can be used to do that. + +The make.clean.html parameter is +different from html.cleanup +because the former changes the resulting markup; it does not use extension functions +like the latter to manipulate result-tree-fragments, +and is therefore applicable to any XSLT processor. + +If make.clean.html is set to zero (the default), +then the stylesheet retains its original +old style +HTML formatting features. + + + + + + docbook.css.source + string + + + docbook.css.source + Name of the default CSS input file + + + + <xsl:param name="docbook.css.source">docbook.css.xml</xsl:param> + + + Description + +The docbook.css.source parameter +specifies the name of the file containing the default DocBook +CSS styles. Those styles are necessary when the +make.clean.html parameter is nonzero. + +The file is a well-formed XML file that +must consist of a single style root +element that contains CSS styles as its text content. +The default value of the parameter (and filename) +is docbook.css.xml. +The stylesheets ship with the default file. You can substitute +your own and specify its path in this parameter. + +If docbook.css.source is not blank, +and make.clean.html is nonzero, then +the stylesheet takes the following actions: + + + + The stylesheet uses the XSLT document() + function to open the file specified by the parameter and + load it into a variable. + + + The stylesheet forms an output pathname consisting of the + value of the base.dir parameter (if it is set) + and the value of docbook.css.source, + with the .xml suffix stripped off. + + + + The stylesheet removes the style + wrapper element and writes just the CSS text content to the output file. + + + The stylesheet adds a link element to the + HTML HEAD element to reference the external CSS stylesheet. + For example: + <link rel="stylesheet" href="docbook.css" type="text/css"> + + However, if the docbook.css.link + parameter is set to zero, then no link is written + for the default CSS file. That is useful if a custom + CSS file will import the default CSS stylesheet to ensure + proper cascading of styles. + + + +If the docbook.css.source parameter +is changed from its default docbook.css.xml to blank, +then no default CSS is generated. Likewise if the +make.clean.html parameter is set to zero, +then no default CSS is generated. The +custom.css.source parameter can be used +instead to generate a complete custom CSS file. + +You can use the generate.css.header +parameter to instead write the CSS to each HTML HEAD +element in a style tag instead of an external CSS file. + + + + + + +docbook.css.link +boolean + + +docbook.css.link +Insert a link referencing the default CSS stylesheet + + + + +<xsl:param name="docbook.css.link" select="1"></xsl:param> + + + +Description + +The stylesheets are capable of generating a default +CSS stylesheet file. The parameters +make.clean.html and +docbook.css.source control that feature. + +Normally if a default CSS file is generated, then +the stylesheet inserts a link tag in the HTML +HEAD element to reference it. +However, you can omit that link reference if +you set the docbook.css.link to zero +(1 is the default). + +This parameter is useful when you want to import the +default CSS into a custom CSS file generated using the +custom.css.source parameter. + + + + + + + + custom.css.source + string + + + custom.css.source + Name of a custom CSS input file + + + + <xsl:param name="custom.css.source"></xsl:param> + + + Description + +The custom.css.source +parameter enables you to add CSS styles to DocBook's +HTML output. + +The parameter +specifies the name of a file containing custom +CSS styles. The file must be a well-formed XML file that +consists of a single style root +element that contains CSS styles as its text content. +For example: +<?xml version="1.0"?> +<style> +h2 { + font-weight: bold; + color: blue; +} +... +</style> + + +The filename specified by the parameter +should have a .xml +filename suffix, although that is not required. +The default value of this parameter is blank. + +If custom.css.source is not blank, then +the stylesheet takes the following actions. +These actions take place regardless of the value of +the make.clean.html parameter. + + + + The stylesheet uses the XSLT document() + function to open the file specified by the parameter and + load it into a variable. + + + The stylesheet forms an output pathname consisting of the + value of the base.dir parameter (if it is set) + and the value of custom.css.source, + with the .xml suffix stripped off. + + + + The stylesheet removes the style + wrapper element and writes just the CSS text content to the output file. + + + The stylesheet adds a link element to the + HTML HEAD element to reference this external CSS stylesheet. + For example: + <link rel="stylesheet" href="custom.css" type="text/css"> + + + + + + + +If the make.clean.html parameter is nonzero +(the default is zero), +and if the docbook.css.source parameter +is not blank (the default is not blank), +then the stylesheet will also generate a default CSS file +and add a link tag to reference it. +The link to the custom CSS comes after the +link to the default, so it should cascade properly +in most browsers. +If you do not want two link tags, and +instead want your custom CSS to import the default generated +CSS file, then do the following: + + + + + Add a line like the following to your custom CSS source file: + @import url("docbook.css") + + + + Set the docbook.css.link parameter + to zero. This will omit the link tag + that references the default CSS file. + + + +If you set make.clean.html to nonzero but +you do not want the default CSS generated, then also set +the docbook.css.source parameter to blank. +Then no default CSS will be generated, and so +all CSS styles must come from your custom CSS file. + +You can use the generate.css.header +parameter to instead write the CSS to each HTML HEAD +element in a style tag instead of an external CSS file. + + + + + + +generate.css.header +boolean + + +generate.css.header +Insert generated CSS styles in HEAD element + + + + +<xsl:param name="generate.css.header" select="0"></xsl:param> + + + +Description + +The stylesheets are capable of generating both default +and custom CSS stylesheet files. The parameters +make.clean.html, +docbook.css.source, and +custom.css.source control that feature. + +If you require that CSS styles reside in the HTML +HEAD element instead of external CSS files, +then set the generate.css.header +parameter to nonzero (it is zero by default). +Then instead of generating the CSS in external files, +they are wrapped in style elements in +the HEAD element of each HTML output file. + + + + + + +XSLT Processing + + +rootid +string + + +rootid +Specify the root element to format + + + + +<xsl:param name="rootid"></xsl:param> + + +Description + +If rootid is not empty, it must be the +value of an ID that occurs in the document being formatted. The entire +document will be loaded and parsed, but formatting will begin at the +element identified, rather than at the root. For example, this allows +you to process only chapter 4 of a book. +Because the entire document is available to the processor, automatic +numbering, cross references, and other dependencies are correctly +resolved. + + + + + + +suppress.navigation +boolean + + +suppress.navigation +Disable header and footer navigation + + + + +<xsl:param name="suppress.navigation" select="0"></xsl:param> + + + +Description + + +If non-zero, header and footer navigation will be suppressed. + + + + + + +suppress.header.navigation +boolean + + +suppress.header.navigation +Disable header navigation + + + + +<xsl:param name="suppress.header.navigation" select="0"></xsl:param> + + + +Description + +If non-zero, header navigation will be suppressed. + + + + + + +suppress.footer.navigation +boolean + + +suppress.footer.navigation +Disable footer navigation + + + +<xsl:param name="suppress.footer.navigation">0</xsl:param> + + +Description + + +If non-zero, footer navigation will be suppressed. + + + + + + +header.rule +boolean + + +header.rule +Rule under headers? + + + + +<xsl:param name="header.rule" select="1"></xsl:param> + + + +Description + +If non-zero, a rule will be drawn below the page headers. + + + + + + +footer.rule +boolean + + +footer.rule +Rule over footers? + + + + +<xsl:param name="footer.rule" select="1"></xsl:param> + + + +Description + +If non-zero, a rule will be drawn above the page footers. + + + + + + +id.warnings +boolean + + +id.warnings +Should warnings be generated for titled elements without IDs? + + + +<xsl:param name="id.warnings" select="0"></xsl:param> + + +Description +If non-zero, the stylesheet will issue a warning for any element +(other than the root element) which has a title but does not have an +ID. + + + + +Meta/*Info and Titlepages + + +inherit.keywords +boolean + + +inherit.keywords +Inherit keywords from ancestor elements? + + + + +<xsl:param name="inherit.keywords" select="1"></xsl:param> + + +Description + +If inherit.keywords +is non-zero, the keyword meta for each HTML +head element will include all of the keywords from +ancestor elements. Otherwise, only the keywords from the current section +will be used. + + + + + + + +make.single.year.ranges +boolean + + +make.single.year.ranges +Print single-year ranges (e.g., 1998-1999) + + + + +<xsl:param name="make.single.year.ranges" select="0"></xsl:param> + + +Description + +If non-zero, year ranges that span a single year will be printed +in range notation (1998-1999) instead of discrete notation +(1998, 1999). + + + + + + +make.year.ranges +boolean + + +make.year.ranges +Collate copyright years into ranges? + + + +<xsl:param name="make.year.ranges" select="0"></xsl:param> + + +Description + +If non-zero, multiple copyright year elements will be +collated into ranges. +This works only if each year number is put into a separate +year element. The copyright element permits multiple +year elements. If a year element contains a dash or +a comma, then that year element will not be merged into +any range. + + + + + + + +author.othername.in.middle +boolean + + +author.othername.in.middle +Is othername in author a +middle name? + + + + +<xsl:param name="author.othername.in.middle" select="1"></xsl:param> + + +Description + +If non-zero, the othername of an author +appears between the firstname and +surname. Otherwise, othername +is suppressed. + + + + + + + +blurb.on.titlepage.enabled +boolean + + +blurb.on.titlepage.enabled +Display personblurb and authorblurb on title pages? + + + + +<xsl:param name="blurb.on.titlepage.enabled" select="0"></xsl:param> + + + +Description + +If non-zero, output from authorblurb and +personblurb elements is displayed on title pages. If zero +(the default), output from those elements is suppressed on title pages +(unless you are using a titlepage customization +that causes them to be included). + + + + + + +contrib.inline.enabled +boolean + + +contrib.inline.enabled +Display contrib output inline? + + + +<xsl:param name="contrib.inline.enabled">1</xsl:param> + + +Description + +If non-zero (the default), output of the contrib element is +displayed as inline content rather than as block content. + + + + + + +editedby.enabled +boolean + + +editedby.enabled +Display “Edited by” heading above editor name? + + + +<xsl:param name="editedby.enabled">1</xsl:param> + + +Description + +If non-zero, a localized Edited +by heading is displayed above editor names in output of the +editor element. + + + + + + +abstract.notitle.enabled +boolean + + +abstract.notitle.enabled +Suppress display of abstract titles? + + + <xsl:param name="abstract.notitle.enabled" select="0"></xsl:param> + +Description +If non-zero, in output of the abstract element on titlepages, +display of the abstract title is suppressed. + + + + + +othercredit.like.author.enabled +boolean + + +othercredit.like.author.enabled +Display othercredit in same style as author? + + + +<xsl:param name="othercredit.like.author.enabled">0</xsl:param> + + +Description + +If non-zero, output of the +othercredit element on titlepages is displayed in +the same style as author and +editor output. If zero then +othercredit output is displayed using a style +different than that of author and +editor. + + + + + + +generate.legalnotice.link +boolean + + +generate.legalnotice.link +Write legalnotice to separate chunk and generate link? + + + +<xsl:param name="generate.legalnotice.link" select="0"></xsl:param> + + +Description + +If the value of generate.legalnotice.link +is non-zero, the stylesheet: + + + + writes the contents of legalnotice to a separate + HTML file + + + inserts a hyperlink to the legalnotice file + + + adds (in the HTML head) either a single + link or element or multiple + link elements (depending on the value of the + html.head.legalnotice.link.multiple + parameter), with the value or values derived from the + html.head.legalnotice.link.types + parameter + + + + Otherwise, if generate.legalnotice.link is + zero, legalnotice contents are rendered on the title + page. + +The name of the separate HTML file is computed as follows: + + + + If a filename is given by the dbhtml filename +processing instruction, that filename is used. + + + If the legalnotice has an id/xml:id +attribute, and if use.id.as.filename != 0, the filename +is the concatenation of the id value and the value of the html.ext +parameter. + + + If the legalnotice does not have an id/xml:id + attribute, or if use.id.as.filename = 0, the filename is the concatenation of "ln-", +auto-generated id value, and html.ext value. + + + + + + + + + + + +generate.revhistory.link +boolean + + +generate.revhistory.link +Write revhistory to separate chunk and generate link? + + + +<xsl:param name="generate.revhistory.link" select="0"></xsl:param> + + +Description + +If non-zero, the contents of revhistory are written +to a separate HTML file and a link to the file is +generated. Otherwise, revhistory contents are rendered on +the title page. + +The name of the separate HTML file is computed as follows: + + + + If a filename is given by the dbhtml filename processing instruction, +that filename is used. + + + If the revhistory has an id/xml:id +attribute, and if use.id.as.filename != 0, the filename is the concatenation of +the id value and the value of the html.ext parameter. + + + If the revhistory does not have an id/xml:id +attribute, or if use.id.as.filename = 0, the filename is the concatenation of "rh-", +auto-generated id value, and html.ext value. + + + + + + + + + + + +html.head.legalnotice.link.types +string + + +html.head.legalnotice.link.types +Specifies link types for legalnotice link in html head + + + + +<xsl:param name="html.head.legalnotice.link.types">copyright</xsl:param> + + + +Description + +The value of +html.head.legalnotice.link.types is a +space-separated list of link types, as described in Section 6.12 +of the HTML 4.01 specification. If the value of the +generate.legalnotice.link parameter is +non-zero, then the stylesheet generates (in the +head section of the HTML source) either a single +HTML link element or, if the value of the +html.head.legalnotice.link.multiple is +non-zero, one link element for each link type +specified. Each link has the following attributes: + + + + a rel attribute whose + value is derived from the value of + html.head.legalnotice.link.types + + + an href attribute whose + value is set to the URL of the file containing the + legalnotice + + + a title attribute whose + value is set to the title of the corresponding + legalnotice (or a title programatically + determined by the stylesheet) + + + +For example: + + <link rel="license" href="ln-id2524073.html" title="Legal Notice"> + + +About the default value + + In an ideal world, the default value of + html.head.legalnotice.link.types would + probably be “license”, since the content of the + DocBook legalnotice is typically license + information, not copyright information. However, the default value + is “copyright” for pragmatic reasons: because + that’s among the set of “recognized link types” listed in Section + 6.12 of the HTML 4.01 specification, and because certain + browsers and browser extensions are preconfigured to recognize that + value. + + + + + + + +html.head.legalnotice.link.multiple +boolean + + +html.head.legalnotice.link.multiple +Generate multiple link instances in html head for legalnotice? + + + + +<xsl:param name="html.head.legalnotice.link.multiple" select="1"></xsl:param> + + + +Description + +If html.head.legalnotice.link.multiple is +non-zero and the value of +html.head.legalnotice.link.types contains +multiple link types, then the stylesheet generates (in the +head section of the HTML source) one +link element for each link type specified. For +example, if the value of +html.head.legalnotice.link.types is +“copyright license”: + + <link rel="copyright" href="ln-id2524073.html" title="Legal Notice"> + <link rel="license" href="ln-id2524073.html" title="Legal Notice"> + + Otherwise, the stylesheet generates generates a single + link instance; for example: + + <link rel="copyright license" href="ln-id2524073.html" title="Legal Notice"> + + + + + + +Reference Pages + + +funcsynopsis.decoration +boolean + + +funcsynopsis.decoration +Decorate elements of a funcsynopsis? + + + + +<xsl:param name="funcsynopsis.decoration" select="1"></xsl:param> + + + +Description + +If non-zero, elements of the funcsynopsis will be +decorated (e.g. rendered as bold or italic text). The decoration is controlled by +templates that can be redefined in a customization layer. + + + + + + + +funcsynopsis.style +list +ansi +kr + + +funcsynopsis.style +What style of funcsynopsis should be generated? + + + +<xsl:param name="funcsynopsis.style">kr</xsl:param> + + +Description + +If funcsynopsis.style is ansi, +ANSI-style function synopses are generated for a +funcsynopsis, otherwise K&R-style +function synopses are generated. + + + + + + + +function.parens +boolean + + +function.parens +Generate parens after a function? + + + + +<xsl:param name="function.parens" select="0"></xsl:param> + + + +Description + +If non-zero, the formatting of a function element +will include generated parentheses. + + + + + + + +refentry.generate.name +boolean + + +refentry.generate.name +Output NAME header before refnames? + + + + +<xsl:param name="refentry.generate.name" select="1"></xsl:param> + + + +Description + +If non-zero, a "NAME" section title is output before the list +of refnames. This parameter and +refentry.generate.title are mutually +exclusive. This means that if you change this parameter to zero, you +should set refentry.generate.title to non-zero unless +you want get quite strange output. + + + + + + + +refentry.generate.title +boolean + + +refentry.generate.title +Output title before refnames? + + + + +<xsl:param name="refentry.generate.title" select="0"></xsl:param> + + + +Description + +If non-zero, the reference page title or first name is +output before the list of refnames. This parameter and +refentry.generate.name are mutually exclusive. +This means that if you change this parameter to non-zero, you +should set refentry.generate.name to zero unless +you want get quite strange output. + + + + + + + +refentry.xref.manvolnum +boolean + + +refentry.xref.manvolnum +Output manvolnum as part of +refentry cross-reference? + + + + +<xsl:param name="refentry.xref.manvolnum" select="1"></xsl:param> + + + +Description + +if non-zero, the manvolnum is used when cross-referencing +refentrys, either with xref +or citerefentry. + + + + + + + +citerefentry.link +boolean + + +citerefentry.link +Generate URL links when cross-referencing RefEntrys? + + + + +<xsl:param name="citerefentry.link" select="0"></xsl:param> + + +Description + +If non-zero, a web link will be generated, presumably +to an online man->HTML gateway. The text of the link is +generated by the generate.citerefentry.link template. + + + + + + + +refentry.separator +boolean + + +refentry.separator +Generate a separator between consecutive RefEntry elements? + + + + +<xsl:param name="refentry.separator" select="1"></xsl:param> + + + +Description + +If true, a separator will be generated between consecutive +reference pages. + + + + + + + +refclass.suppress +boolean + + +refclass.suppress +Suppress display of refclass contents? + + + + +<xsl:param name="refclass.suppress" select="0"></xsl:param> + + +Description + +If the value of refclass.suppress is +non-zero, then display of refclass contents is +suppressed in output. + + + + + +Tables + + +default.table.width +length + + +default.table.width +The default width of tables + + + +<xsl:param name="default.table.width"></xsl:param> + + +Description +If non-zero, this value will be used for the +width attribute on tables that do not specify an +alternate width (with the dbhtml table-width or +dbfo table-width processing instruction). + + + + + +nominal.table.width +length + + +nominal.table.width +The (absolute) nominal width of tables + + + + +<xsl:param name="nominal.table.width">6in</xsl:param> + + + +Description + +In order to convert CALS column widths into HTML column widths, it +is sometimes necessary to have an absolute table width to use for conversion +of mixed absolute and relative widths. This value must be an absolute +length (not a percentage). + + + + + + +table.borders.with.css +boolean + + +table.borders.with.css +Use CSS to specify table, row, and cell borders? + + + + +<xsl:param name="table.borders.with.css" select="0"></xsl:param> + + + +Description + +If non-zero, CSS will be used to draw table borders. + + + + + + + +table.cell.border.style +list +none +solid +dotted +dashed +double +groove +ridge +inset +outset +solid + + +table.cell.border.style +Specifies the border style of table cells + + + + +<xsl:param name="table.cell.border.style">solid</xsl:param> + + + +Description + +Specifies the border style of table cells. + + + To control properties of cell borders in HTML output, you must also turn on the + table.borders.with.css parameter. + + + + + + + +table.cell.border.thickness +length + + +table.cell.border.thickness +Specifies the thickness of table cell borders + + + + +<xsl:param name="table.cell.border.thickness">0.5pt</xsl:param> + + + +Description + +If non-zero, specifies the thickness of borders on table +cells. The units are points. See +CSS + + + To control properties of cell borders in HTML output, you must also turn on the + table.borders.with.css parameter. + + + + + + + +table.cell.border.color +color + + +table.cell.border.color +Specifies the border color of table cells + + + + +<xsl:param name="table.cell.border.color"></xsl:param> + + + + +Description + +Set the color of table cell borders. If non-zero, the value is used +for the border coloration. See CSS. A +color is either a keyword or a numerical RGB specification. +Keywords are aqua, black, blue, fuchsia, gray, green, lime, maroon, +navy, olive, orange, purple, red, silver, teal, white, and +yellow. + + + To control properties of cell borders in HTML output, you must also turn on the + table.borders.with.css parameter. + + + + + + + +table.frame.border.style +list +none +solid +dotted +dashed +double +groove +ridge +inset +outset +solid + + +table.frame.border.style +Specifies the border style of table frames + + + + +<xsl:param name="table.frame.border.style">solid</xsl:param> + + + +Description + +Specifies the border style of table frames. + + + + + + +table.frame.border.thickness +length + + +table.frame.border.thickness +Specifies the thickness of the frame border + + + + +<xsl:param name="table.frame.border.thickness">0.5pt</xsl:param> + + + +Description + +Specifies the thickness of the border on the table's frame. + + + + + + +table.frame.border.color +color + + +table.frame.border.color +Specifies the border color of table frames + + + + +<xsl:param name="table.frame.border.color"></xsl:param> + + + + +Description + +Specifies the border color of table frames. + + + + + + +default.table.frame +string + + +default.table.frame +The default framing of tables + + + + +<xsl:param name="default.table.frame">all</xsl:param> + + + +Description + +This value will be used when there is no frame attribute on the +table. + + + + + + +html.cellspacing +integer + + +html.cellspacing +Default value for cellspacing in HTML tables + + + + +<xsl:param name="html.cellspacing"></xsl:param> + + + +Description + +If non-zero, this value will be used as the default cellspacing +value in HTML tables. nn for pixels or nn% for percentage +length. E.g. 5 or 5% + + + + + + +html.cellpadding +integer + + +html.cellpadding +Default value for cellpadding in HTML tables + + + + +<xsl:param name="html.cellpadding"></xsl:param> + + + +Description + +If non-zero, this value will be used as the default cellpadding value +in HTML tables. nn for pixels or nn% for percentage length. E.g. 5 or +5% + + + + + +QAndASet + + +qanda.defaultlabel +list +number +qanda +none + + +qanda.defaultlabel +Sets the default for defaultlabel on QandASet. + + + + +<xsl:param name="qanda.defaultlabel">number</xsl:param> + + + +Description + +If no defaultlabel attribute is specified on +a qandaset, this value is used. It is generally one of the legal +values for the defaultlabel attribute (none, +number or +qanda), or one of the additional stylesheet-specific values +(qnumber or qnumberanda). +The default value is 'number'. + +The values are rendered as follows: + +qanda + +questions are labeled "Q:" and +answers are labeled "A:". + + + +number + +The questions are enumerated and the answers +are not labeled. + + + +qnumber + +The questions are labeled "Q:" followed by a number, and answers are not +labeled. +When sections are numbered, adding a label +to the number distinguishes the question numbers +from the section numbers. +This value is not allowed in the +defaultlabel attribute +of a qandaset element. + + + +qnumberanda + +The questions are labeled "Q:" followed by a number, and +the answers are labeled "A:". +When sections are numbered, adding a label +to the number distinguishes the question numbers +from the section numbers. +This value is not allowed in the +defaultlabel attribute +of a qandaset element. + + + +none + +No distinguishing label precedes Questions or Answers. + + + + + + + + + + +qanda.inherit.numeration +boolean + + +qanda.inherit.numeration +Does enumeration of QandASet components inherit the numeration of parent elements? + + + + +<xsl:param name="qanda.inherit.numeration" select="1"></xsl:param> + + + +Description + +If non-zero, numbered qandadiv elements and +question and answer inherit the enumeration of +the ancestors of the qandaset. + + + + + + + +qanda.in.toc +boolean + + +qanda.in.toc +Should qandaentry questions appear in +the document table of contents? + + + +<xsl:param name="qanda.in.toc" select="0"></xsl:param> + + +Description + +If true (non-zero), then the generated table of contents +for a document will include qandaset titles, +qandadiv titles, +and question elements. The default value (zero) excludes +them from the TOC. + +This parameter does not affect any tables of contents +that may be generated inside a qandaset or qandadiv. + + + + + + + +qanda.nested.in.toc +boolean + + +qanda.nested.in.toc +Should nested answer/qandaentry instances appear in TOC? + + + + +<xsl:param name="qanda.nested.in.toc" select="0"></xsl:param> + + + +Description + +If non-zero, instances of qandaentry +that are children of answer elements are shown in +the TOC. + + + + + +Linking + + +target.database.document +uri + + +target.database.document +Name of master database file for resolving +olinks + + + + <xsl:param name="target.database.document">olinkdb.xml</xsl:param> + + +Description + + +To resolve olinks between documents, the stylesheets use a master +database document that identifies the target datafiles for all the +documents within the scope of the olinks. This parameter value is the +URI of the master document to be read during processing to resolve +olinks. The default value is olinkdb.xml. + +The data structure of the file is defined in the +targetdatabase.dtd DTD. The database file +provides the high level elements to record the identifiers, locations, +and relationships of documents. The cross reference data for +individual documents is generally pulled into the database using +system entity references or XIncludes. See also +targets.filename. + + + + +targets.filename +string + + +targets.filename +Name of cross reference targets data file + + +<xsl:param name="targets.filename">target.db</xsl:param> + + +Description + + +In order to resolve olinks efficiently, the stylesheets can +generate an external data file containing information about +all potential cross reference endpoints in a document. +This parameter lets you change the name of the generated +file from the default name target.db. +The name must agree with that used in the target database +used to resolve olinks during processing. +See also target.database.document. + + + + + + +olink.base.uri +uri + + +olink.base.uri +Base URI used in olink hrefs + + +<xsl:param name="olink.base.uri"></xsl:param> + + +Description + +When cross reference data is collected for resolving olinks, it +may be necessary to prepend a base URI to each target's href. This +parameter lets you set that base URI when cross reference data is +collected. This feature is needed when you want to link to a document +that is processed without chunking. The output filename for such a +document is not known to the XSL stylesheet; the only target +information consists of fragment identifiers such as +#idref. To enable the resolution of olinks between +documents, you should pass the name of the HTML output file as the +value of this parameter. Then the hrefs recorded in the cross +reference data collection look like +outfile.html#idref, which can be reached as links +from other documents. + + + + + +use.local.olink.style +boolean + + +use.local.olink.style +Process olinks using xref style of current +document + + +<xsl:param name="use.local.olink.style" select="0"></xsl:param> + +Description + +When cross reference data is collected for use by olinks, the data for each potential target includes one field containing a completely assembled cross reference string, as if it were an xref generated in that document. Other fields record the separate title, number, and element name of each target. When an olink is formed to a target from another document, the olink resolves to that preassembled string by default. If the use.local.olink.style parameter is set to non-zero, then instead the cross +reference string is formed again from the target title, number, and +element name, using the stylesheet processing the targeting document. +Then olinks will match the xref style in the targeting document +rather than in the target document. If both documents are processed +with the same stylesheet, then the results will be the same. + + + + + +current.docid +string + + +current.docid +targetdoc identifier for the document being +processed + + +<xsl:param name="current.docid"></xsl:param> + + +Description + +When olinks between documents are resolved for HTML output, the stylesheet can compute the relative path between the current document and the target document. The stylesheet needs to know the targetdoc identifiers for both documents, as they appear in the target.database.document database file. This parameter passes to the stylesheet +the targetdoc identifier of the current document, since that +identifier does not appear in the document itself. +This parameter can also be used for print output. If an olink's targetdoc id differs from the current.docid, then the stylesheet can append the target document's title to the generated olink text. That identifies to the reader that the link is to a different document, not the current document. See also olink.doctitle to enable that feature. + + + + + +olink.doctitle +list +no +yes +maybe + + +olink.doctitle +show the document title for external olinks? + + + +<xsl:param name="olink.doctitle">no</xsl:param> + + +Description + +When olinks between documents are resolved, the generated text +may not make it clear that the reference is to another document. +It is possible for the stylesheets to append the other document's +title to external olinks. For this to happen, two parameters must +be set. + + +This olink.doctitle parameter +should be set to either yes or maybe +to enable this feature. + + + +And you should also set the current.docid +parameter to the document id for the document currently +being processed for output. + + + + + +Then if an olink's targetdoc id differs from +the current.docid value, the stylesheet knows +that it is a reference to another document and can +append the target document's +title to the generated olink text. + +The text for the target document's title is copied from the +olink database from the ttl element +of the top-level div for that document. +If that ttl element is missing or empty, +no title is output. + + +The supported values for olink.doctitle are: + + + +yes + + +Always insert the title to the target document if it is not +the current document. + + + + +no + + +Never insert the title to the target document, even if requested +in an xrefstyle attribute. + + + + +maybe + + +Only insert the title to the target document, if requested +in an xrefstyle attribute. + + + + +An xrefstyle attribute +may override the global setting for individual olinks. +The following values are supported in an +xrefstyle +attribute using the select: syntax: + + + + +docname + + +Insert the target document name for this olink using the +docname gentext template, but only +if the value of olink.doctitle +is not no. + + + + +docnamelong + + +Insert the target document name for this olink using the +docnamelong gentext template, but only +if the value of olink.doctitle +is not no. + + + + +nodocname + + +Omit the target document name even if +the value of olink.doctitle +is yes. + + + + +Another way of inserting the target document name +for a single olink is to employ an +xrefstyle +attribute using the template: syntax. +The %o placeholder (the letter o, not zero) +in such a template +will be filled in with the target document's title when it is processed. +This will occur regardless of +the value of olink.doctitle. + +Note that prior to version 1.66 of the XSL stylesheets, +the allowed values for this parameter were 0 and 1. Those +values are still supported and mapped to 'no' and 'yes', respectively. + + + + + + +olink.debug +boolean + + +olink.debug +Turn on debugging messages for olinks + + + + +<xsl:param name="olink.debug" select="0"></xsl:param> + + + +Description + +If non-zero, then each olink will generate several +messages about how it is being resolved during processing. +This is useful when an olink does not resolve properly +and the standard error messages are not sufficient to +find the problem. + + +You may need to read through the olink XSL templates +to understand the context for some of the debug messages. + + + + + + + +olink.properties +attribute set + + +olink.properties +Properties associated with the cross-reference +text of an olink. + + + + +<xsl:attribute-set name="olink.properties"> + <xsl:attribute name="show-destination">replace</xsl:attribute> +</xsl:attribute-set> + + + +Description + +This attribute set is applied to the +fo:basic-link element of an olink. It is not applied to the +optional page number or optional title of the external +document. + + + + + + +olink.lang.fallback.sequence +string + + +olink.lang.fallback.sequence +look up translated documents if olink not found? + + + +<xsl:param name="olink.lang.fallback.sequence"></xsl:param> + + +Description + + +This parameter defines a list of lang values +to search among to resolve olinks. + + +Normally an olink tries to resolve to a document in the same +language as the olink itself. The language of an olink +is determined by its nearest ancestor element with a +lang attribute, otherwise the +value of the l10n.gentext.default.lang +parameter. + + +An olink database can contain target data for the same +document in multiple languages. Each set of data has the +same value for the targetdoc attribute in +the document element in the database, but with a +different lang attribute value. + + +When an olink is being resolved, the target is first +sought in the document with the same language as the olink. +If no match is found there, then this parameter is consulted +for additional languages to try. + +The olink.lang.fallback.sequence +must be a whitespace separated list of lang values to +try. The first one with a match in the olink database is used. +The default value is empty. + +For example, a document might be written in German +and contain an olink with +targetdoc="adminguide". +When the document is processed, the processor +first looks for a target dataset in the +olink database starting with: + +<document targetdoc="adminguide" lang="de">. + + +If there is no such element, then the +olink.lang.fallback.sequence +parameter is consulted. +If its value is, for example, fr en, then the processor next +looks for targetdoc="adminguide" lang="fr", and +then for targetdoc="adminguide" lang="en". +If there is still no match, it looks for +targetdoc="adminguide" with no +lang attribute. + + +This parameter is useful when a set of documents is only +partially translated, or is in the process of being translated. +If a target of an olink has not yet been translated, then this +parameter permits the processor to look for the document in +other languages. This assumes the reader would rather have +a link to a document in a different language than to have +a broken link. + + + + + + + +insert.olink.page.number +list +no +yes +maybe + + +insert.olink.page.number +Turns page numbers in olinks on and off + + + + +<xsl:param name="insert.olink.page.number">no</xsl:param> + + + +Description + +The value of this parameter determines if +cross references made between documents with +olink will +include page number citations. +In most cases this is only applicable to references in printed output. + +The parameter has three possible values. + + + +no +No page number references will be generated for olinks. + + + +yes +Page number references will be generated +for all olink references. +The style of page reference may be changed +if an xrefstyle +attribute is used. + + + +maybe +Page number references will not be generated +for an olink element unless +it has an +xrefstyle +attribute whose value specifies a page reference. + + + +Olinks that point to targets within the same document +are treated as xrefs, and controlled by +the insert.xref.page.number parameter. + + +Page number references for olinks to +external documents can only be inserted if the +information exists in the olink database. +This means each olink target element +(div or obj) +must have a page attribute +whose value is its page number in the target document. +The XSL stylesheets are not able to extract that information +during processing because pages have not yet been created in +XSLT transformation. Only the XSL-FO processor knows what +page each element is placed on. +Therefore some postprocessing must take place to populate +page numbers in the olink database. + + + + + + + + + +insert.olink.pdf.frag +boolean + + +insert.olink.pdf.frag +Add fragment identifiers for links into PDF files + + + + +<xsl:param name="insert.olink.pdf.frag" select="0"></xsl:param> + + + +Description + +The value of this parameter determines whether +the cross reference URIs to PDF documents made with +olink will +include fragment identifiers. + + +When forming a URI to link to a PDF document, +a fragment identifier (typically a '#' followed by an +id value) appended to the PDF filename can be used by +the PDF viewer to open +the PDF file to a location within the document instead of +the first page. +However, not all PDF files have id +values embedded in them, and not all PDF viewers can +handle fragment identifiers. + + +If insert.olink.pdf.frag is set +to a non-zero value, then any olink targeting a +PDF file will have the fragment identifier appended to the URI. +The URI is formed by concatenating the value of the +olink.base.uri parameter, the +value of the baseuri +attribute from the document +element in the olink database with the matching +targetdoc value, +and the value of the href +attribute for the targeted element in the olink database. +The href attribute +contains the fragment identifier. + + +If insert.olink.pdf.frag is set +to zero (the default value), then +the href attribute +from the olink database +is not appended to PDF olinks, so the fragment identifier is left off. +A PDF olink is any olink for which the +baseuri attribute +from the matching document +element in the olink database ends with '.pdf'. +Any other olinks will still have the fragment identifier added. + + + + + + +prefer.internal.olink +boolean + + +prefer.internal.olink +Prefer a local olink reference to an external reference + + + + +<xsl:param name="prefer.internal.olink" select="0"></xsl:param> + + + +Description + +If you are re-using XML content modules in multiple documents, +you may want to redirect some of your olinks. This parameter +permits you to redirect an olink to the current document. + + +For example: you are writing documentation for a product, +which includes 3 manuals: a little installation +booklet (booklet.xml), a user +guide (user.xml), and a reference manual (reference.xml). +All 3 documents begin with the same introduction section (intro.xml) that +contains a reference to the customization section (custom.xml) which is +included in both user.xml and reference.xml documents. + + +How do you write the link to custom.xml in intro.xml +so that it is interpreted correctly in all 3 documents? + +If you use xref, it will fail in user.xml. + +If you use olink (pointing to reference.xml), +the reference in user.xml +will point to the customization section of the reference manual, while it is +actually available in user.xml. + + + +If you set the prefer.internal.olink +parameter to a non-zero value, then the processor will +first look in the olink database +for the olink's targetptr attribute value +in document matching the current.docid +parameter value. If it isn't found there, then +it tries the document in the database +with the targetdoc +value that matches the olink's targetdoc +attribute. + + +This feature permits an olink reference to resolve to +the current document if there is an element +with an id matching the olink's targetptr +value. The current document's olink data must be +included in the target database for this to work. + + +There is a potential for incorrect links if +the same id attribute value is used for different +content in different documents. +Some of your olinks may be redirected to the current document +when they shouldn't be. It is not possible to control +individual olink instances. + + + + + + + +link.mailto.url +string + + +link.mailto.url +Mailto URL for the LINK REL=made HTML HEAD element + + + + +<xsl:param name="link.mailto.url"></xsl:param> + + + +Description + +If not the empty string, this address will be used for the +rel=made link element in the html head + + + + + + + +ulink.target +string + + +ulink.target +The HTML anchor target for ULinks + + + + +<xsl:param name="ulink.target">_top</xsl:param> + + + +Description + +If ulink.target is non-zero, its value will +be used for the target attribute +on anchors generated for ulinks. + + + + + + +olink.fragid +string + + +olink.fragid +Names the fragment identifier portion of an OLink resolver query + + + +<xsl:param name="olink.fragid">fragid=</xsl:param> + + +Description +The fragment identifier portion of an olink target. + + + + + +olink.outline.ext +string + + +olink.outline.ext +The extension of OLink outline files + + + + +<xsl:param name="olink.outline.ext">.olink</xsl:param> + + + +Description + +The extension to be expected for OLink outline files +Bob has this parameter as dead. Please don't use + + + + + + +olink.pubid +string + + +olink.pubid +Names the public identifier portion of an OLink resolver query + + + + +<xsl:param name="olink.pubid">pubid</xsl:param> + + + +Description + + + + + + + + +olink.sysid +string + + +olink.sysid +Names the system identifier portion of an OLink resolver query + + + + +<xsl:param name="olink.sysid">sysid</xsl:param> + + + +Description + +FIXME + + + + + + +olink.resolver +string + + +olink.resolver +The root name of the OLink resolver (usually a script) + + + + <xsl:param name="olink.resolver">/cgi-bin/olink</xsl:param> + + +Description +FIXME: + + + + +Cross References + + +collect.xref.targets +list +no +yes +only + + +collect.xref.targets +Controls whether cross reference data is +collected + + +<xsl:param name="collect.xref.targets">no</xsl:param> + + +Description + + +In order to resolve olinks efficiently, the stylesheets can +generate an external data file containing information about +all potential cross reference endpoints in a document. +This parameter determines whether the collection process is run when the document is processed by the stylesheet. The default value is no, which means the data file is not generated during processing. The other choices are yes, which means the data file is created and the document is processed for output, and only, which means the data file is created but the document is not processed for output. +See also targets.filename. + + + + + + +insert.xref.page.number +list +no +yes +maybe + + +insert.xref.page.number +Turns page numbers in xrefs on and off + + + + +<xsl:param name="insert.xref.page.number">no</xsl:param> + + + +Description + +The value of this parameter determines if +cross references (xrefs) in +printed output will +include page number citations. +It has three possible values. + + + +no +No page number references will be generated. + + + +yes +Page number references will be generated +for all xref elements. +The style of page reference may be changed +if an xrefstyle +attribute is used. + + + +maybe +Page number references will not be generated +for an xref element unless +it has an +xrefstyle +attribute whose value specifies a page reference. + + + + + + + + + +use.role.as.xrefstyle +boolean + + +use.role.as.xrefstyle +Use role attribute for +xrefstyle on xref? + + + + +<xsl:param name="use.role.as.xrefstyle" select="1"></xsl:param> + + + +Description + +In DocBook documents that conform to a schema older than V4.3, this parameter allows +role to serve the purpose of specifying the cross reference style. + +If non-zero, the role attribute on +xref will be used to select the cross reference style. +In DocBook V4.3, the xrefstyle attribute was added for this purpose. +If the xrefstyle attribute is present, +role will be ignored, regardless of the setting +of this parameter. + + + +Example + +The following small stylesheet shows how to configure the +stylesheets to make use of the cross reference style: + +<?xml version="1.0"?> +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + version="1.0"> + +<xsl:import href="../xsl/html/docbook.xsl"/> + +<xsl:output method="html"/> + +<xsl:param name="local.l10n.xml" select="document('')"/> +<l:i18n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0"> + <l:l10n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0" language="en"> + <l:context name="xref"> + <l:template name="chapter" style="title" text="Chapter %n, %t"/> + <l:template name="chapter" text="Chapter %n"/> + </l:context> + </l:l10n> +</l:i18n> + +</xsl:stylesheet> + +With this stylesheet, the cross references in the following document: + +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN" + "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd"> +<book id="book"><title>Book</title> + +<preface> +<title>Preface</title> + +<para>Normal: <xref linkend="ch1"/>.</para> +<para>Title: <xref xrefstyle="title" linkend="ch1"/>.</para> + +</preface> + +<chapter id="ch1"> +<title>First Chapter</title> + +<para>Irrelevant.</para> + +</chapter> +</book> + +will appear as: + + +Normal: Chapter 1. +Title: Chapter 1, First Chapter. + + + + + + + +xref.with.number.and.title +boolean + + +xref.with.number.and.title +Use number and title in cross references + + + + +<xsl:param name="xref.with.number.and.title" select="1"></xsl:param> + + + +Description + +A cross reference may include the number (for example, the number of +an example or figure) and the title which is a required child of some +targets. This parameter inserts both the relevant number as well as +the title into the link. + + + + + + +xref.label-page.separator +string + + +xref.label-page.separator +Punctuation or space separating label from page number in xref + + + +<xsl:param name="xref.label-page.separator"><xsl:text> </xsl:text></xsl:param> + + +Description + + +This parameter allows you to control the punctuation of certain +types of generated cross reference text. +When cross reference text is generated for an +xref or +olink element +using an xrefstyle attribute +that makes use of the select: feature, +and the selected components include both label and page +but no title, +then the value of this parameter is inserted between +label and page number in the output. +If a title is included, then other separators are used. + + + + + + + +xref.label-title.separator +string + + +xref.label-title.separator +Punctuation or space separating label from title in xref + + + +<xsl:param name="xref.label-title.separator">: </xsl:param> + + +Description + + +This parameter allows you to control the punctuation of certain +types of generated cross reference text. +When cross reference text is generated for an +xref or +olink element +using an xrefstyle attribute +that makes use of the select: feature, +and the selected components include both label and title, +then the value of this parameter is inserted between +label and title in the output. + + + + + + + +xref.title-page.separator +string + + +xref.title-page.separator +Punctuation or space separating title from page number in xref + + + +<xsl:param name="xref.title-page.separator"><xsl:text> </xsl:text></xsl:param> + + +Description + + +This parameter allows you to control the punctuation of certain +types of generated cross reference text. +When cross reference text is generated for an +xref or +olink element +using an xrefstyle attribute +that makes use of the select: feature, +and the selected components include both title and page number, +then the value of this parameter is inserted between +title and page number in the output. + + + + + + +Lists + + +segmentedlist.as.table +boolean + + +segmentedlist.as.table +Format segmented lists as tables? + + + + +<xsl:param name="segmentedlist.as.table" select="0"></xsl:param> + + + +Description + +If non-zero, segmentedlists will be formatted as +tables. + + + + + + +variablelist.as.table +boolean + + +variablelist.as.table +Format variablelists as tables? + + + + +<xsl:param name="variablelist.as.table" select="0"></xsl:param> + + + +Description + +If non-zero, variablelists will be formatted as +tables. A processing instruction exists to specify a particular width for the +column containing the terms: +dbhtml term-width=".25in" + +You can override this setting with a processing instruction as the +child of variablelist: dbhtml +list-presentation="table" or dbhtml +list-presentation="list". + +This parameter only applies to the HTML transformations. In the +FO case, proper list markup is robust enough to handle the formatting. +But see also variablelist.as.blocks. + + <variablelist> + <?dbhtml list-presentation="table"?> + <?dbhtml term-width="1.5in"?> + <?dbfo list-presentation="list"?> + <?dbfo term-width="1in"?> + <varlistentry> + <term>list</term> + <listitem> + <para> + Formatted as a table even if variablelist.as.table is set to 0. + </para> + </listitem> + </varlistentry> + </variablelist> + + + + + + +variablelist.term.separator +string + + +variablelist.term.separator +Text to separate terms within a multi-term +varlistentry + + + + +<xsl:param name="variablelist.term.separator">, </xsl:param> + + +Description + +When a varlistentry contains multiple term +elements, the string specified in the value of the +variablelist.term.separator parameter is placed +after each term except the last. + + + To generate a line break between multiple terms in + a varlistentry, set a non-zero value for the + variablelist.term.break.after parameter. If + you do so, you may also want to set the value of the + variablelist.term.separator parameter to an + empty string (to suppress rendering of the default comma and space + after each term). + + + + + + + +variablelist.term.break.after +boolean + + +variablelist.term.break.after +Generate line break after each term within a +multi-term varlistentry? + + + + +<xsl:param name="variablelist.term.break.after">0</xsl:param> + + +Description + +Set a non-zero value for the +variablelist.term.break.after parameter to +generate a line break between terms in a +multi-term varlistentry. + + +If you set a non-zero value for +variablelist.term.break.after, you may also +want to set the value of the +variablelist.term.separator parameter to an +empty string (to suppress rendering of the default comma and space +after each term). + + + + + + +Bibliography + + +bibliography.style +list +normal +iso690 + + +bibliography.style +Style used for formatting of biblioentries. + + + + +<xsl:param name="bibliography.style">normal</xsl:param> + + + +Description + +Currently only normal and +iso690 styles are supported. + +In order to use ISO690 style to the full extent you might need +to use additional markup described on the +following WiKi page. + + + + + + +biblioentry.item.separator +string + + +biblioentry.item.separator +Text to separate bibliography entries + + + +<xsl:param name="biblioentry.item.separator">. </xsl:param> + + +Description + +Text to separate bibliography entries + + + + + + + +bibliography.collection +string + + +bibliography.collection +Name of the bibliography collection file + + + + +<xsl:param name="bibliography.collection">http://docbook.sourceforge.net/release/bibliography/bibliography.xml</xsl:param> + + + + +Description + +Maintaining bibliography entries across a set of documents is tedious, time +consuming, and error prone. It makes much more sense, usually, to store all of +the bibliography entries in a single place and simply extract +the ones you need in each document. + +That's the purpose of the +bibliography.collection parameter. To setup a global +bibliography database, follow these steps: + +First, create a stand-alone bibliography document that contains all of +the documents that you wish to reference. Make sure that each bibliography +entry (whether you use biblioentry or bibliomixed) +has an ID. + +My global bibliography, ~/bibliography.xml begins +like this: + + +<!DOCTYPE bibliography + PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN" + "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd"> +<bibliography><title>References</title> + +<bibliomixed id="xml-rec"><abbrev>XML 1.0</abbrev>Tim Bray, +Jean Paoli, C. M. Sperberg-McQueen, and Eve Maler, editors. +<citetitle><ulink url="http://www.w3.org/TR/REC-xml">Extensible Markup +Language (XML) 1.0 Second Edition</ulink></citetitle>. +World Wide Web Consortium, 2000. +</bibliomixed> + +<bibliomixed id="xml-names"><abbrev>Namespaces</abbrev>Tim Bray, +Dave Hollander, +and Andrew Layman, editors. +<citetitle><ulink url="http://www.w3.org/TR/REC-xml-names/">Namespaces in +XML</ulink></citetitle>. +World Wide Web Consortium, 1999. +</bibliomixed> + +<!-- ... --> +</bibliography> + + + +When you create a bibliography in your document, simply +provide empty bibliomixed +entries for each document that you wish to cite. Make sure that these +elements have the same ID as the corresponding real +entry in your global bibliography. + +For example: + + +<bibliography><title>Bibliography</title> + +<bibliomixed id="xml-rec"/> +<bibliomixed id="xml-names"/> +<bibliomixed id="DKnuth86">Donald E. Knuth. <citetitle>Computers and +Typesetting: Volume B, TeX: The Program</citetitle>. Addison-Wesley, +1986. ISBN 0-201-13437-3. +</bibliomixed> +<bibliomixed id="relaxng"/> + +</bibliography> + + +Note that it's perfectly acceptable to mix entries from your +global bibliography with normal entries. You can use +xref or other elements to cross-reference your +bibliography entries in exactly the same way you do now. + +Finally, when you are ready to format your document, simply set the +bibliography.collection parameter (in either a +customization layer or directly through your processor's interface) to +point to your global bibliography. + +The stylesheets will format the bibliography in your document as if +all of the entries referenced appeared there literally. + + + + + + +bibliography.numbered +boolean + + +bibliography.numbered +Should bibliography entries be numbered? + + + + +<xsl:param name="bibliography.numbered" select="0"></xsl:param> + + + +Description + +If non-zero bibliography entries will be numbered + + + + + +Glossary + + +glossterm.auto.link +boolean + + +glossterm.auto.link +Generate links from glossterm to glossentry automatically? + + + + +<xsl:param name="glossterm.auto.link" select="0"></xsl:param> + + + +Description + +If non-zero, links from inline glossterms to the corresponding +glossentry elements in a glossary or glosslist +will be automatically generated. This is useful when your glossterms are consistent +and you don't want to add links manually. + +The automatic link generation feature is not used on glossterm elements +that have a linkend attribute. + + + + + + +firstterm.only.link +boolean + + +firstterm.only.link +Does automatic glossterm linking only apply to firstterms? + + + + +<xsl:param name="firstterm.only.link" select="0"></xsl:param> + + + +Description + +If non-zero, only firstterms will be automatically linked +to the glossary. If glossary linking is not enabled, this parameter +has no effect. + + + + + + +glossary.collection +string + + +glossary.collection +Name of the glossary collection file + + + + +<xsl:param name="glossary.collection"></xsl:param> + + + +Description + +Glossaries maintained independently across a set of documents +are likely to become inconsistent unless considerable effort is +expended to keep them in sync. It makes much more sense, usually, to +store all of the glossary entries in a single place and simply +extract the ones you need in each document. + +That's the purpose of the +glossary.collection parameter. To setup a global +glossary database, follow these steps: + +Setting Up the Glossary Database + +First, create a stand-alone glossary document that contains all of +the entries that you wish to reference. Make sure that each glossary +entry has an ID. + +Here's an example glossary: + + + +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE glossary + PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN" + "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd"> +<glossary> +<glossaryinfo> +<editor><firstname>Eric</firstname><surname>Raymond</surname></editor> +<title>Jargon File 4.2.3 (abridged)</title> +<releaseinfo>Just some test data</releaseinfo> +</glossaryinfo> + +<glossdiv><title>0</title> + +<glossentry> +<glossterm>0</glossterm> +<glossdef> +<para>Numeric zero, as opposed to the letter `O' (the 15th letter of +the English alphabet). In their unmodified forms they look a lot +alike, and various kluges invented to make them visually distinct have +compounded the confusion. If your zero is center-dotted and letter-O +is not, or if letter-O looks almost rectangular but zero looks more +like an American football stood on end (or the reverse), you're +probably looking at a modern character display (though the dotted zero +seems to have originated as an option on IBM 3270 controllers). If +your zero is slashed but letter-O is not, you're probably looking at +an old-style ASCII graphic set descended from the default typewheel on +the venerable ASR-33 Teletype (Scandinavians, for whom /O is a letter, +curse this arrangement). (Interestingly, the slashed zero long +predates computers; Florian Cajori's monumental "A History of +Mathematical Notations" notes that it was used in the twelfth and +thirteenth centuries.) If letter-O has a slash across it and the zero +does not, your display is tuned for a very old convention used at IBM +and a few other early mainframe makers (Scandinavians curse <emphasis>this</emphasis> +arrangement even more, because it means two of their letters collide). +Some Burroughs/Unisys equipment displays a zero with a <emphasis>reversed</emphasis> +slash. Old CDC computers rendered letter O as an unbroken oval and 0 +as an oval broken at upper right and lower left. And yet another +convention common on early line printers left zero unornamented but +added a tail or hook to the letter-O so that it resembled an inverted +Q or cursive capital letter-O (this was endorsed by a draft ANSI +standard for how to draw ASCII characters, but the final standard +changed the distinguisher to a tick-mark in the upper-left corner). +Are we sufficiently confused yet?</para> +</glossdef> +</glossentry> + +<glossentry> +<glossterm>1TBS</glossterm> +<glossdef> +<para role="accidence"> +<phrase role="pronounce"></phrase> +<phrase role="partsofspeach">n</phrase> +</para> +<para>The "One True Brace Style"</para> +<glossseealso>indent style</glossseealso> +</glossdef> +</glossentry> + +<!-- ... --> + +</glossdiv> + +<!-- ... --> + +</glossary> + + + + +Marking Up Glossary Terms + +That takes care of the glossary database, now you have to get the entries +into your document. Unlike bibliography entries, which can be empty, creating +placeholder glossary entries would be very tedious. So instead, +support for glossary.collection relies on implicit linking. + +In your source document, simply use firstterm and +glossterm to identify the terms you wish to have included +in the glossary. The stylesheets assume that you will either set the +baseform attribute correctly, or that the +content of the element exactly matches a term in your glossary. + +If you're using a glossary.collection, don't +make explicit links on the terms in your document. + +So, in your document, you might write things like this: + + +<para>This is dummy text, without any real meaning. +The point is simply to reference glossary terms like <glossterm>0</glossterm> +and the <firstterm baseform="1TBS">One True Brace Style (1TBS)</firstterm>. +The <glossterm>1TBS</glossterm>, as you can probably imagine, is a nearly +religious issue.</para> + + +If you set the firstterm.only.link parameter, +only the terms marked with firstterm will be links. +Otherwise, all the terms will be linked. + + + +Marking Up the Glossary + +The glossary itself has to be identified for the stylesheets. For lack +of a better choice, the role is used. +To identify the glossary as the target for automatic processing, set +the role to auto. The title of this +glossary (and any other information from the glossaryinfo +that's rendered by your stylesheet) will be displayed, but the entries will +come from the database. + + +Unfortunately, the glossary can't be empty, so you must put in +at least one glossentry. The content of this entry +is irrelevant, it will not be rendered: + + +<glossary role="auto"> +<glossentry> +<glossterm>Irrelevant</glossterm> +<glossdef> +<para>If you can see this, the document was processed incorrectly. Use +the <parameter>glossary.collection</parameter> parameter.</para> +</glossdef> +</glossentry> +</glossary> + + +What about glossary divisions? If your glossary database has glossary +divisions and your automatic glossary contains at least +one glossdiv, the automic glossary will have divisions. +If the glossdiv is missing from either location, no divisions +will be rendered. + +Glossary entries (and divisions, if appropriate) in the glossary will +occur in precisely the order they occur in your database. + + + +Formatting the Document + +Finally, when you are ready to format your document, simply set the +glossary.collection parameter (in either a +customization layer or directly through your processor's interface) to +point to your global glossary. + +The stylesheets will format the glossary in your document as if +all of the entries implicilty referenced appeared there literally. + + +Limitations + +Glossary cross-references within the glossary are +not supported. For example, this will not work: + + +<glossentry> +<glossterm>gloss-1</glossterm> +<glossdef><para>A description that references <glossterm>gloss-2</glossterm>.</para> +<glossseealso>gloss-2</glossseealso> +</glossdef> +</glossentry> + + +If you put glossary cross-references in your glossary that way, +you'll get the cryptic error: Warning: +glossary.collection specified, but there are 0 automatic +glossaries. + +Instead, you must do two things: + + + +Markup your glossary using glossseealso: + + +<glossentry> +<glossterm>gloss-1</glossterm> +<glossdef><para>A description that references <glossterm>gloss-2</glossterm>.</para> +<glossseealso>gloss-2</glossseealso> +</glossdef> +</glossentry> + + + + +Make sure there is at least one glossterm reference to +gloss-2 in your document. The +easiest way to do that is probably within a remark in your +automatic glossary: + + +<glossary role="auto"> +<remark>Make sure there's a reference to <glossterm>gloss-2</glossterm>.</remark> +<glossentry> +<glossterm>Irrelevant</glossterm> +<glossdef> +<para>If you can see this, the document was processed incorrectly. Use +the <parameter>glossary.collection</parameter> parameter.</para> +</glossdef> +</glossentry> +</glossary> + + + + + + + + + + +glossary.sort +boolean + + +glossary.sort +Sort glossentry elements? + + + + +<xsl:param name="glossary.sort" select="0"></xsl:param> + + + +Description + +If non-zero, then the glossentry elements within a +glossary, glossdiv, or glosslist are sorted on the glossterm, using +the current lang setting. If zero (the default), then +glossentry elements are not sorted and are presented +in document order. + + + + + + + +glossentry.show.acronym +list +no +yes +primary + + +glossentry.show.acronym +Display glossentry acronyms? + + + + +<xsl:param name="glossentry.show.acronym">no</xsl:param> + + + +Description + +A setting of yes means they should be displayed; +no means they shouldn't. If primary is used, +then they are shown as the primary text for the entry. + + +This setting controls both acronym and +abbrev elements in the glossentry. + + + + + + +Miscellaneous + + +formal.procedures +boolean + + +formal.procedures +Selects formal or informal procedures + + + + +<xsl:param name="formal.procedures" select="1"></xsl:param> + + + +Description + +Formal procedures are numbered and always have a title. + + + + + + + +formal.title.placement +table + + +formal.title.placement +Specifies where formal object titles should occur + + + + +<xsl:param name="formal.title.placement"> +figure before +example before +equation before +table before +procedure before +task before +</xsl:param> + + + +Description + +Specifies where formal object titles should occur. For each formal object +type (figure, +example, +equation, +table, and procedure) +you can specify either the keyword +before or +after. + + + + + + +runinhead.default.title.end.punct +string + + +runinhead.default.title.end.punct +Default punctuation character on a run-in-head + + + +<xsl:param name="runinhead.default.title.end.punct">.</xsl:param> + + + +Description + +If non-zero, For a formalpara, use the specified +string as the separator between the title and following text. The period is the default value. + + + + + + +runinhead.title.end.punct +string + + +runinhead.title.end.punct +Characters that count as punctuation on a run-in-head + + + + +<xsl:param name="runinhead.title.end.punct">.!?:</xsl:param> + + + +Description + +Specify which characters are to be counted as punctuation. These +characters are checked for a match with the last character of the +title. If no match is found, the +runinhead.default.title.end.punct contents are +inserted. This is to avoid duplicated punctuation in the output. + + + + + + + +show.comments +boolean + + +show.comments +Display remark elements? + + + + +<xsl:param name="show.comments" select="1"></xsl:param> + + + +Description + +If non-zero, comments will be displayed, otherwise they +are suppressed. Comments here refers to the remark element +(which was called comment prior to DocBook +4.0), not XML comments (<-- like this -->) which are +unavailable. + + + + + + + +show.revisionflag +boolean + + +show.revisionflag +Enable decoration of elements that have a revisionflag + + + + +<xsl:param name="show.revisionflag" select="0"></xsl:param> + + + +Description + + +If show.revisionflag is turned on, then the stylesheets +may produce additional markup designed to allow a CSS stylesheet to +highlight elements that have specific revisionflag settings. + +The markup inserted will be usually be either a <span> or +<div> with an appropriate class +attribute. (The value of the class attribute will be the same as the +value of the revisionflag attribute). In some contexts, for example +tables, where extra markup would be structurally illegal, the class +attribute will be added to the appropriate container element. + +In general, the stylesheets only test for revisionflag in contexts +where an importing stylesheet would have to redefine whole templates. +Most of the revisionflag processing is expected to be done by another +stylesheet, for example changebars.xsl. + + + + + + +shade.verbatim +boolean + + +shade.verbatim +Should verbatim environments be shaded? + + + +<xsl:param name="shade.verbatim" select="0"></xsl:param> + + +Description + +In the FO stylesheet, if this parameter is non-zero then the +shade.verbatim.style properties will be applied +to verbatim environments. + +In the HTML stylesheet, this parameter is now deprecated. Use +CSS instead. + + + + + + +shade.verbatim.style +attribute set + + +shade.verbatim.style +Properties that specify the style of shaded verbatim listings + + + + +<xsl:attribute-set name="shade.verbatim.style"> + <xsl:attribute name="border">0</xsl:attribute> + <xsl:attribute name="bgcolor">#E0E0E0</xsl:attribute> +</xsl:attribute-set> + + + + +Description + +Properties that specify the style of shaded verbatim listings. The +parameters specified (the border and background color) are added to +the styling of the xsl-fo output. A border might be specified as "thin +black solid" for example. See xsl-fo + + + + + + +punct.honorific +string + + +punct.honorific +Punctuation after an honorific in a personal name. + + + + +<xsl:param name="punct.honorific">.</xsl:param> + + + +Description + +This parameter specifies the punctuation that should be added after an +honorific in a personal name. + + + + + + +tex.math.in.alt +list +plain +latex + + +tex.math.in.alt +TeX notation used for equations + + + + +<xsl:param name="tex.math.in.alt"></xsl:param> + + + +Description + +If you want type math directly in TeX notation in equations, +this parameter specifies notation used. Currently are supported two +values -- plain and latex. Empty +value means that you are not using TeX math at all. + +Preferred way for including TeX alternative of math is inside of +textobject element. Eg.: + +<inlineequation> +<inlinemediaobject> +<imageobject> +<imagedata fileref="eq1.gif"/> +</imageobject> +<textobject><phrase>E=mc squared</phrase></textobject> +<textobject role="tex"><phrase>E=mc^2</phrase></textobject> +</inlinemediaobject> +</inlineequation> + +If you are using graphic element, you can +store TeX inside alt element: + +<inlineequation> +<alt role="tex">a^2+b^2=c^2</alt> +<graphic fileref="a2b2c2.gif"/> +</inlineequation> + +If you want use this feature, you should process your FO with +PassiveTeX, which only supports TeX math notation. When calling +stylsheet, don't forget to specify also +passivetex.extensions=1. + +If you want equations in HTML, just process generated file +tex-math-equations.tex by TeX or LaTeX. Then run +dvi2bitmap program on result DVI file. You will get images for +equations in your document. + + + This feature is useful for print/PDF output only if you + use the obsolete and now unsupported PassiveTeX XSL-FO + engine. + + + + +Related Parameters + tex.math.delims, + passivetex.extensions, + tex.math.file + + + + + + +tex.math.file +string + + +tex.math.file +Name of temporary file for generating images from equations + + + + +<xsl:param name="tex.math.file">tex-math-equations.tex</xsl:param> + + + +Description + +Name of auxiliary file for TeX equations. This file can be +processed by dvi2bitmap to get bitmap versions of equations for HTML +output. + + +Related Parameters + tex.math.in.alt, + tex.math.delims, + + +More information + For how-to documentation on embedding TeX equations and + generating output from them, see + DBTeXMath. + + + + + +tex.math.delims +boolean + + +tex.math.delims +Should equations output for processing by TeX be +surrounded by math mode delimiters? + + + + +<xsl:param name="tex.math.delims" select="1"></xsl:param> + + + +Description + +For compatibility with DSSSL based DBTeXMath from Allin Cottrell +you should set this parameter to 0. + + + This feature is useful for print/PDF output only if you + use the obsolete and now unsupported PassiveTeX XSL-FO + engine. + + + +Related Parameters + tex.math.in.alt, + passivetex.extensions + + +See Also + You can also use the dbtex delims processing + instruction to control whether delimiters are output. + + + + + + + +pixels.per.inch +integer + + +pixels.per.inch +How many pixels are there per inch? + + + + +<xsl:param name="pixels.per.inch">90</xsl:param> + + + +Description + +When lengths are converted to pixels, this value is used to +determine the size of a pixel. The default value is taken from the +XSL +Recommendation. + + + + + + + +points.per.em +number + + +points.per.em +Specify the nominal size of an em-space in points + + + + +<xsl:param name="points.per.em">10</xsl:param> + + + +Description + +The fixed value used for calculations based upon the size of a +character. The assumption made is that ten point font is in use. This +assumption may not be valid. + + + + + + +use.svg +boolean + + +use.svg +Allow SVG in the result tree? + + + + +<xsl:param name="use.svg" select="1"></xsl:param> + + + +Description + +If non-zero, SVG will be considered an acceptable image format. SVG +is passed through to the result tree, so correct rendering of the resulting +diagram depends on the formatter (FO processor or web browser) that is used +to process the output from the stylesheet. + + + + + + +menuchoice.separator +string + + +menuchoice.separator +Separator between items of a menuchoice +other than guimenuitem and +guisubmenu + + + + +<xsl:param name="menuchoice.separator">+</xsl:param> + + + +Description + +Separator used to connect items of a menuchoice other +than guimenuitem and guisubmenu. The latter +elements are linked with menuchoice.menu.separator. + + + + + + + +menuchoice.menu.separator +string + + +menuchoice.menu.separator +Separator between items of a menuchoice +with guimenuitem or +guisubmenu + + + + +<xsl:param name="menuchoice.menu.separator"> → </xsl:param> + + + +Description + +Separator used to connect items of a menuchoice with +guimenuitem or guisubmenu. Other elements +are linked with menuchoice.separator. + +The default value is &#x2192;, which is the +&rarr; (right arrow) character entity. +The current FOP (0.20.5) requires setting the font-family +explicitly. + +The default value also includes spaces around the arrow, +which will allow a line to break. Replace the spaces with +&#xA0; (nonbreaking space) if you don't want those +spaces to break. + + + + + + + +default.float.class +string + + +default.float.class +Specifies the default float class + + + + +<xsl:param name="default.float.class"> + <xsl:choose> + <xsl:when test="contains($stylesheet.result.type,'html')">left</xsl:when> + <xsl:otherwise>before</xsl:otherwise> + </xsl:choose> +</xsl:param> + + + +Description + +Selects the direction in which a float should be placed. for +xsl-fo this is before, for html it is left. For Western texts, the +before direction is the top of the page. + + + + + + +footnote.number.format +list +11,2,3... +AA,B,C... +aa,b,c... +ii,ii,iii... +II,II,III... + + +footnote.number.format +Identifies the format used for footnote numbers + + + + +<xsl:param name="footnote.number.format">1</xsl:param> + + + +Description + +The footnote.number.format specifies the format +to use for footnote numeration (1, i, I, a, or A). + + + + + + +table.footnote.number.format +list +11,2,3... +AA,B,C... +aa,b,c... +ii,ii,iii... +II,II,III... + + +table.footnote.number.format +Identifies the format used for footnote numbers in tables + + + + +<xsl:param name="table.footnote.number.format">a</xsl:param> + + + +Description + +The table.footnote.number.format specifies the format +to use for footnote numeration (1, i, I, a, or A) in tables. + + + + + + +footnote.number.symbols + + + +footnote.number.symbols +Special characters to use as footnote markers + + + + +<xsl:param name="footnote.number.symbols"></xsl:param> + + + +Description + +If footnote.number.symbols is not the empty string, +footnotes will use the characters it contains as footnote symbols. For example, +*&#x2020;&#x2021;&#x25CA;&#x2720; will identify +footnotes with *, , , +, and . If there are more footnotes +than symbols, the stylesheets will fall back to numbered footnotes using +footnote.number.format. + +The use of symbols for footnotes depends on the ability of your +processor (or browser) to render the symbols you select. Not all systems are +capable of displaying the full range of Unicode characters. If the quoted characters +in the preceding paragraph are not displayed properly, that's a good indicator +that you may have trouble using those symbols for footnotes. + + + + + + +table.footnote.number.symbols +string + + +table.footnote.number.symbols +Special characters to use a footnote markers in tables + + + + +<xsl:param name="table.footnote.number.symbols"></xsl:param> + + + +Description + +If table.footnote.number.symbols is not the empty string, +table footnotes will use the characters it contains as footnote symbols. For example, +*&#x2020;&#x2021;&#x25CA;&#x2720; will identify +footnotes with *, , , +, and . If there are more footnotes +than symbols, the stylesheets will fall back to numbered footnotes using +table.footnote.number.format. + +The use of symbols for footnotes depends on the ability of your +processor (or browser) to render the symbols you select. Not all systems are +capable of displaying the full range of Unicode characters. If the quoted characters +in the preceding paragraph are not displayed properly, that's a good indicator +that you may have trouble using those symbols for footnotes. + + + + + + +highlight.source +boolean + + +highlight.source +Should the content of programlisting +be syntactically highlighted? + + + + +<xsl:param name="highlight.source" select="0"></xsl:param> + + + +Description + +When this parameter is non-zero, the stylesheets will try to do syntax highlighting of the +content of programlisting elements. You specify the language for each programlisting +by using the language attribute. The highlight.default.language +parameter can be used to specify the language for programlistings without a language +attribute. Syntax highlighting also works for screen and synopsis elements. + +The actual highlighting work is done by the XSLTHL extension module. This is an external Java library that has to be +downloaded separately (see below). + + +In order to use this extension, you must + +add xslthl-2.x.x.jar to your Java classpath. The latest version is available +from the XSLT syntax highlighting project +at SourceForge. + + +use a customization layer in which you import one of the following stylesheet modules: + + + html/highlight.xsl + + + + xhtml/highlight.xsl + + + + xhtml-1_1/highlight.xsl + + + + fo/highlight.xsl + + + + + +let either the xslthl.config Java system property or the +highlight.xslthl.config parameter point to the configuration file for syntax +highlighting (using URL syntax). DocBook XSL comes with a ready-to-use configuration file, +highlighting/xslthl-config.xml. + + + +The extension works with Saxon 6.5.x and Xalan-J. (Saxon 8.5 or later is also supported, but since it is +an XSLT 2.0 processor it is not guaranteed to work with DocBook XSL in all circumstances.) + +The following is an example of a Saxon 6 command adapted for syntax highlighting, to be used on Windows: + + +java -cp c:/Java/saxon.jar;c:/Java/xslthl-2.0.1.jar +-Dxslthl.config=file:///c:/docbook-xsl/highlighting/xslthl-config.xml com.icl.saxon.StyleSheet +-o test.html test.xml myhtml.xsl + + + + + + + +highlight.xslthl.config +uri + + +highlight.xslthl.config +Location of XSLTHL configuration file + + + + +<xsl:param name="highlight.xslthl.config"></xsl:param> + + + +Description + +This location has precedence over the corresponding Java property. + +Please note that usually you have to specify location as URL not +just as a simple path on the local +filesystem. E.g. file:///home/user/xslthl/my-xslthl-config.xml. + + + + + + + + +highlight.default.language +string + + +highlight.default.language +Default language of programlisting + + + + +<xsl:param name="highlight.default.language"></xsl:param> + + + +Description + +This language is used when there is no language attribute on programlisting. + + + + + + +email.delimiters.enabled +boolean + + +email.delimiters.enabled +Generate delimiters around email addresses? + + + + +<xsl:param name="email.delimiters.enabled" select="1"></xsl:param> + + + +Description + +If non-zero, delimiters + +For delimiters, the +stylesheets are currently hard-coded to output angle +brackets. + +are generated around e-mail addresses +(the output of the email element). + + + + + + +exsl.node.set.available +boolean + + +exsl.node.set.available +Is the test function-available('exsl:node-set') true? + + + +<xsl:param name="exsl.node.set.available"> + <xsl:choose> + <xsl:when exsl:foo="" test="function-available('exsl:node-set') or contains(system-property('xsl:vendor'), 'Apache Software Foundation')">1</xsl:when> + <xsl:otherwise>0</xsl:otherwise> + </xsl:choose> +</xsl:param> + + + +Description + +If non-zero, +then the exsl:node-set() function is available to be used in +the stylesheet. +If zero, then the function is not available. +This param automatically detects the presence of +the function and does not normally need to be set manually. + +This param was created to handle a long-standing +bug in the Xalan processor that fails to detect the +function even though it is available. + + + + + +Annotations + + +annotation.support +boolean + + +annotation.support +Enable annotations? + + + + +<xsl:param name="annotation.support" select="0"></xsl:param> + + + +Description + +If non-zero, the stylesheets will attempt to support annotation +elements in HTML by including some JavaScript (see +annotation.js). + + + + + + +annotation.js +string + + +annotation.js +URIs identifying JavaScript files with support for annotation popups + + + + + +<xsl:param name="annotation.js"> +<xsl:text>http://docbook.sourceforge.net/release/script/AnchorPosition.js http://docbook.sourceforge.net/release/script/PopupWindow.js</xsl:text></xsl:param> + + + + +Description + +If annotation.support is enabled and the +document contains annotations, then the URIs listed +in this parameter will be included. These JavaScript files are required +for popup annotation support. + + + + + + +annotation.css +string + + +annotation.css +CSS rules for annotations + + + + +<xsl:param name="annotation.css"> +/* ====================================================================== + Annotations +*/ + +div.annotation-list { visibility: hidden; + } + +div.annotation-nocss { position: absolute; + visibility: hidden; + } + +div.annotation-popup { position: absolute; + z-index: 4; + visibility: hidden; + padding: 0px; + margin: 2px; + border-style: solid; + border-width: 1px; + width: 200px; + background-color: white; + } + +div.annotation-title { padding: 1px; + font-weight: bold; + border-bottom-style: solid; + border-bottom-width: 1px; + color: white; + background-color: black; + } + +div.annotation-body { padding: 2px; + } + +div.annotation-body p { margin-top: 0px; + padding-top: 0px; + } + +div.annotation-close { position: absolute; + top: 2px; + right: 2px; + } +</xsl:param> + + + +Description + +If annotation.support is enabled and the +document contains annotations, then the CSS in this +parameter will be included in the document. + + + + + + +annotation.graphic.open +uri + + +annotation.graphic.open +Image for identifying a link that opens an annotation popup + + + + +<xsl:param name="annotation.graphic.open">http://docbook.sourceforge.net/release/images/annot-open.png</xsl:param> + + + +Description + +This image is used inline to identify the location of +annotations. It may be replaced by a user provided graphic. The size should be approximately 10x10 pixels. + + + + + + +annotation.graphic.close +uri + + +annotation.graphic.close +Image for identifying a link that closes an annotation popup + + + + +<xsl:param name="annotation.graphic.close"> +http://docbook.sourceforge.net/release/images/annot-close.png</xsl:param> + + + +Description + +This image is used on popup annotations as the “x” that the +user can click to dismiss the popup. +This image is used on popup annotations as the “x” that the user can +click to dismiss the popup. It may be replaced by a user provided graphic. The size should be approximately 10x10 pixels. + + + + + +Graphics + + +img.src.path +string + + +img.src.path +Path to HTML/FO image files + + + +<xsl:param name="img.src.path"></xsl:param> + + +Description + +Add a path prefix to the value of the fileref +attribute of graphic, inlinegraphic, and imagedata elements. The resulting +compound path is used in the output as the value of the src +attribute of img (HTML) or external-graphic (FO). + + + +The path given by img.src.path could be relative to the directory where the HTML/FO +files are created, or it could be an absolute URI. +The default value is empty. +Be sure to include a trailing slash if needed. + + +This prefix is not applied to any filerefs that start +with "/" or contain "//:". + + + + + + + +keep.relative.image.uris +boolean + + +keep.relative.image.uris +Should image URIs be resolved against xml:base? + + + + +<xsl:param name="keep.relative.image.uris" select="1"></xsl:param> + + + + +Description + +If non-zero, relative URIs (in, for example +fileref attributes) will be used in the generated +output. Otherwise, the URIs will be made absolute with respect to the +base URI. + +Note that the stylesheets calculate (and use) the absolute form +for some purposes, this only applies to the resulting output. + + + + + + +graphic.default.extension +string + + +graphic.default.extension +Default extension for graphic filenames + + + +<xsl:param name="graphic.default.extension"></xsl:param> + + +Description + +If a graphic or mediaobject +includes a reference to a filename that does not include an extension, +and the format attribute is +unspecified, the default extension will be used. + + + + + + + +default.image.width +length + + +default.image.width +The default width of images + + + + +<xsl:param name="default.image.width"></xsl:param> + + + +Description + +If specified, this value will be used for the +width attribute on images that do not specify any +viewport dimensions. + + + + + + +nominal.image.width +length + + +nominal.image.width +The nominal image width + + + + +<xsl:param name="nominal.image.width" select="6 * $pixels.per.inch"></xsl:param> + + + +Description + +Graphic widths expressed as a percentage are problematic. In the +following discussion, we speak of width and contentwidth, but +the same issues apply to depth and contentdepth. + +A width of 50% means "half of the available space for the image." +That's fine. But note that in HTML, this is a dynamic property and +the image size will vary if the browser window is resized. + +A contentwidth of 50% means "half of the actual image width". +But what does that mean if the stylesheets cannot assess the image's +actual size? Treating this as a width of 50% is one possibility, but +it produces behavior (dynamic scaling) that seems entirely out of +character with the meaning. + +Instead, the stylesheets define a +nominal.image.width and convert percentages to +actual values based on that nominal size. + + + + + + +nominal.image.depth +length + + +nominal.image.depth +Nominal image depth + + + + +<xsl:param name="nominal.image.depth" select="4 * $pixels.per.inch"></xsl:param> + + + +Description + +See nominal.image.width. + + + + + + +use.embed.for.svg +boolean + + +use.embed.for.svg +Use HTML embed for SVG? + + + + +<xsl:param name="use.embed.for.svg" select="0"></xsl:param> + + + +Description + +If non-zero, an embed element will be created for +SVG figures. An object is always created, +this parameter merely controls whether or not an additional embed +is generated inside the object. + +On the plus side, this may be more portable among browsers and plug-ins. +On the minus side, it isn't valid HTML. + + + + + + +make.graphic.viewport +boolean + + +make.graphic.viewport +Use tables in HTML to make viewports for graphics + + + + +<xsl:param name="make.graphic.viewport" select="1"></xsl:param> + + + +Description + +The HTML img element only supports the notion +of content-area scaling; it doesn't support the distinction between a +content-area and a viewport-area, so we have to make some compromises. + +If make.graphic.viewport is non-zero, a table +will be used to frame the image. This creates an effective viewport-area. + + +Tables and alignment don't work together, so this parameter is ignored +if alignment is specified on an image. + + + + + +preferred.mediaobject.role +string + + +preferred.mediaobject.role +Select which mediaobject to use based on +this value of an object's role attribute. + + + + + +<xsl:param name="preferred.mediaobject.role"></xsl:param> + + + +Description + +A mediaobject may contain several objects such as imageobjects. +If the parameter use.role.for.mediaobject is +non-zero, then the role attribute on +imageobjects and other objects within a +mediaobject container will be used to select which object +will be used. If one of the objects has a role value that matches the +preferred.mediaobject.role parameter, then it +has first priority for selection. If more than one has such a role +value, the first one is used. + + +See the use.role.for.mediaobject parameter +for the sequence of selection. + + + + + +use.role.for.mediaobject +boolean + + +use.role.for.mediaobject +Use role attribute +value for selecting which of several objects within a mediaobject to use. + + + + + +<xsl:param name="use.role.for.mediaobject" select="1"></xsl:param> + + + +Description + +If non-zero, the role attribute on +imageobjects or other objects within a mediaobject container will be used to select which object will be +used. + + +The order of selection when then parameter is non-zero is: + + + + If the stylesheet parameter preferred.mediaobject.role has a value, then the object whose role equals that value is selected. + + +Else if an object's role attribute has a value of +html for HTML processing or +fo for FO output, then the first +of such objects is selected. + + + +Else the first suitable object is selected. + + + +If the value of +use.role.for.mediaobject +is zero, then role attributes are not considered +and the first suitable object +with or without a role value is used. + + + + + + +ignore.image.scaling +boolean + + +ignore.image.scaling +Tell the stylesheets to ignore the author's image scaling attributes + + + + +<xsl:param name="ignore.image.scaling" select="0"></xsl:param> + + + +Description + +If non-zero, the scaling attributes on graphics and media objects are +ignored. + + + + + +Chunking + + +chunker.output.cdata-section-elements +string + + +chunker.output.cdata-section-elements +List of elements to escape with CDATA sections + + + +<xsl:param name="chunker.output.cdata-section-elements"></xsl:param> + + +Description +This parameter specifies the list of elements that should be escaped +as CDATA sections by the chunking stylesheet. Not all processors support +specification of this parameter. + + +This parameter is documented here, but the declaration is actually +in the chunker.xsl stylesheet module. + + + + + + +chunker.output.doctype-public +string + + +chunker.output.doctype-public +Public identifer to use in the document type of generated pages + + + +<xsl:param name="chunker.output.doctype-public"></xsl:param> + + +Description +This parameter specifies the public identifier that should be used by +the chunking stylesheet in the document type declaration of chunked pages. +Not all processors support specification of +this parameter. + + +This parameter is documented here, but the declaration is actually +in the chunker.xsl stylesheet module. + + + + + + +chunker.output.doctype-system +uri + + +chunker.output.doctype-system +System identifier to use for the document type in generated pages + + + +<xsl:param name="chunker.output.doctype-system"></xsl:param> + + +Description +This parameter specifies the system identifier that should be used by +the chunking stylesheet in the document type declaration of chunked pages. +Not all processors support specification of +this parameter. + + +This parameter is documented here, but the declaration is actually +in the chunker.xsl stylesheet module. + + + + + + +chunker.output.encoding +string + + +chunker.output.encoding +Encoding used in generated pages + + + +<xsl:param name="chunker.output.encoding">ISO-8859-1</xsl:param> + + +Description +This parameter specifies the encoding to be used in files +generated by the chunking stylesheet. Not all processors support +specification of this parameter. + +This parameter used to be named default.encoding. + +This parameter is documented here, but the declaration is actually +in the chunker.xsl stylesheet module. + + + + + + +chunker.output.indent +string + + +chunker.output.indent +Specification of indentation on generated pages + + + +<xsl:param name="chunker.output.indent">no</xsl:param> + + +Description +This parameter specifies the value of the indent +specification for generated pages. Not all processors support +specification of this parameter. + + +This parameter is documented here, but the declaration is actually +in the chunker.xsl stylesheet module. + + + + + + +chunker.output.media-type +string + + +chunker.output.media-type +Media type to use in generated pages + + + +<xsl:param name="chunker.output.media-type"></xsl:param> + + +Description +This parameter specifies the media type that should be used by +the chunking stylesheet. Not all processors support specification of +this parameter. + +This parameter specifies the media type that should be used by the +chunking stylesheet. This should be one from those defined in +[RFC2045] and + [RFC2046] + +This parameter is documented here, but the declaration is actually +in the chunker.xsl stylesheet module. +It must be one from html, xml or text + + + + + + +chunker.output.method +list +html +xml + + +chunker.output.method +Method used in generated pages + + + +<xsl:param name="chunker.output.method">html</xsl:param> + + +Description +This parameter specifies the output method to be used in files +generated by the chunking stylesheet. + +This parameter used to be named output.method. + +This parameter is documented here, but the declaration is actually +in the chunker.xsl stylesheet module. + + + + + + +chunker.output.omit-xml-declaration +string + + +chunker.output.omit-xml-declaration +Omit-xml-declaration for generated pages + + + +<xsl:param name="chunker.output.omit-xml-declaration">no</xsl:param> + + +Description +This parameter specifies the value of the omit-xml-declaration +specification for generated pages. Not all processors support +specification of this parameter. + + +This parameter is documented here, but the declaration is actually +in the chunker.xsl stylesheet module. + + + + + + +chunker.output.standalone +string + + +chunker.output.standalone +Standalone declaration for generated pages + + + +<xsl:param name="chunker.output.standalone">no</xsl:param> + + +Description +This parameter specifies the value of the standalone + specification for generated pages. It must be either + yes or no. Not all + processors support specification of this parameter. + + +This parameter is documented here, but the declaration is actually +in the chunker.xsl stylesheet module. + + + + + + +saxon.character.representation +string + + +saxon.character.representation +Saxon character representation used in generated HTML pages + + + + <xsl:param name="saxon.character.representation" select="'entity;decimal'"></xsl:param> + + +Description + +This parameter has effect only when Saxon 6 is used (version 6.4.2 or later). +It sets the character representation in files generated by the chunking stylesheets. +If you want to suppress entity references for characters with direct representations in +chunker.output.encoding, set the parameter value to native. + + + For more information, see Saxon output character representation. + + +This parameter is documented here, but the declaration is actually +in the chunker.xsl stylesheet module. + + + + + + + + +html.ext +string + + +html.ext +Identifies the extension of generated HTML files + + + + +<xsl:param name="html.ext">.html</xsl:param> + + + +Description + +The extension identified by html.ext will +be used as the filename extension for chunks created by this +stylesheet. + + + + + + +use.id.as.filename +boolean + + +use.id.as.filename +Use ID value of chunk elements as the filename? + + + + +<xsl:param name="use.id.as.filename" select="0"></xsl:param> + + + +Description + +If use.id.as.filename +is non-zero, the filename of chunk elements that have IDs will be +derived from the ID value. + + + + + + + +html.extra.head.links +boolean + + +html.extra.head.links +Toggle extra HTML head link information + + + + +<xsl:param name="html.extra.head.links" select="0"></xsl:param> + + + +Description + +If non-zero, extra link elements will be +generated in the head of chunked HTML files. These +extra links point to chapters, appendixes, sections, etc. as supported +by the Site Navigation Bar in Mozilla 1.0 (as of CR1, at least). + + + + + + + +root.filename +uri + + +root.filename +Identifies the name of the root HTML file when chunking + + + + +<xsl:param name="root.filename">index</xsl:param> + + + +Description + +The root.filename is the base filename for +the chunk created for the root of each document processed. + + + + + + + +base.dir +uri + + +base.dir +The base directory of chunks + + + + +<xsl:param name="base.dir"></xsl:param> + + + +Description + +If specified, the base.dir identifies +the output directory for chunks. (If not specified, the output directory +is system dependent.) + + + + + + + generate.manifest + boolean + + + generate.manifest + Generate a manifest file? + + + + <xsl:param name="generate.manifest" select="0"></xsl:param> + + + Description + + If non-zero, a list of HTML files generated by the + stylesheet transformation is written to the file named by + the manifest parameter. + + + + + + + manifest + string + + + manifest + Name of manifest file + + + + + <xsl:param name="manifest">HTML.manifest</xsl:param> + + + + Description + + The name of the file to which a manifest is written (if the + value of the generate.manifest parameter + is non-zero). + + + + + + +manifest.in.base.dir +boolean + + +manifest.in.base.dir +Should the manifest file be written into base.dir? + + + + +<xsl:param name="manifest.in.base.dir" select="0"></xsl:param> + + + +Description + +If non-zero, the manifest file as well as project files for HTML Help and +Eclipse Help are written into base.dir instead +of the current directory. + + + + + + +chunk.toc +string + + +chunk.toc +An explicit TOC to be used for chunking + + + + +<xsl:param name="chunk.toc"></xsl:param> + + + +Description + +The chunk.toc identifies an explicit TOC that +will be used for chunking. This parameter is only used by the +chunktoc.xsl stylesheet (and customization layers built +from it). + + + + + + +chunk.tocs.and.lots +boolean + + +chunk.tocs.and.lots +Should ToC and LoTs be in separate chunks? + + + + +<xsl:param name="chunk.tocs.and.lots" select="0"></xsl:param> + + + +Description + +If non-zero, ToC and LoT (List of Examples, List of Figures, etc.) +will be put in a separate chunk. At the moment, this chunk is not in the +normal forward/backward navigation list. Instead, a new link is added to the +navigation footer. + +This feature is still somewhat experimental. Feedback welcome. + + + + + + +chunk.separate.lots +boolean + + +chunk.separate.lots +Should each LoT be in its own separate chunk? + + + + +<xsl:param name="chunk.separate.lots" select="0"></xsl:param> + + + +Description + +If non-zero, each of the ToC and LoTs +(List of Examples, List of Figures, etc.) +will be put in its own separate chunk. +The title page includes generated links to each of the separate files. + + +This feature depends on the +chunk.tocs.and.lots +parameter also being non-zero. + + + + + + + +chunk.tocs.and.lots.has.title +boolean + + +chunk.tocs.and.lots.has.title +Should ToC and LoTs in a separate chunks have title? + + + + +<xsl:param name="chunk.tocs.and.lots.has.title" select="1"></xsl:param> + + + +Description + +If non-zero title of document is shown before ToC/LoT in +separate chunk. + + + + + + +chunk.section.depth +integer + + +chunk.section.depth +Depth to which sections should be chunked + + + + +<xsl:param name="chunk.section.depth" select="1"></xsl:param> + + + +Description + +This parameter sets the depth of section chunking. + + + + + + +chunk.first.sections +boolean + + +chunk.first.sections +Chunk the first top-level section? + + + + +<xsl:param name="chunk.first.sections" select="0"></xsl:param> + + + +Description + +If non-zero, a chunk will be created for the first top-level +sect1 or section elements in +each component. Otherwise, that section will be part of the chunk for +its parent. + + + + + + + +chunk.quietly +boolean + + +chunk.quietly +Omit the chunked filename messages. + + + + +<xsl:param name="chunk.quietly" select="0"></xsl:param> + + + +Description + +If zero (the default), the XSL processor emits a message naming +each separate chunk filename as it is being output. +If nonzero, then the messages are suppressed. + + + + + + + +chunk.append +string + + +chunk.append +Specifies content to append to chunked HTML output + + + +<xsl:param name="chunk.append"></xsl:param> + + +Description + +Specifies content to append to the end of HTML files output by +the html/chunk.xsl stylesheet, after the closing +<html> tag. You probably don’t want to set any value +for this parameter; but if you do, the only value it should ever be +set to is a newline character: &#x0a; or +&#10; + + + + + + +navig.graphics +boolean + + +navig.graphics +Use graphics in navigational headers and footers? + + + + +<xsl:param name="navig.graphics" select="0"></xsl:param> + + + +Description + +If non-zero, the navigational headers and footers in chunked +HTML are presented in an alternate style that uses graphical icons for +Next, Previous, Up, and Home. Default graphics are provided in the +distribution. If zero, text is used instead of graphics. + + + + + + + +navig.graphics.extension +string + + +navig.graphics.extension +Extension for navigational graphics + + + + +<xsl:param name="navig.graphics.extension">.gif</xsl:param> + + + +Description + +Sets the filename extension to use on navigational graphics used +in the headers and footers of chunked HTML. + + + + + + +navig.graphics.path +string + + +navig.graphics.path +Path to navigational graphics + + + + +<xsl:param name="navig.graphics.path">images/</xsl:param> + + + +Description + +Sets the path, probably relative to the directory where the HTML +files are created, to the navigational graphics used in the +headers and footers of chunked HTML. + + + + + + + +navig.showtitles +boolean + + +navig.showtitles +Display titles in HTML headers and footers? + + + +<xsl:param name="navig.showtitles">1</xsl:param> + + +Description + +If non-zero, +the headers and footers of chunked HTML +display the titles of the next and previous chunks, +along with the words 'Next' and 'Previous' (or the +equivalent graphical icons if navig.graphics is true). +If false (zero), then only the words 'Next' and 'Previous' +(or the icons) are displayed. + + + + + + +Profiling + +The following parameters can be used for attribute-based +profiling of your document. For more information about profiling, see +Profiling (conditional text). + + + +profile.arch +string + + +profile.arch +Target profile for arch +attribute + + + + +<xsl:param name="profile.arch"></xsl:param> + + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + + + + +profile.audience +string + + +profile.audience +Target profile for audience +attribute + + + + +<xsl:param name="profile.audience"></xsl:param> + + + +Description + +Value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + + + + +profile.condition +string + + +profile.condition +Target profile for condition +attribute + + + + +<xsl:param name="profile.condition"></xsl:param> + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + + + + +profile.conformance +string + + +profile.conformance +Target profile for conformance +attribute + + + + +<xsl:param name="profile.conformance"></xsl:param> + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + + + + +profile.lang +string + + +profile.lang +Target profile for lang +attribute + + + + +<xsl:param name="profile.lang"></xsl:param> + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + + + + +profile.os +string + + +profile.os +Target profile for os +attribute + + + + +<xsl:param name="profile.os"></xsl:param> + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + + + + +profile.revision +string + + +profile.revision +Target profile for revision +attribute + + + + +<xsl:param name="profile.revision"></xsl:param> + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + + + + +profile.revisionflag +string + + +profile.revisionflag +Target profile for revisionflag +attribute + + + + +<xsl:param name="profile.revisionflag"></xsl:param> + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + + + + +profile.role +string + + +profile.role +Target profile for role +attribute + + + + +<xsl:param name="profile.role"></xsl:param> + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + +Note that role is often +used for other purposes than profiling. For example it is commonly +used to get emphasize in bold font: + +<emphasis role="bold">very important</emphasis> + +If you are using role for +these purposes do not forget to add values like bold to +value of this parameter. If you forgot you will get document with +small pieces missing which are very hard to track. + +For this reason it is not recommended to use role attribute for profiling. You should +rather use profiling specific attributes like userlevel, os, arch, condition, etc. + + + + + + + +profile.security +string + + +profile.security +Target profile for security +attribute + + + + +<xsl:param name="profile.security"></xsl:param> + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + + + + +profile.status +string + + +profile.status +Target profile for status +attribute + + + + +<xsl:param name="profile.status"></xsl:param> + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + + + + +profile.userlevel +string + + +profile.userlevel +Target profile for userlevel +attribute + + + + +<xsl:param name="profile.userlevel"></xsl:param> + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + + + + +profile.vendor +string + + +profile.vendor +Target profile for vendor +attribute + + + + +<xsl:param name="profile.vendor"></xsl:param> + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + + + + +profile.wordsize +string + + +profile.wordsize +Target profile for wordsize +attribute + + + + +<xsl:param name="profile.wordsize"></xsl:param> + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + + + + +profile.attribute +string + + +profile.attribute +Name of user-specified profiling attribute + + + + +<xsl:param name="profile.attribute"></xsl:param> + + + +Description + +This parameter is used in conjuction with +profile.value. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + + + + +profile.value +string + + +profile.value +Target profile for user-specified attribute + + + + +<xsl:param name="profile.value"></xsl:param> + + + +Description + +When you are using this parameter you must also specify name of +profiling attribute with parameter +profile.attribute. + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + + + + +profile.separator +string + + +profile.separator +Separator character for compound profile values + + + + +<xsl:param name="profile.separator">;</xsl:param> + + + +Description + +Separator character used for compound profile values. See profile.arch + + + + + +HTML Help + + +htmlhelp.encoding +string + + +htmlhelp.encoding +Character encoding to use in files for HTML Help compiler. + + + + +<xsl:param name="htmlhelp.encoding">iso-8859-1</xsl:param> + + + +Description + +HTML Help Compiler is not UTF-8 aware, so you should always use an +appropriate single-byte encoding here. Use one from iana, the registered charset values. + + + + + + +htmlhelp.autolabel +boolean + + +htmlhelp.autolabel +Should tree-like ToC use autonumbering feature? + + + + +<xsl:param name="htmlhelp.autolabel" select="0"></xsl:param> + + + +Description + +Set this to non-zero to include chapter and section numbers into ToC +in the left panel. + + + + + + +htmlhelp.chm +string + + +htmlhelp.chm +Filename of output HTML Help file. + + + + +<xsl:param name="htmlhelp.chm">htmlhelp.chm</xsl:param> + + + +Description + +Set the name of resulting CHM file + + + + + + +htmlhelp.default.topic +string + + +htmlhelp.default.topic +Name of file with default topic + + + + +<xsl:param name="htmlhelp.default.topic"></xsl:param> + + + +Description + +Normally first chunk of document is displayed when you open HTML +Help file. If you want to display another topic, simply set its +filename by this parameter. + +This is useful especially if you don't generate ToC in front of +your document and you also hide root element in ToC. E.g.: + +<xsl:param name="generate.book.toc" select="0"/> +<xsl:param name="htmlhelp.hhc.show.root" select="0"/> +<xsl:param name="htmlhelp.default.topic">pr01.html</xsl:param> + + + + + + + +htmlhelp.display.progress +boolean + + +htmlhelp.display.progress +Display compile progress? + + + + +<xsl:param name="htmlhelp.display.progress" select="1"></xsl:param> + + + +Description + +Set to non-zero to to display compile progress + + + + + + + +htmlhelp.hhp +string + + +htmlhelp.hhp +Filename of project file. + + + + +<xsl:param name="htmlhelp.hhp">htmlhelp.hhp</xsl:param> + + + +Description + +Change this parameter if you want different name of project +file than htmlhelp.hhp. + + + + + + +htmlhelp.hhc +string + + +htmlhelp.hhc +Filename of TOC file. + + + + +<xsl:param name="htmlhelp.hhc">toc.hhc</xsl:param> + + + +Description + +Set the name of the TOC file. The default is toc.hhc. + + + + + + +htmlhelp.hhk +string + + +htmlhelp.hhk +Filename of index file. + + + + +<xsl:param name="htmlhelp.hhk">index.hhk</xsl:param> + + + +Description + +set the name of the index file. The default is index.hhk. + + + + + + +htmlhelp.hhp.tail +string + + +htmlhelp.hhp.tail +Additional content for project file. + + + + +<xsl:param name="htmlhelp.hhp.tail"></xsl:param> + + + +Description + +If you want to include some additional parameters into project file, +store appropriate part of project file into this parameter. + + + + + + +htmlhelp.hhp.window +string + + +htmlhelp.hhp.window +Name of default window. + + + + +<xsl:param name="htmlhelp.hhp.window">Main</xsl:param> + + + +Description + +Name of default window. If empty no [WINDOWS] section will be +added to project file. + + + + + + +htmlhelp.hhp.windows +string + + +htmlhelp.hhp.windows +Definition of additional windows + + + + +<xsl:param name="htmlhelp.hhp.windows"></xsl:param> + + + +Description + +Content of this parameter is placed at the end of [WINDOWS] +section of project file. You can use it for defining your own +addtional windows. + + + + + + +htmlhelp.enhanced.decompilation +boolean + + +htmlhelp.enhanced.decompilation +Allow enhanced decompilation of CHM? + + + + +<xsl:param name="htmlhelp.enhanced.decompilation" select="0"></xsl:param> + + + +Description + +When non-zero this parameter enables enhanced decompilation of CHM. + + + + + + +htmlhelp.enumerate.images +boolean + + +htmlhelp.enumerate.images +Should the paths to all used images be added to the project file? + + + + +<xsl:param name="htmlhelp.enumerate.images" select="0"></xsl:param> + + + +Description + +Set to non-zero if you insert images into your documents as +external binary entities or if you are using absolute image paths. + + + + + + +htmlhelp.force.map.and.alias +boolean + + +htmlhelp.force.map.and.alias +Should [MAP] and [ALIAS] sections be added to the project file unconditionally? + + + +<xsl:param name="htmlhelp.force.map.and.alias" select="0"></xsl:param> + + +Description + Set to non-zero if you have your own + alias.h and context.h + files and you want to include references to them in the project + file. + + + + + +htmlhelp.map.file +string + + +htmlhelp.map.file +Filename of map file. + + + +<xsl:param name="htmlhelp.map.file">context.h</xsl:param> + + +Description +Set the name of map file. The default is + context.h. (used for context-sensitive + help). + + + + + +htmlhelp.alias.file +string + + +htmlhelp.alias.file +Filename of alias file. + + + + +<xsl:param name="htmlhelp.alias.file">alias.h</xsl:param> + + + +Description + +Specifies the filename of the alias file (used for context-sensitive help). + + + + + + +htmlhelp.hhc.section.depth +integer + + +htmlhelp.hhc.section.depth +Depth of TOC for sections in a left pane. + + + + +<xsl:param name="htmlhelp.hhc.section.depth">5</xsl:param> + + + +Description + +Set the section depth in the left pane of HTML Help viewer. + + + + + + +htmlhelp.hhc.show.root +boolean + + +htmlhelp.hhc.show.root +Should there be an entry for the root element in the ToC? + + + + +<xsl:param name="htmlhelp.hhc.show.root" select="1"></xsl:param> + + + +Description + +If set to zero, there will be no entry for the root element in the +ToC. This is useful when you want to provide the user with an expanded +ToC as a default. + + + + + + +htmlhelp.hhc.folders.instead.books +boolean + + +htmlhelp.hhc.folders.instead.books +Use folder icons in ToC (instead of book icons)? + + + + +<xsl:param name="htmlhelp.hhc.folders.instead.books" select="1"></xsl:param> + + + +Description + +Set to non-zero for folder-like icons or zero for book-like icons in the ToC. +If you want to use folder-like icons, you must switch off the binary ToC using +htmlhelp.hhc.binary. + + + + + + + + +htmlhelp.hhc.binary +boolean + + +htmlhelp.hhc.binary +Generate binary ToC? + + + + +<xsl:param name="htmlhelp.hhc.binary" select="1"></xsl:param> + + + +Description + +Set to non-zero to generate a binary TOC. You must create a binary TOC +if you want to add Prev/Next buttons to toolbar (which is default +behaviour). Files with binary TOC can't be merged. + + + + + + +htmlhelp.hhc.width +integer + + +htmlhelp.hhc.width +Width of navigation pane + + + + +<xsl:param name="htmlhelp.hhc.width"></xsl:param> + + + +Description + +This parameter specifies the width of the navigation pane (containing TOC and +other navigation tabs) in pixels. + + + + + + +htmlhelp.title +string + + +htmlhelp.title +Title of HTML Help + + + + +<xsl:param name="htmlhelp.title"></xsl:param> + + + +Description + +Content of this parameter will be used as a title for generated +HTML Help. If empty, title will be automatically taken from document. + + + + + + +htmlhelp.show.menu +boolean + + +htmlhelp.show.menu +Should the menu bar be shown? + + + + +<xsl:param name="htmlhelp.show.menu" select="0"></xsl:param> + + + +Description + +Set to non-zero to have an application menu bar in your HTML Help window. + + + + + + + +htmlhelp.show.toolbar.text +boolean + + +htmlhelp.show.toolbar.text +Show text under toolbar buttons? + + + + +<xsl:param name="htmlhelp.show.toolbar.text" select="1"></xsl:param> + + + +Description + +Set to non-zero to display texts under toolbar buttons, zero to switch +off displays. + + + + + + +htmlhelp.show.advanced.search +boolean + + +htmlhelp.show.advanced.search +Should advanced search features be available? + + + + +<xsl:param name="htmlhelp.show.advanced.search" select="0"></xsl:param> + + + +Description + +If you want advanced search features in your help, turn this +parameter to 1. + + + + + + +htmlhelp.show.favorities +boolean + + +htmlhelp.show.favorities +Should the Favorites tab be shown? + + + + +<xsl:param name="htmlhelp.show.favorities" select="0"></xsl:param> + + + +Description + +Set to non-zero to include a Favorites tab in the navigation pane +of the help window. + + + + + + +htmlhelp.button.hideshow +boolean + + +htmlhelp.button.hideshow +Should the Hide/Show button be shown? + + + + +<xsl:param name="htmlhelp.button.hideshow" select="1"></xsl:param> + + + +Description + +Set to non-zero to include the Hide/Show button shown on toolbar + + + + + + +htmlhelp.button.back +boolean + + +htmlhelp.button.back +Should the Back button be shown? + + + + +<xsl:param name="htmlhelp.button.back" select="1"></xsl:param> + + + +Description + +Set to non-zero to include the Hide/Show button shown on toolbar + + + + + + +htmlhelp.button.forward +boolean + + +htmlhelp.button.forward +Should the Forward button be shown? + + + + +<xsl:param name="htmlhelp.button.forward" select="0"></xsl:param> + + + +Description + +Set to non-zero to include the Forward button on the toolbar. + + + + + + +htmlhelp.button.stop +boolean + + +htmlhelp.button.stop +Should the Stop button be shown? + + + + +<xsl:param name="htmlhelp.button.stop" select="0"></xsl:param> + + + +Description + +If you want Stop button shown on toolbar, turn this +parameter to 1. + + + + + + +htmlhelp.button.refresh +boolean + + +htmlhelp.button.refresh +Should the Refresh button be shown? + + + + +<xsl:param name="htmlhelp.button.refresh" select="0"></xsl:param> + + + +Description + +Set to non-zero to include the Stop button on the toolbar. + + + + + + +htmlhelp.button.home +boolean + + +htmlhelp.button.home +Should the Home button be shown? + + + + +<xsl:param name="htmlhelp.button.home" select="0"></xsl:param> + + + +Description + +Set to non-zero to include the Home button on the toolbar. + + + + + + +htmlhelp.button.home.url +string + + +htmlhelp.button.home.url +URL address of page accessible by Home button + + + + +<xsl:param name="htmlhelp.button.home.url"></xsl:param> + + + +Description + +URL address of page accessible by Home button. + + + + + + +htmlhelp.button.options +boolean + + +htmlhelp.button.options +Should the Options button be shown? + + + + +<xsl:param name="htmlhelp.button.options" select="1"></xsl:param> + + + +Description + +If you want Options button shown on toolbar, turn this +parameter to 1. + + + + + + +htmlhelp.button.print +boolean + + +htmlhelp.button.print +Should the Print button be shown? + + + + +<xsl:param name="htmlhelp.button.print" select="1"></xsl:param> + + + +Description + +Set to non-zero to include the Print button on the toolbar. + + + + + + + +htmlhelp.button.locate +boolean + + +htmlhelp.button.locate +Should the Locate button be shown? + + + + +<xsl:param name="htmlhelp.button.locate" select="0"></xsl:param> + + + +Description + +If you want Locate button shown on toolbar, turn this +parameter to 1. + + + + + + +htmlhelp.button.jump1 +boolean + + +htmlhelp.button.jump1 +Should the Jump1 button be shown? + + + +<xsl:param name="htmlhelp.button.jump1" select="0"></xsl:param> + + +Description + Set to non-zero to include the Jump1 button on the toolbar. + + + + + +htmlhelp.button.jump1.url +string + + +htmlhelp.button.jump1.url +URL address of page accessible by Jump1 button + + + + +<xsl:param name="htmlhelp.button.jump1.url"></xsl:param> + + + +Description + +URL address of page accessible by Jump1 button. + + + + + + +htmlhelp.button.jump1.title +string + + +htmlhelp.button.jump1.title +Title of Jump1 button + + + + +<xsl:param name="htmlhelp.button.jump1.title">User1</xsl:param> + + + +Description + +Title of Jump1 button. + + + + + + +htmlhelp.button.jump2 +boolean + + +htmlhelp.button.jump2 +Should the Jump2 button be shown? + + + + +<xsl:param name="htmlhelp.button.jump2" select="0"></xsl:param> + + + +Description + +Set to non-zero to include the Jump2 button on the toolbar. + + + + + + +htmlhelp.button.jump2.url +string + + +htmlhelp.button.jump2.url +URL address of page accessible by Jump2 button + + + + +<xsl:param name="htmlhelp.button.jump2.url"></xsl:param> + + + +Description + +URL address of page accessible by Jump2 button. + + + + + + +htmlhelp.button.jump2.title +string + + +htmlhelp.button.jump2.title +Title of Jump2 button + + + + +<xsl:param name="htmlhelp.button.jump2.title">User2</xsl:param> + + + +Description + +Title of Jump2 button. + + + + + + +htmlhelp.button.next +boolean + + +htmlhelp.button.next +Should the Next button be shown? + + + + +<xsl:param name="htmlhelp.button.next" select="1"></xsl:param> + + + +Description + +Set to non-zero to include the Next button on the toolbar. + + + + + + +htmlhelp.button.prev +boolean + + +htmlhelp.button.prev +Should the Prev button be shown? + + + + +<xsl:param name="htmlhelp.button.prev" select="1"></xsl:param> + + + +Description + +Set to non-zero to include the Prev button on the toolbar. + + + + + + + +htmlhelp.button.zoom +boolean + + +htmlhelp.button.zoom +Should the Zoom button be shown? + + + + +<xsl:param name="htmlhelp.button.zoom" select="0"></xsl:param> + + + +Description + +Set to non-zero to include the Zoom button on the toolbar. + + + + + + + +htmlhelp.remember.window.position +boolean + + +htmlhelp.remember.window.position +Remember help window position? + + + + +<xsl:param name="htmlhelp.remember.window.position" select="0"></xsl:param> + + + +Description + +Set to non-zero to remember help window position between starts. + + + + + + +htmlhelp.window.geometry +string + + +htmlhelp.window.geometry +Set initial geometry of help window + + + + +<xsl:param name="htmlhelp.window.geometry"></xsl:param> + + + +Description + +This parameter specifies initial position of help +window. E.g. + +<xsl:param name="htmlhelp.window.geometry">[160,64,992,704]</xsl:param> + + + + + + +htmlhelp.use.hhk +boolean + + +htmlhelp.use.hhk +Should the index be built using the HHK file? + + + + +<xsl:param name="htmlhelp.use.hhk" select="0"></xsl:param> + + + +Description + +If non-zero, the index is created using the HHK file (instead of using object +elements in the HTML files). For more information, see Generating an index. + + + + + +htmlhelp.only +boolean + + +htmlhelp.only +Should only project files be generated? + + + + +<xsl:param name="htmlhelp.only" select="0"></xsl:param> + + + +Description + + +Set to non-zero if you want to play with various HTML Help parameters +and you don't need to regenerate all HTML files. This setting will not +process whole document, only project files (hhp, hhc, hhk,...) will be +generated. + + + + + + +Eclipse Help Platform + + +eclipse.autolabel +boolean + + +eclipse.autolabel +Should tree-like ToC use autonumbering feature? + + + + +<xsl:param name="eclipse.autolabel" select="0"></xsl:param> + + + +Description + +If you want to include chapter and section numbers into ToC in +the left panel, set this parameter to 1. + + + + + + +eclipse.plugin.name +string + + +eclipse.plugin.name +Eclipse Help plugin name + + + + +<xsl:param name="eclipse.plugin.name">DocBook Online Help Sample</xsl:param> + + + +Description + +Eclipse Help plugin name. + + + + + + +eclipse.plugin.id +string + + +eclipse.plugin.id +Eclipse Help plugin id + + + + +<xsl:param name="eclipse.plugin.id">com.example.help</xsl:param> + + + +Description + +Eclipse Help plugin id. You should change this id to something +unique for each help. + + + + + + +eclipse.plugin.provider +string + + +eclipse.plugin.provider +Eclipse Help plugin provider name + + + + +<xsl:param name="eclipse.plugin.provider">Example provider</xsl:param> + + + +Description + +Eclipse Help plugin provider name. + + + + + +JavaHelp + + +javahelp.encoding +string + + +javahelp.encoding +Character encoding to use in control files for JavaHelp. + + + + +<xsl:param name="javahelp.encoding">iso-8859-1</xsl:param> + + + +Description + +JavaHelp crashes on some characters when written as character +references. In that case you can use this parameter to select an appropriate encoding. + + + + + + + + +Localization + + +l10n.gentext.language +string + + +l10n.gentext.language +Sets the gentext language + + + + +<xsl:param name="l10n.gentext.language"></xsl:param> + + + +Description + +If this parameter is set to any value other than the empty string, its +value will be used as the value for the language when generating text. Setting +l10n.gentext.language overrides any settings within the +document being formatted. + +It's much more likely that you might want to set the +l10n.gentext.default.language parameter. + + + + + + + l10n.gentext.default.language + string + + + l10n.gentext.default.language + Sets the default language for generated text + + + + +<xsl:param name="l10n.gentext.default.language">en</xsl:param> + + + +Description + +The value of the l10n.gentext.default.language +parameter is used as the language for generated text if no setting is provided +in the source document. + + + + + + +l10n.gentext.use.xref.language +boolean + + +l10n.gentext.use.xref.language +Use the language of target when generating cross-reference text? + + + + +<xsl:param name="l10n.gentext.use.xref.language" select="0"></xsl:param> + + + +Description + +If non-zero, the language of the target will be used when +generating cross reference text. Usually, the current +language is used when generating text (that is, the language of the +element that contains the cross-reference element). But setting this parameter +allows the language of the element pointed to to control +the generated text. + +Consider the following example: + + +<para lang="en">See also <xref linkend="chap3"/>.</para> + + + +Suppose that Chapter 3 happens to be written in German. +If l10n.gentext.use.xref.language is non-zero, the +resulting text will be something like this: + +
    +See also Kapital 3. +
    + +Where the more traditional rendering would be: + +
    +See also Chapter 3. +
    + +
    +
    + + + +l10n.lang.value.rfc.compliant +boolean + + +l10n.lang.value.rfc.compliant +Make value of lang attribute RFC compliant? + + + + +<xsl:param name="l10n.lang.value.rfc.compliant" select="1"></xsl:param> + + + +Description + +If non-zero, ensure that the values for all lang attributes in HTML output are RFC +compliantSection 8.1.1, Language Codes, in the HTML 4.0 Recommendation states that: + +
    [RFC1766] defines and explains the language codes +that must be used in HTML documents. +Briefly, language codes consist of a primary code and a possibly +empty series of subcodes: + +language-code = primary-code ( "-" subcode )* + +And in RFC 1766, Tags for the Identification +of Languages, the EBNF for "language tag" is given as: + +Language-Tag = Primary-tag *( "-" Subtag ) +Primary-tag = 1*8ALPHA +Subtag = 1*8ALPHA + +
    +
    . + +by taking any underscore characters in any lang values found in source documents, and +replacing them with hyphen characters in output HTML files. For +example, zh_CN in a source document becomes +zh-CN in the HTML output form that source. + + +This parameter does not cause any case change in lang values, because RFC 1766 +explicitly states that all "language tags" (as it calls them) "are +to be treated as case insensitive". + +
    + +
    +
    + + + +writing.mode +string + + +writing.mode +Direction of text flow based on locale + + + + +<xsl:param name="writing.mode"> + <xsl:call-template name="gentext"> + <xsl:with-param name="key">writing-mode</xsl:with-param> + <xsl:with-param name="lang"> + <xsl:call-template name="l10n.language"> + <xsl:with-param name="target" select="/*[1]"></xsl:with-param> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> +</xsl:param> + + + +Description + +Sets direction of text flow and text alignment based on locale. +The value is normally taken from the gentext file for the +lang attribute of the document's root element, using the +key name 'writing-mode' to look it up in the gentext file. +But the param can also be +set on the command line to override that gentext value. + +Accepted values are: + + + lr-tb + + Left-to-right text flow in each line, lines stack top to bottom. + + + + rl-tb + + Right-to-left text flow in each line, lines stack top to bottom. + + + + tb-rl + + Top-to-bottom text flow in each vertical line, lines stack right to left. + Supported by only a few XSL-FO processors. Not supported in HTML output. + + + + lr + + Shorthand for lr-tb. + + + + rl + + Shorthand for rl-tb. + + + + tb + + Shorthand for tb-rl. + + + + + + + + +
    +The Stylesheet + +The param.xsl stylesheet is just a wrapper +around all these parameters. + + + +<!-- This file is generated from param.xweb --> + +<xsl:stylesheet exclude-result-prefixes="src" version="1.0"> + +<!-- ******************************************************************** + $Id: param.xweb 8552 2009-12-07 17:45:26Z bobstayton $ + ******************************************************************** + + This file is part of the XSL DocBook Stylesheet distribution. + See ../README or http://docbook.sf.net/release/xsl/current/ for + copyright and other information. + + ******************************************************************** --> + +<src:fragref linkend="abstract.notitle.enabled.frag"></src:fragref> +<src:fragref linkend="admon.graphics.extension.frag"></src:fragref> +<src:fragref linkend="admon.graphics.frag"></src:fragref> +<src:fragref linkend="admon.graphics.path.frag"></src:fragref> +<src:fragref linkend="admon.style.frag"></src:fragref> +<src:fragref linkend="admon.textlabel.frag"></src:fragref> +<src:fragref linkend="annotate.toc.frag"></src:fragref> +<src:fragref linkend="annotation.css.frag"></src:fragref> +<src:fragref linkend="annotation.graphic.close.frag"></src:fragref> +<src:fragref linkend="annotation.graphic.open.frag"></src:fragref> +<src:fragref linkend="annotation.js.frag"></src:fragref> +<src:fragref linkend="annotation.support.frag"></src:fragref> +<src:fragref linkend="appendix.autolabel.frag"></src:fragref> +<src:fragref linkend="author.othername.in.middle.frag"></src:fragref> +<src:fragref linkend="autotoc.label.in.hyperlink.frag"></src:fragref> +<src:fragref linkend="autotoc.label.separator.frag"></src:fragref> +<src:fragref linkend="base.dir.frag"></src:fragref> +<src:fragref linkend="biblioentry.item.separator.frag"></src:fragref> +<src:fragref linkend="bibliography.collection.frag"></src:fragref> +<src:fragref linkend="bibliography.numbered.frag"></src:fragref> +<src:fragref linkend="bibliography.style.frag"></src:fragref> +<src:fragref linkend="blurb.on.titlepage.enabled.frag"></src:fragref> +<src:fragref linkend="bridgehead.in.toc.frag"></src:fragref> +<src:fragref linkend="callout.defaultcolumn.frag"></src:fragref> +<src:fragref linkend="callout.graphics.extension.frag"></src:fragref> +<src:fragref linkend="callout.graphics.frag"></src:fragref> +<src:fragref linkend="callout.graphics.number.limit.frag"></src:fragref> +<src:fragref linkend="callout.graphics.path.frag"></src:fragref> +<src:fragref linkend="callout.list.table.frag"></src:fragref> +<src:fragref linkend="callout.unicode.frag"></src:fragref> +<src:fragref linkend="callout.unicode.number.limit.frag"></src:fragref> +<src:fragref linkend="callout.unicode.start.character.frag"></src:fragref> +<src:fragref linkend="callouts.extension.frag"></src:fragref> +<src:fragref linkend="chapter.autolabel.frag"></src:fragref> +<src:fragref linkend="chunk.append.frag"></src:fragref> +<src:fragref linkend="chunk.first.sections.frag"></src:fragref> +<src:fragref linkend="chunk.quietly.frag"></src:fragref> +<src:fragref linkend="chunk.section.depth.frag"></src:fragref> +<src:fragref linkend="chunk.separate.lots.frag"></src:fragref> +<src:fragref linkend="chunk.toc.frag"></src:fragref> +<src:fragref linkend="chunk.tocs.and.lots.frag"></src:fragref> +<src:fragref linkend="chunk.tocs.and.lots.has.title.frag"></src:fragref> +<src:fragref linkend="citerefentry.link.frag"></src:fragref> +<src:fragref linkend="collect.xref.targets.frag"></src:fragref> +<src:fragref linkend="component.label.includes.part.label.frag"></src:fragref> +<src:fragref linkend="contrib.inline.enabled.frag"></src:fragref> +<src:fragref linkend="css.decoration.frag"></src:fragref> +<src:fragref linkend="current.docid.frag"></src:fragref> +<src:fragref linkend="custom.css.source.frag"></src:fragref> +<src:fragref linkend="default.float.class.frag"></src:fragref> +<src:fragref linkend="default.image.width.frag"></src:fragref> +<src:fragref linkend="default.table.frame.frag"></src:fragref> +<src:fragref linkend="default.table.width.frag"></src:fragref> +<src:fragref linkend="docbook.css.link.frag"></src:fragref> +<src:fragref linkend="docbook.css.source.frag"></src:fragref> +<src:fragref linkend="draft.mode.frag"></src:fragref> +<src:fragref linkend="draft.watermark.image.frag"></src:fragref> +<src:fragref linkend="ebnf.assignment.frag"></src:fragref> +<src:fragref linkend="ebnf.statement.terminator.frag"></src:fragref> +<src:fragref linkend="ebnf.table.bgcolor.frag"></src:fragref> +<src:fragref linkend="ebnf.table.border.frag"></src:fragref> +<src:fragref linkend="eclipse.autolabel.frag"></src:fragref> +<src:fragref linkend="eclipse.plugin.id.frag"></src:fragref> +<src:fragref linkend="eclipse.plugin.name.frag"></src:fragref> +<src:fragref linkend="eclipse.plugin.provider.frag"></src:fragref> +<src:fragref linkend="editedby.enabled.frag"></src:fragref> +<src:fragref linkend="email.delimiters.enabled.frag"></src:fragref> +<src:fragref linkend="emphasis.propagates.style.frag"></src:fragref> +<src:fragref linkend="entry.propagates.style.frag"></src:fragref> +<src:fragref linkend="exsl.node.set.available.frag"></src:fragref> +<src:fragref linkend="firstterm.only.link.frag"></src:fragref> +<src:fragref linkend="footer.rule.frag"></src:fragref> +<src:fragref linkend="footnote.number.format.frag"></src:fragref> +<src:fragref linkend="footnote.number.symbols.frag"></src:fragref> +<src:fragref linkend="formal.procedures.frag"></src:fragref> +<src:fragref linkend="formal.title.placement.frag"></src:fragref> +<src:fragref linkend="funcsynopsis.decoration.frag"></src:fragref> +<src:fragref linkend="funcsynopsis.style.frag"></src:fragref> +<src:fragref linkend="function.parens.frag"></src:fragref> +<src:fragref linkend="generate.css.header.frag"></src:fragref> +<src:fragref linkend="generate.id.attributes.frag"></src:fragref> +<src:fragref linkend="generate.index.frag"></src:fragref> +<src:fragref linkend="generate.legalnotice.link.frag"></src:fragref> +<src:fragref linkend="generate.manifest.frag"></src:fragref> +<src:fragref linkend="generate.meta.abstract.frag"></src:fragref> +<src:fragref linkend="generate.revhistory.link.frag"></src:fragref> +<src:fragref linkend="generate.section.toc.level.frag"></src:fragref> +<src:fragref linkend="generate.toc.frag"></src:fragref> +<src:fragref linkend="glossary.collection.frag"></src:fragref> +<src:fragref linkend="glossary.sort.frag"></src:fragref> +<src:fragref linkend="glossentry.show.acronym.frag"></src:fragref> +<src:fragref linkend="glossterm.auto.link.frag"></src:fragref> +<src:fragref linkend="graphic.default.extension.frag"></src:fragref> +<src:fragref linkend="graphicsize.extension.frag"></src:fragref> +<src:fragref linkend="graphicsize.use.img.src.path.frag"></src:fragref> +<src:fragref linkend="header.rule.frag"></src:fragref> +<src:fragref linkend="highlight.default.language.frag"></src:fragref> +<src:fragref linkend="highlight.source.frag"></src:fragref> +<src:fragref linkend="highlight.xslthl.config.frag"></src:fragref> +<src:fragref linkend="html.append.frag"></src:fragref> +<src:fragref linkend="html.base.frag"></src:fragref> +<src:fragref linkend="html.cellpadding.frag"></src:fragref> +<src:fragref linkend="html.cellspacing.frag"></src:fragref> +<src:fragref linkend="html.cleanup.frag"></src:fragref> +<src:fragref linkend="html.ext.frag"></src:fragref> +<src:fragref linkend="html.extra.head.links.frag"></src:fragref> +<src:fragref linkend="html.head.legalnotice.link.multiple.frag"></src:fragref> +<src:fragref linkend="html.head.legalnotice.link.types.frag"></src:fragref> +<src:fragref linkend="html.longdesc.frag"></src:fragref> +<src:fragref linkend="html.longdesc.link.frag"></src:fragref> +<src:fragref linkend="html.stylesheet.frag"></src:fragref> +<src:fragref linkend="html.stylesheet.type.frag"></src:fragref> +<src:fragref linkend="htmlhelp.alias.file.frag"></src:fragref> +<src:fragref linkend="htmlhelp.autolabel.frag"></src:fragref> +<src:fragref linkend="htmlhelp.button.back.frag"></src:fragref> +<src:fragref linkend="htmlhelp.button.forward.frag"></src:fragref> +<src:fragref linkend="htmlhelp.button.hideshow.frag"></src:fragref> +<src:fragref linkend="htmlhelp.button.home.frag"></src:fragref> +<src:fragref linkend="htmlhelp.button.home.url.frag"></src:fragref> +<src:fragref linkend="htmlhelp.button.jump1.frag"></src:fragref> +<src:fragref linkend="htmlhelp.button.jump1.title.frag"></src:fragref> +<src:fragref linkend="htmlhelp.button.jump1.url.frag"></src:fragref> +<src:fragref linkend="htmlhelp.button.jump2.frag"></src:fragref> +<src:fragref linkend="htmlhelp.button.jump2.title.frag"></src:fragref> +<src:fragref linkend="htmlhelp.button.jump2.url.frag"></src:fragref> +<src:fragref linkend="htmlhelp.button.locate.frag"></src:fragref> +<src:fragref linkend="htmlhelp.button.next.frag"></src:fragref> +<src:fragref linkend="htmlhelp.button.options.frag"></src:fragref> +<src:fragref linkend="htmlhelp.button.prev.frag"></src:fragref> +<src:fragref linkend="htmlhelp.button.print.frag"></src:fragref> +<src:fragref linkend="htmlhelp.button.refresh.frag"></src:fragref> +<src:fragref linkend="htmlhelp.button.stop.frag"></src:fragref> +<src:fragref linkend="htmlhelp.button.zoom.frag"></src:fragref> +<src:fragref linkend="htmlhelp.chm.frag"></src:fragref> +<src:fragref linkend="htmlhelp.default.topic.frag"></src:fragref> +<src:fragref linkend="htmlhelp.display.progress.frag"></src:fragref> +<src:fragref linkend="htmlhelp.encoding.frag"></src:fragref> +<src:fragref linkend="htmlhelp.enhanced.decompilation.frag"></src:fragref> +<src:fragref linkend="htmlhelp.enumerate.images.frag"></src:fragref> +<src:fragref linkend="htmlhelp.force.map.and.alias.frag"></src:fragref> +<src:fragref linkend="htmlhelp.hhc.binary.frag"></src:fragref> +<src:fragref linkend="htmlhelp.hhc.folders.instead.books.frag"></src:fragref> +<src:fragref linkend="htmlhelp.hhc.frag"></src:fragref> +<src:fragref linkend="htmlhelp.hhc.section.depth.frag"></src:fragref> +<src:fragref linkend="htmlhelp.hhc.show.root.frag"></src:fragref> +<src:fragref linkend="htmlhelp.hhc.width.frag"></src:fragref> +<src:fragref linkend="htmlhelp.hhk.frag"></src:fragref> +<src:fragref linkend="htmlhelp.hhp.frag"></src:fragref> +<src:fragref linkend="htmlhelp.hhp.tail.frag"></src:fragref> +<src:fragref linkend="htmlhelp.hhp.window.frag"></src:fragref> +<src:fragref linkend="htmlhelp.hhp.windows.frag"></src:fragref> +<src:fragref linkend="htmlhelp.map.file.frag"></src:fragref> +<src:fragref linkend="htmlhelp.only.frag"></src:fragref> +<src:fragref linkend="htmlhelp.remember.window.position.frag"></src:fragref> +<src:fragref linkend="htmlhelp.show.advanced.search.frag"></src:fragref> +<src:fragref linkend="htmlhelp.show.favorities.frag"></src:fragref> +<src:fragref linkend="htmlhelp.show.menu.frag"></src:fragref> +<src:fragref linkend="htmlhelp.show.toolbar.text.frag"></src:fragref> +<src:fragref linkend="htmlhelp.title.frag"></src:fragref> +<src:fragref linkend="htmlhelp.use.hhk.frag"></src:fragref> +<src:fragref linkend="htmlhelp.window.geometry.frag"></src:fragref> +<src:fragref linkend="id.warnings.frag"></src:fragref> +<src:fragref linkend="ignore.image.scaling.frag"></src:fragref> +<src:fragref linkend="img.src.path.frag"></src:fragref> +<src:fragref linkend="index.links.to.section.frag"></src:fragref> +<src:fragref linkend="index.method.frag"></src:fragref> +<src:fragref linkend="index.number.separator.frag"></src:fragref> +<src:fragref linkend="index.on.role.frag"></src:fragref> +<src:fragref linkend="index.on.type.frag"></src:fragref> +<src:fragref linkend="index.prefer.titleabbrev.frag"></src:fragref> +<src:fragref linkend="index.range.separator.frag"></src:fragref> +<src:fragref linkend="index.term.separator.frag"></src:fragref> +<src:fragref linkend="inherit.keywords.frag"></src:fragref> +<src:fragref linkend="insert.olink.page.number.frag"></src:fragref> +<src:fragref linkend="insert.olink.pdf.frag.frag"></src:fragref> +<src:fragref linkend="insert.xref.page.number.frag"></src:fragref> +<src:fragref linkend="javahelp.encoding.frag"></src:fragref> +<src:fragref linkend="keep.relative.image.uris.frag"></src:fragref> +<src:fragref linkend="l10n.gentext.default.language.frag"></src:fragref> +<src:fragref linkend="l10n.gentext.language.frag"></src:fragref> +<src:fragref linkend="l10n.gentext.use.xref.language.frag"></src:fragref> +<src:fragref linkend="l10n.lang.value.rfc.compliant.frag"></src:fragref> +<src:fragref linkend="label.from.part.frag"></src:fragref> +<src:fragref linkend="linenumbering.everyNth.frag"></src:fragref> +<src:fragref linkend="linenumbering.extension.frag"></src:fragref> +<src:fragref linkend="linenumbering.separator.frag"></src:fragref> +<src:fragref linkend="linenumbering.width.frag"></src:fragref> +<src:fragref linkend="link.mailto.url.frag"></src:fragref> +<src:fragref linkend="make.clean.html.frag"></src:fragref> +<src:fragref linkend="make.graphic.viewport.frag"></src:fragref> +<src:fragref linkend="make.single.year.ranges.frag"></src:fragref> +<src:fragref linkend="make.valid.html.frag"></src:fragref> +<src:fragref linkend="make.year.ranges.frag"></src:fragref> +<src:fragref linkend="manifest.frag"></src:fragref> +<src:fragref linkend="manifest.in.base.dir.frag"></src:fragref> +<src:fragref linkend="manual.toc.frag"></src:fragref> +<src:fragref linkend="menuchoice.menu.separator.frag"></src:fragref> +<src:fragref linkend="menuchoice.separator.frag"></src:fragref> +<src:fragref linkend="navig.graphics.extension.frag"></src:fragref> +<src:fragref linkend="navig.graphics.frag"></src:fragref> +<src:fragref linkend="navig.graphics.path.frag"></src:fragref> +<src:fragref linkend="navig.showtitles.frag"></src:fragref> +<src:fragref linkend="nominal.image.depth.frag"></src:fragref> +<src:fragref linkend="nominal.image.width.frag"></src:fragref> +<src:fragref linkend="nominal.table.width.frag"></src:fragref> +<src:fragref linkend="olink.base.uri.frag"></src:fragref> +<src:fragref linkend="olink.debug.frag"></src:fragref> +<src:fragref linkend="olink.doctitle.frag"></src:fragref> +<src:fragref linkend="olink.fragid.frag"></src:fragref> +<src:fragref linkend="olink.lang.fallback.sequence.frag"></src:fragref> +<src:fragref linkend="olink.outline.ext.frag"></src:fragref> +<src:fragref linkend="olink.properties.frag"></src:fragref> +<src:fragref linkend="olink.pubid.frag"></src:fragref> +<src:fragref linkend="olink.resolver.frag"></src:fragref> +<src:fragref linkend="olink.sysid.frag"></src:fragref> +<src:fragref linkend="othercredit.like.author.enabled.frag"></src:fragref> +<src:fragref linkend="para.propagates.style.frag"></src:fragref> +<src:fragref linkend="part.autolabel.frag"></src:fragref> +<src:fragref linkend="phrase.propagates.style.frag"></src:fragref> +<src:fragref linkend="pixels.per.inch.frag"></src:fragref> +<src:fragref linkend="points.per.em.frag"></src:fragref> +<src:fragref linkend="preface.autolabel.frag"></src:fragref> +<src:fragref linkend="prefer.internal.olink.frag"></src:fragref> +<src:fragref linkend="preferred.mediaobject.role.frag"></src:fragref> +<src:fragref linkend="process.empty.source.toc.frag"></src:fragref> +<src:fragref linkend="process.source.toc.frag"></src:fragref> +<src:fragref linkend="profile.arch.frag"></src:fragref> +<src:fragref linkend="profile.attribute.frag"></src:fragref> +<src:fragref linkend="profile.audience.frag"></src:fragref> +<src:fragref linkend="profile.condition.frag"></src:fragref> +<src:fragref linkend="profile.conformance.frag"></src:fragref> +<src:fragref linkend="profile.lang.frag"></src:fragref> +<src:fragref linkend="profile.os.frag"></src:fragref> +<src:fragref linkend="profile.revision.frag"></src:fragref> +<src:fragref linkend="profile.revisionflag.frag"></src:fragref> +<src:fragref linkend="profile.role.frag"></src:fragref> +<src:fragref linkend="profile.security.frag"></src:fragref> +<src:fragref linkend="profile.separator.frag"></src:fragref> +<src:fragref linkend="profile.status.frag"></src:fragref> +<src:fragref linkend="profile.userlevel.frag"></src:fragref> +<src:fragref linkend="profile.value.frag"></src:fragref> +<src:fragref linkend="profile.vendor.frag"></src:fragref> +<src:fragref linkend="profile.wordsize.frag"></src:fragref> +<src:fragref linkend="punct.honorific.frag"></src:fragref> +<src:fragref linkend="qanda.defaultlabel.frag"></src:fragref> +<src:fragref linkend="qanda.in.toc.frag"></src:fragref> +<src:fragref linkend="qanda.inherit.numeration.frag"></src:fragref> +<src:fragref linkend="qanda.nested.in.toc.frag"></src:fragref> +<src:fragref linkend="qandadiv.autolabel.frag"></src:fragref> +<src:fragref linkend="refclass.suppress.frag"></src:fragref> +<src:fragref linkend="refentry.generate.name.frag"></src:fragref> +<src:fragref linkend="refentry.generate.title.frag"></src:fragref> +<src:fragref linkend="refentry.separator.frag"></src:fragref> +<src:fragref linkend="refentry.xref.manvolnum.frag"></src:fragref> +<src:fragref linkend="reference.autolabel.frag"></src:fragref> +<src:fragref linkend="root.filename.frag"></src:fragref> +<src:fragref linkend="rootid.frag"></src:fragref> +<src:fragref linkend="runinhead.default.title.end.punct.frag"></src:fragref> +<src:fragref linkend="runinhead.title.end.punct.frag"></src:fragref> +<src:fragref linkend="section.autolabel.frag"></src:fragref> +<src:fragref linkend="section.autolabel.max.depth.frag"></src:fragref> +<src:fragref linkend="section.label.includes.component.label.frag"></src:fragref> +<src:fragref linkend="segmentedlist.as.table.frag"></src:fragref> +<src:fragref linkend="shade.verbatim.frag"></src:fragref> +<src:fragref linkend="shade.verbatim.style.frag"></src:fragref> +<src:fragref linkend="show.comments.frag"></src:fragref> +<src:fragref linkend="show.revisionflag.frag"></src:fragref> +<src:fragref linkend="simplesect.in.toc.frag"></src:fragref> +<src:fragref linkend="spacing.paras.frag"></src:fragref> +<src:fragref linkend="suppress.footer.navigation.frag"></src:fragref> +<src:fragref linkend="suppress.header.navigation.frag"></src:fragref> +<src:fragref linkend="suppress.navigation.frag"></src:fragref> +<src:fragref linkend="table.borders.with.css.frag"></src:fragref> +<src:fragref linkend="table.cell.border.color.frag"></src:fragref> +<src:fragref linkend="table.cell.border.style.frag"></src:fragref> +<src:fragref linkend="table.cell.border.thickness.frag"></src:fragref> +<src:fragref linkend="table.footnote.number.format.frag"></src:fragref> +<src:fragref linkend="table.footnote.number.symbols.frag"></src:fragref> +<src:fragref linkend="table.frame.border.color.frag"></src:fragref> +<src:fragref linkend="table.frame.border.style.frag"></src:fragref> +<src:fragref linkend="table.frame.border.thickness.frag"></src:fragref> +<src:fragref linkend="tablecolumns.extension.frag"></src:fragref> +<src:fragref linkend="target.database.document.frag"></src:fragref> +<src:fragref linkend="targets.filename.frag"></src:fragref> +<src:fragref linkend="tex.math.delims.frag"></src:fragref> +<src:fragref linkend="tex.math.file.frag"></src:fragref> +<src:fragref linkend="tex.math.in.alt.frag"></src:fragref> +<src:fragref linkend="textdata.default.encoding.frag"></src:fragref> +<src:fragref linkend="textinsert.extension.frag"></src:fragref> +<src:fragref linkend="toc.list.type.frag"></src:fragref> +<src:fragref linkend="toc.max.depth.frag"></src:fragref> +<src:fragref linkend="toc.section.depth.frag"></src:fragref> +<src:fragref linkend="ulink.target.frag"></src:fragref> +<src:fragref linkend="use.embed.for.svg.frag"></src:fragref> +<src:fragref linkend="use.extensions.frag"></src:fragref> +<src:fragref linkend="use.id.as.filename.frag"></src:fragref> +<src:fragref linkend="use.local.olink.style.frag"></src:fragref> +<src:fragref linkend="use.role.as.xrefstyle.frag"></src:fragref> +<src:fragref linkend="use.role.for.mediaobject.frag"></src:fragref> +<src:fragref linkend="use.svg.frag"></src:fragref> +<src:fragref linkend="variablelist.as.table.frag"></src:fragref> +<src:fragref linkend="variablelist.term.break.after.frag"></src:fragref> +<src:fragref linkend="variablelist.term.separator.frag"></src:fragref> +<src:fragref linkend="writing.mode.frag"></src:fragref> +<src:fragref linkend="xref.label-page.separator.frag"></src:fragref> +<src:fragref linkend="xref.label-title.separator.frag"></src:fragref> +<src:fragref linkend="xref.title-page.separator.frag"></src:fragref> +<src:fragref linkend="xref.with.number.and.title.frag"></src:fragref> + +</xsl:stylesheet> + + + +
    diff --git a/docbook-xsl-1.76.1/html/param.xsl b/docbook-xsl-1.76.1/html/param.xsl new file mode 100644 index 0000000..d5e6086 --- /dev/null +++ b/docbook-xsl-1.76.1/html/param.xsl @@ -0,0 +1,434 @@ + + + + + + + +.png + +images/ + + + + + + +/* ====================================================================== + Annotations +*/ + +div.annotation-list { visibility: hidden; + } + +div.annotation-nocss { position: absolute; + visibility: hidden; + } + +div.annotation-popup { position: absolute; + z-index: 4; + visibility: hidden; + padding: 0px; + margin: 2px; + border-style: solid; + border-width: 1px; + width: 200px; + background-color: white; + } + +div.annotation-title { padding: 1px; + font-weight: bold; + border-bottom-style: solid; + border-bottom-width: 1px; + color: white; + background-color: black; + } + +div.annotation-body { padding: 2px; + } + +div.annotation-body p { margin-top: 0px; + padding-top: 0px; + } + +div.annotation-close { position: absolute; + top: 2px; + right: 2px; + } + + +http://docbook.sourceforge.net/release/images/annot-close.png +http://docbook.sourceforge.net/release/images/annot-open.png + + +http://docbook.sourceforge.net/release/script/AnchorPosition.js http://docbook.sourceforge.net/release/script/PopupWindow.js + + +A + + +. + +. +http://docbook.sourceforge.net/release/bibliography/bibliography.xml + + +normal + + +60 +.png + + +15 + +images/callouts/ + + +10 +10102 + + + + + + + + + + + +no + +1 + + + + + + left + before + + + +all + + +docbook.css.xml +no +images/draft.png + +::= + + + + +#F5DCB3 + + +com.example.help +DocBook Online Help Sample +Example provider +1 + + + + + + 1 + 0 + + + + +1 + + + +figure before +example before +equation before +table before +procedure before +task before + + +kr + + + + + + + + + + +appendix toc,title +article/appendix nop +article toc,title +book toc,title,figure,table,example,equation +chapter toc,title +part toc,title +preface toc,title +qandadiv toc +qandaset toc +reference toc,title +sect1 toc +sect2 toc +sect3 toc +sect4 toc +sect5 toc +section toc +set toc,title + + + + +no + + + + + + + + + + + + + +.html + + +copyright + + + +text/css +alias.h + + + + + + + +User1 + + +User2 + + + + + + + + + +htmlhelp.chm + + +iso-8859-1 + + + + + +toc.hhc +5 + + +index.hhk +htmlhelp.hhp + +Main + +context.h + + + + + + + + + + + + + +basic + + + + + + + +no + +no +iso-8859-1 + + +en + + + + +5 + + +3 + + + + + + + HTML.manifest + + + + ++ +.gif + +images/ +1 + + +6in + + +no +fragid= + +.olink + + replace + +pubid + /cgi-bin/olink +sysid +0 + +I + +90 +10 + + + + + + + + + + + + + + + + +; + + + + + +. +number + + + + + + + + + + I +index + +. +.!?: + +8 + + + + + 0 + #E0E0E0 + + + + + + +0 + + + + + +solid +0.5pt +a + + + +solid +0.5pt + + olinkdb.xml +target.db + +tex-math-equations.tex + + + +dl +8 +2 +_top + + + + + + + + +0 +, + + + writing-mode + + + + + + + + +: + + + + diff --git a/docbook-xsl-1.76.1/html/pi.xml b/docbook-xsl-1.76.1/html/pi.xml new file mode 100644 index 0000000..a8f357e --- /dev/null +++ b/docbook-xsl-1.76.1/html/pi.xml @@ -0,0 +1,1113 @@ + + +HTML Processing Instruction Reference + + $Id: pi.xsl 8394 2009-04-02 20:31:30Z mzjn $ + + + + Introduction + +This is generated reference documentation for all + user-specifiable processing instructions (PIs) in the DocBook + XSL stylesheets for HTML output. + + +You add these PIs at particular points in a document to + cause specific “exceptions†to formatting/output behavior. To + make global changes in formatting/output behavior across an + entire document, it’s better to do it by setting an + appropriate stylesheet parameter (if there is one). + + + + + + + + +dbhtml_background-color +Sets background color for an image + + + + dbhtml background-color="color" + + +Description + +Use the dbhtml background-color PI before or + after an image (graphic, inlinegraphic, + imagedata, or videodata element) as a + sibling to the element, to set a background color for the + image. + + Parameters + + + background-color="color" + + +An HTML color value + + + + + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Background color + + + + + +dbhtml_bgcolor +Sets background color on a CALS table row or table cell + + + + dbhtml bgcolor="color" + + +Description + +Use the dbhtml bgcolor PI as child of a CALS table row + or cell to set a background color for that table row or cell. + + Parameters + + + bgcolor="color" + + +An HTML color value + + + + + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Cell background color + + + + + +dbhtml_cellpadding +Specifies cellpadding in CALS table or qandaset output + + + + dbhtml cellpadding="number" + + +Description + +Use the dbhtml cellpadding PI as a child of a + CALS table or qandaset to specify the value + for the HTML cellpadding attribute in the + output HTML table. + + Parameters + + + cellpadding="number" + + +Specifies the cellpadding + + + + + + Related Global Parameters + +html.cellpadding + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Cell spacing and cell padding, + Q and A formatting + + + + + +dbhtml_cellspacing +Specifies cellspacing in CALS table or qandaset output + + + + dbhtml cellspacing="number" + + +Description + +Use the dbhtml cellspacing PI as a child of a + CALS table or qandaset to specify the value + for the HTML cellspacing attribute in the + output HTML table. + + Parameters + + + cellspacing="number" + + +Specifies the cellspacing + + + + + + Related Global Parameters + +html.cellspacing + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Cell spacing and cell padding, + Q and A formatting + + + + + +dbhtml_class +Set value of the class attribute for a CALS table row + + + + dbhtml class="name" + + +Description + +Use the dbhtml class PI as a child of a + row to specify a class + attribute and value in the HTML output for that row. + + Parameters + + + class="name" + + +Specifies the class name + + + + + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Table styles in HTML output + + + + + +dbhtml_dir +Specifies a directory name in which to write files + + + + dbhtml dir="path" + + +Description + +When chunking output, use the dbhtml dir PI + as a child of a chunk source to cause the output of that + chunk to be written to the specified directory; also, use it + as a child of a mediaobject to specify a + directory into which any long-description files for that + mediaobject will be written. + + Parameters + + + dir="path" + + +Specifies the pathname for the directory + + + + + + Related Global Parameters + +base.dir + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +dbhtml dir processing instruction + + + + + +dbhtml_filename +Specifies a filename for a chunk + + + + dbhtml filename="filename" + + +Description + +When chunking output, use the dbhtml filename + PI as a child of a chunk source to specify a filename for + the output file for that chunk. + + Parameters + + + filename="path" + + +Specifies the filename for the file + + + + + + Related Global Parameters + +use.id.as.filename + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +dbhtml filenames + + + + + +dbhtml_funcsynopsis-style +Specifies presentation style for a funcsynopsis + + + + dbhtml funcsynopsis-style="kr"|"ansi" + + +Description + +Use the dbhtml funcsynopsis-style PI as a child of + a funcsynopsis or anywhere within a funcsynopsis + to control the presentation style for output of all + funcprototype instances within that funcsynopsis. + + Parameters + + + funcsynopsis-style="kr" + + +Displays funcprototype output in K&R style + + + + funcsynopsis-style="ansi" + + +Displays funcprototype output in ANSI style + + + + + + Related Global Parameters + +funcsynopsis.style + + + + + +dbhtml_img.src.path +Specifies a path to the location of an image file + + + + dbhtml img.src.path="path" + + +Description + +Use the dbhtml img.src.path PI before or + after an image (graphic, + inlinegraphic, imagedata, or + videodata element) as a sibling to the element, + to specify a path to the location of the image; in HTML + output, the value specified for the + img.src.path attribute is prepended to the + filename. + + Parameters + + + img.src.path="path" + + +Specifies the pathname to prepend to the name of the image file + + + + + + Related Global Parameters + +img.src.path + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Using fileref + + + + + +dbhtml_label-width +Specifies the label width for a qandaset + + + + dbhtml label-width="width" + + +Description + +Use the dbhtml label-width PI as a child of a + qandaset to specify the width of labels. + + Parameters + + + label-width="width" + + +Specifies the label width (including units) + + + + + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Q and A formatting + + + + + +dbhtml_linenumbering.everyNth +Specifies interval for line numbers in verbatims + + + + dbhtml linenumbering.everyNth="N" + + +Description + +Use the dbhtml linenumbering.everyNth PI as a child + of a “verbatim†element – programlisting, + screen, synopsis — to specify + the interval at which lines are numbered. + + Parameters + + + linenumbering.everyNth="N" + + +Specifies numbering interval; a number is output + before every Nth line + + + + + + Related Global Parameters + +linenumbering.everyNth + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Line numbering + + + + + +dbhtml_linenumbering.separator +Specifies separator text for line numbers in verbatims + + + + dbhtml linenumbering.separator="text" + + +Description + +Use the dbhtml linenumbering.separator PI as a child + of a “verbatim†element – programlisting, + screen, synopsis — to specify + the separator text output between the line numbers and content. + + Parameters + + + linenumbering.separator="text" + + +Specifies the text (zero or more characters) + + + + + + Related Global Parameters + +linenumbering.separator + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Line numbering + + + + + +dbhtml_linenumbering.width +Specifies width for line numbers in verbatims + + + + dbhtml linenumbering.width="width" + + +Description + +Use the dbhtml linenumbering.width PI as a child + of a “verbatim†element – programlisting, + screen, synopsis — to specify + the width set aside for line numbers. + + Parameters + + + linenumbering.width="width" + + +Specifies the width (inluding units) + + + + + + Related Global Parameters + +linenumbering.width + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Line numbering + + + + + +dbhtml_list-presentation +Specifies presentation style for a variablelist or + segmentedlist + + + + dbhtml list-presentation="list"|"table" + + +Description + +Use the dbhtml list-presentation PI as a child of + a variablelist or segmentedlist to + control the presentation style for the list (to cause it, for + example, to be displayed as a table). + + Parameters + + + list-presentation="list" + + +Displays the list as a list + + + + list-presentation="table" + + +Displays the list as a table + + + + + + Related Global Parameters + + + + +variablelist.as.table + + + + +segmentedlist.as.table + + + + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Variable list formatting in HTML + + + + + +dbhtml_list-width +Specifies the width of a variablelist or simplelist + + + + dbhtml list-width="width" + + +Description + +Use the dbhtml list-width PI as a child of a + variablelist or a simplelist presented + as a table, to specify the output width. + + Parameters + + + list-width="width" + + +Specifies the output width (including units) + + + + + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Variable list formatting in HTML + + + + + +dbhtml_row-height +Specifies the height for a CALS table row + + + + dbhtml row-height="height" + + +Description + +Use the dbhtml row-height PI as a child of a + row to specify the height of the row. + + Parameters + + + row-height="height" + + +Specifies the row height (including units) + + + + + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Row height + + + + + +dbhtml_start +(obsolete) Sets the starting number on an ordered list + + + + dbhtml start="character" + + +Description + +This PI is obsolete. The intent of + this PI was to provide a means for setting a specific starting + number for an ordered list. Instead of this PI, set a value + for the override attribute on the first + listitem in the list; that will have the same + effect as what this PI was intended for. + + Parameters + + + start="character" + + +Specifies the character to use as the starting + number; use 0-9, a-z, A-Z, or lowercase or uppercase + Roman numerals + + + + + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +List starting number + + + + + +dbhtml_stop-chunking +Do not chunk any descendants of this element. + + + + dbhtml stop-chunking + + +Description + +When generating chunked HTML output, adding this PI as the child of an element that contains elements that would normally be generated on separate pages if generating chunked output causes chunking to stop at this point. No descendants of the current element will be split into new HTML pages: +<section> +<title>Configuring pencil</title> +<?dbhtml stop-chunking?> + +... + +</section> + + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Chunking into multiple HTML files + + + + + +dbhtml_table-summary +Specifies summary for CALS table, variablelist, segmentedlist, or qandaset output + + + + dbhtml table-summary="text" + + +Description + +Use the dbhtml table-summary PI as a child of + a CALS table, variablelist, + segmentedlist, or qandaset to specify + the text for the HTML summary attribute + in the output HTML table. + + Parameters + + + table-summary="text" + + +Specifies the summary text (zero or more characters) + + + + + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Variable list formatting in HTML, + Table summary text + + + + + +dbhtml_table-width +Specifies the width for a CALS table + + + + dbhtml table-width="width" + + +Description + +Use the dbhtml table-width PI as a child of a + CALS table to specify the width of the table in + output. + + Parameters + + + table-width="width" + + +Specifies the table width (including units or as a percentage) + + + + + + Related Global Parameters + +default.table.width + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Table width + + + + + +dbhtml_term-presentation +Sets character formatting for terms in a variablelist + + + + dbhtml term-presentation="bold"|"italic"|"bold-italic" + + +Description + +Use the dbhtml term-presentation PI as a child + of a variablelist to set character formatting for + the term output of the list. + + Parameters + + + term-presentation="bold" + + +Specifies that terms are displayed in bold + + + + term-presentation="italic" + + +Specifies that terms are displayed in italic + + + + term-presentation="bold-italic" + + +Specifies that terms are displayed in bold-italic + + + + + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Variable list formatting in HTML + + + + + +dbhtml_term-separator +Specifies separator text among terms in a varlistentry + + + + dbhtml term-separator="text" + + +Description + +Use the dbhtml term-separator PI as a child + of a variablelist to specify the separator text + among term instances. + + Parameters + + + term-separator="text" + + +Specifies the text (zero or more characters) + + + + + + Related Global Parameters + +variablelist.term.separator + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Variable list formatting in HTML + + + + + +dbhtml_term-width +Specifies the term width for a variablelist + + + + dbhtml term-width="width" + + +Description + +Use the dbhtml term-width PI as a child of a + variablelist to specify the width for + term output. + + Parameters + + + term-width="width" + + +Specifies the term width (including units) + + + + + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Variable list formatting in HTML + + + + + +dbhtml_toc +Specifies whether a TOC should be generated for a qandaset + + + + dbhtml toc="0"|"1" + + +Description + +Use the dbhtml toc PI as a child of a + qandaset to specify whether a table of contents + (TOC) is generated for the qandaset. + + Parameters + + + toc="0" + + +If zero, no TOC is generated + + + + toc="1" + + +If 1 (or any non-zero value), + a TOC is generated + + + + + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Q and A list of questions, + Q and A formatting + + + + + +dbcmdlist +Generates a hyperlinked list of commands + + + + dbcmdlist + + +Description + +Use the dbcmdlist PI as the child of any + element (for example, refsynopsisdiv) containing multiple + cmdsynopsis instances; a hyperlinked navigational + “command list†will be generated at the top of output for that + element, enabling users to quickly jump + to each command synopsis. + + Parameters + +[No parameters] + + + + + +dbfunclist +Generates a hyperlinked list of functions + + + + dbfunclist + + +Description + +Use the dbfunclist PI as the child of any + element (for example, refsynopsisdiv) containing multiple + funcsynopsis instances; a hyperlinked + navigational “function list†will be generated at the top of + output for that element, enabling users to quickly + jump to to each function synopsis. + + Parameters + +[No parameters] + + + + + +dbhtml-include_href +Copies an external well-formed HTML/XML file into current doc + + + + dbhtml-include href="URI" + + +Description + +Use the dbhtml-include href PI anywhere in a + document to cause the contents of the file referenced by the + href pseudo-attribute to be copied/inserted “as + is†into your HTML output at the point in document order + where the PI occurs in the source. + + + +The referenced file may contain plain text (as long as + it is “wrapped†in an html element — see the + note below) or markup in any arbitrary vocabulary, + including HTML — but it must conform to XML + well-formedness constraints (because the feature in XSLT + 1.0 for opening external files, the + document() function, can only handle + files that meet XML well-formedness constraints). + + +Among other things, XML well-formedness constraints + require a document to have a single root + element. So if the content you want to + include is plain text or is markup that does + not have a single root element, + wrap the content in an + html element. The stylesheets will + strip out that surrounding html “wrapper†when + they find it, leaving just the content you want to + insert. + + + Parameters + + + href="URI" + + +Specifies the URI for the file to include; the URI + can be, for example, a remote http: + URI, or a local filesystem file: + URI + + + + + + Related Global Parameters + +textinsert.extension + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Inserting external HTML code, + External code files + + + + + +dbhh +Sets topic name and topic id for context-sensitive HTML Help + + + + dbhh topicname="name" topicid="id" + + +Description + +Use the dbhh PI as a child of components + that should be used as targets for context-sensitive help requests. + + Parameters + + + topicname="name" + + +Specifies a unique string constant that identifies a help topic + + + + topicid="id" + + +Specifies a unique integer value for the topicname string + + + + + + Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link> + +Context-sensitive help + + + + diff --git a/docbook-xsl-1.76.1/html/pi.xsl b/docbook-xsl-1.76.1/html/pi.xsl new file mode 100644 index 0000000..ac1345f --- /dev/null +++ b/docbook-xsl-1.76.1/html/pi.xsl @@ -0,0 +1,1263 @@ + + + + + +HTML Processing Instruction Reference + + $Id: pi.xsl 8394 2009-04-02 20:31:30Z mzjn $ + + + + Introduction + This is generated reference documentation for all + user-specifiable processing instructions (PIs) in the DocBook + XSL stylesheets for HTML output. + + You add these PIs at particular points in a document to + cause specific “exceptions†to formatting/output behavior. To + make global changes in formatting/output behavior across an + entire document, it’s better to do it by setting an + appropriate stylesheet parameter (if there is one). + + + + + + + + + Sets background color for an image + + Use the dbhtml background-color PI before or + after an image (graphic, inlinegraphic, + imagedata, or videodata element) as a + sibling to the element, to set a background color for the + image. + + + dbhtml background-color="color" + + + + background-color="color" + + An HTML color value + + + + + + Background color + + + + + + + + + + + + Sets background color on a CALS table row or table cell + + Use the dbhtml bgcolor PI as child of a CALS table row + or cell to set a background color for that table row or cell. + + + dbhtml bgcolor="color" + + + + bgcolor="color" + + An HTML color value + + + + + + Cell background color + + + + + + + + + + + + Specifies cellpadding in CALS table or qandaset output + + Use the dbhtml cellpadding PI as a child of a + CALS table or qandaset to specify the value + for the HTML cellpadding attribute in the + output HTML table. + + + dbhtml cellpadding="number" + + + + cellpadding="number" + + Specifies the cellpadding + + + + + + html.cellpadding + + + Cell spacing and cell padding, + Q and A formatting + + + + + + + + + + + + Specifies cellspacing in CALS table or qandaset output + + Use the dbhtml cellspacing PI as a child of a + CALS table or qandaset to specify the value + for the HTML cellspacing attribute in the + output HTML table. + + + dbhtml cellspacing="number" + + + + cellspacing="number" + + Specifies the cellspacing + + + + + + html.cellspacing + + + Cell spacing and cell padding, + Q and A formatting + + + + + + + + + + + + Set value of the class attribute for a CALS table row + + Use the dbhtml class PI as a child of a + row to specify a class + attribute and value in the HTML output for that row. + + + dbhtml class="name" + + + + class="name" + + Specifies the class name + + + + + + Table styles in HTML output + + + + + + + + + + + + Specifies a directory name in which to write files + + When chunking output, use the dbhtml dir PI + as a child of a chunk source to cause the output of that + chunk to be written to the specified directory; also, use it + as a child of a mediaobject to specify a + directory into which any long-description files for that + mediaobject will be written. + + + dbhtml dir="path" + + + + dir="path" + + Specifies the pathname for the directory + + + + + + base.dir + + + dbhtml dir processing instruction + + + + + + + + + + + + Specifies a filename for a chunk + + When chunking output, use the dbhtml filename + PI as a child of a chunk source to specify a filename for + the output file for that chunk. + + + dbhtml filename="filename" + + + + filename="path" + + Specifies the filename for the file + + + + + + use.id.as.filename + + + dbhtml filenames + + + + + + + + + + + + Specifies presentation style for a funcsynopsis + + Use the dbhtml funcsynopsis-style PI as a child of + a funcsynopsis or anywhere within a funcsynopsis + to control the presentation style for output of all + funcprototype instances within that funcsynopsis. + + + dbhtml funcsynopsis-style="kr"|"ansi" + + + + funcsynopsis-style="kr" + + Displays funcprototype output in K&R style + + + funcsynopsis-style="ansi" + + Displays funcprototype output in ANSI style + + + + + + funcsynopsis.style + + + + + + + + + + + + Specifies a path to the location of an image file + + Use the dbhtml img.src.path PI before or + after an image (graphic, + inlinegraphic, imagedata, or + videodata element) as a sibling to the element, + to specify a path to the location of the image; in HTML + output, the value specified for the + img.src.path attribute is prepended to the + filename. + + + dbhtml img.src.path="path" + + + + img.src.path="path" + + Specifies the pathname to prepend to the name of the image file + + + + + + img.src.path + + + Using fileref + + + + + + + + + + + + Specifies the label width for a qandaset + + Use the dbhtml label-width PI as a child of a + qandaset to specify the width of labels. + + + dbhtml label-width="width" + + + + label-width="width" + + Specifies the label width (including units) + + + + + + Q and A formatting + + + + + + + + + + + + Specifies interval for line numbers in verbatims + + Use the dbhtml linenumbering.everyNth PI as a child + of a “verbatim†element – programlisting, + screen, synopsis — to specify + the interval at which lines are numbered. + + + dbhtml linenumbering.everyNth="N" + + + + linenumbering.everyNth="N" + + Specifies numbering interval; a number is output + before every Nth line + + + + + + linenumbering.everyNth + + + Line numbering + + + + + + + + + + + + Specifies separator text for line numbers in verbatims + + Use the dbhtml linenumbering.separator PI as a child + of a “verbatim†element – programlisting, + screen, synopsis — to specify + the separator text output between the line numbers and content. + + + dbhtml linenumbering.separator="text" + + + + linenumbering.separator="text" + + Specifies the text (zero or more characters) + + + + + + linenumbering.separator + + + Line numbering + + + + + + + + + + + + Specifies width for line numbers in verbatims + + Use the dbhtml linenumbering.width PI as a child + of a “verbatim†element – programlisting, + screen, synopsis — to specify + the width set aside for line numbers. + + + dbhtml linenumbering.width="width" + + + + linenumbering.width="width" + + Specifies the width (inluding units) + + + + + + linenumbering.width + + + Line numbering + + + + + + + + + + + + Specifies presentation style for a variablelist or + segmentedlist + + Use the dbhtml list-presentation PI as a child of + a variablelist or segmentedlist to + control the presentation style for the list (to cause it, for + example, to be displayed as a table). + + + dbhtml list-presentation="list"|"table" + + + + list-presentation="list" + + Displays the list as a list + + + list-presentation="table" + + Displays the list as a table + + + + + + + + variablelist.as.table + + + segmentedlist.as.table + + + + + Variable list formatting in HTML + + + + + + + + + + + + Specifies the width of a variablelist or simplelist + + Use the dbhtml list-width PI as a child of a + variablelist or a simplelist presented + as a table, to specify the output width. + + + dbhtml list-width="width" + + + + list-width="width" + + Specifies the output width (including units) + + + + + + Variable list formatting in HTML + + + + + + + + + + + + Specifies the height for a CALS table row + + Use the dbhtml row-height PI as a child of a + row to specify the height of the row. + + + dbhtml row-height="height" + + + + row-height="height" + + Specifies the row height (including units) + + + + + + Row height + + + + + + + + + + + + (obsolete) Sets the starting number on an ordered list + + This PI is obsolete. The intent of + this PI was to provide a means for setting a specific starting + number for an ordered list. Instead of this PI, set a value + for the override attribute on the first + listitem in the list; that will have the same + effect as what this PI was intended for. + + + dbhtml start="character" + + + + start="character" + + Specifies the character to use as the starting + number; use 0-9, a-z, A-Z, or lowercase or uppercase + Roman numerals + + + + + + List starting number + + + + + + + + + + + + Do not chunk any descendants of this element. + + When generating chunked HTML output, adding this PI as the child of an element that contains elements that would normally be generated on separate pages if generating chunked output causes chunking to stop at this point. No descendants of the current element will be split into new HTML pages: + +Configuring pencil + + +... + +]]> + + + + dbhtml stop-chunking + + + Chunking into multiple HTML files + + + + + + Specifies summary for CALS table, variablelist, segmentedlist, or qandaset output + + Use the dbhtml table-summary PI as a child of + a CALS table, variablelist, + segmentedlist, or qandaset to specify + the text for the HTML summary attribute + in the output HTML table. + + + dbhtml table-summary="text" + + + + table-summary="text" + + Specifies the summary text (zero or more characters) + + + + + + Variable list formatting in HTML, + Table summary text + + + + + + + + + + + + Specifies the width for a CALS table + + Use the dbhtml table-width PI as a child of a + CALS table to specify the width of the table in + output. + + + dbhtml table-width="width" + + + + table-width="width" + + Specifies the table width (including units or as a percentage) + + + + + + default.table.width + + + Table width + + + + + + + + + + + + Sets character formatting for terms in a variablelist + + Use the dbhtml term-presentation PI as a child + of a variablelist to set character formatting for + the term output of the list. + + + dbhtml term-presentation="bold"|"italic"|"bold-italic" + + + + term-presentation="bold" + + Specifies that terms are displayed in bold + + + term-presentation="italic" + + Specifies that terms are displayed in italic + + + term-presentation="bold-italic" + + Specifies that terms are displayed in bold-italic + + + + + + Variable list formatting in HTML + + + + + + + + + + + + Specifies separator text among terms in a varlistentry + + Use the dbhtml term-separator PI as a child + of a variablelist to specify the separator text + among term instances. + + + dbhtml term-separator="text" + + + + term-separator="text" + + Specifies the text (zero or more characters) + + + + + + variablelist.term.separator + + + Variable list formatting in HTML + + + + + + + + + + + + Specifies the term width for a variablelist + + Use the dbhtml term-width PI as a child of a + variablelist to specify the width for + term output. + + + dbhtml term-width="width" + + + + term-width="width" + + Specifies the term width (including units) + + + + + + Variable list formatting in HTML + + + + + + + + + + + + Specifies whether a TOC should be generated for a qandaset + + Use the dbhtml toc PI as a child of a + qandaset to specify whether a table of contents + (TOC) is generated for the qandaset. + + + dbhtml toc="0"|"1" + + + + toc="0" + + If zero, no TOC is generated + + + toc="1" + + If 1 (or any non-zero value), + a TOC is generated + + + + + + Q and A list of questions, + Q and A formatting + + + + + + + + + + + + Generates a hyperlinked list of commands + + Use the dbcmdlist PI as the child of any + element (for example, refsynopsisdiv) containing multiple + cmdsynopsis instances; a hyperlinked navigational + “command list†will be generated at the top of output for that + element, enabling users to quickly jump + to each command synopsis. + + + dbcmdlist + + + [No parameters] + + + + + + No cmdsynopsis elements matched dbcmdlist PI, perhaps it's nested too deep? + + +
    + + + +
    +
    + + + Generates a hyperlinked list of functions + + Use the dbfunclist PI as the child of any + element (for example, refsynopsisdiv) containing multiple + funcsynopsis instances; a hyperlinked + navigational “function list†will be generated at the top of + output for that element, enabling users to quickly + jump to to each function synopsis. + + + dbfunclist + + + [No parameters] + + + + + + No funcsynopsis elements matched dbfunclist PI, perhaps it's nested too deep? + + +
    + + + +
    +
    + + + Copies an external well-formed HTML/XML file into current doc + + Use the dbhtml-include href PI anywhere in a + document to cause the contents of the file referenced by the + href pseudo-attribute to be copied/inserted “as + is†into your HTML output at the point in document order + where the PI occurs in the source. + + The referenced file may contain plain text (as long as + it is “wrapped†in an html element — see the + note below) or markup in any arbitrary vocabulary, + including HTML — but it must conform to XML + well-formedness constraints (because the feature in XSLT + 1.0 for opening external files, the + document() function, can only handle + files that meet XML well-formedness constraints). + Among other things, XML well-formedness constraints + require a document to have a single root + element. So if the content you want to + include is plain text or is markup that does + not have a single root element, + wrap the content in an + html element. The stylesheets will + strip out that surrounding html “wrapper†when + they find it, leaving just the content you want to + insert. + + + + dbhtml-include href="URI" + + + + href="URI" + + Specifies the URI for the file to include; the URI + can be, for example, a remote http: + URI, or a local filesystem file: + URI + + + + + + textinsert.extension + + + Inserting external HTML code, + External code files + + + + + + + href + + + + + + + + + + + + + + + + + + + + ERROR: dbhtml-include processing instruction + href has no content. + + + + + + + ERROR: dbhtml-include processing instruction has + missing or empty href value. + + + + + + + + Sets topic name and topic id for context-sensitive HTML Help + + Use the dbhh PI as a child of components + that should be used as targets for context-sensitive help requests. + + + dbhh topicname="name" topicid="id" + + + + topicname="name" + + Specifies a unique string constant that identifies a help topic + + + topicid="id" + + Specifies a unique integer value for the topicname string + + + + + + Context-sensitive help + + + + + + + + + + filename + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + # + + + + + + + + + + + + + + + + + + +
    + + + + + +
    +
    +
    + + + + + + + + + + + + + + + +
    + + + # + + + + + + + + + + + + + + + + + + +
    + + + + + +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + / + + + + / + + + + +
    diff --git a/docbook-xsl-1.76.1/html/profile-chunk-code.xsl b/docbook-xsl-1.76.1/html/profile-chunk-code.xsl new file mode 100644 index 0000000..cabfd91 --- /dev/null +++ b/docbook-xsl-1.76.1/html/profile-chunk-code.xsl @@ -0,0 +1,615 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + bk + + + + + + + + + + + + + + + ar + + + + + + + + + + + + + + + pr + + + + + + + + + + + + + + + ch + + + + + + + + + + + + + + + ap + + + + + + + + + + + + + + + + + + + pt + + + + + + + + + + + + + + + + + + + rn + + + + + + + + + + + + + + + + + + + + + + + + re + + + + + + + + + + + + + + + + + + + co + + + + + + + + + + + s + + + + + + + + + + + + + + + + + + + bi + + + + + + + + + + + + + + + + + + + go + + + + + + + + + + + + + + + + + + + ix + + + + + + + + si + + + + + + + + chunk-filename-error- + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Note: namesp. cut : stripped namespace before processingNote: namesp. cut : processing stripped document + + + + + + + + + + + + + + + + + ID ' + + ' not found in document. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/html/profile-chunk.xsl b/docbook-xsl-1.76.1/html/profile-chunk.xsl new file mode 100644 index 0000000..02920b1 --- /dev/null +++ b/docbook-xsl-1.76.1/html/profile-chunk.xsl @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/html/profile-docbook.xsl b/docbook-xsl-1.76.1/html/profile-docbook.xsl new file mode 100644 index 0000000..45e55f2 --- /dev/null +++ b/docbook-xsl-1.76.1/html/profile-docbook.xsl @@ -0,0 +1,413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Element + + in namespace ' + + ' encountered + + in + + + , but no template matches. + + + + < + + > + + </ + + > + + + + + + + + + white + black + #0000FF + #840084 + #0000FF + + rtl + + + + + + + + + + + <xsl:copy-of select="$title"/> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Note: namesp. cut : stripped namespace before processingNote: namesp. cut : processing stripped document + + + + + + + + + + + + + + + + + + ID ' + + ' not found in document. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + + + diff --git a/docbook-xsl-1.76.1/html/profile-onechunk.xsl b/docbook-xsl-1.76.1/html/profile-onechunk.xsl new file mode 100644 index 0000000..325b8b1 --- /dev/null +++ b/docbook-xsl-1.76.1/html/profile-onechunk.xsl @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + +1 + + + + # + + + + + + diff --git a/docbook-xsl-1.76.1/html/qandaset.xsl b/docbook-xsl-1.76.1/html/qandaset.xsl new file mode 100644 index 0000000..3bf35e8 --- /dev/null +++ b/docbook-xsl-1.76.1/html/qandaset.xsl @@ -0,0 +1,437 @@ + + + + + + + + + + + + + + + + + + + + +
    + + + + + + + + + + + + + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    + +

    +
    + + + + + + + + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    + +

    +
    + + + + + + + + + + +
    + + + + + + + + + + + + + + +
    + + +
    +
    + + +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + + + + + + + + +
    + + + + +
    + + + +
    + +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1% + + + + + + + + +
    +
    + + + + + + + + + +
    diff --git a/docbook-xsl-1.76.1/html/refentry.xsl b/docbook-xsl-1.76.1/html/refentry.xsl new file mode 100644 index 0000000..8eaf768 --- /dev/null +++ b/docbook-xsl-1.76.1/html/refentry.xsl @@ -0,0 +1,299 @@ + + + + + + + + + + +
    + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    + +

    +
    + + + + +
    + + + + +
    +
    +
    +
    + + + + + + +
    +
    + + + + + + + + + + + + + + ( + + ) + + + + + + + + + + + +
    + + + + + + + + + + +

    + + + +

    +
    + +

    + + + + + + + + +

    +
    +
    + +

    + +

    +
    +
    + + + + + + , + + + + + + + + + em-dash + + + + + + + + + + + + + + + + : + + + + + + + +
    + + + + +

    + + + + + + + + + + +

    + +
    +
    + + + + + + + + + + + +
    + + + + + + + + + +
    +
    + + + + + + 0 + 1 + + + + 6 + + + + + + + + + + + + +

    + +

    +
    + + + +

    + +

    +
    + + + +

    + +

    +
    + + + + + + + + + +
    diff --git a/docbook-xsl-1.76.1/html/sections.xsl b/docbook-xsl-1.76.1/html/sections.xsl new file mode 100644 index 0000000..4278d2f --- /dev/null +++ b/docbook-xsl-1.76.1/html/sections.xsl @@ -0,0 +1,615 @@ + + + + + + + + + + + + +
    + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + 1 + 2 + 3 + 4 + 5 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    + + + + + + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 6 + + + + + + + + + + clear: both + + + + + + + + + + + + + + + + + + + + + + + 1 + + + + + + + + + + + + 1 + + + + + + + 2 + 3 + 4 + 5 + 6 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + diff --git a/docbook-xsl-1.76.1/html/synop.xsl b/docbook-xsl-1.76.1/html/synop.xsl new file mode 100644 index 0000000..be19756 --- /dev/null +++ b/docbook-xsl-1.76.1/html/synop.xsl @@ -0,0 +1,1554 @@ + + +]> + + + + + + + + + + + +
    + +

    + + + + + + + + + + + + +

    +
    +
    + + +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + + + + ( + + ) + +   + + + + + + + + + + + + + + + + + + + ( + + ) + + + + + + + + + + + + + + + + + + + + + + +
    +    
    +    
    +  
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    + + +
    + +
    +

    +
    + + + + + + ( + + + + + + + + + + + + + + + + ) + ; + + + + ... + ) + ; + + + + + + + , + + + ) + ; + + + + + + + + + + + + + + + + + + + + +
    + + + + ; +
    + + + + + + + + + + + + + + + + + + ( + + ) + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + +
    +
    +
     
    +
    + + + + + + ( + + + + + + + + + + + + + + + + + ) + ; + +   + + + + + ... + ) + ; + +   + + + + + + + + , + + + ) + ; + + + +   + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +   + + + + + + + + + + + + + + + + + + + + + + + + + + + + +   + + + + + + ; + + + + + + + + + + + + + + + + + + + + + + + + ( + + ) + ; + + + + + + +

    + +

    +
    + + + + + + ( + + + + + + + + + + + + + + + + void) + ; + + + + ... + ) + ; + + + + + + + , + + + ) + ; + + + + + + + + + + + + + + + + + + + + + ( + + ) + + + + + + + + + + + + + + + + + +
    + +
     
    +
     
    +
    + + + + + + ( + + + + + + + + + + + + + + + + + void) + ; + +   + + + + + ... + ) + ; + +   + + + + + + + + , + + + ) + ; + + + + + + + + + + + + + + + + + + + + + + ( + + ) + + + + +java + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Unrecognized language on + + : + + + + + + + + + + + +
    +
    +
    + + + + + +
    +    
    +    
    +    
    +       extends
    +      
    +      
    +        
    +      +
    +
    + + implements + + +
    +      +
    +
    + + throws + + +  { +
    + + } +
    +
    + + + + + + + + + , + + + + + + + + + + + + + + + + +   + + + + + + + , + + + + + + + + + + , + + + + + + + + + + , + + + + + + + + + + + +    + + + ; + + + + + + + + +   + + + + + + + +   + + + + + + + + + + + + + + + void  + + + + + + + + + + + + 0 + + , +
    + + +   + + + +
    + + + + +
    + + + + + + + + + + + + + + +    + + + + + + + + + + + + + + + ( + + + + ) + +
    +     throws  + +
    + + + + + ; +
    + +
    + + + + +
    +    
    +    
    +    
    +      : 
    +      
    +      
    +        
    +      +
    +
    + + implements + + +
    +      +
    +
    + + throws + + +  { +
    + + } +
    +
    + + + + + + + + , + + + + + + + + + + + + +   + + + + + + + , + + + + + + + + + + , + + + + + + + + + + , + + + + + + + + + + + +    + + + ; + + + + + + + + +   + + + + + + + +   + + + + + + + + + + + + + + + void  + + + + + + + + + + + + + , + + + + + + + + + + + + + + + + + + + + + + +    + + + + + + + + + + ( + + ) + +
    +     throws  + +
    + + + + + ; +
    + +
    + + + + +
    +    
    +    interface 
    +    
    +    
    +      : 
    +      
    +      
    +        
    +      +
    +
    + + implements + + +
    +      +
    +
    + + throws + + +  { +
    + + } +
    +
    + + + + + + + + , + + + + + + + + + + + + +   + + + + + + + , + + + + + + + + + + , + + + + + + + + + + , + + + + + + + + + + + +    + + + ; + + + + + + + + +   + + + + + + + +   + + + + + + + + + + + + + + + void  + + + + + + + + + + + + + , + + + + + + + + + + + + + + + + + + + + + +    + + + + + + + + + + ( + + ) + +
    +     raises( + + ) +
    + + + + + ; +
    + +
    + + + + +
    +    
    +    package 
    +    
    +    ;
    +    
    + + + @ISA = ( + + ); +
    +
    + + +
    +
    + + + + + + + + , + + + + + + + + + + + + +   + + + + + + + , + + + + + + + + + + , + + + + + + + + + + , + + + + + + + + + + + +    + + + ; + + + + + + + + +   + + + + + + + +   + + + + + + + + + + + + + + + void  + + + + + + + + + + + + + , + + + + + + + + + + + + + + + + + + + + + + sub + + + { ... }; + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    diff --git a/docbook-xsl-1.76.1/html/table.xsl b/docbook-xsl-1.76.1/html/table.xsl new file mode 100644 index 0000000..405be13 --- /dev/null +++ b/docbook-xsl-1.76.1/html/table.xsl @@ -0,0 +1,1200 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + +   + + + + + + + + + + + + + + + + + + + border- + + : + + + + + + ; + + + + + border- + + -width: + + ; + + + + border- + + -style: + + ; + + + + border- + + -color: + + ; + + + + + + + + + + + Error: CALS tables must specify the number of columns. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 100% + + + + + + + + border-collapse: collapse; + + + + + + + + + + + + + + + + + + + + + + + + + + + + + border-collapse: collapse; + + + + + + + + + + + + + + + + + border-collapse: collapse; + + + + + + + + + + + border-collapse: collapse; + + + + + + + + + + + border-collapse: collapse; + + + + + + + + + + + + + + + + + border: none; + + + + + border-collapse: collapse; + + + + + + + 0 + + + 1 + + + + + + + + + + + + + + + + + + + + + + + + 100% + + + + + + + + + + + + + + + + + + + + + + + + No convertLength function available. + + + + + + + + + + + + + + + + + + + + + + + + + + No adjustColumnWidths function available. + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Warning: overlapped row contains content! + + + This row intentionally left blank + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + + + + + + + + th + th + + th + + td + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +   + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + + + + + + + + + + + + + + : + + + + + + + + 0: + + + + + + + + + + + + + + + 0 + + : + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + + 1 + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + diff --git a/docbook-xsl-1.76.1/html/task.xsl b/docbook-xsl-1.76.1/html/task.xsl new file mode 100644 index 0000000..01da940 --- /dev/null +++ b/docbook-xsl-1.76.1/html/task.xsl @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + before + + + + + + + + +
    + + + + + + + + + + + + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + +
    diff --git a/docbook-xsl-1.76.1/html/titlepage.templates.xml b/docbook-xsl-1.76.1/html/titlepage.templates.xml new file mode 100644 index 0000000..cae5160 --- /dev/null +++ b/docbook-xsl-1.76.1/html/titlepage.templates.xml @@ -0,0 +1,708 @@ + + + + + + + + <subtitle/> + <corpauthor/> + <authorgroup/> + <author/> + <othercredit/> + <releaseinfo/> + <copyright/> + <legalnotice/> + <pubdate/> + <revision/> + <revhistory/> + <abstract/> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + </t:titlepage-content> + + <t:titlepage-separator> + <hr/> + </t:titlepage-separator> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + </t:titlepage-before> +</t:titlepage> + +<!-- ==================================================================== --> + +<t:titlepage t:element="set" t:wrapper="div" class="titlepage"> + <t:titlepage-content t:side="recto"> + <title/> + <subtitle/> + <corpauthor/> + <authorgroup/> + <author/> + <othercredit/> + <releaseinfo/> + <copyright/> + <legalnotice/> + <pubdate/> + <revision/> + <revhistory/> + <abstract/> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + </t:titlepage-content> + + <t:titlepage-separator> + <hr/> + </t:titlepage-separator> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + </t:titlepage-before> +</t:titlepage> + +<!-- ==================================================================== --> + +<t:titlepage t:element="book" t:wrapper="div" class="titlepage"> + <t:titlepage-content t:side="recto"> + <title/> + <subtitle/> + <corpauthor/> + <authorgroup/> + <author/> + <othercredit/> + <releaseinfo/> + <copyright/> + <legalnotice/> + <pubdate/> + <revision/> + <revhistory/> + <abstract/> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + </t:titlepage-content> + + <t:titlepage-separator> + <hr/> + </t:titlepage-separator> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + </t:titlepage-before> +</t:titlepage> + +<!-- ==================================================================== --> + +<t:titlepage t:element="part" t:wrapper="div" class="titlepage"> + <t:titlepage-content t:side="recto"> + <title + t:force="1" + t:named-template="division.title" + param:node="ancestor-or-self::part[1]"/> + <subtitle/> + <corpauthor/> + <authorgroup/> + <author/> + <othercredit/> + <releaseinfo/> + <copyright/> + <legalnotice/> + <pubdate/> + <revision/> + <revhistory/> + <abstract/> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + </t:titlepage-content> + + <t:titlepage-separator> + </t:titlepage-separator> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + </t:titlepage-before> +</t:titlepage> + +<t:titlepage t:element="partintro" t:wrapper="div"> + <t:titlepage-content t:side="recto"> + <title/> + <subtitle/> + <corpauthor/> + <authorgroup/> + <author/> + <othercredit/> + <releaseinfo/> + <copyright/> + <legalnotice/> + <pubdate/> + <revision/> + <revhistory/> + <abstract/> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + </t:titlepage-content> + + <t:titlepage-separator> + </t:titlepage-separator> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + </t:titlepage-before> +</t:titlepage> + +<!-- ==================================================================== --> + +<t:titlepage t:element="reference" t:wrapper="div" class="titlepage"> + <t:titlepage-content t:side="recto"> + <title/> + <subtitle/> + <corpauthor/> + <authorgroup/> + <author/> + <othercredit/> + <releaseinfo/> + <copyright/> + <legalnotice/> + <pubdate/> + <revision/> + <revhistory/> + <abstract/> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + </t:titlepage-content> + + <t:titlepage-separator> + <hr/> + </t:titlepage-separator> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + </t:titlepage-before> +</t:titlepage> + +<!-- ==================================================================== --> + +<t:titlepage t:element="refentry" t:wrapper="div" class="titlepage"> + <t:titlepage-content t:side="recto"> +<!-- uncomment this if you want refentry titlepages + <title t:force="1" + t:named-template="refentry.title" + param:node="ancestor-or-self::refentry[1]"/> +--> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + </t:titlepage-content> + + <t:titlepage-separator/> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + </t:titlepage-before> +</t:titlepage> + +<!-- ==================================================================== --> + + <t:titlepage t:element="dedication" t:wrapper="div" class="titlepage"> + <t:titlepage-content t:side="recto"> + <title + t:force="1" + t:named-template="component.title" + param:node="ancestor-or-self::dedication[1]"/> + <subtitle/> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + </t:titlepage-content> + + <t:titlepage-separator> + </t:titlepage-separator> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + </t:titlepage-before> +</t:titlepage> + +<!-- ==================================================================== --> + +<t:titlepage t:element="acknowledgements" t:wrapper="div" class="titlepage"> + <t:titlepage-content t:side="recto"> + <title + t:force="1" + t:named-template="component.title" + param:node="ancestor-or-self::acknowledgements[1]"/> + <subtitle/> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + </t:titlepage-content> + + <t:titlepage-separator> + </t:titlepage-separator> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + </t:titlepage-before> +</t:titlepage> + +<!-- ==================================================================== --> + +<t:titlepage t:element="preface" t:wrapper="div" class="titlepage"> + <t:titlepage-content t:side="recto"> + <title/> + <subtitle/> + <corpauthor/> + <authorgroup/> + <author/> + <othercredit/> + <releaseinfo/> + <copyright/> + <legalnotice/> + <pubdate/> + <revision/> + <revhistory/> + <abstract/> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + </t:titlepage-content> + + <t:titlepage-separator> + </t:titlepage-separator> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + </t:titlepage-before> +</t:titlepage> + +<!-- ==================================================================== --> + +<t:titlepage t:element="chapter" t:wrapper="div" class="titlepage"> + <t:titlepage-content t:side="recto"> + <title/> + <subtitle/> + <corpauthor/> + <authorgroup/> + <author/> + <othercredit/> + <releaseinfo/> + <copyright/> + <legalnotice/> + <pubdate/> + <revision/> + <revhistory/> + <abstract/> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + </t:titlepage-content> + + <t:titlepage-separator> + </t:titlepage-separator> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + </t:titlepage-before> +</t:titlepage> + +<!-- ==================================================================== --> + +<t:titlepage t:element="appendix" t:wrapper="div" class="titlepage"> + <t:titlepage-content t:side="recto"> + <title/> + <subtitle/> + <corpauthor/> + <authorgroup/> + <author/> + <othercredit/> + <releaseinfo/> + <copyright/> + <legalnotice/> + <pubdate/> + <revision/> + <revhistory/> + <abstract/> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + </t:titlepage-content> + + <t:titlepage-separator> + </t:titlepage-separator> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + </t:titlepage-before> +</t:titlepage> + +<!-- ==================================================================== --> + +<t:titlepage t:element="section" t:wrapper="div" class="titlepage"> + <t:titlepage-content t:side="recto"> + <title/> + <subtitle/> + <corpauthor/> + <authorgroup/> + <author/> + <othercredit/> + <releaseinfo/> + <copyright/> + <legalnotice/> + <pubdate/> + <revision/> + <revhistory/> + <abstract/> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + </t:titlepage-content> + + <t:titlepage-separator> + <xsl:if test="count(parent::*)='0'"><hr/></xsl:if> + </t:titlepage-separator> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + </t:titlepage-before> +</t:titlepage> + +<t:titlepage t:element="sect1" t:wrapper="div" class="titlepage"> + <t:titlepage-content t:side="recto"> + <title/> + <subtitle/> + <corpauthor/> + <authorgroup/> + <author/> + <othercredit/> + <releaseinfo/> + <copyright/> + <legalnotice/> + <pubdate/> + <revision/> + <revhistory/> + <abstract/> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + </t:titlepage-content> + + <t:titlepage-separator> + <xsl:if test="count(parent::*)='0'"><hr/></xsl:if> + </t:titlepage-separator> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + </t:titlepage-before> +</t:titlepage> + +<t:titlepage t:element="sect2" t:wrapper="div" class="titlepage"> + <t:titlepage-content t:side="recto"> + <title/> + <subtitle/> + <corpauthor/> + <authorgroup/> + <author/> + <othercredit/> + <releaseinfo/> + <copyright/> + <legalnotice/> + <pubdate/> + <revision/> + <revhistory/> + <abstract/> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + </t:titlepage-content> + + <t:titlepage-separator> + <xsl:if test="count(parent::*)='0'"><hr/></xsl:if> + </t:titlepage-separator> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + </t:titlepage-before> +</t:titlepage> + +<t:titlepage t:element="sect3" t:wrapper="div" class="titlepage"> + <t:titlepage-content t:side="recto"> + <title/> + <subtitle/> + <corpauthor/> + <authorgroup/> + <author/> + <othercredit/> + <releaseinfo/> + <copyright/> + <legalnotice/> + <pubdate/> + <revision/> + <revhistory/> + <abstract/> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + </t:titlepage-content> + + <t:titlepage-separator> + <xsl:if test="count(parent::*)='0'"><hr/></xsl:if> + </t:titlepage-separator> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + </t:titlepage-before> +</t:titlepage> + +<t:titlepage t:element="sect4" t:wrapper="div" class="titlepage"> + <t:titlepage-content t:side="recto"> + <title/> + <subtitle/> + <corpauthor/> + <authorgroup/> + <author/> + <othercredit/> + <releaseinfo/> + <copyright/> + <legalnotice/> + <pubdate/> + <revision/> + <revhistory/> + <abstract/> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + </t:titlepage-content> + + <t:titlepage-separator> + <xsl:if test="count(parent::*)='0'"><hr/></xsl:if> + </t:titlepage-separator> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + </t:titlepage-before> +</t:titlepage> + +<t:titlepage t:element="sect5" t:wrapper="div" class="titlepage"> + <t:titlepage-content t:side="recto"> + <title/> + <subtitle/> + <corpauthor/> + <authorgroup/> + <author/> + <othercredit/> + <releaseinfo/> + <copyright/> + <legalnotice/> + <pubdate/> + <revision/> + <revhistory/> + <abstract/> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + </t:titlepage-content> + + <t:titlepage-separator> + <xsl:if test="count(parent::*)='0'"><hr/></xsl:if> + </t:titlepage-separator> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + </t:titlepage-before> +</t:titlepage> + +<t:titlepage t:element="simplesect" t:wrapper="div" class="titlepage"> + <t:titlepage-content t:side="recto"> + <title/> + <subtitle/> + <corpauthor/> + <authorgroup/> + <author/> + <othercredit/> + <releaseinfo/> + <copyright/> + <legalnotice/> + <pubdate/> + <revision/> + <revhistory/> + <abstract/> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + </t:titlepage-content> + + <t:titlepage-separator> + <xsl:if test="count(parent::*)='0'"><hr/></xsl:if> + </t:titlepage-separator> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + </t:titlepage-before> +</t:titlepage> + +<!-- ==================================================================== --> + +<t:titlepage t:element="bibliography" t:wrapper="div" class="titlepage"> + <t:titlepage-content t:side="recto"> + <title + t:force="1" + t:named-template="component.title" + param:node="ancestor-or-self::bibliography[1]"/> + <subtitle/> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + </t:titlepage-content> + + <t:titlepage-separator> + </t:titlepage-separator> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + </t:titlepage-before> +</t:titlepage> + +<!-- ==================================================================== --> + +<t:titlepage t:element="glossary" t:wrapper="div" class="titlepage"> + <t:titlepage-content t:side="recto"> + <title + t:force="1" + t:named-template="component.title" + param:node="ancestor-or-self::glossary[1]"/> + <subtitle/> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + </t:titlepage-content> + + <t:titlepage-separator> + </t:titlepage-separator> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + </t:titlepage-before> +</t:titlepage> + +<!-- ==================================================================== --> + +<t:titlepage t:element="index" t:wrapper="div" class="titlepage"> + <t:titlepage-content t:side="recto"> + <title + t:force="1" + t:named-template="component.title" + param:node="ancestor-or-self::index[1]"/> + <subtitle/> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + </t:titlepage-content> + + <t:titlepage-separator> + </t:titlepage-separator> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + </t:titlepage-before> +</t:titlepage> + +<!-- ==================================================================== --> + +<t:titlepage t:element="setindex" t:wrapper="div" class="titlepage"> + <t:titlepage-content t:side="recto"> + <title + t:force="1" + t:named-template="component.title" + param:node="ancestor-or-self::setindex[1]"/> + <subtitle/> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + </t:titlepage-content> + + <t:titlepage-separator> + </t:titlepage-separator> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + </t:titlepage-before> +</t:titlepage> + +<!-- ==================================================================== --> +<t:titlepage t:element="sidebar" t:wrapper="div" class="titlepage"> + <t:titlepage-content t:side="recto"> + <title + t:named-template="formal.object.heading" + param:object="ancestor-or-self::sidebar[1]"/> + <subtitle/> + </t:titlepage-content> + + <t:titlepage-content t:side="verso"> + </t:titlepage-content> + + <t:titlepage-separator> + </t:titlepage-separator> + + <t:titlepage-before t:side="recto"> + </t:titlepage-before> + + <t:titlepage-before t:side="verso"> + </t:titlepage-before> +</t:titlepage> + +<!-- ==================================================================== --> + +</t:templates> diff --git a/docbook-xsl-1.76.1/html/titlepage.templates.xsl b/docbook-xsl-1.76.1/html/titlepage.templates.xsl new file mode 100644 index 0000000..a025c43 --- /dev/null +++ b/docbook-xsl-1.76.1/html/titlepage.templates.xsl @@ -0,0 +1,3817 @@ +<?xml version="1.0"?> + +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:exsl="http://exslt.org/common" version="1.0" exclude-result-prefixes="exsl"> + +<!-- This stylesheet was created by template/titlepage.xsl--> + +<xsl:template name="article.titlepage.recto"> + <xsl:choose> + <xsl:when test="articleinfo/title"> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="articleinfo/title"/> + </xsl:when> + <xsl:when test="artheader/title"> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="artheader/title"/> + </xsl:when> + <xsl:when test="info/title"> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="info/title"/> + </xsl:when> + <xsl:when test="title"> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="title"/> + </xsl:when> + </xsl:choose> + + <xsl:choose> + <xsl:when test="articleinfo/subtitle"> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="articleinfo/subtitle"/> + </xsl:when> + <xsl:when test="artheader/subtitle"> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="artheader/subtitle"/> + </xsl:when> + <xsl:when test="info/subtitle"> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="info/subtitle"/> + </xsl:when> + <xsl:when test="subtitle"> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="subtitle"/> + </xsl:when> + </xsl:choose> + + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="articleinfo/corpauthor"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="artheader/corpauthor"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="info/corpauthor"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="articleinfo/authorgroup"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="artheader/authorgroup"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="info/authorgroup"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="articleinfo/author"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="artheader/author"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="info/author"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="articleinfo/othercredit"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="artheader/othercredit"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="info/othercredit"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="articleinfo/releaseinfo"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="artheader/releaseinfo"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="info/releaseinfo"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="articleinfo/copyright"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="artheader/copyright"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="info/copyright"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="articleinfo/legalnotice"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="artheader/legalnotice"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="info/legalnotice"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="articleinfo/pubdate"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="artheader/pubdate"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="info/pubdate"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="articleinfo/revision"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="artheader/revision"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="info/revision"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="articleinfo/revhistory"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="artheader/revhistory"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="info/revhistory"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="articleinfo/abstract"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="artheader/abstract"/> + <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="info/abstract"/> +</xsl:template> + +<xsl:template name="article.titlepage.verso"> +</xsl:template> + +<xsl:template name="article.titlepage.separator"><hr/> +</xsl:template> + +<xsl:template name="article.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="article.titlepage.before.verso"> +</xsl:template> + +<xsl:template name="article.titlepage"> + <div class="titlepage"> + <xsl:variable name="recto.content"> + <xsl:call-template name="article.titlepage.before.recto"/> + <xsl:call-template name="article.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <div><xsl:copy-of select="$recto.content"/></div> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="article.titlepage.before.verso"/> + <xsl:call-template name="article.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <div><xsl:copy-of select="$verso.content"/></div> + </xsl:if> + <xsl:call-template name="article.titlepage.separator"/> + </div> +</xsl:template> + +<xsl:template match="*" mode="article.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="article.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="title" mode="article.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="article.titlepage.recto.style"> +<xsl:apply-templates select="." mode="article.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="subtitle" mode="article.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="article.titlepage.recto.style"> +<xsl:apply-templates select="." mode="article.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="corpauthor" mode="article.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="article.titlepage.recto.style"> +<xsl:apply-templates select="." mode="article.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="authorgroup" mode="article.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="article.titlepage.recto.style"> +<xsl:apply-templates select="." mode="article.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="author" mode="article.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="article.titlepage.recto.style"> +<xsl:apply-templates select="." mode="article.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="othercredit" mode="article.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="article.titlepage.recto.style"> +<xsl:apply-templates select="." mode="article.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="releaseinfo" mode="article.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="article.titlepage.recto.style"> +<xsl:apply-templates select="." mode="article.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="copyright" mode="article.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="article.titlepage.recto.style"> +<xsl:apply-templates select="." mode="article.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="legalnotice" mode="article.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="article.titlepage.recto.style"> +<xsl:apply-templates select="." mode="article.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="pubdate" mode="article.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="article.titlepage.recto.style"> +<xsl:apply-templates select="." mode="article.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="revision" mode="article.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="article.titlepage.recto.style"> +<xsl:apply-templates select="." mode="article.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="revhistory" mode="article.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="article.titlepage.recto.style"> +<xsl:apply-templates select="." mode="article.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="abstract" mode="article.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="article.titlepage.recto.style"> +<xsl:apply-templates select="." mode="article.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template name="set.titlepage.recto"> + <xsl:choose> + <xsl:when test="setinfo/title"> + <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="setinfo/title"/> + </xsl:when> + <xsl:when test="info/title"> + <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="info/title"/> + </xsl:when> + <xsl:when test="title"> + <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="title"/> + </xsl:when> + </xsl:choose> + + <xsl:choose> + <xsl:when test="setinfo/subtitle"> + <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="setinfo/subtitle"/> + </xsl:when> + <xsl:when test="info/subtitle"> + <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="info/subtitle"/> + </xsl:when> + <xsl:when test="subtitle"> + <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="subtitle"/> + </xsl:when> + </xsl:choose> + + <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="setinfo/corpauthor"/> + <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="info/corpauthor"/> + <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="setinfo/authorgroup"/> + <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="info/authorgroup"/> + <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="setinfo/author"/> + <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="info/author"/> + <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="setinfo/othercredit"/> + <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="info/othercredit"/> + <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="setinfo/releaseinfo"/> + <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="info/releaseinfo"/> + <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="setinfo/copyright"/> + <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="info/copyright"/> + <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="setinfo/legalnotice"/> + <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="info/legalnotice"/> + <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="setinfo/pubdate"/> + <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="info/pubdate"/> + <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="setinfo/revision"/> + <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="info/revision"/> + <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="setinfo/revhistory"/> + <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="info/revhistory"/> + <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="setinfo/abstract"/> + <xsl:apply-templates mode="set.titlepage.recto.auto.mode" select="info/abstract"/> +</xsl:template> + +<xsl:template name="set.titlepage.verso"> +</xsl:template> + +<xsl:template name="set.titlepage.separator"><hr/> +</xsl:template> + +<xsl:template name="set.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="set.titlepage.before.verso"> +</xsl:template> + +<xsl:template name="set.titlepage"> + <div class="titlepage"> + <xsl:variable name="recto.content"> + <xsl:call-template name="set.titlepage.before.recto"/> + <xsl:call-template name="set.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <div><xsl:copy-of select="$recto.content"/></div> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="set.titlepage.before.verso"/> + <xsl:call-template name="set.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <div><xsl:copy-of select="$verso.content"/></div> + </xsl:if> + <xsl:call-template name="set.titlepage.separator"/> + </div> +</xsl:template> + +<xsl:template match="*" mode="set.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="set.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="title" mode="set.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="set.titlepage.recto.style"> +<xsl:apply-templates select="." mode="set.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="subtitle" mode="set.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="set.titlepage.recto.style"> +<xsl:apply-templates select="." mode="set.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="corpauthor" mode="set.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="set.titlepage.recto.style"> +<xsl:apply-templates select="." mode="set.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="authorgroup" mode="set.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="set.titlepage.recto.style"> +<xsl:apply-templates select="." mode="set.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="author" mode="set.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="set.titlepage.recto.style"> +<xsl:apply-templates select="." mode="set.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="othercredit" mode="set.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="set.titlepage.recto.style"> +<xsl:apply-templates select="." mode="set.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="releaseinfo" mode="set.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="set.titlepage.recto.style"> +<xsl:apply-templates select="." mode="set.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="copyright" mode="set.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="set.titlepage.recto.style"> +<xsl:apply-templates select="." mode="set.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="legalnotice" mode="set.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="set.titlepage.recto.style"> +<xsl:apply-templates select="." mode="set.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="pubdate" mode="set.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="set.titlepage.recto.style"> +<xsl:apply-templates select="." mode="set.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="revision" mode="set.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="set.titlepage.recto.style"> +<xsl:apply-templates select="." mode="set.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="revhistory" mode="set.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="set.titlepage.recto.style"> +<xsl:apply-templates select="." mode="set.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="abstract" mode="set.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="set.titlepage.recto.style"> +<xsl:apply-templates select="." mode="set.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template name="book.titlepage.recto"> + <xsl:choose> + <xsl:when test="bookinfo/title"> + <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/title"/> + </xsl:when> + <xsl:when test="info/title"> + <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/title"/> + </xsl:when> + <xsl:when test="title"> + <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="title"/> + </xsl:when> + </xsl:choose> + + <xsl:choose> + <xsl:when test="bookinfo/subtitle"> + <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/subtitle"/> + </xsl:when> + <xsl:when test="info/subtitle"> + <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/subtitle"/> + </xsl:when> + <xsl:when test="subtitle"> + <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="subtitle"/> + </xsl:when> + </xsl:choose> + + <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/corpauthor"/> + <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/corpauthor"/> + <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/authorgroup"/> + <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/authorgroup"/> + <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/author"/> + <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/author"/> + <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/othercredit"/> + <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/othercredit"/> + <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/releaseinfo"/> + <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/releaseinfo"/> + <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/copyright"/> + <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/copyright"/> + <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/legalnotice"/> + <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/legalnotice"/> + <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/pubdate"/> + <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/pubdate"/> + <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/revision"/> + <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/revision"/> + <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/revhistory"/> + <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/revhistory"/> + <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/abstract"/> + <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/abstract"/> +</xsl:template> + +<xsl:template name="book.titlepage.verso"> +</xsl:template> + +<xsl:template name="book.titlepage.separator"><hr/> +</xsl:template> + +<xsl:template name="book.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="book.titlepage.before.verso"> +</xsl:template> + +<xsl:template name="book.titlepage"> + <div class="titlepage"> + <xsl:variable name="recto.content"> + <xsl:call-template name="book.titlepage.before.recto"/> + <xsl:call-template name="book.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <div><xsl:copy-of select="$recto.content"/></div> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="book.titlepage.before.verso"/> + <xsl:call-template name="book.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <div><xsl:copy-of select="$verso.content"/></div> + </xsl:if> + <xsl:call-template name="book.titlepage.separator"/> + </div> +</xsl:template> + +<xsl:template match="*" mode="book.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="book.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="title" mode="book.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="book.titlepage.recto.style"> +<xsl:apply-templates select="." mode="book.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="subtitle" mode="book.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="book.titlepage.recto.style"> +<xsl:apply-templates select="." mode="book.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="corpauthor" mode="book.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="book.titlepage.recto.style"> +<xsl:apply-templates select="." mode="book.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="authorgroup" mode="book.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="book.titlepage.recto.style"> +<xsl:apply-templates select="." mode="book.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="author" mode="book.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="book.titlepage.recto.style"> +<xsl:apply-templates select="." mode="book.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="othercredit" mode="book.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="book.titlepage.recto.style"> +<xsl:apply-templates select="." mode="book.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="releaseinfo" mode="book.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="book.titlepage.recto.style"> +<xsl:apply-templates select="." mode="book.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="copyright" mode="book.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="book.titlepage.recto.style"> +<xsl:apply-templates select="." mode="book.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="legalnotice" mode="book.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="book.titlepage.recto.style"> +<xsl:apply-templates select="." mode="book.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="pubdate" mode="book.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="book.titlepage.recto.style"> +<xsl:apply-templates select="." mode="book.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="revision" mode="book.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="book.titlepage.recto.style"> +<xsl:apply-templates select="." mode="book.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="revhistory" mode="book.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="book.titlepage.recto.style"> +<xsl:apply-templates select="." mode="book.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="abstract" mode="book.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="book.titlepage.recto.style"> +<xsl:apply-templates select="." mode="book.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template name="part.titlepage.recto"> + <div xsl:use-attribute-sets="part.titlepage.recto.style"> +<xsl:call-template name="division.title"> +<xsl:with-param name="node" select="ancestor-or-self::part[1]"/> +</xsl:call-template></div> + <xsl:choose> + <xsl:when test="partinfo/subtitle"> + <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="partinfo/subtitle"/> + </xsl:when> + <xsl:when test="docinfo/subtitle"> + <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="docinfo/subtitle"/> + </xsl:when> + <xsl:when test="info/subtitle"> + <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="info/subtitle"/> + </xsl:when> + <xsl:when test="subtitle"> + <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="subtitle"/> + </xsl:when> + </xsl:choose> + + <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="partinfo/corpauthor"/> + <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="docinfo/corpauthor"/> + <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="info/corpauthor"/> + <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="partinfo/authorgroup"/> + <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="docinfo/authorgroup"/> + <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="info/authorgroup"/> + <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="partinfo/author"/> + <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="docinfo/author"/> + <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="info/author"/> + <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="partinfo/othercredit"/> + <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="docinfo/othercredit"/> + <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="info/othercredit"/> + <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="partinfo/releaseinfo"/> + <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="docinfo/releaseinfo"/> + <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="info/releaseinfo"/> + <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="partinfo/copyright"/> + <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="docinfo/copyright"/> + <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="info/copyright"/> + <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="partinfo/legalnotice"/> + <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="docinfo/legalnotice"/> + <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="info/legalnotice"/> + <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="partinfo/pubdate"/> + <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="docinfo/pubdate"/> + <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="info/pubdate"/> + <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="partinfo/revision"/> + <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="docinfo/revision"/> + <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="info/revision"/> + <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="partinfo/revhistory"/> + <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="docinfo/revhistory"/> + <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="info/revhistory"/> + <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="partinfo/abstract"/> + <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="docinfo/abstract"/> + <xsl:apply-templates mode="part.titlepage.recto.auto.mode" select="info/abstract"/> +</xsl:template> + +<xsl:template name="part.titlepage.verso"> +</xsl:template> + +<xsl:template name="part.titlepage.separator"> +</xsl:template> + +<xsl:template name="part.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="part.titlepage.before.verso"> +</xsl:template> + +<xsl:template name="part.titlepage"> + <div class="titlepage"> + <xsl:variable name="recto.content"> + <xsl:call-template name="part.titlepage.before.recto"/> + <xsl:call-template name="part.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <div><xsl:copy-of select="$recto.content"/></div> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="part.titlepage.before.verso"/> + <xsl:call-template name="part.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <div><xsl:copy-of select="$verso.content"/></div> + </xsl:if> + <xsl:call-template name="part.titlepage.separator"/> + </div> +</xsl:template> + +<xsl:template match="*" mode="part.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="part.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="subtitle" mode="part.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="part.titlepage.recto.style"> +<xsl:apply-templates select="." mode="part.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="corpauthor" mode="part.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="part.titlepage.recto.style"> +<xsl:apply-templates select="." mode="part.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="authorgroup" mode="part.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="part.titlepage.recto.style"> +<xsl:apply-templates select="." mode="part.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="author" mode="part.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="part.titlepage.recto.style"> +<xsl:apply-templates select="." mode="part.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="othercredit" mode="part.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="part.titlepage.recto.style"> +<xsl:apply-templates select="." mode="part.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="releaseinfo" mode="part.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="part.titlepage.recto.style"> +<xsl:apply-templates select="." mode="part.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="copyright" mode="part.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="part.titlepage.recto.style"> +<xsl:apply-templates select="." mode="part.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="legalnotice" mode="part.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="part.titlepage.recto.style"> +<xsl:apply-templates select="." mode="part.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="pubdate" mode="part.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="part.titlepage.recto.style"> +<xsl:apply-templates select="." mode="part.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="revision" mode="part.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="part.titlepage.recto.style"> +<xsl:apply-templates select="." mode="part.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="revhistory" mode="part.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="part.titlepage.recto.style"> +<xsl:apply-templates select="." mode="part.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="abstract" mode="part.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="part.titlepage.recto.style"> +<xsl:apply-templates select="." mode="part.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template name="partintro.titlepage.recto"> + <xsl:choose> + <xsl:when test="partintroinfo/title"> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="partintroinfo/title"/> + </xsl:when> + <xsl:when test="docinfo/title"> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="docinfo/title"/> + </xsl:when> + <xsl:when test="info/title"> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="info/title"/> + </xsl:when> + <xsl:when test="title"> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="title"/> + </xsl:when> + </xsl:choose> + + <xsl:choose> + <xsl:when test="partintroinfo/subtitle"> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="partintroinfo/subtitle"/> + </xsl:when> + <xsl:when test="docinfo/subtitle"> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="docinfo/subtitle"/> + </xsl:when> + <xsl:when test="info/subtitle"> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="info/subtitle"/> + </xsl:when> + <xsl:when test="subtitle"> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="subtitle"/> + </xsl:when> + </xsl:choose> + + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="partintroinfo/corpauthor"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="docinfo/corpauthor"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="info/corpauthor"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="partintroinfo/authorgroup"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="docinfo/authorgroup"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="info/authorgroup"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="partintroinfo/author"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="docinfo/author"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="info/author"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="partintroinfo/othercredit"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="docinfo/othercredit"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="info/othercredit"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="partintroinfo/releaseinfo"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="docinfo/releaseinfo"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="info/releaseinfo"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="partintroinfo/copyright"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="docinfo/copyright"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="info/copyright"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="partintroinfo/legalnotice"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="docinfo/legalnotice"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="info/legalnotice"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="partintroinfo/pubdate"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="docinfo/pubdate"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="info/pubdate"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="partintroinfo/revision"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="docinfo/revision"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="info/revision"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="partintroinfo/revhistory"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="docinfo/revhistory"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="info/revhistory"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="partintroinfo/abstract"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="docinfo/abstract"/> + <xsl:apply-templates mode="partintro.titlepage.recto.auto.mode" select="info/abstract"/> +</xsl:template> + +<xsl:template name="partintro.titlepage.verso"> +</xsl:template> + +<xsl:template name="partintro.titlepage.separator"> +</xsl:template> + +<xsl:template name="partintro.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="partintro.titlepage.before.verso"> +</xsl:template> + +<xsl:template name="partintro.titlepage"> + <div> + <xsl:variable name="recto.content"> + <xsl:call-template name="partintro.titlepage.before.recto"/> + <xsl:call-template name="partintro.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <div><xsl:copy-of select="$recto.content"/></div> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="partintro.titlepage.before.verso"/> + <xsl:call-template name="partintro.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <div><xsl:copy-of select="$verso.content"/></div> + </xsl:if> + <xsl:call-template name="partintro.titlepage.separator"/> + </div> +</xsl:template> + +<xsl:template match="*" mode="partintro.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="partintro.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="title" mode="partintro.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="partintro.titlepage.recto.style"> +<xsl:apply-templates select="." mode="partintro.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="subtitle" mode="partintro.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="partintro.titlepage.recto.style"> +<xsl:apply-templates select="." mode="partintro.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="corpauthor" mode="partintro.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="partintro.titlepage.recto.style"> +<xsl:apply-templates select="." mode="partintro.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="authorgroup" mode="partintro.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="partintro.titlepage.recto.style"> +<xsl:apply-templates select="." mode="partintro.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="author" mode="partintro.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="partintro.titlepage.recto.style"> +<xsl:apply-templates select="." mode="partintro.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="othercredit" mode="partintro.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="partintro.titlepage.recto.style"> +<xsl:apply-templates select="." mode="partintro.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="releaseinfo" mode="partintro.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="partintro.titlepage.recto.style"> +<xsl:apply-templates select="." mode="partintro.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="copyright" mode="partintro.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="partintro.titlepage.recto.style"> +<xsl:apply-templates select="." mode="partintro.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="legalnotice" mode="partintro.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="partintro.titlepage.recto.style"> +<xsl:apply-templates select="." mode="partintro.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="pubdate" mode="partintro.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="partintro.titlepage.recto.style"> +<xsl:apply-templates select="." mode="partintro.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="revision" mode="partintro.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="partintro.titlepage.recto.style"> +<xsl:apply-templates select="." mode="partintro.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="revhistory" mode="partintro.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="partintro.titlepage.recto.style"> +<xsl:apply-templates select="." mode="partintro.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="abstract" mode="partintro.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="partintro.titlepage.recto.style"> +<xsl:apply-templates select="." mode="partintro.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template name="reference.titlepage.recto"> + <xsl:choose> + <xsl:when test="referenceinfo/title"> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="referenceinfo/title"/> + </xsl:when> + <xsl:when test="docinfo/title"> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="docinfo/title"/> + </xsl:when> + <xsl:when test="info/title"> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="info/title"/> + </xsl:when> + <xsl:when test="title"> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="title"/> + </xsl:when> + </xsl:choose> + + <xsl:choose> + <xsl:when test="referenceinfo/subtitle"> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="referenceinfo/subtitle"/> + </xsl:when> + <xsl:when test="docinfo/subtitle"> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="docinfo/subtitle"/> + </xsl:when> + <xsl:when test="info/subtitle"> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="info/subtitle"/> + </xsl:when> + <xsl:when test="subtitle"> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="subtitle"/> + </xsl:when> + </xsl:choose> + + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="referenceinfo/corpauthor"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="docinfo/corpauthor"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="info/corpauthor"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="referenceinfo/authorgroup"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="docinfo/authorgroup"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="info/authorgroup"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="referenceinfo/author"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="docinfo/author"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="info/author"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="referenceinfo/othercredit"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="docinfo/othercredit"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="info/othercredit"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="referenceinfo/releaseinfo"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="docinfo/releaseinfo"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="info/releaseinfo"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="referenceinfo/copyright"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="docinfo/copyright"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="info/copyright"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="referenceinfo/legalnotice"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="docinfo/legalnotice"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="info/legalnotice"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="referenceinfo/pubdate"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="docinfo/pubdate"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="info/pubdate"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="referenceinfo/revision"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="docinfo/revision"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="info/revision"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="referenceinfo/revhistory"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="docinfo/revhistory"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="info/revhistory"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="referenceinfo/abstract"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="docinfo/abstract"/> + <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="info/abstract"/> +</xsl:template> + +<xsl:template name="reference.titlepage.verso"> +</xsl:template> + +<xsl:template name="reference.titlepage.separator"><hr/> +</xsl:template> + +<xsl:template name="reference.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="reference.titlepage.before.verso"> +</xsl:template> + +<xsl:template name="reference.titlepage"> + <div class="titlepage"> + <xsl:variable name="recto.content"> + <xsl:call-template name="reference.titlepage.before.recto"/> + <xsl:call-template name="reference.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <div><xsl:copy-of select="$recto.content"/></div> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="reference.titlepage.before.verso"/> + <xsl:call-template name="reference.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <div><xsl:copy-of select="$verso.content"/></div> + </xsl:if> + <xsl:call-template name="reference.titlepage.separator"/> + </div> +</xsl:template> + +<xsl:template match="*" mode="reference.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="reference.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="title" mode="reference.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="reference.titlepage.recto.style"> +<xsl:apply-templates select="." mode="reference.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="subtitle" mode="reference.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="reference.titlepage.recto.style"> +<xsl:apply-templates select="." mode="reference.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="corpauthor" mode="reference.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="reference.titlepage.recto.style"> +<xsl:apply-templates select="." mode="reference.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="authorgroup" mode="reference.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="reference.titlepage.recto.style"> +<xsl:apply-templates select="." mode="reference.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="author" mode="reference.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="reference.titlepage.recto.style"> +<xsl:apply-templates select="." mode="reference.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="othercredit" mode="reference.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="reference.titlepage.recto.style"> +<xsl:apply-templates select="." mode="reference.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="releaseinfo" mode="reference.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="reference.titlepage.recto.style"> +<xsl:apply-templates select="." mode="reference.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="copyright" mode="reference.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="reference.titlepage.recto.style"> +<xsl:apply-templates select="." mode="reference.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="legalnotice" mode="reference.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="reference.titlepage.recto.style"> +<xsl:apply-templates select="." mode="reference.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="pubdate" mode="reference.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="reference.titlepage.recto.style"> +<xsl:apply-templates select="." mode="reference.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="revision" mode="reference.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="reference.titlepage.recto.style"> +<xsl:apply-templates select="." mode="reference.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="revhistory" mode="reference.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="reference.titlepage.recto.style"> +<xsl:apply-templates select="." mode="reference.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="abstract" mode="reference.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="reference.titlepage.recto.style"> +<xsl:apply-templates select="." mode="reference.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template name="refentry.titlepage.recto"> +</xsl:template> + +<xsl:template name="refentry.titlepage.verso"> +</xsl:template> + +<xsl:template name="refentry.titlepage.separator"> +</xsl:template> + +<xsl:template name="refentry.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="refentry.titlepage.before.verso"> +</xsl:template> + +<xsl:template name="refentry.titlepage"> + <div class="titlepage"> + <xsl:variable name="recto.content"> + <xsl:call-template name="refentry.titlepage.before.recto"/> + <xsl:call-template name="refentry.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <div><xsl:copy-of select="$recto.content"/></div> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="refentry.titlepage.before.verso"/> + <xsl:call-template name="refentry.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <div><xsl:copy-of select="$verso.content"/></div> + </xsl:if> + <xsl:call-template name="refentry.titlepage.separator"/> + </div> +</xsl:template> + +<xsl:template match="*" mode="refentry.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="refentry.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template name="dedication.titlepage.recto"> + <div xsl:use-attribute-sets="dedication.titlepage.recto.style"> +<xsl:call-template name="component.title"> +<xsl:with-param name="node" select="ancestor-or-self::dedication[1]"/> +</xsl:call-template></div> + <xsl:choose> + <xsl:when test="dedicationinfo/subtitle"> + <xsl:apply-templates mode="dedication.titlepage.recto.auto.mode" select="dedicationinfo/subtitle"/> + </xsl:when> + <xsl:when test="docinfo/subtitle"> + <xsl:apply-templates mode="dedication.titlepage.recto.auto.mode" select="docinfo/subtitle"/> + </xsl:when> + <xsl:when test="info/subtitle"> + <xsl:apply-templates mode="dedication.titlepage.recto.auto.mode" select="info/subtitle"/> + </xsl:when> + <xsl:when test="subtitle"> + <xsl:apply-templates mode="dedication.titlepage.recto.auto.mode" select="subtitle"/> + </xsl:when> + </xsl:choose> + +</xsl:template> + +<xsl:template name="dedication.titlepage.verso"> +</xsl:template> + +<xsl:template name="dedication.titlepage.separator"> +</xsl:template> + +<xsl:template name="dedication.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="dedication.titlepage.before.verso"> +</xsl:template> + +<xsl:template name="dedication.titlepage"> + <div class="titlepage"> + <xsl:variable name="recto.content"> + <xsl:call-template name="dedication.titlepage.before.recto"/> + <xsl:call-template name="dedication.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <div><xsl:copy-of select="$recto.content"/></div> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="dedication.titlepage.before.verso"/> + <xsl:call-template name="dedication.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <div><xsl:copy-of select="$verso.content"/></div> + </xsl:if> + <xsl:call-template name="dedication.titlepage.separator"/> + </div> +</xsl:template> + +<xsl:template match="*" mode="dedication.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="dedication.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="subtitle" mode="dedication.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="dedication.titlepage.recto.style"> +<xsl:apply-templates select="." mode="dedication.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template name="acknowledgements.titlepage.recto"> + <div xsl:use-attribute-sets="acknowledgements.titlepage.recto.style"> +<xsl:call-template name="component.title"> +<xsl:with-param name="node" select="ancestor-or-self::acknowledgements[1]"/> +</xsl:call-template></div> + <xsl:choose> + <xsl:when test="acknowledgementsinfo/subtitle"> + <xsl:apply-templates mode="acknowledgements.titlepage.recto.auto.mode" select="acknowledgementsinfo/subtitle"/> + </xsl:when> + <xsl:when test="docinfo/subtitle"> + <xsl:apply-templates mode="acknowledgements.titlepage.recto.auto.mode" select="docinfo/subtitle"/> + </xsl:when> + <xsl:when test="info/subtitle"> + <xsl:apply-templates mode="acknowledgements.titlepage.recto.auto.mode" select="info/subtitle"/> + </xsl:when> + <xsl:when test="subtitle"> + <xsl:apply-templates mode="acknowledgements.titlepage.recto.auto.mode" select="subtitle"/> + </xsl:when> + </xsl:choose> + +</xsl:template> + +<xsl:template name="acknowledgements.titlepage.verso"> +</xsl:template> + +<xsl:template name="acknowledgements.titlepage.separator"> +</xsl:template> + +<xsl:template name="acknowledgements.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="acknowledgements.titlepage.before.verso"> +</xsl:template> + +<xsl:template name="acknowledgements.titlepage"> + <div class="titlepage"> + <xsl:variable name="recto.content"> + <xsl:call-template name="acknowledgements.titlepage.before.recto"/> + <xsl:call-template name="acknowledgements.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <div><xsl:copy-of select="$recto.content"/></div> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="acknowledgements.titlepage.before.verso"/> + <xsl:call-template name="acknowledgements.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <div><xsl:copy-of select="$verso.content"/></div> + </xsl:if> + <xsl:call-template name="acknowledgements.titlepage.separator"/> + </div> +</xsl:template> + +<xsl:template match="*" mode="acknowledgements.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="acknowledgements.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="subtitle" mode="acknowledgements.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="acknowledgements.titlepage.recto.style"> +<xsl:apply-templates select="." mode="acknowledgements.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template name="preface.titlepage.recto"> + <xsl:choose> + <xsl:when test="prefaceinfo/title"> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="prefaceinfo/title"/> + </xsl:when> + <xsl:when test="docinfo/title"> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="docinfo/title"/> + </xsl:when> + <xsl:when test="info/title"> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="info/title"/> + </xsl:when> + <xsl:when test="title"> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="title"/> + </xsl:when> + </xsl:choose> + + <xsl:choose> + <xsl:when test="prefaceinfo/subtitle"> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="prefaceinfo/subtitle"/> + </xsl:when> + <xsl:when test="docinfo/subtitle"> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="docinfo/subtitle"/> + </xsl:when> + <xsl:when test="info/subtitle"> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="info/subtitle"/> + </xsl:when> + <xsl:when test="subtitle"> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="subtitle"/> + </xsl:when> + </xsl:choose> + + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="prefaceinfo/corpauthor"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="docinfo/corpauthor"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="info/corpauthor"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="prefaceinfo/authorgroup"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="docinfo/authorgroup"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="info/authorgroup"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="prefaceinfo/author"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="docinfo/author"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="info/author"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="prefaceinfo/othercredit"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="docinfo/othercredit"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="info/othercredit"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="prefaceinfo/releaseinfo"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="docinfo/releaseinfo"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="info/releaseinfo"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="prefaceinfo/copyright"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="docinfo/copyright"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="info/copyright"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="prefaceinfo/legalnotice"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="docinfo/legalnotice"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="info/legalnotice"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="prefaceinfo/pubdate"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="docinfo/pubdate"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="info/pubdate"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="prefaceinfo/revision"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="docinfo/revision"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="info/revision"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="prefaceinfo/revhistory"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="docinfo/revhistory"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="info/revhistory"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="prefaceinfo/abstract"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="docinfo/abstract"/> + <xsl:apply-templates mode="preface.titlepage.recto.auto.mode" select="info/abstract"/> +</xsl:template> + +<xsl:template name="preface.titlepage.verso"> +</xsl:template> + +<xsl:template name="preface.titlepage.separator"> +</xsl:template> + +<xsl:template name="preface.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="preface.titlepage.before.verso"> +</xsl:template> + +<xsl:template name="preface.titlepage"> + <div class="titlepage"> + <xsl:variable name="recto.content"> + <xsl:call-template name="preface.titlepage.before.recto"/> + <xsl:call-template name="preface.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <div><xsl:copy-of select="$recto.content"/></div> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="preface.titlepage.before.verso"/> + <xsl:call-template name="preface.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <div><xsl:copy-of select="$verso.content"/></div> + </xsl:if> + <xsl:call-template name="preface.titlepage.separator"/> + </div> +</xsl:template> + +<xsl:template match="*" mode="preface.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="preface.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="title" mode="preface.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="preface.titlepage.recto.style"> +<xsl:apply-templates select="." mode="preface.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="subtitle" mode="preface.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="preface.titlepage.recto.style"> +<xsl:apply-templates select="." mode="preface.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="corpauthor" mode="preface.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="preface.titlepage.recto.style"> +<xsl:apply-templates select="." mode="preface.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="authorgroup" mode="preface.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="preface.titlepage.recto.style"> +<xsl:apply-templates select="." mode="preface.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="author" mode="preface.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="preface.titlepage.recto.style"> +<xsl:apply-templates select="." mode="preface.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="othercredit" mode="preface.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="preface.titlepage.recto.style"> +<xsl:apply-templates select="." mode="preface.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="releaseinfo" mode="preface.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="preface.titlepage.recto.style"> +<xsl:apply-templates select="." mode="preface.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="copyright" mode="preface.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="preface.titlepage.recto.style"> +<xsl:apply-templates select="." mode="preface.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="legalnotice" mode="preface.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="preface.titlepage.recto.style"> +<xsl:apply-templates select="." mode="preface.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="pubdate" mode="preface.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="preface.titlepage.recto.style"> +<xsl:apply-templates select="." mode="preface.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="revision" mode="preface.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="preface.titlepage.recto.style"> +<xsl:apply-templates select="." mode="preface.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="revhistory" mode="preface.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="preface.titlepage.recto.style"> +<xsl:apply-templates select="." mode="preface.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="abstract" mode="preface.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="preface.titlepage.recto.style"> +<xsl:apply-templates select="." mode="preface.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template name="chapter.titlepage.recto"> + <xsl:choose> + <xsl:when test="chapterinfo/title"> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="chapterinfo/title"/> + </xsl:when> + <xsl:when test="docinfo/title"> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="docinfo/title"/> + </xsl:when> + <xsl:when test="info/title"> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="info/title"/> + </xsl:when> + <xsl:when test="title"> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="title"/> + </xsl:when> + </xsl:choose> + + <xsl:choose> + <xsl:when test="chapterinfo/subtitle"> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="chapterinfo/subtitle"/> + </xsl:when> + <xsl:when test="docinfo/subtitle"> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="docinfo/subtitle"/> + </xsl:when> + <xsl:when test="info/subtitle"> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="info/subtitle"/> + </xsl:when> + <xsl:when test="subtitle"> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="subtitle"/> + </xsl:when> + </xsl:choose> + + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="chapterinfo/corpauthor"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="docinfo/corpauthor"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="info/corpauthor"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="chapterinfo/authorgroup"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="docinfo/authorgroup"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="info/authorgroup"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="chapterinfo/author"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="docinfo/author"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="info/author"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="chapterinfo/othercredit"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="docinfo/othercredit"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="info/othercredit"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="chapterinfo/releaseinfo"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="docinfo/releaseinfo"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="info/releaseinfo"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="chapterinfo/copyright"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="docinfo/copyright"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="info/copyright"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="chapterinfo/legalnotice"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="docinfo/legalnotice"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="info/legalnotice"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="chapterinfo/pubdate"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="docinfo/pubdate"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="info/pubdate"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="chapterinfo/revision"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="docinfo/revision"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="info/revision"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="chapterinfo/revhistory"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="docinfo/revhistory"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="info/revhistory"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="chapterinfo/abstract"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="docinfo/abstract"/> + <xsl:apply-templates mode="chapter.titlepage.recto.auto.mode" select="info/abstract"/> +</xsl:template> + +<xsl:template name="chapter.titlepage.verso"> +</xsl:template> + +<xsl:template name="chapter.titlepage.separator"> +</xsl:template> + +<xsl:template name="chapter.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="chapter.titlepage.before.verso"> +</xsl:template> + +<xsl:template name="chapter.titlepage"> + <div class="titlepage"> + <xsl:variable name="recto.content"> + <xsl:call-template name="chapter.titlepage.before.recto"/> + <xsl:call-template name="chapter.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <div><xsl:copy-of select="$recto.content"/></div> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="chapter.titlepage.before.verso"/> + <xsl:call-template name="chapter.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <div><xsl:copy-of select="$verso.content"/></div> + </xsl:if> + <xsl:call-template name="chapter.titlepage.separator"/> + </div> +</xsl:template> + +<xsl:template match="*" mode="chapter.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="chapter.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="title" mode="chapter.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="chapter.titlepage.recto.style"> +<xsl:apply-templates select="." mode="chapter.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="subtitle" mode="chapter.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="chapter.titlepage.recto.style"> +<xsl:apply-templates select="." mode="chapter.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="corpauthor" mode="chapter.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="chapter.titlepage.recto.style"> +<xsl:apply-templates select="." mode="chapter.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="authorgroup" mode="chapter.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="chapter.titlepage.recto.style"> +<xsl:apply-templates select="." mode="chapter.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="author" mode="chapter.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="chapter.titlepage.recto.style"> +<xsl:apply-templates select="." mode="chapter.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="othercredit" mode="chapter.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="chapter.titlepage.recto.style"> +<xsl:apply-templates select="." mode="chapter.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="releaseinfo" mode="chapter.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="chapter.titlepage.recto.style"> +<xsl:apply-templates select="." mode="chapter.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="copyright" mode="chapter.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="chapter.titlepage.recto.style"> +<xsl:apply-templates select="." mode="chapter.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="legalnotice" mode="chapter.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="chapter.titlepage.recto.style"> +<xsl:apply-templates select="." mode="chapter.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="pubdate" mode="chapter.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="chapter.titlepage.recto.style"> +<xsl:apply-templates select="." mode="chapter.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="revision" mode="chapter.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="chapter.titlepage.recto.style"> +<xsl:apply-templates select="." mode="chapter.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="revhistory" mode="chapter.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="chapter.titlepage.recto.style"> +<xsl:apply-templates select="." mode="chapter.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="abstract" mode="chapter.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="chapter.titlepage.recto.style"> +<xsl:apply-templates select="." mode="chapter.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template name="appendix.titlepage.recto"> + <xsl:choose> + <xsl:when test="appendixinfo/title"> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="appendixinfo/title"/> + </xsl:when> + <xsl:when test="docinfo/title"> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="docinfo/title"/> + </xsl:when> + <xsl:when test="info/title"> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="info/title"/> + </xsl:when> + <xsl:when test="title"> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="title"/> + </xsl:when> + </xsl:choose> + + <xsl:choose> + <xsl:when test="appendixinfo/subtitle"> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="appendixinfo/subtitle"/> + </xsl:when> + <xsl:when test="docinfo/subtitle"> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="docinfo/subtitle"/> + </xsl:when> + <xsl:when test="info/subtitle"> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="info/subtitle"/> + </xsl:when> + <xsl:when test="subtitle"> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="subtitle"/> + </xsl:when> + </xsl:choose> + + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="appendixinfo/corpauthor"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="docinfo/corpauthor"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="info/corpauthor"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="appendixinfo/authorgroup"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="docinfo/authorgroup"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="info/authorgroup"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="appendixinfo/author"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="docinfo/author"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="info/author"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="appendixinfo/othercredit"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="docinfo/othercredit"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="info/othercredit"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="appendixinfo/releaseinfo"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="docinfo/releaseinfo"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="info/releaseinfo"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="appendixinfo/copyright"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="docinfo/copyright"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="info/copyright"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="appendixinfo/legalnotice"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="docinfo/legalnotice"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="info/legalnotice"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="appendixinfo/pubdate"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="docinfo/pubdate"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="info/pubdate"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="appendixinfo/revision"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="docinfo/revision"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="info/revision"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="appendixinfo/revhistory"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="docinfo/revhistory"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="info/revhistory"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="appendixinfo/abstract"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="docinfo/abstract"/> + <xsl:apply-templates mode="appendix.titlepage.recto.auto.mode" select="info/abstract"/> +</xsl:template> + +<xsl:template name="appendix.titlepage.verso"> +</xsl:template> + +<xsl:template name="appendix.titlepage.separator"> +</xsl:template> + +<xsl:template name="appendix.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="appendix.titlepage.before.verso"> +</xsl:template> + +<xsl:template name="appendix.titlepage"> + <div class="titlepage"> + <xsl:variable name="recto.content"> + <xsl:call-template name="appendix.titlepage.before.recto"/> + <xsl:call-template name="appendix.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <div><xsl:copy-of select="$recto.content"/></div> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="appendix.titlepage.before.verso"/> + <xsl:call-template name="appendix.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <div><xsl:copy-of select="$verso.content"/></div> + </xsl:if> + <xsl:call-template name="appendix.titlepage.separator"/> + </div> +</xsl:template> + +<xsl:template match="*" mode="appendix.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="appendix.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="title" mode="appendix.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="appendix.titlepage.recto.style"> +<xsl:apply-templates select="." mode="appendix.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="subtitle" mode="appendix.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="appendix.titlepage.recto.style"> +<xsl:apply-templates select="." mode="appendix.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="corpauthor" mode="appendix.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="appendix.titlepage.recto.style"> +<xsl:apply-templates select="." mode="appendix.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="authorgroup" mode="appendix.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="appendix.titlepage.recto.style"> +<xsl:apply-templates select="." mode="appendix.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="author" mode="appendix.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="appendix.titlepage.recto.style"> +<xsl:apply-templates select="." mode="appendix.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="othercredit" mode="appendix.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="appendix.titlepage.recto.style"> +<xsl:apply-templates select="." mode="appendix.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="releaseinfo" mode="appendix.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="appendix.titlepage.recto.style"> +<xsl:apply-templates select="." mode="appendix.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="copyright" mode="appendix.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="appendix.titlepage.recto.style"> +<xsl:apply-templates select="." mode="appendix.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="legalnotice" mode="appendix.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="appendix.titlepage.recto.style"> +<xsl:apply-templates select="." mode="appendix.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="pubdate" mode="appendix.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="appendix.titlepage.recto.style"> +<xsl:apply-templates select="." mode="appendix.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="revision" mode="appendix.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="appendix.titlepage.recto.style"> +<xsl:apply-templates select="." mode="appendix.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="revhistory" mode="appendix.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="appendix.titlepage.recto.style"> +<xsl:apply-templates select="." mode="appendix.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="abstract" mode="appendix.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="appendix.titlepage.recto.style"> +<xsl:apply-templates select="." mode="appendix.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template name="section.titlepage.recto"> + <xsl:choose> + <xsl:when test="sectioninfo/title"> + <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="sectioninfo/title"/> + </xsl:when> + <xsl:when test="info/title"> + <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="info/title"/> + </xsl:when> + <xsl:when test="title"> + <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="title"/> + </xsl:when> + </xsl:choose> + + <xsl:choose> + <xsl:when test="sectioninfo/subtitle"> + <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="sectioninfo/subtitle"/> + </xsl:when> + <xsl:when test="info/subtitle"> + <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="info/subtitle"/> + </xsl:when> + <xsl:when test="subtitle"> + <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="subtitle"/> + </xsl:when> + </xsl:choose> + + <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="sectioninfo/corpauthor"/> + <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="info/corpauthor"/> + <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="sectioninfo/authorgroup"/> + <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="info/authorgroup"/> + <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="sectioninfo/author"/> + <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="info/author"/> + <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="sectioninfo/othercredit"/> + <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="info/othercredit"/> + <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="sectioninfo/releaseinfo"/> + <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="info/releaseinfo"/> + <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="sectioninfo/copyright"/> + <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="info/copyright"/> + <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="sectioninfo/legalnotice"/> + <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="info/legalnotice"/> + <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="sectioninfo/pubdate"/> + <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="info/pubdate"/> + <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="sectioninfo/revision"/> + <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="info/revision"/> + <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="sectioninfo/revhistory"/> + <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="info/revhistory"/> + <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="sectioninfo/abstract"/> + <xsl:apply-templates mode="section.titlepage.recto.auto.mode" select="info/abstract"/> +</xsl:template> + +<xsl:template name="section.titlepage.verso"> +</xsl:template> + +<xsl:template name="section.titlepage.separator"><xsl:if test="count(parent::*)='0'"><hr/></xsl:if> +</xsl:template> + +<xsl:template name="section.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="section.titlepage.before.verso"> +</xsl:template> + +<xsl:template name="section.titlepage"> + <div class="titlepage"> + <xsl:variable name="recto.content"> + <xsl:call-template name="section.titlepage.before.recto"/> + <xsl:call-template name="section.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <div><xsl:copy-of select="$recto.content"/></div> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="section.titlepage.before.verso"/> + <xsl:call-template name="section.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <div><xsl:copy-of select="$verso.content"/></div> + </xsl:if> + <xsl:call-template name="section.titlepage.separator"/> + </div> +</xsl:template> + +<xsl:template match="*" mode="section.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="section.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="title" mode="section.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="section.titlepage.recto.style"> +<xsl:apply-templates select="." mode="section.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="subtitle" mode="section.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="section.titlepage.recto.style"> +<xsl:apply-templates select="." mode="section.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="corpauthor" mode="section.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="section.titlepage.recto.style"> +<xsl:apply-templates select="." mode="section.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="authorgroup" mode="section.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="section.titlepage.recto.style"> +<xsl:apply-templates select="." mode="section.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="author" mode="section.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="section.titlepage.recto.style"> +<xsl:apply-templates select="." mode="section.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="othercredit" mode="section.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="section.titlepage.recto.style"> +<xsl:apply-templates select="." mode="section.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="releaseinfo" mode="section.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="section.titlepage.recto.style"> +<xsl:apply-templates select="." mode="section.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="copyright" mode="section.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="section.titlepage.recto.style"> +<xsl:apply-templates select="." mode="section.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="legalnotice" mode="section.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="section.titlepage.recto.style"> +<xsl:apply-templates select="." mode="section.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="pubdate" mode="section.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="section.titlepage.recto.style"> +<xsl:apply-templates select="." mode="section.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="revision" mode="section.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="section.titlepage.recto.style"> +<xsl:apply-templates select="." mode="section.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="revhistory" mode="section.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="section.titlepage.recto.style"> +<xsl:apply-templates select="." mode="section.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="abstract" mode="section.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="section.titlepage.recto.style"> +<xsl:apply-templates select="." mode="section.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template name="sect1.titlepage.recto"> + <xsl:choose> + <xsl:when test="sect1info/title"> + <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="sect1info/title"/> + </xsl:when> + <xsl:when test="info/title"> + <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="info/title"/> + </xsl:when> + <xsl:when test="title"> + <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="title"/> + </xsl:when> + </xsl:choose> + + <xsl:choose> + <xsl:when test="sect1info/subtitle"> + <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="sect1info/subtitle"/> + </xsl:when> + <xsl:when test="info/subtitle"> + <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="info/subtitle"/> + </xsl:when> + <xsl:when test="subtitle"> + <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="subtitle"/> + </xsl:when> + </xsl:choose> + + <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="sect1info/corpauthor"/> + <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="info/corpauthor"/> + <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="sect1info/authorgroup"/> + <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="info/authorgroup"/> + <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="sect1info/author"/> + <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="info/author"/> + <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="sect1info/othercredit"/> + <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="info/othercredit"/> + <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="sect1info/releaseinfo"/> + <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="info/releaseinfo"/> + <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="sect1info/copyright"/> + <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="info/copyright"/> + <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="sect1info/legalnotice"/> + <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="info/legalnotice"/> + <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="sect1info/pubdate"/> + <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="info/pubdate"/> + <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="sect1info/revision"/> + <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="info/revision"/> + <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="sect1info/revhistory"/> + <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="info/revhistory"/> + <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="sect1info/abstract"/> + <xsl:apply-templates mode="sect1.titlepage.recto.auto.mode" select="info/abstract"/> +</xsl:template> + +<xsl:template name="sect1.titlepage.verso"> +</xsl:template> + +<xsl:template name="sect1.titlepage.separator"><xsl:if test="count(parent::*)='0'"><hr/></xsl:if> +</xsl:template> + +<xsl:template name="sect1.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="sect1.titlepage.before.verso"> +</xsl:template> + +<xsl:template name="sect1.titlepage"> + <div class="titlepage"> + <xsl:variable name="recto.content"> + <xsl:call-template name="sect1.titlepage.before.recto"/> + <xsl:call-template name="sect1.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <div><xsl:copy-of select="$recto.content"/></div> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="sect1.titlepage.before.verso"/> + <xsl:call-template name="sect1.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <div><xsl:copy-of select="$verso.content"/></div> + </xsl:if> + <xsl:call-template name="sect1.titlepage.separator"/> + </div> +</xsl:template> + +<xsl:template match="*" mode="sect1.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="sect1.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="title" mode="sect1.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect1.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect1.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="subtitle" mode="sect1.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect1.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect1.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="corpauthor" mode="sect1.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect1.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect1.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="authorgroup" mode="sect1.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect1.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect1.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="author" mode="sect1.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect1.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect1.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="othercredit" mode="sect1.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect1.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect1.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="releaseinfo" mode="sect1.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect1.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect1.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="copyright" mode="sect1.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect1.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect1.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="legalnotice" mode="sect1.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect1.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect1.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="pubdate" mode="sect1.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect1.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect1.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="revision" mode="sect1.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect1.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect1.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="revhistory" mode="sect1.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect1.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect1.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="abstract" mode="sect1.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect1.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect1.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template name="sect2.titlepage.recto"> + <xsl:choose> + <xsl:when test="sect2info/title"> + <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="sect2info/title"/> + </xsl:when> + <xsl:when test="info/title"> + <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="info/title"/> + </xsl:when> + <xsl:when test="title"> + <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="title"/> + </xsl:when> + </xsl:choose> + + <xsl:choose> + <xsl:when test="sect2info/subtitle"> + <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="sect2info/subtitle"/> + </xsl:when> + <xsl:when test="info/subtitle"> + <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="info/subtitle"/> + </xsl:when> + <xsl:when test="subtitle"> + <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="subtitle"/> + </xsl:when> + </xsl:choose> + + <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="sect2info/corpauthor"/> + <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="info/corpauthor"/> + <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="sect2info/authorgroup"/> + <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="info/authorgroup"/> + <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="sect2info/author"/> + <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="info/author"/> + <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="sect2info/othercredit"/> + <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="info/othercredit"/> + <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="sect2info/releaseinfo"/> + <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="info/releaseinfo"/> + <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="sect2info/copyright"/> + <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="info/copyright"/> + <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="sect2info/legalnotice"/> + <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="info/legalnotice"/> + <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="sect2info/pubdate"/> + <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="info/pubdate"/> + <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="sect2info/revision"/> + <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="info/revision"/> + <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="sect2info/revhistory"/> + <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="info/revhistory"/> + <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="sect2info/abstract"/> + <xsl:apply-templates mode="sect2.titlepage.recto.auto.mode" select="info/abstract"/> +</xsl:template> + +<xsl:template name="sect2.titlepage.verso"> +</xsl:template> + +<xsl:template name="sect2.titlepage.separator"><xsl:if test="count(parent::*)='0'"><hr/></xsl:if> +</xsl:template> + +<xsl:template name="sect2.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="sect2.titlepage.before.verso"> +</xsl:template> + +<xsl:template name="sect2.titlepage"> + <div class="titlepage"> + <xsl:variable name="recto.content"> + <xsl:call-template name="sect2.titlepage.before.recto"/> + <xsl:call-template name="sect2.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <div><xsl:copy-of select="$recto.content"/></div> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="sect2.titlepage.before.verso"/> + <xsl:call-template name="sect2.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <div><xsl:copy-of select="$verso.content"/></div> + </xsl:if> + <xsl:call-template name="sect2.titlepage.separator"/> + </div> +</xsl:template> + +<xsl:template match="*" mode="sect2.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="sect2.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="title" mode="sect2.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect2.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect2.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="subtitle" mode="sect2.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect2.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect2.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="corpauthor" mode="sect2.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect2.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect2.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="authorgroup" mode="sect2.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect2.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect2.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="author" mode="sect2.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect2.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect2.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="othercredit" mode="sect2.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect2.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect2.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="releaseinfo" mode="sect2.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect2.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect2.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="copyright" mode="sect2.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect2.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect2.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="legalnotice" mode="sect2.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect2.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect2.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="pubdate" mode="sect2.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect2.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect2.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="revision" mode="sect2.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect2.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect2.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="revhistory" mode="sect2.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect2.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect2.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="abstract" mode="sect2.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect2.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect2.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template name="sect3.titlepage.recto"> + <xsl:choose> + <xsl:when test="sect3info/title"> + <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="sect3info/title"/> + </xsl:when> + <xsl:when test="info/title"> + <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="info/title"/> + </xsl:when> + <xsl:when test="title"> + <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="title"/> + </xsl:when> + </xsl:choose> + + <xsl:choose> + <xsl:when test="sect3info/subtitle"> + <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="sect3info/subtitle"/> + </xsl:when> + <xsl:when test="info/subtitle"> + <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="info/subtitle"/> + </xsl:when> + <xsl:when test="subtitle"> + <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="subtitle"/> + </xsl:when> + </xsl:choose> + + <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="sect3info/corpauthor"/> + <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="info/corpauthor"/> + <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="sect3info/authorgroup"/> + <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="info/authorgroup"/> + <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="sect3info/author"/> + <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="info/author"/> + <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="sect3info/othercredit"/> + <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="info/othercredit"/> + <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="sect3info/releaseinfo"/> + <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="info/releaseinfo"/> + <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="sect3info/copyright"/> + <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="info/copyright"/> + <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="sect3info/legalnotice"/> + <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="info/legalnotice"/> + <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="sect3info/pubdate"/> + <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="info/pubdate"/> + <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="sect3info/revision"/> + <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="info/revision"/> + <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="sect3info/revhistory"/> + <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="info/revhistory"/> + <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="sect3info/abstract"/> + <xsl:apply-templates mode="sect3.titlepage.recto.auto.mode" select="info/abstract"/> +</xsl:template> + +<xsl:template name="sect3.titlepage.verso"> +</xsl:template> + +<xsl:template name="sect3.titlepage.separator"><xsl:if test="count(parent::*)='0'"><hr/></xsl:if> +</xsl:template> + +<xsl:template name="sect3.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="sect3.titlepage.before.verso"> +</xsl:template> + +<xsl:template name="sect3.titlepage"> + <div class="titlepage"> + <xsl:variable name="recto.content"> + <xsl:call-template name="sect3.titlepage.before.recto"/> + <xsl:call-template name="sect3.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <div><xsl:copy-of select="$recto.content"/></div> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="sect3.titlepage.before.verso"/> + <xsl:call-template name="sect3.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <div><xsl:copy-of select="$verso.content"/></div> + </xsl:if> + <xsl:call-template name="sect3.titlepage.separator"/> + </div> +</xsl:template> + +<xsl:template match="*" mode="sect3.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="sect3.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="title" mode="sect3.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect3.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect3.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="subtitle" mode="sect3.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect3.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect3.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="corpauthor" mode="sect3.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect3.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect3.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="authorgroup" mode="sect3.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect3.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect3.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="author" mode="sect3.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect3.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect3.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="othercredit" mode="sect3.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect3.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect3.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="releaseinfo" mode="sect3.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect3.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect3.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="copyright" mode="sect3.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect3.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect3.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="legalnotice" mode="sect3.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect3.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect3.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="pubdate" mode="sect3.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect3.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect3.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="revision" mode="sect3.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect3.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect3.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="revhistory" mode="sect3.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect3.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect3.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="abstract" mode="sect3.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect3.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect3.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template name="sect4.titlepage.recto"> + <xsl:choose> + <xsl:when test="sect4info/title"> + <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="sect4info/title"/> + </xsl:when> + <xsl:when test="info/title"> + <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="info/title"/> + </xsl:when> + <xsl:when test="title"> + <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="title"/> + </xsl:when> + </xsl:choose> + + <xsl:choose> + <xsl:when test="sect4info/subtitle"> + <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="sect4info/subtitle"/> + </xsl:when> + <xsl:when test="info/subtitle"> + <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="info/subtitle"/> + </xsl:when> + <xsl:when test="subtitle"> + <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="subtitle"/> + </xsl:when> + </xsl:choose> + + <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="sect4info/corpauthor"/> + <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="info/corpauthor"/> + <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="sect4info/authorgroup"/> + <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="info/authorgroup"/> + <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="sect4info/author"/> + <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="info/author"/> + <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="sect4info/othercredit"/> + <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="info/othercredit"/> + <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="sect4info/releaseinfo"/> + <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="info/releaseinfo"/> + <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="sect4info/copyright"/> + <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="info/copyright"/> + <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="sect4info/legalnotice"/> + <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="info/legalnotice"/> + <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="sect4info/pubdate"/> + <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="info/pubdate"/> + <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="sect4info/revision"/> + <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="info/revision"/> + <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="sect4info/revhistory"/> + <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="info/revhistory"/> + <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="sect4info/abstract"/> + <xsl:apply-templates mode="sect4.titlepage.recto.auto.mode" select="info/abstract"/> +</xsl:template> + +<xsl:template name="sect4.titlepage.verso"> +</xsl:template> + +<xsl:template name="sect4.titlepage.separator"><xsl:if test="count(parent::*)='0'"><hr/></xsl:if> +</xsl:template> + +<xsl:template name="sect4.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="sect4.titlepage.before.verso"> +</xsl:template> + +<xsl:template name="sect4.titlepage"> + <div class="titlepage"> + <xsl:variable name="recto.content"> + <xsl:call-template name="sect4.titlepage.before.recto"/> + <xsl:call-template name="sect4.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <div><xsl:copy-of select="$recto.content"/></div> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="sect4.titlepage.before.verso"/> + <xsl:call-template name="sect4.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <div><xsl:copy-of select="$verso.content"/></div> + </xsl:if> + <xsl:call-template name="sect4.titlepage.separator"/> + </div> +</xsl:template> + +<xsl:template match="*" mode="sect4.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="sect4.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="title" mode="sect4.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect4.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect4.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="subtitle" mode="sect4.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect4.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect4.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="corpauthor" mode="sect4.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect4.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect4.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="authorgroup" mode="sect4.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect4.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect4.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="author" mode="sect4.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect4.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect4.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="othercredit" mode="sect4.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect4.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect4.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="releaseinfo" mode="sect4.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect4.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect4.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="copyright" mode="sect4.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect4.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect4.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="legalnotice" mode="sect4.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect4.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect4.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="pubdate" mode="sect4.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect4.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect4.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="revision" mode="sect4.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect4.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect4.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="revhistory" mode="sect4.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect4.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect4.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="abstract" mode="sect4.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect4.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect4.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template name="sect5.titlepage.recto"> + <xsl:choose> + <xsl:when test="sect5info/title"> + <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="sect5info/title"/> + </xsl:when> + <xsl:when test="info/title"> + <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="info/title"/> + </xsl:when> + <xsl:when test="title"> + <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="title"/> + </xsl:when> + </xsl:choose> + + <xsl:choose> + <xsl:when test="sect5info/subtitle"> + <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="sect5info/subtitle"/> + </xsl:when> + <xsl:when test="info/subtitle"> + <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="info/subtitle"/> + </xsl:when> + <xsl:when test="subtitle"> + <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="subtitle"/> + </xsl:when> + </xsl:choose> + + <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="sect5info/corpauthor"/> + <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="info/corpauthor"/> + <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="sect5info/authorgroup"/> + <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="info/authorgroup"/> + <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="sect5info/author"/> + <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="info/author"/> + <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="sect5info/othercredit"/> + <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="info/othercredit"/> + <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="sect5info/releaseinfo"/> + <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="info/releaseinfo"/> + <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="sect5info/copyright"/> + <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="info/copyright"/> + <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="sect5info/legalnotice"/> + <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="info/legalnotice"/> + <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="sect5info/pubdate"/> + <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="info/pubdate"/> + <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="sect5info/revision"/> + <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="info/revision"/> + <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="sect5info/revhistory"/> + <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="info/revhistory"/> + <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="sect5info/abstract"/> + <xsl:apply-templates mode="sect5.titlepage.recto.auto.mode" select="info/abstract"/> +</xsl:template> + +<xsl:template name="sect5.titlepage.verso"> +</xsl:template> + +<xsl:template name="sect5.titlepage.separator"><xsl:if test="count(parent::*)='0'"><hr/></xsl:if> +</xsl:template> + +<xsl:template name="sect5.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="sect5.titlepage.before.verso"> +</xsl:template> + +<xsl:template name="sect5.titlepage"> + <div class="titlepage"> + <xsl:variable name="recto.content"> + <xsl:call-template name="sect5.titlepage.before.recto"/> + <xsl:call-template name="sect5.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <div><xsl:copy-of select="$recto.content"/></div> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="sect5.titlepage.before.verso"/> + <xsl:call-template name="sect5.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <div><xsl:copy-of select="$verso.content"/></div> + </xsl:if> + <xsl:call-template name="sect5.titlepage.separator"/> + </div> +</xsl:template> + +<xsl:template match="*" mode="sect5.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="sect5.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="title" mode="sect5.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect5.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect5.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="subtitle" mode="sect5.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect5.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect5.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="corpauthor" mode="sect5.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect5.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect5.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="authorgroup" mode="sect5.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect5.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect5.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="author" mode="sect5.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect5.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect5.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="othercredit" mode="sect5.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect5.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect5.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="releaseinfo" mode="sect5.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect5.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect5.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="copyright" mode="sect5.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect5.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect5.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="legalnotice" mode="sect5.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect5.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect5.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="pubdate" mode="sect5.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect5.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect5.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="revision" mode="sect5.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect5.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect5.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="revhistory" mode="sect5.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect5.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect5.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="abstract" mode="sect5.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sect5.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sect5.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template name="simplesect.titlepage.recto"> + <xsl:choose> + <xsl:when test="simplesectinfo/title"> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="simplesectinfo/title"/> + </xsl:when> + <xsl:when test="docinfo/title"> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="docinfo/title"/> + </xsl:when> + <xsl:when test="info/title"> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="info/title"/> + </xsl:when> + <xsl:when test="title"> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="title"/> + </xsl:when> + </xsl:choose> + + <xsl:choose> + <xsl:when test="simplesectinfo/subtitle"> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="simplesectinfo/subtitle"/> + </xsl:when> + <xsl:when test="docinfo/subtitle"> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="docinfo/subtitle"/> + </xsl:when> + <xsl:when test="info/subtitle"> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="info/subtitle"/> + </xsl:when> + <xsl:when test="subtitle"> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="subtitle"/> + </xsl:when> + </xsl:choose> + + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="simplesectinfo/corpauthor"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="docinfo/corpauthor"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="info/corpauthor"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="simplesectinfo/authorgroup"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="docinfo/authorgroup"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="info/authorgroup"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="simplesectinfo/author"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="docinfo/author"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="info/author"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="simplesectinfo/othercredit"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="docinfo/othercredit"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="info/othercredit"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="simplesectinfo/releaseinfo"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="docinfo/releaseinfo"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="info/releaseinfo"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="simplesectinfo/copyright"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="docinfo/copyright"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="info/copyright"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="simplesectinfo/legalnotice"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="docinfo/legalnotice"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="info/legalnotice"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="simplesectinfo/pubdate"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="docinfo/pubdate"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="info/pubdate"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="simplesectinfo/revision"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="docinfo/revision"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="info/revision"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="simplesectinfo/revhistory"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="docinfo/revhistory"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="info/revhistory"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="simplesectinfo/abstract"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="docinfo/abstract"/> + <xsl:apply-templates mode="simplesect.titlepage.recto.auto.mode" select="info/abstract"/> +</xsl:template> + +<xsl:template name="simplesect.titlepage.verso"> +</xsl:template> + +<xsl:template name="simplesect.titlepage.separator"><xsl:if test="count(parent::*)='0'"><hr/></xsl:if> +</xsl:template> + +<xsl:template name="simplesect.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="simplesect.titlepage.before.verso"> +</xsl:template> + +<xsl:template name="simplesect.titlepage"> + <div class="titlepage"> + <xsl:variable name="recto.content"> + <xsl:call-template name="simplesect.titlepage.before.recto"/> + <xsl:call-template name="simplesect.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <div><xsl:copy-of select="$recto.content"/></div> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="simplesect.titlepage.before.verso"/> + <xsl:call-template name="simplesect.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <div><xsl:copy-of select="$verso.content"/></div> + </xsl:if> + <xsl:call-template name="simplesect.titlepage.separator"/> + </div> +</xsl:template> + +<xsl:template match="*" mode="simplesect.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="simplesect.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="title" mode="simplesect.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="simplesect.titlepage.recto.style"> +<xsl:apply-templates select="." mode="simplesect.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="subtitle" mode="simplesect.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="simplesect.titlepage.recto.style"> +<xsl:apply-templates select="." mode="simplesect.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="corpauthor" mode="simplesect.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="simplesect.titlepage.recto.style"> +<xsl:apply-templates select="." mode="simplesect.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="authorgroup" mode="simplesect.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="simplesect.titlepage.recto.style"> +<xsl:apply-templates select="." mode="simplesect.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="author" mode="simplesect.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="simplesect.titlepage.recto.style"> +<xsl:apply-templates select="." mode="simplesect.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="othercredit" mode="simplesect.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="simplesect.titlepage.recto.style"> +<xsl:apply-templates select="." mode="simplesect.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="releaseinfo" mode="simplesect.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="simplesect.titlepage.recto.style"> +<xsl:apply-templates select="." mode="simplesect.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="copyright" mode="simplesect.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="simplesect.titlepage.recto.style"> +<xsl:apply-templates select="." mode="simplesect.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="legalnotice" mode="simplesect.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="simplesect.titlepage.recto.style"> +<xsl:apply-templates select="." mode="simplesect.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="pubdate" mode="simplesect.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="simplesect.titlepage.recto.style"> +<xsl:apply-templates select="." mode="simplesect.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="revision" mode="simplesect.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="simplesect.titlepage.recto.style"> +<xsl:apply-templates select="." mode="simplesect.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="revhistory" mode="simplesect.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="simplesect.titlepage.recto.style"> +<xsl:apply-templates select="." mode="simplesect.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template match="abstract" mode="simplesect.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="simplesect.titlepage.recto.style"> +<xsl:apply-templates select="." mode="simplesect.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template name="bibliography.titlepage.recto"> + <div xsl:use-attribute-sets="bibliography.titlepage.recto.style"> +<xsl:call-template name="component.title"> +<xsl:with-param name="node" select="ancestor-or-self::bibliography[1]"/> +</xsl:call-template></div> + <xsl:choose> + <xsl:when test="bibliographyinfo/subtitle"> + <xsl:apply-templates mode="bibliography.titlepage.recto.auto.mode" select="bibliographyinfo/subtitle"/> + </xsl:when> + <xsl:when test="docinfo/subtitle"> + <xsl:apply-templates mode="bibliography.titlepage.recto.auto.mode" select="docinfo/subtitle"/> + </xsl:when> + <xsl:when test="info/subtitle"> + <xsl:apply-templates mode="bibliography.titlepage.recto.auto.mode" select="info/subtitle"/> + </xsl:when> + <xsl:when test="subtitle"> + <xsl:apply-templates mode="bibliography.titlepage.recto.auto.mode" select="subtitle"/> + </xsl:when> + </xsl:choose> + +</xsl:template> + +<xsl:template name="bibliography.titlepage.verso"> +</xsl:template> + +<xsl:template name="bibliography.titlepage.separator"> +</xsl:template> + +<xsl:template name="bibliography.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="bibliography.titlepage.before.verso"> +</xsl:template> + +<xsl:template name="bibliography.titlepage"> + <div class="titlepage"> + <xsl:variable name="recto.content"> + <xsl:call-template name="bibliography.titlepage.before.recto"/> + <xsl:call-template name="bibliography.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <div><xsl:copy-of select="$recto.content"/></div> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="bibliography.titlepage.before.verso"/> + <xsl:call-template name="bibliography.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <div><xsl:copy-of select="$verso.content"/></div> + </xsl:if> + <xsl:call-template name="bibliography.titlepage.separator"/> + </div> +</xsl:template> + +<xsl:template match="*" mode="bibliography.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="bibliography.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="subtitle" mode="bibliography.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="bibliography.titlepage.recto.style"> +<xsl:apply-templates select="." mode="bibliography.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template name="glossary.titlepage.recto"> + <div xsl:use-attribute-sets="glossary.titlepage.recto.style"> +<xsl:call-template name="component.title"> +<xsl:with-param name="node" select="ancestor-or-self::glossary[1]"/> +</xsl:call-template></div> + <xsl:choose> + <xsl:when test="glossaryinfo/subtitle"> + <xsl:apply-templates mode="glossary.titlepage.recto.auto.mode" select="glossaryinfo/subtitle"/> + </xsl:when> + <xsl:when test="docinfo/subtitle"> + <xsl:apply-templates mode="glossary.titlepage.recto.auto.mode" select="docinfo/subtitle"/> + </xsl:when> + <xsl:when test="info/subtitle"> + <xsl:apply-templates mode="glossary.titlepage.recto.auto.mode" select="info/subtitle"/> + </xsl:when> + <xsl:when test="subtitle"> + <xsl:apply-templates mode="glossary.titlepage.recto.auto.mode" select="subtitle"/> + </xsl:when> + </xsl:choose> + +</xsl:template> + +<xsl:template name="glossary.titlepage.verso"> +</xsl:template> + +<xsl:template name="glossary.titlepage.separator"> +</xsl:template> + +<xsl:template name="glossary.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="glossary.titlepage.before.verso"> +</xsl:template> + +<xsl:template name="glossary.titlepage"> + <div class="titlepage"> + <xsl:variable name="recto.content"> + <xsl:call-template name="glossary.titlepage.before.recto"/> + <xsl:call-template name="glossary.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <div><xsl:copy-of select="$recto.content"/></div> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="glossary.titlepage.before.verso"/> + <xsl:call-template name="glossary.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <div><xsl:copy-of select="$verso.content"/></div> + </xsl:if> + <xsl:call-template name="glossary.titlepage.separator"/> + </div> +</xsl:template> + +<xsl:template match="*" mode="glossary.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="glossary.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="subtitle" mode="glossary.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="glossary.titlepage.recto.style"> +<xsl:apply-templates select="." mode="glossary.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template name="index.titlepage.recto"> + <div xsl:use-attribute-sets="index.titlepage.recto.style"> +<xsl:call-template name="component.title"> +<xsl:with-param name="node" select="ancestor-or-self::index[1]"/> +</xsl:call-template></div> + <xsl:choose> + <xsl:when test="indexinfo/subtitle"> + <xsl:apply-templates mode="index.titlepage.recto.auto.mode" select="indexinfo/subtitle"/> + </xsl:when> + <xsl:when test="docinfo/subtitle"> + <xsl:apply-templates mode="index.titlepage.recto.auto.mode" select="docinfo/subtitle"/> + </xsl:when> + <xsl:when test="info/subtitle"> + <xsl:apply-templates mode="index.titlepage.recto.auto.mode" select="info/subtitle"/> + </xsl:when> + <xsl:when test="subtitle"> + <xsl:apply-templates mode="index.titlepage.recto.auto.mode" select="subtitle"/> + </xsl:when> + </xsl:choose> + +</xsl:template> + +<xsl:template name="index.titlepage.verso"> +</xsl:template> + +<xsl:template name="index.titlepage.separator"> +</xsl:template> + +<xsl:template name="index.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="index.titlepage.before.verso"> +</xsl:template> + +<xsl:template name="index.titlepage"> + <div class="titlepage"> + <xsl:variable name="recto.content"> + <xsl:call-template name="index.titlepage.before.recto"/> + <xsl:call-template name="index.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <div><xsl:copy-of select="$recto.content"/></div> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="index.titlepage.before.verso"/> + <xsl:call-template name="index.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <div><xsl:copy-of select="$verso.content"/></div> + </xsl:if> + <xsl:call-template name="index.titlepage.separator"/> + </div> +</xsl:template> + +<xsl:template match="*" mode="index.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="index.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="subtitle" mode="index.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="index.titlepage.recto.style"> +<xsl:apply-templates select="." mode="index.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template name="setindex.titlepage.recto"> + <div xsl:use-attribute-sets="setindex.titlepage.recto.style"> +<xsl:call-template name="component.title"> +<xsl:with-param name="node" select="ancestor-or-self::setindex[1]"/> +</xsl:call-template></div> + <xsl:choose> + <xsl:when test="setindexinfo/subtitle"> + <xsl:apply-templates mode="setindex.titlepage.recto.auto.mode" select="setindexinfo/subtitle"/> + </xsl:when> + <xsl:when test="docinfo/subtitle"> + <xsl:apply-templates mode="setindex.titlepage.recto.auto.mode" select="docinfo/subtitle"/> + </xsl:when> + <xsl:when test="info/subtitle"> + <xsl:apply-templates mode="setindex.titlepage.recto.auto.mode" select="info/subtitle"/> + </xsl:when> + <xsl:when test="subtitle"> + <xsl:apply-templates mode="setindex.titlepage.recto.auto.mode" select="subtitle"/> + </xsl:when> + </xsl:choose> + +</xsl:template> + +<xsl:template name="setindex.titlepage.verso"> +</xsl:template> + +<xsl:template name="setindex.titlepage.separator"> +</xsl:template> + +<xsl:template name="setindex.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="setindex.titlepage.before.verso"> +</xsl:template> + +<xsl:template name="setindex.titlepage"> + <div class="titlepage"> + <xsl:variable name="recto.content"> + <xsl:call-template name="setindex.titlepage.before.recto"/> + <xsl:call-template name="setindex.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <div><xsl:copy-of select="$recto.content"/></div> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="setindex.titlepage.before.verso"/> + <xsl:call-template name="setindex.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <div><xsl:copy-of select="$verso.content"/></div> + </xsl:if> + <xsl:call-template name="setindex.titlepage.separator"/> + </div> +</xsl:template> + +<xsl:template match="*" mode="setindex.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="setindex.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="subtitle" mode="setindex.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="setindex.titlepage.recto.style"> +<xsl:apply-templates select="." mode="setindex.titlepage.recto.mode"/> +</div> +</xsl:template> + +<xsl:template name="sidebar.titlepage.recto"> + <xsl:choose> + <xsl:when test="sidebarinfo/title"> + <xsl:apply-templates mode="sidebar.titlepage.recto.auto.mode" select="sidebarinfo/title"/> + </xsl:when> + <xsl:when test="docinfo/title"> + <xsl:apply-templates mode="sidebar.titlepage.recto.auto.mode" select="docinfo/title"/> + </xsl:when> + <xsl:when test="info/title"> + <xsl:apply-templates mode="sidebar.titlepage.recto.auto.mode" select="info/title"/> + </xsl:when> + <xsl:when test="title"> + <xsl:apply-templates mode="sidebar.titlepage.recto.auto.mode" select="title"/> + </xsl:when> + </xsl:choose> + + <xsl:choose> + <xsl:when test="sidebarinfo/subtitle"> + <xsl:apply-templates mode="sidebar.titlepage.recto.auto.mode" select="sidebarinfo/subtitle"/> + </xsl:when> + <xsl:when test="docinfo/subtitle"> + <xsl:apply-templates mode="sidebar.titlepage.recto.auto.mode" select="docinfo/subtitle"/> + </xsl:when> + <xsl:when test="info/subtitle"> + <xsl:apply-templates mode="sidebar.titlepage.recto.auto.mode" select="info/subtitle"/> + </xsl:when> + <xsl:when test="subtitle"> + <xsl:apply-templates mode="sidebar.titlepage.recto.auto.mode" select="subtitle"/> + </xsl:when> + </xsl:choose> + +</xsl:template> + +<xsl:template name="sidebar.titlepage.verso"> +</xsl:template> + +<xsl:template name="sidebar.titlepage.separator"> +</xsl:template> + +<xsl:template name="sidebar.titlepage.before.recto"> +</xsl:template> + +<xsl:template name="sidebar.titlepage.before.verso"> +</xsl:template> + +<xsl:template name="sidebar.titlepage"> + <div class="titlepage"> + <xsl:variable name="recto.content"> + <xsl:call-template name="sidebar.titlepage.before.recto"/> + <xsl:call-template name="sidebar.titlepage.recto"/> + </xsl:variable> + <xsl:variable name="recto.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count > 0)"> + <div><xsl:copy-of select="$recto.content"/></div> + </xsl:if> + <xsl:variable name="verso.content"> + <xsl:call-template name="sidebar.titlepage.before.verso"/> + <xsl:call-template name="sidebar.titlepage.verso"/> + </xsl:variable> + <xsl:variable name="verso.elements.count"> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')"> + <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count > 0)"> + <div><xsl:copy-of select="$verso.content"/></div> + </xsl:if> + <xsl:call-template name="sidebar.titlepage.separator"/> + </div> +</xsl:template> + +<xsl:template match="*" mode="sidebar.titlepage.recto.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="*" mode="sidebar.titlepage.verso.mode"> + <!-- if an element isn't found in this mode, --> + <!-- try the generic titlepage.mode --> + <xsl:apply-templates select="." mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="title" mode="sidebar.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sidebar.titlepage.recto.style"> +<xsl:call-template name="formal.object.heading"> +<xsl:with-param name="object" select="ancestor-or-self::sidebar[1]"/> +</xsl:call-template> +</div> +</xsl:template> + +<xsl:template match="subtitle" mode="sidebar.titlepage.recto.auto.mode"> +<div xsl:use-attribute-sets="sidebar.titlepage.recto.style"> +<xsl:apply-templates select="." mode="sidebar.titlepage.recto.mode"/> +</div> +</xsl:template> + +</xsl:stylesheet> + diff --git a/docbook-xsl-1.76.1/html/titlepage.xsl b/docbook-xsl-1.76.1/html/titlepage.xsl new file mode 100644 index 0000000..3c285f0 --- /dev/null +++ b/docbook-xsl-1.76.1/html/titlepage.xsl @@ -0,0 +1,1047 @@ +<?xml version='1.0'?> +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + version='1.0'> + +<!-- ******************************************************************** + $Id: titlepage.xsl 8816 2010-08-10 11:56:35Z mzjn $ + ******************************************************************** + + This file is part of the XSL DocBook Stylesheet distribution. + See ../README or http://docbook.sf.net/release/xsl/current/ for + copyright and other information. + + ******************************************************************** --> + +<!-- ==================================================================== --> + +<xsl:attribute-set name="book.titlepage.recto.style"/> +<xsl:attribute-set name="book.titlepage.verso.style"/> + +<xsl:attribute-set name="article.titlepage.recto.style"/> +<xsl:attribute-set name="article.titlepage.verso.style"/> + +<xsl:attribute-set name="set.titlepage.recto.style"/> +<xsl:attribute-set name="set.titlepage.verso.style"/> + +<xsl:attribute-set name="part.titlepage.recto.style"/> +<xsl:attribute-set name="part.titlepage.verso.style"/> + +<xsl:attribute-set name="partintro.titlepage.recto.style"/> +<xsl:attribute-set name="partintro.titlepage.verso.style"/> + +<xsl:attribute-set name="reference.titlepage.recto.style"/> +<xsl:attribute-set name="reference.titlepage.verso.style"/> + +<xsl:attribute-set name="refentry.titlepage.recto.style"/> +<xsl:attribute-set name="refentry.titlepage.verso.style"/> + +<xsl:attribute-set name="dedication.titlepage.recto.style"/> +<xsl:attribute-set name="dedication.titlepage.verso.style"/> + +<xsl:attribute-set name="acknowledgements.titlepage.recto.style"/> +<xsl:attribute-set name="acknowledgements.titlepage.verso.style"/> + +<xsl:attribute-set name="preface.titlepage.recto.style"/> +<xsl:attribute-set name="preface.titlepage.verso.style"/> + +<xsl:attribute-set name="chapter.titlepage.recto.style"/> +<xsl:attribute-set name="chapter.titlepage.verso.style"/> + +<xsl:attribute-set name="appendix.titlepage.recto.style"/> +<xsl:attribute-set name="appendix.titlepage.verso.style"/> + +<xsl:attribute-set name="bibliography.titlepage.recto.style"/> +<xsl:attribute-set name="bibliography.titlepage.verso.style"/> + +<xsl:attribute-set name="glossary.titlepage.recto.style"/> +<xsl:attribute-set name="glossary.titlepage.verso.style"/> + +<xsl:attribute-set name="index.titlepage.recto.style"/> +<xsl:attribute-set name="index.titlepage.verso.style"/> + +<xsl:attribute-set name="setindex.titlepage.recto.style"/> +<xsl:attribute-set name="setindex.titlepage.verso.style"/> + +<xsl:attribute-set name="sidebar.titlepage.recto.style"/> +<xsl:attribute-set name="sidebar.titlepage.verso.style"/> + +<xsl:attribute-set name="section.titlepage.recto.style"/> +<xsl:attribute-set name="section.titlepage.verso.style"/> + +<xsl:attribute-set name="sect1.titlepage.recto.style" + use-attribute-sets="section.titlepage.recto.style"/> +<xsl:attribute-set name="sect1.titlepage.verso.style" + use-attribute-sets="section.titlepage.verso.style"/> + +<xsl:attribute-set name="sect2.titlepage.recto.style" + use-attribute-sets="section.titlepage.recto.style"/> +<xsl:attribute-set name="sect2.titlepage.verso.style" + use-attribute-sets="section.titlepage.verso.style"/> + +<xsl:attribute-set name="sect3.titlepage.recto.style" + use-attribute-sets="section.titlepage.recto.style"/> +<xsl:attribute-set name="sect3.titlepage.verso.style" + use-attribute-sets="section.titlepage.verso.style"/> + +<xsl:attribute-set name="sect4.titlepage.recto.style" + use-attribute-sets="section.titlepage.recto.style"/> +<xsl:attribute-set name="sect4.titlepage.verso.style" + use-attribute-sets="section.titlepage.verso.style"/> + +<xsl:attribute-set name="sect5.titlepage.recto.style" + use-attribute-sets="section.titlepage.recto.style"/> +<xsl:attribute-set name="sect5.titlepage.verso.style" + use-attribute-sets="section.titlepage.verso.style"/> + +<xsl:attribute-set name="simplesect.titlepage.recto.style" + use-attribute-sets="section.titlepage.recto.style"/> +<xsl:attribute-set name="simplesect.titlepage.verso.style" + use-attribute-sets="section.titlepage.verso.style"/> + +<xsl:attribute-set name="table.of.contents.titlepage.recto.style"/> +<xsl:attribute-set name="table.of.contents.titlepage.verso.style"/> + +<xsl:attribute-set name="list.of.tables.titlepage.recto.style"/> +<xsl:attribute-set name="list.of.tables.contents.titlepage.verso.style"/> + +<xsl:attribute-set name="list.of.figures.titlepage.recto.style"/> +<xsl:attribute-set name="list.of.figures.contents.titlepage.verso.style"/> + +<xsl:attribute-set name="list.of.equations.titlepage.recto.style"/> +<xsl:attribute-set name="list.of.equations.contents.titlepage.verso.style"/> + +<xsl:attribute-set name="list.of.examples.titlepage.recto.style"/> +<xsl:attribute-set name="list.of.examples.contents.titlepage.verso.style"/> + +<xsl:attribute-set name="list.of.unknowns.titlepage.recto.style"/> +<xsl:attribute-set name="list.of.unknowns.contents.titlepage.verso.style"/> + +<!-- ==================================================================== --> + +<xsl:template match="*" mode="titlepage.mode"> + <!-- if an element isn't found in this mode, try the default mode --> + <xsl:apply-templates select="."/> +</xsl:template> + +<xsl:template match="abbrev" mode="titlepage.mode"> + <span> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:apply-templates mode="titlepage.mode"/> + <br/> + </span> +</xsl:template> + +<xsl:template match="abstract" mode="titlepage.mode"> + <div> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:call-template name="anchor"/> + <xsl:if test="$abstract.notitle.enabled = 0"> + <xsl:call-template name="formal.object.heading"> + <xsl:with-param name="title"> + <xsl:apply-templates select="." mode="title.markup"/> + </xsl:with-param> + </xsl:call-template> + </xsl:if> + <xsl:apply-templates mode="titlepage.mode"/> + <xsl:call-template name="process.footnotes"/> + </div> +</xsl:template> + +<xsl:template match="abstract/title" mode="titlepage.mode"> +</xsl:template> + +<xsl:template match="address" mode="titlepage.mode"> + <xsl:param name="suppress-numbers" select="'0'"/> + + <xsl:variable name="rtf"> + <xsl:apply-templates mode="titlepage.mode"/> + </xsl:variable> + + <xsl:choose> + <xsl:when test="$suppress-numbers = '0' + and @linenumbering = 'numbered' + and $use.extensions != '0' + and $linenumbering.extension != '0'"> + <div> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:call-template name="paragraph"> + <xsl:with-param name="content"> + <xsl:call-template name="number.rtf.lines"> + <xsl:with-param name="rtf" select="$rtf"/> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> + </div> + </xsl:when> + + <xsl:otherwise> + <div> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:call-template name="paragraph"> + <xsl:with-param name="content"> + <xsl:call-template name="make-verbatim"> + <xsl:with-param name="rtf" select="$rtf"/> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> + </div> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template match="affiliation" mode="titlepage.mode"> + <div> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:apply-templates mode="titlepage.mode"/> + </div> +</xsl:template> + +<xsl:template match="artpagenums" mode="titlepage.mode"> + <span> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:apply-templates mode="titlepage.mode"/> + <br/> + </span> +</xsl:template> + +<xsl:template match="author|editor" mode="titlepage.mode"> + <xsl:call-template name="credits.div"/> +</xsl:template> + +<xsl:template name="credits.div"> + <div> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:if test="self::editor[position()=1] and not($editedby.enabled = 0)"> + <h4 class="editedby"><xsl:call-template name="gentext.edited.by"/></h4> + </xsl:if> + <h3> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:choose> + <xsl:when test="orgname"> + <xsl:apply-templates/> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="person.name"/> + </xsl:otherwise> + </xsl:choose> + </h3> + <xsl:if test="not($contrib.inline.enabled = 0)"> + <xsl:apply-templates mode="titlepage.mode" select="contrib"/> + </xsl:if> + <xsl:apply-templates mode="titlepage.mode" select="affiliation"/> + <xsl:apply-templates mode="titlepage.mode" select="email"/> + <xsl:if test="not($blurb.on.titlepage.enabled = 0)"> + <xsl:choose> + <xsl:when test="$contrib.inline.enabled = 0"> + <xsl:apply-templates mode="titlepage.mode" + select="contrib|authorblurb|personblurb"/> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates mode="titlepage.mode" + select="authorblurb|personblurb"/> + </xsl:otherwise> + </xsl:choose> + </xsl:if> + </div> +</xsl:template> + +<xsl:template match="authorblurb|personblurb" mode="titlepage.mode"> + <div> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:apply-templates mode="titlepage.mode"/> + </div> +</xsl:template> + +<xsl:template match="authorgroup" mode="titlepage.mode"> + <div> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:if test="parent::refentryinfo"> + <h2>Authors</h2> + </xsl:if> + + <xsl:call-template name="anchor"/> + <xsl:apply-templates mode="titlepage.mode"/> + </div> +</xsl:template> + +<xsl:template match="authorinitials" mode="titlepage.mode"> + <span> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:apply-templates mode="titlepage.mode"/> + <br/> + </span> +</xsl:template> + +<xsl:template match="bibliomisc" mode="titlepage.mode"> + <xsl:apply-templates mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="bibliomset" mode="titlepage.mode"> + <xsl:apply-templates mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="collab" mode="titlepage.mode"> + <span> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:apply-templates mode="titlepage.mode"/> + <br/> + </span> +</xsl:template> + +<xsl:template match="collabname" mode="titlepage.mode"> + <span> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:apply-templates mode="titlepage.mode"/> + </span> +</xsl:template> + +<xsl:template match="confgroup" mode="titlepage.mode"> + <div> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:apply-templates mode="titlepage.mode"/> + </div> +</xsl:template> + +<xsl:template match="confdates" mode="titlepage.mode"> + <span> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:apply-templates mode="titlepage.mode"/> + <br/> + </span> +</xsl:template> + +<xsl:template match="confsponsor" mode="titlepage.mode"> + <span> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:apply-templates mode="titlepage.mode"/> + <br/> + </span> +</xsl:template> + +<xsl:template match="conftitle" mode="titlepage.mode"> + <span> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:apply-templates mode="titlepage.mode"/> + <br/> + </span> +</xsl:template> + +<xsl:template match="confnum" mode="titlepage.mode"> + <!-- suppress --> +</xsl:template> + +<xsl:template match="contractnum" mode="titlepage.mode"> + <span> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:apply-templates mode="titlepage.mode"/> + <br/> + </span> +</xsl:template> + +<xsl:template match="contractsponsor" mode="titlepage.mode"> + <span> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:apply-templates mode="titlepage.mode"/> + <br/> + </span> +</xsl:template> + +<xsl:template match="contrib" mode="titlepage.mode"> + <xsl:choose> + <xsl:when test="not($contrib.inline.enabled = 0)"> + <span> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:apply-templates mode="titlepage.mode"/> + </span><xsl:text> </xsl:text> + </xsl:when> + <xsl:otherwise> + <div> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <p><xsl:apply-templates mode="titlepage.mode"/></p> + </div> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template match="copyright" mode="titlepage.mode"> + + <xsl:if test="generate-id() = generate-id(//refentryinfo/copyright[1]) + and ($stylesheet.result.type = 'html' or $stylesheet.result.type = 'xhtml')"> + <h2>Copyright</h2> + </xsl:if> + + <p> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:call-template name="gentext"> + <xsl:with-param name="key" select="'Copyright'"/> + </xsl:call-template> + <xsl:call-template name="gentext.space"/> + <xsl:call-template name="dingbat"> + <xsl:with-param name="dingbat">copyright</xsl:with-param> + </xsl:call-template> + <xsl:call-template name="gentext.space"/> + <xsl:call-template name="copyright.years"> + <xsl:with-param name="years" select="year"/> + <xsl:with-param name="print.ranges" select="$make.year.ranges"/> + <xsl:with-param name="single.year.ranges" + select="$make.single.year.ranges"/> + </xsl:call-template> + <xsl:call-template name="gentext.space"/> + <xsl:apply-templates select="holder" mode="titlepage.mode"/> + </p> +</xsl:template> + +<xsl:template match="year" mode="titlepage.mode"> + <xsl:choose> + <xsl:when test="$show.revisionflag != 0 and @revisionflag"> + <span class="{@revisionflag}"> + <xsl:apply-templates mode="titlepage.mode"/> + </span> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates mode="titlepage.mode"/> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template match="holder" mode="titlepage.mode"> + <xsl:choose> + <xsl:when test="$show.revisionflag != 0 and @revisionflag"> + <span class="{@revisionflag}"> + <xsl:apply-templates mode="titlepage.mode"/> + </span> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates mode="titlepage.mode"/> + </xsl:otherwise> + </xsl:choose> + <xsl:if test="position() < last()"> + <xsl:text>, </xsl:text> + </xsl:if> +</xsl:template> + +<xsl:template match="corpauthor" mode="titlepage.mode"> + <h3> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:apply-templates mode="titlepage.mode"/> + </h3> +</xsl:template> + +<xsl:template match="corpcredit" mode="titlepage.mode"> + <span> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:apply-templates mode="titlepage.mode"/> + <br/> + </span> +</xsl:template> + +<xsl:template match="corpname" mode="titlepage.mode"> + <span> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:apply-templates mode="titlepage.mode"/> + <br/> + </span> +</xsl:template> + +<xsl:template match="date" mode="titlepage.mode"> + <span> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:apply-templates mode="titlepage.mode"/> + <br/> + </span> +</xsl:template> + +<xsl:template match="edition" mode="titlepage.mode"> + <p> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:apply-templates mode="titlepage.mode"/> + <xsl:call-template name="gentext.space"/> + <xsl:call-template name="gentext"> + <xsl:with-param name="key" select="'Edition'"/> + </xsl:call-template> + </p> +</xsl:template> + +<xsl:template match="email" mode="titlepage.mode"> + <!-- use the normal e-mail handling code --> + <xsl:apply-templates select="."/> +</xsl:template> + +<xsl:template match="firstname" mode="titlepage.mode"> + <span> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:apply-templates mode="titlepage.mode"/> + <br/> + </span> +</xsl:template> + +<xsl:template match="graphic" mode="titlepage.mode"> + <!-- use the normal graphic handling code --> + <xsl:apply-templates select="."/> +</xsl:template> + +<xsl:template match="honorific" mode="titlepage.mode"> + <span> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:apply-templates mode="titlepage.mode"/> + <br/> + </span> +</xsl:template> + +<xsl:template match="isbn" mode="titlepage.mode"> + <span> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:apply-templates mode="titlepage.mode"/> + <br/> + </span> +</xsl:template> + +<xsl:template match="issn" mode="titlepage.mode"> + <span> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:apply-templates mode="titlepage.mode"/> + <br/> + </span> +</xsl:template> + +<xsl:template match="biblioid" mode="titlepage.mode"> + <span> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:apply-templates mode="titlepage.mode"/> + <br/> + </span> +</xsl:template> + +<xsl:template match="itermset" mode="titlepage.mode"> +</xsl:template> + +<xsl:template match="invpartnumber" mode="titlepage.mode"> + <span> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:apply-templates mode="titlepage.mode"/> + <br/> + </span> +</xsl:template> + +<xsl:template match="issuenum" mode="titlepage.mode"> + <span> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:apply-templates mode="titlepage.mode"/> + <br/> + </span> +</xsl:template> + +<xsl:template match="jobtitle" mode="titlepage.mode"> + <span> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:apply-templates mode="titlepage.mode"/> + <br/> + </span> +</xsl:template> + +<xsl:template match="keywordset" mode="titlepage.mode"> +</xsl:template> + +<xsl:template match="legalnotice" mode="titlepage.mode"> + <xsl:variable name="id"><xsl:call-template name="object.id"/></xsl:variable> + + <xsl:choose> + <xsl:when test="$generate.legalnotice.link != 0"> + + <!-- Compute name of legalnotice file --> + <xsl:variable name="file"> + <xsl:call-template name="ln.or.rh.filename"/> + </xsl:variable> + + <xsl:variable name="filename"> + <xsl:call-template name="make-relative-filename"> + <xsl:with-param name="base.dir" select="$base.dir"/> + <xsl:with-param name="base.name" select="$file"/> + </xsl:call-template> + </xsl:variable> + + <xsl:variable name="title"> + <xsl:apply-templates select="." mode="title.markup"/> + </xsl:variable> + + <a href="{$file}"> + <xsl:copy-of select="$title"/> + </a> + + <xsl:call-template name="write.chunk"> + <xsl:with-param name="filename" select="$filename"/> + <xsl:with-param name="quiet" select="$chunk.quietly"/> + <xsl:with-param name="content"> + <xsl:call-template name="user.preroot"/> + <html> + <head> + <xsl:call-template name="system.head.content"/> + <xsl:call-template name="head.content"/> + <xsl:call-template name="user.head.content"/> + </head> + <body> + <xsl:call-template name="body.attributes"/> + <div> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:apply-templates mode="titlepage.mode"/> + </div> + </body> + </html> + <xsl:value-of select="$chunk.append"/> + </xsl:with-param> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <div> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <a name="{$id}"/> + <xsl:apply-templates mode="titlepage.mode"/> + </div> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template match="legalnotice/title" mode="titlepage.mode"> + <p class="legalnotice-title"><b><xsl:apply-templates/></b></p> +</xsl:template> + +<xsl:template match="lineage" mode="titlepage.mode"> + <span> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:apply-templates mode="titlepage.mode"/> + <br/> + </span> +</xsl:template> + +<xsl:template match="modespec" mode="titlepage.mode"> +</xsl:template> + +<xsl:template match="orgdiv" mode="titlepage.mode"> + <xsl:if test="preceding-sibling::*[1][self::orgname]"> + <xsl:text> </xsl:text> + </xsl:if> + <span> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:apply-templates mode="titlepage.mode"/> + <br/> + </span> +</xsl:template> + +<xsl:template match="orgname" mode="titlepage.mode"> + <span> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:apply-templates mode="titlepage.mode"/> + <br/> + </span> +</xsl:template> + +<xsl:template match="othercredit" mode="titlepage.mode"> +<xsl:choose> + <xsl:when test="not($othercredit.like.author.enabled = 0)"> + <xsl:variable name="contrib" select="string(contrib)"/> + <xsl:choose> + <xsl:when test="contrib"> + <xsl:if test="not(preceding-sibling::othercredit[string(contrib)=$contrib])"> + <xsl:call-template name="paragraph"> + <xsl:with-param name="class" select="local-name(.)"/> + <xsl:with-param name="content"> + <xsl:apply-templates mode="titlepage.mode" select="contrib"/> + <xsl:text>: </xsl:text> + <xsl:call-template name="person.name"/> + <xsl:apply-templates mode="titlepage.mode" select="affiliation"/> + <xsl:apply-templates select="following-sibling::othercredit[string(contrib)=$contrib]" mode="titlepage.othercredits"/> + </xsl:with-param> + </xsl:call-template> + </xsl:if> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="paragraph"> + <xsl:with-param name="class" select="local-name(.)"/> + <xsl:with-param name="content"> + <xsl:call-template name="person.name"/> + </xsl:with-param> + </xsl:call-template> + <xsl:apply-templates mode="titlepage.mode" select="affiliation"/> + </xsl:otherwise> + </xsl:choose> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="credits.div"/> + </xsl:otherwise> +</xsl:choose> +</xsl:template> + +<xsl:template match="othercredit" mode="titlepage.othercredits"> + <xsl:text>, </xsl:text> + <xsl:call-template name="person.name"/> +</xsl:template> + +<xsl:template match="othername" mode="titlepage.mode"> + <span> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:apply-templates mode="titlepage.mode"/> + <br/> + </span> +</xsl:template> + +<xsl:template match="pagenums" mode="titlepage.mode"> + <span> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:apply-templates mode="titlepage.mode"/> + <br/> + </span> +</xsl:template> + +<xsl:template match="printhistory" mode="titlepage.mode"> + <div> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:apply-templates mode="titlepage.mode"/> + </div> +</xsl:template> + +<xsl:template match="productname" mode="titlepage.mode"> + <span> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:apply-templates mode="titlepage.mode"/> + <br/> + </span> +</xsl:template> + +<xsl:template match="productnumber" mode="titlepage.mode"> + <span> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:apply-templates mode="titlepage.mode"/> + <br/> + </span> +</xsl:template> + +<xsl:template match="pubdate" mode="titlepage.mode"> + <xsl:call-template name="paragraph"> + <xsl:with-param name="class" select="local-name(.)"/> + <xsl:with-param name="content"> + <xsl:apply-templates mode="titlepage.mode"/> + </xsl:with-param> + </xsl:call-template> +</xsl:template> + +<xsl:template match="publisher" mode="titlepage.mode"> + <xsl:call-template name="paragraph"> + <xsl:with-param name="class" select="local-name(.)"/> + <xsl:with-param name="content"> + <xsl:apply-templates mode="titlepage.mode"/> + </xsl:with-param> + </xsl:call-template> +</xsl:template> + +<xsl:template match="publishername" mode="titlepage.mode"> + <span> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:apply-templates mode="titlepage.mode"/> + <br/> + </span> +</xsl:template> + +<xsl:template match="pubsnumber" mode="titlepage.mode"> + <span> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:apply-templates mode="titlepage.mode"/> + <br/> + </span> +</xsl:template> + +<xsl:template match="releaseinfo" mode="titlepage.mode"> + <xsl:call-template name="paragraph"> + <xsl:with-param name="class" select="local-name(.)"/> + <xsl:with-param name="content"> + <xsl:apply-templates mode="titlepage.mode"/> + </xsl:with-param> + </xsl:call-template> +</xsl:template> + +<xsl:template match="revhistory" mode="titlepage.mode"> + <xsl:variable name="numcols"> + <xsl:choose> + <xsl:when test=".//authorinitials|.//author">3</xsl:when> + <xsl:otherwise>2</xsl:otherwise> + </xsl:choose> + </xsl:variable> + + <xsl:variable name="id"><xsl:call-template name="object.id"/></xsl:variable> + + <xsl:variable name="title"> + <xsl:call-template name="gentext"> + <xsl:with-param name="key">RevHistory</xsl:with-param> + </xsl:call-template> + </xsl:variable> + + <xsl:variable name="contents"> + <div> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <table border="1" width="100%" summary="Revision history"> + <tr> + <th align="{$direction.align.start}" valign="top" colspan="{$numcols}"> + <b> + <xsl:call-template name="gentext"> + <xsl:with-param name="key" select="'RevHistory'"/> + </xsl:call-template> + </b> + </th> + </tr> + <xsl:apply-templates mode="titlepage.mode"> + <xsl:with-param name="numcols" select="$numcols"/> + </xsl:apply-templates> + </table> + </div> + </xsl:variable> + + <xsl:choose> + <xsl:when test="$generate.revhistory.link != 0"> + + <!-- Compute name of revhistory file --> + <xsl:variable name="file"> + <xsl:call-template name="ln.or.rh.filename"> + <xsl:with-param name="is.ln" select="false()"/> + </xsl:call-template> + </xsl:variable> + + <xsl:variable name="filename"> + <xsl:call-template name="make-relative-filename"> + <xsl:with-param name="base.dir" select="$base.dir"/> + <xsl:with-param name="base.name" select="$file"/> + </xsl:call-template> + </xsl:variable> + + <a href="{$file}"> + <xsl:copy-of select="$title"/> + </a> + + <xsl:call-template name="write.chunk"> + <xsl:with-param name="filename" select="$filename"/> + <xsl:with-param name="quiet" select="$chunk.quietly"/> + <xsl:with-param name="content"> + <xsl:call-template name="user.preroot"/> + <html> + <head> + <xsl:call-template name="system.head.content"/> + <xsl:call-template name="head.content"> + <xsl:with-param name="title"> + <xsl:value-of select="$title"/> + <xsl:if test="../../title"> + <xsl:value-of select="concat(' (', ../../title, ')')"/> + </xsl:if> + </xsl:with-param> + </xsl:call-template> + <xsl:call-template name="user.head.content"/> + </head> + <body> + <xsl:call-template name="body.attributes"/> + <xsl:copy-of select="$contents"/> + </body> + </html> + <xsl:text> </xsl:text> + </xsl:with-param> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:copy-of select="$contents"/> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template match="revhistory/revision" mode="titlepage.mode"> + <xsl:param name="numcols" select="'3'"/> + <xsl:variable name="revnumber" select="revnumber"/> + <xsl:variable name="revdate" select="date"/> + <xsl:variable name="revauthor" select="authorinitials|author"/> + <xsl:variable name="revremark" select="revremark|revdescription"/> + <tr> + <td align="{$direction.align.start}"> + <xsl:if test="$revnumber"> + <xsl:call-template name="gentext"> + <xsl:with-param name="key" select="'Revision'"/> + </xsl:call-template> + <xsl:call-template name="gentext.space"/> + <xsl:apply-templates select="$revnumber[1]" mode="titlepage.mode"/> + </xsl:if> + </td> + <td align="{$direction.align.start}"> + <xsl:apply-templates select="$revdate[1]" mode="titlepage.mode"/> + </td> + <xsl:choose> + <xsl:when test="$revauthor"> + <td align="{$direction.align.start}"> + <xsl:for-each select="$revauthor"> + <xsl:apply-templates select="." mode="titlepage.mode"/> + <xsl:if test="position() != last()"> + <xsl:text>, </xsl:text> + </xsl:if> + </xsl:for-each> + </td> + </xsl:when> + <xsl:when test="$numcols > 2"> + <td> </td> + </xsl:when> + <xsl:otherwise></xsl:otherwise> + </xsl:choose> + </tr> + <xsl:if test="$revremark"> + <tr> + <td align="{$direction.align.start}" colspan="{$numcols}"> + <xsl:apply-templates select="$revremark[1]" mode="titlepage.mode"/> + </td> + </tr> + </xsl:if> +</xsl:template> + +<xsl:template match="revision/revnumber" mode="titlepage.mode"> + <xsl:apply-templates mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="revision/date" mode="titlepage.mode"> + <xsl:apply-templates mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="revision/authorinitials" mode="titlepage.mode"> + <xsl:apply-templates mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="revision/author" mode="titlepage.mode"> + <xsl:apply-templates mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="revision/revremark" mode="titlepage.mode"> + <xsl:apply-templates mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="revision/revdescription" mode="titlepage.mode"> + <xsl:apply-templates mode="titlepage.mode"/> +</xsl:template> + +<xsl:template match="seriesvolnums" mode="titlepage.mode"> + <span> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:apply-templates mode="titlepage.mode"/> + <br/> + </span> +</xsl:template> + +<xsl:template match="shortaffil" mode="titlepage.mode"> + <span> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:apply-templates mode="titlepage.mode"/> + <br/> + </span> +</xsl:template> + +<xsl:template match="subjectset" mode="titlepage.mode"> +</xsl:template> + +<xsl:template match="subtitle" mode="titlepage.mode"> + <h2> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:apply-templates mode="titlepage.mode"/> + </h2> +</xsl:template> + +<xsl:template match="surname" mode="titlepage.mode"> + <span> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:apply-templates mode="titlepage.mode"/> + <br/> + </span> +</xsl:template> + +<xsl:template match="title" mode="titlepage.mode"> + <xsl:variable name="id"> + <xsl:choose> + <!-- if title is in an *info wrapper, get the grandparent --> + <xsl:when test="contains(local-name(..), 'info')"> + <xsl:call-template name="object.id"> + <xsl:with-param name="object" select="../.."/> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="object.id"> + <xsl:with-param name="object" select=".."/> + </xsl:call-template> + </xsl:otherwise> + </xsl:choose> + </xsl:variable> + + <h1> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:if test="$generate.id.attributes = 0"> + <a name="{$id}"/> + </xsl:if> + <xsl:choose> + <xsl:when test="$show.revisionflag != 0 and @revisionflag"> + <span class="{@revisionflag}"> + <xsl:apply-templates mode="titlepage.mode"/> + </span> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates mode="titlepage.mode"/> + </xsl:otherwise> + </xsl:choose> + </h1> +</xsl:template> + +<xsl:template match="titleabbrev" mode="titlepage.mode"> + <!-- nop; title abbreviations don't belong on the title page! --> +</xsl:template> + +<xsl:template match="volumenum" mode="titlepage.mode"> + <span> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:apply-templates mode="titlepage.mode"/> + <br/> + </span> +</xsl:template> + +<!-- This template computes the filename for legalnotice and revhistory chunks --> +<xsl:template name="ln.or.rh.filename"> + <xsl:param name="node" select="."/> + <xsl:param name="is.ln" select="true()"/> + + <xsl:variable name="dbhtml-filename"> + <xsl:call-template name="pi.dbhtml_filename"> + <xsl:with-param name="node" select="$node"/> + </xsl:call-template> + </xsl:variable> + + <xsl:choose> + <!-- 1. If there is a dbhtml_filename PI, use that --> + <xsl:when test="$dbhtml-filename != ''"> + <xsl:value-of select="$dbhtml-filename"/> + </xsl:when> + <xsl:when test="($node/@id or $node/@xml:id) and not($use.id.as.filename = 0)"> + <!-- * 2. If this legalnotice/revhistory has an ID, then go ahead and use --> + <!-- * just the value of that ID as the basename for the file --> + <!-- * (that is, without prepending an "ln-" or "rh-" to it) --> + <xsl:value-of select="($node/@id|$node/@xml:id)[1]"/> + <xsl:value-of select="$html.ext"/> + </xsl:when> + <xsl:when test="not ($node/@id or $node/@xml:id) or $use.id.as.filename = 0"> + <!-- * 3. Otherwise, if this legalnotice/revhistory does not have an ID, or --> + <!-- * if $use.id.as.filename = 0 --> + <!-- * then we generate an ID... --> + <xsl:variable name="id"> + <xsl:value-of select="generate-id($node)"/> + </xsl:variable> + <!-- * ...and then we take that generated ID, prepend a --> + <!-- * prefix to it, and use that as the basename for the file --> + <xsl:choose> + <xsl:when test="$is.ln"> + <xsl:value-of select="concat('ln-',$id,$html.ext)"/> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="concat('rh-',$id,$html.ext)"/> + </xsl:otherwise> + </xsl:choose> + </xsl:when> + </xsl:choose> +</xsl:template> + +<!-- ==================================================================== --> + +</xsl:stylesheet> diff --git a/docbook-xsl-1.76.1/html/toc.xsl b/docbook-xsl-1.76.1/html/toc.xsl new file mode 100644 index 0000000..d8c1be5 --- /dev/null +++ b/docbook-xsl-1.76.1/html/toc.xsl @@ -0,0 +1,350 @@ +<?xml version='1.0'?> +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + version='1.0'> + +<!-- ******************************************************************** + $Id: toc.xsl 8421 2009-05-04 07:49:49Z bobstayton $ + ******************************************************************** + + This file is part of the XSL DocBook Stylesheet distribution. + See ../README or http://docbook.sf.net/release/xsl/current/ for + copyright and other information. + + ******************************************************************** --> + +<!-- ==================================================================== --> + +<xsl:template match="set/toc | book/toc | part/toc"> + <xsl:variable name="toc.params"> + <xsl:call-template name="find.path.params"> + <xsl:with-param name="node" select="parent::*"/> + <xsl:with-param name="table" select="normalize-space($generate.toc)"/> + </xsl:call-template> + </xsl:variable> + + <!-- Do not output the toc element if one is already generated + by the use of $generate.toc parameter, or if + generating a source toc is turned off --> + <xsl:if test="not(contains($toc.params, 'toc')) and + ($process.source.toc != 0 or $process.empty.source.toc != 0)"> + <xsl:variable name="content"> + <xsl:choose> + <xsl:when test="* and $process.source.toc != 0"> + <xsl:apply-templates /> + </xsl:when> + <xsl:when test="count(*) = 0 and $process.empty.source.toc != 0"> + <!-- trick to switch context node to parent element --> + <xsl:for-each select="parent::*"> + <xsl:choose> + <xsl:when test="self::set"> + <xsl:call-template name="set.toc"> + <xsl:with-param name="toc.title.p" + select="contains($toc.params, 'title')"/> + </xsl:call-template> + </xsl:when> + <xsl:when test="self::book"> + <xsl:call-template name="division.toc"> + <xsl:with-param name="toc.title.p" + select="contains($toc.params, 'title')"/> + </xsl:call-template> + </xsl:when> + <xsl:when test="self::part"> + <xsl:call-template name="division.toc"> + <xsl:with-param name="toc.title.p" + select="contains($toc.params, 'title')"/> + </xsl:call-template> + </xsl:when> + </xsl:choose> + </xsl:for-each> + </xsl:when> + </xsl:choose> + </xsl:variable> + + <xsl:if test="string-length(normalize-space($content)) != 0"> + <xsl:copy-of select="$content"/> + </xsl:if> + </xsl:if> +</xsl:template> + +<xsl:template match="chapter/toc | appendix/toc | preface/toc | article/toc"> + <xsl:variable name="toc.params"> + <xsl:call-template name="find.path.params"> + <xsl:with-param name="node" select="parent::*"/> + <xsl:with-param name="table" select="normalize-space($generate.toc)"/> + </xsl:call-template> + </xsl:variable> + + <!-- Do not output the toc element if one is already generated + by the use of $generate.toc parameter, or if + generating a source toc is turned off --> + <xsl:if test="not(contains($toc.params, 'toc')) and + ($process.source.toc != 0 or $process.empty.source.toc != 0)"> + <xsl:choose> + <xsl:when test="* and $process.source.toc != 0"> + <div> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:apply-templates select="title"/> + <dl> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:apply-templates select="*[not(self::title)]"/> + </dl> + </div> + <xsl:call-template name="component.toc.separator"/> + </xsl:when> + <xsl:when test="count(*) = 0 and $process.empty.source.toc != 0"> + <!-- trick to switch context node to section element --> + <xsl:for-each select="parent::*"> + <xsl:call-template name="component.toc"> + <xsl:with-param name="toc.title.p" + select="contains($toc.params, 'title')"/> + </xsl:call-template> + </xsl:for-each> + <xsl:call-template name="component.toc.separator"/> + </xsl:when> + </xsl:choose> + </xsl:if> +</xsl:template> + +<xsl:template match="section/toc + |sect1/toc + |sect2/toc + |sect3/toc + |sect4/toc + |sect5/toc"> + + <xsl:variable name="toc.params"> + <xsl:call-template name="find.path.params"> + <xsl:with-param name="node" select="parent::*"/> + <xsl:with-param name="table" select="normalize-space($generate.toc)"/> + </xsl:call-template> + </xsl:variable> + + <!-- Do not output the toc element if one is already generated + by the use of $generate.toc parameter, or if + generating a source toc is turned off --> + <xsl:if test="not(contains($toc.params, 'toc')) and + ($process.source.toc != 0 or $process.empty.source.toc != 0)"> + <xsl:choose> + <xsl:when test="* and $process.source.toc != 0"> + <div> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:apply-templates select="title"/> + <dl> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:apply-templates select="*[not(self::title)]"/> + </dl> + </div> + <xsl:call-template name="section.toc.separator"/> + </xsl:when> + <xsl:when test="count(*) = 0 and $process.empty.source.toc != 0"> + <!-- trick to switch context node to section element --> + <xsl:for-each select="parent::*"> + <xsl:call-template name="section.toc"> + <xsl:with-param name="toc.title.p" + select="contains($toc.params, 'title')"/> + </xsl:call-template> + </xsl:for-each> + <xsl:call-template name="section.toc.separator"/> + </xsl:when> + </xsl:choose> + </xsl:if> +</xsl:template> + +<!-- ==================================================================== --> + +<xsl:template match="tocpart|tocchap + |toclevel1|toclevel2|toclevel3|toclevel4|toclevel5"> + <xsl:variable name="sub-toc"> + <xsl:if test="tocchap|toclevel1|toclevel2|toclevel3|toclevel4|toclevel5"> + <xsl:choose> + <xsl:when test="$toc.list.type = 'dl'"> + <dd> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:element name="{$toc.list.type}"> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:apply-templates select="tocchap|toclevel1|toclevel2| + toclevel3|toclevel4|toclevel5"/> + </xsl:element> + </dd> + </xsl:when> + <xsl:otherwise> + <xsl:element name="{$toc.list.type}"> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:apply-templates select="tocchap|toclevel1|toclevel2| + toclevel3|toclevel4|toclevel5"/> + </xsl:element> + </xsl:otherwise> + </xsl:choose> + </xsl:if> + </xsl:variable> + + <xsl:apply-templates select="tocentry[position() != last()]"/> + + <xsl:choose> + <xsl:when test="$toc.list.type = 'dl'"> + <dt> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:apply-templates select="tocentry[position() = last()]"/> + </dt> + <xsl:copy-of select="$sub-toc"/> + </xsl:when> + <xsl:otherwise> + <li> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:apply-templates select="tocentry[position() = last()]"/> + <xsl:copy-of select="$sub-toc"/> + </li> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template match="tocentry|tocdiv|lotentry|tocfront|tocback"> + <xsl:choose> + <xsl:when test="$toc.list.type = 'dl'"> + <dt> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:call-template name="tocentry-content"/> + </dt> + </xsl:when> + <xsl:otherwise> + <li> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:call-template name="tocentry-content"/> + </li> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template match="tocentry[position() = last()]" priority="2"> + <xsl:call-template name="tocentry-content"/> +</xsl:template> + +<xsl:template name="tocentry-content"> + <xsl:variable name="targets" select="key('id',@linkend)"/> + <xsl:variable name="target" select="$targets[1]"/> + + <xsl:choose> + <xsl:when test="@linkend"> + <xsl:call-template name="check.id.unique"> + <xsl:with-param name="linkend" select="@linkend"/> + </xsl:call-template> + <a> + <xsl:attribute name="href"> + <xsl:call-template name="href.target"> + <xsl:with-param name="object" select="$target"/> + </xsl:call-template> + </xsl:attribute> + <xsl:apply-templates/> + </a> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates/> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template match="toc/title"> + <div> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:apply-templates/> + </div> +</xsl:template> + +<xsl:template match="toc/subtitle"> + <div> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:apply-templates/> + </div> +</xsl:template> + +<xsl:template match="toc/titleabbrev"> +</xsl:template> + +<!-- ==================================================================== --> + +<!-- A lot element must have content, because there is no attribute + to select what kind of list should be generated --> +<xsl:template match="book/lot | part/lot"> + <!-- Don't generate a page sequence unless there is content --> + <xsl:variable name="content"> + <xsl:choose> + <xsl:when test="* and $process.source.toc != 0"> + <div> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:apply-templates /> + </div> + </xsl:when> + <xsl:when test="not(child::*) and $process.empty.source.toc != 0"> + <xsl:call-template name="process.empty.lot"/> + </xsl:when> + </xsl:choose> + </xsl:variable> + + <xsl:if test="string-length(normalize-space($content)) != 0"> + <xsl:copy-of select="$content"/> + </xsl:if> +</xsl:template> + +<xsl:template match="chapter/lot | appendix/lot | preface/lot | article/lot"> + <xsl:choose> + <xsl:when test="* and $process.source.toc != 0"> + <div> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:apply-templates /> + </div> + <xsl:call-template name="component.toc.separator"/> + </xsl:when> + <xsl:when test="not(child::*) and $process.empty.source.toc != 0"> + <xsl:call-template name="process.empty.lot"/> + </xsl:when> + </xsl:choose> +</xsl:template> + +<xsl:template match="section/lot + |sect1/lot + |sect2/lot + |sect3/lot + |sect4/lot + |sect5/lot"> + <xsl:choose> + <xsl:when test="* and $process.source.toc != 0"> + <div> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:apply-templates/> + </div> + <xsl:call-template name="section.toc.separator"/> + </xsl:when> + <xsl:when test="not(child::*) and $process.empty.source.toc != 0"> + <xsl:call-template name="process.empty.lot"/> + </xsl:when> + </xsl:choose> +</xsl:template> + +<xsl:template name="process.empty.lot"> + <!-- An empty lot element does not provide any information to indicate + what should be included in it. You can customize this + template to generate a lot based on @role or something --> + <xsl:message> + <xsl:text>Warning: don't know what to generate for </xsl:text> + <xsl:text>lot that has no children.</xsl:text> + </xsl:message> +</xsl:template> + +<xsl:template match="lot/title"> + <div> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:apply-templates/> + </div> +</xsl:template> + +<xsl:template match="lot/subtitle"> + <div> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:apply-templates/> + </div> +</xsl:template> + +<xsl:template match="lot/titleabbrev"> +</xsl:template> + +</xsl:stylesheet> diff --git a/docbook-xsl-1.76.1/html/verbatim.xsl b/docbook-xsl-1.76.1/html/verbatim.xsl new file mode 100644 index 0000000..8c7b263 --- /dev/null +++ b/docbook-xsl-1.76.1/html/verbatim.xsl @@ -0,0 +1,410 @@ +<?xml version='1.0'?> +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + xmlns:sverb="http://nwalsh.com/xslt/ext/com.nwalsh.saxon.Verbatim" + xmlns:xverb="xalan://com.nwalsh.xalan.Verbatim" + xmlns:lxslt="http://xml.apache.org/xslt" + xmlns:exsl="http://exslt.org/common" + exclude-result-prefixes="sverb xverb lxslt exsl" + version='1.0'> + +<!-- ******************************************************************** + $Id: verbatim.xsl 8807 2010-08-09 18:57:41Z bobstayton $ + ******************************************************************** + + This file is part of the XSL DocBook Stylesheet distribution. + See ../README or http://docbook.sf.net/release/xsl/current/ for + copyright and other information. + + ******************************************************************** --> + +<!-- XSLTHL highlighting is turned off by default. See highlighting/README + for instructions on how to turn on XSLTHL --> +<xsl:template name="apply-highlighting"> + <xsl:apply-templates/> +</xsl:template> + +<lxslt:component prefix="xverb" + functions="numberLines"/> + +<xsl:template match="programlisting|screen|synopsis"> + <xsl:param name="suppress-numbers" select="'0'"/> + <xsl:variable name="id"> + <xsl:call-template name="object.id"/> + </xsl:variable> + + <xsl:call-template name="anchor"/> + + <xsl:variable name="div.element"> + <xsl:choose> + <xsl:when test="$make.clean.html != 0">div</xsl:when> + <xsl:otherwise>pre</xsl:otherwise> + </xsl:choose> + </xsl:variable> + + <xsl:if test="$shade.verbatim != 0"> + <xsl:message> + <xsl:text>The shade.verbatim parameter is deprecated. </xsl:text> + <xsl:text>Use CSS instead,</xsl:text> + </xsl:message> + <xsl:message> + <xsl:text>for example: pre.</xsl:text> + <xsl:value-of select="local-name(.)"/> + <xsl:text> { background-color: #E0E0E0; }</xsl:text> + </xsl:message> + </xsl:if> + + <xsl:choose> + <xsl:when test="$suppress-numbers = '0' + and @linenumbering = 'numbered' + and $use.extensions != '0' + and $linenumbering.extension != '0'"> + <xsl:variable name="rtf"> + <xsl:choose> + <xsl:when test="$highlight.source != 0"> + <xsl:call-template name="apply-highlighting"/> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates/> + </xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:element name="{$div.element}"> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:if test="@width != ''"> + <xsl:attribute name="width"> + <xsl:value-of select="@width"/> + </xsl:attribute> + </xsl:if> + <xsl:call-template name="number.rtf.lines"> + <xsl:with-param name="rtf" select="$rtf"/> + </xsl:call-template> + </xsl:element> + </xsl:when> + <xsl:otherwise> + <xsl:element name="{$div.element}"> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:if test="@width != ''"> + <xsl:attribute name="width"> + <xsl:value-of select="@width"/> + </xsl:attribute> + </xsl:if> + <xsl:choose> + <xsl:when test="$highlight.source != 0"> + <xsl:call-template name="apply-highlighting"/> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates/> + </xsl:otherwise> + </xsl:choose> + </xsl:element> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template match="literallayout"> + <xsl:param name="suppress-numbers" select="'0'"/> + + <xsl:variable name="rtf"> + <xsl:apply-templates/> + </xsl:variable> + + <xsl:if test="$shade.verbatim != 0 and @class='monospaced'"> + <xsl:message> + <xsl:text>The shade.verbatim parameter is deprecated. </xsl:text> + <xsl:text>Use CSS instead,</xsl:text> + </xsl:message> + <xsl:message> + <xsl:text>for example: pre.</xsl:text> + <xsl:value-of select="local-name(.)"/> + <xsl:text> { background-color: #E0E0E0; }</xsl:text> + </xsl:message> + </xsl:if> + + <xsl:choose> + <xsl:when test="$suppress-numbers = '0' + and @linenumbering = 'numbered' + and $use.extensions != '0' + and $linenumbering.extension != '0'"> + <xsl:choose> + <xsl:when test="@class='monospaced'"> + <pre> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:call-template name="number.rtf.lines"> + <xsl:with-param name="rtf" select="$rtf"/> + </xsl:call-template> + </pre> + </xsl:when> + <xsl:otherwise> + <div> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <p> + <xsl:call-template name="number.rtf.lines"> + <xsl:with-param name="rtf" select="$rtf"/> + </xsl:call-template> + </p> + </div> + </xsl:otherwise> + </xsl:choose> + </xsl:when> + <xsl:otherwise> + <xsl:choose> + <xsl:when test="@class='monospaced'"> + <pre> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:copy-of select="$rtf"/> + </pre> + </xsl:when> + <xsl:otherwise> + <div> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <p> + <xsl:call-template name="make-verbatim"> + <xsl:with-param name="rtf" select="$rtf"/> + </xsl:call-template> + </p> + </div> + </xsl:otherwise> + </xsl:choose> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template match="address"> + <xsl:param name="suppress-numbers" select="'0'"/> + + <xsl:variable name="rtf"> + <xsl:apply-templates/> + </xsl:variable> + + <xsl:choose> + <xsl:when test="$suppress-numbers = '0' + and @linenumbering = 'numbered' + and $use.extensions != '0' + and $linenumbering.extension != '0'"> + <div> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <p> + <xsl:call-template name="number.rtf.lines"> + <xsl:with-param name="rtf" select="$rtf"/> + </xsl:call-template> + </p> + </div> + </xsl:when> + + <xsl:otherwise> + <div> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <p> + <xsl:call-template name="make-verbatim"> + <xsl:with-param name="rtf" select="$rtf"/> + </xsl:call-template> + </p> + </div> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template name="number.rtf.lines"> + <xsl:param name="rtf" select="''"/> + <xsl:param name="pi.context" select="."/> + + <!-- Save the global values --> + <xsl:variable name="global.linenumbering.everyNth" + select="$linenumbering.everyNth"/> + + <xsl:variable name="global.linenumbering.separator" + select="$linenumbering.separator"/> + + <xsl:variable name="global.linenumbering.width" + select="$linenumbering.width"/> + + <!-- Extract the <?dbhtml linenumbering.*?> PI values --> + <xsl:variable name="pi.linenumbering.everyNth"> + <xsl:call-template name="pi.dbhtml_linenumbering.everyNth"> + <xsl:with-param name="node" select="$pi.context"/> + </xsl:call-template> + </xsl:variable> + + <xsl:variable name="pi.linenumbering.separator"> + <xsl:call-template name="pi.dbhtml_linenumbering.separator"> + <xsl:with-param name="node" select="$pi.context"/> + </xsl:call-template> + </xsl:variable> + + <xsl:variable name="pi.linenumbering.width"> + <xsl:call-template name="pi.dbhtml_linenumbering.width"> + <xsl:with-param name="node" select="$pi.context"/> + </xsl:call-template> + </xsl:variable> + + <!-- Construct the 'in-context' values --> + <xsl:variable name="linenumbering.everyNth"> + <xsl:choose> + <xsl:when test="$pi.linenumbering.everyNth != ''"> + <xsl:value-of select="$pi.linenumbering.everyNth"/> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="$global.linenumbering.everyNth"/> + </xsl:otherwise> + </xsl:choose> + </xsl:variable> + + <xsl:variable name="linenumbering.separator"> + <xsl:choose> + <xsl:when test="$pi.linenumbering.separator != ''"> + <xsl:value-of select="$pi.linenumbering.separator"/> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="$global.linenumbering.separator"/> + </xsl:otherwise> + </xsl:choose> + </xsl:variable> + + <xsl:variable name="linenumbering.width"> + <xsl:choose> + <xsl:when test="$pi.linenumbering.width != ''"> + <xsl:value-of select="$pi.linenumbering.width"/> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="$global.linenumbering.width"/> + </xsl:otherwise> + </xsl:choose> + </xsl:variable> + + <xsl:variable name="linenumbering.startinglinenumber"> + <xsl:choose> + <xsl:when test="$pi.context/@startinglinenumber"> + <xsl:value-of select="$pi.context/@startinglinenumber"/> + </xsl:when> + <xsl:when test="$pi.context/@continuation='continues'"> + <xsl:variable name="lastLine"> + <xsl:choose> + <xsl:when test="$pi.context/self::programlisting"> + <xsl:call-template name="lastLineNumber"> + <xsl:with-param name="listings" + select="preceding::programlisting[@linenumbering='numbered']"/> + </xsl:call-template> + </xsl:when> + <xsl:when test="$pi.context/self::screen"> + <xsl:call-template name="lastLineNumber"> + <xsl:with-param name="listings" + select="preceding::screen[@linenumbering='numbered']"/> + </xsl:call-template> + </xsl:when> + <xsl:when test="$pi.context/self::literallayout"> + <xsl:call-template name="lastLineNumber"> + <xsl:with-param name="listings" + select="preceding::literallayout[@linenumbering='numbered']"/> + </xsl:call-template> + </xsl:when> + <xsl:when test="$pi.context/self::address"> + <xsl:call-template name="lastLineNumber"> + <xsl:with-param name="listings" + select="preceding::address[@linenumbering='numbered']"/> + </xsl:call-template> + </xsl:when> + <xsl:when test="$pi.context/self::synopsis"> + <xsl:call-template name="lastLineNumber"> + <xsl:with-param name="listings" + select="preceding::synopsis[@linenumbering='numbered']"/> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:message> + <xsl:text>Unexpected verbatim environment: </xsl:text> + <xsl:value-of select="local-name($pi.context)"/> + </xsl:message> + <xsl:value-of select="0"/> + </xsl:otherwise> + </xsl:choose> + </xsl:variable> + + <xsl:value-of select="$lastLine + 1"/> + </xsl:when> + <xsl:otherwise>1</xsl:otherwise> + </xsl:choose> + </xsl:variable> + + <xsl:choose> + <xsl:when test="function-available('sverb:numberLines')"> + <xsl:copy-of select="sverb:numberLines($rtf)"/> + </xsl:when> + <xsl:when test="function-available('xverb:numberLines')"> + <xsl:copy-of select="xverb:numberLines($rtf)"/> + </xsl:when> + <xsl:otherwise> + <xsl:message terminate="yes"> + <xsl:text>No numberLines function available.</xsl:text> + </xsl:message> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template name="make-verbatim"> + <xsl:param name="rtf"/> + + <!-- I want to make this RTF verbatim. There are two possibilities: either + I have access to the exsl:node-set extension function and I can "do it right" + or I have to rely on CSS. --> + + <xsl:choose> + <xsl:when test="$exsl.node.set.available != 0"> + <xsl:apply-templates select="exsl:node-set($rtf)" mode="make.verbatim.mode"/> + </xsl:when> + <xsl:otherwise> + <span style="white-space: pre;"> + <xsl:copy-of select="$rtf"/> + </span> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<!-- ======================================================================== --> + +<xsl:template name="lastLineNumber"> + <xsl:param name="listings"/> + <xsl:param name="number" select="0"/> + + <xsl:variable name="lines"> + <xsl:call-template name="countLines"> + <xsl:with-param name="listing" select="string($listings[1])"/> + </xsl:call-template> + </xsl:variable> + + <xsl:choose> + <xsl:when test="not($listings)"> + <xsl:value-of select="$number"/> + </xsl:when> + <xsl:when test="$listings[1]/@startinglinenumber"> + <xsl:value-of select="$number + $listings[1]/@startinglinenumber + $lines - 1"/> + </xsl:when> + <xsl:when test="$listings[1]/@continuation='continues'"> + <xsl:call-template name="lastLineNumber"> + <xsl:with-param name="listings" select="listings[position() > 1]"/> + <xsl:with-param name="number" select="$number + $lines"/> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="$lines"/> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template name="countLines"> + <xsl:param name="listing"/> + <xsl:param name="count" select="1"/> + + <xsl:choose> + <xsl:when test="contains($listing, ' ')"> + <xsl:call-template name="countLines"> + <xsl:with-param name="listing" select="substring-after($listing, ' ')"/> + <xsl:with-param name="count" select="$count + 1"/> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="$count"/> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +</xsl:stylesheet> diff --git a/docbook-xsl-1.76.1/html/xref.xsl b/docbook-xsl-1.76.1/html/xref.xsl new file mode 100644 index 0000000..771bca5 --- /dev/null +++ b/docbook-xsl-1.76.1/html/xref.xsl @@ -0,0 +1,1377 @@ +<?xml version='1.0'?> +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + xmlns:suwl="http://nwalsh.com/xslt/ext/com.nwalsh.saxon.UnwrapLinks" + xmlns:exsl="http://exslt.org/common" + xmlns:xlink='http://www.w3.org/1999/xlink' + exclude-result-prefixes="suwl exsl xlink" + version='1.0'> + +<!-- ******************************************************************** + $Id: xref.xsl 8421 2009-05-04 07:49:49Z bobstayton $ + ******************************************************************** + + This file is part of the XSL DocBook Stylesheet distribution. + See ../README or http://docbook.sf.net/release/xsl/current/ for + copyright and other information. + + ******************************************************************** --> + +<!-- Use internal variable for olink xlink role for consistency --> +<xsl:variable + name="xolink.role">http://docbook.org/xlink/role/olink</xsl:variable> + +<!-- ==================================================================== --> + +<xsl:template match="anchor"> + <xsl:call-template name="anchor"/> +</xsl:template> + +<!-- ==================================================================== --> + +<xsl:template match="xref" name="xref"> + <xsl:param name="xhref" select="@xlink:href"/> + <!-- is the @xlink:href a local idref link? --> + <xsl:param name="xlink.idref"> + <xsl:if test="starts-with($xhref,'#') + and (not(contains($xhref,'(')) + or starts-with($xhref, '#xpointer(id('))"> + <xsl:call-template name="xpointer.idref"> + <xsl:with-param name="xpointer" select="$xhref"/> + </xsl:call-template> + </xsl:if> + </xsl:param> + <xsl:param name="xlink.targets" select="key('id',$xlink.idref)"/> + <xsl:param name="linkend.targets" select="key('id',@linkend)"/> + <xsl:param name="target" select="($xlink.targets | $linkend.targets)[1]"/> + + <xsl:variable name="xrefstyle"> + <xsl:choose> + <xsl:when test="@role and not(@xrefstyle) + and $use.role.as.xrefstyle != 0"> + <xsl:value-of select="@role"/> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="@xrefstyle"/> + </xsl:otherwise> + </xsl:choose> + </xsl:variable> + + <xsl:call-template name="anchor"/> + + <xsl:variable name="content"> + <xsl:choose> + + <xsl:when test="@endterm"> + <xsl:variable name="etargets" select="key('id',@endterm)"/> + <xsl:variable name="etarget" select="$etargets[1]"/> + <xsl:choose> + <xsl:when test="count($etarget) = 0"> + <xsl:message> + <xsl:value-of select="count($etargets)"/> + <xsl:text>Endterm points to nonexistent ID: </xsl:text> + <xsl:value-of select="@endterm"/> + </xsl:message> + <xsl:text>???</xsl:text> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates select="$etarget" mode="endterm"/> + </xsl:otherwise> + </xsl:choose> + </xsl:when> + + <xsl:when test="$target/@xreflabel"> + <xsl:call-template name="xref.xreflabel"> + <xsl:with-param name="target" select="$target"/> + </xsl:call-template> + </xsl:when> + + <xsl:when test="$target"> + <xsl:if test="not(parent::citation)"> + <xsl:apply-templates select="$target" mode="xref-to-prefix"/> + </xsl:if> + + <xsl:apply-templates select="$target" mode="xref-to"> + <xsl:with-param name="referrer" select="."/> + <xsl:with-param name="xrefstyle" select="$xrefstyle"/> + </xsl:apply-templates> + + <xsl:if test="not(parent::citation)"> + <xsl:apply-templates select="$target" mode="xref-to-suffix"/> + </xsl:if> + </xsl:when> + + <xsl:otherwise> + <xsl:message> + <xsl:text>ERROR: xref linking to </xsl:text> + <xsl:value-of select="@linkend|@xlink:href"/> + <xsl:text> has no generated link text.</xsl:text> + </xsl:message> + <xsl:text>???</xsl:text> + </xsl:otherwise> + </xsl:choose> + </xsl:variable> + + <xsl:call-template name="simple.xlink"> + <xsl:with-param name="content" select="$content"/> + </xsl:call-template> + +</xsl:template> + +<!-- ==================================================================== --> + +<!-- biblioref handled largely like an xref --> +<!-- To be done: add support for begin, end, and units attributes --> +<xsl:template match="biblioref"> + <xsl:variable name="targets" select="key('id',@linkend)"/> + <xsl:variable name="target" select="$targets[1]"/> + <xsl:variable name="refelem" select="local-name($target)"/> + + <xsl:call-template name="check.id.unique"> + <xsl:with-param name="linkend" select="@linkend"/> + </xsl:call-template> + + <xsl:call-template name="anchor"/> + + <xsl:choose> + <xsl:when test="count($target) = 0"> + <xsl:message> + <xsl:text>XRef to nonexistent id: </xsl:text> + <xsl:value-of select="@linkend"/> + </xsl:message> + <xsl:text>???</xsl:text> + </xsl:when> + + <xsl:when test="@endterm"> + <xsl:variable name="href"> + <xsl:call-template name="href.target"> + <xsl:with-param name="object" select="$target"/> + </xsl:call-template> + </xsl:variable> + + <xsl:variable name="etargets" select="key('id',@endterm)"/> + <xsl:variable name="etarget" select="$etargets[1]"/> + <xsl:choose> + <xsl:when test="count($etarget) = 0"> + <xsl:message> + <xsl:value-of select="count($etargets)"/> + <xsl:text>Endterm points to nonexistent ID: </xsl:text> + <xsl:value-of select="@endterm"/> + </xsl:message> + <a href="{$href}"> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:text>???</xsl:text> + </a> + </xsl:when> + <xsl:otherwise> + <a href="{$href}"> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:apply-templates select="$etarget" mode="endterm"/> + </a> + </xsl:otherwise> + </xsl:choose> + </xsl:when> + + <xsl:when test="$target/@xreflabel"> + <a> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:attribute name="href"> + <xsl:call-template name="href.target"> + <xsl:with-param name="object" select="$target"/> + </xsl:call-template> + </xsl:attribute> + <xsl:call-template name="xref.xreflabel"> + <xsl:with-param name="target" select="$target"/> + </xsl:call-template> + </a> + </xsl:when> + + <xsl:otherwise> + <xsl:variable name="href"> + <xsl:call-template name="href.target"> + <xsl:with-param name="object" select="$target"/> + </xsl:call-template> + </xsl:variable> + + <xsl:if test="not(parent::citation)"> + <xsl:apply-templates select="$target" mode="xref-to-prefix"/> + </xsl:if> + + <a href="{$href}"> + <xsl:apply-templates select="." mode="class.attribute"/> + <xsl:if test="$target/title or $target/*/title"> + <xsl:attribute name="title"> + <xsl:apply-templates select="$target" mode="xref-title"/> + </xsl:attribute> + </xsl:if> + <xsl:apply-templates select="$target" mode="xref-to"> + <xsl:with-param name="referrer" select="."/> + <xsl:with-param name="xrefstyle"> + <xsl:choose> + <xsl:when test="@role and not(@xrefstyle) and $use.role.as.xrefstyle != 0"> + <xsl:value-of select="@role"/> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="@xrefstyle"/> + </xsl:otherwise> + </xsl:choose> + </xsl:with-param> + </xsl:apply-templates> + </a> + + <xsl:if test="not(parent::citation)"> + <xsl:apply-templates select="$target" mode="xref-to-suffix"/> + </xsl:if> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<!-- ==================================================================== --> + +<xsl:template match="*" mode="endterm"> + <!-- Process the children of the endterm element --> + <xsl:variable name="endterm"> + <xsl:apply-templates select="child::node()"/> + </xsl:variable> + + <xsl:choose> + <xsl:when test="$exsl.node.set.available != 0"> + <xsl:apply-templates select="exsl:node-set($endterm)" mode="remove-ids"/> + </xsl:when> + <xsl:otherwise> + <xsl:copy-of select="$endterm"/> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template match="*" mode="remove-ids"> + <xsl:choose> + <!-- handle html or xhtml --> + <xsl:when test="local-name(.) = 'a' + and (namespace-uri(.) = '' + or namespace-uri(.) = 'http://www.w3.org/1999/xhtml')"> + <xsl:choose> + <xsl:when test="(@name and count(@*) = 1) + or (@id and count(@*) = 1) + or (@xml:id and count(@*) = 1) + or (@xml:id and @name and count(@*) = 2) + or (@id and @name and count(@*) = 2)"> + <xsl:message>suppress anchor</xsl:message> + <!-- suppress the whole thing --> + </xsl:when> + <xsl:otherwise> + <xsl:copy> + <xsl:for-each select="@*"> + <xsl:choose> + <xsl:when test="local-name(.) != 'name' and local-name(.) != 'id'"> + <xsl:copy/> + </xsl:when> + <xsl:otherwise> + <xsl:message>removing <xsl:value-of + select="local-name(.)"/></xsl:message> + </xsl:otherwise> + </xsl:choose> + </xsl:for-each> + </xsl:copy> + <xsl:apply-templates mode="remove-ids"/> + </xsl:otherwise> + </xsl:choose> + </xsl:when> + <xsl:otherwise> + <xsl:copy> + <xsl:for-each select="@*"> + <xsl:choose> + <xsl:when test="local-name(.) != 'id'"> + <xsl:copy/> + </xsl:when> + <xsl:otherwise> + <xsl:message>removing <xsl:value-of + select="local-name(.)"/></xsl:message> + </xsl:otherwise> + </xsl:choose> + </xsl:for-each> + <xsl:apply-templates mode="remove-ids"/> + </xsl:copy> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<!-- ==================================================================== --> + +<xsl:template match="*" mode="xref-to-prefix"/> +<xsl:template match="*" mode="xref-to-suffix"/> + +<xsl:template match="*" mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="verbose" select="1"/> + + <xsl:if test="$verbose"> + <xsl:message> + <xsl:text>Don't know what gentext to create for xref to: "</xsl:text> + <xsl:value-of select="name(.)"/> + <xsl:text>", ("</xsl:text> + <xsl:value-of select="(@id|@xml:id)[1]"/> + <xsl:text>")</xsl:text> + </xsl:message> + </xsl:if> + <xsl:text>???</xsl:text> +</xsl:template> + +<xsl:template match="title" mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="verbose" select="1"/> + + <!-- if you xref to a title, xref to the parent... --> + <xsl:choose> + <!-- FIXME: how reliable is this? --> + <xsl:when test="contains(local-name(parent::*), 'info')"> + <xsl:apply-templates select="parent::*[2]" mode="xref-to"> + <xsl:with-param name="referrer" select="$referrer"/> + <xsl:with-param name="xrefstyle" select="$xrefstyle"/> + <xsl:with-param name="verbose" select="$verbose"/> + </xsl:apply-templates> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates select="parent::*" mode="xref-to"> + <xsl:with-param name="referrer" select="$referrer"/> + <xsl:with-param name="xrefstyle" select="$xrefstyle"/> + <xsl:with-param name="verbose" select="$verbose"/> + </xsl:apply-templates> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template match="abstract|authorblurb|personblurb|bibliodiv|bibliomset + |biblioset|blockquote|calloutlist|caution|colophon + |constraintdef|formalpara|glossdiv|important|indexdiv + |itemizedlist|legalnotice|lot|msg|msgexplan|msgmain + |msgrel|msgset|msgsub|note|orderedlist|partintro + |productionset|qandadiv|refsynopsisdiv|segmentedlist + |set|setindex|sidebar|tip|toc|variablelist|warning" + mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="verbose" select="1"/> + + <!-- catch-all for things with (possibly optional) titles --> + <xsl:apply-templates select="." mode="object.xref.markup"> + <xsl:with-param name="purpose" select="'xref'"/> + <xsl:with-param name="xrefstyle" select="$xrefstyle"/> + <xsl:with-param name="referrer" select="$referrer"/> + <xsl:with-param name="verbose" select="$verbose"/> + </xsl:apply-templates> +</xsl:template> + +<xsl:template match="author|editor|othercredit|personname" mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + + <xsl:call-template name="person.name"/> +</xsl:template> + +<xsl:template match="authorgroup" mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + + <xsl:call-template name="person.name.list"/> +</xsl:template> + +<xsl:template match="figure|example|table|equation" mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="verbose" select="1"/> + + <xsl:apply-templates select="." mode="object.xref.markup"> + <xsl:with-param name="purpose" select="'xref'"/> + <xsl:with-param name="xrefstyle" select="$xrefstyle"/> + <xsl:with-param name="referrer" select="$referrer"/> + <xsl:with-param name="verbose" select="$verbose"/> + </xsl:apply-templates> +</xsl:template> + +<xsl:template match="procedure" mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="verbose"/> + + <xsl:apply-templates select="." mode="object.xref.markup"> + <xsl:with-param name="purpose" select="'xref'"/> + <xsl:with-param name="xrefstyle" select="$xrefstyle"/> + <xsl:with-param name="referrer" select="$referrer"/> + <xsl:with-param name="verbose" select="$verbose"/> + </xsl:apply-templates> +</xsl:template> + +<xsl:template match="task" mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="verbose"/> + + <xsl:apply-templates select="." mode="object.xref.markup"> + <xsl:with-param name="purpose" select="'xref'"/> + <xsl:with-param name="xrefstyle" select="$xrefstyle"/> + <xsl:with-param name="referrer" select="$referrer"/> + <xsl:with-param name="verbose" select="$verbose"/> + </xsl:apply-templates> +</xsl:template> + +<xsl:template match="cmdsynopsis" mode="xref-to"> + <xsl:apply-templates select="(.//command)[1]" mode="xref"/> +</xsl:template> + +<xsl:template match="funcsynopsis" mode="xref-to"> + <xsl:apply-templates select="(.//function)[1]" mode="xref"/> +</xsl:template> + +<xsl:template match="dedication|acknowledgements|preface|chapter|appendix|article" mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="verbose" select="1"/> + + <xsl:apply-templates select="." mode="object.xref.markup"> + <xsl:with-param name="purpose" select="'xref'"/> + <xsl:with-param name="xrefstyle" select="$xrefstyle"/> + <xsl:with-param name="referrer" select="$referrer"/> + <xsl:with-param name="verbose" select="$verbose"/> + </xsl:apply-templates> +</xsl:template> + +<xsl:template match="bibliography" mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="verbose" select="1"/> + + <xsl:apply-templates select="." mode="object.xref.markup"> + <xsl:with-param name="purpose" select="'xref'"/> + <xsl:with-param name="xrefstyle" select="$xrefstyle"/> + <xsl:with-param name="referrer" select="$referrer"/> + <xsl:with-param name="verbose" select="$verbose"/> + </xsl:apply-templates> +</xsl:template> + +<xsl:template match="biblioentry|bibliomixed" mode="xref-to-prefix"> + <xsl:text>[</xsl:text> +</xsl:template> + +<xsl:template match="biblioentry|bibliomixed" mode="xref-to-suffix"> + <xsl:text>]</xsl:text> +</xsl:template> + +<xsl:template match="biblioentry|bibliomixed" mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="verbose" select="1"/> + + <!-- handles both biblioentry and bibliomixed --> + <xsl:choose> + <xsl:when test="string(.) = ''"> + <xsl:variable name="bib" select="document($bibliography.collection,.)"/> + <xsl:variable name="id" select="(@id|@xml:id)[1]"/> + <xsl:variable name="entry" select="$bib/bibliography/ + *[@id=$id or @xml:id=$id][1]"/> + <xsl:choose> + <xsl:when test="$entry"> + <xsl:choose> + <xsl:when test="$bibliography.numbered != 0"> + <xsl:number from="bibliography" count="biblioentry|bibliomixed" + level="any" format="1"/> + </xsl:when> + <xsl:when test="local-name($entry/*[1]) = 'abbrev'"> + <xsl:apply-templates select="$entry/*[1]"/> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="(@id|@xml:id)[1]"/> + </xsl:otherwise> + </xsl:choose> + </xsl:when> + <xsl:otherwise> + <xsl:message> + <xsl:text>No bibliography entry: </xsl:text> + <xsl:value-of select="$id"/> + <xsl:text> found in </xsl:text> + <xsl:value-of select="$bibliography.collection"/> + </xsl:message> + <xsl:value-of select="(@id|@xml:id)[1]"/> + </xsl:otherwise> + </xsl:choose> + </xsl:when> + <xsl:otherwise> + <xsl:choose> + <xsl:when test="$bibliography.numbered != 0"> + <xsl:number from="bibliography" count="biblioentry|bibliomixed" + level="any" format="1"/> + </xsl:when> + <xsl:when test="local-name(*[1]) = 'abbrev'"> + <xsl:apply-templates select="*[1]"/> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="(@id|@xml:id)[1]"/> + </xsl:otherwise> + </xsl:choose> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template match="glossary" mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="verbose" select="1"/> + + <xsl:apply-templates select="." mode="object.xref.markup"> + <xsl:with-param name="purpose" select="'xref'"/> + <xsl:with-param name="xrefstyle" select="$xrefstyle"/> + <xsl:with-param name="referrer" select="$referrer"/> + <xsl:with-param name="verbose" select="$verbose"/> + </xsl:apply-templates> +</xsl:template> + +<xsl:template match="glossentry" mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="verbose" select="1"/> + <xsl:choose> + <xsl:when test="$glossentry.show.acronym = 'primary'"> + <xsl:choose> + <xsl:when test="acronym|abbrev"> + <xsl:apply-templates select="(acronym|abbrev)[1]"/> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates select="glossterm[1]" mode="xref-to"> + <xsl:with-param name="xrefstyle" select="$xrefstyle"/> + <xsl:with-param name="referrer" select="$referrer"/> + <xsl:with-param name="verbose" select="$verbose"/> + </xsl:apply-templates> + </xsl:otherwise> + </xsl:choose> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates select="glossterm[1]" mode="xref-to"> + <xsl:with-param name="xrefstyle" select="$xrefstyle"/> + <xsl:with-param name="referrer" select="$referrer"/> + <xsl:with-param name="verbose" select="$verbose"/> + </xsl:apply-templates> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template match="glossterm|firstterm" mode="xref-to"> + <xsl:apply-templates/> +</xsl:template> + +<xsl:template match="index" mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="verbose" select="1"/> + + <xsl:apply-templates select="." mode="object.xref.markup"> + <xsl:with-param name="purpose" select="'xref'"/> + <xsl:with-param name="xrefstyle" select="$xrefstyle"/> + <xsl:with-param name="referrer" select="$referrer"/> + <xsl:with-param name="verbose" select="$verbose"/> + </xsl:apply-templates> +</xsl:template> + +<xsl:template match="listitem" mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="verbose"/> + + <xsl:apply-templates select="." mode="object.xref.markup"> + <xsl:with-param name="purpose" select="'xref'"/> + <xsl:with-param name="xrefstyle" select="$xrefstyle"/> + <xsl:with-param name="referrer" select="$referrer"/> + <xsl:with-param name="verbose" select="$verbose"/> + </xsl:apply-templates> +</xsl:template> + +<xsl:template match="section|simplesect + |sect1|sect2|sect3|sect4|sect5 + |refsect1|refsect2|refsect3|refsection" mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="verbose" select="1"/> + + <xsl:apply-templates select="." mode="object.xref.markup"> + <xsl:with-param name="purpose" select="'xref'"/> + <xsl:with-param name="xrefstyle" select="$xrefstyle"/> + <xsl:with-param name="referrer" select="$referrer"/> + <xsl:with-param name="verbose" select="$verbose"/> + </xsl:apply-templates> + <!-- FIXME: What about "in Chapter X"? --> +</xsl:template> + +<xsl:template match="bridgehead" mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="verbose" select="1"/> + + <xsl:apply-templates select="." mode="object.xref.markup"> + <xsl:with-param name="purpose" select="'xref'"/> + <xsl:with-param name="xrefstyle" select="$xrefstyle"/> + <xsl:with-param name="referrer" select="$referrer"/> + <xsl:with-param name="verbose" select="$verbose"/> + </xsl:apply-templates> + <!-- FIXME: What about "in Chapter X"? --> +</xsl:template> + +<xsl:template match="qandaset" mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="verbose" select="1"/> + + <xsl:apply-templates select="." mode="object.xref.markup"> + <xsl:with-param name="purpose" select="'xref'"/> + <xsl:with-param name="xrefstyle" select="$xrefstyle"/> + <xsl:with-param name="referrer" select="$referrer"/> + <xsl:with-param name="verbose" select="$verbose"/> + </xsl:apply-templates> +</xsl:template> + +<xsl:template match="qandadiv" mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="verbose" select="1"/> + + <xsl:apply-templates select="." mode="object.xref.markup"> + <xsl:with-param name="purpose" select="'xref'"/> + <xsl:with-param name="xrefstyle" select="$xrefstyle"/> + <xsl:with-param name="referrer" select="$referrer"/> + <xsl:with-param name="verbose" select="$verbose"/> + </xsl:apply-templates> +</xsl:template> + +<xsl:template match="qandaentry" mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="verbose" select="1"/> + + <xsl:apply-templates select="question[1]" mode="xref-to"> + <xsl:with-param name="xrefstyle" select="$xrefstyle"/> + <xsl:with-param name="referrer" select="$referrer"/> + <xsl:with-param name="verbose" select="$verbose"/> + </xsl:apply-templates> +</xsl:template> + +<xsl:template match="question|answer" mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="verbose" select="1"/> + + <xsl:choose> + <xsl:when test="string-length(label) != 0"> + <xsl:apply-templates select="." mode="label.markup"/> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates select="." mode="object.xref.markup"> + <xsl:with-param name="purpose" select="'xref'"/> + <xsl:with-param name="xrefstyle" select="$xrefstyle"/> + <xsl:with-param name="referrer" select="$referrer"/> + <xsl:with-param name="verbose" select="$verbose"/> + </xsl:apply-templates> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template match="part|reference" mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="verbose" select="1"/> + + <xsl:apply-templates select="." mode="object.xref.markup"> + <xsl:with-param name="purpose" select="'xref'"/> + <xsl:with-param name="xrefstyle" select="$xrefstyle"/> + <xsl:with-param name="referrer" select="$referrer"/> + <xsl:with-param name="verbose" select="$verbose"/> + </xsl:apply-templates> +</xsl:template> + +<xsl:template match="refentry" mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + + <xsl:choose> + <xsl:when test="refmeta/refentrytitle"> + <xsl:apply-templates select="refmeta/refentrytitle"/> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates select="refnamediv/refname[1]"/> + </xsl:otherwise> + </xsl:choose> + <xsl:apply-templates select="refmeta/manvolnum"/> +</xsl:template> + +<xsl:template match="refnamediv" mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="verbose" select="1"/> + + <xsl:apply-templates select="refname[1]" mode="xref-to"> + <xsl:with-param name="xrefstyle" select="$xrefstyle"/> + <xsl:with-param name="referrer" select="$referrer"/> + <xsl:with-param name="verbose" select="$verbose"/> + </xsl:apply-templates> +</xsl:template> + +<xsl:template match="refname" mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="verbose" select="1"/> + + <xsl:apply-templates mode="xref-to"/> +</xsl:template> + +<xsl:template match="step" mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + + <xsl:call-template name="gentext"> + <xsl:with-param name="key" select="'Step'"/> + </xsl:call-template> + <xsl:text> </xsl:text> + <xsl:apply-templates select="." mode="number"/> +</xsl:template> + +<xsl:template match="varlistentry" mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="verbose" select="1"/> + + <xsl:apply-templates select="term[1]" mode="xref-to"> + <xsl:with-param name="xrefstyle" select="$xrefstyle"/> + <xsl:with-param name="referrer" select="$referrer"/> + <xsl:with-param name="verbose" select="$verbose"/> + </xsl:apply-templates> +</xsl:template> + +<xsl:template match="primary|secondary|tertiary" mode="xref-to"> + <xsl:value-of select="."/> +</xsl:template> + +<xsl:template match="indexterm" mode="xref-to"> + <xsl:value-of select="primary"/> +</xsl:template> + +<xsl:template match="varlistentry/term" mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + + <!-- to avoid the comma that will be generated if there are several terms --> + <xsl:apply-templates/> +</xsl:template> + +<xsl:template match="co" mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + + <xsl:apply-templates select="." mode="callout-bug"/> +</xsl:template> + +<xsl:template match="area|areaset" mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + + <xsl:call-template name="callout-bug"> + <xsl:with-param name="conum"> + <xsl:apply-templates select="." mode="conumber"/> + </xsl:with-param> + </xsl:call-template> +</xsl:template> + +<xsl:template match="book" mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="verbose" select="1"/> + + <xsl:apply-templates select="." mode="object.xref.markup"> + <xsl:with-param name="purpose" select="'xref'"/> + <xsl:with-param name="xrefstyle" select="$xrefstyle"/> + <xsl:with-param name="referrer" select="$referrer"/> + <xsl:with-param name="verbose" select="$verbose"/> + </xsl:apply-templates> +</xsl:template> + +<!-- These are elements for which no link text exists, so an xref to one + uses the xrefstyle attribute if specified, or if not it falls back + to the container element's link text --> +<xsl:template match="para|phrase|simpara|anchor|quote" mode="xref-to"> + <xsl:param name="referrer"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="verbose" select="1"/> + + <xsl:variable name="context" select="(ancestor::simplesect + |ancestor::section + |ancestor::sect1 + |ancestor::sect2 + |ancestor::sect3 + |ancestor::sect4 + |ancestor::sect5 + |ancestor::refsection + |ancestor::refsect1 + |ancestor::refsect2 + |ancestor::refsect3 + |ancestor::chapter + |ancestor::appendix + |ancestor::preface + |ancestor::partintro + |ancestor::dedication + |ancestor::acknowledgements + |ancestor::colophon + |ancestor::bibliography + |ancestor::index + |ancestor::glossary + |ancestor::glossentry + |ancestor::listitem + |ancestor::varlistentry)[last()]"/> + + <xsl:choose> + <xsl:when test="$xrefstyle != ''"> + <xsl:apply-templates select="." mode="object.xref.markup"> + <xsl:with-param name="xrefstyle" select="$xrefstyle"/> + <xsl:with-param name="referrer" select="$referrer"/> + <xsl:with-param name="verbose" select="$verbose"/> + </xsl:apply-templates> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates select="$context" mode="xref-to"> + <xsl:with-param name="purpose" select="'xref'"/> + <xsl:with-param name="xrefstyle" select="$xrefstyle"/> + <xsl:with-param name="referrer" select="$referrer"/> + <xsl:with-param name="verbose" select="$verbose"/> + </xsl:apply-templates> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<!-- ==================================================================== --> + +<xsl:template match="*" mode="xref-title"> + <xsl:variable name="title"> + <xsl:apply-templates select="." mode="object.title.markup"/> + </xsl:variable> + + <xsl:value-of select="$title"/> +</xsl:template> + +<xsl:template match="author" mode="xref-title"> + <xsl:variable name="title"> + <xsl:call-template name="person.name"/> + </xsl:variable> + + <xsl:value-of select="$title"/> +</xsl:template> + +<xsl:template match="authorgroup" mode="xref-title"> + <xsl:variable name="title"> + <xsl:call-template name="person.name.list"/> + </xsl:variable> + + <xsl:value-of select="$title"/> +</xsl:template> + +<xsl:template match="cmdsynopsis" mode="xref-title"> + <xsl:variable name="title"> + <xsl:apply-templates select="(.//command)[1]" mode="xref"/> + </xsl:variable> + + <xsl:value-of select="$title"/> +</xsl:template> + +<xsl:template match="funcsynopsis" mode="xref-title"> + <xsl:variable name="title"> + <xsl:apply-templates select="(.//function)[1]" mode="xref"/> + </xsl:variable> + + <xsl:value-of select="$title"/> +</xsl:template> + +<xsl:template match="biblioentry|bibliomixed" mode="xref-title"> + <!-- handles both biblioentry and bibliomixed --> + <xsl:variable name="title"> + <xsl:text>[</xsl:text> + <xsl:choose> + <xsl:when test="local-name(*[1]) = 'abbrev'"> + <xsl:apply-templates select="*[1]"/> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="(@id|@xml:id)[1]"/> + </xsl:otherwise> + </xsl:choose> + <xsl:text>]</xsl:text> + </xsl:variable> + + <xsl:value-of select="$title"/> +</xsl:template> + +<xsl:template match="step" mode="xref-title"> + <xsl:call-template name="gentext"> + <xsl:with-param name="key" select="'Step'"/> + </xsl:call-template> + <xsl:text> </xsl:text> + <xsl:apply-templates select="." mode="number"/> +</xsl:template> + +<xsl:template match="step[not(./title)]" mode="title.markup"> + <xsl:call-template name="gentext"> + <xsl:with-param name="key" select="'Step'"/> + </xsl:call-template> + <xsl:text> </xsl:text> + <xsl:apply-templates select="." mode="number"/> +</xsl:template> + +<xsl:template match="co" mode="xref-title"> + <xsl:variable name="title"> + <xsl:apply-templates select="." mode="callout-bug"/> + </xsl:variable> + + <xsl:value-of select="$title"/> +</xsl:template> + +<!-- ==================================================================== --> + +<xsl:template match="link" name="link"> + <xsl:param name="linkend" select="@linkend"/> + <xsl:param name="a.target"/> + <xsl:param name="xhref" select="@xlink:href"/> + + <xsl:variable name="content"> + <xsl:call-template name="anchor"/> + <xsl:choose> + <xsl:when test="count(child::node()) > 0"> + <!-- If it has content, use it --> + <xsl:apply-templates/> + </xsl:when> + <!-- else look for an endterm --> + <xsl:when test="@endterm"> + <xsl:variable name="etargets" select="key('id',@endterm)"/> + <xsl:variable name="etarget" select="$etargets[1]"/> + <xsl:choose> + <xsl:when test="count($etarget) = 0"> + <xsl:message> + <xsl:value-of select="count($etargets)"/> + <xsl:text>Endterm points to nonexistent ID: </xsl:text> + <xsl:value-of select="@endterm"/> + </xsl:message> + <xsl:text>???</xsl:text> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates select="$etarget" mode="endterm"/> + </xsl:otherwise> + </xsl:choose> + </xsl:when> + <!-- Use the xlink:href if no other text --> + <xsl:when test="@xlink:href"> + <xsl:value-of select="@xlink:href"/> + </xsl:when> + <xsl:otherwise> + <xsl:message> + <xsl:text>Link element has no content and no Endterm. </xsl:text> + <xsl:text>Nothing to show in the link to </xsl:text> + <xsl:value-of select="(@xlink:href|@linkend)[1]"/> + </xsl:message> + <xsl:text>???</xsl:text> + </xsl:otherwise> + </xsl:choose> + </xsl:variable> + + <xsl:call-template name="simple.xlink"> + <xsl:with-param name="node" select="."/> + <xsl:with-param name="linkend" select="$linkend"/> + <xsl:with-param name="content" select="$content"/> + <xsl:with-param name="a.target" select="$a.target"/> + <xsl:with-param name="xhref" select="$xhref"/> + </xsl:call-template> + +</xsl:template> + +<xsl:template match="ulink" name="ulink"> + <xsl:param name="url" select="@url"/> + <xsl:variable name="link"> + <a> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:if test="@id or @xml:id"> + <xsl:attribute name="name"> + <xsl:value-of select="(@id|@xml:id)[1]"/> + </xsl:attribute> + </xsl:if> + <xsl:attribute name="href"><xsl:value-of select="$url"/></xsl:attribute> + <xsl:if test="$ulink.target != ''"> + <xsl:attribute name="target"> + <xsl:value-of select="$ulink.target"/> + </xsl:attribute> + </xsl:if> + <xsl:choose> + <xsl:when test="count(child::node())=0"> + <xsl:value-of select="$url"/> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates/> + </xsl:otherwise> + </xsl:choose> + </a> + </xsl:variable> + + <xsl:choose> + <xsl:when test="function-available('suwl:unwrapLinks')"> + <xsl:copy-of select="suwl:unwrapLinks($link)"/> + </xsl:when> + <xsl:otherwise> + <xsl:copy-of select="$link"/> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template match="olink" name="olink"> + <!-- olink content may be passed in from xlink olink --> + <xsl:param name="content" select="NOTANELEMENT"/> + + <xsl:call-template name="anchor"/> + + <xsl:variable name="localinfo" select="@localinfo"/> + + <xsl:choose> + <!-- olinks resolved by stylesheet and target database --> + <xsl:when test="@targetdoc or @targetptr or + (@xlink:role=$xolink.role and + contains(@xlink:href, '#') )" > + + <xsl:variable name="targetdoc.att"> + <xsl:choose> + <xsl:when test="@targetdoc != ''"> + <xsl:value-of select="@targetdoc"/> + </xsl:when> + <xsl:when test="@xlink:role=$xolink.role and + contains(@xlink:href, '#')" > + <xsl:value-of select="substring-before(@xlink:href, '#')"/> + </xsl:when> + </xsl:choose> + </xsl:variable> + + <xsl:variable name="targetptr.att"> + <xsl:choose> + <xsl:when test="@targetptr != ''"> + <xsl:value-of select="@targetptr"/> + </xsl:when> + <xsl:when test="@xlink:role=$xolink.role and + contains(@xlink:href, '#')" > + <xsl:value-of select="substring-after(@xlink:href, '#')"/> + </xsl:when> + </xsl:choose> + </xsl:variable> + + <xsl:variable name="olink.lang"> + <xsl:call-template name="l10n.language"> + <xsl:with-param name="xref-context" select="true()"/> + </xsl:call-template> + </xsl:variable> + + <xsl:variable name="target.database.filename"> + <xsl:call-template name="select.target.database"> + <xsl:with-param name="targetdoc.att" select="$targetdoc.att"/> + <xsl:with-param name="targetptr.att" select="$targetptr.att"/> + <xsl:with-param name="olink.lang" select="$olink.lang"/> + </xsl:call-template> + </xsl:variable> + + <xsl:variable name="target.database" + select="document($target.database.filename,/)"/> + + <xsl:if test="$olink.debug != 0"> + <xsl:message> + <xsl:text>Olink debug: root element of target.database '</xsl:text> + <xsl:value-of select="$target.database.filename"/> + <xsl:text>' is '</xsl:text> + <xsl:value-of select="local-name($target.database/*[1])"/> + <xsl:text>'.</xsl:text> + </xsl:message> + </xsl:if> + + <xsl:variable name="olink.key"> + <xsl:call-template name="select.olink.key"> + <xsl:with-param name="targetdoc.att" select="$targetdoc.att"/> + <xsl:with-param name="targetptr.att" select="$targetptr.att"/> + <xsl:with-param name="olink.lang" select="$olink.lang"/> + <xsl:with-param name="target.database" select="$target.database"/> + </xsl:call-template> + </xsl:variable> + + <xsl:if test="string-length($olink.key) = 0"> + <xsl:message> + <xsl:text>Error: unresolved olink: </xsl:text> + <xsl:text>targetdoc/targetptr = '</xsl:text> + <xsl:value-of select="$targetdoc.att"/> + <xsl:text>/</xsl:text> + <xsl:value-of select="$targetptr.att"/> + <xsl:text>'.</xsl:text> + </xsl:message> + </xsl:if> + + <xsl:variable name="href"> + <xsl:call-template name="make.olink.href"> + <xsl:with-param name="olink.key" select="$olink.key"/> + <xsl:with-param name="target.database" select="$target.database"/> + </xsl:call-template> + </xsl:variable> + + <xsl:variable name="hottext"> + <xsl:choose> + <xsl:when test="string-length($content) != 0"> + <xsl:copy-of select="$content"/> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="olink.hottext"> + <xsl:with-param name="olink.key" select="$olink.key"/> + <xsl:with-param name="olink.lang" select="$olink.lang"/> + <xsl:with-param name="target.database" select="$target.database"/> + </xsl:call-template> + </xsl:otherwise> + </xsl:choose> + </xsl:variable> + + <xsl:variable name="olink.docname.citation"> + <xsl:call-template name="olink.document.citation"> + <xsl:with-param name="olink.key" select="$olink.key"/> + <xsl:with-param name="target.database" select="$target.database"/> + <xsl:with-param name="olink.lang" select="$olink.lang"/> + </xsl:call-template> + </xsl:variable> + + <xsl:variable name="olink.page.citation"> + <xsl:call-template name="olink.page.citation"> + <xsl:with-param name="olink.key" select="$olink.key"/> + <xsl:with-param name="target.database" select="$target.database"/> + <xsl:with-param name="olink.lang" select="$olink.lang"/> + </xsl:call-template> + </xsl:variable> + + <xsl:choose> + <xsl:when test="$href != ''"> + <a href="{$href}"> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:copy-of select="$hottext"/> + </a> + <xsl:copy-of select="$olink.page.citation"/> + <xsl:copy-of select="$olink.docname.citation"/> + </xsl:when> + <xsl:otherwise> + <span class="olink"><xsl:copy-of select="$hottext"/></span> + <xsl:copy-of select="$olink.page.citation"/> + <xsl:copy-of select="$olink.docname.citation"/> + </xsl:otherwise> + </xsl:choose> + + </xsl:when> + + <!-- Or use old olink mechanism --> + <xsl:otherwise> + <xsl:variable name="href"> + <xsl:choose> + <xsl:when test="@linkmode"> + <!-- use the linkmode to get the base URI, use localinfo as fragid --> + <xsl:variable name="modespec" select="key('id',@linkmode)"/> + <xsl:if test="count($modespec) != 1 + or local-name($modespec) != 'modespec'"> + <xsl:message>Warning: olink linkmode pointer is wrong.</xsl:message> + </xsl:if> + <xsl:value-of select="$modespec"/> + <xsl:if test="@localinfo"> + <xsl:text>#</xsl:text> + <xsl:value-of select="@localinfo"/> + </xsl:if> + </xsl:when> + <xsl:when test="@type = 'href'"> + <xsl:call-template name="olink.outline"> + <xsl:with-param name="outline.base.uri" + select="unparsed-entity-uri(@targetdocent)"/> + <xsl:with-param name="localinfo" select="@localinfo"/> + <xsl:with-param name="return" select="'href'"/> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="$olink.resolver"/> + <xsl:text>?</xsl:text> + <xsl:value-of select="$olink.sysid"/> + <xsl:value-of select="unparsed-entity-uri(@targetdocent)"/> + <!-- XSL gives no access to the public identifier (grumble...) --> + <xsl:if test="@localinfo"> + <xsl:text>&</xsl:text> + <xsl:value-of select="$olink.fragid"/> + <xsl:value-of select="@localinfo"/> + </xsl:if> + </xsl:otherwise> + </xsl:choose> + </xsl:variable> + + <xsl:choose> + <xsl:when test="$href != ''"> + <a href="{$href}"> + <xsl:apply-templates select="." mode="common.html.attributes"/> + <xsl:call-template name="olink.hottext"/> + </a> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="olink.hottext"/> + </xsl:otherwise> + </xsl:choose> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template match="*" mode="pagenumber.markup"> + <!-- no-op in HTML --> +</xsl:template> + + +<xsl:template name="olink.outline"> + <xsl:param name="outline.base.uri"/> + <xsl:param name="localinfo"/> + <xsl:param name="return" select="href"/> + + <xsl:variable name="outline-file" + select="concat($outline.base.uri, + $olink.outline.ext)"/> + + <xsl:variable name="outline" select="document($outline-file,.)/div"/> + + <xsl:variable name="node-href"> + <xsl:choose> + <xsl:when test="$localinfo != ''"> + <xsl:variable name="node" select="$outline// + *[@id=$localinfo or @xml:id=$localinfo]"/> + <xsl:value-of select="$node/@href"/> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="$outline/@href"/> + </xsl:otherwise> + </xsl:choose> + </xsl:variable> + + <xsl:variable name="node-xref"> + <xsl:choose> + <xsl:when test="$localinfo != ''"> + <xsl:variable name="node" select="$outline// + *[@id=$localinfo or @xml:id=$localinfo]"/> + <xsl:copy-of select="$node/xref"/> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="$outline/xref"/> + </xsl:otherwise> + </xsl:choose> + </xsl:variable> + + <xsl:choose> + <xsl:when test="$return = 'href'"> + <xsl:value-of select="$node-href"/> + </xsl:when> + <xsl:when test="$return = 'xref'"> + <xsl:value-of select="$node-xref"/> + </xsl:when> + <xsl:otherwise> + <xsl:copy-of select="$node-xref"/> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<!-- ==================================================================== --> + +<xsl:template name="xref.xreflabel"> + <!-- called to process an xreflabel...you might use this to make --> + <!-- xreflabels come out in the right font for different targets, --> + <!-- for example. --> + <xsl:param name="target" select="."/> + <xsl:value-of select="$target/@xreflabel"/> +</xsl:template> + +<!-- ==================================================================== --> + +<xsl:template match="title" mode="xref"> + <xsl:apply-templates/> +</xsl:template> + +<xsl:template match="command" mode="xref"> + <xsl:call-template name="inline.boldseq"/> +</xsl:template> + +<xsl:template match="function" mode="xref"> + <xsl:call-template name="inline.monoseq"/> +</xsl:template> + +<!-- ==================================================================== --> + +<xsl:template match="*" mode="insert.title.markup"> + <xsl:param name="purpose"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="title"/> + + <xsl:choose> + <!-- FIXME: what about the case where titleabbrev is inside the info? --> + <xsl:when test="$purpose = 'xref' and titleabbrev"> + <xsl:apply-templates select="." mode="titleabbrev.markup"/> + </xsl:when> + <xsl:otherwise> + <xsl:copy-of select="$title"/> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template match="chapter|appendix" mode="insert.title.markup"> + <xsl:param name="purpose"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="title"/> + + <xsl:choose> + <xsl:when test="$purpose = 'xref'"> + <i> + <xsl:copy-of select="$title"/> + </i> + </xsl:when> + <xsl:otherwise> + <xsl:copy-of select="$title"/> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<xsl:template match="*" mode="insert.subtitle.markup"> + <xsl:param name="purpose"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="subtitle"/> + + <xsl:copy-of select="$subtitle"/> +</xsl:template> + +<xsl:template match="*" mode="insert.label.markup"> + <xsl:param name="purpose"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="label"/> + + <xsl:copy-of select="$label"/> +</xsl:template> + +<xsl:template match="*" mode="insert.pagenumber.markup"> + <xsl:param name="purpose"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="pagenumber"/> + + <xsl:copy-of select="$pagenumber"/> +</xsl:template> + +<xsl:template match="*" mode="insert.direction.markup"> + <xsl:param name="purpose"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="direction"/> + + <xsl:copy-of select="$direction"/> +</xsl:template> + +<xsl:template match="*" mode="insert.olink.docname.markup"> + <xsl:param name="purpose"/> + <xsl:param name="xrefstyle"/> + <xsl:param name="docname"/> + + <span class="olinkdocname"> + <xsl:copy-of select="$docname"/> + </span> + +</xsl:template> + +</xsl:stylesheet> diff --git a/docbook-xsl-1.76.1/htmlhelp/htmlhelp-common.xsl b/docbook-xsl-1.76.1/htmlhelp/htmlhelp-common.xsl new file mode 100644 index 0000000..303b81e --- /dev/null +++ b/docbook-xsl-1.76.1/htmlhelp/htmlhelp-common.xsl @@ -0,0 +1,1120 @@ +<?xml version="1.0"?> +<!DOCTYPE xsl:stylesheet [ +<!ENTITY lf '<xsl:text xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> </xsl:text>'> +]> +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + xmlns:doc="http://nwalsh.com/xsl/documentation/1.0" + xmlns:exsl="http://exslt.org/common" + xmlns:set="http://exslt.org/sets" + xmlns:h="urn:x-hex" + xmlns:ng="http://docbook.org/docbook-ng" + xmlns:db="http://docbook.org/ns/docbook" + version="1.0" + exclude-result-prefixes="doc exsl set h db ng"> + +<!-- ******************************************************************** + $Id: htmlhelp-common.xsl 8400 2009-04-08 07:44:54Z bobstayton $ + ******************************************************************** --> + +<!-- ==================================================================== --> +<!-- Customizations of standard HTML stylesheet parameters --> + +<!-- no navigation on pages by default, HTML Help provides its own navigation controls --> +<xsl:param name="suppress.navigation" select="1"/> + +<!-- no separate HTML page with index, index is built inside CHM index pane --> +<xsl:param name="generate.index" select="0"/> + +<!-- ==================================================================== --> + +<xsl:param name="htmlhelp.generate.index" select="//indexterm[1]|//db:indexterm[1]|//ng:indexterm[1]"/> + +<!-- Set up HTML Help flag --> +<xsl:variable name="htmlhelp.output" select="1"/> + +<!-- ==================================================================== --> + +<xsl:template match="/"> + + <!-- * Get a title for current doc so that we let the user --> + <!-- * know what document we are processing at this point. --> + <xsl:variable name="doc.title"> + <xsl:call-template name="get.doc.title"/> + </xsl:variable> + <xsl:choose> + <!-- Hack! If someone hands us a DocBook V5.x or DocBook NG document, + toss the namespace and continue. Use the docbook5 namespaced + stylesheets for DocBook5 if you don't want to use this feature.--> + <xsl:when test="$exsl.node.set.available != 0 + and (*/self::ng:* or */self::db:*)"> + <xsl:call-template name="log.message"> + <xsl:with-param name="level">Note</xsl:with-param> + <xsl:with-param name="source" select="$doc.title"/> + <xsl:with-param name="context-desc"> + <xsl:text>namesp. cut</xsl:text> + </xsl:with-param> + <xsl:with-param name="message"> + <xsl:text>stripped namespace before processing</xsl:text> + </xsl:with-param> + </xsl:call-template> + <xsl:variable name="nons"> + <xsl:apply-templates mode="stripNS"/> + </xsl:variable> + <xsl:call-template name="log.message"> + <xsl:with-param name="level">Note</xsl:with-param> + <xsl:with-param name="source" select="$doc.title"/> + <xsl:with-param name="context-desc"> + <xsl:text>namesp. cut</xsl:text> + </xsl:with-param> + <xsl:with-param name="message"> + <xsl:text>processing stripped document</xsl:text> + </xsl:with-param> + </xsl:call-template> + <xsl:apply-templates select="exsl:node-set($nons)"/> + </xsl:when> + <xsl:otherwise> + <xsl:if test="$htmlhelp.only != 1"> + <xsl:choose> + <xsl:when test="$rootid != ''"> + <xsl:choose> + <xsl:when test="count(key('id',$rootid)) = 0"> + <xsl:message terminate="yes"> + <xsl:text>ID '</xsl:text> + <xsl:value-of select="$rootid"/> + <xsl:text>' not found in document.</xsl:text> + </xsl:message> + </xsl:when> + <xsl:otherwise> + <xsl:message>Formatting from <xsl:value-of select="$rootid"/></xsl:message> + <xsl:apply-templates select="key('id',$rootid)" mode="process.root"/> + </xsl:otherwise> + </xsl:choose> + </xsl:when> + <xsl:otherwise> + <xsl:if test="$collect.xref.targets = 'yes' or + $collect.xref.targets = 'only'"> + <xsl:apply-templates select="/" mode="collect.targets"/> + </xsl:if> + <xsl:if test="$collect.xref.targets != 'only'"> + <xsl:apply-templates select="/" mode="process.root"/> + </xsl:if> + </xsl:otherwise> + </xsl:choose> + </xsl:if> + + + <xsl:if test="$collect.xref.targets != 'only'"> + <xsl:call-template name="hhp"/> + <xsl:call-template name="hhc"/> + <xsl:if test="($rootid = '' and //processing-instruction('dbhh')) or + ($rootid != '' and key('id',$rootid)//processing-instruction('dbhh'))"> + <xsl:call-template name="hh-map"/> + <xsl:call-template name="hh-alias"/> + </xsl:if> + <xsl:if test="$htmlhelp.generate.index"> + <xsl:call-template name="hhk"/> + </xsl:if> + </xsl:if> +</xsl:otherwise> +</xsl:choose> +</xsl:template> + +<!-- ==================================================================== --> + +<xsl:template name="hhp"> + <xsl:call-template name="write.text.chunk"> + <xsl:with-param name="filename"> + <xsl:if test="$manifest.in.base.dir != 0"> + <xsl:value-of select="$base.dir"/> + </xsl:if> + <xsl:value-of select="$htmlhelp.hhp"/> + </xsl:with-param> + <xsl:with-param name="method" select="'text'"/> + <xsl:with-param name="content"> + <xsl:call-template name="hhp-main"/> + </xsl:with-param> + <xsl:with-param name="encoding" select="$htmlhelp.encoding"/> + <xsl:with-param name="quiet" select="$chunk.quietly"/> + </xsl:call-template> +</xsl:template> + +<!-- ==================================================================== --> +<xsl:template name="hhp-main"> + + <xsl:variable name="raw.help.title"> + <xsl:choose> + <xsl:when test="$htmlhelp.title = ''"> + <xsl:choose> + <xsl:when test="$rootid != ''"> + <xsl:apply-templates select="key('id',$rootid)" mode="title.markup"/> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates select="/*" mode="title.markup"/> + </xsl:otherwise> + </xsl:choose> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="$htmlhelp.title"/> + </xsl:otherwise> + </xsl:choose> + </xsl:variable> + + <xsl:variable name="help.title" select="normalize-space($raw.help.title)"/> + +<xsl:variable name="default.topic"> + <xsl:choose> + <xsl:when test="$htmlhelp.default.topic != ''"> + <xsl:value-of select="$htmlhelp.default.topic"/> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="make-relative-filename"> + <xsl:with-param name="base.dir"> + <xsl:if test="$manifest.in.base.dir = 0"> + <xsl:value-of select="$base.dir"/> + </xsl:if> + </xsl:with-param> + <xsl:with-param name="base.name"> + <xsl:choose> + <xsl:when test="$rootid != ''"> + <xsl:apply-templates select="key('id',$rootid)" mode="chunk-filename"/> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates select="/" mode="chunk-filename"/> + </xsl:otherwise> + </xsl:choose> + </xsl:with-param> + </xsl:call-template> + </xsl:otherwise> + </xsl:choose> +</xsl:variable> +<xsl:variable name="xnavigation"> + <xsl:text>0x</xsl:text> + <xsl:call-template name="toHex"> + <xsl:with-param name="n" select="9504 + $htmlhelp.show.menu * 65536 + + $htmlhelp.show.advanced.search * 131072 + + $htmlhelp.show.favorities * 4096 + + (1 - $htmlhelp.show.toolbar.text) * 64 + + $htmlhelp.remember.window.position * 262144"/> + </xsl:call-template> +</xsl:variable> +<xsl:variable name="xbuttons"> + <xsl:text>0x</xsl:text> + <xsl:call-template name="toHex"> + <xsl:with-param name="n" select="0 + $htmlhelp.button.hideshow * 2 + + $htmlhelp.button.back * 4 + + $htmlhelp.button.forward * 8 + + $htmlhelp.button.stop * 16 + + $htmlhelp.button.refresh * 32 + + $htmlhelp.button.home * 64 + + $htmlhelp.button.options * 4096 + + $htmlhelp.button.print * 8192 + + $htmlhelp.button.locate * 2048 + + $htmlhelp.button.jump1 * 262144 + + $htmlhelp.button.jump2 * 524288 + + $htmlhelp.button.next * 2097152 + + $htmlhelp.button.prev * 4194304 + + $htmlhelp.button.zoom * 1048576"/> + </xsl:call-template> +</xsl:variable> +<xsl:text>[OPTIONS] +</xsl:text> +<xsl:if test="$htmlhelp.generate.index"> +<xsl:text>Auto Index=Yes +</xsl:text></xsl:if> +<xsl:if test="$htmlhelp.hhc.binary != 0"> +<xsl:text>Binary TOC=Yes +</xsl:text></xsl:if> +<xsl:text>Compatibility=1.1 or later +Compiled file=</xsl:text><xsl:value-of select="$htmlhelp.chm"/><xsl:text> +Contents file=</xsl:text><xsl:value-of select="$htmlhelp.hhc"/><xsl:text> +</xsl:text> +<xsl:if test="$htmlhelp.hhp.window != ''"> +<xsl:text>Default Window=</xsl:text><xsl:value-of select="$htmlhelp.hhp.window"/><xsl:text> +</xsl:text></xsl:if> +<xsl:text>Default topic=</xsl:text><xsl:value-of select="$default.topic"/> +<xsl:text> +Display compile progress=</xsl:text> + <xsl:choose> + <xsl:when test="$htmlhelp.display.progress != 1"> + <xsl:text>No</xsl:text> + </xsl:when> + <xsl:otherwise> + <xsl:text>Yes</xsl:text> + </xsl:otherwise> + </xsl:choose> +<xsl:text> +Full-text search=Yes +</xsl:text> +<xsl:if test="$htmlhelp.generate.index"> +<xsl:text>Index file=</xsl:text><xsl:value-of select="$htmlhelp.hhk"/><xsl:text> +</xsl:text></xsl:if> +<xsl:text>Language=</xsl:text> +<xsl:for-each select="*"> <!-- Change context from / to root element --> + <xsl:call-template name="gentext.template"> + <xsl:with-param name="context" select="'htmlhelp'"/> + <xsl:with-param name="name" select="'langcode'"/> + </xsl:call-template> +</xsl:for-each> +<xsl:text> +Title=</xsl:text> + <xsl:value-of select="$help.title"/> +<xsl:text> +Enhanced decompilation=</xsl:text> + <xsl:choose> + <xsl:when test="$htmlhelp.enhanced.decompilation != 0"> + <xsl:text>Yes</xsl:text> + </xsl:when> + <xsl:otherwise> + <xsl:text>No</xsl:text> + </xsl:otherwise> + </xsl:choose> + +<xsl:if test="$htmlhelp.hhp.window != ''"> + <xsl:text> + +[WINDOWS] +</xsl:text> +<xsl:value-of select="$htmlhelp.hhp.window"/> +<xsl:text>="</xsl:text> +<xsl:value-of select="$help.title"/> +<xsl:text>","</xsl:text><xsl:value-of select="$htmlhelp.hhc"/> +<xsl:text>",</xsl:text> +<xsl:if test="$htmlhelp.generate.index"> + <xsl:text>"</xsl:text> + <xsl:value-of select="$htmlhelp.hhk"/> + <xsl:text>"</xsl:text> +</xsl:if> +<xsl:text>,"</xsl:text> +<xsl:value-of select="$default.topic"/> +<xsl:text>",</xsl:text> +<xsl:text>"</xsl:text> +<xsl:choose> + <xsl:when test="$htmlhelp.button.home != 0"> + <xsl:value-of select="$htmlhelp.button.home.url"/> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="$default.topic"/> + </xsl:otherwise> +</xsl:choose> +<xsl:text>"</xsl:text> +<xsl:text>,</xsl:text> +<xsl:if test="$htmlhelp.button.jump1 != 0"> + <xsl:text>"</xsl:text> + <xsl:value-of select="$htmlhelp.button.jump1.url"/> + <xsl:text>"</xsl:text> +</xsl:if> +<xsl:text>,</xsl:text> +<xsl:if test="$htmlhelp.button.jump1 != 0"> + <xsl:text>"</xsl:text> + <xsl:value-of select="$htmlhelp.button.jump1.title"/> + <xsl:text>"</xsl:text> +</xsl:if> +<xsl:text>,</xsl:text> +<xsl:if test="$htmlhelp.button.jump2 != 0"> + <xsl:text>"</xsl:text> + <xsl:value-of select="$htmlhelp.button.jump2.url"/> + <xsl:text>"</xsl:text> +</xsl:if> +<xsl:text>,</xsl:text> +<xsl:if test="$htmlhelp.button.jump2 != 0"> + <xsl:text>"</xsl:text> + <xsl:value-of select="$htmlhelp.button.jump2.title"/> + <xsl:text>"</xsl:text> +</xsl:if> +<xsl:text>,</xsl:text> +<xsl:value-of select="$xnavigation"/> +<xsl:text>,</xsl:text><xsl:value-of select="$htmlhelp.hhc.width"/><xsl:text>,</xsl:text> +<xsl:value-of select="$xbuttons"/> +<xsl:text>,</xsl:text><xsl:value-of select="$htmlhelp.window.geometry"/><xsl:text>,,,,,,,0 +</xsl:text> +</xsl:if> + +<!-- + Needs more investigation to generate propetly all fields +<xsl:text>search="</xsl:text> +<xsl:value-of select="normalize-space(//title[1])"/> +<xsl:text>","toc.hhc","index.hhk","</xsl:text> +<xsl:value-of select="$root.filename"/> +<xsl:text>.html","</xsl:text> +<xsl:value-of select="$root.filename"/> +<xsl:text>.html",,,,,</xsl:text> +<xsl:value-of select="$xnavigation"/> +<xsl:text>,</xsl:text> +<xsl:value-of select="$htmlhelp.hhc.width"/> +<xsl:text>,</xsl:text> +<xsl:value-of select="$xbuttons"/> +<xsl:text>,</xsl:text> +<xsl:value-of select="$htmlhelp.window.geometry"/> +<xsl:text>,,,,,2,,0 +</xsl:text> +--> + +<xsl:if test="$htmlhelp.hhp.windows"> + <xsl:value-of select="$htmlhelp.hhp.windows"/> +</xsl:if> +<xsl:text> + +[FILES] +</xsl:text> + +<xsl:choose> + <xsl:when test="$rootid != ''"> + <xsl:apply-templates select="key('id',$rootid)" mode="enumerate-files"/> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates select="/" mode="enumerate-files"/> + </xsl:otherwise> +</xsl:choose> + +<xsl:if test="$htmlhelp.enumerate.images"> + <xsl:variable name="imagelist"> + <xsl:choose> + <xsl:when test="$rootid != ''"> + <xsl:apply-templates select="key('id',$rootid)" mode="enumerate-images"/> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates select="/" mode="enumerate-images"/> + </xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:choose> + <xsl:when test="$exsl.node.set.available != 0 + and function-available('set:distinct')"> + <xsl:for-each select="set:distinct(exsl:node-set($imagelist)/filename)"> + <xsl:value-of select="."/> + <xsl:text> </xsl:text> + </xsl:for-each> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="$imagelist"/> + </xsl:otherwise> + </xsl:choose> +</xsl:if> + +<xsl:if test="($htmlhelp.force.map.and.alias != 0) or + ($rootid = '' and //processing-instruction('dbhh')) or + ($rootid != '' and key('id',$rootid)//processing-instruction('dbhh'))"> + <xsl:text> +[ALIAS] +#include </xsl:text><xsl:value-of select="$htmlhelp.alias.file"/><xsl:text> + +[MAP] +#include </xsl:text><xsl:value-of select="$htmlhelp.map.file"/><xsl:text> +</xsl:text> +</xsl:if> + +<xsl:value-of select="$htmlhelp.hhp.tail"/> +</xsl:template> + +<!-- ==================================================================== --> + +<xsl:template match="graphic|inlinegraphic[@format!='linespecific']" mode="enumerate-images"> + <xsl:call-template name="write.filename.enumerate-images"> + <xsl:with-param name="filename"> + <xsl:call-template name="mediaobject.filename.enumerate-images"> + <xsl:with-param name="object" select="."/> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> +</xsl:template> + +<xsl:template match="mediaobject|inlinemediaobject" mode="enumerate-images"> + <xsl:call-template name="select.mediaobject.enumerate-images"/> +</xsl:template> + +<xsl:template name="select.mediaobject.enumerate-images"> + <xsl:param name="olist" + select="imageobject|imageobjectco + |videoobject|audioobject|textobject"/> + <xsl:param name="count">1</xsl:param> + + <xsl:if test="$count <= count($olist)"> + <xsl:variable name="object" select="$olist[position()=$count]"/> + + <xsl:variable name="useobject"> + <xsl:choose> + <!-- The phrase is never used --> + <xsl:when test="name($object)='textobject' and $object/phrase"> + <xsl:text>0</xsl:text> + </xsl:when> + <!-- The first textobject is a reasonable fallback (but not for image in HH) --> + <xsl:when test="name($object)='textobject'"> + <xsl:text>0</xsl:text> + </xsl:when> + <!-- If there's only one object, use it --> + <xsl:when test="$count = 1 and count($olist) = 1"> + <xsl:text>1</xsl:text> + </xsl:when> + <!-- Otherwise, see if this one is a useable graphic --> + <xsl:otherwise> + <xsl:choose> + <!-- peek inside imageobjectco to simplify the test --> + <xsl:when test="local-name($object) = 'imageobjectco'"> + <xsl:call-template name="is.acceptable.mediaobject"> + <xsl:with-param name="object" select="$object/imageobject"/> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="is.acceptable.mediaobject"> + <xsl:with-param name="object" select="$object"/> + </xsl:call-template> + </xsl:otherwise> + </xsl:choose> + </xsl:otherwise> + </xsl:choose> + </xsl:variable> + + <xsl:choose> + <xsl:when test="$useobject='1' and $object[not(*/@format='linespecific')]"> + <xsl:call-template name="write.filename.enumerate-images"> + <xsl:with-param name="filename"> + <xsl:call-template name="mediaobject.filename.enumerate-images"> + <xsl:with-param name="object" select="$object"/> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="select.mediaobject.enumerate-images"> + <xsl:with-param name="olist" select="$olist"/> + <xsl:with-param name="count" select="$count + 1"/> + </xsl:call-template> + </xsl:otherwise> + </xsl:choose> + </xsl:if> +</xsl:template> + +<xsl:template name="mediaobject.filename.enumerate-images"> + <xsl:param name="object"/> + + <xsl:variable name="urifilename"> + <xsl:call-template name="mediaobject.filename"> + <xsl:with-param name="object" select="$object"/> + </xsl:call-template> + </xsl:variable> + + <xsl:variable name="filename"> + <xsl:choose> + <xsl:when test="starts-with($urifilename, 'file:/')"> + <xsl:value-of select="substring-after($urifilename, 'file:/')"/> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="$urifilename"/> + </xsl:otherwise> + </xsl:choose> + </xsl:variable> + + <xsl:value-of select="translate($filename, '/', '\')"/> + +</xsl:template> + +<xsl:template match="text()" mode="enumerate-images"> +</xsl:template> + +<xsl:template name="write.filename.enumerate-images"> + <xsl:param name="filename"/> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set') and function-available('set:distinct')"> + <filename><xsl:value-of select="$filename"/></filename> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="$filename"/> + <xsl:text> </xsl:text> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<!-- ==================================================================== --> + +<!-- HHC and HHK files are processed by compiler line by line + and therefore are very sensitive to whitespaces (linefeeds for sure). --> + +<xsl:template name="hhc"> + <xsl:call-template name="write.chunk"> + <xsl:with-param name="filename"> + <xsl:if test="$manifest.in.base.dir != 0"> + <xsl:value-of select="$base.dir"/> + </xsl:if> + <xsl:value-of select="$htmlhelp.hhc"/> + </xsl:with-param> + <xsl:with-param name="indent" select="'no'"/> + <xsl:with-param name="content"> + <xsl:call-template name="hhc-main"/> + </xsl:with-param> + <xsl:with-param name="encoding" select="$htmlhelp.encoding"/> + <xsl:with-param name="quiet" select="$chunk.quietly"/> + </xsl:call-template> +</xsl:template> + +<xsl:template name="hhc-main"> +<HTML>&lf; + <HEAD></HEAD>&lf; + <BODY>&lf; + <xsl:if test="$htmlhelp.hhc.folders.instead.books != 0"> + <OBJECT type="text/site properties">&lf; + <param name="ImageType" value="Folder"/>&lf; + </OBJECT>&lf; + </xsl:if> + <xsl:variable name="content"> + <xsl:choose> + <xsl:when test="$rootid != ''"> + <xsl:apply-templates select="key('id',$rootid)" mode="hhc"/> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates select="/" mode="hhc"/> + </xsl:otherwise> + </xsl:choose> + </xsl:variable> + + <xsl:choose> + <xsl:when test="$htmlhelp.hhc.show.root != 0"> + <UL>&lf; + <xsl:copy-of select="$content"/> + </UL>&lf; + </xsl:when> + <xsl:otherwise> + <xsl:copy-of select="$content"/> + </xsl:otherwise> + </xsl:choose> + + </BODY> +</HTML> +</xsl:template> + +<xsl:template name="hhc.entry"> + <xsl:param name="title"> + <xsl:if test="$htmlhelp.autolabel=1"> + <xsl:variable name="label.markup"> + <xsl:apply-templates select="." mode="label.markup"/> + </xsl:variable> + <xsl:if test="normalize-space($label.markup)"> + <xsl:value-of select="concat($label.markup,$autotoc.label.separator)"/> + </xsl:if> + </xsl:if> + <xsl:apply-templates select="." mode="title.markup"/> + </xsl:param> + + <LI><OBJECT type="text/sitemap">&lf; + <param name="Name"> + <xsl:attribute name="value"> + <xsl:value-of select="normalize-space($title)"/> + </xsl:attribute> + </param>&lf; + <param name="Local"> + <xsl:attribute name="value"> + <xsl:call-template name="href.target.with.base.dir"/> + </xsl:attribute> + </param> + </OBJECT></LI>&lf; +</xsl:template> + +<xsl:template match="set" mode="hhc"> + <xsl:if test="$htmlhelp.hhc.show.root != 0"> + <xsl:call-template name="hhc.entry"/> + </xsl:if> + <xsl:if test="book"> + <xsl:variable name="toc.params"> + <xsl:call-template name="find.path.params"> + <xsl:with-param name="table" select="normalize-space($generate.toc)"/> + </xsl:call-template> + </xsl:variable> + <UL> + <xsl:if test="contains($toc.params, 'toc') and $htmlhelp.hhc.show.root = 0"> + <LI><OBJECT type="text/sitemap">&lf; + <param name="Name"> + <xsl:attribute name="value"> + <xsl:call-template name="gentext"> + <xsl:with-param name="key" select="'TableofContents'"/> + </xsl:call-template> + </xsl:attribute> + </param>&lf; + <param name="Local"> + <xsl:attribute name="value"> + <xsl:choose> + <xsl:when test="$chunk.tocs.and.lots != 0"> + <xsl:apply-templates select="." mode="recursive-chunk-filename"> + <xsl:with-param name="recursive" select="true()"/> + </xsl:apply-templates> + <xsl:text>-toc</xsl:text> + <xsl:value-of select="$html.ext"/> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="href.target.with.base.dir"/> + </xsl:otherwise> + </xsl:choose> + </xsl:attribute> + </param> + </OBJECT></LI>&lf; + </xsl:if> + <xsl:apply-templates select="book" mode="hhc"/> + </UL>&lf; + </xsl:if> +</xsl:template> + +<xsl:template match="book" mode="hhc"> + <xsl:if test="$htmlhelp.hhc.show.root != 0 or parent::*"> + <xsl:call-template name="hhc.entry"/> + </xsl:if> + <xsl:if test="part|reference|preface|chapter|appendix|bibliography|article|colophon|glossary"> + <xsl:variable name="toc.params"> + <xsl:call-template name="find.path.params"> + <xsl:with-param name="table" select="normalize-space($generate.toc)"/> + </xsl:call-template> + </xsl:variable> + <UL> + <xsl:if test="contains($toc.params, 'toc') and $htmlhelp.hhc.show.root = 0 and not(parent::*)"> + <LI><OBJECT type="text/sitemap">&lf; + <param name="Name"> + <xsl:attribute name="value"> + <xsl:call-template name="gentext"> + <xsl:with-param name="key" select="'TableofContents'"/> + </xsl:call-template> + </xsl:attribute> + </param>&lf; + <param name="Local"> + <xsl:attribute name="value"> + <xsl:choose> + <xsl:when test="$chunk.tocs.and.lots != 0"> + <xsl:apply-templates select="." mode="recursive-chunk-filename"> + <xsl:with-param name="recursive" select="true()"/> + </xsl:apply-templates> + <xsl:text>-toc</xsl:text> + <xsl:value-of select="$html.ext"/> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="href.target.with.base.dir"/> + </xsl:otherwise> + </xsl:choose> + </xsl:attribute> + </param> + </OBJECT></LI>&lf; + </xsl:if> + <xsl:apply-templates select="part|reference|preface|chapter|bibliography|appendix|article|colophon|glossary" + mode="hhc"/> + </UL>&lf; + </xsl:if> +</xsl:template> + +<xsl:template match="part|reference|preface|chapter|bibliography|appendix|article|glossary" + mode="hhc"> + <xsl:if test="$htmlhelp.hhc.show.root != 0 or parent::*"> + <xsl:call-template name="hhc.entry"/> + </xsl:if> + <xsl:if test="article|reference|preface|chapter|appendix|refentry|section|sect1|bibliodiv"> + <UL>&lf; + <xsl:apply-templates + select="article|reference|preface|chapter|appendix|refentry|section|sect1|bibliodiv" + mode="hhc"/> + </UL> + </xsl:if> +</xsl:template> + +<xsl:template match="section" mode="hhc"> + <xsl:if test="$htmlhelp.hhc.show.root != 0 or parent::*"> + <xsl:call-template name="hhc.entry"/> + </xsl:if> + <xsl:if test="section[count(ancestor::section) < $htmlhelp.hhc.section.depth]|refentry"> + <UL>&lf; + <xsl:apply-templates select="section|refentry" mode="hhc"/> + </UL> + </xsl:if> +</xsl:template> + +<xsl:template match="sect1" mode="hhc"> + <xsl:if test="$htmlhelp.hhc.show.root != 0 or parent::*"> + <xsl:call-template name="hhc.entry"/> + </xsl:if> + <xsl:if test="sect2[$htmlhelp.hhc.section.depth > 1]|refentry"> + <UL>&lf; + <xsl:apply-templates select="sect2|refentry" + mode="hhc"/> + </UL> + </xsl:if> +</xsl:template> + +<xsl:template match="sect2" mode="hhc"> + <xsl:if test="$htmlhelp.hhc.show.root != 0 or parent::*"> + <xsl:call-template name="hhc.entry"/> + </xsl:if> + <xsl:if test="sect3[$htmlhelp.hhc.section.depth > 2]|refentry"> + <UL>&lf; + <xsl:apply-templates select="sect3|refentry" + mode="hhc"/> + </UL> + </xsl:if> +</xsl:template> + +<xsl:template match="sect3" mode="hhc"> + <xsl:if test="$htmlhelp.hhc.show.root != 0 or parent::*"> + <xsl:call-template name="hhc.entry"/> + </xsl:if> + <xsl:if test="sect4[$htmlhelp.hhc.section.depth > 3]|refentry"> + <UL>&lf; + <xsl:apply-templates select="sect4|refentry" + mode="hhc"/> + </UL> + </xsl:if> +</xsl:template> + +<xsl:template match="sect4" mode="hhc"> + <xsl:if test="$htmlhelp.hhc.show.root != 0 or parent::*"> + <xsl:call-template name="hhc.entry"/> + </xsl:if> + <xsl:if test="sect5[$htmlhelp.hhc.section.depth > 4]|refentry"> + <UL>&lf; + <xsl:apply-templates select="sect5|refentry" + mode="hhc"/> + </UL> + </xsl:if> +</xsl:template> + +<xsl:template match="sect5|refentry|colophon|bibliodiv" mode="hhc"> + <xsl:if test="$htmlhelp.hhc.show.root != 0 or parent::*"> + <xsl:call-template name="hhc.entry"/> + </xsl:if> + <xsl:if test="refentry"> + <UL>&lf; + <xsl:apply-templates select="refentry" + mode="hhc"/> + </UL> + </xsl:if> +</xsl:template> + +<!-- ==================================================================== --> + +<xsl:template match="indexterm"> + <xsl:choose> + <xsl:when test="$htmlhelp.use.hhk = 0"> + + <xsl:variable name="primary" select="normalize-space(primary)"/> + <xsl:variable name="secondary" select="normalize-space(secondary)"/> + <xsl:variable name="tertiary" select="normalize-space(tertiary)"/> + + <xsl:variable name="text"> + <xsl:value-of select="$primary"/> + <xsl:if test="secondary"> + <xsl:text>, </xsl:text> + <xsl:value-of select="$secondary"/> + </xsl:if> + <xsl:if test="tertiary"> + <xsl:text>, </xsl:text> + <xsl:value-of select="$tertiary"/> + </xsl:if> + </xsl:variable> + + <xsl:if test="secondary"> + <xsl:if test="not(//indexterm[normalize-space(primary)=$primary and not(secondary)])"> + <xsl:call-template name="write.indexterm"> + <xsl:with-param name="text" select="$primary"/> + </xsl:call-template> + </xsl:if> + </xsl:if> + + <xsl:if test="tertiary"> + <xsl:if test="not(//indexterm[normalize-space(primary)=$primary and + normalize-space(secondary)=$secondary and not(tertiary)])"> + <xsl:call-template name="write.indexterm"> + <xsl:with-param name="text" select="concat($primary, ', ', $secondary)"/> + </xsl:call-template> + </xsl:if> + </xsl:if> + + <xsl:call-template name="write.indexterm"> + <xsl:with-param name="text" select="$text"/> + </xsl:call-template> + + </xsl:when> + <xsl:otherwise> + <a> + <xsl:attribute name="name"> + <xsl:call-template name="object.id"/> + </xsl:attribute> + </a> + </xsl:otherwise> + + </xsl:choose> +</xsl:template> + +<xsl:template name="write.indexterm"> + <xsl:param name="text"/> + <OBJECT type="application/x-oleobject" + classid="clsid:1e2a7bd0-dab9-11d0-b93a-00c04fc99f9e"> + <param name="Keyword" value="{$text}"/> + </OBJECT> +</xsl:template> + +<!-- ==================================================================== --> + +<xsl:template name="hhk"> + <xsl:call-template name="write.chunk"> + <xsl:with-param name="filename"> + <xsl:if test="$manifest.in.base.dir != 0"> + <xsl:value-of select="$base.dir"/> + </xsl:if> + <xsl:value-of select="$htmlhelp.hhk"/> + </xsl:with-param> + <xsl:with-param name="indent" select="'no'"/> + <xsl:with-param name="content"><xsl:text disable-output-escaping="yes"><![CDATA[<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> +<HTML> +<HEAD> +<meta name="GENERATOR" content="Microsoft® HTML Help Workshop 4.1"> +<!-- Sitemap 1.0 --> +</HEAD><BODY> +<OBJECT type="text/site properties"> +</OBJECT> +<UL>]]> +</xsl:text> +<xsl:if test="($htmlhelp.use.hhk != 0) and $htmlhelp.generate.index"> + <xsl:choose> + <xsl:when test="$rootid != ''"> + <xsl:apply-templates select="key('id',$rootid)" mode="hhk"/> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates select="/" mode="hhk"/> + </xsl:otherwise> + </xsl:choose> +</xsl:if> +<xsl:text disable-output-escaping="yes"><![CDATA[</UL> +</BODY></HTML>]]> +</xsl:text></xsl:with-param> + <xsl:with-param name="encoding" select="$htmlhelp.encoding"/> + <xsl:with-param name="quiet" select="$chunk.quietly"/> + </xsl:call-template> +</xsl:template> + +<xsl:template match="indexterm[@class='endofrange']" mode="hhk"/> + +<xsl:template match="indexterm" mode="hhk"> + <xsl:variable name="primary" select="normalize-space(primary)"/> + <xsl:variable name="secondary" select="normalize-space(secondary)"/> + <xsl:variable name="tertiary" select="normalize-space(tertiary)"/> + + <xsl:call-template name="write.indexterm.hhk"> + <xsl:with-param name="text" select="$primary"/> + <xsl:with-param name="seealso" select="seealso"/> + </xsl:call-template> + + <xsl:if test="secondary"> + <xsl:if test="not(//indexterm[normalize-space(primary)=$primary and not(secondary)])"> + <xsl:call-template name="write.indexterm.hhk"> + <!-- We must create fake entry when there is secondary without primary --> + <xsl:with-param name="text" select="$primary"/> + <xsl:with-param name="seealso" select="$primary"/> + </xsl:call-template> + </xsl:if> + <UL> + <xsl:call-template name="write.indexterm.hhk"> + <xsl:with-param name="text" select="$secondary"/> + <xsl:with-param name="seealso" select="secondary/seealso"/> + </xsl:call-template> + <xsl:if test="tertiary"> + <UL>&lf; + <xsl:call-template name="write.indexterm.hhk"> + <xsl:with-param name="text" select="$tertiary"/> + <xsl:with-param name="seealso" select="tertiary/seealso"/> + </xsl:call-template> + </UL> + </xsl:if> + </UL> + </xsl:if> + +</xsl:template> + +<xsl:template name="write.indexterm.hhk"> + <xsl:param name="text"/> + <xsl:param name="seealso"/> + + <LI> <OBJECT type="text/sitemap">&lf; + <param name="Name"> + <xsl:attribute name="value"> + <xsl:value-of select="$text"/> + </xsl:attribute> + </param>&lf; + + <xsl:if test="not(seealso)"> + <xsl:variable name="href"> + <xsl:call-template name="href.target.with.base.dir"/> + </xsl:variable> + <xsl:variable name="title"> + <xsl:call-template name="nearest.title"> + <xsl:with-param name="object" select=".."/> + </xsl:call-template> + </xsl:variable> + + <param name="Name"> + <xsl:attribute name="value"> + <xsl:value-of select="$title"/> + </xsl:attribute> + </param>&lf; + <param name="Local"> + <xsl:attribute name="value"> + <xsl:value-of select="$href"/> + </xsl:attribute> + </param>&lf; + </xsl:if> + + <xsl:if test="seealso"> + <param name="See Also"> + <xsl:attribute name="value"> + <xsl:value-of select="$seealso"/> + </xsl:attribute> + </param>&lf; + </xsl:if> + </OBJECT></LI> +</xsl:template> + +<xsl:template match="text()" mode="hhk"/> + +<xsl:template name="nearest.title"> + <xsl:param name="object"/> + <xsl:apply-templates select="$object/ancestor-or-self::*[title][1]" mode="title.markup"/> +</xsl:template> + +<!-- ==================================================================== --> + +<xsl:template name="hh-map"> + <xsl:call-template name="write.text.chunk"> + <xsl:with-param name="filename"> + <xsl:if test="$manifest.in.base.dir != 0"> + <xsl:value-of select="$base.dir"/> + </xsl:if> + <xsl:value-of select="$htmlhelp.map.file"/> + </xsl:with-param> + <xsl:with-param name="method" select="'text'"/> + <xsl:with-param name="content"> + <xsl:choose> + <xsl:when test="$rootid != ''"> + <xsl:apply-templates select="key('id',$rootid)" mode="hh-map"/> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates select="/" mode="hh-map"/> + </xsl:otherwise> + </xsl:choose> + </xsl:with-param> + <xsl:with-param name="encoding" select="$htmlhelp.encoding"/> + <xsl:with-param name="quiet" select="$chunk.quietly"/> + </xsl:call-template> +</xsl:template> + +<xsl:template match="processing-instruction('dbhh')" mode="hh-map"> + <xsl:variable name="topicname"> + <xsl:call-template name="pi-attribute"> + <xsl:with-param name="pis" + select="."/> + <xsl:with-param name="attribute" select="'topicname'"/> + </xsl:call-template> + </xsl:variable> + <xsl:variable name="topicid"> + <xsl:call-template name="pi-attribute"> + <xsl:with-param name="pis" + select="."/> + <xsl:with-param name="attribute" select="'topicid'"/> + </xsl:call-template> + </xsl:variable> + <xsl:text>#define </xsl:text> + <xsl:value-of select="$topicname"/> + <xsl:text> </xsl:text> + <xsl:value-of select="$topicid"/> + <xsl:text> </xsl:text> +</xsl:template> + +<xsl:template match="text()" mode="hh-map"/> + +<!-- ==================================================================== --> + +<xsl:template name="hh-alias"> + <xsl:call-template name="write.text.chunk"> + <xsl:with-param name="filename"> + <xsl:if test="$manifest.in.base.dir != 0"> + <xsl:value-of select="$base.dir"/> + </xsl:if> + <xsl:value-of select="$htmlhelp.alias.file"/> + </xsl:with-param> + <xsl:with-param name="method" select="'text'"/> + <xsl:with-param name="content"> + <xsl:choose> + <xsl:when test="$rootid != ''"> + <xsl:apply-templates select="key('id',$rootid)" mode="hh-alias"/> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates select="/" mode="hh-alias"/> + </xsl:otherwise> + </xsl:choose> + </xsl:with-param> + <xsl:with-param name="encoding" select="$htmlhelp.encoding"/> + <xsl:with-param name="quiet" select="$chunk.quietly"/> + </xsl:call-template> +</xsl:template> + +<xsl:template match="processing-instruction('dbhh')" mode="hh-alias"> + <xsl:variable name="topicname"> + <xsl:call-template name="pi-attribute"> + <xsl:with-param name="pis" + select="."/> + <xsl:with-param name="attribute" select="'topicname'"/> + </xsl:call-template> + </xsl:variable> + <xsl:variable name="href"> + <xsl:call-template name="href.target.with.base.dir"> + <xsl:with-param name="object" select=".."/> + </xsl:call-template> + </xsl:variable> + <xsl:value-of select="$topicname"/> + <xsl:text>=</xsl:text> + <!-- Some versions of HH doesn't like fragment identifires, but some does. --> + <!-- <xsl:value-of select="substring-before(concat($href, '#'), '#')"/> --> + <xsl:value-of select="$href"/> + <xsl:text> </xsl:text> +</xsl:template> + +<xsl:template match="text()" mode="hh-alias"/> + +<!-- ==================================================================== --> +<!-- This code can be used to convert any number to hexadecimal format --> + + <h:hex> + <d>0</d> + <d>1</d> + <d>2</d> + <d>3</d> + <d>4</d> + <d>5</d> + <d>6</d> + <d>7</d> + <d>8</d> + <d>9</d> + <d>A</d> + <d>B</d> + <d>C</d> + <d>D</d> + <d>E</d> + <d>F</d> + </h:hex> + + <xsl:template name="toHex"> + <xsl:param name="n" select="0"/> + <xsl:param name="digit" select="$n mod 16"/> + <xsl:param name="rest" select="floor($n div 16)"/> + <xsl:if test="$rest > 0"> + <xsl:call-template name="toHex"> + <xsl:with-param name="n" select="$rest"/> + </xsl:call-template> + </xsl:if> + <xsl:value-of select="document('')//h:hex/d[$digit+1]"/> + </xsl:template> + +<!-- ==================================================================== --> +<!-- Modification to standard HTML stylesheets --> + +<!-- There are links from ToC pane to bibliodivs, so there must be anchor --> +<xsl:template match="bibliodiv/title"> + <h3 class="{name(.)}"> + <xsl:call-template name="anchor"> + <xsl:with-param name="node" select=".."/> + <xsl:with-param name="conditional" select="0"/> + </xsl:call-template> + <xsl:apply-templates/> + </h3> +</xsl:template> + +</xsl:stylesheet> diff --git a/docbook-xsl-1.76.1/htmlhelp/htmlhelp.xsl b/docbook-xsl-1.76.1/htmlhelp/htmlhelp.xsl new file mode 100644 index 0000000..8e8ee95 --- /dev/null +++ b/docbook-xsl-1.76.1/htmlhelp/htmlhelp.xsl @@ -0,0 +1,22 @@ +<?xml version="1.0"?> +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + xmlns:doc="http://nwalsh.com/xsl/documentation/1.0" + xmlns:exsl="http://exslt.org/common" + xmlns:set="http://exslt.org/sets" + version="1.0" + exclude-result-prefixes="doc exsl set"> + +<!-- ******************************************************************** + $Id: htmlhelp.xsl 1676 2002-06-12 13:21:54Z kosek $ + ******************************************************************** + + This file is used by htmlhelp.xsl if you want to generate source + files for HTML Help. It is based on the XSL DocBook Stylesheet + distribution (especially on JavaHelp code) from Norman Walsh. + + ******************************************************************** --> + +<xsl:import href="../html/chunk.xsl"/> +<xsl:include href="htmlhelp-common.xsl"/> + +</xsl:stylesheet> diff --git a/docbook-xsl-1.76.1/htmlhelp/profile-htmlhelp-common.xsl b/docbook-xsl-1.76.1/htmlhelp/profile-htmlhelp-common.xsl new file mode 100644 index 0000000..d2ab70e --- /dev/null +++ b/docbook-xsl-1.76.1/htmlhelp/profile-htmlhelp-common.xsl @@ -0,0 +1,1083 @@ +<?xml version="1.0" encoding="US-ASCII"?> +<!--This file was created automatically by xsl2profile--> +<!--from the DocBook XSL stylesheets.--> +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:doc="http://nwalsh.com/xsl/documentation/1.0" xmlns:exsl="http://exslt.org/common" xmlns:set="http://exslt.org/sets" xmlns:h="urn:x-hex" xmlns:ng="http://docbook.org/docbook-ng" xmlns:db="http://docbook.org/ns/docbook" xmlns:exslt="http://exslt.org/common" exslt:dummy="dummy" ng:dummy="dummy" db:dummy="dummy" extension-element-prefixes="exslt" version="1.0" exclude-result-prefixes="doc exsl set h db ng exslt"> + +<!-- ******************************************************************** + $Id: htmlhelp-common.xsl 8400 2009-04-08 07:44:54Z bobstayton $ + ******************************************************************** --> + +<!-- ==================================================================== --> +<!-- Customizations of standard HTML stylesheet parameters --> + +<!-- no navigation on pages by default, HTML Help provides its own navigation controls --> +<xsl:param name="suppress.navigation" select="1"/> + +<!-- no separate HTML page with index, index is built inside CHM index pane --> +<xsl:param name="generate.index" select="0"/> + +<!-- ==================================================================== --> + +<xsl:param name="htmlhelp.generate.index" select="//indexterm[1]|//db:indexterm[1]|//ng:indexterm[1]"/> + +<!-- Set up HTML Help flag --> +<xsl:variable name="htmlhelp.output" select="1"/> + +<!-- ==================================================================== --> + +<xslo:include xmlns:xslo="http://www.w3.org/1999/XSL/Transform" href="../profiling/profile-mode.xsl"/><xslo:variable xmlns:xslo="http://www.w3.org/1999/XSL/Transform" name="profiled-content"><xslo:choose><xslo:when test="*/self::ng:* or */self::db:*"><xslo:message>Note: namesp. cut : stripped namespace before processing</xslo:message><xslo:variable name="stripped-content"><xslo:apply-templates select="/" mode="stripNS"/></xslo:variable><xslo:message>Note: namesp. cut : processing stripped document</xslo:message><xslo:apply-templates select="exslt:node-set($stripped-content)" mode="profile"/></xslo:when><xslo:otherwise><xslo:apply-templates select="/" mode="profile"/></xslo:otherwise></xslo:choose></xslo:variable><xslo:variable xmlns:xslo="http://www.w3.org/1999/XSL/Transform" name="profiled-nodes" select="exslt:node-set($profiled-content)"/><xsl:template match="/"> + + <!-- * Get a title for current doc so that we let the user --> + <!-- * know what document we are processing at this point. --> + <xsl:variable name="doc.title"> + <xsl:call-template name="get.doc.title"/> + </xsl:variable> + <xsl:choose> + <!-- Hack! If someone hands us a DocBook V5.x or DocBook NG document, + toss the namespace and continue. Use the docbook5 namespaced + stylesheets for DocBook5 if you don't want to use this feature.--> + <xsl:when test="false()"/> + <xsl:otherwise> + <xsl:if test="$htmlhelp.only != 1"> + <xsl:choose> + <xsl:when test="$rootid != ''"> + <xsl:choose> + <xsl:when test="count($profiled-nodes//*[@id=$rootid]) = 0"> + <xsl:message terminate="yes"> + <xsl:text>ID '</xsl:text> + <xsl:value-of select="$rootid"/> + <xsl:text>' not found in document.</xsl:text> + </xsl:message> + </xsl:when> + <xsl:otherwise> + <xsl:message>Formatting from <xsl:value-of select="$rootid"/></xsl:message> + <xsl:apply-templates select="$profiled-nodes//*[@id=$rootid]" mode="process.root"/> + </xsl:otherwise> + </xsl:choose> + </xsl:when> + <xsl:otherwise> + <xsl:if test="$collect.xref.targets = 'yes' or $collect.xref.targets = 'only'"> + <xsl:apply-templates select="$profiled-nodes" mode="collect.targets"/> + </xsl:if> + <xsl:if test="$collect.xref.targets != 'only'"> + <xsl:apply-templates select="$profiled-nodes" mode="process.root"/> + </xsl:if> + </xsl:otherwise> + </xsl:choose> + </xsl:if> + + + <xsl:if test="$collect.xref.targets != 'only'"> + <xsl:call-template name="hhp"/> + <xsl:call-template name="hhc"/> + <xsl:if test="($rootid = '' and //processing-instruction('dbhh')) or ($rootid != '' and $profiled-nodes//*[@id=$rootid]//processing-instruction('dbhh'))"> + <xsl:call-template name="hh-map"/> + <xsl:call-template name="hh-alias"/> + </xsl:if> + <xsl:if test="$htmlhelp.generate.index"> + <xsl:call-template name="hhk"/> + </xsl:if> + </xsl:if> +</xsl:otherwise> +</xsl:choose> +</xsl:template> + +<!-- ==================================================================== --> + +<xsl:template name="hhp"> + <xsl:call-template name="write.text.chunk"> + <xsl:with-param name="filename"> + <xsl:if test="$manifest.in.base.dir != 0"> + <xsl:value-of select="$base.dir"/> + </xsl:if> + <xsl:value-of select="$htmlhelp.hhp"/> + </xsl:with-param> + <xsl:with-param name="method" select="'text'"/> + <xsl:with-param name="content"> + <xsl:call-template name="hhp-main"/> + </xsl:with-param> + <xsl:with-param name="encoding" select="$htmlhelp.encoding"/> + <xsl:with-param name="quiet" select="$chunk.quietly"/> + </xsl:call-template> +</xsl:template> + +<!-- ==================================================================== --> +<xsl:template name="hhp-main"> + + <xsl:variable name="raw.help.title"> + <xsl:choose> + <xsl:when test="$htmlhelp.title = ''"> + <xsl:choose> + <xsl:when test="$rootid != ''"> + <xsl:apply-templates select="$profiled-nodes//*[@id=$rootid]" mode="title.markup"/> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates select="$profiled-nodes/*" mode="title.markup"/> + </xsl:otherwise> + </xsl:choose> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="$htmlhelp.title"/> + </xsl:otherwise> + </xsl:choose> + </xsl:variable> + + <xsl:variable name="help.title" select="normalize-space($raw.help.title)"/> + +<xsl:variable name="default.topic"> + <xsl:choose> + <xsl:when test="$htmlhelp.default.topic != ''"> + <xsl:value-of select="$htmlhelp.default.topic"/> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="make-relative-filename"> + <xsl:with-param name="base.dir"> + <xsl:if test="$manifest.in.base.dir = 0"> + <xsl:value-of select="$base.dir"/> + </xsl:if> + </xsl:with-param> + <xsl:with-param name="base.name"> + <xsl:choose> + <xsl:when test="$rootid != ''"> + <xsl:apply-templates select="$profiled-nodes//*[@id=$rootid]" mode="chunk-filename"/> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates select="$profiled-nodes" mode="chunk-filename"/> + </xsl:otherwise> + </xsl:choose> + </xsl:with-param> + </xsl:call-template> + </xsl:otherwise> + </xsl:choose> +</xsl:variable> +<xsl:variable name="xnavigation"> + <xsl:text>0x</xsl:text> + <xsl:call-template name="toHex"> + <xsl:with-param name="n" select="9504 + $htmlhelp.show.menu * 65536 + $htmlhelp.show.advanced.search * 131072 + $htmlhelp.show.favorities * 4096 + (1 - $htmlhelp.show.toolbar.text) * 64 + $htmlhelp.remember.window.position * 262144"/> + </xsl:call-template> +</xsl:variable> +<xsl:variable name="xbuttons"> + <xsl:text>0x</xsl:text> + <xsl:call-template name="toHex"> + <xsl:with-param name="n" select="0 + $htmlhelp.button.hideshow * 2 + $htmlhelp.button.back * 4 + $htmlhelp.button.forward * 8 + $htmlhelp.button.stop * 16 + $htmlhelp.button.refresh * 32 + $htmlhelp.button.home * 64 + $htmlhelp.button.options * 4096 + $htmlhelp.button.print * 8192 + $htmlhelp.button.locate * 2048 + $htmlhelp.button.jump1 * 262144 + $htmlhelp.button.jump2 * 524288 + $htmlhelp.button.next * 2097152 + $htmlhelp.button.prev * 4194304 + $htmlhelp.button.zoom * 1048576"/> + </xsl:call-template> +</xsl:variable> +<xsl:text>[OPTIONS] +</xsl:text> +<xsl:if test="$htmlhelp.generate.index"> +<xsl:text>Auto Index=Yes +</xsl:text></xsl:if> +<xsl:if test="$htmlhelp.hhc.binary != 0"> +<xsl:text>Binary TOC=Yes +</xsl:text></xsl:if> +<xsl:text>Compatibility=1.1 or later +Compiled file=</xsl:text><xsl:value-of select="$htmlhelp.chm"/><xsl:text> +Contents file=</xsl:text><xsl:value-of select="$htmlhelp.hhc"/><xsl:text> +</xsl:text> +<xsl:if test="$htmlhelp.hhp.window != ''"> +<xsl:text>Default Window=</xsl:text><xsl:value-of select="$htmlhelp.hhp.window"/><xsl:text> +</xsl:text></xsl:if> +<xsl:text>Default topic=</xsl:text><xsl:value-of select="$default.topic"/> +<xsl:text> +Display compile progress=</xsl:text> + <xsl:choose> + <xsl:when test="$htmlhelp.display.progress != 1"> + <xsl:text>No</xsl:text> + </xsl:when> + <xsl:otherwise> + <xsl:text>Yes</xsl:text> + </xsl:otherwise> + </xsl:choose> +<xsl:text> +Full-text search=Yes +</xsl:text> +<xsl:if test="$htmlhelp.generate.index"> +<xsl:text>Index file=</xsl:text><xsl:value-of select="$htmlhelp.hhk"/><xsl:text> +</xsl:text></xsl:if> +<xsl:text>Language=</xsl:text> +<xsl:for-each select="*"> <!-- Change context from / to root element --> + <xsl:call-template name="gentext.template"> + <xsl:with-param name="context" select="'htmlhelp'"/> + <xsl:with-param name="name" select="'langcode'"/> + </xsl:call-template> +</xsl:for-each> +<xsl:text> +Title=</xsl:text> + <xsl:value-of select="$help.title"/> +<xsl:text> +Enhanced decompilation=</xsl:text> + <xsl:choose> + <xsl:when test="$htmlhelp.enhanced.decompilation != 0"> + <xsl:text>Yes</xsl:text> + </xsl:when> + <xsl:otherwise> + <xsl:text>No</xsl:text> + </xsl:otherwise> + </xsl:choose> + +<xsl:if test="$htmlhelp.hhp.window != ''"> + <xsl:text> + +[WINDOWS] +</xsl:text> +<xsl:value-of select="$htmlhelp.hhp.window"/> +<xsl:text>="</xsl:text> +<xsl:value-of select="$help.title"/> +<xsl:text>","</xsl:text><xsl:value-of select="$htmlhelp.hhc"/> +<xsl:text>",</xsl:text> +<xsl:if test="$htmlhelp.generate.index"> + <xsl:text>"</xsl:text> + <xsl:value-of select="$htmlhelp.hhk"/> + <xsl:text>"</xsl:text> +</xsl:if> +<xsl:text>,"</xsl:text> +<xsl:value-of select="$default.topic"/> +<xsl:text>",</xsl:text> +<xsl:text>"</xsl:text> +<xsl:choose> + <xsl:when test="$htmlhelp.button.home != 0"> + <xsl:value-of select="$htmlhelp.button.home.url"/> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="$default.topic"/> + </xsl:otherwise> +</xsl:choose> +<xsl:text>"</xsl:text> +<xsl:text>,</xsl:text> +<xsl:if test="$htmlhelp.button.jump1 != 0"> + <xsl:text>"</xsl:text> + <xsl:value-of select="$htmlhelp.button.jump1.url"/> + <xsl:text>"</xsl:text> +</xsl:if> +<xsl:text>,</xsl:text> +<xsl:if test="$htmlhelp.button.jump1 != 0"> + <xsl:text>"</xsl:text> + <xsl:value-of select="$htmlhelp.button.jump1.title"/> + <xsl:text>"</xsl:text> +</xsl:if> +<xsl:text>,</xsl:text> +<xsl:if test="$htmlhelp.button.jump2 != 0"> + <xsl:text>"</xsl:text> + <xsl:value-of select="$htmlhelp.button.jump2.url"/> + <xsl:text>"</xsl:text> +</xsl:if> +<xsl:text>,</xsl:text> +<xsl:if test="$htmlhelp.button.jump2 != 0"> + <xsl:text>"</xsl:text> + <xsl:value-of select="$htmlhelp.button.jump2.title"/> + <xsl:text>"</xsl:text> +</xsl:if> +<xsl:text>,</xsl:text> +<xsl:value-of select="$xnavigation"/> +<xsl:text>,</xsl:text><xsl:value-of select="$htmlhelp.hhc.width"/><xsl:text>,</xsl:text> +<xsl:value-of select="$xbuttons"/> +<xsl:text>,</xsl:text><xsl:value-of select="$htmlhelp.window.geometry"/><xsl:text>,,,,,,,0 +</xsl:text> +</xsl:if> + +<!-- + Needs more investigation to generate propetly all fields +<xsl:text>search="</xsl:text> +<xsl:value-of select="normalize-space(//title[1])"/> +<xsl:text>","toc.hhc","index.hhk","</xsl:text> +<xsl:value-of select="$root.filename"/> +<xsl:text>.html","</xsl:text> +<xsl:value-of select="$root.filename"/> +<xsl:text>.html",,,,,</xsl:text> +<xsl:value-of select="$xnavigation"/> +<xsl:text>,</xsl:text> +<xsl:value-of select="$htmlhelp.hhc.width"/> +<xsl:text>,</xsl:text> +<xsl:value-of select="$xbuttons"/> +<xsl:text>,</xsl:text> +<xsl:value-of select="$htmlhelp.window.geometry"/> +<xsl:text>,,,,,2,,0 +</xsl:text> +--> + +<xsl:if test="$htmlhelp.hhp.windows"> + <xsl:value-of select="$htmlhelp.hhp.windows"/> +</xsl:if> +<xsl:text> + +[FILES] +</xsl:text> + +<xsl:choose> + <xsl:when test="$rootid != ''"> + <xsl:apply-templates select="$profiled-nodes//*[@id=$rootid]" mode="enumerate-files"/> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates select="$profiled-nodes" mode="enumerate-files"/> + </xsl:otherwise> +</xsl:choose> + +<xsl:if test="$htmlhelp.enumerate.images"> + <xsl:variable name="imagelist"> + <xsl:choose> + <xsl:when test="$rootid != ''"> + <xsl:apply-templates select="$profiled-nodes//*[@id=$rootid]" mode="enumerate-images"/> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates select="$profiled-nodes" mode="enumerate-images"/> + </xsl:otherwise> + </xsl:choose> + </xsl:variable> + <xsl:choose> + <xsl:when test="$exsl.node.set.available != 0 and function-available('set:distinct')"> + <xsl:for-each select="set:distinct(exsl:node-set($imagelist)/filename)"> + <xsl:value-of select="."/> + <xsl:text> +</xsl:text> + </xsl:for-each> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="$imagelist"/> + </xsl:otherwise> + </xsl:choose> +</xsl:if> + +<xsl:if test="($htmlhelp.force.map.and.alias != 0) or ($rootid = '' and //processing-instruction('dbhh')) or ($rootid != '' and $profiled-nodes//*[@id=$rootid]//processing-instruction('dbhh'))"> + <xsl:text> +[ALIAS] +#include </xsl:text><xsl:value-of select="$htmlhelp.alias.file"/><xsl:text> + +[MAP] +#include </xsl:text><xsl:value-of select="$htmlhelp.map.file"/><xsl:text> +</xsl:text> +</xsl:if> + +<xsl:value-of select="$htmlhelp.hhp.tail"/> +</xsl:template> + +<!-- ==================================================================== --> + +<xsl:template match="graphic|inlinegraphic[@format!='linespecific']" mode="enumerate-images"> + <xsl:call-template name="write.filename.enumerate-images"> + <xsl:with-param name="filename"> + <xsl:call-template name="mediaobject.filename.enumerate-images"> + <xsl:with-param name="object" select="."/> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> +</xsl:template> + +<xsl:template match="mediaobject|inlinemediaobject" mode="enumerate-images"> + <xsl:call-template name="select.mediaobject.enumerate-images"/> +</xsl:template> + +<xsl:template name="select.mediaobject.enumerate-images"> + <xsl:param name="olist" select="imageobject|imageobjectco |videoobject|audioobject|textobject"/> + <xsl:param name="count">1</xsl:param> + + <xsl:if test="$count <= count($olist)"> + <xsl:variable name="object" select="$olist[position()=$count]"/> + + <xsl:variable name="useobject"> + <xsl:choose> + <!-- The phrase is never used --> + <xsl:when test="name($object)='textobject' and $object/phrase"> + <xsl:text>0</xsl:text> + </xsl:when> + <!-- The first textobject is a reasonable fallback (but not for image in HH) --> + <xsl:when test="name($object)='textobject'"> + <xsl:text>0</xsl:text> + </xsl:when> + <!-- If there's only one object, use it --> + <xsl:when test="$count = 1 and count($olist) = 1"> + <xsl:text>1</xsl:text> + </xsl:when> + <!-- Otherwise, see if this one is a useable graphic --> + <xsl:otherwise> + <xsl:choose> + <!-- peek inside imageobjectco to simplify the test --> + <xsl:when test="local-name($object) = 'imageobjectco'"> + <xsl:call-template name="is.acceptable.mediaobject"> + <xsl:with-param name="object" select="$object/imageobject"/> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="is.acceptable.mediaobject"> + <xsl:with-param name="object" select="$object"/> + </xsl:call-template> + </xsl:otherwise> + </xsl:choose> + </xsl:otherwise> + </xsl:choose> + </xsl:variable> + + <xsl:choose> + <xsl:when test="$useobject='1' and $object[not(*/@format='linespecific')]"> + <xsl:call-template name="write.filename.enumerate-images"> + <xsl:with-param name="filename"> + <xsl:call-template name="mediaobject.filename.enumerate-images"> + <xsl:with-param name="object" select="$object"/> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="select.mediaobject.enumerate-images"> + <xsl:with-param name="olist" select="$olist"/> + <xsl:with-param name="count" select="$count + 1"/> + </xsl:call-template> + </xsl:otherwise> + </xsl:choose> + </xsl:if> +</xsl:template> + +<xsl:template name="mediaobject.filename.enumerate-images"> + <xsl:param name="object"/> + + <xsl:variable name="urifilename"> + <xsl:call-template name="mediaobject.filename"> + <xsl:with-param name="object" select="$object"/> + </xsl:call-template> + </xsl:variable> + + <xsl:variable name="filename"> + <xsl:choose> + <xsl:when test="starts-with($urifilename, 'file:/')"> + <xsl:value-of select="substring-after($urifilename, 'file:/')"/> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="$urifilename"/> + </xsl:otherwise> + </xsl:choose> + </xsl:variable> + + <xsl:value-of select="translate($filename, '/', '\')"/> + +</xsl:template> + +<xsl:template match="text()" mode="enumerate-images"> +</xsl:template> + +<xsl:template name="write.filename.enumerate-images"> + <xsl:param name="filename"/> + <xsl:choose> + <xsl:when test="function-available('exsl:node-set') and function-available('set:distinct')"> + <filename><xsl:value-of select="$filename"/></filename> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="$filename"/> + <xsl:text> +</xsl:text> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +<!-- ==================================================================== --> + +<!-- HHC and HHK files are processed by compiler line by line + and therefore are very sensitive to whitespaces (linefeeds for sure). --> + +<xsl:template name="hhc"> + <xsl:call-template name="write.chunk"> + <xsl:with-param name="filename"> + <xsl:if test="$manifest.in.base.dir != 0"> + <xsl:value-of select="$base.dir"/> + </xsl:if> + <xsl:value-of select="$htmlhelp.hhc"/> + </xsl:with-param> + <xsl:with-param name="indent" select="'no'"/> + <xsl:with-param name="content"> + <xsl:call-template name="hhc-main"/> + </xsl:with-param> + <xsl:with-param name="encoding" select="$htmlhelp.encoding"/> + <xsl:with-param name="quiet" select="$chunk.quietly"/> + </xsl:call-template> +</xsl:template> + +<xsl:template name="hhc-main"> +<HTML><xsl:text> +</xsl:text> + <HEAD/><xsl:text> +</xsl:text> + <BODY><xsl:text> +</xsl:text> + <xsl:if test="$htmlhelp.hhc.folders.instead.books != 0"> + <OBJECT type="text/site properties"><xsl:text> +</xsl:text> + <param name="ImageType" value="Folder"/><xsl:text> +</xsl:text> + </OBJECT><xsl:text> +</xsl:text> + </xsl:if> + <xsl:variable name="content"> + <xsl:choose> + <xsl:when test="$rootid != ''"> + <xsl:apply-templates select="$profiled-nodes//*[@id=$rootid]" mode="hhc"/> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates select="$profiled-nodes" mode="hhc"/> + </xsl:otherwise> + </xsl:choose> + </xsl:variable> + + <xsl:choose> + <xsl:when test="$htmlhelp.hhc.show.root != 0"> + <UL><xsl:text> +</xsl:text> + <xsl:copy-of select="$content"/> + </UL><xsl:text> +</xsl:text> + </xsl:when> + <xsl:otherwise> + <xsl:copy-of select="$content"/> + </xsl:otherwise> + </xsl:choose> + + </BODY> +</HTML> +</xsl:template> + +<xsl:template name="hhc.entry"> + <xsl:param name="title"> + <xsl:if test="$htmlhelp.autolabel=1"> + <xsl:variable name="label.markup"> + <xsl:apply-templates select="." mode="label.markup"/> + </xsl:variable> + <xsl:if test="normalize-space($label.markup)"> + <xsl:value-of select="concat($label.markup,$autotoc.label.separator)"/> + </xsl:if> + </xsl:if> + <xsl:apply-templates select="." mode="title.markup"/> + </xsl:param> + + <LI><OBJECT type="text/sitemap"><xsl:text> +</xsl:text> + <param name="Name"> + <xsl:attribute name="value"> + <xsl:value-of select="normalize-space($title)"/> + </xsl:attribute> + </param><xsl:text> +</xsl:text> + <param name="Local"> + <xsl:attribute name="value"> + <xsl:call-template name="href.target.with.base.dir"/> + </xsl:attribute> + </param> + </OBJECT></LI><xsl:text> +</xsl:text> +</xsl:template> + +<xsl:template match="set" mode="hhc"> + <xsl:if test="$htmlhelp.hhc.show.root != 0"> + <xsl:call-template name="hhc.entry"/> + </xsl:if> + <xsl:if test="book"> + <xsl:variable name="toc.params"> + <xsl:call-template name="find.path.params"> + <xsl:with-param name="table" select="normalize-space($generate.toc)"/> + </xsl:call-template> + </xsl:variable> + <UL> + <xsl:if test="contains($toc.params, 'toc') and $htmlhelp.hhc.show.root = 0"> + <LI><OBJECT type="text/sitemap"><xsl:text> +</xsl:text> + <param name="Name"> + <xsl:attribute name="value"> + <xsl:call-template name="gentext"> + <xsl:with-param name="key" select="'TableofContents'"/> + </xsl:call-template> + </xsl:attribute> + </param><xsl:text> +</xsl:text> + <param name="Local"> + <xsl:attribute name="value"> + <xsl:choose> + <xsl:when test="$chunk.tocs.and.lots != 0"> + <xsl:apply-templates select="." mode="recursive-chunk-filename"> + <xsl:with-param name="recursive" select="true()"/> + </xsl:apply-templates> + <xsl:text>-toc</xsl:text> + <xsl:value-of select="$html.ext"/> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="href.target.with.base.dir"/> + </xsl:otherwise> + </xsl:choose> + </xsl:attribute> + </param> + </OBJECT></LI><xsl:text> +</xsl:text> + </xsl:if> + <xsl:apply-templates select="book" mode="hhc"/> + </UL><xsl:text> +</xsl:text> + </xsl:if> +</xsl:template> + +<xsl:template match="book" mode="hhc"> + <xsl:if test="$htmlhelp.hhc.show.root != 0 or parent::*"> + <xsl:call-template name="hhc.entry"/> + </xsl:if> + <xsl:if test="part|reference|preface|chapter|appendix|bibliography|article|colophon|glossary"> + <xsl:variable name="toc.params"> + <xsl:call-template name="find.path.params"> + <xsl:with-param name="table" select="normalize-space($generate.toc)"/> + </xsl:call-template> + </xsl:variable> + <UL> + <xsl:if test="contains($toc.params, 'toc') and $htmlhelp.hhc.show.root = 0 and not(parent::*)"> + <LI><OBJECT type="text/sitemap"><xsl:text> +</xsl:text> + <param name="Name"> + <xsl:attribute name="value"> + <xsl:call-template name="gentext"> + <xsl:with-param name="key" select="'TableofContents'"/> + </xsl:call-template> + </xsl:attribute> + </param><xsl:text> +</xsl:text> + <param name="Local"> + <xsl:attribute name="value"> + <xsl:choose> + <xsl:when test="$chunk.tocs.and.lots != 0"> + <xsl:apply-templates select="." mode="recursive-chunk-filename"> + <xsl:with-param name="recursive" select="true()"/> + </xsl:apply-templates> + <xsl:text>-toc</xsl:text> + <xsl:value-of select="$html.ext"/> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="href.target.with.base.dir"/> + </xsl:otherwise> + </xsl:choose> + </xsl:attribute> + </param> + </OBJECT></LI><xsl:text> +</xsl:text> + </xsl:if> + <xsl:apply-templates select="part|reference|preface|chapter|bibliography|appendix|article|colophon|glossary" mode="hhc"/> + </UL><xsl:text> +</xsl:text> + </xsl:if> +</xsl:template> + +<xsl:template match="part|reference|preface|chapter|bibliography|appendix|article|glossary" mode="hhc"> + <xsl:if test="$htmlhelp.hhc.show.root != 0 or parent::*"> + <xsl:call-template name="hhc.entry"/> + </xsl:if> + <xsl:if test="article|reference|preface|chapter|appendix|refentry|section|sect1|bibliodiv"> + <UL><xsl:text> +</xsl:text> + <xsl:apply-templates select="article|reference|preface|chapter|appendix|refentry|section|sect1|bibliodiv" mode="hhc"/> + </UL> + </xsl:if> +</xsl:template> + +<xsl:template match="section" mode="hhc"> + <xsl:if test="$htmlhelp.hhc.show.root != 0 or parent::*"> + <xsl:call-template name="hhc.entry"/> + </xsl:if> + <xsl:if test="section[count(ancestor::section) < $htmlhelp.hhc.section.depth]|refentry"> + <UL><xsl:text> +</xsl:text> + <xsl:apply-templates select="section|refentry" mode="hhc"/> + </UL> + </xsl:if> +</xsl:template> + +<xsl:template match="sect1" mode="hhc"> + <xsl:if test="$htmlhelp.hhc.show.root != 0 or parent::*"> + <xsl:call-template name="hhc.entry"/> + </xsl:if> + <xsl:if test="sect2[$htmlhelp.hhc.section.depth > 1]|refentry"> + <UL><xsl:text> +</xsl:text> + <xsl:apply-templates select="sect2|refentry" mode="hhc"/> + </UL> + </xsl:if> +</xsl:template> + +<xsl:template match="sect2" mode="hhc"> + <xsl:if test="$htmlhelp.hhc.show.root != 0 or parent::*"> + <xsl:call-template name="hhc.entry"/> + </xsl:if> + <xsl:if test="sect3[$htmlhelp.hhc.section.depth > 2]|refentry"> + <UL><xsl:text> +</xsl:text> + <xsl:apply-templates select="sect3|refentry" mode="hhc"/> + </UL> + </xsl:if> +</xsl:template> + +<xsl:template match="sect3" mode="hhc"> + <xsl:if test="$htmlhelp.hhc.show.root != 0 or parent::*"> + <xsl:call-template name="hhc.entry"/> + </xsl:if> + <xsl:if test="sect4[$htmlhelp.hhc.section.depth > 3]|refentry"> + <UL><xsl:text> +</xsl:text> + <xsl:apply-templates select="sect4|refentry" mode="hhc"/> + </UL> + </xsl:if> +</xsl:template> + +<xsl:template match="sect4" mode="hhc"> + <xsl:if test="$htmlhelp.hhc.show.root != 0 or parent::*"> + <xsl:call-template name="hhc.entry"/> + </xsl:if> + <xsl:if test="sect5[$htmlhelp.hhc.section.depth > 4]|refentry"> + <UL><xsl:text> +</xsl:text> + <xsl:apply-templates select="sect5|refentry" mode="hhc"/> + </UL> + </xsl:if> +</xsl:template> + +<xsl:template match="sect5|refentry|colophon|bibliodiv" mode="hhc"> + <xsl:if test="$htmlhelp.hhc.show.root != 0 or parent::*"> + <xsl:call-template name="hhc.entry"/> + </xsl:if> + <xsl:if test="refentry"> + <UL><xsl:text> +</xsl:text> + <xsl:apply-templates select="refentry" mode="hhc"/> + </UL> + </xsl:if> +</xsl:template> + +<!-- ==================================================================== --> + +<xsl:template match="indexterm"> + <xsl:choose> + <xsl:when test="$htmlhelp.use.hhk = 0"> + + <xsl:variable name="primary" select="normalize-space(primary)"/> + <xsl:variable name="secondary" select="normalize-space(secondary)"/> + <xsl:variable name="tertiary" select="normalize-space(tertiary)"/> + + <xsl:variable name="text"> + <xsl:value-of select="$primary"/> + <xsl:if test="secondary"> + <xsl:text>, </xsl:text> + <xsl:value-of select="$secondary"/> + </xsl:if> + <xsl:if test="tertiary"> + <xsl:text>, </xsl:text> + <xsl:value-of select="$tertiary"/> + </xsl:if> + </xsl:variable> + + <xsl:if test="secondary"> + <xsl:if test="not(//indexterm[normalize-space(primary)=$primary and not(secondary)])"> + <xsl:call-template name="write.indexterm"> + <xsl:with-param name="text" select="$primary"/> + </xsl:call-template> + </xsl:if> + </xsl:if> + + <xsl:if test="tertiary"> + <xsl:if test="not(//indexterm[normalize-space(primary)=$primary and normalize-space(secondary)=$secondary and not(tertiary)])"> + <xsl:call-template name="write.indexterm"> + <xsl:with-param name="text" select="concat($primary, ', ', $secondary)"/> + </xsl:call-template> + </xsl:if> + </xsl:if> + + <xsl:call-template name="write.indexterm"> + <xsl:with-param name="text" select="$text"/> + </xsl:call-template> + + </xsl:when> + <xsl:otherwise> + <a> + <xsl:attribute name="name"> + <xsl:call-template name="object.id"/> + </xsl:attribute> + </a> + </xsl:otherwise> + + </xsl:choose> +</xsl:template> + +<xsl:template name="write.indexterm"> + <xsl:param name="text"/> + <OBJECT type="application/x-oleobject" classid="clsid:1e2a7bd0-dab9-11d0-b93a-00c04fc99f9e"> + <param name="Keyword" value="{$text}"/> + </OBJECT> +</xsl:template> + +<!-- ==================================================================== --> + +<xsl:template name="hhk"> + <xsl:call-template name="write.chunk"> + <xsl:with-param name="filename"> + <xsl:if test="$manifest.in.base.dir != 0"> + <xsl:value-of select="$base.dir"/> + </xsl:if> + <xsl:value-of select="$htmlhelp.hhk"/> + </xsl:with-param> + <xsl:with-param name="indent" select="'no'"/> + <xsl:with-param name="content"><xsl:text disable-output-escaping="yes"><!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> +<HTML> +<HEAD> +<meta name="GENERATOR" content="Microsoft&reg; HTML Help Workshop 4.1"> +<!-- Sitemap 1.0 --> +</HEAD><BODY> +<OBJECT type="text/site properties"> +</OBJECT> +<UL> +</xsl:text> +<xsl:if test="($htmlhelp.use.hhk != 0) and $htmlhelp.generate.index"> + <xsl:choose> + <xsl:when test="$rootid != ''"> + <xsl:apply-templates select="$profiled-nodes//*[@id=$rootid]" mode="hhk"/> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates select="$profiled-nodes" mode="hhk"/> + </xsl:otherwise> + </xsl:choose> +</xsl:if> +<xsl:text disable-output-escaping="yes"></UL> +</BODY></HTML> +</xsl:text></xsl:with-param> + <xsl:with-param name="encoding" select="$htmlhelp.encoding"/> + <xsl:with-param name="quiet" select="$chunk.quietly"/> + </xsl:call-template> +</xsl:template> + +<xsl:template match="indexterm[@class='endofrange']" mode="hhk"/> + +<xsl:template match="indexterm" mode="hhk"> + <xsl:variable name="primary" select="normalize-space(primary)"/> + <xsl:variable name="secondary" select="normalize-space(secondary)"/> + <xsl:variable name="tertiary" select="normalize-space(tertiary)"/> + + <xsl:call-template name="write.indexterm.hhk"> + <xsl:with-param name="text" select="$primary"/> + <xsl:with-param name="seealso" select="seealso"/> + </xsl:call-template> + + <xsl:if test="secondary"> + <xsl:if test="not(//indexterm[normalize-space(primary)=$primary and not(secondary)])"> + <xsl:call-template name="write.indexterm.hhk"> + <!-- We must create fake entry when there is secondary without primary --> + <xsl:with-param name="text" select="$primary"/> + <xsl:with-param name="seealso" select="$primary"/> + </xsl:call-template> + </xsl:if> + <UL> + <xsl:call-template name="write.indexterm.hhk"> + <xsl:with-param name="text" select="$secondary"/> + <xsl:with-param name="seealso" select="secondary/seealso"/> + </xsl:call-template> + <xsl:if test="tertiary"> + <UL><xsl:text> +</xsl:text> + <xsl:call-template name="write.indexterm.hhk"> + <xsl:with-param name="text" select="$tertiary"/> + <xsl:with-param name="seealso" select="tertiary/seealso"/> + </xsl:call-template> + </UL> + </xsl:if> + </UL> + </xsl:if> + +</xsl:template> + +<xsl:template name="write.indexterm.hhk"> + <xsl:param name="text"/> + <xsl:param name="seealso"/> + + <LI> <OBJECT type="text/sitemap"><xsl:text> +</xsl:text> + <param name="Name"> + <xsl:attribute name="value"> + <xsl:value-of select="$text"/> + </xsl:attribute> + </param><xsl:text> +</xsl:text> + + <xsl:if test="not(seealso)"> + <xsl:variable name="href"> + <xsl:call-template name="href.target.with.base.dir"/> + </xsl:variable> + <xsl:variable name="title"> + <xsl:call-template name="nearest.title"> + <xsl:with-param name="object" select=".."/> + </xsl:call-template> + </xsl:variable> + + <param name="Name"> + <xsl:attribute name="value"> + <xsl:value-of select="$title"/> + </xsl:attribute> + </param><xsl:text> +</xsl:text> + <param name="Local"> + <xsl:attribute name="value"> + <xsl:value-of select="$href"/> + </xsl:attribute> + </param><xsl:text> +</xsl:text> + </xsl:if> + + <xsl:if test="seealso"> + <param name="See Also"> + <xsl:attribute name="value"> + <xsl:value-of select="$seealso"/> + </xsl:attribute> + </param><xsl:text> +</xsl:text> + </xsl:if> + </OBJECT></LI> +</xsl:template> + +<xsl:template match="text()" mode="hhk"/> + +<xsl:template name="nearest.title"> + <xsl:param name="object"/> + <xsl:apply-templates select="$object/ancestor-or-self::*[title][1]" mode="title.markup"/> +</xsl:template> + +<!-- ==================================================================== --> + +<xsl:template name="hh-map"> + <xsl:call-template name="write.text.chunk"> + <xsl:with-param name="filename"> + <xsl:if test="$manifest.in.base.dir != 0"> + <xsl:value-of select="$base.dir"/> + </xsl:if> + <xsl:value-of select="$htmlhelp.map.file"/> + </xsl:with-param> + <xsl:with-param name="method" select="'text'"/> + <xsl:with-param name="content"> + <xsl:choose> + <xsl:when test="$rootid != ''"> + <xsl:apply-templates select="$profiled-nodes//*[@id=$rootid]" mode="hh-map"/> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates select="$profiled-nodes" mode="hh-map"/> + </xsl:otherwise> + </xsl:choose> + </xsl:with-param> + <xsl:with-param name="encoding" select="$htmlhelp.encoding"/> + <xsl:with-param name="quiet" select="$chunk.quietly"/> + </xsl:call-template> +</xsl:template> + +<xsl:template match="processing-instruction('dbhh')" mode="hh-map"> + <xsl:variable name="topicname"> + <xsl:call-template name="pi-attribute"> + <xsl:with-param name="pis" select="."/> + <xsl:with-param name="attribute" select="'topicname'"/> + </xsl:call-template> + </xsl:variable> + <xsl:variable name="topicid"> + <xsl:call-template name="pi-attribute"> + <xsl:with-param name="pis" select="."/> + <xsl:with-param name="attribute" select="'topicid'"/> + </xsl:call-template> + </xsl:variable> + <xsl:text>#define </xsl:text> + <xsl:value-of select="$topicname"/> + <xsl:text> </xsl:text> + <xsl:value-of select="$topicid"/> + <xsl:text> +</xsl:text> +</xsl:template> + +<xsl:template match="text()" mode="hh-map"/> + +<!-- ==================================================================== --> + +<xsl:template name="hh-alias"> + <xsl:call-template name="write.text.chunk"> + <xsl:with-param name="filename"> + <xsl:if test="$manifest.in.base.dir != 0"> + <xsl:value-of select="$base.dir"/> + </xsl:if> + <xsl:value-of select="$htmlhelp.alias.file"/> + </xsl:with-param> + <xsl:with-param name="method" select="'text'"/> + <xsl:with-param name="content"> + <xsl:choose> + <xsl:when test="$rootid != ''"> + <xsl:apply-templates select="$profiled-nodes//*[@id=$rootid]" mode="hh-alias"/> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates select="$profiled-nodes" mode="hh-alias"/> + </xsl:otherwise> + </xsl:choose> + </xsl:with-param> + <xsl:with-param name="encoding" select="$htmlhelp.encoding"/> + <xsl:with-param name="quiet" select="$chunk.quietly"/> + </xsl:call-template> +</xsl:template> + +<xsl:template match="processing-instruction('dbhh')" mode="hh-alias"> + <xsl:variable name="topicname"> + <xsl:call-template name="pi-attribute"> + <xsl:with-param name="pis" select="."/> + <xsl:with-param name="attribute" select="'topicname'"/> + </xsl:call-template> + </xsl:variable> + <xsl:variable name="href"> + <xsl:call-template name="href.target.with.base.dir"> + <xsl:with-param name="object" select=".."/> + </xsl:call-template> + </xsl:variable> + <xsl:value-of select="$topicname"/> + <xsl:text>=</xsl:text> + <!-- Some versions of HH doesn't like fragment identifires, but some does. --> + <!-- <xsl:value-of select="substring-before(concat($href, '#'), '#')"/> --> + <xsl:value-of select="$href"/> + <xsl:text> +</xsl:text> +</xsl:template> + +<xsl:template match="text()" mode="hh-alias"/> + +<!-- ==================================================================== --> +<!-- This code can be used to convert any number to hexadecimal format --> + + <h:hex> + <d>0</d> + <d>1</d> + <d>2</d> + <d>3</d> + <d>4</d> + <d>5</d> + <d>6</d> + <d>7</d> + <d>8</d> + <d>9</d> + <d>A</d> + <d>B</d> + <d>C</d> + <d>D</d> + <d>E</d> + <d>F</d> + </h:hex> + + <xsl:template name="toHex"> + <xsl:param name="n" select="0"/> + <xsl:param name="digit" select="$n mod 16"/> + <xsl:param name="rest" select="floor($n div 16)"/> + <xsl:if test="$rest > 0"> + <xsl:call-template name="toHex"> + <xsl:with-param name="n" select="$rest"/> + </xsl:call-template> + </xsl:if> + <xsl:value-of select="document('')//h:hex/d[$digit+1]"/> + </xsl:template> + +<!-- ==================================================================== --> +<!-- Modification to standard HTML stylesheets --> + +<!-- There are links from ToC pane to bibliodivs, so there must be anchor --> +<xsl:template match="bibliodiv/title"> + <h3 class="{name(.)}"> + <xsl:call-template name="anchor"> + <xsl:with-param name="node" select=".."/> + <xsl:with-param name="conditional" select="0"/> + </xsl:call-template> + <xsl:apply-templates/> + </h3> +</xsl:template> + +</xsl:stylesheet> diff --git a/docbook-xsl-1.76.1/htmlhelp/profile-htmlhelp.xsl b/docbook-xsl-1.76.1/htmlhelp/profile-htmlhelp.xsl new file mode 100644 index 0000000..eddde3b --- /dev/null +++ b/docbook-xsl-1.76.1/htmlhelp/profile-htmlhelp.xsl @@ -0,0 +1,22 @@ +<?xml version="1.0"?> +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + xmlns:doc="http://nwalsh.com/xsl/documentation/1.0" + xmlns:exsl="http://exslt.org/common" + xmlns:set="http://exslt.org/sets" + version="1.0" + exclude-result-prefixes="doc exsl set"> + +<!-- ******************************************************************** + $Id: profile-htmlhelp.xsl 1676 2002-06-12 13:21:54Z kosek $ + ******************************************************************** + + This file is used by htmlhelp.xsl if you want to generate source + files for HTML Help. It is based on the XSL DocBook Stylesheet + distribution (especially on JavaHelp code) from Norman Walsh. + + ******************************************************************** --> + +<xsl:import href="../html/chunk.xsl"/> +<xsl:include href="profile-htmlhelp-common.xsl"/> + +</xsl:stylesheet> diff --git a/docbook-xsl-1.76.1/images/annot-close.png b/docbook-xsl-1.76.1/images/annot-close.png new file mode 100644 index 0000000..b9e1a0d Binary files /dev/null and b/docbook-xsl-1.76.1/images/annot-close.png differ diff --git a/docbook-xsl-1.76.1/images/annot-open.png b/docbook-xsl-1.76.1/images/annot-open.png new file mode 100644 index 0000000..71040ec Binary files /dev/null and b/docbook-xsl-1.76.1/images/annot-open.png differ diff --git a/docbook-xsl-1.76.1/images/blank.png b/docbook-xsl-1.76.1/images/blank.png new file mode 100644 index 0000000..764bf4f Binary files /dev/null and b/docbook-xsl-1.76.1/images/blank.png differ diff --git a/docbook-xsl-1.76.1/images/callouts/1.gif b/docbook-xsl-1.76.1/images/callouts/1.gif new file mode 100644 index 0000000..9e7a87f Binary files /dev/null and b/docbook-xsl-1.76.1/images/callouts/1.gif differ diff --git a/docbook-xsl-1.76.1/images/callouts/1.png b/docbook-xsl-1.76.1/images/callouts/1.png new file mode 100644 index 0000000..7d47343 Binary files /dev/null and b/docbook-xsl-1.76.1/images/callouts/1.png differ diff --git a/docbook-xsl-1.76.1/images/callouts/1.svg b/docbook-xsl-1.76.1/images/callouts/1.svg new file mode 100644 index 0000000..e2e87dc --- /dev/null +++ b/docbook-xsl-1.76.1/images/callouts/1.svg @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> +<!DOCTYPE svg [ + <!ENTITY ns_svg "http://www.w3.org/2000/svg"> + <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> +]> +<svg version="1.0" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="33" height="33" viewBox="0 0 33 33" + style="overflow:visible;enable-background:new 0 0 33 33;" xml:space="preserve"> +<circle style="stroke:#000000;" cx="16.5" cy="16.5" r="16"/> +<g> + <g style="enable-background:new ;"> + <path style="fill:#FFFFFF;" d="M10.428,10.411h0.56c3.78,0,4.788-1.96,4.872-3.444h3.22v19.88h-3.92V13.154h-4.732V10.411z"/> + </g> +</g> +</svg> diff --git a/docbook-xsl-1.76.1/images/callouts/10.gif b/docbook-xsl-1.76.1/images/callouts/10.gif new file mode 100644 index 0000000..e80f7f8 Binary files /dev/null and b/docbook-xsl-1.76.1/images/callouts/10.gif differ diff --git a/docbook-xsl-1.76.1/images/callouts/10.png b/docbook-xsl-1.76.1/images/callouts/10.png new file mode 100644 index 0000000..997bbc8 Binary files /dev/null and b/docbook-xsl-1.76.1/images/callouts/10.png differ diff --git a/docbook-xsl-1.76.1/images/callouts/10.svg b/docbook-xsl-1.76.1/images/callouts/10.svg new file mode 100644 index 0000000..4740f58 --- /dev/null +++ b/docbook-xsl-1.76.1/images/callouts/10.svg @@ -0,0 +1,18 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> +<!DOCTYPE svg [ + <!ENTITY ns_svg "http://www.w3.org/2000/svg"> + <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> +]> +<svg version="1.0" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="33" height="33" viewBox="0 0 33 33" + style="overflow:visible;enable-background:new 0 0 33 33;" xml:space="preserve"> +<circle style="stroke:#000000;" cx="16.5" cy="16.5" r="16"/> +<g> + <g style="enable-background:new ;"> + <path style="fill:#FFFFFF;" d="M3.815,10.758h0.48c3.24,0,4.104-1.681,4.176-2.952h2.76v17.04h-3.36V13.11H3.815V10.758z"/> + <path style="fill:#FFFFFF;" d="M22.175,7.806c4.009,0,5.904,2.76,5.904,8.736c0,5.975-1.896,8.76-5.904,8.76 + c-4.008,0-5.904-2.785-5.904-8.76C16.271,10.566,18.167,7.806,22.175,7.806z M22.175,22.613c1.921,0,2.448-1.68,2.448-6.071 + c0-4.393-0.527-6.049-2.448-6.049c-1.92,0-2.448,1.656-2.448,6.049C19.727,20.934,20.255,22.613,22.175,22.613z"/> + </g> +</g> +</svg> diff --git a/docbook-xsl-1.76.1/images/callouts/11.gif b/docbook-xsl-1.76.1/images/callouts/11.gif new file mode 100644 index 0000000..67f91a2 Binary files /dev/null and b/docbook-xsl-1.76.1/images/callouts/11.gif differ diff --git a/docbook-xsl-1.76.1/images/callouts/11.png b/docbook-xsl-1.76.1/images/callouts/11.png new file mode 100644 index 0000000..ce47dac Binary files /dev/null and b/docbook-xsl-1.76.1/images/callouts/11.png differ diff --git a/docbook-xsl-1.76.1/images/callouts/11.svg b/docbook-xsl-1.76.1/images/callouts/11.svg new file mode 100644 index 0000000..09a0b2c --- /dev/null +++ b/docbook-xsl-1.76.1/images/callouts/11.svg @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> +<!DOCTYPE svg [ + <!ENTITY ns_svg "http://www.w3.org/2000/svg"> + <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> +]> +<svg version="1.0" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="33" height="33" viewBox="0 0 33 33" + style="overflow:visible;enable-background:new 0 0 33 33;" xml:space="preserve"> +<circle style="stroke:#000000;" cx="16.5" cy="16.5" r="16"/> +<g> + <g style="enable-background:new ;"> + <path style="fill:#FFFFFF;" d="M5.209,10.412h0.48c3.24,0,4.104-1.681,4.176-2.952h2.76V24.5h-3.36V12.764H5.209V10.412z"/> + <path style="fill:#FFFFFF;" d="M18.553,10.412h0.48c3.24,0,4.104-1.681,4.176-2.952h2.76V24.5h-3.359V12.764h-4.056V10.412z"/> + </g> +</g> +</svg> diff --git a/docbook-xsl-1.76.1/images/callouts/12.gif b/docbook-xsl-1.76.1/images/callouts/12.gif new file mode 100644 index 0000000..54c4b42 Binary files /dev/null and b/docbook-xsl-1.76.1/images/callouts/12.gif differ diff --git a/docbook-xsl-1.76.1/images/callouts/12.png b/docbook-xsl-1.76.1/images/callouts/12.png new file mode 100644 index 0000000..31daf4e Binary files /dev/null and b/docbook-xsl-1.76.1/images/callouts/12.png differ diff --git a/docbook-xsl-1.76.1/images/callouts/12.svg b/docbook-xsl-1.76.1/images/callouts/12.svg new file mode 100644 index 0000000..9794044 --- /dev/null +++ b/docbook-xsl-1.76.1/images/callouts/12.svg @@ -0,0 +1,18 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> +<!DOCTYPE svg [ + <!ENTITY ns_svg "http://www.w3.org/2000/svg"> + <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> +]> +<svg version="1.0" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="33" height="33" viewBox="0 0 33 33" + style="overflow:visible;enable-background:new 0 0 33 33;" xml:space="preserve"> +<circle style="stroke:#000000;" cx="16.5" cy="16.5" r="16"/> +<g> + <g style="enable-background:new ;"> + <path style="fill:#FFFFFF;" d="M4.813,10.412h0.48c3.24,0,4.104-1.681,4.176-2.952h2.76V24.5h-3.36V12.764H4.813V10.412z"/> + <path style="fill:#FFFFFF;" d="M17.316,13.484c0-5.545,4.056-6.024,5.568-6.024c3.265,0,5.856,1.92,5.856,5.376 + c0,2.928-1.896,4.416-3.553,5.544c-2.256,1.584-3.432,2.353-3.815,3.145h7.392V24.5h-11.64c0.12-1.992,0.264-4.08,3.96-6.768 + c3.072-2.232,4.296-3.097,4.296-5.017c0-1.128-0.72-2.424-2.353-2.424c-2.352,0-2.423,1.944-2.447,3.192H17.316z"/> + </g> +</g> +</svg> diff --git a/docbook-xsl-1.76.1/images/callouts/13.gif b/docbook-xsl-1.76.1/images/callouts/13.gif new file mode 100644 index 0000000..dd5d7d9 Binary files /dev/null and b/docbook-xsl-1.76.1/images/callouts/13.gif differ diff --git a/docbook-xsl-1.76.1/images/callouts/13.png b/docbook-xsl-1.76.1/images/callouts/13.png new file mode 100644 index 0000000..14021a8 Binary files /dev/null and b/docbook-xsl-1.76.1/images/callouts/13.png differ diff --git a/docbook-xsl-1.76.1/images/callouts/13.svg b/docbook-xsl-1.76.1/images/callouts/13.svg new file mode 100644 index 0000000..64268bb --- /dev/null +++ b/docbook-xsl-1.76.1/images/callouts/13.svg @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> +<!DOCTYPE svg [ + <!ENTITY ns_svg "http://www.w3.org/2000/svg"> + <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> +]> +<svg version="1.0" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="33" height="33" viewBox="0 0 33 33" + style="overflow:visible;enable-background:new 0 0 33 33;" xml:space="preserve"> +<circle style="stroke:#000000;" cx="16.5" cy="16.5" r="16"/> +<g> + <g style="enable-background:new ;"> + <path style="fill:#FFFFFF;" d="M3.813,10.412h0.48c3.24,0,4.104-1.681,4.176-2.952h2.76V24.5h-3.36V12.764H3.813V10.412z"/> + <path style="fill:#FFFFFF;" d="M20.611,14.636h0.529c1.008,0,2.855-0.096,2.855-2.304c0-0.624-0.288-2.185-2.137-2.185 + c-2.303,0-2.303,2.185-2.303,2.784h-3.12c0-3.191,1.8-5.472,5.64-5.472c2.279,0,5.279,1.152,5.279,4.752 + c0,1.728-1.08,2.808-2.039,3.24V15.5c0.6,0.168,2.568,1.056,2.568,3.96c0,3.216-2.377,5.496-5.809,5.496 + c-1.607,0-5.928-0.36-5.928-5.688h3.288l-0.024,0.024c0,0.912,0.24,2.976,2.496,2.976c1.344,0,2.52-0.911,2.52-2.808 + c0-2.328-2.256-2.424-3.816-2.424V14.636z"/> + </g> +</g> +</svg> diff --git a/docbook-xsl-1.76.1/images/callouts/14.gif b/docbook-xsl-1.76.1/images/callouts/14.gif new file mode 100644 index 0000000..3d7a952 Binary files /dev/null and b/docbook-xsl-1.76.1/images/callouts/14.gif differ diff --git a/docbook-xsl-1.76.1/images/callouts/14.png b/docbook-xsl-1.76.1/images/callouts/14.png new file mode 100644 index 0000000..64014b7 Binary files /dev/null and b/docbook-xsl-1.76.1/images/callouts/14.png differ diff --git a/docbook-xsl-1.76.1/images/callouts/14.svg b/docbook-xsl-1.76.1/images/callouts/14.svg new file mode 100644 index 0000000..469aa97 --- /dev/null +++ b/docbook-xsl-1.76.1/images/callouts/14.svg @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> +<!DOCTYPE svg [ + <!ENTITY ns_svg "http://www.w3.org/2000/svg"> + <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> +]> +<svg version="1.0" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="33" height="33" viewBox="0 0 33 33" + style="overflow:visible;enable-background:new 0 0 33 33;" xml:space="preserve"> +<circle style="stroke:#000000;" cx="16.5" cy="16.5" r="16"/> +<g> + <g style="enable-background:new ;"> + <path style="fill:#FFFFFF;" d="M4.146,10.412h0.48c3.24,0,4.104-1.681,4.176-2.952h2.76V24.5h-3.36V12.764H4.146V10.412z"/> + <path style="fill:#FFFFFF;" d="M28.457,20.732h-1.896V24.5h-3.36v-3.768h-6.72v-2.904L22.746,7.46h3.815v10.656h1.896V20.732z + M23.201,18.116c0-4.128,0.072-6.792,0.072-7.32h-0.048l-4.272,7.32H23.201z"/> + </g> +</g> +</svg> diff --git a/docbook-xsl-1.76.1/images/callouts/15.gif b/docbook-xsl-1.76.1/images/callouts/15.gif new file mode 100644 index 0000000..1c9183d Binary files /dev/null and b/docbook-xsl-1.76.1/images/callouts/15.gif differ diff --git a/docbook-xsl-1.76.1/images/callouts/15.png b/docbook-xsl-1.76.1/images/callouts/15.png new file mode 100644 index 0000000..0d65765 Binary files /dev/null and b/docbook-xsl-1.76.1/images/callouts/15.png differ diff --git a/docbook-xsl-1.76.1/images/callouts/15.svg b/docbook-xsl-1.76.1/images/callouts/15.svg new file mode 100644 index 0000000..8202233 --- /dev/null +++ b/docbook-xsl-1.76.1/images/callouts/15.svg @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> +<!DOCTYPE svg [ + <!ENTITY ns_svg "http://www.w3.org/2000/svg"> + <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> +]> +<svg version="1.0" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="33" height="33" viewBox="0 0 33 33" + style="overflow:visible;enable-background:new 0 0 33 33;" xml:space="preserve"> +<circle style="stroke:#000000;" cx="16.5" cy="16.5" r="16"/> +<g> + <g style="enable-background:new ;"> + <path style="fill:#FFFFFF;" d="M3.479,11.079h0.48c3.24,0,4.104-1.681,4.176-2.952h2.76v17.04h-3.36V13.43H3.479V11.079z"/> + <path style="fill:#FFFFFF;" d="M19.342,14.943c0.625-0.433,1.392-0.937,3.048-0.937c2.279,0,5.16,1.584,5.16,5.496 + c0,2.328-1.176,6.121-6.192,6.121c-2.664,0-5.376-1.584-5.544-5.016h3.36c0.144,1.391,0.888,2.326,2.376,2.326 + c1.607,0,2.544-1.367,2.544-3.191c0-1.512-0.72-3.047-2.496-3.047c-0.456,0-1.608,0.023-2.256,1.223l-3-0.143l1.176-9.361h9.36 + v2.832h-6.937L19.342,14.943z"/> + </g> +</g> +</svg> diff --git a/docbook-xsl-1.76.1/images/callouts/16.svg b/docbook-xsl-1.76.1/images/callouts/16.svg new file mode 100644 index 0000000..01d6bf8 --- /dev/null +++ b/docbook-xsl-1.76.1/images/callouts/16.svg @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> +<!DOCTYPE svg [ + <!ENTITY ns_svg "http://www.w3.org/2000/svg"> + <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> +]> +<svg version="1.0" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="33" height="33" viewBox="0 0 33 33" + style="overflow:visible;enable-background:new 0 0 33 33;" xml:space="preserve"> +<circle style="stroke:#000000;" cx="16.5" cy="16.5" r="16"/> +<g> + <g style="enable-background:new ;"> + <path style="fill:#FFFFFF;" d="M3.813,10.412h0.48c3.24,0,4.104-1.681,4.176-2.952h2.76V24.5h-3.36V12.764H3.813V10.412z"/> + <path style="fill:#FFFFFF;" d="M24.309,11.78c-0.097-0.96-0.721-1.633-1.969-1.633c-2.184,0-2.688,2.496-2.808,4.704L19.58,14.9 + c0.456-0.624,1.296-1.416,3.191-1.416c3.529,0,5.209,2.712,5.209,5.256c0,3.72-2.28,6.216-5.568,6.216 + c-5.16,0-6.168-4.32-6.168-8.568c0-3.24,0.432-8.928,6.336-8.928c0.695,0,2.641,0.264,3.48,1.104 + c0.936,0.912,1.271,1.416,1.584,3.217H24.309z M22.172,16.172c-1.271,0-2.568,0.792-2.568,2.928c0,1.849,1.056,3.168,2.664,3.168 + c1.225,0,2.353-0.936,2.353-3.239C24.62,16.868,23.229,16.172,22.172,16.172z"/> + </g> +</g> +</svg> diff --git a/docbook-xsl-1.76.1/images/callouts/17.svg b/docbook-xsl-1.76.1/images/callouts/17.svg new file mode 100644 index 0000000..0a04c55 --- /dev/null +++ b/docbook-xsl-1.76.1/images/callouts/17.svg @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> +<!DOCTYPE svg [ + <!ENTITY ns_svg "http://www.w3.org/2000/svg"> + <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> +]> +<svg version="1.0" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="33" height="33" viewBox="0 0 33 33" + style="overflow:visible;enable-background:new 0 0 33 33;" xml:space="preserve"> +<circle style="stroke:#000000;" cx="16.5" cy="16.5" r="16"/> +<g> + <g style="enable-background:new ;"> + <path style="fill:#FFFFFF;" d="M3.479,11.079h0.48c3.24,0,4.104-1.681,4.176-2.952h2.76v17.04h-3.36V13.43H3.479V11.079z"/> + <path style="fill:#FFFFFF;" d="M27.838,11.006c-1.631,1.776-5.807,6.816-6.215,14.16h-3.457c0.36-6.816,4.632-12.24,6.072-13.776 + h-8.472l0.072-2.976h12V11.006z"/> + </g> +</g> +</svg> diff --git a/docbook-xsl-1.76.1/images/callouts/18.svg b/docbook-xsl-1.76.1/images/callouts/18.svg new file mode 100644 index 0000000..1cb891b --- /dev/null +++ b/docbook-xsl-1.76.1/images/callouts/18.svg @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> +<!DOCTYPE svg [ + <!ENTITY ns_svg "http://www.w3.org/2000/svg"> + <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> +]> +<svg version="1.0" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="33" height="33" viewBox="0 0 33 33" + style="overflow:visible;enable-background:new 0 0 33 33;" xml:space="preserve"> +<circle style="stroke:#000000;" cx="16.5" cy="16.5" r="16"/> +<g> + <g style="enable-background:new ;"> + <path style="fill:#FFFFFF;" d="M4.813,10.412h0.48c3.24,0,4.104-1.681,4.176-2.952h2.76V24.5h-3.36V12.764H4.813V10.412z"/> + <path style="fill:#FFFFFF;" d="M23.172,24.956c-4.392,0-5.904-2.856-5.904-5.185c0-0.863,0-3.119,2.592-4.319 + c-1.344-0.672-2.064-1.752-2.064-3.336c0-2.904,2.328-4.656,5.304-4.656c3.528,0,5.4,2.088,5.4,4.44 + c0,1.464-0.6,2.712-1.968,3.432c1.632,0.815,2.544,1.896,2.544,4.104C29.076,21.596,27.684,24.956,23.172,24.956z M23.124,16.916 + c-1.224,0-2.4,0.792-2.4,2.64c0,1.632,0.936,2.712,2.472,2.712c1.752,0,2.424-1.512,2.424-2.688 + C25.62,18.38,24.996,16.916,23.124,16.916z M25.284,12.26c0-1.296-0.888-2.112-1.968-2.112c-1.512,0-2.305,0.864-2.305,2.112 + c0,1.008,0.744,2.112,2.185,2.112C24.516,14.372,25.284,13.484,25.284,12.26z"/> + </g> +</g> +</svg> diff --git a/docbook-xsl-1.76.1/images/callouts/19.svg b/docbook-xsl-1.76.1/images/callouts/19.svg new file mode 100644 index 0000000..e6fbb17 --- /dev/null +++ b/docbook-xsl-1.76.1/images/callouts/19.svg @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> +<!DOCTYPE svg [ + <!ENTITY ns_svg "http://www.w3.org/2000/svg"> + <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> +]> +<svg version="1.0" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="33" height="33" viewBox="0 0 33 33" + style="overflow:visible;enable-background:new 0 0 33 33;" xml:space="preserve"> +<circle style="stroke:#000000;" cx="16.5" cy="16.5" r="16"/> +<g> + <g style="enable-background:new ;"> + <path style="fill:#FFFFFF;" d="M4.146,10.746h0.48c3.24,0,4.104-1.681,4.176-2.952h2.76v17.041h-3.36V13.097H4.146V10.746z"/> + <path style="fill:#FFFFFF;" d="M20.225,20.898v0.023c0.192,1.176,0.936,1.68,1.968,1.68c1.392,0,2.783-1.176,2.808-4.752 + l-0.048-0.049c-0.768,1.152-2.088,1.441-3.24,1.441c-3.264,0-5.16-2.473-5.16-5.329c0-4.176,2.472-6.12,5.808-6.12 + c5.904,0,6,6.36,6,8.76c0,6.601-3.12,8.736-6.192,8.736c-2.904,0-4.992-1.68-5.28-4.391H20.225z M22.434,16.553 + c1.176,0,2.472-0.84,2.472-2.855c0-1.944-0.841-3.145-2.568-3.145c-0.864,0-2.424,0.433-2.424,2.88 + C19.913,16.001,21.161,16.553,22.434,16.553z"/> + </g> +</g> +</svg> diff --git a/docbook-xsl-1.76.1/images/callouts/2.gif b/docbook-xsl-1.76.1/images/callouts/2.gif new file mode 100644 index 0000000..94d42a3 Binary files /dev/null and b/docbook-xsl-1.76.1/images/callouts/2.gif differ diff --git a/docbook-xsl-1.76.1/images/callouts/2.png b/docbook-xsl-1.76.1/images/callouts/2.png new file mode 100644 index 0000000..5d09341 Binary files /dev/null and b/docbook-xsl-1.76.1/images/callouts/2.png differ diff --git a/docbook-xsl-1.76.1/images/callouts/2.svg b/docbook-xsl-1.76.1/images/callouts/2.svg new file mode 100644 index 0000000..07d0339 --- /dev/null +++ b/docbook-xsl-1.76.1/images/callouts/2.svg @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> +<!DOCTYPE svg [ + <!ENTITY ns_svg "http://www.w3.org/2000/svg"> + <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> +]> +<svg version="1.0" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="33" height="33" viewBox="0 0 33 33" + style="overflow:visible;enable-background:new 0 0 33 33;" xml:space="preserve"> +<circle style="stroke:#000000;" cx="16.5" cy="16.5" r="16"/> +<g> + <g style="enable-background:new ;"> + <path style="fill:#FFFFFF;" d="M9.668,12.328c0-6.469,4.732-7.028,6.496-7.028c3.808,0,6.833,2.24,6.833,6.271 + c0,3.416-2.213,5.152-4.145,6.469c-2.632,1.848-4.004,2.744-4.452,3.668h8.624v3.472H9.444c0.14-2.324,0.308-4.76,4.62-7.896 + c3.584-2.604,5.012-3.612,5.012-5.853c0-1.315-0.84-2.828-2.744-2.828c-2.744,0-2.828,2.269-2.856,3.725H9.668z"/> + </g> +</g> +</svg> diff --git a/docbook-xsl-1.76.1/images/callouts/20.svg b/docbook-xsl-1.76.1/images/callouts/20.svg new file mode 100644 index 0000000..ccbfd40 --- /dev/null +++ b/docbook-xsl-1.76.1/images/callouts/20.svg @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> +<!DOCTYPE svg [ + <!ENTITY ns_svg "http://www.w3.org/2000/svg"> + <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> +]> +<svg version="1.0" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="33" height="33" viewBox="0 0 33 33" + style="overflow:visible;enable-background:new 0 0 33 33;" xml:space="preserve"> +<circle style="stroke:#000000;" cx="16.5" cy="16.5" r="16"/> +<g> + <g style="enable-background:new ;"> + <path style="fill:#FFFFFF;" d="M3.972,13.484c0-5.545,4.056-6.024,5.568-6.024c3.264,0,5.856,1.92,5.856,5.376 + c0,2.928-1.896,4.416-3.552,5.544c-2.256,1.584-3.432,2.353-3.816,3.145h7.392V24.5H3.78c0.12-1.992,0.264-4.08,3.96-6.768 + c3.072-2.232,4.296-3.097,4.296-5.017c0-1.128-0.72-2.424-2.352-2.424c-2.352,0-2.424,1.944-2.448,3.192H3.972z"/> + <path style="fill:#FFFFFF;" d="M23.172,7.46c4.008,0,5.904,2.76,5.904,8.736c0,5.976-1.896,8.76-5.904,8.76 + s-5.904-2.784-5.904-8.76C17.268,10.22,19.164,7.46,23.172,7.46z M23.172,22.268c1.92,0,2.448-1.68,2.448-6.071 + c0-4.393-0.528-6.049-2.448-6.049s-2.448,1.656-2.448,6.049C20.724,20.588,21.252,22.268,23.172,22.268z"/> + </g> +</g> +</svg> diff --git a/docbook-xsl-1.76.1/images/callouts/21.svg b/docbook-xsl-1.76.1/images/callouts/21.svg new file mode 100644 index 0000000..93ec53f --- /dev/null +++ b/docbook-xsl-1.76.1/images/callouts/21.svg @@ -0,0 +1,18 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> +<!DOCTYPE svg [ + <!ENTITY ns_svg "http://www.w3.org/2000/svg"> + <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> +]> +<svg version="1.0" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="33" height="33" viewBox="0 0 33 33" + style="overflow:visible;enable-background:new 0 0 33 33;" xml:space="preserve"> +<circle style="stroke:#000000;" cx="16.5" cy="16.5" r="16"/> +<g> + <g style="enable-background:new ;"> + <path style="fill:#FFFFFF;" d="M5.306,13.151c0-5.545,4.056-6.024,5.568-6.024c3.264,0,5.856,1.92,5.856,5.376 + c0,2.928-1.896,4.416-3.552,5.544c-2.256,1.584-3.432,2.353-3.816,3.145h7.392v2.976H5.114c0.12-1.992,0.264-4.08,3.96-6.768 + c3.072-2.232,4.296-3.097,4.296-5.017c0-1.128-0.72-2.424-2.352-2.424c-2.352,0-2.424,1.944-2.448,3.192H5.306z"/> + <path style="fill:#FFFFFF;" d="M19.49,10.079h0.48c3.239,0,4.104-1.681,4.176-2.952h2.761v17.04h-3.361V12.431H19.49V10.079z"/> + </g> +</g> +</svg> diff --git a/docbook-xsl-1.76.1/images/callouts/22.svg b/docbook-xsl-1.76.1/images/callouts/22.svg new file mode 100644 index 0000000..f48c5f3 --- /dev/null +++ b/docbook-xsl-1.76.1/images/callouts/22.svg @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> +<!DOCTYPE svg [ + <!ENTITY ns_svg "http://www.w3.org/2000/svg"> + <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> +]> +<svg version="1.0" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="33" height="33" viewBox="0 0 33 33" + style="overflow:visible;enable-background:new 0 0 33 33;" xml:space="preserve"> +<circle style="stroke:#000000;" cx="16.5" cy="16.5" r="16"/> +<g> + <g style="enable-background:new ;"> + <path style="fill:#FFFFFF;" d="M3.972,13.484c0-5.545,4.056-6.024,5.568-6.024c3.264,0,5.856,1.92,5.856,5.376 + c0,2.928-1.896,4.416-3.552,5.544c-2.256,1.584-3.432,2.353-3.816,3.145h7.392V24.5H3.78c0.12-1.992,0.264-4.08,3.96-6.768 + c3.072-2.232,4.296-3.097,4.296-5.017c0-1.128-0.72-2.424-2.352-2.424c-2.352,0-2.424,1.944-2.448,3.192H3.972z"/> + <path style="fill:#FFFFFF;" d="M17.316,13.484c0-5.545,4.056-6.024,5.568-6.024c3.265,0,5.856,1.92,5.856,5.376 + c0,2.928-1.896,4.416-3.553,5.544c-2.256,1.584-3.432,2.353-3.815,3.145h7.392V24.5h-11.64c0.12-1.992,0.264-4.08,3.96-6.768 + c3.072-2.232,4.296-3.097,4.296-5.017c0-1.128-0.72-2.424-2.353-2.424c-2.352,0-2.423,1.944-2.447,3.192H17.316z"/> + </g> +</g> +</svg> diff --git a/docbook-xsl-1.76.1/images/callouts/23.svg b/docbook-xsl-1.76.1/images/callouts/23.svg new file mode 100644 index 0000000..6624212 --- /dev/null +++ b/docbook-xsl-1.76.1/images/callouts/23.svg @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> +<!DOCTYPE svg [ + <!ENTITY ns_svg "http://www.w3.org/2000/svg"> + <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> +]> +<svg version="1.0" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="33" height="33" viewBox="0 0 33 33" + style="overflow:visible;enable-background:new 0 0 33 33;" xml:space="preserve"> +<circle style="stroke:#000000;" cx="16.5" cy="16.5" r="16"/> +<g> + <g style="enable-background:new ;"> + <path style="fill:#FFFFFF;" d="M3.972,13.484c0-5.545,4.056-6.024,5.568-6.024c3.264,0,5.856,1.92,5.856,5.376 + c0,2.928-1.896,4.416-3.552,5.544c-2.256,1.584-3.432,2.353-3.816,3.145h7.392V24.5H3.78c0.12-1.992,0.264-4.08,3.96-6.768 + c3.072-2.232,4.296-3.097,4.296-5.017c0-1.128-0.72-2.424-2.352-2.424c-2.352,0-2.424,1.944-2.448,3.192H3.972z"/> + <path style="fill:#FFFFFF;" d="M21.612,14.636h0.528c1.008,0,2.855-0.096,2.855-2.304c0-0.624-0.287-2.185-2.136-2.185 + c-2.304,0-2.304,2.185-2.304,2.784h-3.12c0-3.191,1.8-5.472,5.64-5.472c2.28,0,5.28,1.152,5.28,4.752 + c0,1.728-1.08,2.808-2.04,3.24V15.5c0.6,0.168,2.568,1.056,2.568,3.96c0,3.216-2.377,5.496-5.809,5.496 + c-1.607,0-5.928-0.36-5.928-5.688h3.288l-0.024,0.024c0,0.912,0.24,2.976,2.496,2.976c1.344,0,2.521-0.911,2.521-2.808 + c0-2.328-2.257-2.424-3.816-2.424V14.636z"/> + </g> +</g> +</svg> diff --git a/docbook-xsl-1.76.1/images/callouts/24.svg b/docbook-xsl-1.76.1/images/callouts/24.svg new file mode 100644 index 0000000..a3d5525 --- /dev/null +++ b/docbook-xsl-1.76.1/images/callouts/24.svg @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> +<!DOCTYPE svg [ + <!ENTITY ns_svg "http://www.w3.org/2000/svg"> + <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> +]> +<svg version="1.0" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="33" height="33" viewBox="0 0 33 33" + style="overflow:visible;enable-background:new 0 0 33 33;" xml:space="preserve"> +<circle style="stroke:#000000;" cx="16.5" cy="16.5" r="16"/> +<g> + <g style="enable-background:new ;"> + <path style="fill:#FFFFFF;" d="M4.972,13.484c0-5.545,4.056-6.024,5.568-6.024c3.264,0,5.856,1.92,5.856,5.376 + c0,2.928-1.896,4.416-3.552,5.544c-2.256,1.584-3.432,2.353-3.816,3.145h7.392V24.5H4.78c0.12-1.992,0.264-4.08,3.96-6.768 + c3.072-2.232,4.296-3.097,4.296-5.017c0-1.128-0.72-2.424-2.352-2.424c-2.352,0-2.424,1.944-2.448,3.192H4.972z"/> + <path style="fill:#FFFFFF;" d="M30.124,20.732h-1.896V24.5h-3.36v-3.768h-6.72v-2.904L24.412,7.46h3.816v10.656h1.896V20.732z + M24.868,18.116c0-4.128,0.071-6.792,0.071-7.32h-0.047l-4.272,7.32H24.868z"/> + </g> +</g> +</svg> diff --git a/docbook-xsl-1.76.1/images/callouts/25.svg b/docbook-xsl-1.76.1/images/callouts/25.svg new file mode 100644 index 0000000..56614a9 --- /dev/null +++ b/docbook-xsl-1.76.1/images/callouts/25.svg @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> +<!DOCTYPE svg [ + <!ENTITY ns_svg "http://www.w3.org/2000/svg"> + <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> +]> +<svg version="1.0" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="33" height="33" viewBox="0 0 33 33" + style="overflow:visible;enable-background:new 0 0 33 33;" xml:space="preserve"> +<circle style="stroke:#000000;" cx="16.5" cy="16.5" r="16"/> +<g> + <g style="enable-background:new ;"> + <path style="fill:#FFFFFF;" d="M3.972,13.484c0-5.545,4.056-6.024,5.568-6.024c3.264,0,5.856,1.92,5.856,5.376 + c0,2.928-1.896,4.416-3.552,5.544c-2.256,1.584-3.432,2.353-3.816,3.145h7.392V24.5H3.78c0.12-1.992,0.264-4.08,3.96-6.768 + c3.072-2.232,4.296-3.097,4.296-5.017c0-1.128-0.72-2.424-2.352-2.424c-2.352,0-2.424,1.944-2.448,3.192H3.972z"/> + <path style="fill:#FFFFFF;" d="M20.676,14.276c0.624-0.433,1.393-0.937,3.049-0.937c2.279,0,5.16,1.584,5.16,5.496 + c0,2.328-1.177,6.12-6.193,6.12c-2.664,0-5.375-1.584-5.543-5.016h3.36c0.144,1.392,0.889,2.327,2.376,2.327 + c1.608,0,2.544-1.367,2.544-3.191c0-1.513-0.72-3.048-2.496-3.048c-0.455,0-1.607,0.023-2.256,1.224l-3-0.144l1.176-9.36h9.36 + v2.832h-6.937L20.676,14.276z"/> + </g> +</g> +</svg> diff --git a/docbook-xsl-1.76.1/images/callouts/26.svg b/docbook-xsl-1.76.1/images/callouts/26.svg new file mode 100644 index 0000000..56faeac --- /dev/null +++ b/docbook-xsl-1.76.1/images/callouts/26.svg @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> +<!DOCTYPE svg [ + <!ENTITY ns_svg "http://www.w3.org/2000/svg"> + <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> +]> +<svg version="1.0" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="33" height="33" viewBox="0 0 33 33" + style="overflow:visible;enable-background:new 0 0 33 33;" xml:space="preserve"> +<circle style="stroke:#000000;" cx="16.5" cy="16.5" r="16"/> +<g> + <g style="enable-background:new ;"> + <path style="fill:#FFFFFF;" d="M3.972,13.484c0-5.545,4.056-6.024,5.568-6.024c3.264,0,5.856,1.92,5.856,5.376 + c0,2.928-1.896,4.416-3.552,5.544c-2.256,1.584-3.432,2.353-3.816,3.145h7.392V24.5H3.78c0.12-1.992,0.264-4.08,3.96-6.768 + c3.072-2.232,4.296-3.097,4.296-5.017c0-1.128-0.72-2.424-2.352-2.424c-2.352,0-2.424,1.944-2.448,3.192H3.972z"/> + <path style="fill:#FFFFFF;" d="M25.309,11.78c-0.097-0.96-0.721-1.633-1.969-1.633c-2.184,0-2.688,2.496-2.808,4.704L20.58,14.9 + c0.456-0.624,1.296-1.416,3.191-1.416c3.529,0,5.209,2.712,5.209,5.256c0,3.72-2.28,6.216-5.568,6.216 + c-5.16,0-6.168-4.32-6.168-8.568c0-3.24,0.432-8.928,6.336-8.928c0.695,0,2.641,0.264,3.48,1.104 + c0.936,0.912,1.271,1.416,1.584,3.217H25.309z M23.172,16.172c-1.271,0-2.568,0.792-2.568,2.928c0,1.849,1.056,3.168,2.664,3.168 + c1.225,0,2.353-0.936,2.353-3.239C25.62,16.868,24.229,16.172,23.172,16.172z"/> + </g> +</g> +</svg> diff --git a/docbook-xsl-1.76.1/images/callouts/27.svg b/docbook-xsl-1.76.1/images/callouts/27.svg new file mode 100644 index 0000000..a75c812 --- /dev/null +++ b/docbook-xsl-1.76.1/images/callouts/27.svg @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> +<!DOCTYPE svg [ + <!ENTITY ns_svg "http://www.w3.org/2000/svg"> + <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> +]> +<svg version="1.0" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="33" height="33" viewBox="0 0 33 33" + style="overflow:visible;enable-background:new 0 0 33 33;" xml:space="preserve"> +<circle style="stroke:#000000;" cx="16.5" cy="16.5" r="16"/> +<g> + <g style="enable-background:new ;"> + <path style="fill:#FFFFFF;" d="M3.972,13.484c0-5.545,4.056-6.024,5.568-6.024c3.264,0,5.856,1.92,5.856,5.376 + c0,2.928-1.896,4.416-3.552,5.544c-2.256,1.584-3.432,2.353-3.816,3.145h7.392V24.5H3.78c0.12-1.992,0.264-4.08,3.96-6.768 + c3.072-2.232,4.296-3.097,4.296-5.017c0-1.128-0.72-2.424-2.352-2.424c-2.352,0-2.424,1.944-2.448,3.192H3.972z"/> + <path style="fill:#FFFFFF;" d="M29.172,10.34c-1.632,1.776-5.808,6.816-6.216,14.16H19.5c0.36-6.816,4.632-12.24,6.072-13.776 + H17.1l0.072-2.976h12V10.34z"/> + </g> +</g> +</svg> diff --git a/docbook-xsl-1.76.1/images/callouts/28.svg b/docbook-xsl-1.76.1/images/callouts/28.svg new file mode 100644 index 0000000..7f8cf1a --- /dev/null +++ b/docbook-xsl-1.76.1/images/callouts/28.svg @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> +<!DOCTYPE svg [ + <!ENTITY ns_svg "http://www.w3.org/2000/svg"> + <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> +]> +<svg version="1.0" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="33" height="33" viewBox="0 0 33 33" + style="overflow:visible;enable-background:new 0 0 33 33;" xml:space="preserve"> +<circle style="stroke:#000000;" cx="16.5" cy="16.5" r="16"/> +<g> + <g style="enable-background:new ;"> + <path style="fill:#FFFFFF;" d="M3.972,13.484c0-5.545,4.056-6.024,5.568-6.024c3.264,0,5.856,1.92,5.856,5.376 + c0,2.928-1.896,4.416-3.552,5.544c-2.256,1.584-3.432,2.353-3.816,3.145h7.392V24.5H3.78c0.12-1.992,0.264-4.08,3.96-6.768 + c3.072-2.232,4.296-3.097,4.296-5.017c0-1.128-0.72-2.424-2.352-2.424c-2.352,0-2.424,1.944-2.448,3.192H3.972z"/> + <path style="fill:#FFFFFF;" d="M23.172,24.956c-4.392,0-5.904-2.856-5.904-5.185c0-0.863,0-3.119,2.592-4.319 + c-1.344-0.672-2.064-1.752-2.064-3.336c0-2.904,2.328-4.656,5.304-4.656c3.528,0,5.4,2.088,5.4,4.44 + c0,1.464-0.6,2.712-1.968,3.432c1.632,0.815,2.544,1.896,2.544,4.104C29.076,21.596,27.684,24.956,23.172,24.956z M23.124,16.916 + c-1.224,0-2.4,0.792-2.4,2.64c0,1.632,0.936,2.712,2.472,2.712c1.752,0,2.424-1.512,2.424-2.688 + C25.62,18.38,24.996,16.916,23.124,16.916z M25.284,12.26c0-1.296-0.888-2.112-1.968-2.112c-1.512,0-2.305,0.864-2.305,2.112 + c0,1.008,0.744,2.112,2.185,2.112C24.516,14.372,25.284,13.484,25.284,12.26z"/> + </g> +</g> +</svg> diff --git a/docbook-xsl-1.76.1/images/callouts/29.svg b/docbook-xsl-1.76.1/images/callouts/29.svg new file mode 100644 index 0000000..cb63adf --- /dev/null +++ b/docbook-xsl-1.76.1/images/callouts/29.svg @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> +<!DOCTYPE svg [ + <!ENTITY ns_svg "http://www.w3.org/2000/svg"> + <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> +]> +<svg version="1.0" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="33" height="33" viewBox="0 0 33 33" + style="overflow:visible;enable-background:new 0 0 33 33;" xml:space="preserve"> +<circle style="stroke:#000000;" cx="16.5" cy="16.5" r="16"/> +<g> + <g style="enable-background:new ;"> + <path style="fill:#FFFFFF;" d="M3.972,13.484c0-5.545,4.056-6.024,5.568-6.024c3.264,0,5.856,1.92,5.856,5.376 + c0,2.928-1.896,4.416-3.552,5.544c-2.256,1.584-3.432,2.353-3.816,3.145h7.392V24.5H3.78c0.12-1.992,0.264-4.08,3.96-6.768 + c3.072-2.232,4.296-3.097,4.296-5.017c0-1.128-0.72-2.424-2.352-2.424c-2.352,0-2.424,1.944-2.448,3.192H3.972z"/> + <path style="fill:#FFFFFF;" d="M20.893,20.564v0.023c0.191,1.176,0.936,1.68,1.967,1.68c1.393,0,2.785-1.176,2.809-4.752 + l-0.048-0.048c-0.769,1.152-2.088,1.44-3.24,1.44c-3.264,0-5.16-2.473-5.16-5.328c0-4.176,2.472-6.12,5.807-6.12 + c5.904,0,6.001,6.36,6.001,8.76c0,6.601-3.12,8.736-6.192,8.736c-2.904,0-4.992-1.68-5.28-4.392H20.893z M23.1,16.22 + c1.176,0,2.473-0.84,2.473-2.855c0-1.944-0.84-3.145-2.568-3.145c-0.863,0-2.424,0.433-2.424,2.88 + C20.58,15.668,21.828,16.22,23.1,16.22z"/> + </g> +</g> +</svg> diff --git a/docbook-xsl-1.76.1/images/callouts/3.gif b/docbook-xsl-1.76.1/images/callouts/3.gif new file mode 100644 index 0000000..dd3541a Binary files /dev/null and b/docbook-xsl-1.76.1/images/callouts/3.gif differ diff --git a/docbook-xsl-1.76.1/images/callouts/3.png b/docbook-xsl-1.76.1/images/callouts/3.png new file mode 100644 index 0000000..ef7b700 Binary files /dev/null and b/docbook-xsl-1.76.1/images/callouts/3.png differ diff --git a/docbook-xsl-1.76.1/images/callouts/3.svg b/docbook-xsl-1.76.1/images/callouts/3.svg new file mode 100644 index 0000000..918be80 --- /dev/null +++ b/docbook-xsl-1.76.1/images/callouts/3.svg @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> +<!DOCTYPE svg [ + <!ENTITY ns_svg "http://www.w3.org/2000/svg"> + <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> +]> +<svg version="1.0" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="33" height="33" viewBox="0 0 33 33" + style="overflow:visible;enable-background:new 0 0 33 33;" xml:space="preserve"> +<circle style="stroke:#000000;" cx="16.5" cy="16.5" r="16"/> +<g> + <g style="enable-background:new ;"> + <path style="fill:#FFFFFF;" d="M15.127,14.005h0.616c1.176,0,3.332-0.112,3.332-2.688c0-0.728-0.336-2.548-2.492-2.548 + c-2.688,0-2.688,2.548-2.688,3.248h-3.64c0-3.724,2.1-6.384,6.58-6.384c2.66,0,6.16,1.344,6.16,5.544 + c0,2.016-1.261,3.276-2.38,3.78v0.056c0.699,0.196,2.996,1.232,2.996,4.62c0,3.752-2.772,6.412-6.776,6.412 + c-1.876,0-6.916-0.42-6.916-6.636h3.836l-0.028,0.027c0,1.064,0.28,3.473,2.912,3.473c1.568,0,2.94-1.064,2.94-3.276 + c0-2.716-2.632-2.828-4.452-2.828V14.005z"/> + </g> +</g> +</svg> diff --git a/docbook-xsl-1.76.1/images/callouts/30.svg b/docbook-xsl-1.76.1/images/callouts/30.svg new file mode 100644 index 0000000..dc43ba1 --- /dev/null +++ b/docbook-xsl-1.76.1/images/callouts/30.svg @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> +<!DOCTYPE svg [ + <!ENTITY ns_svg "http://www.w3.org/2000/svg"> + <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> +]> +<svg version="1.0" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="33" height="33" viewBox="0 0 33 33" + style="overflow:visible;enable-background:new 0 0 33 33;" xml:space="preserve"> +<circle style="stroke:#000000;" cx="16.5" cy="16.5" r="16"/> +<g> + <g style="enable-background:new ;"> + <path style="fill:#FFFFFF;" d="M8.268,14.636h0.528c1.008,0,2.856-0.096,2.856-2.304c0-0.624-0.288-2.185-2.136-2.185 + c-2.304,0-2.304,2.185-2.304,2.784h-3.12c0-3.191,1.8-5.472,5.64-5.472c2.28,0,5.28,1.152,5.28,4.752 + c0,1.728-1.08,2.808-2.04,3.24V15.5c0.6,0.168,2.568,1.056,2.568,3.96c0,3.216-2.376,5.496-5.808,5.496 + c-1.608,0-5.928-0.36-5.928-5.688h3.288l-0.024,0.024c0,0.912,0.24,2.976,2.496,2.976c1.344,0,2.52-0.911,2.52-2.808 + c0-2.328-2.256-2.424-3.816-2.424V14.636z"/> + <path style="fill:#FFFFFF;" d="M23.172,7.46c4.008,0,5.904,2.76,5.904,8.736c0,5.976-1.896,8.76-5.904,8.76 + s-5.904-2.784-5.904-8.76C17.268,10.22,19.164,7.46,23.172,7.46z M23.172,22.268c1.92,0,2.448-1.68,2.448-6.071 + c0-4.393-0.528-6.049-2.448-6.049s-2.448,1.656-2.448,6.049C20.724,20.588,21.252,22.268,23.172,22.268z"/> + </g> +</g> +</svg> diff --git a/docbook-xsl-1.76.1/images/callouts/4.gif b/docbook-xsl-1.76.1/images/callouts/4.gif new file mode 100644 index 0000000..4bcbf7e Binary files /dev/null and b/docbook-xsl-1.76.1/images/callouts/4.gif differ diff --git a/docbook-xsl-1.76.1/images/callouts/4.png b/docbook-xsl-1.76.1/images/callouts/4.png new file mode 100644 index 0000000..adb8364 Binary files /dev/null and b/docbook-xsl-1.76.1/images/callouts/4.png differ diff --git a/docbook-xsl-1.76.1/images/callouts/4.svg b/docbook-xsl-1.76.1/images/callouts/4.svg new file mode 100644 index 0000000..8eb6a53 --- /dev/null +++ b/docbook-xsl-1.76.1/images/callouts/4.svg @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> +<!DOCTYPE svg [ + <!ENTITY ns_svg "http://www.w3.org/2000/svg"> + <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> +]> +<svg version="1.0" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="33" height="33" viewBox="0 0 33 33" + style="overflow:visible;enable-background:new 0 0 33 33;" xml:space="preserve"> +<circle style="stroke:#000000;" cx="16.5" cy="16.5" r="16"/> +<g> + <g style="enable-background:new ;"> + <path style="fill:#FFFFFF;" d="M21.891,20.784h-2.212v4.396h-3.92v-4.396h-7.84v-3.389L15.227,5.3h4.452v12.432h2.212V20.784z + M15.759,17.731c0-4.815,0.084-7.924,0.084-8.54h-0.056l-4.984,8.54H15.759z"/> + </g> +</g> +</svg> diff --git a/docbook-xsl-1.76.1/images/callouts/5.gif b/docbook-xsl-1.76.1/images/callouts/5.gif new file mode 100644 index 0000000..1c62b4f Binary files /dev/null and b/docbook-xsl-1.76.1/images/callouts/5.gif differ diff --git a/docbook-xsl-1.76.1/images/callouts/5.png b/docbook-xsl-1.76.1/images/callouts/5.png new file mode 100644 index 0000000..4d7eb46 Binary files /dev/null and b/docbook-xsl-1.76.1/images/callouts/5.png differ diff --git a/docbook-xsl-1.76.1/images/callouts/5.svg b/docbook-xsl-1.76.1/images/callouts/5.svg new file mode 100644 index 0000000..ca7a9f2 --- /dev/null +++ b/docbook-xsl-1.76.1/images/callouts/5.svg @@ -0,0 +1,18 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> +<!DOCTYPE svg [ + <!ENTITY ns_svg "http://www.w3.org/2000/svg"> + <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> +]> +<svg version="1.0" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="33" height="33" viewBox="0 0 33 33" + style="overflow:visible;enable-background:new 0 0 33 33;" xml:space="preserve"> +<circle style="stroke:#000000;" cx="16.5" cy="16.5" r="16"/> +<g> + <g style="enable-background:new ;"> + <path style="fill:#FFFFFF;" d="M14.035,14.252c0.728-0.504,1.624-1.092,3.556-1.092c2.66,0,6.02,1.848,6.02,6.411 + c0,2.717-1.372,7.141-7.224,7.141c-3.108,0-6.272-1.849-6.468-5.853h3.92c0.168,1.624,1.036,2.717,2.772,2.717 + c1.876,0,2.968-1.597,2.968-3.725c0-1.764-0.839-3.556-2.912-3.556c-0.532,0-1.876,0.028-2.632,1.428l-3.5-0.168l1.372-10.92 + h10.919v3.304h-8.092L14.035,14.252z"/> + </g> +</g> +</svg> diff --git a/docbook-xsl-1.76.1/images/callouts/6.gif b/docbook-xsl-1.76.1/images/callouts/6.gif new file mode 100644 index 0000000..23bc555 Binary files /dev/null and b/docbook-xsl-1.76.1/images/callouts/6.gif differ diff --git a/docbook-xsl-1.76.1/images/callouts/6.png b/docbook-xsl-1.76.1/images/callouts/6.png new file mode 100644 index 0000000..0ba694a Binary files /dev/null and b/docbook-xsl-1.76.1/images/callouts/6.png differ diff --git a/docbook-xsl-1.76.1/images/callouts/6.svg b/docbook-xsl-1.76.1/images/callouts/6.svg new file mode 100644 index 0000000..783a0b9 --- /dev/null +++ b/docbook-xsl-1.76.1/images/callouts/6.svg @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> +<!DOCTYPE svg [ + <!ENTITY ns_svg "http://www.w3.org/2000/svg"> + <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> +]> +<svg version="1.0" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="33" height="33" viewBox="0 0 33 33" + style="overflow:visible;enable-background:new 0 0 33 33;" xml:space="preserve"> +<circle style="stroke:#000000;" cx="16.5" cy="16.5" r="16"/> +<g> + <g style="enable-background:new ;"> + <path style="fill:#FFFFFF;" d="M19.106,10.673c-0.112-1.12-0.84-1.904-2.296-1.904c-2.548,0-3.136,2.912-3.276,5.488l0.056,0.056 + c0.532-0.728,1.512-1.651,3.724-1.651c4.116,0,6.077,3.164,6.077,6.131c0,4.34-2.66,7.252-6.497,7.252 + c-6.02,0-7.196-5.039-7.196-9.996c0-3.78,0.504-10.416,7.392-10.416c0.812,0,3.08,0.308,4.061,1.288 + c1.092,1.063,1.483,1.652,1.848,3.752H19.106z M16.614,15.797c-1.484,0-2.996,0.924-2.996,3.416c0,2.156,1.232,3.697,3.108,3.697 + c1.428,0,2.745-1.094,2.745-3.781C19.471,16.609,17.846,15.797,16.614,15.797z"/> + </g> +</g> +</svg> diff --git a/docbook-xsl-1.76.1/images/callouts/7.gif b/docbook-xsl-1.76.1/images/callouts/7.gif new file mode 100644 index 0000000..e55ce89 Binary files /dev/null and b/docbook-xsl-1.76.1/images/callouts/7.gif differ diff --git a/docbook-xsl-1.76.1/images/callouts/7.png b/docbook-xsl-1.76.1/images/callouts/7.png new file mode 100644 index 0000000..472e96f Binary files /dev/null and b/docbook-xsl-1.76.1/images/callouts/7.png differ diff --git a/docbook-xsl-1.76.1/images/callouts/7.svg b/docbook-xsl-1.76.1/images/callouts/7.svg new file mode 100644 index 0000000..59b3714 --- /dev/null +++ b/docbook-xsl-1.76.1/images/callouts/7.svg @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> +<!DOCTYPE svg [ + <!ENTITY ns_svg "http://www.w3.org/2000/svg"> + <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> +]> +<svg version="1.0" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="33" height="33" viewBox="0 0 33 33" + style="overflow:visible;enable-background:new 0 0 33 33;" xml:space="preserve"> +<circle style="stroke:#000000;" cx="16.5" cy="16.5" r="16"/> +<g> + <g style="enable-background:new ;"> + <path style="fill:#FFFFFF;" d="M24.28,9.66c-1.904,2.071-6.776,7.951-7.252,16.52h-4.032c0.42-7.952,5.404-14.28,7.084-16.072 + h-9.884l0.084-3.472h14V9.66z"/> + </g> +</g> +</svg> diff --git a/docbook-xsl-1.76.1/images/callouts/8.gif b/docbook-xsl-1.76.1/images/callouts/8.gif new file mode 100644 index 0000000..49375e0 Binary files /dev/null and b/docbook-xsl-1.76.1/images/callouts/8.gif differ diff --git a/docbook-xsl-1.76.1/images/callouts/8.png b/docbook-xsl-1.76.1/images/callouts/8.png new file mode 100644 index 0000000..5e60973 Binary files /dev/null and b/docbook-xsl-1.76.1/images/callouts/8.png differ diff --git a/docbook-xsl-1.76.1/images/callouts/8.svg b/docbook-xsl-1.76.1/images/callouts/8.svg new file mode 100644 index 0000000..c1803a3 --- /dev/null +++ b/docbook-xsl-1.76.1/images/callouts/8.svg @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> +<!DOCTYPE svg [ + <!ENTITY ns_svg "http://www.w3.org/2000/svg"> + <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> +]> +<svg version="1.0" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="33" height="33" viewBox="0 0 33 33" + style="overflow:visible;enable-background:new 0 0 33 33;" xml:space="preserve"> +<circle style="stroke:#000000;" cx="16.5" cy="16.5" r="16"/> +<g> + <g style="enable-background:new ;"> + <path style="fill:#FFFFFF;" d="M16.28,26.712c-5.124,0-6.888-3.332-6.888-6.048c0-1.009,0-3.641,3.024-5.04 + c-1.568-0.784-2.408-2.044-2.408-3.893c0-3.388,2.716-5.432,6.188-5.432c4.116,0,6.3,2.436,6.3,5.18 + c0,1.708-0.7,3.164-2.296,4.004c1.903,0.952,2.968,2.212,2.968,4.788C23.168,22.792,21.544,26.712,16.28,26.712z M16.224,17.332 + c-1.428,0-2.8,0.924-2.8,3.08c0,1.903,1.092,3.164,2.884,3.164c2.043,0,2.829-1.765,2.829-3.137 + C19.137,19.04,18.408,17.332,16.224,17.332z M18.744,11.899c0-1.512-1.036-2.464-2.296-2.464c-1.764,0-2.688,1.008-2.688,2.464 + c0,1.177,0.868,2.464,2.548,2.464C17.848,14.363,18.744,13.328,18.744,11.899z"/> + </g> +</g> +</svg> diff --git a/docbook-xsl-1.76.1/images/callouts/9.gif b/docbook-xsl-1.76.1/images/callouts/9.gif new file mode 100644 index 0000000..da12a4f Binary files /dev/null and b/docbook-xsl-1.76.1/images/callouts/9.gif differ diff --git a/docbook-xsl-1.76.1/images/callouts/9.png b/docbook-xsl-1.76.1/images/callouts/9.png new file mode 100644 index 0000000..a0676d2 Binary files /dev/null and b/docbook-xsl-1.76.1/images/callouts/9.png differ diff --git a/docbook-xsl-1.76.1/images/callouts/9.svg b/docbook-xsl-1.76.1/images/callouts/9.svg new file mode 100644 index 0000000..bc149d3 --- /dev/null +++ b/docbook-xsl-1.76.1/images/callouts/9.svg @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> +<!DOCTYPE svg [ + <!ENTITY ns_svg "http://www.w3.org/2000/svg"> + <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> +]> +<svg version="1.0" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="33" height="33" viewBox="0 0 33 33" + style="overflow:visible;enable-background:new 0 0 33 33;" xml:space="preserve"> +<circle style="stroke:#000000;" cx="16.5" cy="16.5" r="16"/> +<g> + <g style="enable-background:new ;"> + <path style="fill:#FFFFFF;" d="M13.953,21.921v0.027c0.224,1.372,1.092,1.961,2.296,1.961c1.624,0,3.248-1.372,3.276-5.545 + l-0.057-0.056c-0.896,1.344-2.436,1.68-3.78,1.68c-3.808,0-6.02-2.884-6.02-6.216c0-4.872,2.884-7.14,6.776-7.14 + c6.888,0,7,7.42,7,10.22c0,7.7-3.641,10.192-7.224,10.192c-3.388,0-5.824-1.96-6.16-5.124H13.953z M16.529,16.853 + c1.372,0,2.884-0.979,2.884-3.332c0-2.268-0.98-3.668-2.996-3.668c-1.008,0-2.828,0.504-2.828,3.36 + C13.589,16.209,15.045,16.853,16.529,16.853z"/> + </g> +</g> +</svg> diff --git a/docbook-xsl-1.76.1/images/caution.gif b/docbook-xsl-1.76.1/images/caution.gif new file mode 100644 index 0000000..d9f5e5b Binary files /dev/null and b/docbook-xsl-1.76.1/images/caution.gif differ diff --git a/docbook-xsl-1.76.1/images/caution.png b/docbook-xsl-1.76.1/images/caution.png new file mode 100644 index 0000000..5b7809c Binary files /dev/null and b/docbook-xsl-1.76.1/images/caution.png differ diff --git a/docbook-xsl-1.76.1/images/caution.svg b/docbook-xsl-1.76.1/images/caution.svg new file mode 100644 index 0000000..dd84f3f --- /dev/null +++ b/docbook-xsl-1.76.1/images/caution.svg @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="iso-8859-1"?> +<!-- Generator: Adobe Illustrator 9.0, SVG Export Plug-In --> +<!DOCTYPE svg [ + <!ENTITY st0 "fill:#FFFFFF;stroke:none;"> + <!ENTITY st1 "fill:#FFFFFF;stroke-width:6.6112;stroke-linecap:round;stroke-linejoin:round;"> + <!ENTITY st2 "stroke:#FFFFFF;stroke-width:6.6112;"> + <!ENTITY st3 "fill:none;stroke:none;"> + <!ENTITY st4 "fill-rule:nonzero;clip-rule:nonzero;stroke:#000000;stroke-miterlimit:4;"> + <!ENTITY st5 "stroke:none;"> +]> +<svg width="48pt" height="48pt" viewBox="0 0 48 48" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"> + <g id="Layer_x0020_3" style="&st4;"> + <g> + <path style="&st2;" d="M41.7,35.3L26.6,9.4c-0.6-1-1.7-1.7-2.9-1.6c-1.2,0-2.3,0.7-2.9,1.7L6.3,35.4c-0.6,1-0.6,2.3,0,3.3c0.6,1,1.7,1.6,2.9,1.6h29.6c1.2,0,2.3-0.6,2.9-1.7c0.6-1,0.6-2.3,0-3.3z"/> + <path style="&st1;" d="M23.7,11L9.2,37h29.6L23.7,11z"/> + <path style="&st0;" d="M23.7,11.9L10.3,36.1h27.5l-14-24.1z"/> + <g> + <path style="&st5;" d="M24.1,34c-1.1,0-1.8-0.8-1.8-1.8c0-1.1,0.7-1.8,1.8-1.8c1.1,0,1.8,0.7,1.8,1.8c0,1-0.7,1.8-1.8,1.8h0z M22.9,29.3l-0.4-9.1h3.2l-0.4,9.1h-2.3z"/> + </g> + </g> + </g> + <g id="crop_x0020_marks" style="&st4;"> + <path style="&st3;" d="M48,48H0V0h48v48z"/> + </g> +</svg> diff --git a/docbook-xsl-1.76.1/images/caution.tif b/docbook-xsl-1.76.1/images/caution.tif new file mode 100644 index 0000000..4a28294 Binary files /dev/null and b/docbook-xsl-1.76.1/images/caution.tif differ diff --git a/docbook-xsl-1.76.1/images/colorsvg/caution.svg b/docbook-xsl-1.76.1/images/colorsvg/caution.svg new file mode 100644 index 0000000..7a0db0b --- /dev/null +++ b/docbook-xsl-1.76.1/images/colorsvg/caution.svg @@ -0,0 +1,141 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [ + <!ENTITY ns_svg "http://www.w3.org/2000/svg"> + <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> +]> +<svg version="1.1" id="caution" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="48" height="48" viewBox="0 0 48 48" + overflow="visible" enable-background="new 0 0 48 48" xml:space="preserve"> +<g> + <g> + <g> + <path stroke="#FFFFFF" stroke-width="6.6112" d="M41.629,36.303L26.527,10.403c-0.602-1-1.698-1.7-2.898-1.6 + c-1.2,0-2.3,0.7-2.9,1.7l-14.5,25.899c-0.6,1-0.6,2.301,0,3.301s1.7,1.6,2.9,1.6h29.599c1.199,0,2.301-0.6,2.899-1.699 + C42.229,38.604,42.229,37.303,41.629,36.303L41.629,36.303z"/> + <g> + <path fill="#FFFFFF" stroke="#FFCC00" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" d="M23.581,12.003 + l-14.5,26H38.68L23.581,12.003z"/> + <polygon fill="#FFFFFF" stroke="#FFCD00" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 23.582,12.054 9.137,37.953 38.622,37.953 "/> + <polygon fill="#FFFFFF" stroke="#FFCE00" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 23.583,12.104 9.193,37.9 38.566,37.9 "/> + <polygon fill="#FFFFFF" stroke="#FFCF00" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 23.583,12.153 9.25,37.854 38.508,37.854 "/> + <polygon fill="#FFFFFF" stroke="#FFD000" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 23.584,12.205 9.309,37.805 38.451,37.805 "/> + <polygon fill="#FFFFFF" stroke="#FFD100" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 23.585,12.253 9.364,37.753 38.395,37.753 "/> + <polygon fill="#FFFFFF" stroke="#FFD200" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 23.586,12.304 9.421,37.703 38.337,37.703 "/> + <polygon fill="#FFFFFF" stroke="#FFD300" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 23.587,12.354 9.479,37.652 38.279,37.652 "/> + <polygon fill="#FFFFFF" stroke="#FFD400" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 23.588,12.403 9.537,37.604 38.223,37.604 "/> + <polygon fill="#FFFFFF" stroke="#FFD500" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 23.589,12.455 9.591,37.553 38.166,37.553 "/> + <polygon fill="#FFFFFF" stroke="#FFD600" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 23.591,12.503 9.649,37.503 38.109,37.503 "/> + <polygon fill="#FFFFFF" stroke="#FFD700" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 23.591,12.554 9.707,37.453 38.053,37.453 "/> + <polygon fill="#FFFFFF" stroke="#FFD800" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 23.593,12.604 9.764,37.402 37.996,37.402 "/> + <polygon fill="#FFFFFF" stroke="#FFD900" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 23.594,12.653 9.819,37.354 37.939,37.354 "/> + <polygon fill="#FFFFFF" stroke="#FFDA00" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 23.596,12.705 9.876,37.303 37.882,37.303 "/> + <polygon fill="#FFFFFF" stroke="#FFDB00" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 23.597,12.753 9.935,37.253 37.824,37.253 "/> + <polygon fill="#FFFFFF" stroke="#FFDC00" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 23.599,12.804 9.991,37.203 37.768,37.203 "/> + <polygon fill="#FFFFFF" stroke="#FFDD00" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 23.601,12.854 10.047,37.152 37.711,37.152 "/> + <polygon fill="#FFFFFF" stroke="#FFDE00" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 23.602,12.903 10.104,37.104 37.654,37.104 "/> + <polygon fill="#FFFFFF" stroke="#FFDF00" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 23.603,12.955 10.163,37.053 37.598,37.053 "/> + <polygon fill="#FFFFFF" stroke="#FFE000" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 23.604,13.003 10.218,37.003 37.54,37.003 "/> + <polygon fill="#FFFFFF" stroke="#FFE100" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 23.604,13.054 10.275,36.953 37.482,36.953 "/> + <polygon fill="#FFFFFF" stroke="#FFE200" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 23.605,13.104 10.333,36.902 37.427,36.902 "/> + <polygon fill="#FFFFFF" stroke="#FFE300" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 23.606,13.153 10.389,36.854 37.37,36.854 "/> + <polygon fill="#FFFFFF" stroke="#FFE400" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 23.607,13.205 10.445,36.805 37.312,36.805 "/> + <polygon fill="#FFFFFF" stroke="#FFE500" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 23.608,13.253 10.502,36.753 37.256,36.753 "/> + <polygon fill="#FFFFFF" stroke="#FFE600" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 23.609,13.304 10.561,36.703 37.197,36.703 "/> + <polygon fill="#FFFFFF" stroke="#FFE600" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 23.61,13.354 10.617,36.652 37.143,36.652 "/> + <polygon fill="#FFFFFF" stroke="#FFE700" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 23.611,13.403 10.673,36.604 37.085,36.604 "/> + <polygon fill="#FFFFFF" stroke="#FFE800" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 23.613,13.455 10.73,36.553 37.027,36.553 "/> + <polygon fill="#FFFFFF" stroke="#FFE900" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 23.614,13.503 10.789,36.503 36.971,36.503 "/> + <polygon fill="#FFFFFF" stroke="#FFEA00" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 23.616,13.554 10.844,36.453 36.914,36.453 "/> + <polygon fill="#FFFFFF" stroke="#FFEB00" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 23.617,13.604 10.901,36.402 36.857,36.402 "/> + <polygon fill="#FFFFFF" stroke="#FFEC00" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 23.618,13.653 10.958,36.354 36.8,36.354 "/> + <polygon fill="#FFFFFF" stroke="#FFED00" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 23.619,13.705 11.017,36.303 36.742,36.303 "/> + <polygon fill="#FFFFFF" stroke="#FFEE00" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 23.622,13.753 11.071,36.253 36.688,36.253 "/> + <polygon fill="#FFFFFF" stroke="#FFEF00" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 23.623,13.804 11.129,36.203 36.63,36.203 "/> + <polygon fill="#FFFFFF" stroke="#FFF000" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 23.624,13.854 11.188,36.152 36.572,36.152 "/> + <polygon fill="#FFFFFF" stroke="#FFF100" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 23.625,13.903 11.243,36.104 36.516,36.104 "/> + <polygon fill="#FFFFFF" stroke="#FFF200" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 23.625,13.955 11.299,36.053 36.459,36.053 "/> + <polygon fill="#FFFFFF" stroke="#FFF300" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 23.626,14.003 11.356,36.003 36.4,36.003 "/> + <polygon fill="#FFFFFF" stroke="#FFF400" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 23.627,14.054 11.415,35.953 36.346,35.953 "/> + <polygon fill="#FFFFFF" stroke="#FFF500" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 23.628,14.104 11.471,35.902 36.288,35.902 "/> + <polygon fill="#FFFFFF" stroke="#FFF600" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 23.629,14.153 11.527,35.854 36.232,35.854 "/> + <polygon fill="#FFFFFF" stroke="#FFF700" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 23.63,14.205 11.584,35.805 36.174,35.805 "/> + <polygon fill="#FFFFFF" stroke="#FFF800" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 23.631,14.253 11.643,35.753 36.117,35.753 "/> + <polygon fill="#FFFFFF" stroke="#FFF900" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 23.632,14.304 11.699,35.703 36.061,35.703 "/> + <polygon fill="#FFFFFF" stroke="#FFFA00" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 23.633,14.354 11.754,35.652 36.003,35.652 "/> + <polygon fill="#FFFFFF" stroke="#FFFB00" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 23.635,14.403 11.812,35.604 35.945,35.604 "/> + <polygon fill="#FFFFFF" stroke="#FFFC00" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 23.637,14.455 11.869,35.555 35.891,35.555 "/> + <polygon fill="#FFFFFF" stroke="#FFFD00" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 23.638,14.503 11.925,35.503 35.833,35.503 "/> + <polygon fill="#FFFFFF" stroke="#FFFE00" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 23.639,14.554 11.982,35.453 35.775,35.453 "/> + <path fill="#FFFFFF" stroke="#FFFF00" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" d="M23.64,14.604 + l-11.6,20.8h23.678L23.64,14.604z"/> + </g> + </g> + + <linearGradient id="XMLID_50_" gradientUnits="userSpaceOnUse" x1="395.8457" y1="758.1504" x2="395.8457" y2="785.7822" gradientTransform="matrix(1 0 0 1 -372 -747)"> + <stop offset="0" style="stop-color:#FFFFFF"/> + <stop offset="1" style="stop-color:#FFFF00"/> + </linearGradient> + <path fill="url(#XMLID_50_)" d="M38.891,34.532L26.055,12.519c-0.511-0.85-1.443-1.445-2.462-1.36 + c-1.02,0-1.955,0.595-2.465,1.445L8.8,34.617c-0.51,0.851-0.51,1.953,0,2.805c0.51,0.852,1.445,1.36,2.465,1.36h25.158 + c1.021,0,1.956-0.511,2.467-1.445C39.4,36.484,39.4,35.382,38.891,34.532L38.891,34.532z"/> + </g> + <g> + <path d="M23.929,33.948c-1.1,0-1.8-0.8-1.8-1.8c0-1.102,0.7-1.801,1.8-1.801c1.101,0,1.8,0.699,1.8,1.801 + C25.729,33.148,25.029,33.948,23.929,33.948L23.929,33.948z M22.729,29.248l-0.4-9.1h3.2l-0.399,9.1h-2.297H22.729z"/> + </g> +</g> +<g id="crop_x0020_marks"> + <path fill="none" d="M47.93,49.049H-0.071v-48H47.93V49.049z"/> +</g> +</svg> diff --git a/docbook-xsl-1.76.1/images/colorsvg/home.svg b/docbook-xsl-1.76.1/images/colorsvg/home.svg new file mode 100644 index 0000000..d6dbc01 --- /dev/null +++ b/docbook-xsl-1.76.1/images/colorsvg/home.svg @@ -0,0 +1,498 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [ + <!ENTITY ns_svg "http://www.w3.org/2000/svg"> + <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> +]> +<svg version="1.1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="48" height="48" viewBox="0 0 48 48" + overflow="visible" enable-background="new 0 0 48 48" xml:space="preserve"> +<g id="Home"> + <g> + <g id="Chimney"> + <g> + <path fill="#660000" d="M30.417,17.563c2.776,2.348,8.258,0.835,7.742,0.434c0-1.2,0-6.9,0-6.9c0-1.2-0.802-2-2-2h-4.802 + c-1,0-1.698,0.6-1.899,1.5C28.648,9.916,28.359,15.822,30.417,17.563z"/> + <path fill="#670000" d="M30.422,17.556c2.771,2.343,8.244,0.833,7.729,0.433c0-1.199,0-6.889,0-6.889 + c0-1.198-0.799-1.997-1.996-1.997h-4.793c-0.998,0-1.695,0.599-1.896,1.498C28.657,9.921,28.368,15.818,30.422,17.556z"/> + <path fill="#680000" d="M30.428,17.548c2.768,2.34,8.229,0.832,7.717,0.432c0-1.196,0-6.876,0-6.876 + c0-1.196-0.799-1.993-1.994-1.993h-4.783c-0.997,0-1.693,0.598-1.895,1.495C28.665,9.927,28.377,15.813,30.428,17.548z"/> + <path fill="#690000" d="M30.434,17.541c2.762,2.336,8.215,0.831,7.703,0.432c0-1.194,0-6.865,0-6.865 + c0-1.194-0.798-1.989-1.99-1.989H31.37c-0.994,0-1.69,0.596-1.892,1.492C28.674,9.932,28.387,15.809,30.434,17.541z"/> + <path fill="#6B0000" d="M30.438,17.533c2.758,2.332,8.203,0.829,7.69,0.431c0-1.192,0-6.853,0-6.853 + c0-1.192-0.796-1.987-1.987-1.987h-4.768c-0.993,0-1.688,0.596-1.889,1.49C28.682,9.937,28.395,15.804,30.438,17.533z"/> + <path fill="#6C0000" d="M30.443,17.525c2.752,2.328,8.188,0.828,7.677,0.43c0-1.19,0-6.841,0-6.841 + c0-1.19-0.795-1.983-1.983-1.983h-4.76c-0.99,0-1.686,0.595-1.885,1.487C28.689,9.943,28.402,15.799,30.443,17.525z"/> + <path fill="#6D0000" d="M30.448,17.518c2.747,2.323,8.174,0.826,7.663,0.429c0-1.188,0-6.829,0-6.829 + c0-1.188-0.793-1.979-1.979-1.979h-4.751c-0.99,0-1.682,0.593-1.881,1.485C28.698,9.949,28.412,15.795,30.448,17.518z"/> + <path fill="#6E0000" d="M30.454,17.51c2.743,2.32,8.159,0.825,7.649,0.429c0-1.187,0-6.818,0-6.818 + c0-1.186-0.791-1.976-1.977-1.976h-4.744c-0.986,0-1.679,0.592-1.877,1.482C28.707,9.954,28.421,15.791,30.454,17.51z"/> + <path fill="#6F0000" d="M30.46,17.503c2.738,2.315,8.146,0.824,7.636,0.427c0-1.184,0-6.806,0-6.806 + c0-1.184-0.789-1.973-1.972-1.973h-4.735c-0.986,0-1.677,0.592-1.875,1.479C28.715,9.96,28.43,15.786,30.46,17.503z"/> + <path fill="#700000" d="M30.465,17.495c2.733,2.312,8.131,0.822,7.623,0.427c0-1.182,0-6.794,0-6.794 + c0-1.182-0.789-1.969-1.969-1.969h-4.729c-0.983,0-1.673,0.59-1.871,1.477C28.725,9.965,28.438,15.781,30.465,17.495z"/> + <path fill="#720000" d="M30.471,17.487c2.729,2.308,8.116,0.821,7.609,0.426c0-1.18,0-6.782,0-6.782 + c0-1.179-0.787-1.966-1.967-1.966h-4.719c-0.982,0-1.67,0.589-1.867,1.475C28.73,9.97,28.447,15.776,30.471,17.487z"/> + <path fill="#730000" d="M30.477,17.48c2.724,2.304,8.103,0.819,7.597,0.426c0-1.178,0-6.771,0-6.771 + c0-1.177-0.786-1.962-1.962-1.962H31.4c-0.981,0-1.668,0.589-1.865,1.472C28.74,9.976,28.456,15.772,30.477,17.48z"/> + <path fill="#740000" d="M30.48,17.473c2.72,2.299,8.088,0.817,7.584,0.424c0-1.176,0-6.759,0-6.759 + c0-1.175-0.785-1.959-1.959-1.959h-4.703c-0.979,0-1.664,0.587-1.861,1.469C28.748,9.981,28.465,15.767,30.48,17.473z"/> + <path fill="#750000" d="M30.484,17.465c2.717,2.295,8.076,0.816,7.572,0.424c0-1.174,0-6.747,0-6.747 + c0-1.174-0.783-1.956-1.957-1.956h-4.693c-0.979,0-1.661,0.586-1.858,1.467C28.757,9.987,28.475,15.763,30.484,17.465z"/> + <path fill="#760000" d="M30.491,17.458c2.71,2.292,8.061,0.815,7.558,0.423c0-1.172,0-6.735,0-6.735 + c0-1.171-0.781-1.953-1.953-1.953H31.41c-0.977,0-1.658,0.585-1.854,1.465C28.766,9.993,28.482,15.758,30.491,17.458z"/> + <path fill="#770000" d="M30.496,17.45c2.706,2.288,8.047,0.813,7.545,0.422c0-1.17,0-6.724,0-6.724 + c0-1.169-0.781-1.949-1.949-1.949h-4.678c-0.975,0-1.656,0.584-1.854,1.461C28.773,9.998,28.491,15.754,30.496,17.45z"/> + <path fill="#790000" d="M30.502,17.442c2.701,2.284,8.032,0.812,7.531,0.422c0-1.167,0-6.712,0-6.712 + c0-1.167-0.779-1.945-1.945-1.945h-4.671c-0.972,0-1.651,0.583-1.849,1.458C28.781,10.004,28.5,15.749,30.502,17.442z"/> + <path fill="#7A0000" d="M30.507,17.435c2.696,2.28,8.019,0.811,7.519,0.421c0-1.166,0-6.7,0-6.7 + c0-1.166-0.777-1.942-1.942-1.942h-4.661c-0.971,0-1.648,0.583-1.845,1.457C28.79,10.009,28.509,15.745,30.507,17.435z"/> + <path fill="#7B0000" d="M30.514,17.427c2.689,2.276,8.004,0.81,7.504,0.42c0-1.164,0-6.688,0-6.688 + c0-1.163-0.776-1.938-1.938-1.938h-4.653c-0.97,0-1.646,0.582-1.842,1.454C28.798,10.014,28.518,15.74,30.514,17.427z"/> + <path fill="#7C0000" d="M30.518,17.42c2.688,2.271,7.99,0.808,7.491,0.419c0-1.162,0-6.677,0-6.677 + c0-1.161-0.774-1.935-1.935-1.935h-4.646c-0.968,0-1.645,0.58-1.839,1.451C28.807,10.02,28.525,15.736,30.518,17.42z"/> + <path fill="#7D0000" d="M30.521,17.412c2.683,2.268,7.978,0.806,7.479,0.418c0-1.159,0-6.665,0-6.665 + c0-1.159-0.774-1.932-1.933-1.932h-4.637c-0.967,0-1.642,0.58-1.836,1.449C28.814,10.025,28.535,15.73,30.521,17.412z"/> + <path fill="#7E0000" d="M30.527,17.404c2.678,2.264,7.963,0.805,7.466,0.418c0-1.157,0-6.652,0-6.652 + c0-1.158-0.772-1.929-1.929-1.929h-4.629c-0.965,0-1.639,0.578-1.832,1.446C28.823,10.031,28.544,15.726,30.527,17.404z"/> + <path fill="#800000" d="M30.533,17.397c2.673,2.26,7.947,0.804,7.451,0.417c0-1.155,0-6.641,0-6.641 + c0-1.155-0.771-1.925-1.924-1.925h-4.621c-0.963,0-1.635,0.577-1.83,1.443C28.831,10.037,28.553,15.722,30.533,17.397z"/> + <path fill="#810000" d="M30.538,17.39c2.668,2.255,7.935,0.802,7.438,0.417c0-1.153,0-6.629,0-6.629 + c0-1.153-0.77-1.922-1.922-1.922h-4.611c-0.961,0-1.633,0.576-1.826,1.442C28.84,10.042,28.562,15.717,30.538,17.39z"/> + <path fill="#820000" d="M30.544,17.382c2.663,2.252,7.92,0.801,7.427,0.416c0-1.151,0-6.618,0-6.618 + c0-1.151-0.77-1.918-1.92-1.918h-4.604c-0.961,0-1.631,0.575-1.823,1.438C28.85,10.047,28.57,15.713,30.544,17.382z"/> + <path fill="#830000" d="M30.549,17.375c2.659,2.248,7.906,0.799,7.413,0.415c0-1.149,0-6.606,0-6.606 + c0-1.149-0.769-1.915-1.915-1.915H31.45c-0.957,0-1.626,0.574-1.819,1.436C28.855,10.053,28.579,15.708,30.549,17.375z"/> + <path fill="#840000" d="M30.555,17.367c2.653,2.243,7.893,0.797,7.399,0.414c0-1.147,0-6.594,0-6.594 + c0-1.147-0.767-1.911-1.912-1.911h-4.588c-0.955,0-1.623,0.573-1.815,1.434C28.865,10.059,28.588,15.704,30.555,17.367z"/> + <path fill="#850000" d="M30.561,17.359c2.648,2.24,7.877,0.797,7.387,0.414c0-1.145,0-6.583,0-6.583 + c0-1.145-0.766-1.908-1.908-1.908h-4.58c-0.954,0-1.621,0.572-1.812,1.431C28.873,10.064,28.598,15.699,30.561,17.359z"/> + <path fill="#860000" d="M30.564,17.352c2.645,2.235,7.863,0.795,7.373,0.413c0-1.143,0-6.57,0-6.57 + c0-1.143-0.764-1.905-1.904-1.905h-4.571c-0.953,0-1.618,0.571-1.81,1.428C28.882,10.069,28.605,15.694,30.564,17.352z"/> + <path fill="#880000" d="M30.57,17.344c2.64,2.232,7.85,0.794,7.359,0.412c0-1.141,0-6.559,0-6.559 + c0-1.141-0.762-1.901-1.902-1.901h-4.562c-0.949,0-1.613,0.57-1.806,1.426C28.891,10.075,28.613,15.689,30.57,17.344z"/> + <path fill="#890000" d="M30.576,17.337c2.634,2.228,7.835,0.792,7.346,0.411c0-1.139,0-6.547,0-6.547 + c0-1.139-0.76-1.898-1.896-1.898h-4.557c-0.947,0-1.611,0.569-1.803,1.423C28.898,10.08,28.623,15.685,30.576,17.337z"/> + <path fill="#8A0000" d="M30.581,17.33c2.63,2.223,7.821,0.79,7.333,0.41c0-1.137,0-6.535,0-6.535 + c0-1.137-0.76-1.894-1.895-1.894h-4.547c-0.947,0-1.609,0.567-1.801,1.421C28.906,10.086,28.632,15.681,30.581,17.33z"/> + <path fill="#8B0000" d="M30.587,17.321c2.625,2.22,7.808,0.79,7.319,0.41c0-1.135,0-6.523,0-6.523 + c0-1.135-0.758-1.891-1.891-1.891h-4.539c-0.945,0-1.606,0.567-1.797,1.418C28.915,10.091,28.641,15.676,30.587,17.321z"/> + <path fill="#8C0000" d="M30.592,17.314c2.62,2.216,7.793,0.788,7.307,0.409c0-1.132,0-6.512,0-6.512 + c0-1.132-0.756-1.887-1.887-1.887H31.48c-0.943,0-1.604,0.566-1.793,1.416C28.923,10.097,28.648,15.671,30.592,17.314z"/> + <path fill="#8D0000" d="M30.598,17.307c2.614,2.211,7.778,0.787,7.293,0.409c0-1.131,0-6.5,0-6.5 + c0-1.13-0.754-1.884-1.884-1.884h-4.522c-0.941,0-1.601,0.564-1.791,1.413C28.932,10.103,28.658,15.667,30.598,17.307z"/> + <path fill="#8F0000" d="M30.604,17.299c2.609,2.208,7.765,0.785,7.279,0.408c0-1.128,0-6.488,0-6.488 + c0-1.128-0.753-1.881-1.881-1.881h-4.516c-0.939,0-1.598,0.564-1.786,1.411C28.939,10.107,28.668,15.662,30.604,17.299z"/> + <path fill="#900000" d="M30.607,17.292c2.605,2.204,7.75,0.784,7.268,0.407c0-1.127,0-6.477,0-6.477 + c0-1.127-0.753-1.877-1.878-1.877h-4.506c-0.938,0-1.595,0.563-1.783,1.408C28.948,10.113,28.676,15.658,30.607,17.292z"/> + <path fill="#910000" d="M30.611,17.284c2.604,2.199,7.738,0.782,7.256,0.406c0-1.124,0-6.464,0-6.464 + c0-1.125-0.751-1.874-1.874-1.874h-4.498c-0.938,0-1.593,0.562-1.781,1.405C28.956,10.119,28.686,15.653,30.611,17.284z"/> + <path fill="#920000" d="M30.618,17.276c2.597,2.196,7.723,0.781,7.241,0.406c0-1.123,0-6.453,0-6.453 + c0-1.123-0.75-1.871-1.871-1.871h-4.49c-0.936,0-1.588,0.561-1.775,1.403C28.965,10.124,28.693,15.649,30.618,17.276z"/> + <path fill="#930000" d="M30.623,17.269c2.592,2.191,7.709,0.779,7.229,0.404c0-1.12,0-6.441,0-6.441 + c0-1.121-0.748-1.867-1.867-1.867h-4.481c-0.935,0-1.586,0.56-1.772,1.4C28.973,10.13,28.703,15.644,30.623,17.269z"/> + <path fill="#940000" d="M30.629,17.261c2.587,2.188,7.694,0.778,7.214,0.404c0-1.119,0-6.43,0-6.43 + c0-1.119-0.745-1.863-1.862-1.863h-4.475c-0.932,0-1.583,0.559-1.771,1.397C28.98,10.135,28.711,15.64,30.629,17.261z"/> + <path fill="#960000" d="M30.634,17.254c2.583,2.184,7.681,0.776,7.201,0.403c0-1.116,0-6.417,0-6.417 + c0-1.116-0.745-1.86-1.86-1.86H31.51c-0.93,0-1.58,0.558-1.768,1.395C28.988,10.141,28.721,15.635,30.634,17.254z"/> + <path fill="#970000" d="M30.641,17.247c2.576,2.179,7.666,0.775,7.188,0.402c0-1.115,0-6.406,0-6.406 + c0-1.114-0.744-1.856-1.855-1.856h-4.459c-0.928,0-1.576,0.557-1.764,1.393C28.998,10.146,28.729,15.63,30.641,17.247z"/> + <path fill="#980000" d="M30.645,17.239c2.573,2.176,7.652,0.774,7.176,0.401c0-1.112,0-6.394,0-6.394 + c0-1.112-0.742-1.853-1.854-1.853h-4.448c-0.928,0-1.574,0.556-1.762,1.39C29.006,10.151,28.738,15.625,30.645,17.239z"/> + <path fill="#990000" d="M30.65,17.231c2.567,2.172,7.638,0.772,7.16,0.401c0-1.11,0-6.383,0-6.383c0-1.11-0.74-1.85-1.85-1.85 + H31.52c-0.924,0-1.57,0.555-1.758,1.387C29.016,10.157,28.747,15.621,30.65,17.231z"/> + <path fill="#9A0000" d="M30.654,17.224c2.563,2.167,7.625,0.771,7.148,0.4c0-1.108,0-6.371,0-6.371 + c0-1.108-0.74-1.846-1.847-1.846h-4.433c-0.924,0-1.568,0.554-1.756,1.385C29.021,10.163,28.755,15.616,30.654,17.224z"/> + <path fill="#9B0000" d="M30.66,17.216c2.561,2.164,7.609,0.769,7.136,0.399c0-1.106,0-6.359,0-6.359 + c0-1.106-0.737-1.843-1.844-1.843h-4.425c-0.922,0-1.564,0.553-1.752,1.382C29.031,10.168,28.766,15.612,30.66,17.216z"/> + <path fill="#9C0000" d="M30.666,17.209c2.555,2.16,7.596,0.768,7.122,0.399c0-1.104,0-6.347,0-6.347 + c0-1.104-0.737-1.84-1.84-1.84h-4.417c-0.92,0-1.562,0.552-1.748,1.38C29.039,10.174,28.771,15.607,30.666,17.209z"/> + <path fill="#9E0000" d="M30.671,17.201c2.55,2.155,7.582,0.767,7.108,0.398c0-1.102,0-6.335,0-6.335 + c0-1.102-0.735-1.836-1.836-1.836h-4.408c-0.918,0-1.561,0.551-1.745,1.377C29.048,10.179,28.782,15.603,30.671,17.201z"/> + <path fill="#9F0000" d="M30.677,17.193c2.544,2.152,7.567,0.765,7.097,0.397c0-1.1,0-6.324,0-6.324 + c0-1.1-0.735-1.833-1.834-1.833H31.54c-0.916,0-1.558,0.549-1.741,1.375C29.057,10.185,28.79,15.598,30.677,17.193z"/> + <path fill="#A00000" d="M30.682,17.186c2.541,2.147,7.555,0.764,7.082,0.396c0-1.098,0-6.312,0-6.312 + c0-1.098-0.731-1.829-1.828-1.829h-4.393c-0.915,0-1.555,0.548-1.738,1.372C29.064,10.19,28.8,15.594,30.682,17.186z"/> + <path fill="#A10000" d="M30.688,17.178c2.535,2.144,7.539,0.763,7.068,0.396c0-1.096,0-6.3,0-6.3 + c0-1.096-0.73-1.826-1.826-1.826h-4.384c-0.912,0-1.551,0.547-1.733,1.37C29.072,10.196,28.809,15.589,30.688,17.178z"/> + <path fill="#A20000" d="M30.691,17.171c2.531,2.14,7.525,0.761,7.057,0.395c0-1.094,0-6.289,0-6.289 + c0-1.093-0.73-1.822-1.822-1.822H31.55c-0.911,0-1.548,0.546-1.731,1.367C29.081,10.201,28.816,15.584,30.691,17.171z"/> + <path fill="#A30000" d="M30.697,17.163c2.525,2.136,7.512,0.76,7.043,0.395c0-1.092,0-6.277,0-6.277 + c0-1.091-0.729-1.819-1.819-1.819h-4.366c-0.91,0-1.546,0.545-1.729,1.365C29.089,10.207,28.825,15.58,30.697,17.163z"/> + <path fill="#A50000" d="M30.703,17.156c2.521,2.132,7.497,0.758,7.029,0.394c0-1.09,0-6.265,0-6.265 + c0-1.09-0.729-1.816-1.815-1.816h-4.358c-0.908,0-1.543,0.544-1.727,1.362C29.098,10.212,28.835,15.575,30.703,17.156z"/> + <path fill="#A60000" d="M30.708,17.148c2.517,2.127,7.483,0.756,7.017,0.393c0-1.087,0-6.253,0-6.253 + c0-1.088-0.727-1.812-1.812-1.812h-4.351c-0.906,0-1.541,0.543-1.724,1.359C29.105,10.218,28.844,15.571,30.708,17.148z"/> + <path fill="#A70000" d="M30.714,17.141c2.511,2.124,7.47,0.755,7.003,0.392c0-1.086,0-6.241,0-6.241 + c0-1.085-0.725-1.809-1.81-1.809h-4.343c-0.904,0-1.537,0.542-1.719,1.357C29.113,10.223,28.854,15.566,30.714,17.141z"/> + <path fill="#A80000" d="M30.719,17.133c2.508,2.12,7.455,0.753,6.99,0.391c0-1.083,0-6.229,0-6.229 + c0-1.083-0.725-1.806-1.807-1.806h-4.334c-0.902,0-1.533,0.542-1.717,1.354C29.122,10.229,28.861,15.562,30.719,17.133z"/> + <path fill="#A90000" d="M30.725,17.125c2.502,2.116,7.44,0.752,6.978,0.391c0-1.082,0-6.218,0-6.218 + c0-1.081-0.724-1.802-1.804-1.802h-4.325c-0.901,0-1.53,0.54-1.714,1.352C29.131,10.234,28.87,15.557,30.725,17.125z"/> + <path fill="#AA0000" d="M30.729,17.118c2.498,2.111,7.428,0.75,6.965,0.39c0-1.08,0-6.206,0-6.206 + c0-1.079-0.721-1.798-1.799-1.798h-4.318c-0.899,0-1.528,0.539-1.71,1.349C29.139,10.24,28.879,15.552,30.729,17.118z"/> + <path fill="#AC0000" d="M30.734,17.11c2.492,2.108,7.412,0.75,6.951,0.389c0-1.078,0-6.194,0-6.194 + c0-1.077-0.721-1.795-1.797-1.795h-4.311c-0.896,0-1.523,0.538-1.705,1.346C29.146,10.245,28.889,15.548,30.734,17.11z"/> + <path fill="#AD0000" d="M30.74,17.103c2.486,2.104,7.398,0.748,6.937,0.389c0-1.076,0-6.183,0-6.183 + c0-1.075-0.718-1.792-1.792-1.792h-4.302c-0.896,0-1.521,0.537-1.702,1.344C29.154,10.251,28.896,15.543,30.74,17.103z"/> + <path fill="#AE0000" d="M30.745,17.096c2.483,2.1,7.385,0.746,6.924,0.388c0-1.074,0-6.171,0-6.171 + c0-1.073-0.717-1.789-1.788-1.789h-4.294c-0.896,0-1.519,0.537-1.698,1.341C29.164,10.256,28.904,15.539,30.745,17.096z"/> + <path fill="#AF0000" d="M30.751,17.088c2.478,2.096,7.37,0.745,6.91,0.387c0-1.072,0-6.159,0-6.159 + c0-1.071-0.716-1.785-1.785-1.785h-4.285c-0.893,0-1.517,0.535-1.696,1.339C29.172,10.262,28.914,15.534,30.751,17.088z"/> + <path fill="#B00000" d="M30.756,17.08c2.475,2.092,7.355,0.744,6.896,0.387c0-1.07,0-6.147,0-6.147 + c0-1.069-0.713-1.782-1.781-1.782h-4.277c-0.891,0-1.513,0.535-1.691,1.336C29.182,10.267,28.923,15.53,30.756,17.08z"/> + <path fill="#B10000" d="M30.762,17.073c2.469,2.088,7.342,0.743,6.885,0.386c0-1.067,0-6.136,0-6.136 + c0-1.067-0.713-1.778-1.778-1.778h-4.271c-0.889,0-1.51,0.533-1.688,1.334C29.188,10.272,28.932,15.525,30.762,17.073z"/> + <path fill="#B30000" d="M30.768,17.065c2.463,2.083,7.328,0.741,6.871,0.385c0-1.065,0-6.124,0-6.124 + c0-1.065-0.712-1.775-1.775-1.775h-4.262c-0.887,0-1.506,0.532-1.687,1.332C29.197,10.278,28.939,15.521,30.768,17.065z"/> + <path fill="#B40000" d="M30.771,17.058c2.459,2.08,7.313,0.74,6.857,0.384c0-1.063,0-6.112,0-6.112 + c0-1.063-0.71-1.771-1.771-1.771h-4.252c-0.887,0-1.506,0.531-1.685,1.329C29.205,10.284,28.949,15.516,30.771,17.058z"/> + <path fill="#B50000" d="M30.777,17.05c2.453,2.076,7.3,0.738,6.845,0.383c0-1.062,0-6.101,0-6.101 + c0-1.061-0.709-1.768-1.769-1.768h-4.244c-0.885,0-1.502,0.53-1.682,1.326C29.214,10.289,28.958,15.511,30.777,17.05z"/> + <path fill="#B60000" d="M30.782,17.043c2.45,2.071,7.286,0.736,6.831,0.382c0-1.059,0-6.088,0-6.088 + c0-1.059-0.707-1.765-1.766-1.765h-4.236c-0.881,0-1.498,0.529-1.676,1.323C29.223,10.294,28.967,15.507,30.782,17.043z"/> + <path fill="#B70000" d="M30.787,17.035c2.445,2.067,7.271,0.735,6.818,0.382c0-1.057,0-6.077,0-6.077 + c0-1.057-0.705-1.761-1.762-1.761h-4.229c-0.881,0-1.495,0.528-1.674,1.321C29.23,10.3,28.977,15.502,30.787,17.035z"/> + <path fill="#B80000" d="M30.793,17.028c2.439,2.063,7.258,0.733,6.807,0.381c0-1.055,0-6.065,0-6.065 + c0-1.055-0.705-1.758-1.76-1.758h-4.22c-0.879,0-1.493,0.527-1.67,1.318C29.238,10.306,28.984,15.498,30.793,17.028z"/> + <path fill="#B90000" d="M30.798,17.02c2.437,2.06,7.244,0.732,6.792,0.38c0-1.053,0-6.053,0-6.053 + c0-1.053-0.703-1.754-1.754-1.754h-4.212c-0.877,0-1.49,0.526-1.667,1.316C29.247,10.311,28.993,15.493,30.798,17.02z"/> + <path fill="#BB0000" d="M30.805,17.013c2.43,2.056,7.229,0.731,6.777,0.379c0-1.051,0-6.042,0-6.042 + c0-1.051-0.701-1.751-1.751-1.751h-4.204c-0.875,0-1.486,0.525-1.663,1.313C29.255,10.316,29.002,15.488,30.805,17.013z"/> + <path fill="#BC0000" d="M30.809,17.005c2.428,2.052,7.217,0.729,6.767,0.379c0-1.049,0-6.03,0-6.03 + c0-1.048-0.7-1.748-1.748-1.748h-4.195c-0.873,0-1.483,0.524-1.659,1.311C29.264,10.322,29.012,15.484,30.809,17.005z"/> + <path fill="#BD0000" d="M30.814,16.998c2.42,2.047,7.201,0.728,6.752,0.378c0-1.047,0-6.018,0-6.018 + c0-1.046-0.699-1.744-1.744-1.744h-4.188c-0.872,0-1.481,0.523-1.657,1.309C29.271,10.328,29.02,15.48,30.814,16.998z"/> + <path fill="#BE0000" d="M30.818,16.99c2.418,2.044,7.188,0.727,6.74,0.377c0-1.045,0-6.006,0-6.006 + c0-1.044-0.699-1.74-1.742-1.74h-4.178c-0.871,0-1.479,0.522-1.654,1.305C29.279,10.333,29.027,15.475,30.818,16.99z"/> + <path fill="#BF0000" d="M30.824,16.982c2.412,2.04,7.174,0.725,6.727,0.376c0-1.043,0-5.994,0-5.994 + c0-1.043-0.695-1.737-1.736-1.737h-4.172c-0.869,0-1.476,0.521-1.65,1.303C29.288,10.338,29.037,15.47,30.824,16.982z"/> + <path fill="#C00000" d="M30.83,16.975c2.406,2.036,7.158,0.724,6.713,0.376c0-1.041,0-5.982,0-5.982 + c0-1.041-0.695-1.734-1.734-1.734h-4.162c-0.867,0-1.473,0.52-1.647,1.3C29.297,10.344,29.046,15.466,30.83,16.975z"/> + <path fill="#C20000" d="M30.835,16.967c2.403,2.032,7.146,0.722,6.7,0.375c0-1.039,0-5.971,0-5.971 + c0-1.039-0.694-1.73-1.73-1.73H31.65c-0.865,0-1.471,0.519-1.646,1.298C29.305,10.35,29.055,15.461,30.835,16.967z"/> + <path fill="#C30000" d="M30.841,16.96c2.397,2.027,7.132,0.721,6.687,0.375c0-1.037,0-5.959,0-5.959 + c0-1.037-0.691-1.727-1.728-1.727h-4.146c-0.863,0-1.467,0.518-1.643,1.295C29.312,10.355,29.062,15.457,30.841,16.96z"/> + <path fill="#C40000" d="M30.846,16.952c2.395,2.023,7.117,0.72,6.674,0.374c0-1.035,0-5.948,0-5.948 + c0-1.034-0.69-1.724-1.725-1.724h-4.138c-0.862,0-1.464,0.517-1.64,1.293C29.32,10.36,29.072,15.452,30.846,16.952z"/> + <path fill="#C50000" d="M30.852,16.945c2.39,2.02,7.104,0.718,6.66,0.373c0-1.033,0-5.936,0-5.936 + c0-1.032-0.689-1.72-1.721-1.72H31.66c-0.859,0-1.46,0.516-1.635,1.291C29.33,10.366,29.081,15.447,30.852,16.945z"/> + <path fill="#C60000" d="M30.855,16.937c2.385,2.016,7.09,0.717,6.646,0.373c0-1.031,0-5.924,0-5.924 + c0-1.03-0.688-1.717-1.717-1.717h-4.122c-0.858,0-1.458,0.515-1.631,1.288C29.338,10.372,29.09,15.443,30.855,16.937z"/> + <path fill="#C70000" d="M30.861,16.93c2.38,2.012,7.074,0.715,6.634,0.372c0-1.029,0-5.913,0-5.913 + c0-1.028-0.687-1.713-1.714-1.713h-4.113c-0.855,0-1.455,0.514-1.628,1.285C29.348,10.377,29.1,15.438,30.861,16.93z"/> + <path fill="#C90000" d="M30.867,16.922c2.374,2.008,7.061,0.714,6.619,0.371c0-1.027,0-5.9,0-5.9c0-1.026-0.686-1.71-1.709-1.71 + h-4.105c-0.855,0-1.451,0.513-1.625,1.282C29.354,10.382,29.107,15.434,30.867,16.922z"/> + <path fill="#CA0000" d="M30.872,16.915c2.37,2.003,7.047,0.712,6.606,0.37c0-1.024,0-5.889,0-5.889 + c0-1.024-0.685-1.707-1.707-1.707h-4.098c-0.854,0-1.447,0.512-1.621,1.28C29.363,10.388,29.116,15.429,30.872,16.915z"/> + <path fill="#CB0000" d="M30.878,16.907c2.364,2,7.032,0.711,6.595,0.37c0-1.022,0-5.877,0-5.877 + c0-1.022-0.684-1.703-1.703-1.703h-4.09c-0.853,0-1.447,0.511-1.619,1.277C29.371,10.394,29.125,15.424,30.878,16.907z"/> + <path fill="#CC0000" d="M30.883,16.899c2.36,1.996,7.02,0.709,6.581,0.369c0-1.021,0-5.865,0-5.865c0-1.02-0.682-1.7-1.7-1.7 + h-4.08c-0.851,0-1.443,0.51-1.615,1.275C29.38,10.399,29.134,15.42,30.883,16.899z"/> + </g> + + <linearGradient id="Chimney_Highlight_1_" gradientUnits="userSpaceOnUse" x1="219.5195" y1="-239.7031" x2="219.5195" y2="-247.9902" gradientTransform="matrix(1 0 0 -1 -186 -230)"> + <stop offset="0" style="stop-color:#FFFFFF"/> + <stop offset="1" style="stop-color:#CC0000"/> + </linearGradient> + <path id="Chimney_Highlight" fill="url(#Chimney_Highlight_1_)" d="M30.883,16.899c2.36,1.996,7.02,0.709,6.581,0.369 + c0-1.021,0-5.865,0-5.865c0-1.02-0.682-1.7-1.7-1.7h-4.08c-0.851,0-1.443,0.51-1.615,1.275 + C29.38,10.399,29.134,15.42,30.883,16.899z"/> + </g> + <g id="House"> + <g> + <path fill="#FFCC00" d="M8.5,24.788c0,2.4,0,14.2,0,14.2c0,1.101,0.8,1.9,1.8,1.9h27.4c1.1,0,1.899-0.9,1.899-2 + c0,0,0-11.8,0-14.2C40.6,24.688,7.4,24.788,8.5,24.788z"/> + <path fill="#FFCD00" d="M8.545,24.812c0,2.395,0,14.159,0,14.159c0,1.097,0.798,1.895,1.794,1.895h27.322 + c1.097,0,1.894-0.897,1.894-1.993c0,0,0-11.767,0-14.16C40.552,24.711,7.448,24.812,8.545,24.812z"/> + <path fill="#FFCE00" d="M8.589,24.835c0,2.387,0,14.119,0,14.119c0,1.094,0.795,1.889,1.79,1.889h27.242 + c1.094,0,1.889-0.896,1.889-1.988c0,0,0-11.73,0-14.118C40.504,24.735,7.496,24.835,8.589,24.835z"/> + <path fill="#FFCF00" d="M8.634,24.857c0,2.38,0,14.077,0,14.077c0,1.091,0.793,1.884,1.785,1.884h27.163 + c1.09,0,1.883-0.894,1.883-1.981c0,0,0-11.698,0-14.078C40.456,24.758,7.543,24.857,8.634,24.857z"/> + <path fill="#FFD000" d="M8.68,24.88c0,2.373,0,14.037,0,14.037c0,1.088,0.791,1.879,1.779,1.879h27.084 + c1.087,0,1.877-0.892,1.877-1.979c0,0,0-11.663,0-14.036C40.409,24.782,7.592,24.88,8.68,24.88z"/> + <path fill="#FFD100" d="M8.725,24.903c0,2.366,0,13.995,0,13.995c0,1.085,0.788,1.874,1.773,1.874h27.006 + c1.083,0,1.872-0.889,1.872-1.973c0,0,0-11.629,0-13.994C40.361,24.806,7.64,24.903,8.725,24.903z"/> + <path fill="#FFD200" d="M8.769,24.925c0,2.359,0,13.955,0,13.955c0,1.082,0.786,1.867,1.769,1.867h26.926 + c1.081,0,1.866-0.884,1.866-1.965c0,0,0-11.596,0-13.953C40.312,24.829,7.688,24.925,8.769,24.925z"/> + <path fill="#FFD300" d="M8.814,24.949c0,2.354,0,13.914,0,13.914c0,1.078,0.784,1.861,1.763,1.861h26.848 + c1.077,0,1.86-0.882,1.86-1.959c0,0,0-11.562,0-13.914C40.266,24.852,7.736,24.949,8.814,24.949z"/> + <path fill="#FFD400" d="M8.858,24.973c0,2.345,0,13.872,0,13.872c0,1.074,0.781,1.855,1.758,1.855h26.768 + c1.074,0,1.854-0.88,1.854-1.953c0,0,0-11.526,0-13.873C40.217,24.876,7.784,24.973,8.858,24.973z"/> + <path fill="#FFD500" d="M8.903,24.997c0,2.338,0,13.83,0,13.83c0,1.072,0.779,1.853,1.753,1.853h26.689 + c1.07,0,1.85-0.877,1.85-1.948c0,0,0-11.493,0-13.832C40.17,24.898,7.832,24.997,8.903,24.997z"/> + <path fill="#FFD600" d="M8.949,25.019c0,2.331,0,13.791,0,13.791c0,1.068,0.777,1.846,1.748,1.846h26.61 + c1.067,0,1.846-0.875,1.846-1.941c0,0,0-11.459,0-13.791C40.122,24.921,7.88,25.019,8.949,25.019z"/> + <path fill="#FFD700" d="M8.993,25.042c0,2.324,0,13.75,0,13.75c0,1.064,0.774,1.84,1.743,1.84h26.532 + c1.064,0,1.838-0.871,1.838-1.937c0,0,0-11.426,0-13.75C40.074,24.945,7.928,25.042,8.993,25.042z"/> + <path fill="#FFD800" d="M9.039,25.065c0,2.316,0,13.708,0,13.708c0,1.063,0.772,1.835,1.737,1.835h26.453 + c1.062,0,1.834-0.869,1.834-1.931c0,0,0-11.392,0-13.71C40.027,24.968,7.977,25.065,9.039,25.065z"/> + <path fill="#FFD900" d="M9.083,25.087c0,2.312,0,13.668,0,13.668c0,1.061,0.77,1.83,1.732,1.83h26.373 + c1.06,0,1.828-0.867,1.828-1.926c0,0,0-11.356,0-13.668C39.979,24.993,8.024,25.087,9.083,25.087z"/> + <path fill="#FFDA00" d="M9.128,25.111c0,2.304,0,13.626,0,13.626c0,1.057,0.767,1.824,1.727,1.824h26.293 + c1.056,0,1.822-0.864,1.822-1.919c0,0,0-11.323,0-13.627C39.932,25.016,8.072,25.111,9.128,25.111z"/> + <path fill="#FFDB00" d="M9.172,25.134c0,2.297,0,13.586,0,13.586c0,1.053,0.766,1.818,1.722,1.818h26.215 + c1.052,0,1.816-0.861,1.816-1.914c0,0,0-11.289,0-13.586C39.884,25.04,8.12,25.134,9.172,25.134z"/> + <path fill="#FFDC00" d="M9.217,25.157c0,2.29,0,13.545,0,13.545c0,1.051,0.763,1.812,1.717,1.812H37.07 + c1.049,0,1.812-0.858,1.812-1.907c0,0,0-11.256,0-13.545C39.836,25.062,8.168,25.157,9.217,25.157z"/> + <path fill="#FFDD00" d="M9.263,25.18c0,2.282,0,13.505,0,13.505c0,1.046,0.76,1.807,1.711,1.807h26.055 + c1.047,0,1.808-0.855,1.808-1.902c0,0,0-11.221,0-13.502C39.788,25.085,8.216,25.18,9.263,25.18z"/> + <path fill="#FFDE00" d="M9.307,25.204c0,2.275,0,13.463,0,13.463c0,1.043,0.758,1.801,1.707,1.801h25.978 + c1.043,0,1.801-0.854,1.801-1.896c0,0,0-11.188,0-13.463C39.74,25.109,8.265,25.204,9.307,25.204z"/> + <path fill="#FFDF00" d="M9.352,25.226c0,2.27,0,13.423,0,13.423c0,1.04,0.756,1.796,1.701,1.796h25.899 + c1.039,0,1.795-0.852,1.795-1.89c0,0,0-11.153,0-13.423C39.691,25.132,8.312,25.226,9.352,25.226z"/> + <path fill="#FFE000" d="M9.397,25.251c0,2.262,0,13.379,0,13.379c0,1.037,0.753,1.791,1.696,1.791h25.819 + c1.036,0,1.79-0.849,1.79-1.883c0,0,0-11.119,0-13.383C39.645,25.155,8.36,25.251,9.397,25.251z"/> + <path fill="#FFE100" d="M9.442,25.272c0,2.255,0,13.34,0,13.34c0,1.034,0.751,1.785,1.691,1.785h25.74 + c1.033,0,1.784-0.846,1.784-1.879c0,0,0-11.084,0-13.34C39.598,25.179,8.408,25.272,9.442,25.272z"/> + <path fill="#FFE200" d="M9.486,25.296c0,2.248,0,13.299,0,13.299c0,1.029,0.749,1.779,1.686,1.779h25.662 + c1.029,0,1.777-0.844,1.777-1.873c0,0,0-11.051,0-13.299C39.549,25.202,8.457,25.296,9.486,25.296z"/> + <path fill="#FFE300" d="M9.532,25.318c0,2.241,0,13.259,0,13.259c0,1.027,0.747,1.773,1.68,1.773h25.583 + c1.025,0,1.771-0.84,1.771-1.866c0,0,0-11.017,0-13.259C39.502,25.226,8.504,25.318,9.532,25.318z"/> + <path fill="#FFE400" d="M9.577,25.341c0,2.234,0,13.218,0,13.218c0,1.024,0.744,1.769,1.675,1.769h25.503 + c1.022,0,1.769-0.838,1.769-1.859c0,0,0-10.983,0-13.219C39.454,25.249,8.553,25.341,9.577,25.341z"/> + <path fill="#FFE500" d="M9.621,25.364c0,2.229,0,13.178,0,13.178c0,1.021,0.742,1.763,1.67,1.763h25.424 + c1.02,0,1.764-0.835,1.764-1.855c0,0,0-10.948,0-13.176C39.406,25.272,8.601,25.364,9.621,25.364z"/> + <path fill="#FFE600" d="M9.666,25.388c0,2.221,0,13.135,0,13.135c0,1.02,0.74,1.758,1.665,1.758h25.345 + c1.018,0,1.758-0.832,1.758-1.85c0,0,0-10.914,0-13.135C39.357,25.296,8.648,25.388,9.666,25.388z"/> + <path fill="#FFE600" d="M9.711,25.411c0,2.215,0,13.094,0,13.094c0,1.016,0.737,1.754,1.66,1.754h25.266 + c1.016,0,1.752-0.83,1.752-1.846c0,0,0-10.879,0-13.094C39.311,25.319,8.696,25.411,9.711,25.411z"/> + <path fill="#FFE700" d="M9.756,25.434c0,2.207,0,13.054,0,13.054c0,1.012,0.735,1.747,1.654,1.747h25.188 + c1.012,0,1.746-0.827,1.746-1.839c0,0,0-10.846,0-13.053C39.264,25.343,8.745,25.434,9.756,25.434z"/> + <path fill="#FFE800" d="M9.801,25.458c0,2.199,0,13.013,0,13.013c0,1.008,0.732,1.741,1.649,1.741h25.108 + c1.008,0,1.74-0.825,1.74-1.834c0,0,0-10.812,0-13.012C39.215,25.366,8.792,25.458,9.801,25.458z"/> + <path fill="#FFE900" d="M9.845,25.48c0,2.192,0,12.972,0,12.972c0,1.006,0.73,1.735,1.644,1.735h25.029 + c1.006,0,1.735-0.822,1.735-1.827c0,0,0-10.777,0-12.971C39.167,25.39,8.84,25.48,9.845,25.48z"/> + <path fill="#FFEA00" d="M9.89,25.503c0,2.187,0,12.931,0,12.931c0,1.002,0.729,1.729,1.639,1.729h24.95 + c1.002,0,1.729-0.818,1.729-1.82c0,0,0-10.744,0-12.93C39.12,25.413,8.889,25.503,9.89,25.503z"/> + <path fill="#FFEB00" d="M9.935,25.526c0,2.18,0,12.891,0,12.891c0,0.998,0.726,1.725,1.634,1.725h24.871 + c1,0,1.726-0.817,1.726-1.814c0,0,0-10.711,0-12.89C39.072,25.437,8.937,25.526,9.935,25.526z"/> + <path fill="#FFEC00" d="M9.98,25.548c0,2.174,0,12.85,0,12.85c0,0.996,0.724,1.721,1.628,1.721H36.4 + c0.994,0,1.719-0.814,1.719-1.811c0,0,0-10.676,0-12.85C39.023,25.46,8.985,25.548,9.98,25.548z"/> + <path fill="#FFED00" d="M10.025,25.572c0,2.165,0,12.808,0,12.808c0,0.992,0.721,1.715,1.623,1.715h24.713 + c0.99,0,1.713-0.812,1.713-1.805c0,0,0-10.642,0-12.808C38.977,25.482,9.033,25.572,10.025,25.572z"/> + <path fill="#FFEE00" d="M10.07,25.595c0,2.158,0,12.768,0,12.768c0,0.989,0.719,1.708,1.618,1.708h24.635 + c0.987,0,1.706-0.809,1.706-1.798c0,0,0-10.607,0-12.768C38.93,25.505,9.081,25.595,10.07,25.595z"/> + <path fill="#FFEF00" d="M10.114,25.618c0,2.151,0,12.727,0,12.727c0,0.986,0.717,1.703,1.613,1.703h24.555 + c0.985,0,1.702-0.808,1.702-1.793c0,0,0-10.573,0-12.726C38.881,25.529,9.129,25.618,10.114,25.618z"/> + <path fill="#FFF000" d="M10.159,25.642c0,2.145,0,12.686,0,12.686c0,0.982,0.714,1.696,1.608,1.696h24.476 + c0.981,0,1.696-0.804,1.696-1.786c0,0,0-10.54,0-12.685C38.833,25.553,9.177,25.642,10.159,25.642z"/> + <path fill="#FFF100" d="M10.204,25.665c0,2.138,0,12.644,0,12.644c0,0.979,0.712,1.692,1.603,1.692h24.397 + c0.979,0,1.69-0.802,1.69-1.78c0,0,0-10.507,0-12.644C38.785,25.577,9.225,25.665,10.204,25.665z"/> + <path fill="#FFF200" d="M10.249,25.688c0,2.131,0,12.603,0,12.603c0,0.978,0.71,1.688,1.597,1.688h24.318 + c0.977,0,1.686-0.799,1.686-1.773c0,0,0-10.473,0-12.604C38.736,25.6,9.273,25.688,10.249,25.688z"/> + <path fill="#FFF300" d="M10.294,25.71c0,2.125,0,12.562,0,12.562c0,0.975,0.708,1.682,1.592,1.682h24.239 + c0.973,0,1.68-0.797,1.68-1.77c0,0,0-10.438,0-12.562C38.689,25.624,9.321,25.71,10.294,25.71z"/> + <path fill="#FFF400" d="M10.339,25.733c0,2.117,0,12.521,0,12.521c0,0.97,0.705,1.675,1.587,1.675h24.16 + c0.969,0,1.674-0.793,1.674-1.763c0,0,0-10.403,0-12.521C38.643,25.646,9.369,25.733,10.339,25.733z"/> + <path fill="#FFF500" d="M10.384,25.757c0,2.109,0,12.479,0,12.479c0,0.969,0.703,1.67,1.582,1.67h24.081 + c0.967,0,1.669-0.79,1.669-1.757c0,0,0-10.369,0-12.479C38.596,25.669,9.417,25.757,10.384,25.757z"/> + <path fill="#FFF600" d="M10.428,25.779c0,2.104,0,12.438,0,12.438c0,0.965,0.701,1.664,1.577,1.664h24.002 + c0.964,0,1.663-0.787,1.663-1.75c0,0,0-10.336,0-12.438C38.547,25.693,9.465,25.779,10.428,25.779z"/> + <path fill="#FFF700" d="M10.473,25.803c0,2.097,0,12.397,0,12.397c0,0.961,0.698,1.659,1.571,1.659h23.923 + c0.96,0,1.658-0.786,1.658-1.746c0,0,0-10.302,0-12.397C38.499,25.716,9.513,25.803,10.473,25.803z"/> + <path fill="#FFF800" d="M10.518,25.827c0,2.088,0,12.355,0,12.355c0,0.958,0.696,1.654,1.566,1.654h23.844 + c0.957,0,1.653-0.783,1.653-1.74c0,0,0-10.268,0-12.356C38.451,25.74,9.561,25.827,10.518,25.827z"/> + <path fill="#FFF900" d="M10.563,25.849c0,2.083,0,12.316,0,12.316c0,0.953,0.693,1.647,1.561,1.647h23.765 + c0.953,0,1.647-0.78,1.647-1.733c0,0,0-10.233,0-12.316C38.402,25.763,9.609,25.849,10.563,25.849z"/> + <path fill="#FFFA00" d="M10.608,25.872c0,2.075,0,12.275,0,12.275c0,0.951,0.691,1.643,1.556,1.643H35.85 + c0.95,0,1.643-0.777,1.643-1.729c0,0,0-10.199,0-12.275C38.355,25.786,9.657,25.872,10.608,25.872z"/> + <path fill="#FFFB00" d="M10.653,25.896c0,2.068,0,12.232,0,12.232c0,0.949,0.689,1.639,1.55,1.639h23.607 + c0.946,0,1.637-0.775,1.637-1.723c0,0,0-10.166,0-12.234C38.309,25.81,9.705,25.896,10.653,25.896z"/> + <path fill="#FFFC00" d="M10.697,25.917c0,2.062,0,12.193,0,12.193c0,0.945,0.687,1.633,1.545,1.633H35.77 + c0.944,0,1.631-0.772,1.631-1.718c0,0,0-10.132,0-12.192C38.262,25.833,9.753,25.917,10.697,25.917z"/> + <path fill="#FFFD00" d="M10.742,25.941c0,2.056,0,12.151,0,12.151c0,0.941,0.685,1.627,1.541,1.627h23.449 + c0.939,0,1.625-0.771,1.625-1.711c0,0,0-10.098,0-12.152C38.213,25.856,9.801,25.941,10.742,25.941z"/> + <path fill="#FFFE00" d="M10.787,25.964c0,2.048,0,12.11,0,12.11c0,0.939,0.682,1.621,1.535,1.621h23.37 + c0.938,0,1.619-0.768,1.619-1.705c0,0,0-10.062,0-12.11C38.165,25.88,9.849,25.964,10.787,25.964z"/> + <path fill="#FFFF00" d="M10.832,25.987c0,2.041,0,12.07,0,12.07c0,0.936,0.68,1.615,1.53,1.615h23.291 + c0.936,0,1.615-0.766,1.615-1.699c0,0,0-10.029,0-12.07C38.117,25.903,9.897,25.987,10.832,25.987z"/> + </g> + + <linearGradient id="House_Highlight_1_" gradientUnits="userSpaceOnUse" x1="210.0469" y1="-255.9038" x2="210.0469" y2="-269.6733" gradientTransform="matrix(1 0 0 -1 -186 -230)"> + <stop offset="0" style="stop-color:#FFFFFF"/> + <stop offset="1" style="stop-color:#FFFF00"/> + </linearGradient> + <path id="House_Highlight" fill="url(#House_Highlight_1_)" d="M10.832,25.987c0,2.041,0,12.07,0,12.07 + c0,0.936,0.68,1.615,1.53,1.615h23.291c0.936,0,1.615-0.766,1.615-1.699c0,0,0-10.029,0-12.07 + C38.117,25.903,9.897,25.987,10.832,25.987z"/> + </g> + <g id="Roof"> + <g> + <path fill="#006600" d="M22.8,6.963l-17.7,15.1l0,0c-0.3,0.301-0.5,0.801-0.5,1.2c0,0.2,0,0.399,0.1,0.601c0.3,0.6,0.9,1,1.6,1 + l35.3-0.1c0.801,0,1.4-0.5,1.7-1.201c0.101-0.199,0.101-0.4,0.101-0.6c0-0.5-0.199-1-0.699-1.4L25.4,6.963l0.1,0.1 + C24.8,6.363,23.7,6.263,22.8,6.963L22.8,6.963z"/> + <path fill="#006700" d="M22.803,6.989L5.155,22.044l0,0c-0.299,0.3-0.499,0.799-0.499,1.197c0,0.2,0,0.398,0.1,0.599 + c0.299,0.598,0.897,0.997,1.595,0.997l35.198-0.1c0.799,0,1.396-0.5,1.695-1.197c0.102-0.198,0.102-0.399,0.102-0.598 + c0-0.498-0.199-0.997-0.699-1.396L25.396,6.989l0.1,0.099C24.798,6.391,23.701,6.291,22.803,6.989L22.803,6.989z"/> + <path fill="#006800" d="M22.807,7.014L5.209,22.026l0,0c-0.298,0.299-0.497,0.796-0.497,1.193c0,0.199,0,0.397,0.1,0.598 + c0.298,0.596,0.895,0.994,1.591,0.994l35.096-0.1c0.796,0,1.394-0.498,1.69-1.194c0.1-0.198,0.1-0.397,0.1-0.596 + c0-0.497-0.198-0.995-0.696-1.393l-17.2-14.514l0.099,0.099C24.795,6.417,23.702,6.317,22.807,7.014L22.807,7.014z"/> + <path fill="#006900" d="M22.81,7.039L5.264,22.008l0,0c-0.298,0.298-0.496,0.793-0.496,1.189c0,0.198,0,0.396,0.099,0.596 + c0.297,0.594,0.893,0.99,1.586,0.99l34.995-0.099c0.794,0,1.388-0.497,1.686-1.19c0.101-0.198,0.101-0.397,0.101-0.594 + c0-0.496-0.198-0.991-0.694-1.389L25.389,7.039l0.1,0.099C24.793,6.444,23.703,6.345,22.81,7.039L22.81,7.039z"/> + <path fill="#006A00" d="M22.814,7.064L5.318,21.989l0,0c-0.296,0.298-0.494,0.792-0.494,1.187c0,0.198,0,0.395,0.099,0.594 + c0.295,0.593,0.89,0.987,1.582,0.987l34.892-0.098c0.793,0,1.386-0.494,1.682-1.187c0.1-0.197,0.1-0.396,0.1-0.593 + c0-0.494-0.197-0.988-0.691-1.384l-17.1-14.431l0.098,0.099C24.791,6.471,23.704,6.372,22.814,7.064L22.814,7.064z"/> + <path fill="#006B00" d="M22.817,7.089L5.373,21.971l0,0C5.077,22.267,4.88,22.76,4.88,23.154c0,0.197,0,0.394,0.099,0.592 + c0.295,0.591,0.887,0.984,1.577,0.984l34.792-0.099c0.789,0,1.381-0.493,1.676-1.183c0.1-0.196,0.1-0.395,0.1-0.591 + c0-0.493-0.197-0.986-0.689-1.38L25.381,7.089l0.098,0.098C24.788,6.498,23.705,6.399,22.817,7.089L22.817,7.089z"/> + <path fill="#006C00" d="M22.821,7.114L5.427,21.953l0,0c-0.295,0.295-0.492,0.787-0.492,1.179c0,0.197,0,0.393,0.099,0.59 + c0.294,0.589,0.884,0.981,1.572,0.981l34.688-0.098c0.787,0,1.376-0.492,1.671-1.181c0.1-0.196,0.1-0.393,0.1-0.589 + c0-0.492-0.196-0.983-0.688-1.376l-17-14.347l0.099,0.098C24.786,6.524,23.706,6.426,22.821,7.114L22.821,7.114z"/> + <path fill="#006D00" d="M22.824,7.139L5.481,21.934l0,0c-0.294,0.295-0.49,0.785-0.49,1.176c0,0.196,0,0.391,0.098,0.589 + c0.293,0.587,0.882,0.98,1.567,0.98l34.587-0.099c0.784,0,1.372-0.49,1.666-1.176c0.099-0.195,0.099-0.393,0.099-0.588 + c0-0.49-0.195-0.979-0.688-1.372L25.372,7.139l0.099,0.098C24.783,6.551,23.706,6.453,22.824,7.139L22.824,7.139z"/> + <path fill="#006E00" d="M22.827,7.164L5.536,21.915l0,0c-0.293,0.294-0.488,0.783-0.488,1.173c0,0.195,0,0.39,0.098,0.587 + c0.293,0.585,0.879,0.977,1.563,0.977l34.484-0.097c0.783,0,1.369-0.49,1.662-1.173c0.098-0.194,0.098-0.391,0.098-0.586 + c0-0.489-0.195-0.977-0.684-1.368L25.367,7.164l0.098,0.098C24.781,6.578,23.707,6.48,22.827,7.164L22.827,7.164z"/> + <path fill="#006F00" d="M22.831,7.189L5.591,21.897l0,0c-0.292,0.292-0.487,0.78-0.487,1.168c0,0.195,0,0.39,0.097,0.585 + c0.292,0.584,0.876,0.973,1.558,0.973l34.384-0.097c0.779,0,1.363-0.487,1.655-1.169c0.099-0.194,0.099-0.39,0.099-0.584 + c0-0.487-0.194-0.974-0.683-1.364L25.363,7.189l0.099,0.098C24.779,6.605,23.708,6.507,22.831,7.189L22.831,7.189z"/> + <path fill="#007000" d="M22.834,7.215L5.646,21.879l0,0c-0.292,0.292-0.486,0.778-0.486,1.165c0,0.195,0,0.388,0.098,0.584 + c0.291,0.582,0.874,0.971,1.554,0.971l34.281-0.098c0.778,0,1.36-0.485,1.651-1.166c0.098-0.193,0.098-0.389,0.098-0.583 + c0-0.485-0.193-0.971-0.68-1.36L25.359,7.215l0.098,0.097C24.775,6.632,23.709,6.535,22.834,7.215L22.834,7.215z"/> + <path fill="#007100" d="M22.838,7.24L5.7,21.86l0,0c-0.291,0.292-0.484,0.775-0.484,1.162c0,0.194,0,0.387,0.097,0.582 + c0.29,0.58,0.871,0.967,1.549,0.967l34.18-0.096c0.774,0,1.354-0.484,1.646-1.162c0.1-0.193,0.1-0.388,0.1-0.581 + c0-0.484-0.194-0.968-0.68-1.356L25.355,7.24l0.097,0.097C24.773,6.659,23.709,6.562,22.838,7.24L22.838,7.24z"/> + <path fill="#007200" d="M22.842,7.265L5.755,21.842l0,0C5.465,22.133,5.272,22.615,5.272,23c0,0.194,0,0.386,0.097,0.581 + c0.289,0.578,0.868,0.964,1.544,0.964l34.077-0.096c0.773,0,1.353-0.483,1.642-1.159c0.097-0.192,0.097-0.387,0.097-0.579 + c0-0.483-0.191-0.965-0.676-1.352L25.352,7.265l0.098,0.096C24.771,6.686,23.711,6.589,22.842,7.265L22.842,7.265z"/> + <path fill="#007300" d="M22.845,7.29L5.809,21.824l0,0c-0.29,0.29-0.481,0.771-0.481,1.155c0,0.193,0,0.385,0.096,0.579 + c0.289,0.577,0.867,0.961,1.54,0.961l33.976-0.097c0.771,0,1.35-0.481,1.638-1.155c0.097-0.192,0.097-0.386,0.097-0.577 + c0-0.481-0.191-0.963-0.674-1.348L25.348,7.29l0.098,0.096C24.771,6.712,23.711,6.616,22.845,7.29L22.845,7.29z"/> + <path fill="#007400" d="M22.848,7.315L5.863,21.805l0,0c-0.288,0.289-0.48,0.769-0.48,1.152c0,0.192,0,0.383,0.096,0.576 + c0.288,0.575,0.864,0.959,1.535,0.959l33.875-0.096c0.769,0,1.344-0.479,1.631-1.152c0.098-0.191,0.098-0.384,0.098-0.575 + c0-0.479-0.192-0.959-0.672-1.344L25.344,7.315l0.096,0.096C24.768,6.739,23.712,6.643,22.848,7.315L22.848,7.315z"/> + <path fill="#007500" d="M22.852,7.34L5.918,21.787l0,0c-0.288,0.288-0.479,0.767-0.479,1.148c0,0.191,0,0.382,0.096,0.575 + c0.287,0.574,0.861,0.956,1.53,0.956l33.772-0.096c0.767,0,1.34-0.478,1.627-1.148c0.097-0.19,0.097-0.383,0.097-0.574 + c0-0.479-0.19-0.957-0.67-1.34L25.34,7.34l0.096,0.095C24.766,6.767,23.713,6.67,22.852,7.34L22.852,7.34z"/> + <path fill="#007600" d="M22.855,7.365L5.973,21.768l0,0c-0.287,0.287-0.477,0.764-0.477,1.145c0,0.191,0,0.381,0.095,0.573 + c0.286,0.572,0.858,0.953,1.526,0.953l33.67-0.095c0.764,0,1.336-0.477,1.622-1.146c0.096-0.19,0.096-0.382,0.096-0.572 + c0-0.477-0.19-0.954-0.668-1.336L25.336,7.365l0.096,0.095C24.764,6.793,23.714,6.697,22.855,7.365L22.855,7.365z"/> + <path fill="#007700" d="M22.858,7.391L6.027,21.75l0,0c-0.286,0.286-0.476,0.762-0.476,1.142c0,0.19,0,0.38,0.095,0.571 + c0.285,0.57,0.856,0.95,1.521,0.95l33.567-0.095c0.763,0,1.332-0.476,1.617-1.141c0.097-0.189,0.097-0.381,0.097-0.57 + c0-0.476-0.19-0.951-0.666-1.332L25.331,7.391l0.096,0.095C24.762,6.82,23.715,6.725,22.858,7.391L22.858,7.391z"/> + <path fill="#007800" d="M22.862,7.416L6.082,21.731l0,0c-0.285,0.285-0.475,0.759-0.475,1.138c0,0.19,0,0.379,0.095,0.57 + c0.284,0.568,0.854,0.947,1.517,0.947l33.467-0.095c0.76,0,1.328-0.474,1.61-1.138c0.097-0.189,0.097-0.379,0.097-0.568 + c0-0.474-0.189-0.948-0.664-1.328L25.327,7.416l0.095,0.095C24.758,6.847,23.716,6.751,22.862,7.416L22.862,7.416z"/> + <path fill="#007900" d="M22.865,7.441L6.136,21.713l0,0c-0.284,0.284-0.473,0.757-0.473,1.135c0,0.189,0,0.377,0.095,0.567 + c0.283,0.567,0.851,0.944,1.512,0.944l33.365-0.094c0.758,0,1.324-0.473,1.607-1.135c0.095-0.188,0.095-0.378,0.095-0.566 + c0-0.473-0.188-0.945-0.662-1.324L25.323,7.441l0.095,0.094C24.756,6.874,23.716,6.779,22.865,7.441L22.865,7.441z"/> + <path fill="#007A00" d="M22.869,7.466L6.19,21.694l0,0c-0.283,0.283-0.471,0.754-0.471,1.131c0,0.188,0,0.376,0.094,0.566 + c0.283,0.564,0.848,0.941,1.507,0.941l33.263-0.094c0.755,0,1.319-0.471,1.603-1.131c0.096-0.188,0.096-0.377,0.096-0.565 + c0-0.471-0.188-0.942-0.66-1.32L25.318,7.466l0.095,0.094C24.754,6.901,23.717,6.806,22.869,7.466L22.869,7.466z"/> + <path fill="#007B00" d="M22.872,7.491L6.245,21.676l0,0c-0.282,0.283-0.47,0.752-0.47,1.128c0,0.188,0,0.375,0.094,0.564 + c0.282,0.563,0.846,0.939,1.503,0.939l33.161-0.094c0.753,0,1.316-0.469,1.598-1.127c0.096-0.187,0.096-0.376,0.096-0.563 + c0-0.47-0.188-0.939-0.658-1.316L25.314,7.491l0.095,0.094C24.751,6.927,23.718,6.833,22.872,7.491L22.872,7.491z"/> + <path fill="#007C00" d="M22.876,7.516L6.299,21.658l0,0c-0.281,0.281-0.468,0.75-0.468,1.124c0,0.188,0,0.374,0.094,0.562 + c0.281,0.562,0.843,0.936,1.499,0.936l33.059-0.093c0.75,0,1.312-0.468,1.594-1.124c0.094-0.187,0.094-0.375,0.094-0.562 + c0-0.468-0.188-0.937-0.656-1.312L25.312,7.516l0.094,0.094C24.749,6.954,23.719,6.86,22.876,7.516L22.876,7.516z"/> + <path fill="#007D00" d="M22.879,7.542L6.354,21.639l0,0c-0.281,0.281-0.467,0.748-0.467,1.121c0,0.187,0,0.373,0.094,0.561 + c0.28,0.56,0.84,0.933,1.494,0.933l32.958-0.093c0.748,0,1.308-0.467,1.586-1.121c0.096-0.186,0.096-0.374,0.096-0.56 + c0-0.467-0.188-0.934-0.654-1.307L25.307,7.542L25.4,7.635C24.746,6.981,23.72,6.887,22.879,7.542L22.879,7.542z"/> + <path fill="#007E00" d="M22.883,7.566L6.408,21.621l0,0c-0.279,0.28-0.465,0.745-0.465,1.117c0,0.187,0,0.372,0.093,0.559 + c0.279,0.558,0.838,0.93,1.489,0.93l32.856-0.093c0.746,0,1.305-0.465,1.583-1.117c0.095-0.186,0.095-0.373,0.095-0.559 + c0-0.465-0.188-0.93-0.652-1.303L25.303,7.566l0.094,0.093C24.744,7.008,23.721,6.915,22.883,7.566L22.883,7.566z"/> + <path fill="#007F00" d="M22.886,7.592L6.463,21.603l0,0c-0.279,0.279-0.464,0.743-0.464,1.113c0,0.186,0,0.371,0.093,0.558 + c0.278,0.556,0.835,0.927,1.484,0.927l32.754-0.092c0.743,0,1.3-0.464,1.577-1.114c0.094-0.185,0.094-0.372,0.094-0.557 + c0-0.464-0.187-0.928-0.649-1.299L25.299,7.592l0.094,0.092C24.742,7.035,23.722,6.941,22.886,7.592L22.886,7.592z"/> + <path fill="#007F00" d="M22.89,7.617L6.518,21.584l0,0c-0.278,0.278-0.462,0.741-0.462,1.11c0,0.185,0,0.369,0.092,0.556 + c0.276,0.555,0.833,0.924,1.48,0.924l32.651-0.092c0.742,0,1.297-0.462,1.572-1.11c0.094-0.185,0.094-0.371,0.094-0.555 + c0-0.462-0.186-0.925-0.647-1.295L25.295,7.617l0.094,0.092C24.738,7.062,23.723,6.969,22.89,7.617L22.89,7.617z"/> + <path fill="#008000" d="M22.893,7.642L6.572,21.565l0,0c-0.277,0.277-0.461,0.739-0.461,1.107c0,0.185,0,0.368,0.092,0.554 + c0.276,0.553,0.83,0.921,1.475,0.921l32.55-0.092c0.738,0,1.291-0.461,1.566-1.106c0.094-0.184,0.094-0.369,0.094-0.553 + c0-0.461-0.185-0.922-0.646-1.292L25.291,7.642l0.093,0.092C24.736,7.088,23.724,6.996,22.893,7.642L22.893,7.642z"/> + <path fill="#008100" d="M22.896,7.667l-16.27,13.88l0,0c-0.276,0.277-0.459,0.736-0.459,1.104c0,0.184,0,0.367,0.092,0.552 + c0.275,0.551,0.827,0.918,1.471,0.918l32.448-0.091c0.736,0,1.288-0.459,1.562-1.104c0.093-0.183,0.093-0.368,0.093-0.551 + c0-0.459-0.185-0.919-0.644-1.287L25.287,7.667l0.092,0.092C24.734,7.116,23.725,7.023,22.896,7.667L22.896,7.667z"/> + <path fill="#008200" d="M22.9,7.692L6.681,21.529l0,0c-0.275,0.275-0.458,0.734-0.458,1.1c0,0.184,0,0.366,0.092,0.55 + c0.275,0.549,0.825,0.916,1.466,0.916l32.347-0.091c0.733,0,1.284-0.458,1.558-1.1c0.094-0.183,0.094-0.367,0.094-0.55 + c0-0.458-0.184-0.917-0.643-1.283L25.282,7.692l0.093,0.091C24.732,7.143,23.725,7.05,22.9,7.692L22.9,7.692z"/> + <path fill="#008300" d="M22.903,7.717L6.735,21.51l0,0c-0.274,0.275-0.457,0.731-0.457,1.096c0,0.183,0,0.365,0.091,0.549 + c0.274,0.547,0.822,0.913,1.461,0.913l32.245-0.091c0.731,0,1.28-0.457,1.554-1.096c0.092-0.182,0.092-0.366,0.092-0.548 + c0-0.457-0.183-0.914-0.64-1.279L25.277,7.717l0.093,0.091C24.73,7.169,23.726,7.078,22.903,7.717L22.903,7.717z"/> + <path fill="#008400" d="M22.907,7.742L6.79,21.492l0,0c-0.273,0.274-0.456,0.729-0.456,1.093c0,0.183,0,0.364,0.091,0.547 + c0.273,0.546,0.82,0.909,1.457,0.909l32.144-0.09c0.729,0,1.274-0.455,1.548-1.093c0.092-0.181,0.092-0.364,0.092-0.546 + c0-0.455-0.183-0.911-0.638-1.275L25.273,7.742l0.093,0.091C24.729,7.196,23.727,7.105,22.907,7.742L22.907,7.742z"/> + <path fill="#008500" d="M22.911,7.768L6.845,21.474l0,0c-0.272,0.273-0.454,0.727-0.454,1.089c0,0.182,0,0.363,0.091,0.546 + c0.272,0.543,0.817,0.906,1.452,0.906l32.041-0.09c0.729,0,1.271-0.454,1.543-1.089c0.092-0.181,0.092-0.363,0.092-0.544 + c0-0.454-0.182-0.908-0.635-1.271L25.271,7.768l0.09,0.09C24.727,7.223,23.728,7.132,22.911,7.768L22.911,7.768z"/> + <path fill="#008600" d="M22.914,7.792L6.899,21.455l0,0c-0.272,0.272-0.453,0.725-0.453,1.086c0,0.181,0,0.361,0.091,0.543 + c0.271,0.542,0.814,0.904,1.447,0.904l31.939-0.09c0.726,0,1.269-0.452,1.538-1.086c0.092-0.18,0.092-0.362,0.092-0.542 + c0-0.452-0.181-0.905-0.634-1.267L25.268,7.792l0.09,0.09C24.725,7.25,23.729,7.159,22.914,7.792L22.914,7.792z"/> + <path fill="#008700" d="M22.917,7.818L6.954,21.437l0,0c-0.271,0.271-0.451,0.722-0.451,1.083c0,0.181,0,0.36,0.09,0.542 + c0.271,0.54,0.812,0.901,1.443,0.901l31.837-0.09c0.723,0,1.264-0.451,1.533-1.082c0.092-0.18,0.092-0.361,0.092-0.541 + c0-0.451-0.182-0.902-0.633-1.263L25.264,7.818l0.09,0.09C24.723,7.277,23.729,7.186,22.917,7.818L22.917,7.818z"/> + <path fill="#008800" d="M22.921,7.843L7.008,21.418l0,0c-0.27,0.27-0.45,0.72-0.45,1.079c0,0.18,0,0.359,0.09,0.54 + c0.27,0.539,0.809,0.898,1.438,0.898l31.734-0.09c0.722,0,1.261-0.449,1.529-1.079c0.09-0.179,0.09-0.36,0.09-0.539 + c0-0.449-0.18-0.899-0.629-1.259L25.259,7.843l0.091,0.09C24.719,7.303,23.73,7.213,22.921,7.843L22.921,7.843z"/> + <path fill="#008900" d="M22.924,7.868L7.062,21.4l0,0c-0.269,0.269-0.448,0.717-0.448,1.075c0,0.18,0,0.358,0.09,0.539 + c0.269,0.537,0.807,0.895,1.434,0.895l31.633-0.089c0.72,0,1.256-0.448,1.523-1.075c0.092-0.179,0.092-0.359,0.092-0.538 + c0-0.448-0.181-0.896-0.629-1.255L25.255,7.868l0.091,0.089C24.717,7.331,23.731,7.241,22.924,7.868L22.924,7.868z"/> + <path fill="#008A00" d="M22.928,7.893L7.117,21.381l0,0C6.849,21.65,6.67,22.097,6.67,22.453c0,0.179,0,0.357,0.089,0.537 + c0.268,0.536,0.804,0.893,1.429,0.893l31.533-0.089c0.715,0,1.252-0.446,1.518-1.072c0.092-0.178,0.092-0.358,0.092-0.536 + c0-0.446-0.18-0.894-0.626-1.251L25.25,7.893l0.09,0.089C24.714,7.357,23.732,7.268,22.928,7.893L22.928,7.893z"/> + <path fill="#008B00" d="M22.931,7.918L7.172,21.363l0,0c-0.268,0.268-0.445,0.713-0.445,1.069c0,0.178,0,0.355,0.089,0.535 + c0.267,0.534,0.801,0.89,1.424,0.89l31.43-0.089c0.714,0,1.248-0.445,1.514-1.068c0.09-0.178,0.09-0.357,0.09-0.534 + c0-0.445-0.178-0.891-0.623-1.247L25.246,7.918l0.09,0.089C24.712,7.384,23.733,7.295,22.931,7.918L22.931,7.918z"/> + <path fill="#008C00" d="M22.935,7.943L7.227,21.345l0,0c-0.267,0.267-0.444,0.71-0.444,1.065c0,0.178,0,0.354,0.089,0.533 + c0.266,0.532,0.799,0.887,1.42,0.887l31.328-0.089c0.711,0,1.243-0.443,1.509-1.065c0.09-0.177,0.09-0.355,0.09-0.532 + c0-0.444-0.178-0.888-0.621-1.243L25.242,7.943l0.089,0.089C24.71,7.411,23.734,7.322,22.935,7.943L22.935,7.943z"/> + <path fill="#008D00" d="M22.938,7.968L7.281,21.326l0,0c-0.266,0.266-0.442,0.708-0.442,1.062c0,0.177,0,0.353,0.088,0.532 + c0.264,0.53,0.796,0.883,1.415,0.883l31.227-0.088c0.709,0,1.24-0.442,1.505-1.062c0.09-0.176,0.09-0.354,0.09-0.53 + c0-0.442-0.177-0.885-0.62-1.239L25.238,7.968l0.089,0.088C24.707,7.438,23.735,7.349,22.938,7.968L22.938,7.968z"/> + <path fill="#008E00" d="M22.941,7.994L7.335,21.308l0,0c-0.265,0.265-0.441,0.706-0.441,1.058c0,0.177,0,0.352,0.088,0.53 + c0.264,0.528,0.793,0.881,1.411,0.881l31.125-0.088c0.707,0,1.235-0.441,1.5-1.058c0.088-0.176,0.088-0.353,0.088-0.529 + c0-0.441-0.176-0.882-0.617-1.235L25.234,7.994l0.089,0.088C24.705,7.465,23.736,7.376,22.941,7.994L22.941,7.994z"/> + <path fill="#008F00" d="M22.945,8.019L7.39,21.289l0,0c-0.264,0.264-0.44,0.704-0.44,1.055c0,0.176,0,0.351,0.088,0.528 + c0.263,0.527,0.791,0.878,1.406,0.878l31.022-0.088c0.704,0,1.231-0.439,1.494-1.055c0.089-0.175,0.089-0.352,0.089-0.527 + c0-0.439-0.176-0.879-0.615-1.231L25.229,8.019l0.09,0.088C24.703,7.492,23.736,7.403,22.945,8.019L22.945,8.019z"/> + <path fill="#009000" d="M22.948,8.044L7.444,21.271l0,0c-0.263,0.263-0.438,0.701-0.438,1.051c0,0.175,0,0.35,0.087,0.526 + c0.263,0.525,0.789,0.875,1.401,0.875l30.921-0.088c0.702,0,1.228-0.438,1.489-1.051c0.089-0.174,0.089-0.351,0.089-0.525 + c0-0.438-0.177-0.876-0.614-1.227L25.227,8.044l0.088,0.087C24.7,7.519,23.737,7.431,22.948,8.044L22.948,8.044z"/> + <path fill="#009100" d="M22.952,8.069L7.499,21.252l0,0c-0.262,0.262-0.437,0.699-0.437,1.048c0,0.175,0,0.349,0.087,0.524 + c0.262,0.523,0.786,0.872,1.397,0.872l30.819-0.087c0.699,0,1.224-0.436,1.484-1.047c0.088-0.174,0.088-0.35,0.088-0.524 + c0-0.436-0.174-0.873-0.611-1.223L25.223,8.069l0.088,0.087C24.698,7.545,23.738,7.458,22.952,8.069L22.952,8.069z"/> + <path fill="#009200" d="M22.955,8.094L7.553,21.234l0,0c-0.261,0.262-0.435,0.697-0.435,1.044c0,0.174,0,0.347,0.087,0.523 + c0.259,0.521,0.783,0.869,1.392,0.869l30.717-0.087c0.697,0,1.22-0.435,1.479-1.044c0.088-0.173,0.088-0.348,0.088-0.522 + c0-0.435-0.174-0.87-0.609-1.218L25.218,8.094l0.089,0.087C24.695,7.572,23.739,7.485,22.955,8.094L22.955,8.094z"/> + <path fill="#009300" d="M22.959,8.119L7.608,21.215l0,0c-0.26,0.261-0.434,0.695-0.434,1.041c0,0.174,0,0.346,0.087,0.521 + c0.26,0.52,0.781,0.867,1.388,0.867l30.615-0.087c0.695,0,1.217-0.434,1.475-1.041c0.089-0.173,0.089-0.348,0.089-0.521 + c0-0.433-0.175-0.867-0.606-1.214L25.214,8.119l0.088,0.087C24.693,7.599,23.74,7.512,22.959,8.119L22.959,8.119z"/> + <path fill="#009400" d="M22.962,8.145l-15.3,13.053l0,0c-0.26,0.26-0.433,0.692-0.433,1.037c0,0.173,0,0.345,0.086,0.52 + c0.259,0.518,0.778,0.863,1.383,0.863l30.514-0.086c0.692,0,1.212-0.432,1.47-1.038c0.088-0.172,0.088-0.346,0.088-0.519 + c0-0.432-0.172-0.864-0.605-1.21L25.21,8.145l0.087,0.086C24.691,7.626,23.741,7.539,22.962,8.145L22.962,8.145z"/> + <path fill="#009500" d="M22.966,8.169L7.717,21.179l0,0c-0.259,0.259-0.431,0.69-0.431,1.034c0,0.173,0,0.344,0.086,0.518 + c0.257,0.517,0.775,0.86,1.378,0.86l30.412-0.086c0.689,0,1.207-0.431,1.465-1.034c0.087-0.171,0.087-0.345,0.087-0.517 + c0-0.431-0.172-0.861-0.604-1.207L25.206,8.169l0.087,0.086C24.688,7.653,23.742,7.566,22.966,8.169L22.966,8.169z"/> + <path fill="#009600" d="M22.969,8.195L7.771,21.16l0,0c-0.258,0.258-0.43,0.688-0.43,1.03c0,0.172,0,0.343,0.086,0.516 + c0.257,0.515,0.773,0.858,1.374,0.858l30.311-0.086c0.688,0,1.203-0.429,1.459-1.03c0.088-0.171,0.088-0.344,0.088-0.515 + c0-0.429-0.172-0.859-0.602-1.203L25.201,8.195l0.087,0.085C24.688,7.68,23.743,7.593,22.969,8.195L22.969,8.195z"/> + <path fill="#009700" d="M22.973,8.22L7.826,21.142l0,0c-0.257,0.257-0.428,0.686-0.428,1.027c0,0.171,0,0.341,0.085,0.514 + c0.255,0.513,0.771,0.855,1.369,0.855l30.208-0.086c0.687,0,1.198-0.428,1.455-1.027c0.086-0.17,0.086-0.343,0.086-0.513 + c0-0.428-0.172-0.856-0.6-1.198L25.197,8.22l0.087,0.085C24.686,7.707,23.743,7.621,22.973,8.22L22.973,8.22z"/> + <path fill="#009800" d="M22.976,8.245L7.88,21.124l0,0c-0.256,0.256-0.427,0.683-0.427,1.023c0,0.171,0,0.34,0.085,0.512 + c0.256,0.511,0.768,0.852,1.364,0.852l30.106-0.085c0.684,0,1.195-0.426,1.45-1.023c0.086-0.17,0.086-0.342,0.086-0.512 + c0-0.426-0.17-0.853-0.599-1.194L25.193,8.245l0.086,0.085C24.682,7.733,23.744,7.647,22.976,8.245L22.976,8.245z"/> + <path fill="#009900" d="M22.979,8.27L7.935,21.105l0,0C7.68,21.36,7.51,21.786,7.51,22.125c0,0.17,0,0.339,0.085,0.511 + c0.255,0.509,0.765,0.849,1.36,0.849L38.959,23.4c0.682,0,1.191-0.425,1.445-1.02c0.086-0.169,0.086-0.34,0.086-0.51 + c0-0.425-0.17-0.85-0.596-1.19L25.189,8.27l0.086,0.085C24.68,7.76,23.745,7.675,22.979,8.27L22.979,8.27z"/> + </g> + + <linearGradient id="Roof_Highlight_1_" gradientUnits="userSpaceOnUse" x1="210" y1="-237.8638" x2="210" y2="-253.4849" gradientTransform="matrix(1 0 0 -1 -186 -230)"> + <stop offset="0" style="stop-color:#FFFFFF"/> + <stop offset="1" style="stop-color:#009900"/> + </linearGradient> + <path id="Roof_Highlight" fill="url(#Roof_Highlight_1_)" d="M22.979,8.27L7.935,21.105l0,0C7.68,21.36,7.51,21.786,7.51,22.125 + c0,0.17,0,0.339,0.085,0.51c0.255,0.51,0.765,0.85,1.36,0.85L38.959,23.4c0.682,0,1.191-0.425,1.445-1.021 + c0.086-0.169,0.086-0.34,0.086-0.51c0-0.424-0.17-0.85-0.596-1.189L25.189,8.27l0.086,0.085C24.68,7.76,23.745,7.675,22.979,8.27 + L22.979,8.27z"/> + </g> + </g> +</g> +<g id="Layer_2"> + <g id="crop_x0020_marks"> + <path fill="none" d="M48,47.687H0v-48h48V47.687z"/> + </g> +</g> +</svg> diff --git a/docbook-xsl-1.76.1/images/colorsvg/important.svg b/docbook-xsl-1.76.1/images/colorsvg/important.svg new file mode 100644 index 0000000..803ad8d --- /dev/null +++ b/docbook-xsl-1.76.1/images/colorsvg/important.svg @@ -0,0 +1,239 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [ + <!ENTITY ns_svg "http://www.w3.org/2000/svg"> + <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> +]> +<svg version="1.1" id="Caution" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="48" height="48" viewBox="0 0 48 48" + overflow="visible" enable-background="new 0 0 48 48" xml:space="preserve"> +<g> + <path stroke="#FFFFFF" stroke-width="6.6112" d="M42.35,35.841L27.248,9.941c-0.602-1-1.699-1.7-2.899-1.6c-1.2,0-2.3,0.7-2.9,1.7 + l-14.5,25.901c-0.6,1-0.6,2.299,0,3.299c0.6,1,1.7,1.6,2.9,1.6h29.601c1.199,0,2.301-0.6,2.898-1.697 + C42.949,38.142,42.949,36.841,42.35,35.841L42.35,35.841z"/> + <g> + <path fill="#FFFFFF" stroke="#009900" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" d="M24.349,11.586 + l-14.5,26h29.601L24.349,11.586z"/> + <polygon fill="#FFFFFF" stroke="#009A00" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.35,11.611 9.877,37.562 39.42,37.562 "/> + <polygon fill="#FFFFFF" stroke="#009B01" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.35,11.637 9.907,37.536 39.391,37.536 "/> + <polygon fill="#FFFFFF" stroke="#009C01" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.351,11.662 9.935,37.511 39.361,37.511 "/> + <polygon fill="#FFFFFF" stroke="#009D02" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.352,11.688 9.963,37.485 39.334,37.485 "/> + <polygon fill="#FFFFFF" stroke="#009E02" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.352,11.712 9.993,37.46 39.305,37.46 "/> + <polygon fill="#FFFFFF" stroke="#009F03" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.353,11.738 10.021,37.435 39.275,37.435 "/> + <polygon fill="#FFFFFF" stroke="#00A003" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.353,11.763 10.049,37.409 39.248,37.409 "/> + <polygon fill="#FFFFFF" stroke="#00A104" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.354,11.789 10.079,37.386 39.219,37.386 "/> + <polygon fill="#FFFFFF" stroke="#00A204" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.354,11.813 10.106,37.36 39.189,37.36 "/> + <polygon fill="#FFFFFF" stroke="#00A305" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.354,11.838 10.135,37.335 39.16,37.335 "/> + <polygon fill="#FFFFFF" stroke="#00A405" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.355,11.864 10.166,37.31 39.133,37.31 "/> + <polygon fill="#FFFFFF" stroke="#00A506" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.355,11.89 10.193,37.284 39.104,37.284 "/> + <polygon fill="#FFFFFF" stroke="#00A606" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.355,11.915 10.223,37.259 39.074,37.259 "/> + <polygon fill="#FFFFFF" stroke="#00A707" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.356,11.939 10.25,37.233 39.047,37.233 "/> + <polygon fill="#FFFFFF" stroke="#00A807" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.357,11.965 10.279,37.21 39.018,37.21 "/> + <polygon fill="#FFFFFF" stroke="#00A908" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.357,11.99 10.309,37.183 38.988,37.183 "/> + <polygon fill="#FFFFFF" stroke="#00AA08" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.357,12.016 10.336,37.157 38.959,37.157 "/> + <polygon fill="#FFFFFF" stroke="#00AB09" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.358,12.041 10.367,37.132 38.932,37.132 "/> + <polygon fill="#FFFFFF" stroke="#00AC09" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.359,12.066 10.396,37.106 38.902,37.106 "/> + <polygon fill="#FFFFFF" stroke="#00AD0A" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.359,12.091 10.423,37.083 38.873,37.083 "/> + <polygon fill="#FFFFFF" stroke="#00AE0A" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.36,12.116 10.453,37.056 38.846,37.056 "/> + <polygon fill="#FFFFFF" stroke="#00AF0B" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.361,12.142 10.48,37.032 38.816,37.032 "/> + <polygon fill="#FFFFFF" stroke="#00B00B" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.362,12.167 10.509,37.007 38.789,37.007 "/> + <polygon fill="#FFFFFF" stroke="#00B10C" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.362,12.191 10.539,36.981 38.76,36.981 "/> + <polygon fill="#FFFFFF" stroke="#00B20C" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.362,12.217 10.566,36.956 38.729,36.956 "/> + <polygon fill="#FFFFFF" stroke="#00B30D" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.363,12.242 10.596,36.931 38.701,36.931 "/> + <polygon fill="#FFFFFF" stroke="#00B40D" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.364,12.269 10.625,36.905 38.674,36.905 "/> + <polygon fill="#FFFFFF" stroke="#00B50E" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.364,12.293 10.653,36.88 38.645,36.88 "/> + <polygon fill="#FFFFFF" stroke="#00B60E" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.366,12.317 10.682,36.854 38.613,36.854 "/> + <polygon fill="#FFFFFF" stroke="#00B70F" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.367,12.343 10.71,36.829 38.586,36.829 "/> + <polygon fill="#FFFFFF" stroke="#00B80F" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.367,12.37 10.739,36.804 38.559,36.804 "/> + <polygon fill="#FFFFFF" stroke="#00B910" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.368,12.395 10.769,36.778 38.527,36.778 "/> + <polygon fill="#FFFFFF" stroke="#00BA10" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.368,12.419 10.796,36.755 38.5,36.755 "/> + <polygon fill="#FFFFFF" stroke="#00BB11" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.369,12.444 10.826,36.728 38.471,36.728 "/> + <polygon fill="#FFFFFF" stroke="#00BC11" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.37,12.469 10.854,36.704 38.441,36.704 "/> + <polygon fill="#FFFFFF" stroke="#00BD12" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.37,12.496 10.883,36.677 38.414,36.677 "/> + <polygon fill="#FFFFFF" stroke="#00BE12" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.371,12.521 10.912,36.651 38.385,36.651 "/> + <polygon fill="#FFFFFF" stroke="#00BF13" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.371,12.545 10.94,36.628 38.355,36.628 "/> + <polygon fill="#FFFFFF" stroke="#00C013" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.372,12.57 10.969,36.603 38.328,36.603 "/> + <polygon fill="#FFFFFF" stroke="#00C114" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.372,12.595 10.999,36.577 38.299,36.577 "/> + <polygon fill="#FFFFFF" stroke="#00C214" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.373,12.622 11.026,36.552 38.27,36.552 "/> + <polygon fill="#FFFFFF" stroke="#00C315" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.373,12.646 11.056,36.526 38.242,36.526 "/> + <polygon fill="#FFFFFF" stroke="#00C415" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.374,12.672 11.084,36.503 38.213,36.503 "/> + <polygon fill="#FFFFFF" stroke="#00C516" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.375,12.696 11.113,36.476 38.184,36.476 "/> + <polygon fill="#FFFFFF" stroke="#00C616" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.375,12.721 11.142,36.45 38.154,36.45 "/> + <polygon fill="#FFFFFF" stroke="#00C717" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.375,12.748 11.17,36.425 38.127,36.425 "/> + <polygon fill="#FFFFFF" stroke="#00C817" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.375,12.773 11.2,36.401 38.098,36.401 "/> + <polygon fill="#FFFFFF" stroke="#00C918" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.376,12.797 11.229,36.376 38.068,36.376 "/> + <polygon fill="#FFFFFF" stroke="#00CA18" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.376,12.822 11.256,36.349 38.041,36.349 "/> + <polygon fill="#FFFFFF" stroke="#00CB19" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.377,12.849 11.286,36.325 38.012,36.325 "/> + <polygon fill="#FFFFFF" stroke="#00CC19" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.378,12.875 11.314,36.3 37.982,36.3 "/> + <polygon fill="#FFFFFF" stroke="#00CC1A" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.378,12.899 11.342,36.274 37.955,36.274 "/> + <polygon fill="#FFFFFF" stroke="#00CD1A" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.379,12.923 11.372,36.249 37.926,36.249 "/> + <polygon fill="#FFFFFF" stroke="#00CE1B" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.379,12.949 11.4,36.224 37.896,36.224 "/> + <polygon fill="#FFFFFF" stroke="#00CF1B" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.38,12.975 11.43,36.198 37.867,36.198 "/> + <polygon fill="#FFFFFF" stroke="#00D01C" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.381,13 11.458,36.173 37.84,36.173 "/> + <polygon fill="#FFFFFF" stroke="#00D11C" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.381,13.024 11.486,36.147 37.811,36.147 "/> + <polygon fill="#FFFFFF" stroke="#00D21D" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.381,13.05 11.516,36.124 37.781,36.124 "/> + <polygon fill="#FFFFFF" stroke="#00D31D" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.382,13.075 11.543,36.097 37.754,36.097 "/> + <polygon fill="#FFFFFF" stroke="#00D41E" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.383,13.102 11.572,36.071 37.725,36.071 "/> + <polygon fill="#FFFFFF" stroke="#00D51E" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.383,13.126 11.602,36.046 37.695,36.046 "/> + <polygon fill="#FFFFFF" stroke="#00D61F" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.384,13.151 11.63,36.022 37.666,36.022 "/> + <polygon fill="#FFFFFF" stroke="#00D71F" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.385,13.176 11.66,35.997 37.639,35.997 "/> + <polygon fill="#FFFFFF" stroke="#00D820" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.385,13.201 11.688,35.972 37.609,35.972 "/> + <polygon fill="#FFFFFF" stroke="#00D920" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.387,13.228 11.716,35.946 37.58,35.946 "/> + <polygon fill="#FFFFFF" stroke="#00DA21" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.387,13.252 11.746,35.921 37.553,35.921 "/> + <polygon fill="#FFFFFF" stroke="#00DB21" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.388,13.277 11.773,35.896 37.521,35.896 "/> + <polygon fill="#FFFFFF" stroke="#00DC22" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.389,13.302 11.802,35.872 37.494,35.872 "/> + <polygon fill="#FFFFFF" stroke="#00DD22" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.389,13.327 11.832,35.845 37.465,35.845 "/> + <polygon fill="#FFFFFF" stroke="#00DE23" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.39,13.354 11.86,35.819 37.438,35.819 "/> + <polygon fill="#FFFFFF" stroke="#00DF23" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.39,13.378 11.89,35.796 37.408,35.796 "/> + <polygon fill="#FFFFFF" stroke="#00E024" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.391,13.403 11.917,35.769 37.379,35.769 "/> + <polygon fill="#FFFFFF" stroke="#00E124" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.391,13.429 11.946,35.743 37.352,35.743 "/> + <polygon fill="#FFFFFF" stroke="#00E225" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.392,13.455 11.976,35.718 37.32,35.718 "/> + <polygon fill="#FFFFFF" stroke="#00E325" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.393,13.479 12.003,35.694 37.293,35.694 "/> + <polygon fill="#FFFFFF" stroke="#00E426" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.393,13.504 12.033,35.669 37.264,35.669 "/> + <polygon fill="#FFFFFF" stroke="#00E526" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.394,13.529 12.062,35.644 37.234,35.644 "/> + <polygon fill="#FFFFFF" stroke="#00E627" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.394,13.556 12.09,35.618 37.207,35.618 "/> + <polygon fill="#FFFFFF" stroke="#00E727" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.395,13.581 12.12,35.593 37.178,35.593 "/> + <polygon fill="#FFFFFF" stroke="#00E828" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.396,13.605 12.147,35.567 37.148,35.567 "/> + <polygon fill="#FFFFFF" stroke="#00E928" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.396,13.63 12.176,35.544 37.121,35.544 "/> + <polygon fill="#FFFFFF" stroke="#00EA29" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.396,13.655 12.206,35.517 37.092,35.517 "/> + <polygon fill="#FFFFFF" stroke="#00EB29" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.396,13.682 12.233,35.491 37.062,35.491 "/> + <polygon fill="#FFFFFF" stroke="#00EC2A" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.397,13.707 12.263,35.466 37.035,35.466 "/> + <polygon fill="#FFFFFF" stroke="#00ED2A" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.397,13.732 12.292,35.44 37.006,35.44 "/> + <polygon fill="#FFFFFF" stroke="#00EE2B" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.398,13.756 12.319,35.417 36.977,35.417 "/> + <polygon fill="#FFFFFF" stroke="#00EF2B" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.398,13.782 12.349,35.392 36.949,35.392 "/> + <polygon fill="#FFFFFF" stroke="#00F02C" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.399,13.808 12.377,35.366 36.92,35.366 "/> + <polygon fill="#FFFFFF" stroke="#00F12C" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.399,13.833 12.407,35.341 36.891,35.341 "/> + <polygon fill="#FFFFFF" stroke="#00F22D" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.4,13.858 12.436,35.315 36.861,35.315 "/> + <polygon fill="#FFFFFF" stroke="#00F32D" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.401,13.883 12.463,35.29 36.834,35.29 "/> + <polygon fill="#FFFFFF" stroke="#00F42E" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.401,13.908 12.493,35.265 36.805,35.265 "/> + <polygon fill="#FFFFFF" stroke="#00F52E" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.402,13.934 12.521,35.239 36.775,35.239 "/> + <polygon fill="#FFFFFF" stroke="#00F62F" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.402,13.959 12.549,35.214 36.748,35.214 "/> + <polygon fill="#FFFFFF" stroke="#00F72F" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.403,13.983 12.579,35.188 36.719,35.188 "/> + <polygon fill="#FFFFFF" stroke="#00F830" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.404,14.009 12.607,35.165 36.689,35.165 "/> + <polygon fill="#FFFFFF" stroke="#00F930" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.404,14.034 12.637,35.138 36.662,35.138 "/> + <polygon fill="#FFFFFF" stroke="#00FA31" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.405,14.061 12.666,35.112 36.633,35.112 "/> + <polygon fill="#FFFFFF" stroke="#00FB31" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.405,14.085 12.693,35.089 36.604,35.089 "/> + <polygon fill="#FFFFFF" stroke="#00FC32" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.407,14.11 12.723,35.063 36.574,35.063 "/> + <polygon fill="#FFFFFF" stroke="#00FD32" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.408,14.135 12.75,35.038 36.547,35.038 "/> + <polygon fill="#FFFFFF" stroke="#00FE33" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" points=" + 24.408,14.16 12.779,35.013 36.518,35.013 "/> + <path fill="#FFFFFF" stroke="#00FF33" stroke-width="6.6112" stroke-linecap="round" stroke-linejoin="round" d="M24.409,14.187 + l-11.6,20.801h23.68L24.409,14.187z"/> + </g> + + <linearGradient id="XMLID_4_" gradientUnits="userSpaceOnUse" x1="582.6475" y1="-987.77" x2="582.6475" y2="-1015.4038" gradientTransform="matrix(1 0 0 -1 -558 -977)"> + <stop offset="0" style="stop-color:#FFFFFF"/> + <stop offset="1" style="stop-color:#00FF33"/> + </linearGradient> + <path fill="url(#XMLID_4_)" d="M39.693,34.153L26.857,12.138c-0.51-0.85-1.443-1.445-2.463-1.36c-1.021,0-1.955,0.595-2.465,1.445 + L9.604,34.239c-0.511,0.85-0.511,1.953,0,2.805c0.51,0.852,1.444,1.359,2.465,1.359h25.16c1.021,0,1.955-0.51,2.465-1.445 + C40.203,36.106,40.203,35.003,39.693,34.153L39.693,34.153z"/> + <g> + <path d="M24.648,33.487c-1.1,0-1.8-0.801-1.8-1.801c0-1.102,0.7-1.801,1.8-1.801c1.1,0,1.801,0.699,1.801,1.801 + C26.449,32.687,25.748,33.487,24.648,33.487L24.648,33.487z M23.449,28.786l-0.4-9.1h3.2l-0.4,9.1H23.55H23.449z"/> + </g> +</g> +<g id="crop_x0020_marks"> + <path fill="none" d="M48.648,48.586h-48v-48h48V48.586z"/> +</g> +</svg> diff --git a/docbook-xsl-1.76.1/images/colorsvg/next.svg b/docbook-xsl-1.76.1/images/colorsvg/next.svg new file mode 100644 index 0000000..52b73cf --- /dev/null +++ b/docbook-xsl-1.76.1/images/colorsvg/next.svg @@ -0,0 +1,338 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [ + <!ENTITY ns_svg "http://www.w3.org/2000/svg"> + <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> +]> +<svg version="1.1" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="48" height="48" viewBox="0 0 48 48" + overflow="visible" enable-background="new 0 0 48 48" xml:space="preserve"> +<g> + <path fill="#FFFFFF" stroke="#FFFFFF" stroke-width="7.5901" stroke-linejoin="round" d="M22.34,41.101c0,0.301,0.3,0.301,0.5,0.2 + l16.6-16.899c0.5-0.5,0.4-0.7,0-1l-16.6-16.7c-0.1-0.1-0.4-0.1-0.4,0.1v10H8.84c-0.3,0-0.5,0.2-0.5,0.4v13.299 + c0,0.4,0.2,0.5,0.6,0.5h13.5L22.34,41.101z"/> + <g> + <path fill="#0033CC" d="M22.34,41.101c0,0.301,0.3,0.301,0.5,0.2l16.6-16.899c0.5-0.5,0.4-0.7,0-1l-16.6-16.7 + c-0.1-0.1-0.4-0.1-0.4,0.1v10H8.84c-0.3,0-0.5,0.2-0.5,0.4v13.299c0,0.4,0.2,0.5,0.6,0.5h13.5L22.34,41.101z"/> + <path fill="#0134CC" d="M22.351,41.074c0,0.3,0.3,0.3,0.5,0.2L39.427,24.4c0.5-0.499,0.4-0.699,0-0.999L22.85,6.729 + c-0.1-0.1-0.399-0.1-0.399,0.099v9.984H8.87c-0.299,0-0.5,0.2-0.5,0.4v13.279c0,0.398,0.2,0.499,0.6,0.499H22.45L22.351,41.074z" + /> + <path fill="#0235CD" d="M22.359,41.047c0,0.3,0.299,0.3,0.499,0.2l16.553-16.848c0.5-0.498,0.399-0.697,0-0.997L22.858,6.755 + c-0.1-0.1-0.399-0.1-0.399,0.1v9.969H8.897c-0.299,0-0.499,0.199-0.499,0.399v13.258c0,0.398,0.2,0.498,0.598,0.498h13.462 + L22.359,41.047z"/> + <path fill="#0336CD" d="M22.369,41.021c0,0.301,0.299,0.301,0.498,0.199l16.53-16.82c0.498-0.498,0.397-0.696,0-0.995 + L22.866,6.783c-0.1-0.1-0.398-0.1-0.398,0.099v9.953H8.926c-0.299,0-0.498,0.199-0.498,0.398v13.239 + c0,0.397,0.199,0.496,0.598,0.496h13.442L22.369,41.021z"/> + <path fill="#0437CE" d="M22.378,40.994c0,0.299,0.298,0.299,0.497,0.198l16.506-16.794c0.496-0.497,0.397-0.695,0-0.994 + L22.876,6.81c-0.1-0.1-0.398-0.1-0.398,0.099v9.937H8.956c-0.298,0-0.498,0.199-0.498,0.398v13.217c0,0.397,0.2,0.496,0.597,0.496 + h13.423L22.378,40.994z"/> + <path fill="#0538CE" d="M22.389,40.968c0,0.299,0.298,0.299,0.496,0.198l16.483-16.769c0.496-0.496,0.397-0.694,0-0.992 + L22.884,6.836c-0.099-0.099-0.397-0.099-0.397,0.099v9.922H8.983c-0.297,0-0.496,0.199-0.496,0.397V30.45 + c0,0.396,0.199,0.496,0.596,0.496h13.404L22.389,40.968z"/> + <path fill="#0639CF" d="M22.398,40.94c0,0.299,0.298,0.299,0.496,0.199l16.46-16.742c0.495-0.496,0.396-0.694,0-0.991 + L22.894,6.863c-0.099-0.099-0.396-0.099-0.396,0.099v9.906H9.012c-0.297,0-0.496,0.198-0.496,0.396V30.44 + c0,0.396,0.199,0.494,0.595,0.494h13.386L22.398,40.94z"/> + <path fill="#073ACF" d="M22.407,40.914c0,0.298,0.298,0.298,0.495,0.198l16.437-16.716c0.494-0.495,0.396-0.692,0-0.989 + L22.902,6.891c-0.099-0.099-0.396-0.099-0.396,0.099v9.891H9.041c-0.296,0-0.495,0.198-0.495,0.396v13.154 + c0,0.396,0.198,0.493,0.594,0.493h13.367L22.407,40.914z"/> + <path fill="#083BD0" d="M22.417,40.888c0,0.297,0.297,0.297,0.495,0.198l16.413-16.689c0.494-0.494,0.396-0.691,0-0.987 + L22.912,6.917c-0.099-0.099-0.396-0.099-0.396,0.099v9.875H9.069c-0.296,0-0.494,0.198-0.494,0.396v13.133 + c0,0.395,0.198,0.493,0.594,0.493h13.347L22.417,40.888z"/> + <path fill="#093CD0" d="M22.426,40.86c0,0.297,0.296,0.297,0.493,0.197l16.39-16.662c0.492-0.494,0.395-0.69,0-0.986L22.919,6.943 + c-0.099-0.099-0.395-0.099-0.395,0.098v9.86H9.099c-0.296,0-0.494,0.197-0.494,0.395V30.41c0,0.396,0.198,0.493,0.593,0.493 + h13.328L22.426,40.86z"/> + <path fill="#0A3DD1" d="M22.437,40.834c0,0.297,0.296,0.297,0.493,0.196l16.367-16.636c0.492-0.493,0.395-0.689,0-0.984 + L22.928,6.97c-0.099-0.099-0.394-0.099-0.394,0.098v9.844H9.127c-0.296,0-0.493,0.197-0.493,0.394v13.093 + c0,0.395,0.197,0.492,0.592,0.492h13.309L22.437,40.834z"/> + <path fill="#0B3ED1" d="M22.445,40.808c0,0.297,0.296,0.297,0.492,0.197l16.343-16.61c0.492-0.492,0.395-0.688,0-0.982 + L22.938,6.999C22.84,6.9,22.544,6.9,22.544,7.097v9.829H9.155c-0.295,0-0.493,0.196-0.493,0.394v13.072 + c0,0.394,0.198,0.49,0.591,0.49h13.29L22.445,40.808z"/> + <path fill="#0C3FD2" d="M22.456,40.78c0,0.296,0.295,0.296,0.492,0.197l16.319-16.584c0.49-0.491,0.395-0.687,0-0.982 + L22.946,7.024c-0.098-0.098-0.393-0.098-0.393,0.098v9.813H9.185c-0.294,0-0.492,0.196-0.492,0.393v13.05 + c0,0.394,0.197,0.491,0.59,0.491h13.271L22.456,40.78z"/> + <path fill="#0D40D2" d="M22.464,40.754c0,0.295,0.294,0.295,0.491,0.196l16.295-16.558c0.489-0.49,0.393-0.686,0-0.98 + L22.956,7.051c-0.099-0.098-0.393-0.098-0.393,0.097v9.797H9.212c-0.294,0-0.49,0.197-0.49,0.393v13.031 + c0,0.393,0.196,0.489,0.588,0.489h13.252L22.464,40.754z"/> + <path fill="#0E41D3" d="M22.475,40.728c0,0.295,0.294,0.295,0.49,0.196l16.272-16.531c0.49-0.489,0.394-0.684,0-0.978L22.964,7.08 + c-0.098-0.098-0.392-0.098-0.392,0.097v9.782H9.241c-0.294,0-0.49,0.196-0.49,0.392v13.01c0,0.392,0.196,0.488,0.588,0.488h13.233 + L22.475,40.728z"/> + <path fill="#0F42D3" d="M22.483,40.701c0,0.294,0.294,0.294,0.49,0.194l16.248-16.504c0.488-0.488,0.393-0.683,0-0.977 + L22.974,7.105c-0.098-0.098-0.391-0.098-0.391,0.097v9.767H9.271c-0.293,0-0.489,0.195-0.489,0.391v12.988 + c0,0.392,0.196,0.487,0.587,0.487h13.214L22.483,40.701z"/> + <path fill="#1043D4" d="M22.494,40.675c0,0.293,0.294,0.293,0.489,0.194l16.226-16.478c0.487-0.488,0.392-0.683,0-0.975 + L22.982,7.132c-0.098-0.098-0.391-0.098-0.391,0.097v9.751H9.298c-0.293,0-0.489,0.195-0.489,0.39v12.967 + c0,0.392,0.196,0.487,0.586,0.487H22.59L22.494,40.675z"/> + <path fill="#1144D4" d="M22.502,40.647c0,0.293,0.293,0.293,0.488,0.194L39.191,24.39c0.487-0.487,0.392-0.682,0-0.974 + L22.991,7.16c-0.098-0.098-0.391-0.098-0.391,0.097v9.735H9.328c-0.293,0-0.488,0.195-0.488,0.39v12.948 + c0,0.39,0.195,0.486,0.585,0.486h13.176L22.502,40.647z"/> + <path fill="#1245D5" d="M22.514,40.621c0,0.292,0.292,0.292,0.487,0.194L39.177,24.39c0.488-0.486,0.392-0.68,0-0.972L23,7.188 + c-0.098-0.098-0.39-0.098-0.39,0.096v9.72H9.356c-0.292,0-0.487,0.195-0.487,0.39v12.926c0,0.39,0.195,0.486,0.585,0.486H22.61 + L22.514,40.621z"/> + <path fill="#1346D5" d="M22.522,40.595c0,0.292,0.292,0.292,0.487,0.194L39.165,24.39c0.485-0.485,0.389-0.679,0-0.97 + L23.009,7.213c-0.098-0.097-0.389-0.097-0.389,0.097v9.704H9.384c-0.292,0-0.486,0.194-0.486,0.389V30.31 + c0,0.389,0.195,0.484,0.584,0.484h13.138L22.522,40.595z"/> + <path fill="#1447D6" d="M22.531,40.567c0,0.291,0.292,0.291,0.486,0.193l16.132-16.372c0.484-0.484,0.389-0.678,0-0.969 + L23.018,7.241c-0.097-0.097-0.389-0.097-0.389,0.097v9.688H9.414c-0.292,0-0.486,0.194-0.486,0.388v12.885 + c0,0.388,0.195,0.483,0.583,0.483h13.118L22.531,40.567z"/> + <path fill="#1548D6" d="M22.542,40.541c0,0.291,0.292,0.291,0.485,0.192l16.107-16.346c0.484-0.484,0.389-0.677,0-0.968 + L23.026,7.268c-0.097-0.097-0.388-0.097-0.388,0.097v9.672H9.441c-0.291,0-0.485,0.194-0.485,0.388v12.865 + c0,0.388,0.194,0.483,0.582,0.483h13.099L22.542,40.541z"/> + <path fill="#1649D7" d="M22.551,40.515c0,0.291,0.291,0.291,0.484,0.193l16.083-16.321c0.485-0.483,0.389-0.676,0-0.966 + L23.036,7.294c-0.097-0.097-0.388-0.097-0.388,0.096v9.657H9.47c-0.291,0-0.484,0.193-0.484,0.387v12.844 + c0,0.387,0.194,0.481,0.582,0.481h13.08L22.551,40.515z"/> + <path fill="#174AD7" d="M22.561,40.487c0,0.291,0.291,0.291,0.484,0.193l16.061-16.294c0.483-0.482,0.388-0.674,0-0.964 + L23.044,7.321c-0.097-0.096-0.387-0.096-0.387,0.097v9.641H9.5c-0.29,0-0.483,0.193-0.483,0.386v12.823 + c0,0.387,0.193,0.481,0.58,0.481h13.062L22.561,40.487z"/> + <path fill="#184BD8" d="M22.57,40.462c0,0.289,0.29,0.289,0.483,0.191l16.038-16.267c0.481-0.481,0.387-0.673,0-0.962 + L23.053,7.349c-0.097-0.096-0.387-0.096-0.387,0.096v9.626H9.527c-0.29,0-0.483,0.193-0.483,0.385v12.802 + c0,0.386,0.193,0.481,0.58,0.481h13.042L22.57,40.462z"/> + <path fill="#194CD8" d="M22.58,40.435c0,0.289,0.29,0.289,0.482,0.192l16.014-16.242c0.481-0.481,0.387-0.672,0-0.961 + L23.062,7.375c-0.097-0.096-0.386-0.096-0.386,0.096v9.611H9.557c-0.289,0-0.482,0.192-0.482,0.385v12.782 + c0,0.384,0.193,0.479,0.579,0.479h13.023L22.58,40.435z"/> + <path fill="#1A4DD9" d="M22.589,40.408c0,0.288,0.289,0.288,0.482,0.192l15.99-16.216c0.48-0.48,0.386-0.672,0-0.959L23.071,7.402 + c-0.097-0.096-0.385-0.096-0.385,0.095v9.595H9.585c-0.289,0-0.482,0.192-0.482,0.384v12.761c0,0.385,0.193,0.479,0.578,0.479 + h13.004L22.589,40.408z"/> + <path fill="#1B4ED9" d="M22.6,40.382c0,0.288,0.289,0.288,0.481,0.192l15.967-16.19c0.48-0.479,0.385-0.67,0-0.958L23.081,7.43 + c-0.096-0.096-0.384-0.096-0.384,0.095v9.58H9.614c-0.288,0-0.481,0.192-0.481,0.384v12.741c0,0.383,0.193,0.478,0.577,0.478 + h12.985L22.6,40.382z"/> + <path fill="#1C4FDA" d="M22.608,40.354c0,0.289,0.289,0.289,0.48,0.192l15.943-16.164c0.479-0.478,0.386-0.669,0-0.957 + L23.088,7.457c-0.096-0.096-0.384-0.096-0.384,0.095v9.564H9.643c-0.288,0-0.48,0.191-0.48,0.383v12.719 + c0,0.383,0.192,0.479,0.577,0.479h12.966L22.608,40.354z"/> + <path fill="#1D50DA" d="M22.619,40.328c0,0.287,0.288,0.287,0.479,0.19l15.92-16.136c0.479-0.478,0.384-0.668,0-0.955 + L23.098,7.482c-0.096-0.096-0.384-0.096-0.384,0.095v9.548H9.67c-0.288,0-0.479,0.191-0.479,0.382v12.699 + c0,0.382,0.191,0.479,0.575,0.479h12.947L22.619,40.328z"/> + <path fill="#1E51DB" d="M22.628,40.302c0,0.287,0.288,0.287,0.479,0.191l15.896-16.111c0.479-0.477,0.385-0.667,0-0.954 + L23.106,7.51c-0.096-0.096-0.383-0.096-0.383,0.094v9.533H9.699c-0.287,0-0.479,0.191-0.479,0.382v12.679 + c0,0.382,0.191,0.477,0.575,0.477h12.928L22.628,40.302z"/> + <path fill="#1F52DB" d="M22.637,40.274c0,0.287,0.288,0.287,0.479,0.19L38.99,24.381c0.478-0.476,0.382-0.666,0-0.952 + L23.115,7.538c-0.095-0.096-0.382-0.096-0.382,0.094v9.517H9.729c-0.287,0-0.478,0.191-0.478,0.381v12.657 + c0,0.381,0.191,0.477,0.574,0.477h12.909L22.637,40.274z"/> + <path fill="#2053DC" d="M22.647,40.249c0,0.285,0.287,0.285,0.478,0.189l15.85-16.058c0.477-0.475,0.382-0.665,0-0.95 + L23.125,7.563c-0.096-0.095-0.382-0.095-0.382,0.095v9.501H9.757c-0.286,0-0.478,0.19-0.478,0.381v12.636 + c0,0.381,0.191,0.475,0.573,0.475h12.89L22.647,40.249z"/> + <path fill="#2154DC" d="M22.656,40.222c0,0.285,0.287,0.285,0.477,0.19L38.96,24.38c0.477-0.475,0.381-0.664,0-0.949L23.133,7.59 + c-0.096-0.095-0.382-0.095-0.382,0.095v9.486H9.786c-0.286,0-0.477,0.19-0.477,0.38v12.617c0,0.379,0.191,0.474,0.572,0.474 + h12.871L22.656,40.222z"/> + <path fill="#2255DD" d="M22.667,40.194c0,0.285,0.286,0.285,0.477,0.189l15.802-16.004c0.476-0.474,0.382-0.663,0-0.947 + L23.143,7.618c-0.096-0.095-0.381-0.095-0.381,0.094v9.471H9.814c-0.285,0-0.476,0.189-0.476,0.379v12.596 + c0,0.379,0.191,0.473,0.572,0.473h12.851L22.667,40.194z"/> + <path fill="#2356DD" d="M22.675,40.169c0,0.284,0.286,0.284,0.476,0.189l15.779-15.979c0.475-0.473,0.381-0.662,0-0.945 + L23.151,7.645c-0.095-0.094-0.38-0.094-0.38,0.094v9.455H9.843c-0.285,0-0.475,0.189-0.475,0.378v12.574 + c0,0.379,0.19,0.474,0.571,0.474h12.832L22.675,40.169z"/> + <path fill="#2457DE" d="M22.686,40.144c0,0.282,0.285,0.282,0.475,0.188l15.756-15.953c0.474-0.472,0.379-0.66,0-0.944 + L23.159,7.671c-0.095-0.094-0.379-0.094-0.379,0.094v9.439H9.873c-0.285,0-0.475,0.189-0.475,0.378v12.554 + c0,0.378,0.19,0.472,0.569,0.472H22.78L22.686,40.144z"/> + <path fill="#2558DE" d="M22.694,40.115c0,0.282,0.285,0.282,0.474,0.188l15.733-15.925c0.473-0.471,0.379-0.66,0-0.942 + L23.168,7.698c-0.095-0.094-0.379-0.094-0.379,0.094v9.424H9.9c-0.284,0-0.474,0.189-0.474,0.377v12.535 + c0,0.376,0.189,0.471,0.568,0.471h12.794L22.694,40.115z"/> + <path fill="#2659DF" d="M22.705,40.089c0,0.283,0.284,0.283,0.473,0.188l15.708-15.899c0.474-0.471,0.38-0.659,0-0.941 + L23.177,7.726c-0.095-0.094-0.379-0.094-0.379,0.094v9.408H9.929c-0.284,0-0.473,0.188-0.473,0.377v12.514 + c0,0.376,0.189,0.469,0.568,0.469h12.775L22.705,40.089z"/> + <path fill="#275ADF" d="M22.714,40.063c0,0.281,0.284,0.281,0.473,0.188l15.685-15.874c0.473-0.47,0.379-0.658,0-0.939 + L23.188,7.752c-0.095-0.094-0.378-0.094-0.378,0.094v9.392H9.958c-0.283,0-0.472,0.188-0.472,0.376v12.492 + c0,0.375,0.189,0.47,0.567,0.47H22.81L22.714,40.063z"/> + <path fill="#285BE0" d="M22.724,40.036c0,0.281,0.283,0.281,0.472,0.188l15.662-15.847c0.472-0.469,0.378-0.656,0-0.938 + L23.195,7.779c-0.095-0.094-0.377-0.094-0.377,0.094v9.376H9.986c-0.283,0-0.472,0.188-0.472,0.375v12.472 + c0,0.375,0.189,0.467,0.566,0.467h12.737L22.724,40.036z"/> + <path fill="#295CE0" d="M22.732,40.009c0,0.281,0.283,0.281,0.471,0.188l15.639-15.82c0.471-0.468,0.377-0.655,0-0.936 + L23.205,7.807c-0.094-0.094-0.377-0.094-0.377,0.093v9.361H10.016c-0.283,0-0.471,0.188-0.471,0.375v12.451 + c0,0.374,0.188,0.468,0.565,0.468h12.718L22.732,40.009z"/> + <path fill="#2A5DE1" d="M22.742,39.981c0,0.28,0.283,0.28,0.47,0.188l15.615-15.793c0.471-0.468,0.377-0.654,0-0.935L23.212,7.833 + c-0.094-0.094-0.376-0.094-0.376,0.093v9.345H10.044c-0.282,0-0.471,0.188-0.471,0.375v12.431c0,0.374,0.188,0.467,0.565,0.467 + h12.699L22.742,39.981z"/> + <path fill="#2B5EE1" d="M22.752,39.956c0,0.279,0.282,0.279,0.469,0.188l15.592-15.768c0.469-0.467,0.376-0.653,0-0.933 + L23.223,7.86c-0.094-0.093-0.375-0.093-0.375,0.093v9.331H10.072c-0.282,0-0.47,0.187-0.47,0.373v12.41 + c0,0.373,0.188,0.466,0.563,0.466h12.68L22.752,39.956z"/> + <path fill="#2C5FE2" d="M22.761,39.929c0,0.28,0.282,0.28,0.469,0.188l15.567-15.742c0.47-0.466,0.377-0.652,0-0.932L23.231,7.887 + c-0.094-0.093-0.375-0.093-0.375,0.092v9.315H10.102c-0.281,0-0.469,0.187-0.469,0.373v12.388c0,0.372,0.188,0.465,0.563,0.465 + h12.661L22.761,39.929z"/> + <path fill="#2D60E2" d="M22.771,39.901c0,0.279,0.281,0.279,0.469,0.187l15.544-15.714c0.469-0.465,0.375-0.65,0-0.93 + L23.239,7.914c-0.094-0.093-0.375-0.093-0.375,0.093v9.299H10.129c-0.28,0-0.468,0.186-0.468,0.373v12.367 + c0,0.372,0.188,0.465,0.562,0.465h12.642L22.771,39.901z"/> + <path fill="#2E61E3" d="M22.781,39.876c0,0.277,0.281,0.277,0.468,0.186l15.521-15.688c0.468-0.464,0.375-0.649,0-0.928 + L23.25,7.94c-0.094-0.093-0.375-0.093-0.375,0.092v9.284H10.158c-0.28,0-0.467,0.186-0.467,0.372v12.347 + c0,0.372,0.188,0.464,0.561,0.464h12.623L22.781,39.876z"/> + <path fill="#2F62E3" d="M22.792,39.851c0,0.277,0.28,0.277,0.467,0.186l15.499-15.663c0.466-0.464,0.373-0.649,0-0.927 + l-15.5-15.479c-0.093-0.092-0.374-0.092-0.374,0.092v9.268H10.188c-0.28,0-0.467,0.186-0.467,0.372v12.325 + c0,0.371,0.187,0.463,0.56,0.463h12.604L22.792,39.851z"/> + <path fill="#3063E4" d="M22.799,39.821c0,0.279,0.281,0.279,0.467,0.187l15.475-15.636c0.465-0.463,0.373-0.648,0-0.925 + L23.267,7.995c-0.093-0.092-0.373-0.092-0.373,0.092v9.252H10.215c-0.279,0-0.466,0.185-0.466,0.371v12.305 + c0,0.369,0.187,0.461,0.56,0.461h12.584L22.799,39.821z"/> + <path fill="#3164E4" d="M22.81,39.796c0,0.277,0.28,0.277,0.466,0.186l15.451-15.61c0.465-0.462,0.372-0.646,0-0.924L23.275,8.021 + c-0.094-0.092-0.373-0.092-0.373,0.092v9.237H10.245c-0.279,0-0.465,0.185-0.465,0.37v12.285c0,0.369,0.187,0.461,0.559,0.461 + h12.565L22.81,39.796z"/> + <path fill="#3265E5" d="M22.819,39.771c0,0.276,0.279,0.276,0.465,0.185l15.428-15.583c0.465-0.461,0.373-0.646,0-0.922 + L23.284,8.048c-0.093-0.092-0.372-0.092-0.372,0.092v9.221H10.273c-0.279,0-0.464,0.185-0.464,0.37v12.265 + c0,0.369,0.186,0.46,0.558,0.46h12.546L22.819,39.771z"/> + <path fill="#3366E5" d="M22.83,39.743c0,0.275,0.278,0.275,0.464,0.185l15.404-15.557c0.464-0.46,0.371-0.645,0-0.921 + L23.293,8.076c-0.093-0.092-0.372-0.092-0.372,0.092v9.206h-12.62c-0.278,0-0.464,0.184-0.464,0.369v12.243 + c0,0.369,0.186,0.461,0.557,0.461h12.527L22.83,39.743z"/> + <path fill="#3366E6" d="M22.838,39.716c0,0.276,0.278,0.276,0.464,0.186l15.38-15.532c0.463-0.459,0.371-0.643,0-0.918 + L23.302,8.103c-0.093-0.092-0.371-0.092-0.371,0.091v9.19H10.331c-0.278,0-0.463,0.185-0.463,0.368v12.222 + c0,0.368,0.186,0.459,0.556,0.459h12.508L22.838,39.716z"/> + <path fill="#3467E6" d="M22.849,39.688c0,0.275,0.278,0.275,0.463,0.185l15.357-15.504c0.461-0.458,0.369-0.642,0-0.917 + L23.312,8.129C23.217,8.038,22.94,8.038,22.94,8.22v9.174H10.358c-0.277,0-0.462,0.184-0.462,0.368v12.203 + c0,0.366,0.185,0.458,0.555,0.458H22.94L22.849,39.688z"/> + <path fill="#3568E7" d="M22.857,39.663c0,0.275,0.277,0.275,0.462,0.184l15.333-15.478c0.461-0.458,0.37-0.641,0-0.916 + L23.319,8.156c-0.093-0.092-0.37-0.092-0.37,0.091v9.159H10.387c-0.277,0-0.461,0.184-0.461,0.367v12.182 + c0,0.366,0.185,0.457,0.554,0.457h12.47L22.857,39.663z"/> + <path fill="#3669E7" d="M22.867,39.637c0,0.274,0.277,0.274,0.461,0.183l15.31-15.452c0.461-0.458,0.368-0.64,0-0.915 + l-15.31-15.27c-0.092-0.091-0.369-0.091-0.369,0.091v9.143H10.417c-0.277,0-0.461,0.184-0.461,0.366v12.16 + c0,0.365,0.184,0.457,0.553,0.457h12.451L22.867,39.637z"/> + <path fill="#376AE8" d="M22.877,39.608c0,0.274,0.276,0.274,0.46,0.184l15.287-15.425c0.461-0.457,0.369-0.639,0-0.913 + L23.337,8.21c-0.092-0.091-0.368-0.091-0.368,0.091v9.127H10.445c-0.276,0-0.46,0.183-0.46,0.366v12.14 + c0,0.365,0.184,0.455,0.552,0.455h12.432L22.877,39.608z"/> + <path fill="#386BE8" d="M22.886,39.583c0,0.273,0.276,0.273,0.46,0.184l15.263-15.4c0.459-0.456,0.368-0.638,0-0.911L23.347,8.237 + c-0.092-0.091-0.368-0.091-0.368,0.091v9.112H10.474c-0.275,0-0.459,0.183-0.459,0.365v12.119c0,0.363,0.184,0.454,0.552,0.454 + h12.413L22.886,39.583z"/> + <path fill="#396CE9" d="M22.896,39.558c0,0.272,0.276,0.272,0.459,0.182l15.239-15.374c0.459-0.455,0.367-0.637,0-0.91 + L23.355,8.265c-0.092-0.091-0.368-0.091-0.368,0.09v9.097H10.502c-0.275,0-0.459,0.183-0.459,0.364v12.099 + c0,0.364,0.184,0.454,0.551,0.454h12.394L22.896,39.558z"/> + <path fill="#3A6DE9" d="M22.905,39.528c0,0.273,0.276,0.273,0.459,0.184l15.217-15.348c0.457-0.454,0.366-0.635,0-0.908 + L23.364,8.292c-0.092-0.091-0.367-0.091-0.367,0.09v9.081H10.531c-0.275,0-0.458,0.182-0.458,0.364v12.079 + c0,0.361,0.184,0.453,0.55,0.453h12.374L22.905,39.528z"/> + <path fill="#3B6EEA" d="M22.916,39.503c0,0.271,0.275,0.271,0.458,0.182l15.193-15.32c0.456-0.453,0.366-0.634,0-0.906 + L23.374,8.318c-0.092-0.091-0.366-0.091-0.366,0.09v9.065H10.56c-0.274,0-0.458,0.182-0.458,0.363v12.057 + c0,0.362,0.183,0.453,0.549,0.453h12.355L22.916,39.503z"/> + <path fill="#3C6FEA" d="M22.924,39.478c0,0.271,0.274,0.271,0.457,0.181l15.17-15.294c0.455-0.453,0.365-0.633,0-0.905 + L23.381,8.344c-0.092-0.09-0.366-0.09-0.366,0.09v9.05H10.588c-0.274,0-0.457,0.181-0.457,0.363v12.036 + c0,0.361,0.183,0.451,0.548,0.451h12.336L22.924,39.478z"/> + <path fill="#3D70EB" d="M22.935,39.45c0,0.271,0.274,0.271,0.456,0.181l15.146-15.269c0.455-0.452,0.365-0.632,0-0.904 + L23.391,8.373c-0.091-0.09-0.365-0.09-0.365,0.09v9.034H10.617c-0.274,0-0.456,0.181-0.456,0.362v12.017 + c0,0.36,0.182,0.45,0.547,0.45h12.317L22.935,39.45z"/> + <path fill="#3E71EB" d="M22.943,39.424c0,0.271,0.274,0.271,0.456,0.181l15.123-15.243c0.455-0.451,0.363-0.631,0-0.902 + L23.399,8.398c-0.091-0.09-0.365-0.09-0.365,0.09v9.019h-12.39c-0.273,0-0.455,0.181-0.455,0.361v11.994 + c0,0.361,0.182,0.451,0.546,0.451h12.298L22.943,39.424z"/> + <path fill="#3F72EC" d="M22.954,39.397c0,0.271,0.273,0.271,0.455,0.181l15.099-15.217c0.455-0.45,0.365-0.63,0-0.9L23.408,8.425 + c-0.091-0.09-0.364-0.09-0.364,0.089v9.003h-12.37c-0.272,0-0.455,0.18-0.455,0.361v11.974c0,0.359,0.182,0.449,0.546,0.449 + h12.279L22.954,39.397z"/> + <path fill="#4073EC" d="M22.962,39.37c0,0.27,0.273,0.27,0.455,0.18l15.076-15.188c0.453-0.45,0.363-0.629,0-0.898L23.417,8.453 + c-0.091-0.09-0.363-0.09-0.363,0.089v8.988H10.704c-0.272,0-0.454,0.18-0.454,0.36v11.954c0,0.358,0.182,0.448,0.545,0.448h12.26 + L22.962,39.37z"/> + <path fill="#4174ED" d="M22.973,39.344c0,0.271,0.272,0.271,0.454,0.181L38.479,24.36c0.452-0.449,0.362-0.628,0-0.897 + L23.426,8.48c-0.091-0.09-0.363-0.09-0.363,0.089v8.972H10.731c-0.272,0-0.453,0.18-0.453,0.359v11.933 + c0,0.357,0.181,0.447,0.544,0.447h12.241L22.973,39.344z"/> + <path fill="#4275ED" d="M22.982,39.315c0,0.271,0.272,0.271,0.453,0.181l15.028-15.137c0.453-0.448,0.363-0.626,0-0.896 + L23.436,8.506c-0.091-0.09-0.362-0.09-0.362,0.089v8.957H10.76c-0.271,0-0.453,0.18-0.453,0.358v11.913 + c0,0.357,0.181,0.445,0.543,0.445h12.222L22.982,39.315z"/> + <path fill="#4376EE" d="M22.991,39.29c0,0.27,0.272,0.27,0.453,0.179l15.005-15.109c0.451-0.447,0.362-0.625,0-0.894L23.444,8.534 + c-0.091-0.089-0.362-0.089-0.362,0.089v8.94H10.79c-0.271,0-0.452,0.18-0.452,0.358v11.893c0,0.355,0.181,0.444,0.542,0.444 + h12.203L22.991,39.29z"/> + <path fill="#4477EE" d="M23.001,39.265c0,0.268,0.271,0.268,0.452,0.178l14.981-15.083c0.449-0.446,0.361-0.625,0-0.893 + L23.454,8.561c-0.091-0.089-0.361-0.089-0.361,0.089v8.925H10.817c-0.271,0-0.451,0.179-0.451,0.357v11.87 + c0,0.356,0.181,0.445,0.542,0.445h12.184L23.001,39.265z"/> + <path fill="#4578EF" d="M23.01,39.237c0,0.268,0.271,0.268,0.451,0.178l14.959-15.058c0.449-0.445,0.359-0.624,0-0.891 + L23.461,8.587c-0.09-0.089-0.361-0.089-0.361,0.089v8.91H10.847c-0.27,0-0.45,0.179-0.45,0.356v11.851 + c0,0.354,0.18,0.444,0.541,0.444h12.165L23.01,39.237z"/> + <path fill="#4679EF" d="M23.021,39.21c0,0.268,0.271,0.268,0.45,0.18l14.935-15.032c0.449-0.445,0.36-0.623,0-0.889L23.47,8.614 + c-0.09-0.089-0.36-0.089-0.36,0.089v8.894H10.875c-0.27,0-0.45,0.179-0.45,0.356v11.83c0,0.354,0.18,0.444,0.54,0.444H23.11 + L23.021,39.21z"/> + <path fill="#477AF0" d="M23.03,39.185c0,0.267,0.27,0.267,0.449,0.178l14.912-15.005c0.447-0.444,0.359-0.622,0-0.888 + L23.479,8.642c-0.09-0.089-0.359-0.089-0.359,0.088v8.878H10.903c-0.27,0-0.449,0.178-0.449,0.356v11.809 + c0,0.354,0.18,0.441,0.539,0.441h12.127L23.03,39.185z"/> + <path fill="#487BF0" d="M23.041,39.157c0,0.266,0.269,0.266,0.448,0.177l14.89-14.979c0.446-0.443,0.357-0.62,0-0.886 + L23.488,8.668c-0.09-0.089-0.359-0.089-0.359,0.088v8.863H10.933c-0.269,0-0.448,0.177-0.448,0.354v11.788 + c0,0.354,0.179,0.441,0.538,0.441h12.107L23.041,39.157z"/> + <path fill="#497CF1" d="M23.049,39.13c0,0.268,0.269,0.268,0.448,0.178l14.865-14.952c0.446-0.442,0.357-0.619,0-0.885 + L23.498,8.695c-0.09-0.088-0.358-0.088-0.358,0.088v8.848H10.961c-0.269,0-0.448,0.177-0.448,0.354v11.767 + c0,0.354,0.179,0.44,0.538,0.44H23.14L23.049,39.13z"/> + <path fill="#4A7DF1" d="M23.06,39.104c0,0.266,0.269,0.266,0.447,0.176l14.841-14.925c0.446-0.442,0.356-0.618,0-0.883 + L23.506,8.723c-0.09-0.088-0.358-0.088-0.358,0.088v8.832H10.989c-0.268,0-0.447,0.177-0.447,0.354v11.747 + c0,0.354,0.179,0.439,0.537,0.439h12.069L23.06,39.104z"/> + <path fill="#4B7EF2" d="M23.068,39.077c0,0.265,0.269,0.265,0.447,0.177l14.817-14.899c0.445-0.441,0.357-0.617,0-0.882 + L23.516,8.75c-0.09-0.088-0.357-0.088-0.357,0.088v8.816h-12.14c-0.268,0-0.446,0.177-0.446,0.354v11.726 + c0,0.353,0.179,0.439,0.536,0.439h12.05L23.068,39.077z"/> + <path fill="#4C7FF2" d="M23.079,39.051c0,0.265,0.268,0.265,0.446,0.177l14.794-14.874c0.444-0.44,0.356-0.616,0-0.88 + L23.523,8.775c-0.089-0.088-0.357-0.088-0.357,0.088v8.8h-12.12c-0.268,0-0.446,0.176-0.446,0.353v11.705 + c0,0.353,0.178,0.439,0.535,0.439h12.031L23.079,39.051z"/> + <path fill="#4D80F3" d="M23.087,39.024c0,0.264,0.268,0.264,0.445,0.176l14.771-14.848c0.443-0.439,0.355-0.615,0-0.878 + L23.532,8.803c-0.089-0.088-0.356-0.088-0.356,0.087v8.785H11.075c-0.267,0-0.445,0.176-0.445,0.352v11.685 + c0,0.352,0.178,0.438,0.534,0.438h12.012L23.087,39.024z"/> + <path fill="#4E81F3" d="M23.098,38.997c0,0.264,0.267,0.264,0.445,0.176l14.748-14.82c0.442-0.438,0.354-0.614,0-0.877 + L23.542,8.831c-0.089-0.088-0.356-0.088-0.356,0.087v8.769H11.104c-0.266,0-0.444,0.176-0.444,0.352v11.665 + c0,0.35,0.178,0.437,0.533,0.437h11.993L23.098,38.997z"/> + <path fill="#4F82F4" d="M23.107,38.972c0,0.262,0.267,0.262,0.444,0.174l14.723-14.794c0.441-0.438,0.355-0.613,0-0.875 + L23.55,8.856c-0.089-0.087-0.355-0.087-0.355,0.087v8.754H11.132c-0.266,0-0.443,0.176-0.443,0.351V29.69 + c0,0.351,0.177,0.438,0.532,0.438h11.974L23.107,38.972z"/> + <path fill="#5083F4" d="M23.116,38.944c0,0.262,0.266,0.262,0.443,0.175l14.699-14.769c0.443-0.437,0.354-0.611,0-0.874 + L23.56,8.883c-0.089-0.087-0.354-0.087-0.354,0.087v8.738H11.162c-0.266,0-0.443,0.175-0.443,0.35v11.622 + c0,0.35,0.177,0.437,0.531,0.437h11.955L23.116,38.944z"/> + <path fill="#5184F5" d="M23.126,38.918c0,0.263,0.266,0.263,0.442,0.174l14.677-14.741c0.441-0.436,0.354-0.61,0-0.872 + L23.568,8.911c-0.089-0.087-0.354-0.087-0.354,0.087v8.723H11.19c-0.265,0-0.442,0.175-0.442,0.35v11.603 + c0,0.348,0.177,0.436,0.531,0.436h11.936L23.126,38.918z"/> + <path fill="#5285F5" d="M23.135,38.892c0,0.262,0.266,0.262,0.442,0.174L38.23,24.35c0.44-0.436,0.354-0.609,0-0.871L23.578,8.938 + c-0.088-0.087-0.354-0.087-0.354,0.087v8.707H11.218c-0.265,0-0.441,0.175-0.441,0.349v11.581c0,0.348,0.177,0.434,0.53,0.434 + h11.917L23.135,38.892z"/> + <path fill="#5386F6" d="M23.146,38.864c0,0.261,0.265,0.261,0.441,0.174l14.629-14.689c0.44-0.435,0.354-0.608,0-0.869 + L23.586,8.964c-0.088-0.087-0.353-0.087-0.353,0.086v8.691H11.248c-0.264,0-0.441,0.174-0.441,0.348v11.562 + c0,0.347,0.177,0.433,0.529,0.433h11.898L23.146,38.864z"/> + <path fill="#5487F6" d="M23.154,38.838c0,0.261,0.264,0.261,0.44,0.174l14.608-14.663c0.438-0.434,0.352-0.607,0-0.867 + L23.595,8.992c-0.088-0.087-0.353-0.087-0.353,0.086v8.676H11.276c-0.264,0-0.44,0.174-0.44,0.348v11.54 + c0,0.346,0.176,0.433,0.528,0.433h11.878L23.154,38.838z"/> + <path fill="#5588F7" d="M23.165,38.812c0,0.26,0.264,0.26,0.44,0.174l14.583-14.637c0.438-0.433,0.353-0.606,0-0.866L23.604,9.019 + c-0.088-0.086-0.352-0.086-0.352,0.086v8.661H11.304c-0.263,0-0.439,0.173-0.439,0.347v11.52c0,0.346,0.176,0.432,0.527,0.432 + h11.859L23.165,38.812z"/> + <path fill="#5689F7" d="M23.173,38.784c0,0.26,0.264,0.26,0.439,0.173l14.561-14.609c0.438-0.433,0.351-0.605,0-0.865 + L23.612,9.045c-0.088-0.086-0.351-0.086-0.351,0.086v8.645H11.333c-0.263,0-0.438,0.173-0.438,0.346v11.499 + c0,0.345,0.175,0.431,0.526,0.431h11.84L23.173,38.784z"/> + <path fill="#578AF8" d="M23.184,38.758c0,0.259,0.263,0.259,0.438,0.173l14.537-14.584c0.437-0.432,0.351-0.604,0-0.863 + L23.622,9.072c-0.088-0.086-0.351-0.086-0.351,0.086v8.629H11.362c-0.263,0-0.438,0.173-0.438,0.346V29.61 + c0,0.346,0.175,0.432,0.525,0.432h11.821L23.184,38.758z"/> + <path fill="#588BF8" d="M23.192,38.731c0,0.258,0.263,0.258,0.438,0.172l14.513-14.558c0.436-0.431,0.35-0.603,0-0.861L23.63,9.1 + c-0.087-0.086-0.35-0.086-0.35,0.086v8.614h-11.89c-0.262,0-0.437,0.173-0.437,0.345v11.456c0,0.344,0.175,0.43,0.524,0.43H23.28 + L23.192,38.731z"/> + <path fill="#598CF9" d="M23.203,38.704c0,0.259,0.262,0.259,0.437,0.173l14.488-14.532c0.437-0.43,0.351-0.602,0-0.86L23.64,9.126 + c-0.088-0.086-0.35-0.086-0.35,0.085v8.598h-11.87c-0.262,0-0.437,0.172-0.437,0.344v11.438c0,0.344,0.175,0.428,0.524,0.428 + h11.784L23.203,38.704z"/> + <path fill="#5A8DF9" d="M23.212,38.678c0,0.259,0.262,0.259,0.436,0.173l14.466-14.506c0.436-0.429,0.35-0.6,0-0.858L23.648,9.153 + c-0.088-0.086-0.349-0.086-0.349,0.085v8.583H11.448c-0.262,0-0.436,0.172-0.436,0.344v11.416c0,0.343,0.174,0.428,0.523,0.428 + h11.764L23.212,38.678z"/> + <path fill="#5B8EFA" d="M23.222,38.651c0,0.257,0.262,0.257,0.436,0.17L38.1,24.343c0.434-0.428,0.349-0.599,0-0.856L23.657,9.181 + c-0.087-0.085-0.349-0.085-0.349,0.085v8.567H11.477c-0.261,0-0.435,0.171-0.435,0.343v11.394c0,0.343,0.174,0.428,0.522,0.428 + h11.745L23.222,38.651z"/> + <path fill="#5C8FFA" d="M23.231,38.625c0,0.256,0.261,0.256,0.435,0.171l14.418-14.453c0.435-0.428,0.349-0.598,0-0.855 + L23.667,9.208c-0.087-0.085-0.348-0.085-0.348,0.085v8.551H11.505c-0.261,0-0.434,0.172-0.434,0.343v11.375 + c0,0.34,0.173,0.426,0.521,0.426h11.726L23.231,38.625z"/> + <path fill="#5D90FB" d="M23.24,38.599c0,0.256,0.261,0.256,0.434,0.17L38.07,24.342c0.433-0.427,0.349-0.598,0-0.854L23.674,9.233 + c-0.087-0.085-0.347-0.085-0.347,0.085v8.536H11.534c-0.26,0-0.434,0.171-0.434,0.342V29.55c0,0.342,0.173,0.426,0.52,0.426 + h11.707L23.24,38.599z"/> + <path fill="#5E91FB" d="M23.25,38.571c0,0.256,0.26,0.256,0.434,0.171l14.371-14.401c0.432-0.426,0.347-0.596,0-0.852 + L23.685,9.261c-0.087-0.085-0.347-0.085-0.347,0.084v8.521H11.562c-0.259,0-0.433,0.171-0.433,0.342V29.54 + c0,0.34,0.173,0.424,0.52,0.424h11.688L23.25,38.571z"/> + <path fill="#5F92FC" d="M23.26,38.545c0,0.255,0.26,0.255,0.433,0.17l14.349-14.374c0.432-0.425,0.347-0.595,0-0.85L23.692,9.289 + c-0.087-0.085-0.346-0.085-0.346,0.084v8.504H11.591c-0.259,0-0.432,0.171-0.432,0.341V29.53c0,0.339,0.173,0.423,0.519,0.423 + h11.669L23.26,38.545z"/> + <path fill="#6093FC" d="M23.27,38.519c0,0.254,0.259,0.254,0.432,0.17l14.326-14.347c0.431-0.425,0.345-0.594,0-0.849 + L23.702,9.314c-0.087-0.085-0.346-0.085-0.346,0.084v8.489H11.621c-0.259,0-0.432,0.17-0.432,0.34v11.291 + c0,0.34,0.173,0.424,0.518,0.424h11.649L23.27,38.519z"/> + <path fill="#6194FD" d="M23.279,38.491c0,0.255,0.259,0.255,0.431,0.17l14.302-14.322c0.429-0.424,0.345-0.593,0-0.847 + L23.71,9.341c-0.086-0.084-0.345-0.084-0.345,0.084v8.473H11.648c-0.259,0-0.431,0.17-0.431,0.34v11.271 + c0,0.338,0.172,0.422,0.517,0.422h11.63L23.279,38.491z"/> + <path fill="#6295FD" d="M23.29,38.465c0,0.254,0.258,0.254,0.43,0.169l14.28-14.294c0.428-0.423,0.344-0.592,0-0.846L23.719,9.369 + c-0.086-0.084-0.344-0.084-0.344,0.084v8.458H11.677c-0.258,0-0.43,0.17-0.43,0.339v11.25c0,0.338,0.172,0.422,0.516,0.422h11.612 + L23.29,38.465z"/> + <path fill="#6396FE" d="M23.298,38.438c0,0.254,0.258,0.254,0.43,0.17l14.255-14.269c0.428-0.422,0.344-0.591,0-0.844 + l-14.255-14.1c-0.086-0.084-0.344-0.084-0.344,0.084v8.442H11.707c-0.258,0-0.429,0.169-0.429,0.338v11.228 + c0,0.338,0.171,0.422,0.515,0.422h11.592L23.298,38.438z"/> + <path fill="#6497FE" d="M23.309,38.412c0,0.253,0.257,0.253,0.429,0.168l14.23-14.242c0.428-0.422,0.344-0.59,0-0.843 + L23.737,9.422c-0.086-0.084-0.344-0.084-0.344,0.083v8.427H11.734c-0.257,0-0.429,0.169-0.429,0.338v11.209 + c0,0.336,0.171,0.418,0.514,0.418h11.573L23.309,38.412z"/> + <path fill="#6598FF" d="M23.317,38.385c0,0.253,0.257,0.253,0.429,0.169l14.208-14.216c0.428-0.42,0.344-0.588,0-0.841 + L23.747,9.45c-0.086-0.084-0.343-0.084-0.343,0.083v8.411h-11.64c-0.257,0-0.428,0.169-0.428,0.337v11.188 + c0,0.336,0.171,0.419,0.514,0.419h11.554L23.317,38.385z"/> + <path fill="#6699FF" d="M23.328,38.358c0,0.252,0.257,0.252,0.428,0.168l14.185-14.19c0.426-0.42,0.342-0.587,0-0.839 + L23.754,9.477c-0.086-0.084-0.342-0.084-0.342,0.083v8.396h-11.62c-0.256,0-0.427,0.168-0.427,0.336v11.167 + c0,0.335,0.171,0.418,0.513,0.418h11.535L23.328,38.358z"/> + </g> + + <linearGradient id="XMLID_10_" gradientUnits="userSpaceOnUse" x1="210.7969" y1="-239.4214" x2="210.7969" y2="-268.5771" gradientTransform="matrix(1 0 0 -1 -186 -230)"> + <stop offset="0" style="stop-color:#FFFFFF"/> + <stop offset="1" style="stop-color:#6699FF"/> + </linearGradient> + <path fill="url(#XMLID_10_)" d="M23.328,38.358c0,0.252,0.257,0.252,0.428,0.168l14.185-14.19c0.426-0.42,0.342-0.587,0-0.839 + L23.754,9.477c-0.086-0.084-0.342-0.084-0.342,0.083v8.396h-11.62c-0.256,0-0.427,0.168-0.427,0.336v11.167 + c0,0.335,0.171,0.418,0.513,0.418h11.535L23.328,38.358z"/> +</g> +<g id="crop_x0020_marks"> + <path fill="none" d="M48.06,47.999h-48v-48h48V47.999z"/> +</g> +</svg> diff --git a/docbook-xsl-1.76.1/images/colorsvg/note.svg b/docbook-xsl-1.76.1/images/colorsvg/note.svg new file mode 100644 index 0000000..e94c610 --- /dev/null +++ b/docbook-xsl-1.76.1/images/colorsvg/note.svg @@ -0,0 +1,200 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [ + <!ENTITY ns_svg "http://www.w3.org/2000/svg"> + <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> +]> +<svg version="1.1" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="25.5" height="25.5" viewBox="0 0 25.5 25.5" + overflow="visible" enable-background="new 0 0 25.5 25.5" xml:space="preserve"> +<g id="Layer_x0020_1"> + <g> + <path fill="#1F60A9" d="M25.5,12.7c0,7-5.7,12.7-12.7,12.7C5.7,25.5,0,19.8,0,12.7C0,5.6,5.7,0,12.7,0s12.7,5.7,12.7,12.7H25.5z" + /> + <path fill="#2060AA" d="M25.473,12.7c0,6.983-5.688,12.671-12.672,12.671C5.718,25.471,0.03,19.783,0.03,12.7 + S5.718,0.029,12.701,0.029c6.984,0,12.671,5.687,12.671,12.671H25.473z"/> + <path fill="#2160AB" d="M25.443,12.7c0,6.968-5.674,12.642-12.643,12.642C5.734,25.439,0.061,19.768,0.061,12.7 + c0-7.068,5.674-12.642,12.642-12.642c6.968,0,12.641,5.674,12.641,12.642H25.443z"/> + <path fill="#2160AC" d="M25.415,12.7c0,6.95-5.661,12.612-12.612,12.612C5.752,25.412,0.091,19.751,0.091,12.7 + c0-7.051,5.661-12.612,12.612-12.612S25.316,5.749,25.316,12.7H25.415z"/> + <path fill="#2260AD" d="M25.387,12.7c0,6.936-5.648,12.583-12.583,12.583C5.769,25.383,0.121,19.734,0.121,12.7 + c0-7.035,5.648-12.583,12.583-12.583c6.937,0,12.583,5.648,12.583,12.583H25.387z"/> + <path fill="#2360AE" d="M25.357,12.701c0,6.919-5.635,12.554-12.553,12.554C5.787,25.354,0.152,19.719,0.152,12.701 + c0-7.019,5.635-12.554,12.554-12.554S25.26,5.782,25.26,12.701H25.357z"/> + <path fill="#2460AF" d="M25.33,12.7c0,6.903-5.622,12.524-12.525,12.524C5.803,25.323,0.181,19.702,0.181,12.7 + S5.803,0.175,12.706,0.175c6.903,0,12.524,5.621,12.524,12.525H25.33z"/> + <path fill="#2560B0" d="M25.302,12.701c0,6.887-5.608,12.496-12.496,12.496C5.82,25.294,0.212,19.686,0.212,12.701 + c0-6.986,5.608-12.496,12.496-12.496c6.888,0,12.496,5.608,12.496,12.496H25.302z"/> + <path fill="#2661B1" d="M25.273,12.7c0,6.87-5.597,12.467-12.467,12.467C5.837,25.266,0.242,19.67,0.242,12.7 + c0-6.969,5.595-12.467,12.467-12.467c6.871,0,12.467,5.596,12.467,12.467H25.273z"/> + <path fill="#2661B2" d="M25.245,12.7c0,6.854-5.583,12.438-12.438,12.438C5.854,25.234,0.272,19.652,0.272,12.7 + S5.854,0.262,12.709,0.262c6.855,0,12.438,5.583,12.438,12.438H25.245z"/> + <path fill="#2761B3" d="M25.216,12.7c0,6.839-5.567,12.407-12.408,12.407C5.872,25.205,0.303,19.637,0.303,12.7 + c0-6.937,5.569-12.408,12.408-12.408S25.12,5.861,25.12,12.7H25.216z"/> + <path fill="#2861B4" d="M25.188,12.7c0,6.823-5.557,12.38-12.378,12.38C5.889,25.177,0.333,19.62,0.333,12.7 + c0-6.92,5.556-12.379,12.379-12.379c6.823,0,12.38,5.556,12.38,12.379H25.188z"/> + <path fill="#2961B5" d="M25.16,12.7c0,6.807-5.543,12.35-12.351,12.35C5.906,25.146,0.363,19.604,0.363,12.7 + c0-6.904,5.543-12.35,12.35-12.35s12.35,5.543,12.35,12.35H25.16z"/> + <path fill="#2A61B6" d="M25.131,12.7c0,6.792-5.529,12.321-12.32,12.321C5.923,25.117,0.393,19.588,0.393,12.7 + c0-6.888,5.53-12.32,12.321-12.32s12.32,5.53,12.32,12.32H25.131z"/> + <path fill="#2A61B7" d="M25.104,12.7c0,6.774-5.518,12.292-12.292,12.292C5.94,25.088,0.424,19.57,0.424,12.7 + c0-6.872,5.517-12.292,12.291-12.292c6.773,0,12.292,5.517,12.292,12.292H25.104z"/> + <path fill="#2B61B8" d="M25.075,12.7c0,6.759-5.505,12.263-12.263,12.263C5.958,25.059,0.455,19.555,0.455,12.7 + c0-6.855,5.503-12.262,12.262-12.262c6.76,0,12.262,5.504,12.262,12.262H25.075z"/> + <path fill="#2C61B9" d="M25.046,12.7c0,6.743-5.489,12.233-12.232,12.233C5.975,25.029,0.484,19.539,0.484,12.7 + c0-6.839,5.491-12.233,12.233-12.233c6.743,0,12.233,5.491,12.233,12.233H25.046z"/> + <path fill="#2D61BA" d="M25.018,12.7c0,6.727-5.478,12.204-12.204,12.204C5.992,25,0.514,19.521,0.514,12.7 + c0-6.822,5.478-12.204,12.204-12.204S24.922,5.973,24.922,12.7H25.018z"/> + <path fill="#2E61BB" d="M24.988,12.7c0,6.711-5.463,12.175-12.173,12.175C6.009,24.971,0.544,19.506,0.544,12.7 + c0-6.807,5.464-12.175,12.175-12.175S24.895,5.99,24.895,12.7H24.988z"/> + <path fill="#2F61BC" d="M24.962,12.701c0,6.693-5.45,12.145-12.146,12.145C6.026,24.941,0.575,19.49,0.575,12.701 + c0-6.79,5.451-12.146,12.146-12.146c6.695,0,12.146,5.452,12.146,12.146H24.962z"/> + <path fill="#2F61BD" d="M24.934,12.7c0,6.678-5.438,12.116-12.117,12.116C6.043,24.911,0.605,19.475,0.605,12.7 + S6.043,0.584,12.722,0.584c6.678,0,12.116,5.438,12.116,12.116H24.934z"/> + <path fill="#3061BE" d="M24.904,12.7c0,6.661-5.426,12.087-12.087,12.087C6.06,24.882,0.635,19.457,0.635,12.7 + c0-6.757,5.425-12.087,12.087-12.087c6.661,0,12.086,5.425,12.086,12.087H24.904z"/> + <path fill="#3162BF" d="M24.876,12.7c0,6.646-5.412,12.059-12.058,12.059C6.078,24.854,0.666,19.439,0.666,12.7 + c0-6.741,5.412-12.058,12.058-12.058S24.783,6.054,24.783,12.7H24.876z"/> + <path fill="#3262C0" d="M24.85,12.701c0,6.63-5.399,12.027-12.03,12.027C6.095,24.823,0.696,19.425,0.696,12.701 + c0-6.725,5.399-12.029,12.029-12.029c6.628,0,12.028,5.399,12.028,12.029H24.85z"/> + <path fill="#3362C1" d="M24.818,12.7c0,6.614-5.385,11.999-12,11.999C6.112,24.794,0.727,19.408,0.727,12.7s5.385-12,12-12 + c6.614,0,12,5.386,12,12H24.818z"/> + <path fill="#3362C2" d="M24.791,12.7c0,6.598-5.373,11.97-11.971,11.97C6.129,24.764,0.756,19.393,0.756,12.7 + S6.129,0.73,12.727,0.73c6.597,0,11.968,5.372,11.968,11.97H24.791z"/> + <path fill="#3462C3" d="M24.764,12.7c0,6.582-5.359,11.94-11.942,11.94C6.146,24.734,0.787,19.375,0.787,12.7 + c0-6.676,5.359-11.941,11.941-11.941c6.583,0,11.941,5.36,11.941,11.941H24.764z"/> + <path fill="#3562C4" d="M24.734,12.7c0,6.565-5.348,11.911-11.913,11.911C6.164,24.705,0.817,19.359,0.817,12.7 + S6.164,0.788,12.729,0.788c6.566,0,11.912,5.347,11.912,11.912H24.734z"/> + <path fill="#3662C5" d="M24.706,12.7c0,6.55-5.333,11.883-11.883,11.883C6.181,24.676,0.847,19.343,0.847,12.7 + c0-6.643,5.333-11.883,11.883-11.883c6.549,0,11.881,5.333,11.881,11.883H24.706z"/> + <path fill="#3762C6" d="M24.678,12.7c0,6.534-5.32,11.854-11.854,11.854C6.198,24.646,0.877,19.326,0.877,12.7 + S6.198,0.846,12.731,0.846c6.535,0,11.853,5.32,11.853,11.854H24.678z"/> + <path fill="#3762C7" d="M24.648,12.7c0,6.518-5.308,11.823-11.824,11.823C6.215,24.617,0.908,19.311,0.908,12.7 + c0-6.611,5.307-11.824,11.824-11.824S24.557,6.183,24.557,12.7H24.648z"/> + <path fill="#3862C8" d="M24.621,12.7c0,6.502-5.294,11.795-11.795,11.795C6.232,24.588,0.938,19.294,0.938,12.7 + c0-6.594,5.293-11.795,11.795-11.795c6.501,0,11.794,5.294,11.794,11.795H24.621z"/> + <path fill="#3962C9" d="M24.593,12.7c0,6.485-5.28,11.766-11.766,11.766C6.249,24.559,0.968,19.277,0.968,12.7 + c0-6.578,5.281-11.766,11.766-11.766S24.5,6.215,24.5,12.7H24.593z"/> + <path fill="#3A62CA" d="M24.564,12.7c0,6.469-5.27,11.737-11.737,11.737C6.266,24.527,0.999,19.261,0.999,12.7 + c0-6.561,5.267-11.737,11.736-11.737c6.469,0,11.738,5.268,11.738,11.736L24.564,12.7L24.564,12.7z"/> + <path fill="#3B62CB" d="M24.536,12.7c0,6.452-5.255,11.707-11.708,11.707C6.284,24.5,1.029,19.245,1.029,12.7 + c0-6.545,5.255-11.707,11.707-11.707s11.708,5.255,11.708,11.708L24.536,12.7L24.536,12.7z"/> + <path fill="#3C62CC" d="M24.508,12.701c0,6.438-5.24,11.678-11.678,11.678c-6.529,0.092-11.77-5.15-11.77-11.678 + c0-6.528,5.241-11.679,11.678-11.679S24.416,6.263,24.416,12.7L24.508,12.701L24.508,12.701z"/> + <path fill="#3C62CD" d="M24.479,12.7c0,6.421-5.229,11.649-11.648,11.649C6.318,24.439,1.09,19.212,1.09,12.7 + c0-6.513,5.228-11.649,11.649-11.649c6.42,0,11.65,5.228,11.65,11.649H24.479z"/> + <path fill="#3D63CE" d="M24.45,12.7c0,6.403-5.216,11.618-11.62,11.618C6.335,24.41,1.12,19.195,1.12,12.7 + c0-6.497,5.215-11.62,11.62-11.62c6.404,0,11.619,5.215,11.619,11.62H24.45z"/> + <path fill="#3E63CF" d="M24.423,12.7c0,6.389-5.202,11.591-11.591,11.591C6.353,24.382,1.15,19.18,1.15,12.7 + c0-6.48,5.203-11.591,11.591-11.591c6.388,0,11.59,5.203,11.59,11.591H24.423z"/> + <path fill="#3F63D0" d="M24.395,12.701c0,6.373-5.188,11.561-11.562,11.561C6.37,24.354,1.18,19.164,1.18,12.701 + c0-6.464,5.189-11.562,11.562-11.562c6.371,0,11.562,5.189,11.562,11.562H24.395z"/> + <path fill="#4063D1" d="M24.365,12.7c0,6.356-5.176,11.532-11.532,11.532C6.387,24.322,1.21,19.146,1.21,12.7 + c0-6.447,5.177-11.533,11.533-11.533c6.354,0,11.532,5.176,11.532,11.533H24.365z"/> + <path fill="#4063D2" d="M24.337,12.7c0,6.341-5.163,11.503-11.503,11.503C6.403,24.293,1.24,19.13,1.24,12.7 + c0-6.431,5.163-11.503,11.503-11.503c6.34,0,11.504,5.163,11.504,11.503H24.337z"/> + <path fill="#4163D3" d="M24.311,12.7c0,6.323-5.15,11.474-11.476,11.474C6.42,24.264,1.271,19.114,1.271,12.7 + c0-6.415,5.149-11.474,11.474-11.474c6.323,0,11.474,5.15,11.474,11.474H24.311z"/> + <path fill="#4263D4" d="M24.281,12.701c0,6.308-5.137,11.445-11.445,11.445C6.438,24.234,1.301,19.1,1.301,12.701 + c0-6.399,5.137-11.445,11.445-11.445c6.307,0,11.445,5.136,11.445,11.445H24.281z"/> + <path fill="#4363D4" d="M24.253,12.7c0,6.292-5.124,11.416-11.416,11.416C6.455,24.205,1.332,19.082,1.332,12.7 + c0-6.382,5.123-11.415,11.415-11.415S24.163,6.408,24.163,12.7H24.253z"/> + <path fill="#4463D5" d="M24.225,12.7c0,6.276-5.111,11.387-11.387,11.387C6.472,24.176,1.362,19.064,1.362,12.7 + c0-6.366,5.11-11.386,11.386-11.386c6.275,0,11.387,5.11,11.387,11.386H24.225z"/> + <path fill="#4563D6" d="M24.195,12.7c0,6.26-5.098,11.356-11.357,11.356C6.49,24.146,1.392,19.049,1.392,12.7 + c0-6.35,5.098-11.357,11.357-11.357S24.105,6.441,24.105,12.7H24.195z"/> + <path fill="#4563D7" d="M24.167,12.7c0,6.243-5.084,11.327-11.328,11.327C6.506,24.116,1.422,19.033,1.422,12.7 + S6.506,1.372,12.75,1.372S24.078,6.456,24.078,12.7H24.167z"/> + <path fill="#4663D8" d="M24.139,12.7c0,6.228-5.07,11.299-11.299,11.299C6.523,24.087,1.453,19.018,1.453,12.7 + S6.523,1.401,12.751,1.401c6.228,0,11.298,5.071,11.298,11.299H24.139z"/> + <path fill="#4763D9" d="M24.109,12.7c0,6.212-5.058,11.271-11.27,11.271C6.541,24.059,1.483,19,1.483,12.7 + c0-6.3,5.058-11.27,11.27-11.27S24.023,6.488,24.023,12.7H24.109z"/> + <path fill="#4863DA" d="M24.082,12.7c0,6.194-5.045,11.239-11.24,11.239C6.558,24.027,1.513,18.982,1.513,12.7 + c0-6.284,5.045-11.24,11.24-11.24c6.195,0,11.241,5.045,11.241,11.24H24.082z"/> + <path fill="#4964DB" d="M24.055,12.7c0,6.18-5.033,11.211-11.212,11.211c-6.268,0.088-11.3-4.943-11.3-11.211 + c0-6.268,5.032-11.211,11.211-11.211c6.18,0,11.212,5.032,11.212,11.211H24.055z"/> + <path fill="#4964DC" d="M24.025,12.7c0,6.164-5.02,11.182-11.183,11.182C6.592,23.971,1.574,18.951,1.574,12.7 + S6.593,1.518,12.756,1.518S23.938,6.537,23.938,12.7H24.025z"/> + <path fill="#4A64DD" d="M23.997,12.7c0,6.147-5.006,11.153-11.153,11.153C6.609,23.939,1.604,18.936,1.604,12.7 + S6.609,1.547,12.757,1.547c6.146,0,11.152,5.006,11.152,11.153H23.997z"/> + <path fill="#4B64DE" d="M23.969,12.7c0,6.131-4.992,11.124-11.124,11.124C6.626,23.91,1.634,18.918,1.634,12.7 + c0-6.219,4.992-11.124,11.124-11.124c6.131,0,11.124,4.992,11.124,11.124H23.969z"/> + <path fill="#4C64DF" d="M23.939,12.7c0,6.114-4.979,11.095-11.094,11.095C6.644,23.882,1.665,18.902,1.665,12.7 + c0-6.203,4.979-11.094,11.094-11.094c6.115,0,11.095,4.979,11.095,11.094H23.939z"/> + <path fill="#4D64E0" d="M23.912,12.7c0,6.1-4.967,11.065-11.065,11.065C6.661,23.852,1.695,18.886,1.695,12.7 + c0-6.186,4.966-11.065,11.065-11.065c6.098,0,11.065,4.966,11.065,11.065H23.912z"/> + <path fill="#4E64E1" d="M23.884,12.7c0,6.083-4.952,11.036-11.036,11.036C6.678,23.822,1.725,18.869,1.725,12.7 + c0-6.17,4.954-11.036,11.036-11.036c6.083,0,11.036,4.954,11.036,11.036H23.884z"/> + <path fill="#4E64E2" d="M23.855,12.7c0,6.067-4.94,11.007-11.007,11.007C6.695,23.793,1.755,18.854,1.755,12.7 + c0-6.154,4.94-11.007,11.007-11.007c6.066,0,11.005,4.94,11.005,11.007H23.855z"/> + <path fill="#4F64E3" d="M23.827,12.7c0,6.051-4.929,10.978-10.978,10.978C6.712,23.764,1.786,18.837,1.786,12.7 + c0-6.137,4.927-10.978,10.978-10.978c6.05,0,10.977,4.927,10.977,10.978H23.827z"/> + <path fill="#5064E4" d="M23.799,12.7c0,6.034-4.914,10.948-10.949,10.948C6.729,23.734,1.816,18.82,1.816,12.7 + c0-6.121,4.914-10.948,10.948-10.948c6.034,0,10.949,4.914,10.949,10.948H23.799z"/> + <path fill="#5164E5" d="M23.771,12.7c0,6.019-4.901,10.919-10.919,10.919C6.747,23.705,1.846,18.805,1.846,12.7 + c0-6.105,4.9-10.919,10.919-10.919c6.018,0,10.918,4.9,10.918,10.919H23.771z"/> + <path fill="#5264E6" d="M23.742,12.7c0,6.003-4.889,10.89-10.891,10.89C6.764,23.675,1.876,18.788,1.876,12.7 + c0-6.088,4.888-10.89,10.89-10.89c6.001,0,10.89,4.888,10.89,10.89H23.742z"/> + <path fill="#5264E7" d="M23.714,12.7c0,5.985-4.875,10.86-10.861,10.86C6.781,23.646,1.906,18.771,1.906,12.7 + c0-6.072,4.875-10.861,10.861-10.861c5.985,0,10.86,4.875,10.86,10.861H23.714z"/> + <path fill="#5364E8" d="M23.686,12.7c0,5.971-4.861,10.832-10.832,10.832C6.798,23.616,1.937,18.755,1.937,12.7 + c0-6.056,4.862-10.832,10.832-10.832C18.738,1.869,23.6,6.73,23.6,12.7H23.686z"/> + <path fill="#5464E9" d="M23.657,12.7c0,5.954-4.849,10.803-10.803,10.803C6.815,23.587,1.967,18.739,1.967,12.7 + c0-6.04,4.849-10.802,10.803-10.802c5.955,0,10.802,4.848,10.802,10.802H23.657z"/> + <path fill="#5565EA" d="M23.629,12.7c0,5.938-4.836,10.772-10.774,10.772C6.833,23.559,1.998,18.723,1.998,12.7 + c0-6.023,4.835-10.773,10.773-10.773S23.544,6.762,23.544,12.7H23.629z"/> + <path fill="#5665EB" d="M23.602,12.7c0,5.922-4.824,10.743-10.746,10.743C6.85,23.527,2.027,18.706,2.027,12.7 + c0-6.006,4.822-10.744,10.744-10.744c5.922,0,10.745,4.822,10.745,10.744H23.602z"/> + <path fill="#5665EC" d="M23.572,12.7c0,5.905-4.811,10.715-10.715,10.715C6.867,23.499,2.058,18.689,2.058,12.7 + c0-5.99,4.809-10.715,10.714-10.715S23.486,6.794,23.486,12.7H23.572z"/> + <path fill="#5765ED" d="M23.544,12.7c0,5.89-4.797,10.686-10.687,10.686C6.884,23.471,2.088,18.674,2.088,12.7 + c0-5.974,4.796-10.686,10.686-10.686c5.889,0,10.686,4.796,10.686,10.686H23.544z"/> + <path fill="#5865EE" d="M23.516,12.7c0,5.874-4.783,10.655-10.657,10.655C6.901,23.439,2.118,18.657,2.118,12.7 + c0-5.958,4.783-10.657,10.657-10.657c5.874,0,10.657,4.784,10.657,10.657H23.516z"/> + <path fill="#5965EF" d="M23.486,12.7c0,5.858-4.771,10.627-10.627,10.627C6.918,23.41,2.148,18.641,2.148,12.7 + c0-5.941,4.77-10.627,10.627-10.627S23.402,6.843,23.402,12.7H23.486z"/> + <path fill="#5A65F0" d="M23.459,12.7c0,5.842-4.758,10.598-10.599,10.598C6.936,23.381,2.179,18.625,2.179,12.7 + c0-5.925,4.757-10.598,10.598-10.598c5.841,0,10.598,4.757,10.598,10.598H23.459z"/> + <path fill="#5B65F1" d="M23.432,12.7c0,5.825-4.744,10.569-10.571,10.569C6.953,23.352,2.209,18.607,2.209,12.7 + c0-5.909,4.744-10.569,10.569-10.569c5.826,0,10.57,4.744,10.57,10.569H23.432z"/> + <path fill="#5B65F2" d="M23.4,12.7c0,5.81-4.729,10.54-10.54,10.54C6.97,23.322,2.239,18.592,2.239,12.7 + c0-5.892,4.73-10.54,10.54-10.54c5.809,0,10.54,4.73,10.54,10.54H23.4z"/> + <path fill="#5C65F3" d="M23.373,12.7c0,5.794-4.719,10.511-10.511,10.511C6.987,23.293,2.27,18.576,2.27,12.7 + S6.987,2.189,12.78,2.189c5.793,0,10.511,4.717,10.511,10.511H23.373z"/> + <path fill="#5D65F4" d="M23.346,12.7c0,5.776-4.705,10.481-10.482,10.481C7.004,23.264,2.3,18.561,2.3,12.7 + S7.004,2.219,12.781,2.219c5.775,0,10.48,4.704,10.48,10.481H23.346z"/> + <path fill="#5E65F5" d="M23.316,12.7c0,5.762-4.691,10.452-10.453,10.452C7.021,23.232,2.33,18.543,2.33,12.7 + c0-5.843,4.691-10.452,10.452-10.452c5.761,0,10.452,4.691,10.452,10.452H23.316z"/> + <path fill="#5F65F6" d="M23.288,12.7c0,5.745-4.679,10.423-10.423,10.423C7.039,23.204,2.36,18.525,2.36,12.7 + c0-5.827,4.678-10.423,10.423-10.423c5.744,0,10.423,4.678,10.423,10.423H23.288z"/> + <path fill="#5F65F7" d="M23.26,12.7c0,5.729-4.664,10.394-10.394,10.394C7.056,23.175,2.391,18.511,2.391,12.7 + c0-5.811,4.665-10.393,10.394-10.393c5.729,0,10.393,4.665,10.393,10.394L23.26,12.7L23.26,12.7z"/> + <path fill="#6066F8" d="M23.23,12.7c0,5.713-4.651,10.364-10.364,10.364C7.073,23.146,2.421,18.494,2.421,12.7 + S7.073,2.335,12.786,2.335c5.712,0,10.364,4.652,10.364,10.365H23.23z"/> + <path fill="#6166F9" d="M23.203,12.7c0,5.696-4.639,10.335-10.335,10.335C7.09,23.116,2.451,18.479,2.451,12.7 + S7.09,2.365,12.786,2.365S23.121,7.004,23.121,12.7H23.203z"/> + <path fill="#6266FA" d="M23.175,12.7c0,5.681-4.626,10.306-10.307,10.306C7.107,23.087,2.481,18.462,2.481,12.7 + c0-5.762,4.626-10.306,10.307-10.306c5.68,0,10.306,4.625,10.306,10.306H23.175z"/> + <path fill="#6366FB" d="M23.146,12.7c0,5.665-4.613,10.276-10.277,10.276C7.124,23.059,2.512,18.445,2.512,12.7 + c0-5.746,4.612-10.277,10.277-10.277S23.064,7.036,23.064,12.7H23.146z"/> + <path fill="#6466FC" d="M23.118,12.7c0,5.647-4.601,10.248-10.248,10.248C7.142,23.027,2.542,18.43,2.542,12.7 + c0-5.729,4.6-10.248,10.248-10.248c5.647,0,10.247,4.6,10.247,10.248H23.118z"/> + <path fill="#6466FD" d="M23.09,12.7c0,5.633-4.587,10.219-10.219,10.219C7.159,22.998,2.572,18.412,2.572,12.7 + c0-5.713,4.586-10.219,10.219-10.219c5.632,0,10.219,4.586,10.219,10.219H23.09z"/> + <path fill="#6566FE" d="M23.062,12.7c0,5.616-4.574,10.188-10.19,10.188C7.176,22.969,2.603,18.396,2.603,12.7 + S7.176,2.511,12.792,2.511c5.615,0,10.188,4.573,10.188,10.189H23.062z"/> + <path fill="#6666FF" d="M23.033,12.7c0,5.601-4.561,10.159-10.161,10.159c-5.68,0.08-10.24-4.479-10.24-10.159 + c0-5.68,4.56-10.16,10.16-10.16c5.601,0,10.16,4.56,10.16,10.16H23.033z"/> + </g> + + <linearGradient id="XMLID_12_" gradientUnits="userSpaceOnUse" x1="198.625" y1="-253.916" x2="198.625" y2="-262.334" gradientTransform="matrix(1 0 0 -1 -186 -252.5)"> + <stop offset="0" style="stop-color:#FFFFFF"/> + <stop offset="1" style="stop-color:#6666FF"/> + </linearGradient> + <ellipse fill="url(#XMLID_12_)" cx="12.625" cy="5.625" rx="7.542" ry="4.209"/> + <g> + <path fill="#FFFFFF" d="M14.1,19.2c0,0.2,0,0.3-0.3,0.3H12c-0.2,0-0.3-0.1-0.3-0.3v-7.1h-1.4c-0.2,0-0.3-0.1-0.3-0.3v-1.2 + c0-0.2,0-0.3,0.3-0.3h3.5c0.2,0,0.3,0.1,0.3,0.3v8.5V19.2z M13,9.2c-0.8,0-1.5-0.7-1.5-1.5c0-0.8,0.7-1.5,1.5-1.5s1.5,0.7,1.5,1.5 + C14.5,8.5,13.8,9.2,13,9.2z"/> + </g> +</g> +</svg> diff --git a/docbook-xsl-1.76.1/images/colorsvg/prev.svg b/docbook-xsl-1.76.1/images/colorsvg/prev.svg new file mode 100644 index 0000000..7ceddec --- /dev/null +++ b/docbook-xsl-1.76.1/images/colorsvg/prev.svg @@ -0,0 +1,338 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [ + <!ENTITY ns_svg "http://www.w3.org/2000/svg"> + <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> +]> +<svg version="1.1" id="Previous" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="48" height="48" viewBox="0 0 48 48" + overflow="visible" enable-background="new 0 0 48 48" xml:space="preserve"> +<g> + <path fill="#FFFFFF" stroke="#FFFFFF" stroke-width="7.5901" stroke-linejoin="round" d="M25.659,6.898c0-0.301-0.3-0.301-0.5-0.2 + l-16.6,16.9c-0.5,0.5-0.4,0.7,0,1l16.6,16.7c0.103,0.101,0.399,0.101,0.399-0.1v-10h13.601c0.301,0,0.5-0.2,0.5-0.4v-13.3 + c0-0.4-0.199-0.5-0.601-0.5h-13.5L25.659,6.898z"/> + <g> + <path fill="#0033CC" d="M25.659,6.898c0-0.301-0.3-0.301-0.5-0.2l-16.6,16.9c-0.5,0.5-0.4,0.7,0,1l16.6,16.7 + c0.103,0.101,0.399,0.101,0.399-0.1v-10h13.601c0.301,0,0.5-0.2,0.5-0.4v-13.3c0-0.4-0.199-0.5-0.601-0.5h-13.5L25.659,6.898z"/> + <path fill="#0134CC" d="M25.648,6.925c0-0.3-0.299-0.3-0.498-0.2L8.575,23.6c-0.499,0.499-0.4,0.698,0,1L25.15,41.271 + c0.101,0.102,0.398,0.102,0.398-0.1v-9.984h13.58c0.303,0,0.5-0.197,0.5-0.397V17.508c0-0.4-0.197-0.499-0.6-0.499H25.55 + L25.648,6.925z"/> + <path fill="#0235CD" d="M25.641,6.953c0-0.3-0.3-0.3-0.498-0.2L8.588,23.601c-0.499,0.498-0.399,0.697,0,0.997l16.553,16.647 + c0.101,0.101,0.398,0.101,0.398-0.101v-9.971h13.562c0.299,0,0.498-0.197,0.498-0.398V17.519c0-0.399-0.199-0.499-0.6-0.499H25.54 + L25.641,6.953z"/> + <path fill="#0336CD" d="M25.63,6.979c0-0.299-0.299-0.299-0.498-0.199L8.603,23.601c-0.498,0.498-0.399,0.696,0,0.997 + l16.529,16.62c0.101,0.101,0.397,0.101,0.397-0.099v-9.954h13.544c0.299,0,0.495-0.199,0.495-0.397v-13.24 + c0-0.399-0.196-0.498-0.598-0.498H25.532L25.63,6.979z"/> + <path fill="#0437CE" d="M25.622,7.005c0-0.299-0.299-0.299-0.498-0.199L8.619,23.602c-0.498,0.497-0.398,0.695,0,0.994 + l16.505,16.598c0.101,0.1,0.396,0.1,0.396-0.102v-9.938h13.521c0.301,0,0.498-0.197,0.498-0.396V17.54 + c0-0.397-0.197-0.497-0.598-0.497h-13.42L25.622,7.005z"/> + <path fill="#0538CE" d="M25.611,7.033c0-0.298-0.299-0.298-0.498-0.199L8.633,23.602c-0.497,0.496-0.398,0.694,0,0.994 + l16.48,16.568c0.101,0.1,0.398,0.1,0.398-0.1v-9.924h13.502c0.299,0,0.498-0.197,0.498-0.396V17.548 + c0-0.397-0.199-0.496-0.598-0.496h-13.4L25.611,7.033z"/> + <path fill="#0639CF" d="M25.602,7.06c0-0.298-0.297-0.298-0.496-0.199L8.646,23.603c-0.496,0.496-0.396,0.693,0,0.99 + l16.458,16.546c0.101,0.101,0.396,0.101,0.396-0.1v-9.907h13.482c0.301,0,0.496-0.196,0.496-0.396V17.56 + c0-0.396-0.195-0.495-0.595-0.495H25.503L25.602,7.06z"/> + <path fill="#073ACF" d="M25.592,7.085c0-0.298-0.298-0.298-0.494-0.199L8.662,23.603c-0.495,0.495-0.396,0.692,0,0.989 + l16.436,16.518c0.1,0.102,0.396,0.102,0.396-0.098V31.12h13.465c0.297,0,0.494-0.197,0.494-0.396V17.569 + c0-0.396-0.197-0.495-0.595-0.495H25.493L25.592,7.085z"/> + <path fill="#083BD0" d="M25.583,7.111c0-0.297-0.297-0.297-0.494-0.198L8.677,23.604c-0.494,0.494-0.396,0.691,0,0.987 + l16.412,16.493c0.101,0.1,0.396,0.1,0.396-0.1v-9.877h13.447c0.297,0,0.493-0.195,0.493-0.396V17.58 + c0-0.396-0.196-0.494-0.594-0.494H25.484L25.583,7.111z"/> + <path fill="#093CD0" d="M25.573,7.139c0-0.296-0.296-0.296-0.494-0.197L8.69,23.604c-0.493,0.494-0.395,0.69,0,0.985l16.389,16.47 + c0.103,0.099,0.396,0.099,0.396-0.101V31.1h13.428c0.298,0,0.494-0.197,0.494-0.396V17.589c0-0.395-0.196-0.493-0.594-0.493 + H25.475L25.573,7.139z"/> + <path fill="#0A3DD1" d="M25.562,7.165c0-0.296-0.295-0.296-0.492-0.197L8.706,23.604c-0.493,0.492-0.395,0.688,0,0.983 + l16.366,16.44c0.1,0.098,0.396,0.098,0.396-0.101v-9.845h13.405c0.297,0,0.494-0.196,0.494-0.396V17.596 + c0-0.395-0.197-0.492-0.592-0.492H25.464L25.562,7.165z"/> + <path fill="#0B3ED1" d="M25.555,7.191c0-0.295-0.296-0.295-0.492-0.197L8.72,23.605c-0.492,0.491-0.394,0.688,0,0.982 + l16.342,16.414c0.1,0.099,0.395,0.099,0.395-0.099v-9.828h13.391c0.295,0,0.49-0.197,0.49-0.395V17.609 + c0-0.393-0.195-0.491-0.59-0.491H25.456L25.555,7.191z"/> + <path fill="#0C3FD2" d="M25.544,7.219c0-0.295-0.295-0.295-0.491-0.196L8.734,23.606c-0.491,0.49-0.394,0.687,0,0.98 + l16.318,16.389c0.099,0.101,0.394,0.101,0.394-0.098v-9.812h13.369c0.297,0,0.492-0.194,0.492-0.394V17.62 + c0-0.393-0.195-0.49-0.591-0.49H25.445L25.544,7.219z"/> + <path fill="#0D40D2" d="M25.534,7.245c0-0.294-0.293-0.294-0.49-0.196L8.749,23.606c-0.491,0.489-0.394,0.685,0,0.979 + l16.295,16.362c0.099,0.098,0.394,0.098,0.394-0.098v-9.798h13.35c0.295,0,0.49-0.196,0.49-0.395V17.628 + c0-0.392-0.195-0.489-0.588-0.489H25.438L25.534,7.245z"/> + <path fill="#0E41D3" d="M25.525,7.271c0-0.294-0.295-0.294-0.489-0.196L8.764,23.607c-0.49,0.489-0.393,0.685,0,0.979 + l16.271,16.335c0.102,0.101,0.395,0.101,0.395-0.097v-9.782h13.33c0.295,0,0.488-0.194,0.488-0.394V17.64 + c0-0.392-0.193-0.489-0.588-0.489H25.428L25.525,7.271z"/> + <path fill="#0F42D3" d="M25.516,7.298c0-0.293-0.293-0.293-0.488-0.195L8.778,23.607c-0.489,0.489-0.392,0.684,0,0.978 + l16.248,16.312c0.101,0.099,0.394,0.099,0.394-0.099v-9.767H38.73c0.293,0,0.49-0.195,0.49-0.393V17.65 + c0-0.391-0.197-0.488-0.589-0.488H25.417L25.516,7.298z"/> + <path fill="#1043D4" d="M25.505,7.325c0-0.293-0.293-0.293-0.487-0.195L8.792,23.608c-0.488,0.488-0.391,0.683,0,0.976 + l16.224,16.283c0.101,0.098,0.394,0.098,0.394-0.098v-9.752H38.7c0.295,0,0.489-0.192,0.489-0.39V17.661 + c0-0.391-0.194-0.487-0.586-0.487H25.409L25.505,7.325z"/> + <path fill="#1144D4" d="M25.497,7.352c0-0.292-0.293-0.292-0.487-0.194L8.808,23.608c-0.488,0.487-0.391,0.682,0,0.974 + L25.009,40.84c0.099,0.1,0.392,0.1,0.392-0.097v-9.734h13.272c0.293,0,0.488-0.194,0.488-0.39V17.67 + c0-0.39-0.195-0.487-0.586-0.487H25.398L25.497,7.352z"/> + <path fill="#1245D5" d="M25.486,7.378c0-0.292-0.293-0.292-0.487-0.195L8.822,23.609c-0.487,0.486-0.39,0.68,0,0.973l16.177,16.23 + c0.099,0.099,0.392,0.099,0.392-0.099v-9.72h13.254c0.293,0,0.485-0.194,0.485-0.391V17.681c0-0.389-0.192-0.486-0.584-0.486 + H25.391L25.486,7.378z"/> + <path fill="#1346D5" d="M25.479,7.406c0-0.292-0.293-0.292-0.486-0.195L8.837,23.61c-0.487,0.485-0.39,0.679,0,0.971 + l16.154,16.206c0.098,0.097,0.389,0.097,0.389-0.098v-9.705h13.236c0.291,0,0.485-0.192,0.485-0.389V17.69 + c0-0.388-0.194-0.485-0.584-0.485H25.38L25.479,7.406z"/> + <path fill="#1447D6" d="M25.468,7.432c0-0.292-0.292-0.292-0.485-0.194L8.852,23.611c-0.485,0.484-0.389,0.678,0,0.969 + l16.13,16.18c0.1,0.098,0.389,0.098,0.389-0.096v-9.688h13.217c0.291,0,0.486-0.192,0.486-0.39V17.702 + c0-0.388-0.195-0.484-0.584-0.484H25.37L25.468,7.432z"/> + <path fill="#1548D6" d="M25.458,7.458c0-0.291-0.291-0.291-0.485-0.194L8.866,23.611c-0.484,0.483-0.388,0.677,0,0.968 + L24.973,40.73c0.1,0.099,0.389,0.099,0.389-0.097v-9.673h13.197c0.291,0,0.483-0.193,0.483-0.388V17.71 + c0-0.387-0.192-0.483-0.582-0.483H25.359L25.458,7.458z"/> + <path fill="#1649D7" d="M25.448,7.484c0-0.291-0.289-0.291-0.484-0.194L8.88,23.613c-0.484,0.482-0.388,0.675,0,0.965 + l16.083,16.128c0.098,0.099,0.389,0.099,0.389-0.097v-9.657h13.178c0.291,0,0.484-0.192,0.484-0.388V17.722 + c0-0.387-0.193-0.482-0.582-0.482h-13.08L25.448,7.484z"/> + <path fill="#174AD7" d="M25.439,7.512c0-0.29-0.291-0.29-0.483-0.193L8.895,23.614c-0.483,0.482-0.387,0.675,0,0.963l16.06,16.104 + c0.1,0.096,0.391,0.096,0.391-0.098v-9.645H38.5c0.291,0,0.484-0.191,0.484-0.385V17.731c0-0.386-0.193-0.481-0.58-0.481H25.343 + L25.439,7.512z"/> + <path fill="#184BD8" d="M25.43,7.539c0-0.29-0.289-0.29-0.482-0.193L8.91,23.614c-0.482,0.482-0.387,0.674,0,0.962L24.947,40.65 + c0.098,0.098,0.387,0.098,0.387-0.096V30.93h13.141c0.291,0,0.48-0.193,0.48-0.388v-12.8c0-0.385-0.189-0.481-0.578-0.481H25.333 + L25.43,7.539z"/> + <path fill="#194CD8" d="M25.419,7.564c0-0.289-0.289-0.289-0.481-0.192L8.923,23.614c-0.481,0.481-0.386,0.673,0,0.961 + l16.015,16.05c0.097,0.098,0.386,0.098,0.386-0.098v-9.608h13.118c0.291,0,0.482-0.19,0.482-0.386V17.751 + c0-0.385-0.191-0.48-0.578-0.48H25.323L25.419,7.564z"/> + <path fill="#1A4DD9" d="M25.411,7.59c0-0.288-0.289-0.288-0.479-0.192L8.938,23.615c-0.481,0.48-0.385,0.671,0,0.96L24.93,40.598 + c0.096,0.096,0.385,0.096,0.385-0.096v-9.595h13.102c0.289,0,0.48-0.192,0.48-0.386V17.762c0-0.384-0.191-0.479-0.578-0.479 + H25.314L25.411,7.59z"/> + <path fill="#1B4ED9" d="M25.4,7.618c0-0.288-0.289-0.288-0.479-0.191L8.954,23.616c-0.481,0.479-0.385,0.67,0,0.958L24.919,40.57 + c0.099,0.097,0.386,0.097,0.386-0.096v-9.58h13.082c0.288,0,0.479-0.189,0.479-0.383V17.771c0-0.383-0.191-0.479-0.576-0.479 + H25.305L25.4,7.618z"/> + <path fill="#1C4FDA" d="M25.393,7.645c0-0.287-0.289-0.287-0.48-0.191L8.968,23.617c-0.48,0.479-0.384,0.669,0,0.958 + l15.941,15.971c0.099,0.097,0.385,0.097,0.385-0.095v-9.562h13.062c0.289,0,0.48-0.193,0.48-0.384V17.782 + c0-0.383-0.191-0.478-0.577-0.478H25.294L25.393,7.645z"/> + <path fill="#1D50DA" d="M25.38,7.67c0-0.287-0.286-0.287-0.479-0.19L8.981,23.617c-0.479,0.478-0.384,0.667,0,0.955L24.9,40.518 + c0.097,0.096,0.384,0.096,0.384-0.098v-9.548h13.043c0.289,0,0.479-0.188,0.479-0.383V17.792c0-0.382-0.19-0.477-0.576-0.477 + H25.286L25.38,7.67z"/> + <path fill="#1E51DB" d="M25.372,7.698c0-0.287-0.287-0.287-0.479-0.191L8.997,23.618c-0.479,0.477-0.383,0.667,0,0.954 + L24.893,40.49c0.098,0.095,0.385,0.095,0.385-0.096v-9.533H38.3c0.287,0,0.479-0.189,0.479-0.381V17.803 + c0-0.382-0.191-0.476-0.574-0.476h-12.93L25.372,7.698z"/> + <path fill="#1F52DB" d="M25.361,7.725c0-0.286-0.284-0.286-0.479-0.19L9.012,23.619c-0.478,0.475-0.383,0.666,0,0.951 + l15.872,15.895c0.097,0.096,0.384,0.096,0.384-0.095v-9.519h13.004c0.287,0,0.479-0.189,0.479-0.381V17.812 + c0-0.381-0.19-0.476-0.574-0.476H25.268L25.361,7.725z"/> + <path fill="#2053DC" d="M25.354,7.75c0-0.286-0.287-0.286-0.479-0.19L9.025,23.619c-0.477,0.475-0.382,0.665,0,0.951 + l15.849,15.867c0.099,0.095,0.385,0.095,0.385-0.098v-9.501h12.982c0.286,0,0.479-0.188,0.479-0.381V17.823 + c0-0.38-0.188-0.475-0.574-0.475h-12.89L25.354,7.75z"/> + <path fill="#2154DC" d="M25.343,7.777c0-0.286-0.286-0.286-0.477-0.19L9.04,23.619c-0.476,0.475-0.381,0.664,0,0.949L24.867,40.41 + c0.096,0.095,0.383,0.095,0.383-0.094V30.83h12.965c0.287,0,0.479-0.189,0.479-0.38V17.832c0-0.379-0.188-0.474-0.569-0.474 + H25.249L25.343,7.777z"/> + <path fill="#2255DD" d="M25.333,7.805c0-0.285-0.285-0.285-0.478-0.19L9.056,23.62c-0.476,0.474-0.381,0.663,0,0.948 + l15.801,15.812c0.098,0.096,0.383,0.096,0.383-0.095v-9.472h12.945c0.285,0,0.477-0.188,0.477-0.381V17.842 + c0-0.378-0.188-0.473-0.569-0.473H25.238L25.333,7.805z"/> + <path fill="#2356DD" d="M25.325,7.832c0-0.284-0.285-0.284-0.478-0.189L9.069,23.621c-0.475,0.473-0.381,0.662,0,0.945 + l15.779,15.791c0.096,0.094,0.381,0.094,0.381-0.098v-9.451h12.929c0.284,0,0.477-0.189,0.477-0.379V17.853 + c0-0.378-0.188-0.472-0.569-0.472H25.229L25.325,7.832z"/> + <path fill="#2457DE" d="M25.314,7.857c0-0.284-0.285-0.284-0.477-0.189L9.084,23.622c-0.474,0.472-0.38,0.66,0,0.944L24.838,40.33 + c0.098,0.094,0.381,0.094,0.381-0.094v-9.439h12.908c0.285,0,0.475-0.189,0.475-0.378V17.863c0-0.378-0.188-0.471-0.567-0.471 + H25.221L25.314,7.857z"/> + <path fill="#2558DE" d="M25.305,7.883c0-0.283-0.283-0.283-0.474-0.188L9.099,23.622c-0.473,0.471-0.379,0.659,0,0.942 + L24.831,40.3c0.095,0.097,0.379,0.097,0.379-0.094v-9.424H38.1c0.284,0,0.475-0.188,0.475-0.38V17.873 + c0-0.377-0.188-0.47-0.568-0.47H25.21L25.305,7.883z"/> + <path fill="#2659DF" d="M25.294,7.911c0-0.283-0.282-0.283-0.474-0.188l-15.708,15.9c-0.473,0.47-0.378,0.658,0,0.941 + L24.82,40.275c0.097,0.094,0.38,0.094,0.38-0.094v-9.408h12.868c0.285,0,0.476-0.188,0.476-0.377V17.882 + c0-0.376-0.188-0.469-0.567-0.469H25.2L25.294,7.911z"/> + <path fill="#275ADF" d="M25.286,7.938c0-0.282-0.283-0.282-0.474-0.188L9.127,23.624c-0.472,0.469-0.378,0.657,0,0.938 + L24.812,40.25c0.097,0.094,0.379,0.094,0.379-0.093v-9.394h12.851c0.283,0,0.476-0.188,0.476-0.379V17.894 + c0-0.375-0.188-0.469-0.566-0.469h-12.76L25.286,7.938z"/> + <path fill="#285BE0" d="M25.275,7.963c0-0.282-0.282-0.282-0.473-0.188L9.143,23.624c-0.471,0.469-0.377,0.656,0,0.938 + l15.662,15.658c0.096,0.094,0.379,0.094,0.379-0.094V30.75h12.83c0.282,0,0.473-0.188,0.473-0.376V17.902 + c0-0.375-0.188-0.468-0.564-0.468h-12.74L25.275,7.963z"/> + <path fill="#295CE0" d="M25.268,7.991c0-0.281-0.283-0.281-0.474-0.188L9.158,23.624c-0.471,0.468-0.377,0.655,0,0.937 + l15.638,15.633c0.095,0.096,0.377,0.096,0.377-0.092V30.74h12.812c0.283,0,0.473-0.188,0.473-0.375V17.914 + c0-0.375-0.188-0.467-0.564-0.467H25.171L25.268,7.991z"/> + <path fill="#2A5DE1" d="M25.257,8.018c0-0.281-0.282-0.281-0.471-0.188L9.171,23.625c-0.47,0.467-0.377,0.654,0,0.936 + l15.615,15.605c0.094,0.093,0.377,0.093,0.377-0.093v-9.347h12.793c0.28,0,0.471-0.188,0.471-0.375V17.923 + c0-0.374-0.188-0.467-0.563-0.467h-12.7L25.257,8.018z"/> + <path fill="#2B5EE1" d="M25.247,8.043c0-0.28-0.28-0.28-0.472-0.187L9.187,23.625c-0.469,0.467-0.376,0.653,0,0.934l15.59,15.582 + c0.096,0.092,0.377,0.092,0.377-0.094v-9.33h12.773c0.28,0,0.471-0.188,0.471-0.373v-12.41c0-0.373-0.188-0.466-0.562-0.466 + H25.152L25.247,8.043z"/> + <path fill="#2C5FE2" d="M25.238,8.07c0-0.28-0.282-0.28-0.471-0.186L9.201,23.625c-0.468,0.466-0.375,0.652,0,0.932L24.77,40.114 + c0.096,0.093,0.375,0.093,0.375-0.095v-9.312h12.754c0.281,0,0.471-0.188,0.471-0.373V17.943c0-0.373-0.188-0.465-0.562-0.465 + H25.145L25.238,8.07z"/> + <path fill="#2D60E2" d="M25.229,8.097c0-0.28-0.279-0.28-0.469-0.187L9.214,23.626c-0.468,0.465-0.375,0.651,0,0.931L24.76,40.086 + c0.094,0.094,0.374,0.094,0.374-0.093v-9.3H37.87c0.278,0,0.469-0.188,0.469-0.371V17.954c0-0.372-0.188-0.464-0.562-0.464H25.134 + L25.229,8.097z"/> + <path fill="#2E61E3" d="M25.219,8.124c0-0.279-0.281-0.279-0.468-0.186L9.229,23.627c-0.467,0.464-0.375,0.649,0,0.928 + l15.522,15.506c0.095,0.094,0.373,0.094,0.373-0.094v-9.281h12.718c0.28,0,0.467-0.188,0.467-0.373v-12.35 + c0-0.371-0.187-0.463-0.562-0.463H25.124L25.219,8.124z"/> + <path fill="#2F62E3" d="M25.208,8.15c0-0.279-0.278-0.279-0.467-0.186L9.245,23.628c-0.466,0.463-0.374,0.648,0,0.927 + l15.499,15.479c0.094,0.093,0.373,0.093,0.373-0.095v-9.268h12.695c0.28,0,0.469-0.186,0.469-0.371V17.975 + c0-0.371-0.188-0.463-0.562-0.463H25.116L25.208,8.15z"/> + <path fill="#3063E4" d="M25.2,8.177c0-0.278-0.279-0.278-0.468-0.185L9.259,23.628c-0.465,0.462-0.373,0.647,0,0.925l15.476,15.45 + c0.094,0.093,0.373,0.093,0.373-0.092V30.66h12.678c0.279,0,0.467-0.188,0.467-0.371V17.984c0-0.37-0.188-0.462-0.561-0.462 + H25.105L25.2,8.177z"/> + <path fill="#3164E4" d="M25.189,8.204c0-0.277-0.278-0.277-0.465-0.185L9.273,23.629c-0.465,0.462-0.373,0.646,0,0.924 + l15.452,15.426c0.092,0.092,0.371,0.092,0.371-0.092v-9.238h12.658c0.279,0,0.467-0.187,0.467-0.371V17.995 + c0-0.37-0.188-0.461-0.561-0.461H25.098L25.189,8.204z"/> + <path fill="#3265E5" d="M25.182,8.229c0-0.277-0.279-0.277-0.466-0.185L9.289,23.629c-0.464,0.461-0.372,0.645,0,0.921 + l15.428,15.4c0.094,0.093,0.372,0.093,0.372-0.093v-9.217h12.64c0.276,0,0.465-0.188,0.465-0.369V18.004 + c0-0.369-0.188-0.46-0.559-0.46H25.087L25.182,8.229z"/> + <path fill="#3366E5" d="M25.171,8.256c0-0.276-0.278-0.276-0.465-0.184L9.304,23.63c-0.463,0.46-0.372,0.644,0,0.92l15.404,15.373 + c0.093,0.093,0.371,0.093,0.371-0.092v-9.205h12.619c0.276,0,0.465-0.185,0.465-0.369V18.015c0-0.368-0.188-0.459-0.56-0.459 + H25.079L25.171,8.256z"/> + <path fill="#3366E6" d="M25.161,8.284c0-0.276-0.276-0.276-0.463-0.184L9.317,23.631c-0.462,0.459-0.371,0.643,0,0.919 + l15.381,15.347c0.094,0.095,0.37,0.095,0.37-0.09v-9.188h12.601c0.279,0,0.466-0.187,0.466-0.368V18.024 + c0-0.367-0.187-0.458-0.558-0.458H25.068L25.161,8.284z"/> + <path fill="#3467E6" d="M25.15,8.311c0-0.276-0.276-0.276-0.463-0.184L9.332,23.631c-0.462,0.459-0.371,0.642,0,0.917 + L24.688,39.87c0.096,0.091,0.371,0.091,0.371-0.093v-9.174h12.582c0.276,0,0.463-0.187,0.463-0.369V18.035 + c0-0.367-0.187-0.458-0.558-0.458H25.059L25.15,8.311z"/> + <path fill="#3568E7" d="M25.143,8.336c0-0.275-0.277-0.275-0.463-0.183L9.347,23.632c-0.461,0.458-0.37,0.641,0,0.917 + L24.68,39.846c0.094,0.092,0.37,0.092,0.37-0.093v-9.157h12.562c0.277,0,0.463-0.186,0.463-0.367V18.044 + c0-0.366-0.186-0.457-0.555-0.457H25.05L25.143,8.336z"/> + <path fill="#3669E7" d="M25.133,8.364c0-0.275-0.277-0.275-0.462-0.183L9.361,23.632c-0.461,0.458-0.369,0.64,0,0.916 + l15.31,15.271c0.095,0.093,0.369,0.093,0.369-0.09v-9.146h12.543c0.276,0,0.463-0.185,0.463-0.367V18.055 + c0-0.365-0.187-0.456-0.555-0.456H25.04L25.133,8.364z"/> + <path fill="#376AE8" d="M25.122,8.39c0-0.274-0.274-0.274-0.461-0.183L9.375,23.633c-0.459,0.457-0.368,0.639,0,0.914 + L24.663,39.79c0.092,0.091,0.366,0.091,0.366-0.091V30.57h12.525c0.275,0,0.461-0.184,0.461-0.364V18.064 + c0-0.365-0.186-0.455-0.555-0.455H25.029L25.122,8.39z"/> + <path fill="#386BE8" d="M25.113,8.417c0-0.274-0.276-0.274-0.461-0.183L9.39,23.634c-0.459,0.456-0.368,0.638,0,0.912 + l15.262,15.218c0.095,0.09,0.369,0.09,0.369-0.091v-9.112h12.504c0.275,0,0.461-0.184,0.461-0.365v-12.12 + c0-0.364-0.186-0.455-0.553-0.455H25.021L25.113,8.417z"/> + <path fill="#396CE9" d="M25.104,8.442c0-0.273-0.273-0.273-0.459-0.182L9.405,23.636c-0.458,0.455-0.368,0.636,0,0.909 + l15.24,15.189c0.092,0.093,0.367,0.093,0.367-0.09v-9.097h12.485c0.274,0,0.459-0.183,0.459-0.364v-12.1 + c0-0.363-0.185-0.454-0.552-0.454H25.012L25.104,8.442z"/> + <path fill="#3A6DE9" d="M25.094,8.47c0-0.273-0.273-0.273-0.457-0.182L9.419,23.636c-0.458,0.455-0.367,0.636,0,0.908 + l15.216,15.165c0.092,0.091,0.367,0.091,0.367-0.09v-9.081h12.466c0.274,0,0.459-0.185,0.459-0.364V18.096 + c0-0.363-0.185-0.453-0.552-0.453H25.003L25.094,8.47z"/> + <path fill="#3B6EEA" d="M25.085,8.497c0-0.272-0.274-0.272-0.459-0.181L9.435,23.637c-0.457,0.453-0.366,0.634,0,0.906 + l15.193,15.141c0.093,0.09,0.365,0.09,0.365-0.092v-9.064h12.446c0.271,0,0.457-0.182,0.457-0.361v-12.06 + c0-0.362-0.186-0.452-0.549-0.452H24.993L25.085,8.497z"/> + <path fill="#3C6FEA" d="M25.075,8.522c0-0.272-0.272-0.272-0.457-0.181L9.449,23.637c-0.457,0.453-0.366,0.633,0,0.905 + l15.169,15.112c0.092,0.091,0.362,0.091,0.362-0.09v-9.051h12.431c0.272,0,0.457-0.183,0.457-0.363V18.116 + c0-0.362-0.185-0.452-0.55-0.452H24.982L25.075,8.522z"/> + <path fill="#3D70EB" d="M25.064,8.549c0-0.271-0.272-0.271-0.455-0.181L9.462,23.638c-0.455,0.452-0.365,0.632,0,0.903 + l15.147,15.087c0.093,0.093,0.363,0.093,0.363-0.089v-9.035h12.409c0.272,0,0.456-0.181,0.456-0.359v-12.02 + c0-0.361-0.184-0.451-0.549-0.451H24.975L25.064,8.549z"/> + <path fill="#3E71EB" d="M25.057,8.577c0-0.271-0.273-0.271-0.455-0.181L9.478,23.639c-0.455,0.451-0.364,0.631,0,0.901 + l15.124,15.062c0.09,0.09,0.362,0.09,0.362-0.09v-9.021h12.392c0.272,0,0.455-0.183,0.455-0.361V18.136 + c0-0.36-0.183-0.45-0.547-0.45h-12.3L25.057,8.577z"/> + <path fill="#3F72EC" d="M25.046,8.603c0-0.27-0.272-0.27-0.455-0.18L9.493,23.639c-0.454,0.45-0.364,0.63,0,0.9l15.099,15.035 + c0.092,0.09,0.364,0.09,0.364-0.09V30.48h12.369c0.272,0,0.454-0.183,0.454-0.359V18.146c0-0.36-0.182-0.449-0.547-0.449H24.956 + L25.046,8.603z"/> + <path fill="#4073EC" d="M25.038,8.629c0-0.27-0.272-0.27-0.455-0.18L9.506,23.64c-0.453,0.45-0.363,0.629,0,0.898l15.075,15.01 + c0.092,0.091,0.362,0.091,0.362-0.09v-8.985h12.353c0.272,0,0.455-0.183,0.455-0.361V18.157c0-0.359-0.183-0.448-0.545-0.448 + H24.945L25.038,8.629z"/> + <path fill="#4174ED" d="M25.027,8.656c0-0.269-0.272-0.269-0.454-0.179L9.521,23.641c-0.453,0.449-0.363,0.627,0,0.896 + L24.573,39.52c0.092,0.09,0.362,0.09,0.362-0.09v-8.972h12.332c0.271,0,0.453-0.181,0.453-0.36V18.166 + c0-0.358-0.182-0.447-0.544-0.447H24.938L25.027,8.656z"/> + <path fill="#4275ED" d="M25.018,8.683c0-0.269-0.271-0.269-0.453-0.179L9.537,23.641c-0.452,0.448-0.362,0.626,0,0.896 + l15.027,14.957c0.092,0.09,0.362,0.09,0.362-0.09v-8.955h12.312c0.271,0,0.453-0.18,0.453-0.359V18.177 + c0-0.358-0.182-0.447-0.543-0.447H24.927L25.018,8.683z"/> + <path fill="#4376EE" d="M25.008,8.709c0-0.269-0.271-0.269-0.451-0.179L9.551,23.642c-0.451,0.447-0.361,0.625,0,0.895 + l15.006,14.932c0.09,0.09,0.36,0.09,0.36-0.089v-8.94H37.21c0.271,0,0.453-0.18,0.453-0.356V18.187 + c0-0.357-0.183-0.446-0.543-0.446H24.917L25.008,8.709z"/> + <path fill="#4477EE" d="M24.997,8.735c0-0.268-0.271-0.268-0.45-0.179L9.564,23.642c-0.45,0.446-0.361,0.625,0,0.893 + l14.982,14.904c0.091,0.09,0.36,0.09,0.36-0.088v-8.928H37.18c0.271,0,0.451-0.179,0.451-0.355V18.197 + c0-0.356-0.181-0.445-0.542-0.445h-12.18L24.997,8.735z"/> + <path fill="#4578EF" d="M24.988,8.763c0-0.268-0.271-0.268-0.449-0.178L9.58,23.643c-0.449,0.445-0.36,0.623,0,0.891l14.958,14.88 + c0.09,0.089,0.358,0.089,0.358-0.089v-8.909h12.256c0.271,0,0.451-0.18,0.451-0.357V18.207c0-0.356-0.182-0.444-0.541-0.444 + H24.898L24.988,8.763z"/> + <path fill="#4679EF" d="M24.979,8.79c0-0.267-0.271-0.267-0.449-0.178L9.595,23.644c-0.449,0.445-0.36,0.622,0,0.891 + l14.934,14.851c0.091,0.091,0.359,0.091,0.359-0.088v-8.896h12.234c0.271,0,0.451-0.18,0.451-0.355V18.216 + c0-0.355-0.184-0.443-0.541-0.443H24.891L24.979,8.79z"/> + <path fill="#477AF0" d="M24.971,8.815c0-0.267-0.271-0.267-0.451-0.178L9.608,23.644c-0.448,0.444-0.359,0.621,0,0.889 + L24.52,39.357c0.09,0.09,0.36,0.09,0.36-0.088v-8.879h12.218c0.27,0,0.448-0.18,0.448-0.354V18.228 + c0-0.355-0.183-0.443-0.541-0.443H24.88L24.971,8.815z"/> + <path fill="#487BF0" d="M24.96,8.842c0-0.266-0.271-0.266-0.448-0.177L9.624,23.645c-0.448,0.443-0.359,0.62,0,0.888 + l14.888,14.801c0.09,0.088,0.358,0.088,0.358-0.088v-8.863h12.196c0.271,0,0.449-0.178,0.449-0.355v-11.79 + c0-0.354-0.182-0.442-0.539-0.442H24.87L24.96,8.842z"/> + <path fill="#497CF1" d="M24.95,8.87c0-0.266-0.269-0.266-0.447-0.177L9.638,23.645c-0.447,0.442-0.358,0.619,0,0.886 + l14.865,14.773c0.09,0.09,0.356,0.09,0.356-0.09v-8.846H37.04c0.271,0,0.446-0.18,0.446-0.354V18.248 + c0-0.353-0.18-0.441-0.536-0.441H24.859L24.95,8.87z"/> + <path fill="#4A7DF1" d="M24.939,8.896c0-0.265-0.268-0.265-0.446-0.177L9.652,23.646c-0.446,0.442-0.357,0.618,0,0.883 + l14.841,14.75c0.089,0.088,0.358,0.088,0.358-0.088v-8.832H37.01c0.27,0,0.448-0.178,0.448-0.354V18.257 + c0-0.353-0.183-0.44-0.537-0.44H24.852L24.939,8.896z"/> + <path fill="#4B7EF2" d="M24.932,8.922c0-0.265-0.269-0.265-0.447-0.177L9.667,23.646c-0.445,0.441-0.357,0.617,0,0.881 + l14.818,14.724c0.089,0.088,0.357,0.088,0.357-0.088V30.35h12.141c0.268,0,0.447-0.18,0.447-0.354V18.268 + c0-0.353-0.181-0.44-0.537-0.44H24.842L24.932,8.922z"/> + <path fill="#4C7FF2" d="M24.921,8.949c0-0.264-0.269-0.264-0.445-0.176L9.682,23.646c-0.444,0.44-0.356,0.616,0,0.879 + l14.794,14.697c0.088,0.088,0.355,0.088,0.355-0.089v-8.801h12.121c0.269,0,0.444-0.177,0.444-0.354V18.277 + c0-0.352-0.18-0.438-0.535-0.438h-12.03L24.921,8.949z"/> + <path fill="#4D80F3" d="M24.913,8.976c0-0.264-0.269-0.264-0.444-0.176L9.697,23.647c-0.444,0.439-0.356,0.615,0,0.878 + l14.771,14.672c0.091,0.088,0.355,0.088,0.355-0.088v-8.784h12.102c0.269,0,0.445-0.179,0.445-0.354V18.288 + c0-0.351-0.181-0.438-0.535-0.438H24.823L24.913,8.976z"/> + <path fill="#4E81F3" d="M24.902,9.002c0-0.264-0.268-0.264-0.444-0.176L9.71,23.647c-0.443,0.439-0.355,0.614,0,0.876 + L24.458,39.17c0.089,0.088,0.354,0.088,0.354-0.087v-8.771h12.082c0.268,0,0.444-0.176,0.444-0.354V18.297 + c0-0.35-0.178-0.437-0.532-0.437H24.812L24.902,9.002z"/> + <path fill="#4F82F4" d="M24.895,9.028c0-0.263-0.269-0.263-0.444-0.175L9.726,23.648c-0.442,0.438-0.354,0.612,0,0.875 + L24.45,39.145c0.089,0.088,0.354,0.088,0.354-0.086v-8.754h12.062c0.267,0,0.442-0.178,0.442-0.354V18.308 + c0-0.349-0.18-0.436-0.533-0.436H24.805L24.895,9.028z"/> + <path fill="#5083F4" d="M24.884,9.056c0-0.262-0.268-0.262-0.443-0.175L9.74,23.649c-0.441,0.437-0.354,0.611,0,0.875l14.7,14.595 + c0.089,0.087,0.354,0.087,0.354-0.087v-8.737h12.045c0.267,0,0.44-0.176,0.44-0.353V18.317c0-0.349-0.178-0.436-0.53-0.436H24.794 + L24.884,9.056z"/> + <path fill="#5184F5" d="M24.874,9.082c0-0.262-0.269-0.262-0.442-0.175L9.754,23.649c-0.441,0.437-0.354,0.61,0,0.873 + l14.677,14.566c0.088,0.088,0.354,0.088,0.354-0.086v-8.723h12.025c0.266,0,0.44-0.176,0.44-0.35V18.329 + c0-0.348-0.176-0.435-0.53-0.435H24.786L24.874,9.082z"/> + <path fill="#5285F5" d="M24.863,9.108c0-0.262-0.264-0.262-0.44-0.174L9.769,23.65c-0.44,0.436-0.353,0.609,0,0.872l14.654,14.541 + c0.089,0.086,0.353,0.086,0.353-0.086V30.27h12.008c0.264,0,0.439-0.176,0.439-0.351V18.338c0-0.348-0.177-0.434-0.529-0.434 + H24.775L24.863,9.108z"/> + <path fill="#5386F6" d="M24.854,9.136c0-0.261-0.266-0.261-0.44-0.174l-14.63,14.69c-0.439,0.435-0.353,0.608,0,0.87l14.63,14.517 + c0.089,0.087,0.353,0.087,0.353-0.086V30.26H36.75c0.266,0,0.439-0.175,0.439-0.349V18.349c0-0.347-0.176-0.433-0.527-0.433 + H24.768L24.854,9.136z"/> + <path fill="#5487F6" d="M24.846,9.163c0-0.261-0.265-0.261-0.441-0.174L9.798,23.651c-0.439,0.434-0.352,0.607,0,0.867 + l14.606,14.49c0.088,0.086,0.352,0.086,0.352-0.086v-8.676h11.967c0.264,0,0.439-0.176,0.439-0.35V18.358 + c0-0.346-0.178-0.432-0.527-0.432H24.757L24.846,9.163z"/> + <path fill="#5588F7" d="M24.835,9.188c0-0.26-0.265-0.26-0.439-0.173L9.812,23.652c-0.438,0.433-0.352,0.606,0,0.866L24.395,38.98 + c0.088,0.088,0.352,0.088,0.352-0.086v-8.66h11.946c0.265,0,0.439-0.174,0.439-0.348V18.369c0-0.346-0.178-0.432-0.527-0.432 + H24.747L24.835,9.188z"/> + <path fill="#5689F7" d="M24.827,9.215c0-0.26-0.265-0.26-0.438-0.173L9.828,23.653c-0.437,0.432-0.351,0.604,0,0.865l14.56,14.438 + c0.088,0.086,0.352,0.086,0.352-0.086v-8.646h11.928c0.266,0,0.438-0.176,0.438-0.349v-11.5c0-0.345-0.176-0.431-0.525-0.431 + H24.74L24.827,9.215z"/> + <path fill="#578AF8" d="M24.816,9.242c0-0.259-0.264-0.259-0.438-0.172L9.842,23.653c-0.437,0.432-0.35,0.604,0,0.863 + l14.537,14.41c0.088,0.086,0.35,0.086,0.35-0.086v-8.629h11.91c0.262,0,0.438-0.173,0.438-0.346V18.389 + c0-0.344-0.176-0.43-0.524-0.43H24.729L24.816,9.242z"/> + <path fill="#588BF8" d="M24.807,9.269c0-0.259-0.262-0.259-0.437-0.172L9.856,23.655c-0.436,0.431-0.35,0.603,0,0.863 + L24.37,38.898c0.088,0.086,0.349,0.086,0.349-0.084v-8.612h11.891c0.264,0,0.438-0.175,0.438-0.347V18.398 + c0-0.344-0.176-0.429-0.524-0.429H24.719L24.807,9.269z"/> + <path fill="#598CF9" d="M24.796,9.294c0-0.258-0.261-0.258-0.438-0.172L9.872,23.655c-0.435,0.43-0.349,0.602,0,0.861 + L24.36,38.872c0.088,0.086,0.35,0.086,0.35-0.085v-8.602h11.871c0.263,0,0.438-0.172,0.438-0.344V18.41 + c0-0.343-0.177-0.429-0.522-0.429H24.71L24.796,9.294z"/> + <path fill="#5A8DF9" d="M24.788,9.322c0-0.258-0.263-0.258-0.437-0.172L9.886,23.656c-0.435,0.429-0.349,0.6,0,0.857 + l14.466,14.334c0.088,0.086,0.349,0.086,0.349-0.088v-8.58h11.854c0.262,0,0.438-0.174,0.438-0.346V18.418 + c0-0.342-0.177-0.427-0.522-0.427H24.7L24.788,9.322z"/> + <path fill="#5B8EFA" d="M24.777,9.349c0-0.257-0.262-0.257-0.436-0.171L9.9,23.657c-0.434,0.428-0.348,0.6,0,0.856L24.342,38.82 + c0.087,0.086,0.348,0.086,0.348-0.084v-8.567h11.834c0.261,0,0.437-0.172,0.437-0.344V18.43c0-0.342-0.176-0.427-0.522-0.427 + H24.689L24.777,9.349z"/> + <path fill="#5C8FFA" d="M24.77,9.375c0-0.257-0.262-0.257-0.436-0.171L9.915,23.657c-0.433,0.428-0.348,0.599,0,0.854 + l14.419,14.281c0.087,0.086,0.348,0.086,0.348-0.085v-8.551h11.812c0.262,0,0.438-0.174,0.438-0.346V18.439 + c0-0.341-0.176-0.426-0.521-0.426H24.682L24.77,9.375z"/> + <path fill="#5D90FB" d="M24.759,9.401c0-0.256-0.26-0.256-0.434-0.17L9.93,23.658c-0.432,0.427-0.347,0.597,0,0.855l14.396,14.254 + c0.087,0.086,0.347,0.086,0.347-0.084v-8.537h11.794c0.26,0,0.436-0.172,0.436-0.342V18.45c0-0.341-0.176-0.425-0.521-0.425 + h-11.71L24.759,9.401z"/> + <path fill="#5E91FB" d="M24.749,9.429c0-0.256-0.26-0.256-0.435-0.17l-14.371,14.4c-0.432,0.426-0.346,0.596,0,0.852L24.315,38.74 + c0.087,0.085,0.346,0.085,0.346-0.086v-8.521h11.774c0.26,0,0.435-0.172,0.435-0.342V18.459c0-0.34-0.175-0.424-0.521-0.424 + H24.663L24.749,9.429z"/> + <path fill="#5F92FC" d="M24.741,9.455c0-0.255-0.261-0.255-0.434-0.17L9.958,23.659c-0.431,0.425-0.346,0.595,0,0.851 + l14.349,14.202c0.087,0.085,0.345,0.085,0.345-0.084v-8.505h11.757c0.258,0,0.434-0.171,0.434-0.341V18.47 + c0-0.339-0.176-0.423-0.521-0.423h-11.67L24.741,9.455z"/> + <path fill="#6093FC" d="M24.73,9.481c0-0.255-0.259-0.255-0.433-0.17L9.974,23.66c-0.43,0.425-0.345,0.594,0,0.849l14.325,14.179 + c0.087,0.084,0.346,0.084,0.346-0.084v-8.489H36.38c0.259,0,0.433-0.171,0.433-0.341V18.479c0-0.339-0.174-0.423-0.521-0.423 + H24.645L24.73,9.481z"/> + <path fill="#6194FD" d="M24.721,9.507c0-0.254-0.259-0.254-0.431-0.169L9.988,23.661c-0.43,0.424-0.345,0.593,0,0.847 + l14.302,14.15c0.086,0.085,0.344,0.085,0.344-0.084V30.1h11.718c0.258,0,0.432-0.17,0.432-0.342v-11.27 + c0-0.338-0.174-0.422-0.518-0.422H24.634L24.721,9.507z"/> + <path fill="#6295FD" d="M24.71,9.535c0-0.254-0.257-0.254-0.429-0.169L10.002,23.661c-0.429,0.423-0.344,0.592,0,0.846 + L24.28,38.631c0.086,0.085,0.343,0.085,0.343-0.083V30.09H36.32c0.258,0,0.432-0.17,0.432-0.34V18.5 + c0-0.337-0.174-0.421-0.52-0.421H24.623L24.71,9.535z"/> + <path fill="#6396FE" d="M24.702,9.561c0-0.253-0.259-0.253-0.43-0.169l-14.256,14.27c-0.428,0.422-0.343,0.591,0,0.844 + l14.255,14.1c0.086,0.084,0.342,0.084,0.342-0.084V30.08h11.681c0.258,0,0.431-0.17,0.431-0.338v-11.23 + c0-0.337-0.173-0.42-0.517-0.42H24.616L24.702,9.561z"/> + <path fill="#6497FE" d="M24.691,9.587c0-0.253-0.257-0.253-0.429-0.168l-14.23,14.243c-0.427,0.422-0.343,0.59,0,0.843 + l14.231,14.072c0.086,0.084,0.342,0.084,0.342-0.083v-8.428h11.66c0.258,0,0.43-0.17,0.43-0.338V18.521 + c0-0.336-0.172-0.42-0.516-0.42H24.605L24.691,9.587z"/> + <path fill="#6598FF" d="M24.684,9.615c0-0.252-0.258-0.252-0.43-0.168L10.045,23.663c-0.426,0.42-0.342,0.588,0,0.841 + l14.208,14.047c0.086,0.084,0.343,0.084,0.343-0.084v-8.41h11.641c0.257,0,0.429-0.168,0.429-0.336V18.531 + c0-0.335-0.172-0.418-0.515-0.418H24.598L24.684,9.615z"/> + <path fill="#6699FF" d="M24.673,9.642c0-0.252-0.257-0.252-0.428-0.168L10.06,23.664c-0.426,0.42-0.342,0.587,0,0.839 + l14.185,14.021c0.086,0.084,0.342,0.084,0.342-0.084v-8.396h11.621c0.256,0,0.429-0.169,0.429-0.337V18.541 + c0-0.335-0.173-0.418-0.515-0.418H24.587L24.673,9.642z"/> + </g> + + <linearGradient id="XMLID_16_" gradientUnits="userSpaceOnUse" x1="-1112.2041" y1="1225.4229" x2="-1112.2041" y2="1254.5781" gradientTransform="matrix(-1 0 0 1 -1089 -1216)"> + <stop offset="0" style="stop-color:#FFFFFF"/> + <stop offset="1" style="stop-color:#6699FF"/> + </linearGradient> + <path fill="url(#XMLID_16_)" d="M24.673,9.642c0-0.252-0.257-0.252-0.428-0.168L10.06,23.664c-0.426,0.42-0.342,0.587,0,0.839 + l14.185,14.021c0.086,0.084,0.342,0.084,0.342-0.084v-8.396h11.621c0.256,0,0.429-0.169,0.429-0.337V18.541 + c0-0.335-0.173-0.418-0.515-0.418H24.587L24.673,9.642z"/> +</g> +<g id="crop_x0020_marks"> + <path fill="none" d="M-0.06,0.001h48v48h-48V0.001z"/> +</g> +</svg> diff --git a/docbook-xsl-1.76.1/images/colorsvg/tip.svg b/docbook-xsl-1.76.1/images/colorsvg/tip.svg new file mode 100644 index 0000000..7ec92e3 --- /dev/null +++ b/docbook-xsl-1.76.1/images/colorsvg/tip.svg @@ -0,0 +1,367 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [ + <!ENTITY ns_svg "http://www.w3.org/2000/svg"> + <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> +]> +<svg version="1.1" id="Tip" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="48" height="48" viewBox="0 0 48 48" + overflow="visible" enable-background="new 0 0 48 48" xml:space="preserve"> +<g> + <path stroke="#FFFFFF" stroke-width="5.6139" d="M9.525,18.6c0,8,6.5,14.4,14.4,14.4c8.001,0,14.399-6.5,14.399-14.4 + c0-8-6.5-14.4-14.399-14.4C15.925,4.2,9.525,10.7,9.525,18.6z M12.825,18.6c0-6.2,5-11.2,11.2-11.2c6.2,0,11.2,5,11.2,11.2 + c0,6.2-5,11.2-11.2,11.2C17.825,29.8,12.825,24.8,12.825,18.6z"/> + <path stroke="#FFFFFF" stroke-width="5.6139" d="M28.125,37.9l-7.6,0.8c-0.9,0.1-1.5,0.899-1.4,1.8s0.9,1.5,1.8,1.4l7.601-0.801 + c0.9-0.102,1.5-0.899,1.4-1.802C29.824,38.4,29.025,37.8,28.125,37.9z"/> + <path stroke="#FFFFFF" stroke-width="5.6139" d="M28.125,34.8l-7.6,0.8c-0.9,0.101-1.5,0.9-1.4,1.801c0.1,0.897,0.9,1.5,1.8,1.397 + l7.601-0.8c0.9-0.102,1.5-0.898,1.4-1.8C29.824,35.3,29.025,34.7,28.125,34.8z"/> + <path stroke="#FFFFFF" stroke-width="5.6139" d="M28.125,31.6l-7.6,0.801c-0.9,0.1-1.5,0.897-1.4,1.8c0.1,0.899,0.9,1.5,1.8,1.399 + l7.601-0.802c0.9-0.1,1.5-0.897,1.4-1.8C29.824,32.1,29.025,31.5,28.125,31.6z"/> + <path stroke="#FFFFFF" stroke-width="5.6139" d="M23.125,41.3v0.9c0,0.899,0.7,1.6,1.6,1.6c0.9,0,1.6-0.7,1.6-1.6v-0.9h-3.299 + H23.125z"/> + <path fill="#FFFFFF" d="M35.926,18.7c0,6.6-5.4,12-12.001,12c-6.6,0-12-5.4-12-12c0-6.6,5.4-12,12-12 + C30.525,6.7,35.926,12.1,35.926,18.7z"/> + <g> + <path fill="#FFFF00" d="M9.625,18.6c0,8,6.5,14.4,14.4,14.4c8,0,14.401-6.5,14.401-14.4c0-8-6.5-14.4-14.401-14.4 + C16.025,4.2,9.625,10.7,9.625,18.6z"/> + <path fill="#FFFF01" d="M9.647,18.6c0-7.889,6.391-14.379,14.379-14.379c7.89,0,14.378,6.391,14.378,14.379 + c0,7.889-6.391,14.378-14.378,14.378C16.137,32.979,9.647,26.588,9.647,18.6z"/> + <path fill="#FFFF02" d="M9.668,18.6c0-7.878,6.382-14.358,14.358-14.358c7.878,0,14.359,6.382,14.359,14.358 + c0,7.876-6.383,14.358-14.359,14.358C16.149,32.958,9.668,26.576,9.668,18.6z"/> + <path fill="#FFFF03" d="M9.69,18.6c0-7.867,6.373-14.337,14.337-14.337c7.868,0,14.338,6.373,14.338,14.337 + c0,7.867-6.373,14.337-14.338,14.337C16.16,32.938,9.69,26.564,9.69,18.6z"/> + <path fill="#FFFF04" d="M9.712,18.6c0-7.855,6.363-14.316,14.316-14.316c7.855,0,14.316,6.363,14.316,14.316 + c0,7.856-6.363,14.316-14.316,14.316C16.172,32.916,9.712,26.553,9.712,18.6z"/> + <path fill="#FFFF05" d="M9.733,18.6c0-7.844,6.354-14.295,14.295-14.295c7.847,0,14.296,6.354,14.296,14.295 + c0,7.843-6.354,14.294-14.296,14.294C16.184,32.896,9.733,26.541,9.733,18.6z"/> + <path fill="#FFFF06" d="M9.754,18.6c0-7.833,6.345-14.274,14.274-14.274c7.833,0,14.275,6.345,14.275,14.274 + c0,7.833-6.346,14.274-14.275,14.274C16.196,32.874,9.754,26.529,9.754,18.6z"/> + <path fill="#FFFF07" d="M9.776,18.6c0-7.822,6.336-14.253,14.254-14.253c7.822,0,14.253,6.335,14.253,14.253 + c0,7.823-6.336,14.253-14.253,14.253C16.208,32.854,9.776,26.518,9.776,18.6z"/> + <path fill="#FFFF08" d="M9.798,18.6c0-7.811,6.326-14.232,14.232-14.232c7.812,0,14.234,6.326,14.234,14.232 + c0,7.811-6.328,14.233-14.234,14.233C16.219,32.833,9.798,26.506,9.798,18.6z"/> + <path fill="#FFFF09" d="M9.819,18.6c0-7.8,6.317-14.211,14.211-14.211c7.8,0,14.212,6.317,14.212,14.211 + c0,7.8-6.318,14.21-14.212,14.21C16.231,32.812,9.819,26.494,9.819,18.6z"/> + <path fill="#FFFF0A" d="M9.84,18.6c0-7.789,6.309-14.191,14.191-14.191c7.79,0,14.192,6.309,14.192,14.191 + c0,7.789-6.309,14.191-14.192,14.191C16.243,32.791,9.84,26.482,9.84,18.6z"/> + <path fill="#FFFF0B" d="M9.862,18.6c0-7.778,6.299-14.17,14.17-14.17c7.779,0,14.169,6.299,14.169,14.17 + c0,7.778-6.299,14.169-14.169,14.169C16.254,32.77,9.862,26.471,9.862,18.6z"/> + <path fill="#FFFF0C" d="M9.884,18.6c0-7.767,6.29-14.149,14.149-14.149c7.768,0,14.149,6.29,14.149,14.149 + c0,7.767-6.291,14.149-14.149,14.149C16.266,32.749,9.884,26.459,9.884,18.6z"/> + <path fill="#FFFF0D" d="M9.905,18.6c0-7.756,6.281-14.128,14.128-14.128c7.756,0,14.129,6.281,14.129,14.128 + c0,7.755-6.281,14.128-14.129,14.128C16.278,32.729,9.905,26.447,9.905,18.6z"/> + <path fill="#FFFF0E" d="M9.927,18.6c0-7.745,6.272-14.107,14.107-14.107c7.746,0,14.107,6.272,14.107,14.107 + c0,7.746-6.27,14.107-14.107,14.107C16.29,32.707,9.927,26.436,9.927,18.6z"/> + <path fill="#FFFF0F" d="M9.949,18.6c0-7.733,6.263-14.086,14.086-14.086c7.733,0,14.088,6.262,14.088,14.086 + c0,7.733-6.266,14.085-14.088,14.085C16.302,32.688,9.949,26.423,9.949,18.6z"/> + <path fill="#FFFF10" d="M9.97,18.6c0-7.722,6.253-14.065,14.065-14.065c7.723,0,14.067,6.253,14.067,14.065 + c0,7.722-6.254,14.066-14.067,14.066C16.313,32.666,9.97,26.411,9.97,18.6z"/> + <path fill="#FFFF11" d="M9.992,18.6c0-7.711,6.244-14.044,14.044-14.044c7.712,0,14.044,6.245,14.044,14.044 + c0,7.71-6.244,14.044-14.044,14.044C16.325,32.645,9.992,26.398,9.992,18.6z"/> + <path fill="#FFFF12" d="M10.013,18.6c0-7.7,6.235-14.023,14.023-14.023c7.7,0,14.024,6.235,14.024,14.023 + c0,7.7-6.236,14.023-14.024,14.023C16.337,32.623,10.013,26.389,10.013,18.6z"/> + <path fill="#FFFF13" d="M10.035,18.6c0-7.688,6.226-14.002,14.002-14.002c7.689,0,14.004,6.226,14.004,14.002 + c0,7.689-6.229,14.001-14.004,14.001C16.348,32.604,10.035,26.376,10.035,18.6z"/> + <path fill="#FFFF14" d="M10.057,18.6c0-7.678,6.217-13.981,13.981-13.981c7.679,0,13.981,6.217,13.981,13.981 + c0,7.677-6.217,13.981-13.981,13.981C16.36,32.581,10.057,26.364,10.057,18.6z"/> + <path fill="#FFFF15" d="M10.078,18.6c0-7.667,6.208-13.961,13.961-13.961C31.707,4.639,38,10.847,38,18.6 + c0,7.667-6.209,13.96-13.961,13.96C16.372,32.561,10.078,26.354,10.078,18.6z"/> + <path fill="#FFFF16" d="M10.1,18.6c0-7.655,6.198-13.94,13.939-13.94c7.656,0,13.941,6.199,13.941,13.94 + c0,7.656-6.201,13.94-13.941,13.94C16.384,32.54,10.1,26.341,10.1,18.6z"/> + <path fill="#FFFF17" d="M10.121,18.6c0-7.644,6.189-13.919,13.919-13.919c7.646,0,13.919,6.189,13.919,13.919 + c0,7.644-6.189,13.917-13.919,13.917C16.396,32.52,10.121,26.329,10.121,18.6z"/> + <path fill="#FFFF18" d="M10.143,18.6c0-7.633,6.181-13.898,13.898-13.898c7.633,0,13.898,6.18,13.898,13.898 + c0,7.632-6.182,13.898-13.898,13.898C16.408,32.498,10.143,26.316,10.143,18.6z"/> + <path fill="#FFFF19" d="M10.164,18.6c0-7.622,6.171-13.877,13.877-13.877c7.623,0,13.877,6.171,13.877,13.877 + c0,7.623-6.172,13.876-13.877,13.876C16.419,32.479,10.164,26.307,10.164,18.6z"/> + <path fill="#FFFF1A" d="M10.186,18.6c0-7.611,6.162-13.856,13.856-13.856c7.61,0,13.856,6.162,13.856,13.856 + c0,7.611-6.162,13.856-13.856,13.856C16.431,32.456,10.186,26.294,10.186,18.6z"/> + <path fill="#FFFF1B" d="M10.208,18.6c0-7.6,6.153-13.835,13.835-13.835c7.602,0,13.836,6.153,13.836,13.835 + c0,7.6-6.152,13.835-13.836,13.835C16.443,32.436,10.208,26.282,10.208,18.6z"/> + <path fill="#FFFF1C" d="M10.229,18.6c0-7.589,6.144-13.814,13.814-13.814c7.59,0,13.814,6.144,13.814,13.814 + c0,7.587-6.145,13.814-13.814,13.814C16.454,32.414,10.229,26.271,10.229,18.6z"/> + <path fill="#FFFF1D" d="M10.251,18.6c0-7.578,6.135-13.793,13.793-13.793c7.579,0,13.794,6.135,13.794,13.793 + c0,7.578-6.137,13.792-13.794,13.792C16.466,32.395,10.251,26.259,10.251,18.6z"/> + <path fill="#FFFF1E" d="M10.272,18.6c0-7.566,6.125-13.772,13.772-13.772c7.567,0,13.772,6.125,13.772,13.772 + c0,7.567-6.125,13.773-13.772,13.773C16.478,32.373,10.272,26.247,10.272,18.6z"/> + <path fill="#FFFF1F" d="M10.294,18.6c0-7.556,6.116-13.752,13.751-13.752c7.557,0,13.752,6.117,13.752,13.752 + c0,7.554-6.117,13.751-13.752,13.751C16.49,32.352,10.294,26.234,10.294,18.6z"/> + <path fill="#FFFF20" d="M10.315,18.6c0-7.544,6.107-13.731,13.731-13.731c7.544,0,13.731,6.107,13.731,13.731 + c0,7.544-6.107,13.731-13.731,13.731C16.502,32.331,10.315,26.225,10.315,18.6z"/> + <path fill="#FFFF21" d="M10.337,18.6c0-7.533,6.098-13.71,13.709-13.71c7.534,0,13.71,6.098,13.71,13.71 + c0,7.534-6.1,13.708-13.71,13.708C16.513,32.311,10.337,26.212,10.337,18.6z"/> + <path fill="#FFFF22" d="M10.358,18.6c0-7.522,6.088-13.688,13.689-13.688c7.521,0,13.689,6.088,13.689,13.688 + c0,7.522-6.09,13.689-13.689,13.689C16.525,32.289,10.358,26.199,10.358,18.6z"/> + <path fill="#FFFF23" d="M10.38,18.6c0-7.511,6.08-13.668,13.668-13.668c7.511,0,13.669,6.08,13.669,13.668 + c0,7.511-6.08,13.667-13.669,13.667C16.537,32.268,10.38,26.188,10.38,18.6z"/> + <path fill="#FFFF24" d="M10.401,18.6c0-7.5,6.071-13.647,13.647-13.647c7.501,0,13.647,6.07,13.647,13.647 + c0,7.5-6.07,13.647-13.647,13.647C16.549,32.247,10.401,26.176,10.401,18.6z"/> + <path fill="#FFFF25" d="M10.423,18.6c0-7.489,6.062-13.626,13.626-13.626c7.49,0,13.627,6.061,13.627,13.626 + c0,7.489-6.062,13.625-13.627,13.625C16.56,32.227,10.423,26.164,10.423,18.6z"/> + <path fill="#FFFF26" d="M10.445,18.6c0-7.478,6.052-13.605,13.605-13.605c7.478,0,13.606,6.052,13.606,13.605 + c0,7.478-6.053,13.605-13.606,13.605C16.572,32.205,10.445,26.152,10.445,18.6z"/> + <path fill="#FFFF27" d="M10.466,18.6c0-7.467,6.043-13.584,13.584-13.584c7.468,0,13.585,6.043,13.585,13.584 + c0,7.466-6.043,13.583-13.585,13.583C16.584,32.186,10.466,26.141,10.466,18.6z"/> + <path fill="#FFFF28" d="M10.488,18.6c0-7.456,6.034-13.563,13.563-13.563c7.457,0,13.562,6.034,13.562,13.563 + c0,7.457-6.033,13.563-13.562,13.563C16.596,32.163,10.488,26.129,10.488,18.6z"/> + <path fill="#FFFF29" d="M10.509,18.6c0-7.445,6.025-13.542,13.542-13.542c7.445,0,13.543,6.024,13.543,13.542 + c0,7.444-6.025,13.542-13.543,13.542C16.608,32.143,10.509,26.117,10.509,18.6z"/> + <path fill="#FFFF2A" d="M10.531,18.6c0-7.434,6.016-13.522,13.521-13.522c7.435,0,13.521,6.016,13.521,13.522 + c0,7.433-6.016,13.521-13.521,13.521C16.619,32.121,10.531,26.105,10.531,18.6z"/> + <path fill="#FFFF2B" d="M10.552,18.6c0-7.422,6.006-13.501,13.501-13.501c7.422,0,13.502,6.007,13.502,13.501 + c0,7.421-6.008,13.5-13.502,13.5C16.631,32.102,10.552,26.094,10.552,18.6z"/> + <path fill="#FFFF2C" d="M10.574,18.6c0-7.411,5.997-13.479,13.479-13.479c7.412,0,13.48,5.997,13.48,13.479 + c0,7.411-5.998,13.48-13.48,13.48C16.643,32.08,10.574,26.082,10.574,18.6z"/> + <path fill="#FFFF2D" d="M10.596,18.6c0-7.4,5.988-13.458,13.458-13.458c7.401,0,13.46,5.988,13.46,13.458 + c0,7.4-5.988,13.458-13.46,13.458C16.654,32.059,10.596,26.07,10.596,18.6z"/> + <path fill="#FFFF2E" d="M10.617,18.6c0-7.389,5.979-13.438,13.438-13.438c7.389,0,13.438,5.979,13.438,13.438 + c0,7.389-5.979,13.438-13.438,13.438C16.666,32.038,10.617,26.059,10.617,18.6z"/> + <path fill="#FFFF2F" d="M10.639,18.6c0-7.377,5.97-13.417,13.417-13.417c7.377,0,13.417,5.97,13.417,13.417 + c0,7.376-5.971,13.417-13.417,13.417C16.678,32.018,10.639,26.047,10.639,18.6z"/> + <path fill="#FFFF30" d="M10.66,18.6c0-7.366,5.96-13.396,13.396-13.396c7.368,0,13.395,5.961,13.395,13.396 + c0,7.367-5.961,13.396-13.395,13.396C16.69,31.996,10.66,26.035,10.66,18.6z"/> + <path fill="#FFFF31" d="M10.682,18.6c0-7.355,5.951-13.375,13.375-13.375c7.355,0,13.375,5.952,13.375,13.375 + c0,7.355-5.951,13.375-13.375,13.375C16.701,31.977,10.682,26.023,10.682,18.6z"/> + <path fill="#FFFF32" d="M10.703,18.6c0-7.344,5.943-13.354,13.354-13.354c7.343,0,13.355,5.943,13.355,13.354 + c0,7.343-5.943,13.354-13.355,13.354C16.713,31.954,10.703,26.012,10.703,18.6z"/> + <path fill="#FFFF33" d="M10.725,18.6c0-7.333,5.933-13.333,13.333-13.333c7.334,0,13.334,5.934,13.334,13.333 + c0,7.333-5.934,13.333-13.334,13.333C16.725,31.934,10.725,26,10.725,18.6z"/> + <path fill="#FFFF34" d="M10.747,18.6c0-7.322,5.924-13.312,13.312-13.312c7.322,0,13.312,5.924,13.312,13.312 + c0,7.322-5.926,13.312-13.312,13.312C16.737,31.912,10.747,25.988,10.747,18.6z"/> + <path fill="#FFFF35" d="M10.768,18.6c0-7.311,5.915-13.292,13.292-13.292c7.311,0,13.292,5.915,13.292,13.292 + c0,7.311-5.914,13.292-13.292,13.292C16.749,31.893,10.768,25.977,10.768,18.6z"/> + <path fill="#FFFF36" d="M10.79,18.6c0-7.3,5.906-13.271,13.271-13.271c7.3,0,13.271,5.906,13.271,13.271 + c0,7.298-5.904,13.27-13.271,13.27C16.76,31.87,10.79,25.964,10.79,18.6z"/> + <path fill="#FFFF37" d="M10.811,18.6c0-7.289,5.897-13.25,13.25-13.25c7.289,0,13.25,5.896,13.25,13.25 + c0,7.289-5.896,13.25-13.25,13.25C16.772,31.85,10.811,25.952,10.811,18.6z"/> + <path fill="#FFFF38" d="M10.833,18.6c0-7.278,5.888-13.229,13.229-13.229c7.278,0,13.229,5.887,13.229,13.229 + c0,7.278-5.889,13.228-13.229,13.228C16.784,31.828,10.833,25.939,10.833,18.6z"/> + <path fill="#FFFF39" d="M10.854,18.6c0-7.267,5.878-13.208,13.208-13.208c7.268,0,13.208,5.878,13.208,13.208 + c0,7.266-5.877,13.208-13.208,13.208C16.796,31.809,10.854,25.93,10.854,18.6z"/> + <path fill="#FFFF3A" d="M10.876,18.6c0-7.255,5.869-13.187,13.187-13.187c7.255,0,13.187,5.869,13.187,13.187 + c0,7.255-5.869,13.187-13.187,13.187C16.807,31.787,10.876,25.917,10.876,18.6z"/> + <path fill="#FFFF3B" d="M10.898,18.6c0-7.245,5.86-13.166,13.166-13.166c7.245,0,13.167,5.86,13.167,13.166 + c0,7.244-5.859,13.166-13.167,13.166C16.819,31.766,10.898,25.904,10.898,18.6z"/> + <path fill="#FFFF3C" d="M10.92,18.6c0-7.233,5.851-13.145,13.145-13.145c7.234,0,13.146,5.851,13.146,13.145 + c0,7.233-5.854,13.145-13.146,13.145C16.831,31.745,10.92,25.895,10.92,18.6z"/> + <path fill="#FFFF3D" d="M10.941,18.6c0-7.222,5.842-13.125,13.124-13.125c7.222,0,13.125,5.842,13.125,13.125 + c0,7.222-5.842,13.125-13.125,13.125C16.843,31.725,10.941,25.882,10.941,18.6z"/> + <path fill="#FFFF3E" d="M10.963,18.6c0-7.211,5.833-13.104,13.103-13.104c7.211,0,13.104,5.833,13.104,13.104 + c0,7.21-5.832,13.103-13.104,13.103C16.855,31.703,10.963,25.87,10.963,18.6z"/> + <path fill="#FFFF3F" d="M10.984,18.6c0-7.2,5.823-13.082,13.083-13.082c7.201,0,13.083,5.823,13.083,13.082 + c0,7.2-5.824,13.083-13.083,13.083C16.866,31.684,10.984,25.857,10.984,18.6z"/> + <path fill="#FFFF40" d="M11.005,18.6c0-7.189,5.815-13.062,13.062-13.062c7.189,0,13.062,5.814,13.062,13.062 + c0,7.189-5.812,13.061-13.062,13.061C16.878,31.661,11.005,25.848,11.005,18.6z"/> + <path fill="#FFFF41" d="M11.027,18.6c0-7.178,5.805-13.041,13.041-13.041c7.178,0,13.042,5.805,13.042,13.041 + c0,7.177-5.805,13.041-13.042,13.041C16.889,31.641,11.027,25.835,11.027,18.6z"/> + <path fill="#FFFF42" d="M11.048,18.6c0-7.167,5.796-13.02,13.02-13.02c7.167,0,13.02,5.796,13.02,13.02 + c0,7.167-5.797,13.02-13.02,13.02C16.901,31.62,11.048,25.823,11.048,18.6z"/> + <path fill="#FFFF43" d="M11.07,18.6c0-7.156,5.787-12.999,12.998-12.999c7.157,0,13,5.787,13,12.999c0,7.155-5.787,13-13,13 + C16.913,31.6,11.07,25.812,11.07,18.6z"/> + <path fill="#FFFF44" d="M11.091,18.6c0-7.145,5.778-12.978,12.978-12.978c7.146,0,12.978,5.778,12.978,12.978 + c0,7.144-5.777,12.978-12.978,12.978C16.925,31.578,11.091,25.8,11.091,18.6z"/> + <path fill="#FFFF45" d="M11.113,18.6c0-7.133,5.769-12.957,12.957-12.957c7.133,0,12.958,5.769,12.958,12.957 + c0,7.132-5.77,12.957-12.958,12.957C16.937,31.557,11.113,25.788,11.113,18.6z"/> + <path fill="#FFFF46" d="M11.135,18.6c0-7.123,5.759-12.936,12.936-12.936c7.123,0,12.937,5.759,12.937,12.936 + c0,7.123-5.76,12.936-12.937,12.936C16.949,31.536,11.135,25.775,11.135,18.6z"/> + <path fill="#FFFF47" d="M11.157,18.6c0-7.111,5.75-12.915,12.915-12.915c7.112,0,12.915,5.75,12.915,12.915 + c0,7.111-5.75,12.916-12.915,12.916C16.96,31.516,11.157,25.766,11.157,18.6z"/> + <path fill="#FFFF48" d="M11.178,18.6c0-7.1,5.741-12.894,12.895-12.894c7.101,0,12.894,5.741,12.894,12.894 + c0,7.099-5.74,12.894-12.894,12.894C16.972,31.494,11.178,25.752,11.178,18.6z"/> + <path fill="#FFFF49" d="M11.199,18.6c0-7.089,5.732-12.873,12.874-12.873c7.089,0,12.873,5.731,12.873,12.873 + c0,7.087-5.73,12.873-12.873,12.873C16.984,31.473,11.199,25.74,11.199,18.6z"/> + <path fill="#FFFF4A" d="M11.221,18.6c0-7.078,5.723-12.852,12.852-12.852c7.078,0,12.853,5.722,12.853,12.852 + c0,7.078-5.725,12.852-12.854,12.852C16.995,31.452,11.221,25.729,11.221,18.6z"/> + <path fill="#FFFF4B" d="M11.242,18.6c0-7.067,5.714-12.832,12.832-12.832c7.067,0,12.833,5.713,12.833,12.832 + c0,7.066-5.715,12.832-12.833,12.832C17.007,31.432,11.242,25.717,11.242,18.6z"/> + <path fill="#FFFF4C" d="M11.264,18.6c0-7.056,5.705-12.811,12.811-12.811c7.056,0,12.812,5.704,12.812,12.811 + c0,7.054-5.705,12.81-12.812,12.81C17.019,31.41,11.264,25.705,11.264,18.6z"/> + <path fill="#FFFF4D" d="M11.286,18.6c0-7.044,5.695-12.79,12.79-12.79c7.045,0,12.79,5.695,12.79,12.79 + c0,7.044-5.693,12.791-12.79,12.791C17.031,31.391,11.286,25.693,11.286,18.6z"/> + <path fill="#FFFF4E" d="M11.307,18.6c0-7.033,5.686-12.769,12.769-12.769c7.034,0,12.77,5.686,12.77,12.769 + c0,7.034-5.688,12.768-12.77,12.768C17.043,31.368,11.307,25.684,11.307,18.6z"/> + <path fill="#FFFF4F" d="M11.329,18.6c0-7.022,5.677-12.748,12.748-12.748c7.023,0,12.748,5.677,12.748,12.748 + c0,7.022-5.678,12.748-12.748,12.748C17.054,31.348,11.329,25.67,11.329,18.6z"/> + <path fill="#FFFF50" d="M11.351,18.6c0-7.011,5.667-12.727,12.727-12.727c7.012,0,12.727,5.668,12.727,12.727 + c0,7.011-5.668,12.727-12.727,12.727C17.066,31.327,11.351,25.658,11.351,18.6z"/> + <path fill="#FFFF51" d="M11.372,18.6c0-7,5.659-12.706,12.706-12.706c7,0,12.705,5.659,12.705,12.706 + c0,7-5.658,12.707-12.705,12.707C17.078,31.307,11.372,25.646,11.372,18.6z"/> + <path fill="#FFFF52" d="M11.394,18.6c0-6.989,5.65-12.685,12.685-12.685c6.987,0,12.685,5.65,12.685,12.685 + c0,6.989-5.648,12.685-12.685,12.685C17.09,31.285,11.394,25.635,11.394,18.6z"/> + <path fill="#FFFF53" d="M11.415,18.6c0-6.978,5.641-12.664,12.664-12.664c6.978,0,12.665,5.641,12.665,12.664 + c0,6.978-5.641,12.664-12.665,12.664C17.102,31.264,11.415,25.623,11.415,18.6z"/> + <path fill="#FFFF54" d="M11.437,18.6c0-6.967,5.631-12.643,12.643-12.643c6.967,0,12.645,5.631,12.645,12.643 + c0,6.966-5.633,12.643-12.645,12.643C17.113,31.243,11.437,25.611,11.437,18.6z"/> + <path fill="#FFFF55" d="M11.459,18.6c0-6.956,5.622-12.623,12.622-12.623c6.956,0,12.622,5.623,12.622,12.623 + c0,6.957-5.621,12.623-12.622,12.623C17.125,31.223,11.459,25.6,11.459,18.6z"/> + <path fill="#FFFF56" d="M11.48,18.6c0-6.944,5.613-12.602,12.602-12.602c6.945,0,12.602,5.613,12.602,12.602 + c0,6.944-5.613,12.601-12.602,12.601C17.137,31.201,11.48,25.588,11.48,18.6z"/> + <path fill="#FFFF57" d="M11.502,18.6c0-6.934,5.604-12.581,12.581-12.581c6.933,0,12.581,5.604,12.581,12.581 + c0,6.933-5.604,12.582-12.581,12.582C17.149,31.182,11.502,25.576,11.502,18.6z"/> + <path fill="#FFFF58" d="M11.523,18.6c0-6.922,5.595-12.56,12.56-12.56c6.923,0,12.56,5.595,12.56,12.56 + c0,6.921-5.594,12.559-12.56,12.559C17.16,31.159,11.523,25.564,11.523,18.6z"/> + <path fill="#FFFF59" d="M11.545,18.6c0-6.911,5.585-12.539,12.539-12.539c6.912,0,12.539,5.585,12.539,12.539 + c0,6.911-5.586,12.539-12.539,12.539C17.172,31.139,11.545,25.553,11.545,18.6z"/> + <path fill="#FFFF5A" d="M11.566,18.6c0-6.9,5.577-12.518,12.518-12.518c6.9,0,12.518,5.576,12.518,12.518 + c0,6.9-5.576,12.517-12.518,12.517C17.184,31.117,11.566,25.541,11.566,18.6z"/> + <path fill="#FFFF5B" d="M11.588,18.6c0-6.889,5.567-12.497,12.497-12.497c6.89,0,12.497,5.567,12.497,12.497 + c0,6.889-5.566,12.498-12.497,12.498C17.195,31.098,11.588,25.529,11.588,18.6z"/> + <path fill="#FFFF5C" d="M11.609,18.6c0-6.878,5.558-12.476,12.476-12.476c6.878,0,12.476,5.559,12.476,12.476 + c0,6.876-5.559,12.476-12.476,12.476C17.208,31.076,11.609,25.518,11.609,18.6z"/> + <path fill="#FFFF5D" d="M11.631,18.6c0-6.867,5.549-12.455,12.455-12.455c6.867,0,12.455,5.549,12.455,12.455 + c0,6.867-5.549,12.455-12.455,12.455C17.219,31.055,11.631,25.506,11.631,18.6z"/> + <path fill="#FFFF5E" d="M11.652,18.6c0-6.855,5.54-12.434,12.434-12.434c6.855,0,12.434,5.54,12.434,12.434 + c0,6.855-5.539,12.434-12.434,12.434C17.231,31.034,11.652,25.494,11.652,18.6z"/> + <path fill="#FFFF5F" d="M11.674,18.6c0-6.844,5.531-12.413,12.413-12.413c6.845,0,12.415,5.531,12.415,12.413 + c0,6.843-5.531,12.414-12.415,12.414C17.243,31.014,11.674,25.482,11.674,18.6z"/> + <path fill="#FFFF60" d="M11.695,18.6c0-6.833,5.521-12.392,12.393-12.392c6.834,0,12.393,5.521,12.393,12.392 + c0,6.833-5.521,12.392-12.393,12.392C17.254,30.992,11.695,25.471,11.695,18.6z"/> + <path fill="#FFFF61" d="M11.717,18.6c0-6.822,5.513-12.371,12.372-12.371c6.823,0,12.372,5.512,12.372,12.371 + c0,6.822-5.514,12.371-12.372,12.371C17.266,30.971,11.717,25.459,11.717,18.6z"/> + <path fill="#FFFF62" d="M11.739,18.6c0-6.811,5.503-12.351,12.35-12.351c6.812,0,12.351,5.503,12.351,12.351 + c0,6.811-5.504,12.35-12.351,12.35C17.278,30.95,11.739,25.447,11.739,18.6z"/> + <path fill="#FFFF63" d="M11.76,18.6c0-6.8,5.494-12.33,12.33-12.33c6.799,0,12.33,5.494,12.33,12.33 + c0,6.798-5.494,12.33-12.33,12.33C17.29,30.93,11.76,25.436,11.76,18.6z"/> + <path fill="#FFFF64" d="M11.782,18.6c0-6.789,5.485-12.309,12.309-12.309c6.79,0,12.31,5.485,12.31,12.309 + c0,6.789-5.484,12.308-12.31,12.308C17.301,30.908,11.782,25.423,11.782,18.6z"/> + <path fill="#FFFF65" d="M11.803,18.6c0-6.778,5.476-12.288,12.288-12.288c6.778,0,12.288,5.476,12.288,12.288 + c0,6.778-5.477,12.289-12.288,12.289C17.313,30.889,11.803,25.411,11.803,18.6z"/> + <path fill="#FFFF66" d="M11.825,18.6c0-6.767,5.467-12.267,12.267-12.267c6.768,0,12.268,5.466,12.268,12.267 + c0,6.766-5.467,12.266-12.268,12.266C17.325,30.866,11.825,25.398,11.825,18.6z"/> + <path fill="#FFFF67" d="M11.847,18.6c0-6.756,5.457-12.246,12.246-12.246c6.757,0,12.247,5.458,12.247,12.246 + c0,6.755-5.459,12.246-12.247,12.246C17.337,30.846,11.847,25.389,11.847,18.6z"/> + <path fill="#FFFF68" d="M11.868,18.6c0-6.745,5.449-12.225,12.225-12.225c6.745,0,12.226,5.448,12.226,12.225 + c0,6.746-5.449,12.224-12.226,12.224C17.348,30.824,11.868,25.376,11.868,18.6z"/> + <path fill="#FFFF69" d="M11.89,18.6c0-6.733,5.439-12.204,12.204-12.204c6.732,0,12.205,5.439,12.205,12.204 + c0,6.733-5.439,12.205-12.205,12.205C17.36,30.805,11.89,25.364,11.89,18.6z"/> + <path fill="#FFFF6A" d="M11.911,18.6c0-6.723,5.43-12.183,12.183-12.183c6.723,0,12.184,5.43,12.184,12.183 + c0,6.722-5.43,12.183-12.184,12.183C17.372,30.783,11.911,25.354,11.911,18.6z"/> + <path fill="#FFFF6B" d="M11.933,18.6c0-6.711,5.421-12.162,12.162-12.162c6.712,0,12.163,5.421,12.163,12.162 + c0,6.71-5.422,12.162-12.163,12.162C17.384,30.762,11.933,25.341,11.933,18.6z"/> + <path fill="#FFFF6C" d="M11.954,18.6c0-6.7,5.412-12.141,12.142-12.141c6.701,0,12.141,5.412,12.141,12.141 + c0,6.7-5.412,12.141-12.141,12.141C17.396,30.741,11.954,25.329,11.954,18.6z"/> + <path fill="#FFFF6D" d="M11.976,18.6c0-6.689,5.402-12.121,12.12-12.121c6.688,0,12.121,5.403,12.121,12.121 + c0,6.689-5.402,12.121-12.121,12.121C17.407,30.721,11.976,25.316,11.976,18.6z"/> + <path fill="#FFFF6E" d="M11.998,18.6c0-6.678,5.393-12.099,12.099-12.099c6.679,0,12.099,5.393,12.099,12.099 + c0,6.677-5.393,12.099-12.099,12.099C17.419,30.699,11.998,25.307,11.998,18.6z"/> + <path fill="#FFFF6F" d="M12.019,18.6c0-6.667,5.384-12.079,12.079-12.079c6.667,0,12.078,5.384,12.078,12.079 + c0,6.667-5.383,12.078-12.078,12.078C17.431,30.678,12.019,25.294,12.019,18.6z"/> + <path fill="#FFFF70" d="M12.041,18.6c0-6.656,5.375-12.058,12.058-12.058c6.655,0,12.057,5.375,12.057,12.058 + c0,6.655-5.375,12.057-12.057,12.057C17.442,30.657,12.041,25.282,12.041,18.6z"/> + <path fill="#FFFF71" d="M12.062,18.6c0-6.645,5.366-12.037,12.037-12.037c6.645,0,12.036,5.366,12.036,12.037 + c0,6.644-5.365,12.037-12.036,12.037C17.454,30.637,12.062,25.271,12.062,18.6z"/> + <path fill="#FFFF72" d="M12.084,18.6c0-6.633,5.357-12.016,12.016-12.016c6.632,0,12.015,5.357,12.015,12.016 + c0,6.632-5.355,12.015-12.015,12.015C17.466,30.615,12.084,25.259,12.084,18.6z"/> + <path fill="#FFFF73" d="M12.105,18.6c0-6.622,5.348-11.995,11.995-11.995c6.623,0,11.996,5.348,11.996,11.995 + c0,6.623-5.35,11.996-11.996,11.996C17.478,30.596,12.105,25.247,12.105,18.6z"/> + <path fill="#FFFF74" d="M12.127,18.6c0-6.611,5.338-11.974,11.974-11.974c6.612,0,11.973,5.339,11.973,11.974 + c0,6.611-5.338,11.973-11.973,11.973C17.49,30.573,12.127,25.234,12.127,18.6z"/> + <path fill="#FFFF75" d="M12.149,18.6c0-6.6,5.329-11.953,11.953-11.953c6.599,0,11.953,5.33,11.953,11.953 + c0,6.6-5.328,11.953-11.953,11.953C17.502,30.553,12.149,25.225,12.149,18.6z"/> + <path fill="#FFFF76" d="M12.17,18.6c0-6.589,5.32-11.932,11.932-11.932c6.589,0,11.931,5.32,11.931,11.932 + c0,6.587-5.318,11.932-11.931,11.932C17.513,30.532,12.17,25.212,12.17,18.6z"/> + <path fill="#FFFF77" d="M12.192,18.6c0-6.578,5.311-11.911,11.911-11.911c6.579,0,11.913,5.311,11.913,11.911 + c0,6.578-5.312,11.911-11.913,11.911C17.525,30.511,12.192,25.2,12.192,18.6z"/> + <path fill="#FFFF78" d="M12.213,18.6c0-6.567,5.302-11.89,11.891-11.89c6.568,0,11.89,5.302,11.89,11.89 + c0,6.567-5.303,11.89-11.89,11.89C17.537,30.49,12.213,25.188,12.213,18.6z"/> + <path fill="#FFFF79" d="M12.235,18.6c0-6.556,5.292-11.87,11.869-11.87c6.556,0,11.869,5.293,11.869,11.87 + c0,6.554-5.293,11.869-11.869,11.869C17.548,30.469,12.235,25.176,12.235,18.6z"/> + <path fill="#FFFF7A" d="M12.256,18.6c0-6.544,5.284-11.849,11.848-11.849c6.544,0,11.847,5.284,11.847,11.849 + c0,6.544-5.281,11.848-11.847,11.848C17.56,30.448,12.256,25.164,12.256,18.6z"/> + <path fill="#FFFF7B" d="M12.278,18.6c0-6.533,5.274-11.828,11.828-11.828c6.533,0,11.828,5.274,11.828,11.828 + c0,6.533-5.275,11.828-11.828,11.828C17.572,30.428,12.278,25.152,12.278,18.6z"/> + <path fill="#FFFF7C" d="M12.299,18.6c0-6.522,5.266-11.807,11.807-11.807c6.523,0,11.808,5.265,11.808,11.807 + c0,6.522-5.268,11.806-11.808,11.806C17.584,30.406,12.299,25.141,12.299,18.6z"/> + <path fill="#FFFF7D" d="M12.321,18.6c0-6.511,5.256-11.786,11.786-11.786c6.51,0,11.786,5.256,11.786,11.786 + c0,6.511-5.256,11.786-11.786,11.786C17.595,30.386,12.321,25.129,12.321,18.6z"/> + <path fill="#FFFF7E" d="M12.342,18.6c0-6.5,5.247-11.765,11.765-11.765c6.5,0,11.764,5.247,11.764,11.765 + c0,6.5-5.246,11.764-11.764,11.764C17.608,30.364,12.342,25.117,12.342,18.6z"/> + <path fill="#FFFF7F" d="M12.364,18.6c0-6.489,5.238-11.744,11.744-11.744c6.49,0,11.744,5.238,11.744,11.744 + c0,6.489-5.238,11.744-11.744,11.744C17.619,30.344,12.364,25.105,12.364,18.6z"/> + <path fill="#FFFF80" d="M12.386,18.6c0-6.478,5.229-11.723,11.723-11.723c6.479,0,11.723,5.229,11.723,11.723 + c0,6.477-5.229,11.722-11.723,11.722C17.631,30.322,12.386,25.094,12.386,18.6z"/> + <path fill="#FFFF81" d="M12.407,18.6c0-6.467,5.22-11.702,11.702-11.702c6.465,0,11.702,5.22,11.702,11.702 + c0,6.466-5.219,11.702-11.702,11.702C17.643,30.302,12.407,25.082,12.407,18.6z"/> + <path fill="#FFFF82" d="M12.429,18.6c0-6.456,5.21-11.681,11.681-11.681c6.455,0,11.681,5.21,11.681,11.681 + c0,6.457-5.209,11.681-11.681,11.681C17.654,30.281,12.429,25.07,12.429,18.6z"/> + <path fill="#FFFF83" d="M12.45,18.6c0-6.444,5.202-11.66,11.661-11.66c6.444,0,11.661,5.201,11.661,11.66 + c0,6.444-5.203,11.66-11.661,11.66C17.666,30.26,12.45,25.059,12.45,18.6z"/> + <path fill="#FFFF84" d="M12.472,18.6c0-6.434,5.192-11.639,11.639-11.639c6.434,0,11.639,5.192,11.639,11.639 + c0,6.433-5.191,11.639-11.639,11.639C17.678,30.239,12.472,25.047,12.472,18.6z"/> + <path fill="#FFFF85" d="M12.493,18.6c0-6.422,5.183-11.619,11.619-11.619c6.421,0,11.619,5.183,11.619,11.619 + c0,6.421-5.184,11.618-11.619,11.618C17.69,30.218,12.493,25.035,12.493,18.6z"/> + <path fill="#FFFF86" d="M12.515,18.6c0-6.411,5.174-11.598,11.598-11.598c6.411,0,11.598,5.174,11.598,11.598 + c0,6.411-5.174,11.597-11.598,11.597C17.701,30.197,12.515,25.023,12.515,18.6z"/> + <path fill="#FFFF87" d="M12.537,18.6c0-6.4,5.165-11.577,11.577-11.577c6.4,0,11.578,5.165,11.578,11.577 + c0,6.4-5.166,11.577-11.578,11.577C17.713,30.177,12.537,25.012,12.537,18.6z"/> + <path fill="#FFFF88" d="M12.558,18.6c0-6.389,5.156-11.556,11.556-11.556c6.39,0,11.556,5.155,11.556,11.556 + c0,6.388-5.156,11.554-11.556,11.554C17.725,30.154,12.558,25,12.558,18.6z"/> + <path fill="#FFFF89" d="M12.58,18.6c0-6.378,5.146-11.535,11.535-11.535c6.377,0,11.534,5.146,11.534,11.535 + c0,6.376-5.145,11.535-11.534,11.535C17.737,30.135,12.58,24.988,12.58,18.6z"/> + <path fill="#FFFF8A" d="M12.601,18.6c0-6.367,5.138-11.514,11.514-11.514c6.368,0,11.514,5.137,11.514,11.514 + c0,6.367-5.139,11.513-11.514,11.513C17.749,30.113,12.601,24.977,12.601,18.6z"/> + <path fill="#FFFF8B" d="M12.623,18.6c0-6.356,5.128-11.493,11.493-11.493c6.355,0,11.494,5.128,11.494,11.493 + c0,6.355-5.129,11.493-11.494,11.493C17.76,30.093,12.623,24.965,12.623,18.6z"/> + <path fill="#FFFF8C" d="M12.645,18.6c0-6.345,5.119-11.472,11.472-11.472c6.344,0,11.473,5.119,11.473,11.472 + c0,6.343-5.119,11.47-11.473,11.47C17.772,30.07,12.645,24.953,12.645,18.6z"/> + <path fill="#FFFF8D" d="M12.666,18.6c0-6.333,5.11-11.451,11.451-11.451c6.333,0,11.452,5.11,11.452,11.451 + c0,6.333-5.109,11.451-11.452,11.451C17.784,30.051,12.666,24.941,12.666,18.6z"/> + <path fill="#FFFF8E" d="M12.688,18.6c0-6.322,5.101-11.43,11.43-11.43c6.322,0,11.431,5.101,11.431,11.43 + c0,6.322-5.102,11.429-11.431,11.429C17.796,30.029,12.688,24.93,12.688,18.6z"/> + <path fill="#FFFF8F" d="M12.709,18.6c0-6.312,5.092-11.409,11.41-11.409c6.311,0,11.409,5.091,11.409,11.409 + c0,6.311-5.092,11.409-11.409,11.409C17.807,30.009,12.709,24.917,12.709,18.6z"/> + <path fill="#FFFF90" d="M12.731,18.6c0-6.3,5.083-11.388,11.389-11.388c6.3,0,11.388,5.082,11.388,11.388 + c0,6.298-5.082,11.388-11.388,11.388C17.819,29.988,12.731,24.904,12.731,18.6z"/> + <path fill="#FFFF91" d="M12.753,18.6c0-6.289,5.073-11.368,11.367-11.368c6.288,0,11.366,5.073,11.366,11.368 + c0,6.289-5.072,11.367-11.366,11.367C17.831,29.967,12.753,24.895,12.753,18.6z"/> + <path fill="#FFFF92" d="M12.774,18.6c0-6.278,5.064-11.347,11.347-11.347c6.277,0,11.346,5.064,11.346,11.347 + c0,6.278-5.062,11.345-11.346,11.345C17.842,29.945,12.774,24.882,12.774,18.6z"/> + <path fill="#FFFF93" d="M12.796,18.6c0-6.267,5.055-11.326,11.326-11.326c6.267,0,11.325,5.055,11.325,11.326 + c0,6.266-5.055,11.326-11.325,11.326C17.854,29.926,12.796,24.87,12.796,18.6z"/> + <path fill="#FFFF94" d="M12.817,18.6c0-6.256,5.046-11.305,11.305-11.305c6.257,0,11.306,5.046,11.306,11.305 + c0,6.255-5.047,11.304-11.306,11.304C17.866,29.904,12.817,24.857,12.817,18.6z"/> + <path fill="#FFFF95" d="M12.838,18.6c0-6.245,5.037-11.284,11.284-11.284c6.243,0,11.282,5.037,11.282,11.284 + c0,6.246-5.035,11.284-11.282,11.284C17.878,29.884,12.838,24.848,12.838,18.6z"/> + <path fill="#FFFF96" d="M12.86,18.6c0-6.233,5.028-11.263,11.263-11.263c6.232,0,11.262,5.028,11.262,11.263 + c0,6.233-5.027,11.261-11.262,11.261C17.89,29.861,12.86,24.835,12.86,18.6z"/> + <path fill="#FFFF97" d="M12.882,18.6c0-6.223,5.018-11.242,11.242-11.242c6.222,0,11.241,5.019,11.241,11.242 + c0,6.222-5.018,11.242-11.241,11.242C17.901,29.842,12.882,24.823,12.882,18.6z"/> + <path fill="#FFFF98" d="M12.903,18.6c0-6.211,5.009-11.221,11.221-11.221S35.346,12.388,35.346,18.6 + c0,6.21-5.01,11.22-11.222,11.22C17.913,29.82,12.903,24.812,12.903,18.6z"/> + <path fill="#FFFF99" d="M12.925,18.6c0-6.2,5-11.2,11.2-11.2c6.199,0,11.199,5,11.199,11.2c0,6.2-5,11.2-11.199,11.2 + C17.925,29.8,12.925,24.8,12.925,18.6z"/> + </g> + + <linearGradient id="XMLID_67_" gradientUnits="userSpaceOnUse" x1="396.2324" y1="753.8262" x2="396.2324" y2="763.584" gradientTransform="matrix(1 0 0 1 -372 -747)"> + <stop offset="0" style="stop-color:#FFFFFF"/> + <stop offset="1" style="stop-color:#FFFF99"/> + </linearGradient> + <path fill="url(#XMLID_67_)" d="M15.358,11.705c0-2.701,3.961-4.879,8.875-4.879c4.912,0,8.875,2.178,8.875,4.879 + s-3.963,4.879-8.875,4.879C19.32,16.583,15.358,14.405,15.358,11.705z"/> + <path fill="#666666" d="M23.125,41.3v0.9c0,0.899,0.7,1.6,1.6,1.6c0.9,0,1.6-0.7,1.6-1.6v-0.9h-3.299H23.125z"/> + + <linearGradient id="XMLID_68_" gradientUnits="userSpaceOnUse" x1="396.625" y1="784.8896" x2="396.625" y2="788.9111" gradientTransform="matrix(1 0 0 1 -372 -747)"> + <stop offset="0" style="stop-color:#FFFFFF"/> + <stop offset="1" style="stop-color:#000000"/> + </linearGradient> + <path fill="url(#XMLID_68_)" d="M28.225,37.9l-7.6,0.8c-0.9,0.1-1.5,0.899-1.4,1.8c0.1,0.9,0.9,1.5,1.8,1.4l7.6-0.801 + c0.9-0.102,1.5-0.899,1.4-1.802C29.926,38.4,29.125,37.8,28.225,37.9z"/> + + <linearGradient id="XMLID_69_" gradientUnits="userSpaceOnUse" x1="396.625" y1="781.6895" x2="396.625" y2="785.7109" gradientTransform="matrix(1 0 0 1 -372 -747)"> + <stop offset="0" style="stop-color:#FFFFFF"/> + <stop offset="1" style="stop-color:#000000"/> + </linearGradient> + <path fill="url(#XMLID_69_)" d="M28.225,34.7l-7.6,0.8c-0.9,0.1-1.5,0.9-1.4,1.8c0.1,0.9,0.9,1.5,1.8,1.4l7.6-0.8 + c0.9-0.101,1.5-0.9,1.4-1.801C29.926,35.2,29.125,34.6,28.225,34.7z"/> + + <linearGradient id="XMLID_70_" gradientUnits="userSpaceOnUse" x1="396.625" y1="778.5889" x2="396.625" y2="782.6104" gradientTransform="matrix(1 0 0 1 -372 -747)"> + <stop offset="0" style="stop-color:#FFFFFF"/> + <stop offset="1" style="stop-color:#000000"/> + </linearGradient> + <path fill="url(#XMLID_70_)" d="M28.225,31.6l-7.6,0.801c-0.9,0.1-1.5,0.897-1.4,1.8c0.1,0.899,0.9,1.5,1.8,1.399l7.6-0.802 + c0.9-0.1,1.5-0.897,1.4-1.8S29.125,31.5,28.225,31.6z"/> + <path fill="none" stroke="#000000" stroke-width="1.0944" d="M22.325,28.3l-3.5-10.7c0,0,6.601,3.9,10.5,0"/> +</g> +<g id="crop_x0020_marks"> + <path fill="none" d="M47.975,48h-48V0h48V48z"/> +</g> +</svg> diff --git a/docbook-xsl-1.76.1/images/colorsvg/up.svg b/docbook-xsl-1.76.1/images/colorsvg/up.svg new file mode 100644 index 0000000..8eca45f --- /dev/null +++ b/docbook-xsl-1.76.1/images/colorsvg/up.svg @@ -0,0 +1,338 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [ + <!ENTITY ns_svg "http://www.w3.org/2000/svg"> + <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> +]> +<svg version="1.1" id="Up" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="48" height="48" viewBox="0 0 48 48" + overflow="visible" enable-background="new 0 0 48 48" xml:space="preserve"> +<g> + <path fill="#FFFFFF" stroke="#FFFFFF" stroke-width="7.5901" stroke-linejoin="round" d="M41.104,25.661 + c0.301,0,0.301-0.3,0.198-0.5l-16.899-16.6c-0.5-0.5-0.7-0.4-1,0l-16.7,16.6c-0.1,0.103-0.1,0.399,0.1,0.399h10v13.601 + c0,0.301,0.2,0.5,0.4,0.5h13.299c0.398,0,0.5-0.199,0.5-0.601v-13.5L41.104,25.661z"/> + <g> + <path fill="#0033CC" d="M41.104,25.661c0.301,0,0.301-0.3,0.198-0.5l-16.899-16.6c-0.5-0.5-0.7-0.4-1,0l-16.7,16.6 + c-0.1,0.103-0.1,0.399,0.1,0.399h10v13.601c0,0.301,0.2,0.5,0.4,0.5h13.299c0.398,0,0.5-0.199,0.5-0.601v-13.5L41.104,25.661z"/> + <path fill="#0134CC" d="M41.075,25.65c0.3,0,0.3-0.299,0.198-0.498L24.402,8.577c-0.499-0.499-0.699-0.4-0.998,0L6.73,25.152 + c-0.1,0.101-0.1,0.397,0.099,0.397h9.984v13.581c0,0.303,0.2,0.499,0.4,0.499h13.279c0.398,0,0.499-0.196,0.499-0.601V25.55 + L41.075,25.65z"/> + <path fill="#0235CD" d="M41.049,25.643c0.301,0,0.301-0.3,0.199-0.498L24.401,8.591c-0.498-0.498-0.697-0.399-0.996,0 + L6.757,25.145c-0.1,0.101-0.1,0.397,0.099,0.397h9.969v13.562c0,0.301,0.199,0.5,0.399,0.5H30.48c0.397,0,0.498-0.199,0.498-0.601 + V25.542L41.049,25.643z"/> + <path fill="#0336CD" d="M41.021,25.632c0.299,0,0.299-0.299,0.199-0.498L24.4,8.604c-0.498-0.498-0.696-0.399-0.995,0 + L6.783,25.134c-0.099,0.101-0.099,0.398,0.099,0.398h9.953v13.543c0,0.299,0.199,0.495,0.398,0.495h13.24 + c0.396,0,0.495-0.196,0.495-0.596v-13.44L41.021,25.632z"/> + <path fill="#0437CE" d="M40.995,25.622c0.299,0,0.299-0.299,0.198-0.496L24.4,8.62c-0.497-0.497-0.696-0.398-0.994,0L6.811,25.126 + c-0.099,0.101-0.099,0.396,0.099,0.396h9.938v13.523c0,0.299,0.199,0.496,0.397,0.496h13.217c0.396,0,0.496-0.197,0.496-0.598 + v-13.42L40.995,25.622z"/> + <path fill="#0538CE" d="M40.969,25.614c0.299,0,0.299-0.3,0.198-0.498L24.399,8.634c-0.496-0.496-0.694-0.397-0.992,0 + L6.837,25.116c-0.099,0.102-0.099,0.397,0.099,0.397h9.922v13.504c0,0.299,0.199,0.496,0.398,0.496h13.195 + c0.396,0,0.494-0.197,0.494-0.597V25.514L40.969,25.614z"/> + <path fill="#0639CF" d="M40.941,25.604c0.297,0,0.297-0.297,0.197-0.496L24.399,8.649c-0.496-0.496-0.693-0.397-0.99,0 + L6.864,25.107c-0.099,0.101-0.099,0.396,0.099,0.396h9.906v13.483c0,0.3,0.199,0.496,0.397,0.496h13.173 + c0.396,0,0.496-0.196,0.496-0.596V25.505L40.941,25.604z"/> + <path fill="#073ACF" d="M40.915,25.594c0.298,0,0.298-0.298,0.196-0.494L24.398,8.664c-0.495-0.495-0.692-0.397-0.989,0 + L6.891,25.1c-0.099,0.101-0.099,0.396,0.098,0.396h9.892V38.96c0,0.298,0.198,0.494,0.396,0.494h13.155 + c0.396,0,0.494-0.196,0.494-0.593V25.495L40.915,25.594z"/> + <path fill="#083BD0" d="M40.891,25.585c0.297,0,0.297-0.297,0.196-0.496l-16.69-16.41c-0.494-0.494-0.691-0.396-0.987,0 + L6.918,25.089c-0.099,0.101-0.099,0.396,0.098,0.396h9.875V38.93c0,0.299,0.198,0.495,0.396,0.495h13.134 + c0.396,0,0.494-0.196,0.494-0.595V25.486L40.891,25.585z"/> + <path fill="#093CD0" d="M40.859,25.575c0.3,0,0.3-0.296,0.199-0.494L24.397,8.692c-0.493-0.494-0.69-0.396-0.985,0L6.945,25.081 + c-0.098,0.101-0.098,0.396,0.098,0.396h9.86v13.428c0,0.298,0.197,0.494,0.395,0.494h13.113c0.396,0,0.491-0.196,0.491-0.594 + V25.477L40.859,25.575z"/> + <path fill="#0A3DD1" d="M40.835,25.564c0.296,0,0.296-0.295,0.197-0.491L24.396,8.707c-0.492-0.493-0.689-0.395-0.984,0 + L6.972,25.073c-0.098,0.098-0.098,0.395,0.098,0.395h9.844v13.408c0,0.295,0.197,0.492,0.394,0.492h13.09 + c0.396,0,0.492-0.197,0.492-0.593V25.465L40.835,25.564z"/> + <path fill="#0B3ED1" d="M40.811,25.557c0.295,0,0.295-0.296,0.195-0.492L24.396,8.723c-0.492-0.493-0.688-0.394-0.983,0 + L6.999,25.062c-0.098,0.101-0.098,0.396,0.098,0.396h9.829v13.388c0,0.297,0.197,0.491,0.394,0.491h13.073 + c0.395,0,0.489-0.194,0.489-0.59V25.458L40.811,25.557z"/> + <path fill="#0C3FD2" d="M40.782,25.546c0.295,0,0.295-0.295,0.194-0.491L24.395,8.736c-0.491-0.492-0.687-0.394-0.981,0 + L7.026,25.055c-0.098,0.1-0.098,0.396,0.098,0.396h9.813v13.368c0,0.296,0.197,0.49,0.393,0.49h13.051 + c0.395,0,0.49-0.194,0.49-0.588V25.448L40.782,25.546z"/> + <path fill="#0D40D2" d="M40.755,25.536c0.295,0,0.295-0.293,0.196-0.49L24.394,8.75c-0.489-0.491-0.685-0.393-0.979,0 + L7.053,25.046c-0.098,0.099-0.098,0.394,0.098,0.394h9.797V38.79c0,0.297,0.196,0.492,0.392,0.492h13.03 + c0.394,0,0.489-0.195,0.489-0.591V25.438L40.755,25.536z"/> + <path fill="#0E41D3" d="M40.729,25.527c0.293,0,0.293-0.295,0.195-0.489L24.394,8.766c-0.489-0.489-0.685-0.392-0.978,0 + L7.08,25.038c-0.097,0.099-0.097,0.394,0.098,0.394h9.782V38.76c0,0.295,0.196,0.489,0.392,0.489h13.007 + c0.394,0,0.488-0.194,0.488-0.588V25.43L40.729,25.527z"/> + <path fill="#0F42D3" d="M40.702,25.518c0.294,0,0.294-0.293,0.194-0.488L24.393,8.781c-0.488-0.489-0.683-0.392-0.976,0 + L7.107,25.027c-0.097,0.101-0.097,0.394,0.098,0.394h9.766v13.312c0,0.295,0.195,0.49,0.391,0.49h12.99 + c0.393,0,0.487-0.195,0.487-0.588V25.419L40.702,25.518z"/> + <path fill="#1043D4" d="M40.676,25.508c0.293,0,0.293-0.294,0.195-0.488L24.392,8.794c-0.487-0.488-0.682-0.392-0.975,0 + L7.134,25.02c-0.097,0.101-0.097,0.394,0.097,0.394h9.75v13.293c0,0.293,0.196,0.485,0.391,0.485H30.34 + c0.393,0,0.487-0.192,0.487-0.586V25.411L40.676,25.508z"/> + <path fill="#1144D4" d="M40.646,25.497c0.293,0,0.293-0.293,0.194-0.487l-16.45-16.2c-0.487-0.488-0.681-0.391-0.973,0L7.16,25.01 + C7.063,25.107,7.063,25.4,7.257,25.4h9.735v13.271c0,0.294,0.195,0.487,0.39,0.487H30.33c0.389,0,0.484-0.193,0.484-0.586V25.4 + L40.646,25.497z"/> + <path fill="#1245D5" d="M40.622,25.489c0.293,0,0.293-0.294,0.194-0.488L24.391,8.824c-0.486-0.487-0.68-0.39-0.972,0 + L7.188,25.001c-0.097,0.099-0.097,0.392,0.096,0.392h9.72v13.254c0,0.293,0.195,0.486,0.389,0.486h12.925 + c0.391,0,0.486-0.193,0.486-0.585V25.393L40.622,25.489z"/> + <path fill="#1346D5" d="M40.598,25.479c0.291,0,0.291-0.291,0.192-0.484L24.391,8.838c-0.485-0.486-0.679-0.39-0.97,0 + L7.215,24.993c-0.097,0.099-0.097,0.39,0.096,0.39h9.704v13.235c0,0.291,0.195,0.485,0.389,0.485h12.907 + c0.391,0,0.484-0.194,0.484-0.584V25.382L40.598,25.479z"/> + <path fill="#1447D6" d="M40.568,25.471c0.291,0,0.291-0.293,0.193-0.486L24.39,8.853c-0.484-0.485-0.678-0.389-0.968,0 + L7.242,24.982c-0.097,0.1-0.097,0.391,0.096,0.391h9.688v13.215c0,0.293,0.194,0.486,0.388,0.486H30.3 + c0.39,0,0.484-0.193,0.484-0.582v-13.12L40.568,25.471z"/> + <path fill="#1548D6" d="M40.542,25.46c0.291,0,0.291-0.291,0.192-0.485L24.389,8.868c-0.483-0.485-0.677-0.388-0.966,0 + L7.269,24.975c-0.097,0.101-0.097,0.392,0.096,0.392h9.673v13.194c0,0.291,0.193,0.483,0.387,0.483h12.864 + c0.387,0,0.482-0.192,0.482-0.582V25.361L40.542,25.46z"/> + <path fill="#1649D7" d="M40.518,25.45c0.291,0,0.291-0.291,0.191-0.483L24.389,8.881c-0.483-0.484-0.676-0.388-0.966,0 + L7.295,24.966c-0.096,0.099-0.096,0.388,0.096,0.388h9.657v13.181c0,0.291,0.193,0.481,0.387,0.481h12.842 + c0.388,0,0.48-0.19,0.48-0.582v-13.08L40.518,25.45z"/> + <path fill="#174AD7" d="M40.488,25.441c0.289,0,0.289-0.291,0.193-0.483L24.388,8.896c-0.482-0.483-0.675-0.388-0.964,0 + L7.323,24.956c-0.096,0.099-0.096,0.39,0.096,0.39h9.642v13.155c0,0.291,0.193,0.483,0.386,0.483h12.825 + c0.386,0,0.479-0.192,0.479-0.58V25.346L40.488,25.441z"/> + <path fill="#184BD8" d="M40.463,25.432c0.289,0,0.289-0.289,0.191-0.481L24.387,8.912c-0.481-0.482-0.673-0.387-0.962,0 + L7.349,24.948c-0.096,0.098-0.096,0.387,0.096,0.387h9.626v13.14c0,0.291,0.193,0.483,0.386,0.483h12.802 + c0.388,0,0.479-0.192,0.479-0.58V25.335L40.463,25.432z"/> + <path fill="#194CD8" d="M40.438,25.421c0.289,0,0.289-0.289,0.19-0.481L24.386,8.926c-0.48-0.481-0.672-0.386-0.96,0L7.376,24.938 + c-0.096,0.1-0.096,0.389,0.096,0.389h9.61v13.117c0,0.291,0.192,0.482,0.385,0.482h12.782c0.385,0,0.479-0.191,0.479-0.578V25.325 + L40.438,25.421z"/> + <path fill="#1A4DD9" d="M40.409,25.413c0.289,0,0.289-0.289,0.19-0.481L24.386,8.939c-0.48-0.481-0.671-0.385-0.959,0 + L7.403,24.932c-0.096,0.096-0.096,0.385,0.096,0.385h9.595v13.103c0,0.289,0.192,0.479,0.384,0.479h12.76 + c0.385,0,0.479-0.19,0.479-0.578V25.316L40.409,25.413z"/> + <path fill="#1B4ED9" d="M40.383,25.402c0.288,0,0.288-0.288,0.191-0.479L24.386,8.956c-0.479-0.481-0.67-0.385-0.958,0 + L7.43,24.921c-0.095,0.099-0.095,0.386,0.096,0.386h9.579v13.082c0,0.288,0.192,0.479,0.384,0.479H30.23 + c0.383,0,0.479-0.191,0.479-0.576V25.307L40.383,25.402z"/> + <path fill="#1C4FDA" d="M40.355,25.395c0.287,0,0.287-0.289,0.188-0.479L24.385,8.97c-0.479-0.48-0.669-0.384-0.956,0 + L7.457,24.913c-0.096,0.097-0.096,0.385,0.095,0.385h9.563v13.062c0,0.289,0.192,0.479,0.383,0.479h12.72 + c0.384,0,0.479-0.19,0.479-0.575V25.296L40.355,25.395z"/> + <path fill="#1D50DA" d="M40.329,25.383c0.287,0,0.287-0.287,0.19-0.479L24.384,8.983c-0.478-0.479-0.668-0.384-0.955,0 + L7.484,24.902c-0.095,0.099-0.095,0.386,0.095,0.386h9.548v13.043c0,0.287,0.191,0.479,0.382,0.479h12.699 + c0.383,0,0.478-0.191,0.478-0.576V25.288L40.329,25.383z"/> + <path fill="#1E51DB" d="M40.303,25.374c0.286,0,0.286-0.287,0.19-0.479L24.384,8.999c-0.477-0.479-0.667-0.383-0.953,0 + L7.511,24.895c-0.095,0.099-0.095,0.385,0.094,0.385h9.533v13.022c0,0.287,0.191,0.479,0.382,0.479h12.678 + c0.382,0,0.477-0.189,0.477-0.574v-12.93L40.303,25.374z"/> + <path fill="#1F52DB" d="M40.275,25.364c0.285,0,0.285-0.287,0.188-0.479L24.383,9.014c-0.476-0.478-0.666-0.383-0.951,0 + L7.539,24.886c-0.095,0.097-0.095,0.384,0.094,0.384h9.517v13.004c0,0.287,0.191,0.479,0.381,0.479h12.658 + c0.381,0,0.476-0.19,0.476-0.573V25.27L40.275,25.364z"/> + <path fill="#2053DC" d="M40.25,25.354c0.285,0,0.285-0.285,0.188-0.479L24.382,9.027c-0.475-0.477-0.665-0.382-0.95,0 + L7.565,24.876c-0.095,0.097-0.095,0.383,0.094,0.383h9.501v12.984c0,0.286,0.19,0.479,0.381,0.479h12.637 + c0.381,0,0.477-0.189,0.477-0.572V25.259L40.25,25.354z"/> + <path fill="#2154DC" d="M40.225,25.346c0.283,0,0.283-0.287,0.188-0.478L24.381,9.042c-0.474-0.476-0.664-0.381-0.948,0 + L7.591,24.868c-0.094,0.096-0.094,0.383,0.095,0.383h9.486v12.965c0,0.287,0.19,0.478,0.38,0.478h12.616 + c0.38,0,0.475-0.188,0.475-0.569V25.249L40.225,25.346z"/> + <path fill="#2255DD" d="M40.195,25.335c0.285,0,0.285-0.285,0.188-0.478L24.38,9.057c-0.474-0.475-0.663-0.381-0.947,0 + L7.619,24.859c-0.094,0.097-0.094,0.382,0.094,0.382h9.471v12.946c0,0.285,0.189,0.476,0.379,0.476h12.596 + c0.378,0,0.473-0.188,0.473-0.57V25.241L40.195,25.335z"/> + <path fill="#2356DD" d="M40.17,25.327c0.284,0,0.284-0.285,0.188-0.478L24.381,9.072c-0.473-0.475-0.662-0.38-0.945,0 + l-15.79,15.78c-0.094,0.097-0.094,0.381,0.094,0.381h9.455V38.16c0,0.285,0.189,0.476,0.379,0.476h12.574 + c0.377,0,0.473-0.188,0.473-0.569V25.23L40.17,25.327z"/> + <path fill="#2457DE" d="M40.145,25.316c0.282,0,0.282-0.284,0.188-0.478L24.38,9.085c-0.472-0.474-0.661-0.38-0.944,0 + L7.673,24.841c-0.095,0.097-0.095,0.382,0.094,0.382h9.439V38.13c0,0.285,0.189,0.476,0.378,0.476h12.555 + c0.379,0,0.473-0.188,0.473-0.569V25.223L40.145,25.316z"/> + <path fill="#2558DE" d="M40.116,25.307c0.282,0,0.282-0.285,0.188-0.476L24.379,9.101c-0.472-0.474-0.66-0.379-0.942,0 + L7.699,24.831c-0.094,0.097-0.094,0.381,0.094,0.381h9.424v12.89c0,0.284,0.189,0.476,0.377,0.476h12.533 + c0.378,0,0.473-0.188,0.473-0.568V25.212L40.116,25.307z"/> + <path fill="#2659DF" d="M40.09,25.298c0.283,0,0.283-0.284,0.188-0.475L24.379,9.116c-0.471-0.473-0.659-0.379-0.94,0 + L7.727,24.823c-0.094,0.096-0.094,0.381,0.094,0.381h9.408v12.869c0,0.282,0.189,0.473,0.377,0.473h12.512 + c0.376,0,0.47-0.188,0.47-0.567V25.204L40.09,25.298z"/> + <path fill="#275ADF" d="M40.062,25.288c0.28,0,0.28-0.283,0.188-0.474L24.378,9.13c-0.47-0.472-0.657-0.378-0.938,0L7.754,24.814 + c-0.094,0.097-0.094,0.379,0.093,0.379h9.393v12.851c0,0.285,0.188,0.474,0.376,0.474h12.489c0.377,0,0.472-0.188,0.472-0.565 + V25.193L40.062,25.288z"/> + <path fill="#285BE0" d="M40.037,25.277c0.279,0,0.279-0.282,0.188-0.471L24.377,9.145c-0.469-0.471-0.656-0.378-0.937,0 + L7.781,24.807c-0.094,0.096-0.094,0.377,0.093,0.377h9.377v12.832c0,0.283,0.188,0.474,0.376,0.474H30.1 + c0.375,0,0.467-0.188,0.467-0.566V25.184L40.037,25.277z"/> + <path fill="#295CE0" d="M40.01,25.27c0.281,0,0.281-0.283,0.188-0.474L24.376,9.159c-0.468-0.47-0.655-0.377-0.936,0L7.807,24.796 + c-0.093,0.097-0.093,0.378,0.093,0.378h9.361v12.812c0,0.281,0.188,0.471,0.375,0.471h12.45c0.374,0,0.467-0.188,0.467-0.562 + V25.174L40.01,25.27z"/> + <path fill="#2A5DE1" d="M39.982,25.259c0.281,0,0.281-0.282,0.188-0.471L24.376,9.174c-0.467-0.469-0.654-0.376-0.934,0 + L7.834,24.788c-0.093,0.096-0.093,0.377,0.093,0.377h9.346v12.793c0,0.283,0.188,0.472,0.375,0.472h12.43 + c0.373,0,0.467-0.188,0.467-0.563v-12.7L39.982,25.259z"/> + <path fill="#2B5EE1" d="M39.957,25.249c0.279,0,0.279-0.281,0.188-0.472L24.376,9.188c-0.466-0.469-0.652-0.376-0.933,0 + L7.861,24.779c-0.093,0.095-0.093,0.375,0.093,0.375h9.33V37.93c0,0.282,0.188,0.471,0.374,0.471h12.408 + c0.373,0,0.467-0.188,0.467-0.563v-12.68L39.957,25.249z"/> + <path fill="#2C5FE2" d="M39.932,25.239c0.278,0,0.278-0.281,0.188-0.47L24.375,9.203c-0.465-0.468-0.652-0.375-0.931,0 + L7.888,24.771c-0.093,0.096-0.093,0.375,0.092,0.375h9.314V37.9c0,0.281,0.187,0.47,0.374,0.47h12.389 + c0.373,0,0.465-0.188,0.465-0.562V25.146L39.932,25.239z"/> + <path fill="#2D60E2" d="M39.902,25.229c0.279,0,0.279-0.277,0.187-0.468L24.374,9.217c-0.465-0.467-0.651-0.375-0.929,0 + L7.915,24.762c-0.093,0.094-0.093,0.374,0.092,0.374h9.299V37.87c0,0.28,0.187,0.469,0.373,0.469h12.368 + c0.371,0,0.465-0.188,0.465-0.562V25.136L39.902,25.229z"/> + <path fill="#2E61E3" d="M39.877,25.221c0.277,0,0.277-0.279,0.188-0.468L24.374,9.231c-0.464-0.466-0.649-0.374-0.928,0 + L7.942,24.753c-0.092,0.095-0.092,0.373,0.092,0.373h9.284v12.717c0,0.281,0.186,0.47,0.372,0.47h12.347 + c0.372,0,0.464-0.188,0.464-0.562V25.126L39.877,25.221z"/> + <path fill="#2F62E3" d="M39.852,25.212c0.277,0,0.277-0.28,0.188-0.469L24.373,9.248c-0.463-0.466-0.648-0.374-0.926,0 + L7.969,24.745c-0.092,0.094-0.092,0.373,0.092,0.373h9.268v12.696c0,0.278,0.186,0.468,0.371,0.468h12.325 + c0.371,0,0.463-0.188,0.463-0.562V25.118L39.852,25.212z"/> + <path fill="#3063E4" d="M39.823,25.202c0.276,0,0.276-0.279,0.186-0.468L24.372,9.262c-0.462-0.465-0.647-0.373-0.925,0 + L7.996,24.734c-0.092,0.095-0.092,0.373,0.092,0.373h9.252v12.679c0,0.278,0.186,0.467,0.371,0.467h12.307 + c0.369,0,0.461-0.188,0.461-0.562V25.107L39.823,25.202z"/> + <path fill="#3164E4" d="M39.797,25.191c0.277,0,0.277-0.278,0.186-0.467L24.373,9.274c-0.462-0.465-0.646-0.373-0.923,0 + L8.023,24.727C7.931,24.82,7.931,25.1,8.115,25.1h9.236v12.657c0,0.279,0.186,0.466,0.371,0.466h12.284 + c0.369,0,0.461-0.187,0.461-0.56V25.1L39.797,25.191z"/> + <path fill="#3265E5" d="M39.771,25.184c0.275,0,0.275-0.279,0.186-0.467L24.371,9.29c-0.461-0.464-0.645-0.372-0.922,0 + L8.05,24.717c-0.092,0.094-0.092,0.372,0.091,0.372h9.221v12.64c0,0.279,0.185,0.465,0.37,0.465h12.264 + c0.367,0,0.46-0.186,0.46-0.558V25.089L39.771,25.184z"/> + <path fill="#3366E5" d="M39.744,25.173c0.275,0,0.275-0.278,0.186-0.465L24.371,9.306c-0.46-0.463-0.644-0.372-0.92,0 + L8.077,24.708c-0.092,0.094-0.092,0.371,0.091,0.371h9.206V37.7c0,0.276,0.185,0.463,0.369,0.463h12.241 + c0.369,0,0.461-0.187,0.461-0.558V25.081L39.744,25.173z"/> + <path fill="#3366E6" d="M39.717,25.163c0.276,0,0.276-0.277,0.186-0.463L24.37,9.319c-0.459-0.462-0.643-0.371-0.918,0L8.104,24.7 + c-0.092,0.094-0.092,0.37,0.091,0.37h9.189v12.601c0,0.279,0.185,0.465,0.369,0.465h12.224c0.366,0,0.459-0.186,0.459-0.557V25.07 + L39.717,25.163z"/> + <path fill="#3467E6" d="M39.689,25.152c0.273,0,0.273-0.276,0.185-0.463L24.369,9.333c-0.458-0.462-0.642-0.371-0.917,0 + L8.131,24.689c-0.092,0.095-0.092,0.371,0.091,0.371h9.174v12.582c0,0.274,0.184,0.463,0.368,0.463h12.202 + c0.366,0,0.458-0.188,0.458-0.558V25.061L39.689,25.152z"/> + <path fill="#3568E7" d="M39.664,25.145c0.273,0,0.273-0.276,0.186-0.463L24.369,9.349c-0.458-0.461-0.641-0.37-0.916,0 + L8.158,24.682c-0.091,0.094-0.091,0.37,0.091,0.37h9.159v12.562c0,0.276,0.184,0.461,0.367,0.461h12.181 + c0.367,0,0.458-0.185,0.458-0.556V25.05L39.664,25.145z"/> + <path fill="#3669E7" d="M39.639,25.135c0.273,0,0.273-0.277,0.185-0.462L24.368,9.364c-0.458-0.46-0.64-0.37-0.914,0l-15.27,15.31 + c-0.091,0.094-0.091,0.368,0.091,0.368h9.144v12.543c0,0.276,0.183,0.463,0.366,0.463h12.158c0.365,0,0.457-0.187,0.457-0.555 + V25.042L39.639,25.135z"/> + <path fill="#376AE8" d="M39.609,25.124c0.272,0,0.272-0.274,0.184-0.461L24.367,9.377c-0.457-0.459-0.639-0.369-0.912,0 + L8.211,24.663c-0.091,0.094-0.091,0.369,0.091,0.369h9.127v12.522c0,0.274,0.184,0.461,0.366,0.461h12.141 + c0.363,0,0.455-0.187,0.455-0.554v-12.43L39.609,25.124z"/> + <path fill="#386BE8" d="M39.584,25.116c0.271,0,0.271-0.277,0.184-0.462L24.368,9.393c-0.456-0.459-0.638-0.368-0.911,0 + L8.239,24.654c-0.091,0.093-0.091,0.369,0.09,0.369h9.112v12.504c0,0.274,0.183,0.462,0.365,0.462h12.12 + c0.363,0,0.454-0.188,0.454-0.554V25.023L39.584,25.116z"/> + <path fill="#396CE9" d="M39.559,25.105c0.272,0,0.272-0.274,0.183-0.459L24.366,9.407c-0.455-0.458-0.636-0.367-0.909,0 + L8.266,24.646c-0.091,0.093-0.091,0.367,0.09,0.367h9.096v12.483c0,0.272,0.183,0.459,0.365,0.459h12.098 + c0.362,0,0.454-0.187,0.454-0.552V25.014L39.559,25.105z"/> + <path fill="#3A6DE9" d="M39.529,25.096c0.271,0,0.271-0.275,0.184-0.457L24.365,9.421c-0.454-0.458-0.635-0.367-0.907,0 + L8.293,24.639c-0.091,0.092-0.091,0.364,0.09,0.364h9.081v12.468c0,0.274,0.182,0.459,0.364,0.459h12.076 + c0.363,0,0.453-0.185,0.453-0.552V25.003L39.529,25.096z"/> + <path fill="#3B6EEA" d="M39.504,25.087c0.271,0,0.271-0.274,0.184-0.459L24.365,9.436c-0.454-0.457-0.634-0.366-0.906,0 + L8.319,24.628c-0.09,0.093-0.09,0.367,0.09,0.367h9.065v12.446c0,0.272,0.182,0.457,0.363,0.457h12.06 + c0.359,0,0.451-0.185,0.451-0.549V24.995L39.504,25.087z"/> + <path fill="#3C6FEA" d="M39.479,25.077c0.271,0,0.271-0.272,0.183-0.457L24.364,9.451c-0.453-0.456-0.633-0.366-0.905,0 + L8.346,24.62c-0.09,0.092-0.09,0.364,0.09,0.364h9.05v12.429c0,0.274,0.182,0.457,0.363,0.457h12.036 + c0.361,0,0.451-0.183,0.451-0.55V24.984L39.479,25.077z"/> + <path fill="#3D70EB" d="M39.451,25.066c0.271,0,0.271-0.272,0.181-0.457L24.363,9.464c-0.452-0.455-0.632-0.365-0.903,0 + L8.374,24.609c-0.09,0.093-0.09,0.367,0.089,0.367h9.034v12.406c0,0.271,0.181,0.456,0.362,0.456h12.016 + c0.359,0,0.45-0.185,0.45-0.549V24.977L39.451,25.066z"/> + <path fill="#3E71EB" d="M39.424,25.059c0.271,0,0.271-0.272,0.182-0.457L24.363,9.479c-0.451-0.455-0.631-0.365-0.901,0 + L8.4,24.602c-0.09,0.092-0.09,0.365,0.09,0.365h9.019v12.389c0,0.272,0.181,0.457,0.362,0.457h11.992 + c0.361,0,0.451-0.185,0.451-0.547V24.967L39.424,25.059z"/> + <path fill="#3F72EC" d="M39.396,25.048c0.271,0,0.271-0.272,0.182-0.455L24.362,9.495c-0.45-0.454-0.63-0.364-0.9,0L8.427,24.593 + c-0.09,0.093-0.09,0.363,0.089,0.363h9.003v12.371c0,0.272,0.181,0.455,0.361,0.455h11.976c0.357,0,0.447-0.183,0.447-0.548 + V24.956L39.396,25.048z"/> + <path fill="#4073EC" d="M39.371,25.038c0.271,0,0.271-0.272,0.18-0.455L24.362,9.509c-0.45-0.453-0.629-0.363-0.898,0 + L8.454,24.583c-0.09,0.093-0.09,0.362,0.089,0.362h8.987v12.354c0,0.271,0.181,0.454,0.36,0.454h11.954 + c0.358,0,0.448-0.183,0.448-0.545v-12.26L39.371,25.038z"/> + <path fill="#4174ED" d="M39.346,25.029c0.271,0,0.271-0.271,0.18-0.454L24.361,9.523c-0.449-0.453-0.627-0.363-0.897,0 + L8.481,24.575c-0.089,0.092-0.089,0.362,0.089,0.362h8.972V37.27c0,0.272,0.18,0.455,0.359,0.455h11.933 + c0.357,0,0.445-0.183,0.445-0.545V24.938L39.346,25.029z"/> + <path fill="#4275ED" d="M39.316,25.02c0.271,0,0.271-0.271,0.181-0.453L24.36,9.539c-0.448-0.452-0.626-0.362-0.895,0 + L8.508,24.566c-0.09,0.091-0.09,0.36,0.088,0.36h8.957V37.24c0,0.271,0.18,0.451,0.359,0.451h11.912 + c0.355,0,0.445-0.183,0.445-0.543V24.93L39.316,25.02z"/> + <path fill="#4376EE" d="M39.291,25.01c0.27,0,0.27-0.271,0.18-0.453L24.36,9.553c-0.447-0.451-0.625-0.361-0.894,0L8.535,24.559 + c-0.089,0.09-0.089,0.362,0.089,0.362h8.941v12.293c0,0.271,0.179,0.451,0.358,0.451h11.892c0.356,0,0.445-0.181,0.445-0.543 + V24.919L39.291,25.01z"/> + <path fill="#4477EE" d="M39.266,24.999c0.27,0,0.27-0.271,0.18-0.451L24.359,9.566c-0.446-0.45-0.625-0.361-0.893,0L8.562,24.549 + c-0.089,0.09-0.089,0.362,0.088,0.362h8.925v12.272c0,0.271,0.179,0.45,0.358,0.45h11.87c0.356,0,0.445-0.182,0.445-0.542V24.911 + L39.266,24.999z"/> + <path fill="#4578EF" d="M39.236,24.991c0.27,0,0.27-0.271,0.18-0.451L24.359,9.582c-0.446-0.45-0.624-0.36-0.891,0L8.589,24.54 + C8.5,24.63,8.5,24.9,8.677,24.9h8.91v12.254c0,0.271,0.179,0.451,0.357,0.451h11.85c0.354,0,0.442-0.182,0.442-0.541V24.9 + L39.236,24.991z"/> + <path fill="#4679EF" d="M39.211,24.98c0.27,0,0.27-0.271,0.18-0.449L24.358,9.597c-0.445-0.449-0.622-0.36-0.889,0L8.616,24.531 + c-0.089,0.089-0.089,0.359,0.088,0.359h8.894v12.233c0,0.271,0.179,0.451,0.356,0.451h11.83c0.354,0,0.442-0.183,0.442-0.541 + V24.891L39.211,24.98z"/> + <path fill="#477AF0" d="M39.186,24.973c0.269,0,0.269-0.271,0.178-0.451L24.357,9.61c-0.444-0.448-0.621-0.359-0.888,0 + L8.643,24.521c-0.088,0.09-0.088,0.358,0.088,0.358h8.878v12.218c0,0.271,0.179,0.448,0.356,0.448h11.809 + c0.354,0,0.441-0.182,0.441-0.54V24.882L39.186,24.973z"/> + <path fill="#487BF0" d="M39.158,24.962c0.267,0,0.267-0.271,0.178-0.448L24.356,9.625c-0.443-0.447-0.62-0.359-0.886,0 + L8.669,24.514c-0.088,0.09-0.088,0.358,0.088,0.358h8.863v12.196c0,0.271,0.178,0.449,0.355,0.449h11.789 + c0.354,0,0.44-0.181,0.44-0.539V24.872L39.158,24.962z"/> + <path fill="#497CF1" d="M39.132,24.952c0.267,0,0.267-0.269,0.179-0.447L24.356,9.64c-0.442-0.446-0.619-0.358-0.884,0 + L8.697,24.504c-0.088,0.09-0.088,0.357,0.087,0.357h8.847V37.04c0,0.271,0.178,0.449,0.355,0.449h11.768 + c0.354,0,0.439-0.181,0.439-0.539V24.861L39.132,24.952z"/> + <path fill="#4A7DF1" d="M39.104,24.943c0.269,0,0.269-0.271,0.18-0.448L24.355,9.655c-0.442-0.446-0.618-0.358-0.883,0 + L8.724,24.496c-0.088,0.089-0.088,0.357,0.087,0.357h8.832v12.16c0,0.268,0.177,0.445,0.354,0.445h11.747 + c0.354,0,0.439-0.182,0.439-0.537V24.854L39.104,24.943z"/> + <path fill="#4B7EF2" d="M39.078,24.934c0.265,0,0.265-0.269,0.177-0.447L24.355,9.67c-0.441-0.445-0.617-0.357-0.881,0 + L8.751,24.486c-0.088,0.091-0.088,0.357,0.087,0.357h8.816v12.14c0,0.27,0.177,0.447,0.354,0.447h11.727 + c0.354,0,0.438-0.18,0.438-0.535V24.844L39.078,24.934z"/> + <path fill="#4C7FF2" d="M39.052,24.924c0.265,0,0.265-0.27,0.177-0.446L24.354,9.684c-0.44-0.444-0.616-0.356-0.879,0 + L8.777,24.478c-0.088,0.09-0.088,0.355,0.087,0.355h8.8v12.121c0,0.269,0.177,0.444,0.353,0.444h11.706 + c0.354,0,0.438-0.178,0.438-0.534V24.833L39.052,24.924z"/> + <path fill="#4D80F3" d="M39.023,24.913c0.266,0,0.266-0.269,0.178-0.444L24.354,9.699c-0.439-0.444-0.615-0.356-0.878,0 + L8.804,24.469c-0.087,0.09-0.087,0.356,0.087,0.356h8.785v12.101c0,0.268,0.177,0.444,0.353,0.444h11.684 + c0.352,0,0.438-0.179,0.438-0.533V24.825L39.023,24.913z"/> + <path fill="#4E81F3" d="M38.998,24.904c0.266,0,0.266-0.269,0.176-0.445L24.353,9.712c-0.439-0.443-0.614-0.355-0.877,0 + L8.832,24.459c-0.088,0.089-0.088,0.355,0.086,0.355h8.77v12.082c0,0.269,0.176,0.443,0.352,0.443h11.664 + c0.351,0,0.438-0.179,0.438-0.531V24.814L38.998,24.904z"/> + <path fill="#4F82F4" d="M38.973,24.896c0.264,0,0.264-0.27,0.176-0.445L24.353,9.728c-0.438-0.442-0.613-0.355-0.875,0 + L8.858,24.451c-0.087,0.089-0.087,0.355,0.087,0.355h8.754V36.87c0,0.266,0.176,0.442,0.351,0.442h11.644 + c0.352,0,0.438-0.18,0.438-0.533V24.807L38.973,24.896z"/> + <path fill="#5083F4" d="M38.943,24.886c0.264,0,0.264-0.268,0.177-0.444l-14.769-14.7c-0.437-0.441-0.611-0.354-0.874,0 + l-14.593,14.7c-0.087,0.09-0.087,0.354,0.086,0.354h8.738v12.043c0,0.267,0.176,0.443,0.351,0.443h11.623 + c0.351,0,0.438-0.179,0.438-0.531V24.796L38.943,24.886z"/> + <path fill="#5184F5" d="M38.919,24.876c0.263,0,0.263-0.267,0.174-0.443L24.351,9.756c-0.437-0.441-0.61-0.354-0.872,0 + L8.912,24.434c-0.087,0.089-0.087,0.354,0.086,0.354h8.723v12.022c0,0.267,0.175,0.44,0.35,0.44h11.602 + c0.349,0,0.437-0.178,0.437-0.528V24.788L38.919,24.876z"/> + <path fill="#5285F5" d="M38.893,24.866c0.262,0,0.262-0.267,0.176-0.441L24.351,9.771c-0.436-0.44-0.609-0.353-0.871,0 + L8.939,24.425c-0.087,0.089-0.087,0.353,0.086,0.353h8.707v12.009c0,0.265,0.175,0.438,0.349,0.438h11.581 + c0.348,0,0.436-0.177,0.436-0.529V24.777L38.893,24.866z"/> + <path fill="#5386F6" d="M38.863,24.855c0.263,0,0.263-0.266,0.176-0.44L24.35,9.786c-0.435-0.439-0.608-0.353-0.869,0 + L8.966,24.415C8.88,24.504,8.88,24.77,9.052,24.77h8.691v11.983c0,0.267,0.175,0.44,0.349,0.44h11.561 + c0.349,0,0.435-0.176,0.435-0.528V24.77L38.863,24.855z"/> + <path fill="#5487F6" d="M38.839,24.848c0.261,0,0.261-0.267,0.175-0.439L24.349,9.801c-0.434-0.439-0.607-0.352-0.867,0 + L8.993,24.407c-0.087,0.089-0.087,0.353,0.086,0.353h8.676v11.967c0,0.267,0.174,0.44,0.348,0.44h11.54 + c0.349,0,0.435-0.178,0.435-0.528v-11.88L38.839,24.848z"/> + <path fill="#5588F7" d="M38.812,24.837c0.262,0,0.262-0.264,0.174-0.439L24.349,9.814c-0.433-0.438-0.606-0.352-0.866,0 + L9.02,24.397c-0.086,0.088-0.086,0.352,0.086,0.352h8.66v11.949c0,0.262,0.174,0.438,0.347,0.438h11.519 + c0.347,0,0.433-0.177,0.433-0.528V24.749L38.812,24.837z"/> + <path fill="#5689F7" d="M38.785,24.829c0.26,0,0.26-0.265,0.173-0.439L24.348,9.83c-0.432-0.438-0.604-0.351-0.864,0L9.047,24.389 + c-0.086,0.088-0.086,0.353,0.085,0.353h8.645V36.67c0,0.264,0.174,0.438,0.347,0.438h11.498c0.345,0,0.431-0.176,0.431-0.524 + v-11.84L38.785,24.829z"/> + <path fill="#578AF8" d="M38.759,24.818c0.261,0,0.261-0.264,0.175-0.438L24.347,9.844c-0.432-0.437-0.604-0.35-0.863,0 + L9.074,24.379c-0.086,0.088-0.086,0.352,0.085,0.352h8.629v11.91c0,0.262,0.173,0.438,0.346,0.438h11.476 + c0.348,0,0.434-0.177,0.434-0.524V24.73L38.759,24.818z"/> + <path fill="#588BF8" d="M38.73,24.809c0.258,0,0.258-0.263,0.172-0.438L24.347,9.858c-0.431-0.436-0.603-0.35-0.861,0 + L9.101,24.372c-0.086,0.088-0.086,0.351,0.085,0.351H17.8v11.892c0,0.262,0.173,0.438,0.345,0.438h11.458 + c0.344,0,0.428-0.177,0.428-0.524V24.721L38.73,24.809z"/> + <path fill="#598CF9" d="M38.705,24.799c0.259,0,0.259-0.262,0.173-0.438L24.346,9.873c-0.43-0.435-0.602-0.349-0.86,0 + L9.128,24.361c-0.086,0.088-0.086,0.351,0.085,0.351h8.598v11.869c0,0.263,0.173,0.438,0.345,0.438h11.436 + c0.344,0,0.43-0.178,0.43-0.524V24.712L38.705,24.799z"/> + <path fill="#5A8DF9" d="M38.68,24.79c0.258,0,0.258-0.265,0.172-0.438L24.345,9.888c-0.429-0.435-0.6-0.349-0.858,0L9.155,24.353 + c-0.086,0.088-0.086,0.35,0.085,0.35h8.583v11.852c0,0.262,0.172,0.438,0.344,0.438h11.414c0.343,0,0.428-0.177,0.428-0.524 + V24.702L38.68,24.79z"/> + <path fill="#5B8EFA" d="M38.65,24.779c0.259,0,0.259-0.262,0.173-0.437L24.345,9.902c-0.428-0.434-0.599-0.348-0.856,0 + L9.182,24.345c-0.085,0.087-0.085,0.348,0.085,0.348h8.567v11.832c0,0.262,0.172,0.438,0.343,0.438h11.396 + c0.342,0,0.427-0.176,0.427-0.523V24.691L38.65,24.779z"/> + <path fill="#5C8FFA" d="M38.626,24.771c0.256,0,0.256-0.263,0.171-0.437L24.344,9.917c-0.428-0.433-0.599-0.348-0.855,0 + L9.209,24.335c-0.085,0.087-0.085,0.349,0.084,0.349h8.552v11.812c0,0.262,0.172,0.438,0.343,0.438h11.375 + c0.342,0,0.426-0.176,0.426-0.521V24.684L38.626,24.771z"/> + <path fill="#5D90FB" d="M38.6,24.761c0.258,0,0.258-0.261,0.172-0.434L24.344,9.932c-0.427-0.432-0.598-0.347-0.854,0 + L9.235,24.327c-0.085,0.087-0.085,0.347,0.084,0.347h8.536v11.794c0,0.261,0.172,0.435,0.343,0.435h11.353 + c0.342,0,0.428-0.174,0.428-0.521V24.674L38.6,24.761z"/> + <path fill="#5E91FB" d="M38.57,24.751c0.258,0,0.258-0.26,0.173-0.434l-14.4-14.372c-0.426-0.432-0.596-0.346-0.852,0 + L9.263,24.317c-0.085,0.087-0.085,0.346,0.084,0.346h8.52v11.776c0,0.259,0.171,0.433,0.342,0.433h11.332 + c0.34,0,0.424-0.174,0.424-0.521V24.663L38.57,24.751z"/> + <path fill="#5F92FC" d="M38.546,24.743c0.255,0,0.255-0.262,0.17-0.435L24.342,9.96c-0.425-0.431-0.595-0.346-0.85,0L9.29,24.309 + c-0.085,0.087-0.085,0.347,0.084,0.347h8.504v11.756c0,0.258,0.171,0.434,0.341,0.434h11.311c0.342,0,0.426-0.176,0.426-0.521 + V24.654L38.546,24.743z"/> + <path fill="#6093FC" d="M38.521,24.732c0.254,0,0.254-0.26,0.17-0.435L24.342,9.976c-0.425-0.43-0.594-0.345-0.849,0L9.316,24.3 + c-0.085,0.087-0.085,0.347,0.084,0.347h8.489v11.735c0,0.259,0.171,0.433,0.341,0.433h11.292c0.34,0,0.424-0.174,0.424-0.521 + V24.646L38.521,24.732z"/> + <path fill="#6194FD" d="M38.492,24.723c0.255,0,0.255-0.259,0.17-0.432L24.341,9.99c-0.424-0.43-0.593-0.345-0.847,0L9.343,24.291 + c-0.084,0.086-0.084,0.345,0.084,0.345H17.9v11.718c0,0.258,0.17,0.433,0.34,0.433h11.27c0.34,0,0.424-0.175,0.424-0.519V24.636 + L38.492,24.723z"/> + <path fill="#6295FD" d="M38.466,24.712c0.255,0,0.255-0.258,0.169-0.43L24.34,10.004c-0.423-0.429-0.592-0.344-0.846,0 + L9.37,24.283c-0.084,0.086-0.084,0.345,0.084,0.345h8.458v11.697c0,0.258,0.17,0.43,0.339,0.43H29.5 + c0.338,0,0.422-0.172,0.422-0.516V24.626L38.466,24.712z"/> + <path fill="#6396FE" d="M38.438,24.704c0.254,0,0.254-0.259,0.17-0.431L24.34,10.019c-0.422-0.428-0.591-0.343-0.844,0 + L9.397,24.273c-0.084,0.086-0.084,0.345,0.083,0.345h8.442v11.678c0,0.259,0.17,0.431,0.339,0.431H29.49 + c0.338,0,0.422-0.172,0.422-0.517V24.618L38.438,24.704z"/> + <path fill="#6497FE" d="M38.413,24.693c0.252,0,0.252-0.257,0.168-0.429l-14.242-14.23c-0.422-0.427-0.59-0.343-0.843,0 + L9.424,24.265c-0.084,0.086-0.084,0.342,0.083,0.342h8.427v11.66c0,0.258,0.169,0.43,0.338,0.43H29.48 + c0.336,0,0.42-0.172,0.42-0.516V24.607L38.413,24.693z"/> + <path fill="#6598FF" d="M38.387,24.686c0.254,0,0.254-0.259,0.17-0.43L24.338,10.047c-0.42-0.426-0.588-0.342-0.841,0 + L9.451,24.255c-0.084,0.086-0.084,0.343,0.083,0.343h8.411V36.24c0,0.256,0.169,0.428,0.337,0.428h11.187 + c0.338,0,0.42-0.172,0.42-0.516V24.6L38.387,24.686z"/> + <path fill="#6699FF" d="M38.357,24.675c0.252,0,0.252-0.257,0.168-0.428L24.338,10.062c-0.42-0.426-0.587-0.342-0.839,0 + L9.478,24.247c-0.084,0.086-0.084,0.342,0.083,0.342h8.396V36.21c0,0.256,0.169,0.429,0.337,0.429h11.167 + c0.335,0,0.418-0.173,0.418-0.515V24.589L38.357,24.675z"/> + </g> + + <linearGradient id="XMLID_20_" gradientUnits="userSpaceOnUse" x1="-1371.771" y1="-727.9985" x2="-1398.6362" y2="-727.9985" gradientTransform="matrix(4.371139e-08 -1 -1 -4.371139e-08 -703.999 -1361.9985)"> + <stop offset="0" style="stop-color:#FFFFFF"/> + <stop offset="1" style="stop-color:#6699FF"/> + </linearGradient> + <path fill="url(#XMLID_20_)" d="M38.357,24.675c0.252,0,0.252-0.257,0.168-0.428L24.338,10.062c-0.42-0.426-0.587-0.342-0.839,0 + L9.478,24.247c-0.084,0.086-0.084,0.342,0.083,0.342h8.396V36.21c0,0.256,0.169,0.429,0.337,0.429h11.167 + c0.335,0,0.418-0.173,0.418-0.515V24.589L38.357,24.675z"/> +</g> +<g id="crop_x0020_marks"> + <path fill="none" d="M48-0.058v48H0v-48H48z"/> +</g> +</svg> diff --git a/docbook-xsl-1.76.1/images/colorsvg/warning.svg b/docbook-xsl-1.76.1/images/colorsvg/warning.svg new file mode 100644 index 0000000..ae0081d --- /dev/null +++ b/docbook-xsl-1.76.1/images/colorsvg/warning.svg @@ -0,0 +1,232 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [ + <!ENTITY ns_svg "http://www.w3.org/2000/svg"> + <!ENTITY ns_xlink "http://www.w3.org/1999/xlink"> +]> +<svg version="1.1" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="48" height="48" viewBox="0 0 48 48" + overflow="visible" enable-background="new 0 0 48 48" xml:space="preserve"> +<g> + <path stroke="#FFFFFF" stroke-width="7.9139" stroke-linejoin="round" d="M16.4,42.3L5.7,31.6V16.4L16.4,5.7h15.2l10.7,10.7v15.2 + L31.6,42.3H16.4z"/> + <g> + <path fill="#990000" d="M16.4,42.3L5.7,31.6V16.4L16.4,5.7h15.2l10.7,10.7v15.2L31.6,42.3H16.4z"/> + <polygon fill="#9A0000" points="16.415,42.266 5.736,31.586 5.736,16.416 16.415,5.737 31.585,5.737 42.266,16.416 42.266,31.586 + 31.585,42.266 "/> + <polygon fill="#9B0000" points="16.429,42.23 5.771,31.572 5.771,16.432 16.429,5.774 31.57,5.774 42.229,16.432 42.229,31.572 + 31.57,42.23 "/> + <polygon fill="#9C0000" points="16.444,42.195 5.806,31.559 5.806,16.447 16.444,5.81 31.557,5.81 42.191,16.447 42.191,31.559 + 31.557,42.195 "/> + <polygon fill="#9D0000" points="16.459,42.162 5.842,31.545 5.842,16.464 16.459,5.847 31.54,5.847 42.157,16.464 42.157,31.545 + 31.54,42.162 "/> + <polygon fill="#9E0000" points="16.473,42.128 5.877,31.531 5.877,16.479 16.473,5.884 31.525,5.884 42.122,16.479 42.122,31.531 + 31.525,42.128 "/> + <polygon fill="#9F0000" points="16.488,42.094 5.914,31.52 5.914,16.496 16.488,5.921 31.512,5.921 42.087,16.496 42.087,31.52 + 31.512,42.094 "/> + <polygon fill="#A00000" points="16.503,42.061 5.949,31.505 5.949,16.511 16.503,5.958 31.496,5.958 42.051,16.511 42.051,31.505 + 31.496,42.061 "/> + <polygon fill="#A10000" points="16.518,42.025 5.984,31.491 5.984,16.528 16.518,5.994 31.48,5.994 42.016,16.528 42.016,31.491 + 31.48,42.025 "/> + <polygon fill="#A20000" points="16.533,41.991 6.02,31.479 6.02,16.544 16.533,6.031 31.467,6.031 41.98,16.544 41.98,31.479 + 31.467,41.991 "/> + <polygon fill="#A30000" points="16.547,41.956 6.055,31.464 6.055,16.56 16.547,6.067 31.452,6.067 41.943,16.56 41.943,31.464 + 31.452,41.956 "/> + <polygon fill="#A40000" points="16.562,41.923 6.091,31.451 6.091,16.576 16.562,6.104 31.438,6.104 41.909,16.576 41.909,31.451 + 31.438,41.923 "/> + <polygon fill="#A50000" points="16.577,41.889 6.126,31.438 6.126,16.592 16.577,6.141 31.423,6.141 41.873,16.592 41.873,31.438 + 31.423,41.889 "/> + <polygon fill="#A60000" points="16.592,41.854 6.162,31.424 6.162,16.607 16.592,6.177 31.407,6.177 41.838,16.607 41.838,31.424 + 31.407,41.854 "/> + <polygon fill="#A70000" points="16.606,41.818 6.197,31.41 6.197,16.624 16.606,6.214 31.395,6.214 41.803,16.624 41.803,31.41 + 31.395,41.818 "/> + <polygon fill="#A80000" points="16.622,41.785 6.233,31.396 6.233,16.64 16.622,6.251 31.379,6.251 41.768,16.64 41.768,31.396 + 31.379,41.785 "/> + <polygon fill="#A90000" points="16.636,41.751 6.269,31.383 6.269,16.655 16.636,6.288 31.363,6.288 41.73,16.655 41.73,31.383 + 31.363,41.751 "/> + <polygon fill="#AA0000" points="16.65,41.716 6.304,31.369 6.304,16.671 16.65,6.325 31.35,6.325 41.695,16.671 41.695,31.369 + 31.35,41.716 "/> + <polygon fill="#AB0000" points="16.666,41.682 6.339,31.355 6.339,16.688 16.666,6.361 31.334,6.361 41.66,16.688 41.66,31.355 + 31.334,41.682 "/> + <polygon fill="#AC0000" points="16.681,41.648 6.375,31.343 6.375,16.704 16.681,6.398 31.318,6.398 41.625,16.704 41.625,31.343 + 31.318,41.648 "/> + <polygon fill="#AD0000" points="16.695,41.613 6.411,31.329 6.411,16.719 16.695,6.435 31.305,6.435 41.589,16.719 41.589,31.329 + 31.305,41.613 "/> + <polygon fill="#AE0000" points="16.709,41.579 6.446,31.314 6.446,16.735 16.709,6.472 31.29,6.472 41.555,16.735 41.555,31.314 + 31.29,41.579 "/> + <polygon fill="#AF0000" points="16.725,41.545 6.482,31.302 6.482,16.751 16.725,6.509 31.273,6.509 41.52,16.751 41.52,31.302 + 31.273,41.545 "/> + <polygon fill="#B00000" points="16.739,41.511 6.518,31.288 6.518,16.767 16.739,6.545 31.262,6.545 41.482,16.767 41.482,31.288 + 31.262,41.511 "/> + <polygon fill="#B10000" points="16.754,41.477 6.553,31.273 6.553,16.783 16.754,6.582 31.245,6.582 41.447,16.783 41.447,31.273 + 31.245,41.477 "/> + <polygon fill="#B20000" points="16.769,41.441 6.588,31.261 6.588,16.799 16.769,6.619 31.23,6.619 41.411,16.799 41.411,31.261 + 31.23,41.441 "/> + <polygon fill="#B30000" points="16.783,41.407 6.624,31.248 6.624,16.815 16.783,6.656 31.216,6.656 41.376,16.815 41.376,31.248 + 31.216,41.407 "/> + <polygon fill="#B40000" points="16.799,41.373 6.66,31.234 6.66,16.832 16.799,6.693 31.202,6.693 41.341,16.832 41.341,31.234 + 31.202,41.373 "/> + <polygon fill="#B50000" points="16.813,41.339 6.695,31.221 6.695,16.847 16.813,6.729 31.188,6.729 41.305,16.847 41.305,31.221 + 31.188,41.339 "/> + <polygon fill="#B60000" points="16.828,41.305 6.73,31.207 6.73,16.863 16.828,6.765 31.172,6.765 41.27,16.863 41.27,31.207 + 31.172,41.305 "/> + <polygon fill="#B70000" points="16.843,41.27 6.766,31.193 6.766,16.879 16.843,6.802 31.157,6.802 41.232,16.879 41.232,31.193 + 31.157,41.27 "/> + <polygon fill="#B80000" points="16.858,41.236 6.802,31.182 6.802,16.896 16.858,6.839 31.143,6.839 41.198,16.896 41.198,31.182 + 31.143,41.236 "/> + <polygon fill="#B90000" points="16.872,41.202 6.837,31.166 6.837,16.911 16.872,6.876 31.128,6.876 41.163,16.911 41.163,31.166 + 31.128,41.202 "/> + <polygon fill="#BA0000" points="16.887,41.167 6.873,31.152 6.873,16.927 16.887,6.913 31.111,6.913 41.127,16.927 41.127,31.152 + 31.111,41.167 "/> + <polygon fill="#BB0000" points="16.902,41.133 6.908,31.139 6.908,16.943 16.902,6.949 31.098,6.949 41.092,16.943 41.092,31.139 + 31.098,41.133 "/> + <polygon fill="#BC0000" points="16.917,41.1 6.944,31.126 6.944,16.959 16.917,6.986 31.083,6.986 41.057,16.959 41.057,31.126 + 31.083,41.1 "/> + <polygon fill="#BD0000" points="16.931,41.064 6.979,31.111 6.979,16.975 16.931,7.023 31.068,7.023 41.021,16.975 41.021,31.111 + 31.068,41.064 "/> + <polygon fill="#BE0000" points="16.946,41.029 7.015,31.1 7.015,16.991 16.946,7.06 31.055,7.06 40.984,16.991 40.984,31.1 + 31.055,41.029 "/> + <polygon fill="#BF0000" points="16.96,40.995 7.051,31.085 7.051,17.007 16.96,7.097 31.039,7.097 40.949,17.007 40.949,31.085 + 31.039,40.995 "/> + <polygon fill="#C00000" points="16.976,40.962 7.086,31.072 7.086,17.023 16.976,7.133 31.023,7.133 40.914,17.023 40.914,31.072 + 31.023,40.962 "/> + <polygon fill="#C10000" points="16.99,40.927 7.121,31.059 7.121,17.039 16.99,7.17 31.01,7.17 40.878,17.039 40.878,31.059 + 31.01,40.927 "/> + <polygon fill="#C20000" points="17.004,40.893 7.157,31.044 7.157,17.054 17.004,7.207 30.994,7.207 40.843,17.054 40.843,31.044 + 30.994,40.893 "/> + <polygon fill="#C30000" points="17.02,40.857 7.192,31.031 7.192,17.07 17.02,7.244 30.979,7.244 40.809,17.07 40.809,31.031 + 30.979,40.857 "/> + <polygon fill="#C40000" points="17.035,40.824 7.229,31.018 7.229,17.086 17.035,7.281 30.966,7.281 40.771,17.086 40.771,31.018 + 30.966,40.824 "/> + <polygon fill="#C50000" points="17.049,40.789 7.263,31.004 7.263,17.103 17.049,7.317 30.95,7.317 40.736,17.103 40.736,31.004 + 30.95,40.789 "/> + <polygon fill="#C60000" points="17.064,40.755 7.299,30.99 7.299,17.119 17.064,7.354 30.936,7.354 40.701,17.119 40.701,30.99 + 30.936,40.755 "/> + <polygon fill="#C70000" points="17.079,40.721 7.334,30.977 7.334,17.135 17.079,7.391 30.921,7.391 40.665,17.135 40.665,30.977 + 30.921,40.721 "/> + <polygon fill="#C80000" points="17.094,40.688 7.371,30.964 7.371,17.151 17.094,7.428 30.906,7.428 40.63,17.151 40.63,30.964 + 30.906,40.688 "/> + <polygon fill="#C90000" points="17.108,40.652 7.406,30.949 7.406,17.167 17.108,7.464 30.893,7.464 40.594,17.167 40.594,30.949 + 30.893,40.652 "/> + <polygon fill="#CA0000" points="17.123,40.618 7.441,30.936 7.441,17.182 17.123,7.5 30.877,7.5 40.559,17.182 40.559,30.936 + 30.877,40.618 "/> + <polygon fill="#CB0000" points="17.138,40.584 7.477,30.923 7.477,17.199 17.138,7.537 30.861,7.537 40.523,17.199 40.523,30.923 + 30.861,40.584 "/> + <polygon fill="#CC0000" points="17.153,40.55 7.513,30.909 7.513,17.215 17.153,7.574 30.848,7.574 40.486,17.215 40.486,30.909 + 30.848,40.55 "/> + <polygon fill="#CC0000" points="17.167,40.516 7.548,30.896 7.548,17.23 17.167,7.611 30.832,7.611 40.452,17.23 40.452,30.896 + 30.832,40.516 "/> + <polygon fill="#CD0000" points="17.182,40.48 7.583,30.882 7.583,17.246 17.182,7.647 30.816,7.647 40.416,17.246 40.416,30.882 + 30.816,40.48 "/> + <polygon fill="#CE0000" points="17.197,40.445 7.619,30.868 7.619,17.262 17.197,7.685 30.803,7.685 40.381,17.262 40.381,30.868 + 30.803,40.445 "/> + <polygon fill="#CF0000" points="17.211,40.412 7.654,30.855 7.654,17.278 17.211,7.721 30.788,7.721 40.346,17.278 40.346,30.855 + 30.788,40.412 "/> + <polygon fill="#D00000" points="17.226,40.378 7.69,30.842 7.69,17.294 17.226,7.758 30.773,7.758 40.311,17.294 40.311,30.842 + 30.773,40.378 "/> + <polygon fill="#D10000" points="17.241,40.344 7.726,30.828 7.726,17.311 17.241,7.794 30.759,7.794 40.273,17.311 40.273,30.828 + 30.759,40.344 "/> + <polygon fill="#D20000" points="17.256,40.311 7.761,30.814 7.761,17.326 17.256,7.831 30.744,7.831 40.238,17.326 40.238,30.814 + 30.744,40.311 "/> + <polygon fill="#D30000" points="17.271,40.273 7.796,30.801 7.796,17.342 17.271,7.868 30.729,7.868 40.203,17.342 40.203,30.801 + 30.729,40.273 "/> + <polygon fill="#D40000" points="17.285,40.24 7.832,30.787 7.832,17.358 17.285,7.905 30.715,7.905 40.168,17.358 40.168,30.787 + 30.715,40.24 "/> + <polygon fill="#D50000" points="17.3,40.206 7.868,30.773 7.868,17.374 17.3,7.941 30.7,7.941 40.132,17.374 40.132,30.773 + 30.7,40.206 "/> + <polygon fill="#D60000" points="17.315,40.172 7.903,30.761 7.903,17.39 17.315,7.979 30.686,7.979 40.098,17.39 40.098,30.761 + 30.686,40.172 "/> + <polygon fill="#D70000" points="17.33,40.139 7.938,30.747 7.938,17.406 17.33,8.015 30.67,8.015 40.062,17.406 40.062,30.747 + 30.67,40.139 "/> + <polygon fill="#D80000" points="17.344,40.104 7.974,30.732 7.974,17.422 17.344,8.052 30.654,8.052 40.025,17.422 40.025,30.732 + 30.654,40.104 "/> + <polygon fill="#D90000" points="17.359,40.068 8.01,30.721 8.01,17.438 17.359,8.089 30.641,8.089 39.99,17.438 39.99,30.721 + 30.641,40.068 "/> + <polygon fill="#DA0000" points="17.374,40.034 8.045,30.706 8.045,17.454 17.374,8.125 30.626,8.125 39.954,17.454 39.954,30.706 + 30.626,40.034 "/> + <polygon fill="#DB0000" points="17.389,40 8.081,30.691 8.081,17.47 17.389,8.162 30.611,8.162 39.919,17.47 39.919,30.691 + 30.611,40 "/> + <polygon fill="#DC0000" points="17.403,39.966 8.116,30.68 8.116,17.486 17.403,8.199 30.598,8.199 39.884,17.486 39.884,30.68 + 30.598,39.966 "/> + <polygon fill="#DD0000" points="17.418,39.932 8.152,30.665 8.152,17.502 17.418,8.235 30.582,8.235 39.848,17.502 39.848,30.665 + 30.582,39.932 "/> + <polygon fill="#DE0000" points="17.433,39.896 8.188,30.652 8.188,17.518 17.433,8.272 30.566,8.272 39.812,17.518 39.812,30.652 + 30.566,39.896 "/> + <polygon fill="#DF0000" points="17.448,39.863 8.223,30.639 8.223,17.534 17.448,8.309 30.553,8.309 39.775,17.534 39.775,30.639 + 30.553,39.863 "/> + <polygon fill="#E00000" points="17.462,39.828 8.258,30.625 8.258,17.55 17.462,8.346 30.537,8.346 39.741,17.55 39.741,30.625 + 30.537,39.828 "/> + <polygon fill="#E10000" points="17.477,39.794 8.294,30.611 8.294,17.565 17.477,8.383 30.521,8.383 39.706,17.565 39.706,30.611 + 30.521,39.794 "/> + <polygon fill="#E20000" points="17.492,39.76 8.33,30.598 8.33,17.582 17.492,8.419 30.508,8.419 39.67,17.582 39.67,30.598 + 30.508,39.76 "/> + <polygon fill="#E30000" points="17.507,39.727 8.365,30.584 8.365,17.598 17.507,8.456 30.493,8.456 39.635,17.598 39.635,30.584 + 30.493,39.727 "/> + <polygon fill="#E40000" points="17.521,39.691 8.4,30.57 8.4,17.614 17.521,8.493 30.479,8.493 39.6,17.614 39.6,30.57 + 30.479,39.691 "/> + <polygon fill="#E50000" points="17.536,39.657 8.436,30.559 8.436,17.63 17.536,8.529 30.464,8.529 39.562,17.63 39.562,30.559 + 30.464,39.657 "/> + <polygon fill="#E60000" points="17.551,39.623 8.472,30.544 8.472,17.646 17.551,8.566 30.449,8.566 39.527,17.646 39.527,30.544 + 30.449,39.623 "/> + <polygon fill="#E70000" points="17.566,39.589 8.507,30.529 8.507,17.662 17.566,8.603 30.436,8.603 39.492,17.662 39.492,30.529 + 30.436,39.589 "/> + <polygon fill="#E80000" points="17.581,39.555 8.542,30.518 8.542,17.678 17.581,8.64 30.419,8.64 39.457,17.678 39.457,30.518 + 30.419,39.555 "/> + <polygon fill="#E90000" points="17.595,39.52 8.578,30.503 8.578,17.693 17.595,8.676 30.404,8.676 39.422,17.693 39.422,30.503 + 30.404,39.52 "/> + <polygon fill="#EA0000" points="17.61,39.484 8.614,30.489 8.614,17.709 17.61,8.713 30.391,8.713 39.387,17.709 39.387,30.489 + 30.391,39.484 "/> + <polygon fill="#EB0000" points="17.625,39.451 8.649,30.477 8.649,17.726 17.625,8.75 30.375,8.75 39.352,17.726 39.352,30.477 + 30.375,39.451 "/> + <polygon fill="#EC0000" points="17.64,39.417 8.685,30.462 8.685,17.742 17.64,8.787 30.359,8.787 39.314,17.742 39.314,30.462 + 30.359,39.417 "/> + <polygon fill="#ED0000" points="17.654,39.383 8.72,30.449 8.72,17.757 17.654,8.823 30.346,8.823 39.279,17.757 39.279,30.449 + 30.346,39.383 "/> + <polygon fill="#EE0000" points="17.669,39.35 8.756,30.436 8.756,17.773 17.669,8.86 30.331,8.86 39.244,17.773 39.244,30.436 + 30.331,39.35 "/> + <polygon fill="#EF0000" points="17.684,39.312 8.792,30.422 8.792,17.79 17.684,8.897 30.316,8.897 39.208,17.79 39.208,30.422 + 30.316,39.312 "/> + <polygon fill="#F00000" points="17.699,39.279 8.827,30.408 8.827,17.805 17.699,8.934 30.302,8.934 39.173,17.805 39.173,30.408 + 30.302,39.279 "/> + <polygon fill="#F10000" points="17.713,39.245 8.862,30.395 8.862,17.821 17.713,8.971 30.286,8.971 39.137,17.821 39.137,30.395 + 30.286,39.245 "/> + <polygon fill="#F20000" points="17.728,39.211 8.898,30.381 8.898,17.837 17.728,9.007 30.271,9.007 39.102,17.837 39.102,30.381 + 30.271,39.211 "/> + <polygon fill="#F30000" points="17.743,39.177 8.934,30.367 8.934,17.853 17.743,9.044 30.257,9.044 39.066,17.853 39.066,30.367 + 30.257,39.177 "/> + <polygon fill="#F40000" points="17.758,39.143 8.969,30.354 8.969,17.869 17.758,9.081 30.242,9.081 39.029,17.869 39.029,30.354 + 30.242,39.143 "/> + <polygon fill="#F50000" points="17.772,39.107 9.004,30.341 9.004,17.885 17.772,9.117 30.229,9.117 38.995,17.885 38.995,30.341 + 30.229,39.107 "/> + <polygon fill="#F60000" points="17.787,39.073 9.04,30.327 9.04,17.901 17.787,9.154 30.213,9.154 38.959,17.901 38.959,30.327 + 30.213,39.073 "/> + <polygon fill="#F70000" points="17.802,39.039 9.076,30.312 9.076,17.917 17.802,9.191 30.198,9.191 38.924,17.917 38.924,30.312 + 30.198,39.039 "/> + <polygon fill="#F80000" points="17.816,39.005 9.111,30.3 9.111,17.933 17.816,9.228 30.184,9.228 38.889,17.933 38.889,30.3 + 30.184,39.005 "/> + <polygon fill="#F90000" points="17.832,38.971 9.146,30.286 9.146,17.949 17.832,9.265 30.169,9.265 38.854,17.949 38.854,30.286 + 30.169,38.971 "/> + <polygon fill="#FA0000" points="17.846,38.938 9.182,30.271 9.182,17.965 17.846,9.301 30.154,9.301 38.816,17.965 38.816,30.271 + 30.154,38.938 "/> + <polygon fill="#FB0000" points="17.861,38.902 9.218,30.259 9.218,17.981 17.861,9.338 30.139,9.338 38.782,17.981 38.782,30.259 + 30.139,38.902 "/> + <polygon fill="#FC0000" points="17.875,38.867 9.253,30.246 9.253,17.997 17.875,9.375 30.124,9.375 38.746,17.997 38.746,30.246 + 30.124,38.867 "/> + <polygon fill="#FD0000" points="17.891,38.833 9.289,30.232 9.289,18.013 17.891,9.411 30.109,9.411 38.711,18.013 38.711,30.232 + 30.109,38.833 "/> + <polygon fill="#FE0000" points="17.905,38.799 9.324,30.219 9.324,18.029 17.905,9.448 30.096,9.448 38.675,18.029 38.675,30.219 + 30.096,38.799 "/> + <path fill="#FF0000" d="M17.92,38.766l-8.56-8.561v-12.16l8.56-8.56h12.16l8.561,8.56v12.16l-8.561,8.561H17.92z"/> + </g> + + <linearGradient id="XMLID_46_" gradientUnits="userSpaceOnUse" x1="582" y1="-986.6099" x2="582" y2="-1015.8911" gradientTransform="matrix(1 0 0 -1 -558 -977)"> + <stop offset="0" style="stop-color:#FFFFFF"/> + <stop offset="1" style="stop-color:#FF0000"/> + </linearGradient> + <path fill="url(#XMLID_46_)" d="M17.92,38.891L9.36,30.33V18.17l8.56-8.56h12.16l8.561,8.56v12.16l-8.561,8.561H17.92z"/> + <path d="M11.7,17.7l18.7,18.7l5.896-5.9L17.6,11.7l-5.9,5.9V17.7z"/> + <path d="M11.7,30.5l5.9,5.9l18.7-18.7L30.4,11.8L11.7,30.5z"/> +</g> +<g id="crop_x0020_marks"> + <path fill="none" d="M48,48H0V0h48V48z"/> +</g> +</svg> diff --git a/docbook-xsl-1.76.1/images/draft.png b/docbook-xsl-1.76.1/images/draft.png new file mode 100644 index 0000000..59673fe Binary files /dev/null and b/docbook-xsl-1.76.1/images/draft.png differ diff --git a/docbook-xsl-1.76.1/images/home.gif b/docbook-xsl-1.76.1/images/home.gif new file mode 100644 index 0000000..6784f5b Binary files /dev/null and b/docbook-xsl-1.76.1/images/home.gif differ diff --git a/docbook-xsl-1.76.1/images/home.png b/docbook-xsl-1.76.1/images/home.png new file mode 100644 index 0000000..cbb711d Binary files /dev/null and b/docbook-xsl-1.76.1/images/home.png differ diff --git a/docbook-xsl-1.76.1/images/home.svg b/docbook-xsl-1.76.1/images/home.svg new file mode 100644 index 0000000..e803a31 --- /dev/null +++ b/docbook-xsl-1.76.1/images/home.svg @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="iso-8859-1"?> +<!-- Generator: Adobe Illustrator 9.0, SVG Export Plug-In --> +<!DOCTYPE svg [ + <!ENTITY st0 "fill-rule:nonzero;clip-rule:nonzero;fill:#FFFFFF;stroke:#000000;stroke-miterlimit:4;"> + <!ENTITY st1 "fill:none;stroke:none;"> + <!ENTITY st2 "fill:#000000;"> + <!ENTITY st3 "fill:none;stroke:#FFFFFF;stroke-width:6.3469;stroke-linejoin:round;"> + <!ENTITY st4 "fill-rule:evenodd;clip-rule:evenodd;stroke:none;"> + <!ENTITY st5 "fill-rule:nonzero;clip-rule:nonzero;stroke:#000000;stroke-miterlimit:4;"> +]> +<svg width="48pt" height="48pt" viewBox="0 0 48 48" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"> + <g id="Layer_x0020_3" style="&st0;"> + <g style="&st4;"> + <path style="&st3;" d="M22.9,7.1L5.1,21.8l0,0c-0.3,0.3-0.5,0.8-0.5,1.2c0,0.2,0,0.4,0.1,0.6c0.3,0.6,0.9,1,1.6,1c0,0,1.1,0,2.2,0c0,2.4,0,14.2,0,14.2c0,1.1,0.8,1.9,1.8,1.9h27.4c1.1,0,1.9-0.9,1.9-2c0,0,0-11.8,0-14.2c1,0,2,0,2,0c0.8,0,1.4-0.5,1.7-1.2 + c0.1-0.2,0.1-0.4,0.1-0.6c0-0.5-0.2-1-0.7-1.4c0,0-3.6-3-4.5-3.7c0-1.2,0-6.9,0-6.9c0-1.2-0.8-2-2-2h-4.8c-1,0-1.7,0.6-1.9,1.5c-1.9-1.6-4.1-3.5-4.1-3.5l0.1,0.1c-0.7-0.7-1.8-0.8-2.7-0.1z"/> + <path style="&st2;" d="M22.9,7.1L5.1,21.8l0,0c-0.3,0.3-0.5,0.8-0.5,1.2c0,0.2,0,0.4,0.1,0.6c0.3,0.6,0.9,1,1.6,1c0,0,1.1,0,2.2,0c0,2.4,0,14.2,0,14.2c0,1.1,0.8,1.9,1.8,1.9h27.4c1.1,0,1.9-0.9,1.9-2c0,0,0-11.8,0-14.2c1,0,2,0,2,0c0.8,0,1.4-0.5,1.7-1.2 + c0.1-0.2,0.1-0.4,0.1-0.6c0-0.5-0.2-1-0.7-1.4c0,0-3.6-3-4.5-3.7c0-1.2,0-6.9,0-6.9c0-1.2-0.8-2-2-2h-4.8c-1,0-1.7,0.6-1.9,1.5c-1.9-1.6-4.1-3.5-4.1-3.5l0.1,0.1c-0.7-0.7-1.8-0.8-2.7-0.1z"/> + <path style="&st2;" d="M41.8,22.8l-5.1-4.2v-0.1L31,13.7v0l-6.5-5.5C24.2,8,24,8,23.8,8.2L6.2,22.9c-0.1,0.1-0.1,0.3,0.1,0.3h1.6H10h28.1h1.2h2.3c0.2,0,0.4-0.2,0.2-0.4z"/> + <path d="M35.8,16.8l0-5.1c0-0.2-0.1-0.4-0.3-0.4h-3.2c-0.2,0-0.3,0.1-0.3,0.3v2.2l3.9,2.9z"/> + <path d="M11.9,24.7V37c0,0.3,0.1,0.4,0.3,0.4h23.6c0.3,0,0.4-0.2,0.4-0.4V24.7H11.9z"/> + </g> + </g> + <g id="crop_x0020_marks" style="&st5;"> + <path style="&st1;" d="M48,48H0V0h48v48z"/> + </g> +</svg> diff --git a/docbook-xsl-1.76.1/images/important.gif b/docbook-xsl-1.76.1/images/important.gif new file mode 100644 index 0000000..6795d9a Binary files /dev/null and b/docbook-xsl-1.76.1/images/important.gif differ diff --git a/docbook-xsl-1.76.1/images/important.png b/docbook-xsl-1.76.1/images/important.png new file mode 100644 index 0000000..12c90f6 Binary files /dev/null and b/docbook-xsl-1.76.1/images/important.png differ diff --git a/docbook-xsl-1.76.1/images/important.svg b/docbook-xsl-1.76.1/images/important.svg new file mode 100644 index 0000000..dd84f3f --- /dev/null +++ b/docbook-xsl-1.76.1/images/important.svg @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="iso-8859-1"?> +<!-- Generator: Adobe Illustrator 9.0, SVG Export Plug-In --> +<!DOCTYPE svg [ + <!ENTITY st0 "fill:#FFFFFF;stroke:none;"> + <!ENTITY st1 "fill:#FFFFFF;stroke-width:6.6112;stroke-linecap:round;stroke-linejoin:round;"> + <!ENTITY st2 "stroke:#FFFFFF;stroke-width:6.6112;"> + <!ENTITY st3 "fill:none;stroke:none;"> + <!ENTITY st4 "fill-rule:nonzero;clip-rule:nonzero;stroke:#000000;stroke-miterlimit:4;"> + <!ENTITY st5 "stroke:none;"> +]> +<svg width="48pt" height="48pt" viewBox="0 0 48 48" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"> + <g id="Layer_x0020_3" style="&st4;"> + <g> + <path style="&st2;" d="M41.7,35.3L26.6,9.4c-0.6-1-1.7-1.7-2.9-1.6c-1.2,0-2.3,0.7-2.9,1.7L6.3,35.4c-0.6,1-0.6,2.3,0,3.3c0.6,1,1.7,1.6,2.9,1.6h29.6c1.2,0,2.3-0.6,2.9-1.7c0.6-1,0.6-2.3,0-3.3z"/> + <path style="&st1;" d="M23.7,11L9.2,37h29.6L23.7,11z"/> + <path style="&st0;" d="M23.7,11.9L10.3,36.1h27.5l-14-24.1z"/> + <g> + <path style="&st5;" d="M24.1,34c-1.1,0-1.8-0.8-1.8-1.8c0-1.1,0.7-1.8,1.8-1.8c1.1,0,1.8,0.7,1.8,1.8c0,1-0.7,1.8-1.8,1.8h0z M22.9,29.3l-0.4-9.1h3.2l-0.4,9.1h-2.3z"/> + </g> + </g> + </g> + <g id="crop_x0020_marks" style="&st4;"> + <path style="&st3;" d="M48,48H0V0h48v48z"/> + </g> +</svg> diff --git a/docbook-xsl-1.76.1/images/important.tif b/docbook-xsl-1.76.1/images/important.tif new file mode 100644 index 0000000..184de63 Binary files /dev/null and b/docbook-xsl-1.76.1/images/important.tif differ diff --git a/docbook-xsl-1.76.1/images/next.gif b/docbook-xsl-1.76.1/images/next.gif new file mode 100644 index 0000000..aa1516e Binary files /dev/null and b/docbook-xsl-1.76.1/images/next.gif differ diff --git a/docbook-xsl-1.76.1/images/next.png b/docbook-xsl-1.76.1/images/next.png new file mode 100644 index 0000000..45835bf Binary files /dev/null and b/docbook-xsl-1.76.1/images/next.png differ diff --git a/docbook-xsl-1.76.1/images/next.svg b/docbook-xsl-1.76.1/images/next.svg new file mode 100644 index 0000000..75fa83e --- /dev/null +++ b/docbook-xsl-1.76.1/images/next.svg @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="iso-8859-1"?> +<!-- Generator: Adobe Illustrator 9.0, SVG Export Plug-In --> +<!DOCTYPE svg [ + <!ENTITY st0 "fill:none;stroke:none;"> + <!ENTITY st1 "fill:#FFFFFF;stroke:#FFFFFF;stroke-width:7.5901;stroke-linejoin:round;"> + <!ENTITY st2 "fill-rule:nonzero;clip-rule:nonzero;stroke:#000000;stroke-miterlimit:4;"> + <!ENTITY st3 "stroke:none;"> +]> +<svg width="48pt" height="48pt" viewBox="0 0 48 48" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"> + <g id="Layer_x0020_3" style="&st2;"> + <g> + <path style="&st1;" d="M22.4,41.1c0,0.3,0.3,0.3,0.5,0.2l16.6-16.9c0.5-0.5,0.4-0.7,0-1L22.9,6.7c-0.1-0.1-0.4-0.1-0.4,0.1v10H8.9c-0.3,0-0.5,0.2-0.5,0.4l0,13.3C8.4,30.9,8.6,31,9,31h13.5l-0.1,10.1z"/> + <path style="&st3;" d="M22.4,41.1c0,0.3,0.3,0.3,0.5,0.2l16.6-16.9c0.5-0.5,0.4-0.7,0-1L22.9,6.7c-0.1-0.1-0.4-0.1-0.4,0.1v10H8.9c-0.3,0-0.5,0.2-0.5,0.4l0,13.3C8.4,30.9,8.6,31,9,31h13.5l-0.1,10.1z"/> + </g> + </g> + <g id="crop_x0020_marks" style="&st2;"> + <path style="&st0;" d="M48,48H0V0h48v48z"/> + </g> +</svg> diff --git a/docbook-xsl-1.76.1/images/note.gif b/docbook-xsl-1.76.1/images/note.gif new file mode 100644 index 0000000..f329d35 Binary files /dev/null and b/docbook-xsl-1.76.1/images/note.gif differ diff --git a/docbook-xsl-1.76.1/images/note.png b/docbook-xsl-1.76.1/images/note.png new file mode 100644 index 0000000..d0c3c64 Binary files /dev/null and b/docbook-xsl-1.76.1/images/note.png differ diff --git a/docbook-xsl-1.76.1/images/note.svg b/docbook-xsl-1.76.1/images/note.svg new file mode 100644 index 0000000..648299d --- /dev/null +++ b/docbook-xsl-1.76.1/images/note.svg @@ -0,0 +1,33 @@ +<?xml version="1.0" encoding="iso-8859-1"?> +<!-- Generator: Adobe Illustrator 9.0, SVG Export Plug-In --> +<!DOCTYPE svg [ + <!ENTITY st0 "fill:none;stroke:#FFFFFF;stroke-width:12.1438;stroke-linejoin:round;"> + <!ENTITY st1 "fill:none;stroke-width:1.2429;"> + <!ENTITY st2 "fill:#FFFFFF;stroke:none;"> + <!ENTITY st3 "fill:none;stroke:#FFFFFF;stroke-width:12.7649;stroke-linejoin:round;"> + <!ENTITY st4 "fill:#FFFFFF;stroke-width:6.3824;stroke-linejoin:round;"> + <!ENTITY st5 "fill:none;stroke:none;"> + <!ENTITY st6 "fill-rule:nonzero;clip-rule:nonzero;stroke:#000000;stroke-miterlimit:4;"> + <!ENTITY st7 "fill:#FFFFFF;stroke:#FFFFFF;stroke-width:12.7649;stroke-linejoin:round;"> + <!ENTITY st8 "stroke:none;"> + <!ENTITY st9 "fill:none;stroke-width:4.9715;stroke-linejoin:round;"> +]> +<svg xmlns="http://www.w3.org/2000/svg" width="48pt" height="48pt" viewBox="0 0 48 48" xml:space="preserve"> + <g id="Layer_x0020_1" style="&st6;"> + <path style="&st0;" d="M35.7,19.8v18.9H11V8.8h13.9l10.8,11z"/> + <path style="&st3;" d="M38.7,30.4L25,16.7l-7.7-3l2.7,8.7l13.3,13.4l5.4-5.4z"/> + <path style="&st7;" d="M35.7,8.8H11v29.9h24.7V8.8z"/> + <path style="&st4;" d="M35.7,8.8H11v29.9h24.7V8.8z"/> + <path style="&st2;" d="M35.7,8.8H11v29.9h24.7V8.8z"/> + </g> + <g id="Layer_x0020_4" style="&st6;"> + <path style="&st9;" d="M38.7,30.4L25,16.7l-7.7-3l2.7,8.7l13.3,13.4l5.4-5.4z"/> + <path style="&st8;" d="M38.7,30.4L25,16.7l-7.7-3l2.7,8.7l13.3,13.4l5.4-5.4z"/> + <path style="&st8;" d="M20.6,14.7l-2.5,2.5L17,13.4l3.6,1.3z"/> + <path style="&st1;" d="M19.6,22.2l3-0.3l2.4-2.4l0.4-2.8"/> + <path style="&st2;" d="M20.4,14.9L18.3,17l1.6,5.2l2.7-0.3l2.4-2.4l0.3-2.4l-5-2.2z"/> + </g> + <g id="crop" style="&st6;"> + <path style="&st5;" d="M48,48H0V0h48v48z"/> + </g> +</svg> diff --git a/docbook-xsl-1.76.1/images/note.tif b/docbook-xsl-1.76.1/images/note.tif new file mode 100644 index 0000000..08644d6 Binary files /dev/null and b/docbook-xsl-1.76.1/images/note.tif differ diff --git a/docbook-xsl-1.76.1/images/prev.gif b/docbook-xsl-1.76.1/images/prev.gif new file mode 100644 index 0000000..64ca8f3 Binary files /dev/null and b/docbook-xsl-1.76.1/images/prev.gif differ diff --git a/docbook-xsl-1.76.1/images/prev.png b/docbook-xsl-1.76.1/images/prev.png new file mode 100644 index 0000000..cf24654 Binary files /dev/null and b/docbook-xsl-1.76.1/images/prev.png differ diff --git a/docbook-xsl-1.76.1/images/prev.svg b/docbook-xsl-1.76.1/images/prev.svg new file mode 100644 index 0000000..6d88ffd --- /dev/null +++ b/docbook-xsl-1.76.1/images/prev.svg @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="iso-8859-1"?> +<!-- Generator: Adobe Illustrator 9.0, SVG Export Plug-In --> +<!DOCTYPE svg [ + <!ENTITY st0 "fill:none;stroke:none;"> + <!ENTITY st1 "fill:#FFFFFF;stroke:#FFFFFF;stroke-width:7.5901;stroke-linejoin:round;"> + <!ENTITY st2 "fill-rule:nonzero;clip-rule:nonzero;stroke:#000000;stroke-miterlimit:4;"> + <!ENTITY st3 "stroke:none;"> +]> +<svg width="48pt" height="48pt" viewBox="0 0 48 48" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"> + <g id="Layer_x0020_3" style="&st2;"> + <g> + <path style="&st1;" d="M25.6,6.9c0-0.3-0.3-0.3-0.5-0.2L8.4,23.6c-0.5,0.5-0.4,0.7,0,1l16.6,16.6c0.1,0.1,0.4,0.1,0.4-0.1v-10h13.6c0.3,0,0.5-0.2,0.5-0.4l0-13.3c0-0.3-0.2-0.5-0.5-0.5H25.5l0.1-10.1z"/> + <path style="&st3;" d="M25.6,6.9c0-0.3-0.3-0.3-0.5-0.2L8.4,23.6c-0.5,0.5-0.4,0.7,0,1l16.6,16.6c0.1,0.1,0.4,0.1,0.4-0.1v-10h13.6c0.3,0,0.5-0.2,0.5-0.4l0-13.3c0-0.3-0.2-0.5-0.5-0.5H25.5l0.1-10.1z"/> + </g> + </g> + <g id="crop_x0020_marks" style="&st2;"> + <path style="&st0;" d="M48,48H0V0h48v48z"/> + </g> +</svg> diff --git a/docbook-xsl-1.76.1/images/tip.gif b/docbook-xsl-1.76.1/images/tip.gif new file mode 100644 index 0000000..823f2b4 Binary files /dev/null and b/docbook-xsl-1.76.1/images/tip.gif differ diff --git a/docbook-xsl-1.76.1/images/tip.png b/docbook-xsl-1.76.1/images/tip.png new file mode 100644 index 0000000..5c4aab3 Binary files /dev/null and b/docbook-xsl-1.76.1/images/tip.png differ diff --git a/docbook-xsl-1.76.1/images/tip.svg b/docbook-xsl-1.76.1/images/tip.svg new file mode 100644 index 0000000..4a64a15 --- /dev/null +++ b/docbook-xsl-1.76.1/images/tip.svg @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="iso-8859-1"?> +<!-- Generator: Adobe Illustrator 9.0, SVG Export Plug-In --> +<!DOCTYPE svg [ + <!ENTITY st0 "fill:none;stroke:#000000;stroke-width:1.0944;"> + <!ENTITY st1 "fill:#FFFFFF;stroke:none;"> + <!ENTITY st2 "fill-rule:nonzero;clip-rule:nonzero;stroke:#FFFFFF;stroke-width:5.6139;stroke-miterlimit:4;"> + <!ENTITY st3 "fill:none;stroke:none;"> + <!ENTITY st4 "fill-rule:nonzero;clip-rule:nonzero;stroke:#000000;stroke-miterlimit:4;"> + <!ENTITY st5 "stroke:none;"> +]> +<svg width="48pt" height="48pt" viewBox="0 0 48 48" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"> + <g id="Layer_x0020_3" style="&st2;"> + <g> + <path d="M9.5,18.6c0,8,6.5,14.4,14.4,14.4c8,0,14.4-6.5,14.4-14.4c0-8-6.5-14.4-14.4-14.4c-8,0-14.4,6.5-14.4,14.4z M12.8,18.6c0-6.2,5-11.2,11.2-11.2c6.2,0,11.2,5,11.2,11.2c0,6.2-5,11.2-11.2,11.2c-6.2,0-11.2-5-11.2-11.2z"/> + <path d="M28.1,37.9l-7.6,0.8c-0.9,0.1-1.5,0.9-1.4,1.8c0.1,0.9,0.9,1.5,1.8,1.4l7.6-0.8c0.9-0.1,1.5-0.9,1.4-1.8c-0.1-0.9-0.9-1.5-1.8-1.4z"/> + <path d="M28.1,34.8l-7.6,0.8c-0.9,0.1-1.5,0.9-1.4,1.8c0.1,0.9,0.9,1.5,1.8,1.4l7.6-0.8c0.9-0.1,1.5-0.9,1.4-1.8c-0.1-0.9-0.9-1.5-1.8-1.4z"/> + <path d="M28.1,31.6l-7.6,0.8c-0.9,0.1-1.5,0.9-1.4,1.8s0.9,1.5,1.8,1.4l7.6-0.8c0.9-0.1,1.5-0.9,1.4-1.8s-0.9-1.5-1.8-1.4z"/> + <path d="M23.1,41.3v0.9c0,0.9,0.7,1.6,1.6,1.6c0.9,0,1.6-0.7,1.6-1.6v-0.9h-3.3z"/> + <path style="&st1;" d="M35.9,18.7c0,6.6-5.4,12-12,12c-6.6,0-12-5.4-12-12s5.4-12,12-12c6.6,0,12,5.4,12,12z"/> + <path style="&st5;" d="M9.6,18.6c0,8,6.5,14.4,14.4,14.4c8,0,14.4-6.5,14.4-14.4c0-8-6.5-14.4-14.4-14.4c-8,0-14.4,6.5-14.4,14.4z M12.9,18.6c0-6.2,5-11.2,11.2-11.2c6.2,0,11.2,5,11.2,11.2c0,6.2-5,11.2-11.2,11.2c-6.2,0-11.2-5-11.2-11.2z"/> + <path style="&st5;" d="M28.2,37.9l-7.6,0.8c-0.9,0.1-1.5,0.9-1.4,1.8c0.1,0.9,0.9,1.5,1.8,1.4l7.6-0.8c0.9-0.1,1.5-0.9,1.4-1.8c-0.1-0.9-0.9-1.5-1.8-1.4z"/> + <path style="&st5;" d="M28.2,34.7l-7.6,0.8c-0.9,0.1-1.5,0.9-1.4,1.8c0.1,0.9,0.9,1.5,1.8,1.4l7.6-0.8c0.9-0.1,1.5-0.9,1.4-1.8c-0.1-0.9-0.9-1.5-1.8-1.4z"/> + <path style="&st5;" d="M28.2,31.6l-7.6,0.8c-0.9,0.1-1.5,0.9-1.4,1.8c0.1,0.9,0.9,1.5,1.8,1.4l7.6-0.8c0.9-0.1,1.5-0.9,1.4-1.8c-0.1-0.9-0.9-1.5-1.8-1.4z"/> + <path style="&st5;" d="M23.1,41.3v0.9c0,0.9,0.7,1.6,1.6,1.6s1.6-0.7,1.6-1.6v-0.9h-3.3z"/> + <path style="&st0;" d="M22.3,28.3l-3.5-10.7c0,0,6.6,3.9,10.5,0"/> + </g> + </g> + <g id="crop_x0020_marks" style="&st4;"> + <path style="&st3;" d="M48,48H0V0h48v48z"/> + </g> +</svg> diff --git a/docbook-xsl-1.76.1/images/tip.tif b/docbook-xsl-1.76.1/images/tip.tif new file mode 100644 index 0000000..4a3d8c7 Binary files /dev/null and b/docbook-xsl-1.76.1/images/tip.tif differ diff --git a/docbook-xsl-1.76.1/images/toc-blank.png b/docbook-xsl-1.76.1/images/toc-blank.png new file mode 100644 index 0000000..6ffad17 Binary files /dev/null and b/docbook-xsl-1.76.1/images/toc-blank.png differ diff --git a/docbook-xsl-1.76.1/images/toc-minus.png b/docbook-xsl-1.76.1/images/toc-minus.png new file mode 100644 index 0000000..abbb020 Binary files /dev/null and b/docbook-xsl-1.76.1/images/toc-minus.png differ diff --git a/docbook-xsl-1.76.1/images/toc-plus.png b/docbook-xsl-1.76.1/images/toc-plus.png new file mode 100644 index 0000000..941312c Binary files /dev/null and b/docbook-xsl-1.76.1/images/toc-plus.png differ diff --git a/docbook-xsl-1.76.1/images/up.gif b/docbook-xsl-1.76.1/images/up.gif new file mode 100644 index 0000000..aabc2d0 Binary files /dev/null and b/docbook-xsl-1.76.1/images/up.gif differ diff --git a/docbook-xsl-1.76.1/images/up.png b/docbook-xsl-1.76.1/images/up.png new file mode 100644 index 0000000..07634de Binary files /dev/null and b/docbook-xsl-1.76.1/images/up.png differ diff --git a/docbook-xsl-1.76.1/images/up.svg b/docbook-xsl-1.76.1/images/up.svg new file mode 100644 index 0000000..d31aa9c --- /dev/null +++ b/docbook-xsl-1.76.1/images/up.svg @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="iso-8859-1"?> +<!-- Generator: Adobe Illustrator 9.0, SVG Export Plug-In --> +<!DOCTYPE svg [ + <!ENTITY st0 "fill:none;stroke:none;"> + <!ENTITY st1 "fill:#FFFFFF;stroke:#FFFFFF;stroke-width:7.5901;stroke-linejoin:round;"> + <!ENTITY st2 "fill-rule:nonzero;clip-rule:nonzero;stroke:#000000;stroke-miterlimit:4;"> + <!ENTITY st3 "stroke:none;"> +]> +<svg width="48pt" height="48pt" viewBox="0 0 48 48" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"> + <g id="Layer_x0020_3" style="&st2;"> + <g> + <path style="&st1;" d="M41.1,25.6c0.3,0,0.3-0.3,0.2-0.5L24.4,8.4c-0.5-0.5-0.7-0.4-1,0L6.7,25.1c-0.1,0.1-0.1,0.4,0.1,0.4h10v13.6c0,0.3,0.2,0.5,0.4,0.5l13.3,0c0.3,0,0.5-0.2,0.5-0.5V25.5l10.1,0.1z"/> + <path style="&st3;" d="M41.1,25.6c0.3,0,0.3-0.3,0.2-0.5L24.4,8.4c-0.5-0.5-0.7-0.4-1,0L6.7,25.1c-0.1,0.1-0.1,0.4,0.1,0.4h10v13.6c0,0.3,0.2,0.5,0.4,0.5l13.3,0c0.3,0,0.5-0.2,0.5-0.5V25.5l10.1,0.1z"/> + </g> + </g> + <g id="crop_x0020_marks" style="&st2;"> + <path style="&st0;" d="M48,48H0V0h48v48z"/> + </g> +</svg> diff --git a/docbook-xsl-1.76.1/images/warning.gif b/docbook-xsl-1.76.1/images/warning.gif new file mode 100644 index 0000000..3adf191 Binary files /dev/null and b/docbook-xsl-1.76.1/images/warning.gif differ diff --git a/docbook-xsl-1.76.1/images/warning.png b/docbook-xsl-1.76.1/images/warning.png new file mode 100644 index 0000000..1c33db8 Binary files /dev/null and b/docbook-xsl-1.76.1/images/warning.png differ diff --git a/docbook-xsl-1.76.1/images/warning.svg b/docbook-xsl-1.76.1/images/warning.svg new file mode 100644 index 0000000..fc8d748 --- /dev/null +++ b/docbook-xsl-1.76.1/images/warning.svg @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="iso-8859-1"?> +<!-- Generator: Adobe Illustrator 9.0, SVG Export Plug-In --> +<!DOCTYPE svg [ + <!ENTITY st0 "fill:#000000;stroke:#FFFFFF;stroke-width:7.9139;stroke-linejoin:round;"> + <!ENTITY st1 "fill-rule:nonzero;clip-rule:nonzero;fill:#FFFFFF;stroke:#000000;stroke-miterlimit:4;"> + <!ENTITY st2 "fill:none;stroke:none;"> + <!ENTITY st3 "fill:#000000;"> + <!ENTITY st4 "fill-rule:evenodd;clip-rule:evenodd;stroke:none;"> + <!ENTITY st5 "fill-rule:nonzero;clip-rule:nonzero;stroke:#000000;stroke-miterlimit:4;"> +]> +<svg width="48pt" height="48pt" viewBox="0 0 48 48" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"> + <g id="Layer_x0020_4" style="&st1;"> + <g style="&st4;"> + <path style="&st0;" d="M16.4,42.3L5.7,31.6V16.4L16.4,5.7h15.2l10.7,10.7v15.2L31.6,42.3H16.4z"/> + <path style="&st3;" d="M16.4,42.3L5.7,31.6V16.4L16.4,5.7h15.2l10.7,10.7v15.2L31.6,42.3H16.4z"/> + <path d="M11.7,17.7l18.7,18.7l5.9-5.9L17.6,11.7l-5.9,5.9z"/> + <path d="M11.7,30.5l5.9,5.9l18.7-18.7l-5.9-5.9L11.7,30.5z"/> + </g> + </g> + <g id="crop_x0020_marks" style="&st5;"> + <path style="&st2;" d="M48,48H0V0h48v48z"/> + </g> +</svg> diff --git a/docbook-xsl-1.76.1/images/warning.tif b/docbook-xsl-1.76.1/images/warning.tif new file mode 100644 index 0000000..7b6611e Binary files /dev/null and b/docbook-xsl-1.76.1/images/warning.tif differ diff --git a/docbook-xsl-1.76.1/install.sh b/docbook-xsl-1.76.1/install.sh new file mode 100755 index 0000000..4071619 --- /dev/null +++ b/docbook-xsl-1.76.1/install.sh @@ -0,0 +1,977 @@ +#!/bin/bash +# $Id: install.sh 7942 2008-03-26 06:08:08Z xmldoc $ +# $Source$ # + +# install.sh - Set up user environment for a XML/XSLT distribution + +# This is as an interactive installer for updating your +# environment to use an XML/XSLT distribution such as the DocBook +# XSL Stylesheets. Its main purpose is to configure your +# environment with XML catalog data and schema "locating rules" +# data provided in the XML/XSLT distribution. +# +# Although this installer was created for the DocBook project, it +# is a general-purpose tool that can be used with any XML/XSLT +# distribution that provides XML/SGML catalogs and locating rules. +# +# This script is mainly intended to make things easier for you if +# you want to install a particular XML/XSLT distribution that has +# not (yet) been packaged for your OS distro (Debian, Fedora, +# whatever), or to use "snapshot" or development releases +# +# It works by updating your shell startup file (e.g., .bashrc and +# .cshrc) and .emacs file and by finding or creating a writable +# CatalogManager.properties file to update. +# +# It makes backup copies of any files it touches, and also +# generates a uninstall.sh script for reverting its changes. +# +# In the same directory where it is located, it expects to find +# the following four files: +# - locatingrules.xml +# - catalog.xml +# - catalog +# - .urilist +# And if it's unable to locate a CatalogManager.properties file in +# your environment, it expects to find an "example" one in the +# same directory as itself, which it copies over to your +# ~/.resolver directory. +# +# If the distribution contains any executables, change the value +# of the thisBinDir to a colon-separated list of the pathnames of +# the directories that contain those executables. + +# mydir is the "canonical" absolute pathname for install.sh +mydir=$(cd -P $(dirname $0) && pwd -P) || exit 1 + +thisLocatingRules=$mydir/locatingrules.xml +thisXmlCatalog=$mydir/catalog.xml +thisSgmlCatalog=$mydir/catalog + +# .urilist file contains a list of pairs of local pathnames and +# URIs to test for catalog resolution +thisUriList=$mydir/.urilist +exampleCatalogManager=$mydir/.CatalogManager.properties.example +thisCatalogManager=$HOME/.resolver/CatalogManager.properties + +# thisBinDir directory is a colon-separated list of the pathnames +# to all directories that contain executables provided with the +# distribution (for example, the DocBook XSL Stylesheets +# distribution contains a "docbook-xsl-update" convenience script +# for rsync'ing up to the latest docbook-xsl snapshot). The +# install.sh script adds the value of thisBinDir to your PATH +# environment variable +thisBinDir=$mydir/tools/bin + +emit_message() { + echo "$1" 1>&2 +} + +if [ ! "${*#--batch}" = "$*" ]; then + batchmode="Yes"; +else + batchmode="No"; + emit_message + if [ ! "$1" = "--test" ]; then + emit_message "NOTE: For non-interactive installs/uninstalls, use --batch" + if [ ! "$1" = "--uninstall" ]; then + emit_message + fi + fi +fi + +osName="Unidentified" +if uname -s | grep -qi "cygwin"; then + osName="Cygwin" +fi + +classPathSeparator=":" +if [ "$osName" = "Cygwin" ]; then + thisJavaXmlCatalog=$(cygpath -m $thisXmlCatalog) + classPathSeparator=";" +else + thisJavaXmlCatalog=$thisXmlCatalog +fi + +main() { + removeOldFiles + checkRoot + updateCatalogManager + checkForResolver + writeDotFiles + updateUserStartupFiles + updateUserDotEmacs + writeUninstallFile + writeTestFile + printExitMessage +} + +removeOldFiles() { + rm -f $mydir/.profile.incl + rm -f $mydir/.cshrc.incl + rm -f $mydir/.emacs.el +} + +checkRoot() { + if [ $(id -u) == "0" ]; then + cat 1>&2 <<EOF + +WARNING: This install script is meant to be run as a non-root + user, but you are running it as root. + +EOF + read -s -n1 -p "Are you sure you want to continue? [No] " + emit_message "$REPLY" + case $REPLY in + [yY]) + emit_message + ;; + *) emit_message "OK, exiting without making changes." + exit + ;; + esac + fi + return 0 +} + +updateCatalogManager() { + + # - finds or creates a writable CatalogManager.properties file + # + # - adds the catalog.xml file for this distribution to the + # CatalogManager.properties file found + + if [ -z "$CLASSPATH" ]; then + cat 1>&2 <<EOF + +NOTE: There is no CLASSPATH variable set in your environment. + No attempt was made to find a CatalogManager.properties + file. Using $thisCatalogManager instead +EOF + else + # split CLASSPATH in a list of pathnames by replacing all separator + # characters with spaces + if [ "$osName" = "Cygwin" ]; then + pathnames=$(echo $CLASSPATH | tr ";" " ") + else + pathnames=$(echo $CLASSPATH | tr ":" " ") + fi + for path in $pathnames; do + if [ "$osName" = "Cygwin" ]; then + path=$(cygpath -u $path) + fi + # strip out trailing slash from pathname + path=$(echo $path | sed 's/\/$//') + # find CatalogManager.properties file + if [ -f $path/CatalogManager.properties ]; + then + existingCatalogManager=$path/CatalogManager.properties + break + fi + done + fi + # end of CLASSPATH check + + if [ -w "$existingCatalogManager" ]; then + # existing CatalogManager.properties was found and it is + # writable, so use it + myCatalogManager=$existingCatalogManager + else + if [ -f "$existingCatalogManager" ]; then + # a non-writable CatalogManager.properties exists, so emit a + # note saying that it won't be used + cat 1>&2 <<EOF +NOTE: $existingCatalogManager file found, + but you don't have permission to write to it. + Will instead use: + $thisCatalogManager +EOF + else + # CLASSPATH is set, but no CatalogManager.properties found + if [ -n "$CLASSPATH" ]; then + cat 1>&2 <<EOF +NOTE: No CatalogManager.properties found from CLASSPATH. + Will instead use: + $thisCatalogManager +EOF + fi + fi + if [ "$batchmode" = "Yes" ]; then + emit_message + fi + # end of check for existing writable CatalogManager.properties + + if [ -f $thisCatalogManager ]; then + myCatalogManager=$thisCatalogManager + else + REPLY="" + if [ ! "$batchmode" = "Yes" ]; then + emit_message + read -s -n1 -p "Create $thisCatalogManager file? [Yes] " + emit_message "$REPLY" + emit_message + fi + case $REPLY in + [nNqQ]) + emitNoChangeMsg + ;; + *) + if [ ! -d "${thisCatalogManager%/*}" ]; then + mkdir -p ${thisCatalogManager%/*} + fi + cp $mydir/.CatalogManager.properties.example $thisCatalogManager || exit 1 + emit_message "NOTE: Created the following file:" + emit_message " $thisCatalogManager" + myCatalogManager=$thisCatalogManager + ;; + esac + # end of creating "private" CatalogManager.properties + fi + # end of check for "private" CatalogManager.properties + fi + # end of check finding/creating writable CatalogManager.properties + + if [ -n "$myCatalogManager" ]; then + etcXmlCatalog= + catalogsLine=$(grep "^catalogs=" $myCatalogManager) + if [ -f /etc/xml/catalog ] && [ "$osName" != "Cygwin" ] \ + && [ "${catalogsLine#*/etc/xml/catalog*}" = "$catalogsLine" ]; then + cat 1>&2 <<EOF + +WARNING: /etc/xml/catalog exists but was not found in: + $myCatalogManager + If /etc/xml/catalog file has content, you probably + should reference it in: + $myCatalogManager + This installer can automatically add it for you, + but BE WARNED that once it has been added, the + uninstaller for this distribution CANNOT REMOVE IT + automatically during uninstall. If you no longer want + it included, you will need to remove it manually. + +EOF + REPLY="" + if [ ! "$batchmode" = "Yes" ]; then + read -s -n1 -p "Add /etc/xml/catalog to $myCatalogManager? [Yes] " + emit_message "$REPLY" + fi + case $REPLY in + [nNqQ]) + emit_message + ;; + *) + etcXmlCatalog=/etc/xml/catalog + ;; + esac + fi + + catalogBackup="$myCatalogManager.$$.bak" + if [ ! -w "${myCatalogManager%/*}" ]; then + emit_message + emit_message "WARNING: ${myCatalogManager%/*} directory is not writable." + emit_message + emitNoChangeMsg + else + REPLY="" + if [ ! "$batchmode" = "Yes" ]; then + emit_message + emit_message "Add $thisJavaXmlCatalog" + read -s -n1 -p "to $myCatalogManager file? [Yes] " + emit_message "$REPLY" + emit_message + fi + case $REPLY in + [nNqQ]) + emitNoChangeMsg + ;; + *) + if [ "$catalogsLine" ] ; then + if [ "${catalogsLine#*$thisJavaXmlCatalog*}" != "$catalogsLine" ]; then + emit_message "NOTE: $thisJavaXmlCatalog" + emit_message " already in:" + emit_message " $myCatalogManager" + else + mv $myCatalogManager $catalogBackup || exit 1 + sed "s#^catalogs=\(.*\)\$#catalogs=$thisJavaXmlCatalog;\1;$etcXmlCatalog#" $catalogBackup \ + | sed 's/;\+/;/' | sed 's/;$//' > $myCatalogManager || exit 1 + emit_message "NOTE: Successfully updated the following file:" + emit_message " $myCatalogManager" + emit_message " Backup written to:" + emit_message " $catalogBackup" + fi + else + mv $myCatalogManager $catalogBackup || exit 1 + cp $catalogBackup $myCatalogManager + echo "catalogs=$thisJavaXmlCatalog;$etcXmlCatalog" \ + | sed 's/;\+/;/' | sed 's/;$//' >> $myCatalogManager || exit 1 + emit_message "NOTE: \"catalogs=\" line added to $myCatalogManager." + emit_message " Backup written to $catalogBackup" + fi + ;; + esac + # end of backing up and updating CatalogManager.properties + fi + fi + # end of CatalogManager.properties updates + + if [ "$osName" = "Cygwin" ]; then + myCatalogManager=$(cygpath -m $myCatalogManager) + fi + return 0 +} + +writeDotFiles() { + while read; do + echo "$REPLY" >> $mydir/.profile.incl + done <<EOF +# $thisBinDir is not in PATH, so add it +if [ "\${PATH#*$thisBinDir*}" = "\$PATH" ]; then + PATH="$thisBinDir:\$PATH" + export PATH +fi +if [ -z "\$XML_CATALOG_FILES" ]; then + XML_CATALOG_FILES="$thisXmlCatalog" +else + # $thisXmlCatalog is not in XML_CATALOG_FILES, so add it + if [ "\${XML_CATALOG_FILES#*$thisXmlCatalog*}" = "\$XML_CATALOG_FILES" ]; then + XML_CATALOG_FILES="$thisXmlCatalog \$XML_CATALOG_FILES" + fi +fi +# /etc/xml/catalog exists but is not in XML_CATALOG_FILES, so add it +if [ -f /etc/xml/catalog ] && \ + [ "\${XML_CATALOG_FILES#*/etc/xml/catalog*}" = "\$XML_CATALOG_FILES" ]; then + XML_CATALOG_FILES="\$XML_CATALOG_FILES /etc/xml/catalog" +fi +export XML_CATALOG_FILES + +if [ -z "\$SGML_CATALOG_FILES" ]; then + SGML_CATALOG_FILES="$thisSgmlCatalog" +else + # $thisSgmlCatalog is not in SGML_CATALOG_FILES, so add it + if [ "\${SGML_CATALOG_FILES#*$thisSgmlCatalog}" = "\$SGML_CATALOG_FILES" ]; then + SGML_CATALOG_FILES="$thisSgmlCatalog:\$SGML_CATALOG_FILES" + fi +fi +# /etc/sgml/catalog exists but is not in SGML_CATALOG_FILES, so add it +if [ -f /etc/sgml/catalog ] && \ + [ "\${SGML_CATALOG_FILES#*/etc/sgml/catalog*}" = "\$SGML_CATALOG_FILES" ]; then + SGML_CATALOG_FILES="\$SGML_CATALOG_FILES:/etc/sgml/catalog" +fi +export SGML_CATALOG_FILES +EOF + +while read; do + echo "$REPLY" >> $mydir/.cshrc.incl +done <<EOF +# $thisBinDir is not in PATH, so add it +if ( "\\\`echo \$PATH | grep -v $thisBinDir\\\`" != "" ) then + setenv PATH "$thisBinDir:\$PATH" +endif +if ( ! $\?XML_CATALOG_FILES ) then + setenv XML_CATALOG_FILES "$thisXmlCatalog" +# $thisXmlCatalog is not in XML_CATALOG_FILES, so add it +else if ( "\\\`echo \$XML_CATALOG_FILES | grep -v $thisXmlCatalog\\\`" != "" ) then + setenv XML_CATALOG_FILES "$thisXmlCatalog \$XML_CATALOG_FILES" +endif +endif +# /etc/xml/catalog exists but is not in XML_CATALOG_FILES, so add it +if ( -f /etc/xml/catalog && "\\\`echo \$XML_CATALOG_FILES | grep -v /etc/xml/catalog\\\`" != "" ) then + setenv XML_CATALOG_FILES "\$XML_CATALOG_FILES /etc/xml/catalog" +endif + +endif +if ( ! $\?SGML_CATALOG_FILES ) then + setenv SGML_CATALOG_FILES "$thisSgmlCatalog" +else if ( "\\\`echo \$SGML_CATALOG_FILES | grep -v $thisSgmlCatalog\\\`" != "" ) then + setenv SGML_CATALOG_FILES "$thisSgmlCatalog:\$SGML_CATALOG_FILES" +endif +endif +# /etc/SGML/catalog exists but is not in SGML_CATALOG_FILES, so add it +if ( -f /etc/sgml/catalog && "\\\`echo \$SGML_CATALOG_FILES | grep -v /etc/sgml/catalog\\\`" != "" ) then + setenv SGML_CATALOG_FILES {\$SGML_CATALOG_FILES}:/etc/sgml/catalog +endif +EOF + +if [ -n "$myCatalogManager" ]; then + myCatalogManagerDir=${myCatalogManager%/*} + while read; do + echo "$REPLY" >> $mydir/.profile.incl + done <<EOF + + +if [ -z "\$CLASSPATH" ]; then + CLASSPATH="$myCatalogManagerDir" +else + # $myCatalogManagerDir is not in CLASSPATH, so add it + if [ "\${CLASSPATH#*$myCatalogManagerDir*}" = "\$CLASSPATH" ]; then + CLASSPATH="$myCatalogManagerDir$classPathSeparator\$CLASSPATH" + fi +fi +export CLASSPATH +EOF + + while read; do + echo "$REPLY" >> $mydir/.cshrc.incl + done <<EOF + + +if ( ! $\?CLASSPATH ) then + setenv CLASSPATH "$myCatalogManagerDir" +# $myCatalogManagerDir is not in CLASSPATH, so add it +else if ( "\\\`echo \$CLASSPATH | grep -v $myCatalogManagerDir\\\`" != "" ) then + setenv CLASSPATH "$myCatalogManagerDir$classPathSeparator\$CLASSPATH" +endif +endif +EOF + +fi + +while read; do + echo "$REPLY" >> $mydir/.emacs.el +done <<EOF +(add-hook + 'nxml-mode-hook + (lambda () + (setq rng-schema-locating-files-default + (append '("$thisLocatingRules") + rng-schema-locating-files-default )))) +EOF + +return 0 +} + +updateUserStartupFiles() { + if [ ! "$batchmode" = "Yes" ]; then + cat 1>&2 <<EOF + +NOTE: To source your environment correctly for using the catalog + files in this distribution, you need to update one or more + of your shell startup files. This installer can + automatically make the necessary changes. Or, if you prefer, + you can make the changes manually. + +EOF + else + emit_message + fi + + # if running csh or tcsh, target .cshrc and .tcshrc files for + # update; otherwise, target .bash_* and .profiles + + parent=$(ps -p $PPID | grep "/") + if [ "${parent#*csh}" != "$parent" ] || [ "${parent#*tcsh}" != "$parent" ]; then + myStartupFiles=".cshrc .tcshrc" + appendLine="source $mydir/.cshrc.incl" + else + myStartupFiles=".bash_profile .bash_login .profile .bashrc" + appendLine=". $mydir/.profile.incl" + fi + + for file in $myStartupFiles; do + if [ -f "$HOME/$file" ]; then + dotFileBackup=$HOME/$file.$$.bak + REPLY="" + if [ ! "$batchmode" = "Yes" ]; then + read -s -n1 -p "Update $HOME/$file? [Yes] " + emit_message "$REPLY" + fi + case $REPLY in + [nNqQ]) + cat 1>&2 <<EOF + +NOTE: No change made to $HOME/$file. You either need + to add the following line to it, or manually source + the shell environment for this distribution each + time you want use it. + +$appendLine + +EOF + ;; + *) + lineExists="$(grep "$appendLine" $HOME/$file )" + if [ ! "$lineExists" ]; then + mv $HOME/$file $dotFileBackup || exit 1 + cp $dotFileBackup $HOME/$file || exit 1 + echo "$appendLine" >> $HOME/$file || exit 1 + cat 1>&2 <<EOF +NOTE: Successfully updated the following file: + $HOME/$file + Backup written to: + $dotFileBackup + +EOF + else + cat 1>&2 <<EOF +NOTE: The following file already contains information for this + distribution, so I did not update it. + $HOME/$file + +EOF + fi + ;; + esac + fi + done + if [ -z "$dotFileBackup" ]; then + if [ ! "$batchmode" = "Yes" ]; then + emit_message + fi + cat 1>&2 <<EOF +NOTE: No shell startup files updated. You can source the + environment for this distribution manually, each time you + want to use it, by typing the following. + +$appendLine + +EOF + fi +} + +updateUserDotEmacs() { + if [ -f $thisLocatingRules ]; then + cat 1>&2 <<EOF + +NOTE: This distribution includes a "schema locating rules" file + for Emacs/nXML. To use it, you should update either your + .emacs or .emacs.el file. This installer can automatically + make the necessary changes. Or, if you prefer, you can make + the changes manually. + +EOF + + emacsAppendLine="(load-file \"$mydir/.emacs.el\")" + myEmacsFile= + for file in .emacs .emacs.el; do + if [ -f "$HOME/$file" ]; then + myEmacsFile=$HOME/$file + break + fi + done + if [ ! -f "$myEmacsFile" ]; then + REPLY="" + if [ ! "$batchmode" = "Yes" ]; then + read -s -n1 -p "No .emacs or .emacs.el file. Create one? [No] " + emit_message "$REPLY" + emit_message + fi + case $REPLY in + [yY]) + myEmacsFile=$HOME/.emacs + touch $myEmacsFile + ;; + *) + cat 1>&2 <<EOF +NOTE: No Emacs changes made. To use this distribution with, + Emacs/nXML, you can create a .emacs file and manually add + the following line to it, or you can run it as a command + within Emacs. + +$emacsAppendLine + +EOF + ;; + esac + fi + if [ -n "$myEmacsFile" ]; then + REPLY="" + if [ ! "$batchmode" = "Yes" ]; then + read -s -n1 -p "Update $myEmacsFile? [Yes] " + emit_message "$REPLY" + emit_message + fi + case $REPLY in + [nNqQ]) + cat 1>&2 <<EOF + +NOTE: No change made to $myEmacsFile. To use this distribution + with Emacs/nXML, you can manually add the following line + to your $myEmacsFile, or you can run it as a command + within Emacs. + +$emacsAppendLine + +EOF + ;; + *) + lineExists="$(grep "$emacsAppendLine" $myEmacsFile)" + if [ ! "$lineExists" ]; then + dotEmacsBackup=$myEmacsFile.$$.bak + mv $myEmacsFile $dotEmacsBackup || exit 1 + cp $dotEmacsBackup $myEmacsFile || exit 1 + echo "$emacsAppendLine" >> $myEmacsFile || exit 1 + cat 1>&2 <<EOF +NOTE: Successfully updated the following file: + $myEmacsFile + Backup written to: + $dotEmacsBackup +EOF + else + cat 1>&2 <<EOF + +NOTE: The following file already contains information for this + distribution, so I did not update it. + $myEmacsFile + +EOF + fi + ;; + esac + fi +fi +} + +uninstall() { + if [ ! "$batchmode" = "Yes" ]; then + cat 1>&2 <<EOF + +NOTE: To "uninstall" this distribution, the changes made to your + CatalogManagers.properties, startup files, and/or .emacs + file need to be reverted. This uninstaller can automatically + revert them. Or, if you prefer, you can revert them manually. + +EOF + fi + + if [ "$osName" = "Cygwin" ]; then + thisXmlCatalog=$thisJavaXmlCatalog + fi + + # make "escaped" version of PWD to use with sed and grep + escapedPwd=$(echo $mydir | sed "s#/#\\\\\/#g") + + # check to see if a non-empty value for catalogManager was fed + # to uninstaller. + if [ -n ${1#--catalogManager=} ]; then + myCatalogManager=${1#--catalogManager=} + catalogBackup="$myCatalogManager.$$.bak" + catalogsLine=$(grep "^catalogs=" $myCatalogManager) + if [ "$catalogsLine" ] ; then + if [ "${catalogsLine#*$thisXmlCatalog*}" != "$catalogsLine" ]; then + REPLY="" + if [ ! "$batchmode" = "Yes" ]; then + read -s -n1 -p "Revert $myCatalogManager? [Yes] " + emit_message "$REPLY" + fi + case $REPLY in + [nNqQ]*) + cat 1>&2 <<EOF + +NOTE: No change made to $myCatalogManager. You need to manually + remove the following path from the "catalog=" line. + + $thisXmlCatalog + +EOF + ;; + *) + mv $myCatalogManager $catalogBackup || exit 1 + sed "s#^catalogs=\(.*\)$thisXmlCatalog\(.*\)\$#catalogs=\1\2#" $catalogBackup \ + | sed 's/;\+/;/' | sed 's/;$//' | sed 's/=;/=/' > $myCatalogManager || exit 1 + cat 1>&2 <<EOF +NOTE: Successfully updated the following file: + $myCatalogManager + Backup written to: + $catalogBackup + +EOF + ;; + esac + else + emit_message "NOTE: No data for this distribution found in:" + emit_message " $myCatalogManager" + emit_message + fi + else + cat 1>&2 <<EOF +NOTE: No data for this distribution was found in the following + file, so I did not revert it. + $myCatalogManager +EOF + fi + fi + + if [ -n "$myEmacsFile" ]; then + # check to see if a non-empty value for --dotEmacs file was fed + # to uninstaller. + if [ -n ${2#--dotEmacs=} ]; then + myEmacsFile=${2#--dotEmacs=} + revertLine="(load-file \"$escapedPwd\/\.emacs\.el\")" + loadLine="$(grep "$revertLine" "$myEmacsFile")" + if [ -n "$loadLine" ]; then + emit_message + REPLY="" + if [ ! "$batchmode" = "Yes" ]; then + read -s -n1 -p "Revert $myEmacsFile? [Yes] " + emit_message "$REPLY" + fi + case $REPLY in + [nNqQ]*) + cat 1>&2 <<EOF + +NOTE: No change made to $myEmacsFile. You need to manually +remove the following line. + +(load-file \"$mydir/.emacs.el\") + +EOF + ;; + *) + dotEmacsBackup=$myEmacsFile.$$.bak + sed -e "/$revertLine/d" -i".$$.bak" $myEmacsFile || exit 1 + cat 1>&2 <<EOF +NOTE: successfully reverted the following file: + $myEmacsFile + Backup written to: + $dotEmacsBackup + +EOF + ;; + esac + else + emit_message "NOTE: No data for this distribution found in:" + emit_message " $myEmacsFile" + fi + fi + fi + + # check all startup files + myStartupFiles=".bash_profile .bash_login .profile .bashrc .cshrc .tcshrc" + for file in $myStartupFiles; do + if [ -e "$HOME/$file" ]; then + case $file in + .tcshrc|.cshrc) + revertLine="source $mydir/.cshrc.incl" + revertLineEsc="source $escapedPwd\/\.cshrc\.incl" + ;; + *) + revertLine=". $mydir/.profile.incl" + revertLineEsc="\. $escapedPwd\/\.profile\.incl" + ;; + esac + lineExists="$(grep "$revertLineEsc" $HOME/$file )" + if [ "$lineExists" ]; then + REPLY="" + if [ ! "$batchmode" = "Yes" ]; then + read -s -n1 -p "Update $HOME/$file? [Yes] " + emit_message "$REPLY" + fi + case $REPLY in + [nNqQ]*) + cat 1>&2 <<EOF + +NOTE: No change made to $HOME/$file. You need to manually remove + the following line from it. + + $revertLine + +EOF + ;; + *) + dotFileBackup=$HOME/$file.$$.bak + sed -e "/$revertLineEsc/d" -i".$$.bak" $HOME/$file || exit 1 + cat 1>&2 <<EOF +NOTE: Successfully updated the following file: + $HOME/$file + Backup written to: + $dotFileBackup + +EOF + ;; + esac + else + emit_message "NOTE: No data for this distribution found in:" + emit_message " $HOME/$file" + emit_message + fi + fi + done + removeOldFiles + emit_message "Done. Deleted uninstall.sh file." + rm -f $mydir/test.sh || exit 1 + rm -f $mydir/uninstall.sh || exit 1 +} + +writeUninstallFile() { + uninstallFile=$mydir/uninstall.sh + echo '#!/bin/bash' > $uninstallFile || exit 1 + echo 'mydir=$(cd -P $(dirname $0) && pwd -P)' >> $uninstallFile || exit 1 + echo "\$mydir/install.sh \\" >> $uninstallFile || exit 1 + echo " --uninstall \\" >> $uninstallFile || exit 1 + echo " --catalogManager=$myCatalogManager \\" >> $uninstallFile || exit 1 + echo " --dotEmacs='$myEmacsFile' \\" >> $uninstallFile || exit 1 + echo ' $@' >> $uninstallFile || exit 1 + chmod 755 $uninstallFile || exit 1 +} + +writeTestFile() { + testFile=$mydir/test.sh + echo "#!/bin/bash" > $testFile || exit 1 + echo 'mydir=$(cd -P $(dirname $0) && pwd -P)' >> $testFile || exit 1 + echo '$mydir/install.sh --test' >> $testFile || exit 1 + chmod 755 $testFile || exit 1 +} + +printExitMessage() { + cat 1>&2 <<EOF +To source your shell environment for this distribution, type the +following: + +$appendLine + +EOF +} + +checkForResolver() { + resolverResponse="$(java org.apache.xml.resolver.apps.resolver uri -u foo 2>/dev/null)" + if [ -z "$resolverResponse" ]; then + cat 1>&2 <<EOF + +NOTE: Your environment does not seem to contain the Apache XML + Commons Resolver; without that, you can't use XML catalogs + with Java applications. For more information, see the "How + to use a catalog file" section in Bob Stayton's "DocBook + XSL: The Complete Guide" + + http://sagehill.net/docbookxsl/UseCatalog.html + +EOF + fi +} + +emitNoChangeMsg() { + cat 1>&2 <<EOF + +NOTE: No changes were made to CatalogManagers.properties. To + provide your Java tools with XML catalog information for + this distribution, you will need to make the appropriate + changes manually. + +EOF +} + +testCatalogs() { + if [ ! -f "$thisXmlCatalog" ]; then + cat 1>&2 <<EOF + +FATAL: $thisXmlCatalog file needed but not found. Stopping. +EOF + exit + fi + + if [ -z "$XML_CATALOG_FILES" ]; then + emit_message + emit_message "WARNING: XML_CATALOG_FILES not set. Not testing with xmlcatalog." + else + xmlCatalogResponse="$(xmlcatalog 2>/dev/null)" + if [ -z "$xmlCatalogResponse" ]; then + cat 1>&2 <<EOF + +WARNING: Cannot locate the "xmlcatalog" command. Make sure that + you have libxml2 and its associated utilities installed. + + http://xmlsoft.org/ + +EOF + else + emit_message "Testing with xmlcatalog..." + # read in pathname-uri pairs from .urilist file + while read pair; do + if [ ! "${pair%* *}" = "." ]; then + path=$mydir/${pair%* *} + else + path=$mydir/ + fi + uri=${pair#* *} + emit_message + emit_message " Tested: $uri" + for catalog in $XML_CATALOG_FILES; do + response="$(xmlcatalog $catalog $uri| grep -v "No entry")" + if [ -n "$response" ]; then + if [ "$response" = "$path" ]; then + emit_message " Result: $path" + break + else + emit_message " Result: FAILED" + fi + fi + done + done < $mydir/.urilist + fi + fi + + if [ -z "$CLASSPATH" ]; then + emit_message + emit_message "NOTE: CLASSPATH not set. Not testing with Apache XML Commons Resolver." + else + if [ "$(checkForResolver)" ]; then + checkForResolver + else + emit_message + emit_message "Testing with Apache XML Commons Resolver..." + # read in pathname-uri pairs from .urilist file + while read pair; do + if [ ! "${pair%* *}" = "." ]; then + path=$mydir/${pair%* *} + else + path=$mydir/ + fi + uri=${pair#* *} + emit_message + emit_message " Tested: $uri" + if [ ${uri%.dtd} != $uri ]; then + response="$(java org.apache.xml.resolver.apps.resolver system -s $uri | grep "Result")" + else + response="$(java org.apache.xml.resolver.apps.resolver uri -u $uri | grep "Result")" + fi + if [ "$response" ]; then + if [ "${response#*$path}" != "$response" ]; then + emit_message " Result: $path" + else + emit_message " Result: FAILED" + fi + echo + fi + done < $mydir/.urilist + fi + fi +} + +# get opts and execute appropriate function +case $1 in + *-uninstall) + uninstall $2 $3 $4 + ;; + *-test) + testCatalogs + ;; + *) + main + ;; +esac + +# Copyright +# --------- +# Copyright 2005-2007 Michael(tm) Smith <smith@sideshowbarker.net> +# +# Permission is hereby granted, free of charge, to any person +# obtaining a copy of this software and associated documentation +# files (the "Software"), to deal in the Software without +# restriction, including without limitation the rights to use, copy, +# modify, merge, publish, distribute, sublicense, and/or sell copies +# of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be +# included in all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +# HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +# DEALINGS IN THE SOFTWARE. + +# vim: number diff --git a/docbook-xsl-1.76.1/javahelp/javahelp.xsl b/docbook-xsl-1.76.1/javahelp/javahelp.xsl new file mode 100644 index 0000000..593e9b0 --- /dev/null +++ b/docbook-xsl-1.76.1/javahelp/javahelp.xsl @@ -0,0 +1,625 @@ +<?xml version="1.0"?> +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + xmlns:doc="http://nwalsh.com/xsl/documentation/1.0" + xmlns:ng="http://docbook.org/docbook-ng" + xmlns:db="http://docbook.org/ns/docbook" + xmlns:exsl="http://exslt.org/common" + version="1.0" + exclude-result-prefixes="doc ng db exsl"> + +<xsl:import href="../html/chunk.xsl"/> + +<xsl:output method="html"/> + +<!-- ******************************************************************** + $Id: javahelp.xsl 8400 2009-04-08 07:44:54Z bobstayton $ + ******************************************************************** + + This file is part of the XSL DocBook Stylesheet distribution. + See ../README or http://docbook.sf.net/release/xsl/current/ for + copyright and other information. + + ******************************************************************** --> + +<!-- ==================================================================== --> + +<xsl:template match="/"> + <!-- * Get a title for current doc so that we let the user --> + <!-- * know what document we are processing at this point. --> + <xsl:variable name="doc.title"> + <xsl:call-template name="get.doc.title"/> + </xsl:variable> + <xsl:choose> + <!-- Hack! If someone hands us a DocBook V5.x or DocBook NG document, + toss the namespace and continue. Use the docbook5 namespaced + stylesheets for DocBook5 if you don't want to use this feature.--> + <xsl:when test="$exsl.node.set.available != 0 + and (*/self::ng:* or */self::db:*)"> + <xsl:call-template name="log.message"> + <xsl:with-param name="level">Note</xsl:with-param> + <xsl:with-param name="source" select="$doc.title"/> + <xsl:with-param name="context-desc"> + <xsl:text>namesp. cut</xsl:text> + </xsl:with-param> + <xsl:with-param name="message"> + <xsl:text>stripped namespace before processing</xsl:text> + </xsl:with-param> + </xsl:call-template> + <xsl:variable name="nons"> + <xsl:apply-templates mode="stripNS"/> + </xsl:variable> + <xsl:call-template name="log.message"> + <xsl:with-param name="level">Note</xsl:with-param> + <xsl:with-param name="source" select="$doc.title"/> + <xsl:with-param name="context-desc"> + <xsl:text>namesp. cut</xsl:text> + </xsl:with-param> + <xsl:with-param name="message"> + <xsl:text>processing stripped document</xsl:text> + </xsl:with-param> + </xsl:call-template> + <xsl:apply-templates select="exsl:node-set($nons)"/> + </xsl:when> + <xsl:otherwise> + <xsl:choose> + <xsl:when test="$rootid != ''"> + <xsl:choose> + <xsl:when test="count(key('id',$rootid)) = 0"> + <xsl:message terminate="yes"> + <xsl:text>ID '</xsl:text> + <xsl:value-of select="$rootid"/> + <xsl:text>' not found in document.</xsl:text> + </xsl:message> + </xsl:when> + <xsl:otherwise> + <xsl:message>Formatting from <xsl:value-of select="$rootid"/></xsl:message> + <xsl:apply-templates select="key('id',$rootid)" mode="process.root"/> + </xsl:otherwise> + </xsl:choose> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates select="/" mode="process.root"/> + </xsl:otherwise> + </xsl:choose> + <xsl:for-each select="/"> <!-- This is just a hook for building profiling stylesheets --> + <xsl:call-template name="helpset"/> + <xsl:call-template name="helptoc"/> + <xsl:call-template name="helpmap"/> + <xsl:call-template name="helpidx"/> + </xsl:for-each> +</xsl:otherwise> +</xsl:choose> +</xsl:template> + +<xsl:template name="header.navigation"> +</xsl:template> + +<xsl:template name="footer.navigation"> +</xsl:template> + +<!-- ==================================================================== --> + +<xsl:template name="helpset"> + <xsl:call-template name="write.chunk.with.doctype"> + <xsl:with-param name="filename" select="concat($base.dir,'jhelpset.hs')"/> + <xsl:with-param name="method" select="'xml'"/> + <xsl:with-param name="indent" select="'yes'"/> + <xsl:with-param name="doctype-public" select="'-//Sun Microsystems Inc.//DTD JavaHelp HelpSet Version 1.0//EN'"/> + <xsl:with-param name="doctype-system" select="'http://java.sun.com/products/javahelp/helpset_1_0.dtd'"/> + <xsl:with-param name="content"> + <xsl:call-template name="helpset.content"/> + </xsl:with-param> + <xsl:with-param name="quiet" select="$chunk.quietly"/> + </xsl:call-template> +</xsl:template> + +<xsl:template name="helpset.content"> + <xsl:variable name="title"> + <xsl:apply-templates select="." mode="title.markup"/> + </xsl:variable> + + <helpset version="1.0"> + <title> + <xsl:value-of select="normalize-space($title)"/> + + + + + top + + + + + + TOC + + javax.help.TOCView + jhelptoc.xml + + + + Index + + javax.help.IndexView + jhelpidx.xml + + + + Search + + javax.help.SearchView + JavaHelpSearch + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + , + + + + , + + + + + + + + + + + + + + + + + + + + + bullet + + + + © + + + + TM + + + + + ® + (SM) +   + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/javahelp/profile-javahelp.xsl b/docbook-xsl-1.76.1/javahelp/profile-javahelp.xsl new file mode 100644 index 0000000..eabac3e --- /dev/null +++ b/docbook-xsl-1.76.1/javahelp/profile-javahelp.xsl @@ -0,0 +1,549 @@ + + + + + + + + + + + + + +Note: namesp. cut : stripped namespace before processingNote: namesp. cut : processing stripped document + + + + + + + + + + + + + + + ID ' + + ' not found in document. + + + + Formatting from + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <xsl:value-of select="normalize-space($title)"/> + + + + + top + + + + + + TOC + + javax.help.TOCView + jhelptoc.xml + + + + Index + + javax.help.IndexView + jhelpidx.xml + + + + Search + + javax.help.SearchView + JavaHelpSearch + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + , + + + + , + + + + + + + + + + + + + + + + + + + + + bullet + + + + © + + + + TM + + + + + ® + (SM) +   + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/lib/lib.xsl b/docbook-xsl-1.76.1/lib/lib.xsl new file mode 100644 index 0000000..5eee486 --- /dev/null +++ b/docbook-xsl-1.76.1/lib/lib.xsl @@ -0,0 +1,480 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + http://... + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Unrecognized unit of measure: + + . + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Unrecognized unit of measure: + + . + + + + + + + filename + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + / + + + + + + + + + + + + / + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/manpages/ChangeLog.20020917 b/docbook-xsl-1.76.1/manpages/ChangeLog.20020917 new file mode 100644 index 0000000..c170cc0 --- /dev/null +++ b/docbook-xsl-1.76.1/manpages/ChangeLog.20020917 @@ -0,0 +1,195 @@ +Note: This changelog is a record of descriptions of all changes +made to the DocBook XSL manpages stylesheets during the time when +they were maintained in their original home in the +[cvs]/docbook/contrib/xsl/db2man area of the DocBook Project +source-code repository at Sourceforge; that is, from October 2001 +(when they were contributed to the project by Martijn van Beers) +until September 2002 (when they were moved to the +[cvs]/docbook/xsl/manpages area and became a standard part of all +subsequent DocBook XSL Stylesheets releases). + +2002-09-17 Norman Walsh + + * README, db2man.xsl, lists.xsl, sect23.xsl, synop.xsl, xref.xsl: + Moved to docbook/xsl/manpages + + * db2man.xsl, synop.xsl: Patch from Joe Orton + +2002-06-16 + + * db2man.xsl: commit patch sent by Joe Orton: + + This patch adds support for using the productname, date and title out of + a if one is present, rather than having to add each of + these individually for every refentry. + + * db2man.xsl: Tim Waugh sent: + + This patch normalizes space in each refname before displaying it in + the name section. + +2002-05-21 + + * xref.xsl: from Joe Orton: + this patch allows cross-referencing to a specific refname. I + need this since I'm documenting several different (but related) + functions per refentry, and want to cross-reference them individually, + rather than just by the title used for the refentry as a whole. + +2002-05-17 + + * lists.xsl: apply glosslist support patch from twaugh + +2002-05-15 + + * db2man.xsl: slightly sanitize the filenames we generate. again from twaugh + + * db2man.xsl: Apply twaugh's fix for making the entity transform stuff work + +2002-05-14 + + * db2man.xsl: generalize the tip template for all admonitions + (caution,important,note,tip,warning) + + * db2man.xsl: Apply Joe Orton's patch, modified to be indented. Also show "Tip" + in the title. + + so if foo, you get + Tip: foo + + * synop.xsl: rewrote funcprototype. It used to convert all its children to a single + string and the split it up again through recursion. Now has a nice + foreach loop for the paramdefs, which seems much cleaner than throwing + everything in a big string before processing it. + +2002-05-10 + + * db2man.xsl: add support for simpara + + * db2man.xsl, lists.xsl: fix refsect2 titles + + * synop.xsl: also from twaugh: + + I found some input that goes wrong with the synop.xsl we have in CVS: + + + -o FILE + --output=FILE + + + It gets rendered as (with *bold* and _italic_): + + [*-o FILE* | *--output=FILE*] + + The desired markup should look like: + The following macro does the trick: + + [\fB-o \fIFILE\fR\fR | \fB--output=\fIFILE\fR\fR] + + The trouble is that the named template 'bold' uses value-of, and so + strips of its significance. + + Another thing I found is that the arg/replaceable template is + superfluous altogether: db2man.xsl has a 'replaceable' template which + does the same thing. + + Here is a patch to make those two modifications. + + NOTE TO SELF: must try to fix bold template so we can use it everywhere + +2002-05-09 + + * db2man.xsl: oops, removed too much + + * db2man.xsl: remove stuff that's apparently left-over from sect23.xsl + + * db2man.xsl, lists.xsl, synop.xsl: batch of patches from twaugh: + * This patch (based on one from Jirka Kosek) adds support for + block-level elements inside s---s for example, or lists. + * This patch replaces entities (like '舒') with sensible + characters or groups of characters. + * This patch adds support for sbr. + * This patch normalizes spaces in varlistentry terms. + * This patch normalizes spaces in terminal varlistentry terms. + * This patch allows variable lists to be nested (once). + * This patch prevents variable list item paragraphs from merging into + one another. + * This patch improves the rendering of itemized lists, and adds support + for ordered lists and procedures. + * This patch makes some small adjustments to group/arg: don't put extra + spaces in where they aren't needed, and normalize the space of $arg. + * This patch makes adjustments to cmdsynopsis elements. In particular, + they can now be wrapped if no is provided. + * This patch adds funcsynopsis//* support. Again, wrapping is done + automatically. + + * synop.xsl: make synopsises work for --arg=foo s too + + * synop.xsl: remove unneccesary adding of whitespace for arg/replaceable + +2002-05-01 + + * db2man.xsl: This patch adds support for multiple refnames. + + (another twaugh patch) + + * db2man.xsl: modified ulink patch from twaugh. Be nice to content-less ulinks. But we + don't accomodate silly people who don't understand ulink and put the + url as the content too. + + * db2man.xsl, synop.xsl: db2man.xsl: + * temporarily add some params that chunker.xsl needs + * fix bold/italic templates + * update calls to bold/italic templates for new syntax + synop.xsl: + * add support for synopfragment + * update calls to bold/italic templates for new syntax + +2002-04-30 + + * db2man.xsl: Add twaug's patch for xref support + + * db2man.xsl: This patch adds support for: + + - Multiple authors. + - A (single) man page editor. + + (another patch from twaugh) + + * db2man.xsl: more twaugh patches: + - Use refentrytitle, not refname[1], for title. + - Upper-case it. + - Use date, productname, and title. + - Pick up author from main document if not contained in refentry. + - Use refname[1] for man page filename, not refentrytitle. + + * db2man.xsl: add varname support + + * db2man.xsl: This patch makes userinput (an inline element) have inline formatting. + + * db2man.xsl: This patch adds support for the top-level document being something + other than an article. + + It also emits a helpful warning if no refentry elements are found. + + * db2man.xsl: next twaugh patch: + Instead of writing to stdout, create a file for each + refentry. Plus, for bonus points, a file for each additional refname + within that entry (pointing to the main page). + + * db2man.xsl: Add named templates for bold-ifying and italicizing stuff. Inspired + by yet another twaugh patch + + * db2man.xsl, lists.xsl, sect23.xsl: consistently use instead of a newline + + * db2man.xsl, synop.xsl: * add support for informalexample, screen, errorcode, constant, type, + quote, programlisting and citerefentry + * use the 'bold' and 'italic' named templates + + * xref.xsl: New file. + +2001-12-01 Norman Walsh + + * README, db2man.xsl, lists.xsl, sect23.xsl, synop.xsl: + New file. + diff --git a/docbook-xsl-1.76.1/manpages/block.xsl b/docbook-xsl-1.76.1/manpages/block.xsl new file mode 100644 index 0000000..9278561 --- /dev/null +++ b/docbook-xsl-1.76.1/manpages/block.xsl @@ -0,0 +1,411 @@ + + + + + + + + + + n + + .sp + + .RS 4 + + .BM yellow + + + .ps +1 + + .ps -1 + .br + + .sp .5v + + .EM yellow + + .RE + + + + + + + .PP + + + + + + + . + + + + + + + + + + + + + + + + + + + + + .sp + + .RS 4n + + + + + .PP + + + + + + + + .RE + + + + + + + + + + + .sp + + .RS 4n + + + + + .sp + + + + + + + + + + + + + + + + + + + + Yes + + + + + + + + + + + + Yes + + + + + + + + + + + + + + + + .sp + + + + + + + .RS + + + + + + + + + + + + + + + + + + + + + + + + + + + .ft + + + + .nf + + + .fi + + .ft + + + + + .nf + + + + + + + + + + + + + t + + .sp -1 + + .BB lightgray + + adjust-for-leading-newline + + + + .sp -1 + + + .BB lightgray + + + + + + + .EB lightgray + + adjust-for-leading-newline + + t + + + + + + .sp 1 + + + + .EB lightgray + + + + + + + + + + + .fi + + + + + + + .RE + + + + + + .sp + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + before + + + + + + + .PP + + + + + + + + + + .sp + + .RS + + + + + + + + .RE + + + + [IMAGE] + + + + + + [ + + ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/manpages/charmap.groff.xsl b/docbook-xsl-1.76.1/manpages/charmap.groff.xsl new file mode 100644 index 0000000..a9492fa --- /dev/null +++ b/docbook-xsl-1.76.1/manpages/charmap.groff.xsl @@ -0,0 +1,6013 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/manpages/docbook.xsl b/docbook-xsl-1.76.1/manpages/docbook.xsl new file mode 100644 index 0000000..a0a4251 --- /dev/null +++ b/docbook-xsl-1.76.1/manpages/docbook.xsl @@ -0,0 +1,311 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Note + + + namesp. cut + + + stripped namespace before processing + + + + + + + Note + + + namesp. cut + + + processing stripped document + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + MAN.MANIFEST + + + + + + + + + + + Erro + + + no refentry + + + No refentry elements found + + in " + + + + ... + + + + + + " + + . + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + '\" t + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + .\" ----------------------------------------------------------------- + .\" * MAIN CONTENT STARTS HERE * + .\" ----------------------------------------------------------------- + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/manpages/endnotes.xsl b/docbook-xsl-1.76.1/manpages/endnotes.xsl new file mode 100644 index 0000000..8e52e01 --- /dev/null +++ b/docbook-xsl-1.76.1/manpages/endnotes.xsl @@ -0,0 +1,586 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Warn + + + endnote + + + + Bad: + + + + + [ + + ] + in source + + + + Note + + + endnote + + + + Has: + + / + + + + + Note + + + endnote + + + + Fix: + + / + para/ + + + + + + + + + + + + + + + + \% + + + + + + + + + + + \m[blue] + + + + + + + + + + + + + + + + + + + + + + + + + + + Warn + + + link font + + + invalid $man.font.links value: + ' + + ' + + + + + + + \m[] + + + + + + + \&\s-2\u[ + + ]\d\s+2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + .IP + " + + + . + + + + + + + + " + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + .RS + + + + + + + + + + \% + + + + + + .RE + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/manpages/html-synop.xsl b/docbook-xsl-1.76.1/manpages/html-synop.xsl new file mode 100644 index 0000000..06c3eb2 --- /dev/null +++ b/docbook-xsl-1.76.1/manpages/html-synop.xsl @@ -0,0 +1,1567 @@ + + + + + + + + + + + + +
    + +

    + + + + + + + + + + + + +

    +
    +
    + + + +. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + ( + + ) + +   + + + + + + + + + + + + + + + + + + + ( + + ) + + + + + + + + + + + + + + + + + + + + + + + .sp +.nf +
    +    
    +    
    +  
    .fi + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    + + + +. + + + +

    +
    + + + + + + ( + + + + + + + + + + + + + + + + ) + ; + + + + ... + ) + ; + + + + + + + , + + + ) + ; + + + + + + + + + + + + + + + + + + + + + +. + + + + + ; + + + + + + + + + + + + + + + + + + + ( + + ) + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + +
    +
    +
     
    +
    + + + + + + ( + + + + + + + + + + + + + + + + + ) + ; + +   + + + + + ... + ) + ; + +   + + + + + + + + , + + + ) + ; + + + +   + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +   + + + + + + + + + + + + + + + + + + + + + + + + + + + + +   + + + + + + ; + + + + + + + + + + + + + + + + + + + + + + + + ( + + ) + ; + + + + + + +

    + +

    +
    + + + + + + ( + + + + + + + + + + + + + + + + void) + ; + + + + ... + ) + ; + + + + + + + , + + + ) + ; + + + + + + + + + + + + + + + + + + + + + ( + + ) + + + + + + + + + + + + + + + + + +
    + +
     
    +
     
    +
    + + + + + + ( + + + + + + + + + + + + + + + + + void) + ; + +   + + + + + ... + ) + ; + +   + + + + + + + + , + + + ) + ; + + + + + + + + + + + + + + + + + + + + + + ( + + ) + + + + +java + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Unrecognized language on + + : + + + + + + + + + + + + +. + + + + + + + + + .sp +.nf +
    +    
    +    
    +    
    +       extends
    +      
    +      
    +        
    +.
    +
    +	    
    +      
    +    
    +    
    +      implements
    +      
    +      
    +        
    +.
    +
    +	    
    +      
    +    
    +    
    +      throws
    +      
    +    
    +     {
    +    
    +.
    +
    +    
    +    }
    +  
    .fi + +
    + + + + + + + + + , + + + + + + + + + + + + + + + + +   + + + + + + + , + + + + + + + + + + , + + + + + + + + + + , + + + + + + + + + + + +    + + + ; + + + + + + + + +   + + + + + + + +   + + + + + + + =  + + + + + + + + void  + + + + + + + + + + + + 0 + + , + +. + + + +   + + + + + + + + + + + + + + + + + + + + + + + +    + + + + + + + + + + + + + + + ( + + + + ) + + +. + +     throws  + + + + + + + ; + + + + + + + + .sp +.nf +
    +    
    +    
    +    
    +      : 
    +      
    +      
    +        
    +.
    +
    +	    
    +      
    +    
    +    
    +       implements
    +      
    +      
    +        
    +.
    +
    +	    
    +      
    +    
    +    
    +       throws
    +      
    +    
    +     {
    +    
    +.
    +
    +    
    +    }
    +  
    .fi + +
    + + + + + + + + , + + + + + + + + + + + + +   + + + + + + + , + + + + + + + + + + , + + + + + + + + + + , + + + + + + + + + + + +    + + + ; + + + + + + + + +   + + + + + + + +   + + + + + + + =  + + + + + + + + void  + + + + + + + + + + + + + , + + + + + + + + + + + + + + + + + + + + + + +    + + + + + + + + + + ( + + ) + + +. + +     throws  + + + + + + + ; + + + + + + + + .sp +.nf +
    +    
    +    interface 
    +    
    +    
    +      : 
    +      
    +      
    +        
    +.
    +
    +	    
    +      
    +    
    +    
    +       implements
    +      
    +      
    +        
    +.
    +
    +	    
    +      
    +    
    +    
    +       throws
    +      
    +    
    +     {
    +    
    +.
    +
    +    
    +    }
    +  
    .fi + +
    + + + + + + + + , + + + + + + + + + + + + +   + + + + + + + , + + + + + + + + + + , + + + + + + + + + + , + + + + + + + + + + + +    + + + ; + + + + + + + + +   + + + + + + + +   + + + + + + + =  + + + + + + + + void  + + + + + + + + + + + + + , + + + + + + + + + + + + + + + + + + + + + +    + + + + + + + + + + ( + + ) + + +. + +     raises( + + ) + + + + + + ; + + + + + + + + .sp +.nf +
    +    
    +    package 
    +    
    +    ;
    +    
    +.
    +
    +
    +    
    +      @ISA = (
    +      
    +      );
    +      
    +.
    +
    +    
    +
    +    
    +  
    .fi + +
    + + + + + + + + , + + + + + + + + + + + + +   + + + + + + + , + + + + + + + + + + , + + + + + + + + + + , + + + + + + + + + + + +    + + + ; + + + + + + + + +   + + + + + + + +   + + + + + + + =  + + + + + + + + void  + + + + + + + + + + + + + , + + + + + + + + + + + + + + + + + + + + + + sub + + + { ... }; + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + diff --git a/docbook-xsl-1.76.1/manpages/info.xsl b/docbook-xsl-1.76.1/manpages/info.xsl new file mode 100644 index 0000000..6698fb9 --- /dev/null +++ b/docbook-xsl-1.76.1/manpages/info.xsl @@ -0,0 +1,800 @@ + + + + + + + + + + + + + + + + \n(zqu + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + " + + + + " + + + + + + + + + + " + + + + " + + + + + + + + + + + + + + " + + " + + + + " + + " + + + + + + + + + + + + + + + + + + + + Documentation + + + DOCUMENTATION + + + + + + + + + + [see the + + section] + + + + + + [FIXME: author] [see http://docbook.sf.net/el/author] + + + Warn + + meta author + + no refentry/info/author + + + + Note + + meta author + + see http://docbook.sf.net/el/author + + + + Warn + + meta author + + no author data, so inserted a fixme + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + < + + + + + + + + + + + + + + + > + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Author + + + Authors + + + + + + + + + + + + + + + + + .PP + + + + + + + + + + + .br + + + + + + + + + + + + + + .PP + + + + + + + + + + + + + .PP + + + + + + + + + + + + + .PP + + + + + + + + + + + + + + + .RS + + + + + + + + + . + .RE + + + + + + + + + + + + + + + + + + <\& + + + + + + + + + + + + + + + \&> + + + + + + + , + + + + + + + + + + + + + + + .br + + + + + + + + + + , + + + + + + + + + + + .br + + + + + + + + + + + + .br + + + + + + + + + + + + + + + + + + + + + + + + + Warn + + AUTHOR sect. + + no personblurb|contrib for + + + + + Note + + AUTHOR sect. + + see see http://docbook.sf.net/el/contrib + + + + Note + + AUTHOR sect. + + see see http://docbook.sf.net/el/personblurb + + + + + + + + + + .RS + + + + + + + + + . + .RE + + + + .RS + + + + + + + + + . + .RE + + + + + + + + .RS + + + + + + + + + . + .RE + + + + + + + + + + + + + + + + + + + + + + + + + + + .RE + + + + + + + + + + . + + + + + + + + + + + + + + + + .RE + + + + + + + + + + + .RS + + + + + + + + + + + + + .PP + + + + + .br + + + + + + + + + + + + + + + + + + + + + Copyright + + + + .br + + + + + + + + + + + .br + + + + + .sp + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/manpages/inline.xsl b/docbook-xsl-1.76.1/manpages/inline.xsl new file mode 100644 index 0000000..56ca4c5 --- /dev/null +++ b/docbook-xsl-1.76.1/manpages/inline.xsl @@ -0,0 +1,219 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ( + + ) + + + + + + + + + + + + + + + + + + © + + + ® + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + .\" + + + + + + + + + + : + + + + + + + + .\" + + + + + + diff --git a/docbook-xsl-1.76.1/manpages/lists.xsl b/docbook-xsl-1.76.1/manpages/lists.xsl new file mode 100644 index 0000000..dd90174 --- /dev/null +++ b/docbook-xsl-1.76.1/manpages/lists.xsl @@ -0,0 +1,604 @@ + + + + + + + + + + + + + + + + \n(zqu + + + + + + + + + + + + + + .sp + + + + + + + + + + + .PP + + + + + + + + + + + .PP + + + + + + + + + + + + + + + + + + + + .br + + + + + + .RS + + + + + + + .RE + + + + + + + + + .sp + + + + + + + + + + + + + + + .sp + + .RS + + + + + + + + + + + \h'- + + + 0 + + + + \n(INu + + + ' + + \h'+ + + + 0 + + + + \n(INu-1 + + + '\c + + + + + + + .sp -1 + .IP \(bu 2.3 + + + + + + .RE + + + + + .sp + + .RS + + + + + + + + + + + \h'- + + + 0 + + + + \n(INu+3n + + + ' + + + + + \h'+ + + + 0 + + + + 1n + + + '\c + + + + + + + .sp -1 + .IP " + + + + + " 4.2 + + + + + + .RE + + + + + + .PP + + + + + + + + + + + + + + + + .sp + + + + + + + .PP + + + + + + + + + .sp + + + + + + + + + + + + + + + + + + + + + + + + + + + + , + + + + + + + + + + + + + + + + + .RS + + + + + + + + .RE + + + + + + + + + + .PP + + + + + + + .\" line length increase to cope w/ tbl weirdness + .ll +(\n(LLu * 62u / 100u) + + .TS + + + + + + l + + + . + + + + + + + + + + + + + + .TE + .\" line length decrease back to previous value + .ll -(\n(LLu * 62u / 100u) + + .sp + + + + + + + + + + + + + + + + + + + + + + + + + + + + T{ + + + + + T} + + + + + + + + + + + + + + + + + + + + + + + + + + + .TS + tab(:); + + + + r lw(\n(.lu*75u/100u). + + .TE + + + + + + + + + + + + + + \h'-2n': + + + T{ + + T} + + + + + + + + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ??? + + + + + + + + + + \ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ??? + + + + + + + + + \fB( + + )\fR + + + + + + + \fB + + .\fR + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/manpages/other.xsl b/docbook-xsl-1.76.1/manpages/other.xsl new file mode 100644 index 0000000..5431925 --- /dev/null +++ b/docbook-xsl-1.76.1/manpages/other.xsl @@ -0,0 +1,888 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ + + + + + \e + + + + + + + + . + \&. + + + + + + + + - + \- + + + + + + + + ' + \*(Aq + + + + + + + +   + + + + + + + + + + + + + + + + + + + + \ \& + + + + + + + + + + + + + + + + .\" Title: + + + + + .\" Author: + + + + + + + + + + .\" Generator: DocBook + + v + + + + <http://docbook.sf.net/> + + .\" Date: + + + + + .\" Manual: + + + + + .\" Source: + + + + + .\" Language: + + + .\" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + .TH " + + + + + + + + + + + + + " " + + " " + + + + + + + " " + + + + + + + + + + + + " " + + + + + + + + + + + + " + + + + + + + + + + + + .\" ----------------------------------------------------------------- + .\" * set default formatting + .\" ----------------------------------------------------------------- + + .\" disable hyphenation + .nh + + + + + .\" disable justification + (adjust text to left margin only) + .ad l + + + .\" store initial "default indentation value" + .nr zq \n(IN + .\" adjust default indentation + .nr IN + + + .\" adjust indentation of SS headings + .nr SN \n(IN + + + + + + .\" enable line breaks after slashes + .cflags 4 / + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Note: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Note: + (soelim stub) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Note: + (manifest file) + + + + + + + + + + + + + + .\" ----------------------------------------------------------------- + .\" * Define some portability stuff + .\" ----------------------------------------------------------------- + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .\" http://bugs.debian.org/507673 + .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + + .ie \n(.g .ds Aq \(aq + + .el .ds Aq ' + + + + + + + .\" ----------------------------------------------------------------- + .\" * (re)Define some macros + .\" ----------------------------------------------------------------- + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .\" toupper - uppercase a string (locale-aware) + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de toupper + .tr + + + \\$* + .tr + + + .. + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .\" SH-xref - format a cross-reference to an SH section + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de SH-xref +.ie n \{\ +.\} +.toupper \\$* +.el \{\ +\\$* +.\} +.. + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH + .\" put an extra blank line of space above the head in non-TTY output + + t + + .sp 1 + + .sp \\n[PD]u +.nr an-level 1 +.set-an-margin +.nr an-prevailing-indent \\n[IN] +.fi +.in \\n[an-margin]u +.ti 0 +.HTML-TAG ".NH \\n[an-level]" +.it 1 an-trap +.nr an-no-space-flag 1 +.nr an-break-flag 1 +\." make the size of the head bigger +.ps +3 +.ft B +.ne (2v + 1u) +.ie n \{\ +.\" if n (TTY output), use uppercase +.toupper \\$* +.\} +.el \{\ +.nr an-break-flag 0 +.\" if not n (not TTY), use normal case (not uppercase) +\\$1 +.in \\n[an-margin]u +.ti 0 +.\" if not n (not TTY), put a border/line under subheading +.sp -.6 +\l'\n(.lu' +.\} +.. + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .\" SS - level-two heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SS +.sp \\n[PD]u +.nr an-level 1 +.set-an-margin +.nr an-prevailing-indent \\n[IN] +.fi +.in \\n[IN]u +.ti \\n[SN]u +.it 1 an-trap +.nr an-no-space-flag 1 +.nr an-break-flag 1 +.ps \\n[PS-SS]u +\." make the size of the head bigger +.ps +2 +.ft B +.ne (2v + 1u) +.if \\n[.$] \&\\$* +.. + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .\" BB/EB - put background/screen (filled box) around block of text + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de BB +.if t \{\ +.sp -.5 +.br +.in +2n +.ll -2n +.gcolor red +.di BX +.\} +.. +.de EB +.if t \{\ +.if "\\$2"adjust-for-leading-newline" \{\ +.sp -1 +.\} +.br +.di +.in +.ll +.gcolor +.nr BW \\n(.lu-\\n(.i +.nr BH \\n(dn+.5v +.ne \\n(BHu+.5v +.ie "\\$2"adjust-for-leading-newline" \{\ +\M[\\$1]\h'1n'\v'+.5v'\D'P \\n(BWu 0 0 \\n(BHu -\\n(BWu 0 0 -\\n(BHu'\M[] +.\} +.el \{\ +\M[\\$1]\h'1n'\v'-.5v'\D'P \\n(BWu 0 0 \\n(BHu -\\n(BWu 0 0 -\\n(BHu'\M[] +.\} +.in 0 +.sp -.5v +.nf +.BX +.in +.sp .5v +.fi +.\} +.. + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .\" BM/EM - put colored marker in margin next to block of text + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de BM +.if t \{\ +.br +.ll -2n +.gcolor red +.di BX +.\} +.. +.de EM +.if t \{\ +.br +.di +.ll +.gcolor +.nr BH \\n(dn +.ne \\n(BHu +\M[\\$1]\D'P -.75n 0 0 \\n(BHu -(\\n[.i]u - \\n(INu - .75n) 0 0 -\\n(BHu'\M[] +.in 0 +.nf +.BX +.in +.fi +.\} +.. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/manpages/param.xml b/docbook-xsl-1.76.1/manpages/param.xml new file mode 100644 index 0000000..706c99d --- /dev/null +++ b/docbook-xsl-1.76.1/manpages/param.xml @@ -0,0 +1,3220 @@ + + + + Manpages Parameter Reference + + $Id: param.xweb 8235 2009-02-09 16:22:14Z xmldoc $ + + + The DocBook Project + + + 2005-2007 + The DocBook Project + + + This is reference documentation for all user-configurable + parameters in the DocBook XSL "manpages" stylesheet (for + generating groff/nroff output). Note that the manpages + stylesheet is a customization layer of the DocBook XSL HTML + stylesheet. Therefore, you can also use a number of HTML stylesheet parameters + to control manpages output (in addition to the + manpages-specific parameters listed in this section). + + + + Hyphenation, justification, and breaking + + +man.hyphenate +boolean + + +man.hyphenate +Enable hyphenation? + + + + +<xsl:param name="man.hyphenate">0</xsl:param> + + +Description + +If non-zero, hyphenation is enabled. + + +The default value for this parameter is zero because groff is +not particularly smart about how it does hyphenation; it can end up +hyphenating a lot of things that you don't want hyphenated. To +mitigate that, the default behavior of the stylesheets is to suppress +hyphenation of computer inlines, filenames, and URLs. (You can +override the default behavior by setting non-zero values for the +man.hyphenate.urls, +man.hyphenate.filenames, and +man.hyphenate.computer.inlines parameters.) But +the best way is still to just globally disable hyphenation, as the +stylesheets do by default. + +The only good reason to enabled hyphenation is if you have also +enabled justification (which is disabled by default). The reason is +that justified text can look very bad unless you also hyphenate it; to +quote the Hypenation node from the groff info page: + +
    + Since the odds are not great for finding a set of + words, for every output line, which fit nicely on a line without + inserting excessive amounts of space between words, 'gtroff' + hyphenates words so that it can justify lines without inserting too + much space between words. +
    + +So, if you set a non-zero value for the +man.justify parameter (to enable +justification), then you should probably also set a non-zero value for +man.hyphenate (to enable hyphenation).
    +
    + + +
    +
    + + + +man.hyphenate.urls +boolean + + +man.hyphenate.urls +Hyphenate URLs? + + + + +<xsl:param name="man.hyphenate.urls">0</xsl:param> + + +Description + +If zero (the default), hyphenation is suppressed for output of +the ulink url attribute. + + + If hyphenation is already turned off globally (that is, if + man.hyphenate is zero, setting + man.hyphenate.urls is not necessary. + + +If man.hyphenate.urls is non-zero, URLs +will not be treated specially and are subject to hyphenation just like +other words. + + + If you are thinking about setting a non-zero value for + man.hyphenate.urls in order to make long + URLs break across lines, you'd probably be better off + experimenting with setting the + man.break.after.slash parameter first. That + will cause long URLs to be broken after slashes. + + + + + + + +man.hyphenate.filenames +boolean + + +man.hyphenate.filenames +Hyphenate filenames? + + + + +<xsl:param name="man.hyphenate.filenames">0</xsl:param> + + +Description + +If zero (the default), hyphenation is suppressed for +filename output. + + + If hyphenation is already turned off globally (that is, if + man.hyphenate is zero, setting + man.hyphenate.filenames is not + necessary. + + +If man.hyphenate.filenames is non-zero, +filenames will not be treated specially and are subject to hyphenation +just like other words. + + + If you are thinking about setting a non-zero value for + man.hyphenate.filenames in order to make long + filenames/pathnames break across lines, you'd probably be better off + experimenting with setting the + man.break.after.slash parameter first. That + will cause long pathnames to be broken after slashes. + + + + + + + +man.hyphenate.computer.inlines +boolean + + +man.hyphenate.computer.inlines +Hyphenate computer inlines? + + + + +<xsl:param name="man.hyphenate.computer.inlines">0</xsl:param> + + +Description + +If zero (the default), hyphenation is suppressed for +computer inlines such as environment variables, +constants, etc. This parameter current affects output of the following +elements: + + + classname + constant + envar + errorcode + option + replaceable + userinput + type + varname + + + + + If hyphenation is already turned off globally (that is, if + man.hyphenate is zero, setting the + man.hyphenate.computer.inlines is not + necessary. + + +If man.hyphenate.computer.inlines is +non-zero, computer inlines will not be treated specially and will be +hyphenated like other words when needed. + + + + + + +man.justify +boolean + + +man.justify +Justify text to both right and left margins? + + + + +<xsl:param name="man.justify">0</xsl:param> + + +Description + +If non-zero, text is justified to both the right and left +margins (or, in roff terminology, "adjusted and filled" to both the +right and left margins). If zero (the default), text is adjusted to +the left margin only -- producing what is traditionally called +"ragged-right" text. + + +The default value for this parameter is zero because justified +text looks good only when it is also hyphenated. Without hyphenation, +excessive amounts of space often end up getting between words, in +order to "pad" lines out to align on the right margin. + +The problem is that groff is not particularly smart about how it +does hyphenation; it can end up hyphenating a lot of things that you +don't want hyphenated. So, disabling both justification and +hyphenation ensures that hyphens won't get inserted where you don't +want to them, and you don't end up with lines containing excessive +amounts of space between words. + +However, if do you decide to set a non-zero value for the +man.justify parameter (to enable +justification), then you should probably also set a non-zero value for +man.hyphenate (to enable hyphenation). + +Yes, these default settings run counter to how most existing man +pages are formatted. But there are some notable exceptions, such as +the perl man pages. + + + + + + +man.break.after.slash +boolean + + +man.break.after.slash +Enable line-breaking after slashes? + + + + +<xsl:param name="man.break.after.slash">0</xsl:param> + + +Description + +If non-zero, line-breaking after slashes is enabled. This is +mainly useful for causing long URLs or pathnames/filenames to be +broken up or "wrapped" across lines (though it also has the side +effect of sometimes causing relatively short URLs and pathnames to be +broken up across lines too). + +If zero (the default), line-breaking after slashes is +disabled. In that case, strings containing slashes (for example, URLs +or filenames) are not broken across lines, even if they exceed the +maximum column widith. + + + If you set a non-zero value for this parameter, check your + man-page output carefuly afterwards, in order to make sure that the + setting has not introduced an excessive amount of breaking-up of URLs + or pathnames. If your content contains mostly short URLs or + pathnames, setting a non-zero value for + man.break.after.slash will probably result in + in a significant number of relatively short URLs and pathnames being + broken across lines, which is probably not what you want. + + + + + +
    + + Indentation + + +man.indent.width +length + + +man.indent.width +Specifies width used for adjusted indents + + + + +<xsl:param name="man.indent.width">4</xsl:param> + + + +Description +The man.indent.width parameter specifies +the width used for adjusted indents. The value of +man.indent.width is used for indenting of +lists, verbatims, headings, and elsewhere, depending on whether the +values of certain man.indent.* boolean parameters +are non-zero. + +The value of man.indent.width should +include a valid roff measurement unit (for example, +n or u). The default value of +4n specifies a 4-en width; when viewed on a +console, that amounts to the width of four characters. For details +about roff measurment units, see the Measurements +node in the groff info page. + + + + + + +man.indent.refsect +boolean + + +man.indent.refsect +Adjust indentation of refsect* and refsection? + + + + +<xsl:param name="man.indent.refsect" select="0"></xsl:param> + + +Description + +If the value of man.indent.refsect is +non-zero, the width of the left margin for +refsect1, refsect2 and +refsect3 contents and titles (and first-level, +second-level, and third-level nested +refsectioninstances) is adjusted by the value of +the man.indent.width parameter. With +man.indent.width set to its default value of +3n, the main results are that: + + + + contents of refsect1 are output with a + left margin of three characters instead the roff default of seven + or eight characters + + + contents of refsect2 are displayed in + console output with a left margin of six characters instead the of + the roff default of seven characters + + + the contents of refsect3 and nested + refsection instances are adjusted + accordingly. + + + +If instead the value of man.indent.refsect is +zero, no margin adjustment is done for refsect* +output. + + + If your content is primarly comprised of + refsect1 and refsect2 content + (or the refsection equivalent) – with few or + no refsect3 or lower nested sections , you may be + able to “conserve” space in your output by setting + man.indent.refsect to a non-zero value. Doing + so will “squeeze” the left margin in such as way as to provide an + additional four characters of “room” per line in + refsect1 output. That extra room may be useful + if, for example, you have many verbatim sections with long lines in + them. + + + + + + + +man.indent.blurbs +boolean + + +man.indent.blurbs +Adjust indentation of blurbs? + + + + +<xsl:param name="man.indent.blurbs" select="1"></xsl:param> + + +Description + +If the value of man.indent.blurbs is +non-zero, the width of the left margin for +authorblurb, personblurb, and +contrib output is set to the value of the +man.indent.width parameter +(3n by default). If instead the value of +man.indent.blurbs is zero, the built-in roff +default width (7.2n) is used. + + + + + + +man.indent.lists +boolean + + +man.indent.lists +Adjust indentation of lists? + + + + +<xsl:param name="man.indent.lists" select="1"></xsl:param> + + +Description + +If the value of man.indent.lists is +non-zero, the width of the left margin for list items in +itemizedlist, +orderedlist, +variablelist output (and output of some other +lists) is set to the value of the +man.indent.width parameter +(4n by default). If instead the value of +man.indent.lists is zero, the built-in roff +default width (7.2n) is used. + + + + + + +man.indent.verbatims +boolean + + +man.indent.verbatims +Adjust indentation of verbatims? + + + + +<xsl:param name="man.indent.verbatims" select="1"></xsl:param> + + +Description + +If the value of man.indent.verbatims is +non-zero, the width of the left margin for output of verbatim +environments (programlisting, +screen, and so on) is set to the value of the +man.indent.width parameter +(3n by default). If instead the value of +man.indent.verbatims is zero, the built-in roff +default width (7.2n) is used. + + + + + + + Fonts + + +man.font.funcprototype +string + + +man.font.funcprototype +Specifies font for funcprototype output + + + + + <xsl:param name="man.font.funcprototype">BI</xsl:param> + + + +Description + +The man.font.funcprototype parameter +specifies the font for funcprototype output. It +should be a valid roff font name, such as BI or +B. + + + + + + +man.font.funcsynopsisinfo +string + + +man.font.funcsynopsisinfo +Specifies font for funcsynopsisinfo output + + + + + <xsl:param name="man.font.funcsynopsisinfo">B</xsl:param> + + + +Description + +The man.font.funcsynopsisinfo parameter +specifies the font for funcsynopsisinfo output. It +should be a valid roff font name, such as B or +I. + + + + + + +man.font.links +string + + +man.font.links +Specifies font for links + + + + +<xsl:param name="man.font.links">B</xsl:param> + + + +Description + +The man.font.links parameter +specifies the font for output of links (ulink instances +and any instances of any element with an xlink:href attribute). + +The value of man.font.links must be + either B or I, or empty. If +the value is empty, no font formatting is applied to links. + +If you set man.endnotes.are.numbered and/or +man.endnotes.list.enabled to zero (disabled), then +you should probably also set an empty value for +man.font.links. But if +man.endnotes.are.numbered is non-zero (enabled), +you should probably keep +man.font.links set to +B or IThe + main purpose of applying a font format to links in most output +formats it to indicate that the formatted text is +“clickable”; given that links rendered in man pages are +not “real” hyperlinks that users can click on, it might +seem like there is never a good reason to have font formatting for +link contents in man output. +In fact, if you suppress the +display of inline link references (by setting +man.endnotes.are.numbered to zero), there is no +good reason to apply font formatting to links. However, if +man.endnotes.are.numbered is non-zero, having +font formatting for links (arguably) serves a purpose: It provides +“context” information about exactly what part of the text +is being “annotated” by the link. Depending on how you +mark up your content, that context information may or may not +have value.. + + +Related Parameters + man.endnotes.list.enabled, + man.endnotes.are.numbered + + + + + + +man.font.table.headings +string + + +man.font.table.headings +Specifies font for table headings + + + + + <xsl:param name="man.font.table.headings">B</xsl:param> + + + +Description + +The man.font.table.headings parameter +specifies the font for table headings. It should be +a valid roff font, such as B or +I. + + + + + + +man.font.table.title +string + + +man.font.table.title +Specifies font for table headings + + + + + <xsl:param name="man.font.table.title">B</xsl:param> + + + +Description + +The man.font.table.title parameter +specifies the font for table titles. It should be +a valid roff font, such as B or +I. + + + + + + + SYNOPSIS section + + +man.funcsynopsis.style +list +ansi +kr + + +man.funcsynopsis.style +What style of funcsynopsis should be generated? + + +<xsl:param name="man.funcsynopsis.style">ansi</xsl:param> + +Description +If man.funcsynopsis.style is +ansi, ANSI-style function synopses are +generated for a funcsynopsis, otherwise K&R-style +function synopses are generated. + + + + + + AUTHORS and COPYRIGHT sections + + +man.authors.section.enabled +boolean + + +man.authors.section.enabled +Display auto-generated AUTHORS section? + + + +<xsl:param name="man.authors.section.enabled">1</xsl:param> + + +Description + +If the value of +man.authors.section.enabled is non-zero +(the default), then an AUTHORS section is +generated near the end of each man page. The output of the +AUTHORS section is assembled from any +author, editor, and othercredit +metadata found in the contents of the child info or +refentryinfo (if any) of the refentry +itself, or from any author, editor, and +othercredit metadata that may appear in info +contents of any ancestors of the refentry. + +If the value of +man.authors.section.enabled is zero, the +the auto-generated AUTHORS section is +suppressed. + +Set the value of + man.authors.section.enabled to zero if + you want to have a manually created AUTHORS + section in your source, and you want it to appear in output + instead of the auto-generated AUTHORS + section. + + + + + +man.copyright.section.enabled +boolean + + +man.copyright.section.enabled +Display auto-generated COPYRIGHT section? + + + +<xsl:param name="man.copyright.section.enabled">1</xsl:param> + + +Description + +If the value of +man.copyright.section.enabled is non-zero +(the default), then a COPYRIGHT section is +generated near the end of each man page. The output of the +COPYRIGHT section is assembled from any +copyright and legalnotice metadata found in +the contents of the child info or +refentryinfo (if any) of the refentry +itself, or from any copyright and +legalnotice metadata that may appear in info +contents of any ancestors of the refentry. + +If the value of +man.copyright.section.enabled is zero, the +the auto-generated COPYRIGHT section is +suppressed. + +Set the value of + man.copyright.section.enabled to zero if + you want to have a manually created COPYRIGHT + section in your source, and you want it to appear in output + instead of the auto-generated COPYRIGHT + section. + + + + + + Endnotes and link handling + + +man.endnotes.list.enabled +boolean + + +man.endnotes.list.enabled +Display endnotes list at end of man page? + + + + +<xsl:param name="man.endnotes.list.enabled">1</xsl:param> + + + +Description + +If the value of man.endnotes.list.enabled is +non-zero (the default), then an endnotes list is added to the end of +the output man page. + +If the value of man.endnotes.list.enabled is +zero, the list is suppressed — unless link numbering is enabled (that +is, if man.endnotes.are.numbered is non-zero), in +which case, that setting overrides the +man.endnotes.list.enabled setting, and the +endnotes list is still displayed. The reason is that inline +numbering of notesources associated with endnotes only makes sense +if a (numbered) list of endnotes is also generated. + + + Leaving + man.endnotes.list.enabled at its default + (non-zero) value ensures that no “out of line” information (such + as the URLs for hyperlinks and images) gets lost in your + man-page output. It just gets “rearranged”. + So if you’re thinking about disabling endnotes listing by + setting the value of + man.endnotes.list.enabled to zero: + Before you do so, first take some time to carefully consider + the information needs and experiences of your users. The “out + of line” information has value even if the presentation of it + in text output is not as interactive as it may be in other + output formats. + As far as the specific case of URLs: Even though the URLs + displayed in text output may not be “real” (clickable) + hyperlinks, many X terminals have convenience features for + recognizing URLs and can, for example, present users with + an options to open a URL in a browser with the user clicks on + the URL is a terminal window. And short of those, users with X + terminals can always manually cut and paste the URLs into a web + browser. + Also, note that various “man to html” tools, such as the + widely used man2html (VH-Man2html) + application, automatically mark up URLs with a@href markup + during conversion — resulting in “real” hyperlinks in HTML + output from those tools. + + +To “turn off” numbering of endnotes in the +endnotes list, set man.endnotes.are.numbered +to zero. The endnotes list will +still be displayed; it will just be displayed without the +numbersIt can still make sense to have +the list of endnotes displayed even if you have endnotes numbering turned +off. In that case, your endnotes list basically becomes a “list +of references” without any association with specific text in +your document. This is probably the best option if you find the inline +endnotes numbering obtrusive. Your users will still have access to all the “out of line” +such as URLs for hyperlinks. + + +The default heading for the endnotes list is +NOTES. To change that, set a non-empty +value for the man.endnotes.list.heading +parameter. + +In the case of notesources that are links: Along with the +URL for each link, the endnotes list includes the contents of the +link. The list thus includes only non-empty + +A “non-empty” link is one that looks like +this: <ulink url="http://docbook.sf.net/snapshot/xsl/doc/manpages/">manpages</ulink> +an “empty link” is on that looks like this: <ulink url="http://docbook.sf.net/snapshot/xsl/doc/manpages/"/> + links. + +Empty links are never included, and never numbered. They are simply +displayed inline, without any numbering. + +In addition, if there are multiple instances of links in a +refentry that have the same URL, the URL is listed only +once. The contents listed for that link in the endnotes list are +the contents of the first link which has that URL. + +If you disable endnotes listing, you should probably also set +man.links.are.underlined to zero (to disable +link underlining). + + + + + +man.endnotes.list.heading +string + + +man.endnotes.list.heading +Specifies an alternate name for endnotes list + + + + +<xsl:param name="man.endnotes.list.heading"></xsl:param> + + + +Description + +If the value of the +man.endnotes.are.numbered parameter +and/or the man.endnotes.list.enabled +parameter is non-zero (the defaults for both are non-zero), a +numbered list of endnotes is generated near the end of each man +page. The default heading for the list of endnotes is the +equivalent of the English word NOTES in +the current locale. To cause an alternate heading to be displayed, +set a non-empty value for the +man.endnotes.list.heading parameter — +for example, REFERENCES. + + + + + +man.endnotes.are.numbered +boolean + + +man.endnotes.are.numbered +Number endnotes? + + + + +<xsl:param name="man.endnotes.are.numbered">1</xsl:param> + + + +Description + +If the value of man.endnotes.are.numbered is +non-zero (the default), then for each non-empty +A “non-empty” notesource is one that looks like +this: <ulink url="http://docbook.sf.net/snapshot/xsl/doc/manpages/">manpages</ulink> +an “empty” notesource is on that looks like this: <ulink url="http://docbook.sf.net/snapshot/xsl/doc/manpages/"/> + “notesource”: + + + + a number (in square brackets) is displayed inline after the + rendered inline contents (if any) of the notesource + + + the contents of the notesource are included in a + numbered list of endnotes that is generated at the end of + each man page; the number for each endnote corresponds to + the inline number for the notesource with which it is + associated + + +The default heading for the list of endnotes is +NOTES. To output a different heading, set a value +for the man.endnotes.section.heading +parameter. + + + The endnotes list is also displayed (but without + numbers) if the value of + man.endnotes.list.enabled is + non-zero. + + + +If the value of man.endnotes.are.numbered is +zero, numbering of endnotess is suppressed; only inline +contents (if any) of the notesource are displayed inline. + + If you are thinking about disabling endnote numbering by setting + the value of man.endnotes.are.numbered to zero, + before you do so, first take some time to carefully + consider the information needs and experiences of your users. The + square-bracketed numbers displayed inline after notesources may seem + obstrusive and aesthetically unpleasingAs far as notesources that are links, ytou might + think it would be better to just display URLs for non-empty + links inline, after their content, rather than displaying + square-bracketed numbers all over the place. But it's not better. In + fact, it's not even practical, because many (most) URLs for links + are too long to be displayed inline. They end up overflowing the + right margin. You can set a non-zero value for + man.break.after.slash parameter to deal with + that, but it could be argued that what you end up with is at least + as ugly, and definitely more obstrusive, then having short + square-bracketed numbers displayed inline., + + but in a text-only output format, the + numbered-notesources/endnotes-listing mechanism is the only + practical way to handle this kind of content. + + Also, users of “text based” browsers such as + lynx will already be accustomed to seeing inline + numbers for links. And various "man to html" applications, such as + the widely used man2html (VH-Man2html) + application, can automatically turn URLs into "real" HTML hyperlinks + in output. So leaving man.endnotes.are.numbered + at its default (non-zero) value ensures that no information is + lost in your man-page output. It just gets + “rearranged”. + + +The handling of empty links is not affected by this +parameter. Empty links are handled simply by displaying their URLs +inline. Empty links are never auto-numbered. + +If you disable endnotes numbering, you should probably also set +man.font.links to an empty value (to +disable font formatting for links. + + +Related Parameters + man.endnotes.list.enabled, + man.font.links + + + + + + man.base.url.for.relative.links + string + + + man.base.url.for.relative.links + Specifies a base URL for relative links + + + + <xsl:param name="man.base.url.for.relative.links">[set $man.base.url.for.relative.links]/</xsl:param> + + + Description + + For any “notesource” listed in the auto-generated + “NOTES” section of output man pages (which is generated when + the value of the + man.endnotes.list.enabled parameter + is non-zero), if the notesource is a link source with a + relative URI, the URI is displayed in output with the value + of the + man.base.url.for.relative.links + parameter prepended to the value of the link URI. + + + A link source is an notesource that references an + external resource: + + + a ulink element with a url attribute + + + any element with an xlink:href attribute + + + an imagedata, audiodata, or + videodata element + + + + + + If you use relative URIs in link sources in your DocBook + refentry source, and you leave + man.base.url.for.relative.links + unset, the relative links will appear “as is” in the “Notes” + section of any man-page output generated from your source. + That’s probably not what you want, because such relative + links are only usable in the context of HTML output. So, to + make the links meaningful and usable in the context of + man-page output, set a value for + man.base.url.for.relative.links that + points to the online version of HTML output generated from + your DocBook refentry source. For + example: + <xsl:param name="man.base.url.for.relative.links" + >http://www.kernel.org/pub/software/scm/git/docs/</xsl:param> + + + + + Related Parameters + man.endnotes.list.enabled + + + + + + + Lists + + +man.segtitle.suppress +boolean + + +man.segtitle.suppress +Suppress display of segtitle contents? + + + + +<xsl:param name="man.segtitle.suppress" select="0"></xsl:param> + + +Description + +If the value of man.segtitle.suppress is +non-zero, then display of segtitle contents is +suppressed in output. + + + + + + + Character/string substitution + + +man.charmap.enabled +boolean + + +man.charmap.enabled +Apply character map before final output? + + + + +<xsl:param name="man.charmap.enabled" select="1"></xsl:param> + + + +Description + +If the value of the man.charmap.enabled +parameter is non-zero, a "character map" is used to substitute certain +Unicode symbols and special characters with appropriate roff/groff +equivalents, just before writing each man-page file to the +filesystem. If instead the value of +man.charmap.enabled is zero, Unicode characters +are passed through "as is". + +Details + +For converting certain Unicode symbols and special characters in +UTF-8 or UTF-16 encoded XML source to appropriate groff/roff +equivalents in man-page output, the DocBook XSL Stylesheets +distribution includes a roff character map that is compliant with the XSLT character +map format as detailed in the XSLT 2.0 specification. The map +contains more than 800 character mappings and can be considered the +standard roff character map for the distribution. + +You can use the man.charmap.uri +parameter to specify a URI for the location for an alternate roff +character map to use in place of the standard roff character map +provided in the distribution. + +You can also use a subset of a character map. For details, +see the man.charmap.use.subset, +man.charmap.subset.profile, and +man.charmap.subset.profile.english +parameters. + + + + + + + +man.charmap.uri +uri + + +man.charmap.uri +URI for custom roff character map + + + + +<xsl:param name="man.charmap.uri"></xsl:param> + + + +Description + +For converting certain Unicode symbols and special characters in +UTF-8 or UTF-16 encoded XML source to appropriate groff/roff +equivalents in man-page output, the DocBook XSL Stylesheets +distribution includes an XSLT character +map. That character map can be considered the standard roff +character map for the distribution. + +If the value of the man.charmap.uri +parameter is non-empty, that value is used as the URI for the location +for an alternate roff character map to use in place of the standard +roff character map provided in the distribution. + + +Do not set a value for man.charmap.uri +unless you have a custom roff character map that differs from the +standard one provided in the distribution. + + + + + + +man.charmap.use.subset +boolean + + +man.charmap.use.subset +Use subset of character map instead of full map? + + + + +<xsl:param name="man.charmap.use.subset" select="1"></xsl:param> + + + +Description + +If the value of the +man.charmap.use.subset parameter is non-zero, +a subset of the roff character map is used instead of the full roff +character map. The profile of the subset used is determined either +by the value of the +man.charmap.subset.profile +parameter (if the source is not in English) or the +man.charmap.subset.profile.english +parameter (if the source is in English). + + + You may want to experiment with setting a non-zero value of + man.charmap.use.subset, so that the full + character map is used. Depending on which XSLT engine you run, + setting a non-zero value for + man.charmap.use.subset may significantly + increase the time needed to process your documents. Or it may + not. For example, if you set it and run it with xsltproc, it seems + to dramatically increase processing time; on the other hand, if you + set it and run it with Saxon, it does not seem to increase + processing time nearly as much. + + If processing time is not a important concern and/or you can + tolerate the increase in processing time imposed by using the full + character map, set man.charmap.use.subset to + zero. + + +Details + +For converting certain Unicode symbols and special characters in +UTF-8 or UTF-16 encoded XML source to appropriate groff/roff +equivalents in man-page output, the DocBook XSL Stylesheets +distribution includes a roff character map that is compliant with the XSLT character +map format as detailed in the XSLT 2.0 specification. The map +contains more than 800 character mappings and can be considered the +standard roff character map for the distribution. + + +You can use the man.charmap.uri +parameter to specify a URI for the location for an alternate roff +character map to use in place of the standard roff character map +provided in the distribution. + + +Because it is not terrifically efficient to use the standard +800-character character map in full -- and for most (or all) users, +never necessary to use it in full -- the DocBook XSL Stylesheets +support a mechanism for using, within any given character map, a +subset of character mappings instead of the full set. You can use the +man.charmap.subset.profile or +man.charmap.subset.profile.english +parameter to tune the profile of that subset to use. + + + + + + + +man.charmap.subset.profile +string + + +man.charmap.subset.profile +Profile of character map subset + + + + +<xsl:param name="man.charmap.subset.profile"> +@*[local-name() = 'block'] = 'Miscellaneous Technical' or +(@*[local-name() = 'block'] = 'C1 Controls And Latin-1 Supplement (Latin-1 Supplement)' and + (@*[local-name() = 'class'] = 'symbols' or + @*[local-name() = 'class'] = 'letters') +) or +@*[local-name() = 'block'] = 'Latin Extended-A' +or +(@*[local-name() = 'block'] = 'General Punctuation' and + (@*[local-name() = 'class'] = 'spaces' or + @*[local-name() = 'class'] = 'dashes' or + @*[local-name() = 'class'] = 'quotes' or + @*[local-name() = 'class'] = 'bullets' + ) +) or +@*[local-name() = 'name'] = 'HORIZONTAL ELLIPSIS' or +@*[local-name() = 'name'] = 'WORD JOINER' or +@*[local-name() = 'name'] = 'SERVICE MARK' or +@*[local-name() = 'name'] = 'TRADE MARK SIGN' or +@*[local-name() = 'name'] = 'ZERO WIDTH NO-BREAK SPACE' +</xsl:param> + + + +Description + +If the value of the +man.charmap.use.subset parameter is non-zero, +and your DocBook source is not written in English (that + is, if the lang or xml:lang attribute on the root element + in your DocBook source or on the first refentry + element in your source has a value other than + en), then the character-map subset specified + by the man.charmap.subset.profile + parameter is used instead of the full roff character map. + +Otherwise, if the lang or xml:lang attribute on the root + element in your DocBook + source or on the first refentry element in your source + has the value en or if it has no lang or xml:lang attribute, then the character-map + subset specified by the + man.charmap.subset.profile.english + parameter is used instead of + man.charmap.subset.profile. + +The difference between the two subsets is that + man.charmap.subset.profile provides + mappings for characters in Western European languages that are + not part of the Roman (English) alphabet (ASCII character set). + +The value of man.charmap.subset.profile +is a string representing an XPath expression that matches attribute +names and values for output-character +elements in the character map. + +The attributes supported in the standard roff character map included in the distribution are: + + + character + + a raw Unicode character or numeric Unicode + character-entity value (either in decimal or hex); all + characters have this attribute + + + + name + + a standard full/long ISO/Unicode character name (e.g., + "OHM SIGN"); all characters have this attribute + + + + block + + a standard Unicode "block" name (e.g., "General + Punctuation"); all characters have this attribute. For the full + list of Unicode block names supported in the standard roff + character map, see . + + + + class + + a class of characters (e.g., "spaces"). Not all + characters have this attribute; currently, it is used only with + certain characters within the "C1 Controls And Latin-1 + Supplement" and "General Punctuation" blocks. For details, see + . + + + + entity + + an ISO entity name (e.g., "ohm"); not all characters + have this attribute, because not all characters have ISO entity + names; for example, of the 800 or so characters in the standard + roff character map included in the distribution, only around 300 + have ISO entity names. + + + + + string + + a string representing an roff/groff escape-code (with + "@esc@" used in place of the backslash), or a simple ASCII + string; all characters in the roff character map have this + attribute + + + + +The value of man.charmap.subset.profile +is evaluated as an XPath expression at run-time to select a portion of +the roff character map to use. You can tune the subset used by adding +or removing parts. For example, if you need to use a wide range of +mathematical operators in a document, and you want to have them +converted into roff markup properly, you might add the following: + + @*[local-name() = 'block'] ='MathematicalOperators' + +That will cause a additional set of around 67 additional "math" +characters to be converted into roff markup. + + +Depending on which XSLT engine you use, either the EXSLT +dyn:evaluate extension function (for xsltproc or +Xalan) or saxon:evaluate extension function (for +Saxon) are used to dynamically evaluate the value of +man.charmap.subset.profile at run-time. If you +don't use xsltproc, Saxon, Xalan -- or some other XSLT engine that +supports dyn:evaluate -- you must either set the +value of the man.charmap.use.subset parameter +to zero and process your documents using the full character map +instead, or set the value of the +man.charmap.enabled parameter to zero instead +(so that character-map processing is disabled completely. + + +An alternative to using +man.charmap.subset.profile is to create your +own custom character map, and set the value of +man.charmap.uri to the URI/filename for +that. If you use a custom character map, you will probably want to +include in it just the characters you want to use, and so you will +most likely also want to set the value of +man.charmap.use.subset to zero. +You can create a +custom character map by making a copy of the standard roff character map provided in the distribution, and +then adding to, changing, and/or deleting from that. + + +If you author your DocBook XML source in UTF-8 or UTF-16 +encoding and aren't sure what OSes or environments your man-page +output might end up being viewed on, and not sure what version of +nroff/groff those environments might have, you should be careful about +what Unicode symbols and special characters you use in your source and +what parts you add to the value of +man.charmap.subset.profile. +Many of the escape codes used are specific to groff and using +them may not provide the expected output on an OS or environment that +uses nroff instead of groff. +On the other hand, if you intend for your man-page output to be +viewed only on modern systems (for example, GNU/Linux systems, FreeBSD +systems, or Cygwin environments) that have a good, up-to-date groff, +then you can safely include a wide range of Unicode symbols and +special characters in your UTF-8 or UTF-16 encoded DocBook XML source +and add any of the supported Unicode block names to the value of +man.charmap.subset.profile. + + + +For other details, see the documentation for the +man.charmap.use.subset parameter. + +Supported Unicode block names and "class" values + + + Below is the full list of Unicode block names and "class" + values supported in the standard roff stylesheet provided in the + distribution, along with a description of which codepoints from the + Unicode range corresponding to that block name or block/class + combination are supported. + + + + C1 Controls And Latin-1 Supplement (Latin-1 Supplement) (x00a0 to x00ff) + class values + + + symbols + + + letters + + + + + Latin Extended-A (x0100 to x017f, partial) + + + Spacing Modifier Letters (x02b0 to x02ee, partial) + + + Greek and Coptic (x0370 to x03ff, partial) + + + General Punctuation (x2000 to x206f, partial) + class values + + + spaces + + + dashes + + + quotes + + + daggers + + + bullets + + + leaders + + + primes + + + + + + Superscripts and Subscripts (x2070 to x209f) + + + Currency Symbols (x20a0 to x20b1) + + + Letterlike Symbols (x2100 to x214b) + + + Number Forms (x2150 to x218f) + + + Arrows (x2190 to x21ff, partial) + + + Mathematical Operators (x2200 to x22ff, partial) + + + Control Pictures (x2400 to x243f) + + + Enclosed Alphanumerics (x2460 to x24ff) + + + Geometric Shapes (x25a0 to x25f7, partial) + + + Miscellaneous Symbols (x2600 to x26ff, partial) + + + Dingbats (x2700 to x27be, partial) + + + Alphabetic Presentation Forms (xfb00 to xfb04 only) + + + + + + + + +man.charmap.subset.profile.english +string + + +man.charmap.subset.profile.english +Profile of character map subset + + + + +<xsl:param name="man.charmap.subset.profile.english"> +@*[local-name() = 'block'] = 'Miscellaneous Technical' or +(@*[local-name() = 'block'] = 'C1 Controls And Latin-1 Supplement (Latin-1 Supplement)' and + @*[local-name() = 'class'] = 'symbols') +or +(@*[local-name() = 'block'] = 'General Punctuation' and + (@*[local-name() = 'class'] = 'spaces' or + @*[local-name() = 'class'] = 'dashes' or + @*[local-name() = 'class'] = 'quotes' or + @*[local-name() = 'class'] = 'bullets' + ) +) or +@*[local-name() = 'name'] = 'HORIZONTAL ELLIPSIS' or +@*[local-name() = 'name'] = 'WORD JOINER' or +@*[local-name() = 'name'] = 'SERVICE MARK' or +@*[local-name() = 'name'] = 'TRADE MARK SIGN' or +@*[local-name() = 'name'] = 'ZERO WIDTH NO-BREAK SPACE' +</xsl:param> + + + +Description + +If the value of the + man.charmap.use.subset parameter is + non-zero, and your DocBook source is written in English (that + is, if its lang or xml:lang attribute on the root element + in your DocBook source or on the first refentry + element in your source has the value en or if + it has no lang or xml:lang attribute), then the + character-map subset specified by the + man.charmap.subset.profile.english + parameter is used instead of the full roff character map. + +Otherwise, if the lang or xml:lang attribute + on the root element in your DocBook source or on the first + refentry element in your source has a value other + than en, then the character-map subset + specified by the + man.charmap.subset.profile parameter is + used instead of + man.charmap.subset.profile.english. + +The difference between the two subsets is that + man.charmap.subset.profile provides + mappings for characters in Western European languages that are + not part of the Roman (English) alphabet (ASCII character set). + +The value of man.charmap.subset.profile.english +is a string representing an XPath expression that matches attribute +names and values for output-character elements in the character map. + +For other details, see the documentation for the +man.charmap.subset.profile.english and +man.charmap.use.subset parameters. + + + + + + +man.string.subst.map.local.pre +string + + +man.string.subst.map.local.pre +Specifies “local” string substitutions + + + + + <xsl:param name="man.string.subst.map.local.pre"></xsl:param> + + + +Description + +Use the man.string.subst.map.local.pre +parameter to specify any “local” string substitutions to perform over +the entire roff source for each man page before +performing the string substitutions specified by the man.string.subst.map parameter. + +For details about the format of this parameter, see the +documentation for the man.string.subst.map +parameter. + + + + + + +man.string.subst.map +rtf + + +man.string.subst.map +Specifies a set of string substitutions + + + + +<xsl:param name="man.string.subst.map"> + + <!-- * remove no-break marker at beginning of line (stylesheet artifact) --> + <ss:substitution oldstring="▒▀" newstring="▒"></ss:substitution> + <!-- * replace U+2580 no-break marker (stylesheet-added) w/ no-break space --> + <ss:substitution oldstring="▀" newstring="\ "></ss:substitution> + + <!-- ==================================================================== --> + + <!-- * squeeze multiple newlines before a roff request --> + <ss:substitution oldstring=" + +." newstring=" +."></ss:substitution> + <!-- * remove any .sp instances that directly precede a .PP --> + <ss:substitution oldstring=".sp +.PP" newstring=".PP"></ss:substitution> + <!-- * remove any .sp instances that directly follow a .PP --> + <ss:substitution oldstring=".sp +.sp" newstring=".sp"></ss:substitution> + <!-- * squeeze multiple .sp instances into a single .sp--> + <ss:substitution oldstring=".PP +.sp" newstring=".PP"></ss:substitution> + <!-- * squeeze multiple newlines after start of no-fill (verbatim) env. --> + <ss:substitution oldstring=".nf + +" newstring=".nf +"></ss:substitution> + <!-- * squeeze multiple newlines after REstoring margin --> + <ss:substitution oldstring=".RE + +" newstring=".RE +"></ss:substitution> + <!-- * U+2591 is a marker we add before and after every Parameter in --> + <!-- * Funcprototype output --> + <ss:substitution oldstring="░" newstring=" "></ss:substitution> + <!-- * U+2592 is a marker we add for the newline before output of <sbr>; --> + <ss:substitution oldstring="▒" newstring=" +"></ss:substitution> + <!-- * --> + <!-- * Now deal with some other characters that are added by the --> + <!-- * stylesheets during processing. --> + <!-- * --> + <!-- * bullet --> + <ss:substitution oldstring="•" newstring="\(bu"></ss:substitution> + <!-- * left double quote --> + <ss:substitution oldstring="“" newstring="\(lq"></ss:substitution> + <!-- * right double quote --> + <ss:substitution oldstring="”" newstring="\(rq"></ss:substitution> + <!-- * left single quote --> + <ss:substitution oldstring="‘" newstring="\(oq"></ss:substitution> + <!-- * right single quote --> + <ss:substitution oldstring="’" newstring="\(cq"></ss:substitution> + <!-- * copyright sign --> + <ss:substitution oldstring="©" newstring="\(co"></ss:substitution> + <!-- * registered sign --> + <ss:substitution oldstring="®" newstring="\(rg"></ss:substitution> + <!-- * ...servicemark... --> + <!-- * There is no groff equivalent for it. --> + <ss:substitution oldstring="℠" newstring="(SM)"></ss:substitution> + <!-- * ...trademark... --> + <!-- * We don't do "\(tm" because for console output, --> + <!-- * groff just renders that as "tm"; that is: --> + <!-- * --> + <!-- * Product&#x2122; -> Producttm --> + <!-- * --> + <!-- * So we just make it to "(TM)" instead; thus: --> + <!-- * --> + <!-- * Product&#x2122; -> Product(TM) --> + <ss:substitution oldstring="™" newstring="(TM)"></ss:substitution> + +</xsl:param> + + + +Description + +The man.string.subst.map parameter +contains a map that specifies a set of +string substitutions to perform over the entire roff source for each +man page, either just before generating final man-page output (that +is, before writing man-page files to disk) or, if the value of the +man.charmap.enabled parameter is non-zero, +before applying the roff character map. + +You can use man.string.subst.map as a +“lightweight” character map to perform “essential” substitutions -- +that is, substitutions that are always performed, +even if the value of the man.charmap.enabled +parameter is zero. For example, you can use it to replace quotation +marks or other special characters that are generated by the DocBook +XSL stylesheets for a particular locale setting (as opposed to those +characters that are actually in source XML documents), or to replace +any special characters that may be automatically generated by a +particular customization of the DocBook XSL stylesheets. + + + Do you not change value of the + man.string.subst.map parameter unless you are + sure what you are doing. First consider adding your + string-substitution mappings to either or both of the following + parameters: + + + man.string.subst.map.local.pre + applied before + man.string.subst.map + + + man.string.subst.map.local.post + applied after + man.string.subst.map + + + By default, both of those parameters contain no + string substitutions. They are intended as a means for you to + specify your own local string-substitution mappings. + + If you remove any of default mappings from the value of the + man.string.subst.map parameter, you are + likely to end up with broken output. And be very careful about adding + anything to it; it’s used for doing string substitution over the + entire roff source of each man page – it causes target strings to be + replaced in roff requests and escapes, not just in the visible + contents of the page. + + + + + + Contents of the substitution map + + The string-substitution map contains one or more + ss:substitution elements, each of which has two + attributes: + + + oldstring + + string to replace + + + + newstring + + string with which to replace oldstring + + + + It may also include XML comments (that is, delimited with + "<!--" and "-->"). + + + + + + + + +man.string.subst.map.local.post +string + + +man.string.subst.map.local.post +Specifies “local” string substitutions + + + + +<xsl:param name="man.string.subst.map.local.post"></xsl:param> + + + +Description + +Use the man.string.subst.map.local.post +parameter to specify any “local” string substitutions to perform over +the entire roff source for each man page after +performing the string substitutions specified by the man.string.subst.map parameter. + +For details about the format of this parameter, see the +documentation for the man.string.subst.map +parameter. + + + + + + + Refentry metadata gathering + + +refentry.meta.get.quietly +boolean + + +refentry.meta.get.quietly +Suppress notes and warnings when gathering refentry metadata? + + + + +<xsl:param name="refentry.meta.get.quietly" select="0"></xsl:param> + + + +Description + +If zero (the default), notes and warnings about “missing” markup +are generated during gathering of refentry metadata. If non-zero, the +metadata is gathered “quietly” -- that is, the notes and warnings are +suppressed. + + + If you are processing a large amount of refentry + content, you may be able to speed up processing significantly by + setting a non-zero value for + refentry.meta.get.quietly. + + + + + + + +refentry.date.profile +string + + +refentry.date.profile +Specifies profile for refentry "date" data + + + + +<xsl:param name="refentry.date.profile"> + (($info[//date])[last()]/date)[1]| + (($info[//pubdate])[last()]/pubdate)[1] +</xsl:param> + + + +Description + +The value of refentry.date.profile is a +string representing an XPath expression. It is evaluated at run-time +and used only if refentry.date.profile.enabled +is non-zero. Otherwise, the refentry metadata-gathering +logic "hard coded" into the stylesheets is used. + + The man(7) man page describes this content +as "the date of the last revision". In man pages, it is the content +that is usually displayed in the center footer. + + + + + + +refentry.date.profile.enabled +boolean + + +refentry.date.profile.enabled +Enable refentry "date" profiling? + + + + +<xsl:param name="refentry.date.profile.enabled">0</xsl:param> + + +Description + +If the value of +refentry.date.profile.enabled is non-zero, then +during refentry metadata gathering, the info profile +specified by the customizable +refentry.date.profile parameter is used. + +If instead the value of +refentry.date.profile.enabled is zero (the +default), then "hard coded" logic within the DocBook XSL stylesheets +is used for gathering refentry "date" data. + +If you find that the default refentry +metadata-gathering behavior is causing incorrect "date" data to show +up in your output, then consider setting a non-zero value for +refentry.date.profile.enabled and adjusting the +value of refentry.date.profile to cause correct +data to be gathered. + +Note that the terms "source" and "date" have special meanings in +this context. For details, see the documentation for the +refentry.date.profile parameter. + + + + + + +refentry.manual.profile +string + + +refentry.manual.profile +Specifies profile for refentry "manual" data + + + + +<xsl:param name="refentry.manual.profile"> + (($info[//title])[last()]/title)[1]| + ../title/node() +</xsl:param> + + + +Description + +The value of refentry.manual.profile is +a string representing an XPath expression. It is evaluated at +run-time and used only if +refentry.manual.profile.enabled is +non-zero. Otherwise, the refentry metadata-gathering logic +"hard coded" into the stylesheets is used. + +In man pages, this content is usually displayed in the middle of +the header of the page. The man(7) man page +describes this as "the title of the manual (e.g., Linux +Programmer's Manual)". Here are some examples from +existing man pages: + + + dpkg utilities + (dpkg-name) + + + User Contributed Perl Documentation + (GET) + + + GNU Development Tools + (ld) + + + Emperor Norton Utilities + (ddate) + + + Debian GNU/Linux manual + (faked) + + + GIMP Manual Pages + (gimp) + + + KDOC Documentation System + (qt2kdoc) + + + + + + + + + +refentry.manual.profile.enabled +boolean + + +refentry.manual.profile.enabled +Enable refentry "manual" profiling? + + + + +<xsl:param name="refentry.manual.profile.enabled">0</xsl:param> + + +Description + +If the value of +refentry.manual.profile.enabled is +non-zero, then during refentry metadata gathering, the info +profile specified by the customizable +refentry.manual.profile parameter is +used. + +If instead the value of +refentry.manual.profile.enabled is zero (the +default), then "hard coded" logic within the DocBook XSL stylesheets +is used for gathering refentry "manual" data. + +If you find that the default refentry +metadata-gathering behavior is causing incorrect "manual" data to show +up in your output, then consider setting a non-zero value for +refentry.manual.profile.enabled and adjusting +the value of refentry.manual.profile to cause +correct data to be gathered. + +Note that the term "manual" has a special meanings in this +context. For details, see the documentation for the +refentry.manual.profile parameter. + + + + + + +refentry.source.name.suppress +boolean + + +refentry.source.name.suppress +Suppress "name" part of refentry "source" contents? + + + + +<xsl:param name="refentry.source.name.suppress">0</xsl:param> + + +Description + +If the value of +refentry.source.name.suppress is non-zero, then +during refentry metadata gathering, no "source name" data +is added to the refentry "source" contents. Instead (unless +refentry.version.suppress is also non-zero), +only "version" data is added to the "source" contents. + +If you find that the refentry metadata gathering +mechanism is causing unwanted "source name" data to show up in your +output -- for example, in the footer (or possibly header) of a man +page -- then you might consider setting a non-zero value for +refentry.source.name.suppress. + +Note that the terms "source", "source name", and "version" have +special meanings in this context. For details, see the documentation +for the refentry.source.name.profile +parameter. + + + + + + +refentry.source.name.profile +string + + +refentry.source.name.profile +Specifies profile for refentry "source name" data + + + + +<xsl:param name="refentry.source.name.profile"> + (($info[//productname])[last()]/productname)[1]| + (($info[//corpname])[last()]/corpname)[1]| + (($info[//corpcredit])[last()]/corpcredit)[1]| + (($info[//corpauthor])[last()]/corpauthor)[1]| + (($info[//orgname])[last()]/orgname)[1]| + (($info[//publishername])[last()]/publishername)[1] +</xsl:param> + + + +Description + +The value of refentry.source.name.profile +is a string representing an XPath expression. It is evaluated at +run-time and used only if +refentry.source.name.profile.enabled is +non-zero. Otherwise, the refentry metadata-gathering logic +"hard coded" into the stylesheets is used. + +A "source name" is one part of a (potentially) two-part +Name Version +"source" field. In man pages, it is usually displayed in the left +footer of the page. It typically indicates the software system or +product that the item documented in the man page belongs to. The +man(7) man page describes it as "the source of +the command", and provides the following examples: + + + For binaries, use something like: GNU, NET-2, SLS + Distribution, MCC Distribution. + + + For system calls, use the version of the kernel that you + are currently looking at: Linux 0.99.11. + + + For library calls, use the source of the function: GNU, BSD + 4.3, Linux DLL 4.4.1. + + + + +In practice, there are many pages that simply have a Version +number in the "source" field. So, it looks like what we have is a +two-part field, +Name Version, +where: + + + Name + + product name (e.g., BSD) or org. name (e.g., GNU) + + + + Version + + version number + + + +Each part is optional. If the Name is a +product name, then the Version is probably +the version of the product. Or there may be no +Name, in which case, if there is a +Version, it is probably the version +of the item itself, not the product it is part of. Or, if the +Name is an organization name, then there +probably will be no Version. + + + + + +refentry.source.name.profile.enabled +boolean + + +refentry.source.name.profile.enabled +Enable refentry "source name" profiling? + + + + +<xsl:param name="refentry.source.name.profile.enabled">0</xsl:param> + + +Description + +If the value of +refentry.source.name.profile.enabled is +non-zero, then during refentry metadata gathering, the info +profile specified by the customizable +refentry.source.name.profile parameter is +used. + +If instead the value of +refentry.source.name.profile.enabled is zero (the +default), then "hard coded" logic within the DocBook XSL stylesheets +is used for gathering refentry "source name" data. + +If you find that the default refentry +metadata-gathering behavior is causing incorrect "source name" data to +show up in your output, then consider setting a non-zero value for +refentry.source.name.profile.enabled and +adjusting the value of +refentry.source.name.profile to cause correct +data to be gathered. + +Note that the terms "source" and "source name" have special +meanings in this context. For details, see the documentation for the +refentry.source.name.profile parameter. + + + + + + +refentry.version.suppress +boolean + + +refentry.version.suppress +Suppress "version" part of refentry "source" contents? + + + + +<xsl:param name="refentry.version.suppress">0</xsl:param> + + +Description + +If the value of refentry.version.suppress +is non-zero, then during refentry metadata gathering, no +"version" data is added to the refentry "source" +contents. Instead (unless +refentry.source.name.suppress is also +non-zero), only "source name" data is added to the "source" +contents. + +If you find that the refentry metadata gathering +mechanism is causing unwanted "version" data to show up in your output +-- for example, in the footer (or possibly header) of a man page -- +then you might consider setting a non-zero value for +refentry.version.suppress. + +Note that the terms "source", "source name", and "version" have +special meanings in this context. For details, see the documentation +for the refentry.source.name.profile +parameter. + + + + + + +refentry.version.profile +string + + +refentry.version.profile +Specifies profile for refentry "version" data + + + + +<xsl:param name="refentry.version.profile"> + (($info[//productnumber])[last()]/productnumber)[1]| + (($info[//edition])[last()]/edition)[1]| + (($info[//releaseinfo])[last()]/releaseinfo)[1] +</xsl:param> + + + +Description + +The value of refentry.version.profile is +a string representing an XPath expression. It is evaluated at +run-time and used only if +refentry.version.profile.enabled is +non-zero. Otherwise, the refentry metadata-gathering logic +"hard coded" into the stylesheets is used. + +A "source.name" is one part of a (potentially) two-part +Name Version +"source" field. For more details, see the documentation for the +refentry.source.name.profile parameter. + + + + + + +refentry.version.profile.enabled +boolean + + +refentry.version.profile.enabled +Enable refentry "version" profiling? + + + + +<xsl:param name="refentry.version.profile.enabled">0</xsl:param> + + +Description + +If the value of +refentry.version.profile.enabled is +non-zero, then during refentry metadata gathering, the info +profile specified by the customizable +refentry.version.profile parameter is +used. + +If instead the value of +refentry.version.profile.enabled is zero (the +default), then "hard coded" logic within the DocBook XSL stylesheets +is used for gathering refentry "version" data. + +If you find that the default refentry +metadata-gathering behavior is causing incorrect "version" data to show +up in your output, then consider setting a non-zero value for +refentry.version.profile.enabled and adjusting +the value of refentry.version.profile to cause +correct data to be gathered. + +Note that the terms "source" and "version" have special +meanings in this context. For details, see the documentation for the +refentry.version.profile parameter. + + + + + + +refentry.manual.fallback.profile +string + + +refentry.manual.fallback.profile +Specifies profile of "fallback" for refentry "manual" data + + + + +<xsl:param name="refentry.manual.fallback.profile"> +refmeta/refmiscinfo[not(@class = 'date')][1]/node()</xsl:param> + + + +Description + +The value of +refentry.manual.fallback.profile is a string +representing an XPath expression. It is evaluated at run-time and +used only if no "manual" data can be found by other means (that is, +either using the refentry metadata-gathering logic "hard +coded" in the stylesheets, or the value of +refentry.manual.profile, if it is +enabled). + + +Depending on which XSLT engine you run, either the EXSLT +dyn:evaluate extension function (for xsltproc or +Xalan) or saxon:evaluate extension function (for +Saxon) are used to dynamically evaluate the value of +refentry.manual.fallback.profile at +run-time. If you don't use xsltproc, Saxon, Xalan -- or some other +XSLT engine that supports dyn:evaluate -- you +must manually disable fallback processing by setting an empty value +for the refentry.manual.fallback.profile +parameter. + + + + + + + +refentry.source.fallback.profile +string + + +refentry.source.fallback.profile +Specifies profile of "fallback" for refentry "source" data + + + + +<xsl:param name="refentry.source.fallback.profile"> +refmeta/refmiscinfo[not(@class = 'date')][1]/node()</xsl:param> + + + +Description + +The value of +refentry.source.fallback.profile is a string +representing an XPath expression. It is evaluated at run-time and used +only if no "source" data can be found by other means (that is, either +using the refentry metadata-gathering logic "hard coded" in +the stylesheets, or the value of the +refentry.source.name.profile and +refentry.version.profile parameters, if those +are enabled). + + +Depending on which XSLT engine you run, either the EXSLT +dyn:evaluate extension function (for xsltproc or +Xalan) or saxon:evaluate extension function (for +Saxon) are used to dynamically evaluate the value of +refentry.source.fallback.profile at +run-time. If you don't use xsltproc, Saxon, Xalan -- or some other +XSLT engine that supports dyn:evaluate -- you +must manually disable fallback processing by setting an empty value +for the refentry.source.fallback.profile +parameter. + + + + + + + + Page header/footer + + +man.th.extra1.suppress +boolean + + +man.th.extra1.suppress +Suppress extra1 part of header/footer? + + + + +<xsl:param name="man.th.extra1.suppress">0</xsl:param> + + +Description + +If the value of man.th.extra1.suppress is +non-zero, then the extra1 part of the +.TH title line header/footer is suppressed. + +The content of the extra1 field is almost +always displayed in the center footer of the page and is, universally, +a date. + + + + + + +man.th.extra2.suppress +boolean + + +man.th.extra2.suppress +Suppress extra2 part of header/footer? + + + + +<xsl:param name="man.th.extra2.suppress">0</xsl:param> + + +Description + +If the value of man.th.extra2.suppress is +non-zero, then the extra2 part of the +.TH title line header/footer is suppressed. + +The content of the extra2 field is usually +displayed in the left footer of the page and is typically "source" +data, often in the form +Name Version; +for example, "GTK+ 1.2" (from the gtk-options(7) +man page). + + + You can use the + refentry.source.name.suppress and + refentry.version.suppress parameters to + independently suppress the Name and + Version parts of the + extra2 field. + + + + + + + +man.th.extra3.suppress +boolean + + +man.th.extra3.suppress +Suppress extra3 part of header/footer? + + + + +<xsl:param name="man.th.extra3.suppress">0</xsl:param> + + +Description + +If the value of man.th.extra3.suppress is +non-zero, then the extra3 part of the +.TH title line header/footer is +suppressed. + +The content of the extra3 field is usually +displayed in the middle header of the page and is typically a "manual +name"; for example, "GTK+ User's Manual" (from the +gtk-options(7) man page). + + + + + + +man.th.title.max.length +integer + + +man.th.title.max.length +Maximum length of title in header/footer + + + + +<xsl:param name="man.th.title.max.length">20</xsl:param> + + + +Description + +Specifies the maximum permitted length of the title part of the +man-page .TH title line header/footer. If the title +exceeds the maxiumum specified, it is truncated down to the maximum +permitted length. + +Details + + +Every man page generated using the DocBook stylesheets has a +title line, specified using the TH roff +macro. Within that title line, there is always, at a minimum, a title, +followed by a section value (representing a man "section" -- usually +just a number). + +The title and section are displayed, together, in the visible +header of each page. Where in the header they are displayed depends on +OS the man page is viewed on, and on what version of nroff/groff/man +is used for viewing the page. But, at a minimum and across all +systems, the title and section are displayed on the right-hand column +of the header. On many systems -- those with a modern groff, including +Linux systems -- they are displayed twice: both in the left and right +columns of the header. + +So if the length of the title exceeds a certain percentage of +the column width in which the page is viewed, the left and right +titles can end up overlapping, making them unreadable, or breaking to +another line, which doesn't look particularly good. + +So the stylesheets provide the +man.th.title.max.length parameter as a means +for truncating titles that exceed the maximum length that can be +viewing properly in a page header. + +The default value is reasonable but somewhat arbitrary. If you +have pages with long titles, you may want to experiment with changing +the value in order to achieve the correct aesthetic results. + + + + + + + +man.th.extra2.max.length +integer + + +man.th.extra2.max.length +Maximum length of extra2 in header/footer + + + + +<xsl:param name="man.th.extra2.max.length">30</xsl:param> + + + +Description + +Specifies the maximum permitted length of the +extra2 part of the man-page part of the +.TH title line header/footer. If the +extra2 content exceeds the maxiumum specified, it +is truncated down to the maximum permitted length. + +The content of the extra2 field is usually +displayed in the left footer of the page and is typically "source" +data indicating the software system or product that the item +documented in the man page belongs to, often in the form +Name Version; +for example, "GTK+ 1.2" (from the gtk-options(7) +man page). + +The default value for this parameter is reasonable but somewhat +arbitrary. If you are processing pages with long "source" information, +you may want to experiment with changing the value in order to achieve +the correct aesthetic results. + + + + + +man.th.extra3.max.length +integer + + +man.th.extra3.max.length +Maximum length of extra3 in header/footer + + + + +<xsl:param name="man.th.extra3.max.length">30</xsl:param> + + + +Description + +Specifies the maximum permitted length of the +extra3 part of the man-page .TH +title line header/footer. If the extra3 content +exceeds the maxiumum specified, it is truncated down to the maximum +permitted length. + +The content of the extra3 field is usually +displayed in the middle header of the page and is typically a "manual +name"; for example, "GTK+ User's Manual" (from the +gtk-options(7) man page). + +The default value for this parameter is reasonable but somewhat +arbitrary. If you are processing pages with long "manual names" -- or +especially if you are processing pages that have both long "title" +parts (command/function, etc. names) and long +manual names -- you may want to experiment with changing the value in +order to achieve the correct aesthetic results. + + + + + + Output + + + man.output.manifest.enabled + boolean + + + man.output.manifest.enabled + Generate a manifest file? + + + + <xsl:param name="man.output.manifest.enabled" select="0"></xsl:param> + + + Description + + If non-zero, a list of filenames for man pages generated by + the stylesheet transformation is written to the file named by the + man.output.manifest.filename parameter. + + + + + + + man.output.manifest.filename + string + + + man.output.manifest.filename + Name of manifest file + + + + <xsl:param name="man.output.manifest.filename">MAN.MANIFEST</xsl:param> + + + Description + + The man.output.manifest.filename parameter + specifies the name of the file to which the manpages manifest file + is written (if the value of the + man.output.manifest.enabled parameter is + non-zero). + + + + + + +man.output.in.separate.dir +boolean + + +man.output.in.separate.dir +Output man-page files in separate output directory? + + + + +<xsl:param name="man.output.in.separate.dir" select="0"></xsl:param> + + + +Description + +If the value of man.output.in.separate.dir +parameter is non-zero, man-page files are output in a separate +directory, specified by the man.output.base.dir +parameter; otherwise, if the value of +man.output.in.separate.dir is zero, man-page files +are not output in a separate directory. + + + + + + +man.output.lang.in.name.enabled +boolean + + +man.output.lang.in.name.enabled +Include $LANG value in man-page filename/pathname? + + + + +<xsl:param name="man.output.lang.in.name.enabled" select="0"></xsl:param> + + + +Description + + The man.output.lang.in.name.enabled + parameter specifies whether a $lang value is + included in man-page filenames and pathnames. + + If the value of + man.output.lang.in.name.enabled is non-zero, + man-page files are output with the $lang value + included in their filenames or pathnames as follows; + + + + if man.output.subdirs.enabled is + non-zero, each file is output to, e.g., a + man/$lang/man8/foo.8 + pathname + + + if man.output.subdirs.enabled is + zero, each file is output with a + foo.$lang.8 + filename + + + + + + + + + +man.output.base.dir +uri + + +man.output.base.dir +Specifies separate output directory + + + +<xsl:param name="man.output.base.dir">man/</xsl:param> + + +Description + +The man.output.base.dir parameter +specifies the base directory into which man-page files are output. The +man.output.subdirs.enabled parameter controls +whether the files are output in subdirectories within the base +directory. + + + The values of the man.output.base.dir + and man.output.subdirs.enabled parameters are + used only if the value of + man.output.in.separate.dir parameter is + non-zero. If the value of the + man.output.in.separate.dir is zero, man-page + files are not output in a separate directory. + + + + + + + +man.output.subdirs.enabled +boolean + + +man.output.subdirs.enabled +Output man-page files in subdirectories within base output directory? + + + + +<xsl:param name="man.output.subdirs.enabled" select="1"></xsl:param> + + + +Description + +The man.output.subdirs.enabled parameter +controls whether man-pages files are output in subdirectories within +the base directory specified by the directory specified by the +man.output.base.dir parameter. + + + The values of the man.output.base.dir + and man.output.subdirs.enabled parameters are + used only if the value of + man.output.in.separate.dir parameter is + non-zero. If the value of the + man.output.in.separate.dir is zero, man-page + files are not output in a separate directory. + + + + + + + +man.output.quietly +boolean + + +man.output.quietly +Suppress filename messages emitted when generating output? + + + + +<xsl:param name="man.output.quietly" select="0"></xsl:param> + + + +Description + +If zero (the default), for each man-page file created, a message +with the name of the file is emitted. If non-zero, the files are +output "quietly" -- that is, the filename messages are +suppressed. + + + If you are processing a large amount of refentry + content, you may be able to speed up processing significantly by + setting a non-zero value for + man.output.quietly. + + + + + + + +man.output.encoding +string + + +man.output.encoding +Encoding used for man-page output + + + + +<xsl:param name="man.output.encoding">UTF-8</xsl:param> + + + +Description + +This parameter specifies the encoding to use for files generated +by the manpages stylesheet. Not all processors support specification +of this parameter. + + + If the value of the man.charmap.enabled + parameter is non-zero (the default), keeping the + man.output.encoding parameter at its default + value (UTF-8) or setting it to + UTF-16 does not cause your + man pages to be output in raw UTF-8 or UTF-16 -- because + any Unicode characters for which matches are found in the enabled + character map will be replaced with roff escape sequences before the + final man-page files are generated. + + So if you want to generate "real" UTF-8 man pages, without any + character substitution being performed on your content, you need to + set man.charmap.enabled to zero (which will + completely disable character-map processing). + + You may also need to set + man.charmap.enabled to zero if you want to + output man pages in an encoding other than UTF-8 + or UTF-16. Character-map processing is based on + Unicode character values and may not work with other output + encodings. + + + + + + + +man.output.better.ps.enabled +boolean + + +man.output.better.ps.enabled +Enable enhanced print/PostScript output? + + + +<xsl:param name="man.output.better.ps.enabled">0</xsl:param> + + +Description + +If the value of the +man.output.better.ps.enabled parameter is +non-zero, certain markup is embedded in each generated man page +such that PostScript output from the man -Tps +command for that page will include a number of enhancements +designed to improve the quality of that output. + +If man.output.better.ps.enabled is +zero (the default), no such markup is embedded in generated man +pages, and no enhancements are included in the PostScript +output generated from those man pages by the man + -Tps command. + + + The enhancements provided by this parameter rely on + features that are specific to groff (GNU troff) and that are + not part of “classic” AT&T troff or any of its + derivatives. Therefore, any man pages you generate with this + parameter enabled will be readable only on systems on which + the groff (GNU troff) program is installed, such as GNU/Linux + systems. The pages will not not be + readable on systems on with the classic troff (AT&T + troff) command is installed. + + +The value of this parameter only affects PostScript output + generated from the man command. It has no + effect on output generated using the FO backend. + + + You can generate PostScript output for any man page by + running the following command: + man FOO -Tps > FOO.ps + You can then generate PDF output by running the following + command: + ps2pdf FOO.ps + + + + + + + + Other + + +man.table.footnotes.divider +string + + +man.table.footnotes.divider +Specifies divider string that appears before table footnotes + + + + +<xsl:param name="man.table.footnotes.divider">----</xsl:param> + + + +Description + +In each table that contains footenotes, the string specified by +the man.table.footnotes.divider parameter is +output before the list of footnotes for the table. + + + + + + +man.subheading.divider.enabled +boolean + + +man.subheading.divider.enabled +Add divider comment to roff source before/after subheadings? + + + + +<xsl:param name="man.subheading.divider.enabled">0</xsl:param> + + + +Description + +If the value of the +man.subheading.divider.enabled parameter is +non-zero, the contents of the +man.subheading.divider parameter are used to +add a "divider" before and after subheadings in the roff +output. The divider is not visisble in the +rendered man page; it is added as a comment, in the source, +simply for the purpose of increasing reability of the source. + +If man.subheading.divider.enabled is zero +(the default), the subheading divider is suppressed. + + + + + + +man.subheading.divider +string + + +man.subheading.divider +Specifies string to use as divider comment before/after subheadings + + + + +<xsl:param name="man.subheading.divider">========================================================================</xsl:param> + + + +Description + +If the value of the +man.subheading.divider.enabled parameter is +non-zero, the contents of the +man.subheading.divider parameter are used to +add a "divider" before and after subheadings in the roff +output. The divider is not visisble in the +rendered man page; it is added as a comment, in the source, +simply for the purpose of increasing reability of the source. + +If man.subheading.divider.enabled is zero +(the default), the subheading divider is suppressed. + + + + + + + The Stylesheet + + The param.xsl stylesheet is just a + wrapper around all of these parameters. + + +<xsl:stylesheet exclude-result-prefixes="src" version="1.0"> + +<!-- This file is generated from param.xweb --> + +<!-- ******************************************************************** + $Id: param.xweb 8235 2009-02-09 16:22:14Z xmldoc $ + ******************************************************************** + + This file is part of the XSL DocBook Stylesheet distribution. + See ../README or http://docbook.sf.net/release/xsl/current/ for + copyright and other information. + + ******************************************************************** --> + +<src:fragref linkend="man.authors.section.enabled.frag"></src:fragref> +<src:fragref linkend="man.break.after.slash.frag"></src:fragref> +<src:fragref linkend="man.base.url.for.relative.links.frag"></src:fragref> +<src:fragref linkend="man.charmap.enabled.frag"></src:fragref> +<src:fragref linkend="man.charmap.subset.profile.frag"></src:fragref> +<src:fragref linkend="man.charmap.subset.profile.english.frag"></src:fragref> +<src:fragref linkend="man.charmap.uri.frag"></src:fragref> +<src:fragref linkend="man.charmap.use.subset.frag"></src:fragref> +<src:fragref linkend="man.copyright.section.enabled.frag"></src:fragref> +<src:fragref linkend="man.endnotes.are.numbered.frag"></src:fragref> +<src:fragref linkend="man.endnotes.list.enabled.frag"></src:fragref> +<src:fragref linkend="man.endnotes.list.heading.frag"></src:fragref> +<src:fragref linkend="man.font.funcprototype.frag"></src:fragref> +<src:fragref linkend="man.font.funcsynopsisinfo.frag"></src:fragref> +<src:fragref linkend="man.font.links.frag"></src:fragref> +<src:fragref linkend="man.font.table.headings.frag"></src:fragref> +<src:fragref linkend="man.font.table.title.frag"></src:fragref> +<src:fragref linkend="man.funcsynopsis.style.frag"></src:fragref> +<src:fragref linkend="man.hyphenate.computer.inlines.frag"></src:fragref> +<src:fragref linkend="man.hyphenate.filenames.frag"></src:fragref> +<src:fragref linkend="man.hyphenate.frag"></src:fragref> +<src:fragref linkend="man.hyphenate.urls.frag"></src:fragref> +<src:fragref linkend="man.indent.blurbs.frag"></src:fragref> +<src:fragref linkend="man.indent.lists.frag"></src:fragref> +<src:fragref linkend="man.indent.refsect.frag"></src:fragref> +<src:fragref linkend="man.indent.verbatims.frag"></src:fragref> +<src:fragref linkend="man.indent.width.frag"></src:fragref> +<src:fragref linkend="man.justify.frag"></src:fragref> +<src:fragref linkend="man.output.base.dir.frag"></src:fragref> +<src:fragref linkend="man.output.encoding.frag"></src:fragref> +<src:fragref linkend="man.output.in.separate.dir.frag"></src:fragref> +<src:fragref linkend="man.output.lang.in.name.enabled.frag"></src:fragref> +<src:fragref linkend="man.output.manifest.enabled.frag"></src:fragref> +<src:fragref linkend="man.output.manifest.filename.frag"></src:fragref> +<src:fragref linkend="man.output.better.ps.enabled.frag"></src:fragref> +<src:fragref linkend="man.output.quietly.frag"></src:fragref> +<src:fragref linkend="man.output.subdirs.enabled.frag"></src:fragref> +<src:fragref linkend="man.segtitle.suppress.frag"></src:fragref> +<src:fragref linkend="man.string.subst.map.frag"></src:fragref> +<src:fragref linkend="man.string.subst.map.local.post.frag"></src:fragref> +<src:fragref linkend="man.string.subst.map.local.pre.frag"></src:fragref> +<src:fragref linkend="man.subheading.divider.enabled.frag"></src:fragref> +<src:fragref linkend="man.subheading.divider.frag"></src:fragref> +<src:fragref linkend="man.table.footnotes.divider.frag"></src:fragref> +<src:fragref linkend="man.th.extra1.suppress.frag"></src:fragref> +<src:fragref linkend="man.th.extra2.max.length.frag"></src:fragref> +<src:fragref linkend="man.th.extra2.suppress.frag"></src:fragref> +<src:fragref linkend="man.th.extra3.max.length.frag"></src:fragref> +<src:fragref linkend="man.th.extra3.suppress.frag"></src:fragref> +<src:fragref linkend="man.th.title.max.length.frag"></src:fragref> +<src:fragref linkend="refentry.date.profile.enabled.frag"></src:fragref> +<src:fragref linkend="refentry.date.profile.frag"></src:fragref> +<src:fragref linkend="refentry.manual.fallback.profile.frag"></src:fragref> +<src:fragref linkend="refentry.manual.profile.enabled.frag"></src:fragref> +<src:fragref linkend="refentry.manual.profile.frag"></src:fragref> +<src:fragref linkend="refentry.meta.get.quietly.frag"></src:fragref> +<src:fragref linkend="refentry.source.fallback.profile.frag"></src:fragref> +<src:fragref linkend="refentry.source.name.profile.enabled.frag"></src:fragref> +<src:fragref linkend="refentry.source.name.profile.frag"></src:fragref> +<src:fragref linkend="refentry.source.name.suppress.frag"></src:fragref> +<src:fragref linkend="refentry.version.profile.enabled.frag"></src:fragref> +<src:fragref linkend="refentry.version.profile.frag"></src:fragref> +<src:fragref linkend="refentry.version.suppress.frag"></src:fragref> +</xsl:stylesheet> + + + +
    diff --git a/docbook-xsl-1.76.1/manpages/param.xsl b/docbook-xsl-1.76.1/manpages/param.xsl new file mode 100644 index 0000000..39d2059 --- /dev/null +++ b/docbook-xsl-1.76.1/manpages/param.xsl @@ -0,0 +1,193 @@ + + + + + + + +1 +0 +[set $man.base.url.for.relative.links]/ + + +@*[local-name() = 'block'] = 'Miscellaneous Technical' or +(@*[local-name() = 'block'] = 'C1 Controls And Latin-1 Supplement (Latin-1 Supplement)' and + (@*[local-name() = 'class'] = 'symbols' or + @*[local-name() = 'class'] = 'letters') +) or +@*[local-name() = 'block'] = 'Latin Extended-A' +or +(@*[local-name() = 'block'] = 'General Punctuation' and + (@*[local-name() = 'class'] = 'spaces' or + @*[local-name() = 'class'] = 'dashes' or + @*[local-name() = 'class'] = 'quotes' or + @*[local-name() = 'class'] = 'bullets' + ) +) or +@*[local-name() = 'name'] = 'HORIZONTAL ELLIPSIS' or +@*[local-name() = 'name'] = 'WORD JOINER' or +@*[local-name() = 'name'] = 'SERVICE MARK' or +@*[local-name() = 'name'] = 'TRADE MARK SIGN' or +@*[local-name() = 'name'] = 'ZERO WIDTH NO-BREAK SPACE' + + +@*[local-name() = 'block'] = 'Miscellaneous Technical' or +(@*[local-name() = 'block'] = 'C1 Controls And Latin-1 Supplement (Latin-1 Supplement)' and + @*[local-name() = 'class'] = 'symbols') +or +(@*[local-name() = 'block'] = 'General Punctuation' and + (@*[local-name() = 'class'] = 'spaces' or + @*[local-name() = 'class'] = 'dashes' or + @*[local-name() = 'class'] = 'quotes' or + @*[local-name() = 'class'] = 'bullets' + ) +) or +@*[local-name() = 'name'] = 'HORIZONTAL ELLIPSIS' or +@*[local-name() = 'name'] = 'WORD JOINER' or +@*[local-name() = 'name'] = 'SERVICE MARK' or +@*[local-name() = 'name'] = 'TRADE MARK SIGN' or +@*[local-name() = 'name'] = 'ZERO WIDTH NO-BREAK SPACE' + + + +1 +1 +1 + + BI + B +B + B + B +ansi +0 +0 +0 +0 + + + + +4 +0 +man/ +UTF-8 + + + +MAN.MANIFEST +0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +0 +======================================================================== +---- +0 +30 +0 +30 +0 +20 +0 + + (($info[//date])[last()]/date)[1]| + (($info[//pubdate])[last()]/pubdate)[1] + + +refmeta/refmiscinfo[not(@class = 'date')][1]/node() +0 + + (($info[//title])[last()]/title)[1]| + ../title/node() + + + +refmeta/refmiscinfo[not(@class = 'date')][1]/node() +0 + + (($info[//productname])[last()]/productname)[1]| + (($info[//corpname])[last()]/corpname)[1]| + (($info[//corpcredit])[last()]/corpcredit)[1]| + (($info[//corpauthor])[last()]/corpauthor)[1]| + (($info[//orgname])[last()]/orgname)[1]| + (($info[//publishername])[last()]/publishername)[1] + +0 +0 + + (($info[//productnumber])[last()]/productnumber)[1]| + (($info[//edition])[last()]/edition)[1]| + (($info[//releaseinfo])[last()]/releaseinfo)[1] + +0 + diff --git a/docbook-xsl-1.76.1/manpages/pi.xml b/docbook-xsl-1.76.1/manpages/pi.xml new file mode 100644 index 0000000..8db98d3 --- /dev/null +++ b/docbook-xsl-1.76.1/manpages/pi.xml @@ -0,0 +1,70 @@ + + +manpages Processing Instruction Reference + + $Id: pi.xsl 7644 2008-01-16 11:04:07Z xmldoc $ + + + + Introduction + +This is generated reference documentation for all + user-specifiable processing instructions (PIs) in the DocBook + XSL stylesheets for manpages output. + + +You add these PIs at particular points in a document to + cause specific “exceptions†to formatting/output behavior. To + make global changes in formatting/output behavior across an + entire document, it’s better to do it by setting an + appropriate stylesheet parameter (if there is one). + + + + + + + + +dbman_funcsynopsis-style +Specifies presentation style for a funcsynopsis. + + + + dbman funcsynopsis-style="kr"|"ansi" + + +Description + +Use the dbman + funcsynopsis-style PI as a child of a + funcsynopsis or anywhere within a funcsynopsis + to control the presentation style for output of all + funcprototype instances within that funcsynopsis. + + Parameters + + + funcsynopsis-style="kr" + + +Displays the funcprototype in K&R style + + + + funcsynopsis-style="ansi" + + +Displays the funcprototype in ANSI style + + + + + + Related Global Parameters + +man.funcsynopsis.style + + + + diff --git a/docbook-xsl-1.76.1/manpages/pi.xsl b/docbook-xsl-1.76.1/manpages/pi.xsl new file mode 100644 index 0000000..7b0975b --- /dev/null +++ b/docbook-xsl-1.76.1/manpages/pi.xsl @@ -0,0 +1,79 @@ + + + + + +manpages Processing Instruction Reference + + $Id: pi.xsl 7644 2008-01-16 11:04:07Z xmldoc $ + + + + Introduction + This is generated reference documentation for all + user-specifiable processing instructions (PIs) in the DocBook + XSL stylesheets for manpages output. + + You add these PIs at particular points in a document to + cause specific “exceptions†to formatting/output behavior. To + make global changes in formatting/output behavior across an + entire document, it’s better to do it by setting an + appropriate stylesheet parameter (if there is one). + + + + + + + + + Specifies presentation style for a funcsynopsis. + + Use the dbman + funcsynopsis-style PI as a child of a + funcsynopsis or anywhere within a funcsynopsis + to control the presentation style for output of all + funcprototype instances within that funcsynopsis. + + + dbman funcsynopsis-style="kr"|"ansi" + + + + funcsynopsis-style="kr" + + Displays the funcprototype in K&R style + + + funcsynopsis-style="ansi" + + Displays the funcprototype in ANSI style + + + + + + man.funcsynopsis.style + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/manpages/profile-docbook.xsl b/docbook-xsl-1.76.1/manpages/profile-docbook.xsl new file mode 100644 index 0000000..41b14c7 --- /dev/null +++ b/docbook-xsl-1.76.1/manpages/profile-docbook.xsl @@ -0,0 +1,281 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Note: namesp. cut : stripped namespace before processingNote: namesp. cut : processing stripped document + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + MAN.MANIFEST + + + + + + + + + + + Erro + + + no refentry + + + No refentry elements found + + in " + + + + ... + + + + + + " + + . + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + '\" t + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + .\" ----------------------------------------------------------------- + + .\" * MAIN CONTENT STARTS HERE * + + .\" ----------------------------------------------------------------- + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/manpages/refentry.xsl b/docbook-xsl-1.76.1/manpages/refentry.xsl new file mode 100644 index 0000000..4f6b5af --- /dev/null +++ b/docbook-xsl-1.76.1/manpages/refentry.xsl @@ -0,0 +1,319 @@ + + + + + + + + + + + + + .br + + + + + + + + + + + + + + + , + + + + + + + + + + + + + + + + + + + + + + + + + + + + \- + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + .SS " + + " + + + + + + .RS + + .RE + + + + + + + + + + + + + + + + + + + + + + + + .RS + + + + + + + .RE + + + + + + + + + + .ti (\n(SNu * 5u / 3u) + + + + + + + + + + + + + + + + + + + (\n(SNu) + + + + .RS (\n(SNu) + + .RE + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \c + + .SH-xref + " + + \c" + + \& + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/manpages/synop.xsl b/docbook-xsl-1.76.1/manpages/synop.xsl new file mode 100644 index 0000000..2e0b14e --- /dev/null +++ b/docbook-xsl-1.76.1/manpages/synop.xsl @@ -0,0 +1,432 @@ + + + + + + | + + + + + + + + + + + ( + + ) + + + + + + + + + + + + + + + + + + + + + + + + + .HP + \w' + ( + + ) + \ 'u + + ( + + ) + \ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + .br▒ + + + + + + .ad l + + + + .hy 0 + + + .HP + \w' + + + + + + + + + \ 'u + + + + + + + .ad + + + + .hy + + + + + + + + + + + + + + + + + + .ad l + + + + .hy 0 + + + + + .ad + + + + .hy + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + .HP + \w' + + + + + + + + + ('u + + . + + + + + + + + " + + ( + + + + + + + + + " + + + + + + + + + + + .sp + .RS + + + + + + + .RE + + + + + + + + + + + + + + ); + + + + ...); + + + + void); + + + + ...); + + + + + + + + + + + + + + + + , + + + ); + + + + + + + + + + + + , + + + ); + + + + + + + + .br + . + + + + + + + + " + + + + + ; + " + + + + + + + + + + + + + + "░" + + "░" + + + + ( + + ) + + + diff --git a/docbook-xsl-1.76.1/manpages/table.xsl b/docbook-xsl-1.76.1/manpages/table.xsl new file mode 100644 index 0000000..3d95051 --- /dev/null +++ b/docbook-xsl-1.76.1/manpages/table.xsl @@ -0,0 +1,633 @@ + + + + + + + : + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + allbox + + + + + + + + center + + + + + + + + expand + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    + + + + + + + +
    +
    + + + + + + + + + + + + + + + + + + .sp + + . + + + + *[nested▀table] + + + + + + + + .TS + + + H + + + + + + + + + + + tab( + + ) + + + + ; + + + + + + + + + + + + + + + + .TH + + + + + + + + + + + .T& + + + + + + + + + + + + + + + + + + + + + + .TE + + .sp 1 + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + T{ + + T} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Warn + + tbl convert + + Extracted a nested table + + + [\fInested▀table\fR]* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + . + + + + + + + + + + + + + + + + + + + + + + + ^ + + + c + + + r + + + n + + + + l + + + + + + + + t + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ^ + + + + s + + + + + + + + + + + + + + + + + + + + + + + + + + + + + .br + + + + + + + + + ftn. + + + + + + # + + + + + + [ + + ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    diff --git a/docbook-xsl-1.76.1/manpages/utility.xsl b/docbook-xsl-1.76.1/manpages/utility.xsl new file mode 100644 index 0000000..26a7513 --- /dev/null +++ b/docbook-xsl-1.76.1/manpages/utility.xsl @@ -0,0 +1,555 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \fB + + \fR + + + + + + + + + + + + + \fI + + \fR + + + + + + + + + + + + \FC + + + + + + \F[] + + + + + + + + .fam C + .ps -1 + + + + + + .fam + .ps +1 + + + + + + .fam C + + + + + + .fam + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \% + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + .sp + + .ps +1 + + + + + + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .br + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + .sp + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + .RS + + + + + + + + + + + + + + + + + + + + + .RE + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + .SH + + " + + + + + + + + + + + " + + + + + + + + + .\" + + + + + + + + + n + .ie + + \{\ + + + + n + .if + + \{\ + + + + .\} + .el \{\ + + + + .\} + + + diff --git a/docbook-xsl-1.76.1/params/abstract.notitle.enabled.xml b/docbook-xsl-1.76.1/params/abstract.notitle.enabled.xml new file mode 100644 index 0000000..1771f72 --- /dev/null +++ b/docbook-xsl-1.76.1/params/abstract.notitle.enabled.xml @@ -0,0 +1,22 @@ + + +abstract.notitle.enabled +boolean + + +abstract.notitle.enabled +Suppress display of abstract titles? + + + + +Description +If non-zero, in output of the abstract element on titlepages, +display of the abstract title is suppressed. + + diff --git a/docbook-xsl-1.76.1/params/abstract.properties.xml b/docbook-xsl-1.76.1/params/abstract.properties.xml new file mode 100644 index 0000000..e802312 --- /dev/null +++ b/docbook-xsl-1.76.1/params/abstract.properties.xml @@ -0,0 +1,32 @@ + + +abstract.properties +attribute set + + +abstract.properties +Properties associated with the block surrounding an abstract + + + + + + 0.0in + 0.0in + + + + +Description + +Block styling properties for abstract. + +See also abstract.title.properties. + + + diff --git a/docbook-xsl-1.76.1/params/abstract.title.properties.xml b/docbook-xsl-1.76.1/params/abstract.title.properties.xml new file mode 100644 index 0000000..d01f70c --- /dev/null +++ b/docbook-xsl-1.76.1/params/abstract.title.properties.xml @@ -0,0 +1,39 @@ + + +abstract.title.properties +attribute set + + +abstract.title.properties +Properties for abstract titles + + + + + + + bold + always + always + + + + false + center + + + + +Description + +The properties for abstract titles. + +See also abstract.properties. + + + diff --git a/docbook-xsl-1.76.1/params/active.toc.xml b/docbook-xsl-1.76.1/params/active.toc.xml new file mode 100644 index 0000000..f56aee1 --- /dev/null +++ b/docbook-xsl-1.76.1/params/active.toc.xml @@ -0,0 +1,29 @@ + + +active.toc +boolean + + +active.toc +Active ToCs? + + + + + + + + +Description + +If non-zero, JavaScript is used to keep the ToC and the current slide +in sync. That is, each time the slide changes, the corresponding +ToC entry will be underlined. + + + diff --git a/docbook-xsl-1.76.1/params/ade.extensions.xml b/docbook-xsl-1.76.1/params/ade.extensions.xml new file mode 100644 index 0000000..479591b --- /dev/null +++ b/docbook-xsl-1.76.1/params/ade.extensions.xml @@ -0,0 +1,32 @@ + + + + ade.extensions + boolean + + + ade.extensions + Enable Adobe Digitial Editions extensions for ePub rendering? + + + + + + + + + Description + + If non-zero, +Adobe Digital Editions +extensions will be used when rendering to ePub output. Adobe Digital Editions extensions consists +rendering and layout extensions. + This parameter can also affect which graphics file formats are supported. + + diff --git a/docbook-xsl-1.76.1/params/admon.graphics.extension.xml b/docbook-xsl-1.76.1/params/admon.graphics.extension.xml new file mode 100644 index 0000000..a7b47dd --- /dev/null +++ b/docbook-xsl-1.76.1/params/admon.graphics.extension.xml @@ -0,0 +1,27 @@ + + +admon.graphics.extension +string + + +admon.graphics.extension +Filename extension for admonition graphics + + + + +.png + + + +Description + +Sets the filename extension to use on admonition graphics. + + + diff --git a/docbook-xsl-1.76.1/params/admon.graphics.path.xml b/docbook-xsl-1.76.1/params/admon.graphics.path.xml new file mode 100644 index 0000000..32b12b1 --- /dev/null +++ b/docbook-xsl-1.76.1/params/admon.graphics.path.xml @@ -0,0 +1,27 @@ + + +admon.graphics.path +string + + +admon.graphics.path +Path to admonition graphics + + + +images/ + + +Description + +Sets the path to the directory containing the admonition graphics +(caution.png, important.png etc). This location is normally relative +to the output html directory. See base.dir + + + diff --git a/docbook-xsl-1.76.1/params/admon.graphics.xml b/docbook-xsl-1.76.1/params/admon.graphics.xml new file mode 100644 index 0000000..f5e5ae4 --- /dev/null +++ b/docbook-xsl-1.76.1/params/admon.graphics.xml @@ -0,0 +1,29 @@ + + +admon.graphics +boolean + + +admon.graphics +Use graphics in admonitions? + + + + + + + + +Description + +If true (non-zero), admonitions are presented in an alternate style that uses +a graphic. Default graphics are provided in the distribution. + + + + diff --git a/docbook-xsl-1.76.1/params/admon.style.xml b/docbook-xsl-1.76.1/params/admon.style.xml new file mode 100644 index 0000000..5abe022 --- /dev/null +++ b/docbook-xsl-1.76.1/params/admon.style.xml @@ -0,0 +1,31 @@ + + +admon.style +string + + +admon.style +Specifies the CSS style attribute that should be added to +admonitions. + + + + + + + + +Description + +Specifies the value of the CSS style +attribute that should be added to admonitions. + + + + diff --git a/docbook-xsl-1.76.1/params/admon.textlabel.xml b/docbook-xsl-1.76.1/params/admon.textlabel.xml new file mode 100644 index 0000000..ea1a53f --- /dev/null +++ b/docbook-xsl-1.76.1/params/admon.textlabel.xml @@ -0,0 +1,32 @@ + + +admon.textlabel +boolean + + +admon.textlabel +Use text label in admonitions? + + + + + + + + +Description + +If true (non-zero), admonitions are presented with a generated +text label such as Note or Warning in the appropriate language. +If zero, such labels are turned off, but any title child +of the admonition element are still output. +The default value is 1. + + + + diff --git a/docbook-xsl-1.76.1/params/admonition.properties.xml b/docbook-xsl-1.76.1/params/admonition.properties.xml new file mode 100644 index 0000000..4dddd26 --- /dev/null +++ b/docbook-xsl-1.76.1/params/admonition.properties.xml @@ -0,0 +1,25 @@ + + + admonition.properties + attribute set + + +admonition.properties +To set the style for admonitions. + + + + + + +Description +How do you want admonitions styled? +Set the font-size, weight, etc. to the style required + + + diff --git a/docbook-xsl-1.76.1/params/admonition.title.properties.xml b/docbook-xsl-1.76.1/params/admonition.title.properties.xml new file mode 100644 index 0000000..7af23e6 --- /dev/null +++ b/docbook-xsl-1.76.1/params/admonition.title.properties.xml @@ -0,0 +1,32 @@ + + + + admonition.title.properties + attribute set + + +admonition.title.properties +To set the style for admonitions titles. + + + + + + 14pt + bold + false + always + + + +Description +How do you want admonitions titles styled? +Set the font-size, weight etc to the style required. + + + diff --git a/docbook-xsl-1.76.1/params/alignment.xml b/docbook-xsl-1.76.1/params/alignment.xml new file mode 100644 index 0000000..9c0a3de --- /dev/null +++ b/docbook-xsl-1.76.1/params/alignment.xml @@ -0,0 +1,41 @@ + + +alignment + list + open + left + start + right + end + center + justify + + +alignment +Specify the default text alignment + + + +justify + + +Description + +The default text alignment is used for most body text. +Allowed values are +left, +right, +start, +end, +center, +justify. +The default value is justify. + + + + diff --git a/docbook-xsl-1.76.1/params/annotate.toc.xml b/docbook-xsl-1.76.1/params/annotate.toc.xml new file mode 100644 index 0000000..667fa32 --- /dev/null +++ b/docbook-xsl-1.76.1/params/annotate.toc.xml @@ -0,0 +1,28 @@ + + +annotate.toc +boolean + + +annotate.toc +Annotate the Table of Contents? + + + + + + +Description + +If true, TOCs will be annotated. At present, this just means +that the refpurpose of refentry +TOC entries will be displayed. + + + + diff --git a/docbook-xsl-1.76.1/params/annotation.css.xml b/docbook-xsl-1.76.1/params/annotation.css.xml new file mode 100644 index 0000000..560c56a --- /dev/null +++ b/docbook-xsl-1.76.1/params/annotation.css.xml @@ -0,0 +1,71 @@ + + +annotation.css +string + + +annotation.css +CSS rules for annotations + + + + + +/* ====================================================================== + Annotations +*/ + +div.annotation-list { visibility: hidden; + } + +div.annotation-nocss { position: absolute; + visibility: hidden; + } + +div.annotation-popup { position: absolute; + z-index: 4; + visibility: hidden; + padding: 0px; + margin: 2px; + border-style: solid; + border-width: 1px; + width: 200px; + background-color: white; + } + +div.annotation-title { padding: 1px; + font-weight: bold; + border-bottom-style: solid; + border-bottom-width: 1px; + color: white; + background-color: black; + } + +div.annotation-body { padding: 2px; + } + +div.annotation-body p { margin-top: 0px; + padding-top: 0px; + } + +div.annotation-close { position: absolute; + top: 2px; + right: 2px; + } + + + + +Description + +If annotation.support is enabled and the +document contains annotations, then the CSS in this +parameter will be included in the document. + + + diff --git a/docbook-xsl-1.76.1/params/annotation.graphic.close.xml b/docbook-xsl-1.76.1/params/annotation.graphic.close.xml new file mode 100644 index 0000000..002ebb4 --- /dev/null +++ b/docbook-xsl-1.76.1/params/annotation.graphic.close.xml @@ -0,0 +1,31 @@ + + +annotation.graphic.close +uri + + +annotation.graphic.close +Image for identifying a link that closes an annotation popup + + + + + +http://docbook.sourceforge.net/release/images/annot-close.png + + + +Description + +This image is used on popup annotations as the “x†that the +user can click to dismiss the popup. +This image is used on popup annotations as the “x†that the user can +click to dismiss the popup. It may be replaced by a user provided graphic. The size should be approximately 10x10 pixels. + + + diff --git a/docbook-xsl-1.76.1/params/annotation.graphic.open.xml b/docbook-xsl-1.76.1/params/annotation.graphic.open.xml new file mode 100644 index 0000000..c7d1c32 --- /dev/null +++ b/docbook-xsl-1.76.1/params/annotation.graphic.open.xml @@ -0,0 +1,28 @@ + + +annotation.graphic.open +uri + + +annotation.graphic.open +Image for identifying a link that opens an annotation popup + + + + +http://docbook.sourceforge.net/release/images/annot-open.png + + + +Description + +This image is used inline to identify the location of +annotations. It may be replaced by a user provided graphic. The size should be approximately 10x10 pixels. + + + diff --git a/docbook-xsl-1.76.1/params/annotation.js.xml b/docbook-xsl-1.76.1/params/annotation.js.xml new file mode 100644 index 0000000..6c7e97e --- /dev/null +++ b/docbook-xsl-1.76.1/params/annotation.js.xml @@ -0,0 +1,33 @@ + + +annotation.js +string + + +annotation.js +URIs identifying JavaScript files with support for annotation popups + + + + + + +http://docbook.sourceforge.net/release/script/AnchorPosition.js http://docbook.sourceforge.net/release/script/PopupWindow.js + + + + +Description + +If annotation.support is enabled and the +document contains annotations, then the URIs listed +in this parameter will be included. These JavaScript files are required +for popup annotation support. + + + diff --git a/docbook-xsl-1.76.1/params/annotation.support.xml b/docbook-xsl-1.76.1/params/annotation.support.xml new file mode 100644 index 0000000..29e7633 --- /dev/null +++ b/docbook-xsl-1.76.1/params/annotation.support.xml @@ -0,0 +1,29 @@ + + +annotation.support +boolean + + +annotation.support +Enable annotations? + + + + + + + + +Description + +If non-zero, the stylesheets will attempt to support annotation +elements in HTML by including some JavaScript (see +annotation.js). + + + diff --git a/docbook-xsl-1.76.1/params/appendix.autolabel.xml b/docbook-xsl-1.76.1/params/appendix.autolabel.xml new file mode 100644 index 0000000..bae38fa --- /dev/null +++ b/docbook-xsl-1.76.1/params/appendix.autolabel.xml @@ -0,0 +1,73 @@ + + +appendix.autolabel +list +0none +11,2,3... +AA,B,C... +aa,b,c... +ii,ii,iii... +II,II,III... + + +appendix.autolabel +Specifies the labeling format for Appendix titles + + + + +A + + + +Description + +If non-zero, then appendices will be numbered using the +parameter value as the number format if the value matches one of the +following: + + + + + 1 or arabic + + Arabic numeration (1, 2, 3 ...). + + + + A or upperalpha + + Uppercase letter numeration (A, B, C ...). + + + + a or loweralpha + + Lowercase letter numeration (a, b, c ...). + + + + I or upperroman + + Uppercase roman numeration (I, II, III ...). + + + + i or lowerroman + + Lowercase roman letter numeration (i, ii, iii ...). + + + + +Any nonzero value other than the above will generate +the default number format (upperalpha). + + + + diff --git a/docbook-xsl-1.76.1/params/arbortext.extensions.xml b/docbook-xsl-1.76.1/params/arbortext.extensions.xml new file mode 100644 index 0000000..2e571dd --- /dev/null +++ b/docbook-xsl-1.76.1/params/arbortext.extensions.xml @@ -0,0 +1,30 @@ + + +arbortext.extensions +boolean + + +arbortext.extensions +Enable Arbortext extensions? + + + + + + +Description + +If non-zero, +Arbortext +extensions will be used. + +This parameter can also affect which graphics file formats +are supported + + + diff --git a/docbook-xsl-1.76.1/params/article.appendix.title.properties.xml b/docbook-xsl-1.76.1/params/article.appendix.title.properties.xml new file mode 100644 index 0000000..61337a1 --- /dev/null +++ b/docbook-xsl-1.76.1/params/article.appendix.title.properties.xml @@ -0,0 +1,33 @@ + + +article.appendix.title.properties +attribute set + + +article.appendix.title.properties +Properties for appendix titles that appear in an article + + + + + + + + + + + + +Description + +The properties for the title of an appendix that +appears inside an article. The default is to use +the properties of sect1 titles. + + + diff --git a/docbook-xsl-1.76.1/params/author.othername.in.middle.xml b/docbook-xsl-1.76.1/params/author.othername.in.middle.xml new file mode 100644 index 0000000..4ad21dd --- /dev/null +++ b/docbook-xsl-1.76.1/params/author.othername.in.middle.xml @@ -0,0 +1,31 @@ + + +author.othername.in.middle +boolean + + +author.othername.in.middle +Is othername in author a +middle name? + + + + + + + +Description + +If non-zero, the othername of an author +appears between the firstname and +surname. Otherwise, othername +is suppressed. + + + + diff --git a/docbook-xsl-1.76.1/params/autolayout-file.xml b/docbook-xsl-1.76.1/params/autolayout-file.xml new file mode 100644 index 0000000..150f123 --- /dev/null +++ b/docbook-xsl-1.76.1/params/autolayout-file.xml @@ -0,0 +1,29 @@ + + +autolayout-file +filename + + +autolayout-file +Identifies the autolayout.xml file + + + + +autolayout.xml + + + +Description +When the source pages are spread over several directories, this +parameter can be set (for example, from the command line of a batch-mode +XSLT processor) to indicate the location of the autolayout.xml file. +FIXME: for browser-based use, there needs to be a PI for this... + + + diff --git a/docbook-xsl-1.76.1/params/autotoc.label.in.hyperlink.xml b/docbook-xsl-1.76.1/params/autotoc.label.in.hyperlink.xml new file mode 100644 index 0000000..dced0bd --- /dev/null +++ b/docbook-xsl-1.76.1/params/autotoc.label.in.hyperlink.xml @@ -0,0 +1,29 @@ + + +autotoc.label.in.hyperlink +boolean + + +autotoc.label.in.hyperlink +Include label in hyperlinked titles in TOC? + + + + + + +Description + +If the value of +autotoc.label.in.hyperlink is non-zero, labels +are included in hyperlinked titles in the TOC. If it is instead zero, +labels are still displayed prior to the hyperlinked titles, but +are not hyperlinked along with the titles. + + + diff --git a/docbook-xsl-1.76.1/params/autotoc.label.separator.xml b/docbook-xsl-1.76.1/params/autotoc.label.separator.xml new file mode 100644 index 0000000..b9cd53a --- /dev/null +++ b/docbook-xsl-1.76.1/params/autotoc.label.separator.xml @@ -0,0 +1,27 @@ + + +autotoc.label.separator +string + + +autotoc.label.separator +Separator between labels and titles in the ToC + + + + +. + + + +Description + +String used to separate labels and titles in a table of contents. + + + diff --git a/docbook-xsl-1.76.1/params/axf.extensions.xml b/docbook-xsl-1.76.1/params/axf.extensions.xml new file mode 100644 index 0000000..940a187 --- /dev/null +++ b/docbook-xsl-1.76.1/params/axf.extensions.xml @@ -0,0 +1,33 @@ + + +axf.extensions +boolean + + +axf.extensions +Enable XSL Formatter extensions? + + + + + + + + +Description + +If non-zero, +XSL Formatter +extensions will be used. XSL Formatter extensions consists of PDF bookmarks, +document information and better index processing. + +This parameter can also affect which graphics file formats +are supported + + + diff --git a/docbook-xsl-1.76.1/params/banner.before.navigation.xml b/docbook-xsl-1.76.1/params/banner.before.navigation.xml new file mode 100644 index 0000000..0883378 --- /dev/null +++ b/docbook-xsl-1.76.1/params/banner.before.navigation.xml @@ -0,0 +1,25 @@ + + +banner.before.navigation +boolean + + +banner.before.navigation +Put banner before navigation? + + + + + + + + +Description +FIXME + + diff --git a/docbook-xsl-1.76.1/params/base.dir.xml b/docbook-xsl-1.76.1/params/base.dir.xml new file mode 100644 index 0000000..e22ca14 --- /dev/null +++ b/docbook-xsl-1.76.1/params/base.dir.xml @@ -0,0 +1,29 @@ + + +base.dir +uri + + +base.dir +The base directory of chunks + + + + + + + + +Description + +If specified, the base.dir identifies +the output directory for chunks. (If not specified, the output directory +is system dependent.) + + + diff --git a/docbook-xsl-1.76.1/params/biblioentry.item.separator.xml b/docbook-xsl-1.76.1/params/biblioentry.item.separator.xml new file mode 100644 index 0000000..4a56ad6 --- /dev/null +++ b/docbook-xsl-1.76.1/params/biblioentry.item.separator.xml @@ -0,0 +1,26 @@ + + +biblioentry.item.separator +string + + +biblioentry.item.separator +Text to separate bibliography entries + + + +. + + +Description + +Text to separate bibliography entries + + + + diff --git a/docbook-xsl-1.76.1/params/biblioentry.properties.xml b/docbook-xsl-1.76.1/params/biblioentry.properties.xml new file mode 100644 index 0000000..9e88ddb --- /dev/null +++ b/docbook-xsl-1.76.1/params/biblioentry.properties.xml @@ -0,0 +1,28 @@ + + + biblioentry.properties + attribute set + + +biblioentry.properties +To set the style for biblioentry. + + + + + 0.5in + -0.5in + + + +Description +How do you want biblioentry styled? +Set the font-size, weight, space-above and space-below, indents, etc. to the style required + + + diff --git a/docbook-xsl-1.76.1/params/bibliography.collection.xml b/docbook-xsl-1.76.1/params/bibliography.collection.xml new file mode 100644 index 0000000..ee49dde --- /dev/null +++ b/docbook-xsl-1.76.1/params/bibliography.collection.xml @@ -0,0 +1,104 @@ + + +bibliography.collection +string + + +bibliography.collection +Name of the bibliography collection file + + + + +http://docbook.sourceforge.net/release/bibliography/bibliography.xml + + + + +Description + +Maintaining bibliography entries across a set of documents is tedious, time +consuming, and error prone. It makes much more sense, usually, to store all of +the bibliography entries in a single place and simply extract +the ones you need in each document. + +That's the purpose of the +bibliography.collection parameter. To setup a global +bibliography database, follow these steps: + +First, create a stand-alone bibliography document that contains all of +the documents that you wish to reference. Make sure that each bibliography +entry (whether you use biblioentry or bibliomixed) +has an ID. + +My global bibliography, ~/bibliography.xml begins +like this: + + +<!DOCTYPE bibliography + PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN" + "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd"> +<bibliography><title>References</title> + +<bibliomixed id="xml-rec"><abbrev>XML 1.0</abbrev>Tim Bray, +Jean Paoli, C. M. Sperberg-McQueen, and Eve Maler, editors. +<citetitle><ulink url="http://www.w3.org/TR/REC-xml">Extensible Markup +Language (XML) 1.0 Second Edition</ulink></citetitle>. +World Wide Web Consortium, 2000. +</bibliomixed> + +<bibliomixed id="xml-names"><abbrev>Namespaces</abbrev>Tim Bray, +Dave Hollander, +and Andrew Layman, editors. +<citetitle><ulink url="http://www.w3.org/TR/REC-xml-names/">Namespaces in +XML</ulink></citetitle>. +World Wide Web Consortium, 1999. +</bibliomixed> + +<!-- ... --> +</bibliography> + + + +When you create a bibliography in your document, simply +provide empty bibliomixed +entries for each document that you wish to cite. Make sure that these +elements have the same ID as the corresponding real +entry in your global bibliography. + +For example: + + +<bibliography><title>Bibliography</title> + +<bibliomixed id="xml-rec"/> +<bibliomixed id="xml-names"/> +<bibliomixed id="DKnuth86">Donald E. Knuth. <citetitle>Computers and +Typesetting: Volume B, TeX: The Program</citetitle>. Addison-Wesley, +1986. ISBN 0-201-13437-3. +</bibliomixed> +<bibliomixed id="relaxng"/> + +</bibliography> + + +Note that it's perfectly acceptable to mix entries from your +global bibliography with normal entries. You can use +xref or other elements to cross-reference your +bibliography entries in exactly the same way you do now. + +Finally, when you are ready to format your document, simply set the +bibliography.collection parameter (in either a +customization layer or directly through your processor's interface) to +point to your global bibliography. + +The stylesheets will format the bibliography in your document as if +all of the entries referenced appeared there literally. + + + diff --git a/docbook-xsl-1.76.1/params/bibliography.numbered.xml b/docbook-xsl-1.76.1/params/bibliography.numbered.xml new file mode 100644 index 0000000..593a1fa --- /dev/null +++ b/docbook-xsl-1.76.1/params/bibliography.numbered.xml @@ -0,0 +1,27 @@ + + +bibliography.numbered +boolean + + +bibliography.numbered +Should bibliography entries be numbered? + + + + + + + + +Description + +If non-zero bibliography entries will be numbered + + + diff --git a/docbook-xsl-1.76.1/params/bibliography.style.xml b/docbook-xsl-1.76.1/params/bibliography.style.xml new file mode 100644 index 0000000..fa44582 --- /dev/null +++ b/docbook-xsl-1.76.1/params/bibliography.style.xml @@ -0,0 +1,35 @@ + + +bibliography.style +list +normal +iso690 + + +bibliography.style +Style used for formatting of biblioentries. + + + + +normal + + + +Description + +Currently only normal and +iso690 styles are supported. + +In order to use ISO690 style to the full extent you might need +to use additional markup described on the +following WiKi page. + + + diff --git a/docbook-xsl-1.76.1/params/blockquote.properties.xml b/docbook-xsl-1.76.1/params/blockquote.properties.xml new file mode 100644 index 0000000..76d7f1c --- /dev/null +++ b/docbook-xsl-1.76.1/params/blockquote.properties.xml @@ -0,0 +1,34 @@ + + + blockquote.properties + attribute set + + +blockquote.properties +To set the style for block quotations. + + + + + +0.5in +0.5in +0.5em +1em +2em + + + + +Description + +The blockquote.properties attribute set specifies +the formating properties of block quotations. + + + diff --git a/docbook-xsl-1.76.1/params/blurb.on.titlepage.enabled.xml b/docbook-xsl-1.76.1/params/blurb.on.titlepage.enabled.xml new file mode 100644 index 0000000..27e89d7 --- /dev/null +++ b/docbook-xsl-1.76.1/params/blurb.on.titlepage.enabled.xml @@ -0,0 +1,31 @@ + + +blurb.on.titlepage.enabled +boolean + + +blurb.on.titlepage.enabled +Display personblurb and authorblurb on title pages? + + + + + + + + +Description + +If non-zero, output from authorblurb and +personblurb elements is displayed on title pages. If zero +(the default), output from those elements is suppressed on title pages +(unless you are using a titlepage customization +that causes them to be included). + + + diff --git a/docbook-xsl-1.76.1/params/body.attributes.xml b/docbook-xsl-1.76.1/params/body.attributes.xml new file mode 100644 index 0000000..8ee1ad9 --- /dev/null +++ b/docbook-xsl-1.76.1/params/body.attributes.xml @@ -0,0 +1,31 @@ + + +body.attributes +attribute set + + +body.attributes +DEPRECATED + + + + + + white + black + #0000FF + #840084 + #0000FF + + + + +Description +DEPRECATED + + diff --git a/docbook-xsl-1.76.1/params/body.bg.color.xml b/docbook-xsl-1.76.1/params/body.bg.color.xml new file mode 100644 index 0000000..8315b85 --- /dev/null +++ b/docbook-xsl-1.76.1/params/body.bg.color.xml @@ -0,0 +1,28 @@ + + +body.bg.color +color + + +body.bg.color +Background color for body frame + + + + +#FFFFFF + + + +Description + +Specifies the background color used in the body column of +tabular slides. + + + diff --git a/docbook-xsl-1.76.1/params/body.end.indent.xml b/docbook-xsl-1.76.1/params/body.end.indent.xml new file mode 100644 index 0000000..a5e098c --- /dev/null +++ b/docbook-xsl-1.76.1/params/body.end.indent.xml @@ -0,0 +1,37 @@ + + +body.end.indent +length + + +body.end.indent +The end-indent for the body text + + + + +0pt + + + +Description + +This end-indent property is added to the fo:flow +for certain page sequences. Which page-sequences it is +applied to is determined by the template named +set.flow.properties. +By default, that template adds it to the flow +for page-sequences using the body +master-reference, as well as appendixes and prefaces. + + +See also body.start.indent. + + + + diff --git a/docbook-xsl-1.76.1/params/body.font.family.xml b/docbook-xsl-1.76.1/params/body.font.family.xml new file mode 100644 index 0000000..06c3b47 --- /dev/null +++ b/docbook-xsl-1.76.1/params/body.font.family.xml @@ -0,0 +1,32 @@ + + +body.font.family +list +open +serif +sans-serif +monospace + + +body.font.family +The default font family for body text + + + + +serif + + + +Description + +The body font family is the default font used for text in the page body. + + + + diff --git a/docbook-xsl-1.76.1/params/body.font.master.xml b/docbook-xsl-1.76.1/params/body.font.master.xml new file mode 100644 index 0000000..323a6a0 --- /dev/null +++ b/docbook-xsl-1.76.1/params/body.font.master.xml @@ -0,0 +1,30 @@ + + +body.font.master + number + + +body.font.master +Specifies the default point size for body text + + + + +10 + + + +Description + +The body font size is specified in two parameters +(body.font.master and body.font.size) +so that math can be performed on the font size by XSLT. + + + + diff --git a/docbook-xsl-1.76.1/params/body.font.size.xml b/docbook-xsl-1.76.1/params/body.font.size.xml new file mode 100644 index 0000000..fc35ade --- /dev/null +++ b/docbook-xsl-1.76.1/params/body.font.size.xml @@ -0,0 +1,31 @@ + + +body.font.size +length + + +body.font.size +Specifies the default font size for body text + + + + + + pt + + + +Description + +The body font size is specified in two parameters +(body.font.master and body.font.size) +so that math can be performed on the font size by XSLT. + + + + diff --git a/docbook-xsl-1.76.1/params/body.margin.bottom.xml b/docbook-xsl-1.76.1/params/body.margin.bottom.xml new file mode 100644 index 0000000..2302f64 --- /dev/null +++ b/docbook-xsl-1.76.1/params/body.margin.bottom.xml @@ -0,0 +1,29 @@ + + +body.margin.bottom +length + + +body.margin.bottom +The bottom margin of the body text + + + + +0.5in + + + +Description + +The body bottom margin is the distance from the last line of text +in the page body to the bottom of the region-after. + + + + diff --git a/docbook-xsl-1.76.1/params/body.margin.top.xml b/docbook-xsl-1.76.1/params/body.margin.top.xml new file mode 100644 index 0000000..182bd9f --- /dev/null +++ b/docbook-xsl-1.76.1/params/body.margin.top.xml @@ -0,0 +1,28 @@ + + +body.margin.top +length + + +body.margin.top +To specify the size of the top margin of a page + + + + +0.5in + + + +Description + +The body top margin is the distance from the top of the +region-before to the first line of text in the page body. + + + diff --git a/docbook-xsl-1.76.1/params/body.start.indent.xml b/docbook-xsl-1.76.1/params/body.start.indent.xml new file mode 100644 index 0000000..4e348f1 --- /dev/null +++ b/docbook-xsl-1.76.1/params/body.start.indent.xml @@ -0,0 +1,64 @@ + + +body.start.indent +length + + +body.start.indent +The start-indent for the body text + + + + + + + 0pt + 0pt + 4pc + + + + + +Description + +This parameter provides +the means of indenting the body text relative to +section titles. +For left-to-right text direction, it indents the left side. +For right-to-left text direction, it indents the right side. +It is used in place of the +title.margin.left for +all XSL-FO processors except FOP 0.25. +It enables support for side floats to appear +in the indented margin area. + +This start-indent property is added to the fo:flow +for certain page sequences. Which page-sequences it is +applied to is determined by the template named +set.flow.properties. +By default, that template adds it to the flow +for page-sequences using the body +master-reference, as well as appendixes and prefaces. + +If this parameter is used, section titles should have +a start-indent value of 0pt if they are to be +outdented relative to the body text. + + +If you are using FOP, then set this parameter to a zero +width value and set the title.margin.left +parameter to the negative value of the desired indent. + + +See also body.end.indent and +title.margin.left. + + + + diff --git a/docbook-xsl-1.76.1/params/bookmarks.collapse.xml b/docbook-xsl-1.76.1/params/bookmarks.collapse.xml new file mode 100644 index 0000000..3320056 --- /dev/null +++ b/docbook-xsl-1.76.1/params/bookmarks.collapse.xml @@ -0,0 +1,31 @@ + + +bookmarks.collapse +boolean + + +bookmarks.collapse +Specifies the initial state of bookmarks + + + + + + + + +Description + +If non-zero, the bookmark tree is collapsed so that only the +top-level bookmarks are displayed initially. Otherwise, the whole tree +of bookmarks is displayed. + +This parameter currently works with FOP 0.93 or later. + + + diff --git a/docbook-xsl-1.76.1/params/bridgehead.in.toc.xml b/docbook-xsl-1.76.1/params/bridgehead.in.toc.xml new file mode 100644 index 0000000..490d556 --- /dev/null +++ b/docbook-xsl-1.76.1/params/bridgehead.in.toc.xml @@ -0,0 +1,28 @@ + + +bridgehead.in.toc +boolean + + +bridgehead.in.toc +Should bridgehead elements appear in the TOC? + + + + + + +Description + +If non-zero, bridgeheads appear in the TOC. Note that +this option is not fully supported and may be removed in a future +version of the stylesheets. + + + + diff --git a/docbook-xsl-1.76.1/params/bullet.image.xml b/docbook-xsl-1.76.1/params/bullet.image.xml new file mode 100644 index 0000000..acf2af5 --- /dev/null +++ b/docbook-xsl-1.76.1/params/bullet.image.xml @@ -0,0 +1,28 @@ + + +bullet.image +filename + + +bullet.image +Bullet image + + + + +toc/bullet.png + + + +Description + +Specifies the filename of the bullet image used for foils in the +framed ToC. + + + diff --git a/docbook-xsl-1.76.1/params/callout.defaultcolumn.xml b/docbook-xsl-1.76.1/params/callout.defaultcolumn.xml new file mode 100644 index 0000000..6cae381 --- /dev/null +++ b/docbook-xsl-1.76.1/params/callout.defaultcolumn.xml @@ -0,0 +1,30 @@ + + +callout.defaultcolumn +integer + + +callout.defaultcolumn +Indicates what column callouts appear in by default + + + + +60 + + + +Description + +If a callout does not identify a column (for example, if it uses +the linerange unit), +it will appear in the default column. + + + + diff --git a/docbook-xsl-1.76.1/params/callout.graphics.extension.xml b/docbook-xsl-1.76.1/params/callout.graphics.extension.xml new file mode 100644 index 0000000..febc690 --- /dev/null +++ b/docbook-xsl-1.76.1/params/callout.graphics.extension.xml @@ -0,0 +1,33 @@ + + +callout.graphics.extension +string + + +callout.graphics.extension +Filename extension for callout graphics + + + + +.png +.svg + + + +Description +Sets the filename extension to use on callout graphics. + + +The Docbook XSL distribution provides callout graphics in the following formats: +SVG (extension: .svg) +PNG (extension: .png) +GIF (extension: .gif) + + + diff --git a/docbook-xsl-1.76.1/params/callout.graphics.number.limit.xml b/docbook-xsl-1.76.1/params/callout.graphics.number.limit.xml new file mode 100644 index 0000000..cde5267 --- /dev/null +++ b/docbook-xsl-1.76.1/params/callout.graphics.number.limit.xml @@ -0,0 +1,34 @@ + + +callout.graphics.number.limit +integer + + +callout.graphics.number.limit +Number of the largest callout graphic + + + + +15 +30 + + + +Description + +If callout.graphics is non-zero, graphics +are used to represent callout numbers instead of plain text. The value +of callout.graphics.number.limit is the largest +number for which a graphic exists. If the callout number exceeds this +limit, the default presentation "(plain text instead of a graphic)" +will be used. + + + + diff --git a/docbook-xsl-1.76.1/params/callout.graphics.path.xml b/docbook-xsl-1.76.1/params/callout.graphics.path.xml new file mode 100644 index 0000000..00e54c1 --- /dev/null +++ b/docbook-xsl-1.76.1/params/callout.graphics.path.xml @@ -0,0 +1,31 @@ + + +callout.graphics.path +string + + +callout.graphics.path +Path to callout graphics + + + + +images/callouts/ + + + +Description + +Sets the path to the directory holding the callout graphics. his +location is normally relative to the output html directory. see +base.dir. Always terminate the directory with / since the graphic file +is appended to this string, hence needs the separator. + + + + diff --git a/docbook-xsl-1.76.1/params/callout.graphics.xml b/docbook-xsl-1.76.1/params/callout.graphics.xml new file mode 100644 index 0000000..a97ac0d --- /dev/null +++ b/docbook-xsl-1.76.1/params/callout.graphics.xml @@ -0,0 +1,30 @@ + + +callout.graphics +boolean + + +callout.graphics +Use graphics for callouts? + + + + + + + + +Description + +If non-zero, callouts are presented with graphics (e.g., reverse-video +circled numbers instead of "(1)", "(2)", etc.). +Default graphics are provided in the distribution. + + + + diff --git a/docbook-xsl-1.76.1/params/callout.icon.size.xml b/docbook-xsl-1.76.1/params/callout.icon.size.xml new file mode 100644 index 0000000..d3acae8 --- /dev/null +++ b/docbook-xsl-1.76.1/params/callout.icon.size.xml @@ -0,0 +1,28 @@ + + +callout.icon.size +length + + +callout.icon.size +Specifies the size of callout marker icons + + + + +7pt + + + +Description + +Specifies the size of the callout marker icons. +The default size is 7 points. + + + diff --git a/docbook-xsl-1.76.1/params/callout.list.table.xml b/docbook-xsl-1.76.1/params/callout.list.table.xml new file mode 100644 index 0000000..6fece03 --- /dev/null +++ b/docbook-xsl-1.76.1/params/callout.list.table.xml @@ -0,0 +1,32 @@ + + +callout.list.table +boolean + + +callout.list.table +Present callout lists using a table? + + + + + + + + +Description + +The default presentation of calloutlists uses +an HTML DL element. Some browsers don't align DLs very well +if callout.graphics is used. With this option +turned on, calloutlists are presented in an HTML +TABLE, which usually results in better alignment +of the callout number with the callout description. + + + diff --git a/docbook-xsl-1.76.1/params/callout.unicode.font.xml b/docbook-xsl-1.76.1/params/callout.unicode.font.xml new file mode 100644 index 0000000..e63bffb --- /dev/null +++ b/docbook-xsl-1.76.1/params/callout.unicode.font.xml @@ -0,0 +1,29 @@ + + +callout.unicode.font +string + + +callout.unicode.font +Specify a font for Unicode glyphs + + + + +ZapfDingbats + + + +Description + +The name of the font to specify around Unicode callout glyphs. +If set to the empty string, no font change will occur. + + + + diff --git a/docbook-xsl-1.76.1/params/callout.unicode.number.limit.xml b/docbook-xsl-1.76.1/params/callout.unicode.number.limit.xml new file mode 100644 index 0000000..a9f1f3d --- /dev/null +++ b/docbook-xsl-1.76.1/params/callout.unicode.number.limit.xml @@ -0,0 +1,35 @@ + + +callout.unicode.number.limit +integer + + +callout.unicode.number.limit +Number of the largest unicode callout character + + + + +10 + + + +Description + +If callout.unicode +is non-zero, unicode characters are used to represent +callout numbers. The value of +callout.unicode.number.limit +is +the largest number for which a unicode character exists. If the callout number +exceeds this limit, the default presentation "(nnn)" will always +be used. + + + + diff --git a/docbook-xsl-1.76.1/params/callout.unicode.start.character.xml b/docbook-xsl-1.76.1/params/callout.unicode.start.character.xml new file mode 100644 index 0000000..90a1acd --- /dev/null +++ b/docbook-xsl-1.76.1/params/callout.unicode.start.character.xml @@ -0,0 +1,33 @@ + + +callout.unicode.start.character +integer + + +callout.unicode.start.character +First Unicode character to use, decimal value. + + + + +10102 + + + +Description + +If callout.graphics is zero and callout.unicode +is non-zero, unicode characters are used to represent +callout numbers. The value of +callout.unicode.start.character +is the decimal unicode value used for callout number one. Currently, +only 10102 is supported in the stylesheets for this parameter. + + + + diff --git a/docbook-xsl-1.76.1/params/callout.unicode.xml b/docbook-xsl-1.76.1/params/callout.unicode.xml new file mode 100644 index 0000000..4ec6a5f --- /dev/null +++ b/docbook-xsl-1.76.1/params/callout.unicode.xml @@ -0,0 +1,26 @@ + + +callout.unicode +boolean + + +callout.unicode +Use Unicode characters rather than images for callouts. + + + + + + +Description + +The stylesheets can use either an image of the numbers one to ten, or the single Unicode character which represents the numeral, in white on a black background. Use this to select the Unicode character option. + + + + diff --git a/docbook-xsl-1.76.1/params/callouts.extension.xml b/docbook-xsl-1.76.1/params/callouts.extension.xml new file mode 100644 index 0000000..80b5845 --- /dev/null +++ b/docbook-xsl-1.76.1/params/callouts.extension.xml @@ -0,0 +1,30 @@ + + +callouts.extension +boolean + + +callouts.extension +Enable the callout extension + + + + + + + + +Description + +The callouts extension processes areaset +elements in programlistingco and other text-based +callout elements. + + + + diff --git a/docbook-xsl-1.76.1/params/chapter.autolabel.xml b/docbook-xsl-1.76.1/params/chapter.autolabel.xml new file mode 100644 index 0000000..32414bc --- /dev/null +++ b/docbook-xsl-1.76.1/params/chapter.autolabel.xml @@ -0,0 +1,71 @@ + + +chapter.autolabel +list +0none +11,2,3... +AA,B,C... +aa,b,c... +ii,ii,iii... +II,II,III... + + +chapter.autolabel +Specifies the labeling format for Chapter titles + + + + + + + +Description + +If non-zero, then chapters will be numbered using the parameter +value as the number format if the value matches one of the following: + + + + + 1 or arabic + + Arabic numeration (1, 2, 3 ...). + + + + A or upperalpha + + Uppercase letter numeration (A, B, C ...). + + + + a or loweralpha + + Lowercase letter numeration (a, b, c ...). + + + + I or upperroman + + Uppercase roman numeration (I, II, III ...). + + + + i or lowerroman + + Lowercase roman letter numeration (i, ii, iii ...). + + + + +Any nonzero value other than the above will generate +the default number format (arabic). + + + + diff --git a/docbook-xsl-1.76.1/params/chunk.append.xml b/docbook-xsl-1.76.1/params/chunk.append.xml new file mode 100644 index 0000000..1f65aad --- /dev/null +++ b/docbook-xsl-1.76.1/params/chunk.append.xml @@ -0,0 +1,30 @@ + + +chunk.append +string + + +chunk.append +Specifies content to append to chunked HTML output + + + + + + +Description + +Specifies content to append to the end of HTML files output by +the html/chunk.xsl stylesheet, after the closing +<html> tag. You probably don’t want to set any value +for this parameter; but if you do, the only value it should ever be +set to is a newline character: &#x0a; or +&#10; + + + diff --git a/docbook-xsl-1.76.1/params/chunk.first.sections.xml b/docbook-xsl-1.76.1/params/chunk.first.sections.xml new file mode 100644 index 0000000..f0c1b82 --- /dev/null +++ b/docbook-xsl-1.76.1/params/chunk.first.sections.xml @@ -0,0 +1,31 @@ + + +chunk.first.sections +boolean + + +chunk.first.sections +Chunk the first top-level section? + + + + + + + + +Description + +If non-zero, a chunk will be created for the first top-level +sect1 or section elements in +each component. Otherwise, that section will be part of the chunk for +its parent. + + + + diff --git a/docbook-xsl-1.76.1/params/chunk.quietly.xml b/docbook-xsl-1.76.1/params/chunk.quietly.xml new file mode 100644 index 0000000..8700b29 --- /dev/null +++ b/docbook-xsl-1.76.1/params/chunk.quietly.xml @@ -0,0 +1,30 @@ + + +chunk.quietly +boolean + + +chunk.quietly +Omit the chunked filename messages. + + + + + + + + +Description + +If zero (the default), the XSL processor emits a message naming +each separate chunk filename as it is being output. +If nonzero, then the messages are suppressed. + + + + diff --git a/docbook-xsl-1.76.1/params/chunk.section.depth.xml b/docbook-xsl-1.76.1/params/chunk.section.depth.xml new file mode 100644 index 0000000..d46193c --- /dev/null +++ b/docbook-xsl-1.76.1/params/chunk.section.depth.xml @@ -0,0 +1,27 @@ + + +chunk.section.depth +integer + + +chunk.section.depth +Depth to which sections should be chunked + + + + + + + + +Description + +This parameter sets the depth of section chunking. + + + diff --git a/docbook-xsl-1.76.1/params/chunk.sections.xml b/docbook-xsl-1.76.1/params/chunk.sections.xml new file mode 100644 index 0000000..2ffb1a3 --- /dev/null +++ b/docbook-xsl-1.76.1/params/chunk.sections.xml @@ -0,0 +1,30 @@ + + +chunk.sections +boolean + + +chunk.sections +Should top-level sections be chunks in their own right? + + + + + + + + +Description + +If non-zero, chunks will be created for top-level +sect1 and section elements in +each component. + + + + diff --git a/docbook-xsl-1.76.1/params/chunk.separate.lots.xml b/docbook-xsl-1.76.1/params/chunk.separate.lots.xml new file mode 100644 index 0000000..aa54eab --- /dev/null +++ b/docbook-xsl-1.76.1/params/chunk.separate.lots.xml @@ -0,0 +1,36 @@ + + +chunk.separate.lots +boolean + + +chunk.separate.lots +Should each LoT be in its own separate chunk? + + + + + + + + +Description + +If non-zero, each of the ToC and LoTs +(List of Examples, List of Figures, etc.) +will be put in its own separate chunk. +The title page includes generated links to each of the separate files. + + +This feature depends on the +chunk.tocs.and.lots +parameter also being non-zero. + + + + diff --git a/docbook-xsl-1.76.1/params/chunk.toc.xml b/docbook-xsl-1.76.1/params/chunk.toc.xml new file mode 100644 index 0000000..12cdb2c --- /dev/null +++ b/docbook-xsl-1.76.1/params/chunk.toc.xml @@ -0,0 +1,30 @@ + + +chunk.toc +string + + +chunk.toc +An explicit TOC to be used for chunking + + + + + + + + +Description + +The chunk.toc identifies an explicit TOC that +will be used for chunking. This parameter is only used by the +chunktoc.xsl stylesheet (and customization layers built +from it). + + + diff --git a/docbook-xsl-1.76.1/params/chunk.tocs.and.lots.has.title.xml b/docbook-xsl-1.76.1/params/chunk.tocs.and.lots.has.title.xml new file mode 100644 index 0000000..0bdd31b --- /dev/null +++ b/docbook-xsl-1.76.1/params/chunk.tocs.and.lots.has.title.xml @@ -0,0 +1,28 @@ + + +chunk.tocs.and.lots.has.title +boolean + + +chunk.tocs.and.lots.has.title +Should ToC and LoTs in a separate chunks have title? + + + + + + + + +Description + +If non-zero title of document is shown before ToC/LoT in +separate chunk. + + + diff --git a/docbook-xsl-1.76.1/params/chunk.tocs.and.lots.xml b/docbook-xsl-1.76.1/params/chunk.tocs.and.lots.xml new file mode 100644 index 0000000..2a01fff --- /dev/null +++ b/docbook-xsl-1.76.1/params/chunk.tocs.and.lots.xml @@ -0,0 +1,32 @@ + + +chunk.tocs.and.lots +boolean + + +chunk.tocs.and.lots +Should ToC and LoTs be in separate chunks? + + + + + + + + +Description + +If non-zero, ToC and LoT (List of Examples, List of Figures, etc.) +will be put in a separate chunk. At the moment, this chunk is not in the +normal forward/backward navigation list. Instead, a new link is added to the +navigation footer. + +This feature is still somewhat experimental. Feedback welcome. + + + diff --git a/docbook-xsl-1.76.1/params/chunker.output.cdata-section-elements.xml b/docbook-xsl-1.76.1/params/chunker.output.cdata-section-elements.xml new file mode 100644 index 0000000..3e9be4d --- /dev/null +++ b/docbook-xsl-1.76.1/params/chunker.output.cdata-section-elements.xml @@ -0,0 +1,30 @@ + + +chunker.output.cdata-section-elements +string + + +chunker.output.cdata-section-elements +List of elements to escape with CDATA sections + + + + + + +Description +This parameter specifies the list of elements that should be escaped +as CDATA sections by the chunking stylesheet. Not all processors support +specification of this parameter. + + +This parameter is documented here, but the declaration is actually +in the chunker.xsl stylesheet module. + + + diff --git a/docbook-xsl-1.76.1/params/chunker.output.doctype-public.xml b/docbook-xsl-1.76.1/params/chunker.output.doctype-public.xml new file mode 100644 index 0000000..6aa6e30 --- /dev/null +++ b/docbook-xsl-1.76.1/params/chunker.output.doctype-public.xml @@ -0,0 +1,31 @@ + + +chunker.output.doctype-public +string + + +chunker.output.doctype-public +Public identifer to use in the document type of generated pages + + + + + + +Description +This parameter specifies the public identifier that should be used by +the chunking stylesheet in the document type declaration of chunked pages. +Not all processors support specification of +this parameter. + + +This parameter is documented here, but the declaration is actually +in the chunker.xsl stylesheet module. + + + diff --git a/docbook-xsl-1.76.1/params/chunker.output.doctype-system.xml b/docbook-xsl-1.76.1/params/chunker.output.doctype-system.xml new file mode 100644 index 0000000..2d67906 --- /dev/null +++ b/docbook-xsl-1.76.1/params/chunker.output.doctype-system.xml @@ -0,0 +1,31 @@ + + +chunker.output.doctype-system +uri + + +chunker.output.doctype-system +System identifier to use for the document type in generated pages + + + + + + +Description +This parameter specifies the system identifier that should be used by +the chunking stylesheet in the document type declaration of chunked pages. +Not all processors support specification of +this parameter. + + +This parameter is documented here, but the declaration is actually +in the chunker.xsl stylesheet module. + + + diff --git a/docbook-xsl-1.76.1/params/chunker.output.encoding.xml b/docbook-xsl-1.76.1/params/chunker.output.encoding.xml new file mode 100644 index 0000000..f8993e9 --- /dev/null +++ b/docbook-xsl-1.76.1/params/chunker.output.encoding.xml @@ -0,0 +1,31 @@ + + +chunker.output.encoding +string + + +chunker.output.encoding +Encoding used in generated pages + + + +ISO-8859-1 + + +Description +This parameter specifies the encoding to be used in files +generated by the chunking stylesheet. Not all processors support +specification of this parameter. + +This parameter used to be named default.encoding. + +This parameter is documented here, but the declaration is actually +in the chunker.xsl stylesheet module. + + + diff --git a/docbook-xsl-1.76.1/params/chunker.output.indent.xml b/docbook-xsl-1.76.1/params/chunker.output.indent.xml new file mode 100644 index 0000000..3da9ad4 --- /dev/null +++ b/docbook-xsl-1.76.1/params/chunker.output.indent.xml @@ -0,0 +1,30 @@ + + +chunker.output.indent +string + + +chunker.output.indent +Specification of indentation on generated pages + + + +no + + +Description +This parameter specifies the value of the indent +specification for generated pages. Not all processors support +specification of this parameter. + + +This parameter is documented here, but the declaration is actually +in the chunker.xsl stylesheet module. + + + diff --git a/docbook-xsl-1.76.1/params/chunker.output.media-type.xml b/docbook-xsl-1.76.1/params/chunker.output.media-type.xml new file mode 100644 index 0000000..6186971 --- /dev/null +++ b/docbook-xsl-1.76.1/params/chunker.output.media-type.xml @@ -0,0 +1,35 @@ + + +chunker.output.media-type +string + + +chunker.output.media-type +Media type to use in generated pages + + + + + + +Description +This parameter specifies the media type that should be used by +the chunking stylesheet. Not all processors support specification of +this parameter. + +This parameter specifies the media type that should be used by the +chunking stylesheet. This should be one from those defined in +[RFC2045] and + [RFC2046] + +This parameter is documented here, but the declaration is actually +in the chunker.xsl stylesheet module. +It must be one from html, xml or text + + + diff --git a/docbook-xsl-1.76.1/params/chunker.output.method.xml b/docbook-xsl-1.76.1/params/chunker.output.method.xml new file mode 100644 index 0000000..dc9359b --- /dev/null +++ b/docbook-xsl-1.76.1/params/chunker.output.method.xml @@ -0,0 +1,32 @@ + + +chunker.output.method +list +html +xml + + +chunker.output.method +Method used in generated pages + + + +html + + +Description +This parameter specifies the output method to be used in files +generated by the chunking stylesheet. + +This parameter used to be named output.method. + +This parameter is documented here, but the declaration is actually +in the chunker.xsl stylesheet module. + + + diff --git a/docbook-xsl-1.76.1/params/chunker.output.omit-xml-declaration.xml b/docbook-xsl-1.76.1/params/chunker.output.omit-xml-declaration.xml new file mode 100644 index 0000000..4b8262f --- /dev/null +++ b/docbook-xsl-1.76.1/params/chunker.output.omit-xml-declaration.xml @@ -0,0 +1,30 @@ + + +chunker.output.omit-xml-declaration +string + + +chunker.output.omit-xml-declaration +Omit-xml-declaration for generated pages + + + +no + + +Description +This parameter specifies the value of the omit-xml-declaration +specification for generated pages. Not all processors support +specification of this parameter. + + +This parameter is documented here, but the declaration is actually +in the chunker.xsl stylesheet module. + + + diff --git a/docbook-xsl-1.76.1/params/chunker.output.standalone.xml b/docbook-xsl-1.76.1/params/chunker.output.standalone.xml new file mode 100644 index 0000000..8972c47 --- /dev/null +++ b/docbook-xsl-1.76.1/params/chunker.output.standalone.xml @@ -0,0 +1,31 @@ + + +chunker.output.standalone +string + + +chunker.output.standalone +Standalone declaration for generated pages + + + +no + + +Description +This parameter specifies the value of the standalone + specification for generated pages. It must be either + yes or no. Not all + processors support specification of this parameter. + + +This parameter is documented here, but the declaration is actually +in the chunker.xsl stylesheet module. + + + diff --git a/docbook-xsl-1.76.1/params/citerefentry.link.xml b/docbook-xsl-1.76.1/params/citerefentry.link.xml new file mode 100644 index 0000000..623511b --- /dev/null +++ b/docbook-xsl-1.76.1/params/citerefentry.link.xml @@ -0,0 +1,29 @@ + + +citerefentry.link +boolean + + +citerefentry.link +Generate URL links when cross-referencing RefEntrys? + + + + + + + +Description + +If non-zero, a web link will be generated, presumably +to an online man->HTML gateway. The text of the link is +generated by the generate.citerefentry.link template. + + + + diff --git a/docbook-xsl-1.76.1/params/collect.xref.targets.xml b/docbook-xsl-1.76.1/params/collect.xref.targets.xml new file mode 100644 index 0000000..378c969 --- /dev/null +++ b/docbook-xsl-1.76.1/params/collect.xref.targets.xml @@ -0,0 +1,33 @@ + + +collect.xref.targets +list +no +yes +only + + +collect.xref.targets +Controls whether cross reference data is +collected + + +no + + +Description + + +In order to resolve olinks efficiently, the stylesheets can +generate an external data file containing information about +all potential cross reference endpoints in a document. +This parameter determines whether the collection process is run when the document is processed by the stylesheet. The default value is no, which means the data file is not generated during processing. The other choices are yes, which means the data file is created and the document is processed for output, and only, which means the data file is created but the document is not processed for output. +See also targets.filename. + + + diff --git a/docbook-xsl-1.76.1/params/column.count.back.xml b/docbook-xsl-1.76.1/params/column.count.back.xml new file mode 100644 index 0000000..95ee76d --- /dev/null +++ b/docbook-xsl-1.76.1/params/column.count.back.xml @@ -0,0 +1,27 @@ + + +column.count.back +integer + + +column.count.back +Number of columns on back matter pages + + + + + + + + +Description + +Number of columns on back matter (appendix, glossary, etc.) pages. + + + diff --git a/docbook-xsl-1.76.1/params/column.count.body.xml b/docbook-xsl-1.76.1/params/column.count.body.xml new file mode 100644 index 0000000..a5d65b3 --- /dev/null +++ b/docbook-xsl-1.76.1/params/column.count.body.xml @@ -0,0 +1,27 @@ + + +column.count.body +integer + + +column.count.body +Number of columns on body pages + + + + + + + + +Description + +Number of columns on body pages. + + + diff --git a/docbook-xsl-1.76.1/params/column.count.front.xml b/docbook-xsl-1.76.1/params/column.count.front.xml new file mode 100644 index 0000000..64ff3ac --- /dev/null +++ b/docbook-xsl-1.76.1/params/column.count.front.xml @@ -0,0 +1,27 @@ + + +column.count.front +integer + + +column.count.front +Number of columns on front matter pages + + + + + + + + +Description + +Number of columns on front matter (dedication, preface, etc.) pages. + + + diff --git a/docbook-xsl-1.76.1/params/column.count.index.xml b/docbook-xsl-1.76.1/params/column.count.index.xml new file mode 100644 index 0000000..e485448 --- /dev/null +++ b/docbook-xsl-1.76.1/params/column.count.index.xml @@ -0,0 +1,27 @@ + + +column.count.index +integer + + +column.count.index +Number of columns on index pages + + + + +2 + + + +Description + +Number of columns on index pages. + + + diff --git a/docbook-xsl-1.76.1/params/column.count.lot.xml b/docbook-xsl-1.76.1/params/column.count.lot.xml new file mode 100644 index 0000000..770988d --- /dev/null +++ b/docbook-xsl-1.76.1/params/column.count.lot.xml @@ -0,0 +1,28 @@ + + +column.count.lot +integer + + +column.count.lot +Number of columns on a 'List-of-Titles' page + + + + + + + + +Description + +Number of columns on a page sequence containing the Table of Contents, +List of Figures, etc. + + + diff --git a/docbook-xsl-1.76.1/params/column.count.titlepage.xml b/docbook-xsl-1.76.1/params/column.count.titlepage.xml new file mode 100644 index 0000000..3deba6f --- /dev/null +++ b/docbook-xsl-1.76.1/params/column.count.titlepage.xml @@ -0,0 +1,27 @@ + + +column.count.titlepage +integer + + +column.count.titlepage +Number of columns on a title page + + + + + + + + +Description + +Number of columns on a title page + + + diff --git a/docbook-xsl-1.76.1/params/column.gap.back.xml b/docbook-xsl-1.76.1/params/column.gap.back.xml new file mode 100644 index 0000000..3aaa1d3 --- /dev/null +++ b/docbook-xsl-1.76.1/params/column.gap.back.xml @@ -0,0 +1,28 @@ + + +column.gap.back +length + + +column.gap.back +Gap between columns in back matter + + + + +12pt + + + +Description + +Specifies the gap between columns in back matter (if +column.count.back is greater than one). + + + diff --git a/docbook-xsl-1.76.1/params/column.gap.body.xml b/docbook-xsl-1.76.1/params/column.gap.body.xml new file mode 100644 index 0000000..57b0168 --- /dev/null +++ b/docbook-xsl-1.76.1/params/column.gap.body.xml @@ -0,0 +1,28 @@ + + +column.gap.body +length + + +column.gap.body +Gap between columns in the body + + + + +12pt + + + +Description + +Specifies the gap between columns in body matter (if +column.count.body is greater than one). + + + diff --git a/docbook-xsl-1.76.1/params/column.gap.front.xml b/docbook-xsl-1.76.1/params/column.gap.front.xml new file mode 100644 index 0000000..a6f7263 --- /dev/null +++ b/docbook-xsl-1.76.1/params/column.gap.front.xml @@ -0,0 +1,28 @@ + + +column.gap.front +length + + +column.gap.front +Gap between columns in the front matter + + + + +12pt + + + +Description + +Specifies the gap between columns in front matter (if +column.count.front is greater than one). + + + diff --git a/docbook-xsl-1.76.1/params/column.gap.index.xml b/docbook-xsl-1.76.1/params/column.gap.index.xml new file mode 100644 index 0000000..2279f77 --- /dev/null +++ b/docbook-xsl-1.76.1/params/column.gap.index.xml @@ -0,0 +1,28 @@ + + +column.gap.index +length + + +column.gap.index +Gap between columns in the index + + + + +12pt + + + +Description + +Specifies the gap between columns in indexes (if +column.count.index is greater than one). + + + diff --git a/docbook-xsl-1.76.1/params/column.gap.lot.xml b/docbook-xsl-1.76.1/params/column.gap.lot.xml new file mode 100644 index 0000000..da0fa00 --- /dev/null +++ b/docbook-xsl-1.76.1/params/column.gap.lot.xml @@ -0,0 +1,28 @@ + + +column.gap.lot +length + + +column.gap.lot +Gap between columns on a 'List-of-Titles' page + + + + +12pt + + + +Description + +Specifies the gap between columns on 'List-of-Titles' pages (if +column.count.lot is greater than one). + + + diff --git a/docbook-xsl-1.76.1/params/column.gap.titlepage.xml b/docbook-xsl-1.76.1/params/column.gap.titlepage.xml new file mode 100644 index 0000000..7c13dbd --- /dev/null +++ b/docbook-xsl-1.76.1/params/column.gap.titlepage.xml @@ -0,0 +1,29 @@ + + +column.gap.titlepage +length + + +column.gap.titlepage +Gap between columns on title pages + + + + +12pt + + + +Description + +Specifies the gap between columns on title pages (if +column.count.titlepage is greater than one). + + + + diff --git a/docbook-xsl-1.76.1/params/compact.list.item.spacing.xml b/docbook-xsl-1.76.1/params/compact.list.item.spacing.xml new file mode 100644 index 0000000..f48f4a6 --- /dev/null +++ b/docbook-xsl-1.76.1/params/compact.list.item.spacing.xml @@ -0,0 +1,28 @@ + + +compact.list.item.spacing +attribute set + + +compact.list.item.spacing +What space do you want between list items (when spacing="compact")? + + + + + 0em + 0em + 0.2em + + +Description +Specify what spacing you want between each list item when +spacing is +compact. + + diff --git a/docbook-xsl-1.76.1/params/component.label.includes.part.label.xml b/docbook-xsl-1.76.1/params/component.label.includes.part.label.xml new file mode 100644 index 0000000..6dd7a68 --- /dev/null +++ b/docbook-xsl-1.76.1/params/component.label.includes.part.label.xml @@ -0,0 +1,39 @@ + + +component.label.includes.part.label +boolean + + +component.label.includes.part.label +Do component labels include the part label? + + + + + + +Description + +If non-zero, number labels for chapter, +appendix, and other component elements are prefixed with +the label of the part element that contains them. So you might see +Chapter II.3 instead of Chapter 3. Also, the labels for formal +elements such as table and figure will include +the part label. If there is no part element container, then no prefix +is generated. + + +This feature is most useful when the +label.from.part parameter is turned on. +In that case, there would be more than one chapter +1, and the extra part label prefix will identify +each chapter unambiguously. + + + + diff --git a/docbook-xsl-1.76.1/params/component.title.properties.xml b/docbook-xsl-1.76.1/params/component.title.properties.xml new file mode 100644 index 0000000..58cd4b4 --- /dev/null +++ b/docbook-xsl-1.76.1/params/component.title.properties.xml @@ -0,0 +1,40 @@ + + +component.title.properties +attribute set + + +component.title.properties +Properties for component titles + + + + + + always + + + + false + + + center + start + + + + + + + +Description + +The properties common to all component titles. + + + diff --git a/docbook-xsl-1.76.1/params/component.titlepage.properties.xml b/docbook-xsl-1.76.1/params/component.titlepage.properties.xml new file mode 100644 index 0000000..47179f4 --- /dev/null +++ b/docbook-xsl-1.76.1/params/component.titlepage.properties.xml @@ -0,0 +1,33 @@ + + +component.titlepage.properties +attribute set + + +component.titlepage.properties +Properties for component titlepages + + + + + + + + + +Description + +The properties that are applied to the outer block containing +all the component title page information. +Its main use is to set a span="all" +property on the block that is a direct child of the flow. + +This attribute-set also applies to index titlepages. It is empty by default. + + + diff --git a/docbook-xsl-1.76.1/params/contrib.inline.enabled.xml b/docbook-xsl-1.76.1/params/contrib.inline.enabled.xml new file mode 100644 index 0000000..5d5fa99 --- /dev/null +++ b/docbook-xsl-1.76.1/params/contrib.inline.enabled.xml @@ -0,0 +1,26 @@ + + +contrib.inline.enabled +boolean + + +contrib.inline.enabled +Display contrib output inline? + + + +1 + + +Description + +If non-zero (the default), output of the contrib element is +displayed as inline content rather than as block content. + + + diff --git a/docbook-xsl-1.76.1/params/crop.mark.bleed.xml b/docbook-xsl-1.76.1/params/crop.mark.bleed.xml new file mode 100644 index 0000000..af3420e --- /dev/null +++ b/docbook-xsl-1.76.1/params/crop.mark.bleed.xml @@ -0,0 +1,28 @@ + + +crop.mark.bleed +length + + +crop.mark.bleed +Length of invisible part of crop marks. + + + + +6pt + + + +Description + +Length of invisible part of crop marks. Crop marks are controlled by +crop.marks parameter. + + + diff --git a/docbook-xsl-1.76.1/params/crop.mark.offset.xml b/docbook-xsl-1.76.1/params/crop.mark.offset.xml new file mode 100644 index 0000000..cfd9bd3 --- /dev/null +++ b/docbook-xsl-1.76.1/params/crop.mark.offset.xml @@ -0,0 +1,28 @@ + + +crop.mark.offset +length + + +crop.mark.offset +Length of crop marks. + + + + +24pt + + + +Description + +Length of crop marks. Crop marks are controlled by +crop.marks parameter. + + + diff --git a/docbook-xsl-1.76.1/params/crop.mark.width.xml b/docbook-xsl-1.76.1/params/crop.mark.width.xml new file mode 100644 index 0000000..86c28b5 --- /dev/null +++ b/docbook-xsl-1.76.1/params/crop.mark.width.xml @@ -0,0 +1,28 @@ + + +crop.mark.width +length + + +crop.mark.width +Width of crop marks. + + + + +0.5pt + + + +Description + +Width of crop marks. Crop marks are controlled by +crop.marks parameter. + + + diff --git a/docbook-xsl-1.76.1/params/crop.marks.xml b/docbook-xsl-1.76.1/params/crop.marks.xml new file mode 100644 index 0000000..c68d5a0 --- /dev/null +++ b/docbook-xsl-1.76.1/params/crop.marks.xml @@ -0,0 +1,28 @@ + + +crop.marks +boolean + + +crop.marks +Output crop marks? + + + + + + + + +Description + +If non-zero, crop marks will be added to each page. Currently this +works only with XEP if you have xep.extensions set. + + + diff --git a/docbook-xsl-1.76.1/params/css.decoration.xml b/docbook-xsl-1.76.1/params/css.decoration.xml new file mode 100644 index 0000000..02e3026 --- /dev/null +++ b/docbook-xsl-1.76.1/params/css.decoration.xml @@ -0,0 +1,33 @@ + + +css.decoration +boolean + + +css.decoration +Enable CSS decoration of elements + + + + + + + + +Description + + +If non-zero, then html elements produced by the stylesheet may be +decorated with style attributes. For example, the +li tags produced for list items may include a +fragment of CSS in the style attribute which sets +the CSS property "list-style-type". + + + + diff --git a/docbook-xsl-1.76.1/params/css.stylesheet.dir.xml b/docbook-xsl-1.76.1/params/css.stylesheet.dir.xml new file mode 100644 index 0000000..e32b178 --- /dev/null +++ b/docbook-xsl-1.76.1/params/css.stylesheet.dir.xml @@ -0,0 +1,33 @@ + + +css.stylesheet.dir +uri + + +css.stylesheet.dir +Default directory for CSS stylesheets + + + + + + + + +Description + +Identifies the default directory for the CSS stylesheet +generated on all the slides. This parameter can be set in the source +document with the <?dbhtml?> pseudo-attribute +css-stylesheet-dir. + +If non-empty, this value is prepended to each of the stylesheets. + + + + diff --git a/docbook-xsl-1.76.1/params/css.stylesheet.xml b/docbook-xsl-1.76.1/params/css.stylesheet.xml new file mode 100644 index 0000000..2acc66c --- /dev/null +++ b/docbook-xsl-1.76.1/params/css.stylesheet.xml @@ -0,0 +1,29 @@ + + +css.stylesheet +uri + + +css.stylesheet +CSS stylesheet for slides + + + + +slides.css + + + +Description + +Identifies the CSS stylesheet used by all the slides. This parameter +can be set in the source document with the <?dbhtml?> pseudo-attribute +css-stylesheet. + + + diff --git a/docbook-xsl-1.76.1/params/current.docid.xml b/docbook-xsl-1.76.1/params/current.docid.xml new file mode 100644 index 0000000..93616f2 --- /dev/null +++ b/docbook-xsl-1.76.1/params/current.docid.xml @@ -0,0 +1,27 @@ + + +current.docid +string + + +current.docid +targetdoc identifier for the document being +processed + + + + + +Description + +When olinks between documents are resolved for HTML output, the stylesheet can compute the relative path between the current document and the target document. The stylesheet needs to know the targetdoc identifiers for both documents, as they appear in the target.database.document database file. This parameter passes to the stylesheet +the targetdoc identifier of the current document, since that +identifier does not appear in the document itself. +This parameter can also be used for print output. If an olink's targetdoc id differs from the current.docid, then the stylesheet can append the target document's title to the generated olink text. That identifies to the reader that the link is to a different document, not the current document. See also olink.doctitle to enable that feature. + + diff --git a/docbook-xsl-1.76.1/params/currentpage.marker.xml b/docbook-xsl-1.76.1/params/currentpage.marker.xml new file mode 100644 index 0000000..2bccf30 --- /dev/null +++ b/docbook-xsl-1.76.1/params/currentpage.marker.xml @@ -0,0 +1,25 @@ + + +currentpage.marker +string + + +currentpage.marker +The text symbol used to mark the current page + + + + +@ + + + +Description +Character to use as identifying the current page in + + diff --git a/docbook-xsl-1.76.1/params/custom.css.source.xml b/docbook-xsl-1.76.1/params/custom.css.source.xml new file mode 100644 index 0000000..24278ad --- /dev/null +++ b/docbook-xsl-1.76.1/params/custom.css.source.xml @@ -0,0 +1,119 @@ + + + custom.css.source + string + + + custom.css.source + Name of a custom CSS input file + + + + + + + Description + +The custom.css.source +parameter enables you to add CSS styles to DocBook's +HTML output. + +The parameter +specifies the name of a file containing custom +CSS styles. The file must be a well-formed XML file that +consists of a single style root +element that contains CSS styles as its text content. +For example: + + +]]> + +The filename specified by the parameter +should have a .xml +filename suffix, although that is not required. +The default value of this parameter is blank. + +If custom.css.source is not blank, then +the stylesheet takes the following actions. +These actions take place regardless of the value of +the make.clean.html parameter. + + + + The stylesheet uses the XSLT document() + function to open the file specified by the parameter and + load it into a variable. + + + The stylesheet forms an output pathname consisting of the + value of the base.dir parameter (if it is set) + and the value of custom.css.source, + with the .xml suffix stripped off. + + + + The stylesheet removes the style + wrapper element and writes just the CSS text content to the output file. + + + The stylesheet adds a link element to the + HTML HEAD element to reference this external CSS stylesheet. + For example: + <link rel="stylesheet" href="custom.css" type="text/css"> + + + + + + + +If the make.clean.html parameter is nonzero +(the default is zero), +and if the docbook.css.source parameter +is not blank (the default is not blank), +then the stylesheet will also generate a default CSS file +and add a link tag to reference it. +The link to the custom CSS comes after the +link to the default, so it should cascade properly +in most browsers. +If you do not want two link tags, and +instead want your custom CSS to import the default generated +CSS file, then do the following: + + + + + Add a line like the following to your custom CSS source file: + @import url("docbook.css") + + + + Set the docbook.css.link parameter + to zero. This will omit the link tag + that references the default CSS file. + + + +If you set make.clean.html to nonzero but +you do not want the default CSS generated, then also set +the docbook.css.source parameter to blank. +Then no default CSS will be generated, and so +all CSS styles must come from your custom CSS file. + +You can use the generate.css.header +parameter to instead write the CSS to each HTML HEAD +element in a style tag instead of an external CSS file. + + + diff --git a/docbook-xsl-1.76.1/params/default.float.class.xml b/docbook-xsl-1.76.1/params/default.float.class.xml new file mode 100644 index 0000000..1078b60 --- /dev/null +++ b/docbook-xsl-1.76.1/params/default.float.class.xml @@ -0,0 +1,34 @@ + + +default.float.class +string + + +default.float.class +Specifies the default float class + + + + + + + left + before + + + + + +Description + +Selects the direction in which a float should be placed. for +xsl-fo this is before, for html it is left. For Western texts, the +before direction is the top of the page. + + + diff --git a/docbook-xsl-1.76.1/params/default.image.width.xml b/docbook-xsl-1.76.1/params/default.image.width.xml new file mode 100644 index 0000000..0e84a72 --- /dev/null +++ b/docbook-xsl-1.76.1/params/default.image.width.xml @@ -0,0 +1,30 @@ + + +default.image.width +length + + +default.image.width +The default width of images + + + + + + + + +Description + +If specified, this value will be used for the +width attribute on images that do not specify any +viewport dimensions. + + + diff --git a/docbook-xsl-1.76.1/params/default.table.frame.xml b/docbook-xsl-1.76.1/params/default.table.frame.xml new file mode 100644 index 0000000..38c8667 --- /dev/null +++ b/docbook-xsl-1.76.1/params/default.table.frame.xml @@ -0,0 +1,28 @@ + + +default.table.frame +string + + +default.table.frame +The default framing of tables + + + + +all + + + +Description + +This value will be used when there is no frame attribute on the +table. + + + diff --git a/docbook-xsl-1.76.1/params/default.table.rules.xml b/docbook-xsl-1.76.1/params/default.table.rules.xml new file mode 100644 index 0000000..ed698ec --- /dev/null +++ b/docbook-xsl-1.76.1/params/default.table.rules.xml @@ -0,0 +1,76 @@ + + +default.table.rules +string + + +default.table.rules +The default column and row rules for tables using HTML markup + + + + +none + + + +Description + +Tables using HTML markup elements can use an attribute +named rules on the table or +informaltable element +to specify whether column and row border rules should be +displayed. This parameter lets you specify a global default +style for all HTML tables that don't otherwise have +that attribute. +These are the supported values: + + +all + +Rules will appear between all rows and columns. + + + +rows + +Rules will appear between rows only. + + + +cols + +Rules will appear between columns only. + + + +groups + +Rules will appear between row groups (thead, tfoot, tbody). +No support for rules between column groups yet. + + + + +none + +No rules. This is the default value. + + + + + + +The border after the last row and the border after +the last column are not affected by +this setting. Those borders are controlled by +the frame attribute on the table element. + + + + diff --git a/docbook-xsl-1.76.1/params/default.table.width.xml b/docbook-xsl-1.76.1/params/default.table.width.xml new file mode 100644 index 0000000..184ce52 --- /dev/null +++ b/docbook-xsl-1.76.1/params/default.table.width.xml @@ -0,0 +1,26 @@ + + +default.table.width +length + + +default.table.width +The default width of tables + + + + + + +Description +If non-zero, this value will be used for the +width attribute on tables that do not specify an +alternate width (with the dbhtml table-width or +dbfo table-width processing instruction). + + diff --git a/docbook-xsl-1.76.1/params/default.units.xml b/docbook-xsl-1.76.1/params/default.units.xml new file mode 100644 index 0000000..f83c822 --- /dev/null +++ b/docbook-xsl-1.76.1/params/default.units.xml @@ -0,0 +1,37 @@ + + +default.units +list +cm +mm +in +pt +pc +px +em + + +default.units +Default units for an unqualified dimension + + + + +pt + + + +Description + +If an unqualified dimension is encountered (for example, in a +graphic width), the default.units will be used for the +units. Unqualified dimensions are not allowed in XSL Formatting Objects. + + + + diff --git a/docbook-xsl-1.76.1/params/dingbat.font.family.xml b/docbook-xsl-1.76.1/params/dingbat.font.family.xml new file mode 100644 index 0000000..f9719cf --- /dev/null +++ b/docbook-xsl-1.76.1/params/dingbat.font.family.xml @@ -0,0 +1,33 @@ + + +dingbat.font.family +list +open +serif +sans-serif +monospace + + +dingbat.font.family +The font family for copyright, quotes, and other symbols + + + + +serif + + + +Description + +The dingbat font family is used for dingbats. If it is defined +as the empty string, no font change is effected around dingbats. + + + + diff --git a/docbook-xsl-1.76.1/params/docbook.css.link.xml b/docbook-xsl-1.76.1/params/docbook.css.link.xml new file mode 100644 index 0000000..6d9e6e6 --- /dev/null +++ b/docbook-xsl-1.76.1/params/docbook.css.link.xml @@ -0,0 +1,42 @@ + + +docbook.css.link +boolean + + +docbook.css.link +Insert a link referencing the default CSS stylesheet + + + + + + + + +Description + +The stylesheets are capable of generating a default +CSS stylesheet file. The parameters +make.clean.html and +docbook.css.source control that feature. + +Normally if a default CSS file is generated, then +the stylesheet inserts a link tag in the HTML +HEAD element to reference it. +However, you can omit that link reference if +you set the docbook.css.link to zero +(1 is the default). + +This parameter is useful when you want to import the +default CSS into a custom CSS file generated using the +custom.css.source parameter. + + + + diff --git a/docbook-xsl-1.76.1/params/docbook.css.source.xml b/docbook-xsl-1.76.1/params/docbook.css.source.xml new file mode 100644 index 0000000..8ba7eb7 --- /dev/null +++ b/docbook-xsl-1.76.1/params/docbook.css.source.xml @@ -0,0 +1,83 @@ + + + docbook.css.source + string + + + docbook.css.source + Name of the default CSS input file + + + + docbook.css.xml + + + Description + +The docbook.css.source parameter +specifies the name of the file containing the default DocBook +CSS styles. Those styles are necessary when the +make.clean.html parameter is nonzero. + +The file is a well-formed XML file that +must consist of a single style root +element that contains CSS styles as its text content. +The default value of the parameter (and filename) +is docbook.css.xml. +The stylesheets ship with the default file. You can substitute +your own and specify its path in this parameter. + +If docbook.css.source is not blank, +and make.clean.html is nonzero, then +the stylesheet takes the following actions: + + + + The stylesheet uses the XSLT document() + function to open the file specified by the parameter and + load it into a variable. + + + The stylesheet forms an output pathname consisting of the + value of the base.dir parameter (if it is set) + and the value of docbook.css.source, + with the .xml suffix stripped off. + + + + The stylesheet removes the style + wrapper element and writes just the CSS text content to the output file. + + + The stylesheet adds a link element to the + HTML HEAD element to reference the external CSS stylesheet. + For example: + <link rel="stylesheet" href="docbook.css" type="text/css"> + + However, if the docbook.css.link + parameter is set to zero, then no link is written + for the default CSS file. That is useful if a custom + CSS file will import the default CSS stylesheet to ensure + proper cascading of styles. + + + +If the docbook.css.source parameter +is changed from its default docbook.css.xml to blank, +then no default CSS is generated. Likewise if the +make.clean.html parameter is set to zero, +then no default CSS is generated. The +custom.css.source parameter can be used +instead to generate a complete custom CSS file. + +You can use the generate.css.header +parameter to instead write the CSS to each HTML HEAD +element in a style tag instead of an external CSS file. + + + diff --git a/docbook-xsl-1.76.1/params/double.sided.xml b/docbook-xsl-1.76.1/params/double.sided.xml new file mode 100644 index 0000000..3758f1f --- /dev/null +++ b/docbook-xsl-1.76.1/params/double.sided.xml @@ -0,0 +1,31 @@ + + +double.sided +boolean + + +double.sided +Is the document to be printed double sided? + + + + + + + + +Description + +Double-sided documents are printed with a slightly wider margin +on the binding edge of the page. + +FIXME: The current set of parameters does not take writing direction +into account. + + + diff --git a/docbook-xsl-1.76.1/params/draft.mode.xml b/docbook-xsl-1.76.1/params/draft.mode.xml new file mode 100644 index 0000000..2f62d06 --- /dev/null +++ b/docbook-xsl-1.76.1/params/draft.mode.xml @@ -0,0 +1,36 @@ + + +draft.mode +list +no +yes +maybe + + +draft.mode +Select draft mode + + + + +no + + + +Description + +Selects draft mode. If draft.mode is +yes, the entire document will be treated +as a draft. If it is no, the entire document +will be treated as a final copy. If it is maybe, +individual sections will be treated as draft or final independently, depending +on how their status attribute is set. + + + + diff --git a/docbook-xsl-1.76.1/params/draft.watermark.image.xml b/docbook-xsl-1.76.1/params/draft.watermark.image.xml new file mode 100644 index 0000000..ef053a0 --- /dev/null +++ b/docbook-xsl-1.76.1/params/draft.watermark.image.xml @@ -0,0 +1,27 @@ + + +draft.watermark.image +uri + + +draft.watermark.image +The URI of the image to be used for draft watermarks + + + + +images/draft.png + + + +Description + +The image to be used for draft watermarks. + + + diff --git a/docbook-xsl-1.76.1/params/dry-run.xml b/docbook-xsl-1.76.1/params/dry-run.xml new file mode 100644 index 0000000..dd481c3 --- /dev/null +++ b/docbook-xsl-1.76.1/params/dry-run.xml @@ -0,0 +1,27 @@ + + +dry-run +boolean + + +dry-run +Indicates that no files should be produced + + + + + + +Description +When using the XSLT processor to manage dependencies and construct +the website, this parameter can be used to suppress the generation of +new and updated files. Effectively, this allows you to see what the +stylesheet would do, without actually making any changes. +Only applies when XSLT-based chunking is being used. + + diff --git a/docbook-xsl-1.76.1/params/dynamic.toc.xml b/docbook-xsl-1.76.1/params/dynamic.toc.xml new file mode 100644 index 0000000..232f19e --- /dev/null +++ b/docbook-xsl-1.76.1/params/dynamic.toc.xml @@ -0,0 +1,29 @@ + + +dynamic.toc +boolean + + +dynamic.toc +Dynamic ToCs? + + + + + + + + +Description + +If non-zero, JavaScript is used to make the ToC panel dynamic. +In a dynamic ToC, each section in the ToC can be expanded and collapsed by +clicking on the appropriate image. + + + diff --git a/docbook-xsl-1.76.1/params/ebnf.assignment.xml b/docbook-xsl-1.76.1/params/ebnf.assignment.xml new file mode 100644 index 0000000..5c89748 --- /dev/null +++ b/docbook-xsl-1.76.1/params/ebnf.assignment.xml @@ -0,0 +1,39 @@ + + +ebnf.assignment +rtf + + +ebnf.assignment +The EBNF production assignment operator + + + + + +::= + + + + ::= + + + + + +Description + +The ebnf.assignment parameter determines what +text is used to show assignment in productions +in productionsets. + +While ::= is common, so are several +other operators. + + + diff --git a/docbook-xsl-1.76.1/params/ebnf.statement.terminator.xml b/docbook-xsl-1.76.1/params/ebnf.statement.terminator.xml new file mode 100644 index 0000000..4e8bd12 --- /dev/null +++ b/docbook-xsl-1.76.1/params/ebnf.statement.terminator.xml @@ -0,0 +1,32 @@ + + +ebnf.statement.terminator +rtf + + +ebnf.statement.terminator +Punctuation that ends an EBNF statement. + + + + + + + + + +Description + +The ebnf.statement.terminator parameter determines what +text is used to terminate each production +in productionset. + +Some notations end each statement with a period. + + + diff --git a/docbook-xsl-1.76.1/params/ebnf.table.bgcolor.xml b/docbook-xsl-1.76.1/params/ebnf.table.bgcolor.xml new file mode 100644 index 0000000..747f140 --- /dev/null +++ b/docbook-xsl-1.76.1/params/ebnf.table.bgcolor.xml @@ -0,0 +1,30 @@ + + +ebnf.table.bgcolor +color + + +ebnf.table.bgcolor +Background color for EBNF tables + + + + +#F5DCB3 + + + +Description + +Sets the background color for EBNF tables (a pale brown). No +bgcolor attribute is output if +ebnf.table.bgcolor is set to the null string. + + + + diff --git a/docbook-xsl-1.76.1/params/ebnf.table.border.xml b/docbook-xsl-1.76.1/params/ebnf.table.border.xml new file mode 100644 index 0000000..e4e50ae --- /dev/null +++ b/docbook-xsl-1.76.1/params/ebnf.table.border.xml @@ -0,0 +1,26 @@ + + +ebnf.table.border +boolean + + +ebnf.table.border +Selects border on EBNF tables + + + + + + +Description + +Selects the border on EBNF tables. If non-zero, the tables have +borders, otherwise they don't. + + + diff --git a/docbook-xsl-1.76.1/params/eclipse.autolabel.xml b/docbook-xsl-1.76.1/params/eclipse.autolabel.xml new file mode 100644 index 0000000..622196e --- /dev/null +++ b/docbook-xsl-1.76.1/params/eclipse.autolabel.xml @@ -0,0 +1,28 @@ + + +eclipse.autolabel +boolean + + +eclipse.autolabel +Should tree-like ToC use autonumbering feature? + + + + + + + + +Description + +If you want to include chapter and section numbers into ToC in +the left panel, set this parameter to 1. + + + diff --git a/docbook-xsl-1.76.1/params/eclipse.plugin.id.xml b/docbook-xsl-1.76.1/params/eclipse.plugin.id.xml new file mode 100644 index 0000000..75557e5 --- /dev/null +++ b/docbook-xsl-1.76.1/params/eclipse.plugin.id.xml @@ -0,0 +1,28 @@ + + +eclipse.plugin.id +string + + +eclipse.plugin.id +Eclipse Help plugin id + + + + +com.example.help + + + +Description + +Eclipse Help plugin id. You should change this id to something +unique for each help. + + + diff --git a/docbook-xsl-1.76.1/params/eclipse.plugin.name.xml b/docbook-xsl-1.76.1/params/eclipse.plugin.name.xml new file mode 100644 index 0000000..0df83ec --- /dev/null +++ b/docbook-xsl-1.76.1/params/eclipse.plugin.name.xml @@ -0,0 +1,27 @@ + + +eclipse.plugin.name +string + + +eclipse.plugin.name +Eclipse Help plugin name + + + + +DocBook Online Help Sample + + + +Description + +Eclipse Help plugin name. + + + diff --git a/docbook-xsl-1.76.1/params/eclipse.plugin.provider.xml b/docbook-xsl-1.76.1/params/eclipse.plugin.provider.xml new file mode 100644 index 0000000..03261fe --- /dev/null +++ b/docbook-xsl-1.76.1/params/eclipse.plugin.provider.xml @@ -0,0 +1,27 @@ + + +eclipse.plugin.provider +string + + +eclipse.plugin.provider +Eclipse Help plugin provider name + + + + +Example provider + + + +Description + +Eclipse Help plugin provider name. + + + diff --git a/docbook-xsl-1.76.1/params/editedby.enabled.xml b/docbook-xsl-1.76.1/params/editedby.enabled.xml new file mode 100644 index 0000000..78089f9 --- /dev/null +++ b/docbook-xsl-1.76.1/params/editedby.enabled.xml @@ -0,0 +1,27 @@ + + +editedby.enabled +boolean + + +editedby.enabled +Display “Edited by†heading above editor name? + + + +1 + + +Description + +If non-zero, a localized Edited +by heading is displayed above editor names in output of the +editor element. + + + diff --git a/docbook-xsl-1.76.1/params/email.delimiters.enabled.xml b/docbook-xsl-1.76.1/params/email.delimiters.enabled.xml new file mode 100644 index 0000000..b07cd6d --- /dev/null +++ b/docbook-xsl-1.76.1/params/email.delimiters.enabled.xml @@ -0,0 +1,34 @@ + + +email.delimiters.enabled +boolean + + +email.delimiters.enabled +Generate delimiters around email addresses? + + + + + + + + +Description + +If non-zero, delimiters + +For delimiters, the +stylesheets are currently hard-coded to output angle +brackets. + +are generated around e-mail addresses +(the output of the email element). + + + diff --git a/docbook-xsl-1.76.1/params/email.mailto.enabled.xml b/docbook-xsl-1.76.1/params/email.mailto.enabled.xml new file mode 100644 index 0000000..e4eb8d1 --- /dev/null +++ b/docbook-xsl-1.76.1/params/email.mailto.enabled.xml @@ -0,0 +1,29 @@ + + +email.mailto.enabled +boolean + + +email.mailto.enabled +Generate mailto: links for email addresses? + + + + + + + + +Description + +If non-zero the generated output for the email element +will be a clickable mailto: link that brings up the default mail client +on the system. + + + diff --git a/docbook-xsl-1.76.1/params/emphasis.propagates.style.xml b/docbook-xsl-1.76.1/params/emphasis.propagates.style.xml new file mode 100644 index 0000000..9ff55f5 --- /dev/null +++ b/docbook-xsl-1.76.1/params/emphasis.propagates.style.xml @@ -0,0 +1,26 @@ + + +emphasis.propagates.style +boolean + + +emphasis.propagates.style +Pass emphasis role attribute through to HTML? + + + + + + +Description +If non-zero, the role attribute of +emphasis elements will be passed through to the HTML as a +class attribute on a span that surrounds the +emphasis. + + diff --git a/docbook-xsl-1.76.1/params/entry.propagates.style.xml b/docbook-xsl-1.76.1/params/entry.propagates.style.xml new file mode 100644 index 0000000..7f43c66 --- /dev/null +++ b/docbook-xsl-1.76.1/params/entry.propagates.style.xml @@ -0,0 +1,30 @@ + + +entry.propagates.style +boolean + + +entry.propagates.style +Pass entry role attribute through to HTML? + + + + + + + + +Description + +If true, the role attribute of entry elements +will be passed through to the HTML as a class attribute on the +td or th generated for the table +cell. + + + diff --git a/docbook-xsl-1.76.1/params/epub.autolabel.xml b/docbook-xsl-1.76.1/params/epub.autolabel.xml new file mode 100644 index 0000000..8a64555 --- /dev/null +++ b/docbook-xsl-1.76.1/params/epub.autolabel.xml @@ -0,0 +1,28 @@ + + +epub.autolabel +boolean + + +epub.autolabel +Should tree-like ToC use autonumbering feature? + + + + + + + + +Description + +If you want to include chapter and section numbers into ToC in, +set this parameter to 1. + + + diff --git a/docbook-xsl-1.76.1/params/equation.number.properties.xml b/docbook-xsl-1.76.1/params/equation.number.properties.xml new file mode 100644 index 0000000..6e05d39 --- /dev/null +++ b/docbook-xsl-1.76.1/params/equation.number.properties.xml @@ -0,0 +1,28 @@ + + +equation.number.properties +attribute set + + +equation.number.properties +Properties that apply to the fo:table-cell containing the number +of an equation that does not have a title. + + + + + end + center + + +Description +Properties that apply to the fo:table-cell containing the number +of an equation when it has no title. The number in an equation with a +title is formatted along with the title, and this attribute-set does not apply. + + diff --git a/docbook-xsl-1.76.1/params/equation.properties.xml b/docbook-xsl-1.76.1/params/equation.properties.xml new file mode 100644 index 0000000..a88f683 --- /dev/null +++ b/docbook-xsl-1.76.1/params/equation.properties.xml @@ -0,0 +1,27 @@ + + +equation.properties +attribute set + + +equation.properties +Properties associated with a equation + + + + + + + + +Description + +The styling for equations. + + + diff --git a/docbook-xsl-1.76.1/params/example.properties.xml b/docbook-xsl-1.76.1/params/example.properties.xml new file mode 100644 index 0000000..53e695b --- /dev/null +++ b/docbook-xsl-1.76.1/params/example.properties.xml @@ -0,0 +1,27 @@ + + +example.properties +attribute set + + +example.properties +Properties associated with a example + + + + + + + + +Description + +The styling for examples. + + + diff --git a/docbook-xsl-1.76.1/params/exsl.node.set.available.xml b/docbook-xsl-1.76.1/params/exsl.node.set.available.xml new file mode 100644 index 0000000..c5d009e --- /dev/null +++ b/docbook-xsl-1.76.1/params/exsl.node.set.available.xml @@ -0,0 +1,44 @@ + + +exsl.node.set.available +boolean + + +exsl.node.set.available +Is the test function-available('exsl:node-set') true? + + + + + + 1 + 0 + + + + + +Description + +If non-zero, +then the exsl:node-set() function is available to be used in +the stylesheet. +If zero, then the function is not available. +This param automatically detects the presence of +the function and does not normally need to be set manually. + +This param was created to handle a long-standing +bug in the Xalan processor that fails to detect the +function even though it is available. + + + diff --git a/docbook-xsl-1.76.1/params/feedback.href.xml b/docbook-xsl-1.76.1/params/feedback.href.xml new file mode 100644 index 0000000..bc37daf --- /dev/null +++ b/docbook-xsl-1.76.1/params/feedback.href.xml @@ -0,0 +1,28 @@ + + +feedback.href +uri + + +feedback.href +HREF (URI) for feedback link + + + + + + + + +Description +The feedback.href value is used as the value +for the href attribute on the feedback +link. If feedback.href +is empty, no feedback link is generated. + + diff --git a/docbook-xsl-1.76.1/params/feedback.link.text.xml b/docbook-xsl-1.76.1/params/feedback.link.text.xml new file mode 100644 index 0000000..c80feef --- /dev/null +++ b/docbook-xsl-1.76.1/params/feedback.link.text.xml @@ -0,0 +1,28 @@ + + +feedback.link.text +string + + +feedback.link.text +The text of the feedback link + + + + +Feedback + + + +Description +The contents of this variable is used as the text of the feedback +link if feedback.href is not empty. If +feedback.href is empty, no feedback link is +generated. + + diff --git a/docbook-xsl-1.76.1/params/feedback.with.ids.xml b/docbook-xsl-1.76.1/params/feedback.with.ids.xml new file mode 100644 index 0000000..3edfa26 --- /dev/null +++ b/docbook-xsl-1.76.1/params/feedback.with.ids.xml @@ -0,0 +1,27 @@ + + +feedback.with.ids +boolean + + +feedback.with.ids +Toggle use of IDs in feedback + + + + + + + + +Description +If feedback.with.ids is non-zero, the ID of the +current page will be added to the feedback link. This can be used, for +example, if the feedback.href is a CGI script. + + diff --git a/docbook-xsl-1.76.1/params/figure.properties.xml b/docbook-xsl-1.76.1/params/figure.properties.xml new file mode 100644 index 0000000..e9f6748 --- /dev/null +++ b/docbook-xsl-1.76.1/params/figure.properties.xml @@ -0,0 +1,27 @@ + + +figure.properties +attribute set + + +figure.properties +Properties associated with a figure + + + + + + + + +Description + +The styling for figures. + + + diff --git a/docbook-xsl-1.76.1/params/filename-prefix.xml b/docbook-xsl-1.76.1/params/filename-prefix.xml new file mode 100644 index 0000000..54c043d --- /dev/null +++ b/docbook-xsl-1.76.1/params/filename-prefix.xml @@ -0,0 +1,28 @@ + + +filename-prefix +string + + +filename-prefix +Prefix added to all filenames + + + + + + + + +Description +To produce the text-only (that is, non-tabular) layout +of a website simultaneously with the tabular layout, the filenames have to +be distinguished. That's accomplished by adding the +filename-prefix to the front of each filename. + + diff --git a/docbook-xsl-1.76.1/params/firstterm.only.link.xml b/docbook-xsl-1.76.1/params/firstterm.only.link.xml new file mode 100644 index 0000000..32ea305 --- /dev/null +++ b/docbook-xsl-1.76.1/params/firstterm.only.link.xml @@ -0,0 +1,29 @@ + + +firstterm.only.link +boolean + + +firstterm.only.link +Does automatic glossterm linking only apply to firstterms? + + + + + + + + +Description + +If non-zero, only firstterms will be automatically linked +to the glossary. If glossary linking is not enabled, this parameter +has no effect. + + + diff --git a/docbook-xsl-1.76.1/params/foil.properties.xml b/docbook-xsl-1.76.1/params/foil.properties.xml new file mode 100644 index 0000000..11ad146 --- /dev/null +++ b/docbook-xsl-1.76.1/params/foil.properties.xml @@ -0,0 +1,37 @@ + + +foil.properties +attribute set + + +foil.properties +Specifies properties for all foils + + + + + + + + + 1in + 1in + + + + bold + + + + +Description + +This parameter specifies properties that are applied to all foils. + + + diff --git a/docbook-xsl-1.76.1/params/foil.subtitle.properties.xml b/docbook-xsl-1.76.1/params/foil.subtitle.properties.xml new file mode 100644 index 0000000..4832fbe --- /dev/null +++ b/docbook-xsl-1.76.1/params/foil.subtitle.properties.xml @@ -0,0 +1,36 @@ + + +foil.subtitle.properties +attribute set + + +foil.subtitle.properties +Specifies properties for all foil subtitles + + + + + + + + + center + + pt + + 12pt + + + + +Description + +This parameter specifies properties that are applied to all foil subtitles. + + + diff --git a/docbook-xsl-1.76.1/params/foil.title.master.xml b/docbook-xsl-1.76.1/params/foil.title.master.xml new file mode 100644 index 0000000..f5ba07f --- /dev/null +++ b/docbook-xsl-1.76.1/params/foil.title.master.xml @@ -0,0 +1,29 @@ + + +foil.title.master +number + + +foil.title.master +Specifies unitless font size to use for foil titles + + + + +36 + + + + +Description + +Specifies a unitless font size to use for foil titles; used in +combination with the foil.title.size +parameter. + + diff --git a/docbook-xsl-1.76.1/params/foil.title.size.xml b/docbook-xsl-1.76.1/params/foil.title.size.xml new file mode 100644 index 0000000..3163600 --- /dev/null +++ b/docbook-xsl-1.76.1/params/foil.title.size.xml @@ -0,0 +1,32 @@ + + +foil.title.size +length + + +foil.title.size +Specifies font size to use for foil titles, including units + + + + + + pt + + + + +Description + +This parameter combines the value of the +foil.title.master parameter with a unit +specification. The default unit is pt +(points). + + + diff --git a/docbook-xsl-1.76.1/params/foilgroup.properties.xml b/docbook-xsl-1.76.1/params/foilgroup.properties.xml new file mode 100644 index 0000000..cd9805a --- /dev/null +++ b/docbook-xsl-1.76.1/params/foilgroup.properties.xml @@ -0,0 +1,31 @@ + + +foilgroup.properties +attribute set + + +foilgroup.properties +Specifies properties for all foilgroups + + + + + + + + + + + + +Description + +This parameter specifies properties that are applied to all foilgroups. + + + diff --git a/docbook-xsl-1.76.1/params/foilgroup.toc.xml b/docbook-xsl-1.76.1/params/foilgroup.toc.xml new file mode 100644 index 0000000..31d7cb3 --- /dev/null +++ b/docbook-xsl-1.76.1/params/foilgroup.toc.xml @@ -0,0 +1,29 @@ + + +foilgroup.toc +boolean + + +foilgroup.toc +Put ToC on foilgroup pages? + + + + + + + + +Description + +If non-zero, a ToC will be placed on foilgroup pages (after any +other content). + + + + diff --git a/docbook-xsl-1.76.1/params/footer.column.widths.xml b/docbook-xsl-1.76.1/params/footer.column.widths.xml new file mode 100644 index 0000000..eca2270 --- /dev/null +++ b/docbook-xsl-1.76.1/params/footer.column.widths.xml @@ -0,0 +1,80 @@ + + +footer.column.widths +string + + +footer.column.widths +Specify relative widths of footer areas + + + +1 1 1 + + +Description + +Page footers in print output use a three column table +to position text at the left, center, and right side of +the footer on the page. +This parameter lets you specify the relative sizes of the +three columns. The default value is +"1 1 1". + +The parameter value must be three numbers, separated +by white space. The first number represents the relative +width of the inside footer for +double-sided output. The second number is the relative +width of the center footer. The third number is the +relative width of the outside footer for +double-sided output. + +For single-sided output, the first number is the +relative width of left footer for left-to-right +text direction, or the right footer for right-to-left +text direction. +The third number is the +relative width of right footer for left-to-right +text direction, or the left footer for right-to-left +text direction. + +The numbers are used to specify the column widths +for the table that makes up the footer area. +In the FO output, this looks like: + + + +<fo:table-column column-number="1" + column-width="proportional-column-width(1)"/> + + + +The proportional-column-width() +function computes a column width by dividing its +argument by the total of the arguments for all the columns, and +then multiplying the result by the width of the whole table +(assuming all the column specs use the function). +Its argument can be any positive integer or floating point number. +Zero is an acceptable value, although some FO processors +may warn about it, in which case using a very small number might +be more satisfactory. + + +For example, the value "1 2 1" means the center +footer should have twice the width of the other areas. +A value of "0 0 1" means the entire footer area +is reserved for the right (or outside) footer text. +Note that to keep the center area centered on +the page, the left and right values must be +the same. A specification like "1 2 3" means the +center area is no longer centered on the page +since the right area is three times the width of the left area. + + + + diff --git a/docbook-xsl-1.76.1/params/footer.content.properties.xml b/docbook-xsl-1.76.1/params/footer.content.properties.xml new file mode 100644 index 0000000..1212cbd --- /dev/null +++ b/docbook-xsl-1.76.1/params/footer.content.properties.xml @@ -0,0 +1,34 @@ + + +footer.content.properties +attribute set + + +footer.content.properties +Properties of page footer content + + + + + + + + + + + + + + + +Description + +Properties of page footer content. + + + diff --git a/docbook-xsl-1.76.1/params/footer.hr.xml b/docbook-xsl-1.76.1/params/footer.hr.xml new file mode 100644 index 0000000..d1a5bf8 --- /dev/null +++ b/docbook-xsl-1.76.1/params/footer.hr.xml @@ -0,0 +1,26 @@ + + +footer.hr +boolean + + +footer.hr +Toggle <HR> before footer + + + + + + + + +Description +If non-zero, an <HR> is generated at the bottom of each web page, +before the footer. + + diff --git a/docbook-xsl-1.76.1/params/footer.rule.xml b/docbook-xsl-1.76.1/params/footer.rule.xml new file mode 100644 index 0000000..6b00ade --- /dev/null +++ b/docbook-xsl-1.76.1/params/footer.rule.xml @@ -0,0 +1,27 @@ + + +footer.rule +boolean + + +footer.rule +Rule over footers? + + + + + + + + +Description + +If non-zero, a rule will be drawn above the page footers. + + + diff --git a/docbook-xsl-1.76.1/params/footer.table.height.xml b/docbook-xsl-1.76.1/params/footer.table.height.xml new file mode 100644 index 0000000..2f6c45e --- /dev/null +++ b/docbook-xsl-1.76.1/params/footer.table.height.xml @@ -0,0 +1,32 @@ + + +footer.table.height +length + + +footer.table.height +Specify the minimum height of the table containing the running page footers + + + +14pt + + +Description + +Page footers in print output use a three column table +to position text at the left, center, and right side of +the footer on the page. +This parameter lets you specify the minimum height +of the single row in the table. +Since this specifies only the minimum height, +the table should automatically grow to fit taller content. +The default value is "14pt". + + + diff --git a/docbook-xsl-1.76.1/params/footer.table.properties.xml b/docbook-xsl-1.76.1/params/footer.table.properties.xml new file mode 100644 index 0000000..12e67d3 --- /dev/null +++ b/docbook-xsl-1.76.1/params/footer.table.properties.xml @@ -0,0 +1,30 @@ + + +footer.table.properties +attribute set + + +footer.table.properties +Apply properties to the footer layout table + + + + + + fixed + 100% + + + + +Description + +Properties applied to the table that lays out the page footer. + + + diff --git a/docbook-xsl-1.76.1/params/footers.on.blank.pages.xml b/docbook-xsl-1.76.1/params/footers.on.blank.pages.xml new file mode 100644 index 0000000..2964f78 --- /dev/null +++ b/docbook-xsl-1.76.1/params/footers.on.blank.pages.xml @@ -0,0 +1,27 @@ + + +footers.on.blank.pages +boolean + + +footers.on.blank.pages +Put footers on blank pages? + + + + + + + + +Description + +If non-zero, footers will be placed on blank pages. + + + diff --git a/docbook-xsl-1.76.1/params/footnote.font.size.xml b/docbook-xsl-1.76.1/params/footnote.font.size.xml new file mode 100644 index 0000000..88d0c0b --- /dev/null +++ b/docbook-xsl-1.76.1/params/footnote.font.size.xml @@ -0,0 +1,28 @@ + + +footnote.font.size +length + + +footnote.font.size +The font size for footnotes + + + + + pt + + + +Description + +The footnote font size is used for...footnotes! + + + + diff --git a/docbook-xsl-1.76.1/params/footnote.mark.properties.xml b/docbook-xsl-1.76.1/params/footnote.mark.properties.xml new file mode 100644 index 0000000..2dbc9c1 --- /dev/null +++ b/docbook-xsl-1.76.1/params/footnote.mark.properties.xml @@ -0,0 +1,41 @@ + + +footnote.mark.properties +attribute set + + +footnote.mark.properties +Properties applied to each footnote mark + + + + + + + + 75% + normal + normal + + + + +Description + +This attribute set is applied to the footnote mark used +for each footnote. +It should contain only inline properties. + + +The property to make the mark a superscript is contained in the +footnote template itself, because the current version of FOP reports +an error if baseline-shift is used. + + + + diff --git a/docbook-xsl-1.76.1/params/footnote.number.format.xml b/docbook-xsl-1.76.1/params/footnote.number.format.xml new file mode 100644 index 0000000..c323720 --- /dev/null +++ b/docbook-xsl-1.76.1/params/footnote.number.format.xml @@ -0,0 +1,33 @@ + + +footnote.number.format +list +11,2,3... +AA,B,C... +aa,b,c... +ii,ii,iii... +II,II,III... + + +footnote.number.format +Identifies the format used for footnote numbers + + + + +1 + + + +Description + +The footnote.number.format specifies the format +to use for footnote numeration (1, i, I, a, or A). + + + diff --git a/docbook-xsl-1.76.1/params/footnote.number.symbols.xml b/docbook-xsl-1.76.1/params/footnote.number.symbols.xml new file mode 100644 index 0000000..10ca7d3 --- /dev/null +++ b/docbook-xsl-1.76.1/params/footnote.number.symbols.xml @@ -0,0 +1,39 @@ + + +footnote.number.symbols + + + +footnote.number.symbols +Special characters to use as footnote markers + + + + + + + + +Description + +If footnote.number.symbols is not the empty string, +footnotes will use the characters it contains as footnote symbols. For example, +*&#x2020;&#x2021;&#x25CA;&#x2720; will identify +footnotes with *, †, ‡, +â—Š, and ✠. If there are more footnotes +than symbols, the stylesheets will fall back to numbered footnotes using +footnote.number.format. + +The use of symbols for footnotes depends on the ability of your +processor (or browser) to render the symbols you select. Not all systems are +capable of displaying the full range of Unicode characters. If the quoted characters +in the preceding paragraph are not displayed properly, that's a good indicator +that you may have trouble using those symbols for footnotes. + + + diff --git a/docbook-xsl-1.76.1/params/footnote.properties.xml b/docbook-xsl-1.76.1/params/footnote.properties.xml new file mode 100644 index 0000000..f62adee --- /dev/null +++ b/docbook-xsl-1.76.1/params/footnote.properties.xml @@ -0,0 +1,43 @@ + + +footnote.properties +attribute set + + +footnote.properties +Properties applied to each footnote body + + + + + + + + + normal + normal + + 0pt + 0pt + + wrap + treat-as-space + + + + +Description + +This attribute set is applied to the footnote-block +for each footnote. +It can be used to set the +font-size, font-family, and other inheritable properties that will be +applied to all footnotes. + + + diff --git a/docbook-xsl-1.76.1/params/footnote.sep.leader.properties.xml b/docbook-xsl-1.76.1/params/footnote.sep.leader.properties.xml new file mode 100644 index 0000000..27f9489 --- /dev/null +++ b/docbook-xsl-1.76.1/params/footnote.sep.leader.properties.xml @@ -0,0 +1,39 @@ + + +footnote.sep.leader.properties +attribute set + + +footnote.sep.leader.properties +Properties associated with footnote separators + + + + + + black + rule + 1in + + + + +Description + +The styling for the rule line that separates the +footnotes from the body text. +These are properties applied to the fo:leader used as +the separator. + +If you want to do more than just set properties on +the leader element, then you can customize the template +named footnote.separator in +fo/pagesetup.xsl. + + + diff --git a/docbook-xsl-1.76.1/params/fop.extensions.xml b/docbook-xsl-1.76.1/params/fop.extensions.xml new file mode 100644 index 0000000..e122368 --- /dev/null +++ b/docbook-xsl-1.76.1/params/fop.extensions.xml @@ -0,0 +1,36 @@ + + +fop.extensions +boolean + + +fop.extensions +Enable extensions for FOP version 0.20.5 and earlier + + + + + + +Description + +If non-zero, extensions intended for +FOP +version 0.20.5 and earlier will be used. +At present, this consists of PDF bookmarks. + + +This parameter can also affect which graphics file formats +are supported. + +If you are using a version of FOP beyond +version 0.20.5, then use the fop1.extensions parameter +instead. + + + diff --git a/docbook-xsl-1.76.1/params/fop1.extensions.xml b/docbook-xsl-1.76.1/params/fop1.extensions.xml new file mode 100644 index 0000000..dcbcf5b --- /dev/null +++ b/docbook-xsl-1.76.1/params/fop1.extensions.xml @@ -0,0 +1,34 @@ + + +fop1.extensions +boolean + + +fop1.extensions +Enable extensions for FOP version 0.90 and later + + + + + + +Description + +If non-zero, extensions for +FOP +version 0.90 and later will be used. + + +This parameter can also affect which graphics file formats +are supported. + +The original fop.extensions parameter +should still be used for FOP version 0.20.5 and earlier. + + + diff --git a/docbook-xsl-1.76.1/params/formal.object.properties.xml b/docbook-xsl-1.76.1/params/formal.object.properties.xml new file mode 100644 index 0000000..f36aeaf --- /dev/null +++ b/docbook-xsl-1.76.1/params/formal.object.properties.xml @@ -0,0 +1,36 @@ + + +formal.object.properties +attribute set + + +formal.object.properties +Properties associated with a formal object such as a figure, or other component that has a title + + + + + + 0.5em + 1em + 2em + 0.5em + 1em + 2em + always + + + + +Description + +The styling for formal objects in docbook. Specify the spacing +before and after the object. + + + diff --git a/docbook-xsl-1.76.1/params/formal.procedures.xml b/docbook-xsl-1.76.1/params/formal.procedures.xml new file mode 100644 index 0000000..4f10885 --- /dev/null +++ b/docbook-xsl-1.76.1/params/formal.procedures.xml @@ -0,0 +1,28 @@ + + +formal.procedures +boolean + + +formal.procedures +Selects formal or informal procedures + + + + + + + + +Description + +Formal procedures are numbered and always have a title. + + + + diff --git a/docbook-xsl-1.76.1/params/formal.title.placement.xml b/docbook-xsl-1.76.1/params/formal.title.placement.xml new file mode 100644 index 0000000..e56f200 --- /dev/null +++ b/docbook-xsl-1.76.1/params/formal.title.placement.xml @@ -0,0 +1,41 @@ + + +formal.title.placement +table + + +formal.title.placement +Specifies where formal object titles should occur + + + + + +figure before +example before +equation before +table before +procedure before +task before + + + + +Description + +Specifies where formal object titles should occur. For each formal object +type (figure, +example, +equation, +table, and procedure) +you can specify either the keyword +before or +after. + + + diff --git a/docbook-xsl-1.76.1/params/formal.title.properties.xml b/docbook-xsl-1.76.1/params/formal.title.properties.xml new file mode 100644 index 0000000..898d572 --- /dev/null +++ b/docbook-xsl-1.76.1/params/formal.title.properties.xml @@ -0,0 +1,34 @@ + + +formal.title.properties +attribute set + + +formal.title.properties +Style the title element of formal object such as a figure. + + + + + + bold + + + pt + + false + 0.4em + 0.6em + 0.8em + + + +Description +Specify how the title should be styled. Specify the font size and weight of the title of the formal object. + + diff --git a/docbook-xsl-1.76.1/params/funcsynopsis.decoration.xml b/docbook-xsl-1.76.1/params/funcsynopsis.decoration.xml new file mode 100644 index 0000000..44037c3 --- /dev/null +++ b/docbook-xsl-1.76.1/params/funcsynopsis.decoration.xml @@ -0,0 +1,30 @@ + + +funcsynopsis.decoration +boolean + + +funcsynopsis.decoration +Decorate elements of a funcsynopsis? + + + + + + + + +Description + +If non-zero, elements of the funcsynopsis will be +decorated (e.g. rendered as bold or italic text). The decoration is controlled by +templates that can be redefined in a customization layer. + + + + diff --git a/docbook-xsl-1.76.1/params/funcsynopsis.style.xml b/docbook-xsl-1.76.1/params/funcsynopsis.style.xml new file mode 100644 index 0000000..fc3ad85 --- /dev/null +++ b/docbook-xsl-1.76.1/params/funcsynopsis.style.xml @@ -0,0 +1,31 @@ + + +funcsynopsis.style +list +ansi +kr + + +funcsynopsis.style +What style of funcsynopsis should be generated? + + + +kr + + +Description + +If funcsynopsis.style is ansi, +ANSI-style function synopses are generated for a +funcsynopsis, otherwise K&R-style +function synopses are generated. + + + + diff --git a/docbook-xsl-1.76.1/params/function.parens.xml b/docbook-xsl-1.76.1/params/function.parens.xml new file mode 100644 index 0000000..15d6df0 --- /dev/null +++ b/docbook-xsl-1.76.1/params/function.parens.xml @@ -0,0 +1,29 @@ + + +function.parens +boolean + + +function.parens +Generate parens after a function? + + + + + + + + +Description + +If non-zero, the formatting of a function element +will include generated parentheses. + + + + diff --git a/docbook-xsl-1.76.1/params/generate.css.header.xml b/docbook-xsl-1.76.1/params/generate.css.header.xml new file mode 100644 index 0000000..05965c1 --- /dev/null +++ b/docbook-xsl-1.76.1/params/generate.css.header.xml @@ -0,0 +1,40 @@ + + +generate.css.header +boolean + + +generate.css.header +Insert generated CSS styles in HEAD element + + + + + + + + +Description + +The stylesheets are capable of generating both default +and custom CSS stylesheet files. The parameters +make.clean.html, +docbook.css.source, and +custom.css.source control that feature. + +If you require that CSS styles reside in the HTML +HEAD element instead of external CSS files, +then set the generate.css.header +parameter to nonzero (it is zero by default). +Then instead of generating the CSS in external files, +they are wrapped in style elements in +the HEAD element of each HTML output file. + + + + diff --git a/docbook-xsl-1.76.1/params/generate.id.attributes.xml b/docbook-xsl-1.76.1/params/generate.id.attributes.xml new file mode 100644 index 0000000..6326841 --- /dev/null +++ b/docbook-xsl-1.76.1/params/generate.id.attributes.xml @@ -0,0 +1,59 @@ + + +generate.id.attributes +boolean + + +generate.id.attributes +Generate ID attributes on container elements? + + + + + + + + +Description + +If non-zero, the HTML stylesheet will generate ID attributes on +containers. For example, the markup: + +<section id="foo"><title>Some Title</title> +<para>Some para.</para> +</section> + +might produce: + +<div class="section" id="foo"> +<h2>Some Title</h2> +<p>Some para.</p> +</div> + +The alternative is to generate anchors: + +<div class="section"> +<h2><a name="foo"></a>Some Title</h2> +<p>Some para.</p> +</div> + +Because the name attribute of +the a element and the id +attribute of other tags are both of type ID, producing both +generates invalid documents. + +As of version 1.50, you can use this switch to control which type of +identifier is generated. For backwards-compatibility, generating +a anchors is preferred. + +Note: at present, this switch is incompletely implemented. +Disabling ID attributes will suppress them, but enabling ID attributes +will not suppress the anchors. + + + diff --git a/docbook-xsl-1.76.1/params/generate.index.xml b/docbook-xsl-1.76.1/params/generate.index.xml new file mode 100644 index 0000000..8cab350 --- /dev/null +++ b/docbook-xsl-1.76.1/params/generate.index.xml @@ -0,0 +1,25 @@ + + +generate.index +boolean + + +generate.index +Do you want an index? + + + + + + +Description + +Specify if an index should be generated. + + + diff --git a/docbook-xsl-1.76.1/params/generate.legalnotice.link.xml b/docbook-xsl-1.76.1/params/generate.legalnotice.link.xml new file mode 100644 index 0000000..534e050 --- /dev/null +++ b/docbook-xsl-1.76.1/params/generate.legalnotice.link.xml @@ -0,0 +1,72 @@ + + +generate.legalnotice.link +boolean + + +generate.legalnotice.link +Write legalnotice to separate chunk and generate link? + + + + + + +Description + +If the value of generate.legalnotice.link +is non-zero, the stylesheet: + + + + writes the contents of legalnotice to a separate + HTML file + + + inserts a hyperlink to the legalnotice file + + + adds (in the HTML head) either a single + link or element or multiple + link elements (depending on the value of the + html.head.legalnotice.link.multiple + parameter), with the value or values derived from the + html.head.legalnotice.link.types + parameter + + + + Otherwise, if generate.legalnotice.link is + zero, legalnotice contents are rendered on the title + page. + +The name of the separate HTML file is computed as follows: + + + + If a filename is given by the dbhtml filename +processing instruction, that filename is used. + + + If the legalnotice has an id/xml:id +attribute, and if use.id.as.filename != 0, the filename +is the concatenation of the id value and the value of the html.ext +parameter. + + + If the legalnotice does not have an id/xml:id + attribute, or if use.id.as.filename = 0, the filename is the concatenation of "ln-", +auto-generated id value, and html.ext value. + + + + + + + + diff --git a/docbook-xsl-1.76.1/params/generate.manifest.xml b/docbook-xsl-1.76.1/params/generate.manifest.xml new file mode 100644 index 0000000..b561c36 --- /dev/null +++ b/docbook-xsl-1.76.1/params/generate.manifest.xml @@ -0,0 +1,27 @@ + + + generate.manifest + boolean + + + generate.manifest + Generate a manifest file? + + + + + + + Description + + If non-zero, a list of HTML files generated by the + stylesheet transformation is written to the file named by + the manifest parameter. + + + diff --git a/docbook-xsl-1.76.1/params/generate.meta.abstract.xml b/docbook-xsl-1.76.1/params/generate.meta.abstract.xml new file mode 100644 index 0000000..d3ca138 --- /dev/null +++ b/docbook-xsl-1.76.1/params/generate.meta.abstract.xml @@ -0,0 +1,29 @@ + + +generate.meta.abstract +boolean + + +generate.meta.abstract +Generate HTML META element from abstract? + + + + + + + + +Description + +If non-zero, document abstracts will be reproduced in the HTML +head, with >meta name="description" content="..." + + + + diff --git a/docbook-xsl-1.76.1/params/generate.revhistory.link.xml b/docbook-xsl-1.76.1/params/generate.revhistory.link.xml new file mode 100644 index 0000000..bd70cd9 --- /dev/null +++ b/docbook-xsl-1.76.1/params/generate.revhistory.link.xml @@ -0,0 +1,50 @@ + + +generate.revhistory.link +boolean + + +generate.revhistory.link +Write revhistory to separate chunk and generate link? + + + + + + +Description + +If non-zero, the contents of revhistory are written +to a separate HTML file and a link to the file is +generated. Otherwise, revhistory contents are rendered on +the title page. + +The name of the separate HTML file is computed as follows: + + + + If a filename is given by the dbhtml filename processing instruction, +that filename is used. + + + If the revhistory has an id/xml:id +attribute, and if use.id.as.filename != 0, the filename is the concatenation of +the id value and the value of the html.ext parameter. + + + If the revhistory does not have an id/xml:id +attribute, or if use.id.as.filename = 0, the filename is the concatenation of "rh-", +auto-generated id value, and html.ext value. + + + + + + + + diff --git a/docbook-xsl-1.76.1/params/generate.section.toc.level.xml b/docbook-xsl-1.76.1/params/generate.section.toc.level.xml new file mode 100644 index 0000000..227735a --- /dev/null +++ b/docbook-xsl-1.76.1/params/generate.section.toc.level.xml @@ -0,0 +1,35 @@ + + +generate.section.toc.level +integer + + +generate.section.toc.level +Control depth of TOC generation in sections + + + + + + + + +Description + +The generate.section.toc.level parameter +controls the depth of section in which TOCs will be generated. Note +that this is related to, but not the same as +toc.section.depth, which controls the depth to +which TOC entries will be generated in a given TOC. +If, for example, generate.section.toc.level +is 3, TOCs will be generated in first, second, and third +level sections, but not in fourth level sections. + + + + diff --git a/docbook-xsl-1.76.1/params/generate.toc.xml b/docbook-xsl-1.76.1/params/generate.toc.xml new file mode 100644 index 0000000..d23c45e --- /dev/null +++ b/docbook-xsl-1.76.1/params/generate.toc.xml @@ -0,0 +1,108 @@ + + +generate.toc +table + + +generate.toc +Control generation of ToCs and LoTs + + + + + +appendix toc,title +article/appendix nop +article toc,title +book toc,title,figure,table,example,equation +chapter toc,title +part toc,title +preface toc,title +qandadiv toc +qandaset toc +reference toc,title +sect1 toc +sect2 toc +sect3 toc +sect4 toc +sect5 toc +section toc +set toc,title + + +/appendix toc,title +article/appendix nop +/article toc,title +book toc,title,figure,table,example,equation +/chapter toc,title +part toc,title +/preface toc,title +reference toc,title +/sect1 toc +/sect2 toc +/sect3 toc +/sect4 toc +/sect5 toc +/section toc +set toc,title + + + + +Description + +This parameter has a structured value. It is a table of space-delimited +path/value pairs. Each path identifies some element in the source document +using a restricted subset of XPath (only the implicit child axis, no wildcards, +no predicates). Paths can be either relative or absolute. + +When processing a particular element, the stylesheets consult this table to +determine if a ToC (or LoT(s)) should be generated. + +For example, consider the entry: + +book toc,figure + +This indicates that whenever a book is formatted, a +Table Of Contents and a List of Figures should be generated. Similarly, + +/chapter toc + +indicates that whenever a document that has a root +of chapter is formatted, a Table of +Contents should be generated. The entry chapter would match +all chapters, but /chapter matches only chapter +document elements. + +Generally, the longest match wins. So, for example, if you want to distinguish +articles in books from articles in parts, you could use these two entries: + +book/article toc,figure +part/article toc + +Note that an article in a part can never match a book/article, +so if you want nothing to be generated for articles in parts, you can simply leave +that rule out. + +If you want to leave the rule in, to make it explicit that you're turning +something off, use the value nop. For example, the following +entry disables ToCs and LoTs for articles: + +article nop + +Do not simply leave the word article in the file +without a matching value. That'd be just begging the silly little +path/value parser to get confused. + +Section ToCs are further controlled by the +generate.section.toc.level parameter. +For a given section level to have a ToC, it must have both an entry in +generate.toc and be within the range enabled by +generate.section.toc.level. + + diff --git a/docbook-xsl-1.76.1/params/glossary.as.blocks.xml b/docbook-xsl-1.76.1/params/glossary.as.blocks.xml new file mode 100644 index 0000000..e18ed19 --- /dev/null +++ b/docbook-xsl-1.76.1/params/glossary.as.blocks.xml @@ -0,0 +1,38 @@ + + +glossary.as.blocks +boolean + + +glossary.as.blocks +Present glossarys using blocks instead of lists? + + + + + + + + +Description + +If non-zero, glossarys will be formatted as +blocks. + +If you have long glossterms, proper list +markup in the FO case may produce unattractive lists. By setting this +parameter, you can force the stylesheets to produce block markup +instead of proper lists. + +You can override this setting with a processing instruction as the +child of glossary: dbfo +glossary-presentation="blocks" or dbfo +glossary-presentation="list" + + + diff --git a/docbook-xsl-1.76.1/params/glossary.collection.xml b/docbook-xsl-1.76.1/params/glossary.collection.xml new file mode 100644 index 0000000..6f9828b --- /dev/null +++ b/docbook-xsl-1.76.1/params/glossary.collection.xml @@ -0,0 +1,252 @@ + + +glossary.collection +string + + +glossary.collection +Name of the glossary collection file + + + + + + + + +Description + +Glossaries maintained independently across a set of documents +are likely to become inconsistent unless considerable effort is +expended to keep them in sync. It makes much more sense, usually, to +store all of the glossary entries in a single place and simply +extract the ones you need in each document. + +That's the purpose of the +glossary.collection parameter. To setup a global +glossary database, follow these steps: + +Setting Up the Glossary Database + +First, create a stand-alone glossary document that contains all of +the entries that you wish to reference. Make sure that each glossary +entry has an ID. + +Here's an example glossary: + + + +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE glossary + PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN" + "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd"> +<glossary> +<glossaryinfo> +<editor><firstname>Eric</firstname><surname>Raymond</surname></editor> +<title>Jargon File 4.2.3 (abridged)</title> +<releaseinfo>Just some test data</releaseinfo> +</glossaryinfo> + +<glossdiv><title>0</title> + +<glossentry> +<glossterm>0</glossterm> +<glossdef> +<para>Numeric zero, as opposed to the letter `O' (the 15th letter of +the English alphabet). In their unmodified forms they look a lot +alike, and various kluges invented to make them visually distinct have +compounded the confusion. If your zero is center-dotted and letter-O +is not, or if letter-O looks almost rectangular but zero looks more +like an American football stood on end (or the reverse), you're +probably looking at a modern character display (though the dotted zero +seems to have originated as an option on IBM 3270 controllers). If +your zero is slashed but letter-O is not, you're probably looking at +an old-style ASCII graphic set descended from the default typewheel on +the venerable ASR-33 Teletype (Scandinavians, for whom /O is a letter, +curse this arrangement). (Interestingly, the slashed zero long +predates computers; Florian Cajori's monumental "A History of +Mathematical Notations" notes that it was used in the twelfth and +thirteenth centuries.) If letter-O has a slash across it and the zero +does not, your display is tuned for a very old convention used at IBM +and a few other early mainframe makers (Scandinavians curse <emphasis>this</emphasis> +arrangement even more, because it means two of their letters collide). +Some Burroughs/Unisys equipment displays a zero with a <emphasis>reversed</emphasis> +slash. Old CDC computers rendered letter O as an unbroken oval and 0 +as an oval broken at upper right and lower left. And yet another +convention common on early line printers left zero unornamented but +added a tail or hook to the letter-O so that it resembled an inverted +Q or cursive capital letter-O (this was endorsed by a draft ANSI +standard for how to draw ASCII characters, but the final standard +changed the distinguisher to a tick-mark in the upper-left corner). +Are we sufficiently confused yet?</para> +</glossdef> +</glossentry> + +<glossentry> +<glossterm>1TBS</glossterm> +<glossdef> +<para role="accidence"> +<phrase role="pronounce"></phrase> +<phrase role="partsofspeach">n</phrase> +</para> +<para>The "One True Brace Style"</para> +<glossseealso>indent style</glossseealso> +</glossdef> +</glossentry> + +<!-- ... --> + +</glossdiv> + +<!-- ... --> + +</glossary> + + + + +Marking Up Glossary Terms + +That takes care of the glossary database, now you have to get the entries +into your document. Unlike bibliography entries, which can be empty, creating +placeholder glossary entries would be very tedious. So instead, +support for glossary.collection relies on implicit linking. + +In your source document, simply use firstterm and +glossterm to identify the terms you wish to have included +in the glossary. The stylesheets assume that you will either set the +baseform attribute correctly, or that the +content of the element exactly matches a term in your glossary. + +If you're using a glossary.collection, don't +make explicit links on the terms in your document. + +So, in your document, you might write things like this: + + +<para>This is dummy text, without any real meaning. +The point is simply to reference glossary terms like <glossterm>0</glossterm> +and the <firstterm baseform="1TBS">One True Brace Style (1TBS)</firstterm>. +The <glossterm>1TBS</glossterm>, as you can probably imagine, is a nearly +religious issue.</para> + + +If you set the firstterm.only.link parameter, +only the terms marked with firstterm will be links. +Otherwise, all the terms will be linked. + + + +Marking Up the Glossary + +The glossary itself has to be identified for the stylesheets. For lack +of a better choice, the role is used. +To identify the glossary as the target for automatic processing, set +the role to auto. The title of this +glossary (and any other information from the glossaryinfo +that's rendered by your stylesheet) will be displayed, but the entries will +come from the database. + + +Unfortunately, the glossary can't be empty, so you must put in +at least one glossentry. The content of this entry +is irrelevant, it will not be rendered: + + +<glossary role="auto"> +<glossentry> +<glossterm>Irrelevant</glossterm> +<glossdef> +<para>If you can see this, the document was processed incorrectly. Use +the <parameter>glossary.collection</parameter> parameter.</para> +</glossdef> +</glossentry> +</glossary> + + +What about glossary divisions? If your glossary database has glossary +divisions and your automatic glossary contains at least +one glossdiv, the automic glossary will have divisions. +If the glossdiv is missing from either location, no divisions +will be rendered. + +Glossary entries (and divisions, if appropriate) in the glossary will +occur in precisely the order they occur in your database. + + + +Formatting the Document + +Finally, when you are ready to format your document, simply set the +glossary.collection parameter (in either a +customization layer or directly through your processor's interface) to +point to your global glossary. + +The stylesheets will format the glossary in your document as if +all of the entries implicilty referenced appeared there literally. + + +Limitations + +Glossary cross-references within the glossary are +not supported. For example, this will not work: + + +<glossentry> +<glossterm>gloss-1</glossterm> +<glossdef><para>A description that references <glossterm>gloss-2</glossterm>.</para> +<glossseealso>gloss-2</glossseealso> +</glossdef> +</glossentry> + + +If you put glossary cross-references in your glossary that way, +you'll get the cryptic error: Warning: +glossary.collection specified, but there are 0 automatic +glossaries. + +Instead, you must do two things: + + + +Markup your glossary using glossseealso: + + +<glossentry> +<glossterm>gloss-1</glossterm> +<glossdef><para>A description that references <glossterm>gloss-2</glossterm>.</para> +<glossseealso>gloss-2</glossseealso> +</glossdef> +</glossentry> + + + + +Make sure there is at least one glossterm reference to +gloss-2 in your document. The +easiest way to do that is probably within a remark in your +automatic glossary: + + +<glossary role="auto"> +<remark>Make sure there's a reference to <glossterm>gloss-2</glossterm>.</remark> +<glossentry> +<glossterm>Irrelevant</glossterm> +<glossdef> +<para>If you can see this, the document was processed incorrectly. Use +the <parameter>glossary.collection</parameter> parameter.</para> +</glossdef> +</glossentry> +</glossary> + + + + + + + diff --git a/docbook-xsl-1.76.1/params/glossary.sort.xml b/docbook-xsl-1.76.1/params/glossary.sort.xml new file mode 100644 index 0000000..216130a --- /dev/null +++ b/docbook-xsl-1.76.1/params/glossary.sort.xml @@ -0,0 +1,32 @@ + + +glossary.sort +boolean + + +glossary.sort +Sort glossentry elements? + + + + + + + + +Description + +If non-zero, then the glossentry elements within a +glossary, glossdiv, or glosslist are sorted on the glossterm, using +the current lang setting. If zero (the default), then +glossentry elements are not sorted and are presented +in document order. + + + + diff --git a/docbook-xsl-1.76.1/params/glossdef.block.properties.xml b/docbook-xsl-1.76.1/params/glossdef.block.properties.xml new file mode 100644 index 0000000..4fb481f --- /dev/null +++ b/docbook-xsl-1.76.1/params/glossdef.block.properties.xml @@ -0,0 +1,32 @@ + + +glossdef.block.properties +attribute set + + +glossdef.block.properties +To add properties to the block of a glossary definition. + + + + + .25in + + + +Description +These properties are added to the block containing a +glossary definition in a glossary when +the glossary.as.blocks parameter +is non-zero. +Use this attribute-set to set the space above and below, +any font properties, +and any indent for the glossary definition. + + + diff --git a/docbook-xsl-1.76.1/params/glossdef.list.properties.xml b/docbook-xsl-1.76.1/params/glossdef.list.properties.xml new file mode 100644 index 0000000..ba71578 --- /dev/null +++ b/docbook-xsl-1.76.1/params/glossdef.list.properties.xml @@ -0,0 +1,30 @@ + + +glossdef.list.properties +attribute set + + +glossdef.list.properties +To add properties to the glossary definition in a list. + + + + + + + + +Description +These properties are added to the block containing a +glossary definition in a glossary when +the glossary.as.blocks parameter +is zero. +Use this attribute-set to set font properties, for example. + + + diff --git a/docbook-xsl-1.76.1/params/glossentry.list.item.properties.xml b/docbook-xsl-1.76.1/params/glossentry.list.item.properties.xml new file mode 100644 index 0000000..6830f17 --- /dev/null +++ b/docbook-xsl-1.76.1/params/glossentry.list.item.properties.xml @@ -0,0 +1,32 @@ + + +glossentry.list.item.properties +attribute set + + +glossentry.list.item.properties +To add properties to each glossentry in a list. + + + + + 1em + 0.8em + 1.2em + + + +Description +These properties are added to the fo:list-item containing a +glossentry in a glossary when the glossary.as.blocks parameter +is zero. +Use this attribute-set to set +spacing between entries, for example. + + + diff --git a/docbook-xsl-1.76.1/params/glossentry.show.acronym.xml b/docbook-xsl-1.76.1/params/glossentry.show.acronym.xml new file mode 100644 index 0000000..9736438 --- /dev/null +++ b/docbook-xsl-1.76.1/params/glossentry.show.acronym.xml @@ -0,0 +1,37 @@ + + +glossentry.show.acronym +list +no +yes +primary + + +glossentry.show.acronym +Display glossentry acronyms? + + + + +no + + + +Description + +A setting of yes means they should be displayed; +no means they shouldn't. If primary is used, +then they are shown as the primary text for the entry. + + +This setting controls both acronym and +abbrev elements in the glossentry. + + + + diff --git a/docbook-xsl-1.76.1/params/glosslist.as.blocks.xml b/docbook-xsl-1.76.1/params/glosslist.as.blocks.xml new file mode 100644 index 0000000..d720837 --- /dev/null +++ b/docbook-xsl-1.76.1/params/glosslist.as.blocks.xml @@ -0,0 +1,27 @@ + + +glosslist.as.blocks +boolean + + +glosslist.as.blocks +Use blocks for glosslists? + + + + + + + + +Description + +See glossary.as.blocks. + + + diff --git a/docbook-xsl-1.76.1/params/glossterm.auto.link.xml b/docbook-xsl-1.76.1/params/glossterm.auto.link.xml new file mode 100644 index 0000000..03d9a30 --- /dev/null +++ b/docbook-xsl-1.76.1/params/glossterm.auto.link.xml @@ -0,0 +1,33 @@ + + +glossterm.auto.link +boolean + + +glossterm.auto.link +Generate links from glossterm to glossentry automatically? + + + + + + + + +Description + +If non-zero, links from inline glossterms to the corresponding +glossentry elements in a glossary or glosslist +will be automatically generated. This is useful when your glossterms are consistent +and you don't want to add links manually. + +The automatic link generation feature is not used on glossterm elements +that have a linkend attribute. + + + diff --git a/docbook-xsl-1.76.1/params/glossterm.block.properties.xml b/docbook-xsl-1.76.1/params/glossterm.block.properties.xml new file mode 100644 index 0000000..84e6a6c --- /dev/null +++ b/docbook-xsl-1.76.1/params/glossterm.block.properties.xml @@ -0,0 +1,35 @@ + + +glossterm.block.properties +attribute set + + +glossterm.block.properties +To add properties to the block of a glossentry's glossterm. + + + + + 1em + 0.8em + 1.2em + always + always + + + +Description +These properties are added to the block containing a +glossary term in a glossary when the glossary.as.blocks parameter +is non-zero. +Use this attribute-set to set the space above and below, +font properties, +and any indent for the glossary term. + + + diff --git a/docbook-xsl-1.76.1/params/glossterm.list.properties.xml b/docbook-xsl-1.76.1/params/glossterm.list.properties.xml new file mode 100644 index 0000000..abe0d31 --- /dev/null +++ b/docbook-xsl-1.76.1/params/glossterm.list.properties.xml @@ -0,0 +1,30 @@ + + +glossterm.list.properties +attribute set + + +glossterm.list.properties +To add properties to the glossterm in a list. + + + + + + + + +Description +These properties are added to the block containing a +glossary term in a glossary when the glossary.as.blocks parameter +is zero. +Use this attribute-set to set +font properties, for example. + + + diff --git a/docbook-xsl-1.76.1/params/glossterm.separation.xml b/docbook-xsl-1.76.1/params/glossterm.separation.xml new file mode 100644 index 0000000..d0d2b8d --- /dev/null +++ b/docbook-xsl-1.76.1/params/glossterm.separation.xml @@ -0,0 +1,31 @@ + + +glossterm.separation +length + + +glossterm.separation +Separation between glossary terms and descriptions in list mode + + + + +0.25in + + + +Description + +Specifies the miminum horizontal +separation between glossary terms and descriptions when +they are presented side-by-side using lists +when the glossary.as.blocks +is zero. + + + diff --git a/docbook-xsl-1.76.1/params/glossterm.width.xml b/docbook-xsl-1.76.1/params/glossterm.width.xml new file mode 100644 index 0000000..0cd3b82 --- /dev/null +++ b/docbook-xsl-1.76.1/params/glossterm.width.xml @@ -0,0 +1,28 @@ + + +glossterm.width +length + + +glossterm.width +Width of glossterm in list presentation mode + + + + +2in + + + +Description + +This parameter specifies the width reserved for glossary terms when +a list presentation is used. + + + diff --git a/docbook-xsl-1.76.1/params/graphic.default.extension.xml b/docbook-xsl-1.76.1/params/graphic.default.extension.xml new file mode 100644 index 0000000..93f2983 --- /dev/null +++ b/docbook-xsl-1.76.1/params/graphic.default.extension.xml @@ -0,0 +1,29 @@ + + +graphic.default.extension +string + + +graphic.default.extension +Default extension for graphic filenames + + + + + + +Description + +If a graphic or mediaobject +includes a reference to a filename that does not include an extension, +and the format attribute is +unspecified, the default extension will be used. + + + + diff --git a/docbook-xsl-1.76.1/params/graphical.admonition.properties.xml b/docbook-xsl-1.76.1/params/graphical.admonition.properties.xml new file mode 100644 index 0000000..ca257d7 --- /dev/null +++ b/docbook-xsl-1.76.1/params/graphical.admonition.properties.xml @@ -0,0 +1,42 @@ + + +graphical.admonition.properties +attribute set + + +graphical.admonition.properties +To add properties to the outer block of a graphical admonition. + + + + + 1em + 0.8em + 1.2em + 1em + 0.8em + 1.2em + + + +Description +These properties are added to the outer block containing the +entire graphical admonition, including its title. +It is used when the parameter +admon.graphics is set to nonzero. +Use this attribute-set to set the space above and below, +and any indent for the whole admonition. + +In addition to these properties, a graphical admonition +also applies the admonition.title.properties +attribute-set to the title, and applies the +admonition.properties attribute-set +to the rest of the content. + + + diff --git a/docbook-xsl-1.76.1/params/graphics.dir.xml b/docbook-xsl-1.76.1/params/graphics.dir.xml new file mode 100644 index 0000000..e8d83ae --- /dev/null +++ b/docbook-xsl-1.76.1/params/graphics.dir.xml @@ -0,0 +1,33 @@ + + +graphics.dir +uri + + +graphics.dir +Graphics directory + + + + + + + + +Description + +Identifies the graphics directory for the navigation components +generated on all the slides. This parameter can be set in the source +document with the <?dbhtml?> pseudo-attribute +graphics-dir. + +If non-empty, this value is prepended to each of the graphic +image paths. + + + diff --git a/docbook-xsl-1.76.1/params/graphicsize.extension.xml b/docbook-xsl-1.76.1/params/graphicsize.extension.xml new file mode 100644 index 0000000..c4da7e1 --- /dev/null +++ b/docbook-xsl-1.76.1/params/graphicsize.extension.xml @@ -0,0 +1,30 @@ + + +graphicsize.extension +boolean + + +graphicsize.extension +Enable the getWidth()/getDepth() extension functions + + + + + + + + +Description + +If non-zero (and if use.extensions is non-zero +and if you're using a processor that supports extension functions), the +getWidth and getDepth functions +will be used to extract image sizes from graphics. + + + diff --git a/docbook-xsl-1.76.1/params/graphicsize.use.img.src.path.xml b/docbook-xsl-1.76.1/params/graphicsize.use.img.src.path.xml new file mode 100644 index 0000000..aff5b30 --- /dev/null +++ b/docbook-xsl-1.76.1/params/graphicsize.use.img.src.path.xml @@ -0,0 +1,30 @@ + + +graphicsize.use.img.src.path +boolean + + +graphicsize.use.img.src.path +Prepend img.src.path before +filenames passed to extension functions + + + + + + + + +Description + +If non-zero img.src.path parameter will +be appended before filenames passed to extension functions for +measuring image dimensions. + + + diff --git a/docbook-xsl-1.76.1/params/header.column.widths.xml b/docbook-xsl-1.76.1/params/header.column.widths.xml new file mode 100644 index 0000000..7d85b96 --- /dev/null +++ b/docbook-xsl-1.76.1/params/header.column.widths.xml @@ -0,0 +1,80 @@ + + +header.column.widths +string + + +header.column.widths +Specify relative widths of header areas + + + +1 1 1 + + +Description + +Page headers in print output use a three column table +to position text at the left, center, and right side of +the header on the page. +This parameter lets you specify the relative sizes of the +three columns. The default value is +"1 1 1". + +The parameter value must be three numbers, separated +by white space. The first number represents the relative +width of the inside header for +double-sided output. The second number is the relative +width of the center header. The third number is the +relative width of the outside header for +double-sided output. + +For single-sided output, the first number is the +relative width of left header for left-to-right +text direction, or the right header for right-to-left +text direction. +The third number is the +relative width of right header for left-to-right +text direction, or the left header for right-to-left +text direction. + +The numbers are used to specify the column widths +for the table that makes up the header area. +In the FO output, this looks like: + + + +<fo:table-column column-number="1" + column-width="proportional-column-width(1)"/> + + + +The proportional-column-width() +function computes a column width by dividing its +argument by the total of the arguments for all the columns, and +then multiplying the result by the width of the whole table +(assuming all the column specs use the function). +Its argument can be any positive integer or floating point number. +Zero is an acceptable value, although some FO processors +may warn about it, in which case using a very small number might +be more satisfactory. + + +For example, the value "1 2 1" means the center +header should have twice the width of the other areas. +A value of "0 0 1" means the entire header area +is reserved for the right (or outside) header text. +Note that to keep the center area centered on +the page, the left and right values must be +the same. A specification like "1 2 3" means the +center area is no longer centered on the page +since the right area is three times the width of the left area. + + + + diff --git a/docbook-xsl-1.76.1/params/header.content.properties.xml b/docbook-xsl-1.76.1/params/header.content.properties.xml new file mode 100644 index 0000000..2d0291c --- /dev/null +++ b/docbook-xsl-1.76.1/params/header.content.properties.xml @@ -0,0 +1,34 @@ + + +header.content.properties +attribute set + + +header.content.properties +Properties of page header content + + + + + + + + + + + + + + + +Description + +Properties of page header content. + + + diff --git a/docbook-xsl-1.76.1/params/header.hr.xml b/docbook-xsl-1.76.1/params/header.hr.xml new file mode 100644 index 0000000..08d846a --- /dev/null +++ b/docbook-xsl-1.76.1/params/header.hr.xml @@ -0,0 +1,26 @@ + + +header.hr +boolean + + +header.hr +Toggle <HR> after header + + + + + + + + +Description +If non-zero, an <HR> is generated at the bottom of each web page, +before the footer. + + diff --git a/docbook-xsl-1.76.1/params/header.rule.xml b/docbook-xsl-1.76.1/params/header.rule.xml new file mode 100644 index 0000000..b4c031e --- /dev/null +++ b/docbook-xsl-1.76.1/params/header.rule.xml @@ -0,0 +1,27 @@ + + +header.rule +boolean + + +header.rule +Rule under headers? + + + + + + + + +Description + +If non-zero, a rule will be drawn below the page headers. + + + diff --git a/docbook-xsl-1.76.1/params/header.table.height.xml b/docbook-xsl-1.76.1/params/header.table.height.xml new file mode 100644 index 0000000..69b6f08 --- /dev/null +++ b/docbook-xsl-1.76.1/params/header.table.height.xml @@ -0,0 +1,32 @@ + + +header.table.height +length + + +header.table.height +Specify the minimum height of the table containing the running page headers + + + +14pt + + +Description + +Page headers in print output use a three column table +to position text at the left, center, and right side of +the header on the page. +This parameter lets you specify the minimum height +of the single row in the table. +Since this specifies only the minimum height, +the table should automatically grow to fit taller content. +The default value is "14pt". + + + diff --git a/docbook-xsl-1.76.1/params/header.table.properties.xml b/docbook-xsl-1.76.1/params/header.table.properties.xml new file mode 100644 index 0000000..b5f6052 --- /dev/null +++ b/docbook-xsl-1.76.1/params/header.table.properties.xml @@ -0,0 +1,30 @@ + + +header.table.properties +attribute set + + +header.table.properties +Apply properties to the header layout table + + + + + + fixed + 100% + + + + +Description + +Properties applied to the table that lays out the page header. + + + diff --git a/docbook-xsl-1.76.1/params/headers.on.blank.pages.xml b/docbook-xsl-1.76.1/params/headers.on.blank.pages.xml new file mode 100644 index 0000000..1fad48e --- /dev/null +++ b/docbook-xsl-1.76.1/params/headers.on.blank.pages.xml @@ -0,0 +1,27 @@ + + +headers.on.blank.pages +boolean + + +headers.on.blank.pages +Put headers on blank pages? + + + + + + + + +Description + +If non-zero, headers will be placed on blank pages. + + + diff --git a/docbook-xsl-1.76.1/params/hidetoc.image.xml b/docbook-xsl-1.76.1/params/hidetoc.image.xml new file mode 100644 index 0000000..705b61f --- /dev/null +++ b/docbook-xsl-1.76.1/params/hidetoc.image.xml @@ -0,0 +1,29 @@ + + +hidetoc.image +filename + + +hidetoc.image +Hide ToC image + + + + +hidetoc.gif + + + +Description + +Specifies the filename of the hide ToC image. This is used +when the ToC hide/show parameter is +enabled. + + + diff --git a/docbook-xsl-1.76.1/params/highlight.default.language.xml b/docbook-xsl-1.76.1/params/highlight.default.language.xml new file mode 100644 index 0000000..0f00103 --- /dev/null +++ b/docbook-xsl-1.76.1/params/highlight.default.language.xml @@ -0,0 +1,27 @@ + + +highlight.default.language +string + + +highlight.default.language +Default language of programlisting + + + + + + + + +Description + +This language is used when there is no language attribute on programlisting. + + + diff --git a/docbook-xsl-1.76.1/params/highlight.source.xml b/docbook-xsl-1.76.1/params/highlight.source.xml new file mode 100644 index 0000000..41d7b2f --- /dev/null +++ b/docbook-xsl-1.76.1/params/highlight.source.xml @@ -0,0 +1,82 @@ + + +highlight.source +boolean + + +highlight.source +Should the content of programlisting +be syntactically highlighted? + + + + + + + + +Description + +When this parameter is non-zero, the stylesheets will try to do syntax highlighting of the +content of programlisting elements. You specify the language for each programlisting +by using the language attribute. The highlight.default.language +parameter can be used to specify the language for programlistings without a language +attribute. Syntax highlighting also works for screen and synopsis elements. + +The actual highlighting work is done by the XSLTHL extension module. This is an external Java library that has to be +downloaded separately (see below). + + +In order to use this extension, you must + +add xslthl-2.x.x.jar to your Java classpath. The latest version is available +from the XSLT syntax highlighting project +at SourceForge. + + +use a customization layer in which you import one of the following stylesheet modules: + + + html/highlight.xsl + + + + xhtml/highlight.xsl + + + + xhtml-1_1/highlight.xsl + + + + fo/highlight.xsl + + + + + +let either the xslthl.config Java system property or the +highlight.xslthl.config parameter point to the configuration file for syntax +highlighting (using URL syntax). DocBook XSL comes with a ready-to-use configuration file, +highlighting/xslthl-config.xml. + + + +The extension works with Saxon 6.5.x and Xalan-J. (Saxon 8.5 or later is also supported, but since it is +an XSLT 2.0 processor it is not guaranteed to work with DocBook XSL in all circumstances.) + +The following is an example of a Saxon 6 command adapted for syntax highlighting, to be used on Windows: + + +java -cp c:/Java/saxon.jar;c:/Java/xslthl-2.0.1.jar +-Dxslthl.config=file:///c:/docbook-xsl/highlighting/xslthl-config.xml com.icl.saxon.StyleSheet +-o test.html test.xml myhtml.xsl + + + + diff --git a/docbook-xsl-1.76.1/params/highlight.xslthl.config.xml b/docbook-xsl-1.76.1/params/highlight.xslthl.config.xml new file mode 100644 index 0000000..451937c --- /dev/null +++ b/docbook-xsl-1.76.1/params/highlight.xslthl.config.xml @@ -0,0 +1,33 @@ + + +highlight.xslthl.config +uri + + +highlight.xslthl.config +Location of XSLTHL configuration file + + + + + + + + +Description + +This location has precedence over the corresponding Java property. + +Please note that usually you have to specify location as URL not +just as a simple path on the local +filesystem. E.g. file:///home/user/xslthl/my-xslthl-config.xml. + + + + + diff --git a/docbook-xsl-1.76.1/params/home.image.xml b/docbook-xsl-1.76.1/params/home.image.xml new file mode 100644 index 0000000..22e5455 --- /dev/null +++ b/docbook-xsl-1.76.1/params/home.image.xml @@ -0,0 +1,27 @@ + + +home.image +filename + + +home.image +Home image + + + + +active/nav-home.png + + + +Description + +Specifies the filename of the home navigation icon. + + + diff --git a/docbook-xsl-1.76.1/params/html.append.xml b/docbook-xsl-1.76.1/params/html.append.xml new file mode 100644 index 0000000..461e61b --- /dev/null +++ b/docbook-xsl-1.76.1/params/html.append.xml @@ -0,0 +1,30 @@ + + +html.append +string + + +html.append +Specifies content to append to HTML output + + + + + + +Description + +Specifies content to append to the end of HTML files output by +the html/docbook.xsl stylesheet, after the +closing <html> tag. You probably don’t want to set any +value for this parameter; but if you do, the only value it should ever +be set to is a newline character: &#x0a; or +&#10; + + + diff --git a/docbook-xsl-1.76.1/params/html.base.xml b/docbook-xsl-1.76.1/params/html.base.xml new file mode 100644 index 0000000..74e7fd9 --- /dev/null +++ b/docbook-xsl-1.76.1/params/html.base.xml @@ -0,0 +1,30 @@ + + +html.base +uri + + +html.base +An HTML base URI + + + + + + + +Description + +If html.base is set, it is used for the base element +in the head of the html documents. The parameter specifies +the base URL for all relative URLs in the document. This is useful +for dynamically served html where the base URI needs to be +shifted. + + + diff --git a/docbook-xsl-1.76.1/params/html.cellpadding.xml b/docbook-xsl-1.76.1/params/html.cellpadding.xml new file mode 100644 index 0000000..7240f0f --- /dev/null +++ b/docbook-xsl-1.76.1/params/html.cellpadding.xml @@ -0,0 +1,29 @@ + + +html.cellpadding +integer + + +html.cellpadding +Default value for cellpadding in HTML tables + + + + + + + + +Description + +If non-zero, this value will be used as the default cellpadding value +in HTML tables. nn for pixels or nn% for percentage length. E.g. 5 or +5% + + + diff --git a/docbook-xsl-1.76.1/params/html.cellspacing.xml b/docbook-xsl-1.76.1/params/html.cellspacing.xml new file mode 100644 index 0000000..5ddfdac --- /dev/null +++ b/docbook-xsl-1.76.1/params/html.cellspacing.xml @@ -0,0 +1,29 @@ + + +html.cellspacing +integer + + +html.cellspacing +Default value for cellspacing in HTML tables + + + + + + + + +Description + +If non-zero, this value will be used as the default cellspacing +value in HTML tables. nn for pixels or nn% for percentage +length. E.g. 5 or 5% + + + diff --git a/docbook-xsl-1.76.1/params/html.cleanup.xml b/docbook-xsl-1.76.1/params/html.cleanup.xml new file mode 100644 index 0000000..e4fc0c8 --- /dev/null +++ b/docbook-xsl-1.76.1/params/html.cleanup.xml @@ -0,0 +1,34 @@ + + +html.cleanup +boolean + + +html.cleanup +Attempt to clean up the resulting HTML? + + + + + + + + +Description + +If non-zero, and if the EXSLT +extensions are supported by your processor, the resulting HTML will be +cleaned up. This improves the chances that the +resulting HTML will be valid. It may also improve the formatting of +some elements. + +This parameter is different from make.valid.html +because it uses extension functions to manipulate result-tree-fragments. + + + diff --git a/docbook-xsl-1.76.1/params/html.ext.xml b/docbook-xsl-1.76.1/params/html.ext.xml new file mode 100644 index 0000000..8d6fd95 --- /dev/null +++ b/docbook-xsl-1.76.1/params/html.ext.xml @@ -0,0 +1,29 @@ + + +html.ext +string + + +html.ext +Identifies the extension of generated HTML files + + + + +.html + + + +Description + +The extension identified by html.ext will +be used as the filename extension for chunks created by this +stylesheet. + + + diff --git a/docbook-xsl-1.76.1/params/html.extra.head.links.xml b/docbook-xsl-1.76.1/params/html.extra.head.links.xml new file mode 100644 index 0000000..ddc666f --- /dev/null +++ b/docbook-xsl-1.76.1/params/html.extra.head.links.xml @@ -0,0 +1,31 @@ + + +html.extra.head.links +boolean + + +html.extra.head.links +Toggle extra HTML head link information + + + + + + + + +Description + +If non-zero, extra link elements will be +generated in the head of chunked HTML files. These +extra links point to chapters, appendixes, sections, etc. as supported +by the Site Navigation Bar in Mozilla 1.0 (as of CR1, at least). + + + + diff --git a/docbook-xsl-1.76.1/params/html.head.legalnotice.link.multiple.xml b/docbook-xsl-1.76.1/params/html.head.legalnotice.link.multiple.xml new file mode 100644 index 0000000..7c0cba1 --- /dev/null +++ b/docbook-xsl-1.76.1/params/html.head.legalnotice.link.multiple.xml @@ -0,0 +1,44 @@ + + +html.head.legalnotice.link.multiple +boolean + + +html.head.legalnotice.link.multiple +Generate multiple link instances in html head for legalnotice? + + + + + + + + +Description + +If html.head.legalnotice.link.multiple is +non-zero and the value of +html.head.legalnotice.link.types contains +multiple link types, then the stylesheet generates (in the +head section of the HTML source) one +link element for each link type specified. For +example, if the value of +html.head.legalnotice.link.types is +“copyright licenseâ€: + + <link rel="copyright" href="ln-id2524073.html" title="Legal Notice"> + <link rel="license" href="ln-id2524073.html" title="Legal Notice"> + + Otherwise, the stylesheet generates generates a single + link instance; for example: + + <link rel="copyright license" href="ln-id2524073.html" title="Legal Notice"> + + + + diff --git a/docbook-xsl-1.76.1/params/html.head.legalnotice.link.types.xml b/docbook-xsl-1.76.1/params/html.head.legalnotice.link.types.xml new file mode 100644 index 0000000..4ca02ff --- /dev/null +++ b/docbook-xsl-1.76.1/params/html.head.legalnotice.link.types.xml @@ -0,0 +1,75 @@ + + +html.head.legalnotice.link.types +string + + +html.head.legalnotice.link.types +Specifies link types for legalnotice link in html head + + + + +copyright + + + +Description + +The value of +html.head.legalnotice.link.types is a +space-separated list of link types, as described in Section 6.12 +of the HTML 4.01 specification. If the value of the +generate.legalnotice.link parameter is +non-zero, then the stylesheet generates (in the +head section of the HTML source) either a single +HTML link element or, if the value of the +html.head.legalnotice.link.multiple is +non-zero, one link element for each link type +specified. Each link has the following attributes: + + + + a rel attribute whose + value is derived from the value of + html.head.legalnotice.link.types + + + an href attribute whose + value is set to the URL of the file containing the + legalnotice + + + a title attribute whose + value is set to the title of the corresponding + legalnotice (or a title programatically + determined by the stylesheet) + + + +For example: + + <link rel="license" href="ln-id2524073.html" title="Legal Notice"> + + +About the default value + + In an ideal world, the default value of + html.head.legalnotice.link.types would + probably be “licenseâ€, since the content of the + DocBook legalnotice is typically license + information, not copyright information. However, the default value + is “copyright†for pragmatic reasons: because + that’s among the set of “recognized link types†listed in Section + 6.12 of the HTML 4.01 specification, and because certain + browsers and browser extensions are preconfigured to recognize that + value. + + + + diff --git a/docbook-xsl-1.76.1/params/html.longdesc.link.xml b/docbook-xsl-1.76.1/params/html.longdesc.link.xml new file mode 100644 index 0000000..2497563 --- /dev/null +++ b/docbook-xsl-1.76.1/params/html.longdesc.link.xml @@ -0,0 +1,39 @@ + + +html.longdesc.link +boolean + + +html.longdesc.link +Should a link to the longdesc be included in the HTML? + + + + + + + + +Description + +If non-zero, links will be created to the +HTML files created for the +longdesc attribute. It makes no +sense to enable this option without also enabling the +html.longdesc parameter. + + + + + diff --git a/docbook-xsl-1.76.1/params/html.longdesc.xml b/docbook-xsl-1.76.1/params/html.longdesc.xml new file mode 100644 index 0000000..10f341a --- /dev/null +++ b/docbook-xsl-1.76.1/params/html.longdesc.xml @@ -0,0 +1,28 @@ + + +html.longdesc +boolean + + +html.longdesc +Should longdesc URIs be created? + + + + + + +Description +If non-zero, HTML files will be created for the +longdesc attribute. These files +are created from the textobjects in +mediaobjects and +inlinemediaobject. + + + diff --git a/docbook-xsl-1.76.1/params/html.stylesheet.type.xml b/docbook-xsl-1.76.1/params/html.stylesheet.type.xml new file mode 100644 index 0000000..f20b706 --- /dev/null +++ b/docbook-xsl-1.76.1/params/html.stylesheet.type.xml @@ -0,0 +1,26 @@ + + +html.stylesheet.type +string + + +html.stylesheet.type +The type of the stylesheet used in the generated HTML + + + +text/css + + +Description + +The type of the stylesheet to place in the HTML link tag. + + + + diff --git a/docbook-xsl-1.76.1/params/html.stylesheet.xml b/docbook-xsl-1.76.1/params/html.stylesheet.xml new file mode 100644 index 0000000..3407094 --- /dev/null +++ b/docbook-xsl-1.76.1/params/html.stylesheet.xml @@ -0,0 +1,36 @@ + + +html.stylesheet +string + + +html.stylesheet +Name of the stylesheet(s) to use in the generated HTML + + + + + + + + +Description + +The html.stylesheet parameter is either +empty, indicating that no stylesheet link tag should be +generated in the html output, or it is a list of one or more +stylesheet files. + +Multiple stylesheets are space-delimited. If you need to +reference a stylesheet URI that includes a space, encode it with +%20. A separate html link element will +be generated for each stylesheet in the order they are listed in the +parameter. + + + diff --git a/docbook-xsl-1.76.1/params/htmlhelp.alias.file.xml b/docbook-xsl-1.76.1/params/htmlhelp.alias.file.xml new file mode 100644 index 0000000..be11b28 --- /dev/null +++ b/docbook-xsl-1.76.1/params/htmlhelp.alias.file.xml @@ -0,0 +1,27 @@ + + +htmlhelp.alias.file +string + + +htmlhelp.alias.file +Filename of alias file. + + + + +alias.h + + + +Description + +Specifies the filename of the alias file (used for context-sensitive help). + + + diff --git a/docbook-xsl-1.76.1/params/htmlhelp.autolabel.xml b/docbook-xsl-1.76.1/params/htmlhelp.autolabel.xml new file mode 100644 index 0000000..1426d00 --- /dev/null +++ b/docbook-xsl-1.76.1/params/htmlhelp.autolabel.xml @@ -0,0 +1,28 @@ + + +htmlhelp.autolabel +boolean + + +htmlhelp.autolabel +Should tree-like ToC use autonumbering feature? + + + + + + + + +Description + +Set this to non-zero to include chapter and section numbers into ToC +in the left panel. + + + diff --git a/docbook-xsl-1.76.1/params/htmlhelp.button.back.xml b/docbook-xsl-1.76.1/params/htmlhelp.button.back.xml new file mode 100644 index 0000000..1fc12bb --- /dev/null +++ b/docbook-xsl-1.76.1/params/htmlhelp.button.back.xml @@ -0,0 +1,27 @@ + + +htmlhelp.button.back +boolean + + +htmlhelp.button.back +Should the Back button be shown? + + + + + + + + +Description + +Set to non-zero to include the Hide/Show button shown on toolbar + + + diff --git a/docbook-xsl-1.76.1/params/htmlhelp.button.forward.xml b/docbook-xsl-1.76.1/params/htmlhelp.button.forward.xml new file mode 100644 index 0000000..f6411bb --- /dev/null +++ b/docbook-xsl-1.76.1/params/htmlhelp.button.forward.xml @@ -0,0 +1,27 @@ + + +htmlhelp.button.forward +boolean + + +htmlhelp.button.forward +Should the Forward button be shown? + + + + + + + + +Description + +Set to non-zero to include the Forward button on the toolbar. + + + diff --git a/docbook-xsl-1.76.1/params/htmlhelp.button.hideshow.xml b/docbook-xsl-1.76.1/params/htmlhelp.button.hideshow.xml new file mode 100644 index 0000000..04f1ff0 --- /dev/null +++ b/docbook-xsl-1.76.1/params/htmlhelp.button.hideshow.xml @@ -0,0 +1,27 @@ + + +htmlhelp.button.hideshow +boolean + + +htmlhelp.button.hideshow +Should the Hide/Show button be shown? + + + + + + + + +Description + +Set to non-zero to include the Hide/Show button shown on toolbar + + + diff --git a/docbook-xsl-1.76.1/params/htmlhelp.button.home.url.xml b/docbook-xsl-1.76.1/params/htmlhelp.button.home.url.xml new file mode 100644 index 0000000..3027507 --- /dev/null +++ b/docbook-xsl-1.76.1/params/htmlhelp.button.home.url.xml @@ -0,0 +1,27 @@ + + +htmlhelp.button.home.url +string + + +htmlhelp.button.home.url +URL address of page accessible by Home button + + + + + + + + +Description + +URL address of page accessible by Home button. + + + diff --git a/docbook-xsl-1.76.1/params/htmlhelp.button.home.xml b/docbook-xsl-1.76.1/params/htmlhelp.button.home.xml new file mode 100644 index 0000000..e4e97fe --- /dev/null +++ b/docbook-xsl-1.76.1/params/htmlhelp.button.home.xml @@ -0,0 +1,27 @@ + + +htmlhelp.button.home +boolean + + +htmlhelp.button.home +Should the Home button be shown? + + + + + + + + +Description + +Set to non-zero to include the Home button on the toolbar. + + + diff --git a/docbook-xsl-1.76.1/params/htmlhelp.button.jump1.title.xml b/docbook-xsl-1.76.1/params/htmlhelp.button.jump1.title.xml new file mode 100644 index 0000000..aa9da59 --- /dev/null +++ b/docbook-xsl-1.76.1/params/htmlhelp.button.jump1.title.xml @@ -0,0 +1,27 @@ + + +htmlhelp.button.jump1.title +string + + +htmlhelp.button.jump1.title +Title of Jump1 button + + + + +User1 + + + +Description + +Title of Jump1 button. + + + diff --git a/docbook-xsl-1.76.1/params/htmlhelp.button.jump1.url.xml b/docbook-xsl-1.76.1/params/htmlhelp.button.jump1.url.xml new file mode 100644 index 0000000..22248c4 --- /dev/null +++ b/docbook-xsl-1.76.1/params/htmlhelp.button.jump1.url.xml @@ -0,0 +1,27 @@ + + +htmlhelp.button.jump1.url +string + + +htmlhelp.button.jump1.url +URL address of page accessible by Jump1 button + + + + + + + + +Description + +URL address of page accessible by Jump1 button. + + + diff --git a/docbook-xsl-1.76.1/params/htmlhelp.button.jump1.xml b/docbook-xsl-1.76.1/params/htmlhelp.button.jump1.xml new file mode 100644 index 0000000..f6f8d9c --- /dev/null +++ b/docbook-xsl-1.76.1/params/htmlhelp.button.jump1.xml @@ -0,0 +1,23 @@ + + +htmlhelp.button.jump1 +boolean + + +htmlhelp.button.jump1 +Should the Jump1 button be shown? + + + + + + +Description + Set to non-zero to include the Jump1 button on the toolbar. + + diff --git a/docbook-xsl-1.76.1/params/htmlhelp.button.jump2.title.xml b/docbook-xsl-1.76.1/params/htmlhelp.button.jump2.title.xml new file mode 100644 index 0000000..3b5f124 --- /dev/null +++ b/docbook-xsl-1.76.1/params/htmlhelp.button.jump2.title.xml @@ -0,0 +1,27 @@ + + +htmlhelp.button.jump2.title +string + + +htmlhelp.button.jump2.title +Title of Jump2 button + + + + +User2 + + + +Description + +Title of Jump2 button. + + + diff --git a/docbook-xsl-1.76.1/params/htmlhelp.button.jump2.url.xml b/docbook-xsl-1.76.1/params/htmlhelp.button.jump2.url.xml new file mode 100644 index 0000000..dcd2434 --- /dev/null +++ b/docbook-xsl-1.76.1/params/htmlhelp.button.jump2.url.xml @@ -0,0 +1,27 @@ + + +htmlhelp.button.jump2.url +string + + +htmlhelp.button.jump2.url +URL address of page accessible by Jump2 button + + + + + + + + +Description + +URL address of page accessible by Jump2 button. + + + diff --git a/docbook-xsl-1.76.1/params/htmlhelp.button.jump2.xml b/docbook-xsl-1.76.1/params/htmlhelp.button.jump2.xml new file mode 100644 index 0000000..916b1ee --- /dev/null +++ b/docbook-xsl-1.76.1/params/htmlhelp.button.jump2.xml @@ -0,0 +1,27 @@ + + +htmlhelp.button.jump2 +boolean + + +htmlhelp.button.jump2 +Should the Jump2 button be shown? + + + + + + + + +Description + +Set to non-zero to include the Jump2 button on the toolbar. + + + diff --git a/docbook-xsl-1.76.1/params/htmlhelp.button.locate.xml b/docbook-xsl-1.76.1/params/htmlhelp.button.locate.xml new file mode 100644 index 0000000..5b55552 --- /dev/null +++ b/docbook-xsl-1.76.1/params/htmlhelp.button.locate.xml @@ -0,0 +1,28 @@ + + +htmlhelp.button.locate +boolean + + +htmlhelp.button.locate +Should the Locate button be shown? + + + + + + + + +Description + +If you want Locate button shown on toolbar, turn this +parameter to 1. + + + diff --git a/docbook-xsl-1.76.1/params/htmlhelp.button.next.xml b/docbook-xsl-1.76.1/params/htmlhelp.button.next.xml new file mode 100644 index 0000000..b5352b2 --- /dev/null +++ b/docbook-xsl-1.76.1/params/htmlhelp.button.next.xml @@ -0,0 +1,27 @@ + + +htmlhelp.button.next +boolean + + +htmlhelp.button.next +Should the Next button be shown? + + + + + + + + +Description + +Set to non-zero to include the Next button on the toolbar. + + + diff --git a/docbook-xsl-1.76.1/params/htmlhelp.button.options.xml b/docbook-xsl-1.76.1/params/htmlhelp.button.options.xml new file mode 100644 index 0000000..21bed81 --- /dev/null +++ b/docbook-xsl-1.76.1/params/htmlhelp.button.options.xml @@ -0,0 +1,28 @@ + + +htmlhelp.button.options +boolean + + +htmlhelp.button.options +Should the Options button be shown? + + + + + + + + +Description + +If you want Options button shown on toolbar, turn this +parameter to 1. + + + diff --git a/docbook-xsl-1.76.1/params/htmlhelp.button.prev.xml b/docbook-xsl-1.76.1/params/htmlhelp.button.prev.xml new file mode 100644 index 0000000..a6d989b --- /dev/null +++ b/docbook-xsl-1.76.1/params/htmlhelp.button.prev.xml @@ -0,0 +1,28 @@ + + +htmlhelp.button.prev +boolean + + +htmlhelp.button.prev +Should the Prev button be shown? + + + + + + + + +Description + +Set to non-zero to include the Prev button on the toolbar. + + + + diff --git a/docbook-xsl-1.76.1/params/htmlhelp.button.print.xml b/docbook-xsl-1.76.1/params/htmlhelp.button.print.xml new file mode 100644 index 0000000..1c0e816 --- /dev/null +++ b/docbook-xsl-1.76.1/params/htmlhelp.button.print.xml @@ -0,0 +1,28 @@ + + +htmlhelp.button.print +boolean + + +htmlhelp.button.print +Should the Print button be shown? + + + + + + + + +Description + +Set to non-zero to include the Print button on the toolbar. + + + + diff --git a/docbook-xsl-1.76.1/params/htmlhelp.button.refresh.xml b/docbook-xsl-1.76.1/params/htmlhelp.button.refresh.xml new file mode 100644 index 0000000..294fcbe --- /dev/null +++ b/docbook-xsl-1.76.1/params/htmlhelp.button.refresh.xml @@ -0,0 +1,27 @@ + + +htmlhelp.button.refresh +boolean + + +htmlhelp.button.refresh +Should the Refresh button be shown? + + + + + + + + +Description + +Set to non-zero to include the Stop button on the toolbar. + + + diff --git a/docbook-xsl-1.76.1/params/htmlhelp.button.stop.xml b/docbook-xsl-1.76.1/params/htmlhelp.button.stop.xml new file mode 100644 index 0000000..fdbe549 --- /dev/null +++ b/docbook-xsl-1.76.1/params/htmlhelp.button.stop.xml @@ -0,0 +1,28 @@ + + +htmlhelp.button.stop +boolean + + +htmlhelp.button.stop +Should the Stop button be shown? + + + + + + + + +Description + +If you want Stop button shown on toolbar, turn this +parameter to 1. + + + diff --git a/docbook-xsl-1.76.1/params/htmlhelp.button.zoom.xml b/docbook-xsl-1.76.1/params/htmlhelp.button.zoom.xml new file mode 100644 index 0000000..a25dc40 --- /dev/null +++ b/docbook-xsl-1.76.1/params/htmlhelp.button.zoom.xml @@ -0,0 +1,28 @@ + + +htmlhelp.button.zoom +boolean + + +htmlhelp.button.zoom +Should the Zoom button be shown? + + + + + + + + +Description + +Set to non-zero to include the Zoom button on the toolbar. + + + + diff --git a/docbook-xsl-1.76.1/params/htmlhelp.chm.xml b/docbook-xsl-1.76.1/params/htmlhelp.chm.xml new file mode 100644 index 0000000..51cba30 --- /dev/null +++ b/docbook-xsl-1.76.1/params/htmlhelp.chm.xml @@ -0,0 +1,27 @@ + + +htmlhelp.chm +string + + +htmlhelp.chm +Filename of output HTML Help file. + + + + +htmlhelp.chm + + + +Description + +Set the name of resulting CHM file + + + diff --git a/docbook-xsl-1.76.1/params/htmlhelp.default.topic.xml b/docbook-xsl-1.76.1/params/htmlhelp.default.topic.xml new file mode 100644 index 0000000..577f440 --- /dev/null +++ b/docbook-xsl-1.76.1/params/htmlhelp.default.topic.xml @@ -0,0 +1,37 @@ + + +htmlhelp.default.topic +string + + +htmlhelp.default.topic +Name of file with default topic + + + + + + + + +Description + +Normally first chunk of document is displayed when you open HTML +Help file. If you want to display another topic, simply set its +filename by this parameter. + +This is useful especially if you don't generate ToC in front of +your document and you also hide root element in ToC. E.g.: + +<xsl:param name="generate.book.toc" select="0"/> +<xsl:param name="htmlhelp.hhc.show.root" select="0"/> +<xsl:param name="htmlhelp.default.topic">pr01.html</xsl:param> + + + + diff --git a/docbook-xsl-1.76.1/params/htmlhelp.display.progress.xml b/docbook-xsl-1.76.1/params/htmlhelp.display.progress.xml new file mode 100644 index 0000000..eab1c96 --- /dev/null +++ b/docbook-xsl-1.76.1/params/htmlhelp.display.progress.xml @@ -0,0 +1,28 @@ + + +htmlhelp.display.progress +boolean + + +htmlhelp.display.progress +Display compile progress? + + + + + + + + +Description + +Set to non-zero to to display compile progress + + + + diff --git a/docbook-xsl-1.76.1/params/htmlhelp.encoding.xml b/docbook-xsl-1.76.1/params/htmlhelp.encoding.xml new file mode 100644 index 0000000..579cf7f --- /dev/null +++ b/docbook-xsl-1.76.1/params/htmlhelp.encoding.xml @@ -0,0 +1,28 @@ + + +htmlhelp.encoding +string + + +htmlhelp.encoding +Character encoding to use in files for HTML Help compiler. + + + + +iso-8859-1 + + + +Description + +HTML Help Compiler is not UTF-8 aware, so you should always use an +appropriate single-byte encoding here. Use one from iana, the registered charset values. + + + diff --git a/docbook-xsl-1.76.1/params/htmlhelp.enhanced.decompilation.xml b/docbook-xsl-1.76.1/params/htmlhelp.enhanced.decompilation.xml new file mode 100644 index 0000000..558e89b --- /dev/null +++ b/docbook-xsl-1.76.1/params/htmlhelp.enhanced.decompilation.xml @@ -0,0 +1,27 @@ + + +htmlhelp.enhanced.decompilation +boolean + + +htmlhelp.enhanced.decompilation +Allow enhanced decompilation of CHM? + + + + + + + + +Description + +When non-zero this parameter enables enhanced decompilation of CHM. + + + diff --git a/docbook-xsl-1.76.1/params/htmlhelp.enumerate.images.xml b/docbook-xsl-1.76.1/params/htmlhelp.enumerate.images.xml new file mode 100644 index 0000000..a2aaac8 --- /dev/null +++ b/docbook-xsl-1.76.1/params/htmlhelp.enumerate.images.xml @@ -0,0 +1,28 @@ + + +htmlhelp.enumerate.images +boolean + + +htmlhelp.enumerate.images +Should the paths to all used images be added to the project file? + + + + + + + + +Description + +Set to non-zero if you insert images into your documents as +external binary entities or if you are using absolute image paths. + + + diff --git a/docbook-xsl-1.76.1/params/htmlhelp.force.map.and.alias.xml b/docbook-xsl-1.76.1/params/htmlhelp.force.map.and.alias.xml new file mode 100644 index 0000000..7dca30b --- /dev/null +++ b/docbook-xsl-1.76.1/params/htmlhelp.force.map.and.alias.xml @@ -0,0 +1,26 @@ + + +htmlhelp.force.map.and.alias +boolean + + +htmlhelp.force.map.and.alias +Should [MAP] and [ALIAS] sections be added to the project file unconditionally? + + + + + + +Description + Set to non-zero if you have your own + alias.h and context.h + files and you want to include references to them in the project + file. + + diff --git a/docbook-xsl-1.76.1/params/htmlhelp.hhc.binary.xml b/docbook-xsl-1.76.1/params/htmlhelp.hhc.binary.xml new file mode 100644 index 0000000..ea978f7 --- /dev/null +++ b/docbook-xsl-1.76.1/params/htmlhelp.hhc.binary.xml @@ -0,0 +1,29 @@ + + +htmlhelp.hhc.binary +boolean + + +htmlhelp.hhc.binary +Generate binary ToC? + + + + + + + + +Description + +Set to non-zero to generate a binary TOC. You must create a binary TOC +if you want to add Prev/Next buttons to toolbar (which is default +behaviour). Files with binary TOC can't be merged. + + + diff --git a/docbook-xsl-1.76.1/params/htmlhelp.hhc.folders.instead.books.xml b/docbook-xsl-1.76.1/params/htmlhelp.hhc.folders.instead.books.xml new file mode 100644 index 0000000..ca36e5a --- /dev/null +++ b/docbook-xsl-1.76.1/params/htmlhelp.hhc.folders.instead.books.xml @@ -0,0 +1,31 @@ + + +htmlhelp.hhc.folders.instead.books +boolean + + +htmlhelp.hhc.folders.instead.books +Use folder icons in ToC (instead of book icons)? + + + + + + + + +Description + +Set to non-zero for folder-like icons or zero for book-like icons in the ToC. +If you want to use folder-like icons, you must switch off the binary ToC using +htmlhelp.hhc.binary. + + + + + diff --git a/docbook-xsl-1.76.1/params/htmlhelp.hhc.section.depth.xml b/docbook-xsl-1.76.1/params/htmlhelp.hhc.section.depth.xml new file mode 100644 index 0000000..35c492a --- /dev/null +++ b/docbook-xsl-1.76.1/params/htmlhelp.hhc.section.depth.xml @@ -0,0 +1,27 @@ + + +htmlhelp.hhc.section.depth +integer + + +htmlhelp.hhc.section.depth +Depth of TOC for sections in a left pane. + + + + +5 + + + +Description + +Set the section depth in the left pane of HTML Help viewer. + + + diff --git a/docbook-xsl-1.76.1/params/htmlhelp.hhc.show.root.xml b/docbook-xsl-1.76.1/params/htmlhelp.hhc.show.root.xml new file mode 100644 index 0000000..0de26b9 --- /dev/null +++ b/docbook-xsl-1.76.1/params/htmlhelp.hhc.show.root.xml @@ -0,0 +1,29 @@ + + +htmlhelp.hhc.show.root +boolean + + +htmlhelp.hhc.show.root +Should there be an entry for the root element in the ToC? + + + + + + + + +Description + +If set to zero, there will be no entry for the root element in the +ToC. This is useful when you want to provide the user with an expanded +ToC as a default. + + + diff --git a/docbook-xsl-1.76.1/params/htmlhelp.hhc.width.xml b/docbook-xsl-1.76.1/params/htmlhelp.hhc.width.xml new file mode 100644 index 0000000..4011399 --- /dev/null +++ b/docbook-xsl-1.76.1/params/htmlhelp.hhc.width.xml @@ -0,0 +1,28 @@ + + +htmlhelp.hhc.width +integer + + +htmlhelp.hhc.width +Width of navigation pane + + + + + + + + +Description + +This parameter specifies the width of the navigation pane (containing TOC and +other navigation tabs) in pixels. + + + diff --git a/docbook-xsl-1.76.1/params/htmlhelp.hhc.xml b/docbook-xsl-1.76.1/params/htmlhelp.hhc.xml new file mode 100644 index 0000000..475ef20 --- /dev/null +++ b/docbook-xsl-1.76.1/params/htmlhelp.hhc.xml @@ -0,0 +1,27 @@ + + +htmlhelp.hhc +string + + +htmlhelp.hhc +Filename of TOC file. + + + + +toc.hhc + + + +Description + +Set the name of the TOC file. The default is toc.hhc. + + + diff --git a/docbook-xsl-1.76.1/params/htmlhelp.hhk.xml b/docbook-xsl-1.76.1/params/htmlhelp.hhk.xml new file mode 100644 index 0000000..aee473e --- /dev/null +++ b/docbook-xsl-1.76.1/params/htmlhelp.hhk.xml @@ -0,0 +1,27 @@ + + +htmlhelp.hhk +string + + +htmlhelp.hhk +Filename of index file. + + + + +index.hhk + + + +Description + +set the name of the index file. The default is index.hhk. + + + diff --git a/docbook-xsl-1.76.1/params/htmlhelp.hhp.tail.xml b/docbook-xsl-1.76.1/params/htmlhelp.hhp.tail.xml new file mode 100644 index 0000000..c239b9a --- /dev/null +++ b/docbook-xsl-1.76.1/params/htmlhelp.hhp.tail.xml @@ -0,0 +1,28 @@ + + +htmlhelp.hhp.tail +string + + +htmlhelp.hhp.tail +Additional content for project file. + + + + + + + + +Description + +If you want to include some additional parameters into project file, +store appropriate part of project file into this parameter. + + + diff --git a/docbook-xsl-1.76.1/params/htmlhelp.hhp.window.xml b/docbook-xsl-1.76.1/params/htmlhelp.hhp.window.xml new file mode 100644 index 0000000..6c29eed --- /dev/null +++ b/docbook-xsl-1.76.1/params/htmlhelp.hhp.window.xml @@ -0,0 +1,28 @@ + + +htmlhelp.hhp.window +string + + +htmlhelp.hhp.window +Name of default window. + + + + +Main + + + +Description + +Name of default window. If empty no [WINDOWS] section will be +added to project file. + + + diff --git a/docbook-xsl-1.76.1/params/htmlhelp.hhp.windows.xml b/docbook-xsl-1.76.1/params/htmlhelp.hhp.windows.xml new file mode 100644 index 0000000..afd435f --- /dev/null +++ b/docbook-xsl-1.76.1/params/htmlhelp.hhp.windows.xml @@ -0,0 +1,29 @@ + + +htmlhelp.hhp.windows +string + + +htmlhelp.hhp.windows +Definition of additional windows + + + + + + + + +Description + +Content of this parameter is placed at the end of [WINDOWS] +section of project file. You can use it for defining your own +addtional windows. + + + diff --git a/docbook-xsl-1.76.1/params/htmlhelp.hhp.xml b/docbook-xsl-1.76.1/params/htmlhelp.hhp.xml new file mode 100644 index 0000000..74954d7 --- /dev/null +++ b/docbook-xsl-1.76.1/params/htmlhelp.hhp.xml @@ -0,0 +1,28 @@ + + +htmlhelp.hhp +string + + +htmlhelp.hhp +Filename of project file. + + + + +htmlhelp.hhp + + + +Description + +Change this parameter if you want different name of project +file than htmlhelp.hhp. + + + diff --git a/docbook-xsl-1.76.1/params/htmlhelp.map.file.xml b/docbook-xsl-1.76.1/params/htmlhelp.map.file.xml new file mode 100644 index 0000000..b47c565 --- /dev/null +++ b/docbook-xsl-1.76.1/params/htmlhelp.map.file.xml @@ -0,0 +1,25 @@ + + +htmlhelp.map.file +string + + +htmlhelp.map.file +Filename of map file. + + + +context.h + + +Description +Set the name of map file. The default is + context.h. (used for context-sensitive + help). + + diff --git a/docbook-xsl-1.76.1/params/htmlhelp.only.xml b/docbook-xsl-1.76.1/params/htmlhelp.only.xml new file mode 100644 index 0000000..f10dbf5 --- /dev/null +++ b/docbook-xsl-1.76.1/params/htmlhelp.only.xml @@ -0,0 +1,32 @@ + + +htmlhelp.only +boolean + + +htmlhelp.only +Should only project files be generated? + + + + + + + + +Description + + +Set to non-zero if you want to play with various HTML Help parameters +and you don't need to regenerate all HTML files. This setting will not +process whole document, only project files (hhp, hhc, hhk,...) will be +generated. + + + + diff --git a/docbook-xsl-1.76.1/params/htmlhelp.remember.window.position.xml b/docbook-xsl-1.76.1/params/htmlhelp.remember.window.position.xml new file mode 100644 index 0000000..3aaea1f --- /dev/null +++ b/docbook-xsl-1.76.1/params/htmlhelp.remember.window.position.xml @@ -0,0 +1,27 @@ + + +htmlhelp.remember.window.position +boolean + + +htmlhelp.remember.window.position +Remember help window position? + + + + + + + + +Description + +Set to non-zero to remember help window position between starts. + + + diff --git a/docbook-xsl-1.76.1/params/htmlhelp.show.advanced.search.xml b/docbook-xsl-1.76.1/params/htmlhelp.show.advanced.search.xml new file mode 100644 index 0000000..3aa09a6 --- /dev/null +++ b/docbook-xsl-1.76.1/params/htmlhelp.show.advanced.search.xml @@ -0,0 +1,28 @@ + + +htmlhelp.show.advanced.search +boolean + + +htmlhelp.show.advanced.search +Should advanced search features be available? + + + + + + + + +Description + +If you want advanced search features in your help, turn this +parameter to 1. + + + diff --git a/docbook-xsl-1.76.1/params/htmlhelp.show.favorities.xml b/docbook-xsl-1.76.1/params/htmlhelp.show.favorities.xml new file mode 100644 index 0000000..925bbb1 --- /dev/null +++ b/docbook-xsl-1.76.1/params/htmlhelp.show.favorities.xml @@ -0,0 +1,28 @@ + + +htmlhelp.show.favorities +boolean + + +htmlhelp.show.favorities +Should the Favorites tab be shown? + + + + + + + + +Description + +Set to non-zero to include a Favorites tab in the navigation pane +of the help window. + + + diff --git a/docbook-xsl-1.76.1/params/htmlhelp.show.menu.xml b/docbook-xsl-1.76.1/params/htmlhelp.show.menu.xml new file mode 100644 index 0000000..b3d6285 --- /dev/null +++ b/docbook-xsl-1.76.1/params/htmlhelp.show.menu.xml @@ -0,0 +1,28 @@ + + +htmlhelp.show.menu +boolean + + +htmlhelp.show.menu +Should the menu bar be shown? + + + + + + + + +Description + +Set to non-zero to have an application menu bar in your HTML Help window. + + + + diff --git a/docbook-xsl-1.76.1/params/htmlhelp.show.toolbar.text.xml b/docbook-xsl-1.76.1/params/htmlhelp.show.toolbar.text.xml new file mode 100644 index 0000000..fc87d9c --- /dev/null +++ b/docbook-xsl-1.76.1/params/htmlhelp.show.toolbar.text.xml @@ -0,0 +1,28 @@ + + +htmlhelp.show.toolbar.text +boolean + + +htmlhelp.show.toolbar.text +Show text under toolbar buttons? + + + + + + + + +Description + +Set to non-zero to display texts under toolbar buttons, zero to switch +off displays. + + + diff --git a/docbook-xsl-1.76.1/params/htmlhelp.title.xml b/docbook-xsl-1.76.1/params/htmlhelp.title.xml new file mode 100644 index 0000000..f4397ca --- /dev/null +++ b/docbook-xsl-1.76.1/params/htmlhelp.title.xml @@ -0,0 +1,28 @@ + + +htmlhelp.title +string + + +htmlhelp.title +Title of HTML Help + + + + + + + + +Description + +Content of this parameter will be used as a title for generated +HTML Help. If empty, title will be automatically taken from document. + + + diff --git a/docbook-xsl-1.76.1/params/htmlhelp.use.hhk.xml b/docbook-xsl-1.76.1/params/htmlhelp.use.hhk.xml new file mode 100644 index 0000000..720c1e2 --- /dev/null +++ b/docbook-xsl-1.76.1/params/htmlhelp.use.hhk.xml @@ -0,0 +1,28 @@ + + +htmlhelp.use.hhk +boolean + + +htmlhelp.use.hhk +Should the index be built using the HHK file? + + + + + + + + +Description + +If non-zero, the index is created using the HHK file (instead of using object +elements in the HTML files). For more information, see Generating an index. + + diff --git a/docbook-xsl-1.76.1/params/htmlhelp.window.geometry.xml b/docbook-xsl-1.76.1/params/htmlhelp.window.geometry.xml new file mode 100644 index 0000000..0ec75f7 --- /dev/null +++ b/docbook-xsl-1.76.1/params/htmlhelp.window.geometry.xml @@ -0,0 +1,30 @@ + + +htmlhelp.window.geometry +string + + +htmlhelp.window.geometry +Set initial geometry of help window + + + + + + + + +Description + +This parameter specifies initial position of help +window. E.g. + +<xsl:param name="htmlhelp.window.geometry">[160,64,992,704]</xsl:param> + + + diff --git a/docbook-xsl-1.76.1/params/hyphenate.verbatim.characters.xml b/docbook-xsl-1.76.1/params/hyphenate.verbatim.characters.xml new file mode 100644 index 0000000..e6cae20 --- /dev/null +++ b/docbook-xsl-1.76.1/params/hyphenate.verbatim.characters.xml @@ -0,0 +1,30 @@ + + +hyphenate.verbatim.characters +string + + +hyphenate.verbatim.characters +List of characters after which a line break can occur in listings + + + + + + + + +Description + +If you enable hyphenate.verbatim line +breaks are allowed only on space characters. If this is not enough for +your document, you can specify list of additional characters after +which line break is allowed in this parameter. + + + diff --git a/docbook-xsl-1.76.1/params/hyphenate.verbatim.xml b/docbook-xsl-1.76.1/params/hyphenate.verbatim.xml new file mode 100644 index 0000000..c66e700 --- /dev/null +++ b/docbook-xsl-1.76.1/params/hyphenate.verbatim.xml @@ -0,0 +1,45 @@ + + +hyphenate.verbatim +boolean + + +hyphenate.verbatim +Should verbatim environments be hyphenated on space characters? + + + + + + +Description + +If the lines of program listing are too long to fit into one +line it is quite common to split them at space and indicite by hook +arrow that code continues on the next line. You can turn on this +behaviour for programlisting, +screen and synopsis elements by +using this parameter. + +Note that you must also enable line wrapping for verbatim environments and +select appropriate hyphenation character (e.g. hook arrow). This can +be done using monospace.verbatim.properties +attribute set: + +<xsl:attribute-set name="monospace.verbatim.properties" + use-attribute-sets="verbatim.properties monospace.properties"> + <xsl:attribute name="wrap-option">wrap</xsl:attribute> + <xsl:attribute name="hyphenation-character">&#x25BA;</xsl:attribute> +</xsl:attribute-set> + +For a list of arrows available in Unicode see http://www.unicode.org/charts/PDF/U2190.pdf and http://www.unicode.org/charts/PDF/U2900.pdf and make sure that +selected character is available in the font you are using for verbatim +environments. + + + diff --git a/docbook-xsl-1.76.1/params/hyphenate.xml b/docbook-xsl-1.76.1/params/hyphenate.xml new file mode 100644 index 0000000..46a2d61 --- /dev/null +++ b/docbook-xsl-1.76.1/params/hyphenate.xml @@ -0,0 +1,29 @@ + + +hyphenate +list +closed +true +false + + +hyphenate +Specify hyphenation behavior + + + +true + + +Description + +If true, words may be hyphenated. Otherwise, they may not. + + + + diff --git a/docbook-xsl-1.76.1/params/id.warnings.xml b/docbook-xsl-1.76.1/params/id.warnings.xml new file mode 100644 index 0000000..7b2716f --- /dev/null +++ b/docbook-xsl-1.76.1/params/id.warnings.xml @@ -0,0 +1,25 @@ + + +id.warnings +boolean + + +id.warnings +Should warnings be generated for titled elements without IDs? + + + + + + +Description +If non-zero, the stylesheet will issue a warning for any element +(other than the root element) which has a title but does not have an +ID. + + diff --git a/docbook-xsl-1.76.1/params/ignore.image.scaling.xml b/docbook-xsl-1.76.1/params/ignore.image.scaling.xml new file mode 100644 index 0000000..c35d178 --- /dev/null +++ b/docbook-xsl-1.76.1/params/ignore.image.scaling.xml @@ -0,0 +1,28 @@ + + +ignore.image.scaling +boolean + + +ignore.image.scaling +Tell the stylesheets to ignore the author's image scaling attributes + + + + + + + + +Description + +If non-zero, the scaling attributes on graphics and media objects are +ignored. + + + diff --git a/docbook-xsl-1.76.1/params/img.src.path.xml b/docbook-xsl-1.76.1/params/img.src.path.xml new file mode 100644 index 0000000..d295019 --- /dev/null +++ b/docbook-xsl-1.76.1/params/img.src.path.xml @@ -0,0 +1,40 @@ + + +img.src.path +string + + +img.src.path +Path to HTML/FO image files + + + + + + +Description + +Add a path prefix to the value of the fileref +attribute of graphic, inlinegraphic, and imagedata elements. The resulting +compound path is used in the output as the value of the src +attribute of img (HTML) or external-graphic (FO). + + + +The path given by img.src.path could be relative to the directory where the HTML/FO +files are created, or it could be an absolute URI. +The default value is empty. +Be sure to include a trailing slash if needed. + + +This prefix is not applied to any filerefs that start +with "/" or contain "//:". + + + + diff --git a/docbook-xsl-1.76.1/params/index.div.title.properties.xml b/docbook-xsl-1.76.1/params/index.div.title.properties.xml new file mode 100644 index 0000000..edbec2f --- /dev/null +++ b/docbook-xsl-1.76.1/params/index.div.title.properties.xml @@ -0,0 +1,39 @@ + + +index.div.title.properties +attribute set + + +index.div.title.properties +Properties associated with the letter headings in an +index + + + + + + 0pt + 14.4pt + + bold + always + + + + 0pt + + + + +Description + +This attribute set is used on the letter headings that separate +the divisions in an index. + + + diff --git a/docbook-xsl-1.76.1/params/index.entry.properties.xml b/docbook-xsl-1.76.1/params/index.entry.properties.xml new file mode 100644 index 0000000..3232358 --- /dev/null +++ b/docbook-xsl-1.76.1/params/index.entry.properties.xml @@ -0,0 +1,33 @@ + + +index.entry.properties +attribute set + + +index.entry.properties +Properties applied to the formatted entries +in an index + + + + + + 0pt + + + + +Description + +This attribute set is applied to the block containing +the entries in a letter division in an index. It can be used to set the +font-size, font-family, and other inheritable properties that will be +applied to all index entries. + + + diff --git a/docbook-xsl-1.76.1/params/index.links.to.section.xml b/docbook-xsl-1.76.1/params/index.links.to.section.xml new file mode 100644 index 0000000..47c0da5 --- /dev/null +++ b/docbook-xsl-1.76.1/params/index.links.to.section.xml @@ -0,0 +1,76 @@ + + +index.links.to.section +boolean + + +index.links.to.section +HTML index entries link to container section title + + + + + + + + +Description + +If zero, then an index entry in an index links +directly to the location of the +generated anchor that is output +for the indexterm. If two identical indexterm elements +exist in the same section, then both entries appear +in the index with the same title but link to different +locations. + +If non-zero, then an index entry in an index links to the +section title containing the indexterm, rather than +directly to the anchor output for the indexterm. +Duplicate indexterm entries in the same section are dropped. + + +The default value is 1, so index entries link to +section titles by default. + +In both cases, the link text in an index entry is the +title of the section containing the indexterm. +That is because HTML does not have numbered pages. +It also provides the reader with context information +for each link. + +This parameter lets you choose which style of +index linking you want. + + + +When set to 0, an index entry takes you +to the precise location of its corresponding indexterm. +However, if you have a lot of duplicate +entries in sections, then you have a lot of duplicate +titles in the index, which makes it more cluttered. +The reader may not recognize why duplicate titles +appear until they follow the links. Also, the links +may land the reader in the middle of a section where the +section title is not visible, which may also be +confusing to the reader. + + +When set to 1, an index entry link is +less precise, but duplicate titles in the +index entries are eliminated. +Landing on the section title location may confirm the reader's +expectation that a link that +shows a section title will take them to that section title, +not a location within the section. + + + + + + diff --git a/docbook-xsl-1.76.1/params/index.method.xml b/docbook-xsl-1.76.1/params/index.method.xml new file mode 100644 index 0000000..2127956 --- /dev/null +++ b/docbook-xsl-1.76.1/params/index.method.xml @@ -0,0 +1,162 @@ + + +index.method +list +basic +kosek +kimber + + +index.method +Select method used to group index entries in an index + + + + +basic + + + +Description + +This parameter lets you select which method to use for sorting and grouping + index entries in an index. +Indexes in Latin-based languages that have accented characters typically +sort together accented words and unaccented words. +Thus à (U+00C1 LATIN CAPITAL LETTER A WITH ACUTE) would sort together +with A (U+0041 LATIN CAPITAL LETTER A), so both would appear in the A +section of the index. +Languages using other alphabets (such as Russian, which is written in the Cyrillic alphabet) +and languages using ideographic chararacters (such as Japanese) +require grouping specific to the languages and alphabets. + + +The default indexing method is limited. +It can group accented characters in Latin-based languages only. +It cannot handle non-Latin alphabets or ideographic languages. +The other indexing methods require extensions of one type or +another, and do not work with +all XSLT processors, which is why they are not used by default. + +The three choices for indexing method are: + + +basic + + +(default) Sort and groups words based only on the Latin alphabet. +Words with accented Latin letters will group and sort with +their respective primary letter, but +words in non-Latin alphabets will be +put in the Symbols section of the index. + + + + +kosek + + +This method sorts and groups words based on letter groups configured in +the DocBook locale file for the given language. +See, for example, the French locale file common/fr.xml. +This method requires that the XSLT processor +supports the EXSLT extensions (most do). +It also requires support for using +user-defined functions in xsl:key (xsltproc does not). + +This method is suitable for any language for which you can +list all the individual characters that should appear +in each letter group in an index. +It is probably not practical to use it for ideographic languages +such as Chinese that have hundreds or thousands of characters. + + +To use the kosek method, you must: + + + +Use a processor that supports its extensions, such as +Saxon 6 or Xalan (xsltproc and Saxon 8 do not). + + + +Set the index.method parameter's value to kosek. + + + +Import the appropriate index extensions stylesheet module +fo/autoidx-kosek.xsl or +html/autoidx-kosek.xsl into your +customization. + + + + + + + +kimber + + +This method uses extensions to the Saxon processor to implement +sophisticated indexing processes. It uses its own +configuration file, which can include information for any number of +languages. Each language's configuration can group +words using one of two processes. In the +enumerated process similar to that used in the kosek method, +you indicate the groupings character-by-character. +In the between-key process, you specify the +break-points in the sort order that should start a new group. +The latter configuration is useful for ideographic languages +such as Chinese, Japanese, and Korean. +You can also define your own collation algorithms and how you +want mixed Latin-alphabet words sorted. + + +For a whitepaper describing the extensions, see: +http://www.innodata-isogen.com/knowledge_center/white_papers/back_of_book_for_xsl_fo.pdf. + + + +To download the extension library, see +http://www.innodata-isogen.com/knowledge_center/tools_downloads/i18nsupport. + + + + +To use the kimber method, you must: + + + +Use Saxon (version 6 or 8) as your XSLT processor. + + + +Install and configure the Innodata Isogen library, using +the documentation that comes with it. + + + +Set the index.method parameter's value to kimber. + + + +Import the appropriate index extensions stylesheet module +fo/autoidx-kimber.xsl or +html/autoidx-kimber.xsl into your +customization. + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/params/index.number.separator.xml b/docbook-xsl-1.76.1/params/index.number.separator.xml new file mode 100644 index 0000000..8f51512 --- /dev/null +++ b/docbook-xsl-1.76.1/params/index.number.separator.xml @@ -0,0 +1,54 @@ + + +index.number.separator +string + + +index.number.separator +Override for punctuation separating page numbers in index + + + + + + + + +Description + +This parameter permits you to override the text to insert between +page references in a formatted index entry. Typically +that would be a comma and a space. + + +Because this text may be locale dependent, +this parameter's value is normally taken from a gentext +template named 'number-separator' in the +context 'index' in the stylesheet +locale file for the language +of the current document. +This parameter can be used to override the gentext string, +and would typically be used on the command line. +This parameter would apply to all languages. + + +So this text string can be customized in two ways. +You can reset the default gentext string using +the local.l10n.xml parameter, or you can +override the gentext with the content of this parameter. +The content can be a simple string, or it can be +something more complex such as a call-template. + + +In HTML index output, section title references are used instead of +page number references. This punctuation appears between +such section titles in an HTML index. + + + + diff --git a/docbook-xsl-1.76.1/params/index.on.role.xml b/docbook-xsl-1.76.1/params/index.on.role.xml new file mode 100644 index 0000000..81d65dd --- /dev/null +++ b/docbook-xsl-1.76.1/params/index.on.role.xml @@ -0,0 +1,48 @@ + + +index.on.role +boolean + + +index.on.role +Select indexterms based on role value + + + + + + + + +Description + + +If non-zero, +then an index element that has a +role attribute +value will contain only those indexterm +elements with a matching role value. +If an index has no role +attribute or it is blank, then the index will contain +all indexterms in the current scope. + + +If index.on.role is zero, then the +role attribute has no effect +on selecting indexterms for an index. + + +If you are using DocBook version 4.3 or later, you should +use the type attribute instead of role +on indexterm and index, +and set the index.on.type to a nonzero +value. + + + + diff --git a/docbook-xsl-1.76.1/params/index.on.type.xml b/docbook-xsl-1.76.1/params/index.on.type.xml new file mode 100644 index 0000000..a5189c7 --- /dev/null +++ b/docbook-xsl-1.76.1/params/index.on.type.xml @@ -0,0 +1,52 @@ + + +index.on.type +boolean + + +index.on.type +Select indexterms based on type +attribute value + + + + + + + + +Description + + +If non-zero, +then an index element that has a +type attribute +value will contain only those indexterm +elements with a matching type attribute value. +If an index has no type +attribute or it is blank, then the index will contain +all indexterms in the current scope. + + + +If index.on.type is zero, then the +type attribute has no effect +on selecting indexterms for an index. + + +For those using DocBook version 4.2 or earlier, +the type attribute is not available +for index terms. However, you can achieve the same +effect by using the role attribute +in the same manner on indexterm +and index, and setting the stylesheet parameter +index.on.role to a nonzero value. + + + + diff --git a/docbook-xsl-1.76.1/params/index.page.number.properties.xml b/docbook-xsl-1.76.1/params/index.page.number.properties.xml new file mode 100644 index 0000000..74d105a --- /dev/null +++ b/docbook-xsl-1.76.1/params/index.page.number.properties.xml @@ -0,0 +1,31 @@ + + +index.page.number.properties +attribute set + + +index.page.number.properties +Properties associated with index page numbers + + + + + + + + + +Description + +Properties associated with page numbers in indexes. +Changing color to indicate the page number is a link is +one possibility. + + + + diff --git a/docbook-xsl-1.76.1/params/index.prefer.titleabbrev.xml b/docbook-xsl-1.76.1/params/index.prefer.titleabbrev.xml new file mode 100644 index 0000000..3f010ae --- /dev/null +++ b/docbook-xsl-1.76.1/params/index.prefer.titleabbrev.xml @@ -0,0 +1,29 @@ + + +index.prefer.titleabbrev +boolean + + +index.prefer.titleabbrev +Should abbreviated titles be used as back references? + + + + + + + + +Description + +If non-zero, and if a titleabbrev is defined, the abbreviated title +is used as the link text of a back reference in the index. + + + + diff --git a/docbook-xsl-1.76.1/params/index.preferred.page.properties.xml b/docbook-xsl-1.76.1/params/index.preferred.page.properties.xml new file mode 100644 index 0000000..1b7a26f --- /dev/null +++ b/docbook-xsl-1.76.1/params/index.preferred.page.properties.xml @@ -0,0 +1,32 @@ + + +index.preferred.page.properties +attribute set + + +index.preferred.page.properties +Properties used to emphasize page number references for +significant index terms + + + + + + bold + + + + +Description + +Properties used to emphasize page number references for +significant index terms (significance=preferred). Currently works only with +XEP. + + + diff --git a/docbook-xsl-1.76.1/params/index.range.separator.xml b/docbook-xsl-1.76.1/params/index.range.separator.xml new file mode 100644 index 0000000..aff09a9 --- /dev/null +++ b/docbook-xsl-1.76.1/params/index.range.separator.xml @@ -0,0 +1,57 @@ + + +index.range.separator +string + + +index.range.separator +Override for punctuation separating the two numbers +in a page range in index + + + + + + + + +Description + +This parameter permits you +to override the text to insert between +the two numbers of a page range in an index. +This parameter is only used by those XSL-FO processors +that support an extension for generating such page ranges +(such as XEP). + +Because this text may be locale dependent, +this parameter's value is normally taken from a gentext +template named 'range-separator' in the +context 'index' in the stylesheet +locale file for the language +of the current document. +This parameter can be used to override the gentext string, +and would typically be used on the command line. +This parameter would apply to all languages. + + +So this text string can be customized in two ways. +You can reset the default gentext string using +the local.l10n.xml parameter, or you can +override the gentext with the content of this parameter. +The content can be a simple string, or it can be +something more complex such as a call-template. + + +In HTML index output, section title references are used instead of +page number references. So there are no page ranges +and this parameter has no effect. + + + + diff --git a/docbook-xsl-1.76.1/params/index.term.separator.xml b/docbook-xsl-1.76.1/params/index.term.separator.xml new file mode 100644 index 0000000..ab2f672 --- /dev/null +++ b/docbook-xsl-1.76.1/params/index.term.separator.xml @@ -0,0 +1,54 @@ + + +index.term.separator +string + + +index.term.separator +Override for punctuation separating an index term +from its list of page references in an index + + + + + + + + +Description + +This parameter permits you to override +the text to insert between +the end of an index term and its list of page references. +Typically that might be a comma and a space. + + +Because this text may be locale dependent, +this parameter's value is normally taken from a gentext +template named 'term-separator' in the +context 'index' in the stylesheet +locale file for the language +of the current document. +This parameter can be used to override the gentext string, +and would typically be used on the command line. +This parameter would apply to all languages. + + +So this text string can be customized in two ways. +You can reset the default gentext string using +the local.l10n.xml parameter, or you can +fill in the content for this normally empty +override parameter. +The content can be a simple string, or it can be +something more complex such as a call-template. +For fo output, it could be an fo:leader +element to provide space of a specific length, or a dot leader. + + + + diff --git a/docbook-xsl-1.76.1/params/informal.object.properties.xml b/docbook-xsl-1.76.1/params/informal.object.properties.xml new file mode 100644 index 0000000..e89cc11 --- /dev/null +++ b/docbook-xsl-1.76.1/params/informal.object.properties.xml @@ -0,0 +1,29 @@ + + +informal.object.properties +attribute set + + +informal.object.properties +Properties associated with an informal (untitled) object, such as an informalfigure + + + + + 0.5em + 1em + 2em + 0.5em + 1em + 2em + + +Description +The styling for informal objects in docbook. Specify the spacing before and after the object. + + diff --git a/docbook-xsl-1.76.1/params/informalequation.properties.xml b/docbook-xsl-1.76.1/params/informalequation.properties.xml new file mode 100644 index 0000000..88a57be --- /dev/null +++ b/docbook-xsl-1.76.1/params/informalequation.properties.xml @@ -0,0 +1,27 @@ + + +informalequation.properties +attribute set + + +informalequation.properties +Properties associated with an informalequation + + + + + + + + +Description + +The styling for informalequations. + + + diff --git a/docbook-xsl-1.76.1/params/informalexample.properties.xml b/docbook-xsl-1.76.1/params/informalexample.properties.xml new file mode 100644 index 0000000..90ffb2c --- /dev/null +++ b/docbook-xsl-1.76.1/params/informalexample.properties.xml @@ -0,0 +1,27 @@ + + +informalexample.properties +attribute set + + +informalexample.properties +Properties associated with an informalexample + + + + + + + + +Description + +The styling for informalexamples. + + + diff --git a/docbook-xsl-1.76.1/params/informalfigure.properties.xml b/docbook-xsl-1.76.1/params/informalfigure.properties.xml new file mode 100644 index 0000000..c766248 --- /dev/null +++ b/docbook-xsl-1.76.1/params/informalfigure.properties.xml @@ -0,0 +1,27 @@ + + +informalfigure.properties +attribute set + + +informalfigure.properties +Properties associated with an informalfigure + + + + + + + + +Description + +The styling for informalfigures. + + + diff --git a/docbook-xsl-1.76.1/params/informaltable.properties.xml b/docbook-xsl-1.76.1/params/informaltable.properties.xml new file mode 100644 index 0000000..c968883 --- /dev/null +++ b/docbook-xsl-1.76.1/params/informaltable.properties.xml @@ -0,0 +1,32 @@ + + +informaltable.properties +attribute set + + +informaltable.properties +Properties associated with the block surrounding an informaltable + + + + + + + + +Description + +Block styling properties for informaltables. This parameter should really +have been called informaltable.block.properties or something +like that, but we’re leaving it to avoid backwards-compatibility +problems. + +See also table.table.properties. + + + diff --git a/docbook-xsl-1.76.1/params/inherit.keywords.xml b/docbook-xsl-1.76.1/params/inherit.keywords.xml new file mode 100644 index 0000000..7939a6a --- /dev/null +++ b/docbook-xsl-1.76.1/params/inherit.keywords.xml @@ -0,0 +1,31 @@ + + +inherit.keywords +boolean + + +inherit.keywords +Inherit keywords from ancestor elements? + + + + + + + +Description + +If inherit.keywords +is non-zero, the keyword meta for each HTML +head element will include all of the keywords from +ancestor elements. Otherwise, only the keywords from the current section +will be used. + + + + diff --git a/docbook-xsl-1.76.1/params/insert.link.page.number.xml b/docbook-xsl-1.76.1/params/insert.link.page.number.xml new file mode 100644 index 0000000..b26c0f6 --- /dev/null +++ b/docbook-xsl-1.76.1/params/insert.link.page.number.xml @@ -0,0 +1,69 @@ + + +insert.link.page.number +list +no +yes +maybe + + +insert.link.page.number +Turns page numbers in link elements on and off + + + + +no + + + +Description + +The value of this parameter determines if +cross references using the link element in +printed output will +include standard page number citations. +It has three possible values. + + + +no +No page number references will be generated. + + + +yes +Page number references will be generated +for all link elements. +The style of page reference may be changed +if an xrefstyle +attribute is used. + + + +maybe +Page number references will not be generated +for a link element unless +it has an +xrefstyle +attribute whose value specifies a page reference. + + + + +Although the xrefstyle attribute +can be used to turn the page reference on or off, it cannot be +used to control the formatting of the page number as it +can in xref. +In link it will always format with +the style established by the +gentext template with name="page.citation" +in the l:context name="xref". + + + diff --git a/docbook-xsl-1.76.1/params/insert.olink.page.number.xml b/docbook-xsl-1.76.1/params/insert.olink.page.number.xml new file mode 100644 index 0000000..dc6da3d --- /dev/null +++ b/docbook-xsl-1.76.1/params/insert.olink.page.number.xml @@ -0,0 +1,83 @@ + + +insert.olink.page.number +list +no +yes +maybe + + +insert.olink.page.number +Turns page numbers in olinks on and off + + + + +no + + + +Description + +The value of this parameter determines if +cross references made between documents with +olink will +include page number citations. +In most cases this is only applicable to references in printed output. + +The parameter has three possible values. + + + +no +No page number references will be generated for olinks. + + + +yes +Page number references will be generated +for all olink references. +The style of page reference may be changed +if an xrefstyle +attribute is used. + + + +maybe +Page number references will not be generated +for an olink element unless +it has an +xrefstyle +attribute whose value specifies a page reference. + + + +Olinks that point to targets within the same document +are treated as xrefs, and controlled by +the insert.xref.page.number parameter. + + +Page number references for olinks to +external documents can only be inserted if the +information exists in the olink database. +This means each olink target element +(div or obj) +must have a page attribute +whose value is its page number in the target document. +The XSL stylesheets are not able to extract that information +during processing because pages have not yet been created in +XSLT transformation. Only the XSL-FO processor knows what +page each element is placed on. +Therefore some postprocessing must take place to populate +page numbers in the olink database. + + + + + + diff --git a/docbook-xsl-1.76.1/params/insert.olink.pdf.frag.xml b/docbook-xsl-1.76.1/params/insert.olink.pdf.frag.xml new file mode 100644 index 0000000..e937060 --- /dev/null +++ b/docbook-xsl-1.76.1/params/insert.olink.pdf.frag.xml @@ -0,0 +1,68 @@ + + +insert.olink.pdf.frag +boolean + + +insert.olink.pdf.frag +Add fragment identifiers for links into PDF files + + + + + + + + +Description + +The value of this parameter determines whether +the cross reference URIs to PDF documents made with +olink will +include fragment identifiers. + + +When forming a URI to link to a PDF document, +a fragment identifier (typically a '#' followed by an +id value) appended to the PDF filename can be used by +the PDF viewer to open +the PDF file to a location within the document instead of +the first page. +However, not all PDF files have id +values embedded in them, and not all PDF viewers can +handle fragment identifiers. + + +If insert.olink.pdf.frag is set +to a non-zero value, then any olink targeting a +PDF file will have the fragment identifier appended to the URI. +The URI is formed by concatenating the value of the +olink.base.uri parameter, the +value of the baseuri +attribute from the document +element in the olink database with the matching +targetdoc value, +and the value of the href +attribute for the targeted element in the olink database. +The href attribute +contains the fragment identifier. + + +If insert.olink.pdf.frag is set +to zero (the default value), then +the href attribute +from the olink database +is not appended to PDF olinks, so the fragment identifier is left off. +A PDF olink is any olink for which the +baseuri attribute +from the matching document +element in the olink database ends with '.pdf'. +Any other olinks will still have the fragment identifier added. + + + diff --git a/docbook-xsl-1.76.1/params/insert.xref.page.number.xml b/docbook-xsl-1.76.1/params/insert.xref.page.number.xml new file mode 100644 index 0000000..8c3aa07 --- /dev/null +++ b/docbook-xsl-1.76.1/params/insert.xref.page.number.xml @@ -0,0 +1,60 @@ + + +insert.xref.page.number +list +no +yes +maybe + + +insert.xref.page.number +Turns page numbers in xrefs on and off + + + + +no + + + +Description + +The value of this parameter determines if +cross references (xrefs) in +printed output will +include page number citations. +It has three possible values. + + + +no +No page number references will be generated. + + + +yes +Page number references will be generated +for all xref elements. +The style of page reference may be changed +if an xrefstyle +attribute is used. + + + +maybe +Page number references will not be generated +for an xref element unless +it has an +xrefstyle +attribute whose value specifies a page reference. + + + + + + diff --git a/docbook-xsl-1.76.1/params/itemizedlist.label.properties.xml b/docbook-xsl-1.76.1/params/itemizedlist.label.properties.xml new file mode 100644 index 0000000..49f8ee6 --- /dev/null +++ b/docbook-xsl-1.76.1/params/itemizedlist.label.properties.xml @@ -0,0 +1,26 @@ + + +itemizedlist.label.properties +attribute set + + +itemizedlist.label.properties +Properties that apply to each label inside itemized list. + + + + + + +Description +Properties that apply to each label inside itemized list. E.g.: +<xsl:attribute-set name="itemizedlist.label.properties"> + <xsl:attribute name="text-align">right</xsl:attribute> +</xsl:attribute-set> + + diff --git a/docbook-xsl-1.76.1/params/itemizedlist.label.width.xml b/docbook-xsl-1.76.1/params/itemizedlist.label.width.xml new file mode 100644 index 0000000..1d2c88c --- /dev/null +++ b/docbook-xsl-1.76.1/params/itemizedlist.label.width.xml @@ -0,0 +1,28 @@ + + +itemizedlist.label.width +length + + + itemizedlist.label.width +The default width of the label (bullet) in an itemized list. + + + + + 1.0em + + + +Description +Specifies the default width of the label (usually a bullet or other +symbol) in an itemized list. You can override the default value on any +particular list with the “dbfo†processing instruction using the +“label-width†pseudoattribute. + + diff --git a/docbook-xsl-1.76.1/params/itemizedlist.properties.xml b/docbook-xsl-1.76.1/params/itemizedlist.properties.xml new file mode 100644 index 0000000..d7c7c1d --- /dev/null +++ b/docbook-xsl-1.76.1/params/itemizedlist.properties.xml @@ -0,0 +1,23 @@ + + +itemizedlist.properties +attribute set + + +itemizedlist.properties +Properties that apply to each list-block generated by itemizedlist. + + + + + + +Description +Properties that apply to each fo:list-block generated by itemizedlist. + + diff --git a/docbook-xsl-1.76.1/params/javahelp.encoding.xml b/docbook-xsl-1.76.1/params/javahelp.encoding.xml new file mode 100644 index 0000000..ba729c8 --- /dev/null +++ b/docbook-xsl-1.76.1/params/javahelp.encoding.xml @@ -0,0 +1,31 @@ + + +javahelp.encoding +string + + +javahelp.encoding +Character encoding to use in control files for JavaHelp. + + + + +iso-8859-1 + + + +Description + +JavaHelp crashes on some characters when written as character +references. In that case you can use this parameter to select an appropriate encoding. + + + + + + diff --git a/docbook-xsl-1.76.1/params/keep.relative.image.uris.xml b/docbook-xsl-1.76.1/params/keep.relative.image.uris.xml new file mode 100644 index 0000000..3a5a098 --- /dev/null +++ b/docbook-xsl-1.76.1/params/keep.relative.image.uris.xml @@ -0,0 +1,34 @@ + + +keep.relative.image.uris +boolean + + +keep.relative.image.uris +Should image URIs be resolved against xml:base? + + + + + + + + + +Description + +If non-zero, relative URIs (in, for example +fileref attributes) will be used in the generated +output. Otherwise, the URIs will be made absolute with respect to the +base URI. + +Note that the stylesheets calculate (and use) the absolute form +for some purposes, this only applies to the resulting output. + + + diff --git a/docbook-xsl-1.76.1/params/keyboard.nav.xml b/docbook-xsl-1.76.1/params/keyboard.nav.xml new file mode 100644 index 0000000..49b0c0b --- /dev/null +++ b/docbook-xsl-1.76.1/params/keyboard.nav.xml @@ -0,0 +1,29 @@ + + +keyboard.nav +boolean + + +keyboard.nav +Enable keyboard navigation? + + + + + + + + +Description + +If non-zero, JavaScript is added to the slides to enable keyboard +navigation. Pressing 'n', space, or return moves forward; pressing 'p' moves +backward. + + + diff --git a/docbook-xsl-1.76.1/params/l10n.gentext.default.language.xml b/docbook-xsl-1.76.1/params/l10n.gentext.default.language.xml new file mode 100644 index 0000000..ed89e06 --- /dev/null +++ b/docbook-xsl-1.76.1/params/l10n.gentext.default.language.xml @@ -0,0 +1,30 @@ + + + l10n.gentext.default.language + string + + + l10n.gentext.default.language + Sets the default language for generated text + + + + +en + + + +Description + +The value of the l10n.gentext.default.language +parameter is used as the language for generated text if no setting is provided +in the source document. + + + diff --git a/docbook-xsl-1.76.1/params/l10n.gentext.language.xml b/docbook-xsl-1.76.1/params/l10n.gentext.language.xml new file mode 100644 index 0000000..ff941c7 --- /dev/null +++ b/docbook-xsl-1.76.1/params/l10n.gentext.language.xml @@ -0,0 +1,33 @@ + + +l10n.gentext.language +string + + +l10n.gentext.language +Sets the gentext language + + + + + + + + +Description + +If this parameter is set to any value other than the empty string, its +value will be used as the value for the language when generating text. Setting +l10n.gentext.language overrides any settings within the +document being formatted. + +It's much more likely that you might want to set the +l10n.gentext.default.language parameter. + + + diff --git a/docbook-xsl-1.76.1/params/l10n.gentext.use.xref.language.xml b/docbook-xsl-1.76.1/params/l10n.gentext.use.xref.language.xml new file mode 100644 index 0000000..d70017a --- /dev/null +++ b/docbook-xsl-1.76.1/params/l10n.gentext.use.xref.language.xml @@ -0,0 +1,53 @@ + + +l10n.gentext.use.xref.language +boolean + + +l10n.gentext.use.xref.language +Use the language of target when generating cross-reference text? + + + + + + + + +Description + +If non-zero, the language of the target will be used when +generating cross reference text. Usually, the current +language is used when generating text (that is, the language of the +element that contains the cross-reference element). But setting this parameter +allows the language of the element pointed to to control +the generated text. + +Consider the following example: + + +<para lang="en">See also <xref linkend="chap3"/>.</para> + + + +Suppose that Chapter 3 happens to be written in German. +If l10n.gentext.use.xref.language is non-zero, the +resulting text will be something like this: + +
    +See also Kapital 3. +
    + +Where the more traditional rendering would be: + +
    +See also Chapter 3. +
    + +
    +
    diff --git a/docbook-xsl-1.76.1/params/l10n.lang.value.rfc.compliant.xml b/docbook-xsl-1.76.1/params/l10n.lang.value.rfc.compliant.xml new file mode 100644 index 0000000..e0dbd79 --- /dev/null +++ b/docbook-xsl-1.76.1/params/l10n.lang.value.rfc.compliant.xml @@ -0,0 +1,57 @@ + + +l10n.lang.value.rfc.compliant +boolean + + +l10n.lang.value.rfc.compliant +Make value of lang attribute RFC compliant? + + + + + + + + +Description + +If non-zero, ensure that the values for all lang attributes in HTML output are RFC +compliantSection 8.1.1, Language Codes, in the HTML 4.0 Recommendation states that: + +
    [RFC1766] defines and explains the language codes +that must be used in HTML documents. +Briefly, language codes consist of a primary code and a possibly +empty series of subcodes: + +language-code = primary-code ( "-" subcode )* + +And in RFC 1766, Tags for the Identification +of Languages, the EBNF for "language tag" is given as: + +Language-Tag = Primary-tag *( "-" Subtag ) +Primary-tag = 1*8ALPHA +Subtag = 1*8ALPHA + +
    +
    . + +by taking any underscore characters in any lang values found in source documents, and +replacing them with hyphen characters in output HTML files. For +example, zh_CN in a source document becomes +zh-CN in the HTML output form that source. + + +This parameter does not cause any case change in lang values, because RFC 1766 +explicitly states that all "language tags" (as it calls them) "are +to be treated as case insensitive". + +
    + +
    +
    diff --git a/docbook-xsl-1.76.1/params/label.from.part.xml b/docbook-xsl-1.76.1/params/label.from.part.xml new file mode 100644 index 0000000..5deb960 --- /dev/null +++ b/docbook-xsl-1.76.1/params/label.from.part.xml @@ -0,0 +1,38 @@ + + +label.from.part +boolean + + +label.from.part +Renumber components in each part? + + + + + + + + +Description + +If label.from.part is non-zero, then + numbering of components — preface, + chapter, appendix, and + reference (when reference occurs at the + component level) — is re-started within each + part. +If label.from.part is zero (the + default), numbering of components is not + re-started within each part; instead, components are + numbered sequentially throughout each book, + regardless of whether or not they occur within part + instances. + + + diff --git a/docbook-xsl-1.76.1/params/line-height.xml b/docbook-xsl-1.76.1/params/line-height.xml new file mode 100644 index 0000000..f0f4b32 --- /dev/null +++ b/docbook-xsl-1.76.1/params/line-height.xml @@ -0,0 +1,27 @@ + + +line-height +string + + +line-height +Specify the line-height property + + + + +normal + + + +Description + +Sets the line-height property. + + + diff --git a/docbook-xsl-1.76.1/params/linenumbering.everyNth.xml b/docbook-xsl-1.76.1/params/linenumbering.everyNth.xml new file mode 100644 index 0000000..5e7bcac --- /dev/null +++ b/docbook-xsl-1.76.1/params/linenumbering.everyNth.xml @@ -0,0 +1,29 @@ + + +linenumbering.everyNth +integer + + +linenumbering.everyNth +Indicate which lines should be numbered + + + + +5 + + + +Description + +If line numbering is enabled, everyNth line will be +numbered. Note that numbering is one based, not zero based. + + + + diff --git a/docbook-xsl-1.76.1/params/linenumbering.extension.xml b/docbook-xsl-1.76.1/params/linenumbering.extension.xml new file mode 100644 index 0000000..726781a --- /dev/null +++ b/docbook-xsl-1.76.1/params/linenumbering.extension.xml @@ -0,0 +1,30 @@ + + +linenumbering.extension +boolean + + +linenumbering.extension +Enable the line numbering extension + + + + + + + + +Description + +If non-zero, verbatim environments (address, literallayout, +programlisting, screen, synopsis) that specify line numbering will +have line numbers. + + + + diff --git a/docbook-xsl-1.76.1/params/linenumbering.separator.xml b/docbook-xsl-1.76.1/params/linenumbering.separator.xml new file mode 100644 index 0000000..8bf7d22 --- /dev/null +++ b/docbook-xsl-1.76.1/params/linenumbering.separator.xml @@ -0,0 +1,30 @@ + + +linenumbering.separator +string + + +linenumbering.separator +Specify a separator between line numbers and lines + + + + + + + + +Description + +The separator is inserted between line numbers and lines in the +verbatim environment. The default value is a single white space. + Note the interaction with linenumbering.width + + + + diff --git a/docbook-xsl-1.76.1/params/linenumbering.width.xml b/docbook-xsl-1.76.1/params/linenumbering.width.xml new file mode 100644 index 0000000..78515c3 --- /dev/null +++ b/docbook-xsl-1.76.1/params/linenumbering.width.xml @@ -0,0 +1,29 @@ + + +linenumbering.width +integer + + +linenumbering.width +Indicates the width of line numbers + + + + +3 + + + +Description + +If line numbering is enabled, line numbers will appear right +justified in a field "width" characters wide. + + + + diff --git a/docbook-xsl-1.76.1/params/link.mailto.url.xml b/docbook-xsl-1.76.1/params/link.mailto.url.xml new file mode 100644 index 0000000..0715b32 --- /dev/null +++ b/docbook-xsl-1.76.1/params/link.mailto.url.xml @@ -0,0 +1,29 @@ + + +link.mailto.url +string + + +link.mailto.url +Mailto URL for the LINK REL=made HTML HEAD element + + + + + + + + +Description + +If not the empty string, this address will be used for the +rel=made link element in the html head + + + + diff --git a/docbook-xsl-1.76.1/params/list.block.properties.xml b/docbook-xsl-1.76.1/params/list.block.properties.xml new file mode 100644 index 0000000..dbf9dfc --- /dev/null +++ b/docbook-xsl-1.76.1/params/list.block.properties.xml @@ -0,0 +1,25 @@ + + +list.block.properties +attribute set + + +list.block.properties +Properties that apply to each list-block generated by list. + + + + + 0.2em + 1.5em + + +Description +Properties that apply to each fo:list-block generated by itemizedlist/orderedlist. + + diff --git a/docbook-xsl-1.76.1/params/list.block.spacing.xml b/docbook-xsl-1.76.1/params/list.block.spacing.xml new file mode 100644 index 0000000..377e6f8 --- /dev/null +++ b/docbook-xsl-1.76.1/params/list.block.spacing.xml @@ -0,0 +1,29 @@ + + +list.block.spacing +attribute set + + +list.block.spacing +What spacing do you want before and after lists? + + + + + 1em + 0.8em + 1.2em + 1em + 0.8em + 1.2em + + +Description +Specify the spacing required before and after a list. It is necessary to specify the space after a list block because lists can come inside of paras. + + diff --git a/docbook-xsl-1.76.1/params/list.item.spacing.xml b/docbook-xsl-1.76.1/params/list.item.spacing.xml new file mode 100644 index 0000000..2191652 --- /dev/null +++ b/docbook-xsl-1.76.1/params/list.item.spacing.xml @@ -0,0 +1,26 @@ + + +list.item.spacing +attribute set + + +list.item.spacing +What space do you want between list items? + + + + + 1em + 0.8em + 1.2em + + +Description +Specify what spacing you want between each list item. + + diff --git a/docbook-xsl-1.76.1/params/make.clean.html.xml b/docbook-xsl-1.76.1/params/make.clean.html.xml new file mode 100644 index 0000000..fbf80d0 --- /dev/null +++ b/docbook-xsl-1.76.1/params/make.clean.html.xml @@ -0,0 +1,51 @@ + + +make.clean.html +boolean + + +make.clean.html +Make HTML conform to modern coding standards + + + + + + + + +Description + +If make.clean.html is true, the stylesheets take +extra effort to ensure that the resulting HTML is conforms to +modern HTML coding standards. In addition to eliminating +excessive and noncompliant coding, it moves presentation +HTML coding to a CSS stylesheet. + +The resulting HTML is dependent on +CSS for formatting, and so the stylesheet is capable of +generating a supporting CSS file. The docbook.css.source +and custom.css.source parameters control +how a CSS file is generated. + +If you require your CSS to reside in the HTML +head element, then the generate.css.header +can be used to do that. + +The make.clean.html parameter is +different from html.cleanup +because the former changes the resulting markup; it does not use extension functions +like the latter to manipulate result-tree-fragments, +and is therefore applicable to any XSLT processor. + +If make.clean.html is set to zero (the default), +then the stylesheet retains its original +old style +HTML formatting features. + + diff --git a/docbook-xsl-1.76.1/params/make.graphic.viewport.xml b/docbook-xsl-1.76.1/params/make.graphic.viewport.xml new file mode 100644 index 0000000..0bad336 --- /dev/null +++ b/docbook-xsl-1.76.1/params/make.graphic.viewport.xml @@ -0,0 +1,35 @@ + + +make.graphic.viewport +boolean + + +make.graphic.viewport +Use tables in HTML to make viewports for graphics + + + + + + + + +Description + +The HTML img element only supports the notion +of content-area scaling; it doesn't support the distinction between a +content-area and a viewport-area, so we have to make some compromises. + +If make.graphic.viewport is non-zero, a table +will be used to frame the image. This creates an effective viewport-area. + + +Tables and alignment don't work together, so this parameter is ignored +if alignment is specified on an image. + + diff --git a/docbook-xsl-1.76.1/params/make.index.markup.xml b/docbook-xsl-1.76.1/params/make.index.markup.xml new file mode 100644 index 0000000..7942b5a --- /dev/null +++ b/docbook-xsl-1.76.1/params/make.index.markup.xml @@ -0,0 +1,73 @@ + + +make.index.markup +boolean + + +make.index.markup +Generate XML index markup in the index? + + + + + + + + +Description + +This parameter enables a very neat trick for getting properly +merged, collated back-of-the-book indexes. G. Ken Holman suggested +this trick at Extreme Markup Languages 2002 and I'm indebted to him +for it. + +Jeni Tennison's excellent code in +autoidx.xsl does a great job of merging and +sorting indexterms in the document and building a +back-of-the-book index. However, there's one thing that it cannot +reasonably be expected to do: merge page numbers into ranges. (I would +not have thought that it could collate and suppress duplicate page +numbers, but in fact it appears to manage that task somehow.) + +Ken's trick is to produce a document in which the index at the +back of the book is displayed in XML. Because the index +is generated by the FO processor, all of the page numbers have been resolved. +It's a bit hard to explain, but what it boils down to is that instead of having +an index at the back of the book that looks like this: + +
    +A +ap1, 1, 2, 3 + +
    + +you get one that looks like this: + +
    +<indexdiv>A</indexdiv> +<indexentry> +<primaryie>ap1</primaryie>, +<phrase role="pageno">1</phrase>, +<phrase role="pageno">2</phrase>, +<phrase role="pageno">3</phrase> +</indexentry> +
    + +After building a PDF file with this sort of odd-looking index, you can +extract the text from the PDF file and the result is a proper index expressed in +XML. + +Now you have data that's amenable to processing and a simple Perl script +(such as fo/pdf2index) can +merge page ranges and generate a proper index. + +Finally, reformat your original document using this literal index instead of +an automatically generated one and bingo! + +
    +
    diff --git a/docbook-xsl-1.76.1/params/make.single.year.ranges.xml b/docbook-xsl-1.76.1/params/make.single.year.ranges.xml new file mode 100644 index 0000000..c49ab97 --- /dev/null +++ b/docbook-xsl-1.76.1/params/make.single.year.ranges.xml @@ -0,0 +1,28 @@ + + +make.single.year.ranges +boolean + + +make.single.year.ranges +Print single-year ranges (e.g., 1998-1999) + + + + + + + +Description + +If non-zero, year ranges that span a single year will be printed +in range notation (1998-1999) instead of discrete notation +(1998, 1999). + + + diff --git a/docbook-xsl-1.76.1/params/make.valid.html.xml b/docbook-xsl-1.76.1/params/make.valid.html.xml new file mode 100644 index 0000000..8618d39 --- /dev/null +++ b/docbook-xsl-1.76.1/params/make.valid.html.xml @@ -0,0 +1,35 @@ + + +make.valid.html +boolean + + +make.valid.html +Attempt to make sure the HTML output is valid HTML + + + + + + + + +Description + +If make.valid.html is true, the stylesheets take +extra effort to ensure that the resulting HTML is valid. This may mean that some +para tags are translated into HTML divs or +that other substitutions occur. + +This parameter is different from html.cleanup +because it changes the resulting markup; it does not use extension functions +to manipulate result-tree-fragments and is therefore applicable to any +XSLT processor. + + + diff --git a/docbook-xsl-1.76.1/params/make.year.ranges.xml b/docbook-xsl-1.76.1/params/make.year.ranges.xml new file mode 100644 index 0000000..b1a2382 --- /dev/null +++ b/docbook-xsl-1.76.1/params/make.year.ranges.xml @@ -0,0 +1,32 @@ + + +make.year.ranges +boolean + + +make.year.ranges +Collate copyright years into ranges? + + + + + + +Description + +If non-zero, multiple copyright year elements will be +collated into ranges. +This works only if each year number is put into a separate +year element. The copyright element permits multiple +year elements. If a year element contains a dash or +a comma, then that year element will not be merged into +any range. + + + + diff --git a/docbook-xsl-1.76.1/params/man.authors.section.enabled.xml b/docbook-xsl-1.76.1/params/man.authors.section.enabled.xml new file mode 100644 index 0000000..73cb637 --- /dev/null +++ b/docbook-xsl-1.76.1/params/man.authors.section.enabled.xml @@ -0,0 +1,46 @@ + + +man.authors.section.enabled +boolean + + +man.authors.section.enabled +Display auto-generated AUTHORS section? + + + +1 + + +Description + +If the value of +man.authors.section.enabled is non-zero +(the default), then an AUTHORS section is +generated near the end of each man page. The output of the +AUTHORS section is assembled from any +author, editor, and othercredit +metadata found in the contents of the child info or +refentryinfo (if any) of the refentry +itself, or from any author, editor, and +othercredit metadata that may appear in info +contents of any ancestors of the refentry. + +If the value of +man.authors.section.enabled is zero, the +the auto-generated AUTHORS section is +suppressed. + +Set the value of + man.authors.section.enabled to zero if + you want to have a manually created AUTHORS + section in your source, and you want it to appear in output + instead of the auto-generated AUTHORS + section. + + diff --git a/docbook-xsl-1.76.1/params/man.base.url.for.relative.links.xml b/docbook-xsl-1.76.1/params/man.base.url.for.relative.links.xml new file mode 100644 index 0000000..a802ec8 --- /dev/null +++ b/docbook-xsl-1.76.1/params/man.base.url.for.relative.links.xml @@ -0,0 +1,76 @@ + + + man.base.url.for.relative.links + string + + + man.base.url.for.relative.links + Specifies a base URL for relative links + + + + [set $man.base.url.for.relative.links]/ + + + Description + + For any “notesource†listed in the auto-generated + “NOTES†section of output man pages (which is generated when + the value of the + man.endnotes.list.enabled parameter + is non-zero), if the notesource is a link source with a + relative URI, the URI is displayed in output with the value + of the + man.base.url.for.relative.links + parameter prepended to the value of the link URI. + + + A link source is an notesource that references an + external resource: + + + a ulink element with a url attribute + + + any element with an xlink:href attribute + + + an imagedata, audiodata, or + videodata element + + + + + + If you use relative URIs in link sources in your DocBook + refentry source, and you leave + man.base.url.for.relative.links + unset, the relative links will appear “as is†in the “Notes†+ section of any man-page output generated from your source. + That’s probably not what you want, because such relative + links are only usable in the context of HTML output. So, to + make the links meaningful and usable in the context of + man-page output, set a value for + man.base.url.for.relative.links that + points to the online version of HTML output generated from + your DocBook refentry source. For + example: + <xsl:param name="man.base.url.for.relative.links" + >http://www.kernel.org/pub/software/scm/git/docs/</xsl:param> + + + + + Related Parameters + man.endnotes.list.enabled + + + diff --git a/docbook-xsl-1.76.1/params/man.break.after.slash.xml b/docbook-xsl-1.76.1/params/man.break.after.slash.xml new file mode 100644 index 0000000..859edb7 --- /dev/null +++ b/docbook-xsl-1.76.1/params/man.break.after.slash.xml @@ -0,0 +1,46 @@ + + +man.break.after.slash +boolean + + +man.break.after.slash +Enable line-breaking after slashes? + + + + +0 + + +Description + +If non-zero, line-breaking after slashes is enabled. This is +mainly useful for causing long URLs or pathnames/filenames to be +broken up or "wrapped" across lines (though it also has the side +effect of sometimes causing relatively short URLs and pathnames to be +broken up across lines too). + +If zero (the default), line-breaking after slashes is +disabled. In that case, strings containing slashes (for example, URLs +or filenames) are not broken across lines, even if they exceed the +maximum column widith. + + + If you set a non-zero value for this parameter, check your + man-page output carefuly afterwards, in order to make sure that the + setting has not introduced an excessive amount of breaking-up of URLs + or pathnames. If your content contains mostly short URLs or + pathnames, setting a non-zero value for + man.break.after.slash will probably result in + in a significant number of relatively short URLs and pathnames being + broken across lines, which is probably not what you want. + + + + diff --git a/docbook-xsl-1.76.1/params/man.charmap.enabled.xml b/docbook-xsl-1.76.1/params/man.charmap.enabled.xml new file mode 100644 index 0000000..5522339 --- /dev/null +++ b/docbook-xsl-1.76.1/params/man.charmap.enabled.xml @@ -0,0 +1,55 @@ + + +man.charmap.enabled +boolean + + +man.charmap.enabled +Apply character map before final output? + + + + + + + + +Description + +If the value of the man.charmap.enabled +parameter is non-zero, a "character map" is used to substitute certain +Unicode symbols and special characters with appropriate roff/groff +equivalents, just before writing each man-page file to the +filesystem. If instead the value of +man.charmap.enabled is zero, Unicode characters +are passed through "as is". + +Details + +For converting certain Unicode symbols and special characters in +UTF-8 or UTF-16 encoded XML source to appropriate groff/roff +equivalents in man-page output, the DocBook XSL Stylesheets +distribution includes a roff character map that is compliant with the XSLT character +map format as detailed in the XSLT 2.0 specification. The map +contains more than 800 character mappings and can be considered the +standard roff character map for the distribution. + +You can use the man.charmap.uri +parameter to specify a URI for the location for an alternate roff +character map to use in place of the standard roff character map +provided in the distribution. + +You can also use a subset of a character map. For details, +see the man.charmap.use.subset, +man.charmap.subset.profile, and +man.charmap.subset.profile.english +parameters. + + + + diff --git a/docbook-xsl-1.76.1/params/man.charmap.subset.profile.english.xml b/docbook-xsl-1.76.1/params/man.charmap.subset.profile.english.xml new file mode 100644 index 0000000..cbc9fb0 --- /dev/null +++ b/docbook-xsl-1.76.1/params/man.charmap.subset.profile.english.xml @@ -0,0 +1,80 @@ + + +man.charmap.subset.profile.english +string + + +man.charmap.subset.profile.english +Profile of character map subset + + + + + +@*[local-name() = 'block'] = 'Miscellaneous Technical' or +(@*[local-name() = 'block'] = 'C1 Controls And Latin-1 Supplement (Latin-1 Supplement)' and + @*[local-name() = 'class'] = 'symbols') +or +(@*[local-name() = 'block'] = 'General Punctuation' and + (@*[local-name() = 'class'] = 'spaces' or + @*[local-name() = 'class'] = 'dashes' or + @*[local-name() = 'class'] = 'quotes' or + @*[local-name() = 'class'] = 'bullets' + ) +) or +@*[local-name() = 'name'] = 'HORIZONTAL ELLIPSIS' or +@*[local-name() = 'name'] = 'WORD JOINER' or +@*[local-name() = 'name'] = 'SERVICE MARK' or +@*[local-name() = 'name'] = 'TRADE MARK SIGN' or +@*[local-name() = 'name'] = 'ZERO WIDTH NO-BREAK SPACE' + + + + +Description + +If the value of the + man.charmap.use.subset parameter is + non-zero, and your DocBook source is written in English (that + is, if its lang or xml:lang attribute on the root element + in your DocBook source or on the first refentry + element in your source has the value en or if + it has no lang or xml:lang attribute), then the + character-map subset specified by the + man.charmap.subset.profile.english + parameter is used instead of the full roff character map. + +Otherwise, if the lang or xml:lang attribute + on the root element in your DocBook source or on the first + refentry element in your source has a value other + than en, then the character-map subset + specified by the + man.charmap.subset.profile parameter is + used instead of + man.charmap.subset.profile.english. + +The difference between the two subsets is that + man.charmap.subset.profile provides + mappings for characters in Western European languages that are + not part of the Roman (English) alphabet (ASCII character set). + +The value of man.charmap.subset.profile.english +is a string representing an XPath expression that matches attribute +names and values for output-character elements in the character map. + +For other details, see the documentation for the +man.charmap.subset.profile.english and +man.charmap.use.subset parameters. + + + diff --git a/docbook-xsl-1.76.1/params/man.charmap.subset.profile.xml b/docbook-xsl-1.76.1/params/man.charmap.subset.profile.xml new file mode 100644 index 0000000..913a4e3 --- /dev/null +++ b/docbook-xsl-1.76.1/params/man.charmap.subset.profile.xml @@ -0,0 +1,297 @@ + + +man.charmap.subset.profile +string + + +man.charmap.subset.profile +Profile of character map subset + + + + + +@*[local-name() = 'block'] = 'Miscellaneous Technical' or +(@*[local-name() = 'block'] = 'C1 Controls And Latin-1 Supplement (Latin-1 Supplement)' and + (@*[local-name() = 'class'] = 'symbols' or + @*[local-name() = 'class'] = 'letters') +) or +@*[local-name() = 'block'] = 'Latin Extended-A' +or +(@*[local-name() = 'block'] = 'General Punctuation' and + (@*[local-name() = 'class'] = 'spaces' or + @*[local-name() = 'class'] = 'dashes' or + @*[local-name() = 'class'] = 'quotes' or + @*[local-name() = 'class'] = 'bullets' + ) +) or +@*[local-name() = 'name'] = 'HORIZONTAL ELLIPSIS' or +@*[local-name() = 'name'] = 'WORD JOINER' or +@*[local-name() = 'name'] = 'SERVICE MARK' or +@*[local-name() = 'name'] = 'TRADE MARK SIGN' or +@*[local-name() = 'name'] = 'ZERO WIDTH NO-BREAK SPACE' + + + + +Description + +If the value of the +man.charmap.use.subset parameter is non-zero, +and your DocBook source is not written in English (that + is, if the lang or xml:lang attribute on the root element + in your DocBook source or on the first refentry + element in your source has a value other than + en), then the character-map subset specified + by the man.charmap.subset.profile + parameter is used instead of the full roff character map. + +Otherwise, if the lang or xml:lang attribute on the root + element in your DocBook + source or on the first refentry element in your source + has the value en or if it has no lang or xml:lang attribute, then the character-map + subset specified by the + man.charmap.subset.profile.english + parameter is used instead of + man.charmap.subset.profile. + +The difference between the two subsets is that + man.charmap.subset.profile provides + mappings for characters in Western European languages that are + not part of the Roman (English) alphabet (ASCII character set). + +The value of man.charmap.subset.profile +is a string representing an XPath expression that matches attribute +names and values for output-character +elements in the character map. + +The attributes supported in the standard roff character map included in the distribution are: + + + character + + a raw Unicode character or numeric Unicode + character-entity value (either in decimal or hex); all + characters have this attribute + + + + name + + a standard full/long ISO/Unicode character name (e.g., + "OHM SIGN"); all characters have this attribute + + + + block + + a standard Unicode "block" name (e.g., "General + Punctuation"); all characters have this attribute. For the full + list of Unicode block names supported in the standard roff + character map, see . + + + + class + + a class of characters (e.g., "spaces"). Not all + characters have this attribute; currently, it is used only with + certain characters within the "C1 Controls And Latin-1 + Supplement" and "General Punctuation" blocks. For details, see + . + + + + entity + + an ISO entity name (e.g., "ohm"); not all characters + have this attribute, because not all characters have ISO entity + names; for example, of the 800 or so characters in the standard + roff character map included in the distribution, only around 300 + have ISO entity names. + + + + + string + + a string representing an roff/groff escape-code (with + "@esc@" used in place of the backslash), or a simple ASCII + string; all characters in the roff character map have this + attribute + + + + +The value of man.charmap.subset.profile +is evaluated as an XPath expression at run-time to select a portion of +the roff character map to use. You can tune the subset used by adding +or removing parts. For example, if you need to use a wide range of +mathematical operators in a document, and you want to have them +converted into roff markup properly, you might add the following: + + @*[local-name() = 'block'] ='MathematicalOperators' + +That will cause a additional set of around 67 additional "math" +characters to be converted into roff markup. + + +Depending on which XSLT engine you use, either the EXSLT +dyn:evaluate extension function (for xsltproc or +Xalan) or saxon:evaluate extension function (for +Saxon) are used to dynamically evaluate the value of +man.charmap.subset.profile at run-time. If you +don't use xsltproc, Saxon, Xalan -- or some other XSLT engine that +supports dyn:evaluate -- you must either set the +value of the man.charmap.use.subset parameter +to zero and process your documents using the full character map +instead, or set the value of the +man.charmap.enabled parameter to zero instead +(so that character-map processing is disabled completely. + + +An alternative to using +man.charmap.subset.profile is to create your +own custom character map, and set the value of +man.charmap.uri to the URI/filename for +that. If you use a custom character map, you will probably want to +include in it just the characters you want to use, and so you will +most likely also want to set the value of +man.charmap.use.subset to zero. +You can create a +custom character map by making a copy of the standard roff character map provided in the distribution, and +then adding to, changing, and/or deleting from that. + + +If you author your DocBook XML source in UTF-8 or UTF-16 +encoding and aren't sure what OSes or environments your man-page +output might end up being viewed on, and not sure what version of +nroff/groff those environments might have, you should be careful about +what Unicode symbols and special characters you use in your source and +what parts you add to the value of +man.charmap.subset.profile. +Many of the escape codes used are specific to groff and using +them may not provide the expected output on an OS or environment that +uses nroff instead of groff. +On the other hand, if you intend for your man-page output to be +viewed only on modern systems (for example, GNU/Linux systems, FreeBSD +systems, or Cygwin environments) that have a good, up-to-date groff, +then you can safely include a wide range of Unicode symbols and +special characters in your UTF-8 or UTF-16 encoded DocBook XML source +and add any of the supported Unicode block names to the value of +man.charmap.subset.profile. + + + +For other details, see the documentation for the +man.charmap.use.subset parameter. + +Supported Unicode block names and "class" values + + + Below is the full list of Unicode block names and "class" + values supported in the standard roff stylesheet provided in the + distribution, along with a description of which codepoints from the + Unicode range corresponding to that block name or block/class + combination are supported. + + + + C1 Controls And Latin-1 Supplement (Latin-1 Supplement) (x00a0 to x00ff) + class values + + + symbols + + + letters + + + + + Latin Extended-A (x0100 to x017f, partial) + + + Spacing Modifier Letters (x02b0 to x02ee, partial) + + + Greek and Coptic (x0370 to x03ff, partial) + + + General Punctuation (x2000 to x206f, partial) + class values + + + spaces + + + dashes + + + quotes + + + daggers + + + bullets + + + leaders + + + primes + + + + + + Superscripts and Subscripts (x2070 to x209f) + + + Currency Symbols (x20a0 to x20b1) + + + Letterlike Symbols (x2100 to x214b) + + + Number Forms (x2150 to x218f) + + + Arrows (x2190 to x21ff, partial) + + + Mathematical Operators (x2200 to x22ff, partial) + + + Control Pictures (x2400 to x243f) + + + Enclosed Alphanumerics (x2460 to x24ff) + + + Geometric Shapes (x25a0 to x25f7, partial) + + + Miscellaneous Symbols (x2600 to x26ff, partial) + + + Dingbats (x2700 to x27be, partial) + + + Alphabetic Presentation Forms (xfb00 to xfb04 only) + + + + + diff --git a/docbook-xsl-1.76.1/params/man.charmap.uri.xml b/docbook-xsl-1.76.1/params/man.charmap.uri.xml new file mode 100644 index 0000000..0c8f574 --- /dev/null +++ b/docbook-xsl-1.76.1/params/man.charmap.uri.xml @@ -0,0 +1,42 @@ + + +man.charmap.uri +uri + + +man.charmap.uri +URI for custom roff character map + + + + + + + + +Description + +For converting certain Unicode symbols and special characters in +UTF-8 or UTF-16 encoded XML source to appropriate groff/roff +equivalents in man-page output, the DocBook XSL Stylesheets +distribution includes an XSLT character +map. That character map can be considered the standard roff +character map for the distribution. + +If the value of the man.charmap.uri +parameter is non-empty, that value is used as the URI for the location +for an alternate roff character map to use in place of the standard +roff character map provided in the distribution. + + +Do not set a value for man.charmap.uri +unless you have a custom roff character map that differs from the +standard one provided in the distribution. + + + diff --git a/docbook-xsl-1.76.1/params/man.charmap.use.subset.xml b/docbook-xsl-1.76.1/params/man.charmap.use.subset.xml new file mode 100644 index 0000000..4403704 --- /dev/null +++ b/docbook-xsl-1.76.1/params/man.charmap.use.subset.xml @@ -0,0 +1,80 @@ + + +man.charmap.use.subset +boolean + + +man.charmap.use.subset +Use subset of character map instead of full map? + + + + + + + + +Description + +If the value of the +man.charmap.use.subset parameter is non-zero, +a subset of the roff character map is used instead of the full roff +character map. The profile of the subset used is determined either +by the value of the +man.charmap.subset.profile +parameter (if the source is not in English) or the +man.charmap.subset.profile.english +parameter (if the source is in English). + + + You may want to experiment with setting a non-zero value of + man.charmap.use.subset, so that the full + character map is used. Depending on which XSLT engine you run, + setting a non-zero value for + man.charmap.use.subset may significantly + increase the time needed to process your documents. Or it may + not. For example, if you set it and run it with xsltproc, it seems + to dramatically increase processing time; on the other hand, if you + set it and run it with Saxon, it does not seem to increase + processing time nearly as much. + + If processing time is not a important concern and/or you can + tolerate the increase in processing time imposed by using the full + character map, set man.charmap.use.subset to + zero. + + +Details + +For converting certain Unicode symbols and special characters in +UTF-8 or UTF-16 encoded XML source to appropriate groff/roff +equivalents in man-page output, the DocBook XSL Stylesheets +distribution includes a roff character map that is compliant with the XSLT character +map format as detailed in the XSLT 2.0 specification. The map +contains more than 800 character mappings and can be considered the +standard roff character map for the distribution. + + +You can use the man.charmap.uri +parameter to specify a URI for the location for an alternate roff +character map to use in place of the standard roff character map +provided in the distribution. + + +Because it is not terrifically efficient to use the standard +800-character character map in full -- and for most (or all) users, +never necessary to use it in full -- the DocBook XSL Stylesheets +support a mechanism for using, within any given character map, a +subset of character mappings instead of the full set. You can use the +man.charmap.subset.profile or +man.charmap.subset.profile.english +parameter to tune the profile of that subset to use. + + + + diff --git a/docbook-xsl-1.76.1/params/man.copyright.section.enabled.xml b/docbook-xsl-1.76.1/params/man.copyright.section.enabled.xml new file mode 100644 index 0000000..9e83587 --- /dev/null +++ b/docbook-xsl-1.76.1/params/man.copyright.section.enabled.xml @@ -0,0 +1,46 @@ + + +man.copyright.section.enabled +boolean + + +man.copyright.section.enabled +Display auto-generated COPYRIGHT section? + + + +1 + + +Description + +If the value of +man.copyright.section.enabled is non-zero +(the default), then a COPYRIGHT section is +generated near the end of each man page. The output of the +COPYRIGHT section is assembled from any +copyright and legalnotice metadata found in +the contents of the child info or +refentryinfo (if any) of the refentry +itself, or from any copyright and +legalnotice metadata that may appear in info +contents of any ancestors of the refentry. + +If the value of +man.copyright.section.enabled is zero, the +the auto-generated COPYRIGHT section is +suppressed. + +Set the value of + man.copyright.section.enabled to zero if + you want to have a manually created COPYRIGHT + section in your source, and you want it to appear in output + instead of the auto-generated COPYRIGHT + section. + + diff --git a/docbook-xsl-1.76.1/params/man.endnotes.are.numbered.xml b/docbook-xsl-1.76.1/params/man.endnotes.are.numbered.xml new file mode 100644 index 0000000..b069ec3 --- /dev/null +++ b/docbook-xsl-1.76.1/params/man.endnotes.are.numbered.xml @@ -0,0 +1,106 @@ + + +man.endnotes.are.numbered +boolean + + +man.endnotes.are.numbered +Number endnotes? + + + + +1 + + + +Description + +If the value of man.endnotes.are.numbered is +non-zero (the default), then for each non-empty +A “non-empty†notesource is one that looks like +this: <ulink url="http://docbook.sf.net/snapshot/xsl/doc/manpages/">manpages</ulink> +an “empty†notesource is on that looks like this: <ulink url="http://docbook.sf.net/snapshot/xsl/doc/manpages/"/> + “notesourceâ€: + + + + a number (in square brackets) is displayed inline after the + rendered inline contents (if any) of the notesource + + + the contents of the notesource are included in a + numbered list of endnotes that is generated at the end of + each man page; the number for each endnote corresponds to + the inline number for the notesource with which it is + associated + + +The default heading for the list of endnotes is +NOTES. To output a different heading, set a value +for the man.endnotes.section.heading +parameter. + + + The endnotes list is also displayed (but without + numbers) if the value of + man.endnotes.list.enabled is + non-zero. + + + +If the value of man.endnotes.are.numbered is +zero, numbering of endnotess is suppressed; only inline +contents (if any) of the notesource are displayed inline. + + If you are thinking about disabling endnote numbering by setting + the value of man.endnotes.are.numbered to zero, + before you do so, first take some time to carefully + consider the information needs and experiences of your users. The + square-bracketed numbers displayed inline after notesources may seem + obstrusive and aesthetically unpleasingAs far as notesources that are links, ytou might + think it would be better to just display URLs for non-empty + links inline, after their content, rather than displaying + square-bracketed numbers all over the place. But it's not better. In + fact, it's not even practical, because many (most) URLs for links + are too long to be displayed inline. They end up overflowing the + right margin. You can set a non-zero value for + man.break.after.slash parameter to deal with + that, but it could be argued that what you end up with is at least + as ugly, and definitely more obstrusive, then having short + square-bracketed numbers displayed inline., + + but in a text-only output format, the + numbered-notesources/endnotes-listing mechanism is the only + practical way to handle this kind of content. + + Also, users of “text based†browsers such as + lynx will already be accustomed to seeing inline + numbers for links. And various "man to html" applications, such as + the widely used man2html (VH-Man2html) + application, can automatically turn URLs into "real" HTML hyperlinks + in output. So leaving man.endnotes.are.numbered + at its default (non-zero) value ensures that no information is + lost in your man-page output. It just gets + “rearrangedâ€. + + +The handling of empty links is not affected by this +parameter. Empty links are handled simply by displaying their URLs +inline. Empty links are never auto-numbered. + +If you disable endnotes numbering, you should probably also set +man.font.links to an empty value (to +disable font formatting for links. + + +Related Parameters + man.endnotes.list.enabled, + man.font.links + + diff --git a/docbook-xsl-1.76.1/params/man.endnotes.list.enabled.xml b/docbook-xsl-1.76.1/params/man.endnotes.list.enabled.xml new file mode 100644 index 0000000..89d8188 --- /dev/null +++ b/docbook-xsl-1.76.1/params/man.endnotes.list.enabled.xml @@ -0,0 +1,105 @@ + + +man.endnotes.list.enabled +boolean + + +man.endnotes.list.enabled +Display endnotes list at end of man page? + + + + +1 + + + +Description + +If the value of man.endnotes.list.enabled is +non-zero (the default), then an endnotes list is added to the end of +the output man page. + +If the value of man.endnotes.list.enabled is +zero, the list is suppressed — unless link numbering is enabled (that +is, if man.endnotes.are.numbered is non-zero), in +which case, that setting overrides the +man.endnotes.list.enabled setting, and the +endnotes list is still displayed. The reason is that inline +numbering of notesources associated with endnotes only makes sense +if a (numbered) list of endnotes is also generated. + + + Leaving + man.endnotes.list.enabled at its default + (non-zero) value ensures that no “out of line†information (such + as the URLs for hyperlinks and images) gets lost in your + man-page output. It just gets “rearrangedâ€. + So if you’re thinking about disabling endnotes listing by + setting the value of + man.endnotes.list.enabled to zero: + Before you do so, first take some time to carefully consider + the information needs and experiences of your users. The “out + of line†information has value even if the presentation of it + in text output is not as interactive as it may be in other + output formats. + As far as the specific case of URLs: Even though the URLs + displayed in text output may not be “real†(clickable) + hyperlinks, many X terminals have convenience features for + recognizing URLs and can, for example, present users with + an options to open a URL in a browser with the user clicks on + the URL is a terminal window. And short of those, users with X + terminals can always manually cut and paste the URLs into a web + browser. + Also, note that various “man to html†tools, such as the + widely used man2html (VH-Man2html) + application, automatically mark up URLs with a@href markup + during conversion — resulting in “real†hyperlinks in HTML + output from those tools. + + +To “turn off†numbering of endnotes in the +endnotes list, set man.endnotes.are.numbered +to zero. The endnotes list will +still be displayed; it will just be displayed without the +numbersIt can still make sense to have +the list of endnotes displayed even if you have endnotes numbering turned +off. In that case, your endnotes list basically becomes a “list +of references†without any association with specific text in +your document. This is probably the best option if you find the inline +endnotes numbering obtrusive. Your users will still have access to all the “out of line†+such as URLs for hyperlinks. + + +The default heading for the endnotes list is +NOTES. To change that, set a non-empty +value for the man.endnotes.list.heading +parameter. + +In the case of notesources that are links: Along with the +URL for each link, the endnotes list includes the contents of the +link. The list thus includes only non-empty + +A “non-empty†link is one that looks like +this: <ulink url="http://docbook.sf.net/snapshot/xsl/doc/manpages/">manpages</ulink> +an “empty link†is on that looks like this: <ulink url="http://docbook.sf.net/snapshot/xsl/doc/manpages/"/> + links. + +Empty links are never included, and never numbered. They are simply +displayed inline, without any numbering. + +In addition, if there are multiple instances of links in a +refentry that have the same URL, the URL is listed only +once. The contents listed for that link in the endnotes list are +the contents of the first link which has that URL. + +If you disable endnotes listing, you should probably also set +man.links.are.underlined to zero (to disable +link underlining). + + diff --git a/docbook-xsl-1.76.1/params/man.endnotes.list.heading.xml b/docbook-xsl-1.76.1/params/man.endnotes.list.heading.xml new file mode 100644 index 0000000..fe6545c --- /dev/null +++ b/docbook-xsl-1.76.1/params/man.endnotes.list.heading.xml @@ -0,0 +1,36 @@ + + +man.endnotes.list.heading +string + + +man.endnotes.list.heading +Specifies an alternate name for endnotes list + + + + + + + + +Description + +If the value of the +man.endnotes.are.numbered parameter +and/or the man.endnotes.list.enabled +parameter is non-zero (the defaults for both are non-zero), a +numbered list of endnotes is generated near the end of each man +page. The default heading for the list of endnotes is the +equivalent of the English word NOTES in +the current locale. To cause an alternate heading to be displayed, +set a non-empty value for the +man.endnotes.list.heading parameter — +for example, REFERENCES. + + diff --git a/docbook-xsl-1.76.1/params/man.font.funcprototype.xml b/docbook-xsl-1.76.1/params/man.font.funcprototype.xml new file mode 100644 index 0000000..67b698b --- /dev/null +++ b/docbook-xsl-1.76.1/params/man.font.funcprototype.xml @@ -0,0 +1,30 @@ + + +man.font.funcprototype +string + + +man.font.funcprototype +Specifies font for funcprototype output + + + + + BI + + + +Description + +The man.font.funcprototype parameter +specifies the font for funcprototype output. It +should be a valid roff font name, such as BI or +B. + + + diff --git a/docbook-xsl-1.76.1/params/man.font.funcsynopsisinfo.xml b/docbook-xsl-1.76.1/params/man.font.funcsynopsisinfo.xml new file mode 100644 index 0000000..bd7a36f --- /dev/null +++ b/docbook-xsl-1.76.1/params/man.font.funcsynopsisinfo.xml @@ -0,0 +1,30 @@ + + +man.font.funcsynopsisinfo +string + + +man.font.funcsynopsisinfo +Specifies font for funcsynopsisinfo output + + + + + B + + + +Description + +The man.font.funcsynopsisinfo parameter +specifies the font for funcsynopsisinfo output. It +should be a valid roff font name, such as B or +I. + + + diff --git a/docbook-xsl-1.76.1/params/man.font.links.xml b/docbook-xsl-1.76.1/params/man.font.links.xml new file mode 100644 index 0000000..0f8a1e0 --- /dev/null +++ b/docbook-xsl-1.76.1/params/man.font.links.xml @@ -0,0 +1,64 @@ + + +man.font.links +string + + +man.font.links +Specifies font for links + + + + +B + + + +Description + +The man.font.links parameter +specifies the font for output of links (ulink instances +and any instances of any element with an xlink:href attribute). + +The value of man.font.links must be + either B or I, or empty. If +the value is empty, no font formatting is applied to links. + +If you set man.endnotes.are.numbered and/or +man.endnotes.list.enabled to zero (disabled), then +you should probably also set an empty value for +man.font.links. But if +man.endnotes.are.numbered is non-zero (enabled), +you should probably keep +man.font.links set to +B or IThe + main purpose of applying a font format to links in most output +formats it to indicate that the formatted text is +“clickableâ€; given that links rendered in man pages are +not “real†hyperlinks that users can click on, it might +seem like there is never a good reason to have font formatting for +link contents in man output. +In fact, if you suppress the +display of inline link references (by setting +man.endnotes.are.numbered to zero), there is no +good reason to apply font formatting to links. However, if +man.endnotes.are.numbered is non-zero, having +font formatting for links (arguably) serves a purpose: It provides +“context†information about exactly what part of the text +is being “annotated†by the link. Depending on how you +mark up your content, that context information may or may not +have value.. + + +Related Parameters + man.endnotes.list.enabled, + man.endnotes.are.numbered + + + diff --git a/docbook-xsl-1.76.1/params/man.font.table.headings.xml b/docbook-xsl-1.76.1/params/man.font.table.headings.xml new file mode 100644 index 0000000..5056f2b --- /dev/null +++ b/docbook-xsl-1.76.1/params/man.font.table.headings.xml @@ -0,0 +1,30 @@ + + +man.font.table.headings +string + + +man.font.table.headings +Specifies font for table headings + + + + + B + + + +Description + +The man.font.table.headings parameter +specifies the font for table headings. It should be +a valid roff font, such as B or +I. + + + diff --git a/docbook-xsl-1.76.1/params/man.font.table.title.xml b/docbook-xsl-1.76.1/params/man.font.table.title.xml new file mode 100644 index 0000000..a7f2ae9 --- /dev/null +++ b/docbook-xsl-1.76.1/params/man.font.table.title.xml @@ -0,0 +1,30 @@ + + +man.font.table.title +string + + +man.font.table.title +Specifies font for table headings + + + + + B + + + +Description + +The man.font.table.title parameter +specifies the font for table titles. It should be +a valid roff font, such as B or +I. + + + diff --git a/docbook-xsl-1.76.1/params/man.funcsynopsis.style.xml b/docbook-xsl-1.76.1/params/man.funcsynopsis.style.xml new file mode 100644 index 0000000..0597087 --- /dev/null +++ b/docbook-xsl-1.76.1/params/man.funcsynopsis.style.xml @@ -0,0 +1,26 @@ + + +man.funcsynopsis.style +list +ansi +kr + + +man.funcsynopsis.style +What style of funcsynopsis should be generated? + + +ansi + +Description +If man.funcsynopsis.style is +ansi, ANSI-style function synopses are +generated for a funcsynopsis, otherwise K&R-style +function synopses are generated. + + diff --git a/docbook-xsl-1.76.1/params/man.hyphenate.computer.inlines.xml b/docbook-xsl-1.76.1/params/man.hyphenate.computer.inlines.xml new file mode 100644 index 0000000..3e23ade --- /dev/null +++ b/docbook-xsl-1.76.1/params/man.hyphenate.computer.inlines.xml @@ -0,0 +1,53 @@ + + +man.hyphenate.computer.inlines +boolean + + +man.hyphenate.computer.inlines +Hyphenate computer inlines? + + + + +0 + + +Description + +If zero (the default), hyphenation is suppressed for +computer inlines such as environment variables, +constants, etc. This parameter current affects output of the following +elements: + + + classname + constant + envar + errorcode + option + replaceable + userinput + type + varname + + + + + If hyphenation is already turned off globally (that is, if + man.hyphenate is zero, setting the + man.hyphenate.computer.inlines is not + necessary. + + +If man.hyphenate.computer.inlines is +non-zero, computer inlines will not be treated specially and will be +hyphenated like other words when needed. + + + diff --git a/docbook-xsl-1.76.1/params/man.hyphenate.filenames.xml b/docbook-xsl-1.76.1/params/man.hyphenate.filenames.xml new file mode 100644 index 0000000..891d6da --- /dev/null +++ b/docbook-xsl-1.76.1/params/man.hyphenate.filenames.xml @@ -0,0 +1,47 @@ + + +man.hyphenate.filenames +boolean + + +man.hyphenate.filenames +Hyphenate filenames? + + + + +0 + + +Description + +If zero (the default), hyphenation is suppressed for +filename output. + + + If hyphenation is already turned off globally (that is, if + man.hyphenate is zero, setting + man.hyphenate.filenames is not + necessary. + + +If man.hyphenate.filenames is non-zero, +filenames will not be treated specially and are subject to hyphenation +just like other words. + + + If you are thinking about setting a non-zero value for + man.hyphenate.filenames in order to make long + filenames/pathnames break across lines, you'd probably be better off + experimenting with setting the + man.break.after.slash parameter first. That + will cause long pathnames to be broken after slashes. + + + + diff --git a/docbook-xsl-1.76.1/params/man.hyphenate.urls.xml b/docbook-xsl-1.76.1/params/man.hyphenate.urls.xml new file mode 100644 index 0000000..a64dfa7 --- /dev/null +++ b/docbook-xsl-1.76.1/params/man.hyphenate.urls.xml @@ -0,0 +1,46 @@ + + +man.hyphenate.urls +boolean + + +man.hyphenate.urls +Hyphenate URLs? + + + + +0 + + +Description + +If zero (the default), hyphenation is suppressed for output of +the ulink url attribute. + + + If hyphenation is already turned off globally (that is, if + man.hyphenate is zero, setting + man.hyphenate.urls is not necessary. + + +If man.hyphenate.urls is non-zero, URLs +will not be treated specially and are subject to hyphenation just like +other words. + + + If you are thinking about setting a non-zero value for + man.hyphenate.urls in order to make long + URLs break across lines, you'd probably be better off + experimenting with setting the + man.break.after.slash parameter first. That + will cause long URLs to be broken after slashes. + + + + diff --git a/docbook-xsl-1.76.1/params/man.hyphenate.xml b/docbook-xsl-1.76.1/params/man.hyphenate.xml new file mode 100644 index 0000000..9198bbb --- /dev/null +++ b/docbook-xsl-1.76.1/params/man.hyphenate.xml @@ -0,0 +1,59 @@ + + +man.hyphenate +boolean + + +man.hyphenate +Enable hyphenation? + + + + +0 + + +Description + +If non-zero, hyphenation is enabled. + + +The default value for this parameter is zero because groff is +not particularly smart about how it does hyphenation; it can end up +hyphenating a lot of things that you don't want hyphenated. To +mitigate that, the default behavior of the stylesheets is to suppress +hyphenation of computer inlines, filenames, and URLs. (You can +override the default behavior by setting non-zero values for the +man.hyphenate.urls, +man.hyphenate.filenames, and +man.hyphenate.computer.inlines parameters.) But +the best way is still to just globally disable hyphenation, as the +stylesheets do by default. + +The only good reason to enabled hyphenation is if you have also +enabled justification (which is disabled by default). The reason is +that justified text can look very bad unless you also hyphenate it; to +quote the Hypenation node from the groff info page: + +
    + Since the odds are not great for finding a set of + words, for every output line, which fit nicely on a line without + inserting excessive amounts of space between words, 'gtroff' + hyphenates words so that it can justify lines without inserting too + much space between words. +
    + +So, if you set a non-zero value for the +man.justify parameter (to enable +justification), then you should probably also set a non-zero value for +man.hyphenate (to enable hyphenation).
    +
    + + +
    +
    diff --git a/docbook-xsl-1.76.1/params/man.indent.blurbs.xml b/docbook-xsl-1.76.1/params/man.indent.blurbs.xml new file mode 100644 index 0000000..bf9bb91 --- /dev/null +++ b/docbook-xsl-1.76.1/params/man.indent.blurbs.xml @@ -0,0 +1,33 @@ + + +man.indent.blurbs +boolean + + +man.indent.blurbs +Adjust indentation of blurbs? + + + + + + + +Description + +If the value of man.indent.blurbs is +non-zero, the width of the left margin for +authorblurb, personblurb, and +contrib output is set to the value of the +man.indent.width parameter +(3n by default). If instead the value of +man.indent.blurbs is zero, the built-in roff +default width (7.2n) is used. + + + diff --git a/docbook-xsl-1.76.1/params/man.indent.lists.xml b/docbook-xsl-1.76.1/params/man.indent.lists.xml new file mode 100644 index 0000000..a2654d0 --- /dev/null +++ b/docbook-xsl-1.76.1/params/man.indent.lists.xml @@ -0,0 +1,35 @@ + + +man.indent.lists +boolean + + +man.indent.lists +Adjust indentation of lists? + + + + + + + +Description + +If the value of man.indent.lists is +non-zero, the width of the left margin for list items in +itemizedlist, +orderedlist, +variablelist output (and output of some other +lists) is set to the value of the +man.indent.width parameter +(4n by default). If instead the value of +man.indent.lists is zero, the built-in roff +default width (7.2n) is used. + + + diff --git a/docbook-xsl-1.76.1/params/man.indent.refsect.xml b/docbook-xsl-1.76.1/params/man.indent.refsect.xml new file mode 100644 index 0000000..2865f8c --- /dev/null +++ b/docbook-xsl-1.76.1/params/man.indent.refsect.xml @@ -0,0 +1,70 @@ + + +man.indent.refsect +boolean + + +man.indent.refsect +Adjust indentation of refsect* and refsection? + + + + + + + +Description + +If the value of man.indent.refsect is +non-zero, the width of the left margin for +refsect1, refsect2 and +refsect3 contents and titles (and first-level, +second-level, and third-level nested +refsectioninstances) is adjusted by the value of +the man.indent.width parameter. With +man.indent.width set to its default value of +3n, the main results are that: + + + + contents of refsect1 are output with a + left margin of three characters instead the roff default of seven + or eight characters + + + contents of refsect2 are displayed in + console output with a left margin of six characters instead the of + the roff default of seven characters + + + the contents of refsect3 and nested + refsection instances are adjusted + accordingly. + + + +If instead the value of man.indent.refsect is +zero, no margin adjustment is done for refsect* +output. + + + If your content is primarly comprised of + refsect1 and refsect2 content + (or the refsection equivalent) – with few or + no refsect3 or lower nested sections , you may be + able to “conserve†space in your output by setting + man.indent.refsect to a non-zero value. Doing + so will “squeeze†the left margin in such as way as to provide an + additional four characters of “room†per line in + refsect1 output. That extra room may be useful + if, for example, you have many verbatim sections with long lines in + them. + + + + diff --git a/docbook-xsl-1.76.1/params/man.indent.verbatims.xml b/docbook-xsl-1.76.1/params/man.indent.verbatims.xml new file mode 100644 index 0000000..0436c9e --- /dev/null +++ b/docbook-xsl-1.76.1/params/man.indent.verbatims.xml @@ -0,0 +1,33 @@ + + +man.indent.verbatims +boolean + + +man.indent.verbatims +Adjust indentation of verbatims? + + + + + + + +Description + +If the value of man.indent.verbatims is +non-zero, the width of the left margin for output of verbatim +environments (programlisting, +screen, and so on) is set to the value of the +man.indent.width parameter +(3n by default). If instead the value of +man.indent.verbatims is zero, the built-in roff +default width (7.2n) is used. + + + diff --git a/docbook-xsl-1.76.1/params/man.indent.width.xml b/docbook-xsl-1.76.1/params/man.indent.width.xml new file mode 100644 index 0000000..2d4496d --- /dev/null +++ b/docbook-xsl-1.76.1/params/man.indent.width.xml @@ -0,0 +1,39 @@ + + +man.indent.width +length + + +man.indent.width +Specifies width used for adjusted indents + + + + +4 + + + +Description +The man.indent.width parameter specifies +the width used for adjusted indents. The value of +man.indent.width is used for indenting of +lists, verbatims, headings, and elsewhere, depending on whether the +values of certain man.indent.* boolean parameters +are non-zero. + +The value of man.indent.width should +include a valid roff measurement unit (for example, +n or u). The default value of +4n specifies a 4-en width; when viewed on a +console, that amounts to the width of four characters. For details +about roff measurment units, see the Measurements +node in the groff info page. + + + diff --git a/docbook-xsl-1.76.1/params/man.justify.xml b/docbook-xsl-1.76.1/params/man.justify.xml new file mode 100644 index 0000000..5495d05 --- /dev/null +++ b/docbook-xsl-1.76.1/params/man.justify.xml @@ -0,0 +1,52 @@ + + +man.justify +boolean + + +man.justify +Justify text to both right and left margins? + + + + +0 + + +Description + +If non-zero, text is justified to both the right and left +margins (or, in roff terminology, "adjusted and filled" to both the +right and left margins). If zero (the default), text is adjusted to +the left margin only -- producing what is traditionally called +"ragged-right" text. + + +The default value for this parameter is zero because justified +text looks good only when it is also hyphenated. Without hyphenation, +excessive amounts of space often end up getting between words, in +order to "pad" lines out to align on the right margin. + +The problem is that groff is not particularly smart about how it +does hyphenation; it can end up hyphenating a lot of things that you +don't want hyphenated. So, disabling both justification and +hyphenation ensures that hyphens won't get inserted where you don't +want to them, and you don't end up with lines containing excessive +amounts of space between words. + +However, if do you decide to set a non-zero value for the +man.justify parameter (to enable +justification), then you should probably also set a non-zero value for +man.hyphenate (to enable hyphenation). + +Yes, these default settings run counter to how most existing man +pages are formatted. But there are some notable exceptions, such as +the perl man pages. + + + diff --git a/docbook-xsl-1.76.1/params/man.output.base.dir.xml b/docbook-xsl-1.76.1/params/man.output.base.dir.xml new file mode 100644 index 0000000..25113d0 --- /dev/null +++ b/docbook-xsl-1.76.1/params/man.output.base.dir.xml @@ -0,0 +1,39 @@ + + +man.output.base.dir +uri + + +man.output.base.dir +Specifies separate output directory + + + +man/ + + +Description + +The man.output.base.dir parameter +specifies the base directory into which man-page files are output. The +man.output.subdirs.enabled parameter controls +whether the files are output in subdirectories within the base +directory. + + + The values of the man.output.base.dir + and man.output.subdirs.enabled parameters are + used only if the value of + man.output.in.separate.dir parameter is + non-zero. If the value of the + man.output.in.separate.dir is zero, man-page + files are not output in a separate directory. + + + + diff --git a/docbook-xsl-1.76.1/params/man.output.better.ps.enabled.xml b/docbook-xsl-1.76.1/params/man.output.better.ps.enabled.xml new file mode 100644 index 0000000..82d15dd --- /dev/null +++ b/docbook-xsl-1.76.1/params/man.output.better.ps.enabled.xml @@ -0,0 +1,61 @@ + + +man.output.better.ps.enabled +boolean + + +man.output.better.ps.enabled +Enable enhanced print/PostScript output? + + + +0 + + +Description + +If the value of the +man.output.better.ps.enabled parameter is +non-zero, certain markup is embedded in each generated man page +such that PostScript output from the man -Tps +command for that page will include a number of enhancements +designed to improve the quality of that output. + +If man.output.better.ps.enabled is +zero (the default), no such markup is embedded in generated man +pages, and no enhancements are included in the PostScript +output generated from those man pages by the man + -Tps command. + + + The enhancements provided by this parameter rely on + features that are specific to groff (GNU troff) and that are + not part of “classic†AT&T troff or any of its + derivatives. Therefore, any man pages you generate with this + parameter enabled will be readable only on systems on which + the groff (GNU troff) program is installed, such as GNU/Linux + systems. The pages will not not be + readable on systems on with the classic troff (AT&T + troff) command is installed. + + +The value of this parameter only affects PostScript output + generated from the man command. It has no + effect on output generated using the FO backend. + + + You can generate PostScript output for any man page by + running the following command: + man FOO -Tps > FOO.ps + You can then generate PDF output by running the following + command: + ps2pdf FOO.ps + + + + diff --git a/docbook-xsl-1.76.1/params/man.output.encoding.xml b/docbook-xsl-1.76.1/params/man.output.encoding.xml new file mode 100644 index 0000000..7154bc8 --- /dev/null +++ b/docbook-xsl-1.76.1/params/man.output.encoding.xml @@ -0,0 +1,53 @@ + + +man.output.encoding +string + + +man.output.encoding +Encoding used for man-page output + + + + +UTF-8 + + + +Description + +This parameter specifies the encoding to use for files generated +by the manpages stylesheet. Not all processors support specification +of this parameter. + + + If the value of the man.charmap.enabled + parameter is non-zero (the default), keeping the + man.output.encoding parameter at its default + value (UTF-8) or setting it to + UTF-16 does not cause your + man pages to be output in raw UTF-8 or UTF-16 -- because + any Unicode characters for which matches are found in the enabled + character map will be replaced with roff escape sequences before the + final man-page files are generated. + + So if you want to generate "real" UTF-8 man pages, without any + character substitution being performed on your content, you need to + set man.charmap.enabled to zero (which will + completely disable character-map processing). + + You may also need to set + man.charmap.enabled to zero if you want to + output man pages in an encoding other than UTF-8 + or UTF-16. Character-map processing is based on + Unicode character values and may not work with other output + encodings. + + + + diff --git a/docbook-xsl-1.76.1/params/man.output.in.separate.dir.xml b/docbook-xsl-1.76.1/params/man.output.in.separate.dir.xml new file mode 100644 index 0000000..1492720 --- /dev/null +++ b/docbook-xsl-1.76.1/params/man.output.in.separate.dir.xml @@ -0,0 +1,32 @@ + + +man.output.in.separate.dir +boolean + + +man.output.in.separate.dir +Output man-page files in separate output directory? + + + + + + + + +Description + +If the value of man.output.in.separate.dir +parameter is non-zero, man-page files are output in a separate +directory, specified by the man.output.base.dir +parameter; otherwise, if the value of +man.output.in.separate.dir is zero, man-page files +are not output in a separate directory. + + + diff --git a/docbook-xsl-1.76.1/params/man.output.lang.in.name.enabled.xml b/docbook-xsl-1.76.1/params/man.output.lang.in.name.enabled.xml new file mode 100644 index 0000000..1fed3c0 --- /dev/null +++ b/docbook-xsl-1.76.1/params/man.output.lang.in.name.enabled.xml @@ -0,0 +1,50 @@ + + +man.output.lang.in.name.enabled +boolean + + +man.output.lang.in.name.enabled +Include $LANG value in man-page filename/pathname? + + + + + + + + +Description + + The man.output.lang.in.name.enabled + parameter specifies whether a $lang value is + included in man-page filenames and pathnames. + + If the value of + man.output.lang.in.name.enabled is non-zero, + man-page files are output with the $lang value + included in their filenames or pathnames as follows; + + + + if man.output.subdirs.enabled is + non-zero, each file is output to, e.g., a + man/$lang/man8/foo.8 + pathname + + + if man.output.subdirs.enabled is + zero, each file is output with a + foo.$lang.8 + filename + + + + + + diff --git a/docbook-xsl-1.76.1/params/man.output.manifest.enabled.xml b/docbook-xsl-1.76.1/params/man.output.manifest.enabled.xml new file mode 100644 index 0000000..5da041c --- /dev/null +++ b/docbook-xsl-1.76.1/params/man.output.manifest.enabled.xml @@ -0,0 +1,27 @@ + + + man.output.manifest.enabled + boolean + + + man.output.manifest.enabled + Generate a manifest file? + + + + + + + Description + + If non-zero, a list of filenames for man pages generated by + the stylesheet transformation is written to the file named by the + man.output.manifest.filename parameter. + + + diff --git a/docbook-xsl-1.76.1/params/man.output.manifest.filename.xml b/docbook-xsl-1.76.1/params/man.output.manifest.filename.xml new file mode 100644 index 0000000..f514ede --- /dev/null +++ b/docbook-xsl-1.76.1/params/man.output.manifest.filename.xml @@ -0,0 +1,29 @@ + + + man.output.manifest.filename + string + + + man.output.manifest.filename + Name of manifest file + + + + MAN.MANIFEST + + + Description + + The man.output.manifest.filename parameter + specifies the name of the file to which the manpages manifest file + is written (if the value of the + man.output.manifest.enabled parameter is + non-zero). + + + diff --git a/docbook-xsl-1.76.1/params/man.output.quietly.xml b/docbook-xsl-1.76.1/params/man.output.quietly.xml new file mode 100644 index 0000000..acde7f4 --- /dev/null +++ b/docbook-xsl-1.76.1/params/man.output.quietly.xml @@ -0,0 +1,37 @@ + + +man.output.quietly +boolean + + +man.output.quietly +Suppress filename messages emitted when generating output? + + + + + + + + +Description + +If zero (the default), for each man-page file created, a message +with the name of the file is emitted. If non-zero, the files are +output "quietly" -- that is, the filename messages are +suppressed. + + + If you are processing a large amount of refentry + content, you may be able to speed up processing significantly by + setting a non-zero value for + man.output.quietly. + + + + diff --git a/docbook-xsl-1.76.1/params/man.output.subdirs.enabled.xml b/docbook-xsl-1.76.1/params/man.output.subdirs.enabled.xml new file mode 100644 index 0000000..876b94e --- /dev/null +++ b/docbook-xsl-1.76.1/params/man.output.subdirs.enabled.xml @@ -0,0 +1,40 @@ + + +man.output.subdirs.enabled +boolean + + +man.output.subdirs.enabled +Output man-page files in subdirectories within base output directory? + + + + + + + + +Description + +The man.output.subdirs.enabled parameter +controls whether man-pages files are output in subdirectories within +the base directory specified by the directory specified by the +man.output.base.dir parameter. + + + The values of the man.output.base.dir + and man.output.subdirs.enabled parameters are + used only if the value of + man.output.in.separate.dir parameter is + non-zero. If the value of the + man.output.in.separate.dir is zero, man-page + files are not output in a separate directory. + + + + diff --git a/docbook-xsl-1.76.1/params/man.segtitle.suppress.xml b/docbook-xsl-1.76.1/params/man.segtitle.suppress.xml new file mode 100644 index 0000000..e54336d --- /dev/null +++ b/docbook-xsl-1.76.1/params/man.segtitle.suppress.xml @@ -0,0 +1,28 @@ + + +man.segtitle.suppress +boolean + + +man.segtitle.suppress +Suppress display of segtitle contents? + + + + + + + +Description + +If the value of man.segtitle.suppress is +non-zero, then display of segtitle contents is +suppressed in output. + + + diff --git a/docbook-xsl-1.76.1/params/man.string.subst.map.local.post.xml b/docbook-xsl-1.76.1/params/man.string.subst.map.local.post.xml new file mode 100644 index 0000000..b12448d --- /dev/null +++ b/docbook-xsl-1.76.1/params/man.string.subst.map.local.post.xml @@ -0,0 +1,34 @@ + + +man.string.subst.map.local.post +string + + +man.string.subst.map.local.post +Specifies “local†string substitutions + + + + + + + + +Description + +Use the man.string.subst.map.local.post +parameter to specify any “local†string substitutions to perform over +the entire roff source for each man page after +performing the string substitutions specified by the man.string.subst.map parameter. + +For details about the format of this parameter, see the +documentation for the man.string.subst.map +parameter. + + + diff --git a/docbook-xsl-1.76.1/params/man.string.subst.map.local.pre.xml b/docbook-xsl-1.76.1/params/man.string.subst.map.local.pre.xml new file mode 100644 index 0000000..6483752 --- /dev/null +++ b/docbook-xsl-1.76.1/params/man.string.subst.map.local.pre.xml @@ -0,0 +1,34 @@ + + +man.string.subst.map.local.pre +string + + +man.string.subst.map.local.pre +Specifies “local†string substitutions + + + + + + + + +Description + +Use the man.string.subst.map.local.pre +parameter to specify any “local†string substitutions to perform over +the entire roff source for each man page before +performing the string substitutions specified by the man.string.subst.map parameter. + +For details about the format of this parameter, see the +documentation for the man.string.subst.map +parameter. + + + diff --git a/docbook-xsl-1.76.1/params/man.string.subst.map.xml b/docbook-xsl-1.76.1/params/man.string.subst.map.xml new file mode 100644 index 0000000..0feed4a --- /dev/null +++ b/docbook-xsl-1.76.1/params/man.string.subst.map.xml @@ -0,0 +1,162 @@ + + +man.string.subst.map +rtf + + +man.string.subst.map +Specifies a set of string substitutions + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Description + +The man.string.subst.map parameter +contains a map that specifies a set of +string substitutions to perform over the entire roff source for each +man page, either just before generating final man-page output (that +is, before writing man-page files to disk) or, if the value of the +man.charmap.enabled parameter is non-zero, +before applying the roff character map. + +You can use man.string.subst.map as a +“lightweight†character map to perform “essential†substitutions -- +that is, substitutions that are always performed, +even if the value of the man.charmap.enabled +parameter is zero. For example, you can use it to replace quotation +marks or other special characters that are generated by the DocBook +XSL stylesheets for a particular locale setting (as opposed to those +characters that are actually in source XML documents), or to replace +any special characters that may be automatically generated by a +particular customization of the DocBook XSL stylesheets. + + + Do you not change value of the + man.string.subst.map parameter unless you are + sure what you are doing. First consider adding your + string-substitution mappings to either or both of the following + parameters: + + + man.string.subst.map.local.pre + applied before + man.string.subst.map + + + man.string.subst.map.local.post + applied after + man.string.subst.map + + + By default, both of those parameters contain no + string substitutions. They are intended as a means for you to + specify your own local string-substitution mappings. + + If you remove any of default mappings from the value of the + man.string.subst.map parameter, you are + likely to end up with broken output. And be very careful about adding + anything to it; it’s used for doing string substitution over the + entire roff source of each man page – it causes target strings to be + replaced in roff requests and escapes, not just in the visible + contents of the page. + + + + + + Contents of the substitution map + + The string-substitution map contains one or more + ss:substitution elements, each of which has two + attributes: + + + oldstring + + string to replace + + + + newstring + + string with which to replace oldstring + + + + It may also include XML comments (that is, delimited with + "<!--" and "-->"). + + + + + diff --git a/docbook-xsl-1.76.1/params/man.subheading.divider.enabled.xml b/docbook-xsl-1.76.1/params/man.subheading.divider.enabled.xml new file mode 100644 index 0000000..1156c5f --- /dev/null +++ b/docbook-xsl-1.76.1/params/man.subheading.divider.enabled.xml @@ -0,0 +1,37 @@ + + +man.subheading.divider.enabled +boolean + + +man.subheading.divider.enabled +Add divider comment to roff source before/after subheadings? + + + + +0 + + + +Description + +If the value of the +man.subheading.divider.enabled parameter is +non-zero, the contents of the +man.subheading.divider parameter are used to +add a "divider" before and after subheadings in the roff +output. The divider is not visisble in the +rendered man page; it is added as a comment, in the source, +simply for the purpose of increasing reability of the source. + +If man.subheading.divider.enabled is zero +(the default), the subheading divider is suppressed. + + + diff --git a/docbook-xsl-1.76.1/params/man.subheading.divider.xml b/docbook-xsl-1.76.1/params/man.subheading.divider.xml new file mode 100644 index 0000000..dbd2669 --- /dev/null +++ b/docbook-xsl-1.76.1/params/man.subheading.divider.xml @@ -0,0 +1,37 @@ + + +man.subheading.divider +string + + +man.subheading.divider +Specifies string to use as divider comment before/after subheadings + + + + +======================================================================== + + + +Description + +If the value of the +man.subheading.divider.enabled parameter is +non-zero, the contents of the +man.subheading.divider parameter are used to +add a "divider" before and after subheadings in the roff +output. The divider is not visisble in the +rendered man page; it is added as a comment, in the source, +simply for the purpose of increasing reability of the source. + +If man.subheading.divider.enabled is zero +(the default), the subheading divider is suppressed. + + + diff --git a/docbook-xsl-1.76.1/params/man.table.footnotes.divider.xml b/docbook-xsl-1.76.1/params/man.table.footnotes.divider.xml new file mode 100644 index 0000000..2ad4608 --- /dev/null +++ b/docbook-xsl-1.76.1/params/man.table.footnotes.divider.xml @@ -0,0 +1,29 @@ + + +man.table.footnotes.divider +string + + +man.table.footnotes.divider +Specifies divider string that appears before table footnotes + + + + +---- + + + +Description + +In each table that contains footenotes, the string specified by +the man.table.footnotes.divider parameter is +output before the list of footnotes for the table. + + + diff --git a/docbook-xsl-1.76.1/params/man.th.extra1.suppress.xml b/docbook-xsl-1.76.1/params/man.th.extra1.suppress.xml new file mode 100644 index 0000000..c0241d2 --- /dev/null +++ b/docbook-xsl-1.76.1/params/man.th.extra1.suppress.xml @@ -0,0 +1,32 @@ + + +man.th.extra1.suppress +boolean + + +man.th.extra1.suppress +Suppress extra1 part of header/footer? + + + + +0 + + +Description + +If the value of man.th.extra1.suppress is +non-zero, then the extra1 part of the +.TH title line header/footer is suppressed. + +The content of the extra1 field is almost +always displayed in the center footer of the page and is, universally, +a date. + + + diff --git a/docbook-xsl-1.76.1/params/man.th.extra2.max.length.xml b/docbook-xsl-1.76.1/params/man.th.extra2.max.length.xml new file mode 100644 index 0000000..d3513ec --- /dev/null +++ b/docbook-xsl-1.76.1/params/man.th.extra2.max.length.xml @@ -0,0 +1,43 @@ + + +man.th.extra2.max.length +integer + + +man.th.extra2.max.length +Maximum length of extra2 in header/footer + + + + +30 + + + +Description + +Specifies the maximum permitted length of the +extra2 part of the man-page part of the +.TH title line header/footer. If the +extra2 content exceeds the maxiumum specified, it +is truncated down to the maximum permitted length. + +The content of the extra2 field is usually +displayed in the left footer of the page and is typically "source" +data indicating the software system or product that the item +documented in the man page belongs to, often in the form +Name Version; +for example, "GTK+ 1.2" (from the gtk-options(7) +man page). + +The default value for this parameter is reasonable but somewhat +arbitrary. If you are processing pages with long "source" information, +you may want to experiment with changing the value in order to achieve +the correct aesthetic results. + + diff --git a/docbook-xsl-1.76.1/params/man.th.extra2.suppress.xml b/docbook-xsl-1.76.1/params/man.th.extra2.suppress.xml new file mode 100644 index 0000000..0fcd3ed --- /dev/null +++ b/docbook-xsl-1.76.1/params/man.th.extra2.suppress.xml @@ -0,0 +1,44 @@ + + +man.th.extra2.suppress +boolean + + +man.th.extra2.suppress +Suppress extra2 part of header/footer? + + + + +0 + + +Description + +If the value of man.th.extra2.suppress is +non-zero, then the extra2 part of the +.TH title line header/footer is suppressed. + +The content of the extra2 field is usually +displayed in the left footer of the page and is typically "source" +data, often in the form +Name Version; +for example, "GTK+ 1.2" (from the gtk-options(7) +man page). + + + You can use the + refentry.source.name.suppress and + refentry.version.suppress parameters to + independently suppress the Name and + Version parts of the + extra2 field. + + + + diff --git a/docbook-xsl-1.76.1/params/man.th.extra3.max.length.xml b/docbook-xsl-1.76.1/params/man.th.extra3.max.length.xml new file mode 100644 index 0000000..77e55e4 --- /dev/null +++ b/docbook-xsl-1.76.1/params/man.th.extra3.max.length.xml @@ -0,0 +1,42 @@ + + +man.th.extra3.max.length +integer + + +man.th.extra3.max.length +Maximum length of extra3 in header/footer + + + + +30 + + + +Description + +Specifies the maximum permitted length of the +extra3 part of the man-page .TH +title line header/footer. If the extra3 content +exceeds the maxiumum specified, it is truncated down to the maximum +permitted length. + +The content of the extra3 field is usually +displayed in the middle header of the page and is typically a "manual +name"; for example, "GTK+ User's Manual" (from the +gtk-options(7) man page). + +The default value for this parameter is reasonable but somewhat +arbitrary. If you are processing pages with long "manual names" -- or +especially if you are processing pages that have both long "title" +parts (command/function, etc. names) and long +manual names -- you may want to experiment with changing the value in +order to achieve the correct aesthetic results. + + diff --git a/docbook-xsl-1.76.1/params/man.th.extra3.suppress.xml b/docbook-xsl-1.76.1/params/man.th.extra3.suppress.xml new file mode 100644 index 0000000..81d6c0d --- /dev/null +++ b/docbook-xsl-1.76.1/params/man.th.extra3.suppress.xml @@ -0,0 +1,34 @@ + + +man.th.extra3.suppress +boolean + + +man.th.extra3.suppress +Suppress extra3 part of header/footer? + + + + +0 + + +Description + +If the value of man.th.extra3.suppress is +non-zero, then the extra3 part of the +.TH title line header/footer is +suppressed. + +The content of the extra3 field is usually +displayed in the middle header of the page and is typically a "manual +name"; for example, "GTK+ User's Manual" (from the +gtk-options(7) man page). + + + diff --git a/docbook-xsl-1.76.1/params/man.th.title.max.length.xml b/docbook-xsl-1.76.1/params/man.th.title.max.length.xml new file mode 100644 index 0000000..7fdf0bf --- /dev/null +++ b/docbook-xsl-1.76.1/params/man.th.title.max.length.xml @@ -0,0 +1,63 @@ + + +man.th.title.max.length +integer + + +man.th.title.max.length +Maximum length of title in header/footer + + + + +20 + + + +Description + +Specifies the maximum permitted length of the title part of the +man-page .TH title line header/footer. If the title +exceeds the maxiumum specified, it is truncated down to the maximum +permitted length. + +Details + + +Every man page generated using the DocBook stylesheets has a +title line, specified using the TH roff +macro. Within that title line, there is always, at a minimum, a title, +followed by a section value (representing a man "section" -- usually +just a number). + +The title and section are displayed, together, in the visible +header of each page. Where in the header they are displayed depends on +OS the man page is viewed on, and on what version of nroff/groff/man +is used for viewing the page. But, at a minimum and across all +systems, the title and section are displayed on the right-hand column +of the header. On many systems -- those with a modern groff, including +Linux systems -- they are displayed twice: both in the left and right +columns of the header. + +So if the length of the title exceeds a certain percentage of +the column width in which the page is viewed, the left and right +titles can end up overlapping, making them unreadable, or breaking to +another line, which doesn't look particularly good. + +So the stylesheets provide the +man.th.title.max.length parameter as a means +for truncating titles that exceed the maximum length that can be +viewing properly in a page header. + +The default value is reasonable but somewhat arbitrary. If you +have pages with long titles, you may want to experiment with changing +the value in order to achieve the correct aesthetic results. + + + + diff --git a/docbook-xsl-1.76.1/params/manifest.in.base.dir.xml b/docbook-xsl-1.76.1/params/manifest.in.base.dir.xml new file mode 100644 index 0000000..d002767 --- /dev/null +++ b/docbook-xsl-1.76.1/params/manifest.in.base.dir.xml @@ -0,0 +1,29 @@ + + +manifest.in.base.dir +boolean + + +manifest.in.base.dir +Should the manifest file be written into base.dir? + + + + + + + + +Description + +If non-zero, the manifest file as well as project files for HTML Help and +Eclipse Help are written into base.dir instead +of the current directory. + + + diff --git a/docbook-xsl-1.76.1/params/manifest.xml b/docbook-xsl-1.76.1/params/manifest.xml new file mode 100644 index 0000000..96d092a --- /dev/null +++ b/docbook-xsl-1.76.1/params/manifest.xml @@ -0,0 +1,29 @@ + + + manifest + string + + + manifest + Name of manifest file + + + + + HTML.manifest + + + + Description + + The name of the file to which a manifest is written (if the + value of the generate.manifest parameter + is non-zero). + + + diff --git a/docbook-xsl-1.76.1/params/manual.toc.xml b/docbook-xsl-1.76.1/params/manual.toc.xml new file mode 100644 index 0000000..7a640c7 --- /dev/null +++ b/docbook-xsl-1.76.1/params/manual.toc.xml @@ -0,0 +1,29 @@ + + +manual.toc +string + + +manual.toc +An explicit TOC to be used for the TOC + + + + + + + + +Description + +The manual.toc identifies an explicit TOC that +will be used for building the printed TOC. + + + + diff --git a/docbook-xsl-1.76.1/params/margin.note.float.type.xml b/docbook-xsl-1.76.1/params/margin.note.float.type.xml new file mode 100644 index 0000000..0b34230 --- /dev/null +++ b/docbook-xsl-1.76.1/params/margin.note.float.type.xml @@ -0,0 +1,77 @@ + + +margin.note.float.type +list +none +before +left +start +right +end +inside +outside + + +margin.note.float.type +Select type of float for margin note customizations + + + + +none + + + +Description + +Selects the type of float for margin notes. +DocBook does not define a margin note element, so this +feature must be implemented as a customization of the stylesheet. +See margin.note.properties for +an example. + + + +If margin.note.float.type is +none, then +no float is used. + + + +If margin.note.float.type is +before, then +the float appears at the top of the page. On some processors, +that may be the next page rather than the current page. + + + +If margin.note.float.type is +left or +start, then +a left side float is used. + + + +If margin.note.float.type is +right or +end, then +a right side float is used. + + + +If your XSL-FO processor supports floats positioned on the +inside or +outside +of double-sided pages, then you have those two +options for side floats as well. + + + + + + diff --git a/docbook-xsl-1.76.1/params/margin.note.properties.xml b/docbook-xsl-1.76.1/params/margin.note.properties.xml new file mode 100644 index 0000000..02dc20e --- /dev/null +++ b/docbook-xsl-1.76.1/params/margin.note.properties.xml @@ -0,0 +1,54 @@ + + +margin.note.properties +attribute set + + +margin.note.properties +Attribute set for margin.note properties + + + + + + 90% + start + + + + +Description + +The styling for margin notes. +By default, margin notes are not implemented for any +element. A stylesheet customization is needed to make +use of this attribute-set. + +You can use a template named floater +to create the customization. +That template can create side floats by specifying the +content and characteristics as template parameters. + + +For example: +<xsl:template match="para[@role='marginnote']"> + <xsl:call-template name="floater"> + <xsl:with-param name="position"> + <xsl:value-of select="$margin.note.float.type"/> + </xsl:with-param> + <xsl:with-param name="width"> + <xsl:value-of select="$margin.note.width"/> + </xsl:with-param> + <xsl:with-param name="content"> + <xsl:apply-imports/> + </xsl:with-param> + </xsl:call-template> +</xsl:template> + + + diff --git a/docbook-xsl-1.76.1/params/margin.note.title.properties.xml b/docbook-xsl-1.76.1/params/margin.note.title.properties.xml new file mode 100644 index 0000000..84399bb --- /dev/null +++ b/docbook-xsl-1.76.1/params/margin.note.title.properties.xml @@ -0,0 +1,32 @@ + + +margin.note.title.properties +attribute set + + +margin.note.title.properties +Attribute set for margin note titles + + + + + + bold + false + start + always + + + + +Description + +The styling for margin note titles. + + + diff --git a/docbook-xsl-1.76.1/params/margin.note.width.xml b/docbook-xsl-1.76.1/params/margin.note.width.xml new file mode 100644 index 0000000..3ee0aa4 --- /dev/null +++ b/docbook-xsl-1.76.1/params/margin.note.width.xml @@ -0,0 +1,35 @@ + + +margin.note.width +length + + +margin.note.width +Set the default width for margin notes + + + + +1in + + + +Description + +Sets the default width for margin notes when used as a side +float. The width determines the degree to which the margin note block +intrudes into the text area. + +If margin.note.float.type is +before or +none, then +this parameter is ignored. + + + + diff --git a/docbook-xsl-1.76.1/params/marker.section.level.xml b/docbook-xsl-1.76.1/params/marker.section.level.xml new file mode 100644 index 0000000..70bd4fd --- /dev/null +++ b/docbook-xsl-1.76.1/params/marker.section.level.xml @@ -0,0 +1,50 @@ + + +marker.section.level +integer + + +marker.section.level +Control depth of sections shown in running headers or footers + + + + +2 + + + +Description + +The marker.section.level parameter +controls the depth of section levels that may be displayed +in running headers and footers. For example, if the value +is 2 (the default), then titles from sect1 and +sect2 or equivalent section +elements are candidates for use in running headers and +footers. + +Each candidate title is marked in the FO output with a +<fo:marker marker-class-name="section.head.marker"> +element. + +In order for such titles to appear in headers +or footers, the header.content +or footer.content template +must be customized to retrieve the marker using +an output element such as: + + +<fo:retrieve-marker retrieve-class-name="section.head.marker" + retrieve-position="first-including-carryover" + retrieve-boundary="page-sequence"/> + + + + + diff --git a/docbook-xsl-1.76.1/params/menuchoice.menu.separator.xml b/docbook-xsl-1.76.1/params/menuchoice.menu.separator.xml new file mode 100644 index 0000000..cf142e2 --- /dev/null +++ b/docbook-xsl-1.76.1/params/menuchoice.menu.separator.xml @@ -0,0 +1,42 @@ + + +menuchoice.menu.separator +string + + +menuchoice.menu.separator +Separator between items of a menuchoice +with guimenuitem or +guisubmenu + + + + + → + + + +Description + +Separator used to connect items of a menuchoice with +guimenuitem or guisubmenu. Other elements +are linked with menuchoice.separator. + +The default value is &#x2192;, which is the +&rarr; (right arrow) character entity. +The current FOP (0.20.5) requires setting the font-family +explicitly. + +The default value also includes spaces around the arrow, +which will allow a line to break. Replace the spaces with +&#xA0; (nonbreaking space) if you don't want those +spaces to break. + + + + diff --git a/docbook-xsl-1.76.1/params/menuchoice.separator.xml b/docbook-xsl-1.76.1/params/menuchoice.separator.xml new file mode 100644 index 0000000..3034f25 --- /dev/null +++ b/docbook-xsl-1.76.1/params/menuchoice.separator.xml @@ -0,0 +1,32 @@ + + +menuchoice.separator +string + + +menuchoice.separator +Separator between items of a menuchoice +other than guimenuitem and +guisubmenu + + + + ++ + + + +Description + +Separator used to connect items of a menuchoice other +than guimenuitem and guisubmenu. The latter +elements are linked with menuchoice.menu.separator. + + + + diff --git a/docbook-xsl-1.76.1/params/minus.image.xml b/docbook-xsl-1.76.1/params/minus.image.xml new file mode 100644 index 0000000..ea86e23 --- /dev/null +++ b/docbook-xsl-1.76.1/params/minus.image.xml @@ -0,0 +1,29 @@ + + +minus.image +filename + + +minus.image +Minus image + + + + +toc/open.png + + + +Description + +Specifies the filename of the minus image; the image used in a +dynamic ToC to indicate that a section +can be collapsed. + + + diff --git a/docbook-xsl-1.76.1/params/monospace.font.family.xml b/docbook-xsl-1.76.1/params/monospace.font.family.xml new file mode 100644 index 0000000..e91548b --- /dev/null +++ b/docbook-xsl-1.76.1/params/monospace.font.family.xml @@ -0,0 +1,29 @@ + + +monospace.font.family +string + + +monospace.font.family +The default font family for monospace environments + + + + +monospace + + + +Description + +The monospace font family is used for verbatim environments +(program listings, screens, etc.). + + + + diff --git a/docbook-xsl-1.76.1/params/monospace.properties.xml b/docbook-xsl-1.76.1/params/monospace.properties.xml new file mode 100644 index 0000000..0a8425b --- /dev/null +++ b/docbook-xsl-1.76.1/params/monospace.properties.xml @@ -0,0 +1,38 @@ + + +monospace.properties +attribute set + + +monospace.properties +Properties of monospaced content + + + + + + + + + + + + +Description + +Specifies the font name for monospaced output. This property set +used to set the font-size as well, but that doesn't work very well +when different fonts are used (as they are in titles and paragraphs, +for example). + +If you want to set the font-size in a customization layer, it's +probably going to be more appropriate to set font-size-adjust, if your +formatter supports it. + + + diff --git a/docbook-xsl-1.76.1/params/monospace.verbatim.font.width.xml b/docbook-xsl-1.76.1/params/monospace.verbatim.font.width.xml new file mode 100644 index 0000000..88b88dc --- /dev/null +++ b/docbook-xsl-1.76.1/params/monospace.verbatim.font.width.xml @@ -0,0 +1,40 @@ + + +monospace.verbatim.font.width +length + + +monospace.verbatim.font.width +Width of a single monospace font character + + + + +0.60em + + + +Description + +Specifies with em units the width of a single character +of the monospace font. The default value is 0.6em. + +This parameter is only used when a screen +or programlisting element has a +width attribute, which is +expressed as a plain integer to indicate the maximum character count +of each line. +To convert this character count to an actual maximum width +measurement, the width of the font characters must be provided. +Different monospace fonts have different character width, +so this parameter should be adjusted to fit the +monospace font being used. + + + + diff --git a/docbook-xsl-1.76.1/params/monospace.verbatim.properties.xml b/docbook-xsl-1.76.1/params/monospace.verbatim.properties.xml new file mode 100644 index 0000000..3d7ca3d --- /dev/null +++ b/docbook-xsl-1.76.1/params/monospace.verbatim.properties.xml @@ -0,0 +1,27 @@ + + +monospace.verbatim.properties +attribute set + + +monospace.verbatim.properties +What font and size do you want for monospaced content? + + + + + + start + no-wrap + + + +Description +Specify the font name and size you want for monospaced output + + diff --git a/docbook-xsl-1.76.1/params/multiframe.bottom.bgcolor.xml b/docbook-xsl-1.76.1/params/multiframe.bottom.bgcolor.xml new file mode 100644 index 0000000..f0667d7 --- /dev/null +++ b/docbook-xsl-1.76.1/params/multiframe.bottom.bgcolor.xml @@ -0,0 +1,28 @@ + + +multiframe.bottom.bgcolor +color + + +multiframe.bottom.bgcolor +Background color for bottom navigation frame + + + + +white + + + +Description + +Specifies the background color of the bottom navigation frame when +multiframe is enabled. + + + diff --git a/docbook-xsl-1.76.1/params/multiframe.navigation.height.xml b/docbook-xsl-1.76.1/params/multiframe.navigation.height.xml new file mode 100644 index 0000000..06dbc1c --- /dev/null +++ b/docbook-xsl-1.76.1/params/multiframe.navigation.height.xml @@ -0,0 +1,28 @@ + + +multiframe.navigation.height +length + + +multiframe.navigation.height +Height of navigation frames + + + + +40 + + + +Description + +Specifies the height of the navigation frames in pixels when +multiframe is enabled. + + + diff --git a/docbook-xsl-1.76.1/params/multiframe.top.bgcolor.xml b/docbook-xsl-1.76.1/params/multiframe.top.bgcolor.xml new file mode 100644 index 0000000..4814fc8 --- /dev/null +++ b/docbook-xsl-1.76.1/params/multiframe.top.bgcolor.xml @@ -0,0 +1,28 @@ + + +multiframe.top.bgcolor +color + + +multiframe.top.bgcolor +Background color for top navigation frame + + + + +white + + + +Description + +Specifies the background color of the top navigation frame when +multiframe is enabled. + + + diff --git a/docbook-xsl-1.76.1/params/multiframe.xml b/docbook-xsl-1.76.1/params/multiframe.xml new file mode 100644 index 0000000..b4fbf37 --- /dev/null +++ b/docbook-xsl-1.76.1/params/multiframe.xml @@ -0,0 +1,31 @@ + + +multiframe +boolean + + +multiframe +Use multiple frames for slide bodies? + + + + + + + + +Description + +If non-zero, multiple frames are used for the body of each +slide. This is one way of forcing the slide navigation elements to +appear in constant locations. The other way is with overlays. The overlay and +multiframe parameters are mutually +exclusive. + + + diff --git a/docbook-xsl-1.76.1/params/nav.separator.xml b/docbook-xsl-1.76.1/params/nav.separator.xml new file mode 100644 index 0000000..e3695f9 --- /dev/null +++ b/docbook-xsl-1.76.1/params/nav.separator.xml @@ -0,0 +1,28 @@ + + +nav.separator +boolean + + +nav.separator +Output separator between navigation and body? + + + + + + + + +Description + +If non-zero, a separator (<HR>) is +added between the navigation links and the content of each slide. + + + diff --git a/docbook-xsl-1.76.1/params/nav.table.summary.xml b/docbook-xsl-1.76.1/params/nav.table.summary.xml new file mode 100644 index 0000000..1c1559b --- /dev/null +++ b/docbook-xsl-1.76.1/params/nav.table.summary.xml @@ -0,0 +1,27 @@ + + +nav.table.summary +string + + +nav.table.summary +HTML Table summary attribute value for navigation tables + + + + +Navigation + + + +Description +The value of this parameter is used as the value of the table +summary attribute for the navigation table. +Only applies with the tabular presentation is being used. + + diff --git a/docbook-xsl-1.76.1/params/navbgcolor.xml b/docbook-xsl-1.76.1/params/navbgcolor.xml new file mode 100644 index 0000000..c6fcece --- /dev/null +++ b/docbook-xsl-1.76.1/params/navbgcolor.xml @@ -0,0 +1,26 @@ + + +navbgcolor +color + + +navbgcolor +The background color of the navigation TOC + + + + +#4080FF + + + +Description +The background color of the navigation TOC. +Only applies with the tabular presentation is being used. + + diff --git a/docbook-xsl-1.76.1/params/navbodywidth.xml b/docbook-xsl-1.76.1/params/navbodywidth.xml new file mode 100644 index 0000000..b93cf82 --- /dev/null +++ b/docbook-xsl-1.76.1/params/navbodywidth.xml @@ -0,0 +1,26 @@ + + +navbodywidth +length + + +navbodywidth +Specifies the width of the navigation table body + + + + + + + + +Description +The width of the body column. +Only applies with the tabular presentation is being used. + + diff --git a/docbook-xsl-1.76.1/params/navig.graphics.extension.xml b/docbook-xsl-1.76.1/params/navig.graphics.extension.xml new file mode 100644 index 0000000..416e0c4 --- /dev/null +++ b/docbook-xsl-1.76.1/params/navig.graphics.extension.xml @@ -0,0 +1,28 @@ + + +navig.graphics.extension +string + + +navig.graphics.extension +Extension for navigational graphics + + + + +.gif + + + +Description + +Sets the filename extension to use on navigational graphics used +in the headers and footers of chunked HTML. + + + diff --git a/docbook-xsl-1.76.1/params/navig.graphics.path.xml b/docbook-xsl-1.76.1/params/navig.graphics.path.xml new file mode 100644 index 0000000..373208e --- /dev/null +++ b/docbook-xsl-1.76.1/params/navig.graphics.path.xml @@ -0,0 +1,30 @@ + + +navig.graphics.path +string + + +navig.graphics.path +Path to navigational graphics + + + + +images/ + + + +Description + +Sets the path, probably relative to the directory where the HTML +files are created, to the navigational graphics used in the +headers and footers of chunked HTML. + + + + diff --git a/docbook-xsl-1.76.1/params/navig.graphics.xml b/docbook-xsl-1.76.1/params/navig.graphics.xml new file mode 100644 index 0000000..03e28b6 --- /dev/null +++ b/docbook-xsl-1.76.1/params/navig.graphics.xml @@ -0,0 +1,31 @@ + + +navig.graphics +boolean + + +navig.graphics +Use graphics in navigational headers and footers? + + + + + + + + +Description + +If non-zero, the navigational headers and footers in chunked +HTML are presented in an alternate style that uses graphical icons for +Next, Previous, Up, and Home. Default graphics are provided in the +distribution. If zero, text is used instead of graphics. + + + + diff --git a/docbook-xsl-1.76.1/params/navig.showtitles.xml b/docbook-xsl-1.76.1/params/navig.showtitles.xml new file mode 100644 index 0000000..a4eb3ff --- /dev/null +++ b/docbook-xsl-1.76.1/params/navig.showtitles.xml @@ -0,0 +1,32 @@ + + +navig.showtitles +boolean + + +navig.showtitles +Display titles in HTML headers and footers? + + + +1 + + +Description + +If non-zero, +the headers and footers of chunked HTML +display the titles of the next and previous chunks, +along with the words 'Next' and 'Previous' (or the +equivalent graphical icons if navig.graphics is true). +If false (zero), then only the words 'Next' and 'Previous' +(or the icons) are displayed. + + + + diff --git a/docbook-xsl-1.76.1/params/navtocwidth.xml b/docbook-xsl-1.76.1/params/navtocwidth.xml new file mode 100644 index 0000000..0d21ae0 --- /dev/null +++ b/docbook-xsl-1.76.1/params/navtocwidth.xml @@ -0,0 +1,26 @@ + + +navtocwidth +length + + +navtocwidth +Specifies the width of the navigation table TOC + + + + +220 + + + +Description +The width, in pixels, of the navigation column. +Only applies with the tabular presentation is being used. + + diff --git a/docbook-xsl-1.76.1/params/next.image.xml b/docbook-xsl-1.76.1/params/next.image.xml new file mode 100644 index 0000000..4dbd60a --- /dev/null +++ b/docbook-xsl-1.76.1/params/next.image.xml @@ -0,0 +1,27 @@ + + +next.image +filename + + +next.image +Right-arrow image + + + + +active/nav-next.png + + + +Description + +Specifies the filename of the right-pointing navigation arrow. + + + diff --git a/docbook-xsl-1.76.1/params/no.home.image.xml b/docbook-xsl-1.76.1/params/no.home.image.xml new file mode 100644 index 0000000..2f4ecd8 --- /dev/null +++ b/docbook-xsl-1.76.1/params/no.home.image.xml @@ -0,0 +1,27 @@ + + +no.home.image +filename + + +no.home.image +Inactive home image + + + + +inactive/nav-home.png + + + +Description + +Specifies the filename of the inactive home navigation icon. + + + diff --git a/docbook-xsl-1.76.1/params/no.next.image.xml b/docbook-xsl-1.76.1/params/no.next.image.xml new file mode 100644 index 0000000..966fe26 --- /dev/null +++ b/docbook-xsl-1.76.1/params/no.next.image.xml @@ -0,0 +1,27 @@ + + +no.next.image +filename + + +no.next.image +Inactive right-arrow image + + + + +inactive/nav-next.png + + + +Description + +Specifies the filename of the inactive right-pointing navigation arrow. + + + diff --git a/docbook-xsl-1.76.1/params/no.prev.image.xml b/docbook-xsl-1.76.1/params/no.prev.image.xml new file mode 100644 index 0000000..7632231 --- /dev/null +++ b/docbook-xsl-1.76.1/params/no.prev.image.xml @@ -0,0 +1,27 @@ + + +no.prev.image +filename + + +no.prev.image +Inactive left-arrow image + + + + +inactive/nav-prev.png + + + +Description + +Specifies the filename of the inactive left-pointing navigation arrow. + + + diff --git a/docbook-xsl-1.76.1/params/no.toc.image.xml b/docbook-xsl-1.76.1/params/no.toc.image.xml new file mode 100644 index 0000000..43e9eea --- /dev/null +++ b/docbook-xsl-1.76.1/params/no.toc.image.xml @@ -0,0 +1,27 @@ + + +no.toc.image +filename + + +no.toc.image +Inactive ToC image + + + + +inactive/nav-toc.png + + + +Description + +Specifies the filename of the inactive ToC navigation icon. + + + diff --git a/docbook-xsl-1.76.1/params/no.up.image.xml b/docbook-xsl-1.76.1/params/no.up.image.xml new file mode 100644 index 0000000..a19a34d --- /dev/null +++ b/docbook-xsl-1.76.1/params/no.up.image.xml @@ -0,0 +1,27 @@ + + +no.up.image +filename + + +no.up.image +Inactive up-arrow image + + + + +inactive/nav-up.png + + + +Description + +Specifies the filename of the inactive upward-pointing navigation arrow. + + + diff --git a/docbook-xsl-1.76.1/params/nominal.image.depth.xml b/docbook-xsl-1.76.1/params/nominal.image.depth.xml new file mode 100644 index 0000000..a4e615f --- /dev/null +++ b/docbook-xsl-1.76.1/params/nominal.image.depth.xml @@ -0,0 +1,27 @@ + + +nominal.image.depth +length + + +nominal.image.depth +Nominal image depth + + + + + + + + +Description + +See nominal.image.width. + + + diff --git a/docbook-xsl-1.76.1/params/nominal.image.width.xml b/docbook-xsl-1.76.1/params/nominal.image.width.xml new file mode 100644 index 0000000..bfa989a --- /dev/null +++ b/docbook-xsl-1.76.1/params/nominal.image.width.xml @@ -0,0 +1,43 @@ + + +nominal.image.width +length + + +nominal.image.width +The nominal image width + + + + + + + + +Description + +Graphic widths expressed as a percentage are problematic. In the +following discussion, we speak of width and contentwidth, but +the same issues apply to depth and contentdepth. + +A width of 50% means "half of the available space for the image." +That's fine. But note that in HTML, this is a dynamic property and +the image size will vary if the browser window is resized. + +A contentwidth of 50% means "half of the actual image width". +But what does that mean if the stylesheets cannot assess the image's +actual size? Treating this as a width of 50% is one possibility, but +it produces behavior (dynamic scaling) that seems entirely out of +character with the meaning. + +Instead, the stylesheets define a +nominal.image.width and convert percentages to +actual values based on that nominal size. + + + diff --git a/docbook-xsl-1.76.1/params/nominal.table.width.xml b/docbook-xsl-1.76.1/params/nominal.table.width.xml new file mode 100644 index 0000000..f5dcfb9 --- /dev/null +++ b/docbook-xsl-1.76.1/params/nominal.table.width.xml @@ -0,0 +1,30 @@ + + +nominal.table.width +length + + +nominal.table.width +The (absolute) nominal width of tables + + + + +6in + + + +Description + +In order to convert CALS column widths into HTML column widths, it +is sometimes necessary to have an absolute table width to use for conversion +of mixed absolute and relative widths. This value must be an absolute +length (not a percentage). + + + diff --git a/docbook-xsl-1.76.1/params/nongraphical.admonition.properties.xml b/docbook-xsl-1.76.1/params/nongraphical.admonition.properties.xml new file mode 100644 index 0000000..ba8a06a --- /dev/null +++ b/docbook-xsl-1.76.1/params/nongraphical.admonition.properties.xml @@ -0,0 +1,41 @@ + + +nongraphical.admonition.properties +attribute set + + +nongraphical.admonition.properties +To add properties to the outer block of a nongraphical admonition. + + + + + 0.8em + 1em + 1.2em + 0.25in + 0.25in + + + +Description +These properties are added to the outer block containing the +entire nongraphical admonition, including its title. +It is used when the parameter +admon.graphics is set to zero. +Use this attribute-set to set the space above and below, +and any indent for the whole admonition. + +In addition to these properties, a nongraphical admonition +also applies the admonition.title.properties +attribute-set to the title, and the +admonition.properties attribute-set +to the rest of the content. + + + diff --git a/docbook-xsl-1.76.1/params/normal.para.spacing.xml b/docbook-xsl-1.76.1/params/normal.para.spacing.xml new file mode 100644 index 0000000..bb2a6c0 --- /dev/null +++ b/docbook-xsl-1.76.1/params/normal.para.spacing.xml @@ -0,0 +1,26 @@ + + +normal.para.spacing +attribute set + + +normal.para.spacing +What space do you want between normal paragraphs + + + + + 1em + 0.8em + 1.2em + + +Description +Specify the spacing required between normal paragraphs + + diff --git a/docbook-xsl-1.76.1/params/olink.base.uri.xml b/docbook-xsl-1.76.1/params/olink.base.uri.xml new file mode 100644 index 0000000..d88dd62 --- /dev/null +++ b/docbook-xsl-1.76.1/params/olink.base.uri.xml @@ -0,0 +1,35 @@ + + +olink.base.uri +uri + + +olink.base.uri +Base URI used in olink hrefs + + + + + +Description + +When cross reference data is collected for resolving olinks, it +may be necessary to prepend a base URI to each target's href. This +parameter lets you set that base URI when cross reference data is +collected. This feature is needed when you want to link to a document +that is processed without chunking. The output filename for such a +document is not known to the XSL stylesheet; the only target +information consists of fragment identifiers such as +#idref. To enable the resolution of olinks between +documents, you should pass the name of the HTML output file as the +value of this parameter. Then the hrefs recorded in the cross +reference data collection look like +outfile.html#idref, which can be reached as links +from other documents. + + diff --git a/docbook-xsl-1.76.1/params/olink.debug.xml b/docbook-xsl-1.76.1/params/olink.debug.xml new file mode 100644 index 0000000..e49a176 --- /dev/null +++ b/docbook-xsl-1.76.1/params/olink.debug.xml @@ -0,0 +1,36 @@ + + +olink.debug +boolean + + +olink.debug +Turn on debugging messages for olinks + + + + + + + + +Description + +If non-zero, then each olink will generate several +messages about how it is being resolved during processing. +This is useful when an olink does not resolve properly +and the standard error messages are not sufficient to +find the problem. + + +You may need to read through the olink XSL templates +to understand the context for some of the debug messages. + + + + diff --git a/docbook-xsl-1.76.1/params/olink.doctitle.xml b/docbook-xsl-1.76.1/params/olink.doctitle.xml new file mode 100644 index 0000000..356347d --- /dev/null +++ b/docbook-xsl-1.76.1/params/olink.doctitle.xml @@ -0,0 +1,146 @@ + + +olink.doctitle +list +no +yes +maybe + + +olink.doctitle +show the document title for external olinks? + + + +no + + +Description + +When olinks between documents are resolved, the generated text +may not make it clear that the reference is to another document. +It is possible for the stylesheets to append the other document's +title to external olinks. For this to happen, two parameters must +be set. + + +This olink.doctitle parameter +should be set to either yes or maybe +to enable this feature. + + + +And you should also set the current.docid +parameter to the document id for the document currently +being processed for output. + + + + + +Then if an olink's targetdoc id differs from +the current.docid value, the stylesheet knows +that it is a reference to another document and can +append the target document's +title to the generated olink text. + +The text for the target document's title is copied from the +olink database from the ttl element +of the top-level div for that document. +If that ttl element is missing or empty, +no title is output. + + +The supported values for olink.doctitle are: + + + +yes + + +Always insert the title to the target document if it is not +the current document. + + + + +no + + +Never insert the title to the target document, even if requested +in an xrefstyle attribute. + + + + +maybe + + +Only insert the title to the target document, if requested +in an xrefstyle attribute. + + + + +An xrefstyle attribute +may override the global setting for individual olinks. +The following values are supported in an +xrefstyle +attribute using the select: syntax: + + + + +docname + + +Insert the target document name for this olink using the +docname gentext template, but only +if the value of olink.doctitle +is not no. + + + + +docnamelong + + +Insert the target document name for this olink using the +docnamelong gentext template, but only +if the value of olink.doctitle +is not no. + + + + +nodocname + + +Omit the target document name even if +the value of olink.doctitle +is yes. + + + + +Another way of inserting the target document name +for a single olink is to employ an +xrefstyle +attribute using the template: syntax. +The %o placeholder (the letter o, not zero) +in such a template +will be filled in with the target document's title when it is processed. +This will occur regardless of +the value of olink.doctitle. + +Note that prior to version 1.66 of the XSL stylesheets, +the allowed values for this parameter were 0 and 1. Those +values are still supported and mapped to 'no' and 'yes', respectively. + + + diff --git a/docbook-xsl-1.76.1/params/olink.fragid.xml b/docbook-xsl-1.76.1/params/olink.fragid.xml new file mode 100644 index 0000000..3258038 --- /dev/null +++ b/docbook-xsl-1.76.1/params/olink.fragid.xml @@ -0,0 +1,23 @@ + + +olink.fragid +string + + +olink.fragid +Names the fragment identifier portion of an OLink resolver query + + + +fragid= + + +Description +The fragment identifier portion of an olink target. + + diff --git a/docbook-xsl-1.76.1/params/olink.lang.fallback.sequence.xml b/docbook-xsl-1.76.1/params/olink.lang.fallback.sequence.xml new file mode 100644 index 0000000..7d3d811 --- /dev/null +++ b/docbook-xsl-1.76.1/params/olink.lang.fallback.sequence.xml @@ -0,0 +1,83 @@ + + +olink.lang.fallback.sequence +string + + +olink.lang.fallback.sequence +look up translated documents if olink not found? + + + + + + +Description + + +This parameter defines a list of lang values +to search among to resolve olinks. + + +Normally an olink tries to resolve to a document in the same +language as the olink itself. The language of an olink +is determined by its nearest ancestor element with a +lang attribute, otherwise the +value of the l10n.gentext.default.lang +parameter. + + +An olink database can contain target data for the same +document in multiple languages. Each set of data has the +same value for the targetdoc attribute in +the document element in the database, but with a +different lang attribute value. + + +When an olink is being resolved, the target is first +sought in the document with the same language as the olink. +If no match is found there, then this parameter is consulted +for additional languages to try. + +The olink.lang.fallback.sequence +must be a whitespace separated list of lang values to +try. The first one with a match in the olink database is used. +The default value is empty. + +For example, a document might be written in German +and contain an olink with +targetdoc="adminguide". +When the document is processed, the processor +first looks for a target dataset in the +olink database starting with: + +<document targetdoc="adminguide" lang="de">. + + +If there is no such element, then the +olink.lang.fallback.sequence +parameter is consulted. +If its value is, for example, fr en, then the processor next +looks for targetdoc="adminguide" lang="fr", and +then for targetdoc="adminguide" lang="en". +If there is still no match, it looks for +targetdoc="adminguide" with no +lang attribute. + + +This parameter is useful when a set of documents is only +partially translated, or is in the process of being translated. +If a target of an olink has not yet been translated, then this +parameter permits the processor to look for the document in +other languages. This assumes the reader would rather have +a link to a document in a different language than to have +a broken link. + + + + diff --git a/docbook-xsl-1.76.1/params/olink.outline.ext.xml b/docbook-xsl-1.76.1/params/olink.outline.ext.xml new file mode 100644 index 0000000..2de2fe2 --- /dev/null +++ b/docbook-xsl-1.76.1/params/olink.outline.ext.xml @@ -0,0 +1,28 @@ + + +olink.outline.ext +string + + +olink.outline.ext +The extension of OLink outline files + + + + +.olink + + + +Description + +The extension to be expected for OLink outline files +Bob has this parameter as dead. Please don't use + + + diff --git a/docbook-xsl-1.76.1/params/olink.properties.xml b/docbook-xsl-1.76.1/params/olink.properties.xml new file mode 100644 index 0000000..b76657e --- /dev/null +++ b/docbook-xsl-1.76.1/params/olink.properties.xml @@ -0,0 +1,33 @@ + + +olink.properties +attribute set + + +olink.properties +Properties associated with the cross-reference +text of an olink. + + + + + + replace + + + + +Description + +This attribute set is applied to the +fo:basic-link element of an olink. It is not applied to the +optional page number or optional title of the external +document. + + + diff --git a/docbook-xsl-1.76.1/params/olink.pubid.xml b/docbook-xsl-1.76.1/params/olink.pubid.xml new file mode 100644 index 0000000..4f0b50c --- /dev/null +++ b/docbook-xsl-1.76.1/params/olink.pubid.xml @@ -0,0 +1,27 @@ + + +olink.pubid +string + + +olink.pubid +Names the public identifier portion of an OLink resolver query + + + + +pubid + + + +Description + + + + + diff --git a/docbook-xsl-1.76.1/params/olink.resolver.xml b/docbook-xsl-1.76.1/params/olink.resolver.xml new file mode 100644 index 0000000..fa7d471 --- /dev/null +++ b/docbook-xsl-1.76.1/params/olink.resolver.xml @@ -0,0 +1,23 @@ + + +olink.resolver +string + + +olink.resolver +The root name of the OLink resolver (usually a script) + + + + /cgi-bin/olink + + +Description +FIXME: + + diff --git a/docbook-xsl-1.76.1/params/olink.sysid.xml b/docbook-xsl-1.76.1/params/olink.sysid.xml new file mode 100644 index 0000000..6d4542f --- /dev/null +++ b/docbook-xsl-1.76.1/params/olink.sysid.xml @@ -0,0 +1,27 @@ + + +olink.sysid +string + + +olink.sysid +Names the system identifier portion of an OLink resolver query + + + + +sysid + + + +Description + +FIXME + + + diff --git a/docbook-xsl-1.76.1/params/orderedlist.label.properties.xml b/docbook-xsl-1.76.1/params/orderedlist.label.properties.xml new file mode 100644 index 0000000..39b0432 --- /dev/null +++ b/docbook-xsl-1.76.1/params/orderedlist.label.properties.xml @@ -0,0 +1,26 @@ + + +orderedlist.label.properties +attribute set + + +orderedlist.label.properties +Properties that apply to each label inside ordered list. + + + + + + +Description +Properties that apply to each label inside ordered list. E.g.: +<xsl:attribute-set name="orderedlist.label.properties"> + <xsl:attribute name="text-align">right</xsl:attribute> +</xsl:attribute-set> + + diff --git a/docbook-xsl-1.76.1/params/orderedlist.label.width.xml b/docbook-xsl-1.76.1/params/orderedlist.label.width.xml new file mode 100644 index 0000000..18c8fa8 --- /dev/null +++ b/docbook-xsl-1.76.1/params/orderedlist.label.width.xml @@ -0,0 +1,28 @@ + + +orderedlist.label.width +length + + +orderedlist.label.width +The default width of the label (number) in an ordered list. + + + + +1.2em + + + +Description +Specifies the default width of the label (usually a number or +sequence of numbers) in an ordered list. You can override the default +value on any particular list with the “dbfo†processing instruction +using the “label-width†pseudoattribute. + + diff --git a/docbook-xsl-1.76.1/params/orderedlist.properties.xml b/docbook-xsl-1.76.1/params/orderedlist.properties.xml new file mode 100644 index 0000000..59061cb --- /dev/null +++ b/docbook-xsl-1.76.1/params/orderedlist.properties.xml @@ -0,0 +1,24 @@ + + +orderedlist.properties +attribute set + + +orderedlist.properties +Properties that apply to each list-block generated by orderedlist. + + + + + 2em + + +Description +Properties that apply to each fo:list-block generated by orderedlist. + + diff --git a/docbook-xsl-1.76.1/params/othercredit.like.author.enabled.xml b/docbook-xsl-1.76.1/params/othercredit.like.author.enabled.xml new file mode 100644 index 0000000..2e789dd --- /dev/null +++ b/docbook-xsl-1.76.1/params/othercredit.like.author.enabled.xml @@ -0,0 +1,31 @@ + + +othercredit.like.author.enabled +boolean + + +othercredit.like.author.enabled +Display othercredit in same style as author? + + + +0 + + +Description + +If non-zero, output of the +othercredit element on titlepages is displayed in +the same style as author and +editor output. If zero then +othercredit output is displayed using a style +different than that of author and +editor. + + + diff --git a/docbook-xsl-1.76.1/params/output-root.xml b/docbook-xsl-1.76.1/params/output-root.xml new file mode 100644 index 0000000..d37b054 --- /dev/null +++ b/docbook-xsl-1.76.1/params/output-root.xml @@ -0,0 +1,28 @@ + + +output-root +filename + + +output-root +Specifies the root directory of the website + + + + +. + + + +Description +When using the XSLT processor to manage dependencies and construct +the website, this parameter can be used to indicate the root directory +where the resulting pages are placed. +Only applies when XSLT-based chunking is being used. + + diff --git a/docbook-xsl-1.76.1/params/output.indent.xml b/docbook-xsl-1.76.1/params/output.indent.xml new file mode 100644 index 0000000..40406d7 --- /dev/null +++ b/docbook-xsl-1.76.1/params/output.indent.xml @@ -0,0 +1,32 @@ + + +output.indent +list +no +yes + + +output.indent +Indent output? + + + + +no + + + +Description + +Specifies the setting of the indent +parameter on the HTML slides. For more information, see the discussion +of the xsl:output element in the XSLT specification. +Select from yes or no. + + + diff --git a/docbook-xsl-1.76.1/params/overlay.js.xml b/docbook-xsl-1.76.1/params/overlay.js.xml new file mode 100644 index 0000000..162f87a --- /dev/null +++ b/docbook-xsl-1.76.1/params/overlay.js.xml @@ -0,0 +1,28 @@ + + +overlay.js +filename + + +overlay.js +Overlay JavaScript file + + + + +overlay.js + + + +Description + +Specifies the filename of the overlay JavaScript file. It's unlikely +that you will ever need to change this parameter. + + + diff --git a/docbook-xsl-1.76.1/params/overlay.logo.xml b/docbook-xsl-1.76.1/params/overlay.logo.xml new file mode 100644 index 0000000..e740771 --- /dev/null +++ b/docbook-xsl-1.76.1/params/overlay.logo.xml @@ -0,0 +1,28 @@ + + +overlay.logo +uri + + +overlay.logo +Logo to overlay on ToC frame + + + + +http://docbook.sourceforge.net/release/buttons/slides-1.png + + + +Description + +If this URI is non-empty, JavaScript is used to overlay the +specified image on the ToC frame. + + + diff --git a/docbook-xsl-1.76.1/params/overlay.xml b/docbook-xsl-1.76.1/params/overlay.xml new file mode 100644 index 0000000..f955b23 --- /dev/null +++ b/docbook-xsl-1.76.1/params/overlay.xml @@ -0,0 +1,32 @@ + + +overlay +boolean + + +overlay +Overlay footer navigation? + + + + + + + + +Description + +If non-zero, JavaScript is added to the slides to make the +bottom navigation appear at the bottom of each page. This option and +multiframe are mutually exclusive. + +If this parameter is zero, the bottom navigation simply appears +below the content of each slide. + + + diff --git a/docbook-xsl-1.76.1/params/page.height.portrait.xml b/docbook-xsl-1.76.1/params/page.height.portrait.xml new file mode 100644 index 0000000..0dee73e --- /dev/null +++ b/docbook-xsl-1.76.1/params/page.height.portrait.xml @@ -0,0 +1,69 @@ + + +page.height.portrait +length + + +page.height.portrait +Specify the physical size of the long edge of the page + + + + + + 210mm + 11in + 8.5in + 2378mm + 1682mm + 1189mm + 841mm + 594mm + 420mm + 297mm + 210mm + 148mm + 105mm + 74mm + 52mm + 37mm + 1414mm + 1000mm + 707mm + 500mm + 353mm + 250mm + 176mm + 125mm + 88mm + 62mm + 44mm + 1297mm + 917mm + 648mm + 458mm + 324mm + 229mm + 162mm + 114mm + 81mm + 57mm + 40mm + 11in + + + + +Description + +The portrait page height is the length of the long +edge of the physical page. + + + + diff --git a/docbook-xsl-1.76.1/params/page.height.xml b/docbook-xsl-1.76.1/params/page.height.xml new file mode 100644 index 0000000..96e32c0 --- /dev/null +++ b/docbook-xsl-1.76.1/params/page.height.xml @@ -0,0 +1,37 @@ + + +page.height +length + + +page.height +The height of the physical page + + + + + + + + + + + + + + + +Description + +The page height is generally calculated from the +paper.type and +page.orientation parameters. + + + + diff --git a/docbook-xsl-1.76.1/params/page.margin.bottom.xml b/docbook-xsl-1.76.1/params/page.margin.bottom.xml new file mode 100644 index 0000000..e1877f3 --- /dev/null +++ b/docbook-xsl-1.76.1/params/page.margin.bottom.xml @@ -0,0 +1,29 @@ + + +page.margin.bottom +length + + +page.margin.bottom +The bottom margin of the page + + + + +0.5in + + + +Description + +The bottom page margin is the distance from the bottom of the region-after +to the physical bottom of the page. + + + + diff --git a/docbook-xsl-1.76.1/params/page.margin.inner.xml b/docbook-xsl-1.76.1/params/page.margin.inner.xml new file mode 100644 index 0000000..97782ba --- /dev/null +++ b/docbook-xsl-1.76.1/params/page.margin.inner.xml @@ -0,0 +1,56 @@ + + +page.margin.inner +length + + +page.margin.inner +The inner page margin + + + + + + 1.25in + 1in + + + + +Description + +The inner page margin is the distance from bound edge of the +page to the first column of text. + +The inner page margin is the distance from bound edge of the +page to the outer edge of the first column of text. + +In left-to-right text direction, +this is the left margin of recto (front side) pages. +For single-sided output, it is the left margin +of all pages. + +In right-to-left text direction, +this is the right margin of recto pages. +For single-sided output, this is the +right margin of all pages. + + +Current versions (at least as of version 4.13) +of the XEP XSL-FO processor do not +correctly handle these margin settings for documents +with right-to-left text direction. +The workaround in that situation is to reverse +the values for page.margin.inner +and page.margin.outer, until +this bug is fixed by RenderX. It does not affect documents +with left-to-right text direction. + + + + diff --git a/docbook-xsl-1.76.1/params/page.margin.outer.xml b/docbook-xsl-1.76.1/params/page.margin.outer.xml new file mode 100644 index 0000000..61dfeb8 --- /dev/null +++ b/docbook-xsl-1.76.1/params/page.margin.outer.xml @@ -0,0 +1,53 @@ + + +page.margin.outer +length + + +page.margin.outer +The outer page margin + + + + + + 0.75in + 1in + + + + +Description + +The outer page margin is the distance from non-bound edge of the +page to the outer edge of the last column of text. + +In left-to-right text direction, +this is the right margin of recto (front side) pages. +For single-sided output, it is the right margin +of all pages. + +In right-to-left text direction, +this is the left margin of recto pages. +For single-sided output, this is the +left margin of all pages. + + +Current versions (at least as of version 4.13) +of the XEP XSL-FO processor do not +correctly handle these margin settings for documents +with right-to-left text direction. +The workaround in that situation is to reverse +the values for page.margin.inner +and page.margin.outer, until +this bug is fixed by RenderX. It does not affect documents +with left-to-right text direction. + + + + diff --git a/docbook-xsl-1.76.1/params/page.margin.top.xml b/docbook-xsl-1.76.1/params/page.margin.top.xml new file mode 100644 index 0000000..a7e53e8 --- /dev/null +++ b/docbook-xsl-1.76.1/params/page.margin.top.xml @@ -0,0 +1,28 @@ + + +page.margin.top +length + + +page.margin.top +The top margin of the page + + + + +0.5in + + + +Description + +The top page margin is the distance from the physical top of the +page to the top of the region-before. + + + diff --git a/docbook-xsl-1.76.1/params/page.orientation.xml b/docbook-xsl-1.76.1/params/page.orientation.xml new file mode 100644 index 0000000..37971c0 --- /dev/null +++ b/docbook-xsl-1.76.1/params/page.orientation.xml @@ -0,0 +1,32 @@ + + +page.orientation +list +portrait +landscape + + +page.orientation +Select the page orientation + + + + +portrait + + + +Description + + Select one from portrait or landscape. +In portrait orientation, the short edge is horizontal; in +landscape orientation, it is vertical. + + + + diff --git a/docbook-xsl-1.76.1/params/page.width.portrait.xml b/docbook-xsl-1.76.1/params/page.width.portrait.xml new file mode 100644 index 0000000..8216fc3 --- /dev/null +++ b/docbook-xsl-1.76.1/params/page.width.portrait.xml @@ -0,0 +1,67 @@ + + +page.width.portrait +length + + +page.width.portrait +Specify the physical size of the short edge of the page + + + + + + 8.5in + 1682mm + 1189mm + 841mm + 594mm + 420mm + 297mm + 210mm + 148mm + 105mm + 74mm + 52mm + 37mm + 26mm + 1000mm + 707mm + 500mm + 353mm + 250mm + 176mm + 125mm + 88mm + 62mm + 44mm + 31mm + 917mm + 648mm + 458mm + 324mm + 229mm + 162mm + 114mm + 81mm + 57mm + 40mm + 28mm + 8.5in + + + + +Description + +The portrait page width is the length of the short +edge of the physical page. + + + + diff --git a/docbook-xsl-1.76.1/params/page.width.xml b/docbook-xsl-1.76.1/params/page.width.xml new file mode 100644 index 0000000..ff16060 --- /dev/null +++ b/docbook-xsl-1.76.1/params/page.width.xml @@ -0,0 +1,36 @@ + + +page.width +length + + +page.width +The width of the physical page + + + + + + + + + + + + + + + +Description + +The page width is generally calculated from the +paper.type and +page.orientation parameters. + + + diff --git a/docbook-xsl-1.76.1/params/pages.template.xml b/docbook-xsl-1.76.1/params/pages.template.xml new file mode 100644 index 0000000..fff546c --- /dev/null +++ b/docbook-xsl-1.76.1/params/pages.template.xml @@ -0,0 +1,29 @@ + + +pages.template +uri + + +pages.template +Specify the template Pages document + + + + + + + + +Description + +The pages.template parameter specifies a Pages (the Apple word processing application) document to use as a template for the generated document. The template document is used to define the (extensive) headers for the generated document, in particular the paragraph and character styles that are used to format the various elements. Any content in the template document is ignored. + +A template document is used in order to allow maintenance of the paragraph and character styles to be done using Pages itself, rather than these XSL stylesheets. + + + diff --git a/docbook-xsl-1.76.1/params/paper.type.xml b/docbook-xsl-1.76.1/params/paper.type.xml new file mode 100644 index 0000000..2656c9c --- /dev/null +++ b/docbook-xsl-1.76.1/params/paper.type.xml @@ -0,0 +1,73 @@ + + +paper.type +list +open +open +USletter8.5x11in +USlandscape11x8.5in +USlegal8.5inx14in +USlegallandscape14inx8.5in +4A02378x1682mm +2A01682x1189mm +A01189x841mm +A1841x594mm +A2594x420mm +A3420x297mm +A4297x210mm +A5210x148mm +A6148x105mm +A7105x74mm +A874x52mm +A952x37mm +A1037x26mm +B01414x1000mm +B11000x707mm +B2707x500mm +B3500x353mm +B4353x250mm +B5250x176mm +B6176x125mm +B7125x88mm +B888x62mm +B962x44mm +B1044x31mm +C01297x917mm +C1917x648mm +C2648x458mm +C3458x324mm +C4324x229mm +C5229x162mm +C6162x114mm +C7114x81mm +C881x57mm +C957x40mm +C1040x28mm + + +paper.type +Select the paper type + + + + +USletter + + + +Description + +The paper type is a convenient way to specify the paper size. +The list of known paper sizes includes USletter and most of the A, +B, and C sizes. See page.width.portrait, for example. + + + + + + diff --git a/docbook-xsl-1.76.1/params/para.propagates.style.xml b/docbook-xsl-1.76.1/params/para.propagates.style.xml new file mode 100644 index 0000000..0415adf --- /dev/null +++ b/docbook-xsl-1.76.1/params/para.propagates.style.xml @@ -0,0 +1,29 @@ + + +para.propagates.style +boolean + + +para.propagates.style +Pass para role attribute through to HTML? + + + + + + + + +Description + +If true, the role attribute of para elements +will be passed through to the HTML as a class attribute on the +p generated for the paragraph. + + + diff --git a/docbook-xsl-1.76.1/params/part.autolabel.xml b/docbook-xsl-1.76.1/params/part.autolabel.xml new file mode 100644 index 0000000..4f1a42c --- /dev/null +++ b/docbook-xsl-1.76.1/params/part.autolabel.xml @@ -0,0 +1,73 @@ + + +part.autolabel +list +0none +11,2,3... +AA,B,C... +aa,b,c... +ii,ii,iii... +II,II,III... + + +part.autolabel +Specifies the labeling format for Part titles + + + + +I + + + +Description + +If non-zero, then parts will be numbered using the parameter +value as the number format if the value matches one of the following: + + + + + 1 or arabic + + Arabic numeration (1, 2, 3 ...). + + + + A or upperalpha + + Uppercase letter numeration (A, B, C ...). + + + + a or loweralpha + + Lowercase letter numeration (a, b, c ...). + + + + I or upperroman + + Uppercase roman numeration (I, II, III ...). + + + + i or lowerroman + + Lowercase roman letter numeration (i, ii, iii ...). + + + + +Any nonzero value other than the above will generate +the default number format (upperroman). + + + + + diff --git a/docbook-xsl-1.76.1/params/passivetex.extensions.xml b/docbook-xsl-1.76.1/params/passivetex.extensions.xml new file mode 100644 index 0000000..2b1cb77 --- /dev/null +++ b/docbook-xsl-1.76.1/params/passivetex.extensions.xml @@ -0,0 +1,37 @@ + + +passivetex.extensions +boolean + + +passivetex.extensions +Enable PassiveTeX extensions? + + + + + + +Description + +If non-zero, +PassiveTeX +extensions will be used. At present, this consists of PDF bookmarks +and sorted index terms. + + +This parameter can also affect which graphics file formats +are supported + + + PassiveTeX is incomplete and development has ceased. In most cases, +another XSL-FO engine is probably a better choice. + + + + diff --git a/docbook-xsl-1.76.1/params/pgwide.properties.xml b/docbook-xsl-1.76.1/params/pgwide.properties.xml new file mode 100644 index 0000000..c63b461 --- /dev/null +++ b/docbook-xsl-1.76.1/params/pgwide.properties.xml @@ -0,0 +1,52 @@ + + +pgwide.properties +attribute set + + +pgwide.properties +Properties to make a figure or table page wide. + + + + + + + 0pt + + + + +Description + +This attribute set is used to set the properties +that make a figure or table "page wide" in fo output. +It comes into effect when an attribute pgwide="1" +is used. + + + +By default, it sets start-indent +to 0pt. +In a stylesheet that sets the parameter +body.start.indent +to a non-zero value in order to indent body text, +this attribute set can be used to outdent pgwide +figures to the start margin. + + +If a document uses a multi-column page layout, +then this attribute set could try setting span +to a value of all. However, this may +not work with some processors because a span property must be on an +fo:block that is a direct child of fo:flow. It may work in +some processors anyway. + + + + diff --git a/docbook-xsl-1.76.1/params/phrase.propagates.style.xml b/docbook-xsl-1.76.1/params/phrase.propagates.style.xml new file mode 100644 index 0000000..8c25892 --- /dev/null +++ b/docbook-xsl-1.76.1/params/phrase.propagates.style.xml @@ -0,0 +1,29 @@ + + +phrase.propagates.style +boolean + + +phrase.propagates.style +Pass phrase role attribute through to HTML? + + + + + + + +Description + +If non-zero, the role attribute of phrase elements +will be passed through to the HTML as a class +attribute on a span that surrounds the +phrase. + + + diff --git a/docbook-xsl-1.76.1/params/pixels.per.inch.xml b/docbook-xsl-1.76.1/params/pixels.per.inch.xml new file mode 100644 index 0000000..86faff5 --- /dev/null +++ b/docbook-xsl-1.76.1/params/pixels.per.inch.xml @@ -0,0 +1,31 @@ + + +pixels.per.inch +integer + + +pixels.per.inch +How many pixels are there per inch? + + + + +90 + + + +Description + +When lengths are converted to pixels, this value is used to +determine the size of a pixel. The default value is taken from the +XSL +Recommendation. + + + + diff --git a/docbook-xsl-1.76.1/params/plus.image.xml b/docbook-xsl-1.76.1/params/plus.image.xml new file mode 100644 index 0000000..17b3d3c --- /dev/null +++ b/docbook-xsl-1.76.1/params/plus.image.xml @@ -0,0 +1,29 @@ + + +plus.image +filename + + +plus.image +Plus image + + + + +toc/closed.png + + + +Description + +Specifies the filename of the plus image; the image used in a +dynamic ToC to indicate that a section +can be expanded. + + + diff --git a/docbook-xsl-1.76.1/params/points.per.em.xml b/docbook-xsl-1.76.1/params/points.per.em.xml new file mode 100644 index 0000000..76bd22e --- /dev/null +++ b/docbook-xsl-1.76.1/params/points.per.em.xml @@ -0,0 +1,29 @@ + + +points.per.em +number + + +points.per.em +Specify the nominal size of an em-space in points + + + + +10 + + + +Description + +The fixed value used for calculations based upon the size of a +character. The assumption made is that ten point font is in use. This +assumption may not be valid. + + + diff --git a/docbook-xsl-1.76.1/params/preface.autolabel.xml b/docbook-xsl-1.76.1/params/preface.autolabel.xml new file mode 100644 index 0000000..f59115a --- /dev/null +++ b/docbook-xsl-1.76.1/params/preface.autolabel.xml @@ -0,0 +1,71 @@ + + +preface.autolabel +list +0none +11,2,3... +AA,B,C... +aa,b,c... +ii,ii,iii... +II,II,III... + + +preface.autolabel +Specifices the labeling format for Preface titles + + + + + + +Description + +If non-zero then prefaces will be numbered using the parameter +value as the number format if the value matches one of the following: + + + + + 1 or arabic + + Arabic numeration (1, 2, 3 ...). + + + + A or upperalpha + + Uppercase letter numeration (A, B, C ...). + + + + a or loweralpha + + Lowercase letter numeration (a, b, c ...). + + + + I or upperroman + + Uppercase roman numeration (I, II, III ...). + + + + i or lowerroman + + Lowercase roman letter numeration (i, ii, iii ...). + + + + +Any nonzero value other than the above will generate +the default number format (arabic). + + + + + diff --git a/docbook-xsl-1.76.1/params/prefer.internal.olink.xml b/docbook-xsl-1.76.1/params/prefer.internal.olink.xml new file mode 100644 index 0000000..2599d76 --- /dev/null +++ b/docbook-xsl-1.76.1/params/prefer.internal.olink.xml @@ -0,0 +1,78 @@ + + +prefer.internal.olink +boolean + + +prefer.internal.olink +Prefer a local olink reference to an external reference + + + + + + + + +Description + +If you are re-using XML content modules in multiple documents, +you may want to redirect some of your olinks. This parameter +permits you to redirect an olink to the current document. + + +For example: you are writing documentation for a product, +which includes 3 manuals: a little installation +booklet (booklet.xml), a user +guide (user.xml), and a reference manual (reference.xml). +All 3 documents begin with the same introduction section (intro.xml) that +contains a reference to the customization section (custom.xml) which is +included in both user.xml and reference.xml documents. + + +How do you write the link to custom.xml in intro.xml +so that it is interpreted correctly in all 3 documents? + +If you use xref, it will fail in user.xml. + +If you use olink (pointing to reference.xml), +the reference in user.xml +will point to the customization section of the reference manual, while it is +actually available in user.xml. + + + +If you set the prefer.internal.olink +parameter to a non-zero value, then the processor will +first look in the olink database +for the olink's targetptr attribute value +in document matching the current.docid +parameter value. If it isn't found there, then +it tries the document in the database +with the targetdoc +value that matches the olink's targetdoc +attribute. + + +This feature permits an olink reference to resolve to +the current document if there is an element +with an id matching the olink's targetptr +value. The current document's olink data must be +included in the target database for this to work. + + +There is a potential for incorrect links if +the same id attribute value is used for different +content in different documents. +Some of your olinks may be redirected to the current document +when they shouldn't be. It is not possible to control +individual olink instances. + + + + diff --git a/docbook-xsl-1.76.1/params/preferred.mediaobject.role.xml b/docbook-xsl-1.76.1/params/preferred.mediaobject.role.xml new file mode 100644 index 0000000..57b0989 --- /dev/null +++ b/docbook-xsl-1.76.1/params/preferred.mediaobject.role.xml @@ -0,0 +1,40 @@ + + +preferred.mediaobject.role +string + + +preferred.mediaobject.role +Select which mediaobject to use based on +this value of an object's role attribute. + + + + + + + + + +Description + +A mediaobject may contain several objects such as imageobjects. +If the parameter use.role.for.mediaobject is +non-zero, then the role attribute on +imageobjects and other objects within a +mediaobject container will be used to select which object +will be used. If one of the objects has a role value that matches the +preferred.mediaobject.role parameter, then it +has first priority for selection. If more than one has such a role +value, the first one is used. + + +See the use.role.for.mediaobject parameter +for the sequence of selection. + + diff --git a/docbook-xsl-1.76.1/params/prev.image.xml b/docbook-xsl-1.76.1/params/prev.image.xml new file mode 100644 index 0000000..b017115 --- /dev/null +++ b/docbook-xsl-1.76.1/params/prev.image.xml @@ -0,0 +1,27 @@ + + +prev.image +filename + + +prev.image +Left-arrow image + + + + +active/nav-prev.png + + + +Description + +Specifies the filename of the left-pointing navigation arrow. + + + diff --git a/docbook-xsl-1.76.1/params/procedure.properties.xml b/docbook-xsl-1.76.1/params/procedure.properties.xml new file mode 100644 index 0000000..f6cadb0 --- /dev/null +++ b/docbook-xsl-1.76.1/params/procedure.properties.xml @@ -0,0 +1,29 @@ + + +procedure.properties +attribute set + + +procedure.properties +Properties associated with a procedure + + + + + + auto + + + + +Description + +The styling for procedures. + + + diff --git a/docbook-xsl-1.76.1/params/process.empty.source.toc.xml b/docbook-xsl-1.76.1/params/process.empty.source.toc.xml new file mode 100644 index 0000000..772b456 --- /dev/null +++ b/docbook-xsl-1.76.1/params/process.empty.source.toc.xml @@ -0,0 +1,39 @@ + + +process.empty.source.toc +boolean + + +process.empty.source.toc +Generate automated TOC if toc element occurs in a source document? + + + + + + +Description + +Specifies that if an empty toc element is found in a +source document, an automated TOC is generated at this point in the +document. + + Depending on what the value of the + generate.toc parameter is, setting this + parameter to 1 could result in generation of + duplicate automated TOCs. So the + process.empty.source.toc is primarily useful + as an "override": by placing an empty toc in your + document and setting this parameter to 1, you can + force a TOC to be generated even if generate.toc + says not to. + + + + + diff --git a/docbook-xsl-1.76.1/params/process.source.toc.xml b/docbook-xsl-1.76.1/params/process.source.toc.xml new file mode 100644 index 0000000..b91657a --- /dev/null +++ b/docbook-xsl-1.76.1/params/process.source.toc.xml @@ -0,0 +1,39 @@ + + +process.source.toc +boolean + + +process.source.toc +Process a non-empty toc element if it occurs in a source document? + + + + + + +Description + +Specifies that the contents of a non-empty "hard-coded" +toc element in a source document are processed to +generate a TOC in output. + + This parameter has no effect on automated generation of + TOCs. An automated TOC may still be generated along with the + "hard-coded" TOC. To suppress automated TOC generation, adjust the + value of the generate.toc paramameter. + + The process.source.toc parameter also has + no effect if the toc element is empty; handling + for empty toc is controlled by the + process.empty.source.toc parameter. + + + + + diff --git a/docbook-xsl-1.76.1/params/profile.arch.xml b/docbook-xsl-1.76.1/params/profile.arch.xml new file mode 100644 index 0000000..afcd34c --- /dev/null +++ b/docbook-xsl-1.76.1/params/profile.arch.xml @@ -0,0 +1,39 @@ + + +profile.arch +string + + +profile.arch +Target profile for arch +attribute + + + + + + + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + diff --git a/docbook-xsl-1.76.1/params/profile.attribute.xml b/docbook-xsl-1.76.1/params/profile.attribute.xml new file mode 100644 index 0000000..e7dc5d0 --- /dev/null +++ b/docbook-xsl-1.76.1/params/profile.attribute.xml @@ -0,0 +1,34 @@ + + +profile.attribute +string + + +profile.attribute +Name of user-specified profiling attribute + + + + + + + + +Description + +This parameter is used in conjuction with +profile.value. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + diff --git a/docbook-xsl-1.76.1/params/profile.audience.xml b/docbook-xsl-1.76.1/params/profile.audience.xml new file mode 100644 index 0000000..1c5b1a3 --- /dev/null +++ b/docbook-xsl-1.76.1/params/profile.audience.xml @@ -0,0 +1,38 @@ + + +profile.audience +string + + +profile.audience +Target profile for audience +attribute + + + + + + + + +Description + +Value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + diff --git a/docbook-xsl-1.76.1/params/profile.condition.xml b/docbook-xsl-1.76.1/params/profile.condition.xml new file mode 100644 index 0000000..8bb01a3 --- /dev/null +++ b/docbook-xsl-1.76.1/params/profile.condition.xml @@ -0,0 +1,38 @@ + + +profile.condition +string + + +profile.condition +Target profile for condition +attribute + + + + + + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + diff --git a/docbook-xsl-1.76.1/params/profile.conformance.xml b/docbook-xsl-1.76.1/params/profile.conformance.xml new file mode 100644 index 0000000..606af4c --- /dev/null +++ b/docbook-xsl-1.76.1/params/profile.conformance.xml @@ -0,0 +1,38 @@ + + +profile.conformance +string + + +profile.conformance +Target profile for conformance +attribute + + + + + + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + diff --git a/docbook-xsl-1.76.1/params/profile.lang.xml b/docbook-xsl-1.76.1/params/profile.lang.xml new file mode 100644 index 0000000..43b9439 --- /dev/null +++ b/docbook-xsl-1.76.1/params/profile.lang.xml @@ -0,0 +1,38 @@ + + +profile.lang +string + + +profile.lang +Target profile for lang +attribute + + + + + + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + diff --git a/docbook-xsl-1.76.1/params/profile.os.xml b/docbook-xsl-1.76.1/params/profile.os.xml new file mode 100644 index 0000000..ba6f430 --- /dev/null +++ b/docbook-xsl-1.76.1/params/profile.os.xml @@ -0,0 +1,38 @@ + + +profile.os +string + + +profile.os +Target profile for os +attribute + + + + + + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + diff --git a/docbook-xsl-1.76.1/params/profile.revision.xml b/docbook-xsl-1.76.1/params/profile.revision.xml new file mode 100644 index 0000000..28f668d --- /dev/null +++ b/docbook-xsl-1.76.1/params/profile.revision.xml @@ -0,0 +1,38 @@ + + +profile.revision +string + + +profile.revision +Target profile for revision +attribute + + + + + + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + diff --git a/docbook-xsl-1.76.1/params/profile.revisionflag.xml b/docbook-xsl-1.76.1/params/profile.revisionflag.xml new file mode 100644 index 0000000..3ab8919 --- /dev/null +++ b/docbook-xsl-1.76.1/params/profile.revisionflag.xml @@ -0,0 +1,38 @@ + + +profile.revisionflag +string + + +profile.revisionflag +Target profile for revisionflag +attribute + + + + + + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + diff --git a/docbook-xsl-1.76.1/params/profile.role.xml b/docbook-xsl-1.76.1/params/profile.role.xml new file mode 100644 index 0000000..5758e4a --- /dev/null +++ b/docbook-xsl-1.76.1/params/profile.role.xml @@ -0,0 +1,54 @@ + + +profile.role +string + + +profile.role +Target profile for role +attribute + + + + + + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + +Note that role is often +used for other purposes than profiling. For example it is commonly +used to get emphasize in bold font: + +<emphasis role="bold">very important</emphasis> + +If you are using role for +these purposes do not forget to add values like bold to +value of this parameter. If you forgot you will get document with +small pieces missing which are very hard to track. + +For this reason it is not recommended to use role attribute for profiling. You should +rather use profiling specific attributes like userlevel, os, arch, condition, etc. + + + + diff --git a/docbook-xsl-1.76.1/params/profile.security.xml b/docbook-xsl-1.76.1/params/profile.security.xml new file mode 100644 index 0000000..8ffca0f --- /dev/null +++ b/docbook-xsl-1.76.1/params/profile.security.xml @@ -0,0 +1,38 @@ + + +profile.security +string + + +profile.security +Target profile for security +attribute + + + + + + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + diff --git a/docbook-xsl-1.76.1/params/profile.separator.xml b/docbook-xsl-1.76.1/params/profile.separator.xml new file mode 100644 index 0000000..a4317f5 --- /dev/null +++ b/docbook-xsl-1.76.1/params/profile.separator.xml @@ -0,0 +1,27 @@ + + +profile.separator +string + + +profile.separator +Separator character for compound profile values + + + + +; + + + +Description + +Separator character used for compound profile values. See profile.arch + + + diff --git a/docbook-xsl-1.76.1/params/profile.status.xml b/docbook-xsl-1.76.1/params/profile.status.xml new file mode 100644 index 0000000..c9fc469 --- /dev/null +++ b/docbook-xsl-1.76.1/params/profile.status.xml @@ -0,0 +1,38 @@ + + +profile.status +string + + +profile.status +Target profile for status +attribute + + + + + + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + diff --git a/docbook-xsl-1.76.1/params/profile.userlevel.xml b/docbook-xsl-1.76.1/params/profile.userlevel.xml new file mode 100644 index 0000000..39e263b --- /dev/null +++ b/docbook-xsl-1.76.1/params/profile.userlevel.xml @@ -0,0 +1,38 @@ + + +profile.userlevel +string + + +profile.userlevel +Target profile for userlevel +attribute + + + + + + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + diff --git a/docbook-xsl-1.76.1/params/profile.value.xml b/docbook-xsl-1.76.1/params/profile.value.xml new file mode 100644 index 0000000..85f7190 --- /dev/null +++ b/docbook-xsl-1.76.1/params/profile.value.xml @@ -0,0 +1,41 @@ + + +profile.value +string + + +profile.value +Target profile for user-specified attribute + + + + + + + + +Description + +When you are using this parameter you must also specify name of +profiling attribute with parameter +profile.attribute. + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + diff --git a/docbook-xsl-1.76.1/params/profile.vendor.xml b/docbook-xsl-1.76.1/params/profile.vendor.xml new file mode 100644 index 0000000..c0187f0 --- /dev/null +++ b/docbook-xsl-1.76.1/params/profile.vendor.xml @@ -0,0 +1,38 @@ + + +profile.vendor +string + + +profile.vendor +Target profile for vendor +attribute + + + + + + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + diff --git a/docbook-xsl-1.76.1/params/profile.wordsize.xml b/docbook-xsl-1.76.1/params/profile.wordsize.xml new file mode 100644 index 0000000..e30ffc7 --- /dev/null +++ b/docbook-xsl-1.76.1/params/profile.wordsize.xml @@ -0,0 +1,38 @@ + + +profile.wordsize +string + + +profile.wordsize +Target profile for wordsize +attribute + + + + + + + + +Description + +The value of this parameter specifies profiles which should be +included in the output. You can specify multiple profiles by +separating them by semicolon. You can change separator character by +profile.separator +parameter. + +This parameter has effect only when you are using profiling +stylesheets (profile-docbook.xsl, +profile-chunk.xsl, …) instead of normal +ones (docbook.xsl, +chunk.xsl, …). + + + diff --git a/docbook-xsl-1.76.1/params/punct.honorific.xml b/docbook-xsl-1.76.1/params/punct.honorific.xml new file mode 100644 index 0000000..7c8a38e --- /dev/null +++ b/docbook-xsl-1.76.1/params/punct.honorific.xml @@ -0,0 +1,28 @@ + + +punct.honorific +string + + +punct.honorific +Punctuation after an honorific in a personal name. + + + + +. + + + +Description + +This parameter specifies the punctuation that should be added after an +honorific in a personal name. + + + diff --git a/docbook-xsl-1.76.1/params/qanda.defaultlabel.xml b/docbook-xsl-1.76.1/params/qanda.defaultlabel.xml new file mode 100644 index 0000000..0b43f0d --- /dev/null +++ b/docbook-xsl-1.76.1/params/qanda.defaultlabel.xml @@ -0,0 +1,86 @@ + + +qanda.defaultlabel +list +number +qanda +none + + +qanda.defaultlabel +Sets the default for defaultlabel on QandASet. + + + + +number + + + +Description + +If no defaultlabel attribute is specified on +a qandaset, this value is used. It is generally one of the legal +values for the defaultlabel attribute (none, +number or +qanda), or one of the additional stylesheet-specific values +(qnumber or qnumberanda). +The default value is 'number'. + +The values are rendered as follows: + +qanda + +questions are labeled "Q:" and +answers are labeled "A:". + + + +number + +The questions are enumerated and the answers +are not labeled. + + + +qnumber + +The questions are labeled "Q:" followed by a number, and answers are not +labeled. +When sections are numbered, adding a label +to the number distinguishes the question numbers +from the section numbers. +This value is not allowed in the +defaultlabel attribute +of a qandaset element. + + + +qnumberanda + +The questions are labeled "Q:" followed by a number, and +the answers are labeled "A:". +When sections are numbered, adding a label +to the number distinguishes the question numbers +from the section numbers. +This value is not allowed in the +defaultlabel attribute +of a qandaset element. + + + +none + +No distinguishing label precedes Questions or Answers. + + + + + + + diff --git a/docbook-xsl-1.76.1/params/qanda.in.toc.xml b/docbook-xsl-1.76.1/params/qanda.in.toc.xml new file mode 100644 index 0000000..9597b71 --- /dev/null +++ b/docbook-xsl-1.76.1/params/qanda.in.toc.xml @@ -0,0 +1,34 @@ + + +qanda.in.toc +boolean + + +qanda.in.toc +Should qandaentry questions appear in +the document table of contents? + + + + + + +Description + +If true (non-zero), then the generated table of contents +for a document will include qandaset titles, +qandadiv titles, +and question elements. The default value (zero) excludes +them from the TOC. + +This parameter does not affect any tables of contents +that may be generated inside a qandaset or qandadiv. + + + + diff --git a/docbook-xsl-1.76.1/params/qanda.inherit.numeration.xml b/docbook-xsl-1.76.1/params/qanda.inherit.numeration.xml new file mode 100644 index 0000000..744c0e8 --- /dev/null +++ b/docbook-xsl-1.76.1/params/qanda.inherit.numeration.xml @@ -0,0 +1,30 @@ + + +qanda.inherit.numeration +boolean + + +qanda.inherit.numeration +Does enumeration of QandASet components inherit the numeration of parent elements? + + + + + + + + +Description + +If non-zero, numbered qandadiv elements and +question and answer inherit the enumeration of +the ancestors of the qandaset. + + + + diff --git a/docbook-xsl-1.76.1/params/qanda.nested.in.toc.xml b/docbook-xsl-1.76.1/params/qanda.nested.in.toc.xml new file mode 100644 index 0000000..01bdf5a --- /dev/null +++ b/docbook-xsl-1.76.1/params/qanda.nested.in.toc.xml @@ -0,0 +1,29 @@ + + +qanda.nested.in.toc +boolean + + +qanda.nested.in.toc +Should nested answer/qandaentry instances appear in TOC? + + + + + + + + +Description + +If non-zero, instances of qandaentry +that are children of answer elements are shown in +the TOC. + + + diff --git a/docbook-xsl-1.76.1/params/qanda.title.level1.properties.xml b/docbook-xsl-1.76.1/params/qanda.title.level1.properties.xml new file mode 100644 index 0000000..edaecc9 --- /dev/null +++ b/docbook-xsl-1.76.1/params/qanda.title.level1.properties.xml @@ -0,0 +1,32 @@ + + +qanda.title.level1.properties +attribute set + + +qanda.title.level1.properties +Properties for level-1 qanda set titles + + + + + + + + pt + + + + + +Description + +The properties of level-1 qanda set titles. + + + diff --git a/docbook-xsl-1.76.1/params/qanda.title.level2.properties.xml b/docbook-xsl-1.76.1/params/qanda.title.level2.properties.xml new file mode 100644 index 0000000..ca48ca1 --- /dev/null +++ b/docbook-xsl-1.76.1/params/qanda.title.level2.properties.xml @@ -0,0 +1,32 @@ + + +qanda.title.level2.properties +attribute set + + +qanda.title.level2.properties +Properties for level-2 qanda set titles + + + + + + + + pt + + + + + +Description + +The properties of level-2 qanda set titles. + + + diff --git a/docbook-xsl-1.76.1/params/qanda.title.level3.properties.xml b/docbook-xsl-1.76.1/params/qanda.title.level3.properties.xml new file mode 100644 index 0000000..c9c098e --- /dev/null +++ b/docbook-xsl-1.76.1/params/qanda.title.level3.properties.xml @@ -0,0 +1,32 @@ + + +qanda.title.level3.properties +attribute set + + +qanda.title.level3.properties +Properties for level-3 qanda set titles + + + + + + + + pt + + + + + +Description + +The properties of level-3 qanda set titles. + + + diff --git a/docbook-xsl-1.76.1/params/qanda.title.level4.properties.xml b/docbook-xsl-1.76.1/params/qanda.title.level4.properties.xml new file mode 100644 index 0000000..4344e76 --- /dev/null +++ b/docbook-xsl-1.76.1/params/qanda.title.level4.properties.xml @@ -0,0 +1,32 @@ + + +qanda.title.level4.properties +attribute set + + +qanda.title.level4.properties +Properties for level-4 qanda set titles + + + + + + + + pt + + + + + +Description + +The properties of level-4 qanda set titles. + + + diff --git a/docbook-xsl-1.76.1/params/qanda.title.level5.properties.xml b/docbook-xsl-1.76.1/params/qanda.title.level5.properties.xml new file mode 100644 index 0000000..31b0d20 --- /dev/null +++ b/docbook-xsl-1.76.1/params/qanda.title.level5.properties.xml @@ -0,0 +1,32 @@ + + +qanda.title.level5.properties +attribute set + + +qanda.title.level5.properties +Properties for level-5 qanda set titles + + + + + + + + pt + + + + + +Description + +The properties of level-5 qanda set titles. + + + diff --git a/docbook-xsl-1.76.1/params/qanda.title.level6.properties.xml b/docbook-xsl-1.76.1/params/qanda.title.level6.properties.xml new file mode 100644 index 0000000..920c7e9 --- /dev/null +++ b/docbook-xsl-1.76.1/params/qanda.title.level6.properties.xml @@ -0,0 +1,34 @@ + + +qanda.title.level6.properties +attribute set + + +qanda.title.level6.properties +Properties for level-6 qanda set titles + + + + + + + + pt + + + + + +Description + +The properties of level-6 qanda set titles. +This property set is actually +used for all titles below level 5. + + + diff --git a/docbook-xsl-1.76.1/params/qanda.title.properties.xml b/docbook-xsl-1.76.1/params/qanda.title.properties.xml new file mode 100644 index 0000000..7c3c2a1 --- /dev/null +++ b/docbook-xsl-1.76.1/params/qanda.title.properties.xml @@ -0,0 +1,37 @@ + + +qanda.title.properties +attribute set + + +qanda.title.properties +Properties for qanda set titles + + + + + + + + + bold + + always + 0.8em + 1.0em + 1.2em + + + + +Description + +The properties common to all qanda set titles. + + + diff --git a/docbook-xsl-1.76.1/params/qandadiv.autolabel.xml b/docbook-xsl-1.76.1/params/qandadiv.autolabel.xml new file mode 100644 index 0000000..596350a --- /dev/null +++ b/docbook-xsl-1.76.1/params/qandadiv.autolabel.xml @@ -0,0 +1,26 @@ + + +qandadiv.autolabel +boolean + + +qandadiv.autolabel +Are divisions in QAndASets enumerated? + + + + + + +Description + +If non-zero, unlabeled qandadivs will be enumerated. + + + + diff --git a/docbook-xsl-1.76.1/params/rebuild-all.xml b/docbook-xsl-1.76.1/params/rebuild-all.xml new file mode 100644 index 0000000..6dcd5e0 --- /dev/null +++ b/docbook-xsl-1.76.1/params/rebuild-all.xml @@ -0,0 +1,33 @@ + + +rebuild-all +boolean + + +rebuild-all +Indicates that all files should be produced + + + + + + + + +Description +When using the XSLT processor to manage dependencies and construct +the website, this parameter can be used to regenerate the whole website, +updating even pages that don't appear to need to be updated. +The dependency extension only looks at the source documents. So +if you change something in the stylesheet, for example, that has a global +effect, you can use this parameter to force the stylesheet to rebuild the +whole website. + +Only applies when XSLT-based chunking is being used. + + diff --git a/docbook-xsl-1.76.1/params/refclass.suppress.xml b/docbook-xsl-1.76.1/params/refclass.suppress.xml new file mode 100644 index 0000000..8f9b52a --- /dev/null +++ b/docbook-xsl-1.76.1/params/refclass.suppress.xml @@ -0,0 +1,28 @@ + + +refclass.suppress +boolean + + +refclass.suppress +Suppress display of refclass contents? + + + + + + + +Description + +If the value of refclass.suppress is +non-zero, then display of refclass contents is +suppressed in output. + + + diff --git a/docbook-xsl-1.76.1/params/refentry.date.profile.enabled.xml b/docbook-xsl-1.76.1/params/refentry.date.profile.enabled.xml new file mode 100644 index 0000000..11de660 --- /dev/null +++ b/docbook-xsl-1.76.1/params/refentry.date.profile.enabled.xml @@ -0,0 +1,46 @@ + + +refentry.date.profile.enabled +boolean + + +refentry.date.profile.enabled +Enable refentry "date" profiling? + + + + +0 + + +Description + +If the value of +refentry.date.profile.enabled is non-zero, then +during refentry metadata gathering, the info profile +specified by the customizable +refentry.date.profile parameter is used. + +If instead the value of +refentry.date.profile.enabled is zero (the +default), then "hard coded" logic within the DocBook XSL stylesheets +is used for gathering refentry "date" data. + +If you find that the default refentry +metadata-gathering behavior is causing incorrect "date" data to show +up in your output, then consider setting a non-zero value for +refentry.date.profile.enabled and adjusting the +value of refentry.date.profile to cause correct +data to be gathered. + +Note that the terms "source" and "date" have special meanings in +this context. For details, see the documentation for the +refentry.date.profile parameter. + + + diff --git a/docbook-xsl-1.76.1/params/refentry.date.profile.xml b/docbook-xsl-1.76.1/params/refentry.date.profile.xml new file mode 100644 index 0000000..1220ed0 --- /dev/null +++ b/docbook-xsl-1.76.1/params/refentry.date.profile.xml @@ -0,0 +1,38 @@ + + +refentry.date.profile +string + + +refentry.date.profile +Specifies profile for refentry "date" data + + + + + + (($info[//date])[last()]/date)[1]| + (($info[//pubdate])[last()]/pubdate)[1] + + + + +Description + +The value of refentry.date.profile is a +string representing an XPath expression. It is evaluated at run-time +and used only if refentry.date.profile.enabled +is non-zero. Otherwise, the refentry metadata-gathering +logic "hard coded" into the stylesheets is used. + + The man(7) man page describes this content +as "the date of the last revision". In man pages, it is the content +that is usually displayed in the center footer. + + + diff --git a/docbook-xsl-1.76.1/params/refentry.generate.name.xml b/docbook-xsl-1.76.1/params/refentry.generate.name.xml new file mode 100644 index 0000000..f59e6d5 --- /dev/null +++ b/docbook-xsl-1.76.1/params/refentry.generate.name.xml @@ -0,0 +1,33 @@ + + +refentry.generate.name +boolean + + +refentry.generate.name +Output NAME header before refnames? + + + + + + + + +Description + +If non-zero, a "NAME" section title is output before the list +of refnames. This parameter and +refentry.generate.title are mutually +exclusive. This means that if you change this parameter to zero, you +should set refentry.generate.title to non-zero unless +you want get quite strange output. + + + + diff --git a/docbook-xsl-1.76.1/params/refentry.generate.title.xml b/docbook-xsl-1.76.1/params/refentry.generate.title.xml new file mode 100644 index 0000000..8029b20 --- /dev/null +++ b/docbook-xsl-1.76.1/params/refentry.generate.title.xml @@ -0,0 +1,33 @@ + + +refentry.generate.title +boolean + + +refentry.generate.title +Output title before refnames? + + + + + + + + +Description + +If non-zero, the reference page title or first name is +output before the list of refnames. This parameter and +refentry.generate.name are mutually exclusive. +This means that if you change this parameter to non-zero, you +should set refentry.generate.name to zero unless +you want get quite strange output. + + + + diff --git a/docbook-xsl-1.76.1/params/refentry.manual.fallback.profile.xml b/docbook-xsl-1.76.1/params/refentry.manual.fallback.profile.xml new file mode 100644 index 0000000..6362785 --- /dev/null +++ b/docbook-xsl-1.76.1/params/refentry.manual.fallback.profile.xml @@ -0,0 +1,48 @@ + + +refentry.manual.fallback.profile +string + + +refentry.manual.fallback.profile +Specifies profile of "fallback" for refentry "manual" data + + + + + +refmeta/refmiscinfo[not(@class = 'date')][1]/node() + + + +Description + +The value of +refentry.manual.fallback.profile is a string +representing an XPath expression. It is evaluated at run-time and +used only if no "manual" data can be found by other means (that is, +either using the refentry metadata-gathering logic "hard +coded" in the stylesheets, or the value of +refentry.manual.profile, if it is +enabled). + + +Depending on which XSLT engine you run, either the EXSLT +dyn:evaluate extension function (for xsltproc or +Xalan) or saxon:evaluate extension function (for +Saxon) are used to dynamically evaluate the value of +refentry.manual.fallback.profile at +run-time. If you don't use xsltproc, Saxon, Xalan -- or some other +XSLT engine that supports dyn:evaluate -- you +must manually disable fallback processing by setting an empty value +for the refentry.manual.fallback.profile +parameter. + + + + diff --git a/docbook-xsl-1.76.1/params/refentry.manual.profile.enabled.xml b/docbook-xsl-1.76.1/params/refentry.manual.profile.enabled.xml new file mode 100644 index 0000000..a3b7b54 --- /dev/null +++ b/docbook-xsl-1.76.1/params/refentry.manual.profile.enabled.xml @@ -0,0 +1,47 @@ + + +refentry.manual.profile.enabled +boolean + + +refentry.manual.profile.enabled +Enable refentry "manual" profiling? + + + + +0 + + +Description + +If the value of +refentry.manual.profile.enabled is +non-zero, then during refentry metadata gathering, the info +profile specified by the customizable +refentry.manual.profile parameter is +used. + +If instead the value of +refentry.manual.profile.enabled is zero (the +default), then "hard coded" logic within the DocBook XSL stylesheets +is used for gathering refentry "manual" data. + +If you find that the default refentry +metadata-gathering behavior is causing incorrect "manual" data to show +up in your output, then consider setting a non-zero value for +refentry.manual.profile.enabled and adjusting +the value of refentry.manual.profile to cause +correct data to be gathered. + +Note that the term "manual" has a special meanings in this +context. For details, see the documentation for the +refentry.manual.profile parameter. + + + diff --git a/docbook-xsl-1.76.1/params/refentry.manual.profile.xml b/docbook-xsl-1.76.1/params/refentry.manual.profile.xml new file mode 100644 index 0000000..214b170 --- /dev/null +++ b/docbook-xsl-1.76.1/params/refentry.manual.profile.xml @@ -0,0 +1,72 @@ + + +refentry.manual.profile +string + + +refentry.manual.profile +Specifies profile for refentry "manual" data + + + + + + (($info[//title])[last()]/title)[1]| + ../title/node() + + + + +Description + +The value of refentry.manual.profile is +a string representing an XPath expression. It is evaluated at +run-time and used only if +refentry.manual.profile.enabled is +non-zero. Otherwise, the refentry metadata-gathering logic +"hard coded" into the stylesheets is used. + +In man pages, this content is usually displayed in the middle of +the header of the page. The man(7) man page +describes this as "the title of the manual (e.g., Linux +Programmer's Manual)". Here are some examples from +existing man pages: + + + dpkg utilities + (dpkg-name) + + + User Contributed Perl Documentation + (GET) + + + GNU Development Tools + (ld) + + + Emperor Norton Utilities + (ddate) + + + Debian GNU/Linux manual + (faked) + + + GIMP Manual Pages + (gimp) + + + KDOC Documentation System + (qt2kdoc) + + + + + + diff --git a/docbook-xsl-1.76.1/params/refentry.meta.get.quietly.xml b/docbook-xsl-1.76.1/params/refentry.meta.get.quietly.xml new file mode 100644 index 0000000..0ed29f6 --- /dev/null +++ b/docbook-xsl-1.76.1/params/refentry.meta.get.quietly.xml @@ -0,0 +1,37 @@ + + +refentry.meta.get.quietly +boolean + + +refentry.meta.get.quietly +Suppress notes and warnings when gathering refentry metadata? + + + + + + + + +Description + +If zero (the default), notes and warnings about “missing†markup +are generated during gathering of refentry metadata. If non-zero, the +metadata is gathered “quietly†-- that is, the notes and warnings are +suppressed. + + + If you are processing a large amount of refentry + content, you may be able to speed up processing significantly by + setting a non-zero value for + refentry.meta.get.quietly. + + + + diff --git a/docbook-xsl-1.76.1/params/refentry.pagebreak.xml b/docbook-xsl-1.76.1/params/refentry.pagebreak.xml new file mode 100644 index 0000000..42b8466 --- /dev/null +++ b/docbook-xsl-1.76.1/params/refentry.pagebreak.xml @@ -0,0 +1,33 @@ + + +refentry.pagebreak +boolean + + +refentry.pagebreak +Start each refentry on a new page + + + + + + +Description + +If non-zero (the default), each refentry +element will start on a new page. If zero, a page +break will not be generated between refentry elements. +The exception is when the refentry elements are children of +a part element, in which case the page breaks are always +retained. That is because a part element does not generate +a page-sequence for its children, so each refentry must +start its own page-sequence. + + + + diff --git a/docbook-xsl-1.76.1/params/refentry.separator.xml b/docbook-xsl-1.76.1/params/refentry.separator.xml new file mode 100644 index 0000000..a7eeb84 --- /dev/null +++ b/docbook-xsl-1.76.1/params/refentry.separator.xml @@ -0,0 +1,29 @@ + + +refentry.separator +boolean + + +refentry.separator +Generate a separator between consecutive RefEntry elements? + + + + + + + + +Description + +If true, a separator will be generated between consecutive +reference pages. + + + + diff --git a/docbook-xsl-1.76.1/params/refentry.source.fallback.profile.xml b/docbook-xsl-1.76.1/params/refentry.source.fallback.profile.xml new file mode 100644 index 0000000..1761378 --- /dev/null +++ b/docbook-xsl-1.76.1/params/refentry.source.fallback.profile.xml @@ -0,0 +1,49 @@ + + +refentry.source.fallback.profile +string + + +refentry.source.fallback.profile +Specifies profile of "fallback" for refentry "source" data + + + + + +refmeta/refmiscinfo[not(@class = 'date')][1]/node() + + + +Description + +The value of +refentry.source.fallback.profile is a string +representing an XPath expression. It is evaluated at run-time and used +only if no "source" data can be found by other means (that is, either +using the refentry metadata-gathering logic "hard coded" in +the stylesheets, or the value of the +refentry.source.name.profile and +refentry.version.profile parameters, if those +are enabled). + + +Depending on which XSLT engine you run, either the EXSLT +dyn:evaluate extension function (for xsltproc or +Xalan) or saxon:evaluate extension function (for +Saxon) are used to dynamically evaluate the value of +refentry.source.fallback.profile at +run-time. If you don't use xsltproc, Saxon, Xalan -- or some other +XSLT engine that supports dyn:evaluate -- you +must manually disable fallback processing by setting an empty value +for the refentry.source.fallback.profile +parameter. + + + + diff --git a/docbook-xsl-1.76.1/params/refentry.source.name.profile.enabled.xml b/docbook-xsl-1.76.1/params/refentry.source.name.profile.enabled.xml new file mode 100644 index 0000000..f87ec0f --- /dev/null +++ b/docbook-xsl-1.76.1/params/refentry.source.name.profile.enabled.xml @@ -0,0 +1,48 @@ + + +refentry.source.name.profile.enabled +boolean + + +refentry.source.name.profile.enabled +Enable refentry "source name" profiling? + + + + +0 + + +Description + +If the value of +refentry.source.name.profile.enabled is +non-zero, then during refentry metadata gathering, the info +profile specified by the customizable +refentry.source.name.profile parameter is +used. + +If instead the value of +refentry.source.name.profile.enabled is zero (the +default), then "hard coded" logic within the DocBook XSL stylesheets +is used for gathering refentry "source name" data. + +If you find that the default refentry +metadata-gathering behavior is causing incorrect "source name" data to +show up in your output, then consider setting a non-zero value for +refentry.source.name.profile.enabled and +adjusting the value of +refentry.source.name.profile to cause correct +data to be gathered. + +Note that the terms "source" and "source name" have special +meanings in this context. For details, see the documentation for the +refentry.source.name.profile parameter. + + + diff --git a/docbook-xsl-1.76.1/params/refentry.source.name.profile.xml b/docbook-xsl-1.76.1/params/refentry.source.name.profile.xml new file mode 100644 index 0000000..c9a1012 --- /dev/null +++ b/docbook-xsl-1.76.1/params/refentry.source.name.profile.xml @@ -0,0 +1,89 @@ + + +refentry.source.name.profile +string + + +refentry.source.name.profile +Specifies profile for refentry "source name" data + + + + + + (($info[//productname])[last()]/productname)[1]| + (($info[//corpname])[last()]/corpname)[1]| + (($info[//corpcredit])[last()]/corpcredit)[1]| + (($info[//corpauthor])[last()]/corpauthor)[1]| + (($info[//orgname])[last()]/orgname)[1]| + (($info[//publishername])[last()]/publishername)[1] + + + + +Description + +The value of refentry.source.name.profile +is a string representing an XPath expression. It is evaluated at +run-time and used only if +refentry.source.name.profile.enabled is +non-zero. Otherwise, the refentry metadata-gathering logic +"hard coded" into the stylesheets is used. + +A "source name" is one part of a (potentially) two-part +Name Version +"source" field. In man pages, it is usually displayed in the left +footer of the page. It typically indicates the software system or +product that the item documented in the man page belongs to. The +man(7) man page describes it as "the source of +the command", and provides the following examples: + + + For binaries, use something like: GNU, NET-2, SLS + Distribution, MCC Distribution. + + + For system calls, use the version of the kernel that you + are currently looking at: Linux 0.99.11. + + + For library calls, use the source of the function: GNU, BSD + 4.3, Linux DLL 4.4.1. + + + + +In practice, there are many pages that simply have a Version +number in the "source" field. So, it looks like what we have is a +two-part field, +Name Version, +where: + + + Name + + product name (e.g., BSD) or org. name (e.g., GNU) + + + + Version + + version number + + + +Each part is optional. If the Name is a +product name, then the Version is probably +the version of the product. Or there may be no +Name, in which case, if there is a +Version, it is probably the version +of the item itself, not the product it is part of. Or, if the +Name is an organization name, then there +probably will be no Version. + + diff --git a/docbook-xsl-1.76.1/params/refentry.source.name.suppress.xml b/docbook-xsl-1.76.1/params/refentry.source.name.suppress.xml new file mode 100644 index 0000000..b29127e --- /dev/null +++ b/docbook-xsl-1.76.1/params/refentry.source.name.suppress.xml @@ -0,0 +1,42 @@ + + +refentry.source.name.suppress +boolean + + +refentry.source.name.suppress +Suppress "name" part of refentry "source" contents? + + + + +0 + + +Description + +If the value of +refentry.source.name.suppress is non-zero, then +during refentry metadata gathering, no "source name" data +is added to the refentry "source" contents. Instead (unless +refentry.version.suppress is also non-zero), +only "version" data is added to the "source" contents. + +If you find that the refentry metadata gathering +mechanism is causing unwanted "source name" data to show up in your +output -- for example, in the footer (or possibly header) of a man +page -- then you might consider setting a non-zero value for +refentry.source.name.suppress. + +Note that the terms "source", "source name", and "version" have +special meanings in this context. For details, see the documentation +for the refentry.source.name.profile +parameter. + + + diff --git a/docbook-xsl-1.76.1/params/refentry.title.properties.xml b/docbook-xsl-1.76.1/params/refentry.title.properties.xml new file mode 100644 index 0000000..5bb1f25 --- /dev/null +++ b/docbook-xsl-1.76.1/params/refentry.title.properties.xml @@ -0,0 +1,59 @@ + + +refentry.title.properties +attribute set + + +refentry.title.properties +Title properties for a refentry title + + + + + + + + + 18pt + bold + 1em + false + always + 0.8em + 1.0em + 1.2em + 0.5em + 0.4em + 0.6em + + + + + +Description + +Formatting properties applied to the title generated for the +refnamediv part of output for +refentry when the value of the +refentry.generate.title parameter is +non-zero. The font size is supplied by the appropriate section.levelX.title.properties +attribute-set, computed from the location of the +refentry in the section hierarchy. + + + This parameter has no effect on the the title generated for + the refnamediv part of output for + refentry when the value of the + refentry.generate.name parameter is + non-zero. By default, that title is formatted with the same + properties as the titles for all other first-level children of + refentry. + + + + diff --git a/docbook-xsl-1.76.1/params/refentry.version.profile.enabled.xml b/docbook-xsl-1.76.1/params/refentry.version.profile.enabled.xml new file mode 100644 index 0000000..3b95bbe --- /dev/null +++ b/docbook-xsl-1.76.1/params/refentry.version.profile.enabled.xml @@ -0,0 +1,47 @@ + + +refentry.version.profile.enabled +boolean + + +refentry.version.profile.enabled +Enable refentry "version" profiling? + + + + +0 + + +Description + +If the value of +refentry.version.profile.enabled is +non-zero, then during refentry metadata gathering, the info +profile specified by the customizable +refentry.version.profile parameter is +used. + +If instead the value of +refentry.version.profile.enabled is zero (the +default), then "hard coded" logic within the DocBook XSL stylesheets +is used for gathering refentry "version" data. + +If you find that the default refentry +metadata-gathering behavior is causing incorrect "version" data to show +up in your output, then consider setting a non-zero value for +refentry.version.profile.enabled and adjusting +the value of refentry.version.profile to cause +correct data to be gathered. + +Note that the terms "source" and "version" have special +meanings in this context. For details, see the documentation for the +refentry.version.profile parameter. + + + diff --git a/docbook-xsl-1.76.1/params/refentry.version.profile.xml b/docbook-xsl-1.76.1/params/refentry.version.profile.xml new file mode 100644 index 0000000..ff85825 --- /dev/null +++ b/docbook-xsl-1.76.1/params/refentry.version.profile.xml @@ -0,0 +1,41 @@ + + +refentry.version.profile +string + + +refentry.version.profile +Specifies profile for refentry "version" data + + + + + + (($info[//productnumber])[last()]/productnumber)[1]| + (($info[//edition])[last()]/edition)[1]| + (($info[//releaseinfo])[last()]/releaseinfo)[1] + + + + +Description + +The value of refentry.version.profile is +a string representing an XPath expression. It is evaluated at +run-time and used only if +refentry.version.profile.enabled is +non-zero. Otherwise, the refentry metadata-gathering logic +"hard coded" into the stylesheets is used. + +A "source.name" is one part of a (potentially) two-part +Name Version +"source" field. For more details, see the documentation for the +refentry.source.name.profile parameter. + + + diff --git a/docbook-xsl-1.76.1/params/refentry.version.suppress.xml b/docbook-xsl-1.76.1/params/refentry.version.suppress.xml new file mode 100644 index 0000000..b701ad8 --- /dev/null +++ b/docbook-xsl-1.76.1/params/refentry.version.suppress.xml @@ -0,0 +1,43 @@ + + +refentry.version.suppress +boolean + + +refentry.version.suppress +Suppress "version" part of refentry "source" contents? + + + + +0 + + +Description + +If the value of refentry.version.suppress +is non-zero, then during refentry metadata gathering, no +"version" data is added to the refentry "source" +contents. Instead (unless +refentry.source.name.suppress is also +non-zero), only "source name" data is added to the "source" +contents. + +If you find that the refentry metadata gathering +mechanism is causing unwanted "version" data to show up in your output +-- for example, in the footer (or possibly header) of a man page -- +then you might consider setting a non-zero value for +refentry.version.suppress. + +Note that the terms "source", "source name", and "version" have +special meanings in this context. For details, see the documentation +for the refentry.source.name.profile +parameter. + + + diff --git a/docbook-xsl-1.76.1/params/refentry.xref.manvolnum.xml b/docbook-xsl-1.76.1/params/refentry.xref.manvolnum.xml new file mode 100644 index 0000000..56b93b7 --- /dev/null +++ b/docbook-xsl-1.76.1/params/refentry.xref.manvolnum.xml @@ -0,0 +1,31 @@ + + +refentry.xref.manvolnum +boolean + + +refentry.xref.manvolnum +Output manvolnum as part of +refentry cross-reference? + + + + + + + + +Description + +if non-zero, the manvolnum is used when cross-referencing +refentrys, either with xref +or citerefentry. + + + + diff --git a/docbook-xsl-1.76.1/params/reference.autolabel.xml b/docbook-xsl-1.76.1/params/reference.autolabel.xml new file mode 100644 index 0000000..1a9dc5b --- /dev/null +++ b/docbook-xsl-1.76.1/params/reference.autolabel.xml @@ -0,0 +1,67 @@ + + +reference.autolabel +list +0none +11,2,3... +AA,B,C... +aa,b,c... +ii,ii,iii... +II,II,III... + + +reference.autolabel +Specifies the labeling format for Reference titles + + + + I + + +Description +If non-zero, references will be numbered using the parameter + value as the number format if the value matches one of the + following: + + + + 1 or arabic + + Arabic numeration (1, 2, 3 ...). + + + + A or upperalpha + + Uppercase letter numeration (A, B, C ...). + + + + a or loweralpha + + Lowercase letter numeration (a, b, c ...). + + + + I or upperroman + + Uppercase roman numeration (I, II, III ...). + + + + i or lowerroman + + Lowercase roman letter numeration (i, ii, iii ...). + + + +Any non-zero value other than the above will generate +the default number format (upperroman). + + + diff --git a/docbook-xsl-1.76.1/params/region.after.extent.xml b/docbook-xsl-1.76.1/params/region.after.extent.xml new file mode 100644 index 0000000..b29abba --- /dev/null +++ b/docbook-xsl-1.76.1/params/region.after.extent.xml @@ -0,0 +1,29 @@ + + +region.after.extent +length + + +region.after.extent +Specifies the height of the footer. + + + + +0.4in + + + +Description + +The region after extent is the height of the area where footers +are printed. + + + + diff --git a/docbook-xsl-1.76.1/params/region.before.extent.xml b/docbook-xsl-1.76.1/params/region.before.extent.xml new file mode 100644 index 0000000..c62cc40 --- /dev/null +++ b/docbook-xsl-1.76.1/params/region.before.extent.xml @@ -0,0 +1,29 @@ + + +region.before.extent +length + + +region.before.extent +Specifies the height of the header + + + + +0.4in + + + +Description + +The region before extent is the height of the area where headers +are printed. + + + + diff --git a/docbook-xsl-1.76.1/params/revhistory.table.cell.properties.xml b/docbook-xsl-1.76.1/params/revhistory.table.cell.properties.xml new file mode 100644 index 0000000..49c4037 --- /dev/null +++ b/docbook-xsl-1.76.1/params/revhistory.table.cell.properties.xml @@ -0,0 +1,28 @@ + + +revhistory.table.cell.properties +attribute set + + +revhistory.table.cell.properties +The properties of table cells used for formatting revhistory + + + + + + + + + +Description + +This property set defines appearance of individual cells in revhistory table. + + + diff --git a/docbook-xsl-1.76.1/params/revhistory.table.properties.xml b/docbook-xsl-1.76.1/params/revhistory.table.properties.xml new file mode 100644 index 0000000..43116d0 --- /dev/null +++ b/docbook-xsl-1.76.1/params/revhistory.table.properties.xml @@ -0,0 +1,28 @@ + + +revhistory.table.properties +attribute set + + +revhistory.table.properties +The properties of table used for formatting revhistory + + + + + + + + + +Description + +This property set defines appearance of revhistory table. + + + diff --git a/docbook-xsl-1.76.1/params/revhistory.title.properties.xml b/docbook-xsl-1.76.1/params/revhistory.title.properties.xml new file mode 100644 index 0000000..f97d646 --- /dev/null +++ b/docbook-xsl-1.76.1/params/revhistory.title.properties.xml @@ -0,0 +1,28 @@ + + +revhistory.title.properties +attribute set + + +revhistory.title.properties +The properties of revhistory title + + + + + + + + + +Description + +This property set defines appearance of revhistory title. + + + diff --git a/docbook-xsl-1.76.1/params/root.filename.xml b/docbook-xsl-1.76.1/params/root.filename.xml new file mode 100644 index 0000000..ae5ca5b --- /dev/null +++ b/docbook-xsl-1.76.1/params/root.filename.xml @@ -0,0 +1,29 @@ + + +root.filename +uri + + +root.filename +Identifies the name of the root HTML file when chunking + + + + +index + + + +Description + +The root.filename is the base filename for +the chunk created for the root of each document processed. + + + + diff --git a/docbook-xsl-1.76.1/params/root.properties.xml b/docbook-xsl-1.76.1/params/root.properties.xml new file mode 100644 index 0000000..26c9951 --- /dev/null +++ b/docbook-xsl-1.76.1/params/root.properties.xml @@ -0,0 +1,46 @@ + + +root.properties +attribute set + + +root.properties +The properties of the fo:root element + + + + + + + + + + + + + + + + + + character-by-character + disregard-shifts + + + + + + + +Description + +This property set is used on the fo:root element of +an FO file. It defines a set of default, global parameters. + + + diff --git a/docbook-xsl-1.76.1/params/rootid.xml b/docbook-xsl-1.76.1/params/rootid.xml new file mode 100644 index 0000000..a0715af --- /dev/null +++ b/docbook-xsl-1.76.1/params/rootid.xml @@ -0,0 +1,33 @@ + + +rootid +string + + +rootid +Specify the root element to format + + + + + + + +Description + +If rootid is not empty, it must be the +value of an ID that occurs in the document being formatted. The entire +document will be loaded and parsed, but formatting will begin at the +element identified, rather than at the root. For example, this allows +you to process only chapter 4 of a book. +Because the entire document is available to the processor, automatic +numbering, cross references, and other dependencies are correctly +resolved. + + + diff --git a/docbook-xsl-1.76.1/params/runinhead.default.title.end.punct.xml b/docbook-xsl-1.76.1/params/runinhead.default.title.end.punct.xml new file mode 100644 index 0000000..d151e8b --- /dev/null +++ b/docbook-xsl-1.76.1/params/runinhead.default.title.end.punct.xml @@ -0,0 +1,27 @@ + + +runinhead.default.title.end.punct +string + + +runinhead.default.title.end.punct +Default punctuation character on a run-in-head + + + +. + + + +Description + +If non-zero, For a formalpara, use the specified +string as the separator between the title and following text. The period is the default value. + + + diff --git a/docbook-xsl-1.76.1/params/runinhead.title.end.punct.xml b/docbook-xsl-1.76.1/params/runinhead.title.end.punct.xml new file mode 100644 index 0000000..025aeed --- /dev/null +++ b/docbook-xsl-1.76.1/params/runinhead.title.end.punct.xml @@ -0,0 +1,32 @@ + + +runinhead.title.end.punct +string + + +runinhead.title.end.punct +Characters that count as punctuation on a run-in-head + + + + +.!?: + + + +Description + +Specify which characters are to be counted as punctuation. These +characters are checked for a match with the last character of the +title. If no match is found, the +runinhead.default.title.end.punct contents are +inserted. This is to avoid duplicated punctuation in the output. + + + + diff --git a/docbook-xsl-1.76.1/params/running.foot.properties.xml b/docbook-xsl-1.76.1/params/running.foot.properties.xml new file mode 100644 index 0000000..ee98592 --- /dev/null +++ b/docbook-xsl-1.76.1/params/running.foot.properties.xml @@ -0,0 +1,34 @@ + + +running.foot.properties +attribute set + + +running.foot.properties +Specifies properties for running foot on each slide + + + + + + + + + 14pt + #9F9F9F + + + + +Description + +This parameter specifies properties that are applied to the +running foot area of each slide. + + + diff --git a/docbook-xsl-1.76.1/params/sans.font.family.xml b/docbook-xsl-1.76.1/params/sans.font.family.xml new file mode 100644 index 0000000..d569b12 --- /dev/null +++ b/docbook-xsl-1.76.1/params/sans.font.family.xml @@ -0,0 +1,29 @@ + + +sans.font.family +string + + +sans.font.family +The default sans-serif font family + + + + +sans-serif + + + +Description + +The default sans-serif font family. At the present, this isn't +actually used by the stylesheets. + + + + diff --git a/docbook-xsl-1.76.1/params/saxon.callouts.xml b/docbook-xsl-1.76.1/params/saxon.callouts.xml new file mode 100644 index 0000000..e08fcdb --- /dev/null +++ b/docbook-xsl-1.76.1/params/saxon.callouts.xml @@ -0,0 +1,30 @@ + + +saxon.callouts +boolean + + +saxon.callouts +Enable the callout extension + + + + + + + + +Description + +The callouts extension processes areaset +elements in ProgramListingCO and other text-based +callout elements. + + + + diff --git a/docbook-xsl-1.76.1/params/saxon.character.representation.xml b/docbook-xsl-1.76.1/params/saxon.character.representation.xml new file mode 100644 index 0000000..bd8bcac --- /dev/null +++ b/docbook-xsl-1.76.1/params/saxon.character.representation.xml @@ -0,0 +1,38 @@ + + +saxon.character.representation +string + + +saxon.character.representation +Saxon character representation used in generated HTML pages + + + + + + +Description + +This parameter has effect only when Saxon 6 is used (version 6.4.2 or later). +It sets the character representation in files generated by the chunking stylesheets. +If you want to suppress entity references for characters with direct representations in +chunker.output.encoding, set the parameter value to native. + + + For more information, see Saxon output character representation. + + +This parameter is documented here, but the declaration is actually +in the chunker.xsl stylesheet module. + + + + + diff --git a/docbook-xsl-1.76.1/params/saxon.linenumbering.xml b/docbook-xsl-1.76.1/params/saxon.linenumbering.xml new file mode 100644 index 0000000..451028b --- /dev/null +++ b/docbook-xsl-1.76.1/params/saxon.linenumbering.xml @@ -0,0 +1,32 @@ + + +saxon.linenumbering +boolean + + +saxon.linenumbering +Enable the line numbering extension + + + + + + + + +Description + +If non-zero, verbatim environments (elements that have the +format='linespecific' notation attribute: address, +literallayout, programlisting, +screen, synopsis) that specify line numbering +will have line numbers. + + + + diff --git a/docbook-xsl-1.76.1/params/saxon.tablecolumns.xml b/docbook-xsl-1.76.1/params/saxon.tablecolumns.xml new file mode 100644 index 0000000..e9d9674 --- /dev/null +++ b/docbook-xsl-1.76.1/params/saxon.tablecolumns.xml @@ -0,0 +1,30 @@ + + +saxon.tablecolumns +boolean + + +saxon.tablecolumns +Enable the table columns extension function + + + + + + + + +Description + +The table columns extension function adjusts the widths of table +columns in the HTML result to more accurately reflect the specifications +in the CALS table. + + + + diff --git a/docbook-xsl-1.76.1/params/script.dir.xml b/docbook-xsl-1.76.1/params/script.dir.xml new file mode 100644 index 0000000..9cb92af --- /dev/null +++ b/docbook-xsl-1.76.1/params/script.dir.xml @@ -0,0 +1,33 @@ + + +script.dir +uri + + +script.dir +Script directory + + + + + + + + +Description + +Identifies the JavaScript source directory for the slides. +This parameter can be set in the source +document with the <?dbhtml?> pseudo-attribute +script-dir. + +If non-empty, this value is prepended to each of the JavaScript files. + + + + diff --git a/docbook-xsl-1.76.1/params/section.autolabel.max.depth.xml b/docbook-xsl-1.76.1/params/section.autolabel.max.depth.xml new file mode 100644 index 0000000..e588e00 --- /dev/null +++ b/docbook-xsl-1.76.1/params/section.autolabel.max.depth.xml @@ -0,0 +1,32 @@ + + +section.autolabel.max.depth +integer + + +section.autolabel.max.depth +The deepest level of sections that are numbered. + + + + +8 + + + +Description + +When section numbering is turned on by the +section.autolabel parameter, then this +parameter controls the depth of section nesting that is +numbered. Sections nested to a level deeper than this value will not +be numbered. + + + + diff --git a/docbook-xsl-1.76.1/params/section.autolabel.xml b/docbook-xsl-1.76.1/params/section.autolabel.xml new file mode 100644 index 0000000..85eede6 --- /dev/null +++ b/docbook-xsl-1.76.1/params/section.autolabel.xml @@ -0,0 +1,26 @@ + + +section.autolabel +boolean + + +section.autolabel +Are sections enumerated? + + + + + + +Description + +If true (non-zero), unlabeled sections will be enumerated. + + + + diff --git a/docbook-xsl-1.76.1/params/section.container.element.xml b/docbook-xsl-1.76.1/params/section.container.element.xml new file mode 100644 index 0000000..a6c4059 --- /dev/null +++ b/docbook-xsl-1.76.1/params/section.container.element.xml @@ -0,0 +1,62 @@ + + +section.container.element +list +block +wrapper + + +section.container.element +Select XSL-FO element name to contain sections + + + + +block + + + +Description + +Selects the element name for outer container of +each section. The choices are block (default) +or wrapper. +The fo: namespace prefix is added +by the stylesheet to form the full element name. + + +This element receives the section id +attribute and the appropriate section level attribute-set. + + +Changing this parameter to wrapper +is only necessary when producing multi-column output +that contains page-wide spans. Using fo:wrapper +avoids the nesting of fo:block +elements that prevents spans from working (the standard says +a span must be on a block that is a direct child of +fo:flow). + + +If set to wrapper, the +section attribute-sets only support properties +that are inheritable. That's because there is no +block to apply them to. Properties such as +font-family are inheritable, but properties such as +border are not. + + +Only some XSL-FO processors need to use this parameter. +The Antenna House processor, for example, will handle +spans in nested blocks without changing the element name. +The RenderX XEP product and FOP follow the XSL-FO standard +and need to use wrapper. + + + + diff --git a/docbook-xsl-1.76.1/params/section.label.includes.component.label.xml b/docbook-xsl-1.76.1/params/section.label.includes.component.label.xml new file mode 100644 index 0000000..505d472 --- /dev/null +++ b/docbook-xsl-1.76.1/params/section.label.includes.component.label.xml @@ -0,0 +1,27 @@ + + +section.label.includes.component.label +boolean + + +section.label.includes.component.label +Do section labels include the component label? + + + + + + +Description + +If non-zero, section labels are prefixed with the label of the +component that contains them. + + + + diff --git a/docbook-xsl-1.76.1/params/section.level1.properties.xml b/docbook-xsl-1.76.1/params/section.level1.properties.xml new file mode 100644 index 0000000..4aa70b0 --- /dev/null +++ b/docbook-xsl-1.76.1/params/section.level1.properties.xml @@ -0,0 +1,43 @@ + + +section.level1.properties +attribute set + + +section.level1.properties +Properties for level-1 sections + + + + + + + + + +Description + +The properties that apply to the containing +block of a level-1 section, and therefore apply to +the whole section. This includes sect1 +elements and section elements at level 1. + + +For example, you could start each level-1 section on +a new page by using: +<xsl:attribute-set name="section.level1.properties"> + <xsl:attribute name="break-before">page</xsl:attribute> +</xsl:attribute-set> + + +This attribute set inherits attributes from the +general section.properties attribute set. + + + + diff --git a/docbook-xsl-1.76.1/params/section.level2.properties.xml b/docbook-xsl-1.76.1/params/section.level2.properties.xml new file mode 100644 index 0000000..5dd76e9 --- /dev/null +++ b/docbook-xsl-1.76.1/params/section.level2.properties.xml @@ -0,0 +1,43 @@ + + +section.level2.properties +attribute set + + +section.level2.properties +Properties for level-2 sections + + + + + + + + + +Description + +The properties that apply to the containing +block of a level-2 section, and therefore apply to +the whole section. This includes sect2 +elements and section elements at level 2. + + +For example, you could start each level-2 section on +a new page by using: +<xsl:attribute-set name="section.level2.properties"> + <xsl:attribute name="break-before">page</xsl:attribute> +</xsl:attribute-set> + + +This attribute set inherits attributes from the +general section.properties attribute set. + + + + diff --git a/docbook-xsl-1.76.1/params/section.level3.properties.xml b/docbook-xsl-1.76.1/params/section.level3.properties.xml new file mode 100644 index 0000000..0bcd696 --- /dev/null +++ b/docbook-xsl-1.76.1/params/section.level3.properties.xml @@ -0,0 +1,43 @@ + + +section.level3.properties +attribute set + + +section.level3.properties +Properties for level-3 sections + + + + + + + + + +Description + +The properties that apply to the containing +block of a level-3 section, and therefore apply to +the whole section. This includes sect3 +elements and section elements at level 3. + + +For example, you could start each level-3 section on +a new page by using: +<xsl:attribute-set name="section.level3.properties"> + <xsl:attribute name="break-before">page</xsl:attribute> +</xsl:attribute-set> + + +This attribute set inherits attributes from the +general section.properties attribute set. + + + + diff --git a/docbook-xsl-1.76.1/params/section.level4.properties.xml b/docbook-xsl-1.76.1/params/section.level4.properties.xml new file mode 100644 index 0000000..1408851 --- /dev/null +++ b/docbook-xsl-1.76.1/params/section.level4.properties.xml @@ -0,0 +1,43 @@ + + +section.level4.properties +attribute set + + +section.level4.properties +Properties for level-4 sections + + + + + + + + + +Description + +The properties that apply to the containing +block of a level-4 section, and therefore apply to +the whole section. This includes sect4 +elements and section elements at level 4. + + +For example, you could start each level-4 section on +a new page by using: +<xsl:attribute-set name="section.level4.properties"> + <xsl:attribute name="break-before">page</xsl:attribute> +</xsl:attribute-set> + + +This attribute set inherits attributes from the +general section.properties attribute set. + + + + diff --git a/docbook-xsl-1.76.1/params/section.level5.properties.xml b/docbook-xsl-1.76.1/params/section.level5.properties.xml new file mode 100644 index 0000000..9093b94 --- /dev/null +++ b/docbook-xsl-1.76.1/params/section.level5.properties.xml @@ -0,0 +1,43 @@ + + +section.level5.properties +attribute set + + +section.level5.properties +Properties for level-5 sections + + + + + + + + + +Description + +The properties that apply to the containing +block of a level-5 section, and therefore apply to +the whole section. This includes sect5 +elements and section elements at level 5. + + +For example, you could start each level-5 section on +a new page by using: +<xsl:attribute-set name="section.level5.properties"> + <xsl:attribute name="break-before">page</xsl:attribute> +</xsl:attribute-set> + + +This attribute set inherits attributes from the +general section.properties attribute set. + + + + diff --git a/docbook-xsl-1.76.1/params/section.level6.properties.xml b/docbook-xsl-1.76.1/params/section.level6.properties.xml new file mode 100644 index 0000000..dda7937 --- /dev/null +++ b/docbook-xsl-1.76.1/params/section.level6.properties.xml @@ -0,0 +1,43 @@ + + +section.level6.properties +attribute set + + +section.level6.properties +Properties for level-6 sections + + + + + + + + + +Description + +The properties that apply to the containing +block of a level 6 or lower section, and therefore apply to +the whole section. This includes +section elements at level 6 and lower. + + +For example, you could start each level-6 section on +a new page by using: +<xsl:attribute-set name="section.level6.properties"> + <xsl:attribute name="break-before">page</xsl:attribute> +</xsl:attribute-set> + + +This attribute set inherits attributes from the +general section.properties attribute set. + + + + diff --git a/docbook-xsl-1.76.1/params/section.properties.xml b/docbook-xsl-1.76.1/params/section.properties.xml new file mode 100644 index 0000000..06acc31 --- /dev/null +++ b/docbook-xsl-1.76.1/params/section.properties.xml @@ -0,0 +1,35 @@ + + +section.properties +attribute set + + +section.properties +Properties for all section levels + + + + + + + + + +Description + +The properties that apply to the containing +block of all section levels, and therefore apply to +the whole section. +This attribute set is inherited by the +more specific attribute sets such as +section.level1.properties. +The default is empty. + + + + diff --git a/docbook-xsl-1.76.1/params/section.title.level1.properties.xml b/docbook-xsl-1.76.1/params/section.title.level1.properties.xml new file mode 100644 index 0000000..91c63ed --- /dev/null +++ b/docbook-xsl-1.76.1/params/section.title.level1.properties.xml @@ -0,0 +1,32 @@ + + +section.title.level1.properties +attribute set + + +section.title.level1.properties +Properties for level-1 section titles + + + + + + + + pt + + + + + +Description + +The properties of level-1 section titles. + + + diff --git a/docbook-xsl-1.76.1/params/section.title.level2.properties.xml b/docbook-xsl-1.76.1/params/section.title.level2.properties.xml new file mode 100644 index 0000000..a25648a --- /dev/null +++ b/docbook-xsl-1.76.1/params/section.title.level2.properties.xml @@ -0,0 +1,33 @@ + + + +section.title.level2.properties +attribute set + + +section.title.level2.properties +Properties for level-2 section titles + + + + + + + + pt + + + + + +Description + +The properties of level-2 section titles. + + + diff --git a/docbook-xsl-1.76.1/params/section.title.level3.properties.xml b/docbook-xsl-1.76.1/params/section.title.level3.properties.xml new file mode 100644 index 0000000..a009a6e --- /dev/null +++ b/docbook-xsl-1.76.1/params/section.title.level3.properties.xml @@ -0,0 +1,32 @@ + + +section.title.level3.properties +attribute set + + +section.title.level3.properties +Properties for level-3 section titles + + + + + + + + pt + + + + + +Description + +The properties of level-3 section titles. + + + diff --git a/docbook-xsl-1.76.1/params/section.title.level4.properties.xml b/docbook-xsl-1.76.1/params/section.title.level4.properties.xml new file mode 100644 index 0000000..00d4398 --- /dev/null +++ b/docbook-xsl-1.76.1/params/section.title.level4.properties.xml @@ -0,0 +1,32 @@ + + +section.title.level4.properties +attribute set + + +section.title.level4.properties +Properties for level-4 section titles + + + + + + + + pt + + + + + +Description + +The properties of level-4 section titles. + + + diff --git a/docbook-xsl-1.76.1/params/section.title.level5.properties.xml b/docbook-xsl-1.76.1/params/section.title.level5.properties.xml new file mode 100644 index 0000000..c25b5ef --- /dev/null +++ b/docbook-xsl-1.76.1/params/section.title.level5.properties.xml @@ -0,0 +1,32 @@ + + +section.title.level5.properties +attribute set + + +section.title.level5.properties +Properties for level-5 section titles + + + + + + + + pt + + + + + +Description + +The properties of level-5 section titles. + + + diff --git a/docbook-xsl-1.76.1/params/section.title.level6.properties.xml b/docbook-xsl-1.76.1/params/section.title.level6.properties.xml new file mode 100644 index 0000000..a2a0feb --- /dev/null +++ b/docbook-xsl-1.76.1/params/section.title.level6.properties.xml @@ -0,0 +1,33 @@ + + +section.title.level6.properties +attribute set + + +section.title.level6.properties +Properties for level-6 section titles + + + + + + + + pt + + + + + +Description + +The properties of level-6 section titles. This property set is actually +used for all titles below level 5. + + + diff --git a/docbook-xsl-1.76.1/params/section.title.properties.xml b/docbook-xsl-1.76.1/params/section.title.properties.xml new file mode 100644 index 0000000..ab849af --- /dev/null +++ b/docbook-xsl-1.76.1/params/section.title.properties.xml @@ -0,0 +1,39 @@ + + +section.title.properties +attribute set + + +section.title.properties +Properties for section titles + + + + + + + + + bold + + always + 0.8em + 1.0em + 1.2em + start + + + + + +Description + +The properties common to all section titles. + + + diff --git a/docbook-xsl-1.76.1/params/segmentedlist.as.table.xml b/docbook-xsl-1.76.1/params/segmentedlist.as.table.xml new file mode 100644 index 0000000..fb2c236 --- /dev/null +++ b/docbook-xsl-1.76.1/params/segmentedlist.as.table.xml @@ -0,0 +1,28 @@ + + +segmentedlist.as.table +boolean + + +segmentedlist.as.table +Format segmented lists as tables? + + + + + + + + +Description + +If non-zero, segmentedlists will be formatted as +tables. + + + diff --git a/docbook-xsl-1.76.1/params/sequential.links.xml b/docbook-xsl-1.76.1/params/sequential.links.xml new file mode 100644 index 0000000..293827d --- /dev/null +++ b/docbook-xsl-1.76.1/params/sequential.links.xml @@ -0,0 +1,25 @@ + + +sequential.links +boolean + + +sequential.links +Make sequentional links? + + + + + + + + +Description +FIXME + + diff --git a/docbook-xsl-1.76.1/params/shade.verbatim.style.xml b/docbook-xsl-1.76.1/params/shade.verbatim.style.xml new file mode 100644 index 0000000..0907806 --- /dev/null +++ b/docbook-xsl-1.76.1/params/shade.verbatim.style.xml @@ -0,0 +1,36 @@ + + +shade.verbatim.style +attribute set + + +shade.verbatim.style +Properties that specify the style of shaded verbatim listings + + + + + + 0 + #E0E0E0 + + + #E0E0E0 + + + + +Description + +Properties that specify the style of shaded verbatim listings. The +parameters specified (the border and background color) are added to +the styling of the xsl-fo output. A border might be specified as "thin +black solid" for example. See xsl-fo + + + diff --git a/docbook-xsl-1.76.1/params/shade.verbatim.xml b/docbook-xsl-1.76.1/params/shade.verbatim.xml new file mode 100644 index 0000000..82a7216 --- /dev/null +++ b/docbook-xsl-1.76.1/params/shade.verbatim.xml @@ -0,0 +1,30 @@ + + +shade.verbatim +boolean + + +shade.verbatim +Should verbatim environments be shaded? + + + + + + +Description + +In the FO stylesheet, if this parameter is non-zero then the +shade.verbatim.style properties will be applied +to verbatim environments. + +In the HTML stylesheet, this parameter is now deprecated. Use +CSS instead. + + + diff --git a/docbook-xsl-1.76.1/params/show.comments.xml b/docbook-xsl-1.76.1/params/show.comments.xml new file mode 100644 index 0000000..ac7bc24 --- /dev/null +++ b/docbook-xsl-1.76.1/params/show.comments.xml @@ -0,0 +1,32 @@ + + +show.comments +boolean + + +show.comments +Display remark elements? + + + + + + + + +Description + +If non-zero, comments will be displayed, otherwise they +are suppressed. Comments here refers to the remark element +(which was called comment prior to DocBook +4.0), not XML comments (<-- like this -->) which are +unavailable. + + + + diff --git a/docbook-xsl-1.76.1/params/show.foil.number.xml b/docbook-xsl-1.76.1/params/show.foil.number.xml new file mode 100644 index 0000000..627c6a7 --- /dev/null +++ b/docbook-xsl-1.76.1/params/show.foil.number.xml @@ -0,0 +1,28 @@ + + +show.foil.number +boolean + + +show.foil.number +Show foil number on each foil? + + + + + + + + +Description + +If non-zero, on each slide there will be its number. Currently +not supported in all output formats. + + + diff --git a/docbook-xsl-1.76.1/params/show.revisionflag.xml b/docbook-xsl-1.76.1/params/show.revisionflag.xml new file mode 100644 index 0000000..c589b01 --- /dev/null +++ b/docbook-xsl-1.76.1/params/show.revisionflag.xml @@ -0,0 +1,42 @@ + + +show.revisionflag +boolean + + +show.revisionflag +Enable decoration of elements that have a revisionflag + + + + + + + + +Description + + +If show.revisionflag is turned on, then the stylesheets +may produce additional markup designed to allow a CSS stylesheet to +highlight elements that have specific revisionflag settings. + +The markup inserted will be usually be either a <span> or +<div> with an appropriate class +attribute. (The value of the class attribute will be the same as the +value of the revisionflag attribute). In some contexts, for example +tables, where extra markup would be structurally illegal, the class +attribute will be added to the appropriate container element. + +In general, the stylesheets only test for revisionflag in contexts +where an importing stylesheet would have to redefine whole templates. +Most of the revisionflag processing is expected to be done by another +stylesheet, for example changebars.xsl. + + + diff --git a/docbook-xsl-1.76.1/params/showtoc.image.xml b/docbook-xsl-1.76.1/params/showtoc.image.xml new file mode 100644 index 0000000..7b1fca3 --- /dev/null +++ b/docbook-xsl-1.76.1/params/showtoc.image.xml @@ -0,0 +1,29 @@ + + +showtoc.image +filename + + +showtoc.image +Show ToC image + + + + +showtoc.gif + + + +Description + +Specifies the filename of the show ToC image. This is used +when the ToC hide/show parameter is +enabled. + + + diff --git a/docbook-xsl-1.76.1/params/side.float.properties.xml b/docbook-xsl-1.76.1/params/side.float.properties.xml new file mode 100644 index 0000000..0a6d904 --- /dev/null +++ b/docbook-xsl-1.76.1/params/side.float.properties.xml @@ -0,0 +1,50 @@ + + +side.float.properties +attribute set + + +side.float.properties +Attribute set for side float container properties + + + + + + 2in + 4pt + 4pt + 2pt + 2pt + 0pt + 0pt + start + + + + +Description + +Properties that are applied to the +fo:block-container inside of +a side float that is generated by the template named +floater. +That template generates a side float +when the side.float.type is set to one +of the values for a side float. + +If you do only left or +start side floats, you may want to set the +padding-start attribute to zero. +If you do only right or +end side floats, you may want to set the +padding-end attribute to zero. + + + + diff --git a/docbook-xsl-1.76.1/params/sidebar.float.type.xml b/docbook-xsl-1.76.1/params/sidebar.float.type.xml new file mode 100644 index 0000000..8c6a286 --- /dev/null +++ b/docbook-xsl-1.76.1/params/sidebar.float.type.xml @@ -0,0 +1,90 @@ + + +sidebar.float.type +list +none +before +left +start +right +end +inside +outside + + +sidebar.float.type +Select type of float for sidebar elements + + + + +none + + + +Description + +Selects the type of float for sidebar elements. + + + +If sidebar.float.type is +none, then +no float is used. + + + +If sidebar.float.type is +before, then +the float appears at the top of the page. On some processors, +that may be the next page rather than the current page. + + + + +If sidebar.float.type is +left, +then a left side float is used. + + + + +If sidebar.float.type is +start, +then when the text direction is left-to-right a left side float is used. +When the text direction is right-to-left, a right side float is used. + + + + +If sidebar.float.type is +right, +then a right side float is used. + + + + +If sidebar.float.type is +end, +then when the text direction is left-to-right a right side float is used. +When the text direction is right-to-left, a left side float is used. + + + + +If your XSL-FO processor supports floats positioned on the +inside or +outside +of double-sided pages, then you have those two +options for side floats as well. + + + + + + diff --git a/docbook-xsl-1.76.1/params/sidebar.float.width.xml b/docbook-xsl-1.76.1/params/sidebar.float.width.xml new file mode 100644 index 0000000..cb989e4 --- /dev/null +++ b/docbook-xsl-1.76.1/params/sidebar.float.width.xml @@ -0,0 +1,35 @@ + + +sidebar.float.width +length + + +sidebar.float.width +Set the default width for sidebars + + + + +1in + + + +Description + +Sets the default width for sidebars when used as a side float. +The width determines the degree to which the sidebar block intrudes into +the text area. + +If sidebar.float.type is +before or +none, then +this parameter is ignored. + + + + diff --git a/docbook-xsl-1.76.1/params/sidebar.properties.xml b/docbook-xsl-1.76.1/params/sidebar.properties.xml new file mode 100644 index 0000000..fc98ac0 --- /dev/null +++ b/docbook-xsl-1.76.1/params/sidebar.properties.xml @@ -0,0 +1,42 @@ + + +sidebar.properties +attribute set + + +sidebar.properties +Attribute set for sidebar properties + + + + + + solid + 1pt + black + #DDDDDD + 12pt + 12pt + 6pt + 6pt + 0pt + 0pt + + + + + +Description + +The styling for sidebars. + + + diff --git a/docbook-xsl-1.76.1/params/sidebar.title.properties.xml b/docbook-xsl-1.76.1/params/sidebar.title.properties.xml new file mode 100644 index 0000000..f1b1d51 --- /dev/null +++ b/docbook-xsl-1.76.1/params/sidebar.title.properties.xml @@ -0,0 +1,32 @@ + + +sidebar.title.properties +attribute set + + +sidebar.title.properties +Attribute set for sidebar titles + + + + + + bold + false + start + always + + + + +Description + +The styling for sidebars titles. + + + diff --git a/docbook-xsl-1.76.1/params/simplesect.in.toc.xml b/docbook-xsl-1.76.1/params/simplesect.in.toc.xml new file mode 100644 index 0000000..9bc3ab5 --- /dev/null +++ b/docbook-xsl-1.76.1/params/simplesect.in.toc.xml @@ -0,0 +1,26 @@ + + +simplesect.in.toc +boolean + + +simplesect.in.toc +Should simplesect elements appear in the TOC? + + + + + + +Description + +If non-zero, simplesects will be included in the TOC. + + + + diff --git a/docbook-xsl-1.76.1/params/slide.font.family.xml b/docbook-xsl-1.76.1/params/slide.font.family.xml new file mode 100644 index 0000000..e1c7541 --- /dev/null +++ b/docbook-xsl-1.76.1/params/slide.font.family.xml @@ -0,0 +1,31 @@ + + +slide.font.family +list +open +serif +sans-serif +monospace + + +slide.font.family +Specifies font family to use for slide bodies + + + + +Helvetica + + + +Description + +Specifies the font family to use for slides bodies. + + + diff --git a/docbook-xsl-1.76.1/params/slide.title.font.family.xml b/docbook-xsl-1.76.1/params/slide.title.font.family.xml new file mode 100644 index 0000000..a5a3a88 --- /dev/null +++ b/docbook-xsl-1.76.1/params/slide.title.font.family.xml @@ -0,0 +1,31 @@ + + +slide.title.font.family +list +open +serif +sans-serif +monospace + + +slide.title.font.family +Specifies font family to use for slide titles + + + + +Helvetica + + + +Description + +Specifies the font family to use for slides titles. + + + diff --git a/docbook-xsl-1.76.1/params/slides.js.xml b/docbook-xsl-1.76.1/params/slides.js.xml new file mode 100644 index 0000000..90fffae --- /dev/null +++ b/docbook-xsl-1.76.1/params/slides.js.xml @@ -0,0 +1,28 @@ + + +slides.js +filename + + +slides.js +Slides overlay file + + + + +slides.js + + + +Description + +Specifies the filename of the slides JavaScript file. It's unlikely +that you will ever need to change this parameter. + + + diff --git a/docbook-xsl-1.76.1/params/slides.properties.xml b/docbook-xsl-1.76.1/params/slides.properties.xml new file mode 100644 index 0000000..daca82c --- /dev/null +++ b/docbook-xsl-1.76.1/params/slides.properties.xml @@ -0,0 +1,31 @@ + + +slides.properties +attribute set + + +slides.properties +Specifies properties for all slides + + + + + + + + + + + + +Description + +This parameter specifies properties that are applied to all slides. + + + diff --git a/docbook-xsl-1.76.1/params/spacing.paras.xml b/docbook-xsl-1.76.1/params/spacing.paras.xml new file mode 100644 index 0000000..2f2323a --- /dev/null +++ b/docbook-xsl-1.76.1/params/spacing.paras.xml @@ -0,0 +1,30 @@ + + +spacing.paras +boolean + + +spacing.paras +Insert additional <p> elements for spacing? + + + + + + + + +Description + +When non-zero, additional, empty paragraphs are inserted in +several contexts (for example, around informal figures), to create a +more pleasing visual appearance in many browsers. + + + + diff --git a/docbook-xsl-1.76.1/params/speakernote.properties.xml b/docbook-xsl-1.76.1/params/speakernote.properties.xml new file mode 100644 index 0000000..089115a --- /dev/null +++ b/docbook-xsl-1.76.1/params/speakernote.properties.xml @@ -0,0 +1,32 @@ + + +speakernote.properties +attribute set + + +speakernote.properties +Specifies properties for all speakernotes + + + + + + Times Roman + italic + 12pt + normal + + + + +Description + +This parameter specifies properties that are applied to all speakernotes. + + + diff --git a/docbook-xsl-1.76.1/params/subscript.properties.xml b/docbook-xsl-1.76.1/params/subscript.properties.xml new file mode 100644 index 0000000..d2c7711 --- /dev/null +++ b/docbook-xsl-1.76.1/params/subscript.properties.xml @@ -0,0 +1,29 @@ + + +subscript.properties +attribute set + + +subscript.properties +Properties associated with subscripts + + + + + + 75% + + + + +Description + +Specifies styling properties for subscripts. + + + diff --git a/docbook-xsl-1.76.1/params/superscript.properties.xml b/docbook-xsl-1.76.1/params/superscript.properties.xml new file mode 100644 index 0000000..ecf6af1 --- /dev/null +++ b/docbook-xsl-1.76.1/params/superscript.properties.xml @@ -0,0 +1,29 @@ + + +superscript.properties +attribute set + + +superscript.properties +Properties associated with superscripts + + + + + + 75% + + + + +Description + +Specifies styling properties for superscripts. + + + diff --git a/docbook-xsl-1.76.1/params/suppress.footer.navigation.xml b/docbook-xsl-1.76.1/params/suppress.footer.navigation.xml new file mode 100644 index 0000000..430ed97 --- /dev/null +++ b/docbook-xsl-1.76.1/params/suppress.footer.navigation.xml @@ -0,0 +1,26 @@ + + +suppress.footer.navigation +boolean + + +suppress.footer.navigation +Disable footer navigation + + + +0 + + +Description + + +If non-zero, footer navigation will be suppressed. + + + diff --git a/docbook-xsl-1.76.1/params/suppress.header.navigation.xml b/docbook-xsl-1.76.1/params/suppress.header.navigation.xml new file mode 100644 index 0000000..8fff081 --- /dev/null +++ b/docbook-xsl-1.76.1/params/suppress.header.navigation.xml @@ -0,0 +1,27 @@ + + +suppress.header.navigation +boolean + + +suppress.header.navigation +Disable header navigation + + + + + + + + +Description + +If non-zero, header navigation will be suppressed. + + + diff --git a/docbook-xsl-1.76.1/params/suppress.homepage.title.xml b/docbook-xsl-1.76.1/params/suppress.homepage.title.xml new file mode 100644 index 0000000..38a3306 --- /dev/null +++ b/docbook-xsl-1.76.1/params/suppress.homepage.title.xml @@ -0,0 +1,25 @@ + + +suppress.homepage.title +boolean + + +suppress.homepage.title +Suppress title on homepage? + + + + + + + + +Description +FIXME:If non-zero, the title on the homepage is suppressed? + + diff --git a/docbook-xsl-1.76.1/params/suppress.navigation.xml b/docbook-xsl-1.76.1/params/suppress.navigation.xml new file mode 100644 index 0000000..351fc4d --- /dev/null +++ b/docbook-xsl-1.76.1/params/suppress.navigation.xml @@ -0,0 +1,28 @@ + + +suppress.navigation +boolean + + +suppress.navigation +Disable header and footer navigation + + + + + + + + +Description + + +If non-zero, header and footer navigation will be suppressed. + + + diff --git a/docbook-xsl-1.76.1/params/symbol.font.family.xml b/docbook-xsl-1.76.1/params/symbol.font.family.xml new file mode 100644 index 0000000..8acc791 --- /dev/null +++ b/docbook-xsl-1.76.1/params/symbol.font.family.xml @@ -0,0 +1,45 @@ + + +symbol.font.family +list +open +serif +sans-serif +monospace + + +symbol.font.family +The font families to be searched for symbols outside + of the body font + + + + +Symbol,ZapfDingbats + + + +Description + +A typical body or title font does not contain all +the character glyphs that DocBook supports. This parameter +specifies additional fonts that should be searched for +special characters not in the normal font. +These symbol font names are automatically appended +to the body or title font family name when fonts +are specified in a +font-family +property in the FO output. + +The symbol font names should be entered as a +comma-separated list. The default value is +Symbol,ZapfDingbats. + + + + diff --git a/docbook-xsl-1.76.1/params/table.borders.with.css.xml b/docbook-xsl-1.76.1/params/table.borders.with.css.xml new file mode 100644 index 0000000..2640fb9 --- /dev/null +++ b/docbook-xsl-1.76.1/params/table.borders.with.css.xml @@ -0,0 +1,28 @@ + + +table.borders.with.css +boolean + + +table.borders.with.css +Use CSS to specify table, row, and cell borders? + + + + + + + + +Description + +If non-zero, CSS will be used to draw table borders. + + + + diff --git a/docbook-xsl-1.76.1/params/table.cell.border.color.xml b/docbook-xsl-1.76.1/params/table.cell.border.color.xml new file mode 100644 index 0000000..326e148 --- /dev/null +++ b/docbook-xsl-1.76.1/params/table.cell.border.color.xml @@ -0,0 +1,39 @@ + + +table.cell.border.color +color + + +table.cell.border.color +Specifies the border color of table cells + + + + + +black + + + +Description + +Set the color of table cell borders. If non-zero, the value is used +for the border coloration. See CSS. A +color is either a keyword or a numerical RGB specification. +Keywords are aqua, black, blue, fuchsia, gray, green, lime, maroon, +navy, olive, orange, purple, red, silver, teal, white, and +yellow. + + + To control properties of cell borders in HTML output, you must also turn on the + table.borders.with.css parameter. + + + + diff --git a/docbook-xsl-1.76.1/params/table.cell.border.style.xml b/docbook-xsl-1.76.1/params/table.cell.border.style.xml new file mode 100644 index 0000000..221a29c --- /dev/null +++ b/docbook-xsl-1.76.1/params/table.cell.border.style.xml @@ -0,0 +1,42 @@ + + +table.cell.border.style +list +none +solid +dotted +dashed +double +groove +ridge +inset +outset +solid + + +table.cell.border.style +Specifies the border style of table cells + + + + +solid + + + +Description + +Specifies the border style of table cells. + + + To control properties of cell borders in HTML output, you must also turn on the + table.borders.with.css parameter. + + + + diff --git a/docbook-xsl-1.76.1/params/table.cell.border.thickness.xml b/docbook-xsl-1.76.1/params/table.cell.border.thickness.xml new file mode 100644 index 0000000..093e38e --- /dev/null +++ b/docbook-xsl-1.76.1/params/table.cell.border.thickness.xml @@ -0,0 +1,35 @@ + + +table.cell.border.thickness +length + + +table.cell.border.thickness +Specifies the thickness of table cell borders + + + + +0.5pt + + + +Description + +If non-zero, specifies the thickness of borders on table +cells. The units are points. See +CSS + + + To control properties of cell borders in HTML output, you must also turn on the + table.borders.with.css parameter. + + + + diff --git a/docbook-xsl-1.76.1/params/table.cell.padding.xml b/docbook-xsl-1.76.1/params/table.cell.padding.xml new file mode 100644 index 0000000..25fd653 --- /dev/null +++ b/docbook-xsl-1.76.1/params/table.cell.padding.xml @@ -0,0 +1,32 @@ + + +table.cell.padding +attribute set + + +table.cell.padding +Specifies the padding of table cells + + + + + + 2pt + 2pt + 2pt + 2pt + + + + +Description + +Specifies the padding of table cells. + + + diff --git a/docbook-xsl-1.76.1/params/table.entry.padding.xml b/docbook-xsl-1.76.1/params/table.entry.padding.xml new file mode 100644 index 0000000..cfd6aa3 --- /dev/null +++ b/docbook-xsl-1.76.1/params/table.entry.padding.xml @@ -0,0 +1,27 @@ + + +table.entry.padding +length + + +table.entry.padding + + + + + +2pt + + + +Description + +FIXME: + + + diff --git a/docbook-xsl-1.76.1/params/table.footnote.number.format.xml b/docbook-xsl-1.76.1/params/table.footnote.number.format.xml new file mode 100644 index 0000000..ebbd2ea --- /dev/null +++ b/docbook-xsl-1.76.1/params/table.footnote.number.format.xml @@ -0,0 +1,33 @@ + + +table.footnote.number.format +list +11,2,3... +AA,B,C... +aa,b,c... +ii,ii,iii... +II,II,III... + + +table.footnote.number.format +Identifies the format used for footnote numbers in tables + + + + +a + + + +Description + +The table.footnote.number.format specifies the format +to use for footnote numeration (1, i, I, a, or A) in tables. + + + diff --git a/docbook-xsl-1.76.1/params/table.footnote.number.symbols.xml b/docbook-xsl-1.76.1/params/table.footnote.number.symbols.xml new file mode 100644 index 0000000..a8d8c23 --- /dev/null +++ b/docbook-xsl-1.76.1/params/table.footnote.number.symbols.xml @@ -0,0 +1,39 @@ + + +table.footnote.number.symbols +string + + +table.footnote.number.symbols +Special characters to use a footnote markers in tables + + + + + + + + +Description + +If table.footnote.number.symbols is not the empty string, +table footnotes will use the characters it contains as footnote symbols. For example, +*&#x2020;&#x2021;&#x25CA;&#x2720; will identify +footnotes with *, †, ‡, +â—Š, and ✠. If there are more footnotes +than symbols, the stylesheets will fall back to numbered footnotes using +table.footnote.number.format. + +The use of symbols for footnotes depends on the ability of your +processor (or browser) to render the symbols you select. Not all systems are +capable of displaying the full range of Unicode characters. If the quoted characters +in the preceding paragraph are not displayed properly, that's a good indicator +that you may have trouble using those symbols for footnotes. + + + diff --git a/docbook-xsl-1.76.1/params/table.footnote.properties.xml b/docbook-xsl-1.76.1/params/table.footnote.properties.xml new file mode 100644 index 0000000..94bed80 --- /dev/null +++ b/docbook-xsl-1.76.1/params/table.footnote.properties.xml @@ -0,0 +1,39 @@ + + +table.footnote.properties +attribute set + + +table.footnote.properties +Properties applied to each table footnote body + + + + + + + + + normal + normal + 2pt + + + + + +Description + +This attribute set is applied to the footnote-block +for each table footnote. +It can be used to set the +font-size, font-family, and other inheritable properties that will be +applied to all table footnotes. + + + diff --git a/docbook-xsl-1.76.1/params/table.frame.border.color.xml b/docbook-xsl-1.76.1/params/table.frame.border.color.xml new file mode 100644 index 0000000..070cb6a --- /dev/null +++ b/docbook-xsl-1.76.1/params/table.frame.border.color.xml @@ -0,0 +1,28 @@ + + +table.frame.border.color +color + + +table.frame.border.color +Specifies the border color of table frames + + + + + +black + + + +Description + +Specifies the border color of table frames. + + + diff --git a/docbook-xsl-1.76.1/params/table.frame.border.style.xml b/docbook-xsl-1.76.1/params/table.frame.border.style.xml new file mode 100644 index 0000000..881840c --- /dev/null +++ b/docbook-xsl-1.76.1/params/table.frame.border.style.xml @@ -0,0 +1,37 @@ + + +table.frame.border.style +list +none +solid +dotted +dashed +double +groove +ridge +inset +outset +solid + + +table.frame.border.style +Specifies the border style of table frames + + + + +solid + + + +Description + +Specifies the border style of table frames. + + + diff --git a/docbook-xsl-1.76.1/params/table.frame.border.thickness.xml b/docbook-xsl-1.76.1/params/table.frame.border.thickness.xml new file mode 100644 index 0000000..1eaa04a --- /dev/null +++ b/docbook-xsl-1.76.1/params/table.frame.border.thickness.xml @@ -0,0 +1,27 @@ + + +table.frame.border.thickness +length + + +table.frame.border.thickness +Specifies the thickness of the frame border + + + + +0.5pt + + + +Description + +Specifies the thickness of the border on the table's frame. + + + diff --git a/docbook-xsl-1.76.1/params/table.properties.xml b/docbook-xsl-1.76.1/params/table.properties.xml new file mode 100644 index 0000000..76340c8 --- /dev/null +++ b/docbook-xsl-1.76.1/params/table.properties.xml @@ -0,0 +1,34 @@ + + +table.properties +attribute set + + +table.properties +Properties associated with the block surrounding a table + + + + + + auto + + + + +Description + +Block styling properties for tables. This parameter should really +have been called table.block.properties or something +like that, but we’re leaving it to avoid backwards-compatibility +problems. + +See also table.table.properties. + + + diff --git a/docbook-xsl-1.76.1/params/table.spacer.image.xml b/docbook-xsl-1.76.1/params/table.spacer.image.xml new file mode 100644 index 0000000..12e6d5a --- /dev/null +++ b/docbook-xsl-1.76.1/params/table.spacer.image.xml @@ -0,0 +1,26 @@ + + +table.spacer.image +filename + + +table.spacer.image +Invisible pixel for tabular accessibility + + + + +graphics/spacer.gif + + + +Description +This is the 1x1 pixel, transparent pixel used for the table trick to increase the accessibility of the tabular +website presentation. + + diff --git a/docbook-xsl-1.76.1/params/table.table.properties.xml b/docbook-xsl-1.76.1/params/table.table.properties.xml new file mode 100644 index 0000000..4ee3422 --- /dev/null +++ b/docbook-xsl-1.76.1/params/table.table.properties.xml @@ -0,0 +1,36 @@ + + +table.table.properties +attribute set + + +table.table.properties +Properties associated with a table + + + + + + retain + collapse + + + + +Description + +The styling for tables. This parameter should really +have been called table.properties, but that parameter +name was inadvertently established for the block-level properties +of the table as a whole. + + +See also table.properties. + + + diff --git a/docbook-xsl-1.76.1/params/tablecolumns.extension.xml b/docbook-xsl-1.76.1/params/tablecolumns.extension.xml new file mode 100644 index 0000000..2ec817a --- /dev/null +++ b/docbook-xsl-1.76.1/params/tablecolumns.extension.xml @@ -0,0 +1,30 @@ + + +tablecolumns.extension +boolean + + +tablecolumns.extension +Enable the table columns extension function + + + + + + + + +Description + +The table columns extension function adjusts the widths of table +columns in the HTML result to more accurately reflect the specifications +in the CALS table. + + + + diff --git a/docbook-xsl-1.76.1/params/target.database.document.xml b/docbook-xsl-1.76.1/params/target.database.document.xml new file mode 100644 index 0000000..042f017 --- /dev/null +++ b/docbook-xsl-1.76.1/params/target.database.document.xml @@ -0,0 +1,37 @@ + + +target.database.document +uri + + +target.database.document +Name of master database file for resolving +olinks + + + + olinkdb.xml + + +Description + + +To resolve olinks between documents, the stylesheets use a master +database document that identifies the target datafiles for all the +documents within the scope of the olinks. This parameter value is the +URI of the master document to be read during processing to resolve +olinks. The default value is olinkdb.xml. + +The data structure of the file is defined in the +targetdatabase.dtd DTD. The database file +provides the high level elements to record the identifiers, locations, +and relationships of documents. The cross reference data for +individual documents is generally pulled into the database using +system entity references or XIncludes. See also +targets.filename. + diff --git a/docbook-xsl-1.76.1/params/targets.filename.xml b/docbook-xsl-1.76.1/params/targets.filename.xml new file mode 100644 index 0000000..de6e29c --- /dev/null +++ b/docbook-xsl-1.76.1/params/targets.filename.xml @@ -0,0 +1,32 @@ + + +targets.filename +string + + +targets.filename +Name of cross reference targets data file + + +target.db + + +Description + + +In order to resolve olinks efficiently, the stylesheets can +generate an external data file containing information about +all potential cross reference endpoints in a document. +This parameter lets you change the name of the generated +file from the default name target.db. +The name must agree with that used in the target database +used to resolve olinks during processing. +See also target.database.document. + + + diff --git a/docbook-xsl-1.76.1/params/template.xml b/docbook-xsl-1.76.1/params/template.xml new file mode 100644 index 0000000..9d35f83 --- /dev/null +++ b/docbook-xsl-1.76.1/params/template.xml @@ -0,0 +1,27 @@ + + +[[NAME]] + + + +[[NAME]] + + + + + + + + + +Description + +FIXME: + + + diff --git a/docbook-xsl-1.76.1/params/tex.math.delims.xml b/docbook-xsl-1.76.1/params/tex.math.delims.xml new file mode 100644 index 0000000..3a302f7 --- /dev/null +++ b/docbook-xsl-1.76.1/params/tex.math.delims.xml @@ -0,0 +1,47 @@ + + +tex.math.delims +boolean + + +tex.math.delims +Should equations output for processing by TeX be +surrounded by math mode delimiters? + + + + + + + + +Description + +For compatibility with DSSSL based DBTeXMath from Allin Cottrell +you should set this parameter to 0. + + + This feature is useful for print/PDF output only if you + use the obsolete and now unsupported PassiveTeX XSL-FO + engine. + + + +Related Parameters + tex.math.in.alt, + passivetex.extensions + + +See Also + You can also use the dbtex delims processing + instruction to control whether delimiters are output. + + + + diff --git a/docbook-xsl-1.76.1/params/tex.math.file.xml b/docbook-xsl-1.76.1/params/tex.math.file.xml new file mode 100644 index 0000000..fbc6eaa --- /dev/null +++ b/docbook-xsl-1.76.1/params/tex.math.file.xml @@ -0,0 +1,42 @@ + + +tex.math.file +string + + +tex.math.file +Name of temporary file for generating images from equations + + + + +tex-math-equations.tex + + + +Description + +Name of auxiliary file for TeX equations. This file can be +processed by dvi2bitmap to get bitmap versions of equations for HTML +output. + + +Related Parameters + tex.math.in.alt, + tex.math.delims, + + +More information + For how-to documentation on embedding TeX equations and + generating output from them, see + DBTeXMath. + + diff --git a/docbook-xsl-1.76.1/params/tex.math.in.alt.xml b/docbook-xsl-1.76.1/params/tex.math.in.alt.xml new file mode 100644 index 0000000..ed1abb9 --- /dev/null +++ b/docbook-xsl-1.76.1/params/tex.math.in.alt.xml @@ -0,0 +1,76 @@ + + +tex.math.in.alt +list +plain +latex + + +tex.math.in.alt +TeX notation used for equations + + + + + + + + +Description + +If you want type math directly in TeX notation in equations, +this parameter specifies notation used. Currently are supported two +values -- plain and latex. Empty +value means that you are not using TeX math at all. + +Preferred way for including TeX alternative of math is inside of +textobject element. Eg.: + +<inlineequation> +<inlinemediaobject> +<imageobject> +<imagedata fileref="eq1.gif"/> +</imageobject> +<textobject><phrase>E=mc squared</phrase></textobject> +<textobject role="tex"><phrase>E=mc^2</phrase></textobject> +</inlinemediaobject> +</inlineequation> + +If you are using graphic element, you can +store TeX inside alt element: + +<inlineequation> +<alt role="tex">a^2+b^2=c^2</alt> +<graphic fileref="a2b2c2.gif"/> +</inlineequation> + +If you want use this feature, you should process your FO with +PassiveTeX, which only supports TeX math notation. When calling +stylsheet, don't forget to specify also +passivetex.extensions=1. + +If you want equations in HTML, just process generated file +tex-math-equations.tex by TeX or LaTeX. Then run +dvi2bitmap program on result DVI file. You will get images for +equations in your document. + + + This feature is useful for print/PDF output only if you + use the obsolete and now unsupported PassiveTeX XSL-FO + engine. + + + + +Related Parameters + tex.math.delims, + passivetex.extensions, + tex.math.file + + + diff --git a/docbook-xsl-1.76.1/params/text.home.xml b/docbook-xsl-1.76.1/params/text.home.xml new file mode 100644 index 0000000..0bc81dd --- /dev/null +++ b/docbook-xsl-1.76.1/params/text.home.xml @@ -0,0 +1,27 @@ + + +text.home +string + + +text.home +Home + + + + +Home + + + +Description + +FIXME: + + + diff --git a/docbook-xsl-1.76.1/params/text.next.xml b/docbook-xsl-1.76.1/params/text.next.xml new file mode 100644 index 0000000..d89b8e8 --- /dev/null +++ b/docbook-xsl-1.76.1/params/text.next.xml @@ -0,0 +1,27 @@ + + +text.next +string + + +text.next +FIXME: + + + + +Next + + + +Description + +FIXME: + + + diff --git a/docbook-xsl-1.76.1/params/text.prev.xml b/docbook-xsl-1.76.1/params/text.prev.xml new file mode 100644 index 0000000..62d28e3 --- /dev/null +++ b/docbook-xsl-1.76.1/params/text.prev.xml @@ -0,0 +1,27 @@ + + +text.prev +string + + +text.prev +FIXME: + + + + +Prev + + + +Description + +FIXME: + + + diff --git a/docbook-xsl-1.76.1/params/text.toc.xml b/docbook-xsl-1.76.1/params/text.toc.xml new file mode 100644 index 0000000..083b8e3 --- /dev/null +++ b/docbook-xsl-1.76.1/params/text.toc.xml @@ -0,0 +1,27 @@ + + +text.toc +string + + +text.toc +FIXME: + + + + +ToC + + + +Description + +FIXME: + + + diff --git a/docbook-xsl-1.76.1/params/text.up.xml b/docbook-xsl-1.76.1/params/text.up.xml new file mode 100644 index 0000000..f6dca22 --- /dev/null +++ b/docbook-xsl-1.76.1/params/text.up.xml @@ -0,0 +1,27 @@ + + +text.up +string + + +text.up +FIXME: + + + + +Up + + + +Description + +FIXME: + + + diff --git a/docbook-xsl-1.76.1/params/textbgcolor.xml b/docbook-xsl-1.76.1/params/textbgcolor.xml new file mode 100644 index 0000000..b9aefe6 --- /dev/null +++ b/docbook-xsl-1.76.1/params/textbgcolor.xml @@ -0,0 +1,26 @@ + + +textbgcolor +color + + +textbgcolor +The background color of the table body + + + + +white + + + +Description +The background color of the table body. +Only applies with the tabular presentation is being used. + + diff --git a/docbook-xsl-1.76.1/params/textdata.default.encoding.xml b/docbook-xsl-1.76.1/params/textdata.default.encoding.xml new file mode 100644 index 0000000..b6f30a8 --- /dev/null +++ b/docbook-xsl-1.76.1/params/textdata.default.encoding.xml @@ -0,0 +1,32 @@ + + +textdata.default.encoding +string + + +textdata.default.encoding +Default encoding of external text files which are included +using textdata element + + + + + + + + +Description + +Specifies the encoding of any external text files included using +textdata element. This value is used only when you do +not specify encoding by the appropriate attribute +directly on textdata. An empty string is interpreted as the system +default encoding. + + + diff --git a/docbook-xsl-1.76.1/params/textinsert.extension.xml b/docbook-xsl-1.76.1/params/textinsert.extension.xml new file mode 100644 index 0000000..a6f1ea4 --- /dev/null +++ b/docbook-xsl-1.76.1/params/textinsert.extension.xml @@ -0,0 +1,62 @@ + + + textinsert.extension + boolean + + + textinsert.extension + Enables the textinsert extension element + + + + + + + Description + The textinsert extension element inserts the contents of + a file into the result tree (as text). + + To use the textinsert extension element, you must use + either Saxon or Xalan as your XSLT processor (it doesn’t + work with xsltproc), along with either the DocBook Saxon + extensions or DocBook Xalan extensions (for more + information about those extensions, see DocBook Saxon Extensions and DocBook Xalan Extensions), and you must set both + the use.extensions and + textinsert.extension parameters to + 1. + As an alternative to using the textinsert element, + consider using an Xinclude element with the + parse="text" attribute and value + specified, as detailed in Using XInclude for text inclusions. + + + See Also + You can also use the dbhtml-include href processing + instruction to insert external files — both files containing + plain text and files with markup content (including HTML + content). + + More information + For how-to documentation on inserting contents of + external code files and other text files into output, see + External code files. + For guidelines on inserting contents of + HTML files into output, see Inserting external HTML code. + + diff --git a/docbook-xsl-1.76.1/params/title.font.family.xml b/docbook-xsl-1.76.1/params/title.font.family.xml new file mode 100644 index 0000000..369021f --- /dev/null +++ b/docbook-xsl-1.76.1/params/title.font.family.xml @@ -0,0 +1,33 @@ + + +title.font.family +list +open +serif +sans-serif +monospace + + +title.font.family +The default font family for titles + + + + +sans-serif + + + +Description + +The title font family is used for titles (chapter, section, figure, +etc.) + + + + diff --git a/docbook-xsl-1.76.1/params/title.margin.left.xml b/docbook-xsl-1.76.1/params/title.margin.left.xml new file mode 100644 index 0000000..dc50dd1 --- /dev/null +++ b/docbook-xsl-1.76.1/params/title.margin.left.xml @@ -0,0 +1,65 @@ + + +title.margin.left +length + + +title.margin.left +Adjust the left margin for titles + + + + + + + -4pc + 0pt + 0pt + + + + + +Description + +This parameter provides +the means of adjusting the left margin for titles +when the XSL-FO processor being used is +an old version of FOP (0.25 and earlier). +It is only useful when the fop.extensions +is nonzero. + +The left margin of the body region +is calculated to include this space, +and titles are outdented to the left outside +the body region by this amount, +effectively leaving titles at the intended left margin +and the body text indented. +Currently this method is only used for old FOP because +it cannot properly use the body.start.indent +parameter. + + +The default value when the fop.extensions +parameter is nonzero is -4pc, which means the +body text is indented 4 picas relative to +the titles. +The default value when the fop.extensions +parameter equals zero is 0pt, and +the body indent should instead be specified +using the body.start.indent +parameter. + + +If you set the value to zero, be sure to still include +a unit indicator such as 0pt, or +the FO processor will report errors. + + + + diff --git a/docbook-xsl-1.76.1/params/titlefoil.html.xml b/docbook-xsl-1.76.1/params/titlefoil.html.xml new file mode 100644 index 0000000..5fa2acd --- /dev/null +++ b/docbook-xsl-1.76.1/params/titlefoil.html.xml @@ -0,0 +1,27 @@ + + +titlefoil.html +filename + + +titlefoil.html +Name of title foil HTML file + + + + + + + + +Description + +Sets the filename used for the slides titlepage. + + + diff --git a/docbook-xsl-1.76.1/params/toc.bg.color.xml b/docbook-xsl-1.76.1/params/toc.bg.color.xml new file mode 100644 index 0000000..1389c62 --- /dev/null +++ b/docbook-xsl-1.76.1/params/toc.bg.color.xml @@ -0,0 +1,27 @@ + + +toc.bg.color +color + + +toc.bg.color +Background color for ToC frame + + + + +#FFFFFF + + + +Description + +Specifies the background color used in the ToC frame. + + + diff --git a/docbook-xsl-1.76.1/params/toc.blank.graphic.xml b/docbook-xsl-1.76.1/params/toc.blank.graphic.xml new file mode 100644 index 0000000..bb24888 --- /dev/null +++ b/docbook-xsl-1.76.1/params/toc.blank.graphic.xml @@ -0,0 +1,28 @@ + + +toc.blank.graphic +boolean + + +toc.blank.graphic +Use graphic for "blanks" in TOC? + + + + + + + + +Description +If non-zero, "blanks" in the the TOC will be accomplished +with the graphic identified by toc.spacer.image. + +Only applies with the tabular presentation is being used. + + diff --git a/docbook-xsl-1.76.1/params/toc.blank.image.xml b/docbook-xsl-1.76.1/params/toc.blank.image.xml new file mode 100644 index 0000000..82caa2f --- /dev/null +++ b/docbook-xsl-1.76.1/params/toc.blank.image.xml @@ -0,0 +1,27 @@ + + +toc.blank.image +filename + + +toc.blank.image +The image for "blanks" in the TOC + + + + +graphics/blank.gif + + + +Description +If toc.blank.graphic is non-zero, this image +will be used to for "blanks" in the TOC. +Only applies with the tabular presentation is being used. + + diff --git a/docbook-xsl-1.76.1/params/toc.blank.text.xml b/docbook-xsl-1.76.1/params/toc.blank.text.xml new file mode 100644 index 0000000..d39aec4 --- /dev/null +++ b/docbook-xsl-1.76.1/params/toc.blank.text.xml @@ -0,0 +1,27 @@ + + +toc.blank.text +string + + +toc.blank.text +The text for "blanks" in the TOC + + + + +    + + + +Description +If toc.blank.graphic is zero, this text string +will be used for "blanks" in the TOC. +Only applies with the tabular presentation is being used. + + diff --git a/docbook-xsl-1.76.1/params/toc.hide.show.xml b/docbook-xsl-1.76.1/params/toc.hide.show.xml new file mode 100644 index 0000000..1570ec4 --- /dev/null +++ b/docbook-xsl-1.76.1/params/toc.hide.show.xml @@ -0,0 +1,33 @@ + + +toc.hide.show +boolean + + +toc.hide.show +Enable hide/show button for ToC frame + + + + + + + + +Description + +If non-zero, JavaScript (and an additional icon, see +hidetoc.image and +showtoc.image) is added to each slide +to allow the ToC panel to be toggled on each panel. + +There is a bug in Mozilla 1.0 (at least as of CR3) that causes +the browser to reload the titlepage when this feature is used. + + + diff --git a/docbook-xsl-1.76.1/params/toc.html.xml b/docbook-xsl-1.76.1/params/toc.html.xml new file mode 100644 index 0000000..62c060c --- /dev/null +++ b/docbook-xsl-1.76.1/params/toc.html.xml @@ -0,0 +1,27 @@ + + +toc.html +filename + + +toc.html +Name of ToC HTML file + + + + + + + + +Description + +Sets the filename used for the table of contents page. + + + diff --git a/docbook-xsl-1.76.1/params/toc.image.xml b/docbook-xsl-1.76.1/params/toc.image.xml new file mode 100644 index 0000000..147155c --- /dev/null +++ b/docbook-xsl-1.76.1/params/toc.image.xml @@ -0,0 +1,27 @@ + + +toc.image +filename + + +toc.image +ToC image + + + + +active/nav-toc.png + + + +Description + +Specifies the filename of the ToC navigation icon. + + + diff --git a/docbook-xsl-1.76.1/params/toc.indent.width.xml b/docbook-xsl-1.76.1/params/toc.indent.width.xml new file mode 100644 index 0000000..449e74c --- /dev/null +++ b/docbook-xsl-1.76.1/params/toc.indent.width.xml @@ -0,0 +1,34 @@ + + +toc.indent.width +float + + +toc.indent.width +Amount of indentation for TOC entries + + + + +24 + + + + +Description + +Specifies, in points, the distance by which each level of the +TOC is indented from its parent. + +This value is expressed in points, without +a unit (in other words, it is a bare number). Using a bare number allows the stylesheet +to perform calculations that would otherwise have to be performed by the FO processor +because not all processors support expressions. + + + diff --git a/docbook-xsl-1.76.1/params/toc.line.properties.xml b/docbook-xsl-1.76.1/params/toc.line.properties.xml new file mode 100644 index 0000000..0886fa4 --- /dev/null +++ b/docbook-xsl-1.76.1/params/toc.line.properties.xml @@ -0,0 +1,44 @@ + + +toc.line.properties +attribute set + + +toc.line.properties +Properties for lines in ToCs and LoTs + + + + + + justify + start + + + + + + +Description + +Properties which are applied to every line in ToC (or LoT). You can +modify them in order to change appearance of all, or some lines. For +example, in order to make lines for chapters bold, specify the +following in your customization layer: + +<xsl:attribute-set name="toc.line.properties"> + <xsl:attribute name="font-weight"> + <xsl:choose> + <xsl:when test="self::chapter">bold</xsl:when> + <xsl:otherwise>normal</xsl:otherwise> + </xsl:choose> + </xsl:attribute> +</xsl:attribute-set> + + + diff --git a/docbook-xsl-1.76.1/params/toc.list.type.xml b/docbook-xsl-1.76.1/params/toc.list.type.xml new file mode 100644 index 0000000..31dc465 --- /dev/null +++ b/docbook-xsl-1.76.1/params/toc.list.type.xml @@ -0,0 +1,30 @@ + + +toc.list.type +list +dl +ul +ol + + +toc.list.type +Type of HTML list element to use for Tables of Contents + + + +dl + + +Description + +When an automatically generated Table of Contents (or List of Titles) +is produced, this HTML element will be used to make the list. + + + + diff --git a/docbook-xsl-1.76.1/params/toc.margin.properties.xml b/docbook-xsl-1.76.1/params/toc.margin.properties.xml new file mode 100644 index 0000000..25963df --- /dev/null +++ b/docbook-xsl-1.76.1/params/toc.margin.properties.xml @@ -0,0 +1,33 @@ + + +toc.margin.properties +attribute set + + +toc.margin.properties +Margin properties used on Tables of Contents + + + + + + 0.5em + 1em + 2em + 0.5em + 1em + 2em + + + + +Description +This attribute set is used on Tables of Contents. These attributes are set +on the wrapper that surrounds the ToC block, not on each individual lines. + + diff --git a/docbook-xsl-1.76.1/params/toc.max.depth.xml b/docbook-xsl-1.76.1/params/toc.max.depth.xml new file mode 100644 index 0000000..75902b3 --- /dev/null +++ b/docbook-xsl-1.76.1/params/toc.max.depth.xml @@ -0,0 +1,25 @@ + + +toc.max.depth +integer + + +toc.max.depth +How many levels should be created for each TOC? + + + +8 + + +Description + +Specifies the maximal depth of TOC on all levels. + + + diff --git a/docbook-xsl-1.76.1/params/toc.pointer.graphic.xml b/docbook-xsl-1.76.1/params/toc.pointer.graphic.xml new file mode 100644 index 0000000..4b2cb74 --- /dev/null +++ b/docbook-xsl-1.76.1/params/toc.pointer.graphic.xml @@ -0,0 +1,28 @@ + + +toc.pointer.graphic +boolean + + +toc.pointer.graphic +Use graphic for TOC pointer? + + + + + + + + +Description +If non-zero, the "pointer" in the TOC will be displayed +with the graphic identified by toc.pointer.image. + +Only applies with the tabular presentation is being used. + + diff --git a/docbook-xsl-1.76.1/params/toc.pointer.image.xml b/docbook-xsl-1.76.1/params/toc.pointer.image.xml new file mode 100644 index 0000000..bf06901 --- /dev/null +++ b/docbook-xsl-1.76.1/params/toc.pointer.image.xml @@ -0,0 +1,27 @@ + + +toc.pointer.image +filename + + +toc.pointer.image +The image for the "pointer" in the TOC + + + + +graphics/arrow.gif + + + +Description +If toc.pointer.graphic is non-zero, this image +will be used for the "pointer" in the TOC. +Only applies with the tabular presentation is being used. + + diff --git a/docbook-xsl-1.76.1/params/toc.pointer.text.xml b/docbook-xsl-1.76.1/params/toc.pointer.text.xml new file mode 100644 index 0000000..b094765 --- /dev/null +++ b/docbook-xsl-1.76.1/params/toc.pointer.text.xml @@ -0,0 +1,27 @@ + + +toc.pointer.text +string + + +toc.pointer.text +The text for the "pointer" in the TOC + + + + + >  + + + +Description +If toc.pointer.graphic is zero, this text string +will be used to display the "pointer" in the TOC. +Only applies with the tabular presentation is being used. + + diff --git a/docbook-xsl-1.76.1/params/toc.row.height.xml b/docbook-xsl-1.76.1/params/toc.row.height.xml new file mode 100644 index 0000000..89bac83 --- /dev/null +++ b/docbook-xsl-1.76.1/params/toc.row.height.xml @@ -0,0 +1,33 @@ + + +toc.row.height +length + + +toc.row.height +Height of ToC rows in dynamic ToCs + + + + +22 + + + +Description + +This parameter specifies the height of each row in the table of +contents. This is only applicable if a dynamic ToC is used. You may want to +adjust this parameter for optimal appearance with the font and image +sizes selected by your CSS +stylesheet. + + + + diff --git a/docbook-xsl-1.76.1/params/toc.section.depth.xml b/docbook-xsl-1.76.1/params/toc.section.depth.xml new file mode 100644 index 0000000..db99f9c --- /dev/null +++ b/docbook-xsl-1.76.1/params/toc.section.depth.xml @@ -0,0 +1,28 @@ + + +toc.section.depth +integer + + +toc.section.depth +How deep should recursive sections appear +in the TOC? + + + +2 + + +Description + +Specifies the depth to which recursive sections should appear in the +TOC. + + + + diff --git a/docbook-xsl-1.76.1/params/toc.spacer.graphic.xml b/docbook-xsl-1.76.1/params/toc.spacer.graphic.xml new file mode 100644 index 0000000..0a5729c --- /dev/null +++ b/docbook-xsl-1.76.1/params/toc.spacer.graphic.xml @@ -0,0 +1,28 @@ + + +toc.spacer.graphic +boolean + + +toc.spacer.graphic +Use graphic for TOC spacer? + + + + + + + + +Description +If non-zero, the indentation in the TOC will be accomplished +with the graphic identified by toc.spacer.image. + +Only applies with the tabular presentation is being used. + + diff --git a/docbook-xsl-1.76.1/params/toc.spacer.image.xml b/docbook-xsl-1.76.1/params/toc.spacer.image.xml new file mode 100644 index 0000000..0d55016 --- /dev/null +++ b/docbook-xsl-1.76.1/params/toc.spacer.image.xml @@ -0,0 +1,27 @@ + + +toc.spacer.image +filename + + +toc.spacer.image +The image for spacing the TOC + + + + +graphics/blank.gif + + + +Description +If toc.spacer.graphic is non-zero, this image +will be used to indent the TOC. +Only applies with the tabular presentation is being used. + + diff --git a/docbook-xsl-1.76.1/params/toc.spacer.text.xml b/docbook-xsl-1.76.1/params/toc.spacer.text.xml new file mode 100644 index 0000000..bfb605f --- /dev/null +++ b/docbook-xsl-1.76.1/params/toc.spacer.text.xml @@ -0,0 +1,27 @@ + + +toc.spacer.text +string + + +toc.spacer.text +The text for spacing the TOC + + + + +    + + + +Description +If toc.spacer.graphic is zero, this text string +will be used to indent the TOC. +Only applies with the tabular presentation is being used. + + diff --git a/docbook-xsl-1.76.1/params/toc.width.xml b/docbook-xsl-1.76.1/params/toc.width.xml new file mode 100644 index 0000000..71a3c03 --- /dev/null +++ b/docbook-xsl-1.76.1/params/toc.width.xml @@ -0,0 +1,28 @@ + + +toc.width +length + + +toc.width +Width of ToC frame + + + + +250 + + + + +Description + +Specifies the width of the ToC frame in pixels. + + + diff --git a/docbook-xsl-1.76.1/params/ua.js.xml b/docbook-xsl-1.76.1/params/ua.js.xml new file mode 100644 index 0000000..8242a71 --- /dev/null +++ b/docbook-xsl-1.76.1/params/ua.js.xml @@ -0,0 +1,28 @@ + + +ua.js +filename + + +ua.js +UA JavaScript file + + + + +ua.js + + + +Description + +Specifies the filename of the UA JavaScript file. It's unlikely +that you will ever need to change this parameter. + + + diff --git a/docbook-xsl-1.76.1/params/ulink.footnotes.xml b/docbook-xsl-1.76.1/params/ulink.footnotes.xml new file mode 100644 index 0000000..f17c884 --- /dev/null +++ b/docbook-xsl-1.76.1/params/ulink.footnotes.xml @@ -0,0 +1,34 @@ + + +ulink.footnotes +boolean + + +ulink.footnotes +Generate footnotes for ulinks? + + + + + + + + +Description + +If non-zero, and if ulink.show also is non-zero, +the URL of each ulink will appear as a footnote. + +DocBook 5 does not have an ulink element. When processing +DocBoook 5 documents, ulink.footnotes applies to all inline +elements that are marked up with xlink:href attributes +that point to external resources. + + + + diff --git a/docbook-xsl-1.76.1/params/ulink.hyphenate.chars.xml b/docbook-xsl-1.76.1/params/ulink.hyphenate.chars.xml new file mode 100644 index 0000000..7fdd771 --- /dev/null +++ b/docbook-xsl-1.76.1/params/ulink.hyphenate.chars.xml @@ -0,0 +1,37 @@ + + +ulink.hyphenate.chars +string + + +ulink.hyphenate.chars +List of characters to allow ulink URLs to be automatically hyphenated on + + + + +/ + + + +Description + +If the ulink.hyphenate is not empty, then +hyphenation of ulinks is turned on, and any +character contained in this parameter is treated as an allowable +hyphenation point. + +The default value is /, but the parameter +could be customized +to contain other URL characters, as for example: + +<xsl:param name="ulink.hyphenate.chars">:/@&?.#</xsl:param> + + + + diff --git a/docbook-xsl-1.76.1/params/ulink.hyphenate.xml b/docbook-xsl-1.76.1/params/ulink.hyphenate.xml new file mode 100644 index 0000000..719e937 --- /dev/null +++ b/docbook-xsl-1.76.1/params/ulink.hyphenate.xml @@ -0,0 +1,35 @@ + + +ulink.hyphenate +string + + +ulink.hyphenate +Allow URLs to be automatically hyphenated + + + + + + + + +Description + +If not empty, the specified character (or more generally, content) is +added to URLs after every character included in the string +in the ulink.hyphenate.chars parameter (default +is /). If the character in this parameter is a +Unicode soft hyphen (0x00AD) or Unicode zero-width space (0x200B), some FO +processors will be able to reasonably hyphenate long URLs. + +As of 28 Jan 2002, discretionary hyphens are more widely and correctly +supported than zero-width spaces for this purpose. + + + diff --git a/docbook-xsl-1.76.1/params/ulink.show.xml b/docbook-xsl-1.76.1/params/ulink.show.xml new file mode 100644 index 0000000..6f90d58 --- /dev/null +++ b/docbook-xsl-1.76.1/params/ulink.show.xml @@ -0,0 +1,37 @@ + + +ulink.show +boolean + + +ulink.show +Display URLs after ulinks? + + + + + + + + +Description + +If non-zero, the URL of each ulink will +appear after the text of the link. If the text of the link and the URL +are identical, the URL is suppressed. + +See also ulink.footnotes. + +DocBook 5 does not have an ulink element. When processing +DocBoook 5 documents, ulink.show applies to all inline +elements that are marked up with xlink:href attributes +that point to external resources. + + + + diff --git a/docbook-xsl-1.76.1/params/ulink.target.xml b/docbook-xsl-1.76.1/params/ulink.target.xml new file mode 100644 index 0000000..cf1d42b --- /dev/null +++ b/docbook-xsl-1.76.1/params/ulink.target.xml @@ -0,0 +1,29 @@ + + +ulink.target +string + + +ulink.target +The HTML anchor target for ULinks + + + + +_top + + + +Description + +If ulink.target is non-zero, its value will +be used for the target attribute +on anchors generated for ulinks. + + + diff --git a/docbook-xsl-1.76.1/params/up.image.xml b/docbook-xsl-1.76.1/params/up.image.xml new file mode 100644 index 0000000..1c3bfa2 --- /dev/null +++ b/docbook-xsl-1.76.1/params/up.image.xml @@ -0,0 +1,27 @@ + + +up.image +filename + + +up.image +Up-arrow image + + + + +active/nav-up.png + + + +Description + +Specifies the filename of the upward-pointing navigation arrow. + + + diff --git a/docbook-xsl-1.76.1/params/use.embed.for.svg.xml b/docbook-xsl-1.76.1/params/use.embed.for.svg.xml new file mode 100644 index 0000000..f7c52cc --- /dev/null +++ b/docbook-xsl-1.76.1/params/use.embed.for.svg.xml @@ -0,0 +1,33 @@ + + +use.embed.for.svg +boolean + + +use.embed.for.svg +Use HTML embed for SVG? + + + + + + + + +Description + +If non-zero, an embed element will be created for +SVG figures. An object is always created, +this parameter merely controls whether or not an additional embed +is generated inside the object. + +On the plus side, this may be more portable among browsers and plug-ins. +On the minus side, it isn't valid HTML. + + + diff --git a/docbook-xsl-1.76.1/params/use.extensions.xml b/docbook-xsl-1.76.1/params/use.extensions.xml new file mode 100644 index 0000000..4dce71b --- /dev/null +++ b/docbook-xsl-1.76.1/params/use.extensions.xml @@ -0,0 +1,31 @@ + + +use.extensions +boolean + + +use.extensions +Enable extensions + + + + + + + + +Description + +If non-zero, extensions may be used. Each extension is +further controlled by its own parameter. But if +use.extensions is zero, no extensions will +be used. + + + + diff --git a/docbook-xsl-1.76.1/params/use.id.as.filename.xml b/docbook-xsl-1.76.1/params/use.id.as.filename.xml new file mode 100644 index 0000000..e5133e9 --- /dev/null +++ b/docbook-xsl-1.76.1/params/use.id.as.filename.xml @@ -0,0 +1,30 @@ + + +use.id.as.filename +boolean + + +use.id.as.filename +Use ID value of chunk elements as the filename? + + + + + + + + +Description + +If use.id.as.filename +is non-zero, the filename of chunk elements that have IDs will be +derived from the ID value. + + + + diff --git a/docbook-xsl-1.76.1/params/use.id.function.xml b/docbook-xsl-1.76.1/params/use.id.function.xml new file mode 100644 index 0000000..5f4e6f7 --- /dev/null +++ b/docbook-xsl-1.76.1/params/use.id.function.xml @@ -0,0 +1,32 @@ + + +use.id.function +boolean + + +use.id.function +Use the XPath id() function to find link targets? + + + + + + + + +Description + +If 1, the stylesheets use the id() function +to find the targets of cross reference elements. This is more +efficient, but only works if your XSLT processor implements the +id() function, naturally. +THIS PARAMETER IS NOT SUPPORTED. IT IS ALWAYS ASSUMED TO BE 1. +SEE xref.xsl IF YOU NEED TO TURN IT OFF. + + + diff --git a/docbook-xsl-1.76.1/params/use.local.olink.style.xml b/docbook-xsl-1.76.1/params/use.local.olink.style.xml new file mode 100644 index 0000000..eb4f57a --- /dev/null +++ b/docbook-xsl-1.76.1/params/use.local.olink.style.xml @@ -0,0 +1,28 @@ + + +use.local.olink.style +boolean + + +use.local.olink.style +Process olinks using xref style of current +document + + + + +Description + +When cross reference data is collected for use by olinks, the data for each potential target includes one field containing a completely assembled cross reference string, as if it were an xref generated in that document. Other fields record the separate title, number, and element name of each target. When an olink is formed to a target from another document, the olink resolves to that preassembled string by default. If the use.local.olink.style parameter is set to non-zero, then instead the cross +reference string is formed again from the target title, number, and +element name, using the stylesheet processing the targeting document. +Then olinks will match the xref style in the targeting document +rather than in the target document. If both documents are processed +with the same stylesheet, then the results will be the same. + + diff --git a/docbook-xsl-1.76.1/params/use.role.as.xrefstyle.xml b/docbook-xsl-1.76.1/params/use.role.as.xrefstyle.xml new file mode 100644 index 0000000..56c4470 --- /dev/null +++ b/docbook-xsl-1.76.1/params/use.role.as.xrefstyle.xml @@ -0,0 +1,93 @@ + + +use.role.as.xrefstyle +boolean + + +use.role.as.xrefstyle +Use role attribute for +xrefstyle on xref? + + + + + + + + +Description + +In DocBook documents that conform to a schema older than V4.3, this parameter allows +role to serve the purpose of specifying the cross reference style. + +If non-zero, the role attribute on +xref will be used to select the cross reference style. +In DocBook V4.3, the xrefstyle attribute was added for this purpose. +If the xrefstyle attribute is present, +role will be ignored, regardless of the setting +of this parameter. + + + +Example + +The following small stylesheet shows how to configure the +stylesheets to make use of the cross reference style: + +<?xml version="1.0"?> +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + version="1.0"> + +<xsl:import href="../xsl/html/docbook.xsl"/> + +<xsl:output method="html"/> + +<xsl:param name="local.l10n.xml" select="document('')"/> +<l:i18n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0"> + <l:l10n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0" language="en"> + <l:context name="xref"> + <l:template name="chapter" style="title" text="Chapter %n, %t"/> + <l:template name="chapter" text="Chapter %n"/> + </l:context> + </l:l10n> +</l:i18n> + +</xsl:stylesheet> + +With this stylesheet, the cross references in the following document: + +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN" + "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd"> +<book id="book"><title>Book</title> + +<preface> +<title>Preface</title> + +<para>Normal: <xref linkend="ch1"/>.</para> +<para>Title: <xref xrefstyle="title" linkend="ch1"/>.</para> + +</preface> + +<chapter id="ch1"> +<title>First Chapter</title> + +<para>Irrelevant.</para> + +</chapter> +</book> + +will appear as: + + +Normal: Chapter 1. +Title: Chapter 1, First Chapter. + + + + diff --git a/docbook-xsl-1.76.1/params/use.role.for.mediaobject.xml b/docbook-xsl-1.76.1/params/use.role.for.mediaobject.xml new file mode 100644 index 0000000..9241ace --- /dev/null +++ b/docbook-xsl-1.76.1/params/use.role.for.mediaobject.xml @@ -0,0 +1,56 @@ + + +use.role.for.mediaobject +boolean + + +use.role.for.mediaobject +Use role attribute +value for selecting which of several objects within a mediaobject to use. + + + + + + + + + +Description + +If non-zero, the role attribute on +imageobjects or other objects within a mediaobject container will be used to select which object will be +used. + + +The order of selection when then parameter is non-zero is: + + + + If the stylesheet parameter preferred.mediaobject.role has a value, then the object whose role equals that value is selected. + + +Else if an object's role attribute has a value of +html for HTML processing or +fo for FO output, then the first +of such objects is selected. + + + +Else the first suitable object is selected. + + + +If the value of +use.role.for.mediaobject +is zero, then role attributes are not considered +and the first suitable object +with or without a role value is used. + + + diff --git a/docbook-xsl-1.76.1/params/use.svg.xml b/docbook-xsl-1.76.1/params/use.svg.xml new file mode 100644 index 0000000..8f13be0 --- /dev/null +++ b/docbook-xsl-1.76.1/params/use.svg.xml @@ -0,0 +1,30 @@ + + +use.svg +boolean + + +use.svg +Allow SVG in the result tree? + + + + + + + + +Description + +If non-zero, SVG will be considered an acceptable image format. SVG +is passed through to the result tree, so correct rendering of the resulting +diagram depends on the formatter (FO processor or web browser) that is used +to process the output from the stylesheet. + + + diff --git a/docbook-xsl-1.76.1/params/variablelist.as.blocks.xml b/docbook-xsl-1.76.1/params/variablelist.as.blocks.xml new file mode 100644 index 0000000..71e1c98 --- /dev/null +++ b/docbook-xsl-1.76.1/params/variablelist.as.blocks.xml @@ -0,0 +1,62 @@ + + +variablelist.as.blocks +boolean + + +variablelist.as.blocks +Format variablelists lists as blocks? + + + + + + + + +Description + +If non-zero, variablelists will be formatted as +blocks. + +If you have long terms, proper list markup in the FO case may produce +unattractive lists. By setting this parameter, you can force the stylesheets +to produce block markup instead of proper lists. + +You can override this setting with a processing instruction as the +child of variablelist: dbfo +list-presentation="blocks" or dbfo +list-presentation="list". + +When using list-presentation="list", +you can also control the amount of space used for the terms with +the dbfo term-width=".25in" processing instruction, +the termlength attribute on variablelist, +or allow the stylesheets to attempt to calculate the amount of space to leave based on the +number of letters in the longest term. + + + <variablelist> + <?dbfo list-presentation="list"?> + <?dbfo term-width="1.5in"?> + <?dbhtml list-presentation="table"?> + <?dbhtml term-width="1.5in"?> + <varlistentry> + <term>list</term> + <listitem> + <para> + Formatted as a list even if variablelist.as.blocks is set to 1. + </para> + </listitem> + </varlistentry> + </variablelist> + + + + + diff --git a/docbook-xsl-1.76.1/params/variablelist.as.table.xml b/docbook-xsl-1.76.1/params/variablelist.as.table.xml new file mode 100644 index 0000000..113d2f5 --- /dev/null +++ b/docbook-xsl-1.76.1/params/variablelist.as.table.xml @@ -0,0 +1,54 @@ + + +variablelist.as.table +boolean + + +variablelist.as.table +Format variablelists as tables? + + + + + + + + +Description + +If non-zero, variablelists will be formatted as +tables. A processing instruction exists to specify a particular width for the +column containing the terms: +dbhtml term-width=".25in" + +You can override this setting with a processing instruction as the +child of variablelist: dbhtml +list-presentation="table" or dbhtml +list-presentation="list". + +This parameter only applies to the HTML transformations. In the +FO case, proper list markup is robust enough to handle the formatting. +But see also variablelist.as.blocks. + + <variablelist> + <?dbhtml list-presentation="table"?> + <?dbhtml term-width="1.5in"?> + <?dbfo list-presentation="list"?> + <?dbfo term-width="1in"?> + <varlistentry> + <term>list</term> + <listitem> + <para> + Formatted as a table even if variablelist.as.table is set to 0. + </para> + </listitem> + </varlistentry> + </variablelist> + + + diff --git a/docbook-xsl-1.76.1/params/variablelist.max.termlength.xml b/docbook-xsl-1.76.1/params/variablelist.max.termlength.xml new file mode 100644 index 0000000..ff56a87 --- /dev/null +++ b/docbook-xsl-1.76.1/params/variablelist.max.termlength.xml @@ -0,0 +1,46 @@ + + +variablelist.max.termlength +number + + +variablelist.max.termlength +Specifies the longest term in variablelists + + + + +24 + + + +Description + +In variablelists, the listitem +is indented to leave room for the +term elements. That indent may be computed +if it is not specified with a termlength +attribute on the variablelist element. + + +The computation counts characters in the +term elements in the list +to find the longest term. However, some terms are very long +and would produce extreme indents. This parameter lets you +set a maximum character count. Any terms longer than the maximum +would line wrap. The default value is 24. + + +The character counts are converted to physical widths +by multiplying by 0.50em. There will be some variability +in how many actual characters fit in the space +since some characters are wider than others. + + + + diff --git a/docbook-xsl-1.76.1/params/variablelist.term.break.after.xml b/docbook-xsl-1.76.1/params/variablelist.term.break.after.xml new file mode 100644 index 0000000..8472f5e --- /dev/null +++ b/docbook-xsl-1.76.1/params/variablelist.term.break.after.xml @@ -0,0 +1,39 @@ + + +variablelist.term.break.after +boolean + + +variablelist.term.break.after +Generate line break after each term within a +multi-term varlistentry? + + + + +0 + + +Description + +Set a non-zero value for the +variablelist.term.break.after parameter to +generate a line break between terms in a +multi-term varlistentry. + + +If you set a non-zero value for +variablelist.term.break.after, you may also +want to set the value of the +variablelist.term.separator parameter to an +empty string (to suppress rendering of the default comma and space +after each term). + + + + diff --git a/docbook-xsl-1.76.1/params/variablelist.term.properties.xml b/docbook-xsl-1.76.1/params/variablelist.term.properties.xml new file mode 100644 index 0000000..4a4835d --- /dev/null +++ b/docbook-xsl-1.76.1/params/variablelist.term.properties.xml @@ -0,0 +1,29 @@ + + +variablelist.term.properties +attribute set + + +variablelist.term.properties +To add properties to the term elements in a variablelist. + + + + + + + + +Description +These properties are added to the block containing a +term in a variablelist. +Use this attribute-set to set +font properties or alignment, for example. + + + diff --git a/docbook-xsl-1.76.1/params/variablelist.term.separator.xml b/docbook-xsl-1.76.1/params/variablelist.term.separator.xml new file mode 100644 index 0000000..f3df883 --- /dev/null +++ b/docbook-xsl-1.76.1/params/variablelist.term.separator.xml @@ -0,0 +1,40 @@ + + +variablelist.term.separator +string + + +variablelist.term.separator +Text to separate terms within a multi-term +varlistentry + + + + +, + + +Description + +When a varlistentry contains multiple term +elements, the string specified in the value of the +variablelist.term.separator parameter is placed +after each term except the last. + + + To generate a line break between multiple terms in + a varlistentry, set a non-zero value for the + variablelist.term.break.after parameter. If + you do so, you may also want to set the value of the + variablelist.term.separator parameter to an + empty string (to suppress rendering of the default comma and space + after each term). + + + + diff --git a/docbook-xsl-1.76.1/params/verbatim.properties.xml b/docbook-xsl-1.76.1/params/verbatim.properties.xml new file mode 100644 index 0000000..28a368a --- /dev/null +++ b/docbook-xsl-1.76.1/params/verbatim.properties.xml @@ -0,0 +1,38 @@ + + +verbatim.properties +attribute set + + +verbatim.properties +Properties associated with verbatim text + + + + + + 0.8em + 1em + 1.2em + 0.8em + 1em + 1.2em + false + no-wrap + false + preserve + preserve + start + + + +Description +This attribute set is used on all verbatim environments. + + + diff --git a/docbook-xsl-1.76.1/params/wordml.template.xml b/docbook-xsl-1.76.1/params/wordml.template.xml new file mode 100644 index 0000000..4dae8a8 --- /dev/null +++ b/docbook-xsl-1.76.1/params/wordml.template.xml @@ -0,0 +1,29 @@ + + +wordml.template +uri + + +wordml.template +Specify the template WordML document + + + + + + + + +Description + +The wordml.template parameter specifies a WordML document to use as a template for the generated document. The template document is used to define the (extensive) headers for the generated document, in particular the paragraph and character styles that are used to format the various elements. Any content in the template document is ignored. + +A template document is used in order to allow maintenance of the paragraph and character styles to be done using Word itself, rather than these XSL stylesheets. + + + diff --git a/docbook-xsl-1.76.1/params/writing.mode.xml b/docbook-xsl-1.76.1/params/writing.mode.xml new file mode 100644 index 0000000..c695933 --- /dev/null +++ b/docbook-xsl-1.76.1/params/writing.mode.xml @@ -0,0 +1,83 @@ + + +writing.mode +string + + +writing.mode +Direction of text flow based on locale + + + + + + + writing-mode + + + + + + + + + + +Description + +Sets direction of text flow and text alignment based on locale. +The value is normally taken from the gentext file for the +lang attribute of the document's root element, using the +key name 'writing-mode' to look it up in the gentext file. +But the param can also be +set on the command line to override that gentext value. + +Accepted values are: + + + lr-tb + + Left-to-right text flow in each line, lines stack top to bottom. + + + + rl-tb + + Right-to-left text flow in each line, lines stack top to bottom. + + + + tb-rl + + Top-to-bottom text flow in each vertical line, lines stack right to left. + Supported by only a few XSL-FO processors. Not supported in HTML output. + + + + lr + + Shorthand for lr-tb. + + + + rl + + Shorthand for rl-tb. + + + + tb + + Shorthand for tb-rl. + + + + + + + diff --git a/docbook-xsl-1.76.1/params/xbCollapsibleLists.js.xml b/docbook-xsl-1.76.1/params/xbCollapsibleLists.js.xml new file mode 100644 index 0000000..b30391f --- /dev/null +++ b/docbook-xsl-1.76.1/params/xbCollapsibleLists.js.xml @@ -0,0 +1,28 @@ + + +xbCollapsibleLists.js +filename + + +xbCollapsibleLists.js +xbCollapsibleLists JavaScript file + + + + +xbCollapsibleLists.js + + + +Description + +Specifies the filename of the xbCollapsibleLists JavaScript file. It's unlikely +that you will ever need to change this parameter. + + + diff --git a/docbook-xsl-1.76.1/params/xbDOM.js.xml b/docbook-xsl-1.76.1/params/xbDOM.js.xml new file mode 100644 index 0000000..a699e9c --- /dev/null +++ b/docbook-xsl-1.76.1/params/xbDOM.js.xml @@ -0,0 +1,28 @@ + + +xbDOM.js +filename + + +xbDOM.js +xbDOM JavaScript file + + + + +xbDOM.js + + + +Description + +Specifies the filename of the xbDOM JavaScript file. It's unlikely +that you will ever need to change this parameter. + + + diff --git a/docbook-xsl-1.76.1/params/xbLibrary.js.xml b/docbook-xsl-1.76.1/params/xbLibrary.js.xml new file mode 100644 index 0000000..fe2d8fe --- /dev/null +++ b/docbook-xsl-1.76.1/params/xbLibrary.js.xml @@ -0,0 +1,28 @@ + + +xbLibrary.js +filename + + +xbLibrary.js +xbLibrary JavaScript file + + + + +xbLibrary.js + + + +Description + +Specifies the filename of the xbLibrary JavaScript file. It's unlikely +that you will ever need to change this parameter. + + + diff --git a/docbook-xsl-1.76.1/params/xbStyle.js.xml b/docbook-xsl-1.76.1/params/xbStyle.js.xml new file mode 100644 index 0000000..b587573 --- /dev/null +++ b/docbook-xsl-1.76.1/params/xbStyle.js.xml @@ -0,0 +1,28 @@ + + +xbStyle.js +filename + + +xbStyle.js +xbStyle JavaScript file + + + + +xbStyle.js + + + +Description + +Specifies the filename of the xbStyle JavaScript file. It's unlikely +that you will ever need to change this parameter. + + + diff --git a/docbook-xsl-1.76.1/params/xep.extensions.xml b/docbook-xsl-1.76.1/params/xep.extensions.xml new file mode 100644 index 0000000..8ac2520 --- /dev/null +++ b/docbook-xsl-1.76.1/params/xep.extensions.xml @@ -0,0 +1,31 @@ + + +xep.extensions +boolean + + +xep.extensions +Enable XEP extensions? + + + + + + +Description + +If non-zero, +XEP +extensions will be used. XEP extensions consists of PDF bookmarks, +document information and better index processing. + + +This parameter can also affect which graphics file formats +are supported + + diff --git a/docbook-xsl-1.76.1/params/xep.index.item.properties.xml b/docbook-xsl-1.76.1/params/xep.index.item.properties.xml new file mode 100644 index 0000000..b1db129 --- /dev/null +++ b/docbook-xsl-1.76.1/params/xep.index.item.properties.xml @@ -0,0 +1,36 @@ + + +xep.index.item.properties +attribute set + + +xep.index.item.properties +Properties associated with XEP index-items + + + + + + true + true + + + + +Description + +Properties associated with XEP index-items, which generate +page numbers in an index processed by XEP. For more info see +the XEP documentation section "Indexes" in +http://www.renderx.com/reference.html#Indexes. + +This attribute-set also adds by default any properties from the +index.page.number.properties +attribute-set. + + diff --git a/docbook-xsl-1.76.1/params/xref.label-page.separator.xml b/docbook-xsl-1.76.1/params/xref.label-page.separator.xml new file mode 100644 index 0000000..355fc4a --- /dev/null +++ b/docbook-xsl-1.76.1/params/xref.label-page.separator.xml @@ -0,0 +1,38 @@ + + +xref.label-page.separator +string + + +xref.label-page.separator +Punctuation or space separating label from page number in xref + + + + + + +Description + + +This parameter allows you to control the punctuation of certain +types of generated cross reference text. +When cross reference text is generated for an +xref or +olink element +using an xrefstyle attribute +that makes use of the select: feature, +and the selected components include both label and page +but no title, +then the value of this parameter is inserted between +label and page number in the output. +If a title is included, then other separators are used. + + + + diff --git a/docbook-xsl-1.76.1/params/xref.label-title.separator.xml b/docbook-xsl-1.76.1/params/xref.label-title.separator.xml new file mode 100644 index 0000000..3d6e222 --- /dev/null +++ b/docbook-xsl-1.76.1/params/xref.label-title.separator.xml @@ -0,0 +1,36 @@ + + +xref.label-title.separator +string + + +xref.label-title.separator +Punctuation or space separating label from title in xref + + + +: + + +Description + + +This parameter allows you to control the punctuation of certain +types of generated cross reference text. +When cross reference text is generated for an +xref or +olink element +using an xrefstyle attribute +that makes use of the select: feature, +and the selected components include both label and title, +then the value of this parameter is inserted between +label and title in the output. + + + + diff --git a/docbook-xsl-1.76.1/params/xref.properties.xml b/docbook-xsl-1.76.1/params/xref.properties.xml new file mode 100644 index 0000000..6438f6c --- /dev/null +++ b/docbook-xsl-1.76.1/params/xref.properties.xml @@ -0,0 +1,29 @@ + + +xref.properties +attribute set + + +xref.properties +Properties associated with cross-reference text + + + + + + + + + +Description + +This attribute set is used to set properties +on cross reference text. + + + diff --git a/docbook-xsl-1.76.1/params/xref.title-page.separator.xml b/docbook-xsl-1.76.1/params/xref.title-page.separator.xml new file mode 100644 index 0000000..32ef9f1 --- /dev/null +++ b/docbook-xsl-1.76.1/params/xref.title-page.separator.xml @@ -0,0 +1,36 @@ + + +xref.title-page.separator +string + + +xref.title-page.separator +Punctuation or space separating title from page number in xref + + + + + + +Description + + +This parameter allows you to control the punctuation of certain +types of generated cross reference text. +When cross reference text is generated for an +xref or +olink element +using an xrefstyle attribute +that makes use of the select: feature, +and the selected components include both title and page number, +then the value of this parameter is inserted between +title and page number in the output. + + + + diff --git a/docbook-xsl-1.76.1/params/xref.with.number.and.title.xml b/docbook-xsl-1.76.1/params/xref.with.number.and.title.xml new file mode 100644 index 0000000..06fcc7e --- /dev/null +++ b/docbook-xsl-1.76.1/params/xref.with.number.and.title.xml @@ -0,0 +1,30 @@ + + +xref.with.number.and.title +boolean + + +xref.with.number.and.title +Use number and title in cross references + + + + + + + + +Description + +A cross reference may include the number (for example, the number of +an example or figure) and the title which is a required child of some +targets. This parameter inserts both the relevant number as well as +the title into the link. + + + diff --git a/docbook-xsl-1.76.1/profiling/profile-mode.xsl b/docbook-xsl-1.76.1/profiling/profile-mode.xsl new file mode 100644 index 0000000..c02132a --- /dev/null +++ b/docbook-xsl-1.76.1/profiling/profile-mode.xsl @@ -0,0 +1,239 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/profiling/profile.xsl b/docbook-xsl-1.76.1/profiling/profile.xsl new file mode 100644 index 0000000..b188fbb --- /dev/null +++ b/docbook-xsl-1.76.1/profiling/profile.xsl @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + 0 + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/profiling/strip-attributes.xsl b/docbook-xsl-1.76.1/profiling/strip-attributes.xsl new file mode 100644 index 0000000..d6f55fb --- /dev/null +++ b/docbook-xsl-1.76.1/profiling/strip-attributes.xsl @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/profiling/xsl2profile.xsl b/docbook-xsl-1.76.1/profiling/xsl2profile.xsl new file mode 100644 index 0000000..b6648aa --- /dev/null +++ b/docbook-xsl-1.76.1/profiling/xsl2profile.xsl @@ -0,0 +1,159 @@ + + + + + + + + + + + + + This file was created automatically by xsl2profile + from the DocBook XSL stylesheets. + + + + + + + dummy + dummy + dummy + + exslt + + + exslt + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Note: namesp. cut : stripped namespace before processing + + + + Note: namesp. cut : processing stripped document + + + + + + + + + + + + + + + + + + + + + + + + + + + $profiled-nodes + + + $profiled-nodes + + + + + + + + + + + + + + + + + + + key('id',$rootid) + $profiled-nodes//*[@id=$rootid] + + + + + + + + + + + + + + + + + $profiled-nodes/node() + + + + + + + + false() + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/roundtrip/blocks-spec.xml b/docbook-xsl-1.76.1/roundtrip/blocks-spec.xml new file mode 100644 index 0000000..d8ab005 --- /dev/null +++ b/docbook-xsl-1.76.1/roundtrip/blocks-spec.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/roundtrip/blocks2dbk.dtd b/docbook-xsl-1.76.1/roundtrip/blocks2dbk.dtd new file mode 100644 index 0000000..4d1ea04 --- /dev/null +++ b/docbook-xsl-1.76.1/roundtrip/blocks2dbk.dtd @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/roundtrip/blocks2dbk.xsl b/docbook-xsl-1.76.1/roundtrip/blocks2dbk.xsl new file mode 100644 index 0000000..e14999f --- /dev/null +++ b/docbook-xsl-1.76.1/roundtrip/blocks2dbk.xsl @@ -0,0 +1,1732 @@ + + +%ext; +]> + + + + + + + + + + + + + 0 + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + style "" is not a valid list style + + + + + + + + + + list-wrong-level + list started at the wrong level + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + improper-blockquote-attribution + blockquote attribution must follow a blockquote title + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + formalpara-notitle + formalpara used without a title + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + bad-caption + caption does not follow table or figure + + + + + + + + + + + + + + unknown-style + unknown paragraph style "" encountered + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + imagedata-metadata missing value for attribute " + + " + + + + + + + + + + + + 1 + 0 + + + + + + + + + + + + + + imagedata-metadata unknown attribute " + + " + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + bold + + + + + + + + underline + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + unknown-style + unknown character span style "" encountered + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + bad-metadata + style "" must not be metadata for parent "" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + bad-author-orgname-combo + character span "" not allowed in an author paragraph combined with orgname + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + bad-titleabbrev + titleabbrev style "" mismatches parent "" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + bad-title + title style "" mismatches parent "" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + bad-subtitle + subtitle style "" mismatches parent "" + + + + + + + + + + bad-publisher-address + publisher-address must follow publisher + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + bad-author-inline + character span "" not allowed in an author paragraph + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + metadata-bad-inline + character span "" not allowed in author metadata + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR "": + + + + + + + + + + + + + + + + WARNING "": + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/roundtrip/dbk2ooo.xsl b/docbook-xsl-1.76.1/roundtrip/dbk2ooo.xsl new file mode 100644 index 0000000..dc7303f --- /dev/null +++ b/docbook-xsl-1.76.1/roundtrip/dbk2ooo.xsl @@ -0,0 +1,178 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/roundtrip/dbk2pages.xsl b/docbook-xsl-1.76.1/roundtrip/dbk2pages.xsl new file mode 100644 index 0000000..f473555 --- /dev/null +++ b/docbook-xsl-1.76.1/roundtrip/dbk2pages.xsl @@ -0,0 +1,441 @@ + + + + + + + + + + + + + + + + + + + + + + + + + Please specify the template document with the "pages.template" parameter + + + Unable to open template document "" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + DocBookRoundtrip-1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + email + + + + + + + + + + + + + + + + + + + + + + + + + SFTTableAttachment- + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + attribute-name + + + + + + + + attribute-value + + + + + + + + + + + + + para + + + + + + + + unable to find paragraph style "" + + + + + + + + + unable to find character style "" + + + + + diff --git a/docbook-xsl-1.76.1/roundtrip/dbk2wordml.xsl b/docbook-xsl-1.76.1/roundtrip/dbk2wordml.xsl new file mode 100644 index 0000000..07bd08d --- /dev/null +++ b/docbook-xsl-1.76.1/roundtrip/dbk2wordml.xsl @@ -0,0 +1,401 @@ + + + + + + + + + + + + + + + + + + + + + Please specify the template document with the "wordml.template" parameter + + + Unable to open template document "" + + + + progid="Word.Document" + + + + + + + + preserve + + + + + + + + Unknown + + + + + + + + + + + Unknown + + + 1 + + + + 2004-01-01T07:07:00Z + 2004-01-01T08:08:00Z + + 1 + 1 + 1 + + + DocBook + + 1 + 1 + 1 + 11.6113 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + = + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/roundtrip/dbk2wp.xsl b/docbook-xsl-1.76.1/roundtrip/dbk2wp.xsl new file mode 100644 index 0000000..671c58f --- /dev/null +++ b/docbook-xsl-1.76.1/roundtrip/dbk2wp.xsl @@ -0,0 +1,1375 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + section nested deeper than 5 levels + + sect5- + + + + sect + + - + + + + + - + + + + + - + + + + + + + + + + + + + + Metadata + + TODO: Handle all metadata elements, apart from titles. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + abstract + + + + + + + + + + + + + + + + + + + + + + + + + + + mailto: + + + + + + + + + Hyperlink + + + + + + + + + + + + + + + otheraddr + + + + + + otheraddr + + + + + + + + + otheraddr + + + + + + otheraddr + + + + + + + + + + Hyperlink + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + para + + + + + + + + + + + + + + + Normal + + + + + + + + + + + + + + Normal + + + + + + + + + + + + + + + + simpara + + + + + + + + + + 1 + 0 + + + + + 1 + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Text Object + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Caption + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + [ + + ] + + encountered + + in + + + , but no template matches. + + + + + + + + + + + + + [ + + ] + + encountered + + in + + + , but no template matches. + + + + + + + + + + + + encountered + + in + + + , but no template matches. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARNING: + + + diff --git a/docbook-xsl-1.76.1/roundtrip/normalise-common.xsl b/docbook-xsl-1.76.1/roundtrip/normalise-common.xsl new file mode 100644 index 0000000..83a16b3 --- /dev/null +++ b/docbook-xsl-1.76.1/roundtrip/normalise-common.xsl @@ -0,0 +1,39 @@ + + + + + + + + + + + + caption + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/roundtrip/normalise2sections.xsl b/docbook-xsl-1.76.1/roundtrip/normalise2sections.xsl new file mode 100644 index 0000000..51bd9f5 --- /dev/null +++ b/docbook-xsl-1.76.1/roundtrip/normalise2sections.xsl @@ -0,0 +1,1270 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/roundtrip/pages2normalise.xsl b/docbook-xsl-1.76.1/roundtrip/pages2normalise.xsl new file mode 100644 index 0000000..35250a0 --- /dev/null +++ b/docbook-xsl-1.76.1/roundtrip/pages2normalise.xsl @@ -0,0 +1,351 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + bold + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + cannot determine number of rows in table + cannot determine number of rows in table + + + cannot determine number of columns in table + cannot determine number of columns in table + + + + + + + all + + + topbot + + + sides + + + top + + + bottom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARNING: insufficient table cells + WARNING: insufficient table cells (num-rows , row ) + + + WARNING: excess table cells + WARNING: excess table cells (num-rows , row ) + + + + + + + + + + + + + + + + + + + + + + 1 + + + + + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + element "" not handled + + + + + + + + + + + + + superscript + subscript + + + + + + diff --git a/docbook-xsl-1.76.1/roundtrip/param.xml b/docbook-xsl-1.76.1/roundtrip/param.xml new file mode 100644 index 0000000..ae14800 --- /dev/null +++ b/docbook-xsl-1.76.1/roundtrip/param.xml @@ -0,0 +1,105 @@ + + + + Roundtrip Parameter Reference + + $Id: param.xweb 7042 2007-07-17 04:28:48Z xmldoc $ + + + + Ball + Steve + + + + 2007 + 2006 + 2005 + 2004 + Steve Ball + + + This is reference documentation for all user-configurable + parameters in the DocBook “Roundtrip” Stylesheets (for + transforming DocBook to WordML, OpenDocument, and Apple Pages, + and for converting from those formats back to DocBook). + + + + Parameters + + +wordml.template +uri + + +wordml.template +Specify the template WordML document + + + + +<xsl:param name="wordml.template"></xsl:param> + + + +Description + +The wordml.template parameter specifies a WordML document to use as a template for the generated document. The template document is used to define the (extensive) headers for the generated document, in particular the paragraph and character styles that are used to format the various elements. Any content in the template document is ignored. + +A template document is used in order to allow maintenance of the paragraph and character styles to be done using Word itself, rather than these XSL stylesheets. + + + + + + +pages.template +uri + + +pages.template +Specify the template Pages document + + + + +<xsl:param name="pages.template"></xsl:param> + + + +Description + +The pages.template parameter specifies a Pages (the Apple word processing application) document to use as a template for the generated document. The template document is used to define the (extensive) headers for the generated document, in particular the paragraph and character styles that are used to format the various elements. Any content in the template document is ignored. + +A template document is used in order to allow maintenance of the paragraph and character styles to be done using Pages itself, rather than these XSL stylesheets. + + + + + + + The Stylesheet + The param.xsl stylesheet is just a + wrapper around all of these parameters. + +<xsl:stylesheet exclude-result-prefixes="src" version="1.0"> + +<!-- This file is generated from param.xweb --> + +<!-- ******************************************************************** + $Id: param.xweb 7042 2007-07-17 04:28:48Z xmldoc $ + ******************************************************************** + + This file is part of the XSL DocBook Stylesheet distribution. + See ../README or http://docbook.sf.net/release/xsl/current/ for + copyright and other information. + + ******************************************************************** --> + +<src:fragref linkend="wordml.template.frag"></src:fragref> +<src:fragref linkend="pages.template.frag"></src:fragref> +</xsl:stylesheet> + + + diff --git a/docbook-xsl-1.76.1/roundtrip/param.xsl b/docbook-xsl-1.76.1/roundtrip/param.xsl new file mode 100644 index 0000000..6cd1b03 --- /dev/null +++ b/docbook-xsl-1.76.1/roundtrip/param.xsl @@ -0,0 +1,18 @@ + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/roundtrip/sections-spec.xml b/docbook-xsl-1.76.1/roundtrip/sections-spec.xml new file mode 100644 index 0000000..6c86d52 --- /dev/null +++ b/docbook-xsl-1.76.1/roundtrip/sections-spec.xml @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/roundtrip/sections2blocks.xsl b/docbook-xsl-1.76.1/roundtrip/sections2blocks.xsl new file mode 100644 index 0000000..d0fe069 --- /dev/null +++ b/docbook-xsl-1.76.1/roundtrip/sections2blocks.xsl @@ -0,0 +1,263 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/roundtrip/specifications.xml b/docbook-xsl-1.76.1/roundtrip/specifications.xml new file mode 100644 index 0000000..85db866 --- /dev/null +++ b/docbook-xsl-1.76.1/roundtrip/specifications.xml @@ -0,0 +1,1420 @@ + +
    + + Round-Tripping Specifications + + Bob + Stayton + + Sagehill Enterprises + + + + Steve + Ball + + Explain + + + + + 1.8 + 2008-05-22 + SRB + Updated for current implementation. + + + 1.7 + 2008-02-22 + SRB + Added edition. + + + 1.6 + 2007-10-19 + SRB + Added keyword. + + + 1.5 + 2007-01-05 + SRB + Reduce emphasis on WordML, add support for OpenOffice. + + + 1.4 + 2005-11-11 + SRB + Added bibliography. + + + 1.3 + 2005-10-31 + SRB + Added mediaobjectco, imageobjectco, programlistingco, areaspec, area, calloutlist. + + + 1.2 + 2005-10-13 + SRB + Version prior to using revhistory. + + + + + This document specifies how DocBook elements are mapped to paragraph and character styles in a word processor. The specifications are used to write conversions between DocBook XML and word processor XML formats, such as Microsoft's WordProcessingML (WordML), OpenOffice's OpenDocument and Apple's Pages. + +
    + Introduction + Microsoft Word 2003 introduced WordProcessingML (WordML), an XML vocabulary for Word documents. Since then, other popular word processors have become available that use XML as their data representation, namely Apple's Pages and OpenOffice. By converting Word (or OpenOffice or Pages) to XML, it becomes possible to convert a word processing document to DocBook and vice versa using XSL transformations. Such conversions then enable the following. + + + DocBook content creators write in their familiar wordprocessing application, rather than learning a new XML editing application. + + + DocBook XML documents can be styled for output using the typesetting features of the word processor. + + + Word processors have a simple, flat data model; documents consist of paragraphs (and tables) and paragraphs contain text and character spans. All word processors allow styles to be associated with paragraphs and spans. + This specification describes how DocBook elements map to a set of paragraph and character styles. It defines a specific set of style names for which a Word style template can be created. The style names are also used in XSLT template match patterns for conversion. Although originally targetted to MS Word, the system has subsequently been extended to use other word processors, notably Apple's Pages and Open Office. +
    +
    + Project goals + The goal of this project is to enable a word processor, such as, but not limited to, Microsoft Word, to be used with DocBook files. The specific goals include: + + + Enable authoring of basic DocBook documents in the word processor. + + + Enable importing of basic DocBook XML documents into the word processor. + + + To meet these goals, the project provides a toolkit that can be immediately put to use. The kit includes: + + + Templates for Microsoft Word, Apple Pages and Open Office with formatting styles attached to the style names. + + + XSLT stylesheets that convert a word processing document that is authored with the corresponding template into a DocBook XML file. + + + XSLT stylesheets that convert a DocBook document into a word processing document that can be opened in a word processor. + + +
    + Why basic DocBook? + This project will never be able to support all DocBook elements and structure. Take, for example, the address element. This element can be used both as a block element for metadata. It can also be used as a phrase level element in a block parent, such as the affiliation element. To make matters worse, it can itself contain phrase level markup, such as personname. No word processor allows character styles to be nested. + The project will initially focus on a basic set of commonly used DocBook elements in order to create a useful editing environment that utilises a word processor with DocBook. + One problem facing this conversion project is the sheer number of DocBook elements, over 400 in DocBook 5.0. To support DocBook structural models, several of the elements require more than one paragraph or character style. This would lead to very long and unwieldy list of styles in the word processor interface. That would make authoring less efficient and discourage users. + Accordingly, this project assumes that authors who need the full set of DocBook elements and structures will use an XML authoring tool that better supports them. This project is focused on authors who wish to write basic DocBook documents using a word processor. Because Microsoft Word is so widespread, it is hoped that this project will help a lot of new DocBook users get started with familiar tools. They can then graduate to more advanced tools as their needs develop. +
    +
    +
    + Project Non-Goals + The following goals are not in the scope of this project: + + + Support of versions of Word that do not feature reading/writing WordML (XML). That is, all versions prior to Word 11 (Office 2003). + + + Support of arbitrarily defined styles. This system may expect certain styles to be defined in a particular fashion (in particular, those defining the title of components and divisions). + + +
    +
    + Mapping elements to styles + Although WordML, OpenDocument and DocBook are all XML, there several challenges when trying to convert between them. + The basic problem in mapping paragraph/character styles to DocBook elements is that word processor documents support far less structure than DocBook. DocBook permits nesting of elements within other elements, providing multiple levels of context for each element. + Word's only structural feature is the outlining mode. In Word outlining, certain paragraph styles are assigned outline levels. When a user applies those styles, they effectively create logical structure in the Word document. Unfortunately, Word itself attempts to automatically determine which paragraphs are headings, rendering this method is unreliable. + Instead of relying on Word's built-in outlining mode, this system uses only the names of paragraph styles to determine document structure. Certain heuristics are applied to build the DocBook element structure from the (relatively flat) word processing structure. Titles and other features are used to mark the beginning of a structure and all paragraphs following that are included in that structure until the beginning of the next structure is found. That is, the beginning of one structure marks the end of the previous structure. + Problems may arise when a structure should end, but there is no word processor feature that marks the endpoint. To mark the end of a feature an empty paragraph is used. + Nesting of block elements is another commonly used feature of DocBook. It is not possible to use Word's outline mode for blocks if it is being used for components and sections. So in this specification, nesting of block elements is indicated by adding a number suffix to a style. So a paragraph with style orderedlist2 is considered to be contained within a preceding paragraph with style orderedlist1 or itemizedlist1. Where appropriate in the word processor, paragraph indent levels are used to visually indicate nesting of blocks. + Nesting of inline DocBook elements is particularly difficult to support because word processors do not nest character styles. That means a nested inline would require a separate character style to indicate the parent-child relationship. Given the large number of combinations possible, a prohibitively large number of character styles would have to be created. In this project, nesting of character styles is not supported. Nested inlines being imported from DocBook will be converted to a sequence of single-name character styles, where possible, or rejected. + In many cases, DocBook structure can be derived from the flat sequence of paragraphs based on sibling relationships. For example, when a paragraph styled as para is followed by a paragraph styled as itemizedlist1, the conversion to DocBook will output a para element and then start an itemizedlist element, with the second paragraph as its first listitem. All itemizedlist1 paragraphs that follow without interruption are inserted into the same itemizedlist element. + Some combinations of elements cannot be supported (at least not with the techniques as described in this document). An example is informalexample and its permitted content; there is no title to mark the beginning of the element and no marker for the end of the element, also there are too many parent-child combinations to reasonably define style names. + The design principles used in this project for selecting paragraph/character style names are as follows: + + + Where Word (or OpenOffice or Pages), by default, has a style or feature that corresponds directly to a DocBook element then that style or feature will be used (and documented in this document). For example, the Normal paragraph style maps to a DocBook para element, and a Word table (w:tbl) maps to a DocBook tableIn some cases Word may posess a feature, but it doesn't function in an acceptable manner. For example, lists. In these cases the feature is to be avoided, and a workaround provided.. + + + Paragraph and character style names will match DocBook element names as much as possible. This will enable authors to learn DocBook element names and help debug problems with conversion. + + + A style may indicate a parent-child relationship, but the paragraph for such an element may only occur after a paragraph that denotes the beginning of the parent structure. In this case the element name is used as the style name. For example, a personblurb paragraph may only occur after an author, editor or othercontrib paragraph. If a paragraph occurs without the appropriate preceding paragraph, then an error is signalled. + + + Some styles may also indicate a parent-child relationship, but either the parent structure is ambiguous or the paragraph starts the parent structure. For example, chapter-title indicates that the paragraph is a title element whose DocBook parent is a chapter element. + + + Some style names are simplified to make them easier to use in the word processor. For example, a paragraph in an orderedlist requires three elements in DocBook: orderedlist, listitem, and para. The paragraph style name in Word is shortened from orderedlist-listitem-para to just orderedlist1 (for a first level list). In the case of lists (see below), the list level is appended, which is why this example becomes orderedlist1. + + + Style names with a number suffix indicate a nesting level, as described above. + + + Style names with continue indicate that the paragraph is part of the preceding element. For example, a para paragraph is used for a single paragraph para element. This causes any preceding list to be closed. If a list item in the preceding list is to contain more than one paragraph, then the subsequent paragraphs in the word processor documentmust use the para-continue style. + + + Character styles map to elements that are children of the element for the paragraph, hence there is no need to encode parent-child relationships. For example, a surname character style in an author paragraph becomes a surname child element of the author element. + + + Empty paragraph and character styles are ignored. This can be useful to end structures. + + + The first paragraph style in the word processor document is used to define the root element of the DocBook document. For example, if the document starts with book-title, then the DocBook document will have book element as its root element. All the rest of the document content will be contained in that root element. + + + Sequential structures are coalesced into a single parent element. For example, a sequence of itemizedlist1 paragraphs becomes a single itemizedlist element with several listitem element children. + + DocBook to Paragraph/Character Styles + + + + + + + + DocBook element + + + Style(s) + + + Comments + + + + + + + + Components and sections + + + + + + book/info/title + + + book-title + + + + + + + + book/info/subtitle + + + book-subtitle + + + + + + + + book/info/titleabbrev + + + book-titleabbrev + + + + + + + + chapter/info/title + + + chapter-title + + + Assigned Word outline level 1. + + + + + chapter/info/subtitle + + + chapter-subtitle + + + + + + + + chapter/info/titleabbrev + + + chapter-titleabbrev + + + + + + + + appendix/info/title + + + appendix-title + + + Assigned Word outline level 1. + + + + + preface/info/title + + + preface-title + + + Assigned Word outline level 1. + + + + + article/info/title + + + article-title + + + Assigned Word outline level 1. + + + + + article/info/subtitle + + + article-subtitle + + + + + + + + article/info/titleabbrev + + + article-titleabbrev + + + + + + + + bibliography/info/title + + + bibliography-title + + + Assigned Word outline level 1. + + + + + bibliography/bibliodiv/info/title + + + bibliodiv-title + + + + + + + + biblioentry/title + + + biblioentry-title + + + Metadata elements after the biblioentry-title paragraph become part of the biblioentry. + + + + + glossary/info/title + + + glossary-title + + + Assigned Word outline level 1. + + + + + index/info/title + + + index-title + + + Assigned Word outline level 1. + + + + + part/info/title + + + part-title + + + + + + + + section + + + + + + Unnumbered section elements are translated into their equivalent numbered paragraph style. Sections 6 levels and deeper are reported as an error. + + + + + sect1/info/title + + + sect1-title + + + Assigned Word outline level 2. + + + + + sect1/info/subtitle + + + sect1-subtitle + + + + + + + + sect2/info/title + + + sect2-title + + + Assigned Word outline level 3. + + + + + sect2/info/subtitle + + + sect2-subtitle + + + + + + + + sect3/info/title + + + sect3-title + + + Assigned Word outline level 4. + + + + + sect3/info/subtitle + + + sect3-subtitle + + + + + + + + sect4/info/title + + + sect4-title + + + Assigned Word outline level 5. + + + + + sect4/info/subtitle + + + sect4-subtitle + + + + + + + + sect5/info/title + + + sect5-title + + + Assigned Word outline level 6. + + + + + sect5/info/subtitle + + + sect5-subtitle + + + + + + + + simplesect/info/title + + + simplesect-title + + + + + + + + simplesect/info/subtitle + + + simplesect-subtitle + + + + + + + + bridgehead + + + bridgehead + + + + + + + + + Metadata elements + + + + + + abstract/title + + + abstract-title + + . + + + + abstract/para + + + abstract + + + + + + + + affiliation + + + affiliation + + + + + + + + address + + + address + + + + + + + + author + + + author + + + + + + + + date + + + date + + + + + + + + edition + + + edition + + + + + + + + legalnotice + + + legalnotice + + + + + + + + pubdate + + + pubdate + + + + + + + + publisher/pubishername + + + publisher + + + + + + + + publisher/address + + + publisher-address + + + + + + + + revhistory/revision + + + revision + + + + + + + + + Block-level elements + + + + + + para + + + para, Normal + + + Any Word paragraph with style Normal will also be converted to a para element. + + + + + formalpara/title + + + formalpara-title + + + + + + + + formalpara/para + + + formalpara + + + + + + + + simpara + + + simpara + + + + + + + + note/title + + + note-title + + + + + + + + note/para + + + note + + + Consecutive paragraphs with style note after the first note are to be treated as part of the same note element. That is, consecutive notes are coalesced. The note may or may not have a title. + + + + + caution/title + + + caution-title + + + + + + + + caution/para + + + caution + + + Consecutive cautions are coalesced. + + + + + warning/title + + + warning-title + + + + + + + + warning/para + + + warning + + + Consecutive warnings are coalesced. + + + + + important/title + + + important-title + + + + + + + + important/para + + + important + + + Consecutive importants are coalesced. + + + + + tip/title + + + tip-title + + + + + + + + tip/para + + + tip + + + Consecutive tips are coalesced. + + + + + itemizedlist/listitem/para + + + + itemizedlist1 +itemizedlist2 +itemizedlist3 +itemizedlist4 + + + + A number suffix indicates a nesting level within other lists. + + + + + orderedlist/listitem/para + + + + orderedlist1 +orderedlist2 +orderedlist3 +orderedlist4 + + + + + + + + + listitem/para[position() != 1] + + + para-continue + + + This paragraph is included in the immediately preceding listitem. + + + + + example/title + + + example-title + + + All content following the title is included in the example element. The end of the example content is marked by a caption paragraph or an empty paragraph if there is no caption. + + + + + figure/title + + + figure-title + + + All content following the title is included in the figure element. Metadata must immediately follow the title. The end of the figure content is marked by a caption paragraph or an empty paragraph if there is no caption. + + + + + informalfigure/mediaobject/imageobject/imagedata/@fileref + + + informalfigure-imagedata, caption + + + The content of the imageobject-imagedata paragraph is taken as the URI for the image. Metadata may immediately follow the paragraph. + + + + + mediaobject/imageobject/imagedata/@fileref + + + imageobject-imagedata, caption + + + The content of the imageobject-imagedata paragraph is taken as the URI for the image. May be followed by a caption style paragraph. Metadata may immediately follow the paragraph, before the caption, if any. + + + + + table + + + Word table, caption + + + + + + + + table/title + + + table-title, caption + + + Metadata may immediately follow the paragraph. + + + + + informaltable + + + Word table + + + A table with no title imediately preceding it. + + + + + caption + + + caption + + + + + + + + literallayout + + + literallayout + + + Inside a literallayout paragraph in Word, lines should be separated by line break (Shift-Enter) rather than paragraph break (Enter). + + + + + programlisting + + + programlisting + + + Inside a programlisting paragraph in Word, lines should be separated by line break (Shift-Enter) rather than paragraph break (Enter). Tabs are not supported. + + + + + blockquote/title + + + blockquote-title + + + Must immediately precede a blockquote paragraph in Word. + + + + + blockquote/para + + + blockquote + + + + + + + + blockquote/attribution + + + blockquote-attribution + + + Must immediately follow a blockquote paragraph in Word. + + + + + bibliomisc + + + bibliomisc + + + + + + + + + Non-DocBook elements + + + + + + xi:include + + + xinclude + + + The content of the paragraph becomes the value of the href attribute. + + + + + + Inline elements + + + + + + emphasis + + + emphasis + + + + + + + + emphasis/@role="bold" + + + emphasis-bold + + + + + + + + emphasis/@role="underline" + + + emphasis-underline + + + + + + + + footnote + + + Word footnote + + + + + + + + link + + + link + + + In Word, hyperlink properties identify the DocBook linkend. + + + + + releaseinfo + + + releaseinfo + + + + + + + + surname + + + surname + + + Character style. Must occur in an appropriate parent paragraph, such as author or editor. + + + + + firstname + + + firstname + + + Character style. Must occur in an appropriate parent paragraph, such as author or editor. + + + + + orgname + + + orgname + + + + + + + + keyword + + + keywordset/keyword + + + Paragraph style. Consecutive keyword elements are merged into a single keywordset parent element. Words (phrases) within a paragraph separated by commas become individual keyword elements. + + + + + citetitle + + + citetitle + + + + + + + + city + + + city + + + + + + + + contrib + + + contrib + + + + + + + + country + + + country + + + + + + + + email + + + email + + + + + + + + fax + + + fax + + + + + + + + honorific + + + honorific + + + + + + + + jobtitle + + + jobtitle + + + + + + + + lineage + + + lineage + + + + + + + + orgdiv + + + orgdiv + + + + + + + + otheraddr + + + otheraddr + + + + + + + + othername + + + othername + + + + + + + + phone + + + phone + + + + + + + + pob + + + pob + + + + + + + + postcode + + + postcode + + + + + + + + shortaffil + + + shortaffil + + + + + + + + state + + + state + + + + + + + +
    + + Proposed Additions - not yet implemented + + + + + + + + DocBook element + + + Style(s) + + + Comments + + + + + + + variablelist/varlistentry/term + + + + variablelist1-term +variablelist2-term +variablelist3-term +variablelist4-term + + + + A variablelist in Word should be a sequence of alternating paragraphs styled as variablelistN-term and variablelistN. + + + + + variablelist/varlistentry/listitem/para + + + + variablelist1 +variablelist2 +variablelist3 +variablelist4 + + + + Consecutive paragraphs are coalesced. + + + + +
    +
    + Attributes + Attributes are a feature of DocBook XML that have no direct counterpart in Word. + XML attributes are encoded in Word comments (annotations). Some dummy text (just a space, using a character style that includes the hidden property) anchors the comment. Within the comment text, character types are used to indicate attribute names and values (these must be paired). This approach keeps the attributes separate to the main body and allows multiple attributes to be encoded. + A disadvantage to this approach is that a paragraph may be related to more than one element, but the attributes are associated with only one element (by default the parent). For example, a section may have an attribute as well as the title child element, but only a single paragraph (with paragraph style sect1-title) represents both elements. Any attribute defined in a comment would be associated with the sect1 element. + Pages does not have annotations, so the character styles attribute-name and attribute-value are used. +
    +
    +
    diff --git a/docbook-xsl-1.76.1/roundtrip/template-pages.xml b/docbook-xsl-1.76.1/roundtrip/template-pages.xml new file mode 100644 index 0000000..cc6fc03 --- /dev/null +++ b/docbook-xsl-1.76.1/roundtrip/template-pages.xml @@ -0,0 +1,2 @@ + +Lorem ipsum dolor sit ametConsectetur adipiscing elitEset eiusmod tempor incidunt et labore et dolore magna aliquam. Ut enim ad minim veniam, quis nostrud exerc. Irure dolor in reprehend incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse molestaie cillum. Tia non ob ea soluad incommod quae egen ium improb fugiend. Officia deserunt mollit anim id est laborum Et harumd dereud facilis est er expedit distinct. Nam liber te conscient to factor tum poen legum odioque civiuda et tam. Neque pecun modut est neque nonor et imper ned libidig met, consectetur adipiscing elit, sed ut labore et dolore magna aliquam is nostrud exercitation ullam mmodo consequet.Duis aute in voluptate velit esseCillum dolore eu fugiat nulla pariatur. At vver eos et accusam dignissum qui blandit est praesent. Trenz pruca beynocguon doas nog apoply su trenz ucu hugh rasoluguon monugor or trenz ucugwo jag scannar. Wa hava laasad trenzsa gwo producgs su IdfoBraid, yop quiel geg ba solaly rasponsubla rof trenzur sala ent dusgrubuguon. Offoctivo immoriatoly, hawrgasi pwicos asi sirucor. Thas sirutciun applios tyu thuso itoms ghuso pwicos gosi sirucor in mixent gosi sirucor ic mixent ples cak ontisi sowios uf Zerm hawr rwivos. Unte af phen neige pheings atoot Prexs eis phat eit sakem eit vory gast te Plok peish ba useing phen roxas. Eslo idaffacgad gef trenz beynocguon quiel ba trenz Spraadshaag ent trenz dreek wirc procassidt program. Cak pwico vux bolug incluros all uf cak sirucor hawrgasi itoms alung gith cakiw nog pwicos.Plloaso mako nuto uf cakso dodtosKoop a cupy uf cak vux noaw yerw phuno. Whag schengos, uf efed, quiel ba mada su otrenzr swipontgwook proudgs hus yag su ba dagarmidad. Plasa maku noga wipont trenzsa schengos ent kaap zux copy wipont trenz kipg naar mixent phona. Cak pwico siructiun ruos nust apoply tyu cak UCU sisulutiun munityuw uw cak UCU-TGU jot scannow. Trens roxas eis ti Plokeing quert loppe eis yop prexs. Piy opher hawers, eit yaggles orn ti sumbloat alohe plok. Su havo loasor cakso tgu pwuructs tyu InfuBwain, ghu gill nug bo suloly sispunsiblo fuw cakiw salo anr ristwibutiun. Hei muk neme eis loppe. Treas em wankeing ont sime ploked peish rof phen sumbloat syug si phat phey gavet peish ta paat ein pheeir sumbloats. Aslu unaffoctor gef cak siructiun gill bo cak spiarshoot anet cak GurGanglo gur pwucossing pwutwam. Ghat dodtos, ig pany, gill bo maro tyu ucakw suftgasi pwuructs hod yot tyubo rotowminor. Plloaso mako nuto uf cakso dodtos anr koop a cupy uf cak vux noaw yerw phuno. Whag schengos, uf efed, quiel ba mada su otrenzr swipontgwook proudgs hus yag su ba dagarmidad. Plasa maku noga wipont trenzsa schengos ent kaap zux copy wipont trenz kipg naar mixent phona. Cak pwico siructiun ruos nust apoply tyu cak UCU sisulutiun munityuw uw cak UCU-TGU jot scannow. Trens roxas eis ti Plokeing quert loppe eis yop prexs. Piy opher hawers, eit yaggles orn ti sumbloat alohe plok. Su havo loasor cakso tgu pwuructs tyu.Document TemplateInsert content here. diff --git a/docbook-xsl-1.76.1/roundtrip/template.dot b/docbook-xsl-1.76.1/roundtrip/template.dot new file mode 100644 index 0000000..b26ec56 Binary files /dev/null and b/docbook-xsl-1.76.1/roundtrip/template.dot differ diff --git a/docbook-xsl-1.76.1/roundtrip/template.xml b/docbook-xsl-1.76.1/roundtrip/template.xml new file mode 100644 index 0000000..e36a7df --- /dev/null +++ b/docbook-xsl-1.76.1/roundtrip/template.xml @@ -0,0 +1,3 @@ + + +This document left intentionally blankSteve BallSteve Ball15104702007-08-21T22:03:00Z2008-10-08T23:57:00Z1745Explain115111.0000Generic DocBook roundtrip template - 2008-10-09-01. \ No newline at end of file diff --git a/docbook-xsl-1.76.1/roundtrip/wordml2normalise.xsl b/docbook-xsl-1.76.1/roundtrip/wordml2normalise.xsl new file mode 100644 index 0000000..ad22b19 --- /dev/null +++ b/docbook-xsl-1.76.1/roundtrip/wordml2normalise.xsl @@ -0,0 +1,445 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + bold-italic + + + bold + + + italic + + + underline + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image + + .jpg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + 0 + 1 + 0 + + + + + 1 + 0 + 1 + 0 + + + + + 1 + 0 + 1 + 0 + + + + + 1 + 0 + 1 + 0 + + + + + + + all + + + topbot + + + sides + + + top + + + bottom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + + + 1 + + + + + + + column- + + + + column- + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + + + + + + + + + + + 0 + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/slides/browser/CTOCWidget.js b/docbook-xsl-1.76.1/slides/browser/CTOCWidget.js new file mode 100644 index 0000000..a411ea9 --- /dev/null +++ b/docbook-xsl-1.76.1/slides/browser/CTOCWidget.js @@ -0,0 +1,169 @@ +/* + * CTOCWidget.js + * $Revision: 1.3 $ $Date: 2003/07/14 06:02:50 $ + */ + +/* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1/GPL 2.0/LGPL 2.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * http://www.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is Netscape code. + * + * The Initial Developer of the Original Code is + * Netscape Corporation. + * Portions created by the Initial Developer are Copyright (C) 2003 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): Bob Clary + * + * ***** END LICENSE BLOCK ***** */ + +function CTOCWidget(domTOCModel, target) +{ + if (domTOCModel.documentElement.nodeName != 'toc') + { + throw 'CTOCWidget called on non toc Document: ' + domTOCModel.nodeName; + } + + this.model = domTOCModel; + this.target = target; + this.view = document.createElement('div'); + this.view.setAttribute('class', CTOCWidget._classprefix + '_view'); + + var modelItems = domTOCModel.documentElement.childNodes; + for (var i = 0; i < modelItems.length; i++) + { + var modelItem = modelItems.item(i); + if (modelItem.nodeType == Node.ELEMENT_NODE) + { + var viewItem = CTOCWidget.createItemView(modelItem, target); + this.view.appendChild(viewItem); + } + } +} + +CTOCWidget._handleImages = { open: '/toolbox/examples/2003/CTOCWidget/minus.gif', closed: '/toolbox/examples/2003/CTOCWidget/plus.gif', height: '12px', width: '16px'}; +CTOCWidget._classprefix = 'CTOCWidget'; + +CTOCWidget.createItemView = function (modelItem, target) +{ + if (modelItem.nodeType != Node.ELEMENT_NODE) + { + throw 'CTOCWidget.createItemView called on non-Element: ' + modelItem.nodeName; + } + + var i; + + var viewItem = document.createElement('div'); + viewItem.setAttribute('class', CTOCWidget._classprefix + '_item'); + + var viewItemHandle = document.createElement('div'); + viewItemHandle.setAttribute('class', CTOCWidget._classprefix + '_itemhandle'); + viewItemHandle.style.cursor = 'pointer'; + + var viewItemHandleImg = document.createElement('img'); + viewItemHandleImg.style.height = CTOCWidget._handleImages.height; + viewItemHandleImg.style.width = CTOCWidget._handleImages.width; + viewItemHandleImg.addEventListener('click', CTOCWidget.toggleHandle, false); + + var viewItemHandleLink; + if (!modelItem.getAttribute('url')) + { + viewItemHandleLink = document.createElement('span'); + } + else + { + viewItemHandleLink = document.createElement('a'); + viewItemHandleLink.setAttribute('href', modelItem.getAttribute('url')); + viewItemHandleLink.setAttribute('target', target); + } + viewItemHandleLink.appendChild(document.createTextNode(modelItem.getAttribute('title'))); + + viewItemHandle.appendChild(viewItemHandleImg); + viewItemHandle.appendChild(viewItemHandleLink); + viewItem.appendChild(viewItemHandle); + + if (modelItem.childNodes.length == 0) + { + viewItemHandleImg.setAttribute('src', CTOCWidget._handleImages.open); + } + else + { + viewItemHandleImg.setAttribute('src', CTOCWidget._handleImages.closed); + + var viewItemChildren = document.createElement('div'); + viewItemChildren.setAttribute('class', CTOCWidget._classprefix + '_itemchildren'); + viewItemChildren.style.display = 'none'; + viewItemChildren.style.position = 'relative'; + viewItemChildren.style.left = '1em'; + + for (i = 0; i < modelItem.childNodes.length; i++) + { + var modelItemChild = modelItem.childNodes.item(i); + if (modelItemChild.nodeType == Node.ELEMENT_NODE) + { + viewItemChildren.appendChild(CTOCWidget.createItemView(modelItemChild, target)); + } + } + + viewItem.appendChild(viewItemChildren); + } + + return viewItem; +}; + +// fires on img part of the handle +CTOCWidget.toggleHandle = function(e) +{ + switch (e.eventPhase) + { + case Event.CAPTURING_PHASE: + case Event.BUBBLING_PHASE: + return true; + + case Event.AT_TARGET: + + e.preventBubble(); + + var domHandle = e.target.parentNode; + var domChildren = domHandle.nextSibling; + + if (!domChildren) + { + return true; + } + + switch(domChildren.style.display) + { + case '': + case 'block': + domChildren.style.display = 'none'; + e.target.setAttribute('src', CTOCWidget._handleImages.closed); + break; + case 'none': + domChildren.style.display = 'block'; + e.target.setAttribute('src', CTOCWidget._handleImages.open); + break; + default: + return false; + } + + return true; + + default: + dump('Unknown Event Phase ' + e.eventPhase); + break; + } + + return true; +} + diff --git a/docbook-xsl-1.76.1/slides/browser/overlay.js b/docbook-xsl-1.76.1/slides/browser/overlay.js new file mode 100644 index 0000000..fc010fb --- /dev/null +++ b/docbook-xsl-1.76.1/slides/browser/overlay.js @@ -0,0 +1,142 @@ +// -*- Java -*- +// +// Overlay.js, adapted from Floating image II on dynamicdrive.com +/* Usage: + + + +...rest of head... + + +
    +...body of overlay... +
    +...rest of page... +*/ + +var overlayNS4 = document.layers ? 1 : 0; +var overlayIE = document.all ? 1 : 0; +var overlayNS6 = document.getElementById && !document.all ? 1 : 0; + +var overlayPadX = 15; +var overlayPadY = 15; +var overlayDelay = 60; + +var overlayCorner = 'ur'; // ul, ll, ur, lr, uc, lc, cl, cr + +function overlayRefresh() { + var overlayLx = 0; + var overlayLy = 0; + + var overlayX = 0; + var overlayY = 0; + var overlayW = 0; + var overlayH = 0; + var contentH = 0; + + var links = document.getElementsByTagName("body")[0]; + + if (overlayIE) { + overlayLx = document.body.clientWidth; + overlayLy = document.body.clientHeight; + + if (document.body.parentElement) { + // For IE6 + overlayLx = document.body.parentElement.clientWidth; + overlayLy = document.body.parentElement.clientHeight; + } + + overlayH = overlayDiv.offsetHeight; + overlayW = body.offsetWidth; // overlayDiv.offsetWidth; + contentH = body.offsetHeight; + } else if (overlayNS4) { + overlayLy = window.innerHeight; + overlayLx = window.innerWidth; + overlayH = document.overlayDiv.clip.height; + overlayW = body.clip.width; // document.overlayDiv.clip.width; + contentH = body.clip.height; + } else if (overlayNS6) { + var odiv = document.getElementById('overlayDiv'); + + overlayLy = window.innerHeight; + overlayLx = window.innerWidth; + overlayH = odiv.offsetHeight; + overlayW = odiv.offsetWidth; // body.offsetWidth; + contentH = odiv.offsetHeight; + } + + if (overlayCorner == 'ul') { + overlayX = overlayPadX; + overlayY = overlayPadY; + } else if (overlayCorner == 'cl') { + overlayX = overlayPadX; + overlayY = (overlayLy - overlayH) / 2; + } else if (overlayCorner == 'll') { + overlayX = overlayPadX; + overlayY = (overlayLy - overlayH) - overlayPadY; + } else if (overlayCorner == 'ur') { + overlayX = (overlayLx - overlayW) - overlayPadX; + overlayY = overlayPadY; + } else if (overlayCorner == 'cr') { + overlayX = (overlayLx - overlayW) - overlayPadX; + overlayY = (overlayLy - overlayH) / 2; + } else if (overlayCorner == 'lr') { + overlayX = (overlayLx - overlayW) - overlayPadX; + overlayY = (overlayLy - overlayH) - overlayPadY; + } else if (overlayCorner == 'uc') { + overlayX = (overlayLx - overlayW) / 2; + overlayY = overlayPadY; + } else { // overlayCorner == 'lc' + overlayX = (overlayLx - overlayW) / 2; + overlayY = (overlayLy - overlayH) - overlayPadY; + } + + if (overlayIE) { + overlayDiv.style.left=overlayX; + overlayDiv.style.top=overlayY+document.body.scrollTop; + + if (contentH > overlayLy) { + overlayDiv.style.visibility = "hidden"; + } + } else if (overlayNS4) { + document.overlayDiv.pageX=overlayX; + document.overlayDiv.pageY=overlayY+window.pageYOffset; + document.overlayDiv.visibility="visible"; + + if (contentH > overlayLy) { + document.overlayDiv.style.visibility = "hidden"; + } + } else if (overlayNS6) { + var div = document.getElementById("overlayDiv"); + var leftpx = overlayX; + var toppx = overlayY+window.pageYOffset; + var widthpx = overlayW; + + div.style.left = leftpx + "px"; + div.style.top = toppx + "px"; + div.style.width = widthpx + "px"; + + if (contentH > overlayLy) { + div.style.visibility = "hidden"; + } else { + div.style.visibility = "visible"; + } + } +} + +function onad() { + loopfunc(); +} + +function loopfunc() { + overlayRefresh(); + setTimeout('loopfunc()',overlayDelay); +} + +function overlaySetup(corner) { + overlayCorner = corner; + + if (overlayIE || overlayNS4 || overlayNS6) { + onad(); + } +} diff --git a/docbook-xsl-1.76.1/slides/browser/slides-default.css b/docbook-xsl-1.76.1/slides/browser/slides-default.css new file mode 100644 index 0000000..1022d6b --- /dev/null +++ b/docbook-xsl-1.76.1/slides/browser/slides-default.css @@ -0,0 +1,9 @@ +@import url('slides.css'); + +.toclink { font-size: 10pt; + font-weight: normal; + } + +.toclink a { color: blue; } +.toclink a:link { color: blue; } +.toclink a:visited { color: blue; } diff --git a/docbook-xsl-1.76.1/slides/browser/slides-frames.css b/docbook-xsl-1.76.1/slides/browser/slides-frames.css new file mode 100644 index 0000000..698b6a3 --- /dev/null +++ b/docbook-xsl-1.76.1/slides/browser/slides-frames.css @@ -0,0 +1,73 @@ +@import url('slides.css'); + +.toc-body { margin-left: 2px; + margin-right: 2px; + } + +.foil-body { margin-left: 2px; + margin-right: 2px; + } + +h1.title { margin-top: 0px; + padding-top: 0px; + } + +.navhead { visibility: visible; + } + +.navfoot { visibility: visible; + } + +/* ====================================================================== */ + +.navfoot { border-top: 1px solid black; + margin-top: 10px; + padding-top: 4px; + } +/* ====================================================================== */ + +.toc { font-weight: bold; + font-size: 10pt; + } + +.toc a { text-decoration: none; } +.toc a:link { color: blue; } +.toc a:visited { color: blue; } + +.toc .toc-foilgroup a { color: red; } +.toc .toc-foilgroup a:link { color: red; } +.toc .toc-foilgroup a:visited { color: red; } + +.toc .toc-titlefoil a { color: black; } +.toc .toc-titlefoil a:link { color: black; } +.toc .toc-titlefoil a:visited { color: black; } + +.toc .toc-foil a { color: blue; } +.toc .toc-foil a:link { color: blue; } +.toc .toc-foil a:visited { color: blue; } + +.toc-slidesinfo { font-family: sans-serif; + font-weight: bold; + text-align: center; + } + +.toc-titlefoil { font-family: sans-serif; + font-weight: bold; + text-align: center; + } + +.toc-foilgroup { font-family: sans-serif; + margin-left: 0.25in; + text-indent: -0.25in; + font-weight: bold; + color: red; + } + +.toc-foil { font-family: sans-serif; + font-size: 10pt; + margin-left: 0.25in; + text-indent: -0.4in; + font-weight: bold; + color: blue; + } + diff --git a/docbook-xsl-1.76.1/slides/browser/slides-plain.css b/docbook-xsl-1.76.1/slides/browser/slides-plain.css new file mode 100644 index 0000000..c22f289 --- /dev/null +++ b/docbook-xsl-1.76.1/slides/browser/slides-plain.css @@ -0,0 +1 @@ +@import url('slides.css'); diff --git a/docbook-xsl-1.76.1/slides/browser/slides-table.css b/docbook-xsl-1.76.1/slides/browser/slides-table.css new file mode 100644 index 0000000..1c195c9 --- /dev/null +++ b/docbook-xsl-1.76.1/slides/browser/slides-table.css @@ -0,0 +1,41 @@ +@import url('slides.css'); + +.toc-body { margin-left: 2px; + margin-right: 2px; + } + +.foil-body { margin-left: 2px; + margin-right: 2px; + } + +.foilgroup-body { margin-left: 2px; + margin-right: 2px; + } + +h1.title { + margin-top: 0px; + padding-top: 0px; + } + +/* ToC Stuff */ + +.ttoc { + font-size: 10pt; + color: white; + } + +.ttoc a { text-decoration: none; } +.ttoc a:link { color: white } +.ttoc a:visited { color: white } + +.ttoc-title { + font-size: 10pt; + } + +.ttoc-foilset { + font-size: 10pt; + } + +.ttoc-foil { + font-size: 10pt; + } diff --git a/docbook-xsl-1.76.1/slides/browser/slides-w3c.css b/docbook-xsl-1.76.1/slides/browser/slides-w3c.css new file mode 100644 index 0000000..c22f289 --- /dev/null +++ b/docbook-xsl-1.76.1/slides/browser/slides-w3c.css @@ -0,0 +1 @@ +@import url('slides.css'); diff --git a/docbook-xsl-1.76.1/slides/browser/slides.css b/docbook-xsl-1.76.1/slides/browser/slides.css new file mode 100644 index 0000000..1007478 --- /dev/null +++ b/docbook-xsl-1.76.1/slides/browser/slides.css @@ -0,0 +1,119 @@ +/* General formatting */ + +body { font-family: sans-serif; + font-weight: bold; + } + +.copyright { color: #7F7F7F; + } + +/* Title page formatting */ + + +.slidesinfo { text-align: center; + font-size: 16pt; + } + +.slidesinfo h1.title { color: blue; + } +.slidesinfo h2.subtitle { color: blue; + } +.slidesinfo h1.author { color: green; + } + +.slidesinfo .copyright { color: black; + } + + +/* ToC page formatting */ + +.tocpage h1.title { color: blue; + text-align: center; + } + +.tocpage a { text-decoration: none; } +.tocpage a:link { color: blue; } +.tocpage a:visited { color: blue; } + +.toc-body { margin-left: 0.5in; + margin-right: 0.5in; + } + +/* Foil page formatting */ + +.foil { font-size: 16pt; + } +.foil h1.title { text-align: center; + color: blue; + padding-top: 0pt; + margin-top: 0pt; + } +.foil h2.subtitle { text-align: center; + color: blue; + padding-top: 0pt; + margin-top: 0pt; + } + +.foil pre { font-size: 16pt; + } + +.foil-body { margin-left: 0.5in; + margin-right: 0.5in; + } + +/* Foilgroup page formatting */ + +.foilgroup { font-size: 16pt; + } +.foilgroup h1.title { text-align: center; + color: red; + padding-top: 0pt; + margin-top: 0pt; + } +.foilgroup h2.subtitle { text-align: center; + color: blue; + padding-top: 0pt; + margin-top: 0pt; + } + +.foilgroup-body { margin-left: 0.5in; + margin-right: 0.5in; + } + +/* Navigation header formatting */ + +.navhead { border-bottom: 1px solid black; + margin-bottom: 10px; + padding-bottom: 4px; + } + +.navhead hr.top-nav-sep { display: none; } + +.navhead .slidestitle { font-weight: normal; + font-size: 10pt; + font-style: italic; + } + +/* Navigation footer formatting */ + +.navfoot { border-top: 1px solid black; + margin-top: 10px; + padding-top: 4px; + } + +.navfoot hr.bottom-nav-sep { display: none; } + +/* General navigation formatting */ + +.link-text { font-weight: bold; + font-size: 10pt; + } + + +.link-text a { text-decoration: none; } +.link-text a:link { color: blue; } +.link-text a:visited { color: blue; } + +.no-link-text { color: #7F7F7F; } + +/* EOF */ diff --git a/docbook-xsl-1.76.1/slides/browser/slides.js b/docbook-xsl-1.76.1/slides/browser/slides.js new file mode 100644 index 0000000..2e48a7c --- /dev/null +++ b/docbook-xsl-1.76.1/slides/browser/slides.js @@ -0,0 +1,120 @@ +// -*- Java -*- +// +// $Id: slides.js 4931 2005-06-21 15:45:53Z kosek $ +// +// Copyright (C) 2002 Norman Walsh +// +// You are free to use, modify and distribute this software without limitation. +// This software is provided "AS IS," without a warranty of any kind. +// +// This script assumes that the Netscape 'ua.js' module has also been loaded. + +function newPage(filename, overlay) { + divs = document.getElementsByTagName("div"); + + if (divs) { + var xdiv = divs[0]; + + if (xdiv) { + var xid = xdiv.getAttribute("id"); + + var mytoc = window.top.frames[0]; + if (mytoc.lastUnderlined) { + mytoc.lastUnderlined.style.textDecoration = "none"; + } + + var tdiv = xbGetElementById(xid, mytoc); + + if (tdiv) { + var ta = tdiv.getElementsByTagName("a").item(0); + ta.style.textDecoration = "underline"; + mytoc.lastUnderlined = ta; + } + } + } + + if (overlay != 0) { + overlaySetup('lc'); + } +} + + +function navigate (evt) { + var kc = -1; + + if (navigator.org == 'microsoft' || navigator.family == 'opera') { + kc = window.event.keyCode; + } else if (navigator.family == 'gecko') { + kc = evt.keyCode; + if(!kc) { + kc = evt.which; + } + } else { + kc = evt.which; + } + + var forward = (kc == 110) || (kc == 78) || (kc == 32) + || (kc == 10) || (kc == 13) || (kc == 34) + || (kc == 39); + /* n, N, SPACE, ENTER, RETURN, PAGE UP, RIGHT ARROW */ + var backward = (kc == 112) || (kc == 80) || (kc == 8) + || (kc == 33) || (kc == 37); + /* p, P, BACKSPACE, PAGE DOWN, LEFT ARROW */ + var up = (kc == 117) || (kc == 85) || (kc == 38); + /* u, U, UP ARROW */ + var home = (kc == 104) || (kc == 72) || (kc == 36); + /* h, H, HOME */ + var toc = (kc == 116) || (kc == 84); + /* t, T */ + /* previously included META (kc == 244) */ + + var links = document.getElementsByTagName("link"); + + var count = 0; + var target = ""; + + for (count = 0; count < links.length; count++) { + if (home && (links[count].getAttribute("rel") == 'top')) { + target = links[count].getAttribute("href"); + } + if (toc && (links[count].getAttribute("rel") == 'contents')) { + target = links[count].getAttribute("href"); + } + if (up && (links[count].getAttribute("rel") == 'up')) { + target = links[count].getAttribute("href"); + } + if (forward && (links[count].getAttribute("rel") == 'next')) { + target = links[count].getAttribute("href"); + } + if (backward && (links[count].getAttribute("rel") == 'previous')) { + target = links[count].getAttribute("href"); + } + } + + if (target != "") { + if (window.top.frames[1]) { + window.top.frames[1].location = target; + } else { + window.location = target; + } + } + + return false; +} + +function toggletoc (img, width, hidegraphic, showgraphic) { + var fsc = top.GetElementsByTagName('frameset'); + if (fsc) { + var fs = fsc[0]; + if (fs) { + if (fs.cols == "0,*") { + fs.cols = width + ",*"; + img.src = hidegraphic; + } else { + fs.cols = "0,*"; + img.src = showgraphic; + } + } + } +} + diff --git a/docbook-xsl-1.76.1/slides/browser/ua.js b/docbook-xsl-1.76.1/slides/browser/ua.js new file mode 100644 index 0000000..8987659 --- /dev/null +++ b/docbook-xsl-1.76.1/slides/browser/ua.js @@ -0,0 +1,135 @@ +/* + * ua.js + * $Revision: 1.2 $ $Date: 2003/02/07 16:04:17 $ + */ + +/* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1/GPL 2.0/LGPL 2.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * http://www.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is Netscape code. + * + * The Initial Developer of the Original Code is + * Netscape Corporation. + * Portions created by the Initial Developer are Copyright (C) 2001 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): Bob Clary + * + * ***** END LICENSE BLOCK ***** */ + +function xbDetectBrowser() +{ + var oldOnError = window.onerror; + var element = null; + + window.onerror = null; + + // work around bug in xpcdom Mozilla 0.9.1 + window.saveNavigator = window.navigator; + + navigator.OS = ''; + navigator.version = parseFloat(navigator.appVersion); + navigator.org = ''; + navigator.family = ''; + + var platform; + if (typeof(window.navigator.platform) != 'undefined') + { + platform = window.navigator.platform.toLowerCase(); + if (platform.indexOf('win') != -1) + navigator.OS = 'win'; + else if (platform.indexOf('mac') != -1) + navigator.OS = 'mac'; + else if (platform.indexOf('unix') != -1 || platform.indexOf('linux') != -1 || platform.indexOf('sun') != -1) + navigator.OS = 'nix'; + } + + var i = 0; + var ua = window.navigator.userAgent.toLowerCase(); + + if (ua.indexOf('opera') != -1) + { + i = ua.indexOf('opera'); + navigator.family = 'opera'; + navigator.org = 'opera'; + navigator.version = parseFloat('0' + ua.substr(i+6), 10); + } + else if ((i = ua.indexOf('msie')) != -1) + { + navigator.org = 'microsoft'; + navigator.version = parseFloat('0' + ua.substr(i+5), 10); + + if (navigator.version < 4) + navigator.family = 'ie3'; + else + navigator.family = 'ie4' + } + else if (ua.indexOf('gecko') != -1) + { + navigator.family = 'gecko'; + var rvStart = ua.indexOf('rv:'); + var rvEnd = ua.indexOf(')', rvStart); + var rv = ua.substring(rvStart+3, rvEnd); + var rvParts = rv.split('.'); + var rvValue = 0; + var exp = 1; + + for (var i = 0; i < rvParts.length; i++) + { + var val = parseInt(rvParts[i]); + rvValue += val / exp; + exp *= 100; + } + navigator.version = rvValue; + + if (ua.indexOf('netscape') != -1) + navigator.org = 'netscape'; + else if (ua.indexOf('compuserve') != -1) + navigator.org = 'compuserve'; + else + navigator.org = 'mozilla'; + } + else if ((ua.indexOf('mozilla') !=-1) && (ua.indexOf('spoofer')==-1) && (ua.indexOf('compatible') == -1) && (ua.indexOf('opera')==-1)&& (ua.indexOf('webtv')==-1) && (ua.indexOf('hotjava')==-1)) + { + var is_major = parseFloat(navigator.appVersion); + + if (is_major < 4) + navigator.version = is_major; + else + { + i = ua.lastIndexOf('/') + navigator.version = parseFloat('0' + ua.substr(i+1), 10); + } + navigator.org = 'netscape'; + navigator.family = 'nn' + parseInt(navigator.appVersion); + } + else if ((i = ua.indexOf('aol')) != -1 ) + { + // aol + navigator.family = 'aol'; + navigator.org = 'aol'; + navigator.version = parseFloat('0' + ua.substr(i+4), 10); + } + else if ((i = ua.indexOf('hotjava')) != -1 ) + { + // hotjava + navigator.family = 'hotjava'; + navigator.org = 'sun'; + navigator.version = parseFloat(navigator.appVersion); + } + + window.onerror = oldOnError; +} + +xbDetectBrowser(); + diff --git a/docbook-xsl-1.76.1/slides/browser/xbCollapsibleLists.js b/docbook-xsl-1.76.1/slides/browser/xbCollapsibleLists.js new file mode 100644 index 0000000..6a4f93c --- /dev/null +++ b/docbook-xsl-1.76.1/slides/browser/xbCollapsibleLists.js @@ -0,0 +1,537 @@ +/* +xbCollapsibleLists.js 2001-02-26 + +Contributor(s): Michael Bostock, Netscape Communications, Copyright 1997 + Bob Clary, Netscape Communications, Copyright 2001 + Seth Dillingham, Macrobyte Resources, Copyright 2001 + Mark Filanowicz, Amdahl IT Services, Copyright 2002 + +Netscape grants you a royalty free license to use, modify or +distribute this software provided that this copyright notice +appears on all copies. This software is provided "AS IS," +without a warranty of any kind. + +See xbCollapsibleLists.js.changelog.html for details of changes. +*/ + + +var xbcl__id = 0; +var xbcl_item_id = 0; +var xbcl_mLists = new Array(); +var xbcl_parentElement = null; + +document.lists = xbcl_mLists; + +function List(visible, width, height, bgColor, collapsedImageURL, expandedImageURL) +{ + this.lists = new Array(); // sublists + this.items = new Array(); // layers + this.types = new Array(); // type + this.strs = new Array(); // content + this.visible = visible; + this.id = xbcl__id; + this.width = width || 350; + this.height = height || 22; + + this.collapsedImageURL = collapsedImageURL || 'false.gif'; + this.expandedImageURL = expandedImageURL || 'true.gif'; + + if (bgColor) + this.bgColor = bgColor; + + xbcl_mLists[xbcl__id++] = this; +} + +function xbcl_SetFont(i,j) +{ + this.fontIntro = i; + this.fontOutro = j; +} + +function xbcl_GetFont() +{ + return [this.fontIntro, this.fontOutro]; +} + +function xbcl_setIndent(indent) +{ + this.i = indent; + if (this.i < 0) + { + this.i = 0; + this.space = false; + } + else + this.space = true; +} + +function xbcl_getIndent(indent) +{ + return this.i; +} + +function xbcl_writeItemDOMHTML( obj, s, flList, listObj ) +{ + var styleObj; + var outerDiv, innerLeft, innerRight; + var str; + var leftEdge = 0; + + styleObj = new xbStyle(obj); + styleObj.setVisibility('hidden'); + outerDiv = document.createElement( "DIV" ); + outerDiv.id = "DIV_" + obj.id; + styleObj = new xbStyle( outerDiv ); + styleObj.setWidth( this.width ); + + if ( flList ) + { + innerLeft = document.createElement( "DIV" ); + innerLeft.style.position = "absolute"; + innerLeft.style.valign = "middle"; + leftEdge = 15; + + styleObj = new xbStyle( innerLeft ); + styleObj.setWidth( 15 ); + styleObj.setBackgroundColor( "transparent" ); + + if ( listObj.visible ) + str = ''; + else + str = ''; + + innerLeft.innerHTML = str; + outerDiv.appendChild( innerLeft ); + } + else if ( this.space ) + leftEdge = 15; + + innerRight = document.createElement( "DIV" ); + innerRight.noWrap = true; + innerRight.style.position = "absolute"; + + styleObj = new xbStyle( innerRight ); + styleObj.setLeft( leftEdge + ( this.l * this.i ) ); + styleObj.setWidth( this.width - 15 - this.l * this.i ); + styleObj.setBackgroundColor( "transparent" ); + + // start of change by Mark Filanowicz 02-22-2002 + if ( flList ) + { + s = this.fontIntro + '' + s + this.fontOutro; + } + else + { + s = this.fontIntro + s + this.fontOutro; + } + // end of change by Mark Filanowicz 02-22-2002 + + + innerRight.innerHTML = s; + outerDiv.appendChild( innerRight ); + + obj.appendChild( outerDiv ); + + return; +} + +function xbcl_writeItem( obj, s, flList, listObj ) +{ + var cellStyle = ''; + var str = ''; + var styleObj = new xbStyle( obj ); + + styleObj.setVisibility( 'hidden' ); + + if ( document.body && document.body.style ) + cellStyle = ' style="background-color: transparent;"'; + + str += ''; + + if ( flList ) + { + str += ''; + } + else if (this.space) + str += ''; + + if (this.l>0 && this.i>0) + str += ''; + + str += '
    '; + str += ''; + + if ( listObj.visible ) + str += ''; + else + str += ''; + + str += '  '; + + // start of change by Mark Filanowicz 02-22-2002 + if ( flList ) + { + str += this.fontIntro + '' + s + this.fontOutro; + } + else + { + str += this.fontIntro + s + this.fontOutro; + } + // end of change by Mark Filanowicz 02-22-2002 + + str += '
    '; + + styleObj.setInnerHTML( str ); + + return; +} + +function xbcl_writeList() +{ + var item; + var i; + var flList; + + for ( i = 0; i < this.types.length; i++ ) + { + item = this.items[ i ]; + flList = ( this.types[ i ] == 'list' ); + + this._writeItem( item, this.strs[ i ], flList, this.lists[ i ] ); + + if ( flList && this.lists[ i ].visible ) + this.lists[ i ]._writeList(); + } + + this.built = true; + this.needsRewrite = false; + self.status = ''; +} + +function xbcl_showList() +{ + var item; + var styleObj; + var i; + + for (i = 0; i < this.types.length; i++) + { + item = this.items[i]; + styleObj = new xbStyle(item); + styleObj.setClipLeft(0); + styleObj.setClipRight(this.width); + styleObj.setClipTop(0); + if (item.height) + { + styleObj.setClipBottom(item.height); + styleObj.setHeight(item.height); + } + else + { + styleObj.setClipBottom(this.height); + styleObj.setHeight(this.height); + } + + if ( this.visible ) + styleObj.setVisibility( 'visible' ); + + var bg = item.oBgColor || this.bgColor; + if ((bg == null) || (bg == 'null')) + bg = ''; + + styleObj.setBackgroundColor(bg); + + if (this.types[i] == 'list' && this.lists[i].visible) + this.lists[i]._showList(); + } + this.shown = true; + this.needsUpdate = false; +} + +function xbcl_setImage(list, item, file) +{ + var id = '_img' + list.id; + var img = null; + + // for DOMHTML or IE4 use cross browser getElementById from xbStyle + // can't use it for NN4 since it only works for layers in NN4 + if (document.layers) + img = item.document.images[0]; + else + img = xbGetElementById(id); + + if (img) + img.src = file; +} + +function xbcl_getHeight() +{ + var totalHeight = 0; + var i; + + if (!this.visible) + return 0; + + for (i = 0; i < this.types.length; i++) + { + if (this.items[i].height) + totalHeight += this.items[i].height; + else + totalHeight += this.height; + + if ((this.types[i] == 'list') && this.lists[i].visible) + { + totalHeight += this.lists[i].getHeight(); + } + } + + return totalHeight; +} + +function xbcl_updateList(pVis, x, y) +{ + var currTop = y; + var item; + var styleObj; + var i; + + for (i = 0; i < this.types.length; i++) + { + item = this.items[i]; + styleObj = new xbStyle(item); + + if (this.visible && pVis) + { + styleObj.moveTo(x, currTop); + if (item.height) // allow custom heights for each item + currTop += item.height; + else + currTop += this.height; + + styleObj.setVisibility('visible'); + } + else + { + styleObj.setVisibility('hidden'); + } + + if (this.types[i] == 'list') + { + if (this.lists[i].visible) + { + if (!this.lists[i].built || this.lists[i].needsRewrite) + this.lists[i]._writeList(); + + if (!this.lists[i].shown || this.lists[i].needsUpdate) + this.lists[i]._showList(); + + xbcl_setImage(this.lists[i], item, this.expandedImageURL ); + } + else + xbcl_setImage(this.lists[i], item, this.collapsedImageURL ); + + if (this.lists[i].built) + currTop = this.lists[i]._updateList(this.visible && pVis, x, currTop); + } + } + return currTop; +} + +function xbcl_updateParent( pid, l ) +{ + var i; + + if ( !l ) + l = 0; + + this.pid = pid; + this.l = l; + + for ( i = 0; i < this.types.length; i++ ) + { + if ( this.types[ i ] == 'list' ) + { + this.lists[ i ]._updateParent( pid, l + 1 ); + } + } +} + +function xbcl_expand(i) +{ + xbcl_mLists[i].visible = !xbcl_mLists[i].visible; + + if (xbcl_mLists[i].onexpand != null) + xbcl_mLists[i].onexpand(xbcl_mLists[i].id); + + xbcl_mLists[xbcl_mLists[i].pid].rebuild(); + + if (xbcl_mLists[i].postexpand != null) + xbcl_mLists[i].postexpand(xbcl_mLists[i].id); +} + +function xbcl_build(x, y) +{ + this._updateParent(this.id); + this._writeList(); + this._showList(); + this._updateList(true, x, y); + this.x = x; + this.y = y; +} + +function xbcl_rebuild() +{ + this._updateList(true, this.x, this.y); +} + +function xbcl_getNewItem() +{ + var newItem = null; + + newItem = xbGetElementById('lItem' + xbcl_item_id); + + if (!newItem) + { + if (document.all && !document.getElementById) + { + var parentElement = this.parentElement; + if (!parentElement) + parentElement = document.body; + + parentElement.insertAdjacentHTML('beforeEnd', '
    '); + newItem = xbGetElementById('lItem' + xbcl_item_id); + } + else if (document.layers) + { + if (this.parentElement) + newItem = new Layer(this.width, this.parentElement); + else + newItem = new Layer(this.width); + } + else if (document.createElement) + { + newItem = document.createElement('div'); + newItem.id= 'lItem' + xbcl_item_id; + newItem.style.position = 'absolute'; + + if (this.parentElement) + this.parentElement.appendChild(newItem); + else + document.body.appendChild(newItem); + } + } + + return newItem; +} + +function xbcl_addItem(str, bgColor, item) +{ + if (!item) + item = this._getNewItem(); + + if (!item) + return; + + if (bgColor) + item.oBgColor = bgColor; + + this.items[this.items.length] = item; + this.types[this.types.length] = 'item'; + this.strs[this.strs.length] = str; + ++xbcl_item_id; + + if ( this.built ) + { + this._writeItem( item, str, false ); + xbcl_mLists[this.pid].rebuild(); + if ( this.visible ) + this._showList(); + else + this.needsUpdate = true; + } + + return item; +} + +function xbcl_addList(list, str, bgColor, item) +{ + if (!item) + item = this._getNewItem(); + + if (!item) + return; + + if (bgColor) + item.oBgColor = bgColor; + + this.lists[this.items.length] = list; + this.items[this.items.length] = item; + this.types[this.types.length] = 'list'; + this.strs[this.strs.length] = str; + ++xbcl_item_id; + + list.parentList = this; + + list.pid = this.pid; + list.l = this.l + 1; + + if ( this.built ) + { + this._writeItem( item, str, true, list ); + xbcl_mLists[ this.pid ].rebuild(); + if ( this.visible ) + this._showList(); + else + this.needsUpdate = true; + } + + return item; +} + +List.prototype.setIndent = xbcl_setIndent; +List.prototype.getIndent = xbcl_getIndent; +List.prototype.addItem = xbcl_addItem; +List.prototype.addList = xbcl_addList; +List.prototype.build = xbcl_build; +List.prototype.rebuild = xbcl_rebuild; +List.prototype.setFont = xbcl_SetFont; +List.prototype.getFont = xbcl_GetFont; +List.prototype.getHeight = xbcl_getHeight; + +List.prototype._writeList = xbcl_writeList; +List.prototype._getNewItem = xbcl_getNewItem; + +if ( document.getElementById && document.createElement ) + List.prototype._writeItem = xbcl_writeItemDOMHTML; +else + List.prototype._writeItem = xbcl_writeItem; + +List.prototype._showList = xbcl_showList; +List.prototype._updateList = xbcl_updateList; +List.prototype._updateParent = xbcl_updateParent; + +List.prototype.onexpand = null; +List.prototype.postexpand = null; +List.prototype.lists = null; // sublists +List.prototype.items = null; // layers +List.prototype.types = null; // type +List.prototype.strs = null; // content +List.prototype.x = 0; +List.prototype.y = 0; +List.prototype.visible = false; +List.prototype.id = -1; +List.prototype.i = 18; +List.prototype.space = true; +List.prototype.pid = 0; +List.prototype.fontIntro = ''; +List.prototype.fontOutro = ''; +List.prototype.width = 350; +List.prototype.height = 22; +List.prototype.built = false; +List.prototype.shown = false; +List.prototype.needsUpdate = false; +List.prototype.needsRewrite = false; +List.prototype.l = 0; +List.prototype.bgColor = null; +List.prototype.parentList = null; +List.prototype.parentElement = null; diff --git a/docbook-xsl-1.76.1/slides/browser/xbDOM.js b/docbook-xsl-1.76.1/slides/browser/xbDOM.js new file mode 100644 index 0000000..39cc8bf --- /dev/null +++ b/docbook-xsl-1.76.1/slides/browser/xbDOM.js @@ -0,0 +1,374 @@ +/* + * xbDOM.js + * $Revision: 1.2 $ $Date: 2003/02/07 16:04:18 $ + */ + +/* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1/GPL 2.0/LGPL 2.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * http://www.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is Netscape code. + * + * The Initial Developer of the Original Code is + * Netscape Corporation. + * Portions created by the Initial Developer are Copyright (C) 2001 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): Bob Clary + * + * ***** END LICENSE BLOCK ***** */ + +function xbToInt(s) +{ + var i = parseInt(s, 10); + if (isNaN(i)) + i = 0; + + return i; +} + +function xbGetWindowWidth(windowRef) +{ + var width = 0; + + if (!windowRef) + { + windowRef = window; + } + + if (typeof(windowRef.innerWidth) == 'number') + { + width = windowRef.innerWidth; + } + else if (windowRef.document.body && typeof(windowRef.document.body.clientWidth) == 'number') + { + width = windowRef.document.body.clientWidth; + } + + return width; +} + +function xbGetWindowHeight(windowRef) +{ + var height = 0; + + if (!windowRef) + { + windowRef = window; + } + + if (typeof(windowRef.innerWidth) == 'number') + { + height = windowRef.innerHeight; + } + else if (windowRef.document.body && typeof(windowRef.document.body.clientWidth) == 'number') + { + height = windowRef.document.body.clientHeight; + } + return height; +} + +function xbGetElementsByNameAndType(name, type, windowRef) +{ + if (!windowRef) + windowRef = window; + + var elmlist = new Array(); + + xbFindElementsByNameAndType(windowRef.document, name, type, elmlist); + + return elmlist; +} + +function xbFindElementsByNameAndType(doc, name, type, elmlist) +{ + var i; + var subdoc; + + for (i = 0; i < doc[type].length; ++i) + { + if (doc[type][i].name && name == doc[type][i].name) + { + elmlist[elmlist.length] = doc[type][i]; + } + } + + if (doc.layers) + { + for (i = 0; i < doc.layers.length; ++i) + { + subdoc = doc.layers[i].document; + xbFindElementsByNameAndType(subdoc, name, type, elmlist); + } + } +} + +if (document.layers) +{ + nav4FindLayer = + function (doc, id) + { + var i; + var subdoc; + var obj; + + for (i = 0; i < doc.layers.length; ++i) + { + if (doc.layers[i].id && id == doc.layers[i].id) + return doc.layers[i]; + + subdoc = doc.layers[i].document; + obj = nav4FindLayer(subdoc, id); + if (obj != null) + return obj; + } + return null; + } + + nav4FindElementsByName = + function (doc, name, elmlist) + { + var i; + var j; + var subdoc; + + for (i = 0; i < doc.images.length; ++i) + { + if (doc.images[i].name && name == doc.images[i].name) + { + elmlist[elmlist.length] = doc.images[i]; + } + } + + for (i = 0; i < doc.forms.length; ++i) + { + for (j = 0; j < doc.forms[i].elements.length; j++) + { + if (doc.forms[i].elements[j].name && name == doc.forms[i].elements[j].name) + { + elmlist[elmlist.length] = doc.forms[i].elements[j]; + } + } + + if (doc.forms[i].name && name == doc.forms[i].name) + { + elmlist[elmlist.length] = doc.forms[i]; + } + } + + for (i = 0; i < doc.anchors.length; ++i) + { + if (doc.anchors[i].name && name == doc.anchors[i].name) + { + elmlist[elmlist.length] = doc.anchors[i]; + } + } + + for (i = 0; i < doc.links.length; ++i) + { + if (doc.links[i].name && name == doc.links[i].name) + { + elmlist[elmlist.length] = doc.links[i]; + } + } + + for (i = 0; i < doc.applets.length; ++i) + { + if (doc.applets[i].name && name == doc.applets[i].name) + { + elmlist[elmlist.length] = doc.applets[i]; + } + } + + for (i = 0; i < doc.embeds.length; ++i) + { + if (doc.embeds[i].name && name == doc.embeds[i].name) + { + elmlist[elmlist.length] = doc.embeds[i]; + } + } + + for (i = 0; i < doc.layers.length; ++i) + { + if (doc.layers[i].name && name == doc.layers[i].name) + { + elmlist[elmlist.length] = doc.layers[i]; + } + + subdoc = doc.layers[i].document; + nav4FindElementsByName(subdoc, name, elmlist); + } + } + + xbGetElementById = function (id, windowRef) + { + if (!windowRef) + windowRef = window; + + return nav4FindLayer(windowRef.document, id); + }; + + xbGetElementsByName = function (name, windowRef) + { + if (!windowRef) + windowRef = window; + + var elmlist = new Array(); + + nav4FindElementsByName(windowRef.document, name, elmlist); + + return elmlist; + }; + +} +else if (document.all) +{ + xbGetElementById = + function (id, windowRef) + { + if (!windowRef) + { + windowRef = window; + } + var elm = windowRef.document.all[id]; + if (!elm) + { + elm = null; + } + return elm; + }; + + xbGetElementsByName = function (name, windowRef) + { + if (!windowRef) + windowRef = window; + + var i; + var idnamelist = windowRef.document.all[name]; + var elmlist = new Array(); + + if (!idnamelist.length || idnamelist.name == name) + { + if (idnamelist) + elmlist[elmlist.length] = idnamelist; + } + else + { + for (i = 0; i < idnamelist.length; i++) + { + if (idnamelist[i].name == name) + elmlist[elmlist.length] = idnamelist[i]; + } + } + + return elmlist; + } + +} +else if (document.getElementById) +{ + xbGetElementById = + function (id, windowRef) + { + if (!windowRef) + { + windowRef = window; + } + return windowRef.document.getElementById(id); + }; + + xbGetElementsByName = + function (name, windowRef) + { + if (!windowRef) + { + windowRef = window; + } + return windowRef.document.getElementsByName(name); + }; +} +else +{ + xbGetElementById = + function (id, windowRef) + { + return null; + }; + + xbGetElementsByName = + function (name, windowRef) + { + return new Array(); + }; +} + +function xbGetPageScrollX(windowRef) +{ + if (!windowRef) + { + windowRef = window; + } + + if (typeof(windowRef.pageXOffset) == 'number') + { + return windowRef.pageXOffset; + } + + if (typeof(windowRef.document.body && windowRef.document.body.scrollLeft) == 'number') + { + return windowRef.document.body.scrollLeft; + } + + return 0; +} + +function xbGetPageScrollY(windowRef) +{ + if (!windowRef) + { + windowRef = window; + } + + if (typeof(windowRef.pageYOffset) == 'number') + { + return windowRef.pageYOffset; + } + + if (typeof(windowRef.document.body && windowRef.document.body.scrollTop) == 'number') + { + return windowRef.document.body.scrollTop; + } + + return 0; +} + +if (document.layers) +{ + xbSetInnerHTML = + function (element, str) + { + element.document.write(str); + element.document.close(); + }; +} +else +{ + xbSetInnerHTML = function (element, str) + { + if (typeof(element.innerHTML) != 'undefined') + { + element.innerHTML = str; + } + }; +} + +// eof: xbDOM.js diff --git a/docbook-xsl-1.76.1/slides/browser/xbDebug.js b/docbook-xsl-1.76.1/slides/browser/xbDebug.js new file mode 100644 index 0000000..48fd010 --- /dev/null +++ b/docbook-xsl-1.76.1/slides/browser/xbDebug.js @@ -0,0 +1,311 @@ +/* + * xbDebug.js + * $Revision: 1.2 $ $Date: 2003/02/07 16:04:19 $ + */ + +/* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1/GPL 2.0/LGPL 2.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * http://www.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is Netscape code. + * + * The Initial Developer of the Original Code is + * Netscape Corporation. + * Portions created by the Initial Developer are Copyright (C) 2001 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): Bob Clary + * + * ***** END LICENSE BLOCK ***** */ + +/* +ChangeLog: + +2002-02-25: bclary - modified xbDebugTraceOject to make sure + that original versions of wrapped functions were not + rewrapped. This had caused an infinite loop in IE. + +2002-02-07: bclary - modified xbDebug.prototype.close to not null + the debug window reference. This can cause problems with + Internet Explorer if the page is refreshed. These issues will + be addressed at a later date. +*/ + +function xbDebug() +{ + this.on = false; + this.stack = new Array(); + this.debugwindow = null; + this.execprofile = new Object(); +} + +xbDebug.prototype.push = function () +{ + this.stack[this.stack.length] = this.on; + this.on = true; +} + +xbDebug.prototype.pop = function () +{ + this.on = this.stack[this.stack.length - 1]; + --this.stack.length; +} + +xbDebug.prototype.open = function () +{ + if (this.debugwindow && !this.debugwindow.closed) + this.close(); + + this.debugwindow = window.open('about:blank', 'DEBUGWINDOW', 'height=400,width=600,resizable=yes,scrollbars=yes'); + this.debugwindow.moveTo(0,0); + window.focus(); + + this.debugwindow.document.write('xbDebug Window

    Javascript Debug Window

    '); +} + +xbDebug.prototype.close = function () +{ + if (!this.debugwindow) + return; + + if (!this.debugwindow.closed) + this.debugwindow.close(); + + // bc 2002-02-07, other windows may still hold a reference to this: this.debugwindow = null; +} + +xbDebug.prototype.dump = function (msg) +{ + if (!this.on) + return; + + if (!this.debugwindow || this.debugwindow.closed) + this.open(); + + this.debugwindow.document.write(msg + '
    '); + + return; +} + +var xbDEBUG = new xbDebug(); + +window.onunload = function () { xbDEBUG.close(); } + +function xbDebugGetFunctionName(funcref) +{ + + if (!funcref) + { + return ''; + } + + if (funcref.name) + return funcref.name; + + var name = funcref + ''; + name = name.substring(name.indexOf(' ') + 1, name.indexOf('(')); + funcref.name = name; + + if (!name) alert('name not defined'); + return name; +} + + +// emulate functionref.apply for IE mac and IE win < 5.5 +function xbDebugApplyFunction(funcname, funcref, thisref, argumentsref) +{ + var rv; + + if (!funcref) + { + alert('xbDebugApplyFunction: funcref is null'); + } + + if (typeof(funcref.apply) != 'undefined') + return funcref.apply(thisref, argumentsref); + + var applyexpr = 'thisref.xbDebug_orig_' + funcname + '('; + var i; + + for (i = 0; i < argumentsref.length; i++) + { + applyexpr += 'argumentsref[' + i + '],'; + } + + if (argumentsref.length > 0) + { + applyexpr = applyexpr.substring(0, applyexpr.length - 1); + } + + applyexpr += ')'; + + return eval(applyexpr); +} + +function xbDebugCreateFunctionWrapper(scopename, funcname, precall, postcall) +{ + var wrappedfunc; + var scopeobject = eval(scopename); + var funcref = scopeobject[funcname]; + + scopeobject['xbDebug_orig_' + funcname] = funcref; + + wrappedfunc = function () + { + var rv; + + precall(scopename, funcname, arguments); + rv = xbDebugApplyFunction(funcname, funcref, scopeobject, arguments); + postcall(scopename, funcname, arguments, rv); + return rv; + }; + + if (typeof(funcref.constructor) != 'undefined') + wrappedfunc.constructor = funcref.constuctor; + + if (typeof(funcref.prototype) != 'undefined') + wrappedfunc.prototype = funcref.prototype; + + scopeobject[funcname] = wrappedfunc; +} + +function xbDebugCreateMethodWrapper(contextname, classname, methodname, precall, postcall) +{ + var context = eval(contextname); + var methodref = context[classname].prototype[methodname]; + + context[classname].prototype['xbDebug_orig_' + methodname] = methodref; + + var wrappedmethod = function () + { + var rv; + // eval 'this' at method run time to pick up reference to the object's instance + var thisref = eval('this'); + // eval 'arguments' at method run time to pick up method's arguments + var argsref = arguments; + + precall(contextname + '.' + classname, methodname, argsref); + rv = xbDebugApplyFunction(methodname, methodref, thisref, argsref); + postcall(contextname + '.' + classname, methodname, argsref, rv); + return rv; + }; + + return wrappedmethod; +} + +function xbDebugPersistToString(obj) +{ + var s = ''; + + if (obj == null) + return 'null'; + + switch(typeof(obj)) + { + case 'number': + return obj; + case 'string': + return '"' + obj + '"'; + case 'undefined': + return 'undefined'; + case 'boolean': + return obj + ''; + } + + if (obj.constructor) + return '[' + xbDebugGetFunctionName(obj.constructor) + ']'; + + return null; +} + +function xbDebugTraceBefore(scopename, funcname, funcarguments) +{ + var i; + var s = ''; + var execprofile = xbDEBUG.execprofile[scopename + '.' + funcname]; + if (!execprofile) + execprofile = xbDEBUG.execprofile[scopename + '.' + funcname] = { started: 0, time: 0, count: 0 }; + + for (i = 0; i < funcarguments.length; i++) + { + s += xbDebugPersistToString(funcarguments[i]); + if (i < funcarguments.length - 1) + s += ', '; + } + + xbDEBUG.dump('enter ' + scopename + '.' + funcname + '(' + s + ')'); + execprofile.started = (new Date()).getTime(); +} + +function xbDebugTraceAfter(scopename, funcname, funcarguments, rv) +{ + var i; + var s = ''; + var execprofile = xbDEBUG.execprofile[scopename + '.' + funcname]; + if (!execprofile) + xbDEBUG.dump('xbDebugTraceAfter: execprofile not created for ' + scopename + '.' + funcname); + else if (execprofile.started == 0) + xbDEBUG.dump('xbDebugTraceAfter: execprofile.started == 0 for ' + scopename + '.' + funcname); + else + { + execprofile.time += (new Date()).getTime() - execprofile.started; + execprofile.count++; + execprofile.started = 0; + } + + for (i = 0; i < funcarguments.length; i++) + { + s += xbDebugPersistToString(funcarguments[i]); + if (i < funcarguments.length - 1) + s += ', '; + } + + xbDEBUG.dump('exit ' + scopename + '.' + funcname + '(' + s + ')==' + xbDebugPersistToString(rv)); +} + +function xbDebugTraceFunction(scopename, funcname) +{ + xbDebugCreateFunctionWrapper(scopename, funcname, xbDebugTraceBefore, xbDebugTraceAfter); +} + +function xbDebugTraceObject(contextname, classname) +{ + var classref = eval(contextname + '.' + classname); + var p; + var sp; + + if (!classref || !classref.prototype) + return; + + for (p in classref.prototype) + { + sp = p + ''; + if (typeof(classref.prototype[sp]) == 'function' && (sp).indexOf('xbDebug_orig') == -1) + { + classref.prototype[sp] = xbDebugCreateMethodWrapper(contextname, classname, sp, xbDebugTraceBefore, xbDebugTraceAfter); + } + } +} + +function xbDebugDumpProfile() +{ + var p; + var execprofile; + var avg; + + for (p in xbDEBUG.execprofile) + { + execprofile = xbDEBUG.execprofile[p]; + avg = Math.round ( 100 * execprofile.time/execprofile.count) /100; + xbDEBUG.dump('Execution profile ' + p + ' called ' + execprofile.count + ' times. Total time=' + execprofile.time + 'ms. Avg Time=' + avg + 'ms.'); + } +} diff --git a/docbook-xsl-1.76.1/slides/browser/xbLibrary.js b/docbook-xsl-1.76.1/slides/browser/xbLibrary.js new file mode 100644 index 0000000..9bbfd6b --- /dev/null +++ b/docbook-xsl-1.76.1/slides/browser/xbLibrary.js @@ -0,0 +1,80 @@ +/* + * xbLibrary.js + * $Revision: 1.3 $ $Date: 2003/03/17 03:44:20 $ + */ + +/* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1/GPL 2.0/LGPL 2.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * http://www.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is Bob Clary code. + * + * The Initial Developer of the Original Code is + * Bob Clary. + * Portions created by the Initial Developer are Copyright (C) 2000 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): Bob Clary + * + * ***** END LICENSE BLOCK ***** */ + +if (!document.getElementById || navigator.userAgent.indexOf('Opera') != -1) +{ + // assign error handler for downlevel browsers + // Note until Opera improves it's overall support + // for JavaScript and the DOM, it must be considered downlevel + + window.onerror = defaultOnError; + + function defaultOnError(msg, url, line) + { + // handle bug in NS6.1, N6.2 + // where an Event is passed to error handlers + if (typeof(msg) != 'string') + { + msg = 'unknown error'; + } + if (typeof(url) != 'string') + { + url = document.location; + } + + alert('An error has occurred at ' + url + ', line ' + line + ': ' + msg); + } +} + +function xbLibrary(path) +{ + if (path.charAt(path.length-1) == '/') + { + path = path.substr(0, path.length-1) + } + this.path = path; +} + +// dynamically loaded scripts +// +// it is an error to reference anything from the dynamically loaded file inside the +// same script block. This means that a file can not check its dependencies and +// load the files for it's own use. someone else must do this. + +xbLibrary.prototype.loadScript = +function (scriptName) +{ + document.write(' + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + overlaySetup('ll'); + + + + + + init( + + ); + + overlaySetup('ll'); + + + + + + +
    + +
    +
    + +
    + + + + +
    + logo +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <xsl:value-of select="title"/> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + javascript:body.focus() + + + + + + + + + <body class="frameset"> + <xsl:call-template name="body.attributes"/> + <p> + <xsl:text>Your browser doesn't support frames.</xsl:text> + </p> + </body> + + + + + + + + + + + + + + + + + + Navigation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Body + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Navigation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + newPage(' + + ', + + ); + + + + + overlaySetup('lc'); + + + + + + + this.focus() + + + navigate(event) + + + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <xsl:value-of select="title"/> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + foilgroup + + + + + + + javascript:body.focus() + + + + + + <body class="frameset"> + <xsl:call-template name="body.attributes"/> + <p> + <xsl:text>Your browser doesn't support frames.</xsl:text> + </p> + </body> + + + + + + + foilgroup + + + + + + + + + + + + + + + + Navigation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + foilgroup + + + + + + + + + + + Body + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + foilgroup + + + + + + + + + + + + + + + + Navigation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + newPage(' + + ', + + ); + + + + + overlaySetup('lc'); + + + + + + + + navigate(event) + + + +
    + + + + + + + + + +
    + + + + + + +
    + + +
    + + + position:absolute;visibility:visible; + + + + + + + + +
    +
    +
    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <xsl:value-of select="title"/> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + javascript:body.focus() + + + + + + + + + <body class="frameset"> + <xsl:call-template name="body.attributes"/> + <p> + <xsl:text>Your browser doesn't support frames.</xsl:text> + </p> + </body> + + + + + + + + + + + + + + + + + + + + + Navigation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Body + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Navigation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + newPage(' + + ', + + ); + + + + + overlaySetup('lc'); + + + + + + + navigate(event) + + + +
    + + + + + + + + + +
    + +
    + + +
    + + + position:absolute;visibility:visible; + + + + + + + + +
    +
    +
    + + + +
    + + + + + + + +
    + + + + + + + foilgroup + + + + +
    + - + + + + + + + + + + + + + + + +
    +
    + + + + + + + +
    + - + + + + + + + + + + + + + + +
    +
    + + + + + + + + + myList.addItem(' + + <div id=" + + " class="toc-slidesinfo"> + + <a href=" + + " target="foil"> + + + + + + + + + + + + + ' + \' + + + <\/a><\/div> + '); + + + + + + + + subList = new List(false, width, height, " + +"); + subList.setIndent(12); + + + myList.addList(subList, ' + + <div id=" + + " class="toc-foilgroup"> + + <a href=" + + " target="foil"> + + + + + + + + + + + + + ' + \' + + + <\/a><\/div> + '); + + + + + + + + subList.addItem(' + + + myList.addItem(' + + + + <div id=" + + " class="toc-foil"> + + <img alt="-" src=" + + "><\/img> + + <a href=" + + " target="foil"> + + + + + + + + + + + + + ' + \' + + + <\/a><\/div> + '); + + + + + + + + + diff --git a/docbook-xsl-1.76.1/slides/html/graphics.xsl b/docbook-xsl-1.76.1/slides/html/graphics.xsl new file mode 100644 index 0000000..b682acd --- /dev/null +++ b/docbook-xsl-1.76.1/slides/html/graphics.xsl @@ -0,0 +1,151 @@ + + + + + + + + + + + + + + + + + + + / + + + + / + + + http://docbook.sourceforge.net/release/slides/graphics/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/slides/html/jscript.xsl b/docbook-xsl-1.76.1/slides/html/jscript.xsl new file mode 100644 index 0000000..ae4ef9f --- /dev/null +++ b/docbook-xsl-1.76.1/slides/html/jscript.xsl @@ -0,0 +1,127 @@ + + + + + + + + + + + + + + + + + / + + + + / + + + http://docbook.sourceforge.net/release/slides/browser/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/slides/html/param.xml b/docbook-xsl-1.76.1/slides/html/param.xml new file mode 100644 index 0000000..84cf196 --- /dev/null +++ b/docbook-xsl-1.76.1/slides/html/param.xml @@ -0,0 +1,1376 @@ + + + +Slides HTML Parameter Reference + +$Id: param.xweb 6633 2007-02-21 18:33:33Z xmldoc $ + + + + Walsh + Norman + + + + 2002 + Norman Walsh + + + This is reference documentation for all user-configurable + parameters in the DocBook XSL Slides HTML stylesheet (for + generating HTML slide presentations). Note that the Slides + stylesheet for HTML output is a customization layer of the + DocBook XSL HTML stylesheet. Therefore, in addition to the + slides-specific parameters listed in this section, you can + also use a number of HTML + stylesheet parameters to control Slides HTML + output. + + + +HTML: General Parameters + + +keyboard.nav +boolean + + +keyboard.nav +Enable keyboard navigation? + + + + +<xsl:param name="keyboard.nav" select="1"></xsl:param> + + + +Description + +If non-zero, JavaScript is added to the slides to enable keyboard +navigation. Pressing 'n', space, or return moves forward; pressing 'p' moves +backward. + + + + + + +css.stylesheet +uri + + +css.stylesheet +CSS stylesheet for slides + + + + +<xsl:param name="css.stylesheet">slides.css</xsl:param> + + + +Description + +Identifies the CSS stylesheet used by all the slides. This parameter +can be set in the source document with the <?dbhtml?> pseudo-attribute +css-stylesheet. + + + + + + +css.stylesheet.dir +uri + + +css.stylesheet.dir +Default directory for CSS stylesheets + + + + +<xsl:param name="css.stylesheet.dir"></xsl:param> + + + +Description + +Identifies the default directory for the CSS stylesheet +generated on all the slides. This parameter can be set in the source +document with the <?dbhtml?> pseudo-attribute +css-stylesheet-dir. + +If non-empty, this value is prepended to each of the stylesheets. + + + + + + + +titlefoil.html +filename + + +titlefoil.html +Name of title foil HTML file + + + + +<xsl:param name="titlefoil.html" select="concat('index', $html.ext)"></xsl:param> + + + +Description + +Sets the filename used for the slides titlepage. + + + + + + +toc.html +filename + + +toc.html +Name of ToC HTML file + + + + +<xsl:param name="toc.html" select="concat('toc', $html.ext)"></xsl:param> + + + +Description + +Sets the filename used for the table of contents page. + + + + + + +foilgroup.toc +boolean + + +foilgroup.toc +Put ToC on foilgroup pages? + + + + +<xsl:param name="foilgroup.toc" select="1"></xsl:param> + + + +Description + +If non-zero, a ToC will be placed on foilgroup pages (after any +other content). + + + + + + + +output.indent +list +no +yes + + +output.indent +Indent output? + + + + +<xsl:param name="output.indent">no</xsl:param> + + + +Description + +Specifies the setting of the indent +parameter on the HTML slides. For more information, see the discussion +of the xsl:output element in the XSLT specification. +Select from yes or no. + + + + + + +overlay +boolean + + +overlay +Overlay footer navigation? + + + + +<xsl:param name="overlay" select="0"></xsl:param> + + + +Description + +If non-zero, JavaScript is added to the slides to make the +bottom navigation appear at the bottom of each page. This option and +multiframe are mutually exclusive. + +If this parameter is zero, the bottom navigation simply appears +below the content of each slide. + + + + + + +show.foil.number +boolean + + +show.foil.number +Show foil number on each foil? + + + + +<xsl:param name="show.foil.number" select="0"></xsl:param> + + + +Description + +If non-zero, on each slide there will be its number. Currently +not supported in all output formats. + + + + + + +HTML: Frames Parameters + + +nav.separator +boolean + + +nav.separator +Output separator between navigation and body? + + + + +<xsl:param name="nav.separator" select="1"></xsl:param> + + + +Description + +If non-zero, a separator (<HR>) is +added between the navigation links and the content of each slide. + + + + + + +toc.row.height +length + + +toc.row.height +Height of ToC rows in dynamic ToCs + + + + +<xsl:param name="toc.row.height">22</xsl:param> + + + +Description + +This parameter specifies the height of each row in the table of +contents. This is only applicable if a dynamic ToC is used. You may want to +adjust this parameter for optimal appearance with the font and image +sizes selected by your CSS +stylesheet. + + + + + + + +toc.bg.color +color + + +toc.bg.color +Background color for ToC frame + + + + +<xsl:param name="toc.bg.color">#FFFFFF</xsl:param> + + + +Description + +Specifies the background color used in the ToC frame. + + + + + + +body.bg.color +color + + +body.bg.color +Background color for body frame + + + + +<xsl:param name="body.bg.color">#FFFFFF</xsl:param> + + + +Description + +Specifies the background color used in the body column of +tabular slides. + + + + + + +toc.width +length + + +toc.width +Width of ToC frame + + + + +<xsl:param name="toc.width">250</xsl:param> +<!-- Presumably in pixels? --> + + + +Description + +Specifies the width of the ToC frame in pixels. + + + + + + +toc.hide.show +boolean + + +toc.hide.show +Enable hide/show button for ToC frame + + + + +<xsl:param name="toc.hide.show" select="0"></xsl:param> + + + +Description + +If non-zero, JavaScript (and an additional icon, see +hidetoc.image and +showtoc.image) is added to each slide +to allow the ToC panel to be toggled on each panel. + +There is a bug in Mozilla 1.0 (at least as of CR3) that causes +the browser to reload the titlepage when this feature is used. + + + + + + +dynamic.toc +boolean + + +dynamic.toc +Dynamic ToCs? + + + + +<xsl:param name="dynamic.toc" select="0"></xsl:param> + + + +Description + +If non-zero, JavaScript is used to make the ToC panel dynamic. +In a dynamic ToC, each section in the ToC can be expanded and collapsed by +clicking on the appropriate image. + + + + + + +active.toc +boolean + + +active.toc +Active ToCs? + + + + +<xsl:param name="active.toc" select="0"></xsl:param> + + + +Description + +If non-zero, JavaScript is used to keep the ToC and the current slide +in sync. That is, each time the slide changes, the corresponding +ToC entry will be underlined. + + + + + + +overlay.logo +uri + + +overlay.logo +Logo to overlay on ToC frame + + + + +<xsl:param name="overlay.logo">http://docbook.sourceforge.net/release/buttons/slides-1.png</xsl:param> + + + +Description + +If this URI is non-empty, JavaScript is used to overlay the +specified image on the ToC frame. + + + + + + +multiframe +boolean + + +multiframe +Use multiple frames for slide bodies? + + + + +<xsl:param name="multiframe" select="0"></xsl:param> + + + +Description + +If non-zero, multiple frames are used for the body of each +slide. This is one way of forcing the slide navigation elements to +appear in constant locations. The other way is with overlays. The overlay and +multiframe parameters are mutually +exclusive. + + + + + + +multiframe.top.bgcolor +color + + +multiframe.top.bgcolor +Background color for top navigation frame + + + + +<xsl:param name="multiframe.top.bgcolor">white</xsl:param> + + + +Description + +Specifies the background color of the top navigation frame when +multiframe is enabled. + + + + + + +multiframe.bottom.bgcolor +color + + +multiframe.bottom.bgcolor +Background color for bottom navigation frame + + + + +<xsl:param name="multiframe.bottom.bgcolor">white</xsl:param> + + + +Description + +Specifies the background color of the bottom navigation frame when +multiframe is enabled. + + + + + + +multiframe.navigation.height +length + + +multiframe.navigation.height +Height of navigation frames + + + + +<xsl:param name="multiframe.navigation.height">40</xsl:param> + + + +Description + +Specifies the height of the navigation frames in pixels when +multiframe is enabled. + + + + + + +HTML: Graphics Parameters + + +graphics.dir +uri + + +graphics.dir +Graphics directory + + + + +<xsl:param name="graphics.dir"></xsl:param> + + + +Description + +Identifies the graphics directory for the navigation components +generated on all the slides. This parameter can be set in the source +document with the <?dbhtml?> pseudo-attribute +graphics-dir. + +If non-empty, this value is prepended to each of the graphic +image paths. + + + + + + +bullet.image +filename + + +bullet.image +Bullet image + + + + +<xsl:param name="bullet.image">toc/bullet.png</xsl:param> + + + +Description + +Specifies the filename of the bullet image used for foils in the +framed ToC. + + + + + + +next.image +filename + + +next.image +Right-arrow image + + + + +<xsl:param name="next.image">active/nav-next.png</xsl:param> + + + +Description + +Specifies the filename of the right-pointing navigation arrow. + + + + + + +prev.image +filename + + +prev.image +Left-arrow image + + + + +<xsl:param name="prev.image">active/nav-prev.png</xsl:param> + + + +Description + +Specifies the filename of the left-pointing navigation arrow. + + + + + + +up.image +filename + + +up.image +Up-arrow image + + + + +<xsl:param name="up.image">active/nav-up.png</xsl:param> + + + +Description + +Specifies the filename of the upward-pointing navigation arrow. + + + + + + +home.image +filename + + +home.image +Home image + + + + +<xsl:param name="home.image">active/nav-home.png</xsl:param> + + + +Description + +Specifies the filename of the home navigation icon. + + + + + + +toc.image +filename + + +toc.image +ToC image + + + + +<xsl:param name="toc.image">active/nav-toc.png</xsl:param> + + + +Description + +Specifies the filename of the ToC navigation icon. + + + + + + + +no.next.image +filename + + +no.next.image +Inactive right-arrow image + + + + +<xsl:param name="no.next.image">inactive/nav-next.png</xsl:param> + + + +Description + +Specifies the filename of the inactive right-pointing navigation arrow. + + + + + + +no.prev.image +filename + + +no.prev.image +Inactive left-arrow image + + + + +<xsl:param name="no.prev.image">inactive/nav-prev.png</xsl:param> + + + +Description + +Specifies the filename of the inactive left-pointing navigation arrow. + + + + + + +no.up.image +filename + + +no.up.image +Inactive up-arrow image + + + + +<xsl:param name="no.up.image">inactive/nav-up.png</xsl:param> + + + +Description + +Specifies the filename of the inactive upward-pointing navigation arrow. + + + + + + +no.home.image +filename + + +no.home.image +Inactive home image + + + + +<xsl:param name="no.home.image">inactive/nav-home.png</xsl:param> + + + +Description + +Specifies the filename of the inactive home navigation icon. + + + + + + +no.toc.image +filename + + +no.toc.image +Inactive ToC image + + + + +<xsl:param name="no.toc.image">inactive/nav-toc.png</xsl:param> + + + +Description + +Specifies the filename of the inactive ToC navigation icon. + + + + + + + +plus.image +filename + + +plus.image +Plus image + + + + +<xsl:param name="plus.image">toc/closed.png</xsl:param> + + + +Description + +Specifies the filename of the plus image; the image used in a +dynamic ToC to indicate that a section +can be expanded. + + + + + + +minus.image +filename + + +minus.image +Minus image + + + + +<xsl:param name="minus.image">toc/open.png</xsl:param> + + + +Description + +Specifies the filename of the minus image; the image used in a +dynamic ToC to indicate that a section +can be collapsed. + + + + + + +hidetoc.image +filename + + +hidetoc.image +Hide ToC image + + + + +<xsl:param name="hidetoc.image">hidetoc.gif</xsl:param> + + + +Description + +Specifies the filename of the hide ToC image. This is used +when the ToC hide/show parameter is +enabled. + + + + + + +showtoc.image +filename + + +showtoc.image +Show ToC image + + + + +<xsl:param name="showtoc.image">showtoc.gif</xsl:param> + + + +Description + +Specifies the filename of the show ToC image. This is used +when the ToC hide/show parameter is +enabled. + + + + + + +HTML: JavaScript Parameters + + +script.dir +uri + + +script.dir +Script directory + + + + +<xsl:param name="script.dir"></xsl:param> + + + +Description + +Identifies the JavaScript source directory for the slides. +This parameter can be set in the source +document with the <?dbhtml?> pseudo-attribute +script-dir. + +If non-empty, this value is prepended to each of the JavaScript files. + + + + + + + +ua.js +filename + + +ua.js +UA JavaScript file + + + + +<xsl:param name="ua.js">ua.js</xsl:param> + + + +Description + +Specifies the filename of the UA JavaScript file. It's unlikely +that you will ever need to change this parameter. + + + + + + +xbDOM.js +filename + + +xbDOM.js +xbDOM JavaScript file + + + + +<xsl:param name="xbDOM.js">xbDOM.js</xsl:param> + + + +Description + +Specifies the filename of the xbDOM JavaScript file. It's unlikely +that you will ever need to change this parameter. + + + + + + +xbStyle.js +filename + + +xbStyle.js +xbStyle JavaScript file + + + + +<xsl:param name="xbStyle.js">xbStyle.js</xsl:param> + + + +Description + +Specifies the filename of the xbStyle JavaScript file. It's unlikely +that you will ever need to change this parameter. + + + + + + +xbLibrary.js +filename + + +xbLibrary.js +xbLibrary JavaScript file + + + + +<xsl:param name="xbLibrary.js">xbLibrary.js</xsl:param> + + + +Description + +Specifies the filename of the xbLibrary JavaScript file. It's unlikely +that you will ever need to change this parameter. + + + + + + +xbCollapsibleLists.js +filename + + +xbCollapsibleLists.js +xbCollapsibleLists JavaScript file + + + + +<xsl:param name="xbCollapsibleLists.js">xbCollapsibleLists.js</xsl:param> + + + +Description + +Specifies the filename of the xbCollapsibleLists JavaScript file. It's unlikely +that you will ever need to change this parameter. + + + + + + +overlay.js +filename + + +overlay.js +Overlay JavaScript file + + + + +<xsl:param name="overlay.js">overlay.js</xsl:param> + + + +Description + +Specifies the filename of the overlay JavaScript file. It's unlikely +that you will ever need to change this parameter. + + + + + + +slides.js +filename + + +slides.js +Slides overlay file + + + + +<xsl:param name="slides.js">slides.js</xsl:param> + + + +Description + +Specifies the filename of the slides JavaScript file. It's unlikely +that you will ever need to change this parameter. + + + + + + +HTML: Localization Parameters + + +text.home +string + + +text.home +Home + + + + +<xsl:param name="text.home">Home</xsl:param> + + + +Description + +FIXME: + + + + + + +text.toc +string + + +text.toc +FIXME: + + + + +<xsl:param name="text.toc">ToC</xsl:param> + + + +Description + +FIXME: + + + + + + +text.prev +string + + +text.prev +FIXME: + + + + +<xsl:param name="text.prev">Prev</xsl:param> + + + +Description + +FIXME: + + + + + + +text.up +string + + +text.up +FIXME: + + + + +<xsl:param name="text.up">Up</xsl:param> + + + +Description + +FIXME: + + + + + + +text.next +string + + +text.next +FIXME: + + + + +<xsl:param name="text.next">Next</xsl:param> + + + +Description + +FIXME: + + + + + + + +The Stylesheet + +The param.xsl stylesheet is just a wrapper +around all these parameters. + + + +<!-- This file is generated from param.xweb --> + +<xsl:stylesheet exclude-result-prefixes="src" version="1.0"> + +<!-- ******************************************************************** + $Id: param.xweb 6633 2007-02-21 18:33:33Z xmldoc $ + ******************************************************************** + + This file is part of the DocBook Slides Stylesheet distribution. + See ../README or http://docbook.sf.net/release/xsl/current/ for + copyright and other information. + + ******************************************************************** --> + +<src:fragref linkend="active.toc.frag"></src:fragref> +<src:fragref linkend="body.bg.color.frag"></src:fragref> +<src:fragref linkend="bullet.image.frag"></src:fragref> +<src:fragref linkend="css.stylesheet.frag"></src:fragref> +<src:fragref linkend="css.stylesheet.dir.frag"></src:fragref> +<src:fragref linkend="dynamic.toc.frag"></src:fragref> +<src:fragref linkend="foilgroup.toc.frag"></src:fragref> +<src:fragref linkend="graphics.dir.frag"></src:fragref> +<src:fragref linkend="hidetoc.image.frag"></src:fragref> +<src:fragref linkend="home.image.frag"></src:fragref> +<src:fragref linkend="keyboard.nav.frag"></src:fragref> +<src:fragref linkend="minus.image.frag"></src:fragref> +<src:fragref linkend="multiframe.bottom.bgcolor.frag"></src:fragref> +<src:fragref linkend="multiframe.frag"></src:fragref> +<src:fragref linkend="multiframe.navigation.height.frag"></src:fragref> +<src:fragref linkend="multiframe.top.bgcolor.frag"></src:fragref> +<src:fragref linkend="nav.separator.frag"></src:fragref> +<src:fragref linkend="next.image.frag"></src:fragref> +<src:fragref linkend="no.home.image.frag"></src:fragref> +<src:fragref linkend="no.next.image.frag"></src:fragref> +<src:fragref linkend="no.prev.image.frag"></src:fragref> +<src:fragref linkend="no.toc.image.frag"></src:fragref> +<src:fragref linkend="no.up.image.frag"></src:fragref> +<src:fragref linkend="output.indent.frag"></src:fragref> +<src:fragref linkend="overlay.frag"></src:fragref> +<src:fragref linkend="overlay.js.frag"></src:fragref> +<src:fragref linkend="overlay.logo.frag"></src:fragref> +<src:fragref linkend="plus.image.frag"></src:fragref> +<src:fragref linkend="prev.image.frag"></src:fragref> +<src:fragref linkend="script.dir.frag"></src:fragref> +<src:fragref linkend="show.foil.number.frag"></src:fragref> +<src:fragref linkend="showtoc.image.frag"></src:fragref> +<src:fragref linkend="slides.js.frag"></src:fragref> +<src:fragref linkend="text.home.frag"></src:fragref> +<src:fragref linkend="text.next.frag"></src:fragref> +<src:fragref linkend="text.prev.frag"></src:fragref> +<src:fragref linkend="text.toc.frag"></src:fragref> +<src:fragref linkend="text.up.frag"></src:fragref> +<src:fragref linkend="titlefoil.html.frag"></src:fragref> +<src:fragref linkend="toc.bg.color.frag"></src:fragref> +<src:fragref linkend="toc.hide.show.frag"></src:fragref> +<src:fragref linkend="toc.html.frag"></src:fragref> +<src:fragref linkend="toc.image.frag"></src:fragref> +<src:fragref linkend="toc.row.height.frag"></src:fragref> +<src:fragref linkend="toc.width.frag"></src:fragref> +<src:fragref linkend="ua.js.frag"></src:fragref> +<src:fragref linkend="up.image.frag"></src:fragref> +<src:fragref linkend="xbCollapsibleLists.js.frag"></src:fragref> +<src:fragref linkend="xbDOM.js.frag"></src:fragref> +<src:fragref linkend="xbStyle.js.frag"></src:fragref> +<src:fragref linkend="xbLibrary.js.frag"></src:fragref> + +</xsl:stylesheet> + + + + diff --git a/docbook-xsl-1.76.1/slides/html/param.xsl b/docbook-xsl-1.76.1/slides/html/param.xsl new file mode 100644 index 0000000..7dad0bc --- /dev/null +++ b/docbook-xsl-1.76.1/slides/html/param.xsl @@ -0,0 +1,68 @@ + + + + + + + +#FFFFFF +toc/bullet.png +slides.css + + + + +hidetoc.gif +active/nav-home.png + +toc/open.png +white + +40 +white + +active/nav-next.png +inactive/nav-home.png +inactive/nav-next.png +inactive/nav-prev.png +inactive/nav-toc.png +inactive/nav-up.png +no + +overlay.js +http://docbook.sourceforge.net/release/buttons/slides-1.png +toc/closed.png +active/nav-prev.png + + +showtoc.gif +slides.js +Home +Next +Prev +ToC +Up + +#FFFFFF + + +active/nav-toc.png +22 +250 + +ua.js +active/nav-up.png +xbCollapsibleLists.js +xbDOM.js +xbStyle.js +xbLibrary.js + + diff --git a/docbook-xsl-1.76.1/slides/html/plain.xsl b/docbook-xsl-1.76.1/slides/html/plain.xsl new file mode 100644 index 0000000..47224da --- /dev/null +++ b/docbook-xsl-1.76.1/slides/html/plain.xsl @@ -0,0 +1,472 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/slides/html/slides-common.xsl b/docbook-xsl-1.76.1/slides/html/slides-common.xsl new file mode 100644 index 0000000..9854164 --- /dev/null +++ b/docbook-xsl-1.76.1/slides/html/slides-common.xsl @@ -0,0 +1,1541 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <xsl:value-of select="title"/> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + titlepage + + - + + + + + + + + overlaySetup('lc') + + + + + navigate(event) + + + +
    + + + + + +
    + +
    + +
    + + + + + +
    +
    + + +
    +
    +
    + + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    +
    + + + + + + +

    +
    + + +

    +
    + + +

    +
    + + + + + + + + + + + + + + + : + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <xsl:value-of select="slidesinfo/title"/> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + overlaySetup('lc') + + + + + navigate(event) + + + +
    + + + + + + + +
    + +
    + +
    + + + + + + + +
    +
    + + +
    +
    +
    + + +

    + + + +

    + +

    + + + TableofContents + + +

    +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + . + + + + + + +
    + +
    +
    + +
    +
    +
    +
    + + +
    + + . + + + + + + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <xsl:value-of select="title"/> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + overlaySetup('lc') + + + + + navigate(event) + + + +
    + + + + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    +
    + + + + +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    + +

    +
    + + + + + + + + + + + + + + + + + + + + + + + + + <xsl:value-of select="title"/> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + overlaySetup('lc') + + + + + navigate(event) + + + +
    + + + + + + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    +
    + + + + +
    +
    + + +
    + + +

    +
    + + + + + + + + + + + +
    + +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + position: absolute; visibility: visible; + + + + padding-top: 2in; + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + foil + + + + + + foilgroup + + + + + + + + + + + + </span> + + + <span + + class="green" + class="blue" + class="orange" + class="red" + class="brown" + class="violet" + class="black" + class="bold" + + > + + + + + + + + +
    + +
    +
    +
    + + + + + + + + + copyright + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ( + + ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    + +

    +
    + + +
    + + +
    +
    + + + + + + + + + + + + + + + + 1 + 1 + 1 + 0 + + + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + / + + + + + + + + + + + foil + + + + + + + + + + + foilgroup + + + + + + chunk-filename-error- + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + / + + + +   + + + + +
    diff --git a/docbook-xsl-1.76.1/slides/html/tables.xsl b/docbook-xsl-1.76.1/slides/html/tables.xsl new file mode 100644 index 0000000..0462528 --- /dev/null +++ b/docbook-xsl-1.76.1/slides/html/tables.xsl @@ -0,0 +1,336 @@ + + + + + + + + +#6A719C +220 + + + + + + + + + + + + +
    + + + + + +
    + +
    +
      + + + + + +
    + +
    + + +
    + +
    +
    +
    +
    + + + + + + + + +
    + + + + + +
    + +
    +
      + + + + + +
    + +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + +  + + + + + + + + + + + + + + + + + +
    + + + +  + + + + + + +  + + + + + + + + + + + + + + + +
    +
    +
    +
    + +  + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + + + + + + + +  + + + + + + + + + + + + + + +
    + + + +  + + + + + + + + + + + + + + + + + + + +  + + + + + + + + + + + + + + + + + +
    +
    +
    +
    + + + + + + + + + + + + + + + +  + + + + + + + + + + + +
    +
    +
    +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +   + + + + + + + + + + + + +
    diff --git a/docbook-xsl-1.76.1/slides/html/vslides.xsl b/docbook-xsl-1.76.1/slides/html/vslides.xsl new file mode 100644 index 0000000..f490099 --- /dev/null +++ b/docbook-xsl-1.76.1/slides/html/vslides.xsl @@ -0,0 +1,667 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <xsl:value-of select="slidesinfo/title"/> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + navigate(event) + + + + + + + + + + + + + + + + + + +
     
    + + + + + + + + + + + + + + + + + + +
    + +
    + +
    + +
    +
     
    + + +
    +
    + + +
    + + + + + + + + + <xsl:value-of select="title"/> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + navigate(event) + + + + + + + + + + + + + + + + + + +
     
    + + + + + + + + + + + + + + + + + + +
    + +
    +
     
    + + +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + <xsl:value-of select="title"/> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + navigate(event) + + + + + + + + + + + + + + + + + + +
     
    + + + + + + + + + + + + + + + + + + + +
    + +
    +
     
    + + +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + <xsl:value-of select="title"/> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + navigate(event) + + + + + + + + + + + + + + + + + + +
     
    + + + + + + + + + + + + + + + + + + + +
    + +
    +
     
    + + +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + + First + + + + + + + + + + First + + + + + + + + +
    + + + + + + + Previous + + + + + + + + + + Previous + + + + + + + + +
    + + + + + + + Last + + + + + + + + + + Last + + + + + + + + +
    + + + + + + + Next + + + + + + + + + + Next + + + + + + + + + +
    +
    + + + + + ToC + + + + + + + + + + ToC + + + + + + + + +
    +
    + +
    diff --git a/docbook-xsl-1.76.1/slides/html/w3c.xsl b/docbook-xsl-1.76.1/slides/html/w3c.xsl new file mode 100644 index 0000000..5a5b420 --- /dev/null +++ b/docbook-xsl-1.76.1/slides/html/w3c.xsl @@ -0,0 +1,376 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {$logo.title} + + + + + + + + + + position: absolute; visibility: visible; + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    +
    + + + + + + + + + + + + + + + + + + +
    diff --git a/docbook-xsl-1.76.1/slides/htmlhelp/htmlhelp.xsl b/docbook-xsl-1.76.1/slides/htmlhelp/htmlhelp.xsl new file mode 100644 index 0000000..4a6b370 --- /dev/null +++ b/docbook-xsl-1.76.1/slides/htmlhelp/htmlhelp.xsl @@ -0,0 +1,89 @@ + + '> +]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
  • &lf; + &lf; + + + + + +
  • &lf; +
    + +
      &lf; + +
    &lf; +
    +
    + + + + + + + + + + + + + + + +
  • &lf; + &lf; + + + + + +
  • &lf; +
    +
    + +
    diff --git a/docbook-xsl-1.76.1/slides/keynote/default.xsl b/docbook-xsl-1.76.1/slides/keynote/default.xsl new file mode 100644 index 0000000..7ff90b1 --- /dev/null +++ b/docbook-xsl-1.76.1/slides/keynote/default.xsl @@ -0,0 +1,600 @@ + + + + + + + + + Keynote Slides + + + Steve + Ball + + Zveno +
    + + zveno.com + +
    +
    +
    + + $Id: default.xsl 3991 2004-11-10 06:51:55Z balls $ + + + 2004 + 2003 + Steve Ball, Zveno Pty Ltd + + + + Zveno Pty Ltd makes this software and associated documentation available free of charge for any purpose. You may make copies of the software but you must include all of this notice on any copy. + Zveno Pty Ltd does not warrant that this software is error free or fit for any purpose. Zveno Pty Ltd disclaims any liability for all claims, expenses, losses, damages and costs any user may incur as a result of using, copying or modifying the software. + +
    +
    + + + + + + + + + + + + + + + + You must specify your slides document using the "slides" parameter + + + + + + + + + + + + + + + + + + + </drawables> + <transition-style type='inherited'/> + <thumbnails> + <thumbnail file='thumbs/st0.tiff' byte-size='6520' size='60 45'/> + </thumbnails> + <bullets> + <bullet marker-type='inherited' level='0'> + <content tab-stops='L 96' font-size='84' font-color='g1' font-name='GillSans' paragraph-alignment='center'> + <xsl:apply-templates select='slidesinfo/title/node()'/> + </content> + </bullet> + <xsl:choose> + <xsl:when test='slidesinfo/subtitle'> + <bullet marker-type='inherited' level='1'> + <content tab-stops='L 96' font-size='36' font-color='g1' font-name='GillSans' paragraph-alignment='center'> + <xsl:apply-templates select='slidesinfo/subtitle/node()' mode='slides'/> + </content> + </bullet> + </xsl:when> + <xsl:when test='slidesinfo/corpauthor'> + <bullet marker-type='inherited' level='1'> + <content tab-stops='L 96' font-size='36' font-color='g1' font-name='GillSans' paragraph-alignment='center'> + <xsl:apply-templates select='slidesinfo/corpauthor/node()' mode='slides'/> + </content> + </bullet> + </xsl:when> + <xsl:when test='slidesinfo/author'> + <bullet marker-type='inherited' level='1'> + <content tab-stops='L 96' font-size='36' font-color='g1' font-name='GillSans' paragraph-alignment='center'> + <xsl:apply-templates select='slidesinfo/author' mode='slides'/> + </content> + </bullet> + </xsl:when> + </xsl:choose> + </bullets> + <notes font-size='18' font-name='LucidaGrande'> + <xsl:apply-templates select='slidesinfo/*[not(self::title|self::subtitle|self::corpauthor|self::author)]' mode='slides'/> + </notes> + </slide> + + <xsl:if test='foilgroup'> + <xsl:call-template name='overview'/> + </xsl:if> + + <xsl:apply-templates select='foilgroup|foil' mode='slides'/> + </xsl:template> + + <xsl:template name='overview'> + <xsl:param name='current' select='/'/> + + <slide id='overview-{generate-id()}' master-slide-id="{$masters/apxl:master-slide[@name=$overview-master]/@id}"> + <drawables> + <body visibility='tracks-master' vertical-alignment='tracks-master'/> + <title visibility='tracks-master' vertical-alignment='tracks-master'/> + + <xsl:for-each select='ancestor-or-self::slides/foilgroup'> + <textbox id='textbox-{position()}' grow-horizontally='true' transformation='1 0 0 1 {100 + floor((position() - 1) div 10) * 400} {200 + floor((position() - 1) mod 10) * 50}' size='200 50'> + <content tab-stops='L 84' font-size='36' paragraph-alignment='left'> + <xsl:attribute name='font-color'> + <xsl:choose> + <xsl:when test='generate-id() = generate-id($current)'> + <xsl:text>1 0.5 0</xsl:text> + </xsl:when> + <xsl:otherwise>g1</xsl:otherwise> + </xsl:choose> + </xsl:attribute> + <xsl:apply-templates select='title' mode='slides'/> + </content> + </textbox> + </xsl:for-each> + + </drawables> + <transition-style type='inherited'/> + <thumbnails> + <thumbnail file='thumbs/st0.tiff' byte-size='6520' size='60 45'/> + </thumbnails> + <bullets> + <bullet marker-type='inherited' level='0'> + <content tab-stops='L 96' font-size='84' font-color='g1' font-name='GillSans' paragraph-alignment='center'>Overview</content> + </bullet> + </bullets> + </slide> + </xsl:template> + + <xsl:template match='author' mode='slides'> + <xsl:apply-templates select='firstname/node()' mode='slides'/> + <xsl:text> </xsl:text> + <xsl:apply-templates select='surname/node()' mode='slides'/> + </xsl:template> + <xsl:template match='copyright' mode='slides'> + <xsl:text>Copyright (c) </xsl:text> + <xsl:value-of select='year'/> + <xsl:text> </xsl:text> + <xsl:apply-templates select='holder' mode='slides'/> + <xsl:text>. </xsl:text> + </xsl:template> + + <xsl:template match='foilgroup' mode='slides'> + <xsl:variable name='number' select='count(preceding-sibling::foilgroup) + count(preceding::foil) + 1'/> + + <xsl:call-template name='overview'> + <xsl:with-param name='current' select='.'/> + </xsl:call-template> + + <slide id='foilgroup-{generate-id()}'> + <xsl:attribute name='master-slide-id'> + <xsl:choose> + <xsl:when test='*[not(self::foil|self::foilgroupinfo|self::speakernotes)]'> + <xsl:value-of select='$masters/apxl:master-slide[@name=$title-only-master]/@id'/> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select='$masters/apxl:master-slide[@name=$foilgroup-master]/@id'/> + </xsl:otherwise> + </xsl:choose> + </xsl:attribute> + + <drawables> + <title visibility='tracks-master' vertical-alignment='tracks-master'/> + <body visibility='hidden' vertical-alignment='tracks-master'/> + <xsl:call-template name='drawables'/> + </drawables> + <transition-style type='inherited'/> + <thumbnails> + <thumbnail file='thumbs/st0.tiff' byte-size='6520' size='60 45'/> + </thumbnails> + <bullets> + <bullet marker-type='inherited' level='0'> + <content tab-stops='L 96' font-size='84' font-color='g1' font-name='GillSans' paragraph-alignment='center'> + <xsl:apply-templates select='title' mode='slides'/> + </content> + </bullet> + + <xsl:apply-templates select='itemizedlist/listitem' mode='slides'/> + </bullets> + <xsl:if test='speakernotes'> + <notes font-size='18' font-name='LucidaGrande'> + <xsl:apply-templates select='speakernotes/para[1]/node()' mode='slides'/> + <xsl:for-each select='speakernotes/para[position() != 1]'> + <xsl:text>; </xsl:text> + <xsl:apply-templates select='node()' mode='slides'/> + </xsl:for-each> + </notes> + </xsl:if> + </slide> + + <xsl:apply-templates select='foil' mode='slides'/> + + </xsl:template> + + <xsl:template match='foil' mode='slides'> + <xsl:variable name='number' select='count(preceding::foilgroup) + count(preceding::foil) + count(preceding-sibling::foil) + 1'/> + + <slide id='foil-{generate-id()}'> + <xsl:attribute name='master-slide-id'> + <xsl:choose> + <xsl:when test='imageobject'> + <xsl:value-of select='$masters/apxl:master-slide[@name=$title-only-master]/@id'/> + </xsl:when> + <xsl:when test='itemizedlist[.//imageobject]'> + <xsl:value-of select='$masters/apxl:master-slide[@name=$bullet-and-image-master]/@id'/> + </xsl:when> + <xsl:when test='itemizedlist'> + <xsl:value-of select='$masters/apxl:master-slide[@name=$bullet-master]/@id'/> + </xsl:when> + <xsl:when test='example|informalexample'> + <xsl:value-of select='$masters/apxl:master-slide[@name=$title-only-master]/@id'/> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select='$masters/apxl:master-slide[@name=$bullet-master]/@id'/> + </xsl:otherwise> + </xsl:choose> + </xsl:attribute> + <drawables> + <body visibility='tracks-master' vertical-alignment='tracks-master'/> + <title visibility='tracks-master' vertical-alignment='tracks-master'/> + <xsl:call-template name='drawables'/> + </drawables> + <transition-style type='inherited'/> + <thumbnails> + <thumbnail file='thumbs/st0.tiff' byte-size='6520' size='60 45'/> + </thumbnails> + <bullets> + <bullet marker-type='inherited' level='0'> + <content tab-stops='L 96' font-size='64' font-color='g1' font-name='GillSans' paragraph-alignment='inherited'> + <!-- + <xsl:apply-templates select='../title' mode='slides'/> + <xsl:text>: </xsl:text> +--> + <xsl:apply-templates select='title' mode='slides'/> + </content> + </bullet> + <xsl:apply-templates select='itemizedlist/listitem' mode='slides'/> + </bullets> + <xsl:if test='speakernotes'> + <notes font-size='18' font-name='LucidaGrande'> + <xsl:apply-templates select='speakernotes/para[1]/node()' mode='slides'/> + <xsl:for-each select='speakernotes/para[position() != 1]'> + <xsl:text>; </xsl:text> + <xsl:apply-templates select='node()' mode='slides'/> + </xsl:for-each> + </notes> + </xsl:if> + </slide> + </xsl:template> + + <doc:template xmlns=''> + <title>drawables Template + + This template adds objects to the drawables section of a foil. These include images, as well as unadorned (non-bullet) text. + + A single image is placed centered on the foil. An image on a foil that contains other text is placed on the right-hand-side. + + + + + + + + + 1.0 + video/quicktime + + + + + + + + + + + + + + + + + + {800, 400} + + + + + + + + + + + + + + + + + + + + {0, 300} + + + + + {150, 300} + + + + + {0, 200} + + + + + {150, 200} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ]]> + + + + ]]> + + + + + + + + + + + + + + + + + + + + <![CDATA[ + + + + + + + + + + + + + + + GillSans-Italic + GillSans + + + + + + + + + + + + + " + “ + + + + + + ]]> + ]] > + + + + + + + + + + + + + + + + < + < + + + + + + + ]]> + ]] > + + + + + + + + + + + + + + + + + + + 20 + 0 + + + + + + + + + + + + + + + + + + + + + + + + AmericanTypewriter-CondensedBoldItalic + + + GillSans-BoldItalic + + + AmericanTypewriter-CondensedItalic + + + GillSans-Italic + + + AmericanTypewriter-CondensedBold + + + GillSans-Bold + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    diff --git a/docbook-xsl-1.76.1/slides/keynote/xsltsl/cmp.xsl b/docbook-xsl-1.76.1/slides/keynote/xsltsl/cmp.xsl new file mode 100644 index 0000000..6e2866d --- /dev/null +++ b/docbook-xsl-1.76.1/slides/keynote/xsltsl/cmp.xsl @@ -0,0 +1,348 @@ + + + + + + + + $Id: cmp.xsl 6297 2006-09-14 01:32:27Z xmldoc $ + + + Hummel + Mark + + + 2003 + Mark Hummel + + + + XML Compare + + +
    + Introduction + + This module provides a template for comparing two xml documents. + +
    +
    + +
    + + + + Find differences + + + Compare two xml documents and display differences. Two xml documents are defined to be the same if: They have the matching elements and attributes, and that the data in the elements also match. The comparison is order sensitive. + + The element names from the documents at the current depth are compared, followed by their values, then any attribute names and values are compared. The process is applied then to the subtrees of the documents. + + Notes: If there are leaf nodes in one nodeset which don't exist in the other, the value of those 'extra' elements won't appear as a difference. + + + + + + + ns1 + ns2 + + The two nodesets which are to be compared. + + + + + + + Returns the difference between the documents. + + The format of the output is an xml document. A node is added to the result tree for every difference. The node contains the type of difference (e.g element name difference, attribute value difference, etc), the value in the first nodeset and the value in the second nodeset, and the parent node. The indentation level is the depth at which the difference was found relative to the first document. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + node[]: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Compare + + + Recursively compare two xml nodesets, stop when a difference is found and return false. Otherwise return true if the document is identical. + + The element names from the documents at the current depth are compared, followed by their values, then any attribute names and values are compared. The process is applied then to the subtrees of the documents. + + Notes: If there are leaf nodes in one nodeset which don't exist in the other, the value of those 'extra' elements won't appear as a difference. + + + + + + + ns1 + ns2 + + The two nodesets which are to be compared. + + + + + + + False when the nodesets are not identical, empty otherwise. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + diff --git a/docbook-xsl-1.76.1/slides/keynote/xsltsl/date-time.xsl b/docbook-xsl-1.76.1/slides/keynote/xsltsl/date-time.xsl new file mode 100644 index 0000000..671260d --- /dev/null +++ b/docbook-xsl-1.76.1/slides/keynote/xsltsl/date-time.xsl @@ -0,0 +1,1524 @@ + + + + + + + $Id: date-time.xsl 3991 2004-11-10 06:51:55Z balls $ + + + Diamond + Jason + + + 2004 + Steve Ball + + + 2001 + Jason Diamond + + + + Date/Time Processing + + +
    + Introduction + + This module provides templates for formatting and parsing date/time strings. + + See http://www.tondering.dk/claus/calendar.html for more information on calendars and the calculations this library performs. + +
    +
    + +
    + + + Returns a string with a formatted date/time. + + + The formatted date/time is determined by the format parameter. The default format is %Y-%m-%dT%H:%M:%S%z, the W3C format. + + + + + + + xsd-date-time + + The date-time value in XML Schemas (WXS) format. + If this value is specified, it takes priority over other parameters. + + + + + year + + Year, in either 2 or 4+ digit format.. + If the year is given as a two digit value, it will be converted to a four digit value using the fixed window method. Values between 00 and 49 will be prepended by "20". Values between 50 and 99 will be prepended by "19". + + + + + month + + Month (1 - 12; January = 1) + + + + + day + + Day of month (1 - 31) + + + + + hour + + Hours since midnight (0 - 23) + + + + + minute + + Minutes after hour (0 - 59) + + + + + second + + Seconds after minute (0 - 59) + + + + + time-zone + + Time zone string (e.g., 'Z' or '-08:00') + + + + + format + + The format specification. + + + + %a + + Abbreviated weekday name + + + + + %A + + Full weekday name + + + + + %b + + Abbreviated month name + + + + + %B + + Full month name + + + + + %c + + Date and time representation appropriate for locale + + + + + %d + + Day of month as decimal number (01 - 31) + + + + + %e + + Day of month as decimal number (1 - 31) + + + + + %H + + Hour in 24-hour format (00 - 23) + + + + + %I + + Hour in 12-hour format (01 - 12) + + + + + %i + + Hour in 12-hour format (1 - 12) + + + + + %j + + Day of year as decimal number (001 - 366) + + + + + %m + + Month as decimal number (01 - 12) + + + + + %n + + Month as decimal number (1 - 12) + + + + + %M + + Minute as decimal number (00 - 59) + + + + + %P + + Current locale's A.M./P.M. indicator for 12-hour clock, uppercase + + + + + %Q + + Current locale's A.M./P.M. indicator for 12-hour clock, uppercase with periods + + + + + %p + + Current locale's A.M./P.M. indicator for 12-hour clock, lowercase + + + + + %q + + Current locale's A.M./P.M. indicator for 12-hour clock, lowercase with periods + + + + + %S + + Second as decimal number (00 - 59) + + + + + %U + + Week of year as decimal number, with Sunday as first day of week (00 - 53) + + + + + %w + + Weekday as decimal number (0 - 6; Sunday is 0) + + + + + %W + + Week of year as decimal number, with Monday as first day of week (00 - 53) + + + + + %x + + Date representation for current locale + + + + + %X + + Time representation for current locale + + + + + %y + + Year without century, as decimal number (00 - 99) + + + + + %Y + + Year with century, as decimal number + + + + + %z + + Time-zone name or abbreviation; no characters if time zone is unknown + + + + + %% + + Percent sign + + + + + + + + + + + + Returns a formatted date/time string. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + % + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + [not implemented] + + + + + 0 + + + + + + + + + + 0 + + + + + + + 12 + 0 + + 0 + + + + + + + 12 + + + + + + + + + + [not implemented] + + + + + 0 + + + + + + + + + + 0 + + + + + + + am + pm + + + + + + am + p.m. + + + + + + AM + PM + + + + + + AM + P.M. + + + + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + [not implemented] + + + + + [not implemented] + + + + + + invalid year value + + + 00 + + + + + + + + + + + invalid year value + + + + + + + + + invalid year value + + + + + + + + + + + % + + + + + + + + + + + + + + + + + + + + + + + Calculates the day of the week. + + + Given any Gregorian date, this calculates the day of the week. + + + + + + year + + Year + + + + month + + Month (1 - 12; January = 1) + + + + day + + Day of month (1 - 31) + + + + + + + Returns the day of the week (0 - 6; Sunday = 0). + + + + + + + + + + + + + + + + + + + Calculates the number of days for a specified month. + + + Given any Gregorian month, this calculates the last day of the month. + + + + + + year + + Year + + + + month + + Month (1 - 12; January = 1) + + + + + + + Returns the number of days in given month as a decimal number. + + + + + + + + + + + 29 + 28 + + + + + 30 + 31 + + + + + 30 + 31 + + + + + + + Gets the day of the week's full name. + + + Converts a numeric day of the week value into a string representing the day's full name. + + + + + + day-of-the-week + + Day of the week (0 - 6; Sunday = 0) + + + + + + + Returns a string. + + + + + + + + + Sunday + Monday + Tuesday + Wednesday + Thursday + Friday + Saturday + error: + + + + + + Gets the day of the week's abbreviation. + + + Converts a numeric day of the week value into a string representing the day's abbreviation. + + + + + + day-of-the-week + + Day of the week (0 - 6; Sunday = 0) + + + + + + + Returns a string. + + + + + + + + + Sun + Mon + Tue + Wed + Thu + Fri + Sat + error: + + + + + + Gets the month's full name. + + + Converts a numeric month value into a string representing the month's full name. + + + + + + month + + Month (1 - 12; Januaray = 1) + + + + + + + Returns a string. + + + + + + + + + January + February + March + April + May + June + July + August + September + October + November + December + error: + + + + + + Gets the month's abbreviation. + + + Converts a numeric month value into a string representing the month's abbreviation. + + + + + + month + + Month (1 - 12; Januaray = 1) + + + + + + + Returns a string. + + + + + + + + + Jan + Feb + Mar + Apr + May + Jun + Jul + Aug + Sep + Oct + Nov + Dec + error: + + + + + + Calculates the Julian Day for a specified date. + + + Given any Gregorian date, this calculates the Julian Day. + + + + + + year + + Year + + + + month + + Month (1 - 12; January = 1) + + + + day + + Day of month (1 - 31) + + + + + + + Returns the Julian Day as a decimal number. + + + + + + + + + + + + + + + + + + + Returns a string with a formatted date for a specified Julian Day. + + + Given any Julian Day, this returns a string according to the format specification. + + + + + + julian-day + + A Julian Day + + + + format + + The format specification. See dt:format-date-time for more details. + + + + + + + A string. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Calculates the week number for a specified date. + + + Assumes Monday is the first day of the week. + + + + + + year + + Year + + + + month + + Month (1 - 12; January = 1) + + + + day + + Day of month (1 - 31) + + + + + + + Returns the week number as a decimal number. + + + + + + + + + + + + + + + + + + + + + + + + + + + Take a month by name and return a number which can be used as input to the templates. + + + Input + + + + + + month + + Month as described either by full name or abbreviation. + + + + + + + Return a month as a decimal number. (Jan = 1) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Return year component of XSD DateTime value. + + + Extract component of XML Schemas DateTime value. + + + + + + xsd-date-time + + A value in XSD DateTime format. + + + + + + + Returns year component. + + + + + + + + + + + + + + + + + + + + + + + + + Return month component of XSD DateTime value. + + + Extract component of XML Schemas DateTime value. + + + + + + xsd-date-time + + A value in XSD DateTime format. + + + + + + + Returns month component. + + + + + + + + + + + + + + + + + + + + + + + + + Return day component of XSD DateTime value. + + + Extract component of XML Schemas DateTime value. + + + + + + xsd-date-time + + A value in XSD DateTime format. + + + + + + + Returns day component. + + + + + + + + + + + + + + + + + + + + + + + + + Return hour component of XSD DateTime value. + + + Extract component of XML Schemas DateTime value. + + + + + + xsd-date-time + + A value in XSD DateTime format. + + + + + + + Returns hour component. + + + + + + + + + + + + + + + + + + + + + + + + + + Return minute component of XSD DateTime value. + + + Extract component of XML Schemas DateTime value. + + + + + + xsd-date-time + + A value in XSD DateTime format. + + + + + + + Returns minute component. + + + + + + + + + + + + + + + + + + + + + + + + + + Return second component of XSD DateTime value. + + + Extract component of XML Schemas DateTime value. + + + + + + xsd-date-time + + A value in XSD DateTime format. + + + + + + + Returns second component. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Return timezone component of XSD DateTime value. + + + Extract component of XML Schemas DateTime value. + + + + + + xsd-date-time + + A value in XSD DateTime format. + + + + + + + Returns timezone component. + + + + + + + + Z + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + Return two digit year as four digit year value. + + + Prepend century to two digit year value. + Century value is calculated according to suggested solutions in RFC2626 (section 5). + Fixed window solution: 20 is prepended to year if the year is less than 50, otherwise 19 is prepended to year. + Sliding window solution: The year is considered in the future if the year is less than the current 2 digit year plus 'n' years (where 'n' is a param), otherwise it is considered in the past. + + + + + + year + + A year value in 2 digit format. + + + + method + + RFC2626 suggested solution ('fixed' or 'sliding'). Default is 'fixed'. + + + + n + + No. of years. Used in sliding windows solution. + + + + + + + Returns four digit year value. + + + + + + + + + invalid year value + + + 20 + 19 + + + + not yet implemented + invalid method + + + +
    diff --git a/docbook-xsl-1.76.1/slides/keynote/xsltsl/example.xsl b/docbook-xsl-1.76.1/slides/keynote/xsltsl/example.xsl new file mode 100644 index 0000000..349bab9 --- /dev/null +++ b/docbook-xsl-1.76.1/slides/keynote/xsltsl/example.xsl @@ -0,0 +1,90 @@ + + + + + + + + $Id: example.xsl 3991 2004-11-10 06:51:55Z balls $ + + + Ball + Steve + + + 2001 + Steve Ball + + + + Example Stylesheet + + +
    + Introduction + + This module provides a template for adding stylesheet modules to the XSLT Standard Library. + To add a new module to the library, follow these easy steps: + + + Copy this file and replace its contents with the new module templates and documentation. + + + Copy the corresponding test file in the test directory. Replace its contents with tests for the new module. + + + Add an include element in the stdlib.xsl stylesheet. + + + Add an entry in the test/test.xml file. + + + Add entries in the test/test.xsl stylesheet. + + + Add an entry in the doc/build.xml file. + + + + The example.xsl stylesheet provides a more extensive example. + +
    +
    + +
    + + + Template Example + + + Provides a template for writing templates. Replace this paragraph with a description of your template + + + + + + text + + The example string + + + + + + + Returns nothing. + + + + + + + +
    + diff --git a/docbook-xsl-1.76.1/slides/keynote/xsltsl/markup.xsl b/docbook-xsl-1.76.1/slides/keynote/xsltsl/markup.xsl new file mode 100644 index 0000000..cff2485 --- /dev/null +++ b/docbook-xsl-1.76.1/slides/keynote/xsltsl/markup.xsl @@ -0,0 +1,789 @@ + + + + + + $Id: markup.xsl 3991 2004-11-10 06:51:55Z balls $ + + + Ball + Steve + + + 2003 + 2001 + Steve Ball + + + + XML Markup Templates + + +
    + Introduction + + This stylesheet module provides functions for generating literal XML markup. + +
    +
    + +
    + + + Create an XML Declaration + + + This template returns an XML Declaration. Although the XSLT standard provides control over the generation of the XML Declaration, this template may be useful in circumstances where the values must be computed at runtime. + + + + + + version + + Version number. + + + + standalone + + Standalone indication. Must be value "yes" or "no". + + + + encoding + + Character encoding. + + + + + + + Returns an XML Declaration as a string. + + + + + + + + + <?xml version=" + + " + + + + + standalone=" + + " + + + invalid value "" for standalone attribute + + + + + encoding=" + + " + + + ?> + + + + + Create a Document Type Declaration + + + This template returns a Document Type Declaration. Although the XSLT standard provides control over the generation of a Document Type Declaration, this template may be useful in circumstances where the values for the identifiers or the internal subset must be computed at runtime. + + + + + + docel + + The name of the document element. + + + + publicid + + The public identifier for the external DTD subset. + + + + systemid + + The system identifier for the external DTD subset. + + + + internaldtd + + The internal DTD subset. + + + + + + + Returns a Document Type Declaration as a string. + + + + + + + + + + + No document element specified + + + <!DOCTYPE + + + + + + + + + + [ + + ] + + + > + + + + + Create an Element Declaration + + + This template returns an element declaration.. + + + + + + type + + The element type. + + + + content-spec + + The content specification. + + + + + + + Returns an element declaration as a string. + + + + + + + + + element type must be specified + + + content specification must be specified + + + <!ELEMENT + + + + > + + + + Create an Attribute List Declaration + + + This template returns an attribute list declaration. + + + + + + type + + The element type. + + + + attr-defns + + Attribute definitions. + + + + + + + Returns an attribute list declaration as a string. + + + + + + + + + element type must be specified + + + <!ATTLIST + + + + > + + + + Create an Attribute Definition + + + This template returns an attribute definition. + + + + + + name + + The attribute name. + + + + type + + The attribute type. + + + + default + + The attribute default. + + + + + + + Returns an attribute definition as a string. + + + + + + + + + + attribute name must be specified + + + attribute type must be specified + + + attribute default must be specified + + + + + + + + + + + + Create an Entity Declaration + + + This template returns an entity declaration. + If the 'text' parameter is given a value, then an internal entity is created. If either the 'publicid' or 'systemid' parameters are given a value then an external entity is created. It is an error for the 'text' parameter to have value as well as the 'publicid', 'systemid' or 'notation' parameters. + + + + + + name + + The entity name. + + + + parameter + + Boolean value to determine whether a parameter entity is created. Default is 'false()'. + + + + text + + The replacement text. Must be a string. + + + + nodes + + The replacement text as a nodeset. The nodeset is formatted as XML using the as-xml template. If both text and nodes are specified then nodes takes precedence. + + + + publicid + + The public identifier for an external entity. + + + + systemid + + The system identifier for an external entity. + + + + notation + + The notation for an external entity. + + + + + + + Returns an entity declaration as a string. + + + + + + + + + + + + + + entity name must be specified + + + both replacement text and external identifier specified + + + <!ENTITY + + + + % + + + + + + + + + + + + + + + + + + + + + + + + + + + NDATA " + + " + + + > + + + + Quote an Attribute Value + + + This template returns a quoted value. + + + + + + value + + The value to quote. + + + + + + + Returns a quote value as a string. + + + + + + + + + + + + + + + + + < + + &lt; + + + + + + + + + + + + + + " + ' + + + + " + + + " + + &quot; + + + " + + + ' + + ' + + + " + + " + + + + + + Create an External Identifier + + + This template returns an external identifier. + + + + + + publicid + + The public identifier. + + + + systemid + + The system identifier. + + + + + + + Returns an external identifier as a string. + + + + + + + + + + + + + + PUBLIC " + + " + + " + + " + + + + + + + SYSTEM " + + " + + + + + + Create an Entity Reference + + + This template returns an entity reference. + + + + + + name + + The name of the entity. + + + + + + + Returns an entity reference as a string. + + + + + + + & + + ; + + + + + Create a Notation Declaration + + + This template returns a notation declaration. + + + + + + name + + The notation name. + + + + publicid + + The public identifier for the notation. + + + + systemid + + The system identifier for the notation. + + + + + + + Returns a notation declaration as a string. + + + + + + + + + + notation name must be specified + + + external identifier must be specified + + + <!NOTATION + + + + + + + + + > + + + + Create a CDATA Section + + + This template returns a CDATA Section. The XSLT specification provides a mechanism for instructing the XSL processor to output character data in a CDATA section for certain elements, but this template may be useful in those circumstances where not all instances of an element are to have their content placed in a CDATA section. + + + + + + text + + The content of the CDATA section. + + + + + + + Returns a CDATA section as a string. + + + + + + + + CDATA section contains "]]>" + + + <![CDATA[ + + ]]> + + + + Format Nodeset As XML Markup + + + This template returns XML markup. Each node in the given nodeset is converted to its equivalent XML markup. + + BUG: This version may not adequately handle XML Namespaces. + + + + + + nodes + + Nodeset to format as XML. + + + + + + + Returns XML markup. + + + + + + + + + + < + + + + + = + + + + + + + + > + + + + </ + + > + + + /> + + + + + + + + <!-- + + --> + + + <? + + + + ?> + + + + + + + + + + + + + +
    diff --git a/docbook-xsl-1.76.1/slides/keynote/xsltsl/math.xsl b/docbook-xsl-1.76.1/slides/keynote/xsltsl/math.xsl new file mode 100644 index 0000000..e3e14dd --- /dev/null +++ b/docbook-xsl-1.76.1/slides/keynote/xsltsl/math.xsl @@ -0,0 +1,704 @@ + + + + + + + $Id: math.xsl 3991 2004-11-10 06:51:55Z balls $ + + + Ball + Steve + + + 2004 + 2002 + Steve Ball + + + + Math Module + + +
    + Introduction + + This module provides mathematical functions. +
    +
    + +
    + + + Power + + + Raises a number to a power. + + + + + + base + + The base number. Must be a number. + + + + power + + The power to raise the number to. Must be an integer. + + + + + + + Returns base multiplied by itself power times. If the base or power are not numbers or if the power is fractional then an empty string is returned. + + + + + + + + + + 1 + + + 1 + + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Absolute Value + + + Absolute value of a number. + + + + + + number + + The number. Must be a number. + + + + + + + Returns the absolute value of the number. + + + + + + + + + + + + + + + + + + Conversion + + + Converts a hexidecimal value to a decimal value. + + + + + + value + + The hexidecimal number. Must be a number in hexidecimal format. + + + + + + + Returns the value as a decimal string. If the value is not a number then a NaN value is returned. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 10 + 11 + 12 + 13 + 14 + 15 + + + + + Conversion + + + Converts a decimal value to a hexidecimal value. + + + + + + value + + The decimal number. + + + + + + + Returns the value as a hexidecimal string (lowercase). If the value is not a number then a NaN value is returned. + + + + + + + + 0 + NaN + + + + + + + + + + a + b + c + d + e + f + + + + + + + + Ordinal number + + + Gives the ordinal number of a given counting number. For example, 1 becomes "1st". + + + + + + number + + An integer number. + + + + + + + Returns the number with an ordinal suffix. + + + + + + + + + + + + th + st + nd + rd + th + + + + + + + + Returns an ordinal number + + + This template returns the ordinal number for a given counting number as a word. For example "first" for 1. + Only handles numbers less than 10000000 (ten million). + + + + + + number + + The counting number. + + + + conjunctive + + Whether to add the word "and" to the result, for example "one hundred and first" rather than "one hundred first". Default is "yes". + + + + + + + Returns the ordinal number as a string. + + + + + + + + + + + zeroth + + + + + and + first + + + and + second + + + and + third + + + and + fourth + + + and + fifth + + + and + sixth + + + and + seventh + + + and + eighth + + + and + ninth + + + and + tenth + + + and + eleventh + + + and + twelveth + + + and + thirteenth + + + and + fourteenth + + + and + fifteenth + + + and + sixteenth + + + and + seventeenth + + + and + eighteenth + + + and + nineteenth + + + and + twentieth + + + and + thirtieth + + + and + fortieth + + + and + fiftieth + + + and + sixtieth + + + and + seventieth + + + and + eightieth + + + and + ninetieth + + + + + + + millionth + + + and + + + + thousandth + + + and + + + + hundredth + + + + + + and + + + + + + + + + + + + + + + + + + + + + + + + + + and + + + + + + + + + + + + + + + + + + + + + + + + + + + and + + + + + + + + + + + + + + + and + + + + + + + + + + + + + + + + + Returns a number as a word + + + This template returns the word for a given integer number, for example "one" for 1. + Only handles numbers less than 10000000 (ten million). + + + + + + number + + The counting number. + + + + conjunctive + + Adds the word "and" where appropriate, for example. + + + + + + + Returns the number as a string. + + + + + + + + + + zero + + + minus + + + + + + + + + + + + million + + + + + + million + + + + + + + + + thousand + + + + + + thousand + and + + + + + + + + + hundred + + + + + + hundred + and + + + + + + one + two + three + four + five + six + seven + eight + nine + ten + eleven + twelve + thirteen + fourteen + fifteen + sixteen + seventeen + eighteen + nineteen + twenty + thirty + forty + fifty + sixty + seventy + eighty + ninety + + + + + + + + + + + + +
    + diff --git a/docbook-xsl-1.76.1/slides/keynote/xsltsl/node.xsl b/docbook-xsl-1.76.1/slides/keynote/xsltsl/node.xsl new file mode 100644 index 0000000..bf4fd7f --- /dev/null +++ b/docbook-xsl-1.76.1/slides/keynote/xsltsl/node.xsl @@ -0,0 +1,229 @@ + + + + + + + + $Id: node.xsl 3991 2004-11-10 06:51:55Z balls $ + + + Ball + Steve + + + 2001 + Steve Ball + + + + Node Templates + + +
    + Introduction + + This stylesheet module provides functions for reporting on or manipulating nodes and nodesets. + +
    +
    + +
    + + + Returns an XPath location path + + + This template returns an XPath location path that uniquely identifies the given node within the document. + + + + + + node + + The node to create an XPath for. If this parameter is given as a nodeset, then the first node in the nodeset is used. + + + + + + + Returns an XPath location path as a string. + + + + + + + + + + + + / + [] + + + + + + /comment() + [] + + + + /processing-instruction() + [] + + + + /text() + [] + + + + / + + + + /namespace:: + + + + /@ + + + + + + + /.. + + + + + + + + Return node type + + + Returns the type of a node as a string. + + + + + + node + + The node to get the type for. If this parameter is given as a nodeset, then the first node in the nodeset is used. + + + + + + + Returns node type as a string. Values returned are: + + + Element + + element + + + + Text Node + + text + + + + Comment + + comment + + + + Processing Instruction + + processing instruction + + + + + + + + + + + + + element + + + text + + + comment + + + processing instruction + + + root + + + namespace + + + attribute + + + + + + Copy Nodes + + + Makes a copy of the given nodes, including attributes and descendants. + + + + + + nodes + + The nodes to copy. + + + + + + + Returns the copied nodes as a result tree fragment. + + + + + + + + + + + + + + + + + + +
    + diff --git a/docbook-xsl-1.76.1/slides/keynote/xsltsl/stdlib.xsl b/docbook-xsl-1.76.1/slides/keynote/xsltsl/stdlib.xsl new file mode 100644 index 0000000..c014f13 --- /dev/null +++ b/docbook-xsl-1.76.1/slides/keynote/xsltsl/stdlib.xsl @@ -0,0 +1,340 @@ + + +]> + + + + + + + + + + + + + + + + + + + + XSLT Standard Library + Version &version; + + + + Ball + Steve + + + 2004 + 2002 + Steve Ball + + + + + The XSLT Standard Library, xsltsl, provides the XSLT developer with a set of XSLT templates for commonly used functions. These are implemented purely in XSLT, that is they do not use any extensions. + xsltsl is a SourceForge project. + + + + + + SourceForge Logo + + + Goals of the xsltsl project include: + + + Provision of a high-quality library of XSLT templates, suitable for inclusion by vendors in XSLT processor software products. + + + Demonstration of best practice in XSLT stylesheet development and documentation. + + + Provide examples of various techniques used to develop XSLT stylesheets (ie. a working FAQ). + + + + + + Using The Library + + There are two ways of using the library: + + + Use a local copy of the library. + + + Download the distribution (see below). + + + Unpack the distribution, using either gunzip/tar or unzip. + + + In your stylesheet import or include either the main stylesheet, stdlib.xsl, or the stylesheet module you wish to use, such as string.xsl. This example assumes that the distribution has been extracted into the same directory as your own stylesheet: + + +]]> + + + + + + Import or include either the main stylesheet, or the stylesheet module you wish to use, directly from the library website; http://xsltsl.sourceforge.net/modules/. The modules directory always contains the latest stable release. For example: + + +]]> + + Older versions of the library are available in subdirectories. For example, to access version 1.1 of the library use: + + +]]> + + + + Next, add XML Namespace declarations for the modules you wish to use. For example, to use templates from the string module, your stylesheet should have the following declaration: + + + + +]]> + + Finally, use a template with the call-template element. Most templates require parameters, which are passed using the with-param element. For example: + + + + + a word + another word + + +]]> + + + + + Obtaining The Library + + The XSLT Standard Library is available for download as either: + + + Gzip'd tarball: http://prdownloads.sourceforge.net/xsltsl/xsltsl-&version;.tar.gz + + + Zip file: http://prdownloads.sourceforge.net/xsltsl/xsltsl-&version;.zip + + + + + + Getting Involved + + Contributions to the project are most welcome, and may be in the form of stylesheet modules, patches, bug reports or sample code. Any contributed code must use the LGPL license to be accepted into the library. + + See the SourceForge Project Page http://sourceforge.net/projects/xsltsl/ for information on the development of the project. Bug reports may be submitted here. + + See the project Web Page http://xsltsl.sourceforge.net/ for documentation. + + There are three mailing lists for the project: + + + xsltsl-users@lists.sourceforge.net + + Discussion of the use of xsltsl. + + + + xsltsl-devel@lists.sourceforge.net + + Discussion of the development of xsltsl. + + + + xsltsl-announce@lists.sourceforge.net + + Project announcements. + + + + + + + XML Namespaces + + Apart from the XSLT XML Namespace (http://www.w3.org/1999/XSL/Transform), xsltsl employs a number of XML Namespaces to allow inclusion of the library in developer stylesheets. In addition, documentation is defined in a separate namespace. + Each module is allocated a namespace URI by appending the module name to the URI for the project, http://xsltsl.org/. For example, the string module has the namespace URI http://xsltsl.org/string. + All documentation is written using an extension of DocBook designed for embedding DocBook into XSLT stylesheets. The namespace URI for DocBook embedded in stylesheets is http://xsltsl.org/xsl/documentation/1.0 + + + + Engineering Standards + + In order to maintain a high engineering standard, all modules and contributions to the xsltsl project must adhere to the following coding and documentation standards. Submissions which do not meet (or exceed) this standard will not be accepted. + + + All stylesheets must be indented, with each level indented by two spaces. NB. a simple stylesheet could be used to enforce/fix this. + + + Templates are named using a qualified name (QName). The namespace URI for the template's containing stylesheet is assigned as above. + + + Parameters for templates should use sensible names. Where possible (or if in doubt), follow these conventions: + + + A parameter containing a single node is named node. Where more than one parameter contains a single node, the suffix Node is appended to the parameter name, eg. referenceNode + + + A parameter which potentially contains multiple nodes is named nodes. Where more than one parameter potentially contains multiple nodes, the suffix Nodes is appended to the parameter name, eg. copyNodes + + + A parameter which contains a string value is named text. + + + + + All templates in each stylesheet must be documented. A template is documented as a DocBook RefEntry. + + + Every stylesheet must include a test suite. The test system is in the test subdirectory. See test/test.html for further details. + + + + An example stylesheet has been provided, which acts as a template for new stylesheet modules. + + + + + Related Work + + The EXSLT project is creating a library to standardise extension functions. The XSLT Standard Library is complementary to the EXSLT project. + + + + + Reference Documentation + + Reference documentation is available for each module. + +
    + String Processing + + + + string.xsl + + +
    + +
    + Nodes + + + + node.xsl + + +
    + +
    + Date/Time Processing + + + + date-time.xsl + + +
    + +
    + Mathematics + + + + math.xsl + + +
    + +
    + URI (Uniform Resource Identifier) Processing + + + + uri.xsl + + +
    + +
    + Comparing Nodesets + + + + cmp.xsl + + +
    + +
    + Generating XML Markup + + + + markup.xsl + + +
    + +
    + Presentation Media Support + + + + Scalable Vector Graphics: svg.xsl + + + +
    + +
    + Example + + + + + + example.xsl + + +
    +
    + +
    + +
    diff --git a/docbook-xsl-1.76.1/slides/keynote/xsltsl/string.xsl b/docbook-xsl-1.76.1/slides/keynote/xsltsl/string.xsl new file mode 100644 index 0000000..e7eef8b --- /dev/null +++ b/docbook-xsl-1.76.1/slides/keynote/xsltsl/string.xsl @@ -0,0 +1,1233 @@ + + + + + + + + $Id: string.xsl 3991 2004-11-10 06:51:55Z balls $ + + + Ball + Steve + + + 2002 + 2001 + Steve Ball + + + + String Processing + + +
    + Introduction + + This module provides templates for manipulating strings. + +
    +
    + +
    + + + + + + + + + + + + + Make string uppercase + + + Converts all lowercase letters to uppercase. + + + + + + text + + The string to be converted + + + + + + + Returns string with all uppercase letters. + + + + + + + + + + + + + + ß + + + S + S + + + + + + + + + Make string lowercase + + + Converts all uppercase letters to lowercase. + + + + + + text + + The string to be converted + + + + + + + Returns string with all lowercase letters. + + + + + + + + + + + Capitalise string + + + Converts first character of string to an uppercase letter. All remaining characters are converted to lowercase. + + + + + + text + + The string to be capitalised + + + + all + + Boolean controlling whether all words in the string are capitalised. + Default is true. + + + + + + + Returns string with first character uppcase and all remaining characters lowercase. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Convert a string to one camelcase word + + + Converts a string to one lowerCamelCase or UpperCamelCase + word, depending on the setting of the "upper" + parameter. UpperCamelCase is also called MixedCase while + lowerCamelCase is also called just camelCase. The template + removes any spaces, tabs and slashes, but doesn't deal with + other punctuation. It's purpose is to convert strings like + "hollow timber flush door" to a term suitable as identifier or + XML tag like "HollowTimberFlushDoor". + + + + + + + text + + The string to be capitalised + + + + upper + + Boolean controlling whether the string becomes an + UpperCamelCase word or a lowerCamelCase word. + Default is true. + + + + + + + Returns string with first character uppcase and all remaining characters lowercase. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + String extraction + + + Extracts the portion of string 'text' which occurs before any of the characters in string 'chars'. + + + + + + text + + The string from which to extract a substring. + + + + chars + + The string containing characters to find. + + + + + + + Returns string. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + String extraction + + + Extracts the portion of string 'text' which occurs after the last of the character in string 'chars'. + + + + + + text + + The string from which to extract a substring. + + + + chars + + The string containing characters to find. + + + + + + + Returns string. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + String extraction + + + Extracts the portion of string 'text' which occurs before the first character of the last occurance of string 'chars'. + + + + + + text + + The string from which to extract a substring. + + + + chars + + The string containing characters to find. + + + + + + + Returns string. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + String substitution + + + Substitute 'replace' for 'with' in string 'text'. + + + + + + text + + The string upon which to perform substitution. + + + + replace + + The string to substitute. + + + + with + + The string to be substituted. + + + + disable-output-escaping + + A value of yes indicates that the result should have output escaping disabled. Any other value allows normal escaping of text values. The default is to enable output escaping. + + + + + + + Returns string. + + + + + + + + no + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Count Substrings + + + Counts the number of times a substring occurs in a string. This can also counts the number of times a character occurs in a string, since a character is simply a string of length 1. + + + + Counting Lines + + + + +]]> + + + + + + text + + The source string. + + + + chars + + The substring to count. + + + + + + + Returns a non-negative integer value. + + + + + + + + + + 0 + + + + + + + + + + + + 0 + + + + + + String extraction + + Extracts the portion of a 'char' delimited 'text' string "array" at a given 'position'. + + + + + text + + The string from which to extract a substring. + + + + chars + + delimiters + + + + position + + position of the elements + + + + all + + If true all of the remaining string is returned, otherwise only the element at the given position is returned. Default: false(). + + + + + + Returns string. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + String extraction + + Extracts the portion of a 'char' delimited 'text' string "array" at a given 'position' + + + + + text + + The string from which to extract a substring. + + + + chars + + delimiters + + + + position + + position of the elements + + + + + + Returns string. + + + + + + + + + + + + + + + + + + + + + + + + + + + String insertion + + Insert 'chars' into "text' at any given "position' + + + + + text + + The string upon which to perform insertion + + + + position + + the position where insertion will be performed + + + + with + + The string to be inserted + + + + + + Returns string. + + + + + + + + + + + + + + + + + String reversal + + + Reverse the content of a given string + + + + + + text + + The string to be reversed + + + + + + + Returns string. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Format a string + + + Inserts newlines and spaces into a string to format it as a block of text. + + + + + + text + + String to be formatted. + + + + max + + Maximum line length. + + + + indent + + Number of spaces to insert at the beginning of each line. + + + + justify + + Justify left, right or both. Not currently implemented (fixed at "left"). + + + + + + + Formatted block of text. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Find first occurring character in a string + + + Finds which of the given characters occurs first in a string. + + + + + + text + + The source string. + + + + chars + + The characters to search for. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Match A String To A Pattern + + + Performs globbing-style pattern matching on a string. + + + + Match Pattern + + + + +]]> + + + + + + text + + The source string. + + + + pattern + + The pattern to match against. Certain characters have special meaning: + + + * + + Matches zero or more characters. + + + + ? + + Matches a single character. + + + + \ + + Character escape. The next character is taken as a literal character. + + + + + + + + + + Returns "1" if the string matches the pattern, "0" otherwise. + + + + + + + + + + + 1 + + + 1 + + + 0 + + + + + + + + + + + + + + + + + + + + + + 0 + + + + 1 + + + + + + + + + + + + + + + + + + + + + + + 0 + + + + + + + 1 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + 0 + + + + + + + + + + + + + Create A Repeating Sequence of Characters + + + Repeats a string a given number of times. + + + + + + text + + The string to repeat. + + + + count + + The number of times to repeat the string. + + + + + + + + + + + + + + + + + + + + + + +
    + diff --git a/docbook-xsl-1.76.1/slides/keynote/xsltsl/svg.xsl b/docbook-xsl-1.76.1/slides/keynote/xsltsl/svg.xsl new file mode 100644 index 0000000..1254ab9 --- /dev/null +++ b/docbook-xsl-1.76.1/slides/keynote/xsltsl/svg.xsl @@ -0,0 +1,177 @@ + + + + + + + + + $Id: svg.xsl 3991 2004-11-10 06:51:55Z balls $ + + + Ball + Steve + + + 2002 + Steve Ball + + + + SVG Stylesheet + + +
    + Introduction + + This module provides templates for creating SVG images. +
    +
    +
    + + + Aqua-style Button + + + Part of the mechanism to create an Aqua-style button. Include a call to this template in your SVG document's defs element. This template only needs to be included once. Use this in conjunction with svg:aqua-button. + + The default values for color1, color2 and color3 result in a grey button. + + + + + + prefix + + A prefix to append to the identifiers used, so that they don't clash with other identifiers. Default: "aqua-". + + + + color1 + + The base colour of the button. Default: "#d9d9d9". + + + + color2 + + A "background" colour for the button. Should be a darker colour than color1. Default: "#a9a9a9". + + + + color3 + + A highlight colour for the button. Should be a lighter colour than color1. Default: "#f9f9f9". + + + + + + + Returns SVG result-tree-fragment. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Aqua-style Button + + + Part of the mechanism to create an Aqua-style button. Include a call to this template in your SVG document where you want a button to appear. This template can be used many times in a single SVG document. Use this in conjunction with svg:aqua-button-defs. + + + + + + prefix + + A prefix to append to the identifiers used, so that they don't clash with other identifiers. Default: "aqua-". + + + + + + + Returns SVG result-tree-fragment. + + + + + + + + + + + + + + + + + +
    diff --git a/docbook-xsl-1.76.1/slides/keynote/xsltsl/uri.xsl b/docbook-xsl-1.76.1/slides/keynote/xsltsl/uri.xsl new file mode 100644 index 0000000..df1f738 --- /dev/null +++ b/docbook-xsl-1.76.1/slides/keynote/xsltsl/uri.xsl @@ -0,0 +1,580 @@ + + + + + + + + $Id: uri.xsl 3991 2004-11-10 06:51:55Z balls $ + + + Diamond + Jason + + + 2001 + Jason Diamond + + + + URI (Uniform Resource Identifier) Processing + + +
    + Introduction + This module provides templates for processing URIs (Uniform Resource Identifers). +
    +
    + +
    + + + Determines if a URI is absolute or relative. + + + Absolute URIs start with a scheme (like "http:" or "mailto:"). + + + + + + uri + + An absolute or relative URI. + + + + + + + Returns 'true' if the URI is absolute or '' if it's not. + + + + + + + + + + + + + + Gets the scheme part of a URI. + + + The ':' is not part of the scheme. + + + + + + uri + + An absolute or relative URI. + + + + + + + Returns the scheme (without the ':') or '' if the URI is relative. + + + + + + + + + + + + Gets the authority part of a URI. + + + The authority usually specifies the host machine for a resource. It always follows '//' in a typical URI. + + + + + + uri + + An absolute or relative URI. + + + + + + + Returns the authority (without the '//') or '' if the URI has no authority. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gets the path part of a URI. + + + The path usually comes after the '/' in a URI. + + + + + + uri + + An absolute or relative URI. + + + + + + + Returns the path (with any leading '/') or '' if the URI has no path. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gets the query part of a URI. + + + The query comes after the '?' in a URI. + + + + + + uri + + An absolute or relative URI. + + + + + + + Returns the query (without the '?') or '' if the URI has no query. + + + + + + + + + + + + + + + + + + + Gets the fragment part of a URI. + + + The fragment comes after the '#' in a URI. + + + + + + uri + + An absolute or relative URI. + + + + + + + Returns the fragment (without the '#') or '' if the URI has no fragment. + + + + + + + + + + + + Resolves a URI reference against a base URI. + + + This template follows the guidelines specified by RFC 2396. + + + + + + reference + + A (potentially relative) URI reference. + + + + base + + The base URI. + + + + document + + The URI of the current document. This defaults to the value of the base URI if not specified. + + + + + + + The "combined" URI. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    diff --git a/docbook-xsl-1.76.1/slides/svg/default.xsl b/docbook-xsl-1.76.1/slides/svg/default.xsl new file mode 100644 index 0000000..86ea133 --- /dev/null +++ b/docbook-xsl-1.76.1/slides/svg/default.xsl @@ -0,0 +1,686 @@ + + + + + + + SVG Slides + + + Steve + Ball + + Zveno +
    + + zveno.com + +
    +
    +
    + + $Id: default.xsl 6567 2007-01-30 06:43:18Z xmldoc $ + + + 2002 + Steve Ball, Zveno Pty Ltd + + + + Zveno Pty Ltd makes this software and associated documentation available free of charge for any purpose. You may make copies of the software but you must include all of this notice on any copy. + Zveno Pty Ltd does not warrant that this software is error free or fit for any purpose. Zveno Pty Ltd disclaims any liability for all claims, expenses, losses, damages and costs any user may incur as a result of using, copying or modifying the software. + +
    +
    + + + + + + + + + slides.css + graphics + + white + + Arial + white + black + + + + + + + + preserve + 100% + + font-family: ; font-size: 18pt; fill: ; stroke: ; background-color: + + + + font-size: 24pt; font-weight: bold + + + font-size: 18pt + + + font-size: 18pt + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + href=" + + " type="text/css" + + + + + + + + + + + + + + + + title + + + + + + + + + + + + + title.click + + + foil1-previous-button.click; + + + + + + + + + + + + + + toc + + + + + + + + + + title.click + + + + + + toc.click; toc-content.click + + + + + + + + + + + + + + 50 + + 75 + + + + + + title.click + + + + + + toc.click; toc-content.click + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + index-foilgroup- + + + + + + #ff8000 + #ff8000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + toc + + + + + + + + + + + + index-foilgroup-1.click; toc.click; toc-content.click + + + index-foilgroup- + + .click; foil + + .click + + + + + + + + + + + + + + + 50 + + 75 + + + + + + + + index-foilgroup-1.click; toc.click; toc-content.click + + + index-foilgroup- + + .click; foil + + .click + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + TOC + + + + + + + + + + + + + Previous + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + title.click + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + font-weight: bold + + + font-style: italic + + + font-style: italic + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/slides/xhtml/css.xsl b/docbook-xsl-1.76.1/slides/xhtml/css.xsl new file mode 100644 index 0000000..d0b47c6 --- /dev/null +++ b/docbook-xsl-1.76.1/slides/xhtml/css.xsl @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + / + + + + / + + + http://docbook.sourceforge.net/release/slides/browser/ + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/slides/xhtml/default.xsl b/docbook-xsl-1.76.1/slides/xhtml/default.xsl new file mode 100644 index 0000000..86f2cb3 --- /dev/null +++ b/docbook-xsl-1.76.1/slides/xhtml/default.xsl @@ -0,0 +1,246 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Hide/Show TOC + + + + + toggletoc(this, + + ,' + + ',' + + '); + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/slides/xhtml/flat.xsl b/docbook-xsl-1.76.1/slides/xhtml/flat.xsl new file mode 100644 index 0000000..e0c57e9 --- /dev/null +++ b/docbook-xsl-1.76.1/slides/xhtml/flat.xsl @@ -0,0 +1,71 @@ + + + + + + + + + + + <xsl:value-of select="/slides/slidesinfo/title"/> + + + + + + + + + + + + +
    +
    + +
    +
    +
    + + + + + + + + + + +
    +
    + +
    + +
    +
    + + + + + + +
    +
    + +
    + +
    + + +
    + + +
    +

    + + +
    +
    + +
    diff --git a/docbook-xsl-1.76.1/slides/xhtml/frames.xsl b/docbook-xsl-1.76.1/slides/xhtml/frames.xsl new file mode 100644 index 0000000..aea4172 --- /dev/null +++ b/docbook-xsl-1.76.1/slides/xhtml/frames.xsl @@ -0,0 +1,1982 @@ + + + + + + + + + + + + + + + + + + + + + -//W3C//DTD HTML 4.01 Frameset//EN + + + + + + + + + + -//W3C//DTD XHTML 1.0 Frameset//EN + + + -//W3C//DTD XHTML 1.0 Transitional//EN + + + + + + + + + + + + + + http://www.w3.org/TR/html4/loose.dtd + + + + + + + + + + http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd + + + http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd + + + + + + + + + + + + + + + + + + + + + + + + + Multiframe and overlay are mutually exclusive. + + + + + + + + + + + + + + + + + + + + + + + <xsl:value-of select="$title"/> + + + + + + <body class="frameset"> + <xsl:call-template name="body.attributes"/> + <a href="{concat('titleframe', $html.ext)}"> + <xsl:text>Your browser doesn't support frames.</xsl:text> + </a> + </body> + + + + + + + + + + + + + TOC - <xsl:value-of select="$title"/> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + overlaySetup('ll'); + + + + + + init( + + ); + + overlaySetup('ll'); + + + + + + +
    + +
    +
    + +
    + + + + +
    + logo +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <xsl:value-of select="title"/> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + javascript:body.focus() + + + + + + + + + <body class="frameset"> + <xsl:call-template name="body.attributes"/> + <p> + <xsl:text>Your browser doesn't support frames.</xsl:text> + </p> + </body> + + + + + + + + + + + + + + + + + + Navigation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Body + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Navigation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + newPage(' + + ', + + ); + + + + + overlaySetup('lc'); + + + + + + + this.focus() + + + navigate(event) + + + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <xsl:value-of select="title"/> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + foilgroup + + + + + + + javascript:body.focus() + + + + + + <body class="frameset"> + <xsl:call-template name="body.attributes"/> + <p> + <xsl:text>Your browser doesn't support frames.</xsl:text> + </p> + </body> + + + + + + + foilgroup + + + + + + + + + + + + + + + + Navigation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + foilgroup + + + + + + + + + + + Body + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + foilgroup + + + + + + + + + + + + + + + + Navigation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + newPage(' + + ', + + ); + + + + + overlaySetup('lc'); + + + + + + + + navigate(event) + + + +
    + + + + + + + + + +
    + + + + + + +
    + + +
    + + + position:absolute;visibility:visible; + + + + + + + + +
    +
    +
    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <xsl:value-of select="title"/> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + javascript:body.focus() + + + + + + + + + <body class="frameset"> + <xsl:call-template name="body.attributes"/> + <p> + <xsl:text>Your browser doesn't support frames.</xsl:text> + </p> + </body> + + + + + + + + + + + + + + + + + + + + + Navigation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Body + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Navigation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + newPage(' + + ', + + ); + + + + + overlaySetup('lc'); + + + + + + + navigate(event) + + + +
    + + + + + + + + + +
    + +
    + + +
    + + + position:absolute;visibility:visible; + + + + + + + + +
    +
    +
    + + + +
    + + + + + + + + + + + + + + + foilgroup + + + + +
    + - + + + + + + + + + + + + + + + +
    +
    + + + + + + + +
    + - + + + + + + + + + + + + + + +
    +
    + + + + + + + + + myList.addItem(' + + <div id=" + + " class="toc-slidesinfo"> + + <a href=" + + " target="foil"> + + + + + + + + + + + + + ' + \' + + + <\/a><\/div> + '); + + + + + + + + + subList = new List(false, width, height, " + +"); + + subList.setIndent(12); + + + + myList.addList(subList, ' + + <div id=" + + " class="toc-foilgroup"> + + <a href=" + + " target="foil"> + + + + + + + + + + + + + ' + \' + + + <\/a><\/div> + '); + + + + + + + + + subList.addItem(' + + + myList.addItem(' + + + + <div id=" + + " class="toc-foil"> + + <img alt="-" src=" + + "><\/img> + + <a href=" + + " target="foil"> + + + + + + + + + + + + + ' + \' + + + <\/a><\/div> + '); + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/slides/xhtml/graphics.xsl b/docbook-xsl-1.76.1/slides/xhtml/graphics.xsl new file mode 100644 index 0000000..6317a4b --- /dev/null +++ b/docbook-xsl-1.76.1/slides/xhtml/graphics.xsl @@ -0,0 +1,152 @@ + + + + + + + + + + + + + + + + + + + + + / + + + + / + + + http://docbook.sourceforge.net/release/slides/graphics/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/slides/xhtml/jscript.xsl b/docbook-xsl-1.76.1/slides/xhtml/jscript.xsl new file mode 100644 index 0000000..b3047ee --- /dev/null +++ b/docbook-xsl-1.76.1/slides/xhtml/jscript.xsl @@ -0,0 +1,128 @@ + + + + + + + + + + + + + + + + + + + / + + + + / + + + http://docbook.sourceforge.net/release/slides/browser/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/slides/xhtml/param.xsl b/docbook-xsl-1.76.1/slides/xhtml/param.xsl new file mode 100644 index 0000000..c3ec806 --- /dev/null +++ b/docbook-xsl-1.76.1/slides/xhtml/param.xsl @@ -0,0 +1,70 @@ + + + + + + + + + +#FFFFFF +toc/bullet.png +slides.css + + + + +hidetoc.gif +active/nav-home.png + +toc/open.png +white + +40 +white + +active/nav-next.png +inactive/nav-home.png +inactive/nav-next.png +inactive/nav-prev.png +inactive/nav-toc.png +inactive/nav-up.png +no + +overlay.js +http://docbook.sourceforge.net/release/buttons/slides-1.png +toc/closed.png +active/nav-prev.png + + +showtoc.gif +slides.js +Home +Next +Prev +ToC +Up + +#FFFFFF + + +active/nav-toc.png +22 +250 + +ua.js +active/nav-up.png +xbCollapsibleLists.js +xbDOM.js +xbStyle.js +xbLibrary.js + + diff --git a/docbook-xsl-1.76.1/slides/xhtml/plain.xsl b/docbook-xsl-1.76.1/slides/xhtml/plain.xsl new file mode 100644 index 0000000..29d43fc --- /dev/null +++ b/docbook-xsl-1.76.1/slides/xhtml/plain.xsl @@ -0,0 +1,470 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/slides/xhtml/slides-common.xsl b/docbook-xsl-1.76.1/slides/xhtml/slides-common.xsl new file mode 100644 index 0000000..65d3b7a --- /dev/null +++ b/docbook-xsl-1.76.1/slides/xhtml/slides-common.xsl @@ -0,0 +1,1534 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <xsl:value-of select="title"/> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + titlepage + + - + + + + + + + + overlaySetup('lc') + + + + + navigate(event) + + + +
    + + + + + +
    + +
    + +
    + + + + + +
    +
    + + +
    +
    +
    + + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    +
    + + + + + + +

    +
    + + +

    +
    + + +

    +
    + + + + + + + + + + + + + + + : + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <xsl:value-of select="slidesinfo/title"/> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + overlaySetup('lc') + + + + + navigate(event) + + + +
    + + + + + + + +
    + +
    + +
    + + + + + + + +
    +
    + + +
    +
    +
    + + +

    + + + +

    + +

    + + + TableofContents + + +

    +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + . + + + + + + +
    + +
    +
    + +
    +
    +
    +
    + + +
    + + . + + + + + + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <xsl:value-of select="title"/> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + overlaySetup('lc') + + + + + navigate(event) + + + +
    + + + + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    +
    + + + + +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    + +

    +
    + + + + + + + + + + + + + + + + + + + + + + + + + <xsl:value-of select="title"/> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + overlaySetup('lc') + + + + + navigate(event) + + + +
    + + + + + + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    +
    + + + + +
    +
    + + +
    + + +

    +
    + + + + + + + + + + + +
    + +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + position: absolute; visibility: visible; + + + + padding-top: 2in; + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + foil + + + + + + foilgroup + + + + + + + + + + + + </span> + + + <span + + class="green" + class="blue" + class="orange" + class="red" + class="brown" + class="violet" + class="black" + class="bold" + + > + + + + + + + + +
    + +
    +
    +
    + + + + + + + + + copyright + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ( + + ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    + +

    +
    + + +
    + + +
    +
    + + + + + + + + + + + + + + + + 1 + 1 + 1 + 0 + + + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + / + + + + + + + + + + + foil + + + + + + + + + + + foilgroup + + + + + + chunk-filename-error- + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + / + + + +   + + + + +
    diff --git a/docbook-xsl-1.76.1/slides/xhtml/tables.xsl b/docbook-xsl-1.76.1/slides/xhtml/tables.xsl new file mode 100644 index 0000000..7d5ec6b --- /dev/null +++ b/docbook-xsl-1.76.1/slides/xhtml/tables.xsl @@ -0,0 +1,334 @@ + + + + + + + + + + +#6A719C +220 + + + + + + + + + + + + +
    + + + + + +
    + +
    +
      + + + + + +
    + +
    + + +
    + +
    +
    +
    +
    + + + + + + + + +
    + + + + + +
    + +
    +
      + + + + + +
    + +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + +  + + + + + + + + + + + + + + + + + +
    + + + +  + + + + + + +  + + + + + + + + + + + + + + + +
    +
    +
    +
    + +  + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + + + + + + + +  + + + + + + + + + + + + + + +
    + + + +  + + + + + + + + + + + + + + + + + + + +  + + + + + + + + + + + + + + + + + +
    +
    +
    +
    + + + + + + + + + + + + + + + +  + + + + + + + + + + + +
    +
    +
    +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +   + + + + + + + + + + + + +
    diff --git a/docbook-xsl-1.76.1/slides/xhtml/vslides.xsl b/docbook-xsl-1.76.1/slides/xhtml/vslides.xsl new file mode 100644 index 0000000..26e9961 --- /dev/null +++ b/docbook-xsl-1.76.1/slides/xhtml/vslides.xsl @@ -0,0 +1,652 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <xsl:value-of select="slidesinfo/title"/> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + navigate(event) + + + + + + + + + + + + + + + + + + +
     
    + + + + + + + + + + + + + + + + + + +
    + +
    + +
    + +
    +
     
    + + +
    +
    + + +
    + + + + + + + + + <xsl:value-of select="title"/> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + navigate(event) + + + + + + + + + + + + + + + + + + +
     
    + + + + + + + + + + + + + + + + + + +
    + +
    +
     
    + + +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + <xsl:value-of select="title"/> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + navigate(event) + + + + + + + + + + + + + + + + + + +
     
    + + + + + + + + + + + + + + + + + + + +
    + +
    +
     
    + + +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + <xsl:value-of select="title"/> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + navigate(event) + + + + + + + + + + + + + + + + + + +
     
    + + + + + + + + + + + + + + + + + + + +
    + +
    +
     
    + + +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + + First + + + + + + + + + + First + + + + + + + + +
    + + + + + + + Previous + + + + + + + + + + Previous + + + + + + + + +
    + + + + + + + Last + + + + + + + + + + Last + + + + + + + + +
    + + + + + + + Next + + + + + + + + + + Next + + + + + + + + + +
    +
    + + + + + ToC + + + + + + + + + + ToC + + + + + + + + +
    +
    + +
    diff --git a/docbook-xsl-1.76.1/slides/xhtml/w3c.xsl b/docbook-xsl-1.76.1/slides/xhtml/w3c.xsl new file mode 100644 index 0000000..d361a33 --- /dev/null +++ b/docbook-xsl-1.76.1/slides/xhtml/w3c.xsl @@ -0,0 +1,358 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {$logo.title} + + + + + + + + + + position: absolute; visibility: visible; + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    +
    + + + + + + + + + + + + + + + + + + +
    diff --git a/docbook-xsl-1.76.1/template/titlepage.xml b/docbook-xsl-1.76.1/template/titlepage.xml new file mode 100644 index 0000000..f1e1e3c --- /dev/null +++ b/docbook-xsl-1.76.1/template/titlepage.xml @@ -0,0 +1,478 @@ + + + + + + + Titlepage Template Stylesheet Reference + + $Id: titlepage.xsl 7058 2007-07-17 13:59:29Z xmldoc $ + + + + Introduction + +This is technical reference documentation for the + “titlepage†templates in the DocBook XSL Stylesheets. + + +This is not intended to be user documentation. It is + provided for developers writing customization layers for the + stylesheets. + + + + + +t:templates +Construct a stylesheet for the templates provided + + +<xsl:template match="t:templates"/> + +Description + +The t:templates element is the root of a +set of templates. This template creates an appropriate +xsl:stylesheet for the templates. + + + +If the t:templates element has a +base-stylesheet attribute, an +xsl:import statement is constructed for it. + + + + + +xsl:* +Copy xsl: elements straight through + + +<xsl:template match="xsl:*"/> + +Description + +This template simply copies the xsl: elements +straight through into the result tree. + + + + + +t:titlepage +Create the templates necessary to construct a title page + + +<xsl:template match="t:titlepage"/> + +Description + +The t:titlepage element creates a set of +templates for processing the titlepage for an element. The +root of this template set is the template named +wrapper.titlepage. That is the +template that should be called to generate the title page. + + + + +The t:titlepage element has three attributes: + + + +element + +The name of the source document element for which +these templates apply. In other words, to make a title page for the +article element, set the +element attribute to +article. This attribute is required. + + + +wrapper + +The entire title page can be wrapped with an element. +This attribute identifies that element. + + + +class + +If the class attribute +is set, a class attribute with this +value will be added to the wrapper element that surrounds the entire +title page. + + + + + + + + + +Any other attributes are copied through literally to the +wrapper element. + + + +The content of a t:titlepage is one or +more t:titlepage-content, +t:titlepage-separator, and +t:titlepage-before elements. + + + +Each of these elements may be provided for the recto +and verso sides of the title page. + + + + + + +@* (in copy.literal.atts mode) +Copy t:titlepage attributes + + +<xsl:template match="@*" mode="copy.literal.atts"/> + +Description + +This template copies all of the other attributes +from a t:titlepage element onto the specified +wrapper. + + + + + +t:titlepage-content +Create templates for the content of one side of a title page + + +<xsl:template match="t:titlepage-content"/> + +Description + +The title page content, that is, the elements from the source +document that are rendered on the title page, can be controlled independently +for the recto and verso sides of the title page. + + + +The t:titlepage-content element has two attributes: + + + +side + +Identifies the side of the page to which this title +page content applies. The +side attribute is required and +must be set to either +recto or +verso. In addition, you must specify +exactly one t:titlepage-content for each side +within each t:titlepage. + + + +order + +Indicates how the order of the elements presented on +the title page is determined. If the +order is +document, the elements are presented +in document order. Otherwise (if the +order is +stylesheet), the elements are presented +in the order that they appear in the template (and consequently in +the stylesheet). + + + + + + + + + +The content of a t:titlepage-content element is +a list of element names. These names should be unqualified. They identify +the elements in the source document that should appear on the title page. + + + + +Each element may have a single attribute: +predicate. The value of this +attribute is used as a predicate for the expression that matches +the element on which it occurs. + + + +In other words, to put only the first three authors on the +recto-side of a title +page, you could specify: + + + <t:titlepage-contents side="recto"> + <!-- other titlepage elements --> + <author predicate="[count(previous-sibling::author)<2]"/> + <!-- other titlepage elements --> + </t:titlepage-contents> + + + + + +Usually, the elements so named are empty. But it is possible to +make one level of selection within them. Suppose that you want to +process authorgroup elements on the title page, but +you want to select only proper authors, editors, or corporate authors, +not collaborators or other credited authors. + + + +In that case, you can put a t:or group inside +the authorgroup element: + + + <t:titlepage-contents side="recto"> + <!-- other titlepage elements --> + <authorgroup> + <t:or> + <author/> + <editor/> + <corpauthor/> + </t:or> + </authorgroup> + <!-- other titlepage elements --> + </t:titlepage-contents> + + + + + +This will have the effect of automatically generating a template +for processing authorgroups in the title page mode, +selecting only the specified children. If you need more complex processing, +you'll have to construct the templates by hand. + + + + + + +t:titlepage-separator +Create templates for the separator + + +<xsl:template match="t:titlepage-separator"/> + +Description + +The title page is separated from the content which follows it by +the markup specified in the t:titlepage-separator +element. + + + + + +t:titlepage-before +Create templates for what precedes a title page + + +<xsl:template match="t:titlepage-before"/> + +Description + +Each side of the title page is preceded by the markup specified +in the t:titlepage-before element for that +side. + + + + + +* (in copy mode) +Copy elements + + +<xsl:template match="*" mode="copy"/> + +Description + +This template simply copies the elements that it applies to +straight through into the result tree. + + + + + +@* (in copy mode) +Copy attributes + + +<xsl:template match="@*" mode="copy"/> + +Description + +This template simply copies the attributes that it applies to +straight through into the result tree. + + + + + +* (in document.order mode) +Create rules to process titlepage elements in document order + + +<xsl:template match="*" mode="document.order"/> + +Description + +This template is called to process all of the children of the +t:titlepage-content element. It creates the hairy +select expression necessary to process each of those elements in +the title page. + + + +Note that this template automatically handles the case where +some DocBook elements, like title and subtitle, can occur both inside +the *info elements where metadata is usually stored and outside. + + + + +It also automatically calculates the name for the *info container +and handles elements that have historically had containers with different +names. + + + + + + +* (in document.order mode) +Create rules to process titlepage elements in stylesheet order + + +<xsl:template match="*" mode="document.order"/> + +Description + +This template is called to process all of the children of the +t:titlepage-content element. It creates the set +of xsl:apply-templates elements necessary +process each of those elements in the title page. + + + +Note that this template automatically handles the case where +some DocBook elements, like title and subtitle, can occur both inside +the *info elements where metadata is usually stored and outside. + + + + +It also automatically calculates the name for the *info container +and handles elements that have historically had containers with different +names. + + + + + + +* (in titlepage.specialrules mode) +Create templates for special rules + + +<xsl:template match="*" mode="titlepage.specialrules"/> + +Description + +This template is called to process all of the descendants of the +t:titlepage-content element that require special +processing. At present, that's just t:or elements. + + + + + + +* (in titlepage.subrules mode) +Create template for individual special rules + + +<xsl:template match="*" mode="titlepage.subrules"/> + +Description + +This template is called to process the children of special +template elements. + + + + + + +t:or +Process the t:or special rule + + +<xsl:template match="t:or"/><xsl:template match="t:or" mode="titlepage.subrules"/> + +Description + +This template processes t:or. + + + + + +t:or (in titlepage.subrules mode) +Process the t:or special rule in +titlepage.subrules mode + + +<xsl:template match="t:or" mode="titlepage.subrules"/> + +Description + +The titlepage.subrules mode doesn't apply to t:or, so just +reprocess this node in the normal mode. + + + + + +element-or-list +Construct the "or-list" used in the select attribute for +special rules. + + +<xsl:template name="element-or-list"> +<xsl:param name="elements" select="*"/> +<xsl:param name="element.count" select="count($elements)"/> +<xsl:param name="count" select="1"/> +<xsl:param name="orlist"/> + ... +</xsl:template> + +Description + +Walk through each of the children of t:or, producing the +text of the select attribute. + + + + diff --git a/docbook-xsl-1.76.1/template/titlepage.xsl b/docbook-xsl-1.76.1/template/titlepage.xsl new file mode 100644 index 0000000..ce147e3 --- /dev/null +++ b/docbook-xsl-1.76.1/template/titlepage.xsl @@ -0,0 +1,1280 @@ + + + + + + + + + + + + + + + + + + Titlepage Template Stylesheet Reference + + $Id: titlepage.xsl 7058 2007-07-17 13:59:29Z xmldoc $ + + + + Introduction + This is technical reference documentation for the + “titlepage†templates in the DocBook XSL Stylesheets. + This is not intended to be user documentation. It is + provided for developers writing customization layers for the + stylesheets. + + + + + + + + + + + +Construct a stylesheet for the templates provided + + +The t:templates element is the root of a +set of templates. This template creates an appropriate +xsl:stylesheet for the templates. + +If the t:templates element has a +base-stylesheet attribute, an +xsl:import statement is constructed for it. + + + + + + + + + + + 1.0 + exsl + + + + This stylesheet was created by + template/titlepage.xsl + + + + + + + + + + + + + + + + + + + + +Copy xsl: elements straight through + + +This template simply copies the xsl: elements +straight through into the result tree. + + + + + + + + + + +Create the templates necessary to construct a title page + + +The t:titlepage element creates a set of +templates for processing the titlepage for an element. The +root of this template set is the template named +wrapper.titlepage. That is the +template that should be called to generate the title page. + + +The t:titlepage element has three attributes: + + +element +The name of the source document element for which +these templates apply. In other words, to make a title page for the +article element, set the +element attribute to +article. This attribute is required. + + +wrapper +The entire title page can be wrapped with an element. +This attribute identifies that element. + + +class +If the class attribute +is set, a class attribute with this +value will be added to the wrapper element that surrounds the entire +title page. + + + + + +Any other attributes are copied through literally to the +wrapper element. + +The content of a t:titlepage is one or +more t:titlepage-content, +t:titlepage-separator, and +t:titlepage-before elements. + +Each of these elements may be provided for the recto +and verso sides of the title page. + + + + + + + + + + + + + + .titlepage + + + + + + + recto.content + + + + + .titlepage.before.recto + + + + + + + .titlepage.recto + + + + + + + recto.elements.count + + + + + function-available('exsl:node-set') + + count(exsl:node-set($recto.content)/*) + + + + + contains(system-property('xsl:vendor'), 'Apache Software Foundation') + + Xalan quirk + + count(exsl:node-set($recto.content)/*) + + + + + 1 + + + + + + + + (normalize-space($recto.content) != '') or ($recto.elements.count > 0) + + + + + $recto.content + + + + + + + verso.content + + + + + .titlepage.before.verso + + + + + + + .titlepage.verso + + + + + + + verso.elements.count + + + + + function-available('exsl:node-set') + + count(exsl:node-set($verso.content)/*) + + + + + contains(system-property('xsl:vendor'), 'Apache Software Foundation') + + Xalan quirk + + count(exsl:node-set($verso.content)/*) + + + + + 1 + + + + + + + + (normalize-space($verso.content) != '') or ($verso.elements.count > 0) + + + + + $verso.content + + + + + + + + + .titlepage.separator + + + + + + + + + + + + + + * + + + .titlepage.recto.mode + + + if an element isn't found in this mode, + + try the generic titlepage.mode + + + . + titlepage.mode + + + + + + + + * + + + .titlepage.verso.mode + + + if an element isn't found in this mode, + + try the generic titlepage.mode + + + . + titlepage.mode + + + + + + + + + + + + + + + + + + + .titlepage. + + .auto.mode + + + + + + .titlepage. + + .style + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + . + + + .titlepage. + + .mode + + + + + + + + + + + + + + +Copy t:titlepage attributes + + +This template copies all of the other attributes +from a t:titlepage element onto the specified +wrapper. + + + + + + + + + + + + + + +Create templates for the content of one side of a title page + + +The title page content, that is, the elements from the source +document that are rendered on the title page, can be controlled independently +for the recto and verso sides of the title page. + +The t:titlepage-content element has two attributes: + + +side +Identifies the side of the page to which this title +page content applies. The +side attribute is required and +must be set to either +recto or +verso. In addition, you must specify +exactly one t:titlepage-content for each side +within each t:titlepage. + + +order +Indicates how the order of the elements presented on +the title page is determined. If the +order is +document, the elements are presented +in document order. Otherwise (if the +order is +stylesheet), the elements are presented +in the order that they appear in the template (and consequently in +the stylesheet). + + + + + +The content of a t:titlepage-content element is +a list of element names. These names should be unqualified. They identify +the elements in the source document that should appear on the title page. + + +Each element may have a single attribute: +predicate. The value of this +attribute is used as a predicate for the expression that matches +the element on which it occurs. + +In other words, to put only the first three authors on the +recto-side of a title +page, you could specify: + + + + + + +]]> + + +Usually, the elements so named are empty. But it is possible to +make one level of selection within them. Suppose that you want to +process authorgroup elements on the title page, but +you want to select only proper authors, editors, or corporate authors, +not collaborators or other credited authors. + +In that case, you can put a t:or group inside +the authorgroup element: + + + + + + + + + + + + +]]> + + +This will have the effect of automatically generating a template +for processing authorgroups in the title page mode, +selecting only the specified children. If you need more complex processing, +you'll have to construct the templates by hand. + + + + + + + + + + + + + Illegal value specified for @t:side + on t:titlepage-content: + + + + + + The @t:side attribute is required on + t:titlepage-content. + + + + + + + + .titlepage. + + .auto.mode + + + + + + + .titlepage. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Create templates for the separator + + +The title page is separated from the content which follows it by +the markup specified in the t:titlepage-separator +element. + + + + + + + + + .titlepage.separator + + + + + + + + + + +Create templates for what precedes a title page + + +Each side of the title page is preceded by the markup specified +in the t:titlepage-before element for that +side. + + + + + + + + + .titlepage.before. + + + + + + + + + + + +Copy elements + + +This template simply copies the elements that it applies to +straight through into the result tree. + + + + + + + + + + + + + +Copy attributes + + +This template simply copies the attributes that it applies to +straight through into the result tree. + + + + + + + + + + + + +Create rules to process titlepage elements in document order + + +This template is called to process all of the children of the +t:titlepage-content element. It creates the hairy +select expression necessary to process each of those elements in +the title page. + +Note that this template automatically handles the case where +some DocBook elements, like title and subtitle, can occur both inside +the *info elements where metadata is usually stored and outside. + + +It also automatically calculates the name for the *info container +and handles elements that have historically had containers with different +names. + + + + + + + + info + + + + + + artheader + + + blockinfo + + + + + + + + + + docinfo + + + + + + + + + + recto + + + + + + + .titlepage. + + .auto.mode + + + + | + + + + / + + + + + + + | + + / + + + + + + + + |info + / + + + + + + + | + + + + + + + + + + +Create rules to process titlepage elements in stylesheet order + + +This template is called to process all of the children of the +t:titlepage-content element. It creates the set +of xsl:apply-templates elements necessary +process each of those elements in the title page. + +Note that this template automatically handles the case where +some DocBook elements, like title and subtitle, can occur both inside +the *info elements where metadata is usually stored and outside. + + +It also automatically calculates the name for the *info container +and handles elements that have historically had containers with different +names. + + + + + + + + info + + + + + + artheader + + + blockinfo + + + + + + + + + + docinfo + + + + + + + + + recto + + + + + + .titlepage. + + .auto.mode + + + + + + + + + + + + .titlepage. + + .style + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Force can only be used with named-templates. + + + + + + + + + + + + + + + / + + + + + + + + + + / + + + + + + + + + + + + + + + / + + + + + + + + + + / + + + + + + + + + + + + + + + + / + + + + + + + + + + / + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + / + + + + + + + + + + + + + + + + + / + + + + + + + + + + + + + + + + + / + + + + + + + + + + + + + + + +Create templates for special rules + + +This template is called to process all of the descendants of the +t:titlepage-content element that require special +processing. At present, that's just t:or elements. + + + + + + + + + + + recto + + + + + + .titlepage. + + .auto.mode + + + + + + + + + + + + + + + + + + + + + + + + + + + +Create template for individual special rules + + +This template is called to process the children of special +template elements. + + + + + + + + + + + recto + + + + + + .titlepage. + + .auto.mode + + + + + + + + + + + + + + + +Process the t:or special rule + + +This template processes t:or. + + + + + + + + + + recto + + + + + + .titlepage. + + .auto.mode + + + + + + + + + + + + + + + + +Process the t:or special rule in +titlepage.subrules mode + + +The titlepage.subrules mode doesn't apply to t:or, so just +reprocess this node in the normal mode. + + + + + + + + + + +Construct the "or-list" used in the select attribute for +special rules. + + +Walk through each of the children of t:or, producing the +text of the select attribute. + + + + + + + + + + + + + + + + + + + + + | + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/tests/refentry.007.ns.xml b/docbook-xsl-1.76.1/tests/refentry.007.ns.xml new file mode 100644 index 0000000..f66d6e0 --- /dev/null +++ b/docbook-xsl-1.76.1/tests/refentry.007.ns.xml @@ -0,0 +1,325 @@ + +Unit Test: refentry.007 + +$Id: refentry.007.xml 7282 2007-08-23 09:27:01Z xmldoc $ +NormanWalsh
    ndw@nwalsh.com
    +
    +Reference + + + + + NormanWalshndw@nwalsh.com + Wrote the original version of this document. + + Michael(tm)SmithAdded a bunch of test cases.smith@sideshowbarker.net + + + 2003 + Norman Walsh + + + 2006 + Michael(tm) Smith + + + This file is a product of the DocBook Project. + + + Share and share alike. + + + +FirstName +SecondName +Purpose for FirstName + + + +ThirdName +Purpose for ThirdName + + + + + + + #include <varargs.h> +#include <mouteyh.h> +#include <qlmppzj.h> + + float rand + + + + + int max + + + + + int idiv + int n + int m + + + + Another. + + + + void qsort + void *dataptr[] + int left + int right + int (*comp) + void *, void * + + + + + + int foo_frob_something + foo_sometype1 foo_frob_parm1 + foo_sometype1 foo_frob_parm2 + foo_sometype1 foo_frob_parm3 + int (* parm4 ) + int a, int b, int c + + foo_sometype1 foo_frob_parm5 + + + + int foo_frob_something + foo_sometype1 foo_frob_parm1 + foo_sometype1 foo_frob_parm2 + foo_sometype1 foo_frob_parm3 + int (* parm4 ) + int a, int b, int c + + foo_sometype1 foo_frob_parm5 + + + + +Description + +This is a minimal RefEntry. + +The following is a Variablelist with a title. +My variablelist + + + varlistentry term 1 + some listitem text + + + varlistentry term 2 + some more listitem text + + + +Subsection + +This is a minimal RefEntry. + +The following is a Variablelist with a title and a nested variablelist + + + + glossentry term 1 + some glossdef text + + + glossentry term 2 + + + + nested variablelist term 1 + some variablelist text + + + nested variablelist term 2 + some more variablelist text + + + + + + + +Sub-subsection + +This is a minimal RefEntry. + + + + +More Description + +This is a not-so minimal RefEntry. + +This is a screen [break here] +that starts with a line of space. [break here] +And it ends with a line of space. + + +normal paragraph here + +This is a screen [break here] +that does not start with a line of space. [break here] +And does not end with a line of space. + +This is a normal paragraph that contains a screen. +This is a screen within a normal paragraph [break here] +that does not start with a line of space. [break here] +And does not end with a line of space but is followed +by a line of space. + + +This is another normal paragraph that contains a screen. +This is a screen within a normal paragraph [break here] +that does not start with a line of space. [break here] +And does not end with a line of space and is not followed +by a line of space. + +This is another normal paragraph that contains a screen. + +This is a screen within a normal paragraph [break here] +that starts with a line of space. [break here] +And ends with a line of space but is not followed by a line of space. + + +This is another normal paragraph that contains a screen. + +This is a screen within a normal paragraph [break here] +that starts with a line of space. [break here] +And ends with a line of space and is followed by a line of space. + + + +This is another normal paragraph that contains a screen. + + +This is a screen within a normal paragraph [break here] +that starts with a 2 lines of space. [break here] +And ends with 3 lines of space and is followed by a line of space. + + + + + +This paragraph contains an itemizedlist with a title. The title +is “Mrignkwolmcngâ€. +Mrignkwolmcng + + + itemizedlist listitem 1 + + + itemizedlist listitem 2 + + + +This is some useless text that follows the “Mrignkwolmcng†orderedlist +in the same para. + +The following is a Variablelist with a title and with a nested itemizedlist. +My variablelist + + + varlistentry term 1 + + nested itemizedlist + + + itemizedlist listitem 1 + + + itemizedlist listitem 2 + + + + + + varlistentry term 2 + some more listitem text + + + + +The following is a Variablelist with a title and with a +nested Varlistentry that contains multiple Terms +My nested-multi-term-per-varlistentry variablelist + + + Varlistentry term 1 + + + + varlistentry term 1.1 + varlistentry term 1.2 + varlistentry term 1.3 + All 'bout terms 1.1, 1.2, and 1.3 + + + + + + + varlistentry term 2 + some more listitem text + + + + +Subsection + +This is a minimal RefEntry. + + + +Even More Description + +This is an even less minimal RefEntry. + +This is a paragraph. It contains the following segmentedlist, +titled “Gibbererishâ€, with several segtitle elements. + + + Floober + Buugler + Sstangooo + Borobinda + + Bamalalaboonda Bamalalaboonda Bamalalaboonda Bamalalaboonda Bamalalaboonda Bamalalaboonda + Mondorotoluafu + Ganafutralinga + Patagularamakundra + + + Cadraracondar + Hentirotomaambu + BdomentriolaiaBdomentriolaiaBdomentriolaia + Candamalaturuanio + + +This is some text that follows the segementedlist within the same +paragraph. The next part of this same paragraph is an +important admonition. + + It is very important that you read this. That’s why it stands + out the way that it does. + + + +This is a para with a footnote + Stuff here This is a program listing +that's two lines long. + and stuff after the +footnote + + + + +
    diff --git a/docbook-xsl-1.76.1/tests/refentry.007.xml b/docbook-xsl-1.76.1/tests/refentry.007.xml new file mode 100644 index 0000000..4521376 --- /dev/null +++ b/docbook-xsl-1.76.1/tests/refentry.007.xml @@ -0,0 +1,340 @@ + + + + +Unit Test: refentry.007 +$Id: refentry.007.xml 7282 2007-08-23 09:27:01Z xmldoc $ +NormanWalsh +
    ndw@nwalsh.com
    +
    +
    + +Reference + + + + + NormanWalsh + ndw@nwalsh.com + + Wrote the original version of this document. + + + + Added a bunch of test cases. + Michael(tm)Smith + smith@sideshowbarker.net + + + + 2003 + Norman Walsh + + + 2006 + Michael(tm) Smith + + + This file is a product of the DocBook Project. + + + Share and share alike. + + + +FirstName +SecondName +Purpose for FirstName + + + +ThirdName +Purpose for ThirdName + + + + + + + #include <varargs.h> +#include <mouteyh.h> +#include <qlmppzj.h> + + float rand + + + + + int max + + + + + int idiv + int n + int m + + + + Another. + + + + void qsort + void *dataptr[] + int left + int right + int (*comp) + void *, void * + + + + + + int foo_frob_something + foo_sometype1 foo_frob_parm1 + foo_sometype1 foo_frob_parm2 + foo_sometype1 foo_frob_parm3 + int (* parm4 ) + int a, int b, int c + + foo_sometype1 foo_frob_parm5 + + + + int foo_frob_something + foo_sometype1 foo_frob_parm1 + foo_sometype1 foo_frob_parm2 + foo_sometype1 foo_frob_parm3 + int (* parm4 ) + int a, int b, int c + + foo_sometype1 foo_frob_parm5 + + + + + +Description +This is a minimal RefEntry. + +The following is a Variablelist with a title. + + My variablelist + + varlistentry term 1 + some listitem text + + + varlistentry term 2 + some more listitem text + + + + +Subsection +This is a minimal RefEntry. + +The following is a Variablelist with a title and a nested variablelist + + My glosslist + + glossentry term 1 + some glossdef text + + + glossentry term 2 + + + + nested variablelist term 1 + some variablelist text + + + nested variablelist term 2 + some more variablelist text + + + + + + + + +Sub-subsection +This is a minimal RefEntry. + + + + + +More Description +This is a not-so minimal RefEntry. + +This is a screen [break here] +that starts with a line of space. [break here] +And it ends with a line of space. + + +normal paragraph here + +This is a screen [break here] +that does not start with a line of space. [break here] +And does not end with a line of space. + +This is a normal paragraph that contains a screen. +This is a screen within a normal paragraph [break here] +that does not start with a line of space. [break here] +And does not end with a line of space but is followed +by a line of space. + + +This is another normal paragraph that contains a screen. +This is a screen within a normal paragraph [break here] +that does not start with a line of space. [break here] +And does not end with a line of space and is not followed +by a line of space. + +This is another normal paragraph that contains a screen. + +This is a screen within a normal paragraph [break here] +that starts with a line of space. [break here] +And ends with a line of space but is not followed by a line of space. + + +This is another normal paragraph that contains a screen. + +This is a screen within a normal paragraph [break here] +that starts with a line of space. [break here] +And ends with a line of space and is followed by a line of space. + + + +This is another normal paragraph that contains a screen. + + +This is a screen within a normal paragraph [break here] +that starts with a 2 lines of space. [break here] +And ends with 3 lines of space and is followed by a line of space. + + + + + +This paragraph contains an itemizedlist with a title. The title +is “Mrignkwolmcngâ€. + + Mrignkwolmcng + + itemizedlist listitem 1 + + + itemizedlist listitem 2 + + + +This is some useless text that follows the “Mrignkwolmcng†orderedlist +in the same para. + +The following is a Variablelist with a title and with a nested itemizedlist. + + My variablelist + + varlistentry term 1 + + + nested itemizedlist + + itemizedlist listitem 1 + + + itemizedlist listitem 2 + + + + + + varlistentry term 2 + some more listitem text + + + + +The following is a Variablelist with a title and with a +nested Varlistentry that contains multiple Terms + + My nested-multi-term-per-varlistentry variablelist + + Varlistentry term 1 + + + + varlistentry term 1.1 + varlistentry term 1.2 + varlistentry term 1.3 + All 'bout terms 1.1, 1.2, and 1.3 + + + + + + + varlistentry term 2 + some more listitem text + + + + + +Subsection +This is a minimal RefEntry. + + + + +Even More Description +This is an even less minimal RefEntry. + +This is a paragraph. It contains the following segmentedlist, +titled “Gibbererishâ€, with several segtitle elements. + + Gibbererish + Floober + Buugler + Sstangooo + Borobinda + + Bamalalaboonda Bamalalaboonda Bamalalaboonda Bamalalaboonda Bamalalaboonda Bamalalaboonda + Mondorotoluafu + Ganafutralinga + Patagularamakundra + + + Cadraracondar + Hentirotomaambu + BdomentriolaiaBdomentriolaiaBdomentriolaia + Candamalaturuanio + + +This is some text that follows the segementedlist within the same +paragraph. The next part of this same paragraph is an +important admonition. + + It is very important that you read this. That’s why it stands + out the way that it does. + + + +This is a para with a footnote + Stuff here This is a program listing +that's two lines long. + and stuff after the +footnote + + + + +
    diff --git a/docbook-xsl-1.76.1/tools/bin/docbook-xsl-update b/docbook-xsl-1.76.1/tools/bin/docbook-xsl-update new file mode 100755 index 0000000..0d44f56 --- /dev/null +++ b/docbook-xsl-1.76.1/tools/bin/docbook-xsl-update @@ -0,0 +1,53 @@ +#!/bin/bash +# vim: number + +# docbook-xsl-update - Update environment to latest docbook-xsl snapshot +# $Id: docbook-xsl-update 6565 2007-01-29 23:00:16Z xmldoc $ + +if [ -z $DOCBOOK_MIRROR ]; then + myhost=docbook.xml-doc.org:5873; +else + myhost=$DOCBOOK_MIRROR; +fi + +mydir=$(readlink -f $(dirname $0)) +mydocbook_xsl_base=$(readlink -f $(dirname $0)/../..) + +if [ ! -f $mydocbook_xsl_base/VERSION ]; then + cat <<- EOF +$(basename $0): error: not in snapshot directory. Stopping. + +The $(basename $0) script must be installed within its original +location in the tools/bin directory in the docbook-xsl distribution. +EOF + exit 1 +fi + +usage="Usage: + + $(basename $0) [-h HOST[:PORT]] + + -h HOST[:PORT] Specifies the rsync host and port number to use. + If not specified, uses the value of the + \$DOCBOOK_MIRROR environment variable. If that + environment variable is not specified, defaults + to a hard-coded value. + +" + +while getopts "h:" opt; do + case $opt in + h ) myhost=$OPTARG ;; + \? ) printf "$usage" + printf "$opts_admon" + exit 1 ;; + esac +done + +shift $(($OPTIND - 1)) + +if [ -z $myhost ]; then + myhost=$DOCBOOK_MIRROR +fi + +rsync -auv rsync://$myhost/xsl $mydocbook_xsl_base diff --git a/docbook-xsl-1.76.1/tools/make/Makefile.DocBook b/docbook-xsl-1.76.1/tools/make/Makefile.DocBook new file mode 100644 index 0000000..242066e --- /dev/null +++ b/docbook-xsl-1.76.1/tools/make/Makefile.DocBook @@ -0,0 +1,698 @@ +# $Source$ +# $Author: xmldoc $ +# $Date: 2008-03-03 01:20:29 -0800 (Mon, 03 Mar 2008) $ +# $Revision: 7787 $ +# vim: number +# +# ----------------------------------------------------------------- +# ** Makefile.DocBook -- generate output from DocBook sources ** +# ----------------------------------------------------------------- +# +# This file is part of the DocBook Project XSL Stylesheet +# distribution. +# +# See http://docbook.sourceforge.net/release/xsl/current/ +# for copyright and other information. + +# DOCBOOK_OUTPUT_FORMATS is the default set of targets (output +# formats) that get built when you type "make" without any targets +# explicitly specified. To generate a different set of output +# formats, change the value of DOCBOOK_OUTPUT_FORMATS here or set +# it in your environment; for example: +# +# set DOCBOOK_OUTPUT_FORMATS="html pdf"; export DOCBOOK_OUTPUT_FORMATS +# +# Of course by explicitly specifying particular targets when you +# invoke "make", you can always override generation of the default +# set of targets; for example: +# +# make html txt +# +# That would generate just HTML (unchunked) and plain-text output. +# +DOCBOOK_OUTPUT_FORMATS ?= xml man man-pdf chunk txt pdf + +# If you want XHTML output instead of HTML, set HTML_OR_XHTML to +# 'xhtml' or just specify 'xhtml" in DOCBOOK_OUTPUT_FORMATS. +ifeq ($(findstring xhtml,$(DOCBOOK_OUTPUT_FORMATS)),) +HTML_OR_XHTML ?= html +else +HTML_OR_XHTML ?= xhtml +endif + +# if your source is in asciidoc instead of DocBook, set +# ASCII_OR_DOCBOOK to "ascii" +ASCII_OR_DOCBOOK ?= docbook + +# ----------------------------------------------------------------- +# *** TOOLS and other DEPENDENCIES *** +# ----------------------------------------------------------------- +# we use rmdir(1) to remove dirs we create for chunked HTML output +RMDIR = rmdir +# "-p" causes empty parent dirs to be deleted as well +RMDIR_FLAGS = --ignore-fail-on-non-empty -p + +# possible values for PDF_MAKER are: +# dblatex|fop|xep|xmlroff|passivetex +PDF_MAKER = dblatex + +# possible values for TXT_MAKER are: +# links|lynx|w3m|w3mmee +TXT_MAKER = links +TXT_MAKER_FLAGS = -dump + +# xsl +XSLT = xsltproc +XSLT_FLAGS = --xinclude + +# http://dblatex.sourceforge.net/ +DBLATEX = dblatex +DBLATEX_FLAGS = -b pdftex + +FOP = fop +FOP_FLAGS = + +XEP = xep +XEP_FLAGS = + +# http://xmlroff.sourceforge.net/ +XMLROFF = xmlroff +XMLROFF_FLAGS = + +PDFTEX = pdftex +PDFTEX_FLAGS = + +# used by PassiveTeX +PDFXMLTEX = pdfxmltex + +# http://docbook2x.sourceforge.net/ +DB2X_XSLTPROC = db2x_xsltproc +DB2X_XSLTPROC_FLAGS = +DB2X_TEXIXML = db2x_texixml +DB2X_TEXIXML_FLAGS = + +# we call the man(1) command to generate "foo.N.pdf" and +# "foo.N.txt" output (see "man-pdf" & "man-txt" targets) +MAN = man +MAN_FLAGS = + +# The "ps2pdf" command is part of GhostSript (gs) distro. +# It is just a wrapper script around gs that does this: +# +# gs -dCompatibilityLevel=1.2 -q -dNOPAUSE -dBATCH -sDEVICE=pdfwrite \ +# "-sOutputFile=$outfile" -dCompatibilityLevel=1.2 -c .setpdfwrite -f "$infile" +# +# Where, for example: $outfile = foo.pdf and $infile = foo.1 +PS2PDF = ps2pdf +PS2PDF_FLAGS = + +# asciidoc is used to generate DocBook XML from asciidoc source +ASCIIDOC=asciidoc +ASCIIDOCFLAGS= + +# asciidoc source seems to have DOS line endings, so we use +# DOS2UNIX to be able to grep them correctly +DOS2UNIX=dos2unix +DOS2UNIXFLAGS= + +# The "col" command is needed for stripping backspaces and +# underscores from man(1) output to get pure plain-text +COL = col +COL_FLAGS = + +# The "expand" command is needed for expanding tabs from files +# generated from "man foo.1 | col -b" output +# output to get pure plain-text +EXPAND = expand +EXPAND_FLAGS = + +# value of DOCBOOK_XSL should either be the canonical +# (docbook.sourceforge.net) URL for the DocBook Project XSL +# stylesheets OR it can be a local system path +DOCBOOK_XSL = http://docbook.sourceforge.net/release/xsl/current + +# ----------------------------------------------------------------- +# names of some DIRECTORIES and FILES we need +# ----------------------------------------------------------------- +# We create a tmp directory once per make invocation; it's needed +# for holding a temporary copy of the custom DBLaTeX stylesheet +# (because dblatex currently can't read a stylesheet from stdin) +TMP ?= /tmp +TMPNUM := $(shell echo $$$$) +DOCBOOK_TMP := $(TMP)/docbook-make-$(TMPNUM) + +# MAN_MANIFEST_EXT is file extension added to individual manifest +# files +MAN_MANIFEST_EXT = manifest_man + +# HTML_MANIFEST_EXT is file extension added to HTML manifest files +HTML_MANIFEST_EXT = manifest_html + +# BASEDIR_SUFFIX is a what you need to set if you want a suffix +# added to the end of each "base.dir" we create while generating +# chunked HTML output +#BASEDIR_SUFFIX = -html +#BASEDIR_SUFFIX = _html +BASEDIR_SUFFIX = + +# ----------------------------------------------------------------- +# assorted OPTIONS +# ----------------------------------------------------------------- +# HTML_STYLESHEET -> $html.stylesheet stylesheet param +# http://docbook.sourceforge.net/snapshots/xsl/doc/html/html.stylesheet.html +HTML_STYLESHEET = style.css +# HTML_IMAGES -> $admon.graphics.path +# http://docbook.sourceforge.net/snapshots/xsl/doc/html/admon.graphics.path.html +HTML_IMAGES = images/ +# HTML_IMAGES_EXT -> $admon.graphics.extension +# http://docbook.sourceforge.net/snapshots/xsl/doc/html/admon.graphics.extension.html +HTML_IMAGES_EXT = .png + +# use these to set params on the command-line +# format is, e.g., HTML_PARAMS="--stringparam variablelist.as.table 1..." +FO_PARAMS = +HTML_PARAMS = +MAN_PARAMS = + +# DBX_PARAMS is for dblatex(1); format uses "-p": +# DBX_PARAMS="-p doc.publisher.show 1 -p term.breakline 1... +DBX_PARAMS= + +# What file extension do you use for DocBook source files? +DOCBOOK_FILE_EXTENSION = .xml + +# ----------------------------------------------------------------- +# make(1) functions for building file lists +# ----------------------------------------------------------------- +# +# the values of the following are used for determing what needs +# to be built and/or cleaned up + +ifeq ($(ASCII_OR_DOCBOOK),docbook) +SOURCE_FILES_DBK = $(wildcard *$(DOCBOOK_FILE_EXTENSION)) +else +SOURCE_FILES_DBK = $(foreach base,$(basename $(wildcard *.txt)),$(base)$(DOCBOOK_FILE_EXTENSION)) +endif + +FILES_FO = $(foreach base,$(basename $(SOURCE_FILES_DBK)),$(base).fo) +FILES_TXT = $(foreach base,$(basename $(SOURCE_FILES_DBK)),$(base).out.txt) +FILES_PDF = $(foreach base,$(basename $(SOURCE_FILES_DBK)),$(base).pdf) +FILES_LOG = $(foreach base,$(basename $(SOURCE_FILES_DBK)),$(base).log) +FILES_OUT = $(foreach base,$(basename $(SOURCE_FILES_DBK)),$(base).out) +FILES_AUX = $(foreach base,$(basename $(SOURCE_FILES_DBK)),$(base).aux) +FILES_HTML = $(foreach base,$(basename $(SOURCE_FILES_DBK)),$(base).html) +FILES_INFO = $(foreach base,$(basename $(SOURCE_FILES_DBK)),$(base).info) +DIRS_CHUNK = $(foreach base,$(basename $(SOURCE_FILES_DBK)),$(base)$(BASEDIR_SUFFIX)) +LISTS_HTML = $(foreach base,$(basename $(SOURCE_FILES_DBK)),$(base).$(HTML_MANIFEST_EXT)) +LISTS_MAN = $(foreach base,$(basename $(SOURCE_FILES_DBK)),$(base).$(MAN_MANIFEST_EXT)) +FILES_CHNK = $(shell for manifest in $(LISTS_HTML); do if [ -f "$$manifest" ]; then cat $$manifest; fi done) +FILES_MAN = $(shell for manifest in $(LISTS_MAN); do if [ -f "$$manifest" ]; then cat $$manifest; fi done) +FILES_MANP = $(foreach base,$(FILES_MAN),$(base).man.pdf) +FILES_MANT = $(foreach base,$(FILES_MAN),$(base).out.txt) +DIRS_MAN = $(shell for file in $(FILES_MAN); do dirname $$file; done | uniq) + +# ----------------------------------------------------------------- +# ** stylesheet for testing whether a file has a refentry +# ----------------------------------------------------------------- +REFENTRY_CHECK := \ + \ + \ + \ + true \ + \ + \ + + +# ----------------------------------------------------------------- +# ** Stylesheet Customization Layers ** +# ----------------------------------------------------------------- +# +# for DBLaTeX +DBX_CUSTOM := \ + 0 \ + 1 \ + 0 \ + 1 \ + 1 \ + left \ + 1 \ + \ + docbook \ + all \ + "" \ + WIDELABEL \ + 0 \ + [htbp] \ + 0 \ + 1 \ + \ + twoside \ + , \ + 1 \ + Synopsis \ + \ + ansi \ + 1 \ + 0 \ + java \ + 0 \ + + +# for FO output +FO_CUSTOM := \ + \ + 1 \ + A4 \ + \ + false \ + 1 \ + left \ + 1 \ + 0 \ + 1 \ + 1 \ + 1 \ + 1 \ + 1 \ + 1 \ + \ + blue \ + \ + \ + \#E0E0E0 \ + 4pt \ + 4pt \ + 4pt \ + 4pt \ + \ + \ + \ + \ + pt \ + \ + \ + \ + \ + \ + pt \ + \ + \ + \ + \ + \ + pt \ + \ + \ + \ + \ + \ + pt \ + \ + \ + \ + \ + \ + pt \ + \ + \ + \ + wrap \ + \ \ + \ + \ + pt \ + \ + \ + + +# for single-file (X)HTML outpout +HTML_CUSTOM := \ + \ + local.l10n.xml \ + \ + 1 \ + 0 \ + \ + 0 \ + $(HTML_STYLESHEET) \ + 0 \ + 1 \ + + +# for chunked (X)HTML output +CHNK_CUSTOM := \ + \ + 0 \ + 1 \ + 0 \ + $(HTML_STYLESHEET) \ + 1 \ + $(HTML_IMAGES) \ + $(HTML_IMAGES_EXT) \ + \ + 1 \ + 1 \ + yes \ + 1 \ + + +# for man-page output +MAN_CUSTOM := \ + \ + \ + \ + man/ \ + \ + + +# ----------------------------------------------------------------- +# ** TARGETS START HERE ** +# ----------------------------------------------------------------- +# prevents make from deleting, e.g. foo.1, after making foo.1.pdf +# and foo.1.txt from it. +.PRECIOUS: %.1 %.2 %.3 %.4 %.5 %.6 %.7 %.8 %.9 + +docbook: $(DOCBOOK_OUTPUT_FORMATS) + +xml: $(SOURCE_FILES_DBK) + +man: $(LISTS_MAN) + +# we can generate PDFs from man pages +man-pdf: man + $(MAKE) $(FILES_MANP) + +# we can generate plain text from man pages +man-txt: man + $(MAKE) $(FILES_MANT) + +html: $(FILES_HTML) + +chunk: $(LISTS_HTML) + +txt: $(FILES_TXT) + +pdf: $(FILES_PDF) + +info: $(FILES_INFO) + +# use the "debug" target to echo variables, etc., to +# test/troubleshoot changes you make to this makefile +debug: + echo $(wildcard *$(DOCBOOK_FILE_EXTENSION)) + echo $(ASCII_OR_DOCBOOK) + echo $(SOURCE_FILES_DBK) + +# ----------------------------------------------------------------- +# pattern rule to make DocBook refentry from asciidoc source +# ----------------------------------------------------------------- +%.1$(DOCBOOK_FILE_EXTENSION): %.1.txt + $(ASCIIDOC) $(ASCIIDOCFLAGS) -d manpage -b docbook $< + +%.2$(DOCBOOK_FILE_EXTENSION): %.2.txt + $(ASCIIDOC) $(ASCIIDOCFLAGS) -d manpage -b docbook $< + +%.3$(DOCBOOK_FILE_EXTENSION): %.3.txt + $(ASCIIDOC) $(ASCIIDOCFLAGS) -d manpage -b docbook $< + +%.4$(DOCBOOK_FILE_EXTENSION): %.4.txt + $(ASCIIDOC) $(ASCIIDOCFLAGS) -d manpage -b docbook $< + +%.5$(DOCBOOK_FILE_EXTENSION): %.5.txt + $(ASCIIDOC) $(ASCIIDOCFLAGS) -d manpage -b docbook $< + +%.6$(DOCBOOK_FILE_EXTENSION): %.6.txt + $(ASCIIDOC) $(ASCIIDOCFLAGS) -d manpage -b docbook $< + +%.7$(DOCBOOK_FILE_EXTENSION): %.7.txt + $(ASCIIDOC) $(ASCIIDOCFLAGS) -d manpage -b docbook $< + +%.8$(DOCBOOK_FILE_EXTENSION): %.8.txt + $(ASCIIDOC) $(ASCIIDOCFLAGS) -d manpage -b docbook $< + +%.9$(DOCBOOK_FILE_EXTENSION): %.9.txt + $(ASCIIDOC) $(ASCIIDOCFLAGS) -d manpage -b docbook $< + +# ----------------------------------------------------------------- +# pattern rule to make DocBook article from asciidoc source +# ----------------------------------------------------------------- +%$(DOCBOOK_FILE_EXTENSION): %.txt + export LINECOUNT1=$$(cat $< | $(DOS2UNIX) $(DOS2UNIXFLAGS) | egrep "^=+$$" | wc -l); \ + export LINECOUNT2=$$(cat $< | $(DOS2UNIX) $(DOS2UNIXFLAGS) | egrep "^= $$" | wc -l); \ + if [[ $$LINECOUNT1 > 1 || $$LINECOUNT2 > 1 ]]; then \ + $(ASCIIDOC) $(ASCIIDOCFLAGS) -d book -b docbook $<; \ + else \ + $(ASCIIDOC) $(ASCIIDOCFLAGS) -b docbook $<; \ + fi + +# ----------------------------------------------------------------- +# pattern rule for making (X)HTML and plain-text output +# ----------------------------------------------------------------- +%.html: %$(DOCBOOK_FILE_EXTENSION) + @echo '$(HTML_CUSTOM)' | $(XSLT) $(XSLT_FLAGS) $(HTML_PARAMS) - $< > $@ + +%.out.txt: %.html + $(TXT_MAKER) $(TXT_MAKER_FLAGS) ./$< \ + | sed "s/^\(\s\+[0-9]\+\. \)file:\/\/.\+$$/\\1(local)/g" \ + | egrep -v '^ file:///.+$$' \ + > $@ +# if DOCBOOK_OUTPUT_FORMATS does not contain "html", then we need +# to remove the "intermediate" HTML files we used for generating +# plain-text output +ifeq ($(findstring html,$(DOCBOOK_OUTPUT_FORMATS)),) + $(RM) $< +endif + +# ----------------------------------------------------------------- +# pattern rule for making chunked (X)HTML pages +# ----------------------------------------------------------------- +%.$(HTML_MANIFEST_EXT): %$(DOCBOOK_FILE_EXTENSION) + @echo '$(CHNK_CUSTOM)' | $(XSLT) $(XSLT_FLAGS) $(HTML_PARAMS) \ + --stringparam manifest $@ \ + --stringparam base.dir $(basename $@)$(BASEDIR_SUFFIX)/ \ + - $< + +# ----------------------------------------------------------------- +# pattern rules for making FO and PDF stuff +# ----------------------------------------------------------------- +%.fo: %$(DOCBOOK_FILE_EXTENSION) + @echo '$(FO_CUSTOM)' \ + | $(XSLT) $(XSLT_FLAGS) $(FO_PARAMS) - $< > $@ + +ifeq ($(PDF_MAKER),dblatex) +%.pdf: %$(DOCBOOK_FILE_EXTENSION) + mkdir -p $(DOCBOOK_TMP) + echo '$(DBX_CUSTOM)' > $(DOCBOOK_TMP)/dblatex.xsl + -$(DBLATEX) $(DBLATEX_FLAGS)\ + -p $(DOCBOOK_TMP)/dblatex.xsl \ + -o $@ \ + $< + $(RM) -r $(DOCBOOK_TMP) +endif + +%.pdf: %.fo +ifeq ($(PDF_MAKER),) + $(error No PDF_MAKER specified. Cannot make pdf) +else +ifeq ($(PDF_MAKER),xep) + $(XEP) $(XEP_FLAGS) $< $@ +else +ifeq ($(PDF_MAKER),fop) + $(FOP) $(FOP_FLAGS) $< $@ +else +ifeq ($(PDF_MAKER),xmlroff) + $(XMLROFF) $(XMLROFF_FLAGS) $< -o $@ +else +ifeq ($(PDF_MAKER),passivetex) + $(PDFTEX) $(PDFTEX_FLAGS) &$(PDFXMLTEX) $< + @if [ `egrep Rerun $(basename $@).log | wc -l` -gt 0 ]; then \ + $(PDFTEX) $(PDFTEX_FLAGS) &$(PDFXMLTEX) $< ; \ + fi + @if [ `egrep Rerun $(basename $@).log | wc -l` -gt 0 ]; then \ + $(PDFTEX) $(PDFTEX_FLAGS) &$(PDFXMLTEX) $< ; \ + fi + $(RM) $(basename $@).log + $(RM) $(basename $@).aux + $(RM) $(basename $@).out +else + $(error I do not know how to make a PDF using "$(PDF_MAKER)") +endif +endif +endif +endif +endif + +# ----------------------------------------------------------------- +# pattern rules for making TeXinfo stuff +# ----------------------------------------------------------------- +%.txml: %$(DOCBOOK_FILE_EXTENSION) + $(DB2X_XSLTPROC) $(DB2X_XSLTPROC_FLAGS) -s texi -o $@ $< + +%.texi: %.txml + $(DB2X_TEXIXML) $(DB2X_TEXIXML_FLAGS) $< + +# the following is actually a built-in rule, but it's redefined +# here just for the sake of clarity +%.info: %.texi + $(MAKEINFO) $(MAKEINFO_FLAGS) $< -o $@ + +# ----------------------------------------------------------------- +# pattern rule for making man pages +# ----------------------------------------------------------------- +%.$(MAN_MANIFEST_EXT): %$(DOCBOOK_FILE_EXTENSION) + @if [ "$(strip $(shell echo '$(REFENTRY_CHECK)' | $(XSLT) $(XSLT_FLAGS) - $<))" != "true" ]; then \ + touch $@; \ + else \ + echo '$(MAN_CUSTOM)' \ + | $(XSLT) $(XSLT_FLAGS) $(MAN_PARAMS) \ + --stringparam man.output.manifest.filename $@ \ + - $<; \ + fi + +# ----------------------------------------------------------------- +# pattern rule for enabling direct "make foo.1" to work +# ----------------------------------------------------------------- + +%.1 %.2 %.3 %.4 %.5 %.6 %.7: %.xml + $(MAKE) $(basename $<).$(MAN_MANIFEST_EXT) + +# ----------------------------------------------------------------- +# pattern rules for making Postscript/PDF output from man pages +# ----------------------------------------------------------------- +%.1.man.ps: %.1 + $(MAN) -l $(MAN_FLAGS) -Tps $< > $@ + +%.2.man.ps: %.2 + $(MAN) -l $(MAN_FLAGS) -Tps $< > $@ + +%.3.man.ps: %.3 + $(MAN) -l $(MAN_FLAGS) -Tps $< > $@ + +%.4.man.ps: %.4 + $(MAN) -l $(MAN_FLAGS) -Tps $< > $@ + +%.5.man.ps: %.5 + $(MAN) -l $(MAN_FLAGS) -Tps $< > $@ + +%.6.man.ps: %.6 + $(MAN) -l $(MAN_FLAGS) -Tps $< > $@ + +%.7.man.ps: %.7 + $(MAN) -l $(MAN_FLAGS) -Tps $< > $@ + +%.8.man.ps: %.8 + $(MAN) -l $(MAN_FLAGS) -Tps $< > $@ + +%.9.man.ps: %.9 + $(MAN) -l $(MAN_FLAGS) -Tps $< > $@ + +# ----------------------------------------------------------------- +# pattern rule for converting Postscript to PDF +# ----------------------------------------------------------------- +%.pdf: %.ps + $(PS2PDF) $(PS2PDF_FLAGS) $< + +# ----------------------------------------------------------------- +# pattern rules for making plain-text output from man pages +# ----------------------------------------------------------------- +%.1.out.txt: %.1 + $(MAN) -l $(MAN_FLAGS) -Tascii $< | $(COL) -b $(COL_FLAGS) | $(EXPAND) $(EXPAND_FLAGS) > $@ + +%.2.out.txt: %.2 + $(MAN) -l $(MAN_FLAGS) -Tascii $< | $(COL) -b $(COL_FLAGS) | $(EXPAND) $(EXPAND_FLAGS) > $@ + +%.3.out.txt: %.3 + $(MAN) -l $(MAN_FLAGS) -Tascii $< | $(COL) -b $(COL_FLAGS) | $(EXPAND) $(EXPAND_FLAGS) > $@ + +%.4.out.txt: %.4 + $(MAN) -l $(MAN_FLAGS) -Tascii $< | $(COL) -b $(COL_FLAGS) | $(EXPAND) $(EXPAND_FLAGS) > $@ + +%.5.out.txt: %.5 + $(MAN) -l $(MAN_FLAGS) -Tascii $< | $(COL) -b $(COL_FLAGS) | $(EXPAND) $(EXPAND_FLAGS) > $@ + +%.6.out.txt: %.6 + $(MAN) -l $(MAN_FLAGS) -Tascii $< | $(COL) -b $(COL_FLAGS) | $(EXPAND) $(EXPAND_FLAGS) > $@ + +%.7.out.txt: %.7 + $(MAN) -l $(MAN_FLAGS) -Tascii $< | $(COL) -b $(COL_FLAGS) | $(EXPAND) $(EXPAND_FLAGS) > $@ + +%.8.out.txt: %.8 + $(MAN) -l $(MAN_FLAGS) -Tascii $< | $(COL) -b $(COL_FLAGS) | $(EXPAND) $(EXPAND_FLAGS) > $@ + +%.9.out.txt: %.9 + $(MAN) -l $(MAN_FLAGS) -Tascii $< | $(COL) -b $(COL_FLAGS) | $(EXPAND) $(EXPAND_FLAGS) > $@ + +# ----------------------------------------------------------------- +# target(s) for cleaning up the mess +# ----------------------------------------------------------------- +clean: +ifneq ($(FILES_TXT),) + $(RM) $(FILES_TXT) +endif +ifneq ($(FILES_PDF),) + $(RM) $(FILES_PDF) +endif +ifneq ($(FILES_FO),) + $(RM) $(FILES_FO) +endif +ifneq ($(FILES_LOG),) + $(RM) $(FILES_LOG) +endif +ifneq ($(FILES_OUT),) + $(RM) $(FILES_OUT) +endif +ifneq ($(FILES_AUX),) + $(RM) $(FILES_AUX) +endif +ifneq ($(FILES_HTML),) + $(RM) $(FILES_HTML) +endif +ifneq ($(FILES_CHNK),) + $(RM) $(FILES_CHNK) +endif +ifneq ($(FILES_MAN),) + $(RM) $(FILES_MAN) +endif +ifneq ($(FILES_MANT),) + $(RM) $(FILES_MANT) +endif +ifneq ($(FILES_MANP),) + $(RM) $(FILES_MANP) +endif +ifneq ($(FILES_INFO),) + $(RM) $(FILES_INFO) +endif +ifneq ($(DIRS_CHUNK),) + for dir in $(DIRS_CHUNK); do \ + if [ -d "$$dir" ]; then \ + $(RMDIR) $(RMDIR_FLAGS) $$dir; \ + fi \ + done +endif +ifneq ($(DIRS_MAN),) +ifneq ($(DIRS_MAN),.) + for dir in $(DIRS_MAN); do \ + if [ -d "$$dir" ]; then \ + $(RMDIR) $(RMDIR_FLAGS) $$dir; \ + fi \ + done +endif +endif +ifneq ($(LISTS_MAN),) + $(RM) $(LISTS_MAN) +endif +ifneq ($(LISTS_HTML),) + $(RM) $(LISTS_HTML) +endif +ifneq ($(ASCII_OR_DOCBOOK),docbook) + $(RM) -i $(SOURCE_FILES_DBK) +endif diff --git a/docbook-xsl-1.76.1/tools/make/Makefile.combine b/docbook-xsl-1.76.1/tools/make/Makefile.combine new file mode 100644 index 0000000..28a5e18 --- /dev/null +++ b/docbook-xsl-1.76.1/tools/make/Makefile.combine @@ -0,0 +1,182 @@ +# $Source$ +# $Author: xmldoc $ +# $Date: 2007-03-04 22:28:18 -0800 (Sun, 04 Mar 2007) $ +# $Revision: 6666 $ +# vim: number +# +# ----------------------------------------------------------------- +# ** Makefile.combine -- combine source files ** +# ----------------------------------------------------------------- +# +# This file is part of the DocBook Project XSL Stylesheet +# distribution. +# +# See http://docbook.sourceforge.net/release/xsl/current/ +# for copyright and other information. +# +# This makefile creates "wrapper" files that combine sets of +# individual DocBook source files. The purpose of combining the +# files is to speed up processing time. By default it puts 20 +# files into each wrapper. Use CHUNKSIZE to configure the number +# of files per wrapper. +# +# Currently, this makefile has only a "man" target and is mainly +# intended to speed up processing of large numbers of individual +# refentry instances. + +# What file extension do you use for DocBook source files? +DOCBOOK_FILE_EXTENSION = .xml +SOURCE_FILES_DBK = $(wildcard *$(DOCBOOK_FILE_EXTENSION)) + +MAKEFILE_DOCBOOK = Makefile.DocBook + +XSLTPROC=xsltproc +XSLTPROC_FLAGS= + +SED=sed +SED_FLAGS=-i + +CHUNKSIZE ?= 20 + +WRAPPER_ELEMENT = reference +WRAPPER_TITLE=Combined contents + +COMBINE_XSL = \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + <$(WRAPPER_ELEMENT)> \ + $(WRAPPER_TITLE) \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + + +all: man + +man: build/man + +build/Makefile: + if [ ! -d build ]; then mkdir build; fi + cp $(MAKEFILE_DOCBOOK) $@ + +combine.xsl: Makefile + @echo '$(COMBINE_XSL)' > $@ + $(SED) $(SED_FLAGS) "s/\^\^/'/g" $@ + +build/1.xml: combine.xsl + $(XSLTPROC) $(XSLTPROC_FLAGS) \ + --stringparam files "$(SOURCE_FILES_DBK)" \ + --stringparam chunk.size $(CHUNKSIZE) \ + $< $< + +build/man: build/Makefile build/1.xml + time $(MAKE) -C build man \ + MAN_PARAMS="--stringparam man.output.quietly 1 \ + --stringparam refentry.meta.get.quietly 1 \ + --stringparam man.charmap.enabled 0" + +debug: + +clean: + $(RM) -r build diff --git a/docbook-xsl-1.76.1/tools/make/Makefile.docParam b/docbook-xsl-1.76.1/tools/make/Makefile.docParam new file mode 100644 index 0000000..36d12ca --- /dev/null +++ b/docbook-xsl-1.76.1/tools/make/Makefile.docParam @@ -0,0 +1,59 @@ +# $Source$ +# $Author: xmldoc $ +# $Date: 2007-03-23 14:57:22 -0700 (Fri, 23 Mar 2007) $ +# $Revision: 6759 $ +# vim: number +# +# ------------------------------------------------------------------ +# ** Makefile.paramDoc - create param.xsl files w/ embedded doc ** +# ------------------------------------------------------------------ + +PARAMFILES = $(wildcard ../../*/param.xsl) +PARAMFILESDOCD = $(foreach base,$(basename $(PARAMFILES)),$(base).docd.xsl) + +XSLT=xsltproc +XSLTFLAGS= + +COPYDOC := \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + &\#x0a; \ + \ + \ + \ + &\#x0a; \ + \ + \ + + +all: $(PARAMFILESDOCD) + +%.docd.xsl: %.xsl + @echo '$(COPYDOC)' | $(XSLT) $(XSLTFLAGS) - $< > $@ + +debug: + @echo $(PARAMFILESDOCD) + +clean: + $(RM) $(PARAMFILESDOCD) diff --git a/docbook-xsl-1.76.1/webhelp/LICENSE b/docbook-xsl-1.76.1/webhelp/LICENSE new file mode 100755 index 0000000..63c2931 --- /dev/null +++ b/docbook-xsl-1.76.1/webhelp/LICENSE @@ -0,0 +1 @@ +See doc/content/index.html. \ No newline at end of file diff --git a/docbook-xsl-1.76.1/webhelp/build.properties b/docbook-xsl-1.76.1/webhelp/build.properties new file mode 100755 index 0000000..7f45d06 --- /dev/null +++ b/docbook-xsl-1.76.1/webhelp/build.properties @@ -0,0 +1,43 @@ + +# The path (relative to the build.xml file) to your input document. +# To use your own input document, create a build.xml file of your own +# and import this build.xml. +input-xml=docsrc/readme.xml + +# The directory in which to put the output files. +# This directory is created if it does not exist. +output-dir=docs + +# If you are using a customization layer that imports webhelp.xsl, use +# this property to point to it. +stylesheet-path=${ant.file.dir}/xsl/webhelp.xsl + +# If your document has image directories that need to be copied +# to the output directory, you can list patterns here. +# See the Ant documentation for fileset for documentation +# on patterns. +#input-images-dirs=images/**,figures/**,graphics/** + +# By default, the ant script assumes your images are stored +# in the same directory as the input-xml. If you store your +# image directories in another directory, specify it here. +# and uncomment this line. +#input-images-basedir=/path/to/image/location + +# Modify this so that it points to your copy of the Saxon 6.5 jar. +xslt-processor-classpath=/usr/share/java/saxon-6.5.5.jar + +# For non-ns version only, this validates the document +# against a dtd. +validate-against-dtd=true + +# Set this to false if you don't need a search tab. +webhelp.include.search.tab=true + +# indexer-language is used to tell the search indexer which language +# the docbook is written. This will be used to identify the correct +# stemmer, and punctuations that differs from language to language. +# see the documentation for details. en=English, fr=French, de=German, +# zh=Chinese, ja=Japanese etc. +webhelp.indexer.language=en + diff --git a/docbook-xsl-1.76.1/webhelp/build.xml b/docbook-xsl-1.76.1/webhelp/build.xml new file mode 100755 index 0000000..c9358b1 --- /dev/null +++ b/docbook-xsl-1.76.1/webhelp/build.xml @@ -0,0 +1,112 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Indexing html files in ${output-dir}/content + + + + + + + + + + + + + + + + + + +Usage: +webhelp: Generates the document in webhelp format and indexes the content. +clean: Deletes webhelp output directory. +index: Indexes the content. + + + + diff --git a/docbook-xsl-1.76.1/webhelp/docs/common/css/positioning.css b/docbook-xsl-1.76.1/webhelp/docs/common/css/positioning.css new file mode 100644 index 0000000..3d30bc2 --- /dev/null +++ b/docbook-xsl-1.76.1/webhelp/docs/common/css/positioning.css @@ -0,0 +1,109 @@ +body { font: 12px Verdana, Geneva, sans-serif; } +p, ul, ol, li { font: 10pt Verdana, Geneva, sans-serif; } +h1 { font: bold 15pt Arial, Helvetica, geneva; } +h2 { font: bold 14pt Arial, Helvetica, geneva; } + +#header { + background: white url(../images/header-bg.gif) repeat-x; + position: fixed; + width: 100%; + height: 95px; + top: 0; + right: 0; + bottom: auto; + left: 0; + border-bottom: 2px solid #cccccc; + z-index: 2000; +} + +#leftnavigation { +/* background-color:#91e7b3;*/ + overflow: auto; + position: fixed; + height: auto; + top: 90px; + bottom: 0; + left: 0; + width: 280px; + z-index: 1500; + border-right:2px solid #CCCCCC; +} + +#content { + position: relative; + top: 90px; /* left: 240px;*/ + right: auto; /* bottom: 20px; */ + margin: 0px 0px 0px 280px; + width: auto; + height: inherit; + padding-left: 5px; + padding-right: 30px; + color: #000000; + /*border-left: 2px solid #cccccc; overflow :scroll;*/ + z-index: 1000; + + max-width: 70em; + min-width:800px; +} + +#navheader { + position: fixed; + top: 65px; + right:4px; +} + +#content h1, #content h2 { color: #cc0000; } +.navfooter { bottom: 2%; } +.highlight { background-color: #c5d3c3; } +.highlightButton{ font-size: 0; } + +/* Show Hide TOC tree */ +.pointLeft { + background: url("../images/showHideTreeIcons.png") 0 0 no-repeat; + height: 28px; + width: 15px; + display: block; + font-size: 0; + cursor: pointer; +} +.pointRight { + background: url("../images/showHideTreeIcons.png") -15px 0 no-repeat; + height: 28px; + display: block; + font-size: 0; + cursor: pointer; +} + +/* Search results Styling */ +.searchExpression { + color: #0050A0; + background-color: #EBEFF8; + font-size: 12pt; +} +.searchresult li a { + text-decoration: none; + color: #0050A0; +} +.searchresult li { + color: #0050A0; +} +.shortdesclink { + color: gray; + font-size: 9pt; +} +.searchText { + border: #BFCEE9 solid 1pt; + width: 11em +} +.searchButton { + margin-left: 3px; + background: #EBEFF8; + color: #0050A0; + border: #BFCEE9 solid 1pt; + font-weight: bold; + font-size: 10pt +} + +.title, div.toc>p{ + font-weight: bold; + } \ No newline at end of file diff --git a/docbook-xsl-1.76.1/webhelp/docs/common/images/header-bg.gif b/docbook-xsl-1.76.1/webhelp/docs/common/images/header-bg.gif new file mode 100644 index 0000000..f9efa28 Binary files /dev/null and b/docbook-xsl-1.76.1/webhelp/docs/common/images/header-bg.gif differ diff --git a/docbook-xsl-1.76.1/webhelp/docs/common/images/highlight-blue.gif b/docbook-xsl-1.76.1/webhelp/docs/common/images/highlight-blue.gif new file mode 100644 index 0000000..4fdabde Binary files /dev/null and b/docbook-xsl-1.76.1/webhelp/docs/common/images/highlight-blue.gif differ diff --git a/docbook-xsl-1.76.1/webhelp/docs/common/images/highlight-yellow.gif b/docbook-xsl-1.76.1/webhelp/docs/common/images/highlight-yellow.gif new file mode 100644 index 0000000..3e847e7 Binary files /dev/null and b/docbook-xsl-1.76.1/webhelp/docs/common/images/highlight-yellow.gif differ diff --git a/docbook-xsl-1.76.1/webhelp/docs/common/images/loading.gif b/docbook-xsl-1.76.1/webhelp/docs/common/images/loading.gif new file mode 100644 index 0000000..6a56815 Binary files /dev/null and b/docbook-xsl-1.76.1/webhelp/docs/common/images/loading.gif differ diff --git a/docbook-xsl-1.76.1/webhelp/docs/common/images/logo.png b/docbook-xsl-1.76.1/webhelp/docs/common/images/logo.png new file mode 100644 index 0000000..b111258 Binary files /dev/null and b/docbook-xsl-1.76.1/webhelp/docs/common/images/logo.png differ diff --git a/docbook-xsl-1.76.1/webhelp/docs/common/images/showHideTreeIcons.png b/docbook-xsl-1.76.1/webhelp/docs/common/images/showHideTreeIcons.png new file mode 100644 index 0000000..c1ec1f9 Binary files /dev/null and b/docbook-xsl-1.76.1/webhelp/docs/common/images/showHideTreeIcons.png differ diff --git a/docbook-xsl-1.76.1/webhelp/docs/common/jquery/jquery-1.4.2.min.js b/docbook-xsl-1.76.1/webhelp/docs/common/jquery/jquery-1.4.2.min.js new file mode 100644 index 0000000..7c24308 --- /dev/null +++ b/docbook-xsl-1.76.1/webhelp/docs/common/jquery/jquery-1.4.2.min.js @@ -0,0 +1,154 @@ +/*! + * jQuery JavaScript Library v1.4.2 + * http://jquery.com/ + * + * Copyright 2010, John Resig + * Dual licensed under the MIT or GPL Version 2 licenses. + * http://jquery.org/license + * + * Includes Sizzle.js + * http://sizzlejs.com/ + * Copyright 2010, The Dojo Foundation + * Released under the MIT, BSD, and GPL Licenses. + * + * Date: Sat Feb 13 22:33:48 2010 -0500 + */ +(function(A,w){function ma(){if(!c.isReady){try{s.documentElement.doScroll("left")}catch(a){setTimeout(ma,1);return}c.ready()}}function Qa(a,b){b.src?c.ajax({url:b.src,async:false,dataType:"script"}):c.globalEval(b.text||b.textContent||b.innerHTML||"");b.parentNode&&b.parentNode.removeChild(b)}function X(a,b,d,f,e,j){var i=a.length;if(typeof b==="object"){for(var o in b)X(a,o,b[o],f,e,d);return a}if(d!==w){f=!j&&f&&c.isFunction(d);for(o=0;o)[^>]*$|^#([\w-]+)$/,Ua=/^.[^:#\[\.,]*$/,Va=/\S/, +Wa=/^(\s|\u00A0)+|(\s|\u00A0)+$/g,Xa=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,P=navigator.userAgent,xa=false,Q=[],L,$=Object.prototype.toString,aa=Object.prototype.hasOwnProperty,ba=Array.prototype.push,R=Array.prototype.slice,ya=Array.prototype.indexOf;c.fn=c.prototype={init:function(a,b){var d,f;if(!a)return this;if(a.nodeType){this.context=this[0]=a;this.length=1;return this}if(a==="body"&&!b){this.context=s;this[0]=s.body;this.selector="body";this.length=1;return this}if(typeof a==="string")if((d=Ta.exec(a))&& +(d[1]||!b))if(d[1]){f=b?b.ownerDocument||b:s;if(a=Xa.exec(a))if(c.isPlainObject(b)){a=[s.createElement(a[1])];c.fn.attr.call(a,b,true)}else a=[f.createElement(a[1])];else{a=sa([d[1]],[f]);a=(a.cacheable?a.fragment.cloneNode(true):a.fragment).childNodes}return c.merge(this,a)}else{if(b=s.getElementById(d[2])){if(b.id!==d[2])return T.find(a);this.length=1;this[0]=b}this.context=s;this.selector=a;return this}else if(!b&&/^\w+$/.test(a)){this.selector=a;this.context=s;a=s.getElementsByTagName(a);return c.merge(this, +a)}else return!b||b.jquery?(b||T).find(a):c(b).find(a);else if(c.isFunction(a))return T.ready(a);if(a.selector!==w){this.selector=a.selector;this.context=a.context}return c.makeArray(a,this)},selector:"",jquery:"1.4.2",length:0,size:function(){return this.length},toArray:function(){return R.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this.slice(a)[0]:this[a]},pushStack:function(a,b,d){var f=c();c.isArray(a)?ba.apply(f,a):c.merge(f,a);f.prevObject=this;f.context=this.context;if(b=== +"find")f.selector=this.selector+(this.selector?" ":"")+d;else if(b)f.selector=this.selector+"."+b+"("+d+")";return f},each:function(a,b){return c.each(this,a,b)},ready:function(a){c.bindReady();if(c.isReady)a.call(s,c);else Q&&Q.push(a);return this},eq:function(a){return a===-1?this.slice(a):this.slice(a,+a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(R.apply(this,arguments),"slice",R.call(arguments).join(","))},map:function(a){return this.pushStack(c.map(this, +function(b,d){return a.call(b,d,b)}))},end:function(){return this.prevObject||c(null)},push:ba,sort:[].sort,splice:[].splice};c.fn.init.prototype=c.fn;c.extend=c.fn.extend=function(){var a=arguments[0]||{},b=1,d=arguments.length,f=false,e,j,i,o;if(typeof a==="boolean"){f=a;a=arguments[1]||{};b=2}if(typeof a!=="object"&&!c.isFunction(a))a={};if(d===b){a=this;--b}for(;b
    a"; +var e=d.getElementsByTagName("*"),j=d.getElementsByTagName("a")[0];if(!(!e||!e.length||!j)){c.support={leadingWhitespace:d.firstChild.nodeType===3,tbody:!d.getElementsByTagName("tbody").length,htmlSerialize:!!d.getElementsByTagName("link").length,style:/red/.test(j.getAttribute("style")),hrefNormalized:j.getAttribute("href")==="/a",opacity:/^0.55$/.test(j.style.opacity),cssFloat:!!j.style.cssFloat,checkOn:d.getElementsByTagName("input")[0].value==="on",optSelected:s.createElement("select").appendChild(s.createElement("option")).selected, +parentNode:d.removeChild(d.appendChild(s.createElement("div"))).parentNode===null,deleteExpando:true,checkClone:false,scriptEval:false,noCloneEvent:true,boxModel:null};b.type="text/javascript";try{b.appendChild(s.createTextNode("window."+f+"=1;"))}catch(i){}a.insertBefore(b,a.firstChild);if(A[f]){c.support.scriptEval=true;delete A[f]}try{delete b.test}catch(o){c.support.deleteExpando=false}a.removeChild(b);if(d.attachEvent&&d.fireEvent){d.attachEvent("onclick",function k(){c.support.noCloneEvent= +false;d.detachEvent("onclick",k)});d.cloneNode(true).fireEvent("onclick")}d=s.createElement("div");d.innerHTML="";a=s.createDocumentFragment();a.appendChild(d.firstChild);c.support.checkClone=a.cloneNode(true).cloneNode(true).lastChild.checked;c(function(){var k=s.createElement("div");k.style.width=k.style.paddingLeft="1px";s.body.appendChild(k);c.boxModel=c.support.boxModel=k.offsetWidth===2;s.body.removeChild(k).style.display="none"});a=function(k){var n= +s.createElement("div");k="on"+k;var r=k in n;if(!r){n.setAttribute(k,"return;");r=typeof n[k]==="function"}return r};c.support.submitBubbles=a("submit");c.support.changeBubbles=a("change");a=b=d=e=j=null}})();c.props={"for":"htmlFor","class":"className",readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",colspan:"colSpan",tabindex:"tabIndex",usemap:"useMap",frameborder:"frameBorder"};var G="jQuery"+J(),Ya=0,za={};c.extend({cache:{},expando:G,noData:{embed:true,object:true, +applet:true},data:function(a,b,d){if(!(a.nodeName&&c.noData[a.nodeName.toLowerCase()])){a=a==A?za:a;var f=a[G],e=c.cache;if(!f&&typeof b==="string"&&d===w)return null;f||(f=++Ya);if(typeof b==="object"){a[G]=f;e[f]=c.extend(true,{},b)}else if(!e[f]){a[G]=f;e[f]={}}a=e[f];if(d!==w)a[b]=d;return typeof b==="string"?a[b]:a}},removeData:function(a,b){if(!(a.nodeName&&c.noData[a.nodeName.toLowerCase()])){a=a==A?za:a;var d=a[G],f=c.cache,e=f[d];if(b){if(e){delete e[b];c.isEmptyObject(e)&&c.removeData(a)}}else{if(c.support.deleteExpando)delete a[c.expando]; +else a.removeAttribute&&a.removeAttribute(c.expando);delete f[d]}}}});c.fn.extend({data:function(a,b){if(typeof a==="undefined"&&this.length)return c.data(this[0]);else if(typeof a==="object")return this.each(function(){c.data(this,a)});var d=a.split(".");d[1]=d[1]?"."+d[1]:"";if(b===w){var f=this.triggerHandler("getData"+d[1]+"!",[d[0]]);if(f===w&&this.length)f=c.data(this[0],a);return f===w&&d[1]?this.data(d[0]):f}else return this.trigger("setData"+d[1]+"!",[d[0],b]).each(function(){c.data(this, +a,b)})},removeData:function(a){return this.each(function(){c.removeData(this,a)})}});c.extend({queue:function(a,b,d){if(a){b=(b||"fx")+"queue";var f=c.data(a,b);if(!d)return f||[];if(!f||c.isArray(d))f=c.data(a,b,c.makeArray(d));else f.push(d);return f}},dequeue:function(a,b){b=b||"fx";var d=c.queue(a,b),f=d.shift();if(f==="inprogress")f=d.shift();if(f){b==="fx"&&d.unshift("inprogress");f.call(a,function(){c.dequeue(a,b)})}}});c.fn.extend({queue:function(a,b){if(typeof a!=="string"){b=a;a="fx"}if(b=== +w)return c.queue(this[0],a);return this.each(function(){var d=c.queue(this,a,b);a==="fx"&&d[0]!=="inprogress"&&c.dequeue(this,a)})},dequeue:function(a){return this.each(function(){c.dequeue(this,a)})},delay:function(a,b){a=c.fx?c.fx.speeds[a]||a:a;b=b||"fx";return this.queue(b,function(){var d=this;setTimeout(function(){c.dequeue(d,b)},a)})},clearQueue:function(a){return this.queue(a||"fx",[])}});var Aa=/[\n\t]/g,ca=/\s+/,Za=/\r/g,$a=/href|src|style/,ab=/(button|input)/i,bb=/(button|input|object|select|textarea)/i, +cb=/^(a|area)$/i,Ba=/radio|checkbox/;c.fn.extend({attr:function(a,b){return X(this,a,b,true,c.attr)},removeAttr:function(a){return this.each(function(){c.attr(this,a,"");this.nodeType===1&&this.removeAttribute(a)})},addClass:function(a){if(c.isFunction(a))return this.each(function(n){var r=c(this);r.addClass(a.call(this,n,r.attr("class")))});if(a&&typeof a==="string")for(var b=(a||"").split(ca),d=0,f=this.length;d-1)return true;return false},val:function(a){if(a===w){var b=this[0];if(b){if(c.nodeName(b,"option"))return(b.attributes.value||{}).specified?b.value:b.text;if(c.nodeName(b,"select")){var d=b.selectedIndex,f=[],e=b.options;b=b.type==="select-one";if(d<0)return null;var j=b?d:0;for(d=b?d+1:e.length;j=0;else if(c.nodeName(this,"select")){var u=c.makeArray(r);c("option",this).each(function(){this.selected= +c.inArray(c(this).val(),u)>=0});if(!u.length)this.selectedIndex=-1}else this.value=r}})}});c.extend({attrFn:{val:true,css:true,html:true,text:true,data:true,width:true,height:true,offset:true},attr:function(a,b,d,f){if(!a||a.nodeType===3||a.nodeType===8)return w;if(f&&b in c.attrFn)return c(a)[b](d);f=a.nodeType!==1||!c.isXMLDoc(a);var e=d!==w;b=f&&c.props[b]||b;if(a.nodeType===1){var j=$a.test(b);if(b in a&&f&&!j){if(e){b==="type"&&ab.test(a.nodeName)&&a.parentNode&&c.error("type property can't be changed"); +a[b]=d}if(c.nodeName(a,"form")&&a.getAttributeNode(b))return a.getAttributeNode(b).nodeValue;if(b==="tabIndex")return(b=a.getAttributeNode("tabIndex"))&&b.specified?b.value:bb.test(a.nodeName)||cb.test(a.nodeName)&&a.href?0:w;return a[b]}if(!c.support.style&&f&&b==="style"){if(e)a.style.cssText=""+d;return a.style.cssText}e&&a.setAttribute(b,""+d);a=!c.support.hrefNormalized&&f&&j?a.getAttribute(b,2):a.getAttribute(b);return a===null?w:a}return c.style(a,b,d)}});var O=/\.(.*)$/,db=function(a){return a.replace(/[^\w\s\.\|`]/g, +function(b){return"\\"+b})};c.event={add:function(a,b,d,f){if(!(a.nodeType===3||a.nodeType===8)){if(a.setInterval&&a!==A&&!a.frameElement)a=A;var e,j;if(d.handler){e=d;d=e.handler}if(!d.guid)d.guid=c.guid++;if(j=c.data(a)){var i=j.events=j.events||{},o=j.handle;if(!o)j.handle=o=function(){return typeof c!=="undefined"&&!c.event.triggered?c.event.handle.apply(o.elem,arguments):w};o.elem=a;b=b.split(" ");for(var k,n=0,r;k=b[n++];){j=e?c.extend({},e):{handler:d,data:f};if(k.indexOf(".")>-1){r=k.split("."); +k=r.shift();j.namespace=r.slice(0).sort().join(".")}else{r=[];j.namespace=""}j.type=k;j.guid=d.guid;var u=i[k],z=c.event.special[k]||{};if(!u){u=i[k]=[];if(!z.setup||z.setup.call(a,f,r,o)===false)if(a.addEventListener)a.addEventListener(k,o,false);else a.attachEvent&&a.attachEvent("on"+k,o)}if(z.add){z.add.call(a,j);if(!j.handler.guid)j.handler.guid=d.guid}u.push(j);c.event.global[k]=true}a=null}}},global:{},remove:function(a,b,d,f){if(!(a.nodeType===3||a.nodeType===8)){var e,j=0,i,o,k,n,r,u,z=c.data(a), +C=z&&z.events;if(z&&C){if(b&&b.type){d=b.handler;b=b.type}if(!b||typeof b==="string"&&b.charAt(0)==="."){b=b||"";for(e in C)c.event.remove(a,e+b)}else{for(b=b.split(" ");e=b[j++];){n=e;i=e.indexOf(".")<0;o=[];if(!i){o=e.split(".");e=o.shift();k=new RegExp("(^|\\.)"+c.map(o.slice(0).sort(),db).join("\\.(?:.*\\.)?")+"(\\.|$)")}if(r=C[e])if(d){n=c.event.special[e]||{};for(B=f||0;B=0){a.type= +e=e.slice(0,-1);a.exclusive=true}if(!d){a.stopPropagation();c.event.global[e]&&c.each(c.cache,function(){this.events&&this.events[e]&&c.event.trigger(a,b,this.handle.elem)})}if(!d||d.nodeType===3||d.nodeType===8)return w;a.result=w;a.target=d;b=c.makeArray(b);b.unshift(a)}a.currentTarget=d;(f=c.data(d,"handle"))&&f.apply(d,b);f=d.parentNode||d.ownerDocument;try{if(!(d&&d.nodeName&&c.noData[d.nodeName.toLowerCase()]))if(d["on"+e]&&d["on"+e].apply(d,b)===false)a.result=false}catch(j){}if(!a.isPropagationStopped()&& +f)c.event.trigger(a,b,f,true);else if(!a.isDefaultPrevented()){f=a.target;var i,o=c.nodeName(f,"a")&&e==="click",k=c.event.special[e]||{};if((!k._default||k._default.call(d,a)===false)&&!o&&!(f&&f.nodeName&&c.noData[f.nodeName.toLowerCase()])){try{if(f[e]){if(i=f["on"+e])f["on"+e]=null;c.event.triggered=true;f[e]()}}catch(n){}if(i)f["on"+e]=i;c.event.triggered=false}}},handle:function(a){var b,d,f,e;a=arguments[0]=c.event.fix(a||A.event);a.currentTarget=this;b=a.type.indexOf(".")<0&&!a.exclusive; +if(!b){d=a.type.split(".");a.type=d.shift();f=new RegExp("(^|\\.)"+d.slice(0).sort().join("\\.(?:.*\\.)?")+"(\\.|$)")}e=c.data(this,"events");d=e[a.type];if(e&&d){d=d.slice(0);e=0;for(var j=d.length;e-1?c.map(a.options,function(f){return f.selected}).join("-"):"";else if(a.nodeName.toLowerCase()==="select")d=a.selectedIndex;return d},fa=function(a,b){var d=a.target,f,e;if(!(!da.test(d.nodeName)||d.readOnly)){f=c.data(d,"_change_data");e=Fa(d);if(a.type!=="focusout"||d.type!=="radio")c.data(d,"_change_data", +e);if(!(f===w||e===f))if(f!=null||e){a.type="change";return c.event.trigger(a,b,d)}}};c.event.special.change={filters:{focusout:fa,click:function(a){var b=a.target,d=b.type;if(d==="radio"||d==="checkbox"||b.nodeName.toLowerCase()==="select")return fa.call(this,a)},keydown:function(a){var b=a.target,d=b.type;if(a.keyCode===13&&b.nodeName.toLowerCase()!=="textarea"||a.keyCode===32&&(d==="checkbox"||d==="radio")||d==="select-multiple")return fa.call(this,a)},beforeactivate:function(a){a=a.target;c.data(a, +"_change_data",Fa(a))}},setup:function(){if(this.type==="file")return false;for(var a in ea)c.event.add(this,a+".specialChange",ea[a]);return da.test(this.nodeName)},teardown:function(){c.event.remove(this,".specialChange");return da.test(this.nodeName)}};ea=c.event.special.change.filters}s.addEventListener&&c.each({focus:"focusin",blur:"focusout"},function(a,b){function d(f){f=c.event.fix(f);f.type=b;return c.event.handle.call(this,f)}c.event.special[b]={setup:function(){this.addEventListener(a, +d,true)},teardown:function(){this.removeEventListener(a,d,true)}}});c.each(["bind","one"],function(a,b){c.fn[b]=function(d,f,e){if(typeof d==="object"){for(var j in d)this[b](j,f,d[j],e);return this}if(c.isFunction(f)){e=f;f=w}var i=b==="one"?c.proxy(e,function(k){c(this).unbind(k,i);return e.apply(this,arguments)}):e;if(d==="unload"&&b!=="one")this.one(d,f,e);else{j=0;for(var o=this.length;j0){y=t;break}}t=t[g]}m[q]=y}}}var f=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g, +e=0,j=Object.prototype.toString,i=false,o=true;[0,0].sort(function(){o=false;return 0});var k=function(g,h,l,m){l=l||[];var q=h=h||s;if(h.nodeType!==1&&h.nodeType!==9)return[];if(!g||typeof g!=="string")return l;for(var p=[],v,t,y,S,H=true,M=x(h),I=g;(f.exec(""),v=f.exec(I))!==null;){I=v[3];p.push(v[1]);if(v[2]){S=v[3];break}}if(p.length>1&&r.exec(g))if(p.length===2&&n.relative[p[0]])t=ga(p[0]+p[1],h);else for(t=n.relative[p[0]]?[h]:k(p.shift(),h);p.length;){g=p.shift();if(n.relative[g])g+=p.shift(); +t=ga(g,t)}else{if(!m&&p.length>1&&h.nodeType===9&&!M&&n.match.ID.test(p[0])&&!n.match.ID.test(p[p.length-1])){v=k.find(p.shift(),h,M);h=v.expr?k.filter(v.expr,v.set)[0]:v.set[0]}if(h){v=m?{expr:p.pop(),set:z(m)}:k.find(p.pop(),p.length===1&&(p[0]==="~"||p[0]==="+")&&h.parentNode?h.parentNode:h,M);t=v.expr?k.filter(v.expr,v.set):v.set;if(p.length>0)y=z(t);else H=false;for(;p.length;){var D=p.pop();v=D;if(n.relative[D])v=p.pop();else D="";if(v==null)v=h;n.relative[D](y,v,M)}}else y=[]}y||(y=t);y||k.error(D|| +g);if(j.call(y)==="[object Array]")if(H)if(h&&h.nodeType===1)for(g=0;y[g]!=null;g++){if(y[g]&&(y[g]===true||y[g].nodeType===1&&E(h,y[g])))l.push(t[g])}else for(g=0;y[g]!=null;g++)y[g]&&y[g].nodeType===1&&l.push(t[g]);else l.push.apply(l,y);else z(y,l);if(S){k(S,q,l,m);k.uniqueSort(l)}return l};k.uniqueSort=function(g){if(B){i=o;g.sort(B);if(i)for(var h=1;h":function(g,h){var l=typeof h==="string";if(l&&!/\W/.test(h)){h=h.toLowerCase();for(var m=0,q=g.length;m=0))l||m.push(v);else if(l)h[p]=false;return false},ID:function(g){return g[1].replace(/\\/g,"")},TAG:function(g){return g[1].toLowerCase()}, +CHILD:function(g){if(g[1]==="nth"){var h=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(g[2]==="even"&&"2n"||g[2]==="odd"&&"2n+1"||!/\D/.test(g[2])&&"0n+"+g[2]||g[2]);g[2]=h[1]+(h[2]||1)-0;g[3]=h[3]-0}g[0]=e++;return g},ATTR:function(g,h,l,m,q,p){h=g[1].replace(/\\/g,"");if(!p&&n.attrMap[h])g[1]=n.attrMap[h];if(g[2]==="~=")g[4]=" "+g[4]+" ";return g},PSEUDO:function(g,h,l,m,q){if(g[1]==="not")if((f.exec(g[3])||"").length>1||/^\w/.test(g[3]))g[3]=k(g[3],null,null,h);else{g=k.filter(g[3],h,l,true^q);l||m.push.apply(m, +g);return false}else if(n.match.POS.test(g[0])||n.match.CHILD.test(g[0]))return true;return g},POS:function(g){g.unshift(true);return g}},filters:{enabled:function(g){return g.disabled===false&&g.type!=="hidden"},disabled:function(g){return g.disabled===true},checked:function(g){return g.checked===true},selected:function(g){return g.selected===true},parent:function(g){return!!g.firstChild},empty:function(g){return!g.firstChild},has:function(g,h,l){return!!k(l[3],g).length},header:function(g){return/h\d/i.test(g.nodeName)}, +text:function(g){return"text"===g.type},radio:function(g){return"radio"===g.type},checkbox:function(g){return"checkbox"===g.type},file:function(g){return"file"===g.type},password:function(g){return"password"===g.type},submit:function(g){return"submit"===g.type},image:function(g){return"image"===g.type},reset:function(g){return"reset"===g.type},button:function(g){return"button"===g.type||g.nodeName.toLowerCase()==="button"},input:function(g){return/input|select|textarea|button/i.test(g.nodeName)}}, +setFilters:{first:function(g,h){return h===0},last:function(g,h,l,m){return h===m.length-1},even:function(g,h){return h%2===0},odd:function(g,h){return h%2===1},lt:function(g,h,l){return hl[3]-0},nth:function(g,h,l){return l[3]-0===h},eq:function(g,h,l){return l[3]-0===h}},filter:{PSEUDO:function(g,h,l,m){var q=h[1],p=n.filters[q];if(p)return p(g,l,h,m);else if(q==="contains")return(g.textContent||g.innerText||a([g])||"").indexOf(h[3])>=0;else if(q==="not"){h= +h[3];l=0;for(m=h.length;l=0}},ID:function(g,h){return g.nodeType===1&&g.getAttribute("id")===h},TAG:function(g,h){return h==="*"&&g.nodeType===1||g.nodeName.toLowerCase()===h},CLASS:function(g,h){return(" "+(g.className||g.getAttribute("class"))+" ").indexOf(h)>-1},ATTR:function(g,h){var l=h[1];g=n.attrHandle[l]?n.attrHandle[l](g):g[l]!=null?g[l]:g.getAttribute(l);l=g+"";var m=h[2];h=h[4];return g==null?m==="!=":m=== +"="?l===h:m==="*="?l.indexOf(h)>=0:m==="~="?(" "+l+" ").indexOf(h)>=0:!h?l&&g!==false:m==="!="?l!==h:m==="^="?l.indexOf(h)===0:m==="$="?l.substr(l.length-h.length)===h:m==="|="?l===h||l.substr(0,h.length+1)===h+"-":false},POS:function(g,h,l,m){var q=n.setFilters[h[2]];if(q)return q(g,l,h,m)}}},r=n.match.POS;for(var u in n.match){n.match[u]=new RegExp(n.match[u].source+/(?![^\[]*\])(?![^\(]*\))/.source);n.leftMatch[u]=new RegExp(/(^(?:.|\r|\n)*?)/.source+n.match[u].source.replace(/\\(\d+)/g,function(g, +h){return"\\"+(h-0+1)}))}var z=function(g,h){g=Array.prototype.slice.call(g,0);if(h){h.push.apply(h,g);return h}return g};try{Array.prototype.slice.call(s.documentElement.childNodes,0)}catch(C){z=function(g,h){h=h||[];if(j.call(g)==="[object Array]")Array.prototype.push.apply(h,g);else if(typeof g.length==="number")for(var l=0,m=g.length;l";var l=s.documentElement;l.insertBefore(g,l.firstChild);if(s.getElementById(h)){n.find.ID=function(m,q,p){if(typeof q.getElementById!=="undefined"&&!p)return(q=q.getElementById(m[1]))?q.id===m[1]||typeof q.getAttributeNode!=="undefined"&& +q.getAttributeNode("id").nodeValue===m[1]?[q]:w:[]};n.filter.ID=function(m,q){var p=typeof m.getAttributeNode!=="undefined"&&m.getAttributeNode("id");return m.nodeType===1&&p&&p.nodeValue===q}}l.removeChild(g);l=g=null})();(function(){var g=s.createElement("div");g.appendChild(s.createComment(""));if(g.getElementsByTagName("*").length>0)n.find.TAG=function(h,l){l=l.getElementsByTagName(h[1]);if(h[1]==="*"){h=[];for(var m=0;l[m];m++)l[m].nodeType===1&&h.push(l[m]);l=h}return l};g.innerHTML=""; +if(g.firstChild&&typeof g.firstChild.getAttribute!=="undefined"&&g.firstChild.getAttribute("href")!=="#")n.attrHandle.href=function(h){return h.getAttribute("href",2)};g=null})();s.querySelectorAll&&function(){var g=k,h=s.createElement("div");h.innerHTML="

    ";if(!(h.querySelectorAll&&h.querySelectorAll(".TEST").length===0)){k=function(m,q,p,v){q=q||s;if(!v&&q.nodeType===9&&!x(q))try{return z(q.querySelectorAll(m),p)}catch(t){}return g(m,q,p,v)};for(var l in g)k[l]=g[l];h=null}}(); +(function(){var g=s.createElement("div");g.innerHTML="
    ";if(!(!g.getElementsByClassName||g.getElementsByClassName("e").length===0)){g.lastChild.className="e";if(g.getElementsByClassName("e").length!==1){n.order.splice(1,0,"CLASS");n.find.CLASS=function(h,l,m){if(typeof l.getElementsByClassName!=="undefined"&&!m)return l.getElementsByClassName(h[1])};g=null}}})();var E=s.compareDocumentPosition?function(g,h){return!!(g.compareDocumentPosition(h)&16)}: +function(g,h){return g!==h&&(g.contains?g.contains(h):true)},x=function(g){return(g=(g?g.ownerDocument||g:0).documentElement)?g.nodeName!=="HTML":false},ga=function(g,h){var l=[],m="",q;for(h=h.nodeType?[h]:h;q=n.match.PSEUDO.exec(g);){m+=q[0];g=g.replace(n.match.PSEUDO,"")}g=n.relative[g]?g+"*":g;q=0;for(var p=h.length;q=0===d})};c.fn.extend({find:function(a){for(var b=this.pushStack("","find",a),d=0,f=0,e=this.length;f0)for(var j=d;j0},closest:function(a,b){if(c.isArray(a)){var d=[],f=this[0],e,j= +{},i;if(f&&a.length){e=0;for(var o=a.length;e-1:c(f).is(e)){d.push({selector:i,elem:f});delete j[i]}}f=f.parentNode}}return d}var k=c.expr.match.POS.test(a)?c(a,b||this.context):null;return this.map(function(n,r){for(;r&&r.ownerDocument&&r!==b;){if(k?k.index(r)>-1:c(r).is(a))return r;r=r.parentNode}return null})},index:function(a){if(!a||typeof a=== +"string")return c.inArray(this[0],a?c(a):this.parent().children());return c.inArray(a.jquery?a[0]:a,this)},add:function(a,b){a=typeof a==="string"?c(a,b||this.context):c.makeArray(a);b=c.merge(this.get(),a);return this.pushStack(qa(a[0])||qa(b[0])?b:c.unique(b))},andSelf:function(){return this.add(this.prevObject)}});c.each({parent:function(a){return(a=a.parentNode)&&a.nodeType!==11?a:null},parents:function(a){return c.dir(a,"parentNode")},parentsUntil:function(a,b,d){return c.dir(a,"parentNode", +d)},next:function(a){return c.nth(a,2,"nextSibling")},prev:function(a){return c.nth(a,2,"previousSibling")},nextAll:function(a){return c.dir(a,"nextSibling")},prevAll:function(a){return c.dir(a,"previousSibling")},nextUntil:function(a,b,d){return c.dir(a,"nextSibling",d)},prevUntil:function(a,b,d){return c.dir(a,"previousSibling",d)},siblings:function(a){return c.sibling(a.parentNode.firstChild,a)},children:function(a){return c.sibling(a.firstChild)},contents:function(a){return c.nodeName(a,"iframe")? +a.contentDocument||a.contentWindow.document:c.makeArray(a.childNodes)}},function(a,b){c.fn[a]=function(d,f){var e=c.map(this,b,d);eb.test(a)||(f=d);if(f&&typeof f==="string")e=c.filter(f,e);e=this.length>1?c.unique(e):e;if((this.length>1||gb.test(f))&&fb.test(a))e=e.reverse();return this.pushStack(e,a,R.call(arguments).join(","))}});c.extend({filter:function(a,b,d){if(d)a=":not("+a+")";return c.find.matches(a,b)},dir:function(a,b,d){var f=[];for(a=a[b];a&&a.nodeType!==9&&(d===w||a.nodeType!==1||!c(a).is(d));){a.nodeType=== +1&&f.push(a);a=a[b]}return f},nth:function(a,b,d){b=b||1;for(var f=0;a;a=a[d])if(a.nodeType===1&&++f===b)break;return a},sibling:function(a,b){for(var d=[];a;a=a.nextSibling)a.nodeType===1&&a!==b&&d.push(a);return d}});var Ja=/ jQuery\d+="(?:\d+|null)"/g,V=/^\s+/,Ka=/(<([\w:]+)[^>]*?)\/>/g,hb=/^(?:area|br|col|embed|hr|img|input|link|meta|param)$/i,La=/<([\w:]+)/,ib=/"},F={option:[1,""],legend:[1,"
    ","
    "],thead:[1,"","
    "],tr:[2,"","
    "],td:[3,"","
    "],col:[2,"","
    "],area:[1,"",""],_default:[0,"",""]};F.optgroup=F.option;F.tbody=F.tfoot=F.colgroup=F.caption=F.thead;F.th=F.td;if(!c.support.htmlSerialize)F._default=[1,"div
    ","
    "];c.fn.extend({text:function(a){if(c.isFunction(a))return this.each(function(b){var d= +c(this);d.text(a.call(this,b,d.text()))});if(typeof a!=="object"&&a!==w)return this.empty().append((this[0]&&this[0].ownerDocument||s).createTextNode(a));return c.text(this)},wrapAll:function(a){if(c.isFunction(a))return this.each(function(d){c(this).wrapAll(a.call(this,d))});if(this[0]){var b=c(a,this[0].ownerDocument).eq(0).clone(true);this[0].parentNode&&b.insertBefore(this[0]);b.map(function(){for(var d=this;d.firstChild&&d.firstChild.nodeType===1;)d=d.firstChild;return d}).append(this)}return this}, +wrapInner:function(a){if(c.isFunction(a))return this.each(function(b){c(this).wrapInner(a.call(this,b))});return this.each(function(){var b=c(this),d=b.contents();d.length?d.wrapAll(a):b.append(a)})},wrap:function(a){return this.each(function(){c(this).wrapAll(a)})},unwrap:function(){return this.parent().each(function(){c.nodeName(this,"body")||c(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,true,function(a){this.nodeType===1&&this.appendChild(a)})}, +prepend:function(){return this.domManip(arguments,true,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,false,function(b){this.parentNode.insertBefore(b,this)});else if(arguments.length){var a=c(arguments[0]);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,false,function(b){this.parentNode.insertBefore(b, +this.nextSibling)});else if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,c(arguments[0]).toArray());return a}},remove:function(a,b){for(var d=0,f;(f=this[d])!=null;d++)if(!a||c.filter(a,[f]).length){if(!b&&f.nodeType===1){c.cleanData(f.getElementsByTagName("*"));c.cleanData([f])}f.parentNode&&f.parentNode.removeChild(f)}return this},empty:function(){for(var a=0,b;(b=this[a])!=null;a++)for(b.nodeType===1&&c.cleanData(b.getElementsByTagName("*"));b.firstChild;)b.removeChild(b.firstChild); +return this},clone:function(a){var b=this.map(function(){if(!c.support.noCloneEvent&&!c.isXMLDoc(this)){var d=this.outerHTML,f=this.ownerDocument;if(!d){d=f.createElement("div");d.appendChild(this.cloneNode(true));d=d.innerHTML}return c.clean([d.replace(Ja,"").replace(/=([^="'>\s]+\/)>/g,'="$1">').replace(V,"")],f)[0]}else return this.cloneNode(true)});if(a===true){ra(this,b);ra(this.find("*"),b.find("*"))}return b},html:function(a){if(a===w)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(Ja, +""):null;else if(typeof a==="string"&&!ta.test(a)&&(c.support.leadingWhitespace||!V.test(a))&&!F[(La.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Ka,Ma);try{for(var b=0,d=this.length;b0||e.cacheable||this.length>1?k.cloneNode(true):k)}o.length&&c.each(o,Qa)}return this}});c.fragments={};c.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){c.fn[a]=function(d){var f=[];d=c(d);var e=this.length===1&&this[0].parentNode;if(e&&e.nodeType===11&&e.childNodes.length===1&&d.length===1){d[b](this[0]); +return this}else{e=0;for(var j=d.length;e0?this.clone(true):this).get();c.fn[b].apply(c(d[e]),i);f=f.concat(i)}return this.pushStack(f,a,d.selector)}}});c.extend({clean:function(a,b,d,f){b=b||s;if(typeof b.createElement==="undefined")b=b.ownerDocument||b[0]&&b[0].ownerDocument||s;for(var e=[],j=0,i;(i=a[j])!=null;j++){if(typeof i==="number")i+="";if(i){if(typeof i==="string"&&!jb.test(i))i=b.createTextNode(i);else if(typeof i==="string"){i=i.replace(Ka,Ma);var o=(La.exec(i)||["", +""])[1].toLowerCase(),k=F[o]||F._default,n=k[0],r=b.createElement("div");for(r.innerHTML=k[1]+i+k[2];n--;)r=r.lastChild;if(!c.support.tbody){n=ib.test(i);o=o==="table"&&!n?r.firstChild&&r.firstChild.childNodes:k[1]===""&&!n?r.childNodes:[];for(k=o.length-1;k>=0;--k)c.nodeName(o[k],"tbody")&&!o[k].childNodes.length&&o[k].parentNode.removeChild(o[k])}!c.support.leadingWhitespace&&V.test(i)&&r.insertBefore(b.createTextNode(V.exec(i)[0]),r.firstChild);i=r.childNodes}if(i.nodeType)e.push(i);else e= +c.merge(e,i)}}if(d)for(j=0;e[j];j++)if(f&&c.nodeName(e[j],"script")&&(!e[j].type||e[j].type.toLowerCase()==="text/javascript"))f.push(e[j].parentNode?e[j].parentNode.removeChild(e[j]):e[j]);else{e[j].nodeType===1&&e.splice.apply(e,[j+1,0].concat(c.makeArray(e[j].getElementsByTagName("script"))));d.appendChild(e[j])}return e},cleanData:function(a){for(var b,d,f=c.cache,e=c.event.special,j=c.support.deleteExpando,i=0,o;(o=a[i])!=null;i++)if(d=o[c.expando]){b=f[d];if(b.events)for(var k in b.events)e[k]? +c.event.remove(o,k):Ca(o,k,b.handle);if(j)delete o[c.expando];else o.removeAttribute&&o.removeAttribute(c.expando);delete f[d]}}});var kb=/z-?index|font-?weight|opacity|zoom|line-?height/i,Na=/alpha\([^)]*\)/,Oa=/opacity=([^)]*)/,ha=/float/i,ia=/-([a-z])/ig,lb=/([A-Z])/g,mb=/^-?\d+(?:px)?$/i,nb=/^-?\d/,ob={position:"absolute",visibility:"hidden",display:"block"},pb=["Left","Right"],qb=["Top","Bottom"],rb=s.defaultView&&s.defaultView.getComputedStyle,Pa=c.support.cssFloat?"cssFloat":"styleFloat",ja= +function(a,b){return b.toUpperCase()};c.fn.css=function(a,b){return X(this,a,b,true,function(d,f,e){if(e===w)return c.curCSS(d,f);if(typeof e==="number"&&!kb.test(f))e+="px";c.style(d,f,e)})};c.extend({style:function(a,b,d){if(!a||a.nodeType===3||a.nodeType===8)return w;if((b==="width"||b==="height")&&parseFloat(d)<0)d=w;var f=a.style||a,e=d!==w;if(!c.support.opacity&&b==="opacity"){if(e){f.zoom=1;b=parseInt(d,10)+""==="NaN"?"":"alpha(opacity="+d*100+")";a=f.filter||c.curCSS(a,"filter")||"";f.filter= +Na.test(a)?a.replace(Na,b):b}return f.filter&&f.filter.indexOf("opacity=")>=0?parseFloat(Oa.exec(f.filter)[1])/100+"":""}if(ha.test(b))b=Pa;b=b.replace(ia,ja);if(e)f[b]=d;return f[b]},css:function(a,b,d,f){if(b==="width"||b==="height"){var e,j=b==="width"?pb:qb;function i(){e=b==="width"?a.offsetWidth:a.offsetHeight;f!=="border"&&c.each(j,function(){f||(e-=parseFloat(c.curCSS(a,"padding"+this,true))||0);if(f==="margin")e+=parseFloat(c.curCSS(a,"margin"+this,true))||0;else e-=parseFloat(c.curCSS(a, +"border"+this+"Width",true))||0})}a.offsetWidth!==0?i():c.swap(a,ob,i);return Math.max(0,Math.round(e))}return c.curCSS(a,b,d)},curCSS:function(a,b,d){var f,e=a.style;if(!c.support.opacity&&b==="opacity"&&a.currentStyle){f=Oa.test(a.currentStyle.filter||"")?parseFloat(RegExp.$1)/100+"":"";return f===""?"1":f}if(ha.test(b))b=Pa;if(!d&&e&&e[b])f=e[b];else if(rb){if(ha.test(b))b="float";b=b.replace(lb,"-$1").toLowerCase();e=a.ownerDocument.defaultView;if(!e)return null;if(a=e.getComputedStyle(a,null))f= +a.getPropertyValue(b);if(b==="opacity"&&f==="")f="1"}else if(a.currentStyle){d=b.replace(ia,ja);f=a.currentStyle[b]||a.currentStyle[d];if(!mb.test(f)&&nb.test(f)){b=e.left;var j=a.runtimeStyle.left;a.runtimeStyle.left=a.currentStyle.left;e.left=d==="fontSize"?"1em":f||0;f=e.pixelLeft+"px";e.left=b;a.runtimeStyle.left=j}}return f},swap:function(a,b,d){var f={};for(var e in b){f[e]=a.style[e];a.style[e]=b[e]}d.call(a);for(e in b)a.style[e]=f[e]}});if(c.expr&&c.expr.filters){c.expr.filters.hidden=function(a){var b= +a.offsetWidth,d=a.offsetHeight,f=a.nodeName.toLowerCase()==="tr";return b===0&&d===0&&!f?true:b>0&&d>0&&!f?false:c.curCSS(a,"display")==="none"};c.expr.filters.visible=function(a){return!c.expr.filters.hidden(a)}}var sb=J(),tb=//gi,ub=/select|textarea/i,vb=/color|date|datetime|email|hidden|month|number|password|range|search|tel|text|time|url|week/i,N=/=\?(&|$)/,ka=/\?/,wb=/(\?|&)_=.*?(&|$)/,xb=/^(\w+:)?\/\/([^\/?#]+)/,yb=/%20/g,zb=c.fn.load;c.fn.extend({load:function(a,b,d){if(typeof a!== +"string")return zb.call(this,a);else if(!this.length)return this;var f=a.indexOf(" ");if(f>=0){var e=a.slice(f,a.length);a=a.slice(0,f)}f="GET";if(b)if(c.isFunction(b)){d=b;b=null}else if(typeof b==="object"){b=c.param(b,c.ajaxSettings.traditional);f="POST"}var j=this;c.ajax({url:a,type:f,dataType:"html",data:b,complete:function(i,o){if(o==="success"||o==="notmodified")j.html(e?c("
    ").append(i.responseText.replace(tb,"")).find(e):i.responseText);d&&j.each(d,[i.responseText,o,i])}});return this}, +serialize:function(){return c.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?c.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||ub.test(this.nodeName)||vb.test(this.type))}).map(function(a,b){a=c(this).val();return a==null?null:c.isArray(a)?c.map(a,function(d){return{name:b.name,value:d}}):{name:b.name,value:a}}).get()}});c.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "), +function(a,b){c.fn[b]=function(d){return this.bind(b,d)}});c.extend({get:function(a,b,d,f){if(c.isFunction(b)){f=f||d;d=b;b=null}return c.ajax({type:"GET",url:a,data:b,success:d,dataType:f})},getScript:function(a,b){return c.get(a,null,b,"script")},getJSON:function(a,b,d){return c.get(a,b,d,"json")},post:function(a,b,d,f){if(c.isFunction(b)){f=f||d;d=b;b={}}return c.ajax({type:"POST",url:a,data:b,success:d,dataType:f})},ajaxSetup:function(a){c.extend(c.ajaxSettings,a)},ajaxSettings:{url:location.href, +global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:A.XMLHttpRequest&&(A.location.protocol!=="file:"||!A.ActiveXObject)?function(){return new A.XMLHttpRequest}:function(){try{return new A.ActiveXObject("Microsoft.XMLHTTP")}catch(a){}},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},etag:{},ajax:function(a){function b(){e.success&& +e.success.call(k,o,i,x);e.global&&f("ajaxSuccess",[x,e])}function d(){e.complete&&e.complete.call(k,x,i);e.global&&f("ajaxComplete",[x,e]);e.global&&!--c.active&&c.event.trigger("ajaxStop")}function f(q,p){(e.context?c(e.context):c.event).trigger(q,p)}var e=c.extend(true,{},c.ajaxSettings,a),j,i,o,k=a&&a.context||e,n=e.type.toUpperCase();if(e.data&&e.processData&&typeof e.data!=="string")e.data=c.param(e.data,e.traditional);if(e.dataType==="jsonp"){if(n==="GET")N.test(e.url)||(e.url+=(ka.test(e.url)? +"&":"?")+(e.jsonp||"callback")+"=?");else if(!e.data||!N.test(e.data))e.data=(e.data?e.data+"&":"")+(e.jsonp||"callback")+"=?";e.dataType="json"}if(e.dataType==="json"&&(e.data&&N.test(e.data)||N.test(e.url))){j=e.jsonpCallback||"jsonp"+sb++;if(e.data)e.data=(e.data+"").replace(N,"="+j+"$1");e.url=e.url.replace(N,"="+j+"$1");e.dataType="script";A[j]=A[j]||function(q){o=q;b();d();A[j]=w;try{delete A[j]}catch(p){}z&&z.removeChild(C)}}if(e.dataType==="script"&&e.cache===null)e.cache=false;if(e.cache=== +false&&n==="GET"){var r=J(),u=e.url.replace(wb,"$1_="+r+"$2");e.url=u+(u===e.url?(ka.test(e.url)?"&":"?")+"_="+r:"")}if(e.data&&n==="GET")e.url+=(ka.test(e.url)?"&":"?")+e.data;e.global&&!c.active++&&c.event.trigger("ajaxStart");r=(r=xb.exec(e.url))&&(r[1]&&r[1]!==location.protocol||r[2]!==location.host);if(e.dataType==="script"&&n==="GET"&&r){var z=s.getElementsByTagName("head")[0]||s.documentElement,C=s.createElement("script");C.src=e.url;if(e.scriptCharset)C.charset=e.scriptCharset;if(!j){var B= +false;C.onload=C.onreadystatechange=function(){if(!B&&(!this.readyState||this.readyState==="loaded"||this.readyState==="complete")){B=true;b();d();C.onload=C.onreadystatechange=null;z&&C.parentNode&&z.removeChild(C)}}}z.insertBefore(C,z.firstChild);return w}var E=false,x=e.xhr();if(x){e.username?x.open(n,e.url,e.async,e.username,e.password):x.open(n,e.url,e.async);try{if(e.data||a&&a.contentType)x.setRequestHeader("Content-Type",e.contentType);if(e.ifModified){c.lastModified[e.url]&&x.setRequestHeader("If-Modified-Since", +c.lastModified[e.url]);c.etag[e.url]&&x.setRequestHeader("If-None-Match",c.etag[e.url])}r||x.setRequestHeader("X-Requested-With","XMLHttpRequest");x.setRequestHeader("Accept",e.dataType&&e.accepts[e.dataType]?e.accepts[e.dataType]+", */*":e.accepts._default)}catch(ga){}if(e.beforeSend&&e.beforeSend.call(k,x,e)===false){e.global&&!--c.active&&c.event.trigger("ajaxStop");x.abort();return false}e.global&&f("ajaxSend",[x,e]);var g=x.onreadystatechange=function(q){if(!x||x.readyState===0||q==="abort"){E|| +d();E=true;if(x)x.onreadystatechange=c.noop}else if(!E&&x&&(x.readyState===4||q==="timeout")){E=true;x.onreadystatechange=c.noop;i=q==="timeout"?"timeout":!c.httpSuccess(x)?"error":e.ifModified&&c.httpNotModified(x,e.url)?"notmodified":"success";var p;if(i==="success")try{o=c.httpData(x,e.dataType,e)}catch(v){i="parsererror";p=v}if(i==="success"||i==="notmodified")j||b();else c.handleError(e,x,i,p);d();q==="timeout"&&x.abort();if(e.async)x=null}};try{var h=x.abort;x.abort=function(){x&&h.call(x); +g("abort")}}catch(l){}e.async&&e.timeout>0&&setTimeout(function(){x&&!E&&g("timeout")},e.timeout);try{x.send(n==="POST"||n==="PUT"||n==="DELETE"?e.data:null)}catch(m){c.handleError(e,x,null,m);d()}e.async||g();return x}},handleError:function(a,b,d,f){if(a.error)a.error.call(a.context||a,b,d,f);if(a.global)(a.context?c(a.context):c.event).trigger("ajaxError",[b,a,f])},active:0,httpSuccess:function(a){try{return!a.status&&location.protocol==="file:"||a.status>=200&&a.status<300||a.status===304||a.status=== +1223||a.status===0}catch(b){}return false},httpNotModified:function(a,b){var d=a.getResponseHeader("Last-Modified"),f=a.getResponseHeader("Etag");if(d)c.lastModified[b]=d;if(f)c.etag[b]=f;return a.status===304||a.status===0},httpData:function(a,b,d){var f=a.getResponseHeader("content-type")||"",e=b==="xml"||!b&&f.indexOf("xml")>=0;a=e?a.responseXML:a.responseText;e&&a.documentElement.nodeName==="parsererror"&&c.error("parsererror");if(d&&d.dataFilter)a=d.dataFilter(a,b);if(typeof a==="string")if(b=== +"json"||!b&&f.indexOf("json")>=0)a=c.parseJSON(a);else if(b==="script"||!b&&f.indexOf("javascript")>=0)c.globalEval(a);return a},param:function(a,b){function d(i,o){if(c.isArray(o))c.each(o,function(k,n){b||/\[\]$/.test(i)?f(i,n):d(i+"["+(typeof n==="object"||c.isArray(n)?k:"")+"]",n)});else!b&&o!=null&&typeof o==="object"?c.each(o,function(k,n){d(i+"["+k+"]",n)}):f(i,o)}function f(i,o){o=c.isFunction(o)?o():o;e[e.length]=encodeURIComponent(i)+"="+encodeURIComponent(o)}var e=[];if(b===w)b=c.ajaxSettings.traditional; +if(c.isArray(a)||a.jquery)c.each(a,function(){f(this.name,this.value)});else for(var j in a)d(j,a[j]);return e.join("&").replace(yb,"+")}});var la={},Ab=/toggle|show|hide/,Bb=/^([+-]=)?([\d+-.]+)(.*)$/,W,va=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];c.fn.extend({show:function(a,b){if(a||a===0)return this.animate(K("show",3),a,b);else{a=0;for(b=this.length;a").appendTo("body");f=e.css("display");if(f==="none")f="block";e.remove();la[d]=f}c.data(this[a],"olddisplay",f)}}a=0;for(b=this.length;a=0;f--)if(d[f].elem===this){b&&d[f](true);d.splice(f,1)}});b||this.dequeue();return this}});c.each({slideDown:K("show",1),slideUp:K("hide",1),slideToggle:K("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(a,b){c.fn[a]=function(d,f){return this.animate(b,d,f)}});c.extend({speed:function(a,b,d){var f=a&&typeof a==="object"?a:{complete:d||!d&&b||c.isFunction(a)&&a,duration:a,easing:d&&b||b&&!c.isFunction(b)&&b};f.duration=c.fx.off?0:typeof f.duration=== +"number"?f.duration:c.fx.speeds[f.duration]||c.fx.speeds._default;f.old=f.complete;f.complete=function(){f.queue!==false&&c(this).dequeue();c.isFunction(f.old)&&f.old.call(this)};return f},easing:{linear:function(a,b,d,f){return d+f*a},swing:function(a,b,d,f){return(-Math.cos(a*Math.PI)/2+0.5)*f+d}},timers:[],fx:function(a,b,d){this.options=b;this.elem=a;this.prop=d;if(!b.orig)b.orig={}}});c.fx.prototype={update:function(){this.options.step&&this.options.step.call(this.elem,this.now,this);(c.fx.step[this.prop]|| +c.fx.step._default)(this);if((this.prop==="height"||this.prop==="width")&&this.elem.style)this.elem.style.display="block"},cur:function(a){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null))return this.elem[this.prop];return(a=parseFloat(c.css(this.elem,this.prop,a)))&&a>-10000?a:parseFloat(c.curCSS(this.elem,this.prop))||0},custom:function(a,b,d){function f(j){return e.step(j)}this.startTime=J();this.start=a;this.end=b;this.unit=d||this.unit||"px";this.now=this.start; +this.pos=this.state=0;var e=this;f.elem=this.elem;if(f()&&c.timers.push(f)&&!W)W=setInterval(c.fx.tick,13)},show:function(){this.options.orig[this.prop]=c.style(this.elem,this.prop);this.options.show=true;this.custom(this.prop==="width"||this.prop==="height"?1:0,this.cur());c(this.elem).show()},hide:function(){this.options.orig[this.prop]=c.style(this.elem,this.prop);this.options.hide=true;this.custom(this.cur(),0)},step:function(a){var b=J(),d=true;if(a||b>=this.options.duration+this.startTime){this.now= +this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;for(var f in this.options.curAnim)if(this.options.curAnim[f]!==true)d=false;if(d){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;a=c.data(this.elem,"olddisplay");this.elem.style.display=a?a:this.options.display;if(c.css(this.elem,"display")==="none")this.elem.style.display="block"}this.options.hide&&c(this.elem).hide();if(this.options.hide||this.options.show)for(var e in this.options.curAnim)c.style(this.elem, +e,this.options.orig[e]);this.options.complete.call(this.elem)}return false}else{e=b-this.startTime;this.state=e/this.options.duration;a=this.options.easing||(c.easing.swing?"swing":"linear");this.pos=c.easing[this.options.specialEasing&&this.options.specialEasing[this.prop]||a](this.state,e,0,1,this.options.duration);this.now=this.start+(this.end-this.start)*this.pos;this.update()}return true}};c.extend(c.fx,{tick:function(){for(var a=c.timers,b=0;b
    "; +a.insertBefore(b,a.firstChild);d=b.firstChild;f=d.firstChild;e=d.nextSibling.firstChild.firstChild;this.doesNotAddBorder=f.offsetTop!==5;this.doesAddBorderForTableAndCells=e.offsetTop===5;f.style.position="fixed";f.style.top="20px";this.supportsFixedPosition=f.offsetTop===20||f.offsetTop===15;f.style.position=f.style.top="";d.style.overflow="hidden";d.style.position="relative";this.subtractsBorderForOverflowNotVisible=f.offsetTop===-5;this.doesNotIncludeMarginInBodyOffset=a.offsetTop!==j;a.removeChild(b); +c.offset.initialize=c.noop},bodyOffset:function(a){var b=a.offsetTop,d=a.offsetLeft;c.offset.initialize();if(c.offset.doesNotIncludeMarginInBodyOffset){b+=parseFloat(c.curCSS(a,"marginTop",true))||0;d+=parseFloat(c.curCSS(a,"marginLeft",true))||0}return{top:b,left:d}},setOffset:function(a,b,d){if(/static/.test(c.curCSS(a,"position")))a.style.position="relative";var f=c(a),e=f.offset(),j=parseInt(c.curCSS(a,"top",true),10)||0,i=parseInt(c.curCSS(a,"left",true),10)||0;if(c.isFunction(b))b=b.call(a, +d,e);d={top:b.top-e.top+j,left:b.left-e.left+i};"using"in b?b.using.call(a,d):f.css(d)}};c.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),d=this.offset(),f=/^body|html$/i.test(b[0].nodeName)?{top:0,left:0}:b.offset();d.top-=parseFloat(c.curCSS(a,"marginTop",true))||0;d.left-=parseFloat(c.curCSS(a,"marginLeft",true))||0;f.top+=parseFloat(c.curCSS(b[0],"borderTopWidth",true))||0;f.left+=parseFloat(c.curCSS(b[0],"borderLeftWidth",true))||0;return{top:d.top- +f.top,left:d.left-f.left}},offsetParent:function(){return this.map(function(){for(var a=this.offsetParent||s.body;a&&!/^body|html$/i.test(a.nodeName)&&c.css(a,"position")==="static";)a=a.offsetParent;return a})}});c.each(["Left","Top"],function(a,b){var d="scroll"+b;c.fn[d]=function(f){var e=this[0],j;if(!e)return null;if(f!==w)return this.each(function(){if(j=wa(this))j.scrollTo(!a?f:c(j).scrollLeft(),a?f:c(j).scrollTop());else this[d]=f});else return(j=wa(e))?"pageXOffset"in j?j[a?"pageYOffset": +"pageXOffset"]:c.support.boxModel&&j.document.documentElement[d]||j.document.body[d]:e[d]}});c.each(["Height","Width"],function(a,b){var d=b.toLowerCase();c.fn["inner"+b]=function(){return this[0]?c.css(this[0],d,false,"padding"):null};c.fn["outer"+b]=function(f){return this[0]?c.css(this[0],d,false,f?"margin":"border"):null};c.fn[d]=function(f){var e=this[0];if(!e)return f==null?null:this;if(c.isFunction(f))return this.each(function(j){var i=c(this);i[d](f.call(this,j,i[d]()))});return"scrollTo"in +e&&e.document?e.document.compatMode==="CSS1Compat"&&e.document.documentElement["client"+b]||e.document.body["client"+b]:e.nodeType===9?Math.max(e.documentElement["client"+b],e.body["scroll"+b],e.documentElement["scroll"+b],e.body["offset"+b],e.documentElement["offset"+b]):f===w?c.css(e,d):this.css(d,typeof f==="string"?f:f+"px")}});A.jQuery=A.$=c})(window); diff --git a/docbook-xsl-1.76.1/webhelp/docs/common/jquery/jquery-ui-1.8.2.custom.min.js b/docbook-xsl-1.76.1/webhelp/docs/common/jquery/jquery-ui-1.8.2.custom.min.js new file mode 100644 index 0000000..fec53e8 --- /dev/null +++ b/docbook-xsl-1.76.1/webhelp/docs/common/jquery/jquery-ui-1.8.2.custom.min.js @@ -0,0 +1,321 @@ +/*! + * jQuery UI 1.8.2 + * + * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI + */ +(function(c){c.ui=c.ui||{};if(!c.ui.version){c.extend(c.ui,{version:"1.8.2",plugin:{add:function(a,b,d){a=c.ui[a].prototype;for(var e in d){a.plugins[e]=a.plugins[e]||[];a.plugins[e].push([b,d[e]])}},call:function(a,b,d){if((b=a.plugins[b])&&a.element[0].parentNode)for(var e=0;e0)return true;a[b]=1;d=a[b]>0;a[b]=0;return d},isOverAxis:function(a,b,d){return a>b&&a=0)&&c(a).is(":focusable")}})}})(jQuery); +;/*! + * jQuery UI Widget 1.8.2 + * + * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Widget + */ +(function(b){var j=b.fn.remove;b.fn.remove=function(a,c){return this.each(function(){if(!c)if(!a||b.filter(a,[this]).length)b("*",this).add(this).each(function(){b(this).triggerHandler("remove")});return j.call(b(this),a,c)})};b.widget=function(a,c,d){var e=a.split(".")[0],f;a=a.split(".")[1];f=e+"-"+a;if(!d){d=c;c=b.Widget}b.expr[":"][f]=function(h){return!!b.data(h,a)};b[e]=b[e]||{};b[e][a]=function(h,g){arguments.length&&this._createWidget(h,g)};c=new c;c.options=b.extend({},c.options);b[e][a].prototype= +b.extend(true,c,{namespace:e,widgetName:a,widgetEventPrefix:b[e][a].prototype.widgetEventPrefix||a,widgetBaseClass:f},d);b.widget.bridge(a,b[e][a])};b.widget.bridge=function(a,c){b.fn[a]=function(d){var e=typeof d==="string",f=Array.prototype.slice.call(arguments,1),h=this;d=!e&&f.length?b.extend.apply(null,[true,d].concat(f)):d;if(e&&d.substring(0,1)==="_")return h;e?this.each(function(){var g=b.data(this,a),i=g&&b.isFunction(g[d])?g[d].apply(g,f):g;if(i!==g&&i!==undefined){h=i;return false}}):this.each(function(){var g= +b.data(this,a);if(g){d&&g.option(d);g._init()}else b.data(this,a,new c(d,this))});return h}};b.Widget=function(a,c){arguments.length&&this._createWidget(a,c)};b.Widget.prototype={widgetName:"widget",widgetEventPrefix:"",options:{disabled:false},_createWidget:function(a,c){this.element=b(c).data(this.widgetName,this);this.options=b.extend(true,{},this.options,b.metadata&&b.metadata.get(c)[this.widgetName],a);var d=this;this.element.bind("remove."+this.widgetName,function(){d.destroy()});this._create(); +this._init()},_create:function(){},_init:function(){},destroy:function(){this.element.unbind("."+this.widgetName).removeData(this.widgetName);this.widget().unbind("."+this.widgetName).removeAttr("aria-disabled").removeClass(this.widgetBaseClass+"-disabled ui-state-disabled")},widget:function(){return this.element},option:function(a,c){var d=a,e=this;if(arguments.length===0)return b.extend({},e.options);if(typeof a==="string"){if(c===undefined)return this.options[a];d={};d[a]=c}b.each(d,function(f, +h){e._setOption(f,h)});return e},_setOption:function(a,c){this.options[a]=c;if(a==="disabled")this.widget()[c?"addClass":"removeClass"](this.widgetBaseClass+"-disabled ui-state-disabled").attr("aria-disabled",c);return this},enable:function(){return this._setOption("disabled",false)},disable:function(){return this._setOption("disabled",true)},_trigger:function(a,c,d){var e=this.options[a];c=b.Event(c);c.type=(a===this.widgetEventPrefix?a:this.widgetEventPrefix+a).toLowerCase();d=d||{};if(c.originalEvent){a= +b.event.props.length;for(var f;a;){f=b.event.props[--a];c[f]=c.originalEvent[f]}}this.element.trigger(c,d);return!(b.isFunction(e)&&e.call(this.element[0],c,d)===false||c.isDefaultPrevented())}}})(jQuery); +;/*! + * jQuery UI Mouse 1.8.2 + * + * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Mouse + * + * Depends: + * jquery.ui.widget.js + */ +(function(c){c.widget("ui.mouse",{options:{cancel:":input,option",distance:1,delay:0},_mouseInit:function(){var a=this;this.element.bind("mousedown."+this.widgetName,function(b){return a._mouseDown(b)}).bind("click."+this.widgetName,function(b){if(a._preventClickEvent){a._preventClickEvent=false;b.stopImmediatePropagation();return false}});this.started=false},_mouseDestroy:function(){this.element.unbind("."+this.widgetName)},_mouseDown:function(a){a.originalEvent=a.originalEvent||{};if(!a.originalEvent.mouseHandled){this._mouseStarted&& +this._mouseUp(a);this._mouseDownEvent=a;var b=this,e=a.which==1,f=typeof this.options.cancel=="string"?c(a.target).parents().add(a.target).filter(this.options.cancel).length:false;if(!e||f||!this._mouseCapture(a))return true;this.mouseDelayMet=!this.options.delay;if(!this.mouseDelayMet)this._mouseDelayTimer=setTimeout(function(){b.mouseDelayMet=true},this.options.delay);if(this._mouseDistanceMet(a)&&this._mouseDelayMet(a)){this._mouseStarted=this._mouseStart(a)!==false;if(!this._mouseStarted){a.preventDefault(); +return true}}this._mouseMoveDelegate=function(d){return b._mouseMove(d)};this._mouseUpDelegate=function(d){return b._mouseUp(d)};c(document).bind("mousemove."+this.widgetName,this._mouseMoveDelegate).bind("mouseup."+this.widgetName,this._mouseUpDelegate);c.browser.safari||a.preventDefault();return a.originalEvent.mouseHandled=true}},_mouseMove:function(a){if(c.browser.msie&&!a.button)return this._mouseUp(a);if(this._mouseStarted){this._mouseDrag(a);return a.preventDefault()}if(this._mouseDistanceMet(a)&& +this._mouseDelayMet(a))(this._mouseStarted=this._mouseStart(this._mouseDownEvent,a)!==false)?this._mouseDrag(a):this._mouseUp(a);return!this._mouseStarted},_mouseUp:function(a){c(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate);if(this._mouseStarted){this._mouseStarted=false;this._preventClickEvent=a.target==this._mouseDownEvent.target;this._mouseStop(a)}return false},_mouseDistanceMet:function(a){return Math.max(Math.abs(this._mouseDownEvent.pageX- +a.pageX),Math.abs(this._mouseDownEvent.pageY-a.pageY))>=this.options.distance},_mouseDelayMet:function(){return this.mouseDelayMet},_mouseStart:function(){},_mouseDrag:function(){},_mouseStop:function(){},_mouseCapture:function(){return true}})})(jQuery); +;/* + * jQuery UI Position 1.8.2 + * + * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Position + */ +(function(c){c.ui=c.ui||{};var m=/left|center|right/,n=/top|center|bottom/,p=c.fn.position,q=c.fn.offset;c.fn.position=function(a){if(!a||!a.of)return p.apply(this,arguments);a=c.extend({},a);var b=c(a.of),d=(a.collision||"flip").split(" "),e=a.offset?a.offset.split(" "):[0,0],g,h,i;if(a.of.nodeType===9){g=b.width();h=b.height();i={top:0,left:0}}else if(a.of.scrollTo&&a.of.document){g=b.width();h=b.height();i={top:b.scrollTop(),left:b.scrollLeft()}}else if(a.of.preventDefault){a.at="left top";g=h= +0;i={top:a.of.pageY,left:a.of.pageX}}else{g=b.outerWidth();h=b.outerHeight();i=b.offset()}c.each(["my","at"],function(){var f=(a[this]||"").split(" ");if(f.length===1)f=m.test(f[0])?f.concat(["center"]):n.test(f[0])?["center"].concat(f):["center","center"];f[0]=m.test(f[0])?f[0]:"center";f[1]=n.test(f[1])?f[1]:"center";a[this]=f});if(d.length===1)d[1]=d[0];e[0]=parseInt(e[0],10)||0;if(e.length===1)e[1]=e[0];e[1]=parseInt(e[1],10)||0;if(a.at[0]==="right")i.left+=g;else if(a.at[0]==="center")i.left+= +g/2;if(a.at[1]==="bottom")i.top+=h;else if(a.at[1]==="center")i.top+=h/2;i.left+=e[0];i.top+=e[1];return this.each(function(){var f=c(this),k=f.outerWidth(),l=f.outerHeight(),j=c.extend({},i);if(a.my[0]==="right")j.left-=k;else if(a.my[0]==="center")j.left-=k/2;if(a.my[1]==="bottom")j.top-=l;else if(a.my[1]==="center")j.top-=l/2;j.left=parseInt(j.left);j.top=parseInt(j.top);c.each(["left","top"],function(o,r){c.ui.position[d[o]]&&c.ui.position[d[o]][r](j,{targetWidth:g,targetHeight:h,elemWidth:k, +elemHeight:l,offset:e,my:a.my,at:a.at})});c.fn.bgiframe&&f.bgiframe();f.offset(c.extend(j,{using:a.using}))})};c.ui.position={fit:{left:function(a,b){var d=c(window);b=a.left+b.elemWidth-d.width()-d.scrollLeft();a.left=b>0?a.left-b:Math.max(0,a.left)},top:function(a,b){var d=c(window);b=a.top+b.elemHeight-d.height()-d.scrollTop();a.top=b>0?a.top-b:Math.max(0,a.top)}},flip:{left:function(a,b){if(b.at[0]!=="center"){var d=c(window);d=a.left+b.elemWidth-d.width()-d.scrollLeft();var e=b.my[0]==="left"? +-b.elemWidth:b.my[0]==="right"?b.elemWidth:0,g=-2*b.offset[0];a.left+=a.left<0?e+b.targetWidth+g:d>0?e-b.targetWidth+g:0}},top:function(a,b){if(b.at[1]!=="center"){var d=c(window);d=a.top+b.elemHeight-d.height()-d.scrollTop();var e=b.my[1]==="top"?-b.elemHeight:b.my[1]==="bottom"?b.elemHeight:0,g=b.at[1]==="top"?b.targetHeight:-b.targetHeight,h=-2*b.offset[1];a.top+=a.top<0?e+b.targetHeight+h:d>0?e+g+h:0}}}};if(!c.offset.setOffset){c.offset.setOffset=function(a,b){if(/static/.test(c.curCSS(a,"position")))a.style.position= +"relative";var d=c(a),e=d.offset(),g=parseInt(c.curCSS(a,"top",true),10)||0,h=parseInt(c.curCSS(a,"left",true),10)||0;e={top:b.top-e.top+g,left:b.left-e.left+h};"using"in b?b.using.call(a,e):d.css(e)};c.fn.offset=function(a){var b=this[0];if(!b||!b.ownerDocument)return null;if(a)return this.each(function(){c.offset.setOffset(this,a)});return q.call(this)}}})(jQuery); +;/* + * jQuery UI Resizable 1.8.2 + * + * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Resizables + * + * Depends: + * jquery.ui.core.js + * jquery.ui.mouse.js + * jquery.ui.widget.js + */ +(function(d){d.widget("ui.resizable",d.ui.mouse,{widgetEventPrefix:"resize",options:{alsoResize:false,animate:false,animateDuration:"slow",animateEasing:"swing",aspectRatio:false,autoHide:false,containment:false,ghost:false,grid:false,handles:"e,s,se",helper:false,maxHeight:null,maxWidth:null,minHeight:10,minWidth:10,zIndex:1E3},_create:function(){var b=this,a=this.options;this.element.addClass("ui-resizable");d.extend(this,{_aspectRatio:!!a.aspectRatio,aspectRatio:a.aspectRatio,originalElement:this.element, +_proportionallyResizeElements:[],_helper:a.helper||a.ghost||a.animate?a.helper||"ui-resizable-helper":null});if(this.element[0].nodeName.match(/canvas|textarea|input|select|button|img/i)){/relative/.test(this.element.css("position"))&&d.browser.opera&&this.element.css({position:"relative",top:"auto",left:"auto"});this.element.wrap(d('
    ').css({position:this.element.css("position"),width:this.element.outerWidth(),height:this.element.outerHeight(), +top:this.element.css("top"),left:this.element.css("left")}));this.element=this.element.parent().data("resizable",this.element.data("resizable"));this.elementIsWrapper=true;this.element.css({marginLeft:this.originalElement.css("marginLeft"),marginTop:this.originalElement.css("marginTop"),marginRight:this.originalElement.css("marginRight"),marginBottom:this.originalElement.css("marginBottom")});this.originalElement.css({marginLeft:0,marginTop:0,marginRight:0,marginBottom:0});this.originalResizeStyle= +this.originalElement.css("resize");this.originalElement.css("resize","none");this._proportionallyResizeElements.push(this.originalElement.css({position:"static",zoom:1,display:"block"}));this.originalElement.css({margin:this.originalElement.css("margin")});this._proportionallyResize()}this.handles=a.handles||(!d(".ui-resizable-handle",this.element).length?"e,s,se":{n:".ui-resizable-n",e:".ui-resizable-e",s:".ui-resizable-s",w:".ui-resizable-w",se:".ui-resizable-se",sw:".ui-resizable-sw",ne:".ui-resizable-ne", +nw:".ui-resizable-nw"});if(this.handles.constructor==String){if(this.handles=="all")this.handles="n,e,s,w,se,sw,ne,nw";var c=this.handles.split(",");this.handles={};for(var e=0;e
    ');/sw|se|ne|nw/.test(g)&&f.css({zIndex:++a.zIndex});"se"==g&&f.addClass("ui-icon ui-icon-gripsmall-diagonal-se");this.handles[g]=".ui-resizable-"+g;this.element.append(f)}}this._renderAxis=function(h){h=h||this.element;for(var i in this.handles){if(this.handles[i].constructor== +String)this.handles[i]=d(this.handles[i],this.element).show();if(this.elementIsWrapper&&this.originalElement[0].nodeName.match(/textarea|input|select|button/i)){var j=d(this.handles[i],this.element),l=0;l=/sw|ne|nw|se|n|s/.test(i)?j.outerHeight():j.outerWidth();j=["padding",/ne|nw|n/.test(i)?"Top":/se|sw|s/.test(i)?"Bottom":/^e$/.test(i)?"Right":"Left"].join("");h.css(j,l);this._proportionallyResize()}d(this.handles[i])}};this._renderAxis(this.element);this._handles=d(".ui-resizable-handle",this.element).disableSelection(); +this._handles.mouseover(function(){if(!b.resizing){if(this.className)var h=this.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i);b.axis=h&&h[1]?h[1]:"se"}});if(a.autoHide){this._handles.hide();d(this.element).addClass("ui-resizable-autohide").hover(function(){d(this).removeClass("ui-resizable-autohide");b._handles.show()},function(){if(!b.resizing){d(this).addClass("ui-resizable-autohide");b._handles.hide()}})}this._mouseInit()},destroy:function(){this._mouseDestroy();var b=function(c){d(c).removeClass("ui-resizable ui-resizable-disabled ui-resizable-resizing").removeData("resizable").unbind(".resizable").find(".ui-resizable-handle").remove()}; +if(this.elementIsWrapper){b(this.element);var a=this.element;a.after(this.originalElement.css({position:a.css("position"),width:a.outerWidth(),height:a.outerHeight(),top:a.css("top"),left:a.css("left")})).remove()}this.originalElement.css("resize",this.originalResizeStyle);b(this.originalElement);return this},_mouseCapture:function(b){var a=false;for(var c in this.handles)if(d(this.handles[c])[0]==b.target)a=true;return!this.options.disabled&&a},_mouseStart:function(b){var a=this.options,c=this.element.position(), +e=this.element;this.resizing=true;this.documentScroll={top:d(document).scrollTop(),left:d(document).scrollLeft()};if(e.is(".ui-draggable")||/absolute/.test(e.css("position")))e.css({position:"absolute",top:c.top,left:c.left});d.browser.opera&&/relative/.test(e.css("position"))&&e.css({position:"relative",top:"auto",left:"auto"});this._renderProxy();c=m(this.helper.css("left"));var g=m(this.helper.css("top"));if(a.containment){c+=d(a.containment).scrollLeft()||0;g+=d(a.containment).scrollTop()||0}this.offset= +this.helper.offset();this.position={left:c,top:g};this.size=this._helper?{width:e.outerWidth(),height:e.outerHeight()}:{width:e.width(),height:e.height()};this.originalSize=this._helper?{width:e.outerWidth(),height:e.outerHeight()}:{width:e.width(),height:e.height()};this.originalPosition={left:c,top:g};this.sizeDiff={width:e.outerWidth()-e.width(),height:e.outerHeight()-e.height()};this.originalMousePosition={left:b.pageX,top:b.pageY};this.aspectRatio=typeof a.aspectRatio=="number"?a.aspectRatio: +this.originalSize.width/this.originalSize.height||1;a=d(".ui-resizable-"+this.axis).css("cursor");d("body").css("cursor",a=="auto"?this.axis+"-resize":a);e.addClass("ui-resizable-resizing");this._propagate("start",b);return true},_mouseDrag:function(b){var a=this.helper,c=this.originalMousePosition,e=this._change[this.axis];if(!e)return false;c=e.apply(this,[b,b.pageX-c.left||0,b.pageY-c.top||0]);if(this._aspectRatio||b.shiftKey)c=this._updateRatio(c,b);c=this._respectSize(c,b);this._propagate("resize", +b);a.css({top:this.position.top+"px",left:this.position.left+"px",width:this.size.width+"px",height:this.size.height+"px"});!this._helper&&this._proportionallyResizeElements.length&&this._proportionallyResize();this._updateCache(c);this._trigger("resize",b,this.ui());return false},_mouseStop:function(b){this.resizing=false;var a=this.options,c=this;if(this._helper){var e=this._proportionallyResizeElements,g=e.length&&/textarea/i.test(e[0].nodeName);e=g&&d.ui.hasScroll(e[0],"left")?0:c.sizeDiff.height; +g={width:c.size.width-(g?0:c.sizeDiff.width),height:c.size.height-e};e=parseInt(c.element.css("left"),10)+(c.position.left-c.originalPosition.left)||null;var f=parseInt(c.element.css("top"),10)+(c.position.top-c.originalPosition.top)||null;a.animate||this.element.css(d.extend(g,{top:f,left:e}));c.helper.height(c.size.height);c.helper.width(c.size.width);this._helper&&!a.animate&&this._proportionallyResize()}d("body").css("cursor","auto");this.element.removeClass("ui-resizable-resizing");this._propagate("stop", +b);this._helper&&this.helper.remove();return false},_updateCache:function(b){this.offset=this.helper.offset();if(k(b.left))this.position.left=b.left;if(k(b.top))this.position.top=b.top;if(k(b.height))this.size.height=b.height;if(k(b.width))this.size.width=b.width},_updateRatio:function(b){var a=this.position,c=this.size,e=this.axis;if(b.height)b.width=c.height*this.aspectRatio;else if(b.width)b.height=c.width/this.aspectRatio;if(e=="sw"){b.left=a.left+(c.width-b.width);b.top=null}if(e=="nw"){b.top= +a.top+(c.height-b.height);b.left=a.left+(c.width-b.width)}return b},_respectSize:function(b){var a=this.options,c=this.axis,e=k(b.width)&&a.maxWidth&&a.maxWidthb.width,h=k(b.height)&&a.minHeight&&a.minHeight>b.height;if(f)b.width=a.minWidth;if(h)b.height=a.minHeight;if(e)b.width=a.maxWidth;if(g)b.height=a.maxHeight;var i=this.originalPosition.left+this.originalSize.width,j=this.position.top+this.size.height, +l=/sw|nw|w/.test(c);c=/nw|ne|n/.test(c);if(f&&l)b.left=i-a.minWidth;if(e&&l)b.left=i-a.maxWidth;if(h&&c)b.top=j-a.minHeight;if(g&&c)b.top=j-a.maxHeight;if((a=!b.width&&!b.height)&&!b.left&&b.top)b.top=null;else if(a&&!b.top&&b.left)b.left=null;return b},_proportionallyResize:function(){if(this._proportionallyResizeElements.length)for(var b=this.helper||this.element,a=0;a');var a=d.browser.msie&&d.browser.version<7,c=a?1:0;a=a?2:-1;this.helper.addClass(this._helper).css({width:this.element.outerWidth()+a,height:this.element.outerHeight()+a,position:"absolute",left:this.elementOffset.left-c+"px",top:this.elementOffset.top-c+"px",zIndex:++b.zIndex});this.helper.appendTo("body").disableSelection()}else this.helper=this.element},_change:{e:function(b,a){return{width:this.originalSize.width+ +a}},w:function(b,a){return{left:this.originalPosition.left+a,width:this.originalSize.width-a}},n:function(b,a,c){return{top:this.originalPosition.top+c,height:this.originalSize.height-c}},s:function(b,a,c){return{height:this.originalSize.height+c}},se:function(b,a,c){return d.extend(this._change.s.apply(this,arguments),this._change.e.apply(this,[b,a,c]))},sw:function(b,a,c){return d.extend(this._change.s.apply(this,arguments),this._change.w.apply(this,[b,a,c]))},ne:function(b,a,c){return d.extend(this._change.n.apply(this, +arguments),this._change.e.apply(this,[b,a,c]))},nw:function(b,a,c){return d.extend(this._change.n.apply(this,arguments),this._change.w.apply(this,[b,a,c]))}},_propagate:function(b,a){d.ui.plugin.call(this,b,[a,this.ui()]);b!="resize"&&this._trigger(b,a,this.ui())},plugins:{},ui:function(){return{originalElement:this.originalElement,element:this.element,helper:this.helper,position:this.position,size:this.size,originalSize:this.originalSize,originalPosition:this.originalPosition}}});d.extend(d.ui.resizable, +{version:"1.8.2"});d.ui.plugin.add("resizable","alsoResize",{start:function(){var b=d(this).data("resizable").options,a=function(c){d(c).each(function(){d(this).data("resizable-alsoresize",{width:parseInt(d(this).width(),10),height:parseInt(d(this).height(),10),left:parseInt(d(this).css("left"),10),top:parseInt(d(this).css("top"),10)})})};if(typeof b.alsoResize=="object"&&!b.alsoResize.parentNode)if(b.alsoResize.length){b.alsoResize=b.alsoResize[0];a(b.alsoResize)}else d.each(b.alsoResize,function(c){a(c)}); +else a(b.alsoResize)},resize:function(){var b=d(this).data("resizable"),a=b.options,c=b.originalSize,e=b.originalPosition,g={height:b.size.height-c.height||0,width:b.size.width-c.width||0,top:b.position.top-e.top||0,left:b.position.left-e.left||0},f=function(h,i){d(h).each(function(){var j=d(this),l=d(this).data("resizable-alsoresize"),p={};d.each((i&&i.length?i:["width","height","top","left"])||["width","height","top","left"],function(n,o){if((n=(l[o]||0)+(g[o]||0))&&n>=0)p[o]=n||null});if(/relative/.test(j.css("position"))&& +d.browser.opera){b._revertToRelativePosition=true;j.css({position:"absolute",top:"auto",left:"auto"})}j.css(p)})};typeof a.alsoResize=="object"&&!a.alsoResize.nodeType?d.each(a.alsoResize,function(h,i){f(h,i)}):f(a.alsoResize)},stop:function(){var b=d(this).data("resizable");if(b._revertToRelativePosition&&d.browser.opera){b._revertToRelativePosition=false;el.css({position:"relative"})}d(this).removeData("resizable-alsoresize-start")}});d.ui.plugin.add("resizable","animate",{stop:function(b){var a= +d(this).data("resizable"),c=a.options,e=a._proportionallyResizeElements,g=e.length&&/textarea/i.test(e[0].nodeName),f=g&&d.ui.hasScroll(e[0],"left")?0:a.sizeDiff.height;g={width:a.size.width-(g?0:a.sizeDiff.width),height:a.size.height-f};f=parseInt(a.element.css("left"),10)+(a.position.left-a.originalPosition.left)||null;var h=parseInt(a.element.css("top"),10)+(a.position.top-a.originalPosition.top)||null;a.element.animate(d.extend(g,h&&f?{top:h,left:f}:{}),{duration:c.animateDuration,easing:c.animateEasing, +step:function(){var i={width:parseInt(a.element.css("width"),10),height:parseInt(a.element.css("height"),10),top:parseInt(a.element.css("top"),10),left:parseInt(a.element.css("left"),10)};e&&e.length&&d(e[0]).css({width:i.width,height:i.height});a._updateCache(i);a._propagate("resize",b)}})}});d.ui.plugin.add("resizable","containment",{start:function(){var b=d(this).data("resizable"),a=b.element,c=b.options.containment;if(a=c instanceof d?c.get(0):/parent/.test(c)?a.parent().get(0):c){b.containerElement= +d(a);if(/document/.test(c)||c==document){b.containerOffset={left:0,top:0};b.containerPosition={left:0,top:0};b.parentData={element:d(document),left:0,top:0,width:d(document).width(),height:d(document).height()||document.body.parentNode.scrollHeight}}else{var e=d(a),g=[];d(["Top","Right","Left","Bottom"]).each(function(i,j){g[i]=m(e.css("padding"+j))});b.containerOffset=e.offset();b.containerPosition=e.position();b.containerSize={height:e.innerHeight()-g[3],width:e.innerWidth()-g[1]};c=b.containerOffset; +var f=b.containerSize.height,h=b.containerSize.width;h=d.ui.hasScroll(a,"left")?a.scrollWidth:h;f=d.ui.hasScroll(a)?a.scrollHeight:f;b.parentData={element:a,left:c.left,top:c.top,width:h,height:f}}}},resize:function(b){var a=d(this).data("resizable"),c=a.options,e=a.containerOffset,g=a.position;b=a._aspectRatio||b.shiftKey;var f={top:0,left:0},h=a.containerElement;if(h[0]!=document&&/static/.test(h.css("position")))f=e;if(g.left<(a._helper?e.left:0)){a.size.width+=a._helper?a.position.left-e.left: +a.position.left-f.left;if(b)a.size.height=a.size.width/c.aspectRatio;a.position.left=c.helper?e.left:0}if(g.top<(a._helper?e.top:0)){a.size.height+=a._helper?a.position.top-e.top:a.position.top;if(b)a.size.width=a.size.height*c.aspectRatio;a.position.top=a._helper?e.top:0}a.offset.left=a.parentData.left+a.position.left;a.offset.top=a.parentData.top+a.position.top;c=Math.abs((a._helper?a.offset.left-f.left:a.offset.left-f.left)+a.sizeDiff.width);e=Math.abs((a._helper?a.offset.top-f.top:a.offset.top- +e.top)+a.sizeDiff.height);g=a.containerElement.get(0)==a.element.parent().get(0);f=/relative|absolute/.test(a.containerElement.css("position"));if(g&&f)c-=a.parentData.left;if(c+a.size.width>=a.parentData.width){a.size.width=a.parentData.width-c;if(b)a.size.height=a.size.width/a.aspectRatio}if(e+a.size.height>=a.parentData.height){a.size.height=a.parentData.height-e;if(b)a.size.width=a.size.height*a.aspectRatio}},stop:function(){var b=d(this).data("resizable"),a=b.options,c=b.containerOffset,e=b.containerPosition, +g=b.containerElement,f=d(b.helper),h=f.offset(),i=f.outerWidth()-b.sizeDiff.width;f=f.outerHeight()-b.sizeDiff.height;b._helper&&!a.animate&&/relative/.test(g.css("position"))&&d(this).css({left:h.left-e.left-c.left,width:i,height:f});b._helper&&!a.animate&&/static/.test(g.css("position"))&&d(this).css({left:h.left-e.left-c.left,width:i,height:f})}});d.ui.plugin.add("resizable","ghost",{start:function(){var b=d(this).data("resizable"),a=b.options,c=b.size;b.ghost=b.originalElement.clone();b.ghost.css({opacity:0.25, +display:"block",position:"relative",height:c.height,width:c.width,margin:0,left:0,top:0}).addClass("ui-resizable-ghost").addClass(typeof a.ghost=="string"?a.ghost:"");b.ghost.appendTo(b.helper)},resize:function(){var b=d(this).data("resizable");b.ghost&&b.ghost.css({position:"relative",height:b.size.height,width:b.size.width})},stop:function(){var b=d(this).data("resizable");b.ghost&&b.helper&&b.helper.get(0).removeChild(b.ghost.get(0))}});d.ui.plugin.add("resizable","grid",{resize:function(){var b= +d(this).data("resizable"),a=b.options,c=b.size,e=b.originalSize,g=b.originalPosition,f=b.axis;a.grid=typeof a.grid=="number"?[a.grid,a.grid]:a.grid;var h=Math.round((c.width-e.width)/(a.grid[0]||1))*(a.grid[0]||1);a=Math.round((c.height-e.height)/(a.grid[1]||1))*(a.grid[1]||1);if(/^(se|s|e)$/.test(f)){b.size.width=e.width+h;b.size.height=e.height+a}else if(/^(ne)$/.test(f)){b.size.width=e.width+h;b.size.height=e.height+a;b.position.top=g.top-a}else{if(/^(sw)$/.test(f)){b.size.width=e.width+h;b.size.height= +e.height+a}else{b.size.width=e.width+h;b.size.height=e.height+a;b.position.top=g.top-a}b.position.left=g.left-h}}});var m=function(b){return parseInt(b,10)||0},k=function(b){return!isNaN(parseInt(b,10))}})(jQuery); +; +/* + * jQuery UI Selectable 1.8.2 + * + * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Selectables + * + * Depends: + * jquery.ui.core.js + * jquery.ui.mouse.js + * jquery.ui.widget.js + */ +(function(e){e.widget("ui.selectable",e.ui.mouse,{options:{appendTo:"body",autoRefresh:true,distance:0,filter:"*",tolerance:"touch"},_create:function(){var c=this;this.element.addClass("ui-selectable");this.dragged=false;var f;this.refresh=function(){f=e(c.options.filter,c.element[0]);f.each(function(){var d=e(this),b=d.offset();e.data(this,"selectable-item",{element:this,$element:d,left:b.left,top:b.top,right:b.left+d.outerWidth(),bottom:b.top+d.outerHeight(),startselected:false,selected:d.hasClass("ui-selected"), +selecting:d.hasClass("ui-selecting"),unselecting:d.hasClass("ui-unselecting")})})};this.refresh();this.selectees=f.addClass("ui-selectee");this._mouseInit();this.helper=e("
    ")},destroy:function(){this.selectees.removeClass("ui-selectee").removeData("selectable-item");this.element.removeClass("ui-selectable ui-selectable-disabled").removeData("selectable").unbind(".selectable");this._mouseDestroy();return this},_mouseStart:function(c){var f=this;this.opos=[c.pageX, +c.pageY];if(!this.options.disabled){var d=this.options;this.selectees=e(d.filter,this.element[0]);this._trigger("start",c);e(d.appendTo).append(this.helper);this.helper.css({"z-index":100,position:"absolute",left:c.clientX,top:c.clientY,width:0,height:0});d.autoRefresh&&this.refresh();this.selectees.filter(".ui-selected").each(function(){var b=e.data(this,"selectable-item");b.startselected=true;if(!c.metaKey){b.$element.removeClass("ui-selected");b.selected=false;b.$element.addClass("ui-unselecting"); +b.unselecting=true;f._trigger("unselecting",c,{unselecting:b.element})}});e(c.target).parents().andSelf().each(function(){var b=e.data(this,"selectable-item");if(b){var g=!c.metaKey||!b.$element.hasClass("ui-selected");b.$element.removeClass(g?"ui-unselecting":"ui-selected").addClass(g?"ui-selecting":"ui-unselecting");b.unselecting=!g;b.selecting=g;(b.selected=g)?f._trigger("selecting",c,{selecting:b.element}):f._trigger("unselecting",c,{unselecting:b.element});return false}})}},_mouseDrag:function(c){var f= +this;this.dragged=true;if(!this.options.disabled){var d=this.options,b=this.opos[0],g=this.opos[1],h=c.pageX,i=c.pageY;if(b>h){var j=h;h=b;b=j}if(g>i){j=i;i=g;g=j}this.helper.css({left:b,top:g,width:h-b,height:i-g});this.selectees.each(function(){var a=e.data(this,"selectable-item");if(!(!a||a.element==f.element[0])){var k=false;if(d.tolerance=="touch")k=!(a.left>h||a.righti||a.bottomb&&a.rightg&&a.bottom")},destroy:function(){this.selectees.removeClass("ui-selectee").removeData("selectable-item");this.element.removeClass("ui-selectable ui-selectable-disabled").removeData("selectable").unbind(".selectable");this._mouseDestroy();return this},_mouseStart:function(c){var f=this;this.opos=[c.pageX, +c.pageY];if(!this.options.disabled){var d=this.options;this.selectees=e(d.filter,this.element[0]);this._trigger("start",c);e(d.appendTo).append(this.helper);this.helper.css({"z-index":100,position:"absolute",left:c.clientX,top:c.clientY,width:0,height:0});d.autoRefresh&&this.refresh();this.selectees.filter(".ui-selected").each(function(){var b=e.data(this,"selectable-item");b.startselected=true;if(!c.metaKey){b.$element.removeClass("ui-selected");b.selected=false;b.$element.addClass("ui-unselecting"); +b.unselecting=true;f._trigger("unselecting",c,{unselecting:b.element})}});e(c.target).parents().andSelf().each(function(){var b=e.data(this,"selectable-item");if(b){var g=!c.metaKey||!b.$element.hasClass("ui-selected");b.$element.removeClass(g?"ui-unselecting":"ui-selected").addClass(g?"ui-selecting":"ui-unselecting");b.unselecting=!g;b.selecting=g;(b.selected=g)?f._trigger("selecting",c,{selecting:b.element}):f._trigger("unselecting",c,{unselecting:b.element});return false}})}},_mouseDrag:function(c){var f= +this;this.dragged=true;if(!this.options.disabled){var d=this.options,b=this.opos[0],g=this.opos[1],h=c.pageX,i=c.pageY;if(b>h){var j=h;h=b;b=j}if(g>i){j=i;i=g;g=j}this.helper.css({left:b,top:g,width:h-b,height:i-g});this.selectees.each(function(){var a=e.data(this,"selectable-item");if(!(!a||a.element==f.element[0])){var k=false;if(d.tolerance=="touch")k=!(a.left>h||a.righti||a.bottomb&&a.rightg&&a.bottom").addClass("ui-autocomplete").appendTo("body",c).mousedown(function(){setTimeout(function(){clearTimeout(a.closing)},13)}).menu({focus:function(d,b){b=b.item.data("item.autocomplete"); +false!==a._trigger("focus",null,{item:b})&&/^key/.test(d.originalEvent.type)&&a.element.val(b.value)},selected:function(d,b){b=b.item.data("item.autocomplete");false!==a._trigger("select",d,{item:b})&&a.element.val(b.value);a.close(d);d=a.previous;if(a.element[0]!==c.activeElement){a.element.focus();a.previous=d}a.selectedItem=b},blur:function(){a.menu.element.is(":visible")&&a.element.val(a.term)}}).zIndex(this.element.zIndex()+1).css({top:0,left:0}).hide().data("menu");e.fn.bgiframe&&this.menu.element.bgiframe()}, +destroy:function(){this.element.removeClass("ui-autocomplete-input").removeAttr("autocomplete").removeAttr("role").removeAttr("aria-autocomplete").removeAttr("aria-haspopup");this.menu.element.remove();e.Widget.prototype.destroy.call(this)},_setOption:function(a){e.Widget.prototype._setOption.apply(this,arguments);a==="source"&&this._initSource()},_initSource:function(){var a,c;if(e.isArray(this.options.source)){a=this.options.source;this.source=function(d,b){b(e.ui.autocomplete.filter(a,d.term))}}else if(typeof this.options.source=== +"string"){c=this.options.source;this.source=function(d,b){e.getJSON(c,d,b)}}else this.source=this.options.source},search:function(a,c){a=a!=null?a:this.element.val();if(a.length").data("item.autocomplete", +c).append(""+c.label+"").appendTo(a)},_move:function(a,c){if(this.menu.element.is(":visible"))if(this.menu.first()&&/^previous/.test(a)||this.menu.last()&&/^next/.test(a)){this.element.val(this.term);this.menu.deactivate()}else this.menu[a](c);else this.search(null,c)},widget:function(){return this.menu.element}});e.extend(e.ui.autocomplete,{escapeRegex:function(a){return a.replace(/([\^\$\(\)\[\]\{\}\*\.\+\?\|\\])/gi,"\\$1")},filter:function(a,c){var d=new RegExp(e.ui.autocomplete.escapeRegex(c), +"i");return e.grep(a,function(b){return d.test(b.label||b.value||b)})}})})(jQuery); +(function(e){e.widget("ui.menu",{_create:function(){var a=this;this.element.addClass("ui-menu ui-widget ui-widget-content ui-corner-all").attr({role:"listbox","aria-activedescendant":"ui-active-menuitem"}).click(function(c){if(e(c.target).closest(".ui-menu-item a").length){c.preventDefault();a.select(c)}});this.refresh()},refresh:function(){var a=this;this.element.children("li:not(.ui-menu-item):has(a)").addClass("ui-menu-item").attr("role","menuitem").children("a").addClass("ui-corner-all").attr("tabindex", +-1).mouseenter(function(c){a.activate(c,e(this).parent())}).mouseleave(function(){a.deactivate()})},activate:function(a,c){this.deactivate();if(this.hasScroll()){var d=c.offset().top-this.element.offset().top,b=this.element.attr("scrollTop"),f=this.element.height();if(d<0)this.element.attr("scrollTop",b+d);else d>f&&this.element.attr("scrollTop",b+d-f+c.height())}this.active=c.eq(0).children("a").addClass("ui-state-hover").attr("id","ui-active-menuitem").end();this._trigger("focus",a,{item:c})},deactivate:function(){if(this.active){this.active.children("a").removeClass("ui-state-hover").removeAttr("id"); +this._trigger("blur");this.active=null}},next:function(a){this.move("next",".ui-menu-item:first",a)},previous:function(a){this.move("prev",".ui-menu-item:last",a)},first:function(){return this.active&&!this.active.prev().length},last:function(){return this.active&&!this.active.next().length},move:function(a,c,d){if(this.active){a=this.active[a+"All"](".ui-menu-item").eq(0);a.length?this.activate(d,a):this.activate(d,this.element.children(c))}else this.activate(d,this.element.children(c))},nextPage:function(a){if(this.hasScroll())if(!this.active|| +this.last())this.activate(a,this.element.children(":first"));else{var c=this.active.offset().top,d=this.element.height(),b=this.element.children("li").filter(function(){var f=e(this).offset().top-c-d+e(this).height();return f<10&&f>-10});b.length||(b=this.element.children(":last"));this.activate(a,b)}else this.activate(a,this.element.children(!this.active||this.last()?":first":":last"))},previousPage:function(a){if(this.hasScroll())if(!this.active||this.first())this.activate(a,this.element.children(":last")); +else{var c=this.active.offset().top,d=this.element.height();result=this.element.children("li").filter(function(){var b=e(this).offset().top-c+d-e(this).height();return b<10&&b>-10});result.length||(result=this.element.children(":first"));this.activate(a,result)}else this.activate(a,this.element.children(!this.active||this.first()?":last":":first"))},hasScroll:function(){return this.element.height()").addClass("ui-button-text").html(this.options.label).appendTo(b.empty()).text(),d=this.options.icons,e=d.primary&&d.secondary;if(d.primary||d.secondary){b.addClass("ui-button-text-icon"+(e?"s":""));d.primary&&b.prepend("");d.secondary&&b.append("");if(!this.options.text){b.addClass(e?"ui-button-icons-only":"ui-button-icon-only").removeClass("ui-button-text-icons ui-button-text-icon"); +this.hasTitle||b.attr("title",c)}}else b.addClass("ui-button-text-only")}}});a.widget("ui.buttonset",{_create:function(){this.element.addClass("ui-buttonset");this._init()},_init:function(){this.refresh()},_setOption:function(b,c){b==="disabled"&&this.buttons.button("option",b,c);a.Widget.prototype._setOption.apply(this,arguments)},refresh:function(){this.buttons=this.element.find(":button, :submit, :reset, :checkbox, :radio, a, :data(button)").filter(":ui-button").button("refresh").end().not(":ui-button").button().end().map(function(){return a(this).button("widget")[0]}).removeClass("ui-corner-all ui-corner-left ui-corner-right").filter(":first").addClass("ui-corner-left").end().filter(":last").addClass("ui-corner-right").end().end()}, +destroy:function(){this.element.removeClass("ui-buttonset");this.buttons.map(function(){return a(this).button("widget")[0]}).removeClass("ui-corner-left ui-corner-right").end().button("destroy");a.Widget.prototype.destroy.call(this)}})})(jQuery); +;/* + * jQuery UI Dialog 1.8.2 + * + * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Dialog + * + * Depends: + * jquery.ui.core.js + * jquery.ui.widget.js + * jquery.ui.button.js + * jquery.ui.draggable.js + * jquery.ui.mouse.js + * jquery.ui.position.js + * jquery.ui.resizable.js + */ +(function(c){c.widget("ui.dialog",{options:{autoOpen:true,buttons:{},closeOnEscape:true,closeText:"close",dialogClass:"",draggable:true,hide:null,height:"auto",maxHeight:false,maxWidth:false,minHeight:150,minWidth:150,modal:false,position:"center",resizable:true,show:null,stack:true,title:"",width:300,zIndex:1E3},_create:function(){this.originalTitle=this.element.attr("title");var a=this,b=a.options,d=b.title||a.originalTitle||" ",e=c.ui.dialog.getTitleId(a.element),g=(a.uiDialog=c("
    ")).appendTo(document.body).hide().addClass("ui-dialog ui-widget ui-widget-content ui-corner-all "+ +b.dialogClass).css({zIndex:b.zIndex}).attr("tabIndex",-1).css("outline",0).keydown(function(i){if(b.closeOnEscape&&i.keyCode&&i.keyCode===c.ui.keyCode.ESCAPE){a.close(i);i.preventDefault()}}).attr({role:"dialog","aria-labelledby":e}).mousedown(function(i){a.moveToTop(false,i)});a.element.show().removeAttr("title").addClass("ui-dialog-content ui-widget-content").appendTo(g);var f=(a.uiDialogTitlebar=c("
    ")).addClass("ui-dialog-titlebar ui-widget-header ui-corner-all ui-helper-clearfix").prependTo(g), +h=c('').addClass("ui-dialog-titlebar-close ui-corner-all").attr("role","button").hover(function(){h.addClass("ui-state-hover")},function(){h.removeClass("ui-state-hover")}).focus(function(){h.addClass("ui-state-focus")}).blur(function(){h.removeClass("ui-state-focus")}).click(function(i){a.close(i);return false}).appendTo(f);(a.uiDialogTitlebarCloseText=c("")).addClass("ui-icon ui-icon-closethick").text(b.closeText).appendTo(h);c("").addClass("ui-dialog-title").attr("id", +e).html(d).prependTo(f);if(c.isFunction(b.beforeclose)&&!c.isFunction(b.beforeClose))b.beforeClose=b.beforeclose;f.find("*").add(f).disableSelection();b.draggable&&c.fn.draggable&&a._makeDraggable();b.resizable&&c.fn.resizable&&a._makeResizable();a._createButtons(b.buttons);a._isOpen=false;c.fn.bgiframe&&g.bgiframe()},_init:function(){this.options.autoOpen&&this.open()},destroy:function(){var a=this;a.overlay&&a.overlay.destroy();a.uiDialog.hide();a.element.unbind(".dialog").removeData("dialog").removeClass("ui-dialog-content ui-widget-content").hide().appendTo("body"); +a.uiDialog.remove();a.originalTitle&&a.element.attr("title",a.originalTitle);return a},widget:function(){return this.uiDialog},close:function(a){var b=this,d;if(false!==b._trigger("beforeClose",a)){b.overlay&&b.overlay.destroy();b.uiDialog.unbind("keypress.ui-dialog");b._isOpen=false;if(b.options.hide)b.uiDialog.hide(b.options.hide,function(){b._trigger("close",a)});else{b.uiDialog.hide();b._trigger("close",a)}c.ui.dialog.overlay.resize();if(b.options.modal){d=0;c(".ui-dialog").each(function(){if(this!== +b.uiDialog[0])d=Math.max(d,c(this).css("z-index"))});c.ui.dialog.maxZ=d}return b}},isOpen:function(){return this._isOpen},moveToTop:function(a,b){var d=this,e=d.options;if(e.modal&&!a||!e.stack&&!e.modal)return d._trigger("focus",b);if(e.zIndex>c.ui.dialog.maxZ)c.ui.dialog.maxZ=e.zIndex;if(d.overlay){c.ui.dialog.maxZ+=1;d.overlay.$el.css("z-index",c.ui.dialog.overlay.maxZ=c.ui.dialog.maxZ)}a={scrollTop:d.element.attr("scrollTop"),scrollLeft:d.element.attr("scrollLeft")};c.ui.dialog.maxZ+=1;d.uiDialog.css("z-index", +c.ui.dialog.maxZ);d.element.attr(a);d._trigger("focus",b);return d},open:function(){if(!this._isOpen){var a=this,b=a.options,d=a.uiDialog;a.overlay=b.modal?new c.ui.dialog.overlay(a):null;d.next().length&&d.appendTo("body");a._size();a._position(b.position);d.show(b.show);a.moveToTop(true);b.modal&&d.bind("keypress.ui-dialog",function(e){if(e.keyCode===c.ui.keyCode.TAB){var g=c(":tabbable",this),f=g.filter(":first");g=g.filter(":last");if(e.target===g[0]&&!e.shiftKey){f.focus(1);return false}else if(e.target=== +f[0]&&e.shiftKey){g.focus(1);return false}}});c([]).add(d.find(".ui-dialog-content :tabbable:first")).add(d.find(".ui-dialog-buttonpane :tabbable:first")).add(d).filter(":first").focus();a._trigger("open");a._isOpen=true;return a}},_createButtons:function(a){var b=this,d=false,e=c("
    ").addClass("ui-dialog-buttonpane ui-widget-content ui-helper-clearfix");b.uiDialog.find(".ui-dialog-buttonpane").remove();typeof a==="object"&&a!==null&&c.each(a,function(){return!(d=true)});if(d){c.each(a, +function(g,f){g=c('').text(g).click(function(){f.apply(b.element[0],arguments)}).appendTo(e);c.fn.button&&g.button()});e.appendTo(b.uiDialog)}},_makeDraggable:function(){function a(f){return{position:f.position,offset:f.offset}}var b=this,d=b.options,e=c(document),g;b.uiDialog.draggable({cancel:".ui-dialog-content, .ui-dialog-titlebar-close",handle:".ui-dialog-titlebar",containment:"document",start:function(f,h){g=d.height==="auto"?"auto":c(this).height();c(this).height(c(this).height()).addClass("ui-dialog-dragging"); +b._trigger("dragStart",f,a(h))},drag:function(f,h){b._trigger("drag",f,a(h))},stop:function(f,h){d.position=[h.position.left-e.scrollLeft(),h.position.top-e.scrollTop()];c(this).removeClass("ui-dialog-dragging").height(g);b._trigger("dragStop",f,a(h));c.ui.dialog.overlay.resize()}})},_makeResizable:function(a){function b(f){return{originalPosition:f.originalPosition,originalSize:f.originalSize,position:f.position,size:f.size}}a=a===undefined?this.options.resizable:a;var d=this,e=d.options,g=d.uiDialog.css("position"); +a=typeof a==="string"?a:"n,e,s,w,se,sw,ne,nw";d.uiDialog.resizable({cancel:".ui-dialog-content",containment:"document",alsoResize:d.element,maxWidth:e.maxWidth,maxHeight:e.maxHeight,minWidth:e.minWidth,minHeight:d._minHeight(),handles:a,start:function(f,h){c(this).addClass("ui-dialog-resizing");d._trigger("resizeStart",f,b(h))},resize:function(f,h){d._trigger("resize",f,b(h))},stop:function(f,h){c(this).removeClass("ui-dialog-resizing");e.height=c(this).height();e.width=c(this).width();d._trigger("resizeStop", +f,b(h));c.ui.dialog.overlay.resize()}}).css("position",g).find(".ui-resizable-se").addClass("ui-icon ui-icon-grip-diagonal-se")},_minHeight:function(){var a=this.options;return a.height==="auto"?a.minHeight:Math.min(a.minHeight,a.height)},_position:function(a){var b=[],d=[0,0];a=a||c.ui.dialog.prototype.options.position;if(typeof a==="string"||typeof a==="object"&&"0"in a){b=a.split?a.split(" "):[a[0],a[1]];if(b.length===1)b[1]=b[0];c.each(["left","top"],function(e,g){if(+b[e]===b[e]){d[e]=b[e];b[e]= +g}})}else if(typeof a==="object"){if("left"in a){b[0]="left";d[0]=a.left}else if("right"in a){b[0]="right";d[0]=-a.right}if("top"in a){b[1]="top";d[1]=a.top}else if("bottom"in a){b[1]="bottom";d[1]=-a.bottom}}(a=this.uiDialog.is(":visible"))||this.uiDialog.show();this.uiDialog.css({top:0,left:0}).position({my:b.join(" "),at:b.join(" "),offset:d.join(" "),of:window,collision:"fit",using:function(e){var g=c(this).css(e).offset().top;g<0&&c(this).css("top",e.top-g)}});a||this.uiDialog.hide()},_setOption:function(a, +b){var d=this,e=d.uiDialog,g=e.is(":data(resizable)"),f=false;switch(a){case "beforeclose":a="beforeClose";break;case "buttons":d._createButtons(b);break;case "closeText":d.uiDialogTitlebarCloseText.text(""+b);break;case "dialogClass":e.removeClass(d.options.dialogClass).addClass("ui-dialog ui-widget ui-widget-content ui-corner-all "+b);break;case "disabled":b?e.addClass("ui-dialog-disabled"):e.removeClass("ui-dialog-disabled");break;case "draggable":b?d._makeDraggable():e.draggable("destroy");break; +case "height":f=true;break;case "maxHeight":g&&e.resizable("option","maxHeight",b);f=true;break;case "maxWidth":g&&e.resizable("option","maxWidth",b);f=true;break;case "minHeight":g&&e.resizable("option","minHeight",b);f=true;break;case "minWidth":g&&e.resizable("option","minWidth",b);f=true;break;case "position":d._position(b);break;case "resizable":g&&!b&&e.resizable("destroy");g&&typeof b==="string"&&e.resizable("option","handles",b);!g&&b!==false&&d._makeResizable(b);break;case "title":c(".ui-dialog-title", +d.uiDialogTitlebar).html(""+(b||" "));break;case "width":f=true;break}c.Widget.prototype._setOption.apply(d,arguments);f&&d._size()},_size:function(){var a=this.options,b;this.element.css({width:"auto",minHeight:0,height:0});b=this.uiDialog.css({height:"auto",width:a.width}).height();this.element.css(a.height==="auto"?{minHeight:Math.max(a.minHeight-b,0),height:"auto"}:{minHeight:0,height:Math.max(a.height-b,0)}).show();this.uiDialog.is(":data(resizable)")&&this.uiDialog.resizable("option","minHeight", +this._minHeight())}});c.extend(c.ui.dialog,{version:"1.8.2",uuid:0,maxZ:0,getTitleId:function(a){a=a.attr("id");if(!a){this.uuid+=1;a=this.uuid}return"ui-dialog-title-"+a},overlay:function(a){this.$el=c.ui.dialog.overlay.create(a)}});c.extend(c.ui.dialog.overlay,{instances:[],oldInstances:[],maxZ:0,events:c.map("focus,mousedown,mouseup,keydown,keypress,click".split(","),function(a){return a+".dialog-overlay"}).join(" "),create:function(a){if(this.instances.length===0){setTimeout(function(){c.ui.dialog.overlay.instances.length&& +c(document).bind(c.ui.dialog.overlay.events,function(d){return c(d.target).zIndex()>=c.ui.dialog.overlay.maxZ})},1);c(document).bind("keydown.dialog-overlay",function(d){if(a.options.closeOnEscape&&d.keyCode&&d.keyCode===c.ui.keyCode.ESCAPE){a.close(d);d.preventDefault()}});c(window).bind("resize.dialog-overlay",c.ui.dialog.overlay.resize)}var b=(this.oldInstances.pop()||c("
    ").addClass("ui-widget-overlay")).appendTo(document.body).css({width:this.width(),height:this.height()});c.fn.bgiframe&& +b.bgiframe();this.instances.push(b);return b},destroy:function(a){this.oldInstances.push(this.instances.splice(c.inArray(a,this.instances),1)[0]);this.instances.length===0&&c([document,window]).unbind(".dialog-overlay");a.remove();var b=0;c.each(this.instances,function(){b=Math.max(b,this.css("z-index"))});this.maxZ=b},height:function(){var a,b;if(c.browser.msie&&c.browser.version<7){a=Math.max(document.documentElement.scrollHeight,document.body.scrollHeight);b=Math.max(document.documentElement.offsetHeight, +document.body.offsetHeight);return a",remove:null,select:null,show:null,spinner:"Loading…",tabTemplate:'
  • #{label}
  • '},_create:function(){this._tabify(true)},_setOption:function(c,e){if(c=="selected")this.options.collapsible&& +e==this.options.selected||this.select(e);else{this.options[c]=e;this._tabify()}},_tabId:function(c){return c.title&&c.title.replace(/\s/g,"_").replace(/[^A-Za-z0-9\-_:\.]/g,"")||this.options.idPrefix+s()},_sanitizeSelector:function(c){return c.replace(/:/g,"\\:")},_cookie:function(){var c=this.cookie||(this.cookie=this.options.cookie.name||"ui-tabs-"+v());return d.cookie.apply(null,[c].concat(d.makeArray(arguments)))},_ui:function(c,e){return{tab:c,panel:e,index:this.anchors.index(c)}},_cleanup:function(){this.lis.filter(".ui-state-processing").removeClass("ui-state-processing").find("span:data(label.tabs)").each(function(){var c= +d(this);c.html(c.data("label.tabs")).removeData("label.tabs")})},_tabify:function(c){function e(g,f){g.css({display:""});!d.support.opacity&&f.opacity&&g[0].style.removeAttribute("filter")}this.list=this.element.find("ol,ul").eq(0);this.lis=d("li:has(a[href])",this.list);this.anchors=this.lis.map(function(){return d("a",this)[0]});this.panels=d([]);var a=this,b=this.options,h=/^#.+/;this.anchors.each(function(g,f){var j=d(f).attr("href"),l=j.split("#")[0],p;if(l&&(l===location.toString().split("#")[0]|| +(p=d("base")[0])&&l===p.href)){j=f.hash;f.href=j}if(h.test(j))a.panels=a.panels.add(a._sanitizeSelector(j));else if(j!="#"){d.data(f,"href.tabs",j);d.data(f,"load.tabs",j.replace(/#.*$/,""));j=a._tabId(f);f.href="#"+j;f=d("#"+j);if(!f.length){f=d(b.panelTemplate).attr("id",j).addClass("ui-tabs-panel ui-widget-content ui-corner-bottom").insertAfter(a.panels[g-1]||a.list);f.data("destroy.tabs",true)}a.panels=a.panels.add(f)}else b.disabled.push(g)});if(c){this.element.addClass("ui-tabs ui-widget ui-widget-content ui-corner-all"); +this.list.addClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all");this.lis.addClass("ui-state-default ui-corner-top");this.panels.addClass("ui-tabs-panel ui-widget-content ui-corner-bottom");if(b.selected===undefined){location.hash&&this.anchors.each(function(g,f){if(f.hash==location.hash){b.selected=g;return false}});if(typeof b.selected!="number"&&b.cookie)b.selected=parseInt(a._cookie(),10);if(typeof b.selected!="number"&&this.lis.filter(".ui-tabs-selected").length)b.selected= +this.lis.index(this.lis.filter(".ui-tabs-selected"));b.selected=b.selected||(this.lis.length?0:-1)}else if(b.selected===null)b.selected=-1;b.selected=b.selected>=0&&this.anchors[b.selected]||b.selected<0?b.selected:0;b.disabled=d.unique(b.disabled.concat(d.map(this.lis.filter(".ui-state-disabled"),function(g){return a.lis.index(g)}))).sort();d.inArray(b.selected,b.disabled)!=-1&&b.disabled.splice(d.inArray(b.selected,b.disabled),1);this.panels.addClass("ui-tabs-hide");this.lis.removeClass("ui-tabs-selected ui-state-active"); +if(b.selected>=0&&this.anchors.length){this.panels.eq(b.selected).removeClass("ui-tabs-hide");this.lis.eq(b.selected).addClass("ui-tabs-selected ui-state-active");a.element.queue("tabs",function(){a._trigger("show",null,a._ui(a.anchors[b.selected],a.panels[b.selected]))});this.load(b.selected)}d(window).bind("unload",function(){a.lis.add(a.anchors).unbind(".tabs");a.lis=a.anchors=a.panels=null})}else b.selected=this.lis.index(this.lis.filter(".ui-tabs-selected"));this.element[b.collapsible?"addClass": +"removeClass"]("ui-tabs-collapsible");b.cookie&&this._cookie(b.selected,b.cookie);c=0;for(var i;i=this.lis[c];c++)d(i)[d.inArray(c,b.disabled)!=-1&&!d(i).hasClass("ui-tabs-selected")?"addClass":"removeClass"]("ui-state-disabled");b.cache===false&&this.anchors.removeData("cache.tabs");this.lis.add(this.anchors).unbind(".tabs");if(b.event!="mouseover"){var k=function(g,f){f.is(":not(.ui-state-disabled)")&&f.addClass("ui-state-"+g)},n=function(g,f){f.removeClass("ui-state-"+g)};this.lis.bind("mouseover.tabs", +function(){k("hover",d(this))});this.lis.bind("mouseout.tabs",function(){n("hover",d(this))});this.anchors.bind("focus.tabs",function(){k("focus",d(this).closest("li"))});this.anchors.bind("blur.tabs",function(){n("focus",d(this).closest("li"))})}var m,o;if(b.fx)if(d.isArray(b.fx)){m=b.fx[0];o=b.fx[1]}else m=o=b.fx;var q=o?function(g,f){d(g).closest("li").addClass("ui-tabs-selected ui-state-active");f.hide().removeClass("ui-tabs-hide").animate(o,o.duration||"normal",function(){e(f,o);a._trigger("show", +null,a._ui(g,f[0]))})}:function(g,f){d(g).closest("li").addClass("ui-tabs-selected ui-state-active");f.removeClass("ui-tabs-hide");a._trigger("show",null,a._ui(g,f[0]))},r=m?function(g,f){f.animate(m,m.duration||"normal",function(){a.lis.removeClass("ui-tabs-selected ui-state-active");f.addClass("ui-tabs-hide");e(f,m);a.element.dequeue("tabs")})}:function(g,f){a.lis.removeClass("ui-tabs-selected ui-state-active");f.addClass("ui-tabs-hide");a.element.dequeue("tabs")};this.anchors.bind(b.event+".tabs", +function(){var g=this,f=d(this).closest("li"),j=a.panels.filter(":not(.ui-tabs-hide)"),l=d(a._sanitizeSelector(this.hash));if(f.hasClass("ui-tabs-selected")&&!b.collapsible||f.hasClass("ui-state-disabled")||f.hasClass("ui-state-processing")||a._trigger("select",null,a._ui(this,l[0]))===false){this.blur();return false}b.selected=a.anchors.index(this);a.abort();if(b.collapsible)if(f.hasClass("ui-tabs-selected")){b.selected=-1;b.cookie&&a._cookie(b.selected,b.cookie);a.element.queue("tabs",function(){r(g, +j)}).dequeue("tabs");this.blur();return false}else if(!j.length){b.cookie&&a._cookie(b.selected,b.cookie);a.element.queue("tabs",function(){q(g,l)});a.load(a.anchors.index(this));this.blur();return false}b.cookie&&a._cookie(b.selected,b.cookie);if(l.length){j.length&&a.element.queue("tabs",function(){r(g,j)});a.element.queue("tabs",function(){q(g,l)});a.load(a.anchors.index(this))}else throw"jQuery UI Tabs: Mismatching fragment identifier.";d.browser.msie&&this.blur()});this.anchors.bind("click.tabs", +function(){return false})},destroy:function(){var c=this.options;this.abort();this.element.unbind(".tabs").removeClass("ui-tabs ui-widget ui-widget-content ui-corner-all ui-tabs-collapsible").removeData("tabs");this.list.removeClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all");this.anchors.each(function(){var e=d.data(this,"href.tabs");if(e)this.href=e;var a=d(this).unbind(".tabs");d.each(["href","load","cache"],function(b,h){a.removeData(h+".tabs")})});this.lis.unbind(".tabs").add(this.panels).each(function(){d.data(this, +"destroy.tabs")?d(this).remove():d(this).removeClass("ui-state-default ui-corner-top ui-tabs-selected ui-state-active ui-state-hover ui-state-focus ui-state-disabled ui-tabs-panel ui-widget-content ui-corner-bottom ui-tabs-hide")});c.cookie&&this._cookie(null,c.cookie);return this},add:function(c,e,a){if(a===undefined)a=this.anchors.length;var b=this,h=this.options;e=d(h.tabTemplate.replace(/#\{href\}/g,c).replace(/#\{label\}/g,e));c=!c.indexOf("#")?c.replace("#",""):this._tabId(d("a",e)[0]);e.addClass("ui-state-default ui-corner-top").data("destroy.tabs", +true);var i=d("#"+c);i.length||(i=d(h.panelTemplate).attr("id",c).data("destroy.tabs",true));i.addClass("ui-tabs-panel ui-widget-content ui-corner-bottom ui-tabs-hide");if(a>=this.lis.length){e.appendTo(this.list);i.appendTo(this.list[0].parentNode)}else{e.insertBefore(this.lis[a]);i.insertBefore(this.panels[a])}h.disabled=d.map(h.disabled,function(k){return k>=a?++k:k});this._tabify();if(this.anchors.length==1){h.selected=0;e.addClass("ui-tabs-selected ui-state-active");i.removeClass("ui-tabs-hide"); +this.element.queue("tabs",function(){b._trigger("show",null,b._ui(b.anchors[0],b.panels[0]))});this.load(0)}this._trigger("add",null,this._ui(this.anchors[a],this.panels[a]));return this},remove:function(c){var e=this.options,a=this.lis.eq(c).remove(),b=this.panels.eq(c).remove();if(a.hasClass("ui-tabs-selected")&&this.anchors.length>1)this.select(c+(c+1=c?--h:h});this._tabify();this._trigger("remove", +null,this._ui(a.find("a")[0],b[0]));return this},enable:function(c){var e=this.options;if(d.inArray(c,e.disabled)!=-1){this.lis.eq(c).removeClass("ui-state-disabled");e.disabled=d.grep(e.disabled,function(a){return a!=c});this._trigger("enable",null,this._ui(this.anchors[c],this.panels[c]));return this}},disable:function(c){var e=this.options;if(c!=e.selected){this.lis.eq(c).addClass("ui-state-disabled");e.disabled.push(c);e.disabled.sort();this._trigger("disable",null,this._ui(this.anchors[c],this.panels[c]))}return this}, +select:function(c){if(typeof c=="string")c=this.anchors.index(this.anchors.filter("[href$="+c+"]"));else if(c===null)c=-1;if(c==-1&&this.options.collapsible)c=this.options.selected;this.anchors.eq(c).trigger(this.options.event+".tabs");return this},load:function(c){var e=this,a=this.options,b=this.anchors.eq(c)[0],h=d.data(b,"load.tabs");this.abort();if(!h||this.element.queue("tabs").length!==0&&d.data(b,"cache.tabs"))this.element.dequeue("tabs");else{this.lis.eq(c).addClass("ui-state-processing"); +if(a.spinner){var i=d("span",b);i.data("label.tabs",i.html()).html(a.spinner)}this.xhr=d.ajax(d.extend({},a.ajaxOptions,{url:h,success:function(k,n){d(e._sanitizeSelector(b.hash)).html(k);e._cleanup();a.cache&&d.data(b,"cache.tabs",true);e._trigger("load",null,e._ui(e.anchors[c],e.panels[c]));try{a.ajaxOptions.success(k,n)}catch(m){}},error:function(k,n){e._cleanup();e._trigger("load",null,e._ui(e.anchors[c],e.panels[c]));try{a.ajaxOptions.error(k,n,c,b)}catch(m){}}}));e.element.dequeue("tabs");return this}}, +abort:function(){this.element.queue([]);this.panels.stop(false,true);this.element.queue("tabs",this.element.queue("tabs").splice(-2,2));if(this.xhr){this.xhr.abort();delete this.xhr}this._cleanup();return this},url:function(c,e){this.anchors.eq(c).removeData("cache.tabs").data("load.tabs",e);return this},length:function(){return this.anchors.length}});d.extend(d.ui.tabs,{version:"1.8.2"});d.extend(d.ui.tabs.prototype,{rotation:null,rotate:function(c,e){var a=this,b=this.options,h=a._rotate||(a._rotate= +function(i){clearTimeout(a.rotation);a.rotation=setTimeout(function(){var k=b.selected;a.select(++k").addClass("ui-effects-wrapper").css({fontSize:"100%",background:"transparent",border:"none",margin:0,padding:0});c.wrap(b);b=c.parent();if(c.css("position")=="static"){b.css({position:"relative"});c.css({position:"relative"})}else{f.extend(a,{position:c.css("position"),zIndex:c.css("z-index")});f.each(["top","left","bottom","right"],function(d,e){a[e]=c.css(e);if(isNaN(parseInt(a[e],10)))a[e]="auto"}); +c.css({position:"relative",top:0,left:0})}return b.css(a).show()},removeWrapper:function(c){if(c.parent().is(".ui-effects-wrapper"))return c.parent().replaceWith(c);return c},setTransition:function(c,a,b,d){d=d||{};f.each(a,function(e,g){unit=c.cssUnit(g);if(unit[0]>0)d[g]=unit[0]*b+unit[1]});return d}});f.fn.extend({effect:function(c){var a=j.apply(this,arguments);a={options:a[1],duration:a[2],callback:a[3]};var b=f.effects[c];return b&&!f.fx.off?b.call(this,a):this},_show:f.fn.show,show:function(c){if(!c|| +typeof c=="number"||f.fx.speeds[c])return this._show.apply(this,arguments);else{var a=j.apply(this,arguments);a[1].mode="show";return this.effect.apply(this,a)}},_hide:f.fn.hide,hide:function(c){if(!c||typeof c=="number"||f.fx.speeds[c])return this._hide.apply(this,arguments);else{var a=j.apply(this,arguments);a[1].mode="hide";return this.effect.apply(this,a)}},__toggle:f.fn.toggle,toggle:function(c){if(!c||typeof c=="number"||f.fx.speeds[c]||typeof c=="boolean"||f.isFunction(c))return this.__toggle.apply(this, +arguments);else{var a=j.apply(this,arguments);a[1].mode="toggle";return this.effect.apply(this,a)}},cssUnit:function(c){var a=this.css(c),b=[];f.each(["em","px","%","pt"],function(d,e){if(a.indexOf(e)>0)b=[parseFloat(a),e]});return b}});f.easing.jswing=f.easing.swing;f.extend(f.easing,{def:"easeOutQuad",swing:function(c,a,b,d,e){return f.easing[f.easing.def](c,a,b,d,e)},easeInQuad:function(c,a,b,d,e){return d*(a/=e)*a+b},easeOutQuad:function(c,a,b,d,e){return-d*(a/=e)*(a-2)+b},easeInOutQuad:function(c, +a,b,d,e){if((a/=e/2)<1)return d/2*a*a+b;return-d/2*(--a*(a-2)-1)+b},easeInCubic:function(c,a,b,d,e){return d*(a/=e)*a*a+b},easeOutCubic:function(c,a,b,d,e){return d*((a=a/e-1)*a*a+1)+b},easeInOutCubic:function(c,a,b,d,e){if((a/=e/2)<1)return d/2*a*a*a+b;return d/2*((a-=2)*a*a+2)+b},easeInQuart:function(c,a,b,d,e){return d*(a/=e)*a*a*a+b},easeOutQuart:function(c,a,b,d,e){return-d*((a=a/e-1)*a*a*a-1)+b},easeInOutQuart:function(c,a,b,d,e){if((a/=e/2)<1)return d/2*a*a*a*a+b;return-d/2*((a-=2)*a*a*a-2)+ +b},easeInQuint:function(c,a,b,d,e){return d*(a/=e)*a*a*a*a+b},easeOutQuint:function(c,a,b,d,e){return d*((a=a/e-1)*a*a*a*a+1)+b},easeInOutQuint:function(c,a,b,d,e){if((a/=e/2)<1)return d/2*a*a*a*a*a+b;return d/2*((a-=2)*a*a*a*a+2)+b},easeInSine:function(c,a,b,d,e){return-d*Math.cos(a/e*(Math.PI/2))+d+b},easeOutSine:function(c,a,b,d,e){return d*Math.sin(a/e*(Math.PI/2))+b},easeInOutSine:function(c,a,b,d,e){return-d/2*(Math.cos(Math.PI*a/e)-1)+b},easeInExpo:function(c,a,b,d,e){return a==0?b:d*Math.pow(2, +10*(a/e-1))+b},easeOutExpo:function(c,a,b,d,e){return a==e?b+d:d*(-Math.pow(2,-10*a/e)+1)+b},easeInOutExpo:function(c,a,b,d,e){if(a==0)return b;if(a==e)return b+d;if((a/=e/2)<1)return d/2*Math.pow(2,10*(a-1))+b;return d/2*(-Math.pow(2,-10*--a)+2)+b},easeInCirc:function(c,a,b,d,e){return-d*(Math.sqrt(1-(a/=e)*a)-1)+b},easeOutCirc:function(c,a,b,d,e){return d*Math.sqrt(1-(a=a/e-1)*a)+b},easeInOutCirc:function(c,a,b,d,e){if((a/=e/2)<1)return-d/2*(Math.sqrt(1-a*a)-1)+b;return d/2*(Math.sqrt(1-(a-=2)* +a)+1)+b},easeInElastic:function(c,a,b,d,e){c=1.70158;var g=0,h=d;if(a==0)return b;if((a/=e)==1)return b+d;g||(g=e*0.3);if(h").attr("id", this.id || "").html("" + this.text + "").appendTo(parent); + if (this.classes) { + current.children("span").addClass(this.classes); + } + if (this.expanded) { + current.addClass("open"); + } + if (this.hasChildren || this.children && this.children.length) { + var branch = $("
      ").appendTo(current); + if (this.hasChildren) { + current.addClass("hasChildren"); + createNode.call({ + text:"placeholder", + id:"placeholder", + children:[] + }, branch); + } + if (this.children && this.children.length) { + $.each(this.children, createNode, [branch]) + } + } + } + $.each(response, createNode, [child]); + $(container).treeview({add: child}); + }); +} + +var proxied = $.fn.treeview; +$.fn.treeview = function(settings) { + if (!settings.url) { + return proxied.apply(this, arguments); + } + var container = this; + load(settings, "source", this, container); + var userToggle = settings.toggle; + return proxied.call(this, $.extend({}, settings, { + collapsed: true, + toggle: function() { + var $this = $(this); + if ($this.hasClass("hasChildren")) { + var childList = $this.removeClass("hasChildren").find("ul"); + childList.empty(); + load(settings, this.id, childList, container); + } + if (userToggle) { + userToggle.apply(this, arguments); + } + } + })); +}; + +})(jQuery); \ No newline at end of file diff --git a/docbook-xsl-1.76.1/webhelp/docs/common/jquery/treeview/jquery.treeview.css b/docbook-xsl-1.76.1/webhelp/docs/common/jquery/treeview/jquery.treeview.css new file mode 100644 index 0000000..dbf425b --- /dev/null +++ b/docbook-xsl-1.76.1/webhelp/docs/common/jquery/treeview/jquery.treeview.css @@ -0,0 +1,85 @@ +.treeview, .treeview ul { + padding: 0; + margin: 0; + list-style: none; +} + +.treeview ul { + background-color: white; + margin-top: 4px; +} + +.treeview .hitarea { + background: url(images/treeview-default.gif) -64px -25px no-repeat; + height: 16px; + width: 16px; + margin-left: -16px; + float: left; + cursor: pointer; +} +/* fix for IE6 */ +* html .hitarea { + display: inline; + float:none; +} + +.treeview li { + margin: 0; + padding: 3px 0 3px 16px; +} + +.treeview a.selected { + background-color: #eee; +} + +#treecontrol { margin: 1em 0; display: none; } + +.treeview .hover { color: red; cursor: pointer; } + +.treeview li { background: url(images/treeview-default-line.gif) 0 0 no-repeat; } +.treeview li.collapsable, .treeview li.expandable { background-position: 0 -176px; } + +.treeview .expandable-hitarea { background-position: -80px -3px; } + +.treeview li.last { background-position: 0 -1766px } +.treeview li.lastCollapsable, .treeview li.lastExpandable { background-image: url(images/treeview-default.gif); } +.treeview li.lastCollapsable { background-position: 0 -111px } +.treeview li.lastExpandable { background-position: -32px -67px } + +.treeview div.lastCollapsable-hitarea, .treeview div.lastExpandable-hitarea { background-position: 0; } + +.treeview-red li { background-image: url(images/treeview-red-line.gif); } +.treeview-red .hitarea, .treeview-red li.lastCollapsable, .treeview-red li.lastExpandable { background-image: url(images/treeview-red.gif); } + +.treeview-black li { background-image: url(images/treeview-black-line.gif); } +.treeview-black .hitarea, .treeview-black li.lastCollapsable, .treeview-black li.lastExpandable { background-image: url(images/treeview-black.gif); } + +.treeview-gray li { background-image: url(images/treeview-gray-line.gif); } +.treeview-gray .hitarea, .treeview-gray li.lastCollapsable, .treeview-gray li.lastExpandable { background-image: url(images/treeview-gray.gif); } + +.treeview-famfamfam li { background-image: url(images/treeview-famfamfam-line.gif); } +.treeview-famfamfam .hitarea, .treeview-famfamfam li.lastCollapsable, .treeview-famfamfam li.lastExpandable { background-image: url(images/treeview-famfamfam.gif); } + + +.filetree li { padding: 3px 0 2px 16px; } +.filetree span.folder, .filetree span.file { padding: 1px 0 1px 16px; display: block; } +.filetree span.folder { background: url(images/folder.gif) 0 0 no-repeat; } +.filetree li.expandable span.folder { background: url(images/folder-closed.gif) 0 0 no-repeat; } +.filetree span.file { background: url(images/file.gif) 0 0 no-repeat; } + +html, body {height:100%; margin: 0; padding: 0; } + +/* +html>body { + font-size: 16px; + font-size: 68.75%; +} Reset Base Font Size */ + /* +body { + font-family: Verdana, helvetica, arial, sans-serif; + font-size: 68.75%; + background: #fff; + color: #333; +} */ + +a img { border: none; } \ No newline at end of file diff --git a/docbook-xsl-1.76.1/webhelp/docs/common/jquery/treeview/jquery.treeview.js b/docbook-xsl-1.76.1/webhelp/docs/common/jquery/treeview/jquery.treeview.js new file mode 100644 index 0000000..248e725 --- /dev/null +++ b/docbook-xsl-1.76.1/webhelp/docs/common/jquery/treeview/jquery.treeview.js @@ -0,0 +1,255 @@ +/* + * Treeview 1.4 - jQuery plugin to hide and show branches of a tree + * + * http://bassistance.de/jquery-plugins/jquery-plugin-treeview/ + * http://docs.jquery.com/Plugins/Treeview + * + * Copyright (c) 2007 Jörn Zaefferer + * + * Dual licensed under the MIT and GPL licenses: + * http://www.opensource.org/licenses/mit-license.php + * http://www.gnu.org/licenses/gpl.html + * + * Revision: $Id: jquery.treeview.js 4684 2008-02-07 19:08:06Z joern.zaefferer $ + * + */ + +;(function($) { + + $.extend($.fn, { + swapClass: function(c1, c2) { + var c1Elements = this.filter('.' + c1); + this.filter('.' + c2).removeClass(c2).addClass(c1); + c1Elements.removeClass(c1).addClass(c2); + return this; + }, + replaceClass: function(c1, c2) { + return this.filter('.' + c1).removeClass(c1).addClass(c2).end(); + }, + hoverClass: function(className) { + className = className || "hover"; + return this.hover(function() { + $(this).addClass(className); + }, function() { + $(this).removeClass(className); + }); + }, + heightToggle: function(animated, callback) { + animated ? + this.animate({ height: "toggle" }, animated, callback) : + this.each(function(){ + jQuery(this)[ jQuery(this).is(":hidden") ? "show" : "hide" ](); + if(callback) + callback.apply(this, arguments); + }); + }, + heightHide: function(animated, callback) { + if (animated) { + this.animate({ height: "hide" }, animated, callback); + } else { + this.hide(); + if (callback) + this.each(callback); + } + }, + prepareBranches: function(settings) { + if (!settings.prerendered) { + // mark last tree items + this.filter(":last-child:not(ul)").addClass(CLASSES.last); + // collapse whole tree, or only those marked as closed, anyway except those marked as open + this.filter((settings.collapsed ? "" : "." + CLASSES.closed) + ":not(." + CLASSES.open + ")").find(">ul").hide(); + } + // return all items with sublists + return this.filter(":has(>ul)"); + }, + applyClasses: function(settings, toggler) { + this.filter(":has(>ul):not(:has(>a))").find(">span").click(function(event) { + toggler.apply($(this).next()); + }).add( $("a", this) ).hoverClass(); + + if (!settings.prerendered) { + // handle closed ones first + this.filter(":has(>ul:hidden)") + .addClass(CLASSES.expandable) + .replaceClass(CLASSES.last, CLASSES.lastExpandable); + + // handle open ones + this.not(":has(>ul:hidden)") + .addClass(CLASSES.collapsable) + .replaceClass(CLASSES.last, CLASSES.lastCollapsable); + + // create hitarea + this.prepend("
      ").find("div." + CLASSES.hitarea).each(function() { + var classes = ""; + $.each($(this).parent().attr("class").split(" "), function() { + classes += this + "-hitarea "; + }); + $(this).addClass( classes ); + }); + } + + // apply event to hitarea + this.find("div." + CLASSES.hitarea).click( toggler ); + }, + treeview: function(settings) { + + if(typeof(window.treeCookieId) !== 'undefined' || window.treeCookieId === ""){ + treeCookieId = "treeview"; + } + + settings = $.extend({ + cookieId: treeCookieId + }, settings); + + if (settings.add) { + return this.trigger("add", [settings.add]); + } + + if ( settings.toggle ) { + var callback = settings.toggle; + settings.toggle = function() { + return callback.apply($(this).parent()[0], arguments); + }; + } + + // factory for treecontroller + function treeController(tree, control) { + // factory for click handlers + function handler(filter) { + return function() { + // reuse toggle event handler, applying the elements to toggle + // start searching for all hitareas + toggler.apply( $("div." + CLASSES.hitarea, tree).filter(function() { + // for plain toggle, no filter is provided, otherwise we need to check the parent element + return filter ? $(this).parent("." + filter).length : true; + }) ); + return false; + }; + } + // click on first element to collapse tree + $("a:eq(0)", control).click( handler(CLASSES.collapsable) ); + // click on second to expand tree + $("a:eq(1)", control).click( handler(CLASSES.expandable) ); + // click on third to toggle tree + $("a:eq(2)", control).click( handler() ); + } + + // handle toggle event + function toggler() { + $(this) + .parent() + // swap classes for hitarea + .find(">.hitarea") + .swapClass( CLASSES.collapsableHitarea, CLASSES.expandableHitarea ) + .swapClass( CLASSES.lastCollapsableHitarea, CLASSES.lastExpandableHitarea ) + .end() + // swap classes for parent li + .swapClass( CLASSES.collapsable, CLASSES.expandable ) + .swapClass( CLASSES.lastCollapsable, CLASSES.lastExpandable ) + // find child lists + .find( ">ul" ) + // toggle them + .heightToggle( settings.animated, settings.toggle ); + if ( settings.unique ) { + $(this).parent() + .siblings() + // swap classes for hitarea + .find(">.hitarea") + .replaceClass( CLASSES.collapsableHitarea, CLASSES.expandableHitarea ) + .replaceClass( CLASSES.lastCollapsableHitarea, CLASSES.lastExpandableHitarea ) + .end() + .replaceClass( CLASSES.collapsable, CLASSES.expandable ) + .replaceClass( CLASSES.lastCollapsable, CLASSES.lastExpandable ) + .find( ">ul" ) + .heightHide( settings.animated, settings.toggle ); + } + } + //Cookie Persistence + function serialize() { + function binary(arg) { + return arg ? 1 : 0; + } + var data = []; + branches.each(function(i, e) { + data[i] = $(e).is(":has(>ul:visible)") ? 1 : 0; + }); + $.cookie(settings.cookieId, data.join("") ); + } + + function deserialize() { + var stored = $.cookie(settings.cookieId); + if ( stored ) { + var data = stored.split(""); + branches.each(function(i, e) { + $(e).find(">ul")[ parseInt(data[i]) ? "show" : "hide" ](); + }); + } + } + + // add treeview class to activate styles + this.addClass("treeview"); + + // prepare branches and find all tree items with child lists + var branches = this.find("li").prepareBranches(settings); + + switch(settings.persist) { + case "cookie": + var toggleCallback = settings.toggle; + settings.toggle = function() { + serialize(); + if (toggleCallback) { + toggleCallback.apply(this, arguments); + } + }; + deserialize(); + break; + case "location": + var current = this.find("a").filter(function() { return this.href.toLowerCase() == location.href.toLowerCase(); }); + if ( current.length ) { + current.addClass("selected").parents("ul, li").add( current.next() ).show(); + } + break; + } + + branches.applyClasses(settings, toggler); + + // if control option is set, create the treecontroller and show it + if ( settings.control ) { + treeController(this, settings.control); + $(settings.control).show(); + } + + return this.bind("add", function(event, branches) { + $(branches).prev() + .removeClass(CLASSES.last) + .removeClass(CLASSES.lastCollapsable) + .removeClass(CLASSES.lastExpandable) + .find(">.hitarea") + .removeClass(CLASSES.lastCollapsableHitarea) + .removeClass(CLASSES.lastExpandableHitarea); + $(branches).find("li").andSelf().prepareBranches(settings).applyClasses(settings, toggler); + }); + } + }); + + // classes used by the plugin + // need to be styled via external stylesheet, see first example + var CLASSES = $.fn.treeview.classes = { + open: "open", + closed: "closed", + expandable: "expandable", + expandableHitarea: "expandable-hitarea", + lastExpandableHitarea: "lastExpandable-hitarea", + collapsable: "collapsable", + collapsableHitarea: "collapsable-hitarea", + lastCollapsableHitarea: "lastCollapsable-hitarea", + lastCollapsable: "lastCollapsable", + lastExpandable: "lastExpandable", + last: "last", + hitarea: "hitarea" + }; + + // provide backwards compability + $.fn.Treeview = $.fn.treeview; + +})(jQuery); \ No newline at end of file diff --git a/docbook-xsl-1.76.1/webhelp/docs/common/jquery/treeview/jquery.treeview.min.js b/docbook-xsl-1.76.1/webhelp/docs/common/jquery/treeview/jquery.treeview.min.js new file mode 100644 index 0000000..e693321 --- /dev/null +++ b/docbook-xsl-1.76.1/webhelp/docs/common/jquery/treeview/jquery.treeview.min.js @@ -0,0 +1,16 @@ +/* + * Treeview 1.4 - jQuery plugin to hide and show branches of a tree + * + * http://bassistance.de/jquery-plugins/jquery-plugin-treeview/ + * http://docs.jquery.com/Plugins/Treeview + * + * Copyright (c) 2007 Jörn Zaefferer + * + * Dual licensed under the MIT and GPL licenses: + * http://www.opensource.org/licenses/mit-license.php + * http://www.gnu.org/licenses/gpl.html + * + * Revision: $Id: jquery.treeview.js 4684 2008-02-07 19:08:06Z joern.zaefferer $ + * kasunbg: changed the cookieid name + * + */;(function($){$.extend($.fn,{swapClass:function(c1,c2){var c1Elements=this.filter('.'+c1);this.filter('.'+c2).removeClass(c2).addClass(c1);c1Elements.removeClass(c1).addClass(c2);return this;},replaceClass:function(c1,c2){return this.filter('.'+c1).removeClass(c1).addClass(c2).end();},hoverClass:function(className){className=className||"hover";return this.hover(function(){$(this).addClass(className);},function(){$(this).removeClass(className);});},heightToggle:function(animated,callback){animated?this.animate({height:"toggle"},animated,callback):this.each(function(){jQuery(this)[jQuery(this).is(":hidden")?"show":"hide"]();if(callback)callback.apply(this,arguments);});},heightHide:function(animated,callback){if(animated){this.animate({height:"hide"},animated,callback);}else{this.hide();if(callback)this.each(callback);}},prepareBranches:function(settings){if(!settings.prerendered){this.filter(":last-child:not(ul)").addClass(CLASSES.last);this.filter((settings.collapsed?"":"."+CLASSES.closed)+":not(."+CLASSES.open+")").find(">ul").hide();}return this.filter(":has(>ul)");},applyClasses:function(settings,toggler){this.filter(":has(>ul):not(:has(>a))").find(">span").click(function(event){toggler.apply($(this).next());}).add($("a",this)).hoverClass();if(!settings.prerendered){this.filter(":has(>ul:hidden)").addClass(CLASSES.expandable).replaceClass(CLASSES.last,CLASSES.lastExpandable);this.not(":has(>ul:hidden)").addClass(CLASSES.collapsable).replaceClass(CLASSES.last,CLASSES.lastCollapsable);this.prepend("
      ").find("div."+CLASSES.hitarea).each(function(){var classes="";$.each($(this).parent().attr("class").split(" "),function(){classes+=this+"-hitarea ";});$(this).addClass(classes);});}this.find("div."+CLASSES.hitarea).click(toggler);},treeview:function(settings){if(typeof(window.treeCookieId) === 'undefined' || window.treeCookieId === ""){treeCookieId = "treeview";} settings=$.extend({cookieId: treeCookieId},settings);if(settings.add){return this.trigger("add",[settings.add]);}if(settings.toggle){var callback=settings.toggle;settings.toggle=function(){return callback.apply($(this).parent()[0],arguments);};}function treeController(tree,control){function handler(filter){return function(){toggler.apply($("div."+CLASSES.hitarea,tree).filter(function(){return filter?$(this).parent("."+filter).length:true;}));return false;};}$("a:eq(0)",control).click(handler(CLASSES.collapsable));$("a:eq(1)",control).click(handler(CLASSES.expandable));$("a:eq(2)",control).click(handler());}function toggler(){$(this).parent().find(">.hitarea").swapClass(CLASSES.collapsableHitarea,CLASSES.expandableHitarea).swapClass(CLASSES.lastCollapsableHitarea,CLASSES.lastExpandableHitarea).end().swapClass(CLASSES.collapsable,CLASSES.expandable).swapClass(CLASSES.lastCollapsable,CLASSES.lastExpandable).find(">ul").heightToggle(settings.animated,settings.toggle);if(settings.unique){$(this).parent().siblings().find(">.hitarea").replaceClass(CLASSES.collapsableHitarea,CLASSES.expandableHitarea).replaceClass(CLASSES.lastCollapsableHitarea,CLASSES.lastExpandableHitarea).end().replaceClass(CLASSES.collapsable,CLASSES.expandable).replaceClass(CLASSES.lastCollapsable,CLASSES.lastExpandable).find(">ul").heightHide(settings.animated,settings.toggle);}}function serialize(){function binary(arg){return arg?1:0;}var data=[];branches.each(function(i,e){data[i]=$(e).is(":has(>ul:visible)")?1:0;});$.cookie(settings.cookieId,data.join(""));}function deserialize(){var stored=$.cookie(settings.cookieId);if(stored){var data=stored.split("");branches.each(function(i,e){$(e).find(">ul")[parseInt(data[i])?"show":"hide"]();});}}this.addClass("treeview");var branches=this.find("li").prepareBranches(settings);switch(settings.persist){case"cookie":var toggleCallback=settings.toggle;settings.toggle=function(){serialize();if(toggleCallback){toggleCallback.apply(this,arguments);}};deserialize();break;case"location":var current=this.find("a").filter(function(){return this.href.toLowerCase()==location.href.toLowerCase();});if(current.length){current.addClass("selected").parents("ul, li").add(current.next()).show();}break;}branches.applyClasses(settings,toggler);if(settings.control){treeController(this,settings.control);$(settings.control).show();}return this.bind("add",function(event,branches){$(branches).prev().removeClass(CLASSES.last).removeClass(CLASSES.lastCollapsable).removeClass(CLASSES.lastExpandable).find(">.hitarea").removeClass(CLASSES.lastCollapsableHitarea).removeClass(CLASSES.lastExpandableHitarea);$(branches).find("li").andSelf().prepareBranches(settings).applyClasses(settings,toggler);});}});var CLASSES=$.fn.treeview.classes={open:"open",closed:"closed",expandable:"expandable",expandableHitarea:"expandable-hitarea",lastExpandableHitarea:"lastExpandable-hitarea",collapsable:"collapsable",collapsableHitarea:"collapsable-hitarea",lastCollapsableHitarea:"lastCollapsable-hitarea",lastCollapsable:"lastCollapsable",lastExpandable:"lastExpandable",last:"last",hitarea:"hitarea"};$.fn.Treeview=$.fn.treeview;})(jQuery); \ No newline at end of file diff --git a/docbook-xsl-1.76.1/webhelp/docs/common/jquery/treeview/jquery.treeview.pack.js b/docbook-xsl-1.76.1/webhelp/docs/common/jquery/treeview/jquery.treeview.pack.js new file mode 100644 index 0000000..eddac49 --- /dev/null +++ b/docbook-xsl-1.76.1/webhelp/docs/common/jquery/treeview/jquery.treeview.pack.js @@ -0,0 +1,16 @@ +/* + * Treeview 1.4 - jQuery plugin to hide and show branches of a tree + * + * http://bassistance.de/jquery-plugins/jquery-plugin-treeview/ + * http://docs.jquery.com/Plugins/Treeview + * + * Copyright (c) 2007 Jörn Zaefferer + * + * Dual licensed under the MIT and GPL licenses: + * http://www.opensource.org/licenses/mit-license.php + * http://www.gnu.org/licenses/gpl.html + * + * Revision: $Id: jquery.treeview.js 4684 2008-02-07 19:08:06Z joern.zaefferer $ + * + */ +eval(function(p,a,c,k,e,r){e=function(c){return(c35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}(';(4($){$.1l($.F,{E:4(b,c){l a=3.n(\'.\'+b);3.n(\'.\'+c).o(c).m(b);a.o(b).m(c);8 3},s:4(a,b){8 3.n(\'.\'+a).o(a).m(b).P()},1n:4(a){a=a||"1j";8 3.1j(4(){$(3).m(a)},4(){$(3).o(a)})},1h:4(b,a){b?3.1g({1e:"p"},b,a):3.x(4(){T(3)[T(3).1a(":U")?"H":"D"]();7(a)a.A(3,O)})},12:4(b,a){7(b){3.1g({1e:"D"},b,a)}1L{3.D();7(a)3.x(a)}},11:4(a){7(!a.1k){3.n(":r-1H:G(9)").m(k.r);3.n((a.1F?"":"."+k.X)+":G(."+k.W+")").6(">9").D()}8 3.n(":y(>9)")},S:4(b,c){3.n(":y(>9):G(:y(>a))").6(">1z").C(4(a){c.A($(3).19())}).w($("a",3)).1n();7(!b.1k){3.n(":y(>9:U)").m(k.q).s(k.r,k.t);3.G(":y(>9:U)").m(k.u).s(k.r,k.v);3.1r("").6("J."+k.5).x(4(){l a="";$.x($(3).B().1o("14").13(" "),4(){a+=3+"-5 "});$(3).m(a)})}3.6("J."+k.5).C(c)},z:4(g){g=$.1l({N:"z"},g);7(g.w){8 3.1K("w",[g.w])}7(g.p){l d=g.p;g.p=4(){8 d.A($(3).B()[0],O)}}4 1m(b,c){4 L(a){8 4(){K.A($("J."+k.5,b).n(4(){8 a?$(3).B("."+a).1i:1I}));8 1G}}$("a:10(0)",c).C(L(k.u));$("a:10(1)",c).C(L(k.q));$("a:10(2)",c).C(L())}4 K(){$(3).B().6(">.5").E(k.Z,k.Y).E(k.I,k.M).P().E(k.u,k.q).E(k.v,k.t).6(">9").1h(g.1f,g.p);7(g.1E){$(3).B().1D().6(">.5").s(k.Z,k.Y).s(k.I,k.M).P().s(k.u,k.q).s(k.v,k.t).6(">9").12(g.1f,g.p)}}4 1d(){4 1C(a){8 a?1:0}l b=[];j.x(4(i,e){b[i]=$(e).1a(":y(>9:1B)")?1:0});$.V(g.N,b.1A(""))}4 1c(){l b=$.V(g.N);7(b){l a=b.13("");j.x(4(i,e){$(e).6(">9")[1y(a[i])?"H":"D"]()})}}3.m("z");l j=3.6("Q").11(g);1x(g.1w){18"V":l h=g.p;g.p=4(){1d();7(h){h.A(3,O)}};1c();17;18"1b":l f=3.6("a").n(4(){8 3.16.15()==1b.16.15()});7(f.1i){f.m("1v").1u("9, Q").w(f.19()).H()}17}j.S(g,K);7(g.R){1m(3,g.R);$(g.R).H()}8 3.1t("w",4(a,b){$(b).1s().o(k.r).o(k.v).o(k.t).6(">.5").o(k.I).o(k.M);$(b).6("Q").1q().11(g).S(g,K)})}});l k=$.F.z.1J={W:"W",X:"X",q:"q",Y:"q-5",M:"t-5",u:"u",Z:"u-5",I:"v-5",v:"v",t:"t",r:"r",5:"5"};$.F.1p=$.F.z})(T);',62,110,'|||this|function|hitarea|find|if|return|ul||||||||||||var|addClass|filter|removeClass|toggle|expandable|last|replaceClass|lastExpandable|collapsable|lastCollapsable|add|each|has|treeview|apply|parent|click|hide|swapClass|fn|not|show|lastCollapsableHitarea|div|toggler|handler|lastExpandableHitarea|cookieId|arguments|end|li|control|applyClasses|jQuery|hidden|cookie|open|closed|expandableHitarea|collapsableHitarea|eq|prepareBranches|heightHide|split|class|toLowerCase|href|break|case|next|is|location|deserialize|serialize|height|animated|animate|heightToggle|length|hover|prerendered|extend|treeController|hoverClass|attr|Treeview|andSelf|prepend|prev|bind|parents|selected|persist|switch|parseInt|span|join|visible|binary|siblings|unique|collapsed|false|child|true|classes|trigger|else'.split('|'),0,{})) \ No newline at end of file diff --git a/docbook-xsl-1.76.1/webhelp/docs/common/main.js b/docbook-xsl-1.76.1/webhelp/docs/common/main.js new file mode 100644 index 0000000..dee7303 --- /dev/null +++ b/docbook-xsl-1.76.1/webhelp/docs/common/main.js @@ -0,0 +1,161 @@ +/** + * Miscellaneous js functions for WebHelp + * Kasun Gajasinghe, http://kasunbg.blogspot.com + * David Cramer, http://www.thingbag.net + * + */ + +$(document).ready(function() { + // $("#showHideHighlight").button(); //add jquery button styling to 'Go' button + //Generate tabs in nav-pane with JQuery + $(function() { + $("#tabs").tabs({ + cookie: { + // store cookie for 2 days. + expires: 2 + } + }); + }); + + //Generate the tree + $("#ulTreeDiv").attr("style",""); + $("#tree").treeview({ + collapsed: true, + animated: "medium", + control: "#sidetreecontrol", + persist: "cookie" + }); + + //after toc fully styled, display it. Until loading, a 'loading' image will be displayed + $("#tocLoading").attr("style","display:none;"); +// $("#ulTreeDiv").attr("style","display:block;"); + + //.searchButton is the css class applied to 'Go' button + $(function() { + $("button", ".searchButton").button(); + + $("button", ".searchButton").click(function() { return false; }); + }); + + //'ui-tabs-1' is the cookie name which is used for the persistence of the tabs.(Content/Search tab) + if ($.cookie('ui-tabs-1') === '1') { //search tab is visible + if ($.cookie('textToSearch') != undefined && $.cookie('textToSearch').length > 0) { + document.getElementById('textToSearch').value = $.cookie('textToSearch'); + Verifie('diaSearch_Form'); + searchHighlight($.cookie('textToSearch')); + $("#showHideHighlight").css("display","block"); + } + } + + syncToc(); //Synchronize the toc tree with the content pane, when loading the page. + //$("#doSearch").button(); //add jquery button styling to 'Go' button +}); + +/** + * Synchronize with the tableOfContents + */ +function syncToc(){ + var a = document.getElementById("webhelp-currentid"); + if (a != undefined) { + var b = a.getElementsByTagName("a")[0]; + + if (b != undefined) { + //Setting the background for selected node. + var style = a.getAttribute("style"); + if (style != null && !style.match(/background-color: Background;/)) { + a.setAttribute("style", "background-color: #6495ed; " + style); + b.setAttribute("style", "color: white;"); + } else if (style != null) { + a.setAttribute("style", "background-color: #6495ed; " + style); + b.setAttribute("style", "color: white;"); + } else { + a.setAttribute("style", "background-color: #6495ed; "); + b.setAttribute("style", "color: white;"); + } + } + + //shows the node related to current content. + //goes a recursive call from current node to ancestor nodes, displaying all of them. + while (a.parentNode && a.parentNode.nodeName) { + var parentNode = a.parentNode; + var nodeName = parentNode.nodeName; + + if (nodeName.toLowerCase() == "ul") { + parentNode.setAttribute("style", "display: block;"); + } else if (nodeName.toLocaleLowerCase() == "li") { + parentNode.setAttribute("class", "collapsable"); + parentNode.firstChild.setAttribute("class", "hitarea collapsable-hitarea "); + } + a = parentNode; + } + } +} + +/** + * Code for Show/Hide TOC + * + */ +function showHideToc() { + var showHideButton = $("#showHideButton"); + var leftNavigation = $("#leftnavigation"); + var content = $("#content"); + + if (showHideButton != undefined && showHideButton.hasClass("pointLeft")) { + //Hide TOC + showHideButton.removeClass('pointLeft').addClass('pointRight'); + content.css("margin", "0 0 0 0"); + leftNavigation.css("display","none"); + showHideButton.attr("title", "Show the TOC tree"); + } else { + //Show the TOC + showHideButton.removeClass('pointRight').addClass('pointLeft'); + content.css("margin", "0 0 0 280px"); + leftNavigation.css("display","block"); + showHideButton.attr("title", "Hide the TOC Tree"); + } +} + +/** + * Code for searh highlighting + */ +var highlightOn = true; +function searchHighlight(searchText) { + highlightOn = true; + if (searchText != undefined) { + var wList; + var sList = new Array(); //stem list + //Highlight the search terms + searchText = searchText.toLowerCase().replace(/<\//g, "_st_").replace(/\$_/g, "_di_").replace(/\.|%2C|%3B|%21|%3A|@|\/|\*/g, " ").replace(/(%20)+/g, " ").replace(/_st_/g, " + + + +Chapter 1. Introduction

      Chapter 1. Introduction

      Abstract

      Overview of the package.

      A common requirement for technical publications groups is to produce a Web-based help + format that includes a table of contents pane, a search feature, and an index similar to what + you get from the Microsoft HTML Help (.chm) format or Eclipse help. If the content is help for + a Web application that is not exposed to the Internet or requires that the user be logged in, + then it is impossible to use services like Google to add search. +

      Features

      • Full text search.

        • Stemming support for English, French, and German. Stemming support can be added + for other languages by implementing a stemmer.

        • Support for Chinese, Japanese, and Korean using code from the Lucene search + engine.

        • Search highlighting shows where the searched for term appears in the results. + Use the H button to toggle the highlighting off and on. +

        • Search results can include brief descriptions of the target.

      • Table of contents pane with collapsible toc tree.

      • Auto-synchronization of content pane and TOC.

      • TOC and search pane implemented without the use of a frameset.

      • An Ant build.xml file to generate output. You can use this + build file by importing it into your own or use it as a model for integrating this + output format into your own build system.

      +

      Possible future enhancements

      • Move webhelp-specific parameters and gentext strings into base DocBook stylesheets. +

      • Use tabindex attributes to control the tab + order in the output. The Contents and Search tabs should be first and second, then the + search box and button, then the table of contents items, and so on.

      • Add "Expand all" and "Collapse all" buttons to the table of contents.

      • Add other search options:

        • Add an option to use Lucene for server-side searches with table of contents + state persisted on the server.

        • Add a simple form that uses a Google site:my.domain.com based search.

      • Sort search results based on relevance

      • Support wild card characters in the search query.

      • Parameterize width of the TOC pane OR make the TOC pane resizeable by the + user.

      • Automate search results summary text:

        • Automatically use the first non-heading content as the summary in the search + results.

        • Automatically limit the size of the search description to something 140 + characters.

      • Support boolean operators in search.

      • Parameterize list of files to exclude from indexing. Currently it's hard coded that + we don't index index.html and ix01.html (the + legal notice and index topics). It should be smarter and automatically not index the + index file even if it's not named ix01.html.

      • Improve performance by moving the table of contents div out of each page and into a + separate JavaScript file which then adds it to the page.

      • Add to the indexer the ability to specify a list of files or file patterns not to + index. Currently it does not index index.html or + ix01.html, which is generally appropriate, but it should be up to + the user to decide.

      • Add an index tab populated by a separate JavaScript file. Include a param/property + that allows the content creator to disable the index.

      • Add functionality to the build.xml file so that when a property + is set, the build generates a pdf version of the document and includes a link to it from + the header.

      • Add breadcrumbs so the user will know what topics he's been to.

      • Consider using more advanced Lucene indexers for Chinese and Japanese than the + CJKAnalyzer

      diff --git a/docbook-xsl-1.76.1/webhelp/docs/content/ch02.html b/docbook-xsl-1.76.1/webhelp/docs/content/ch02.html new file mode 100644 index 0000000..d7f7def --- /dev/null +++ b/docbook-xsl-1.76.1/webhelp/docs/content/ch02.html @@ -0,0 +1,32 @@ + + + + +Chapter 2. Using the package

      Chapter 2. Using the package

      The following sections describe how to install and + use the package on Windows.

      diff --git a/docbook-xsl-1.76.1/webhelp/docs/content/ch02s01.html b/docbook-xsl-1.76.1/webhelp/docs/content/ch02s01.html new file mode 100644 index 0000000..0b7c930 --- /dev/null +++ b/docbook-xsl-1.76.1/webhelp/docs/content/ch02s01.html @@ -0,0 +1,117 @@ + + + + +Generating webhelp output

      Generating webhelp output

      Abstract

      Installation instructions

      Procedure 2.1. To install the package on Windows

      Note

      The examples in this procedure assume a Windows installation, + but the process is the same in other environments, + mutatis mutandis.

      1. If necessary, install Java 1.6 or + higher.

        1. Confirm that Java is installed and in your + PATH by typing the following at a command prompt: +

          java -version

          Note

          To build the indexer, you must have the JDK.

      2. If necessary, install Apache Ant 1.6.5 + or higher.

        1. Unzip the Ant binary distribution to a convenient location + on your system. For example: c:\Program + Files.

        2. Set the environment variable ANT_HOME to + the top-level Ant directory. For example: c:\Program + Files\apache-ant-1.7.1.

          Tip

          See How To Manage + Environment Variables in Windows XP for information + on setting environment variables.

        3. Add the Ant bin directory to your + PATH. For example: c:\Program + Files\apache-ant-1.7.1\bin

        4. Confirm that Ant is installed by typing the following at a + command prompt:

          ant -version

          Note

          If you see a message about the file + tools.jar being missing, you can safely + ignore it.

      3. Download Saxon + 6.5.x and unzip the distribution to a convenient location on your file system. + You will use the path to saxon.jar in Step 4 below.

        Note

        The build.xml has only been tested with Saxon 6.5, though + it could be adapted to work with other XSLT processors. However, when you generate + output, the Saxon jar must not be in your + CLASSPATH.

      4. In a text editor, edit the + build.properties file in the webhelp directory + and make the changes indicated by the comments:

        # The path (relative to the build.xml file) to your input document.
        +# To use your own input document, create a build.xml file of your own
        +# and import this build.xml.
        +input-xml=docsrc/readme.xml
        +
        +# The directory in which to put the output files. 
        +# This directory is created if it does not exist.
        +output-dir=docs
        +
        +# If you are using a customization layer that imports webhelp.xsl, use
        +# this property to point to it. 
        +stylesheet-path=${ant.file.dir}/xsl/webhelp.xsl
        +
        +# If your document has image directories that need to be copied
        +# to the output directory, you can list patterns here. 
        +# See the Ant documentation for fileset for documentation
        +# on patterns.
        +#input-images-dirs=images/**,figures/**,graphics/**
        +
        +# By default, the ant script assumes your images are stored
        +# in the same directory as the input-xml. If you store your
        +# image directories in another directory, specify it here.
        +# and uncomment this line.
        +#input-images-basedir=/path/to/image/location
        +
        +# Modify this so that it points to your copy of the Saxon 6.5 jar.
        +xslt-processor-classpath=/usr/share/java/saxon-6.5.5.jar
        +
        +# For non-ns version only, this validates the document 
        +# against a dtd.
        +validate-against-dtd=true
        +
        +# Set this to false if you don't need a search tab.
        +webhelp.include.search.tab=true
        +
        +# indexer-language is used to tell the search indexer which language
        +# the docbook is written.  This will be used to identify the correct
        +# stemmer, and punctuations that differs from language to language.
        +# see the documentation for details. en=English, fr=French, de=German,
        +# zh=Chinese, ja=Japanese etc.  
        +webhelp.indexer.language=en
      5. Test the package by running the command ant webhelp + -Doutput-dir=test-ouput at the command line in the webhelp directory. It should + generate a copy of this documentation in the doc + directory. Type start test-output\index.html to open the output in a + browser. Once you have confirmed that the process worked, you can delete the test-output directory.

        Important

        The Saxon 6.5 jar should not be in your + CLASSPATH when you generate the webhelp output. If you have any + problems, try running ant with an empty CLASSPATH.

      6. To process your own document, simply refer to this package + from another build.xml in arbitrary location on + your system:

        1. Create a new build.xml file that + defines the name of your source file, the desired output + directory, and imports the build.xml from + this package. For example:

          <project>
          +  <property name="input-xml" value="path-to/yourfile.xml"/>
          +  <property name="input-images-dirs" value="images/** figures/** graphics/**"/>
          +  <property name="output-dir" value="path-to/desired-output-dir"/>
          +  <import file="path-to/docbook-webhelp/build.xml"/>
          +</project>
        2. From the directory containing your newly created + build.xml file, type ant + webhelp to build your document.

          Important

          The Saxon 6.5 jar should not be in your + CLASSPATH when you generate the webhelp output. If you have any + problems, try running ant with an empty CLASSPATH.

      diff --git a/docbook-xsl-1.76.1/webhelp/docs/content/ch02s02.html b/docbook-xsl-1.76.1/webhelp/docs/content/ch02s02.html new file mode 100644 index 0000000..091e67c --- /dev/null +++ b/docbook-xsl-1.76.1/webhelp/docs/content/ch02s02.html @@ -0,0 +1,102 @@ + + + + +Using and customizing the output

      Using and customizing the output

      To deep link to a topic inside the help set, simply link directly + to the page. This help system uses no frameset, so nothing further is + necessary.

      Tip

      See Chunking into + multiple HTML files in Bob Stayton's DocBook XSL: The + Complete Guide for information on controlling output file + names and which files are chunked in DocBook.

      When you perform a search, the results can include brief + summaries. These are populated in one of two ways:

      • By adding role="summary" to a + para or phrase in the + chapter or section.

      • By adding an abstract to the + chapterinfo or sectioninfo + element.

      To customize the look and feel of the help, study the following + css files:

      • docs/common/css/positioning.css: This + handles the Positioning of DIVs in appropriate positions. For + example, it causes the leftnavigation div to appear + on the left, the header on top, and so on. Use this if you need to + change the relative positions or need to change the width/height + etc.

      • docs/common/jquery/theme-redmond/jquery-ui-1.8.2.custom.css: + This is the theming part which adds colors and stuff. This is a + default theme comes with jqueryui unchanged. You + can get any theme based your interest from this. (Themes are on + right navigation bar.) Then replace the css theme folder + (theme-redmond) with it, and change the xsl to point to the new + css.

      • docs/common/jquery/treeview/jquery.treeview.css: + This styles the toc Tree. Generally, you don't have to edit this + file.

      Recommended Apache configurations

      If you are serving a long document from an Apache web server, we + recommend you make the following additions or changes to your + httpd.conf or .htaccess + file. TODO: Explain what each thing + does.

      AddDefaultCharSet UTF-8 # 1
      +  
      +      # 480 weeks
      +      <FilesMatch "\.(ico|pdf|flv|jpg|jpeg|png|gif|js|css|swf)$"> # 2
      +      Header set Cache-Control "max-age=290304000, public"
      +      </FilesMatch>
      +      
      +      # 2 DAYS
      +      <FilesMatch "\.(xml|txt)$">
      +      Header set Cache-Control "max-age=172800, public, must-revalidate"
      +      </FilesMatch>
      +      
      +      # 2 HOURS
      +      <FilesMatch "\.(html|htm)$">
      +      Header set Cache-Control "max-age=7200, must-revalidate"
      +      </FilesMatch>
      +      
      +      # compress text, html, javascript, css, xml:
      +      AddOutputFilterByType DEFLATE text/plain # 3
      +      AddOutputFilterByType DEFLATE text/html
      +      AddOutputFilterByType DEFLATE text/xml
      +      AddOutputFilterByType DEFLATE text/css
      +      AddOutputFilterByType DEFLATE application/xml
      +      AddOutputFilterByType DEFLATE application/xhtml+xml
      +      AddOutputFilterByType DEFLATE application/rss+xml
      +      AddOutputFilterByType DEFLATE application/javascript
      +      AddOutputFilterByType DEFLATE application/x-javascript
      +      
      +      # Or, compress certain file types by extension:
      +      <Files *.html> 
      +      SetOutputFilter DEFLATE
      +      </Files>
      +      

      1

      See Odd + characters in HTML output in Bob Stayton's book + DocBook XSL: The Complete Guide for more + information about this setting.

      2

      These lines and those that follow cause the browser to + cache various resources such as bitmaps and JavaScript files. + Note that caching JavaScript files could cause your users to + have stale search indexes if you update your document since the + search index is stored in JavaScript files.

      3

      These lines cause the the server to compress html, css, + and JavaScript files and the brower to uncompress them to + improve download performance.

      diff --git a/docbook-xsl-1.76.1/webhelp/docs/content/ch02s03.html b/docbook-xsl-1.76.1/webhelp/docs/content/ch02s03.html new file mode 100644 index 0000000..4e0efde --- /dev/null +++ b/docbook-xsl-1.76.1/webhelp/docs/content/ch02s03.html @@ -0,0 +1,36 @@ + + + + +Building the indexer

      Building the indexer

      To build the indexer, you must have installed the + JDK version 1.5 or higher and set the ANT_HOME + environment variable. Run ant build-indexer to recompile + nw-cms.jar

      diff --git a/docbook-xsl-1.76.1/webhelp/docs/content/ch02s04.html b/docbook-xsl-1.76.1/webhelp/docs/content/ch02s04.html new file mode 100644 index 0000000..d3ba7e8 --- /dev/null +++ b/docbook-xsl-1.76.1/webhelp/docs/content/ch02s04.html @@ -0,0 +1,42 @@ + + + + +Adding support for other (non-CJKV) languages

      Adding support for other (non-CJKV) languages

      To support stemming for a language, the search mechanism requires + a stemmer implemented in both Java and JavaScript. The Java version is + used by the indexer and the JavaScript verison is used to stem the + user's input on the search form. Currently the search mechanism supports + stemming for English and German. In addition, Java stemmers are included + for the following languages. Therefore, to support these languages, you + only need to implement the stemmer in JavaScript and add it to the + template. If you do undertake this task, please consider contributing + the JavaScript version back to this project and to Martin + Porter's project.

      • Danish

      • Dutch

      • Finnish

      • Hungarian

      • Italian

      • Norwegian

      • Portuguese

      • Romanian

      • Russian

      • Spanish

      • Swedish

      • Turkish

      diff --git a/docbook-xsl-1.76.1/webhelp/docs/content/ch03.html b/docbook-xsl-1.76.1/webhelp/docs/content/ch03.html new file mode 100644 index 0000000..0e608fd --- /dev/null +++ b/docbook-xsl-1.76.1/webhelp/docs/content/ch03.html @@ -0,0 +1,37 @@ + + + + +Chapter 3. Developer Docs

      Chapter 3. Developer Docs

      This chapter provides an overview of how webhelp is implemented.

      The table of contents and search panes are implemented as divs and + rendered as if they were the left pane in a frameset. As a result, the + page must save the state of the table of contents and the search in + cookies when you navigate away from a page. When you load a new page, the + page reads these cookies and restores the state of the table of contents + tree and search. The result is that the help system behaves exactly as if + it were a frameset.

      diff --git a/docbook-xsl-1.76.1/webhelp/docs/content/ch03s01.html b/docbook-xsl-1.76.1/webhelp/docs/content/ch03s01.html new file mode 100644 index 0000000..f41f801 --- /dev/null +++ b/docbook-xsl-1.76.1/webhelp/docs/content/ch03s01.html @@ -0,0 +1,62 @@ + + + + +Design

      Design

      An overview of webhelp page structure.

      DocBook WebHelp page structure is fully built on css-based design + abandoning frameset structure. Overall page structure can be divided in to three main sections +

      • Header: Header is a separate Div which include company logo, + navigation button(prev, next etc.), page title and heading of parent topic.

      • Content: This includes the content of the documentation. The processing of this part is + done by + DocBook XSL Chunking customization. Few further css-styling applied from + positioning.css. +

      • Left Navigation: This includes the table of contents and search tab. This + is customized using jquery-ui styling.

        • Tabbed Navigation: The navigation pane is organized in to two tabs. + Contents tab, and Search tab. Tabbed output is achieved using + JQuery Tabs plugin. +

        • Table of Contents (TOC) tree: When building the chunked html from the + docbook file, Table of Contents is generated as an Unordered List (a list + made from <ul> <li> tags). When page loads in the browser, + we apply styling to it to achieve the nice look that you see. Styling for TOC + tree is done by a JQuery UI plugin called + + TreeView. We can generate the tree easily by following javascript code: + +

          +//Generate the tree
          +$("#tree").treeview({
          +collapsed: true,
          +animated: "medium",
          +control: "#sidetreecontrol",
          +persist: "cookie"
          +});
          +

          +

        • Search Tab: This includes the search feature.

      +

      diff --git a/docbook-xsl-1.76.1/webhelp/docs/content/ch03s02.html b/docbook-xsl-1.76.1/webhelp/docs/content/ch03s02.html new file mode 100644 index 0000000..c4ba872 --- /dev/null +++ b/docbook-xsl-1.76.1/webhelp/docs/content/ch03s02.html @@ -0,0 +1,124 @@ + + + + +Search

      Search

      Overview design of Search mechanism.

      + The searching is a fully client-side implementation of querying texts for + content searching, and no server is involved. That means when a user enters a query, + it is processed by JavaScript inside the browser, and displays the matching results by + comparing the query with a generated 'index', which too reside in the client-side web browser. + + Mainly the search mechanism has two parts. +

      • Indexing: First we need to traverse the content in the docs/content folder and index + the words in it. This is done by nw-cms.jar. You can invoke it by + ant index command from the root of webhelp of directory. You can recompile it + again and build the jar file by ant build-indexer. Indexer has some extensive + support for such as stemming of words. Indexer has extensive support for English, German, + French languages. By extensive support, what I meant is that those texts are stemmed + first, to get the root word and then indexes them. For CJK (Chinese, Japanese, Korean) + languages, it uses bi-gram tokenizing to break up the words. (CJK languages does not have + spaces between words.) +

        + When we run ant index, it generates five output files: +

        • htmlFileList.js - This contains an array named fl which stores details + all the files indexed by the indexer. +

        • htmlFileInfoList.js - This includes some meta data about the indexed files in an array + named fil. It includes details about file name, file (html) title, a summary + of the content.Format would look like, + fil["4"]= "ch03.html@@@Developer Docs@@@This chapter provides an overview of how webhelp is implemented."; +

        • index-*.js (Three index files) - These three files actually stores the index of the content. + Index is added to an array named w.

        + +

      • + Querying: Query processing happens totally in client side. Following JavaScript files handles them. +

        • nwSearchFnt.js - This handles the user query and returns the search results. It does query + word tokenizing, drop unnecessary punctuations and common words, do stemming if docbook language + supports it, etc.

        • {$indexer-language-code}_stemmer.js - This includes the stemming library. + nwSearchFnt.js file calls stemmer method in this file for stemming. + ex: var stem = stemmer(foobar); +

        +

      +

      New Stemmers

      Adding new Stemmers is very simple.

      Currently, only English, French, and German stemmers are integrated in to WebHelp. But the code is + extensible such that you can add new stemmers easily by few steps.

      What you need: +

      • You'll need two versions of the stemmer; One written in JavaScript, and another in Java. But fortunately, + Snowball contains Java stemmers for number of popular languages, and are already included with the package. + You can see the full list in Adding support for other (non-CJKV) languages. + If your language is listed there, + Then you have to find javascript version of the stemmer. Generally, new stemmers are getting added in to + Snowball Stemmers in other languages location. + If javascript stemmer for your language is available, then download it. Else, you can write a new stemmer in + JavaScript using SnowBall algorithm fairly easily. Algorithms are at + Snowball. +

      • Then, name the JS stemmer exactly like this: {$language-code}_stemmer.js. For example, + for Italian(it), name it as, it_stemmer.js. Then, copy it to the + docbook-webhelp/template/content/search/stemmers/ folder. (I assumed + docbook-webhelp is the root folder for webhelp.) +

        Note

        Make sure you changed the webhelp.indexer.language property in build.properties + to your language. +

        + +

      • Now two easy changes needed for the indexer.

        • Open docbook-webhelp/indexer/src/com/nexwave/nquindexer/IndexerTask.java in + a text editor and add your language code to the supportedLanguages String Array.

          Example 3.1. Add new language to supportedLanguages array

          + change the Array from, +

          +private String[] supportedLanguages= {"en", "de", "fr", "cn", "ja", "ko"}; 
          +    //currently extended support available for
          +    // English, German, French and CJK (Chinese, Japanese, Korean) languages only.
          +

          + To,

          +private String[] supportedLanguages= {"en", "de", "fr", "cn", "ja", "ko", "it"}; 
          +  //currently extended support available for
          +  // English, German, French, CJK (Chinese, Japanese, Korean), and Italian languages only.
          +                    

        • + Now, open docbook-webhelp/indexer/src/com/nexwave/nquindexer/SaxHTMLIndex.java and + add the following line to the code where it initializes the Stemmer (Search for + SnowballStemmer stemmer;). Then add code to initialize the stemmer Object in your language. + It's self understandable. See the example. The class names are at: + docbook-webhelp/indexer/src/com/nexwave/stemmer/snowball/ext/. +

          Example 3.2. initialize correct stemmer based on the webhelp.indexer.language specified

          +      SnowballStemmer stemmer;
          +      if(indexerLanguage.equalsIgnoreCase("en")){
          +           stemmer = new EnglishStemmer();
          +      } else if (indexerLanguage.equalsIgnoreCase("de")){
          +          stemmer= new GermanStemmer();
          +      } else if (indexerLanguage.equalsIgnoreCase("fr")){
          +          stemmer= new FrenchStemmer();
          +      }
          +else if (indexerLanguage.equalsIgnoreCase("it")){ //If language code is "it" (Italian)
          +          stemmer= new italianStemmer();  //Initialize the stemmer to italianStemmer object.
          +      }       
          +      else {
          +          stemmer = null;
          +      }
          +

      +

      That's all. Now run ant build-indexer to compile and build the java code. + Then, run ant webhelp to generate the output from your docbook file. + For any questions, contact us or email to the docbook mailing list + . +

      diff --git a/docbook-xsl-1.76.1/webhelp/docs/content/index.html b/docbook-xsl-1.76.1/webhelp/docs/content/index.html new file mode 100644 index 0000000..54ae642 --- /dev/null +++ b/docbook-xsl-1.76.1/webhelp/docs/content/index.html @@ -0,0 +1,71 @@ + + + + +README: Web-based Help from DocBook XML

      README: Web-based Help from DocBook XML

      Kasun Gajasinghe

      Permission is hereby granted, free of charge, to any person + obtaining a copy of this software and associated documentation files + (the “Softwareâ€), to deal in the Software without + restriction, including without limitation the rights to use, copy, + modify, merge, publish, distribute, sublicense, and/or sell copies of + the Software, and to permit persons to whom the Software is furnished to + do so, subject to the following conditions:

      • The above copyright notice and this permission notice shall + be included in all copies or substantial portions of the + Software.

      • Except as contained in this notice, the names of individuals + credited with contribution to this software shall not be used in + advertising or otherwise to promote the sale, use or other + dealings in this Software without prior written authorization from + the individuals in question.

      • Any stylesheet derived from this Software that is publicly + distributed will be identified with a different name and the + version strings in any derived Software will be changed so that no + possibility of confusion between the derived package and this + Software will exist.

      Warranty: THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL DAVID CRAMER, KASUN GAJASINGHE, OR ANY OTHER CONTRIBUTOR BE LIABLE FOR + ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF + CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

      This package is maintained by Kasun Gajasinghe, and David Cramer, .

      This package also includes the following software written and + copyrighted by others:

      • Files in template/common/jquery are + copyrighted by JQuery + under the MIT License. The file + jquery.cookie.js Copyright (c) 2006 Klaus + Hartl under the MIT license.

      • Some files in the template/content/search and indexer directories were originally + part of N. Quaine's htmlsearch DITA plugin. The htmlsearch DITA + plugin is available from the files + page of the DITA-users yahoogroup. The htmlsearch plugin + was released under a BSD-style license. See + indexer/license.txt for details.

      • Stemmers from the Snowball + project released under a BSD license.

      • Code from the Apache + Lucene search engine provides support for tokenizing + Chinese, Japanese, and Korean content released under the Apache + 2.0 license.

      + Webhelp for DocBook was developed as a Google Summer of Code project. +

      August 2010


      diff --git a/docbook-xsl-1.76.1/webhelp/docs/content/search/htmlFileInfoList.js b/docbook-xsl-1.76.1/webhelp/docs/content/search/htmlFileInfoList.js new file mode 100644 index 0000000..4517cb8 --- /dev/null +++ b/docbook-xsl-1.76.1/webhelp/docs/content/search/htmlFileInfoList.js @@ -0,0 +1,10 @@ +fil = new Array(); +fil["0"]= "ch01.html@@@Chapter 1. Introduction@@@Overview of the package."; +fil["1"]= "ch02.html@@@Chapter 2. Using the package@@@The following sections describe how to install and use the package on Windows."; +fil["2"]= "ch02s01.html@@@Generating webhelp output@@@Installation instructions"; +fil["3"]= "ch02s02.html@@@Using and customizing the output@@@null"; +fil["4"]= "ch02s03.html@@@Building the indexer@@@To build the indexer, you must have installed the JDK version 1.5 or higher and set the ANT_HOME environment variable. Run ant build-indexer to recompile nw-cms.jar"; +fil["5"]= "ch02s04.html@@@Adding support for other (non-CJKV) languages@@@null"; +fil["6"]= "ch03.html@@@Chapter 3. Developer Docs@@@This chapter provides an overview of how webhelp is implemented."; +fil["7"]= "ch03s01.html@@@Design@@@An overview of webhelp page structure."; +fil["8"]= "ch03s02.html@@@Search@@@Adding new Stemmers is very simple."; diff --git a/docbook-xsl-1.76.1/webhelp/docs/content/search/htmlFileList.js b/docbook-xsl-1.76.1/webhelp/docs/content/search/htmlFileList.js new file mode 100644 index 0000000..c09eccf --- /dev/null +++ b/docbook-xsl-1.76.1/webhelp/docs/content/search/htmlFileList.js @@ -0,0 +1,11 @@ +//List of files which are indexed. +fl = new Array(); +fl["0"]= "ch01.html"; +fl["1"]= "ch02.html"; +fl["2"]= "ch02s01.html"; +fl["3"]= "ch02s02.html"; +fl["4"]= "ch02s03.html"; +fl["5"]= "ch02s04.html"; +fl["6"]= "ch03.html"; +fl["7"]= "ch03s01.html"; +fl["8"]= "ch03s02.html"; diff --git a/docbook-xsl-1.76.1/webhelp/docs/content/search/index-1.js b/docbook-xsl-1.76.1/webhelp/docs/content/search/index-1.js new file mode 100644 index 0000000..8af5f1e --- /dev/null +++ b/docbook-xsl-1.76.1/webhelp/docs/content/search/index-1.js @@ -0,0 +1,224 @@ +var indexerLanguage="en"; +//Auto generated index for searching. +w["-"]="8"; +w["-doutput-dir"]="2"; +w["-version"]="2"; +w["1"]="0,2,4,8"; +w["140"]="0"; +w["172800"]="3"; +w["2"]="1,2,3,8"; +w["290304000"]="3"; +w["3"]="6,8"; +w["4"]="2,8"; +w["480"]="3"; +w["5"]="2,4"; +w["6"]="2"; +w["7"]="2"; +w["7200"]="3"; +w["8"]="3"; +w["_stemmer"]="8"; +w["abandon"]="7"; +w["abil"]="0"; +w["abstract"]="0,2,3"; +w["achiev"]="7"; +w["actual"]="8"; +w["ad"]="0,1,3,5,8"; +w["adapt"]="2"; +w["add"]="0,2,3,5,8"; +w["adddefaultcharset"]="3"; +w["addit"]="3,5"; +w["addoutputfilterbytyp"]="3"; +w["advanc"]="0"; +w["again"]="8"; +w["against"]="2"; +w["algorithm"]="8"; +w["all"]="0,8"; +w["allow"]="0"; +w["alreadi"]="8"; +w["and"]="0,1,2,3,4,5,6,7,8"; +w["ani"]="2,3,8"; +w["anim"]="7"; +w["anoth"]="2,8"; +w["ant"]="0,2,4,8"; +w["ant_hom"]="2,4"; +w["apach"]="1,2,3"; +w["apache-ant-1"]="2"; +w["appear"]="0,3"; +w["appli"]="7"; +w["applic"]="0,3"; +w["appropri"]="0,3"; +w["arbitrari"]="2"; +w["array"]="8"; +w["assum"]="2,8"; +w["attribut"]="0"; +w["auto-synchron"]="0"; +w["autom"]="0"; +w["automat"]="0"; +w["avail"]="8"; +w["away"]="6"; +w["back"]="5"; +w["bar"]="3"; +w["base"]="0,3,8"; +w["be"]="2"; +w["been"]="0,2"; +w["behav"]="6"; +w["below"]="2"; +w["between"]="8"; +w["bi-gram"]="8"; +w["bin"]="2"; +w["binari"]="2"; +w["bitmap"]="3"; +w["bob"]="3"; +w["book"]="3"; +w["boolean"]="0"; +w["both"]="5"; +w["box"]="0"; +w["breadcrumb"]="0"; +w["break"]="8"; +w["brief"]="0,3"; +w["brower"]="3"; +w["browser"]="2,3,7,8"; +w["build"]="0,1,2,4,7,8"; +w["build-index"]="4,8"; +w["built"]="7"; +w["but"]="0,2,8"; +w["button"]="0,7"; +w["c"]="2"; +w["cach"]="3"; +w["cache-control"]="3"; +w["call"]="7,8"; +w["can"]="0,2,3,7,8"; +w["card"]="0"; +w["caus"]="3"; +w["certain"]="3"; +w["ch03"]="8"; +w["chang"]="2,3,8"; +w["chapter"]="0,1,3,6,8"; +w["chapterinfo"]="3"; +w["charact"]="0,3"; +w["chines"]="0,2,8"; +w["chm"]="0"; +w["chunk"]="3,7"; +w["cjk"]="8"; +w["cjkanalyz"]="0"; +w["class"]="8"; +w["classpath"]="2"; +w["client"]="8"; +w["client-sid"]="8"; +w["cn"]="8"; +w["code"]="0,7,8"; +w["collaps"]="0,7"; +w["color"]="3"; +w["come"]="3"; +w["command"]="2,8"; +w["comment"]="2"; +w["common"]="0,3,8"; +w["compani"]="7"; +w["compar"]="8"; +w["compil"]="8"; +w["complet"]="3"; +w["compress"]="3"; +w["conf"]="3"; +w["configur"]="1,3"; +w["confirm"]="2"; +w["consid"]="0,5"; +w["contact"]="8"; +w["contain"]="2,8"; +w["content"]="0,1,6,7,8"; +w["contribut"]="5"; +w["control"]="0,3,7"; +w["conveni"]="2"; +w["cooki"]="6,7"; +w["copi"]="2,8"; +w["correct"]="2,8"; +w["could"]="2,3"; +w["creat"]="2"; +w["creator"]="0"; +w["css"]="3,7"; +w["css-base"]="7"; +w["css-style"]="7"; +w["current"]="0,5,8"; +w["custom"]="1,2,3,7"; +w["danish"]="5"; +w["data"]="8"; +w["day"]="3"; +w["decid"]="0"; +w["deep"]="3"; +w["default"]="2,3"; +w["defin"]="2"; +w["deflat"]="3"; +w["delet"]="2"; +w["describ"]="1"; +w["descript"]="0"; +w["design"]="6,7,8"; +w["desir"]="2"; +w["desired-output-dir"]="2"; +w["detail"]="2,8"; +w["develop"]="6"; +w["differ"]="2"; +w["dir"]="2"; +w["direct"]="3"; +w["directori"]="2,8"; +w["disabl"]="0"; +w["display"]="8"; +w["distribut"]="2"; +w["div"]="0,3,6,7"; +w["divid"]="7"; +w["do"]="5,8"; +w["doc"]="2,3,6,8"; +w["docbook"]="0,2,3,7,8"; +w["docbook-apps@list"]="8"; +w["docbook-webhelp"]="2,8"; +w["docs@@@"]="8"; +w["docsrc"]="2"; +w["document"]="0,2,3,7"; +w["doe"]="0,2,3,8"; +w["domain"]="0"; +w["don"]="0,2,3"; +w["done"]="7,8"; +w["download"]="2,3,8"; +w["drop"]="8"; +w["dtd"]="2"; +w["dutch"]="5"; +w["each"]="0,3"; +w["easi"]="8"; +w["easili"]="7,8"; +w["eclips"]="0"; +w["edit"]="2,3"; +w["editor"]="2,8"; +w["element"]="3"; +w["els"]="8"; +w["email"]="8"; +w["empti"]="2"; +w["engin"]="0"; +w["english"]="0,2,5,8"; +w["englishstemm"]="8"; +w["enhanc"]="0"; +w["enter"]="8"; +w["environ"]="2,4"; +w["equalsignorecas"]="8"; +w["etc"]="2,3,7,8"; +w["even"]="0"; +w["ex"]="8"; +w["exact"]="6,8"; +w["exampl"]="2,3,8"; +w["exclud"]="0"; +w["exist"]="2"; +w["expand"]="0"; +w["explain"]="3"; +w["expos"]="0"; +w["ext"]="8"; +w["extend"]="8"; +w["extens"]="3,8"; +w["fair"]="8"; +w["fals"]="2"; +w["featur"]="0,7"; +w["feel"]="3"; +w["few"]="7,8"; +w["figur"]="2"; +w["fil"]="8"; +w["file"]="0,2,3,7,8"; +w["fileset"]="2"; +w["filesmatch"]="3"; +w["find"]="8"; + diff --git a/docbook-xsl-1.76.1/webhelp/docs/content/search/index-2.js b/docbook-xsl-1.76.1/webhelp/docs/content/search/index-2.js new file mode 100644 index 0000000..ebab219 --- /dev/null +++ b/docbook-xsl-1.76.1/webhelp/docs/content/search/index-2.js @@ -0,0 +1,223 @@ +//Auto generated index for searching. +w["finnish"]="5"; +w["first"]="0,8"; +w["five"]="8"; +w["fl"]="8"; +w["flv"]="3"; +w["folder"]="3,8"; +w["follow"]="1,2,3,5,7,8"; +w["foobar"]="8"; +w["form"]="0,5"; +w["format"]="0,8"; +w["fortun"]="8"; +w["fr"]="2,8"; +w["frameset"]="0,3,6,7"; +w["french"]="0,2,8"; +w["frenchstemm"]="8"; +w["full"]="0,8"; +w["fulli"]="7,8"; +w["function"]="0"; +w["further"]="3,7"; +w["futur"]="0"; +w["general"]="0,3,8"; +w["generat"]="0,1,2,7,8"; +w["gentext"]="0"; +w["german"]="0,2,5,8"; +w["germanstemm"]="8"; +w["get"]="0,3,8"; +w["gif"]="3"; +w["googl"]="0"; +w["graphic"]="2"; +w["group"]="0"; +w["guid"]="3"; +w["h"]="0"; +w["handl"]="3,8"; +w["happen"]="8"; +w["hard"]="0"; +w["has"]="2,8"; +w["have"]="2,3,4,8"; +w["he"]="0"; +w["head"]="7"; +w["header"]="0,3,7"; +w["height"]="3"; +w["help"]="0,3,6"; +w["here"]="2"; +w["higher"]="2,4"; +w["highlight"]="0"; +w["hour"]="3"; +w["howev"]="2"; +w["htaccess"]="3"; +w["htm"]="3"; +w["html"]="0,2,3,7,8"; +w["html@@@develop"]="8"; +w["htmlfileinfolist"]="8"; +w["htmlfilelist"]="8"; +w["httpd"]="3"; +w["hungarian"]="5"; +w["ico"]="3"; +w["identifi"]="2"; +w["if"]="0,2,3,5,6,8"; +w["ignor"]="2"; +w["imag"]="2"; +w["implement"]="0,5,6,8"; +w["import"]="0,2"; +w["imposs"]="0"; +w["improv"]="0,3"; +w["includ"]="0,2,3,5,7,8"; +w["index"]="0,1,2,3,4,5,8"; +w["index-"]="8"; +w["indexer-languag"]="2"; +w["indexer-language-cod"]="8"; +w["indexerlanguag"]="8"; +w["indexertask"]="8"; +w["indic"]="2"; +w["inform"]="2,3"; +w["initi"]="8"; +w["input"]="2,5"; +w["input-images-basedir"]="2"; +w["input-images-dir"]="2"; +w["input-xml"]="2"; +w["insid"]="3,8"; +w["instal"]="1,2,4"; +w["instruct"]="2"; +w["integr"]="0,8"; +w["interest"]="3"; +w["internet"]="0"; +w["into"]="0,3"; +w["introduct"]="0"; +w["invok"]="8"; +w["involv"]="8"; +w["it_stemm"]="8"; +w["italian"]="5,8"; +w["italianstemm"]="8"; +w["item"]="0"; +w["ix01"]="0"; +w["ja"]="2,8"; +w["japanes"]="0,2,8"; +w["jar"]="2,4,8"; +w["java"]="2,5,8"; +w["javascript"]="0,3,5,7,8"; +w["jdk"]="2,4"; +w["jpeg"]="3"; +w["jpg"]="3"; +w["jqueri"]="3,7"; +w["jquery-ui"]="7"; +w["jquery-ui-1"]="3"; +w["jqueryui"]="3"; +w["js"]="3,8"; +w["know"]="0"; +w["ko"]="8"; +w["korean"]="0,8"; +w["languag"]="0,1,2,5,8"; +w["language-cod"]="8"; +w["layer"]="2"; +w["left"]="3,6,7"; +w["leftnavig"]="3"; +w["legal"]="0"; +w["li"]="7"; +w["librari"]="8"; +w["like"]="0,8"; +w["limit"]="0"; +w["line"]="2,3,8"; +w["link"]="0,3"; +w["list"]="0,2,7,8"; +w["ll"]="8"; +w["load"]="6,7"; +w["locat"]="2,8"; +w["log"]="0"; +w["logo"]="7"; +w["long"]="3"; +w["look"]="3,7,8"; +w["lucen"]="0"; +w["made"]="7"; +w["mail"]="8"; +w["main"]="7,8"; +w["make"]="0,2,3,8"; +w["manag"]="2"; +w["martin"]="5"; +w["match"]="8"; +w["max-ag"]="3"; +w["mean"]="8"; +w["meant"]="8"; +w["mechan"]="5,8"; +w["medium"]="7"; +w["messag"]="2"; +w["meta"]="8"; +w["method"]="8"; +w["microsoft"]="0"; +w["miss"]="2"; +w["model"]="0"; +w["modifi"]="2"; +w["more"]="0,3"; +w["move"]="0"; +w["multipl"]="3"; +w["must"]="2,4,6"; +w["must-revalid"]="3"; +w["mutandi"]="2"; +w["mutati"]="2"; +w["my"]="0"; +w["name"]="0,2,3,8"; +w["navig"]="3,6,7"; +w["necessari"]="2,3"; +w["need"]="2,3,5,8"; +w["new"]="2,3,6,8"; +w["newli"]="2"; +w["next"]="7"; +w["nexwav"]="8"; +w["nice"]="7"; +w["no"]="3,8"; +w["non-cjkv"]="1,5,8"; +w["non-head"]="0"; +w["non-n"]="2"; +w["norwegian"]="5"; +w["not"]="0,2,8"; +w["note"]="2,3,8"; +w["noth"]="3"; +w["notic"]="0"; +w["now"]="8"; +w["nquindex"]="8"; +w["null"]="8"; +w["number"]="8"; +w["nw-cms"]="4,8"; +w["nwsearchfnt"]="8"; +w["oasis-open"]="8"; +w["object"]="8"; +w["odd"]="3"; +w["off"]="0"; +w["onc"]="2"; +w["one"]="3,8"; +w["onli"]="2,5,8"; +w["open"]="2,8"; +w["oper"]="0"; +w["option"]="0"; +w["order"]="0"; +w["org"]="8"; +w["organ"]="7"; +w["other"]="0,1,2,5,8"; +w["out"]="0"; +w["output"]="0,1,2,3,7,8"; +w["output-dir"]="2"; +w["overal"]="7"; +w["overview"]="0,6,7,8"; +w["own"]="0,2"; +w["packag"]="0,1,2,8"; +w["page"]="0,3,6,7"; +w["pane"]="0,6,7"; +w["para"]="3"; +w["param"]="0"; +w["paramet"]="0"; +w["parameter"]="0"; +w["parent"]="7"; +w["part"]="3,7,8"; +w["path"]="2"; +w["path-"]="2"; +w["pattern"]="0,2"; +w["pdf"]="0,3"; +w["perform"]="0,3"; +w["persist"]="0,7"; +w["phrase"]="3"; +w["plain"]="3"; +w["pleas"]="5"; +w["plugin"]="7"; +w["png"]="3"; + diff --git a/docbook-xsl-1.76.1/webhelp/docs/content/search/index-3.js b/docbook-xsl-1.76.1/webhelp/docs/content/search/index-3.js new file mode 100644 index 0000000..b71ffe6 --- /dev/null +++ b/docbook-xsl-1.76.1/webhelp/docs/content/search/index-3.js @@ -0,0 +1,221 @@ +//Auto generated index for searching. +w["point"]="2,3"; +w["popul"]="0,3"; +w["popular"]="8"; +w["porter"]="5"; +w["portugues"]="5"; +w["posit"]="3,7"; +w["possibl"]="0"; +w["prev"]="7"; +w["privat"]="8"; +w["problem"]="2"; +w["procedur"]="2"; +w["process"]="2,7,8"; +w["processor"]="2"; +w["produc"]="0"; +w["program"]="2"; +w["project"]="2,5"; +w["prompt"]="2"; +w["properti"]="0,2,8"; +w["provid"]="6,8"; +w["public"]="0,3"; +w["punctuat"]="2,8"; +w["put"]="2"; +w["queri"]="0,8"; +w["question"]="8"; +w["read"]="6"; +w["readm"]="2"; +w["recommend"]="1,3"; +w["recompil"]="4,8"; +w["refer"]="2"; +w["relat"]="2,3"; +w["relev"]="0"; +w["render"]="6"; +w["replac"]="3"; +w["requir"]="0,5"; +w["resid"]="8"; +w["resiz"]="0"; +w["resourc"]="3"; +w["restor"]="6"; +w["result"]="0,3,6,8"; +w["return"]="8"; +w["right"]="3"; +w["role"]="3"; +w["romanian"]="5"; +w["root"]="8"; +w["rss"]="3"; +w["run"]="2,4,8"; +w["russian"]="5"; +w["s"]="0,3,5,8"; +w["safe"]="2"; +w["same"]="2"; +w["save"]="6"; +w["saxhtmlindex"]="8"; +w["saxon"]="2"; +w["saxon-6"]="2"; +w["script"]="2"; +w["search"]="0,2,3,5,6,7,8"; +w["second"]="0"; +w["section"]="1,3,7"; +w["sectioninfo"]="3"; +w["see"]="2,3,7,8"; +w["self"]="8"; +w["separ"]="0,7"; +w["serv"]="3"; +w["server"]="0,3,8"; +w["server-sid"]="0"; +w["servic"]="0"; +w["set"]="0,2,3,4"; +w["setoutputfilt"]="3"; +w["share"]="2"; +w["should"]="0,2"; +w["show"]="0"; +w["side"]="8"; +w["sidetreecontrol"]="7"; +w["similar"]="0"; +w["simpl"]="0,8"; +w["simpli"]="2,3"; +w["sinc"]="3"; +w["site"]="0"; +w["size"]="0"; +w["smarter"]="0"; +w["snowbal"]="8"; +w["snowballstemm"]="8"; +w["so"]="0,2,3"; +w["some"]="8"; +w["someth"]="0"; +w["sort"]="0"; +w["sourc"]="2"; +w["space"]="8"; +w["spanish"]="5"; +w["specifi"]="0,2,8"; +w["src"]="8"; +w["stale"]="3"; +w["start"]="2"; +w["state"]="0,6"; +w["stayton"]="3"; +w["stem"]="0,5,8"; +w["stemmer"]="0,2,5,6,8"; +w["step"]="2,8"; +w["store"]="2,3,8"; +w["string"]="0,8"; +w["structur"]="7"; +w["studi"]="3"; +w["stuff"]="3"; +w["style"]="3,7"; +w["stylesheet"]="0"; +w["stylesheet-path"]="2"; +w["such"]="3,8"; +w["summari"]="0,3,8"; +w["support"]="0,1,5,8"; +w["supportedlanguag"]="8"; +w["sure"]="8"; +w["swedish"]="5"; +w["swf"]="3"; +w["system"]="0,2,3,6"; +w["t"]="0,2,3"; +w["tab"]="0,2,7"; +w["tabindex"]="0"; +w["tabl"]="0,6,7"; +w["tag"]="7"; +w["target"]="0"; +w["task"]="5"; +w["technic"]="0"; +w["tell"]="2"; +w["templat"]="5,8"; +w["term"]="0"; +w["test"]="2"; +w["test-ouput"]="2"; +w["test-output"]="2"; +w["text"]="0,2,3,8"; +w["than"]="0"; +w["them"]="3,8"; +w["theme"]="3"; +w["theme-redmond"]="3"; +w["then"]="0,3,8"; +w["there"]="8"; +w["therefor"]="5"; +w["these"]="3,5,6,8"; +w["they"]="6"; +w["thing"]="3"; +w["those"]="3,8"; +w["though"]="2"; +w["three"]="7,8"; +w["tip"]="2,3"; +w["titl"]="7,8"; +w["toc"]="0,3,7"; +w["todo"]="3"; +w["toggl"]="0"; +w["token"]="8"; +w["too"]="8"; +w["tool"]="2"; +w["top"]="3"; +w["top-level"]="2"; +w["topic"]="0,3,7"; +w["total"]="8"; +w["travers"]="8"; +w["tree"]="0,3,6,7"; +w["treeview"]="3,7"; +w["tri"]="2"; +w["true"]="2,7"; +w["turkish"]="5"; +w["two"]="3,7,8"; +w["txt"]="3"; +w["type"]="2,3"; +w["ui"]="7"; +w["ul"]="7"; +w["unchang"]="3"; +w["uncom"]="2"; +w["uncompress"]="3"; +w["understand"]="8"; +w["undertak"]="5"; +w["unnecessari"]="8"; +w["unord"]="7"; +w["unzip"]="2"; +w["up"]="0,2,3,4,5,7,8"; +w["updat"]="3"; +w["us"]="8"; +w["use"]="0,1,2,3,5,7,8"; +w["user"]="0,3,5,8"; +w["usr"]="2"; +w["utf-8"]="3"; +w["valid"]="2"; +w["validate-against-dtd"]="2"; +w["valu"]="2"; +w["var"]="8"; +w["variabl"]="2,4"; +w["various"]="3"; +w["veri"]="8"; +w["verison"]="5"; +w["version"]="0,2,4,5,8"; +w["w"]="8"; +w["way"]="3"; +w["we"]="0,3,7,8"; +w["web"]="0,3,8"; +w["web-bas"]="0"; +w["webhelp"]="1,2,6,7,8"; +w["webhelp-specif"]="0"; +w["week"]="3"; +w["were"]="6"; +w["which"]="0,2,3,7,8"; +w["width"]="0,3"; +w["wild"]="0"; +w["window"]="1,2"; +w["without"]="0"; +w["word"]="8"; +w["work"]="2"; +w["would"]="8"; +w["write"]="8"; +w["written"]="2,8"; +w["x"]="2"; +w["x-javascript"]="3"; +w["xhtml"]="3"; +w["xml"]="0,2,3"; +w["xp"]="2"; +w["xsl"]="2,3,7"; +w["xslt"]="2"; +w["xslt-processor-classpath"]="2"; +w["you"]="0,2,3,4,5,6,7,8"; +w["your"]="0,2,3,8"; +w["yourfil"]="2"; + diff --git a/docbook-xsl-1.76.1/webhelp/docs/content/search/nwSearchFnt.js b/docbook-xsl-1.76.1/webhelp/docs/content/search/nwSearchFnt.js new file mode 100644 index 0000000..0111559 --- /dev/null +++ b/docbook-xsl-1.76.1/webhelp/docs/content/search/nwSearchFnt.js @@ -0,0 +1,513 @@ +/*---------------------------------------------------------------------------- + * JavaScript for webhelp search + *---------------------------------------------------------------------------- + This file is part of the webhelpsearch plugin for DocBook WebHelp + Copyright (c) 2007-2008 NexWave Solutions All Rights Reserved. + www.nexwave.biz Nadege Quaine + http://kasunbg.blogspot.com/ Kasun Gajasinghe + */ + +//string initialization +var htmlfileList = "htmlFileList.js"; +var htmlfileinfoList = "htmlFileInfoList.js"; +var useCJKTokenizing = false; + +/* Cette fonction verifie la validite de la recherche entrre par l utilisateur */ +function Verifie(ditaSearch_Form) { + + // Check browser compatibitily + if (navigator.userAgent.indexOf("Konquerer") > -1) { + + alert(txt_browser_not_supported); + return; + } + + + var expressionInput = document.ditaSearch_Form.textToSearch.value; + //Set a cookie to store the searched keywords + $.cookie('textToSearch', expressionInput); + + + if (expressionInput.length < 1) { + + // expression is invalid + alert(txt_enter_at_least_1_char); + // reactive la fenetre de search (utile car cadres) + document.ditaSearch_Form.textToSearch.focus(); + } + else { + + // Effectuer la recherche + Effectuer_recherche(expressionInput); + + // reactive la fenetre de search (utile car cadres) + document.ditaSearch_Form.textToSearch.focus(); + } +} + +var stemQueryMap = new Array(); // A hashtable which maps stems to query words + +/* This function parses the search expression, loads the indices and displays the results*/ +function Effectuer_recherche(expressionInput) { + + /* Display a waiting message */ + //DisplayWaitingMessage(); + + /*data initialisation*/ + var searchFor = ""; // expression en lowercase et sans les caracte res speciaux + //w = new Object(); // hashtable, key=word, value = list of the index of the html files + scriptLetterTab = new Scriptfirstchar(); // Array containing the first letter of each word to look for + var wordsList = new Array(); // Array with the words to look for + var finalWordsList = new Array(); // Array with the words to look for after removing spaces + var linkTab = new Array(); + var fileAndWordList = new Array(); + var txt_wordsnotfound = ""; + + + /*nqu: expressionInput, la recherche est lower cased, plus remplacement des char speciaux*/ + searchFor = expressionInput.toLowerCase().replace(/<\//g, "_st_").replace(/\$_/g, "_di_").replace(/\.|%2C|%3B|%21|%3A|@|\/|\*/g, " ").replace(/(%20)+/g, " ").replace(/_st_/g, "= 0; i--) { + if (fileAndWordList[i] != undefined) { + linkTab.push("

      " + txt_results_for + " " + "" + fileAndWordList[i][0].motslisteDisplay + "" + "

      "); + + linkTab.push("
        "); + for (t in fileAndWordList[i]) { + //DEBUG: alert(": "+ fileAndWordList[i][t].filenb+" " +fileAndWordList[i][t].motsliste); + //linkTab.push("
      • "+fl[fileAndWordList[i][t].filenb]+"
      • "); + var tempInfo = fil[fileAndWordList[i][t].filenb]; + var pos1 = tempInfo.indexOf("@@@"); + var pos2 = tempInfo.lastIndexOf("@@@"); + var tempPath = tempInfo.substring(0, pos1); + var tempTitle = tempInfo.substring(pos1 + 3, pos2); + var tempShortdesc = tempInfo.substring(pos2 + 3, tempInfo.length); + + //file:///home/kasun/docbook/WEBHELP/webhelp-draft-output-format-idea/src/main/resources/web/webhelp/installation.html + var linkString = "
      • " + tempTitle + ""; + // var linkString = "
      • " + tempTitle + ""; + if ((tempShortdesc != "null")) { + linkString += "\n
        " + tempShortdesc + "
        "; + } + linkString += "
      • "; + linkTab.push(linkString); + } + linkTab.push("
      "); + } + } + } + + var results = ""; + if (linkTab.length > 0) { + /*writeln ("

      " + txt_results_for + " " + "" + cleanwordsList + "" + "
      "+"

      ");*/ + results = "

      "; + //write("

        "); + for (t in linkTab) { + results += linkTab[t].toString(); + } + results += "

        "; + } else { + results = "

        " + "Your search returned no results for " + "" + txt_wordsnotfound + "" + "

        "; + } + //alert(results); + document.getElementById('searchResults').innerHTML = results; +} + +function tokenize(wordsList){ + var stemmedWordsList = new Array(); // Array with the words to look for after removing spaces + var cleanwordsList = new Array(); // Array with the words to look for + for(var j in wordsList){ + var word = wordsList[j]; + if(typeof stemmer != "undefined" ){ + stemQueryMap[stemmer(word)] = word; + } else { + stemQueryMap[word] = word; + } + } + //stemmedWordsList is the stemmed list of words separated by spaces. + for (var t in wordsList) { + wordsList[t] = wordsList[t].replace(/(%22)|^-/g, ""); + if (wordsList[t] != "%20") { + scriptLetterTab.add(wordsList[t].charAt(0)); + cleanwordsList.push(wordsList[t]); + } + } + + if(typeof stemmer != "undefined" ){ + //Do the stemming using Porter's stemming algorithm + for (var i = 0; i < cleanwordsList.length; i++) { + var stemWord = stemmer(cleanwordsList[i]); + stemmedWordsList.push(stemWord); + } + } else { + stemmedWordsList = cleanwordsList; + } + return stemmedWordsList; +} + +//Invoker of CJKTokenizer class methods. +function cjkTokenize(wordsList){ + var allTokens= new Array(); + var notCJKTokens= new Array(); + var j=0; + for(j=0;j"; + return this.input.substring(this.offset,this.offset+2); + } + + function getAllTokens(){ + while(this.incrementToken()){ + var tmp = this.tokenize(); + this.tokens.push(tmp); + } + return this.unique(this.tokens); +// document.getElementById("content").innerHTML += tokens+" "; +// document.getElementById("content").innerHTML += "
        dada"+sortedTokens+" "; +// console.log(tokens.length+"dsdsds"); + /*for(i=0;i t2.length) { + return 1; + } else { + return -1; + } + //return t1.length - t2.length); +} \ No newline at end of file diff --git a/docbook-xsl-1.76.1/webhelp/docs/content/search/stemmers/en_stemmer.js b/docbook-xsl-1.76.1/webhelp/docs/content/search/stemmers/en_stemmer.js new file mode 100644 index 0000000..f58012f --- /dev/null +++ b/docbook-xsl-1.76.1/webhelp/docs/content/search/stemmers/en_stemmer.js @@ -0,0 +1,187 @@ +// Porter stemmer in Javascript. Few comments, but it's easy to follow against the rules in the original +// paper, in +// +// Porter, 1980, An algorithm for suffix stripping, Program, Vol. 14, +// no. 3, pp 130-137, +// +// see also http://www.tartarus.org/~martin/PorterStemmer + +// Release 1 be 'andargor', Jul 2004 +// Release 2 (substantially revised) by Christopher McKenzie, Aug 2009 + + +var stemmer = (function(){ + var step2list = { + "ational" : "ate", + "tional" : "tion", + "enci" : "ence", + "anci" : "ance", + "izer" : "ize", + "bli" : "ble", + "alli" : "al", + "entli" : "ent", + "eli" : "e", + "ousli" : "ous", + "ization" : "ize", + "ation" : "ate", + "ator" : "ate", + "alism" : "al", + "iveness" : "ive", + "fulness" : "ful", + "ousness" : "ous", + "aliti" : "al", + "iviti" : "ive", + "biliti" : "ble", + "logi" : "log" + }, + + step3list = { + "icate" : "ic", + "ative" : "", + "alize" : "al", + "iciti" : "ic", + "ical" : "ic", + "ful" : "", + "ness" : "" + }, + + c = "[^aeiou]", // consonant + v = "[aeiouy]", // vowel + C = c + "[^aeiouy]*", // consonant sequence + V = v + "[aeiou]*", // vowel sequence + + mgr0 = "^(" + C + ")?" + V + C, // [C]VC... is m>0 + meq1 = "^(" + C + ")?" + V + C + "(" + V + ")?$", // [C]VC[V] is m=1 + mgr1 = "^(" + C + ")?" + V + C + V + C, // [C]VCVC... is m>1 + s_v = "^(" + C + ")?" + v; // vowel in stem + + return function (w) { + var stem, + suffix, + firstch, + re, + re2, + re3, + re4, + origword = w; + + if (w.length < 3) { return w; } + + firstch = w.substr(0,1); + if (firstch == "y") { + w = firstch.toUpperCase() + w.substr(1); + } + + // Step 1a + re = /^(.+?)(ss|i)es$/; + re2 = /^(.+?)([^s])s$/; + + if (re.test(w)) { w = w.replace(re,"$1$2"); } + else if (re2.test(w)) { w = w.replace(re2,"$1$2"); } + + // Step 1b + re = /^(.+?)eed$/; + re2 = /^(.+?)(ed|ing)$/; + if (re.test(w)) { + var fp = re.exec(w); + re = new RegExp(mgr0); + if (re.test(fp[1])) { + re = /.$/; + w = w.replace(re,""); + } + } else if (re2.test(w)) { + var fp = re2.exec(w); + stem = fp[1]; + re2 = new RegExp(s_v); + if (re2.test(stem)) { + w = stem; + re2 = /(at|bl|iz)$/; + re3 = new RegExp("([^aeiouylsz])\\1$"); + re4 = new RegExp("^" + C + v + "[^aeiouwxy]$"); + if (re2.test(w)) { w = w + "e"; } + else if (re3.test(w)) { re = /.$/; w = w.replace(re,""); } + else if (re4.test(w)) { w = w + "e"; } + } + } + + // Step 1c + re = /^(.+?)y$/; + if (re.test(w)) { + var fp = re.exec(w); + stem = fp[1]; + re = new RegExp(s_v); + if (re.test(stem)) { w = stem + "i"; } + } + + // Step 2 + re = /^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/; + if (re.test(w)) { + var fp = re.exec(w); + stem = fp[1]; + suffix = fp[2]; + re = new RegExp(mgr0); + if (re.test(stem)) { + w = stem + step2list[suffix]; + } + } + + // Step 3 + re = /^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/; + if (re.test(w)) { + var fp = re.exec(w); + stem = fp[1]; + suffix = fp[2]; + re = new RegExp(mgr0); + if (re.test(stem)) { + w = stem + step3list[suffix]; + } + } + + // Step 4 + re = /^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/; + re2 = /^(.+?)(s|t)(ion)$/; + if (re.test(w)) { + var fp = re.exec(w); + stem = fp[1]; + re = new RegExp(mgr1); + if (re.test(stem)) { + w = stem; + } + } else if (re2.test(w)) { + var fp = re2.exec(w); + stem = fp[1] + fp[2]; + re2 = new RegExp(mgr1); + if (re2.test(stem)) { + w = stem; + } + } + + // Step 5 + re = /^(.+?)e$/; + if (re.test(w)) { + var fp = re.exec(w); + stem = fp[1]; + re = new RegExp(mgr1); + re2 = new RegExp(meq1); + re3 = new RegExp("^" + C + v + "[^aeiouwxy]$"); + if (re.test(stem) || (re2.test(stem) && !(re3.test(stem)))) { + w = stem; + } + } + + re = /ll$/; + re2 = new RegExp(mgr1); + if (re.test(w) && re2.test(w)) { + re = /.$/; + w = w.replace(re,""); + } + + // and turn initial Y back to y + + if (firstch == "y") { + w = firstch.toLowerCase() + w.substr(1); + } + + return w; + } +})(); \ No newline at end of file diff --git a/docbook-xsl-1.76.1/webhelp/docs/favicon.ico b/docbook-xsl-1.76.1/webhelp/docs/favicon.ico new file mode 100644 index 0000000..76ece8f Binary files /dev/null and b/docbook-xsl-1.76.1/webhelp/docs/favicon.ico differ diff --git a/docbook-xsl-1.76.1/webhelp/docs/index.html b/docbook-xsl-1.76.1/webhelp/docs/index.html new file mode 100644 index 0000000..a027144 --- /dev/null +++ b/docbook-xsl-1.76.1/webhelp/docs/index.html @@ -0,0 +1,13 @@ + + + + + + + + README: Web-based Help from DocBook XML  + + + + If not automatically redirected, click here: content/ch01.html + diff --git a/docbook-xsl-1.76.1/webhelp/docsrc/readme.xml b/docbook-xsl-1.76.1/webhelp/docsrc/readme.xml new file mode 100755 index 0000000..4d19190 --- /dev/null +++ b/docbook-xsl-1.76.1/webhelp/docsrc/readme.xml @@ -0,0 +1,928 @@ + + + + README: Web-based Help from DocBook XML + + + + Permission is hereby granted, free of charge, to any person + obtaining a copy of this software and associated documentation files + (the Software), to deal in the Software without + restriction, including without limitation the rights to use, copy, + modify, merge, publish, distribute, sublicense, and/or sell copies of + the Software, and to permit persons to whom the Software is furnished to + do so, subject to the following conditions: + + The above copyright notice and this permission notice shall + be included in all copies or substantial portions of the + Software. + + + + Except as contained in this notice, the names of individuals + credited with contribution to this software shall not be used in + advertising or otherwise to promote the sale, use or other + dealings in this Software without prior written authorization from + the individuals in question. + + + + Any stylesheet derived from this Software that is publicly + distributed will be identified with a different name and the + version strings in any derived Software will be changed so that no + possibility of confusion between the derived package and this + Software will exist. + + + + + Warranty: + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL DAVID CRAMER, KASUN GAJASINGHE, OR ANY OTHER CONTRIBUTOR BE LIABLE FOR + ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF + CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + + This package is maintained by Kasun Gajasinghe, kasunbg AT + gmail DOT com and David Cramer, david AT thingbag DOT + net. + + This package also includes the following software written and + copyrighted by others: + + Files in template/common/jquery are + copyrighted by JQuery + under the MIT License. The file + jquery.cookie.js Copyright (c) 2006 Klaus + Hartl under the MIT license. + + + jquery + + + + + Some files in the template/content/search and indexer directories were originally + part of N. Quaine's htmlsearch DITA plugin. The htmlsearch DITA + plugin is available from the files + page of the DITA-users yahoogroup. The htmlsearch plugin + was released under a BSD-style license. See + indexer/license.txt for details. + htmlsearch + + DITA + + htmlsearch plugin + + + + + Stemmers from the Snowball + project released under a BSD license. + + + + Code from the Apache + Lucene search engine provides support for tokenizing + Chinese, Japanese, and Korean content released under the Apache + 2.0 license. + + + Webhelp for DocBook was developed as a Google Summer of Code project. + + + + + 2008-2010 + + Kasun Gajasinghe + + David Cramer + + + + David + + Cramer + + dcramer AT motive DOT com + + david AT thingbag DOT net + + + + Kasun + + Gajasinghe + + kasunbg AT gmail DOT com + + + August 2010 + + + + + + + + Overview of the package. + + + + Introduction + + A common requirement for technical publications groups is to produce a Web-based help + format that includes a table of contents pane, a search feature, and an index similar to what + you get from the Microsoft HTML Help (.chm) format or Eclipse help. If the content is help for + a Web application that is not exposed to the Internet or requires that the user be logged in, + then it is impossible to use services like Google to add search. + features + + + Features + + Full text search. + search + features + + + + Stemming support for English, French, and German. Stemming support can be added + for other languages by implementing a stemmer. + search + stemming + + + + Support for Chinese, Japanese, and Korean using code from the Lucene search + engine. + + + Search highlighting shows where the searched for term appears in the results. + Use the H button to toggle the highlighting off and on. + + search + highlighting + + + + Search results can include brief descriptions of the target. + search + descriptions + + + + + + Table of contents pane with collapsible toc tree. + + + Auto-synchronization of content pane and TOC. + + + TOC and search pane implemented without the use of a frameset. + + + An Ant build.xml file to generate output. You can use this + build file by importing it into your own or use it as a model for integrating this + output format into your own build system. + + + + Possible future enhancements + + Move webhelp-specific parameters and gentext strings into base DocBook stylesheets. + + + + Use tabindex attributes to control the tab + order in the output. The Contents and Search tabs should be first and second, then the + search box and button, then the table of contents items, and so on. + + + Add "Expand all" and "Collapse all" buttons to the table of contents. + + + Add other search options: + + + Add an option to use Lucene for server-side searches with table of contents + state persisted on the server. + + + Add a simple form that uses a Google site:my.domain.com based search. + + + + + Sort search results based on relevance + + + Support wild card characters in the search query. + + + Parameterize width of the TOC pane OR make the TOC pane resizeable by the + user. + + + Automate search results summary text: + + + Automatically use the first non-heading content as the summary in the search + results. + + + Automatically limit the size of the search description to something 140 + characters. + + + + + Support boolean operators in search. + + + Parameterize list of files to exclude from indexing. Currently it's hard coded that + we don't index index.html and ix01.html (the + legal notice and index topics). It should be smarter and automatically not index the + index file even if it's not named ix01.html. + + + Improve performance by moving the table of contents div out of each page and into a + separate JavaScript file which then adds it to the page. + + + Add to the indexer the ability to specify a list of files or file patterns not to + index. Currently it does not index index.html or + ix01.html, which is generally appropriate, but it should be up to + the user to decide. + + + Add an index tab populated by a separate JavaScript file. Include a param/property + that allows the content creator to disable the index. + + + Add functionality to the build.xml file so that when a property + is set, the build generates a pdf version of the document and includes a link to it from + the header. + + + Add breadcrumbs so the user will know what topics he's been to. + + + Consider using more advanced Lucene indexers for Chinese and Japanese than the + CJKAnalyzer + + + + + + Using the package + + The following sections describe how to install and + use the package on Windows. + +
        + + + Installation instructions + + + + Generating webhelp output + + + To install the package on Windows + + + The examples in this procedure assume a Windows installation, + but the process is the same in other environments, + mutatis mutandis. + + + + If necessary, install Java 1.6 or + higher. + + + + Confirm that Java is installed and in your + PATH by typing the following at a command prompt: + java -version + + To build the indexer, you must have the JDK. + + + + + + + If necessary, install Apache Ant 1.6.5 + or higher. + + + + Unzip the Ant binary distribution to a convenient location + on your system. For example: c:\Program + Files. + + + + Set the environment variable ANT_HOME to + the top-level Ant directory. For example: c:\Program + Files\apache-ant-1.7.1. + See How To Manage + Environment Variables in Windows XP for information + on setting environment variables. + + + + + Add the Ant bin directory to your + PATH. For example: c:\Program + Files\apache-ant-1.7.1\bin + + + + Confirm that Ant is installed by typing the following at a + command prompt: ant -version + + + If you see a message about the file + tools.jar being missing, you can safely + ignore it. + + + + + + + Download Saxon + 6.5.x and unzip the distribution to a convenient location on your file system. + You will use the path to saxon.jar in below. + The build.xml has only been tested with Saxon 6.5, though + it could be adapted to work with other XSLT processors. However, when you generate + output, the Saxon jar must not be in your + CLASSPATH. + + + + + In a text editor, edit the + build.properties file in the webhelp directory + and make the changes indicated by the comments:# The path (relative to the build.xml file) to your input document. +# To use your own input document, create a build.xml file of your own +# and import this build.xml. +input-xml=docsrc/readme.xml + +# The directory in which to put the output files. +# This directory is created if it does not exist. +output-dir=docs + +# If you are using a customization layer that imports webhelp.xsl, use +# this property to point to it. +stylesheet-path=${ant.file.dir}/xsl/webhelp.xsl + +# If your document has image directories that need to be copied +# to the output directory, you can list patterns here. +# See the Ant documentation for fileset for documentation +# on patterns. +#input-images-dirs=images/**,figures/**,graphics/** + +# By default, the ant script assumes your images are stored +# in the same directory as the input-xml. If you store your +# image directories in another directory, specify it here. +# and uncomment this line. +#input-images-basedir=/path/to/image/location + +# Modify this so that it points to your copy of the Saxon 6.5 jar. +xslt-processor-classpath=/usr/share/java/saxon-6.5.5.jar + +# For non-ns version only, this validates the document +# against a dtd. +validate-against-dtd=true + +# Set this to false if you don't need a search tab. +webhelp.include.search.tab=true + +# indexer-language is used to tell the search indexer which language +# the docbook is written. This will be used to identify the correct +# stemmer, and punctuations that differs from language to language. +# see the documentation for details. en=English, fr=French, de=German, +# zh=Chinese, ja=Japanese etc. +webhelp.indexer.language=en + + + + Test the package by running the command ant webhelp + -Doutput-dir=test-ouput at the command line in the webhelp directory. It should + generate a copy of this documentation in the doc + directory. Type start test-output\index.html to open the output in a + browser. Once you have confirmed that the process worked, you can delete the test-output directory. + The Saxon 6.5 jar should not be in your + CLASSPATH when you generate the webhelp output. If you have any + problems, try running ant with an empty CLASSPATH. + + + + + To process your own document, simply refer to this package + from another build.xml in arbitrary location on + your system: + + + + Create a new build.xml file that + defines the name of your source file, the desired output + directory, and imports the build.xml from + this package. For example: <project> + <property name="input-xml" value="path-to/yourfile.xml"/> + <property name="input-images-dirs" value="images/** figures/** graphics/**"/> + <property name="output-dir" value="path-to/desired-output-dir"/> + <import file="path-to/docbook-webhelp/build.xml"/> +</project> + + + + From the directory containing your newly created + build.xml file, type ant + webhelp to build your document. + + The Saxon 6.5 jar should not be in your + CLASSPATH when you generate the webhelp output. If you have any + problems, try running ant with an empty CLASSPATH. + + + + + +
        + +
        + Using and customizing the output + + To deep link to a topic inside the help set, simply link directly + to the page. This help system uses no frameset, so nothing further is + necessary. + See Chunking into + multiple HTML files in Bob Stayton's DocBook XSL: The + Complete Guide for information on controlling output file + names and which files are chunked in DocBook. + + + When you perform a search, the results can include brief + summaries. These are populated in one of two ways: + + By adding role="summary" to a + para or phrase in the + chapter or section. + + + + By adding an abstract to the + chapterinfo or sectioninfo + element. + + + + To customize the look and feel of the help, study the following + css files: + + docs/common/css/positioning.css: This + handles the Positioning of DIVs in appropriate positions. For + example, it causes the leftnavigation div to appear + on the left, the header on top, and so on. Use this if you need to + change the relative positions or need to change the width/height + etc. + + + + docs/common/jquery/theme-redmond/jquery-ui-1.8.2.custom.css: + This is the theming part which adds colors and stuff. This is a + default theme comes with jqueryui unchanged. You + can get any theme based your interest from this. (Themes are on + right navigation bar.) Then replace the css theme folder + (theme-redmond) with it, and change the xsl to point to the new + css. + + + + docs/common/jquery/treeview/jquery.treeview.css: + This styles the toc Tree. Generally, you don't have to edit this + file. + + + +
        + Recommended Apache configurations + + If you are serving a long document from an Apache web server, we + recommend you make the following additions or changes to your + httpd.conf or .htaccess + file. TODO: Explain what each thing + does.AddDefaultCharSet UTF-8 # + + # 480 weeks + <FilesMatch "\.(ico|pdf|flv|jpg|jpeg|png|gif|js|css|swf)$"> # + Header set Cache-Control "max-age=290304000, public" + </FilesMatch> + + # 2 DAYS + <FilesMatch "\.(xml|txt)$"> + Header set Cache-Control "max-age=172800, public, must-revalidate" + </FilesMatch> + + # 2 HOURS + <FilesMatch "\.(html|htm)$"> + Header set Cache-Control "max-age=7200, must-revalidate" + </FilesMatch> + + # compress text, html, javascript, css, xml: + AddOutputFilterByType DEFLATE text/plain # + AddOutputFilterByType DEFLATE text/html + AddOutputFilterByType DEFLATE text/xml + AddOutputFilterByType DEFLATE text/css + AddOutputFilterByType DEFLATE application/xml + AddOutputFilterByType DEFLATE application/xhtml+xml + AddOutputFilterByType DEFLATE application/rss+xml + AddOutputFilterByType DEFLATE application/javascript + AddOutputFilterByType DEFLATE application/x-javascript + + # Or, compress certain file types by extension: + <Files *.html> + SetOutputFilter DEFLATE + </Files> + + + See Odd + characters in HTML output in Bob Stayton's book + DocBook XSL: The Complete Guide for more + information about this setting. + + + + These lines and those that follow cause the browser to + cache various resources such as bitmaps and JavaScript files. + Note that caching JavaScript files could cause your users to + have stale search indexes if you update your document since the + search index is stored in JavaScript files. + + + + These lines cause the the server to compress html, css, + and JavaScript files and the brower to uncompress them to + improve download performance. + + +
        +
        + +
        + Building the indexer + + To build the indexer, you must have installed the + JDK version 1.5 or higher and set the ANT_HOME + environment variable. Run ant build-indexer to recompile + nw-cms.jar + + + ANT_HOME + + + + indexer + + building + +
        + +
        + Adding support for other (non-CJKV) languages + + To support stemming for a language, the search mechanism requires + a stemmer implemented in both Java and JavaScript. The Java version is + used by the indexer and the JavaScript verison is used to stem the + user's input on the search form. Currently the search mechanism supports + stemming for English and German. In addition, Java stemmers are included + for the following languages. Therefore, to support these languages, you + only need to implement the stemmer in JavaScript and add it to the + template. If you do undertake this task, please consider contributing + the JavaScript version back to this project and to Martin + Porter's project. + + Danish + + + + Dutch + + + + Finnish + + + + Hungarian + + + + Italian + + + + Norwegian + + + + Portuguese + + + + Romanian + + + + Russian + + + + Spanish + + + + Swedish + + + + Turkish + + +
        +
        + + + Developer Docs + + This chapter provides an overview of how webhelp is implemented. + + The table of contents and search panes are implemented as divs and + rendered as if they were the left pane in a frameset. As a result, the + page must save the state of the table of contents and the search in + cookies when you navigate away from a page. When you load a new page, the + page reads these cookies and restores the state of the table of contents + tree and search. The result is that the help system behaves exactly as if + it were a frameset. + +
        + Design + An overview of webhelp page structure. + DocBook WebHelp page structure is fully built on css-based design + abandoning frameset structure. Overall page structure can be divided in to three main sections + + + Header: Header is a separate Div which include company logo, + navigation button(prev, next etc.), page title and heading of parent topic. + + + + Content: This includes the content of the documentation. The processing of this part is + done by + DocBook XSL Chunking customization. Few further css-styling applied from + positioning.css. + + + + + Left Navigation: This includes the table of contents and search tab. This + is customized using jquery-ui styling. + + + Tabbed Navigation: The navigation pane is organized in to two tabs. + Contents tab, and Search tab. Tabbed output is achieved using + JQuery Tabs plugin. + + + + + Table of Contents (TOC) tree: When building the chunked html from the + docbook file, Table of Contents is generated as an Unordered List (a list + made from <ul> <li> tags). When page loads in the browser, + we apply styling to it to achieve the nice look that you see. Styling for TOC + tree is done by a JQuery UI plugin called + + TreeView. We can generate the tree easily by following javascript code: + + +//Generate the tree +$("#tree").treeview({ +collapsed: true, +animated: "medium", +control: "#sidetreecontrol", +persist: "cookie" +}); + + + + + + Search Tab: This includes the search feature. + + + + + + +
        + +
        + Search + Overview design of Search mechanism. + + The searching is a fully client-side implementation of querying texts for + content searching, and no server is involved. That means when a user enters a query, + it is processed by JavaScript inside the browser, and displays the matching results by + comparing the query with a generated 'index', which too reside in the client-side web browser. + + Mainly the search mechanism has two parts. + + + Indexing: First we need to traverse the content in the docs/content folder and index + the words in it. This is done by nw-cms.jar. You can invoke it by + ant index command from the root of webhelp of directory. You can recompile it + again and build the jar file by ant build-indexer. Indexer has some extensive + support for such as stemming of words. Indexer has extensive support for English, German, + French languages. By extensive support, what I meant is that those texts are stemmed + first, to get the root word and then indexes them. For CJK (Chinese, Japanese, Korean) + languages, it uses bi-gram tokenizing to break up the words. (CJK languages does not have + spaces between words.) + + + When we run ant index, it generates five output files: + + + htmlFileList.js - This contains an array named fl which stores details + all the files indexed by the indexer. + + + + htmlFileInfoList.js - This includes some meta data about the indexed files in an array + named fil. It includes details about file name, file (html) title, a summary + of the content.Format would look like, + fil["4"]= "ch03.html@@@Developer Docs@@@This chapter provides an overview of how webhelp is implemented."; + + + + + index-*.js (Three index files) - These three files actually stores the index of the content. + Index is added to an array named w. + + + + + + + + + Querying: Query processing happens totally in client side. Following JavaScript files handles them. + + + nwSearchFnt.js - This handles the user query and returns the search results. It does query + word tokenizing, drop unnecessary punctuations and common words, do stemming if docbook language + supports it, etc. + + + {$indexer-language-code}_stemmer.js - This includes the stemming library. + nwSearchFnt.js file calls stemmer method in this file for stemming. + ex: var stem = stemmer(foobar); + + + + + + + + +
        + New Stemmers + Adding new Stemmers is very simple. + Currently, only English, French, and German stemmers are integrated in to WebHelp. But the code is + extensible such that you can add new stemmers easily by few steps. + What you need: + + + You'll need two versions of the stemmer; One written in JavaScript, and another in Java. But fortunately, + Snowball contains Java stemmers for number of popular languages, and are already included with the package. + You can see the full list in Adding support for other (non-CJKV) languages. + If your language is listed there, + Then you have to find javascript version of the stemmer. Generally, new stemmers are getting added in to + Snowball Stemmers in other languages location. + If javascript stemmer for your language is available, then download it. Else, you can write a new stemmer in + JavaScript using SnowBall algorithm fairly easily. Algorithms are at + Snowball. + + + + Then, name the JS stemmer exactly like this: {$language-code}_stemmer.js. For example, + for Italian(it), name it as, it_stemmer.js. Then, copy it to the + docbook-webhelp/template/content/search/stemmers/ folder. (I assumed + docbook-webhelp is the root folder for webhelp.) + + Make sure you changed the webhelp.indexer.language property in build.properties + to your language. + + + + + + + + Now two easy changes needed for the indexer. + + + Open docbook-webhelp/indexer/src/com/nexwave/nquindexer/IndexerTask.java in + a text editor and add your language code to the supportedLanguages String Array. + + Add new language to supportedLanguages array + + change the Array from, + +private String[] supportedLanguages= {"en", "de", "fr", "cn", "ja", "ko"}; + //currently extended support available for + // English, German, French and CJK (Chinese, Japanese, Korean) languages only. + + To, + +private String[] supportedLanguages= {"en", "de", "fr", "cn", "ja", "ko", "it"}; + //currently extended support available for + // English, German, French, CJK (Chinese, Japanese, Korean), and Italian languages only. + + + + + + + Now, open docbook-webhelp/indexer/src/com/nexwave/nquindexer/SaxHTMLIndex.java and + add the following line to the code where it initializes the Stemmer (Search for + SnowballStemmer stemmer;). Then add code to initialize the stemmer Object in your language. + It's self understandable. See the example. The class names are at: + docbook-webhelp/indexer/src/com/nexwave/stemmer/snowball/ext/. + + + initialize correct stemmer based on the <code>webhelp.indexer.language</code> specified + + SnowballStemmer stemmer; + if(indexerLanguage.equalsIgnoreCase("en")){ + stemmer = new EnglishStemmer(); + } else if (indexerLanguage.equalsIgnoreCase("de")){ + stemmer= new GermanStemmer(); + } else if (indexerLanguage.equalsIgnoreCase("fr")){ + stemmer= new FrenchStemmer(); + } +else if (indexerLanguage.equalsIgnoreCase("it")){ //If language code is "it" (Italian) + stemmer= new italianStemmer(); //Initialize the stemmer to italianStemmer object. + } + else { + stemmer = null; + } + + + + + + + + That's all. Now run ant build-indexer to compile and build the java code. + Then, run ant webhelp to generate the output from your docbook file. + For any questions, contact us or email to the docbook mailing list + docbook-apps@lists.oasis-open.org. + +
        +
        +
        +
        diff --git a/docbook-xsl-1.76.1/webhelp/template/common/css/positioning.css b/docbook-xsl-1.76.1/webhelp/template/common/css/positioning.css new file mode 100755 index 0000000..3d30bc2 --- /dev/null +++ b/docbook-xsl-1.76.1/webhelp/template/common/css/positioning.css @@ -0,0 +1,109 @@ +body { font: 12px Verdana, Geneva, sans-serif; } +p, ul, ol, li { font: 10pt Verdana, Geneva, sans-serif; } +h1 { font: bold 15pt Arial, Helvetica, geneva; } +h2 { font: bold 14pt Arial, Helvetica, geneva; } + +#header { + background: white url(../images/header-bg.gif) repeat-x; + position: fixed; + width: 100%; + height: 95px; + top: 0; + right: 0; + bottom: auto; + left: 0; + border-bottom: 2px solid #cccccc; + z-index: 2000; +} + +#leftnavigation { +/* background-color:#91e7b3;*/ + overflow: auto; + position: fixed; + height: auto; + top: 90px; + bottom: 0; + left: 0; + width: 280px; + z-index: 1500; + border-right:2px solid #CCCCCC; +} + +#content { + position: relative; + top: 90px; /* left: 240px;*/ + right: auto; /* bottom: 20px; */ + margin: 0px 0px 0px 280px; + width: auto; + height: inherit; + padding-left: 5px; + padding-right: 30px; + color: #000000; + /*border-left: 2px solid #cccccc; overflow :scroll;*/ + z-index: 1000; + + max-width: 70em; + min-width:800px; +} + +#navheader { + position: fixed; + top: 65px; + right:4px; +} + +#content h1, #content h2 { color: #cc0000; } +.navfooter { bottom: 2%; } +.highlight { background-color: #c5d3c3; } +.highlightButton{ font-size: 0; } + +/* Show Hide TOC tree */ +.pointLeft { + background: url("../images/showHideTreeIcons.png") 0 0 no-repeat; + height: 28px; + width: 15px; + display: block; + font-size: 0; + cursor: pointer; +} +.pointRight { + background: url("../images/showHideTreeIcons.png") -15px 0 no-repeat; + height: 28px; + display: block; + font-size: 0; + cursor: pointer; +} + +/* Search results Styling */ +.searchExpression { + color: #0050A0; + background-color: #EBEFF8; + font-size: 12pt; +} +.searchresult li a { + text-decoration: none; + color: #0050A0; +} +.searchresult li { + color: #0050A0; +} +.shortdesclink { + color: gray; + font-size: 9pt; +} +.searchText { + border: #BFCEE9 solid 1pt; + width: 11em +} +.searchButton { + margin-left: 3px; + background: #EBEFF8; + color: #0050A0; + border: #BFCEE9 solid 1pt; + font-weight: bold; + font-size: 10pt +} + +.title, div.toc>p{ + font-weight: bold; + } \ No newline at end of file diff --git a/docbook-xsl-1.76.1/webhelp/template/common/images/header-bg.gif b/docbook-xsl-1.76.1/webhelp/template/common/images/header-bg.gif new file mode 100755 index 0000000..f9efa28 Binary files /dev/null and b/docbook-xsl-1.76.1/webhelp/template/common/images/header-bg.gif differ diff --git a/docbook-xsl-1.76.1/webhelp/template/common/images/highlight-blue.gif b/docbook-xsl-1.76.1/webhelp/template/common/images/highlight-blue.gif new file mode 100644 index 0000000..4fdabde Binary files /dev/null and b/docbook-xsl-1.76.1/webhelp/template/common/images/highlight-blue.gif differ diff --git a/docbook-xsl-1.76.1/webhelp/template/common/images/highlight-yellow.gif b/docbook-xsl-1.76.1/webhelp/template/common/images/highlight-yellow.gif new file mode 100644 index 0000000..3e847e7 Binary files /dev/null and b/docbook-xsl-1.76.1/webhelp/template/common/images/highlight-yellow.gif differ diff --git a/docbook-xsl-1.76.1/webhelp/template/common/images/loading.gif b/docbook-xsl-1.76.1/webhelp/template/common/images/loading.gif new file mode 100755 index 0000000..6a56815 Binary files /dev/null and b/docbook-xsl-1.76.1/webhelp/template/common/images/loading.gif differ diff --git a/docbook-xsl-1.76.1/webhelp/template/common/images/logo.png b/docbook-xsl-1.76.1/webhelp/template/common/images/logo.png new file mode 100755 index 0000000..b111258 Binary files /dev/null and b/docbook-xsl-1.76.1/webhelp/template/common/images/logo.png differ diff --git a/docbook-xsl-1.76.1/webhelp/template/common/images/showHideTreeIcons.png b/docbook-xsl-1.76.1/webhelp/template/common/images/showHideTreeIcons.png new file mode 100755 index 0000000..c1ec1f9 Binary files /dev/null and b/docbook-xsl-1.76.1/webhelp/template/common/images/showHideTreeIcons.png differ diff --git a/docbook-xsl-1.76.1/webhelp/template/common/jquery/jquery-1.4.2.min.js b/docbook-xsl-1.76.1/webhelp/template/common/jquery/jquery-1.4.2.min.js new file mode 100755 index 0000000..7c24308 --- /dev/null +++ b/docbook-xsl-1.76.1/webhelp/template/common/jquery/jquery-1.4.2.min.js @@ -0,0 +1,154 @@ +/*! + * jQuery JavaScript Library v1.4.2 + * http://jquery.com/ + * + * Copyright 2010, John Resig + * Dual licensed under the MIT or GPL Version 2 licenses. + * http://jquery.org/license + * + * Includes Sizzle.js + * http://sizzlejs.com/ + * Copyright 2010, The Dojo Foundation + * Released under the MIT, BSD, and GPL Licenses. + * + * Date: Sat Feb 13 22:33:48 2010 -0500 + */ +(function(A,w){function ma(){if(!c.isReady){try{s.documentElement.doScroll("left")}catch(a){setTimeout(ma,1);return}c.ready()}}function Qa(a,b){b.src?c.ajax({url:b.src,async:false,dataType:"script"}):c.globalEval(b.text||b.textContent||b.innerHTML||"");b.parentNode&&b.parentNode.removeChild(b)}function X(a,b,d,f,e,j){var i=a.length;if(typeof b==="object"){for(var o in b)X(a,o,b[o],f,e,d);return a}if(d!==w){f=!j&&f&&c.isFunction(d);for(o=0;o)[^>]*$|^#([\w-]+)$/,Ua=/^.[^:#\[\.,]*$/,Va=/\S/, +Wa=/^(\s|\u00A0)+|(\s|\u00A0)+$/g,Xa=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,P=navigator.userAgent,xa=false,Q=[],L,$=Object.prototype.toString,aa=Object.prototype.hasOwnProperty,ba=Array.prototype.push,R=Array.prototype.slice,ya=Array.prototype.indexOf;c.fn=c.prototype={init:function(a,b){var d,f;if(!a)return this;if(a.nodeType){this.context=this[0]=a;this.length=1;return this}if(a==="body"&&!b){this.context=s;this[0]=s.body;this.selector="body";this.length=1;return this}if(typeof a==="string")if((d=Ta.exec(a))&& +(d[1]||!b))if(d[1]){f=b?b.ownerDocument||b:s;if(a=Xa.exec(a))if(c.isPlainObject(b)){a=[s.createElement(a[1])];c.fn.attr.call(a,b,true)}else a=[f.createElement(a[1])];else{a=sa([d[1]],[f]);a=(a.cacheable?a.fragment.cloneNode(true):a.fragment).childNodes}return c.merge(this,a)}else{if(b=s.getElementById(d[2])){if(b.id!==d[2])return T.find(a);this.length=1;this[0]=b}this.context=s;this.selector=a;return this}else if(!b&&/^\w+$/.test(a)){this.selector=a;this.context=s;a=s.getElementsByTagName(a);return c.merge(this, +a)}else return!b||b.jquery?(b||T).find(a):c(b).find(a);else if(c.isFunction(a))return T.ready(a);if(a.selector!==w){this.selector=a.selector;this.context=a.context}return c.makeArray(a,this)},selector:"",jquery:"1.4.2",length:0,size:function(){return this.length},toArray:function(){return R.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this.slice(a)[0]:this[a]},pushStack:function(a,b,d){var f=c();c.isArray(a)?ba.apply(f,a):c.merge(f,a);f.prevObject=this;f.context=this.context;if(b=== +"find")f.selector=this.selector+(this.selector?" ":"")+d;else if(b)f.selector=this.selector+"."+b+"("+d+")";return f},each:function(a,b){return c.each(this,a,b)},ready:function(a){c.bindReady();if(c.isReady)a.call(s,c);else Q&&Q.push(a);return this},eq:function(a){return a===-1?this.slice(a):this.slice(a,+a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(R.apply(this,arguments),"slice",R.call(arguments).join(","))},map:function(a){return this.pushStack(c.map(this, +function(b,d){return a.call(b,d,b)}))},end:function(){return this.prevObject||c(null)},push:ba,sort:[].sort,splice:[].splice};c.fn.init.prototype=c.fn;c.extend=c.fn.extend=function(){var a=arguments[0]||{},b=1,d=arguments.length,f=false,e,j,i,o;if(typeof a==="boolean"){f=a;a=arguments[1]||{};b=2}if(typeof a!=="object"&&!c.isFunction(a))a={};if(d===b){a=this;--b}for(;b
        a"; +var e=d.getElementsByTagName("*"),j=d.getElementsByTagName("a")[0];if(!(!e||!e.length||!j)){c.support={leadingWhitespace:d.firstChild.nodeType===3,tbody:!d.getElementsByTagName("tbody").length,htmlSerialize:!!d.getElementsByTagName("link").length,style:/red/.test(j.getAttribute("style")),hrefNormalized:j.getAttribute("href")==="/a",opacity:/^0.55$/.test(j.style.opacity),cssFloat:!!j.style.cssFloat,checkOn:d.getElementsByTagName("input")[0].value==="on",optSelected:s.createElement("select").appendChild(s.createElement("option")).selected, +parentNode:d.removeChild(d.appendChild(s.createElement("div"))).parentNode===null,deleteExpando:true,checkClone:false,scriptEval:false,noCloneEvent:true,boxModel:null};b.type="text/javascript";try{b.appendChild(s.createTextNode("window."+f+"=1;"))}catch(i){}a.insertBefore(b,a.firstChild);if(A[f]){c.support.scriptEval=true;delete A[f]}try{delete b.test}catch(o){c.support.deleteExpando=false}a.removeChild(b);if(d.attachEvent&&d.fireEvent){d.attachEvent("onclick",function k(){c.support.noCloneEvent= +false;d.detachEvent("onclick",k)});d.cloneNode(true).fireEvent("onclick")}d=s.createElement("div");d.innerHTML="";a=s.createDocumentFragment();a.appendChild(d.firstChild);c.support.checkClone=a.cloneNode(true).cloneNode(true).lastChild.checked;c(function(){var k=s.createElement("div");k.style.width=k.style.paddingLeft="1px";s.body.appendChild(k);c.boxModel=c.support.boxModel=k.offsetWidth===2;s.body.removeChild(k).style.display="none"});a=function(k){var n= +s.createElement("div");k="on"+k;var r=k in n;if(!r){n.setAttribute(k,"return;");r=typeof n[k]==="function"}return r};c.support.submitBubbles=a("submit");c.support.changeBubbles=a("change");a=b=d=e=j=null}})();c.props={"for":"htmlFor","class":"className",readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",colspan:"colSpan",tabindex:"tabIndex",usemap:"useMap",frameborder:"frameBorder"};var G="jQuery"+J(),Ya=0,za={};c.extend({cache:{},expando:G,noData:{embed:true,object:true, +applet:true},data:function(a,b,d){if(!(a.nodeName&&c.noData[a.nodeName.toLowerCase()])){a=a==A?za:a;var f=a[G],e=c.cache;if(!f&&typeof b==="string"&&d===w)return null;f||(f=++Ya);if(typeof b==="object"){a[G]=f;e[f]=c.extend(true,{},b)}else if(!e[f]){a[G]=f;e[f]={}}a=e[f];if(d!==w)a[b]=d;return typeof b==="string"?a[b]:a}},removeData:function(a,b){if(!(a.nodeName&&c.noData[a.nodeName.toLowerCase()])){a=a==A?za:a;var d=a[G],f=c.cache,e=f[d];if(b){if(e){delete e[b];c.isEmptyObject(e)&&c.removeData(a)}}else{if(c.support.deleteExpando)delete a[c.expando]; +else a.removeAttribute&&a.removeAttribute(c.expando);delete f[d]}}}});c.fn.extend({data:function(a,b){if(typeof a==="undefined"&&this.length)return c.data(this[0]);else if(typeof a==="object")return this.each(function(){c.data(this,a)});var d=a.split(".");d[1]=d[1]?"."+d[1]:"";if(b===w){var f=this.triggerHandler("getData"+d[1]+"!",[d[0]]);if(f===w&&this.length)f=c.data(this[0],a);return f===w&&d[1]?this.data(d[0]):f}else return this.trigger("setData"+d[1]+"!",[d[0],b]).each(function(){c.data(this, +a,b)})},removeData:function(a){return this.each(function(){c.removeData(this,a)})}});c.extend({queue:function(a,b,d){if(a){b=(b||"fx")+"queue";var f=c.data(a,b);if(!d)return f||[];if(!f||c.isArray(d))f=c.data(a,b,c.makeArray(d));else f.push(d);return f}},dequeue:function(a,b){b=b||"fx";var d=c.queue(a,b),f=d.shift();if(f==="inprogress")f=d.shift();if(f){b==="fx"&&d.unshift("inprogress");f.call(a,function(){c.dequeue(a,b)})}}});c.fn.extend({queue:function(a,b){if(typeof a!=="string"){b=a;a="fx"}if(b=== +w)return c.queue(this[0],a);return this.each(function(){var d=c.queue(this,a,b);a==="fx"&&d[0]!=="inprogress"&&c.dequeue(this,a)})},dequeue:function(a){return this.each(function(){c.dequeue(this,a)})},delay:function(a,b){a=c.fx?c.fx.speeds[a]||a:a;b=b||"fx";return this.queue(b,function(){var d=this;setTimeout(function(){c.dequeue(d,b)},a)})},clearQueue:function(a){return this.queue(a||"fx",[])}});var Aa=/[\n\t]/g,ca=/\s+/,Za=/\r/g,$a=/href|src|style/,ab=/(button|input)/i,bb=/(button|input|object|select|textarea)/i, +cb=/^(a|area)$/i,Ba=/radio|checkbox/;c.fn.extend({attr:function(a,b){return X(this,a,b,true,c.attr)},removeAttr:function(a){return this.each(function(){c.attr(this,a,"");this.nodeType===1&&this.removeAttribute(a)})},addClass:function(a){if(c.isFunction(a))return this.each(function(n){var r=c(this);r.addClass(a.call(this,n,r.attr("class")))});if(a&&typeof a==="string")for(var b=(a||"").split(ca),d=0,f=this.length;d-1)return true;return false},val:function(a){if(a===w){var b=this[0];if(b){if(c.nodeName(b,"option"))return(b.attributes.value||{}).specified?b.value:b.text;if(c.nodeName(b,"select")){var d=b.selectedIndex,f=[],e=b.options;b=b.type==="select-one";if(d<0)return null;var j=b?d:0;for(d=b?d+1:e.length;j=0;else if(c.nodeName(this,"select")){var u=c.makeArray(r);c("option",this).each(function(){this.selected= +c.inArray(c(this).val(),u)>=0});if(!u.length)this.selectedIndex=-1}else this.value=r}})}});c.extend({attrFn:{val:true,css:true,html:true,text:true,data:true,width:true,height:true,offset:true},attr:function(a,b,d,f){if(!a||a.nodeType===3||a.nodeType===8)return w;if(f&&b in c.attrFn)return c(a)[b](d);f=a.nodeType!==1||!c.isXMLDoc(a);var e=d!==w;b=f&&c.props[b]||b;if(a.nodeType===1){var j=$a.test(b);if(b in a&&f&&!j){if(e){b==="type"&&ab.test(a.nodeName)&&a.parentNode&&c.error("type property can't be changed"); +a[b]=d}if(c.nodeName(a,"form")&&a.getAttributeNode(b))return a.getAttributeNode(b).nodeValue;if(b==="tabIndex")return(b=a.getAttributeNode("tabIndex"))&&b.specified?b.value:bb.test(a.nodeName)||cb.test(a.nodeName)&&a.href?0:w;return a[b]}if(!c.support.style&&f&&b==="style"){if(e)a.style.cssText=""+d;return a.style.cssText}e&&a.setAttribute(b,""+d);a=!c.support.hrefNormalized&&f&&j?a.getAttribute(b,2):a.getAttribute(b);return a===null?w:a}return c.style(a,b,d)}});var O=/\.(.*)$/,db=function(a){return a.replace(/[^\w\s\.\|`]/g, +function(b){return"\\"+b})};c.event={add:function(a,b,d,f){if(!(a.nodeType===3||a.nodeType===8)){if(a.setInterval&&a!==A&&!a.frameElement)a=A;var e,j;if(d.handler){e=d;d=e.handler}if(!d.guid)d.guid=c.guid++;if(j=c.data(a)){var i=j.events=j.events||{},o=j.handle;if(!o)j.handle=o=function(){return typeof c!=="undefined"&&!c.event.triggered?c.event.handle.apply(o.elem,arguments):w};o.elem=a;b=b.split(" ");for(var k,n=0,r;k=b[n++];){j=e?c.extend({},e):{handler:d,data:f};if(k.indexOf(".")>-1){r=k.split("."); +k=r.shift();j.namespace=r.slice(0).sort().join(".")}else{r=[];j.namespace=""}j.type=k;j.guid=d.guid;var u=i[k],z=c.event.special[k]||{};if(!u){u=i[k]=[];if(!z.setup||z.setup.call(a,f,r,o)===false)if(a.addEventListener)a.addEventListener(k,o,false);else a.attachEvent&&a.attachEvent("on"+k,o)}if(z.add){z.add.call(a,j);if(!j.handler.guid)j.handler.guid=d.guid}u.push(j);c.event.global[k]=true}a=null}}},global:{},remove:function(a,b,d,f){if(!(a.nodeType===3||a.nodeType===8)){var e,j=0,i,o,k,n,r,u,z=c.data(a), +C=z&&z.events;if(z&&C){if(b&&b.type){d=b.handler;b=b.type}if(!b||typeof b==="string"&&b.charAt(0)==="."){b=b||"";for(e in C)c.event.remove(a,e+b)}else{for(b=b.split(" ");e=b[j++];){n=e;i=e.indexOf(".")<0;o=[];if(!i){o=e.split(".");e=o.shift();k=new RegExp("(^|\\.)"+c.map(o.slice(0).sort(),db).join("\\.(?:.*\\.)?")+"(\\.|$)")}if(r=C[e])if(d){n=c.event.special[e]||{};for(B=f||0;B=0){a.type= +e=e.slice(0,-1);a.exclusive=true}if(!d){a.stopPropagation();c.event.global[e]&&c.each(c.cache,function(){this.events&&this.events[e]&&c.event.trigger(a,b,this.handle.elem)})}if(!d||d.nodeType===3||d.nodeType===8)return w;a.result=w;a.target=d;b=c.makeArray(b);b.unshift(a)}a.currentTarget=d;(f=c.data(d,"handle"))&&f.apply(d,b);f=d.parentNode||d.ownerDocument;try{if(!(d&&d.nodeName&&c.noData[d.nodeName.toLowerCase()]))if(d["on"+e]&&d["on"+e].apply(d,b)===false)a.result=false}catch(j){}if(!a.isPropagationStopped()&& +f)c.event.trigger(a,b,f,true);else if(!a.isDefaultPrevented()){f=a.target;var i,o=c.nodeName(f,"a")&&e==="click",k=c.event.special[e]||{};if((!k._default||k._default.call(d,a)===false)&&!o&&!(f&&f.nodeName&&c.noData[f.nodeName.toLowerCase()])){try{if(f[e]){if(i=f["on"+e])f["on"+e]=null;c.event.triggered=true;f[e]()}}catch(n){}if(i)f["on"+e]=i;c.event.triggered=false}}},handle:function(a){var b,d,f,e;a=arguments[0]=c.event.fix(a||A.event);a.currentTarget=this;b=a.type.indexOf(".")<0&&!a.exclusive; +if(!b){d=a.type.split(".");a.type=d.shift();f=new RegExp("(^|\\.)"+d.slice(0).sort().join("\\.(?:.*\\.)?")+"(\\.|$)")}e=c.data(this,"events");d=e[a.type];if(e&&d){d=d.slice(0);e=0;for(var j=d.length;e-1?c.map(a.options,function(f){return f.selected}).join("-"):"";else if(a.nodeName.toLowerCase()==="select")d=a.selectedIndex;return d},fa=function(a,b){var d=a.target,f,e;if(!(!da.test(d.nodeName)||d.readOnly)){f=c.data(d,"_change_data");e=Fa(d);if(a.type!=="focusout"||d.type!=="radio")c.data(d,"_change_data", +e);if(!(f===w||e===f))if(f!=null||e){a.type="change";return c.event.trigger(a,b,d)}}};c.event.special.change={filters:{focusout:fa,click:function(a){var b=a.target,d=b.type;if(d==="radio"||d==="checkbox"||b.nodeName.toLowerCase()==="select")return fa.call(this,a)},keydown:function(a){var b=a.target,d=b.type;if(a.keyCode===13&&b.nodeName.toLowerCase()!=="textarea"||a.keyCode===32&&(d==="checkbox"||d==="radio")||d==="select-multiple")return fa.call(this,a)},beforeactivate:function(a){a=a.target;c.data(a, +"_change_data",Fa(a))}},setup:function(){if(this.type==="file")return false;for(var a in ea)c.event.add(this,a+".specialChange",ea[a]);return da.test(this.nodeName)},teardown:function(){c.event.remove(this,".specialChange");return da.test(this.nodeName)}};ea=c.event.special.change.filters}s.addEventListener&&c.each({focus:"focusin",blur:"focusout"},function(a,b){function d(f){f=c.event.fix(f);f.type=b;return c.event.handle.call(this,f)}c.event.special[b]={setup:function(){this.addEventListener(a, +d,true)},teardown:function(){this.removeEventListener(a,d,true)}}});c.each(["bind","one"],function(a,b){c.fn[b]=function(d,f,e){if(typeof d==="object"){for(var j in d)this[b](j,f,d[j],e);return this}if(c.isFunction(f)){e=f;f=w}var i=b==="one"?c.proxy(e,function(k){c(this).unbind(k,i);return e.apply(this,arguments)}):e;if(d==="unload"&&b!=="one")this.one(d,f,e);else{j=0;for(var o=this.length;j0){y=t;break}}t=t[g]}m[q]=y}}}var f=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g, +e=0,j=Object.prototype.toString,i=false,o=true;[0,0].sort(function(){o=false;return 0});var k=function(g,h,l,m){l=l||[];var q=h=h||s;if(h.nodeType!==1&&h.nodeType!==9)return[];if(!g||typeof g!=="string")return l;for(var p=[],v,t,y,S,H=true,M=x(h),I=g;(f.exec(""),v=f.exec(I))!==null;){I=v[3];p.push(v[1]);if(v[2]){S=v[3];break}}if(p.length>1&&r.exec(g))if(p.length===2&&n.relative[p[0]])t=ga(p[0]+p[1],h);else for(t=n.relative[p[0]]?[h]:k(p.shift(),h);p.length;){g=p.shift();if(n.relative[g])g+=p.shift(); +t=ga(g,t)}else{if(!m&&p.length>1&&h.nodeType===9&&!M&&n.match.ID.test(p[0])&&!n.match.ID.test(p[p.length-1])){v=k.find(p.shift(),h,M);h=v.expr?k.filter(v.expr,v.set)[0]:v.set[0]}if(h){v=m?{expr:p.pop(),set:z(m)}:k.find(p.pop(),p.length===1&&(p[0]==="~"||p[0]==="+")&&h.parentNode?h.parentNode:h,M);t=v.expr?k.filter(v.expr,v.set):v.set;if(p.length>0)y=z(t);else H=false;for(;p.length;){var D=p.pop();v=D;if(n.relative[D])v=p.pop();else D="";if(v==null)v=h;n.relative[D](y,v,M)}}else y=[]}y||(y=t);y||k.error(D|| +g);if(j.call(y)==="[object Array]")if(H)if(h&&h.nodeType===1)for(g=0;y[g]!=null;g++){if(y[g]&&(y[g]===true||y[g].nodeType===1&&E(h,y[g])))l.push(t[g])}else for(g=0;y[g]!=null;g++)y[g]&&y[g].nodeType===1&&l.push(t[g]);else l.push.apply(l,y);else z(y,l);if(S){k(S,q,l,m);k.uniqueSort(l)}return l};k.uniqueSort=function(g){if(B){i=o;g.sort(B);if(i)for(var h=1;h":function(g,h){var l=typeof h==="string";if(l&&!/\W/.test(h)){h=h.toLowerCase();for(var m=0,q=g.length;m=0))l||m.push(v);else if(l)h[p]=false;return false},ID:function(g){return g[1].replace(/\\/g,"")},TAG:function(g){return g[1].toLowerCase()}, +CHILD:function(g){if(g[1]==="nth"){var h=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(g[2]==="even"&&"2n"||g[2]==="odd"&&"2n+1"||!/\D/.test(g[2])&&"0n+"+g[2]||g[2]);g[2]=h[1]+(h[2]||1)-0;g[3]=h[3]-0}g[0]=e++;return g},ATTR:function(g,h,l,m,q,p){h=g[1].replace(/\\/g,"");if(!p&&n.attrMap[h])g[1]=n.attrMap[h];if(g[2]==="~=")g[4]=" "+g[4]+" ";return g},PSEUDO:function(g,h,l,m,q){if(g[1]==="not")if((f.exec(g[3])||"").length>1||/^\w/.test(g[3]))g[3]=k(g[3],null,null,h);else{g=k.filter(g[3],h,l,true^q);l||m.push.apply(m, +g);return false}else if(n.match.POS.test(g[0])||n.match.CHILD.test(g[0]))return true;return g},POS:function(g){g.unshift(true);return g}},filters:{enabled:function(g){return g.disabled===false&&g.type!=="hidden"},disabled:function(g){return g.disabled===true},checked:function(g){return g.checked===true},selected:function(g){return g.selected===true},parent:function(g){return!!g.firstChild},empty:function(g){return!g.firstChild},has:function(g,h,l){return!!k(l[3],g).length},header:function(g){return/h\d/i.test(g.nodeName)}, +text:function(g){return"text"===g.type},radio:function(g){return"radio"===g.type},checkbox:function(g){return"checkbox"===g.type},file:function(g){return"file"===g.type},password:function(g){return"password"===g.type},submit:function(g){return"submit"===g.type},image:function(g){return"image"===g.type},reset:function(g){return"reset"===g.type},button:function(g){return"button"===g.type||g.nodeName.toLowerCase()==="button"},input:function(g){return/input|select|textarea|button/i.test(g.nodeName)}}, +setFilters:{first:function(g,h){return h===0},last:function(g,h,l,m){return h===m.length-1},even:function(g,h){return h%2===0},odd:function(g,h){return h%2===1},lt:function(g,h,l){return hl[3]-0},nth:function(g,h,l){return l[3]-0===h},eq:function(g,h,l){return l[3]-0===h}},filter:{PSEUDO:function(g,h,l,m){var q=h[1],p=n.filters[q];if(p)return p(g,l,h,m);else if(q==="contains")return(g.textContent||g.innerText||a([g])||"").indexOf(h[3])>=0;else if(q==="not"){h= +h[3];l=0;for(m=h.length;l=0}},ID:function(g,h){return g.nodeType===1&&g.getAttribute("id")===h},TAG:function(g,h){return h==="*"&&g.nodeType===1||g.nodeName.toLowerCase()===h},CLASS:function(g,h){return(" "+(g.className||g.getAttribute("class"))+" ").indexOf(h)>-1},ATTR:function(g,h){var l=h[1];g=n.attrHandle[l]?n.attrHandle[l](g):g[l]!=null?g[l]:g.getAttribute(l);l=g+"";var m=h[2];h=h[4];return g==null?m==="!=":m=== +"="?l===h:m==="*="?l.indexOf(h)>=0:m==="~="?(" "+l+" ").indexOf(h)>=0:!h?l&&g!==false:m==="!="?l!==h:m==="^="?l.indexOf(h)===0:m==="$="?l.substr(l.length-h.length)===h:m==="|="?l===h||l.substr(0,h.length+1)===h+"-":false},POS:function(g,h,l,m){var q=n.setFilters[h[2]];if(q)return q(g,l,h,m)}}},r=n.match.POS;for(var u in n.match){n.match[u]=new RegExp(n.match[u].source+/(?![^\[]*\])(?![^\(]*\))/.source);n.leftMatch[u]=new RegExp(/(^(?:.|\r|\n)*?)/.source+n.match[u].source.replace(/\\(\d+)/g,function(g, +h){return"\\"+(h-0+1)}))}var z=function(g,h){g=Array.prototype.slice.call(g,0);if(h){h.push.apply(h,g);return h}return g};try{Array.prototype.slice.call(s.documentElement.childNodes,0)}catch(C){z=function(g,h){h=h||[];if(j.call(g)==="[object Array]")Array.prototype.push.apply(h,g);else if(typeof g.length==="number")for(var l=0,m=g.length;l";var l=s.documentElement;l.insertBefore(g,l.firstChild);if(s.getElementById(h)){n.find.ID=function(m,q,p){if(typeof q.getElementById!=="undefined"&&!p)return(q=q.getElementById(m[1]))?q.id===m[1]||typeof q.getAttributeNode!=="undefined"&& +q.getAttributeNode("id").nodeValue===m[1]?[q]:w:[]};n.filter.ID=function(m,q){var p=typeof m.getAttributeNode!=="undefined"&&m.getAttributeNode("id");return m.nodeType===1&&p&&p.nodeValue===q}}l.removeChild(g);l=g=null})();(function(){var g=s.createElement("div");g.appendChild(s.createComment(""));if(g.getElementsByTagName("*").length>0)n.find.TAG=function(h,l){l=l.getElementsByTagName(h[1]);if(h[1]==="*"){h=[];for(var m=0;l[m];m++)l[m].nodeType===1&&h.push(l[m]);l=h}return l};g.innerHTML=""; +if(g.firstChild&&typeof g.firstChild.getAttribute!=="undefined"&&g.firstChild.getAttribute("href")!=="#")n.attrHandle.href=function(h){return h.getAttribute("href",2)};g=null})();s.querySelectorAll&&function(){var g=k,h=s.createElement("div");h.innerHTML="

        ";if(!(h.querySelectorAll&&h.querySelectorAll(".TEST").length===0)){k=function(m,q,p,v){q=q||s;if(!v&&q.nodeType===9&&!x(q))try{return z(q.querySelectorAll(m),p)}catch(t){}return g(m,q,p,v)};for(var l in g)k[l]=g[l];h=null}}(); +(function(){var g=s.createElement("div");g.innerHTML="
        ";if(!(!g.getElementsByClassName||g.getElementsByClassName("e").length===0)){g.lastChild.className="e";if(g.getElementsByClassName("e").length!==1){n.order.splice(1,0,"CLASS");n.find.CLASS=function(h,l,m){if(typeof l.getElementsByClassName!=="undefined"&&!m)return l.getElementsByClassName(h[1])};g=null}}})();var E=s.compareDocumentPosition?function(g,h){return!!(g.compareDocumentPosition(h)&16)}: +function(g,h){return g!==h&&(g.contains?g.contains(h):true)},x=function(g){return(g=(g?g.ownerDocument||g:0).documentElement)?g.nodeName!=="HTML":false},ga=function(g,h){var l=[],m="",q;for(h=h.nodeType?[h]:h;q=n.match.PSEUDO.exec(g);){m+=q[0];g=g.replace(n.match.PSEUDO,"")}g=n.relative[g]?g+"*":g;q=0;for(var p=h.length;q=0===d})};c.fn.extend({find:function(a){for(var b=this.pushStack("","find",a),d=0,f=0,e=this.length;f0)for(var j=d;j0},closest:function(a,b){if(c.isArray(a)){var d=[],f=this[0],e,j= +{},i;if(f&&a.length){e=0;for(var o=a.length;e-1:c(f).is(e)){d.push({selector:i,elem:f});delete j[i]}}f=f.parentNode}}return d}var k=c.expr.match.POS.test(a)?c(a,b||this.context):null;return this.map(function(n,r){for(;r&&r.ownerDocument&&r!==b;){if(k?k.index(r)>-1:c(r).is(a))return r;r=r.parentNode}return null})},index:function(a){if(!a||typeof a=== +"string")return c.inArray(this[0],a?c(a):this.parent().children());return c.inArray(a.jquery?a[0]:a,this)},add:function(a,b){a=typeof a==="string"?c(a,b||this.context):c.makeArray(a);b=c.merge(this.get(),a);return this.pushStack(qa(a[0])||qa(b[0])?b:c.unique(b))},andSelf:function(){return this.add(this.prevObject)}});c.each({parent:function(a){return(a=a.parentNode)&&a.nodeType!==11?a:null},parents:function(a){return c.dir(a,"parentNode")},parentsUntil:function(a,b,d){return c.dir(a,"parentNode", +d)},next:function(a){return c.nth(a,2,"nextSibling")},prev:function(a){return c.nth(a,2,"previousSibling")},nextAll:function(a){return c.dir(a,"nextSibling")},prevAll:function(a){return c.dir(a,"previousSibling")},nextUntil:function(a,b,d){return c.dir(a,"nextSibling",d)},prevUntil:function(a,b,d){return c.dir(a,"previousSibling",d)},siblings:function(a){return c.sibling(a.parentNode.firstChild,a)},children:function(a){return c.sibling(a.firstChild)},contents:function(a){return c.nodeName(a,"iframe")? +a.contentDocument||a.contentWindow.document:c.makeArray(a.childNodes)}},function(a,b){c.fn[a]=function(d,f){var e=c.map(this,b,d);eb.test(a)||(f=d);if(f&&typeof f==="string")e=c.filter(f,e);e=this.length>1?c.unique(e):e;if((this.length>1||gb.test(f))&&fb.test(a))e=e.reverse();return this.pushStack(e,a,R.call(arguments).join(","))}});c.extend({filter:function(a,b,d){if(d)a=":not("+a+")";return c.find.matches(a,b)},dir:function(a,b,d){var f=[];for(a=a[b];a&&a.nodeType!==9&&(d===w||a.nodeType!==1||!c(a).is(d));){a.nodeType=== +1&&f.push(a);a=a[b]}return f},nth:function(a,b,d){b=b||1;for(var f=0;a;a=a[d])if(a.nodeType===1&&++f===b)break;return a},sibling:function(a,b){for(var d=[];a;a=a.nextSibling)a.nodeType===1&&a!==b&&d.push(a);return d}});var Ja=/ jQuery\d+="(?:\d+|null)"/g,V=/^\s+/,Ka=/(<([\w:]+)[^>]*?)\/>/g,hb=/^(?:area|br|col|embed|hr|img|input|link|meta|param)$/i,La=/<([\w:]+)/,ib=/"},F={option:[1,""],legend:[1,"
        ","
        "],thead:[1,"","
        "],tr:[2,"","
        "],td:[3,"","
        "],col:[2,"","
        "],area:[1,"",""],_default:[0,"",""]};F.optgroup=F.option;F.tbody=F.tfoot=F.colgroup=F.caption=F.thead;F.th=F.td;if(!c.support.htmlSerialize)F._default=[1,"div
        ","
        "];c.fn.extend({text:function(a){if(c.isFunction(a))return this.each(function(b){var d= +c(this);d.text(a.call(this,b,d.text()))});if(typeof a!=="object"&&a!==w)return this.empty().append((this[0]&&this[0].ownerDocument||s).createTextNode(a));return c.text(this)},wrapAll:function(a){if(c.isFunction(a))return this.each(function(d){c(this).wrapAll(a.call(this,d))});if(this[0]){var b=c(a,this[0].ownerDocument).eq(0).clone(true);this[0].parentNode&&b.insertBefore(this[0]);b.map(function(){for(var d=this;d.firstChild&&d.firstChild.nodeType===1;)d=d.firstChild;return d}).append(this)}return this}, +wrapInner:function(a){if(c.isFunction(a))return this.each(function(b){c(this).wrapInner(a.call(this,b))});return this.each(function(){var b=c(this),d=b.contents();d.length?d.wrapAll(a):b.append(a)})},wrap:function(a){return this.each(function(){c(this).wrapAll(a)})},unwrap:function(){return this.parent().each(function(){c.nodeName(this,"body")||c(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,true,function(a){this.nodeType===1&&this.appendChild(a)})}, +prepend:function(){return this.domManip(arguments,true,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,false,function(b){this.parentNode.insertBefore(b,this)});else if(arguments.length){var a=c(arguments[0]);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,false,function(b){this.parentNode.insertBefore(b, +this.nextSibling)});else if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,c(arguments[0]).toArray());return a}},remove:function(a,b){for(var d=0,f;(f=this[d])!=null;d++)if(!a||c.filter(a,[f]).length){if(!b&&f.nodeType===1){c.cleanData(f.getElementsByTagName("*"));c.cleanData([f])}f.parentNode&&f.parentNode.removeChild(f)}return this},empty:function(){for(var a=0,b;(b=this[a])!=null;a++)for(b.nodeType===1&&c.cleanData(b.getElementsByTagName("*"));b.firstChild;)b.removeChild(b.firstChild); +return this},clone:function(a){var b=this.map(function(){if(!c.support.noCloneEvent&&!c.isXMLDoc(this)){var d=this.outerHTML,f=this.ownerDocument;if(!d){d=f.createElement("div");d.appendChild(this.cloneNode(true));d=d.innerHTML}return c.clean([d.replace(Ja,"").replace(/=([^="'>\s]+\/)>/g,'="$1">').replace(V,"")],f)[0]}else return this.cloneNode(true)});if(a===true){ra(this,b);ra(this.find("*"),b.find("*"))}return b},html:function(a){if(a===w)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(Ja, +""):null;else if(typeof a==="string"&&!ta.test(a)&&(c.support.leadingWhitespace||!V.test(a))&&!F[(La.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Ka,Ma);try{for(var b=0,d=this.length;b0||e.cacheable||this.length>1?k.cloneNode(true):k)}o.length&&c.each(o,Qa)}return this}});c.fragments={};c.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){c.fn[a]=function(d){var f=[];d=c(d);var e=this.length===1&&this[0].parentNode;if(e&&e.nodeType===11&&e.childNodes.length===1&&d.length===1){d[b](this[0]); +return this}else{e=0;for(var j=d.length;e0?this.clone(true):this).get();c.fn[b].apply(c(d[e]),i);f=f.concat(i)}return this.pushStack(f,a,d.selector)}}});c.extend({clean:function(a,b,d,f){b=b||s;if(typeof b.createElement==="undefined")b=b.ownerDocument||b[0]&&b[0].ownerDocument||s;for(var e=[],j=0,i;(i=a[j])!=null;j++){if(typeof i==="number")i+="";if(i){if(typeof i==="string"&&!jb.test(i))i=b.createTextNode(i);else if(typeof i==="string"){i=i.replace(Ka,Ma);var o=(La.exec(i)||["", +""])[1].toLowerCase(),k=F[o]||F._default,n=k[0],r=b.createElement("div");for(r.innerHTML=k[1]+i+k[2];n--;)r=r.lastChild;if(!c.support.tbody){n=ib.test(i);o=o==="table"&&!n?r.firstChild&&r.firstChild.childNodes:k[1]===""&&!n?r.childNodes:[];for(k=o.length-1;k>=0;--k)c.nodeName(o[k],"tbody")&&!o[k].childNodes.length&&o[k].parentNode.removeChild(o[k])}!c.support.leadingWhitespace&&V.test(i)&&r.insertBefore(b.createTextNode(V.exec(i)[0]),r.firstChild);i=r.childNodes}if(i.nodeType)e.push(i);else e= +c.merge(e,i)}}if(d)for(j=0;e[j];j++)if(f&&c.nodeName(e[j],"script")&&(!e[j].type||e[j].type.toLowerCase()==="text/javascript"))f.push(e[j].parentNode?e[j].parentNode.removeChild(e[j]):e[j]);else{e[j].nodeType===1&&e.splice.apply(e,[j+1,0].concat(c.makeArray(e[j].getElementsByTagName("script"))));d.appendChild(e[j])}return e},cleanData:function(a){for(var b,d,f=c.cache,e=c.event.special,j=c.support.deleteExpando,i=0,o;(o=a[i])!=null;i++)if(d=o[c.expando]){b=f[d];if(b.events)for(var k in b.events)e[k]? +c.event.remove(o,k):Ca(o,k,b.handle);if(j)delete o[c.expando];else o.removeAttribute&&o.removeAttribute(c.expando);delete f[d]}}});var kb=/z-?index|font-?weight|opacity|zoom|line-?height/i,Na=/alpha\([^)]*\)/,Oa=/opacity=([^)]*)/,ha=/float/i,ia=/-([a-z])/ig,lb=/([A-Z])/g,mb=/^-?\d+(?:px)?$/i,nb=/^-?\d/,ob={position:"absolute",visibility:"hidden",display:"block"},pb=["Left","Right"],qb=["Top","Bottom"],rb=s.defaultView&&s.defaultView.getComputedStyle,Pa=c.support.cssFloat?"cssFloat":"styleFloat",ja= +function(a,b){return b.toUpperCase()};c.fn.css=function(a,b){return X(this,a,b,true,function(d,f,e){if(e===w)return c.curCSS(d,f);if(typeof e==="number"&&!kb.test(f))e+="px";c.style(d,f,e)})};c.extend({style:function(a,b,d){if(!a||a.nodeType===3||a.nodeType===8)return w;if((b==="width"||b==="height")&&parseFloat(d)<0)d=w;var f=a.style||a,e=d!==w;if(!c.support.opacity&&b==="opacity"){if(e){f.zoom=1;b=parseInt(d,10)+""==="NaN"?"":"alpha(opacity="+d*100+")";a=f.filter||c.curCSS(a,"filter")||"";f.filter= +Na.test(a)?a.replace(Na,b):b}return f.filter&&f.filter.indexOf("opacity=")>=0?parseFloat(Oa.exec(f.filter)[1])/100+"":""}if(ha.test(b))b=Pa;b=b.replace(ia,ja);if(e)f[b]=d;return f[b]},css:function(a,b,d,f){if(b==="width"||b==="height"){var e,j=b==="width"?pb:qb;function i(){e=b==="width"?a.offsetWidth:a.offsetHeight;f!=="border"&&c.each(j,function(){f||(e-=parseFloat(c.curCSS(a,"padding"+this,true))||0);if(f==="margin")e+=parseFloat(c.curCSS(a,"margin"+this,true))||0;else e-=parseFloat(c.curCSS(a, +"border"+this+"Width",true))||0})}a.offsetWidth!==0?i():c.swap(a,ob,i);return Math.max(0,Math.round(e))}return c.curCSS(a,b,d)},curCSS:function(a,b,d){var f,e=a.style;if(!c.support.opacity&&b==="opacity"&&a.currentStyle){f=Oa.test(a.currentStyle.filter||"")?parseFloat(RegExp.$1)/100+"":"";return f===""?"1":f}if(ha.test(b))b=Pa;if(!d&&e&&e[b])f=e[b];else if(rb){if(ha.test(b))b="float";b=b.replace(lb,"-$1").toLowerCase();e=a.ownerDocument.defaultView;if(!e)return null;if(a=e.getComputedStyle(a,null))f= +a.getPropertyValue(b);if(b==="opacity"&&f==="")f="1"}else if(a.currentStyle){d=b.replace(ia,ja);f=a.currentStyle[b]||a.currentStyle[d];if(!mb.test(f)&&nb.test(f)){b=e.left;var j=a.runtimeStyle.left;a.runtimeStyle.left=a.currentStyle.left;e.left=d==="fontSize"?"1em":f||0;f=e.pixelLeft+"px";e.left=b;a.runtimeStyle.left=j}}return f},swap:function(a,b,d){var f={};for(var e in b){f[e]=a.style[e];a.style[e]=b[e]}d.call(a);for(e in b)a.style[e]=f[e]}});if(c.expr&&c.expr.filters){c.expr.filters.hidden=function(a){var b= +a.offsetWidth,d=a.offsetHeight,f=a.nodeName.toLowerCase()==="tr";return b===0&&d===0&&!f?true:b>0&&d>0&&!f?false:c.curCSS(a,"display")==="none"};c.expr.filters.visible=function(a){return!c.expr.filters.hidden(a)}}var sb=J(),tb=//gi,ub=/select|textarea/i,vb=/color|date|datetime|email|hidden|month|number|password|range|search|tel|text|time|url|week/i,N=/=\?(&|$)/,ka=/\?/,wb=/(\?|&)_=.*?(&|$)/,xb=/^(\w+:)?\/\/([^\/?#]+)/,yb=/%20/g,zb=c.fn.load;c.fn.extend({load:function(a,b,d){if(typeof a!== +"string")return zb.call(this,a);else if(!this.length)return this;var f=a.indexOf(" ");if(f>=0){var e=a.slice(f,a.length);a=a.slice(0,f)}f="GET";if(b)if(c.isFunction(b)){d=b;b=null}else if(typeof b==="object"){b=c.param(b,c.ajaxSettings.traditional);f="POST"}var j=this;c.ajax({url:a,type:f,dataType:"html",data:b,complete:function(i,o){if(o==="success"||o==="notmodified")j.html(e?c("
        ").append(i.responseText.replace(tb,"")).find(e):i.responseText);d&&j.each(d,[i.responseText,o,i])}});return this}, +serialize:function(){return c.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?c.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||ub.test(this.nodeName)||vb.test(this.type))}).map(function(a,b){a=c(this).val();return a==null?null:c.isArray(a)?c.map(a,function(d){return{name:b.name,value:d}}):{name:b.name,value:a}}).get()}});c.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "), +function(a,b){c.fn[b]=function(d){return this.bind(b,d)}});c.extend({get:function(a,b,d,f){if(c.isFunction(b)){f=f||d;d=b;b=null}return c.ajax({type:"GET",url:a,data:b,success:d,dataType:f})},getScript:function(a,b){return c.get(a,null,b,"script")},getJSON:function(a,b,d){return c.get(a,b,d,"json")},post:function(a,b,d,f){if(c.isFunction(b)){f=f||d;d=b;b={}}return c.ajax({type:"POST",url:a,data:b,success:d,dataType:f})},ajaxSetup:function(a){c.extend(c.ajaxSettings,a)},ajaxSettings:{url:location.href, +global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:A.XMLHttpRequest&&(A.location.protocol!=="file:"||!A.ActiveXObject)?function(){return new A.XMLHttpRequest}:function(){try{return new A.ActiveXObject("Microsoft.XMLHTTP")}catch(a){}},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},etag:{},ajax:function(a){function b(){e.success&& +e.success.call(k,o,i,x);e.global&&f("ajaxSuccess",[x,e])}function d(){e.complete&&e.complete.call(k,x,i);e.global&&f("ajaxComplete",[x,e]);e.global&&!--c.active&&c.event.trigger("ajaxStop")}function f(q,p){(e.context?c(e.context):c.event).trigger(q,p)}var e=c.extend(true,{},c.ajaxSettings,a),j,i,o,k=a&&a.context||e,n=e.type.toUpperCase();if(e.data&&e.processData&&typeof e.data!=="string")e.data=c.param(e.data,e.traditional);if(e.dataType==="jsonp"){if(n==="GET")N.test(e.url)||(e.url+=(ka.test(e.url)? +"&":"?")+(e.jsonp||"callback")+"=?");else if(!e.data||!N.test(e.data))e.data=(e.data?e.data+"&":"")+(e.jsonp||"callback")+"=?";e.dataType="json"}if(e.dataType==="json"&&(e.data&&N.test(e.data)||N.test(e.url))){j=e.jsonpCallback||"jsonp"+sb++;if(e.data)e.data=(e.data+"").replace(N,"="+j+"$1");e.url=e.url.replace(N,"="+j+"$1");e.dataType="script";A[j]=A[j]||function(q){o=q;b();d();A[j]=w;try{delete A[j]}catch(p){}z&&z.removeChild(C)}}if(e.dataType==="script"&&e.cache===null)e.cache=false;if(e.cache=== +false&&n==="GET"){var r=J(),u=e.url.replace(wb,"$1_="+r+"$2");e.url=u+(u===e.url?(ka.test(e.url)?"&":"?")+"_="+r:"")}if(e.data&&n==="GET")e.url+=(ka.test(e.url)?"&":"?")+e.data;e.global&&!c.active++&&c.event.trigger("ajaxStart");r=(r=xb.exec(e.url))&&(r[1]&&r[1]!==location.protocol||r[2]!==location.host);if(e.dataType==="script"&&n==="GET"&&r){var z=s.getElementsByTagName("head")[0]||s.documentElement,C=s.createElement("script");C.src=e.url;if(e.scriptCharset)C.charset=e.scriptCharset;if(!j){var B= +false;C.onload=C.onreadystatechange=function(){if(!B&&(!this.readyState||this.readyState==="loaded"||this.readyState==="complete")){B=true;b();d();C.onload=C.onreadystatechange=null;z&&C.parentNode&&z.removeChild(C)}}}z.insertBefore(C,z.firstChild);return w}var E=false,x=e.xhr();if(x){e.username?x.open(n,e.url,e.async,e.username,e.password):x.open(n,e.url,e.async);try{if(e.data||a&&a.contentType)x.setRequestHeader("Content-Type",e.contentType);if(e.ifModified){c.lastModified[e.url]&&x.setRequestHeader("If-Modified-Since", +c.lastModified[e.url]);c.etag[e.url]&&x.setRequestHeader("If-None-Match",c.etag[e.url])}r||x.setRequestHeader("X-Requested-With","XMLHttpRequest");x.setRequestHeader("Accept",e.dataType&&e.accepts[e.dataType]?e.accepts[e.dataType]+", */*":e.accepts._default)}catch(ga){}if(e.beforeSend&&e.beforeSend.call(k,x,e)===false){e.global&&!--c.active&&c.event.trigger("ajaxStop");x.abort();return false}e.global&&f("ajaxSend",[x,e]);var g=x.onreadystatechange=function(q){if(!x||x.readyState===0||q==="abort"){E|| +d();E=true;if(x)x.onreadystatechange=c.noop}else if(!E&&x&&(x.readyState===4||q==="timeout")){E=true;x.onreadystatechange=c.noop;i=q==="timeout"?"timeout":!c.httpSuccess(x)?"error":e.ifModified&&c.httpNotModified(x,e.url)?"notmodified":"success";var p;if(i==="success")try{o=c.httpData(x,e.dataType,e)}catch(v){i="parsererror";p=v}if(i==="success"||i==="notmodified")j||b();else c.handleError(e,x,i,p);d();q==="timeout"&&x.abort();if(e.async)x=null}};try{var h=x.abort;x.abort=function(){x&&h.call(x); +g("abort")}}catch(l){}e.async&&e.timeout>0&&setTimeout(function(){x&&!E&&g("timeout")},e.timeout);try{x.send(n==="POST"||n==="PUT"||n==="DELETE"?e.data:null)}catch(m){c.handleError(e,x,null,m);d()}e.async||g();return x}},handleError:function(a,b,d,f){if(a.error)a.error.call(a.context||a,b,d,f);if(a.global)(a.context?c(a.context):c.event).trigger("ajaxError",[b,a,f])},active:0,httpSuccess:function(a){try{return!a.status&&location.protocol==="file:"||a.status>=200&&a.status<300||a.status===304||a.status=== +1223||a.status===0}catch(b){}return false},httpNotModified:function(a,b){var d=a.getResponseHeader("Last-Modified"),f=a.getResponseHeader("Etag");if(d)c.lastModified[b]=d;if(f)c.etag[b]=f;return a.status===304||a.status===0},httpData:function(a,b,d){var f=a.getResponseHeader("content-type")||"",e=b==="xml"||!b&&f.indexOf("xml")>=0;a=e?a.responseXML:a.responseText;e&&a.documentElement.nodeName==="parsererror"&&c.error("parsererror");if(d&&d.dataFilter)a=d.dataFilter(a,b);if(typeof a==="string")if(b=== +"json"||!b&&f.indexOf("json")>=0)a=c.parseJSON(a);else if(b==="script"||!b&&f.indexOf("javascript")>=0)c.globalEval(a);return a},param:function(a,b){function d(i,o){if(c.isArray(o))c.each(o,function(k,n){b||/\[\]$/.test(i)?f(i,n):d(i+"["+(typeof n==="object"||c.isArray(n)?k:"")+"]",n)});else!b&&o!=null&&typeof o==="object"?c.each(o,function(k,n){d(i+"["+k+"]",n)}):f(i,o)}function f(i,o){o=c.isFunction(o)?o():o;e[e.length]=encodeURIComponent(i)+"="+encodeURIComponent(o)}var e=[];if(b===w)b=c.ajaxSettings.traditional; +if(c.isArray(a)||a.jquery)c.each(a,function(){f(this.name,this.value)});else for(var j in a)d(j,a[j]);return e.join("&").replace(yb,"+")}});var la={},Ab=/toggle|show|hide/,Bb=/^([+-]=)?([\d+-.]+)(.*)$/,W,va=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];c.fn.extend({show:function(a,b){if(a||a===0)return this.animate(K("show",3),a,b);else{a=0;for(b=this.length;a").appendTo("body");f=e.css("display");if(f==="none")f="block";e.remove();la[d]=f}c.data(this[a],"olddisplay",f)}}a=0;for(b=this.length;a=0;f--)if(d[f].elem===this){b&&d[f](true);d.splice(f,1)}});b||this.dequeue();return this}});c.each({slideDown:K("show",1),slideUp:K("hide",1),slideToggle:K("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(a,b){c.fn[a]=function(d,f){return this.animate(b,d,f)}});c.extend({speed:function(a,b,d){var f=a&&typeof a==="object"?a:{complete:d||!d&&b||c.isFunction(a)&&a,duration:a,easing:d&&b||b&&!c.isFunction(b)&&b};f.duration=c.fx.off?0:typeof f.duration=== +"number"?f.duration:c.fx.speeds[f.duration]||c.fx.speeds._default;f.old=f.complete;f.complete=function(){f.queue!==false&&c(this).dequeue();c.isFunction(f.old)&&f.old.call(this)};return f},easing:{linear:function(a,b,d,f){return d+f*a},swing:function(a,b,d,f){return(-Math.cos(a*Math.PI)/2+0.5)*f+d}},timers:[],fx:function(a,b,d){this.options=b;this.elem=a;this.prop=d;if(!b.orig)b.orig={}}});c.fx.prototype={update:function(){this.options.step&&this.options.step.call(this.elem,this.now,this);(c.fx.step[this.prop]|| +c.fx.step._default)(this);if((this.prop==="height"||this.prop==="width")&&this.elem.style)this.elem.style.display="block"},cur:function(a){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null))return this.elem[this.prop];return(a=parseFloat(c.css(this.elem,this.prop,a)))&&a>-10000?a:parseFloat(c.curCSS(this.elem,this.prop))||0},custom:function(a,b,d){function f(j){return e.step(j)}this.startTime=J();this.start=a;this.end=b;this.unit=d||this.unit||"px";this.now=this.start; +this.pos=this.state=0;var e=this;f.elem=this.elem;if(f()&&c.timers.push(f)&&!W)W=setInterval(c.fx.tick,13)},show:function(){this.options.orig[this.prop]=c.style(this.elem,this.prop);this.options.show=true;this.custom(this.prop==="width"||this.prop==="height"?1:0,this.cur());c(this.elem).show()},hide:function(){this.options.orig[this.prop]=c.style(this.elem,this.prop);this.options.hide=true;this.custom(this.cur(),0)},step:function(a){var b=J(),d=true;if(a||b>=this.options.duration+this.startTime){this.now= +this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;for(var f in this.options.curAnim)if(this.options.curAnim[f]!==true)d=false;if(d){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;a=c.data(this.elem,"olddisplay");this.elem.style.display=a?a:this.options.display;if(c.css(this.elem,"display")==="none")this.elem.style.display="block"}this.options.hide&&c(this.elem).hide();if(this.options.hide||this.options.show)for(var e in this.options.curAnim)c.style(this.elem, +e,this.options.orig[e]);this.options.complete.call(this.elem)}return false}else{e=b-this.startTime;this.state=e/this.options.duration;a=this.options.easing||(c.easing.swing?"swing":"linear");this.pos=c.easing[this.options.specialEasing&&this.options.specialEasing[this.prop]||a](this.state,e,0,1,this.options.duration);this.now=this.start+(this.end-this.start)*this.pos;this.update()}return true}};c.extend(c.fx,{tick:function(){for(var a=c.timers,b=0;b
        "; +a.insertBefore(b,a.firstChild);d=b.firstChild;f=d.firstChild;e=d.nextSibling.firstChild.firstChild;this.doesNotAddBorder=f.offsetTop!==5;this.doesAddBorderForTableAndCells=e.offsetTop===5;f.style.position="fixed";f.style.top="20px";this.supportsFixedPosition=f.offsetTop===20||f.offsetTop===15;f.style.position=f.style.top="";d.style.overflow="hidden";d.style.position="relative";this.subtractsBorderForOverflowNotVisible=f.offsetTop===-5;this.doesNotIncludeMarginInBodyOffset=a.offsetTop!==j;a.removeChild(b); +c.offset.initialize=c.noop},bodyOffset:function(a){var b=a.offsetTop,d=a.offsetLeft;c.offset.initialize();if(c.offset.doesNotIncludeMarginInBodyOffset){b+=parseFloat(c.curCSS(a,"marginTop",true))||0;d+=parseFloat(c.curCSS(a,"marginLeft",true))||0}return{top:b,left:d}},setOffset:function(a,b,d){if(/static/.test(c.curCSS(a,"position")))a.style.position="relative";var f=c(a),e=f.offset(),j=parseInt(c.curCSS(a,"top",true),10)||0,i=parseInt(c.curCSS(a,"left",true),10)||0;if(c.isFunction(b))b=b.call(a, +d,e);d={top:b.top-e.top+j,left:b.left-e.left+i};"using"in b?b.using.call(a,d):f.css(d)}};c.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),d=this.offset(),f=/^body|html$/i.test(b[0].nodeName)?{top:0,left:0}:b.offset();d.top-=parseFloat(c.curCSS(a,"marginTop",true))||0;d.left-=parseFloat(c.curCSS(a,"marginLeft",true))||0;f.top+=parseFloat(c.curCSS(b[0],"borderTopWidth",true))||0;f.left+=parseFloat(c.curCSS(b[0],"borderLeftWidth",true))||0;return{top:d.top- +f.top,left:d.left-f.left}},offsetParent:function(){return this.map(function(){for(var a=this.offsetParent||s.body;a&&!/^body|html$/i.test(a.nodeName)&&c.css(a,"position")==="static";)a=a.offsetParent;return a})}});c.each(["Left","Top"],function(a,b){var d="scroll"+b;c.fn[d]=function(f){var e=this[0],j;if(!e)return null;if(f!==w)return this.each(function(){if(j=wa(this))j.scrollTo(!a?f:c(j).scrollLeft(),a?f:c(j).scrollTop());else this[d]=f});else return(j=wa(e))?"pageXOffset"in j?j[a?"pageYOffset": +"pageXOffset"]:c.support.boxModel&&j.document.documentElement[d]||j.document.body[d]:e[d]}});c.each(["Height","Width"],function(a,b){var d=b.toLowerCase();c.fn["inner"+b]=function(){return this[0]?c.css(this[0],d,false,"padding"):null};c.fn["outer"+b]=function(f){return this[0]?c.css(this[0],d,false,f?"margin":"border"):null};c.fn[d]=function(f){var e=this[0];if(!e)return f==null?null:this;if(c.isFunction(f))return this.each(function(j){var i=c(this);i[d](f.call(this,j,i[d]()))});return"scrollTo"in +e&&e.document?e.document.compatMode==="CSS1Compat"&&e.document.documentElement["client"+b]||e.document.body["client"+b]:e.nodeType===9?Math.max(e.documentElement["client"+b],e.body["scroll"+b],e.documentElement["scroll"+b],e.body["offset"+b],e.documentElement["offset"+b]):f===w?c.css(e,d):this.css(d,typeof f==="string"?f:f+"px")}});A.jQuery=A.$=c})(window); diff --git a/docbook-xsl-1.76.1/webhelp/template/common/jquery/jquery-ui-1.8.2.custom.min.js b/docbook-xsl-1.76.1/webhelp/template/common/jquery/jquery-ui-1.8.2.custom.min.js new file mode 100755 index 0000000..fec53e8 --- /dev/null +++ b/docbook-xsl-1.76.1/webhelp/template/common/jquery/jquery-ui-1.8.2.custom.min.js @@ -0,0 +1,321 @@ +/*! + * jQuery UI 1.8.2 + * + * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI + */ +(function(c){c.ui=c.ui||{};if(!c.ui.version){c.extend(c.ui,{version:"1.8.2",plugin:{add:function(a,b,d){a=c.ui[a].prototype;for(var e in d){a.plugins[e]=a.plugins[e]||[];a.plugins[e].push([b,d[e]])}},call:function(a,b,d){if((b=a.plugins[b])&&a.element[0].parentNode)for(var e=0;e0)return true;a[b]=1;d=a[b]>0;a[b]=0;return d},isOverAxis:function(a,b,d){return a>b&&a=0)&&c(a).is(":focusable")}})}})(jQuery); +;/*! + * jQuery UI Widget 1.8.2 + * + * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Widget + */ +(function(b){var j=b.fn.remove;b.fn.remove=function(a,c){return this.each(function(){if(!c)if(!a||b.filter(a,[this]).length)b("*",this).add(this).each(function(){b(this).triggerHandler("remove")});return j.call(b(this),a,c)})};b.widget=function(a,c,d){var e=a.split(".")[0],f;a=a.split(".")[1];f=e+"-"+a;if(!d){d=c;c=b.Widget}b.expr[":"][f]=function(h){return!!b.data(h,a)};b[e]=b[e]||{};b[e][a]=function(h,g){arguments.length&&this._createWidget(h,g)};c=new c;c.options=b.extend({},c.options);b[e][a].prototype= +b.extend(true,c,{namespace:e,widgetName:a,widgetEventPrefix:b[e][a].prototype.widgetEventPrefix||a,widgetBaseClass:f},d);b.widget.bridge(a,b[e][a])};b.widget.bridge=function(a,c){b.fn[a]=function(d){var e=typeof d==="string",f=Array.prototype.slice.call(arguments,1),h=this;d=!e&&f.length?b.extend.apply(null,[true,d].concat(f)):d;if(e&&d.substring(0,1)==="_")return h;e?this.each(function(){var g=b.data(this,a),i=g&&b.isFunction(g[d])?g[d].apply(g,f):g;if(i!==g&&i!==undefined){h=i;return false}}):this.each(function(){var g= +b.data(this,a);if(g){d&&g.option(d);g._init()}else b.data(this,a,new c(d,this))});return h}};b.Widget=function(a,c){arguments.length&&this._createWidget(a,c)};b.Widget.prototype={widgetName:"widget",widgetEventPrefix:"",options:{disabled:false},_createWidget:function(a,c){this.element=b(c).data(this.widgetName,this);this.options=b.extend(true,{},this.options,b.metadata&&b.metadata.get(c)[this.widgetName],a);var d=this;this.element.bind("remove."+this.widgetName,function(){d.destroy()});this._create(); +this._init()},_create:function(){},_init:function(){},destroy:function(){this.element.unbind("."+this.widgetName).removeData(this.widgetName);this.widget().unbind("."+this.widgetName).removeAttr("aria-disabled").removeClass(this.widgetBaseClass+"-disabled ui-state-disabled")},widget:function(){return this.element},option:function(a,c){var d=a,e=this;if(arguments.length===0)return b.extend({},e.options);if(typeof a==="string"){if(c===undefined)return this.options[a];d={};d[a]=c}b.each(d,function(f, +h){e._setOption(f,h)});return e},_setOption:function(a,c){this.options[a]=c;if(a==="disabled")this.widget()[c?"addClass":"removeClass"](this.widgetBaseClass+"-disabled ui-state-disabled").attr("aria-disabled",c);return this},enable:function(){return this._setOption("disabled",false)},disable:function(){return this._setOption("disabled",true)},_trigger:function(a,c,d){var e=this.options[a];c=b.Event(c);c.type=(a===this.widgetEventPrefix?a:this.widgetEventPrefix+a).toLowerCase();d=d||{};if(c.originalEvent){a= +b.event.props.length;for(var f;a;){f=b.event.props[--a];c[f]=c.originalEvent[f]}}this.element.trigger(c,d);return!(b.isFunction(e)&&e.call(this.element[0],c,d)===false||c.isDefaultPrevented())}}})(jQuery); +;/*! + * jQuery UI Mouse 1.8.2 + * + * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Mouse + * + * Depends: + * jquery.ui.widget.js + */ +(function(c){c.widget("ui.mouse",{options:{cancel:":input,option",distance:1,delay:0},_mouseInit:function(){var a=this;this.element.bind("mousedown."+this.widgetName,function(b){return a._mouseDown(b)}).bind("click."+this.widgetName,function(b){if(a._preventClickEvent){a._preventClickEvent=false;b.stopImmediatePropagation();return false}});this.started=false},_mouseDestroy:function(){this.element.unbind("."+this.widgetName)},_mouseDown:function(a){a.originalEvent=a.originalEvent||{};if(!a.originalEvent.mouseHandled){this._mouseStarted&& +this._mouseUp(a);this._mouseDownEvent=a;var b=this,e=a.which==1,f=typeof this.options.cancel=="string"?c(a.target).parents().add(a.target).filter(this.options.cancel).length:false;if(!e||f||!this._mouseCapture(a))return true;this.mouseDelayMet=!this.options.delay;if(!this.mouseDelayMet)this._mouseDelayTimer=setTimeout(function(){b.mouseDelayMet=true},this.options.delay);if(this._mouseDistanceMet(a)&&this._mouseDelayMet(a)){this._mouseStarted=this._mouseStart(a)!==false;if(!this._mouseStarted){a.preventDefault(); +return true}}this._mouseMoveDelegate=function(d){return b._mouseMove(d)};this._mouseUpDelegate=function(d){return b._mouseUp(d)};c(document).bind("mousemove."+this.widgetName,this._mouseMoveDelegate).bind("mouseup."+this.widgetName,this._mouseUpDelegate);c.browser.safari||a.preventDefault();return a.originalEvent.mouseHandled=true}},_mouseMove:function(a){if(c.browser.msie&&!a.button)return this._mouseUp(a);if(this._mouseStarted){this._mouseDrag(a);return a.preventDefault()}if(this._mouseDistanceMet(a)&& +this._mouseDelayMet(a))(this._mouseStarted=this._mouseStart(this._mouseDownEvent,a)!==false)?this._mouseDrag(a):this._mouseUp(a);return!this._mouseStarted},_mouseUp:function(a){c(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate);if(this._mouseStarted){this._mouseStarted=false;this._preventClickEvent=a.target==this._mouseDownEvent.target;this._mouseStop(a)}return false},_mouseDistanceMet:function(a){return Math.max(Math.abs(this._mouseDownEvent.pageX- +a.pageX),Math.abs(this._mouseDownEvent.pageY-a.pageY))>=this.options.distance},_mouseDelayMet:function(){return this.mouseDelayMet},_mouseStart:function(){},_mouseDrag:function(){},_mouseStop:function(){},_mouseCapture:function(){return true}})})(jQuery); +;/* + * jQuery UI Position 1.8.2 + * + * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Position + */ +(function(c){c.ui=c.ui||{};var m=/left|center|right/,n=/top|center|bottom/,p=c.fn.position,q=c.fn.offset;c.fn.position=function(a){if(!a||!a.of)return p.apply(this,arguments);a=c.extend({},a);var b=c(a.of),d=(a.collision||"flip").split(" "),e=a.offset?a.offset.split(" "):[0,0],g,h,i;if(a.of.nodeType===9){g=b.width();h=b.height();i={top:0,left:0}}else if(a.of.scrollTo&&a.of.document){g=b.width();h=b.height();i={top:b.scrollTop(),left:b.scrollLeft()}}else if(a.of.preventDefault){a.at="left top";g=h= +0;i={top:a.of.pageY,left:a.of.pageX}}else{g=b.outerWidth();h=b.outerHeight();i=b.offset()}c.each(["my","at"],function(){var f=(a[this]||"").split(" ");if(f.length===1)f=m.test(f[0])?f.concat(["center"]):n.test(f[0])?["center"].concat(f):["center","center"];f[0]=m.test(f[0])?f[0]:"center";f[1]=n.test(f[1])?f[1]:"center";a[this]=f});if(d.length===1)d[1]=d[0];e[0]=parseInt(e[0],10)||0;if(e.length===1)e[1]=e[0];e[1]=parseInt(e[1],10)||0;if(a.at[0]==="right")i.left+=g;else if(a.at[0]==="center")i.left+= +g/2;if(a.at[1]==="bottom")i.top+=h;else if(a.at[1]==="center")i.top+=h/2;i.left+=e[0];i.top+=e[1];return this.each(function(){var f=c(this),k=f.outerWidth(),l=f.outerHeight(),j=c.extend({},i);if(a.my[0]==="right")j.left-=k;else if(a.my[0]==="center")j.left-=k/2;if(a.my[1]==="bottom")j.top-=l;else if(a.my[1]==="center")j.top-=l/2;j.left=parseInt(j.left);j.top=parseInt(j.top);c.each(["left","top"],function(o,r){c.ui.position[d[o]]&&c.ui.position[d[o]][r](j,{targetWidth:g,targetHeight:h,elemWidth:k, +elemHeight:l,offset:e,my:a.my,at:a.at})});c.fn.bgiframe&&f.bgiframe();f.offset(c.extend(j,{using:a.using}))})};c.ui.position={fit:{left:function(a,b){var d=c(window);b=a.left+b.elemWidth-d.width()-d.scrollLeft();a.left=b>0?a.left-b:Math.max(0,a.left)},top:function(a,b){var d=c(window);b=a.top+b.elemHeight-d.height()-d.scrollTop();a.top=b>0?a.top-b:Math.max(0,a.top)}},flip:{left:function(a,b){if(b.at[0]!=="center"){var d=c(window);d=a.left+b.elemWidth-d.width()-d.scrollLeft();var e=b.my[0]==="left"? +-b.elemWidth:b.my[0]==="right"?b.elemWidth:0,g=-2*b.offset[0];a.left+=a.left<0?e+b.targetWidth+g:d>0?e-b.targetWidth+g:0}},top:function(a,b){if(b.at[1]!=="center"){var d=c(window);d=a.top+b.elemHeight-d.height()-d.scrollTop();var e=b.my[1]==="top"?-b.elemHeight:b.my[1]==="bottom"?b.elemHeight:0,g=b.at[1]==="top"?b.targetHeight:-b.targetHeight,h=-2*b.offset[1];a.top+=a.top<0?e+b.targetHeight+h:d>0?e+g+h:0}}}};if(!c.offset.setOffset){c.offset.setOffset=function(a,b){if(/static/.test(c.curCSS(a,"position")))a.style.position= +"relative";var d=c(a),e=d.offset(),g=parseInt(c.curCSS(a,"top",true),10)||0,h=parseInt(c.curCSS(a,"left",true),10)||0;e={top:b.top-e.top+g,left:b.left-e.left+h};"using"in b?b.using.call(a,e):d.css(e)};c.fn.offset=function(a){var b=this[0];if(!b||!b.ownerDocument)return null;if(a)return this.each(function(){c.offset.setOffset(this,a)});return q.call(this)}}})(jQuery); +;/* + * jQuery UI Resizable 1.8.2 + * + * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Resizables + * + * Depends: + * jquery.ui.core.js + * jquery.ui.mouse.js + * jquery.ui.widget.js + */ +(function(d){d.widget("ui.resizable",d.ui.mouse,{widgetEventPrefix:"resize",options:{alsoResize:false,animate:false,animateDuration:"slow",animateEasing:"swing",aspectRatio:false,autoHide:false,containment:false,ghost:false,grid:false,handles:"e,s,se",helper:false,maxHeight:null,maxWidth:null,minHeight:10,minWidth:10,zIndex:1E3},_create:function(){var b=this,a=this.options;this.element.addClass("ui-resizable");d.extend(this,{_aspectRatio:!!a.aspectRatio,aspectRatio:a.aspectRatio,originalElement:this.element, +_proportionallyResizeElements:[],_helper:a.helper||a.ghost||a.animate?a.helper||"ui-resizable-helper":null});if(this.element[0].nodeName.match(/canvas|textarea|input|select|button|img/i)){/relative/.test(this.element.css("position"))&&d.browser.opera&&this.element.css({position:"relative",top:"auto",left:"auto"});this.element.wrap(d('
        ').css({position:this.element.css("position"),width:this.element.outerWidth(),height:this.element.outerHeight(), +top:this.element.css("top"),left:this.element.css("left")}));this.element=this.element.parent().data("resizable",this.element.data("resizable"));this.elementIsWrapper=true;this.element.css({marginLeft:this.originalElement.css("marginLeft"),marginTop:this.originalElement.css("marginTop"),marginRight:this.originalElement.css("marginRight"),marginBottom:this.originalElement.css("marginBottom")});this.originalElement.css({marginLeft:0,marginTop:0,marginRight:0,marginBottom:0});this.originalResizeStyle= +this.originalElement.css("resize");this.originalElement.css("resize","none");this._proportionallyResizeElements.push(this.originalElement.css({position:"static",zoom:1,display:"block"}));this.originalElement.css({margin:this.originalElement.css("margin")});this._proportionallyResize()}this.handles=a.handles||(!d(".ui-resizable-handle",this.element).length?"e,s,se":{n:".ui-resizable-n",e:".ui-resizable-e",s:".ui-resizable-s",w:".ui-resizable-w",se:".ui-resizable-se",sw:".ui-resizable-sw",ne:".ui-resizable-ne", +nw:".ui-resizable-nw"});if(this.handles.constructor==String){if(this.handles=="all")this.handles="n,e,s,w,se,sw,ne,nw";var c=this.handles.split(",");this.handles={};for(var e=0;e
      ');/sw|se|ne|nw/.test(g)&&f.css({zIndex:++a.zIndex});"se"==g&&f.addClass("ui-icon ui-icon-gripsmall-diagonal-se");this.handles[g]=".ui-resizable-"+g;this.element.append(f)}}this._renderAxis=function(h){h=h||this.element;for(var i in this.handles){if(this.handles[i].constructor== +String)this.handles[i]=d(this.handles[i],this.element).show();if(this.elementIsWrapper&&this.originalElement[0].nodeName.match(/textarea|input|select|button/i)){var j=d(this.handles[i],this.element),l=0;l=/sw|ne|nw|se|n|s/.test(i)?j.outerHeight():j.outerWidth();j=["padding",/ne|nw|n/.test(i)?"Top":/se|sw|s/.test(i)?"Bottom":/^e$/.test(i)?"Right":"Left"].join("");h.css(j,l);this._proportionallyResize()}d(this.handles[i])}};this._renderAxis(this.element);this._handles=d(".ui-resizable-handle",this.element).disableSelection(); +this._handles.mouseover(function(){if(!b.resizing){if(this.className)var h=this.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i);b.axis=h&&h[1]?h[1]:"se"}});if(a.autoHide){this._handles.hide();d(this.element).addClass("ui-resizable-autohide").hover(function(){d(this).removeClass("ui-resizable-autohide");b._handles.show()},function(){if(!b.resizing){d(this).addClass("ui-resizable-autohide");b._handles.hide()}})}this._mouseInit()},destroy:function(){this._mouseDestroy();var b=function(c){d(c).removeClass("ui-resizable ui-resizable-disabled ui-resizable-resizing").removeData("resizable").unbind(".resizable").find(".ui-resizable-handle").remove()}; +if(this.elementIsWrapper){b(this.element);var a=this.element;a.after(this.originalElement.css({position:a.css("position"),width:a.outerWidth(),height:a.outerHeight(),top:a.css("top"),left:a.css("left")})).remove()}this.originalElement.css("resize",this.originalResizeStyle);b(this.originalElement);return this},_mouseCapture:function(b){var a=false;for(var c in this.handles)if(d(this.handles[c])[0]==b.target)a=true;return!this.options.disabled&&a},_mouseStart:function(b){var a=this.options,c=this.element.position(), +e=this.element;this.resizing=true;this.documentScroll={top:d(document).scrollTop(),left:d(document).scrollLeft()};if(e.is(".ui-draggable")||/absolute/.test(e.css("position")))e.css({position:"absolute",top:c.top,left:c.left});d.browser.opera&&/relative/.test(e.css("position"))&&e.css({position:"relative",top:"auto",left:"auto"});this._renderProxy();c=m(this.helper.css("left"));var g=m(this.helper.css("top"));if(a.containment){c+=d(a.containment).scrollLeft()||0;g+=d(a.containment).scrollTop()||0}this.offset= +this.helper.offset();this.position={left:c,top:g};this.size=this._helper?{width:e.outerWidth(),height:e.outerHeight()}:{width:e.width(),height:e.height()};this.originalSize=this._helper?{width:e.outerWidth(),height:e.outerHeight()}:{width:e.width(),height:e.height()};this.originalPosition={left:c,top:g};this.sizeDiff={width:e.outerWidth()-e.width(),height:e.outerHeight()-e.height()};this.originalMousePosition={left:b.pageX,top:b.pageY};this.aspectRatio=typeof a.aspectRatio=="number"?a.aspectRatio: +this.originalSize.width/this.originalSize.height||1;a=d(".ui-resizable-"+this.axis).css("cursor");d("body").css("cursor",a=="auto"?this.axis+"-resize":a);e.addClass("ui-resizable-resizing");this._propagate("start",b);return true},_mouseDrag:function(b){var a=this.helper,c=this.originalMousePosition,e=this._change[this.axis];if(!e)return false;c=e.apply(this,[b,b.pageX-c.left||0,b.pageY-c.top||0]);if(this._aspectRatio||b.shiftKey)c=this._updateRatio(c,b);c=this._respectSize(c,b);this._propagate("resize", +b);a.css({top:this.position.top+"px",left:this.position.left+"px",width:this.size.width+"px",height:this.size.height+"px"});!this._helper&&this._proportionallyResizeElements.length&&this._proportionallyResize();this._updateCache(c);this._trigger("resize",b,this.ui());return false},_mouseStop:function(b){this.resizing=false;var a=this.options,c=this;if(this._helper){var e=this._proportionallyResizeElements,g=e.length&&/textarea/i.test(e[0].nodeName);e=g&&d.ui.hasScroll(e[0],"left")?0:c.sizeDiff.height; +g={width:c.size.width-(g?0:c.sizeDiff.width),height:c.size.height-e};e=parseInt(c.element.css("left"),10)+(c.position.left-c.originalPosition.left)||null;var f=parseInt(c.element.css("top"),10)+(c.position.top-c.originalPosition.top)||null;a.animate||this.element.css(d.extend(g,{top:f,left:e}));c.helper.height(c.size.height);c.helper.width(c.size.width);this._helper&&!a.animate&&this._proportionallyResize()}d("body").css("cursor","auto");this.element.removeClass("ui-resizable-resizing");this._propagate("stop", +b);this._helper&&this.helper.remove();return false},_updateCache:function(b){this.offset=this.helper.offset();if(k(b.left))this.position.left=b.left;if(k(b.top))this.position.top=b.top;if(k(b.height))this.size.height=b.height;if(k(b.width))this.size.width=b.width},_updateRatio:function(b){var a=this.position,c=this.size,e=this.axis;if(b.height)b.width=c.height*this.aspectRatio;else if(b.width)b.height=c.width/this.aspectRatio;if(e=="sw"){b.left=a.left+(c.width-b.width);b.top=null}if(e=="nw"){b.top= +a.top+(c.height-b.height);b.left=a.left+(c.width-b.width)}return b},_respectSize:function(b){var a=this.options,c=this.axis,e=k(b.width)&&a.maxWidth&&a.maxWidthb.width,h=k(b.height)&&a.minHeight&&a.minHeight>b.height;if(f)b.width=a.minWidth;if(h)b.height=a.minHeight;if(e)b.width=a.maxWidth;if(g)b.height=a.maxHeight;var i=this.originalPosition.left+this.originalSize.width,j=this.position.top+this.size.height, +l=/sw|nw|w/.test(c);c=/nw|ne|n/.test(c);if(f&&l)b.left=i-a.minWidth;if(e&&l)b.left=i-a.maxWidth;if(h&&c)b.top=j-a.minHeight;if(g&&c)b.top=j-a.maxHeight;if((a=!b.width&&!b.height)&&!b.left&&b.top)b.top=null;else if(a&&!b.top&&b.left)b.left=null;return b},_proportionallyResize:function(){if(this._proportionallyResizeElements.length)for(var b=this.helper||this.element,a=0;a
      ');var a=d.browser.msie&&d.browser.version<7,c=a?1:0;a=a?2:-1;this.helper.addClass(this._helper).css({width:this.element.outerWidth()+a,height:this.element.outerHeight()+a,position:"absolute",left:this.elementOffset.left-c+"px",top:this.elementOffset.top-c+"px",zIndex:++b.zIndex});this.helper.appendTo("body").disableSelection()}else this.helper=this.element},_change:{e:function(b,a){return{width:this.originalSize.width+ +a}},w:function(b,a){return{left:this.originalPosition.left+a,width:this.originalSize.width-a}},n:function(b,a,c){return{top:this.originalPosition.top+c,height:this.originalSize.height-c}},s:function(b,a,c){return{height:this.originalSize.height+c}},se:function(b,a,c){return d.extend(this._change.s.apply(this,arguments),this._change.e.apply(this,[b,a,c]))},sw:function(b,a,c){return d.extend(this._change.s.apply(this,arguments),this._change.w.apply(this,[b,a,c]))},ne:function(b,a,c){return d.extend(this._change.n.apply(this, +arguments),this._change.e.apply(this,[b,a,c]))},nw:function(b,a,c){return d.extend(this._change.n.apply(this,arguments),this._change.w.apply(this,[b,a,c]))}},_propagate:function(b,a){d.ui.plugin.call(this,b,[a,this.ui()]);b!="resize"&&this._trigger(b,a,this.ui())},plugins:{},ui:function(){return{originalElement:this.originalElement,element:this.element,helper:this.helper,position:this.position,size:this.size,originalSize:this.originalSize,originalPosition:this.originalPosition}}});d.extend(d.ui.resizable, +{version:"1.8.2"});d.ui.plugin.add("resizable","alsoResize",{start:function(){var b=d(this).data("resizable").options,a=function(c){d(c).each(function(){d(this).data("resizable-alsoresize",{width:parseInt(d(this).width(),10),height:parseInt(d(this).height(),10),left:parseInt(d(this).css("left"),10),top:parseInt(d(this).css("top"),10)})})};if(typeof b.alsoResize=="object"&&!b.alsoResize.parentNode)if(b.alsoResize.length){b.alsoResize=b.alsoResize[0];a(b.alsoResize)}else d.each(b.alsoResize,function(c){a(c)}); +else a(b.alsoResize)},resize:function(){var b=d(this).data("resizable"),a=b.options,c=b.originalSize,e=b.originalPosition,g={height:b.size.height-c.height||0,width:b.size.width-c.width||0,top:b.position.top-e.top||0,left:b.position.left-e.left||0},f=function(h,i){d(h).each(function(){var j=d(this),l=d(this).data("resizable-alsoresize"),p={};d.each((i&&i.length?i:["width","height","top","left"])||["width","height","top","left"],function(n,o){if((n=(l[o]||0)+(g[o]||0))&&n>=0)p[o]=n||null});if(/relative/.test(j.css("position"))&& +d.browser.opera){b._revertToRelativePosition=true;j.css({position:"absolute",top:"auto",left:"auto"})}j.css(p)})};typeof a.alsoResize=="object"&&!a.alsoResize.nodeType?d.each(a.alsoResize,function(h,i){f(h,i)}):f(a.alsoResize)},stop:function(){var b=d(this).data("resizable");if(b._revertToRelativePosition&&d.browser.opera){b._revertToRelativePosition=false;el.css({position:"relative"})}d(this).removeData("resizable-alsoresize-start")}});d.ui.plugin.add("resizable","animate",{stop:function(b){var a= +d(this).data("resizable"),c=a.options,e=a._proportionallyResizeElements,g=e.length&&/textarea/i.test(e[0].nodeName),f=g&&d.ui.hasScroll(e[0],"left")?0:a.sizeDiff.height;g={width:a.size.width-(g?0:a.sizeDiff.width),height:a.size.height-f};f=parseInt(a.element.css("left"),10)+(a.position.left-a.originalPosition.left)||null;var h=parseInt(a.element.css("top"),10)+(a.position.top-a.originalPosition.top)||null;a.element.animate(d.extend(g,h&&f?{top:h,left:f}:{}),{duration:c.animateDuration,easing:c.animateEasing, +step:function(){var i={width:parseInt(a.element.css("width"),10),height:parseInt(a.element.css("height"),10),top:parseInt(a.element.css("top"),10),left:parseInt(a.element.css("left"),10)};e&&e.length&&d(e[0]).css({width:i.width,height:i.height});a._updateCache(i);a._propagate("resize",b)}})}});d.ui.plugin.add("resizable","containment",{start:function(){var b=d(this).data("resizable"),a=b.element,c=b.options.containment;if(a=c instanceof d?c.get(0):/parent/.test(c)?a.parent().get(0):c){b.containerElement= +d(a);if(/document/.test(c)||c==document){b.containerOffset={left:0,top:0};b.containerPosition={left:0,top:0};b.parentData={element:d(document),left:0,top:0,width:d(document).width(),height:d(document).height()||document.body.parentNode.scrollHeight}}else{var e=d(a),g=[];d(["Top","Right","Left","Bottom"]).each(function(i,j){g[i]=m(e.css("padding"+j))});b.containerOffset=e.offset();b.containerPosition=e.position();b.containerSize={height:e.innerHeight()-g[3],width:e.innerWidth()-g[1]};c=b.containerOffset; +var f=b.containerSize.height,h=b.containerSize.width;h=d.ui.hasScroll(a,"left")?a.scrollWidth:h;f=d.ui.hasScroll(a)?a.scrollHeight:f;b.parentData={element:a,left:c.left,top:c.top,width:h,height:f}}}},resize:function(b){var a=d(this).data("resizable"),c=a.options,e=a.containerOffset,g=a.position;b=a._aspectRatio||b.shiftKey;var f={top:0,left:0},h=a.containerElement;if(h[0]!=document&&/static/.test(h.css("position")))f=e;if(g.left<(a._helper?e.left:0)){a.size.width+=a._helper?a.position.left-e.left: +a.position.left-f.left;if(b)a.size.height=a.size.width/c.aspectRatio;a.position.left=c.helper?e.left:0}if(g.top<(a._helper?e.top:0)){a.size.height+=a._helper?a.position.top-e.top:a.position.top;if(b)a.size.width=a.size.height*c.aspectRatio;a.position.top=a._helper?e.top:0}a.offset.left=a.parentData.left+a.position.left;a.offset.top=a.parentData.top+a.position.top;c=Math.abs((a._helper?a.offset.left-f.left:a.offset.left-f.left)+a.sizeDiff.width);e=Math.abs((a._helper?a.offset.top-f.top:a.offset.top- +e.top)+a.sizeDiff.height);g=a.containerElement.get(0)==a.element.parent().get(0);f=/relative|absolute/.test(a.containerElement.css("position"));if(g&&f)c-=a.parentData.left;if(c+a.size.width>=a.parentData.width){a.size.width=a.parentData.width-c;if(b)a.size.height=a.size.width/a.aspectRatio}if(e+a.size.height>=a.parentData.height){a.size.height=a.parentData.height-e;if(b)a.size.width=a.size.height*a.aspectRatio}},stop:function(){var b=d(this).data("resizable"),a=b.options,c=b.containerOffset,e=b.containerPosition, +g=b.containerElement,f=d(b.helper),h=f.offset(),i=f.outerWidth()-b.sizeDiff.width;f=f.outerHeight()-b.sizeDiff.height;b._helper&&!a.animate&&/relative/.test(g.css("position"))&&d(this).css({left:h.left-e.left-c.left,width:i,height:f});b._helper&&!a.animate&&/static/.test(g.css("position"))&&d(this).css({left:h.left-e.left-c.left,width:i,height:f})}});d.ui.plugin.add("resizable","ghost",{start:function(){var b=d(this).data("resizable"),a=b.options,c=b.size;b.ghost=b.originalElement.clone();b.ghost.css({opacity:0.25, +display:"block",position:"relative",height:c.height,width:c.width,margin:0,left:0,top:0}).addClass("ui-resizable-ghost").addClass(typeof a.ghost=="string"?a.ghost:"");b.ghost.appendTo(b.helper)},resize:function(){var b=d(this).data("resizable");b.ghost&&b.ghost.css({position:"relative",height:b.size.height,width:b.size.width})},stop:function(){var b=d(this).data("resizable");b.ghost&&b.helper&&b.helper.get(0).removeChild(b.ghost.get(0))}});d.ui.plugin.add("resizable","grid",{resize:function(){var b= +d(this).data("resizable"),a=b.options,c=b.size,e=b.originalSize,g=b.originalPosition,f=b.axis;a.grid=typeof a.grid=="number"?[a.grid,a.grid]:a.grid;var h=Math.round((c.width-e.width)/(a.grid[0]||1))*(a.grid[0]||1);a=Math.round((c.height-e.height)/(a.grid[1]||1))*(a.grid[1]||1);if(/^(se|s|e)$/.test(f)){b.size.width=e.width+h;b.size.height=e.height+a}else if(/^(ne)$/.test(f)){b.size.width=e.width+h;b.size.height=e.height+a;b.position.top=g.top-a}else{if(/^(sw)$/.test(f)){b.size.width=e.width+h;b.size.height= +e.height+a}else{b.size.width=e.width+h;b.size.height=e.height+a;b.position.top=g.top-a}b.position.left=g.left-h}}});var m=function(b){return parseInt(b,10)||0},k=function(b){return!isNaN(parseInt(b,10))}})(jQuery); +; +/* + * jQuery UI Selectable 1.8.2 + * + * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Selectables + * + * Depends: + * jquery.ui.core.js + * jquery.ui.mouse.js + * jquery.ui.widget.js + */ +(function(e){e.widget("ui.selectable",e.ui.mouse,{options:{appendTo:"body",autoRefresh:true,distance:0,filter:"*",tolerance:"touch"},_create:function(){var c=this;this.element.addClass("ui-selectable");this.dragged=false;var f;this.refresh=function(){f=e(c.options.filter,c.element[0]);f.each(function(){var d=e(this),b=d.offset();e.data(this,"selectable-item",{element:this,$element:d,left:b.left,top:b.top,right:b.left+d.outerWidth(),bottom:b.top+d.outerHeight(),startselected:false,selected:d.hasClass("ui-selected"), +selecting:d.hasClass("ui-selecting"),unselecting:d.hasClass("ui-unselecting")})})};this.refresh();this.selectees=f.addClass("ui-selectee");this._mouseInit();this.helper=e("
      ")},destroy:function(){this.selectees.removeClass("ui-selectee").removeData("selectable-item");this.element.removeClass("ui-selectable ui-selectable-disabled").removeData("selectable").unbind(".selectable");this._mouseDestroy();return this},_mouseStart:function(c){var f=this;this.opos=[c.pageX, +c.pageY];if(!this.options.disabled){var d=this.options;this.selectees=e(d.filter,this.element[0]);this._trigger("start",c);e(d.appendTo).append(this.helper);this.helper.css({"z-index":100,position:"absolute",left:c.clientX,top:c.clientY,width:0,height:0});d.autoRefresh&&this.refresh();this.selectees.filter(".ui-selected").each(function(){var b=e.data(this,"selectable-item");b.startselected=true;if(!c.metaKey){b.$element.removeClass("ui-selected");b.selected=false;b.$element.addClass("ui-unselecting"); +b.unselecting=true;f._trigger("unselecting",c,{unselecting:b.element})}});e(c.target).parents().andSelf().each(function(){var b=e.data(this,"selectable-item");if(b){var g=!c.metaKey||!b.$element.hasClass("ui-selected");b.$element.removeClass(g?"ui-unselecting":"ui-selected").addClass(g?"ui-selecting":"ui-unselecting");b.unselecting=!g;b.selecting=g;(b.selected=g)?f._trigger("selecting",c,{selecting:b.element}):f._trigger("unselecting",c,{unselecting:b.element});return false}})}},_mouseDrag:function(c){var f= +this;this.dragged=true;if(!this.options.disabled){var d=this.options,b=this.opos[0],g=this.opos[1],h=c.pageX,i=c.pageY;if(b>h){var j=h;h=b;b=j}if(g>i){j=i;i=g;g=j}this.helper.css({left:b,top:g,width:h-b,height:i-g});this.selectees.each(function(){var a=e.data(this,"selectable-item");if(!(!a||a.element==f.element[0])){var k=false;if(d.tolerance=="touch")k=!(a.left>h||a.righti||a.bottomb&&a.rightg&&a.bottom")},destroy:function(){this.selectees.removeClass("ui-selectee").removeData("selectable-item");this.element.removeClass("ui-selectable ui-selectable-disabled").removeData("selectable").unbind(".selectable");this._mouseDestroy();return this},_mouseStart:function(c){var f=this;this.opos=[c.pageX, +c.pageY];if(!this.options.disabled){var d=this.options;this.selectees=e(d.filter,this.element[0]);this._trigger("start",c);e(d.appendTo).append(this.helper);this.helper.css({"z-index":100,position:"absolute",left:c.clientX,top:c.clientY,width:0,height:0});d.autoRefresh&&this.refresh();this.selectees.filter(".ui-selected").each(function(){var b=e.data(this,"selectable-item");b.startselected=true;if(!c.metaKey){b.$element.removeClass("ui-selected");b.selected=false;b.$element.addClass("ui-unselecting"); +b.unselecting=true;f._trigger("unselecting",c,{unselecting:b.element})}});e(c.target).parents().andSelf().each(function(){var b=e.data(this,"selectable-item");if(b){var g=!c.metaKey||!b.$element.hasClass("ui-selected");b.$element.removeClass(g?"ui-unselecting":"ui-selected").addClass(g?"ui-selecting":"ui-unselecting");b.unselecting=!g;b.selecting=g;(b.selected=g)?f._trigger("selecting",c,{selecting:b.element}):f._trigger("unselecting",c,{unselecting:b.element});return false}})}},_mouseDrag:function(c){var f= +this;this.dragged=true;if(!this.options.disabled){var d=this.options,b=this.opos[0],g=this.opos[1],h=c.pageX,i=c.pageY;if(b>h){var j=h;h=b;b=j}if(g>i){j=i;i=g;g=j}this.helper.css({left:b,top:g,width:h-b,height:i-g});this.selectees.each(function(){var a=e.data(this,"selectable-item");if(!(!a||a.element==f.element[0])){var k=false;if(d.tolerance=="touch")k=!(a.left>h||a.righti||a.bottomb&&a.rightg&&a.bottom
    ").addClass("ui-autocomplete").appendTo("body",c).mousedown(function(){setTimeout(function(){clearTimeout(a.closing)},13)}).menu({focus:function(d,b){b=b.item.data("item.autocomplete"); +false!==a._trigger("focus",null,{item:b})&&/^key/.test(d.originalEvent.type)&&a.element.val(b.value)},selected:function(d,b){b=b.item.data("item.autocomplete");false!==a._trigger("select",d,{item:b})&&a.element.val(b.value);a.close(d);d=a.previous;if(a.element[0]!==c.activeElement){a.element.focus();a.previous=d}a.selectedItem=b},blur:function(){a.menu.element.is(":visible")&&a.element.val(a.term)}}).zIndex(this.element.zIndex()+1).css({top:0,left:0}).hide().data("menu");e.fn.bgiframe&&this.menu.element.bgiframe()}, +destroy:function(){this.element.removeClass("ui-autocomplete-input").removeAttr("autocomplete").removeAttr("role").removeAttr("aria-autocomplete").removeAttr("aria-haspopup");this.menu.element.remove();e.Widget.prototype.destroy.call(this)},_setOption:function(a){e.Widget.prototype._setOption.apply(this,arguments);a==="source"&&this._initSource()},_initSource:function(){var a,c;if(e.isArray(this.options.source)){a=this.options.source;this.source=function(d,b){b(e.ui.autocomplete.filter(a,d.term))}}else if(typeof this.options.source=== +"string"){c=this.options.source;this.source=function(d,b){e.getJSON(c,d,b)}}else this.source=this.options.source},search:function(a,c){a=a!=null?a:this.element.val();if(a.length").data("item.autocomplete", +c).append(""+c.label+"").appendTo(a)},_move:function(a,c){if(this.menu.element.is(":visible"))if(this.menu.first()&&/^previous/.test(a)||this.menu.last()&&/^next/.test(a)){this.element.val(this.term);this.menu.deactivate()}else this.menu[a](c);else this.search(null,c)},widget:function(){return this.menu.element}});e.extend(e.ui.autocomplete,{escapeRegex:function(a){return a.replace(/([\^\$\(\)\[\]\{\}\*\.\+\?\|\\])/gi,"\\$1")},filter:function(a,c){var d=new RegExp(e.ui.autocomplete.escapeRegex(c), +"i");return e.grep(a,function(b){return d.test(b.label||b.value||b)})}})})(jQuery); +(function(e){e.widget("ui.menu",{_create:function(){var a=this;this.element.addClass("ui-menu ui-widget ui-widget-content ui-corner-all").attr({role:"listbox","aria-activedescendant":"ui-active-menuitem"}).click(function(c){if(e(c.target).closest(".ui-menu-item a").length){c.preventDefault();a.select(c)}});this.refresh()},refresh:function(){var a=this;this.element.children("li:not(.ui-menu-item):has(a)").addClass("ui-menu-item").attr("role","menuitem").children("a").addClass("ui-corner-all").attr("tabindex", +-1).mouseenter(function(c){a.activate(c,e(this).parent())}).mouseleave(function(){a.deactivate()})},activate:function(a,c){this.deactivate();if(this.hasScroll()){var d=c.offset().top-this.element.offset().top,b=this.element.attr("scrollTop"),f=this.element.height();if(d<0)this.element.attr("scrollTop",b+d);else d>f&&this.element.attr("scrollTop",b+d-f+c.height())}this.active=c.eq(0).children("a").addClass("ui-state-hover").attr("id","ui-active-menuitem").end();this._trigger("focus",a,{item:c})},deactivate:function(){if(this.active){this.active.children("a").removeClass("ui-state-hover").removeAttr("id"); +this._trigger("blur");this.active=null}},next:function(a){this.move("next",".ui-menu-item:first",a)},previous:function(a){this.move("prev",".ui-menu-item:last",a)},first:function(){return this.active&&!this.active.prev().length},last:function(){return this.active&&!this.active.next().length},move:function(a,c,d){if(this.active){a=this.active[a+"All"](".ui-menu-item").eq(0);a.length?this.activate(d,a):this.activate(d,this.element.children(c))}else this.activate(d,this.element.children(c))},nextPage:function(a){if(this.hasScroll())if(!this.active|| +this.last())this.activate(a,this.element.children(":first"));else{var c=this.active.offset().top,d=this.element.height(),b=this.element.children("li").filter(function(){var f=e(this).offset().top-c-d+e(this).height();return f<10&&f>-10});b.length||(b=this.element.children(":last"));this.activate(a,b)}else this.activate(a,this.element.children(!this.active||this.last()?":first":":last"))},previousPage:function(a){if(this.hasScroll())if(!this.active||this.first())this.activate(a,this.element.children(":last")); +else{var c=this.active.offset().top,d=this.element.height();result=this.element.children("li").filter(function(){var b=e(this).offset().top-c+d-e(this).height();return b<10&&b>-10});result.length||(result=this.element.children(":first"));this.activate(a,result)}else this.activate(a,this.element.children(!this.active||this.first()?":last":":first"))},hasScroll:function(){return this.element.height()").addClass("ui-button-text").html(this.options.label).appendTo(b.empty()).text(),d=this.options.icons,e=d.primary&&d.secondary;if(d.primary||d.secondary){b.addClass("ui-button-text-icon"+(e?"s":""));d.primary&&b.prepend("");d.secondary&&b.append("");if(!this.options.text){b.addClass(e?"ui-button-icons-only":"ui-button-icon-only").removeClass("ui-button-text-icons ui-button-text-icon"); +this.hasTitle||b.attr("title",c)}}else b.addClass("ui-button-text-only")}}});a.widget("ui.buttonset",{_create:function(){this.element.addClass("ui-buttonset");this._init()},_init:function(){this.refresh()},_setOption:function(b,c){b==="disabled"&&this.buttons.button("option",b,c);a.Widget.prototype._setOption.apply(this,arguments)},refresh:function(){this.buttons=this.element.find(":button, :submit, :reset, :checkbox, :radio, a, :data(button)").filter(":ui-button").button("refresh").end().not(":ui-button").button().end().map(function(){return a(this).button("widget")[0]}).removeClass("ui-corner-all ui-corner-left ui-corner-right").filter(":first").addClass("ui-corner-left").end().filter(":last").addClass("ui-corner-right").end().end()}, +destroy:function(){this.element.removeClass("ui-buttonset");this.buttons.map(function(){return a(this).button("widget")[0]}).removeClass("ui-corner-left ui-corner-right").end().button("destroy");a.Widget.prototype.destroy.call(this)}})})(jQuery); +;/* + * jQuery UI Dialog 1.8.2 + * + * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Dialog + * + * Depends: + * jquery.ui.core.js + * jquery.ui.widget.js + * jquery.ui.button.js + * jquery.ui.draggable.js + * jquery.ui.mouse.js + * jquery.ui.position.js + * jquery.ui.resizable.js + */ +(function(c){c.widget("ui.dialog",{options:{autoOpen:true,buttons:{},closeOnEscape:true,closeText:"close",dialogClass:"",draggable:true,hide:null,height:"auto",maxHeight:false,maxWidth:false,minHeight:150,minWidth:150,modal:false,position:"center",resizable:true,show:null,stack:true,title:"",width:300,zIndex:1E3},_create:function(){this.originalTitle=this.element.attr("title");var a=this,b=a.options,d=b.title||a.originalTitle||" ",e=c.ui.dialog.getTitleId(a.element),g=(a.uiDialog=c("
    ")).appendTo(document.body).hide().addClass("ui-dialog ui-widget ui-widget-content ui-corner-all "+ +b.dialogClass).css({zIndex:b.zIndex}).attr("tabIndex",-1).css("outline",0).keydown(function(i){if(b.closeOnEscape&&i.keyCode&&i.keyCode===c.ui.keyCode.ESCAPE){a.close(i);i.preventDefault()}}).attr({role:"dialog","aria-labelledby":e}).mousedown(function(i){a.moveToTop(false,i)});a.element.show().removeAttr("title").addClass("ui-dialog-content ui-widget-content").appendTo(g);var f=(a.uiDialogTitlebar=c("
    ")).addClass("ui-dialog-titlebar ui-widget-header ui-corner-all ui-helper-clearfix").prependTo(g), +h=c('').addClass("ui-dialog-titlebar-close ui-corner-all").attr("role","button").hover(function(){h.addClass("ui-state-hover")},function(){h.removeClass("ui-state-hover")}).focus(function(){h.addClass("ui-state-focus")}).blur(function(){h.removeClass("ui-state-focus")}).click(function(i){a.close(i);return false}).appendTo(f);(a.uiDialogTitlebarCloseText=c("")).addClass("ui-icon ui-icon-closethick").text(b.closeText).appendTo(h);c("").addClass("ui-dialog-title").attr("id", +e).html(d).prependTo(f);if(c.isFunction(b.beforeclose)&&!c.isFunction(b.beforeClose))b.beforeClose=b.beforeclose;f.find("*").add(f).disableSelection();b.draggable&&c.fn.draggable&&a._makeDraggable();b.resizable&&c.fn.resizable&&a._makeResizable();a._createButtons(b.buttons);a._isOpen=false;c.fn.bgiframe&&g.bgiframe()},_init:function(){this.options.autoOpen&&this.open()},destroy:function(){var a=this;a.overlay&&a.overlay.destroy();a.uiDialog.hide();a.element.unbind(".dialog").removeData("dialog").removeClass("ui-dialog-content ui-widget-content").hide().appendTo("body"); +a.uiDialog.remove();a.originalTitle&&a.element.attr("title",a.originalTitle);return a},widget:function(){return this.uiDialog},close:function(a){var b=this,d;if(false!==b._trigger("beforeClose",a)){b.overlay&&b.overlay.destroy();b.uiDialog.unbind("keypress.ui-dialog");b._isOpen=false;if(b.options.hide)b.uiDialog.hide(b.options.hide,function(){b._trigger("close",a)});else{b.uiDialog.hide();b._trigger("close",a)}c.ui.dialog.overlay.resize();if(b.options.modal){d=0;c(".ui-dialog").each(function(){if(this!== +b.uiDialog[0])d=Math.max(d,c(this).css("z-index"))});c.ui.dialog.maxZ=d}return b}},isOpen:function(){return this._isOpen},moveToTop:function(a,b){var d=this,e=d.options;if(e.modal&&!a||!e.stack&&!e.modal)return d._trigger("focus",b);if(e.zIndex>c.ui.dialog.maxZ)c.ui.dialog.maxZ=e.zIndex;if(d.overlay){c.ui.dialog.maxZ+=1;d.overlay.$el.css("z-index",c.ui.dialog.overlay.maxZ=c.ui.dialog.maxZ)}a={scrollTop:d.element.attr("scrollTop"),scrollLeft:d.element.attr("scrollLeft")};c.ui.dialog.maxZ+=1;d.uiDialog.css("z-index", +c.ui.dialog.maxZ);d.element.attr(a);d._trigger("focus",b);return d},open:function(){if(!this._isOpen){var a=this,b=a.options,d=a.uiDialog;a.overlay=b.modal?new c.ui.dialog.overlay(a):null;d.next().length&&d.appendTo("body");a._size();a._position(b.position);d.show(b.show);a.moveToTop(true);b.modal&&d.bind("keypress.ui-dialog",function(e){if(e.keyCode===c.ui.keyCode.TAB){var g=c(":tabbable",this),f=g.filter(":first");g=g.filter(":last");if(e.target===g[0]&&!e.shiftKey){f.focus(1);return false}else if(e.target=== +f[0]&&e.shiftKey){g.focus(1);return false}}});c([]).add(d.find(".ui-dialog-content :tabbable:first")).add(d.find(".ui-dialog-buttonpane :tabbable:first")).add(d).filter(":first").focus();a._trigger("open");a._isOpen=true;return a}},_createButtons:function(a){var b=this,d=false,e=c("
    ").addClass("ui-dialog-buttonpane ui-widget-content ui-helper-clearfix");b.uiDialog.find(".ui-dialog-buttonpane").remove();typeof a==="object"&&a!==null&&c.each(a,function(){return!(d=true)});if(d){c.each(a, +function(g,f){g=c('').text(g).click(function(){f.apply(b.element[0],arguments)}).appendTo(e);c.fn.button&&g.button()});e.appendTo(b.uiDialog)}},_makeDraggable:function(){function a(f){return{position:f.position,offset:f.offset}}var b=this,d=b.options,e=c(document),g;b.uiDialog.draggable({cancel:".ui-dialog-content, .ui-dialog-titlebar-close",handle:".ui-dialog-titlebar",containment:"document",start:function(f,h){g=d.height==="auto"?"auto":c(this).height();c(this).height(c(this).height()).addClass("ui-dialog-dragging"); +b._trigger("dragStart",f,a(h))},drag:function(f,h){b._trigger("drag",f,a(h))},stop:function(f,h){d.position=[h.position.left-e.scrollLeft(),h.position.top-e.scrollTop()];c(this).removeClass("ui-dialog-dragging").height(g);b._trigger("dragStop",f,a(h));c.ui.dialog.overlay.resize()}})},_makeResizable:function(a){function b(f){return{originalPosition:f.originalPosition,originalSize:f.originalSize,position:f.position,size:f.size}}a=a===undefined?this.options.resizable:a;var d=this,e=d.options,g=d.uiDialog.css("position"); +a=typeof a==="string"?a:"n,e,s,w,se,sw,ne,nw";d.uiDialog.resizable({cancel:".ui-dialog-content",containment:"document",alsoResize:d.element,maxWidth:e.maxWidth,maxHeight:e.maxHeight,minWidth:e.minWidth,minHeight:d._minHeight(),handles:a,start:function(f,h){c(this).addClass("ui-dialog-resizing");d._trigger("resizeStart",f,b(h))},resize:function(f,h){d._trigger("resize",f,b(h))},stop:function(f,h){c(this).removeClass("ui-dialog-resizing");e.height=c(this).height();e.width=c(this).width();d._trigger("resizeStop", +f,b(h));c.ui.dialog.overlay.resize()}}).css("position",g).find(".ui-resizable-se").addClass("ui-icon ui-icon-grip-diagonal-se")},_minHeight:function(){var a=this.options;return a.height==="auto"?a.minHeight:Math.min(a.minHeight,a.height)},_position:function(a){var b=[],d=[0,0];a=a||c.ui.dialog.prototype.options.position;if(typeof a==="string"||typeof a==="object"&&"0"in a){b=a.split?a.split(" "):[a[0],a[1]];if(b.length===1)b[1]=b[0];c.each(["left","top"],function(e,g){if(+b[e]===b[e]){d[e]=b[e];b[e]= +g}})}else if(typeof a==="object"){if("left"in a){b[0]="left";d[0]=a.left}else if("right"in a){b[0]="right";d[0]=-a.right}if("top"in a){b[1]="top";d[1]=a.top}else if("bottom"in a){b[1]="bottom";d[1]=-a.bottom}}(a=this.uiDialog.is(":visible"))||this.uiDialog.show();this.uiDialog.css({top:0,left:0}).position({my:b.join(" "),at:b.join(" "),offset:d.join(" "),of:window,collision:"fit",using:function(e){var g=c(this).css(e).offset().top;g<0&&c(this).css("top",e.top-g)}});a||this.uiDialog.hide()},_setOption:function(a, +b){var d=this,e=d.uiDialog,g=e.is(":data(resizable)"),f=false;switch(a){case "beforeclose":a="beforeClose";break;case "buttons":d._createButtons(b);break;case "closeText":d.uiDialogTitlebarCloseText.text(""+b);break;case "dialogClass":e.removeClass(d.options.dialogClass).addClass("ui-dialog ui-widget ui-widget-content ui-corner-all "+b);break;case "disabled":b?e.addClass("ui-dialog-disabled"):e.removeClass("ui-dialog-disabled");break;case "draggable":b?d._makeDraggable():e.draggable("destroy");break; +case "height":f=true;break;case "maxHeight":g&&e.resizable("option","maxHeight",b);f=true;break;case "maxWidth":g&&e.resizable("option","maxWidth",b);f=true;break;case "minHeight":g&&e.resizable("option","minHeight",b);f=true;break;case "minWidth":g&&e.resizable("option","minWidth",b);f=true;break;case "position":d._position(b);break;case "resizable":g&&!b&&e.resizable("destroy");g&&typeof b==="string"&&e.resizable("option","handles",b);!g&&b!==false&&d._makeResizable(b);break;case "title":c(".ui-dialog-title", +d.uiDialogTitlebar).html(""+(b||" "));break;case "width":f=true;break}c.Widget.prototype._setOption.apply(d,arguments);f&&d._size()},_size:function(){var a=this.options,b;this.element.css({width:"auto",minHeight:0,height:0});b=this.uiDialog.css({height:"auto",width:a.width}).height();this.element.css(a.height==="auto"?{minHeight:Math.max(a.minHeight-b,0),height:"auto"}:{minHeight:0,height:Math.max(a.height-b,0)}).show();this.uiDialog.is(":data(resizable)")&&this.uiDialog.resizable("option","minHeight", +this._minHeight())}});c.extend(c.ui.dialog,{version:"1.8.2",uuid:0,maxZ:0,getTitleId:function(a){a=a.attr("id");if(!a){this.uuid+=1;a=this.uuid}return"ui-dialog-title-"+a},overlay:function(a){this.$el=c.ui.dialog.overlay.create(a)}});c.extend(c.ui.dialog.overlay,{instances:[],oldInstances:[],maxZ:0,events:c.map("focus,mousedown,mouseup,keydown,keypress,click".split(","),function(a){return a+".dialog-overlay"}).join(" "),create:function(a){if(this.instances.length===0){setTimeout(function(){c.ui.dialog.overlay.instances.length&& +c(document).bind(c.ui.dialog.overlay.events,function(d){return c(d.target).zIndex()>=c.ui.dialog.overlay.maxZ})},1);c(document).bind("keydown.dialog-overlay",function(d){if(a.options.closeOnEscape&&d.keyCode&&d.keyCode===c.ui.keyCode.ESCAPE){a.close(d);d.preventDefault()}});c(window).bind("resize.dialog-overlay",c.ui.dialog.overlay.resize)}var b=(this.oldInstances.pop()||c("
    ").addClass("ui-widget-overlay")).appendTo(document.body).css({width:this.width(),height:this.height()});c.fn.bgiframe&& +b.bgiframe();this.instances.push(b);return b},destroy:function(a){this.oldInstances.push(this.instances.splice(c.inArray(a,this.instances),1)[0]);this.instances.length===0&&c([document,window]).unbind(".dialog-overlay");a.remove();var b=0;c.each(this.instances,function(){b=Math.max(b,this.css("z-index"))});this.maxZ=b},height:function(){var a,b;if(c.browser.msie&&c.browser.version<7){a=Math.max(document.documentElement.scrollHeight,document.body.scrollHeight);b=Math.max(document.documentElement.offsetHeight, +document.body.offsetHeight);return a",remove:null,select:null,show:null,spinner:"Loading…",tabTemplate:'
  • #{label}
  • '},_create:function(){this._tabify(true)},_setOption:function(c,e){if(c=="selected")this.options.collapsible&& +e==this.options.selected||this.select(e);else{this.options[c]=e;this._tabify()}},_tabId:function(c){return c.title&&c.title.replace(/\s/g,"_").replace(/[^A-Za-z0-9\-_:\.]/g,"")||this.options.idPrefix+s()},_sanitizeSelector:function(c){return c.replace(/:/g,"\\:")},_cookie:function(){var c=this.cookie||(this.cookie=this.options.cookie.name||"ui-tabs-"+v());return d.cookie.apply(null,[c].concat(d.makeArray(arguments)))},_ui:function(c,e){return{tab:c,panel:e,index:this.anchors.index(c)}},_cleanup:function(){this.lis.filter(".ui-state-processing").removeClass("ui-state-processing").find("span:data(label.tabs)").each(function(){var c= +d(this);c.html(c.data("label.tabs")).removeData("label.tabs")})},_tabify:function(c){function e(g,f){g.css({display:""});!d.support.opacity&&f.opacity&&g[0].style.removeAttribute("filter")}this.list=this.element.find("ol,ul").eq(0);this.lis=d("li:has(a[href])",this.list);this.anchors=this.lis.map(function(){return d("a",this)[0]});this.panels=d([]);var a=this,b=this.options,h=/^#.+/;this.anchors.each(function(g,f){var j=d(f).attr("href"),l=j.split("#")[0],p;if(l&&(l===location.toString().split("#")[0]|| +(p=d("base")[0])&&l===p.href)){j=f.hash;f.href=j}if(h.test(j))a.panels=a.panels.add(a._sanitizeSelector(j));else if(j!="#"){d.data(f,"href.tabs",j);d.data(f,"load.tabs",j.replace(/#.*$/,""));j=a._tabId(f);f.href="#"+j;f=d("#"+j);if(!f.length){f=d(b.panelTemplate).attr("id",j).addClass("ui-tabs-panel ui-widget-content ui-corner-bottom").insertAfter(a.panels[g-1]||a.list);f.data("destroy.tabs",true)}a.panels=a.panels.add(f)}else b.disabled.push(g)});if(c){this.element.addClass("ui-tabs ui-widget ui-widget-content ui-corner-all"); +this.list.addClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all");this.lis.addClass("ui-state-default ui-corner-top");this.panels.addClass("ui-tabs-panel ui-widget-content ui-corner-bottom");if(b.selected===undefined){location.hash&&this.anchors.each(function(g,f){if(f.hash==location.hash){b.selected=g;return false}});if(typeof b.selected!="number"&&b.cookie)b.selected=parseInt(a._cookie(),10);if(typeof b.selected!="number"&&this.lis.filter(".ui-tabs-selected").length)b.selected= +this.lis.index(this.lis.filter(".ui-tabs-selected"));b.selected=b.selected||(this.lis.length?0:-1)}else if(b.selected===null)b.selected=-1;b.selected=b.selected>=0&&this.anchors[b.selected]||b.selected<0?b.selected:0;b.disabled=d.unique(b.disabled.concat(d.map(this.lis.filter(".ui-state-disabled"),function(g){return a.lis.index(g)}))).sort();d.inArray(b.selected,b.disabled)!=-1&&b.disabled.splice(d.inArray(b.selected,b.disabled),1);this.panels.addClass("ui-tabs-hide");this.lis.removeClass("ui-tabs-selected ui-state-active"); +if(b.selected>=0&&this.anchors.length){this.panels.eq(b.selected).removeClass("ui-tabs-hide");this.lis.eq(b.selected).addClass("ui-tabs-selected ui-state-active");a.element.queue("tabs",function(){a._trigger("show",null,a._ui(a.anchors[b.selected],a.panels[b.selected]))});this.load(b.selected)}d(window).bind("unload",function(){a.lis.add(a.anchors).unbind(".tabs");a.lis=a.anchors=a.panels=null})}else b.selected=this.lis.index(this.lis.filter(".ui-tabs-selected"));this.element[b.collapsible?"addClass": +"removeClass"]("ui-tabs-collapsible");b.cookie&&this._cookie(b.selected,b.cookie);c=0;for(var i;i=this.lis[c];c++)d(i)[d.inArray(c,b.disabled)!=-1&&!d(i).hasClass("ui-tabs-selected")?"addClass":"removeClass"]("ui-state-disabled");b.cache===false&&this.anchors.removeData("cache.tabs");this.lis.add(this.anchors).unbind(".tabs");if(b.event!="mouseover"){var k=function(g,f){f.is(":not(.ui-state-disabled)")&&f.addClass("ui-state-"+g)},n=function(g,f){f.removeClass("ui-state-"+g)};this.lis.bind("mouseover.tabs", +function(){k("hover",d(this))});this.lis.bind("mouseout.tabs",function(){n("hover",d(this))});this.anchors.bind("focus.tabs",function(){k("focus",d(this).closest("li"))});this.anchors.bind("blur.tabs",function(){n("focus",d(this).closest("li"))})}var m,o;if(b.fx)if(d.isArray(b.fx)){m=b.fx[0];o=b.fx[1]}else m=o=b.fx;var q=o?function(g,f){d(g).closest("li").addClass("ui-tabs-selected ui-state-active");f.hide().removeClass("ui-tabs-hide").animate(o,o.duration||"normal",function(){e(f,o);a._trigger("show", +null,a._ui(g,f[0]))})}:function(g,f){d(g).closest("li").addClass("ui-tabs-selected ui-state-active");f.removeClass("ui-tabs-hide");a._trigger("show",null,a._ui(g,f[0]))},r=m?function(g,f){f.animate(m,m.duration||"normal",function(){a.lis.removeClass("ui-tabs-selected ui-state-active");f.addClass("ui-tabs-hide");e(f,m);a.element.dequeue("tabs")})}:function(g,f){a.lis.removeClass("ui-tabs-selected ui-state-active");f.addClass("ui-tabs-hide");a.element.dequeue("tabs")};this.anchors.bind(b.event+".tabs", +function(){var g=this,f=d(this).closest("li"),j=a.panels.filter(":not(.ui-tabs-hide)"),l=d(a._sanitizeSelector(this.hash));if(f.hasClass("ui-tabs-selected")&&!b.collapsible||f.hasClass("ui-state-disabled")||f.hasClass("ui-state-processing")||a._trigger("select",null,a._ui(this,l[0]))===false){this.blur();return false}b.selected=a.anchors.index(this);a.abort();if(b.collapsible)if(f.hasClass("ui-tabs-selected")){b.selected=-1;b.cookie&&a._cookie(b.selected,b.cookie);a.element.queue("tabs",function(){r(g, +j)}).dequeue("tabs");this.blur();return false}else if(!j.length){b.cookie&&a._cookie(b.selected,b.cookie);a.element.queue("tabs",function(){q(g,l)});a.load(a.anchors.index(this));this.blur();return false}b.cookie&&a._cookie(b.selected,b.cookie);if(l.length){j.length&&a.element.queue("tabs",function(){r(g,j)});a.element.queue("tabs",function(){q(g,l)});a.load(a.anchors.index(this))}else throw"jQuery UI Tabs: Mismatching fragment identifier.";d.browser.msie&&this.blur()});this.anchors.bind("click.tabs", +function(){return false})},destroy:function(){var c=this.options;this.abort();this.element.unbind(".tabs").removeClass("ui-tabs ui-widget ui-widget-content ui-corner-all ui-tabs-collapsible").removeData("tabs");this.list.removeClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all");this.anchors.each(function(){var e=d.data(this,"href.tabs");if(e)this.href=e;var a=d(this).unbind(".tabs");d.each(["href","load","cache"],function(b,h){a.removeData(h+".tabs")})});this.lis.unbind(".tabs").add(this.panels).each(function(){d.data(this, +"destroy.tabs")?d(this).remove():d(this).removeClass("ui-state-default ui-corner-top ui-tabs-selected ui-state-active ui-state-hover ui-state-focus ui-state-disabled ui-tabs-panel ui-widget-content ui-corner-bottom ui-tabs-hide")});c.cookie&&this._cookie(null,c.cookie);return this},add:function(c,e,a){if(a===undefined)a=this.anchors.length;var b=this,h=this.options;e=d(h.tabTemplate.replace(/#\{href\}/g,c).replace(/#\{label\}/g,e));c=!c.indexOf("#")?c.replace("#",""):this._tabId(d("a",e)[0]);e.addClass("ui-state-default ui-corner-top").data("destroy.tabs", +true);var i=d("#"+c);i.length||(i=d(h.panelTemplate).attr("id",c).data("destroy.tabs",true));i.addClass("ui-tabs-panel ui-widget-content ui-corner-bottom ui-tabs-hide");if(a>=this.lis.length){e.appendTo(this.list);i.appendTo(this.list[0].parentNode)}else{e.insertBefore(this.lis[a]);i.insertBefore(this.panels[a])}h.disabled=d.map(h.disabled,function(k){return k>=a?++k:k});this._tabify();if(this.anchors.length==1){h.selected=0;e.addClass("ui-tabs-selected ui-state-active");i.removeClass("ui-tabs-hide"); +this.element.queue("tabs",function(){b._trigger("show",null,b._ui(b.anchors[0],b.panels[0]))});this.load(0)}this._trigger("add",null,this._ui(this.anchors[a],this.panels[a]));return this},remove:function(c){var e=this.options,a=this.lis.eq(c).remove(),b=this.panels.eq(c).remove();if(a.hasClass("ui-tabs-selected")&&this.anchors.length>1)this.select(c+(c+1=c?--h:h});this._tabify();this._trigger("remove", +null,this._ui(a.find("a")[0],b[0]));return this},enable:function(c){var e=this.options;if(d.inArray(c,e.disabled)!=-1){this.lis.eq(c).removeClass("ui-state-disabled");e.disabled=d.grep(e.disabled,function(a){return a!=c});this._trigger("enable",null,this._ui(this.anchors[c],this.panels[c]));return this}},disable:function(c){var e=this.options;if(c!=e.selected){this.lis.eq(c).addClass("ui-state-disabled");e.disabled.push(c);e.disabled.sort();this._trigger("disable",null,this._ui(this.anchors[c],this.panels[c]))}return this}, +select:function(c){if(typeof c=="string")c=this.anchors.index(this.anchors.filter("[href$="+c+"]"));else if(c===null)c=-1;if(c==-1&&this.options.collapsible)c=this.options.selected;this.anchors.eq(c).trigger(this.options.event+".tabs");return this},load:function(c){var e=this,a=this.options,b=this.anchors.eq(c)[0],h=d.data(b,"load.tabs");this.abort();if(!h||this.element.queue("tabs").length!==0&&d.data(b,"cache.tabs"))this.element.dequeue("tabs");else{this.lis.eq(c).addClass("ui-state-processing"); +if(a.spinner){var i=d("span",b);i.data("label.tabs",i.html()).html(a.spinner)}this.xhr=d.ajax(d.extend({},a.ajaxOptions,{url:h,success:function(k,n){d(e._sanitizeSelector(b.hash)).html(k);e._cleanup();a.cache&&d.data(b,"cache.tabs",true);e._trigger("load",null,e._ui(e.anchors[c],e.panels[c]));try{a.ajaxOptions.success(k,n)}catch(m){}},error:function(k,n){e._cleanup();e._trigger("load",null,e._ui(e.anchors[c],e.panels[c]));try{a.ajaxOptions.error(k,n,c,b)}catch(m){}}}));e.element.dequeue("tabs");return this}}, +abort:function(){this.element.queue([]);this.panels.stop(false,true);this.element.queue("tabs",this.element.queue("tabs").splice(-2,2));if(this.xhr){this.xhr.abort();delete this.xhr}this._cleanup();return this},url:function(c,e){this.anchors.eq(c).removeData("cache.tabs").data("load.tabs",e);return this},length:function(){return this.anchors.length}});d.extend(d.ui.tabs,{version:"1.8.2"});d.extend(d.ui.tabs.prototype,{rotation:null,rotate:function(c,e){var a=this,b=this.options,h=a._rotate||(a._rotate= +function(i){clearTimeout(a.rotation);a.rotation=setTimeout(function(){var k=b.selected;a.select(++k").addClass("ui-effects-wrapper").css({fontSize:"100%",background:"transparent",border:"none",margin:0,padding:0});c.wrap(b);b=c.parent();if(c.css("position")=="static"){b.css({position:"relative"});c.css({position:"relative"})}else{f.extend(a,{position:c.css("position"),zIndex:c.css("z-index")});f.each(["top","left","bottom","right"],function(d,e){a[e]=c.css(e);if(isNaN(parseInt(a[e],10)))a[e]="auto"}); +c.css({position:"relative",top:0,left:0})}return b.css(a).show()},removeWrapper:function(c){if(c.parent().is(".ui-effects-wrapper"))return c.parent().replaceWith(c);return c},setTransition:function(c,a,b,d){d=d||{};f.each(a,function(e,g){unit=c.cssUnit(g);if(unit[0]>0)d[g]=unit[0]*b+unit[1]});return d}});f.fn.extend({effect:function(c){var a=j.apply(this,arguments);a={options:a[1],duration:a[2],callback:a[3]};var b=f.effects[c];return b&&!f.fx.off?b.call(this,a):this},_show:f.fn.show,show:function(c){if(!c|| +typeof c=="number"||f.fx.speeds[c])return this._show.apply(this,arguments);else{var a=j.apply(this,arguments);a[1].mode="show";return this.effect.apply(this,a)}},_hide:f.fn.hide,hide:function(c){if(!c||typeof c=="number"||f.fx.speeds[c])return this._hide.apply(this,arguments);else{var a=j.apply(this,arguments);a[1].mode="hide";return this.effect.apply(this,a)}},__toggle:f.fn.toggle,toggle:function(c){if(!c||typeof c=="number"||f.fx.speeds[c]||typeof c=="boolean"||f.isFunction(c))return this.__toggle.apply(this, +arguments);else{var a=j.apply(this,arguments);a[1].mode="toggle";return this.effect.apply(this,a)}},cssUnit:function(c){var a=this.css(c),b=[];f.each(["em","px","%","pt"],function(d,e){if(a.indexOf(e)>0)b=[parseFloat(a),e]});return b}});f.easing.jswing=f.easing.swing;f.extend(f.easing,{def:"easeOutQuad",swing:function(c,a,b,d,e){return f.easing[f.easing.def](c,a,b,d,e)},easeInQuad:function(c,a,b,d,e){return d*(a/=e)*a+b},easeOutQuad:function(c,a,b,d,e){return-d*(a/=e)*(a-2)+b},easeInOutQuad:function(c, +a,b,d,e){if((a/=e/2)<1)return d/2*a*a+b;return-d/2*(--a*(a-2)-1)+b},easeInCubic:function(c,a,b,d,e){return d*(a/=e)*a*a+b},easeOutCubic:function(c,a,b,d,e){return d*((a=a/e-1)*a*a+1)+b},easeInOutCubic:function(c,a,b,d,e){if((a/=e/2)<1)return d/2*a*a*a+b;return d/2*((a-=2)*a*a+2)+b},easeInQuart:function(c,a,b,d,e){return d*(a/=e)*a*a*a+b},easeOutQuart:function(c,a,b,d,e){return-d*((a=a/e-1)*a*a*a-1)+b},easeInOutQuart:function(c,a,b,d,e){if((a/=e/2)<1)return d/2*a*a*a*a+b;return-d/2*((a-=2)*a*a*a-2)+ +b},easeInQuint:function(c,a,b,d,e){return d*(a/=e)*a*a*a*a+b},easeOutQuint:function(c,a,b,d,e){return d*((a=a/e-1)*a*a*a*a+1)+b},easeInOutQuint:function(c,a,b,d,e){if((a/=e/2)<1)return d/2*a*a*a*a*a+b;return d/2*((a-=2)*a*a*a*a+2)+b},easeInSine:function(c,a,b,d,e){return-d*Math.cos(a/e*(Math.PI/2))+d+b},easeOutSine:function(c,a,b,d,e){return d*Math.sin(a/e*(Math.PI/2))+b},easeInOutSine:function(c,a,b,d,e){return-d/2*(Math.cos(Math.PI*a/e)-1)+b},easeInExpo:function(c,a,b,d,e){return a==0?b:d*Math.pow(2, +10*(a/e-1))+b},easeOutExpo:function(c,a,b,d,e){return a==e?b+d:d*(-Math.pow(2,-10*a/e)+1)+b},easeInOutExpo:function(c,a,b,d,e){if(a==0)return b;if(a==e)return b+d;if((a/=e/2)<1)return d/2*Math.pow(2,10*(a-1))+b;return d/2*(-Math.pow(2,-10*--a)+2)+b},easeInCirc:function(c,a,b,d,e){return-d*(Math.sqrt(1-(a/=e)*a)-1)+b},easeOutCirc:function(c,a,b,d,e){return d*Math.sqrt(1-(a=a/e-1)*a)+b},easeInOutCirc:function(c,a,b,d,e){if((a/=e/2)<1)return-d/2*(Math.sqrt(1-a*a)-1)+b;return d/2*(Math.sqrt(1-(a-=2)* +a)+1)+b},easeInElastic:function(c,a,b,d,e){c=1.70158;var g=0,h=d;if(a==0)return b;if((a/=e)==1)return b+d;g||(g=e*0.3);if(h").attr("id", this.id || "").html("" + this.text + "").appendTo(parent); + if (this.classes) { + current.children("span").addClass(this.classes); + } + if (this.expanded) { + current.addClass("open"); + } + if (this.hasChildren || this.children && this.children.length) { + var branch = $("
      ").appendTo(current); + if (this.hasChildren) { + current.addClass("hasChildren"); + createNode.call({ + text:"placeholder", + id:"placeholder", + children:[] + }, branch); + } + if (this.children && this.children.length) { + $.each(this.children, createNode, [branch]) + } + } + } + $.each(response, createNode, [child]); + $(container).treeview({add: child}); + }); +} + +var proxied = $.fn.treeview; +$.fn.treeview = function(settings) { + if (!settings.url) { + return proxied.apply(this, arguments); + } + var container = this; + load(settings, "source", this, container); + var userToggle = settings.toggle; + return proxied.call(this, $.extend({}, settings, { + collapsed: true, + toggle: function() { + var $this = $(this); + if ($this.hasClass("hasChildren")) { + var childList = $this.removeClass("hasChildren").find("ul"); + childList.empty(); + load(settings, this.id, childList, container); + } + if (userToggle) { + userToggle.apply(this, arguments); + } + } + })); +}; + +})(jQuery); \ No newline at end of file diff --git a/docbook-xsl-1.76.1/webhelp/template/common/jquery/treeview/jquery.treeview.css b/docbook-xsl-1.76.1/webhelp/template/common/jquery/treeview/jquery.treeview.css new file mode 100755 index 0000000..dbf425b --- /dev/null +++ b/docbook-xsl-1.76.1/webhelp/template/common/jquery/treeview/jquery.treeview.css @@ -0,0 +1,85 @@ +.treeview, .treeview ul { + padding: 0; + margin: 0; + list-style: none; +} + +.treeview ul { + background-color: white; + margin-top: 4px; +} + +.treeview .hitarea { + background: url(images/treeview-default.gif) -64px -25px no-repeat; + height: 16px; + width: 16px; + margin-left: -16px; + float: left; + cursor: pointer; +} +/* fix for IE6 */ +* html .hitarea { + display: inline; + float:none; +} + +.treeview li { + margin: 0; + padding: 3px 0 3px 16px; +} + +.treeview a.selected { + background-color: #eee; +} + +#treecontrol { margin: 1em 0; display: none; } + +.treeview .hover { color: red; cursor: pointer; } + +.treeview li { background: url(images/treeview-default-line.gif) 0 0 no-repeat; } +.treeview li.collapsable, .treeview li.expandable { background-position: 0 -176px; } + +.treeview .expandable-hitarea { background-position: -80px -3px; } + +.treeview li.last { background-position: 0 -1766px } +.treeview li.lastCollapsable, .treeview li.lastExpandable { background-image: url(images/treeview-default.gif); } +.treeview li.lastCollapsable { background-position: 0 -111px } +.treeview li.lastExpandable { background-position: -32px -67px } + +.treeview div.lastCollapsable-hitarea, .treeview div.lastExpandable-hitarea { background-position: 0; } + +.treeview-red li { background-image: url(images/treeview-red-line.gif); } +.treeview-red .hitarea, .treeview-red li.lastCollapsable, .treeview-red li.lastExpandable { background-image: url(images/treeview-red.gif); } + +.treeview-black li { background-image: url(images/treeview-black-line.gif); } +.treeview-black .hitarea, .treeview-black li.lastCollapsable, .treeview-black li.lastExpandable { background-image: url(images/treeview-black.gif); } + +.treeview-gray li { background-image: url(images/treeview-gray-line.gif); } +.treeview-gray .hitarea, .treeview-gray li.lastCollapsable, .treeview-gray li.lastExpandable { background-image: url(images/treeview-gray.gif); } + +.treeview-famfamfam li { background-image: url(images/treeview-famfamfam-line.gif); } +.treeview-famfamfam .hitarea, .treeview-famfamfam li.lastCollapsable, .treeview-famfamfam li.lastExpandable { background-image: url(images/treeview-famfamfam.gif); } + + +.filetree li { padding: 3px 0 2px 16px; } +.filetree span.folder, .filetree span.file { padding: 1px 0 1px 16px; display: block; } +.filetree span.folder { background: url(images/folder.gif) 0 0 no-repeat; } +.filetree li.expandable span.folder { background: url(images/folder-closed.gif) 0 0 no-repeat; } +.filetree span.file { background: url(images/file.gif) 0 0 no-repeat; } + +html, body {height:100%; margin: 0; padding: 0; } + +/* +html>body { + font-size: 16px; + font-size: 68.75%; +} Reset Base Font Size */ + /* +body { + font-family: Verdana, helvetica, arial, sans-serif; + font-size: 68.75%; + background: #fff; + color: #333; +} */ + +a img { border: none; } \ No newline at end of file diff --git a/docbook-xsl-1.76.1/webhelp/template/common/jquery/treeview/jquery.treeview.js b/docbook-xsl-1.76.1/webhelp/template/common/jquery/treeview/jquery.treeview.js new file mode 100755 index 0000000..248e725 --- /dev/null +++ b/docbook-xsl-1.76.1/webhelp/template/common/jquery/treeview/jquery.treeview.js @@ -0,0 +1,255 @@ +/* + * Treeview 1.4 - jQuery plugin to hide and show branches of a tree + * + * http://bassistance.de/jquery-plugins/jquery-plugin-treeview/ + * http://docs.jquery.com/Plugins/Treeview + * + * Copyright (c) 2007 Jörn Zaefferer + * + * Dual licensed under the MIT and GPL licenses: + * http://www.opensource.org/licenses/mit-license.php + * http://www.gnu.org/licenses/gpl.html + * + * Revision: $Id: jquery.treeview.js 4684 2008-02-07 19:08:06Z joern.zaefferer $ + * + */ + +;(function($) { + + $.extend($.fn, { + swapClass: function(c1, c2) { + var c1Elements = this.filter('.' + c1); + this.filter('.' + c2).removeClass(c2).addClass(c1); + c1Elements.removeClass(c1).addClass(c2); + return this; + }, + replaceClass: function(c1, c2) { + return this.filter('.' + c1).removeClass(c1).addClass(c2).end(); + }, + hoverClass: function(className) { + className = className || "hover"; + return this.hover(function() { + $(this).addClass(className); + }, function() { + $(this).removeClass(className); + }); + }, + heightToggle: function(animated, callback) { + animated ? + this.animate({ height: "toggle" }, animated, callback) : + this.each(function(){ + jQuery(this)[ jQuery(this).is(":hidden") ? "show" : "hide" ](); + if(callback) + callback.apply(this, arguments); + }); + }, + heightHide: function(animated, callback) { + if (animated) { + this.animate({ height: "hide" }, animated, callback); + } else { + this.hide(); + if (callback) + this.each(callback); + } + }, + prepareBranches: function(settings) { + if (!settings.prerendered) { + // mark last tree items + this.filter(":last-child:not(ul)").addClass(CLASSES.last); + // collapse whole tree, or only those marked as closed, anyway except those marked as open + this.filter((settings.collapsed ? "" : "." + CLASSES.closed) + ":not(." + CLASSES.open + ")").find(">ul").hide(); + } + // return all items with sublists + return this.filter(":has(>ul)"); + }, + applyClasses: function(settings, toggler) { + this.filter(":has(>ul):not(:has(>a))").find(">span").click(function(event) { + toggler.apply($(this).next()); + }).add( $("a", this) ).hoverClass(); + + if (!settings.prerendered) { + // handle closed ones first + this.filter(":has(>ul:hidden)") + .addClass(CLASSES.expandable) + .replaceClass(CLASSES.last, CLASSES.lastExpandable); + + // handle open ones + this.not(":has(>ul:hidden)") + .addClass(CLASSES.collapsable) + .replaceClass(CLASSES.last, CLASSES.lastCollapsable); + + // create hitarea + this.prepend("
      ").find("div." + CLASSES.hitarea).each(function() { + var classes = ""; + $.each($(this).parent().attr("class").split(" "), function() { + classes += this + "-hitarea "; + }); + $(this).addClass( classes ); + }); + } + + // apply event to hitarea + this.find("div." + CLASSES.hitarea).click( toggler ); + }, + treeview: function(settings) { + + if(typeof(window.treeCookieId) !== 'undefined' || window.treeCookieId === ""){ + treeCookieId = "treeview"; + } + + settings = $.extend({ + cookieId: treeCookieId + }, settings); + + if (settings.add) { + return this.trigger("add", [settings.add]); + } + + if ( settings.toggle ) { + var callback = settings.toggle; + settings.toggle = function() { + return callback.apply($(this).parent()[0], arguments); + }; + } + + // factory for treecontroller + function treeController(tree, control) { + // factory for click handlers + function handler(filter) { + return function() { + // reuse toggle event handler, applying the elements to toggle + // start searching for all hitareas + toggler.apply( $("div." + CLASSES.hitarea, tree).filter(function() { + // for plain toggle, no filter is provided, otherwise we need to check the parent element + return filter ? $(this).parent("." + filter).length : true; + }) ); + return false; + }; + } + // click on first element to collapse tree + $("a:eq(0)", control).click( handler(CLASSES.collapsable) ); + // click on second to expand tree + $("a:eq(1)", control).click( handler(CLASSES.expandable) ); + // click on third to toggle tree + $("a:eq(2)", control).click( handler() ); + } + + // handle toggle event + function toggler() { + $(this) + .parent() + // swap classes for hitarea + .find(">.hitarea") + .swapClass( CLASSES.collapsableHitarea, CLASSES.expandableHitarea ) + .swapClass( CLASSES.lastCollapsableHitarea, CLASSES.lastExpandableHitarea ) + .end() + // swap classes for parent li + .swapClass( CLASSES.collapsable, CLASSES.expandable ) + .swapClass( CLASSES.lastCollapsable, CLASSES.lastExpandable ) + // find child lists + .find( ">ul" ) + // toggle them + .heightToggle( settings.animated, settings.toggle ); + if ( settings.unique ) { + $(this).parent() + .siblings() + // swap classes for hitarea + .find(">.hitarea") + .replaceClass( CLASSES.collapsableHitarea, CLASSES.expandableHitarea ) + .replaceClass( CLASSES.lastCollapsableHitarea, CLASSES.lastExpandableHitarea ) + .end() + .replaceClass( CLASSES.collapsable, CLASSES.expandable ) + .replaceClass( CLASSES.lastCollapsable, CLASSES.lastExpandable ) + .find( ">ul" ) + .heightHide( settings.animated, settings.toggle ); + } + } + //Cookie Persistence + function serialize() { + function binary(arg) { + return arg ? 1 : 0; + } + var data = []; + branches.each(function(i, e) { + data[i] = $(e).is(":has(>ul:visible)") ? 1 : 0; + }); + $.cookie(settings.cookieId, data.join("") ); + } + + function deserialize() { + var stored = $.cookie(settings.cookieId); + if ( stored ) { + var data = stored.split(""); + branches.each(function(i, e) { + $(e).find(">ul")[ parseInt(data[i]) ? "show" : "hide" ](); + }); + } + } + + // add treeview class to activate styles + this.addClass("treeview"); + + // prepare branches and find all tree items with child lists + var branches = this.find("li").prepareBranches(settings); + + switch(settings.persist) { + case "cookie": + var toggleCallback = settings.toggle; + settings.toggle = function() { + serialize(); + if (toggleCallback) { + toggleCallback.apply(this, arguments); + } + }; + deserialize(); + break; + case "location": + var current = this.find("a").filter(function() { return this.href.toLowerCase() == location.href.toLowerCase(); }); + if ( current.length ) { + current.addClass("selected").parents("ul, li").add( current.next() ).show(); + } + break; + } + + branches.applyClasses(settings, toggler); + + // if control option is set, create the treecontroller and show it + if ( settings.control ) { + treeController(this, settings.control); + $(settings.control).show(); + } + + return this.bind("add", function(event, branches) { + $(branches).prev() + .removeClass(CLASSES.last) + .removeClass(CLASSES.lastCollapsable) + .removeClass(CLASSES.lastExpandable) + .find(">.hitarea") + .removeClass(CLASSES.lastCollapsableHitarea) + .removeClass(CLASSES.lastExpandableHitarea); + $(branches).find("li").andSelf().prepareBranches(settings).applyClasses(settings, toggler); + }); + } + }); + + // classes used by the plugin + // need to be styled via external stylesheet, see first example + var CLASSES = $.fn.treeview.classes = { + open: "open", + closed: "closed", + expandable: "expandable", + expandableHitarea: "expandable-hitarea", + lastExpandableHitarea: "lastExpandable-hitarea", + collapsable: "collapsable", + collapsableHitarea: "collapsable-hitarea", + lastCollapsableHitarea: "lastCollapsable-hitarea", + lastCollapsable: "lastCollapsable", + lastExpandable: "lastExpandable", + last: "last", + hitarea: "hitarea" + }; + + // provide backwards compability + $.fn.Treeview = $.fn.treeview; + +})(jQuery); \ No newline at end of file diff --git a/docbook-xsl-1.76.1/webhelp/template/common/jquery/treeview/jquery.treeview.min.js b/docbook-xsl-1.76.1/webhelp/template/common/jquery/treeview/jquery.treeview.min.js new file mode 100755 index 0000000..e693321 --- /dev/null +++ b/docbook-xsl-1.76.1/webhelp/template/common/jquery/treeview/jquery.treeview.min.js @@ -0,0 +1,16 @@ +/* + * Treeview 1.4 - jQuery plugin to hide and show branches of a tree + * + * http://bassistance.de/jquery-plugins/jquery-plugin-treeview/ + * http://docs.jquery.com/Plugins/Treeview + * + * Copyright (c) 2007 Jörn Zaefferer + * + * Dual licensed under the MIT and GPL licenses: + * http://www.opensource.org/licenses/mit-license.php + * http://www.gnu.org/licenses/gpl.html + * + * Revision: $Id: jquery.treeview.js 4684 2008-02-07 19:08:06Z joern.zaefferer $ + * kasunbg: changed the cookieid name + * + */;(function($){$.extend($.fn,{swapClass:function(c1,c2){var c1Elements=this.filter('.'+c1);this.filter('.'+c2).removeClass(c2).addClass(c1);c1Elements.removeClass(c1).addClass(c2);return this;},replaceClass:function(c1,c2){return this.filter('.'+c1).removeClass(c1).addClass(c2).end();},hoverClass:function(className){className=className||"hover";return this.hover(function(){$(this).addClass(className);},function(){$(this).removeClass(className);});},heightToggle:function(animated,callback){animated?this.animate({height:"toggle"},animated,callback):this.each(function(){jQuery(this)[jQuery(this).is(":hidden")?"show":"hide"]();if(callback)callback.apply(this,arguments);});},heightHide:function(animated,callback){if(animated){this.animate({height:"hide"},animated,callback);}else{this.hide();if(callback)this.each(callback);}},prepareBranches:function(settings){if(!settings.prerendered){this.filter(":last-child:not(ul)").addClass(CLASSES.last);this.filter((settings.collapsed?"":"."+CLASSES.closed)+":not(."+CLASSES.open+")").find(">ul").hide();}return this.filter(":has(>ul)");},applyClasses:function(settings,toggler){this.filter(":has(>ul):not(:has(>a))").find(">span").click(function(event){toggler.apply($(this).next());}).add($("a",this)).hoverClass();if(!settings.prerendered){this.filter(":has(>ul:hidden)").addClass(CLASSES.expandable).replaceClass(CLASSES.last,CLASSES.lastExpandable);this.not(":has(>ul:hidden)").addClass(CLASSES.collapsable).replaceClass(CLASSES.last,CLASSES.lastCollapsable);this.prepend("
      ").find("div."+CLASSES.hitarea).each(function(){var classes="";$.each($(this).parent().attr("class").split(" "),function(){classes+=this+"-hitarea ";});$(this).addClass(classes);});}this.find("div."+CLASSES.hitarea).click(toggler);},treeview:function(settings){if(typeof(window.treeCookieId) === 'undefined' || window.treeCookieId === ""){treeCookieId = "treeview";} settings=$.extend({cookieId: treeCookieId},settings);if(settings.add){return this.trigger("add",[settings.add]);}if(settings.toggle){var callback=settings.toggle;settings.toggle=function(){return callback.apply($(this).parent()[0],arguments);};}function treeController(tree,control){function handler(filter){return function(){toggler.apply($("div."+CLASSES.hitarea,tree).filter(function(){return filter?$(this).parent("."+filter).length:true;}));return false;};}$("a:eq(0)",control).click(handler(CLASSES.collapsable));$("a:eq(1)",control).click(handler(CLASSES.expandable));$("a:eq(2)",control).click(handler());}function toggler(){$(this).parent().find(">.hitarea").swapClass(CLASSES.collapsableHitarea,CLASSES.expandableHitarea).swapClass(CLASSES.lastCollapsableHitarea,CLASSES.lastExpandableHitarea).end().swapClass(CLASSES.collapsable,CLASSES.expandable).swapClass(CLASSES.lastCollapsable,CLASSES.lastExpandable).find(">ul").heightToggle(settings.animated,settings.toggle);if(settings.unique){$(this).parent().siblings().find(">.hitarea").replaceClass(CLASSES.collapsableHitarea,CLASSES.expandableHitarea).replaceClass(CLASSES.lastCollapsableHitarea,CLASSES.lastExpandableHitarea).end().replaceClass(CLASSES.collapsable,CLASSES.expandable).replaceClass(CLASSES.lastCollapsable,CLASSES.lastExpandable).find(">ul").heightHide(settings.animated,settings.toggle);}}function serialize(){function binary(arg){return arg?1:0;}var data=[];branches.each(function(i,e){data[i]=$(e).is(":has(>ul:visible)")?1:0;});$.cookie(settings.cookieId,data.join(""));}function deserialize(){var stored=$.cookie(settings.cookieId);if(stored){var data=stored.split("");branches.each(function(i,e){$(e).find(">ul")[parseInt(data[i])?"show":"hide"]();});}}this.addClass("treeview");var branches=this.find("li").prepareBranches(settings);switch(settings.persist){case"cookie":var toggleCallback=settings.toggle;settings.toggle=function(){serialize();if(toggleCallback){toggleCallback.apply(this,arguments);}};deserialize();break;case"location":var current=this.find("a").filter(function(){return this.href.toLowerCase()==location.href.toLowerCase();});if(current.length){current.addClass("selected").parents("ul, li").add(current.next()).show();}break;}branches.applyClasses(settings,toggler);if(settings.control){treeController(this,settings.control);$(settings.control).show();}return this.bind("add",function(event,branches){$(branches).prev().removeClass(CLASSES.last).removeClass(CLASSES.lastCollapsable).removeClass(CLASSES.lastExpandable).find(">.hitarea").removeClass(CLASSES.lastCollapsableHitarea).removeClass(CLASSES.lastExpandableHitarea);$(branches).find("li").andSelf().prepareBranches(settings).applyClasses(settings,toggler);});}});var CLASSES=$.fn.treeview.classes={open:"open",closed:"closed",expandable:"expandable",expandableHitarea:"expandable-hitarea",lastExpandableHitarea:"lastExpandable-hitarea",collapsable:"collapsable",collapsableHitarea:"collapsable-hitarea",lastCollapsableHitarea:"lastCollapsable-hitarea",lastCollapsable:"lastCollapsable",lastExpandable:"lastExpandable",last:"last",hitarea:"hitarea"};$.fn.Treeview=$.fn.treeview;})(jQuery); \ No newline at end of file diff --git a/docbook-xsl-1.76.1/webhelp/template/common/jquery/treeview/jquery.treeview.pack.js b/docbook-xsl-1.76.1/webhelp/template/common/jquery/treeview/jquery.treeview.pack.js new file mode 100755 index 0000000..eddac49 --- /dev/null +++ b/docbook-xsl-1.76.1/webhelp/template/common/jquery/treeview/jquery.treeview.pack.js @@ -0,0 +1,16 @@ +/* + * Treeview 1.4 - jQuery plugin to hide and show branches of a tree + * + * http://bassistance.de/jquery-plugins/jquery-plugin-treeview/ + * http://docs.jquery.com/Plugins/Treeview + * + * Copyright (c) 2007 Jörn Zaefferer + * + * Dual licensed under the MIT and GPL licenses: + * http://www.opensource.org/licenses/mit-license.php + * http://www.gnu.org/licenses/gpl.html + * + * Revision: $Id: jquery.treeview.js 4684 2008-02-07 19:08:06Z joern.zaefferer $ + * + */ +eval(function(p,a,c,k,e,r){e=function(c){return(c35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}(';(4($){$.1l($.F,{E:4(b,c){l a=3.n(\'.\'+b);3.n(\'.\'+c).o(c).m(b);a.o(b).m(c);8 3},s:4(a,b){8 3.n(\'.\'+a).o(a).m(b).P()},1n:4(a){a=a||"1j";8 3.1j(4(){$(3).m(a)},4(){$(3).o(a)})},1h:4(b,a){b?3.1g({1e:"p"},b,a):3.x(4(){T(3)[T(3).1a(":U")?"H":"D"]();7(a)a.A(3,O)})},12:4(b,a){7(b){3.1g({1e:"D"},b,a)}1L{3.D();7(a)3.x(a)}},11:4(a){7(!a.1k){3.n(":r-1H:G(9)").m(k.r);3.n((a.1F?"":"."+k.X)+":G(."+k.W+")").6(">9").D()}8 3.n(":y(>9)")},S:4(b,c){3.n(":y(>9):G(:y(>a))").6(">1z").C(4(a){c.A($(3).19())}).w($("a",3)).1n();7(!b.1k){3.n(":y(>9:U)").m(k.q).s(k.r,k.t);3.G(":y(>9:U)").m(k.u).s(k.r,k.v);3.1r("").6("J."+k.5).x(4(){l a="";$.x($(3).B().1o("14").13(" "),4(){a+=3+"-5 "});$(3).m(a)})}3.6("J."+k.5).C(c)},z:4(g){g=$.1l({N:"z"},g);7(g.w){8 3.1K("w",[g.w])}7(g.p){l d=g.p;g.p=4(){8 d.A($(3).B()[0],O)}}4 1m(b,c){4 L(a){8 4(){K.A($("J."+k.5,b).n(4(){8 a?$(3).B("."+a).1i:1I}));8 1G}}$("a:10(0)",c).C(L(k.u));$("a:10(1)",c).C(L(k.q));$("a:10(2)",c).C(L())}4 K(){$(3).B().6(">.5").E(k.Z,k.Y).E(k.I,k.M).P().E(k.u,k.q).E(k.v,k.t).6(">9").1h(g.1f,g.p);7(g.1E){$(3).B().1D().6(">.5").s(k.Z,k.Y).s(k.I,k.M).P().s(k.u,k.q).s(k.v,k.t).6(">9").12(g.1f,g.p)}}4 1d(){4 1C(a){8 a?1:0}l b=[];j.x(4(i,e){b[i]=$(e).1a(":y(>9:1B)")?1:0});$.V(g.N,b.1A(""))}4 1c(){l b=$.V(g.N);7(b){l a=b.13("");j.x(4(i,e){$(e).6(">9")[1y(a[i])?"H":"D"]()})}}3.m("z");l j=3.6("Q").11(g);1x(g.1w){18"V":l h=g.p;g.p=4(){1d();7(h){h.A(3,O)}};1c();17;18"1b":l f=3.6("a").n(4(){8 3.16.15()==1b.16.15()});7(f.1i){f.m("1v").1u("9, Q").w(f.19()).H()}17}j.S(g,K);7(g.R){1m(3,g.R);$(g.R).H()}8 3.1t("w",4(a,b){$(b).1s().o(k.r).o(k.v).o(k.t).6(">.5").o(k.I).o(k.M);$(b).6("Q").1q().11(g).S(g,K)})}});l k=$.F.z.1J={W:"W",X:"X",q:"q",Y:"q-5",M:"t-5",u:"u",Z:"u-5",I:"v-5",v:"v",t:"t",r:"r",5:"5"};$.F.1p=$.F.z})(T);',62,110,'|||this|function|hitarea|find|if|return|ul||||||||||||var|addClass|filter|removeClass|toggle|expandable|last|replaceClass|lastExpandable|collapsable|lastCollapsable|add|each|has|treeview|apply|parent|click|hide|swapClass|fn|not|show|lastCollapsableHitarea|div|toggler|handler|lastExpandableHitarea|cookieId|arguments|end|li|control|applyClasses|jQuery|hidden|cookie|open|closed|expandableHitarea|collapsableHitarea|eq|prepareBranches|heightHide|split|class|toLowerCase|href|break|case|next|is|location|deserialize|serialize|height|animated|animate|heightToggle|length|hover|prerendered|extend|treeController|hoverClass|attr|Treeview|andSelf|prepend|prev|bind|parents|selected|persist|switch|parseInt|span|join|visible|binary|siblings|unique|collapsed|false|child|true|classes|trigger|else'.split('|'),0,{})) \ No newline at end of file diff --git a/docbook-xsl-1.76.1/webhelp/template/common/main.js b/docbook-xsl-1.76.1/webhelp/template/common/main.js new file mode 100755 index 0000000..dee7303 --- /dev/null +++ b/docbook-xsl-1.76.1/webhelp/template/common/main.js @@ -0,0 +1,161 @@ +/** + * Miscellaneous js functions for WebHelp + * Kasun Gajasinghe, http://kasunbg.blogspot.com + * David Cramer, http://www.thingbag.net + * + */ + +$(document).ready(function() { + // $("#showHideHighlight").button(); //add jquery button styling to 'Go' button + //Generate tabs in nav-pane with JQuery + $(function() { + $("#tabs").tabs({ + cookie: { + // store cookie for 2 days. + expires: 2 + } + }); + }); + + //Generate the tree + $("#ulTreeDiv").attr("style",""); + $("#tree").treeview({ + collapsed: true, + animated: "medium", + control: "#sidetreecontrol", + persist: "cookie" + }); + + //after toc fully styled, display it. Until loading, a 'loading' image will be displayed + $("#tocLoading").attr("style","display:none;"); +// $("#ulTreeDiv").attr("style","display:block;"); + + //.searchButton is the css class applied to 'Go' button + $(function() { + $("button", ".searchButton").button(); + + $("button", ".searchButton").click(function() { return false; }); + }); + + //'ui-tabs-1' is the cookie name which is used for the persistence of the tabs.(Content/Search tab) + if ($.cookie('ui-tabs-1') === '1') { //search tab is visible + if ($.cookie('textToSearch') != undefined && $.cookie('textToSearch').length > 0) { + document.getElementById('textToSearch').value = $.cookie('textToSearch'); + Verifie('diaSearch_Form'); + searchHighlight($.cookie('textToSearch')); + $("#showHideHighlight").css("display","block"); + } + } + + syncToc(); //Synchronize the toc tree with the content pane, when loading the page. + //$("#doSearch").button(); //add jquery button styling to 'Go' button +}); + +/** + * Synchronize with the tableOfContents + */ +function syncToc(){ + var a = document.getElementById("webhelp-currentid"); + if (a != undefined) { + var b = a.getElementsByTagName("a")[0]; + + if (b != undefined) { + //Setting the background for selected node. + var style = a.getAttribute("style"); + if (style != null && !style.match(/background-color: Background;/)) { + a.setAttribute("style", "background-color: #6495ed; " + style); + b.setAttribute("style", "color: white;"); + } else if (style != null) { + a.setAttribute("style", "background-color: #6495ed; " + style); + b.setAttribute("style", "color: white;"); + } else { + a.setAttribute("style", "background-color: #6495ed; "); + b.setAttribute("style", "color: white;"); + } + } + + //shows the node related to current content. + //goes a recursive call from current node to ancestor nodes, displaying all of them. + while (a.parentNode && a.parentNode.nodeName) { + var parentNode = a.parentNode; + var nodeName = parentNode.nodeName; + + if (nodeName.toLowerCase() == "ul") { + parentNode.setAttribute("style", "display: block;"); + } else if (nodeName.toLocaleLowerCase() == "li") { + parentNode.setAttribute("class", "collapsable"); + parentNode.firstChild.setAttribute("class", "hitarea collapsable-hitarea "); + } + a = parentNode; + } + } +} + +/** + * Code for Show/Hide TOC + * + */ +function showHideToc() { + var showHideButton = $("#showHideButton"); + var leftNavigation = $("#leftnavigation"); + var content = $("#content"); + + if (showHideButton != undefined && showHideButton.hasClass("pointLeft")) { + //Hide TOC + showHideButton.removeClass('pointLeft').addClass('pointRight'); + content.css("margin", "0 0 0 0"); + leftNavigation.css("display","none"); + showHideButton.attr("title", "Show the TOC tree"); + } else { + //Show the TOC + showHideButton.removeClass('pointRight').addClass('pointLeft'); + content.css("margin", "0 0 0 280px"); + leftNavigation.css("display","block"); + showHideButton.attr("title", "Hide the TOC Tree"); + } +} + +/** + * Code for searh highlighting + */ +var highlightOn = true; +function searchHighlight(searchText) { + highlightOn = true; + if (searchText != undefined) { + var wList; + var sList = new Array(); //stem list + //Highlight the search terms + searchText = searchText.toLowerCase().replace(/<\//g, "_st_").replace(/\$_/g, "_di_").replace(/\.|%2C|%3B|%21|%3A|@|\/|\*/g, " ").replace(/(%20)+/g, " ").replace(/_st_/g, " -1) { + + alert(txt_browser_not_supported); + return; + } + + + var expressionInput = document.ditaSearch_Form.textToSearch.value; + //Set a cookie to store the searched keywords + $.cookie('textToSearch', expressionInput); + + + if (expressionInput.length < 1) { + + // expression is invalid + alert(txt_enter_at_least_1_char); + // reactive la fenetre de search (utile car cadres) + document.ditaSearch_Form.textToSearch.focus(); + } + else { + + // Effectuer la recherche + Effectuer_recherche(expressionInput); + + // reactive la fenetre de search (utile car cadres) + document.ditaSearch_Form.textToSearch.focus(); + } +} + +var stemQueryMap = new Array(); // A hashtable which maps stems to query words + +/* This function parses the search expression, loads the indices and displays the results*/ +function Effectuer_recherche(expressionInput) { + + /* Display a waiting message */ + //DisplayWaitingMessage(); + + /*data initialisation*/ + var searchFor = ""; // expression en lowercase et sans les caracte res speciaux + //w = new Object(); // hashtable, key=word, value = list of the index of the html files + scriptLetterTab = new Scriptfirstchar(); // Array containing the first letter of each word to look for + var wordsList = new Array(); // Array with the words to look for + var finalWordsList = new Array(); // Array with the words to look for after removing spaces + var linkTab = new Array(); + var fileAndWordList = new Array(); + var txt_wordsnotfound = ""; + + + /*nqu: expressionInput, la recherche est lower cased, plus remplacement des char speciaux*/ + searchFor = expressionInput.toLowerCase().replace(/<\//g, "_st_").replace(/\$_/g, "_di_").replace(/\.|%2C|%3B|%21|%3A|@|\/|\*/g, " ").replace(/(%20)+/g, " ").replace(/_st_/g, "= 0; i--) { + if (fileAndWordList[i] != undefined) { + linkTab.push("

      " + txt_results_for + " " + "" + fileAndWordList[i][0].motslisteDisplay + "" + "

      "); + + linkTab.push("
        "); + for (t in fileAndWordList[i]) { + //DEBUG: alert(": "+ fileAndWordList[i][t].filenb+" " +fileAndWordList[i][t].motsliste); + //linkTab.push("
      • "+fl[fileAndWordList[i][t].filenb]+"
      • "); + var tempInfo = fil[fileAndWordList[i][t].filenb]; + var pos1 = tempInfo.indexOf("@@@"); + var pos2 = tempInfo.lastIndexOf("@@@"); + var tempPath = tempInfo.substring(0, pos1); + var tempTitle = tempInfo.substring(pos1 + 3, pos2); + var tempShortdesc = tempInfo.substring(pos2 + 3, tempInfo.length); + + //file:///home/kasun/docbook/WEBHELP/webhelp-draft-output-format-idea/src/main/resources/web/webhelp/installation.html + var linkString = "
      • " + tempTitle + ""; + // var linkString = "
      • " + tempTitle + ""; + if ((tempShortdesc != "null")) { + linkString += "\n
        " + tempShortdesc + "
        "; + } + linkString += "
      • "; + linkTab.push(linkString); + } + linkTab.push("
      "); + } + } + } + + var results = ""; + if (linkTab.length > 0) { + /*writeln ("

      " + txt_results_for + " " + "" + cleanwordsList + "" + "
      "+"

      ");*/ + results = "

      "; + //write("

        "); + for (t in linkTab) { + results += linkTab[t].toString(); + } + results += "

        "; + } else { + results = "

        " + "Your search returned no results for " + "" + txt_wordsnotfound + "" + "

        "; + } + //alert(results); + document.getElementById('searchResults').innerHTML = results; +} + +function tokenize(wordsList){ + var stemmedWordsList = new Array(); // Array with the words to look for after removing spaces + var cleanwordsList = new Array(); // Array with the words to look for + for(var j in wordsList){ + var word = wordsList[j]; + if(typeof stemmer != "undefined" ){ + stemQueryMap[stemmer(word)] = word; + } else { + stemQueryMap[word] = word; + } + } + //stemmedWordsList is the stemmed list of words separated by spaces. + for (var t in wordsList) { + wordsList[t] = wordsList[t].replace(/(%22)|^-/g, ""); + if (wordsList[t] != "%20") { + scriptLetterTab.add(wordsList[t].charAt(0)); + cleanwordsList.push(wordsList[t]); + } + } + + if(typeof stemmer != "undefined" ){ + //Do the stemming using Porter's stemming algorithm + for (var i = 0; i < cleanwordsList.length; i++) { + var stemWord = stemmer(cleanwordsList[i]); + stemmedWordsList.push(stemWord); + } + } else { + stemmedWordsList = cleanwordsList; + } + return stemmedWordsList; +} + +//Invoker of CJKTokenizer class methods. +function cjkTokenize(wordsList){ + var allTokens= new Array(); + var notCJKTokens= new Array(); + var j=0; + for(j=0;j"; + return this.input.substring(this.offset,this.offset+2); + } + + function getAllTokens(){ + while(this.incrementToken()){ + var tmp = this.tokenize(); + this.tokens.push(tmp); + } + return this.unique(this.tokens); +// document.getElementById("content").innerHTML += tokens+" "; +// document.getElementById("content").innerHTML += "
        dada"+sortedTokens+" "; +// console.log(tokens.length+"dsdsds"); + /*for(i=0;i t2.length) { + return 1; + } else { + return -1; + } + //return t1.length - t2.length); +} \ No newline at end of file diff --git a/docbook-xsl-1.76.1/webhelp/template/content/search/punctuation.props b/docbook-xsl-1.76.1/webhelp/template/content/search/punctuation.props new file mode 100755 index 0000000..d3e3fcd --- /dev/null +++ b/docbook-xsl-1.76.1/webhelp/template/content/search/punctuation.props @@ -0,0 +1,31 @@ +Punct01=\\u3002 +Punct02=\\u3003 +Punct03=\\u300C +Punct04=\\u300D +Punct05=\\u300E +Punct06=\\u300F +Punct07=\\u301D +Punct08=\\u301E +Punct09=\\u301F +Punct10=\\u309B +Punct11=\\u2018 +Punct12=\\u2019 +Punct13=\\u201A +Punct14=\\u201C +Punct15=\\u201D +Punct16=\\u201E +Punct17=\\u2032 +Punct18=\\u2033 +Punct19=\\u2035 +Punct20=\\u2039 +Punct21=\\u203A +Punct22=\\u201E +Punct23=\\u00BB +Punct24=\\u00AB +Punct25=© +Punct26=’ +Punct27=\\u00A0 +Punct28=\\u2014 + + + diff --git a/docbook-xsl-1.76.1/webhelp/template/content/search/stemmers/de_stemmer.js b/docbook-xsl-1.76.1/webhelp/template/content/search/stemmers/de_stemmer.js new file mode 100755 index 0000000..7ff3822 --- /dev/null +++ b/docbook-xsl-1.76.1/webhelp/template/content/search/stemmers/de_stemmer.js @@ -0,0 +1,247 @@ +/* + * Author: Joder Illi + * + * Copyright (c) 2010, FormBlitz AG + * All rights reserved. + * Implementation of the stemming algorithm from http://snowball.tartarus.org/algorithms/german/stemmer.html + * Copyright of the algorithm is: Copyright (c) 2001, Dr Martin Porter and can be found at http://snowball.tartarus.org/license.php + * + * Redistribution and use in source and binary forms, with or without modification, is covered by the standard BSD license. + * + */ + +//var stemmer = function Stemmer() { + /* + German includes the following accented forms, + ä ö ü + and a special letter, ß, equivalent to double s. + The following letters are vowels: + a e i o u y ä ö ü + */ + + var stemmer = function(word) { + /* + Put u and y between vowels into upper case + */ + word = word.replace(/([aeiouyäöü])u([aeiouyäöü])/g, '$1U$2'); + word = word.replace(/([aeiouyäöü])y([aeiouyäöü])/g, '$1Y$2'); + + /* + and then do the following mappings, + (a) replace ß with ss, + (a) replace ae with ä, Not doing these, have trouble with diphtongs + (a) replace oe with ö, Not doing these, have trouble with diphtongs + (a) replace ue with ü unless preceded by q. Not doing these, have trouble with diphtongs + So in quelle, ue is not mapped to ü because it follows q, and in feuer it is not mapped because the first part of the rule changes it to feUer, so the u is not found. + */ + word = word.replace(/ß/g, 'ss'); + //word = word.replace(/ae/g, 'ä'); + //word = word.replace(/oe/g, 'ö'); + //word = word.replace(/([^q])ue/g, '$1ü'); + + /* + R1 and R2 are first set up in the standard way (see the note on R1 and R2), but then R1 is adjusted so that the region before it contains at least 3 letters. + R1 is the region after the first non-vowel following a vowel, or is the null region at the end of the word if there is no such non-vowel. + R2 is the region after the first non-vowel following a vowel in R1, or is the null region at the end of the word if there is no such non-vowel. + */ + + var r1Index = word.search(/[aeiouyäöü][^aeiouyäöü]/); + var r1 = ''; + if (r1Index != -1) { + r1Index += 2; + r1 = word.substring(r1Index); + } + + var r2Index = -1; + var r2 = ''; + + if (r1Index != -1) { + var r2Index = r1.search(/[aeiouyäöü][^aeiouyäöü]/); + if (r2Index != -1) { + r2Index += 2; + r2 = r1.substring(r2Index); + r2Index += r1Index; + } else { + r2 = ''; + } + } + + if (r1Index != -1 && r1Index < 3) { + r1Index = 3; + r1 = word.substring(r1Index); + } + + /* + Define a valid s-ending as one of b, d, f, g, h, k, l, m, n, r or t. + Define a valid st-ending as the same list, excluding letter r. + */ + + /* + Do each of steps 1, 2 and 3. + */ + + /* + Step 1: + Search for the longest among the following suffixes, + (a) em ern er + (b) e en es + (c) s (preceded by a valid s-ending) + */ + var a1Index = word.search(/(em|ern|er)$/g); + var b1Index = word.search(/(e|en|es)$/g); + var c1Index = word.search(/([bdfghklmnrt]s)$/g); + if (c1Index != -1) { + c1Index++; + } + var index1 = 10000; + var optionUsed1 = ''; + if (a1Index != -1 && a1Index < index1) { + optionUsed1 = 'a'; + index1 = a1Index; + } + if (b1Index != -1 && b1Index < index1) { + optionUsed1 = 'b'; + index1 = b1Index; + } + if (c1Index != -1 && c1Index < index1) { + optionUsed1 = 'c'; + index1 = c1Index; + } + + /* + and delete if in R1. (Of course the letter of the valid s-ending is not necessarily in R1.) If an ending of group (b) is deleted, and the ending is preceded by niss, delete the final s. + (For example, äckern -> äck, ackers -> acker, armes -> arm, bedürfnissen -> bedürfnis) + */ + + if (index1 != 10000 && r1Index != -1) { + if (index1 >= r1Index) { + word = word.substring(0, index1); + if (optionUsed1 == 'b') { + if (word.search(/niss$/) != -1) { + word = word.substring(0, word.length -1); + } + } + } + } + /* + Step 2: + Search for the longest among the following suffixes, + (a) en er est + (b) st (preceded by a valid st-ending, itself preceded by at least 3 letters) + */ + + var a2Index = word.search(/(en|er|est)$/g); + var b2Index = word.search(/(.{3}[bdfghklmnt]st)$/g); + if (b2Index != -1) { + b2Index += 4; + } + + var index2 = 10000; + var optionUsed2 = ''; + if (a2Index != -1 && a2Index < index2) { + optionUsed2 = 'a'; + index2 = a2Index; + } + if (b2Index != -1 && b2Index < index2) { + optionUsed2 = 'b'; + index2 = b2Index; + } + + /* + and delete if in R1. + (For example, derbsten -> derbst by step 1, and derbst -> derb by step 2, since b is a valid st-ending, and is preceded by just 3 letters) + */ + + if (index2 != 10000 && r1Index != -1) { + if (index2 >= r1Index) { + word = word.substring(0, index2); + } + } + + /* + Step 3: d-suffixes (*) + Search for the longest among the following suffixes, and perform the action indicated. + end ung + delete if in R2 + if preceded by ig, delete if in R2 and not preceded by e + ig ik isch + delete if in R2 and not preceded by e + lich heit + delete if in R2 + if preceded by er or en, delete if in R1 + keit + delete if in R2 + if preceded by lich or ig, delete if in R2 + */ + + var a3Index = word.search(/(end|ung)$/g); + var b3Index = word.search(/[^e](ig|ik|isch)$/g); + var c3Index = word.search(/(lich|heit)$/g); + var d3Index = word.search(/(keit)$/g); + if (b3Index != -1) { + b3Index ++; + } + + var index3 = 10000; + var optionUsed3 = ''; + if (a3Index != -1 && a3Index < index3) { + optionUsed3 = 'a'; + index3 = a3Index; + } + if (b3Index != -1 && b3Index < index3) { + optionUsed3 = 'b'; + index3 = b3Index; + } + if (c3Index != -1 && c3Index < index3) { + optionUsed3 = 'c'; + index3 = c3Index; + } + if (d3Index != -1 && d3Index < index3) { + optionUsed3 = 'd'; + index3 = d3Index; + } + + if (index3 != 10000 && r2Index != -1) { + if (index3 >= r2Index) { + word = word.substring(0, index3); + var optionIndex = -1; + var optionSubsrt = ''; + if (optionUsed3 == 'a') { + optionIndex = word.search(/[^e](ig)$/); + if (optionIndex != -1) { + optionIndex++; + if (optionIndex >= r2Index) { + word = word.substring(0, optionIndex); + } + } + } else if (optionUsed3 == 'c') { + optionIndex = word.search(/(er|en)$/); + if (optionIndex != -1) { + if (optionIndex >= r1Index) { + word = word.substring(0, optionIndex); + } + } + } else if (optionUsed3 == 'd') { + optionIndex = word.search(/(lich|ig)$/); + if (optionIndex != -1) { + if (optionIndex >= r2Index) { + word = word.substring(0, optionIndex); + } + } + } + } + } + + /* + Finally, + turn U and Y back into lower case, and remove the umlaut accent from a, o and u. + */ + word = word.replace(/U/g, 'u'); + word = word.replace(/Y/g, 'y'); + word = word.replace(/ä/g, 'a'); + word = word.replace(/ö/g, 'o'); + word = word.replace(/ü/g, 'u'); + + return word; + }; +//} \ No newline at end of file diff --git a/docbook-xsl-1.76.1/webhelp/template/content/search/stemmers/en_stemmer.js b/docbook-xsl-1.76.1/webhelp/template/content/search/stemmers/en_stemmer.js new file mode 100755 index 0000000..f58012f --- /dev/null +++ b/docbook-xsl-1.76.1/webhelp/template/content/search/stemmers/en_stemmer.js @@ -0,0 +1,187 @@ +// Porter stemmer in Javascript. Few comments, but it's easy to follow against the rules in the original +// paper, in +// +// Porter, 1980, An algorithm for suffix stripping, Program, Vol. 14, +// no. 3, pp 130-137, +// +// see also http://www.tartarus.org/~martin/PorterStemmer + +// Release 1 be 'andargor', Jul 2004 +// Release 2 (substantially revised) by Christopher McKenzie, Aug 2009 + + +var stemmer = (function(){ + var step2list = { + "ational" : "ate", + "tional" : "tion", + "enci" : "ence", + "anci" : "ance", + "izer" : "ize", + "bli" : "ble", + "alli" : "al", + "entli" : "ent", + "eli" : "e", + "ousli" : "ous", + "ization" : "ize", + "ation" : "ate", + "ator" : "ate", + "alism" : "al", + "iveness" : "ive", + "fulness" : "ful", + "ousness" : "ous", + "aliti" : "al", + "iviti" : "ive", + "biliti" : "ble", + "logi" : "log" + }, + + step3list = { + "icate" : "ic", + "ative" : "", + "alize" : "al", + "iciti" : "ic", + "ical" : "ic", + "ful" : "", + "ness" : "" + }, + + c = "[^aeiou]", // consonant + v = "[aeiouy]", // vowel + C = c + "[^aeiouy]*", // consonant sequence + V = v + "[aeiou]*", // vowel sequence + + mgr0 = "^(" + C + ")?" + V + C, // [C]VC... is m>0 + meq1 = "^(" + C + ")?" + V + C + "(" + V + ")?$", // [C]VC[V] is m=1 + mgr1 = "^(" + C + ")?" + V + C + V + C, // [C]VCVC... is m>1 + s_v = "^(" + C + ")?" + v; // vowel in stem + + return function (w) { + var stem, + suffix, + firstch, + re, + re2, + re3, + re4, + origword = w; + + if (w.length < 3) { return w; } + + firstch = w.substr(0,1); + if (firstch == "y") { + w = firstch.toUpperCase() + w.substr(1); + } + + // Step 1a + re = /^(.+?)(ss|i)es$/; + re2 = /^(.+?)([^s])s$/; + + if (re.test(w)) { w = w.replace(re,"$1$2"); } + else if (re2.test(w)) { w = w.replace(re2,"$1$2"); } + + // Step 1b + re = /^(.+?)eed$/; + re2 = /^(.+?)(ed|ing)$/; + if (re.test(w)) { + var fp = re.exec(w); + re = new RegExp(mgr0); + if (re.test(fp[1])) { + re = /.$/; + w = w.replace(re,""); + } + } else if (re2.test(w)) { + var fp = re2.exec(w); + stem = fp[1]; + re2 = new RegExp(s_v); + if (re2.test(stem)) { + w = stem; + re2 = /(at|bl|iz)$/; + re3 = new RegExp("([^aeiouylsz])\\1$"); + re4 = new RegExp("^" + C + v + "[^aeiouwxy]$"); + if (re2.test(w)) { w = w + "e"; } + else if (re3.test(w)) { re = /.$/; w = w.replace(re,""); } + else if (re4.test(w)) { w = w + "e"; } + } + } + + // Step 1c + re = /^(.+?)y$/; + if (re.test(w)) { + var fp = re.exec(w); + stem = fp[1]; + re = new RegExp(s_v); + if (re.test(stem)) { w = stem + "i"; } + } + + // Step 2 + re = /^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/; + if (re.test(w)) { + var fp = re.exec(w); + stem = fp[1]; + suffix = fp[2]; + re = new RegExp(mgr0); + if (re.test(stem)) { + w = stem + step2list[suffix]; + } + } + + // Step 3 + re = /^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/; + if (re.test(w)) { + var fp = re.exec(w); + stem = fp[1]; + suffix = fp[2]; + re = new RegExp(mgr0); + if (re.test(stem)) { + w = stem + step3list[suffix]; + } + } + + // Step 4 + re = /^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/; + re2 = /^(.+?)(s|t)(ion)$/; + if (re.test(w)) { + var fp = re.exec(w); + stem = fp[1]; + re = new RegExp(mgr1); + if (re.test(stem)) { + w = stem; + } + } else if (re2.test(w)) { + var fp = re2.exec(w); + stem = fp[1] + fp[2]; + re2 = new RegExp(mgr1); + if (re2.test(stem)) { + w = stem; + } + } + + // Step 5 + re = /^(.+?)e$/; + if (re.test(w)) { + var fp = re.exec(w); + stem = fp[1]; + re = new RegExp(mgr1); + re2 = new RegExp(meq1); + re3 = new RegExp("^" + C + v + "[^aeiouwxy]$"); + if (re.test(stem) || (re2.test(stem) && !(re3.test(stem)))) { + w = stem; + } + } + + re = /ll$/; + re2 = new RegExp(mgr1); + if (re.test(w) && re2.test(w)) { + re = /.$/; + w = w.replace(re,""); + } + + // and turn initial Y back to y + + if (firstch == "y") { + w = firstch.toLowerCase() + w.substr(1); + } + + return w; + } +})(); \ No newline at end of file diff --git a/docbook-xsl-1.76.1/webhelp/template/content/search/stemmers/fr_stemmer.js b/docbook-xsl-1.76.1/webhelp/template/content/search/stemmers/fr_stemmer.js new file mode 100644 index 0000000..34f9743 --- /dev/null +++ b/docbook-xsl-1.76.1/webhelp/template/content/search/stemmers/fr_stemmer.js @@ -0,0 +1,299 @@ +/* + * Author: Kasun Gajasinghe + * E-Mail: kasunbg AT gmail DOT com + * Date: 09.08.2010 + * + * usage: stemmer(word); + * ex: var stem = stemmer(foobar); + * Implementation of the stemming algorithm from http://snowball.tartarus.org/algorithms/french/stemmer.html + * + * LICENSE: + * + * Copyright (c) 2010, Kasun Gajasinghe. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without modification, + * are permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * + * THIS SOFTWARE IS PROVIDED BY KASUN GAJASINGHE ''AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, + * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A + * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL KASUN GAJASINGHE BE LIABLE FOR ANY DIRECT, + * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR + * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE + * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + */ + +var stemmer = function(word){ +// Letters in French include the following accented forms, +// â à ç ë é ê è ï î ô û ù +// The following letters are vowels: +// a e i o u y â à ë é ê è ï î ô û ù + + word = word.toLowerCase(); + var oriWord = word; + word = word.replace(/qu/g, 'qU'); //have to perform first, as after the operation, capital U is not treated as a vowel + word = word.replace(/([aeiouyâàëéêèïîôûù])u([aeiouyâàëéêèïîôûù])/g, '$1U$2'); + word = word.replace(/([aeiouyâàëéêèïîôûù])i([aeiouyâàëéêèïîôûù])/g, '$1I$2'); + word = word.replace(/([aeiouyâàëéêèïîôûù])y/g, '$1Y'); + word = word.replace(/y([aeiouyâàëéêèïîôûù])/g, 'Y$1'); + + var rv=''; + var rvIndex = -1; + if(word.search(/^(par|col|tap)/) != -1 || word.search(/^[aeiouyâàëéêèïîôûù]{2}/) != -1){ + rv = word.substring(3); + rvIndex = 3; + } else { + rvIndex = word.substring(1).search(/[aeiouyâàëéêèïîôûù]/); + if(rvIndex != -1){ + rvIndex +=2; //+2 is to supplement the substring(1) used to find rvIndex + rv = word.substring(rvIndex); + } else { + rvIndex = word.length; + } + } + +// R1 is the region after the first non-vowel following a vowel, or the end of the word if there is no such non-vowel. +// R2 is the region after the first non-vowel following a vowel in R1, or the end of the word if there is no such non-vowel + var r1Index = word.search(/[aeiouyâàëéêèïîôûù][^aeiouyâàëéêèïîôûù]/); + var r1 = ''; + if (r1Index != -1) { + r1Index += 2; + r1 = word.substring(r1Index); + } else { + r1Index = word.length; + } + + var r2Index = -1; + var r2 = ''; + if (r1Index != -1) { + r2Index = r1.search(/[aeiouyâàëéêèïîôûù][^aeiouyâàëéêèïîôûù]/); + if (r2Index != -1) { + r2Index += 2; + r2 = r1.substring(r2Index); + r2Index += r1Index; + } else { + r2 = ''; + r2Index = word.length; + } + } + if (r1Index != -1 && r1Index < 3) { + r1Index = 3; + r1 = word.substring(r1Index); + } + + /* + Step 1: Standard suffix removal + */ + var a1Index = word.search(/(ance|iqUe|isme|able|iste|eux|ances|iqUes|ismes|ables|istes)$/); + var a2Index = word.search(/(atrice|ateur|ation|atrices|ateurs|ations)$/); + var a3Index = word.search(/(logie|logies)$/); + var a4Index = word.search(/(usion|ution|usions|utions)$/); + var a5Index = word.search(/(ence|ences)$/); + var a6Index = word.search(/(ement|ements)$/); + var a7Index = word.search(/(ité|ités)$/); + var a8Index = word.search(/(if|ive|ifs|ives)$/); + var a9Index = word.search(/(eaux)$/); + var a10Index = word.search(/(aux)$/); + var a11Index = word.search(/(euse|euses)$/); + var a12Index = word.search(/[^aeiouyâàëéêèïîôûù](issement|issements)$/); + var a13Index = word.search(/(amment)$/); + var a14Index = word.search(/(emment)$/); + var a15Index = word.search(/[aeiouyâàëéêèïîôûù](ment|ments)$/); + + if(a1Index != -1 && a1Index >= r2Index){ + word = word.substring(0,a1Index); + } else if(a2Index != -1 && a2Index >= r2Index){ + word = word.substring(0,a2Index); + var a2Index2 = word.search(/(ic)$/); + if(a2Index2 != -1 && a2Index2 >= r2Index){ + word = word.substring(0, a2Index2); //if preceded by ic, delete if in R2, + } else { //else replace by iqU + word = word.replace(/(ic)$/,'iqU'); + } + } else if(a3Index != -1 && a3Index >= r2Index){ + word = word.replace(/(logie|logies)$/,'log'); //replace with log if in R2 + } else if(a4Index != -1 && a4Index >= r2Index){ + word = word.replace(/(usion|ution|usions|utions)$/,'u'); //replace with u if in R2 + } else if(a5Index != -1 && a5Index >= r2Index){ + word = word.replace(/(ence|ences)$/,'ent'); //replace with ent if in R2 + } else if(a6Index != -1 && a6Index >= rvIndex){ + word = word.substring(0,a6Index); + if(word.search(/(iv)$/) >= r2Index){ + word = word.replace(/(iv)$/, ''); + if(word.search(/(at)$/) >= r2Index){ + word = word.replace(/(at)$/, ''); + } + } else if(word.search(/(eus)$/) != -1){ + var a6Index2 = word.search(/(eus)$/); + if(a6Index2 >=r2Index){ + word = word.substring(0, a6Index2); + } else if(a6Index2 >= r1Index){ + word = word.substring(0,a6Index2)+"eux"; + } + } else if(word.search(/(abl|iqU)$/) >= r2Index){ + word = word.replace(/(abl|iqU)$/,''); //if preceded by abl or iqU, delete if in R2, + } else if(word.search(/(ièr|Ièr)$/) >= rvIndex){ + word = word.replace(/(ièr|Ièr)$/,'i'); //if preceded by abl or iqU, delete if in R2, + } + } else if(a7Index != -1 && a7Index >= r2Index){ + word = word.substring(0,a7Index); //delete if in R2 + if(word.search(/(abil)$/) != -1){ //if preceded by abil, delete if in R2, else replace by abl, otherwise, + var a7Index2 = word.search(/(abil)$/); + if(a7Index2 >=r2Index){ + word = word.substring(0, a7Index2); + } else { + word = word.substring(0,a7Index2)+"abl"; + } + } else if(word.search(/(ic)$/) != -1){ + var a7Index3 = word.search(/(ic)$/); + if(a7Index3 != -1 && a7Index3 >= r2Index){ + word = word.substring(0, a7Index3); //if preceded by ic, delete if in R2, + } else { //else replace by iqU + word = word.replace(/(ic)$/,'iqU'); + } + } else if(word.search(/(iv)$/) != r2Index){ + word = word.replace(/(iv)$/,''); + } + } else if(a8Index != -1 && a8Index >= r2Index){ + word = word.substring(0,a8Index); + if(word.search(/(at)$/) >= r2Index){ + word = word.replace(/(at)$/, ''); + if(word.search(/(ic)$/) >= r2Index){ + word = word.replace(/(ic)$/, ''); + } else { word = word.replace(/(ic)$/, 'iqU'); } + } + } else if(a9Index != -1){ word = word.replace(/(eaux)/,'eau') + } else if(a10Index >= r1Index){ word = word.replace(/(aux)/,'al') + } else if(a11Index != -1 ){ + var a11Index2 = word.search(/(euse|euses)$/); + if(a11Index2 >=r2Index){ + word = word.substring(0, a11Index2); + } else if(a11Index2 >= r1Index){ + word = word.substring(0, a11Index2)+"eux"; + } + } else if(a12Index!=-1 && a12Index>=r1Index){ + word = word.substring(0,a12Index+1); //+1- amendment to non-vowel + } else if(a13Index!=-1 && a13Index>=rvIndex){ + word = word.replace(/(amment)$/,'ant'); + } else if(a14Index!=-1 && a14Index>=rvIndex){ + word = word.replace(/(emment)$/,'ent'); + } else if(a15Index!=-1 && a15Index>=rvIndex){ + word = word.substring(0,a15Index+1); + } + + /* Step 2a: Verb suffixes beginning i*/ + var wordStep1 = word; + var step2aDone = false; + if(oriWord == word.toLowerCase() || oriWord.search(/(amment|emment|ment|ments)$/) != -1){ + step2aDone = true; + var b1Regex = /([^aeiouyâàëéêèïîôûù])(îmes|ît|îtes|i|ie|ies|ir|ira|irai|iraIent|irais|irait|iras|irent|irez|iriez|irions|irons|iront|is|issaIent|issais|issait|issant|issante|issantes|issants|isse|issent|isses|issez|issiez|issions|issons|it)$/i; + if(word.search(b1Regex) >= rvIndex){ + word = word.replace(b1Regex,'$1'); + } + } + + /* Step 2b: Other verb suffixes*/ + if (step2aDone && wordStep1 == word) { + if (word.search(/(ions)$/) >= r2Index) { + word = word.replace(/(ions)$/, ''); + } else { + var b2Regex = /(é|ée|ées|és|èrent|er|era|erai|eraIent|erais|erait|eras|erez|eriez|erions|erons|eront|ez|iez)$/i; + if (word.search(b2Regex) >= rvIndex) { + word = word.replace(b2Regex, ''); + } else { + var b3Regex = /e(âmes|ât|âtes|a|ai|aIent|ais|ait|ant|ante|antes|ants|as|asse|assent|asses|assiez|assions)$/i; + if (word.search(b3Regex) >= rvIndex) { + word = word.replace(b3Regex, ''); + } else { + var b3Regex2 = /(âmes|ât|âtes|a|ai|aIent|ais|ait|ant|ante|antes|ants|as|asse|assent|asses|assiez|assions)$/i; + if (word.search(b3Regex2) >= rvIndex) { + word = word.replace(b3Regex2, ''); + } + } + } + } + } + + if(oriWord != word.toLowerCase()){ + /* Step 3 */ + var rep = ''; + if(word.search(/Y$/) != -1) { + word = word.replace(/Y$/, 'i'); + } else if(word.search(/ç$/) != -1){ + word = word.replace(/ç$/, 'c'); + } + } else { + /* Step 4 */ + //If the word ends s, not preceded by a, i, o, u, è or s, delete it. + if (word.search(/([^aiouès])s$/) >= rvIndex) { + word = word.replace(/([^aiouès])s$/, '$1'); + } + var e1Index = word.search(/ion$/); + if (e1Index >= r2Index && word.search(/[st]ion$/) >= rvIndex) { + word = word.substring(0, e1Index); + } else { + var e2Index = word.search(/(ier|ière|Ier|Ière)$/); + if (e2Index != -1 && e2Index >= rvIndex) { + word = word.substring(0, e2Index) + "i"; + } else { + if (word.search(/e$/) >= rvIndex) { + word = word.replace(/e$/, ''); //delete last e + } else if (word.search(/guë$/) >= rvIndex) { + word = word.replace(/guë$/, 'gu'); + } + } + } + } + + /* Step 5: Undouble */ + //word = word.replace(/(en|on|et|el|eil)(n|t|l)$/,'$1'); + word = word.replace(/(en|on)(n)$/,'$1'); + word = word.replace(/(ett)$/,'et'); + word = word.replace(/(el|eil)(l)$/,'$1'); + + /* Step 6: Un-accent */ + word = word.replace(/[éè]([^aeiouyâàëéêèïîôûù]+)$/,'e$1'); + word = word.toLowerCase(); + return word; +}; + +var eqOut = new Array(); +var noteqOut = new Array(); +var eqCount = 0; +/* +To test the stemming, create two arrays named "voc" and "COut" which are for vocabualary and the stemmed output. +Then add the vocabulary strings and output strings. This method will generate the stemmed output for "voc" and will +compare the output with COut. + (I used porter's voc and out files and did a regex to convert them to js objects. regex: /");\nvoc.push("/g . This + will add strings to voc array such that output would look like: voc.push("foobar"); ) drop me an email for any help. + */ +function testFr(){ + var start = new Date().getTime(); //execution time + eqCount = 0; + eqOut = new Array(); + noteqOut = new Array(); + for(var k=0;k + + + + + + + + true + index.html + docs + + en + + 0 + + + + no + 0 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + language: + + + + + + + + + + + Note + + + namesp. cut + + + stripped namespace before processing + + + + + + + + Note + + + namesp. cut + + + processing stripped document + + + + + + + + Unable to strip the namespace from DB5 document, + cannot proceed. + + + + + + + + + ID ' + + ' not found in document. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        + + + + + + + + + + + + +
        + + + + + +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        +
        + +
        + loading table of contents... + + +
        + +
        + +
        +
        +
        +
        +
        + +
        +
        +
        +
        +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      • + + webhelp-currentid + + + + + + + +
          + + + +
        +
        +
      • +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <xsl:value-of select="//title[1]"/>  + + + + If not automatically redirected, click here: content/ch01.html + + + + + + + diff --git a/docbook-xsl-1.76.1/website/autolayout.xsl b/docbook-xsl-1.76.1/website/autolayout.xsl new file mode 100644 index 0000000..461bfce --- /dev/null +++ b/docbook-xsl-1.76.1/website/autolayout.xsl @@ -0,0 +1,258 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + All toc entries must have a page attribute. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + All toc entries must have an href attribute. + + + + + + All href toc entries must have an id attribute. + + + + + off site: + + + + + + + + + + + + + + + + + + Off-site links must provide a title. + + + + + + + + + + + + + All toc entries must have a page attribute. + + + + + + + + + : missing ID. + + + + + + + + + + + + + + index.html + + + + + + + + + + + : missing filename. + + + + + + : + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <xsl:apply-templates select="$page/*[1]/head/title"/> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + / + + + + + + + + / + + + + + + + / + + + + + + diff --git a/docbook-xsl-1.76.1/website/chunk-common.xsl b/docbook-xsl-1.76.1/website/chunk-common.xsl new file mode 100644 index 0000000..d750c05 --- /dev/null +++ b/docbook-xsl-1.76.1/website/chunk-common.xsl @@ -0,0 +1,227 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Fail: tocentry has both page and href attributes. + + + + + + + + + index.html + + + + + + + + + + + + + + + + + + + + + does not exist. + + + + + + + + does not exist. + + + + + + + + + + + + + + + + + + / + + + + + + + + 0 + + + + 1 + + 0 + + + + + + 1 + + 0 + + + 1 + + + + + + + Update: + + : + + + + + + + + + + + + + + + + + + Up-to-date: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must specify a $website.database.document parameter when + $collect.xref.targets is set to 'yes' or 'only'. + The xref targets were not collected. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/website/chunk-tabular.xsl b/docbook-xsl-1.76.1/website/chunk-tabular.xsl new file mode 100644 index 0000000..cdf97cf --- /dev/null +++ b/docbook-xsl-1.76.1/website/chunk-tabular.xsl @@ -0,0 +1,12 @@ + + + + + + + + diff --git a/docbook-xsl-1.76.1/website/chunk-website.xsl b/docbook-xsl-1.76.1/website/chunk-website.xsl new file mode 100644 index 0000000..a9179a0 --- /dev/null +++ b/docbook-xsl-1.76.1/website/chunk-website.xsl @@ -0,0 +1,12 @@ + + + + + + + + diff --git a/docbook-xsl-1.76.1/website/head.xsl b/docbook-xsl-1.76.1/website/head.xsl new file mode 100644 index 0000000..e3ac308 --- /dev/null +++ b/docbook-xsl-1.76.1/website/head.xsl @@ -0,0 +1,316 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <xsl:value-of select="."/> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + JavaScript + + + + + + + + + text/javascript + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Note + + + namesp. cut + + + stripped namespace before processing + + + + + + + + Note + + + namesp. cut + + + processing stripped document + + + + + + + + Unable to strip the namespace from DB5 document, + cannot proceed. + + + + + + + + + ID ' + + ' not found in document. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + + + diff --git a/docbook-xsl-1.76.1/xhtml-1_1/ebnf.xsl b/docbook-xsl-1.76.1/xhtml-1_1/ebnf.xsl new file mode 100644 index 0000000..85e33ee --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml-1_1/ebnf.xsl @@ -0,0 +1,328 @@ + + + + + + + + + + +$Id: ebnf.xsl 8178 2008-12-15 22:26:38Z bobstayton $ + +Walsh +Norman +19992000 +Norman Walsh + + +HTML EBNF Reference + + +
        Introduction + +This is technical reference documentation for the DocBook XSL +Stylesheets; it documents (some of) the parameters, templates, and +other elements of the stylesheets. + +This reference describes the templates and parameters relevant +to formatting EBNF markup. + +This is not intended to be user documentation. +It is provided for developers writing customization layers for the +stylesheets, and for anyone who's interested in how it +works. + +Although I am trying to be thorough, this documentation is known +to be incomplete. Don't forget to read the source, too :-) +
        +
        +
        + + + + + + + background-color: + + + + + 1 + + + + + + EBNF + + for + + + + + + + + + + + + +
        + + +
        + + + background-color: + + + + + + + EBNF productions + +
        +
        +
        + + + + + + + + + + [ + + ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +   + + + + + + + + + + + + + Error: no ID for productionrecap linkend: + + . + + + + + + Warning: multiple "IDs" for productionrecap linkend: + + . + + + + + + + + + + + + + + + + | +
        +
        +
        + + + + + + + + + + + + + + + production + + + + + + + + + Non-terminals with no content must point to + production elements in the current document. + + + Invalid xpointer for empty nt: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ??? + + + + + + + + + + + + + /*  + +  */ +
        +
        + + + + + + + + + constraintdef + + + + + + + + + + + + + + + + : + + + + + + + : + + + + + + + + + +  ] + +
        +
        +
        + + +
        + + + +
        +
        + + +

        +
        + + + +
        diff --git a/docbook-xsl-1.76.1/xhtml-1_1/footnote.xsl b/docbook-xsl-1.76.1/xhtml-1_1/footnote.xsl new file mode 100644 index 0000000..8da2720 --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml-1_1/footnote.xsl @@ -0,0 +1,305 @@ + + + + + + + + + + + + + #ftn. + + + + + + + [ + + + + + ] + + + + + [ + + + + + ] + + + + + + + + + + + +ERROR: A footnoteref element has a linkend that points to an element that is not a footnote. +Typically this happens when an id attribute is accidentally applied to the child of a footnote element. +target element: +linkend/id: + + + + + + + + + + + + #ftn. + + + + + [ + + + + + ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ftn. + + + + + + # + + + + + + + + + + + + + + [ + + + + + ] + + + + + + + + + + + + ftn. + + + + + + # + + + + + + + [ + + + + + ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        +
        + +
        +
        + + +
        +
        +

        The following annotations are from this essay. You are seeing + them here because your browser doesn’t support the user-interface + techniques used to make them appear as ‘popups’ on modern browsers.

        +
        + + +
        +
        +
        + + + + + + + + +
        + + +
        +
        + + +
        + + + +
        +
        + + + + Warning: footnote number may not be generated + correctly; + + unexpected as first child of footnote. + +
        + + +
        +
        +
        +
        + + + + + + + + +
        diff --git a/docbook-xsl-1.76.1/xhtml-1_1/formal.xsl b/docbook-xsl-1.76.1/xhtml-1_1/formal.xsl new file mode 100644 index 0000000..57c98f3 --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml-1_1/formal.xsl @@ -0,0 +1,411 @@ + + + + + + + +1 + + + + + + + + + + +
        + + + + + + + +
        + +
        + + + + + +

        + + +

        +

        + + + + + + + +
        +
        + +
        +
        +
        + + + + + + + + + -float + + + + + + + + + +
        + + + + + + + + + + + + + +
        + +
        +
        + +

        + + + +

        +
        +
        +
        + + + + + +
        +

        + + + + + + + + +

        +

        +
        + + + + + + + + + -float + + + + + + + + + +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + before + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Broken table: tr descendent of CALS Table. + + + + + + + + + + before + + + + + + + + + + + + + + + + + + + + + + + + + Broken table: row descendent of HTML table. + + + + + + + + + + + + + + + + + + + + + + + + before + + + + + + + + + + + + + + + + + + + + + before + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        + + + float: + + ; + + + +
        +
        + +
        diff --git a/docbook-xsl-1.76.1/xhtml-1_1/glossary.xsl b/docbook-xsl-1.76.1/xhtml-1_1/glossary.xsl new file mode 100644 index 0000000..d22b6c5 --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml-1_1/glossary.xsl @@ -0,0 +1,564 @@ + + + + + + + + + + + + + + + + + + normalize.sort.input + + + + + + normalize.sort.output + + + + + +
        + + + + + + + + + + + + + + + + + + + + + + + + + + +
        + + + + + + + + + + +
        +
        + + + +
        + + + + +
        +
        + + + + + + + + + + + + + + + + + + normalize.sort.input + + + + + + normalize.sort.output + + + +
        + + + + + +
        + + + + + + + + + + +
        +
        +
        + + + + + + + + + + + + normalize.sort.input + + + + + + normalize.sort.output + + + + + +
        + + + +
        + + + + + + + + + + +
        +
        +
        + + +

        + + +

        +
        + + + + + + + + +
        + + + + 0 + 1 + + + + + + + + ( + + ) + + + + + +
        +
        + +
        + + + + 0 + 1 + + + + + + + + ( + + ) + +
        +
        + +
        + + + + 0 + 1 + + + + + +
        +
        +
        + + +
        + + + + , + + + + + , + + + + + , + + + + + + + + + + + +
        +

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Warning: glosssee @otherterm reference not found: + + + + + + + + + + + + + + +

        +
        +
        + + +
        + + +

        + + + + + + + + + + + + + +

        +
        +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Warning: glossseealso @otherterm reference not found: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + normalize.sort.input + + + + + + normalize.sort.output + + + + + + + + + + + Warning: processing automatic glossary + without a glossary.collection file. + + + + + + Warning: processing automatic glossary but unable to + open glossary.collection file ' + + ' + + + +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        + + + + + + + + + + + + + + + + + + + +
        +
        +
        + + + + +
        +
        + + + + + + + + + + + + + + + + + normalize.sort.input + + + + + + normalize.sort.output + + + + +
        + + + +
        + + + + ! + + + + + + + + + + + + + + + +
        +
        +
        + + + +
        diff --git a/docbook-xsl-1.76.1/xhtml-1_1/graphics.xsl b/docbook-xsl-1.76.1/xhtml-1_1/graphics.xsl new file mode 100644 index 0000000..db05ad2 --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml-1_1/graphics.xsl @@ -0,0 +1,1436 @@ + + + + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + +
        + + +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + 0 + 0 + + 1 + 0 + + + + + + 1.0 + 1.0 + + + + 1.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + px + + + + + + + + + + + px + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + px + + + + + + + + + + + px + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text-align: + + middle + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Warning: imagemaps not supported + on scaled images + + + + 0 + + + + + + + + + + + + + + + + + + text-align: + + middle + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + height: + + px + + + + + + + + + + + +
        + + + + + background-color: + + + + + background-color: + + + + + + + text-align: + + + + + + + + + +
        +
        + + + +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + calspair + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + , + + , + + , + + + + + + + + + + + + Warning: only calspair or + otherunits='imagemap' supported + in imageobjectco + + + + + + +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text-align: + + middle + + + + + + + + + + + + + + + + + +
        + + text-align: + + + + + +
        +
        +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No insertfile extension available. + + + + + + + Cannot insert + . Check use.extensions and textinsert.extension parameters. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        + + + text-align: + + + + + + + +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No insertfile extension available. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No insertfile extension available. + + + + + + + Cannot insert + . Check use.extensions and textinsert.extension parameters. + + + + + + + + +
        + + + text-align: + + +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/xhtml-1_1/highlight.xsl b/docbook-xsl-1.76.1/xhtml-1_1/highlight.xsl new file mode 100644 index 0000000..222a055 --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml-1_1/highlight.xsl @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/xhtml-1_1/html-rtf.xsl b/docbook-xsl-1.76.1/xhtml-1_1/html-rtf.xsl new file mode 100644 index 0000000..e079a73 --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml-1_1/html-rtf.xsl @@ -0,0 +1,321 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        + +
        + + + + + + + + + + +
        +
        +
        +
        + + + + + + + + + + + + + + +
        + +
        + + + + + + + + + + +
        +
        +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        diff --git a/docbook-xsl-1.76.1/xhtml-1_1/html.xsl b/docbook-xsl-1.76.1/xhtml-1_1/html.xsl new file mode 100644 index 0000000..154a645 --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml-1_1/html.xsl @@ -0,0 +1,598 @@ + + + + + + + + + + + + left + right + left + + + + + + right + left + right + + + + + + ltr + rtl + ltr + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + # + + + + + + + + + # + + + + + + + + + + + + + + + + + + + bullet + + + + + + + + + bullet + + + © + + + ® + (SM) +   + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ID recommended on + + + : + + + + ... + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR: no root element for CSS source file' + + '. + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR: missing CSS input filename. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/xhtml-1_1/htmltbl.xsl b/docbook-xsl-1.76.1/xhtml-1_1/htmltbl.xsl new file mode 100644 index 0000000..47c9a98 --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml-1_1/htmltbl.xsl @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + float: + + left + right + + + + + + + + + + + + + none + none + + ; + + + + diff --git a/docbook-xsl-1.76.1/xhtml-1_1/index.xsl b/docbook-xsl-1.76.1/xhtml-1_1/index.xsl new file mode 100644 index 0000000..2c39f4f --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml-1_1/index.xsl @@ -0,0 +1,264 @@ + + + + + + + + + + + + + + + + + + + +
        + + + + + + + + + + + + + + + + + + + + + + + + +
        + +
        +
        +
        +
        + + + + + + + + + + +
        +
        +
        + + + + + + + + + + + +
        + + + + + + + + + + + + + + + + + + + +
        +
        +
        + + + + + + + + + + + + +
        + + + + + + + + + +
        + +
        +
        +
        + + +

        + + +

        +
        + + + + + + + + + +
        + + + + + + + + + + + + +
        + +
        +
        + + + +
        +
        + + + + + + + + + + +
        +
        + +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        +
        + + +
        +
        + +
        +
        + + + + + + + + + + + + + + +
        +
        +
        + + +
        + ( + + + + + + ) +
        +
        + + +
        + ( + + + + + + ) +
        +
        + + diff --git a/docbook-xsl-1.76.1/xhtml-1_1/info.xsl b/docbook-xsl-1.76.1/xhtml-1_1/info.xsl new file mode 100644 index 0000000..76285ab --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml-1_1/info.xsl @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/xhtml-1_1/inline.xsl b/docbook-xsl-1.76.1/xhtml-1_1/inline.xsl new file mode 100644 index 0000000..da72226 --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml-1_1/inline.xsl @@ -0,0 +1,1451 @@ + + + + + + + + + + + + + + + + + + + + + + _blank + _top + + + + + + + + + + + + + + 1 + 0 + + + + + + + + + 1 + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + XLink to nonexistent id: + + + + + + +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + span + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ( + + ) + + + + + + + + + + + , + + + + + + + , + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + abbr + + + + + + acronym + + + + + + + + + + + + + + + + + + + + + + + + + + http://example.com/cgi-bin/man.cgi? + + ( + + ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + SM + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Warning: glossary.collection specified, but there are + + automatic glossaries + + + + + + + + + + + + + + + + + + + + + + + + There's no entry for + + in + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Error: no glossentry for glossterm: + + . + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + element + + + + + + + + + + + + + + + + </ + + > + + + & + + ; + + + &# + + ; + + + % + + ; + + + <? + + > + + + <? + + ?> + + + < + + > + + + < + + /> + + + <!-- + + --> + + + + + + + + + + + + + + + + + + + + + + < + + + + + mailto: + + + + + + > + + + + + + + + + + + + + - + - + - + + + + + + + + + + + + + + + + + + + + + + ( + + ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + [ + + + + + + + + + + + + + + + + + + + ] + + + [ + + ] + + + + + + + + + + + + + [ + + + + + + + + + + + + ] + + + [ + + ] + + + + + + + + + + + + +

        +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/xhtml-1_1/keywords.xsl b/docbook-xsl-1.76.1/xhtml-1_1/keywords.xsl new file mode 100644 index 0000000..5f6b4fb --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml-1_1/keywords.xsl @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + , + + + + + diff --git a/docbook-xsl-1.76.1/xhtml-1_1/lists.xsl b/docbook-xsl-1.76.1/xhtml-1_1/lists.xsl new file mode 100644 index 0000000..967443f --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml-1_1/lists.xsl @@ -0,0 +1,1088 @@ + + + + + + + + + + +
        + + + + + + + + + +
          + + + + + + Compact spacing via @spacing attribute cannot be set in strict XHTML output for listitem: + +
        +
        +
        + + + + + + + + + + + + + + + + + + + + + + + circle + disc + square + + + + + + +
      • + + + + list-style-type: + + + + + + + + + + + +
        + +
        +
        + + + +
        +
      • +
        + + + + + + + + + + + + + 1 + a + i + A + I + + + + Unexpected numeration: + + + + + + + +
        + + + + + + + + + + + + + + + + + + +
        +
        + +
          + + Strict XHTML does not allow setting @start attribute for lists! + + + + Compact spacing via @spacing attribute cannot be set in strict XHTML output for listitem: + +
        +
        +
        +
        +
        + + + + + + +
      • + + @override attribute cannot be set in strict XHTML output for listitem: + + + + + + + + +
        + +
        +
        + + + +
        +
      • +
        + + + + + + + + + + + + + +
        + +
        +
        + + + +
        + + +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        + + + +
        + +
        +
        +
        +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + +

        + + + + + + + + + + + + + +

        +
        +
        +
        + + +
        + + +
        +
        + +
        +
        + + + + + + + + + + + + + + + + + + + + + +

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +

        + + + + + +
        + + + + + + + + + + + + + + + + + + +
        +
        +
        +
        +
        +
        + + + + + + + + + +
        + +
        +
        + + + +
        +
        + + + + + + + + + + + + + + + 1 + + + +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + , + + + + + + + + + + + + + + + + + + + + + + + 1 + + + +
        +
        + + + + + + + + + + + + 1 + + + +
        +
        + + + 1 + 1 + + + + + + + + + + + + + + + + + + + + + + + + + 1 + 1 + + 1 + + + + + + + + +   + + + + + + + + + + + + + + 1 + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + 1 + 1 + + 1 + + + + + + + + +   + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + before + + + + + + + + + +
        + + + + + 0 + 1 + + + + + + + + + + + + +
          + + +
        +
        + +
          + + + +
        +
        +
        + + + + +
        +
        + + + + + +decimallower-alphalower-romanupper-alphaupper-romanWarning: unknown procedure.step.numeration value:
          list-style-type:
        + + +
      • + + + +
      • +
        + + + +
          + + +
        +
        + + +

        + + + + +

        +
        + + + + + + + + +
        + + + + + + + + + + + + + + + + + +
        +
        + + +
        + + + + + + + +
        +
        + + + + + + + + + +
        + + + +
        +
        + + + + + + + + +
        + + + + + : + + + +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        + + + + + + + + + + + + + +
        +
        + +
        + +
        +
        +
        +
        +
        + + + + + + + + + + + + + + + +

        + + + + +

        + + + + + +
        + +
        + + + + +
        +
        +
        +
        +
        + + + + + + + + + +

        + + + + + + + + + + + + + + + +

        +
        +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ??? + + + + + # + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ??? + + + + + + + + + + + + + + + + + + + +
        diff --git a/docbook-xsl-1.76.1/xhtml-1_1/maketoc.xsl b/docbook-xsl-1.76.1/xhtml-1_1/maketoc.xsl new file mode 100644 index 0000000..d1f710f --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml-1_1/maketoc.xsl @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + filename=" + + " + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/xhtml-1_1/manifest.xsl b/docbook-xsl-1.76.1/xhtml-1_1/manifest.xsl new file mode 100644 index 0000000..26b51d0 --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml-1_1/manifest.xsl @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/xhtml-1_1/math.xsl b/docbook-xsl-1.76.1/xhtml-1_1/math.xsl new file mode 100644 index 0000000..b2cac2d --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml-1_1/math.xsl @@ -0,0 +1,284 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Unsupported TeX math notation: + + + + + + + + + + + + + \nopagenumbers + + + + + \bye + + + + + + + + + + + + + + + + + + + + + + + + \special{dvi2bitmap outputfile + + } + + + $ + + + + $ + + + \vfill\eject + + + + + + + + + + + + + + + + + + + + + + + + + \special{dvi2bitmap outputfile + + } + + + $$ + + + + $$ + + + \vfill\eject + + + + + + + + + + \documentclass{article} + + \pagestyle{empty} + + \begin{document} + + + + + \end{document} + + + + + + + + + + + + + + + + + + + + + + + + \special{dvi2bitmap outputfile + + } + + + $ + + + + $ + + + \newpage + + + + + + + + + + + + + + + + + + + + + + + + + \special{dvi2bitmap outputfile + + } + + + $$ + + + + $$ + + + \newpage + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + 0 + 1 + + + + + + diff --git a/docbook-xsl-1.76.1/xhtml-1_1/oldchunker.xsl b/docbook-xsl-1.76.1/xhtml-1_1/oldchunker.xsl new file mode 100644 index 0000000..e727bf1 --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml-1_1/oldchunker.xsl @@ -0,0 +1,176 @@ + + + + + + + + + + + + + + + + +Encoding used in generated HTML pages + +This encoding is used in files generated by chunking stylesheet. Currently +only Saxon is able to change output encoding. + + + + + + + + + +Saxon character representation used in generated HTML pages + +This character representation is used in files generated by chunking stylesheet. If +you want to suppress entity references for characters with direct representation +in default.encoding, set this parameter to value native. + + + + + + + + + + + + + + + + + + + + + + + + Chunking isn't supported with + + + + + + + + + + + + + + + Writing + + + for + + + ( + + ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Can't make chunks with + + 's processor. + + + + + + + + + + + + + + + + Writing + + + for + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Can't make chunks with + + 's processor. + + + + + + diff --git a/docbook-xsl-1.76.1/xhtml-1_1/onechunk.xsl b/docbook-xsl-1.76.1/xhtml-1_1/onechunk.xsl new file mode 100644 index 0000000..15a04e1 --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml-1_1/onechunk.xsl @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + +1 + + + + # + + + + + + diff --git a/docbook-xsl-1.76.1/xhtml-1_1/param.xsl b/docbook-xsl-1.76.1/xhtml-1_1/param.xsl new file mode 100644 index 0000000..e687d52 --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml-1_1/param.xsl @@ -0,0 +1,436 @@ + + + + + + + + + +.png + +images/ + + + + + + +/* ====================================================================== + Annotations +*/ + +div.annotation-list { visibility: hidden; + } + +div.annotation-nocss { position: absolute; + visibility: hidden; + } + +div.annotation-popup { position: absolute; + z-index: 4; + visibility: hidden; + padding: 0px; + margin: 2px; + border-style: solid; + border-width: 1px; + width: 200px; + background-color: white; + } + +div.annotation-title { padding: 1px; + font-weight: bold; + border-bottom-style: solid; + border-bottom-width: 1px; + color: white; + background-color: black; + } + +div.annotation-body { padding: 2px; + } + +div.annotation-body p { margin-top: 0px; + padding-top: 0px; + } + +div.annotation-close { position: absolute; + top: 2px; + right: 2px; + } + + +http://docbook.sourceforge.net/release/images/annot-close.png +http://docbook.sourceforge.net/release/images/annot-open.png + + +http://docbook.sourceforge.net/release/script/AnchorPosition.js http://docbook.sourceforge.net/release/script/PopupWindow.js + + +A + + +. + +. +http://docbook.sourceforge.net/release/bibliography/bibliography.xml + + +normal + + +60 +.png + + +15 + +images/callouts/ + + +10 +10102 + + + + + + + + + + + +no + +1 + + + + + + left + before + + + +all + + +docbook.css.xml +no +images/draft.png + +::= + + + + +#F5DCB3 + + +com.example.help +DocBook Online Help Sample +Example provider +1 + + + + + + 1 + 0 + + + + +1 + + + +figure before +example before +equation before +table before +procedure before +task before + + +kr + + + + + + + + + + +appendix toc,title +article/appendix nop +article toc,title +book toc,title,figure,table,example,equation +chapter toc,title +part toc,title +preface toc,title +qandadiv toc +qandaset toc +reference toc,title +sect1 toc +sect2 toc +sect3 toc +sect4 toc +sect5 toc +section toc +set toc,title + + + + +no + + + + + + + + + + + + + +.html + + +copyright + + + +text/css +alias.h + + + + + + + +User1 + + +User2 + + + + + + + + + +htmlhelp.chm + + +iso-8859-1 + + + + + +toc.hhc +5 + + +index.hhk +htmlhelp.hhp + +Main + +context.h + + + + + + + + + + + + + +basic + + + + + + + +no + +no +iso-8859-1 + + +en + + + + +5 + + +3 + + + + + + + HTML.manifest + + + + ++ +.gif + +images/ +1 + + +6in + + +no +fragid= + +.olink + + replace + +pubid + /cgi-bin/olink +sysid +0 + +I + +90 +10 + + + + + + + + + + + + + + + + +; + + + + + +. +number + + + + + + + + + + I +index + +. +.!?: + +8 + + + + + 0 + background-color: #E0E0E0 + + + + + + +0 + + + + + +solid +0.5pt +a + + + +solid +0.5pt + + olinkdb.xml +target.db + +tex-math-equations.tex + + + +dl +8 +2 + + + + + + + + + +0 +, + + + writing-mode + + + + + + + + +: + + + + diff --git a/docbook-xsl-1.76.1/xhtml-1_1/pi.xsl b/docbook-xsl-1.76.1/xhtml-1_1/pi.xsl new file mode 100644 index 0000000..28f9efe --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml-1_1/pi.xsl @@ -0,0 +1,1203 @@ + + + + + + + +HTML Processing Instruction Reference + + $Id: pi.xsl 8394 2009-04-02 20:31:30Z mzjn $ + + + + Introduction + This is generated reference documentation for all + user-specifiable processing instructions (PIs) in the DocBook + XSL stylesheets for HTML output. + + You add these PIs at particular points in a document to + cause specific “exceptions” to formatting/output behavior. To + make global changes in formatting/output behavior across an + entire document, it’s better to do it by setting an + appropriate stylesheet parameter (if there is one). + + + + + + + + + Sets background color for an image + + Use the dbhtml background-color PI before or + after an image (graphic, inlinegraphic, + imagedata, or videodata element) as a + sibling to the element, to set a background color for the + image. + + + dbhtml background-color="color" + + + + background-color="color" + + An HTML color value + + + + + + Background color + + + + + + + + + + + + Sets background color on a CALS table row or table cell + + Use the dbhtml bgcolor PI as child of a CALS table row + or cell to set a background color for that table row or cell. + + + dbhtml bgcolor="color" + + + + bgcolor="color" + + An HTML color value + + + + + + Cell background color + + + + + + + + + + + + Specifies cellpadding in CALS table or qandaset output + + Use the dbhtml cellpadding PI as a child of a + CALS table or qandaset to specify the value + for the HTML cellpadding attribute in the + output HTML table. + + + dbhtml cellpadding="number" + + + + cellpadding="number" + + Specifies the cellpadding + + + + + + html.cellpadding + + + Cell spacing and cell padding, + Q and A formatting + + + + + + + + + + + + Specifies cellspacing in CALS table or qandaset output + + Use the dbhtml cellspacing PI as a child of a + CALS table or qandaset to specify the value + for the HTML cellspacing attribute in the + output HTML table. + + + dbhtml cellspacing="number" + + + + cellspacing="number" + + Specifies the cellspacing + + + + + + html.cellspacing + + + Cell spacing and cell padding, + Q and A formatting + + + + + + + + + + + + Set value of the class attribute for a CALS table row + + Use the dbhtml class PI as a child of a + row to specify a class + attribute and value in the HTML output for that row. + + + dbhtml class="name" + + + + class="name" + + Specifies the class name + + + + + + Table styles in HTML output + + + + + + + + + + + + Specifies a directory name in which to write files + + When chunking output, use the dbhtml dir PI + as a child of a chunk source to cause the output of that + chunk to be written to the specified directory; also, use it + as a child of a mediaobject to specify a + directory into which any long-description files for that + mediaobject will be written. + + + dbhtml dir="path" + + + + dir="path" + + Specifies the pathname for the directory + + + + + + base.dir + + + dbhtml dir processing instruction + + + + + + + + + + + + Specifies a filename for a chunk + + When chunking output, use the dbhtml filename + PI as a child of a chunk source to specify a filename for + the output file for that chunk. + + + dbhtml filename="filename" + + + + filename="path" + + Specifies the filename for the file + + + + + + use.id.as.filename + + + dbhtml filenames + + + + + + + + + + + + Specifies presentation style for a funcsynopsis + + Use the dbhtml funcsynopsis-style PI as a child of + a funcsynopsis or anywhere within a funcsynopsis + to control the presentation style for output of all + funcprototype instances within that funcsynopsis. + + + dbhtml funcsynopsis-style="kr"|"ansi" + + + + funcsynopsis-style="kr" + + Displays funcprototype output in K&R style + + + funcsynopsis-style="ansi" + + Displays funcprototype output in ANSI style + + + + + + funcsynopsis.style + + + + + + + + + + + + Specifies a path to the location of an image file + + Use the dbhtml img.src.path PI before or + after an image (graphic, + inlinegraphic, imagedata, or + videodata element) as a sibling to the element, + to specify a path to the location of the image; in HTML + output, the value specified for the + img.src.path attribute is prepended to the + filename. + + + dbhtml img.src.path="path" + + + + img.src.path="path" + + Specifies the pathname to prepend to the name of the image file + + + + + + img.src.path + + + Using fileref + + + + + + + + + + + + Specifies the label width for a qandaset + + Use the dbhtml label-width PI as a child of a + qandaset to specify the width of labels. + + + dbhtml label-width="width" + + + + label-width="width" + + Specifies the label width (including units) + + + + + + Q and A formatting + + + + + + + + + + + + Specifies interval for line numbers in verbatims + + Use the dbhtml linenumbering.everyNth PI as a child + of a “verbatim” element – programlisting, + screen, synopsis — to specify + the interval at which lines are numbered. + + + dbhtml linenumbering.everyNth="N" + + + + linenumbering.everyNth="N" + + Specifies numbering interval; a number is output + before every Nth line + + + + + + linenumbering.everyNth + + + Line numbering + + + + + + + + + + + + Specifies separator text for line numbers in verbatims + + Use the dbhtml linenumbering.separator PI as a child + of a “verbatim” element – programlisting, + screen, synopsis — to specify + the separator text output between the line numbers and content. + + + dbhtml linenumbering.separator="text" + + + + linenumbering.separator="text" + + Specifies the text (zero or more characters) + + + + + + linenumbering.separator + + + Line numbering + + + + + + + + + + + + Specifies width for line numbers in verbatims + + Use the dbhtml linenumbering.width PI as a child + of a “verbatim” element – programlisting, + screen, synopsis — to specify + the width set aside for line numbers. + + + dbhtml linenumbering.width="width" + + + + linenumbering.width="width" + + Specifies the width (inluding units) + + + + + + linenumbering.width + + + Line numbering + + + + + + + + + + + + Specifies presentation style for a variablelist or + segmentedlist + + Use the dbhtml list-presentation PI as a child of + a variablelist or segmentedlist to + control the presentation style for the list (to cause it, for + example, to be displayed as a table). + + + dbhtml list-presentation="list"|"table" + + + + list-presentation="list" + + Displays the list as a list + + + list-presentation="table" + + Displays the list as a table + + + + + + + + variablelist.as.table + + + segmentedlist.as.table + + + + + Variable list formatting in HTML + + + + + + + + + + + + Specifies the width of a variablelist or simplelist + + Use the dbhtml list-width PI as a child of a + variablelist or a simplelist presented + as a table, to specify the output width. + + + dbhtml list-width="width" + + + + list-width="width" + + Specifies the output width (including units) + + + + + + Variable list formatting in HTML + + + + + + + + + + + + Specifies the height for a CALS table row + + Use the dbhtml row-height PI as a child of a + row to specify the height of the row. + + + dbhtml row-height="height" + + + + row-height="height" + + Specifies the row height (including units) + + + + + + Row height + + + + + + + + + + + + (obsolete) Sets the starting number on an ordered list + + This PI is obsolete. The intent of + this PI was to provide a means for setting a specific starting + number for an ordered list. Instead of this PI, set a value + for the override attribute on the first + listitem in the list; that will have the same + effect as what this PI was intended for. + + + dbhtml start="character" + + + + start="character" + + Specifies the character to use as the starting + number; use 0-9, a-z, A-Z, or lowercase or uppercase + Roman numerals + + + + + + List starting number + + + + + + + + + + + + Do not chunk any descendants of this element. + + When generating chunked HTML output, adding this PI as the child of an element that contains elements that would normally be generated on separate pages if generating chunked output causes chunking to stop at this point. No descendants of the current element will be split into new HTML pages: +<section> +<title>Configuring pencil</title> +<?dbhtml stop-chunking?> + +... + +</section> + + + + dbhtml stop-chunking + + + Chunking into multiple HTML files + + + + + + Specifies summary for CALS table, variablelist, segmentedlist, or qandaset output + + Use the dbhtml table-summary PI as a child of + a CALS table, variablelist, + segmentedlist, or qandaset to specify + the text for the HTML summary attribute + in the output HTML table. + + + dbhtml table-summary="text" + + + + table-summary="text" + + Specifies the summary text (zero or more characters) + + + + + + Variable list formatting in HTML, + Table summary text + + + + + + + + + + + + Specifies the width for a CALS table + + Use the dbhtml table-width PI as a child of a + CALS table to specify the width of the table in + output. + + + dbhtml table-width="width" + + + + table-width="width" + + Specifies the table width (including units or as a percentage) + + + + + + default.table.width + + + Table width + + + + + + + + + + + + Sets character formatting for terms in a variablelist + + Use the dbhtml term-presentation PI as a child + of a variablelist to set character formatting for + the term output of the list. + + + dbhtml term-presentation="bold"|"italic"|"bold-italic" + + + + term-presentation="bold" + + Specifies that terms are displayed in bold + + + term-presentation="italic" + + Specifies that terms are displayed in italic + + + term-presentation="bold-italic" + + Specifies that terms are displayed in bold-italic + + + + + + Variable list formatting in HTML + + + + + + + + + + + + Specifies separator text among terms in a varlistentry + + Use the dbhtml term-separator PI as a child + of a variablelist to specify the separator text + among term instances. + + + dbhtml term-separator="text" + + + + term-separator="text" + + Specifies the text (zero or more characters) + + + + + + variablelist.term.separator + + + Variable list formatting in HTML + + + + + + + + + + + + Specifies the term width for a variablelist + + Use the dbhtml term-width PI as a child of a + variablelist to specify the width for + term output. + + + dbhtml term-width="width" + + + + term-width="width" + + Specifies the term width (including units) + + + + + + Variable list formatting in HTML + + + + + + + + + + + + Specifies whether a TOC should be generated for a qandaset + + Use the dbhtml toc PI as a child of a + qandaset to specify whether a table of contents + (TOC) is generated for the qandaset. + + + dbhtml toc="0"|"1" + + + + toc="0" + + If zero, no TOC is generated + + + toc="1" + + If 1 (or any non-zero value), + a TOC is generated + + + + + + Q and A list of questions, + Q and A formatting + + + + + + + + + + + + Generates a hyperlinked list of commands + + Use the dbcmdlist PI as the child of any + element (for example, refsynopsisdiv) containing multiple + cmdsynopsis instances; a hyperlinked navigational + “command list” will be generated at the top of output for that + element, enabling users to quickly jump + to each command synopsis. + + + dbcmdlist + + + [No parameters] + + + + + + No cmdsynopsis elements matched dbcmdlist PI, perhaps it's nested too deep? + + +
        + + + +
        +
        + + + Generates a hyperlinked list of functions + + Use the dbfunclist PI as the child of any + element (for example, refsynopsisdiv) containing multiple + funcsynopsis instances; a hyperlinked + navigational “function list” will be generated at the top of + output for that element, enabling users to quickly + jump to to each function synopsis. + + + dbfunclist + + + [No parameters] + + + + + + No funcsynopsis elements matched dbfunclist PI, perhaps it's nested too deep? + + +
        + + + +
        +
        + + + Copies an external well-formed HTML/XML file into current doc + + Use the dbhtml-include href PI anywhere in a + document to cause the contents of the file referenced by the + href pseudo-attribute to be copied/inserted “as + is” into your HTML output at the point in document order + where the PI occurs in the source. + + The referenced file may contain plain text (as long as + it is “wrapped” in an html element — see the + note below) or markup in any arbitrary vocabulary, + including HTML — but it must conform to XML + well-formedness constraints (because the feature in XSLT + 1.0 for opening external files, the + document() function, can only handle + files that meet XML well-formedness constraints). + Among other things, XML well-formedness constraints + require a document to have a single root + element. So if the content you want to + include is plain text or is markup that does + not have a single root element, + wrap the content in an + html element. The stylesheets will + strip out that surrounding html “wrapper” when + they find it, leaving just the content you want to + insert. + + + + dbhtml-include href="URI" + + + + href="URI" + + Specifies the URI for the file to include; the URI + can be, for example, a remote http: + URI, or a local filesystem file: + URI + + + + + + textinsert.extension + + + Inserting external HTML code, + External code files + + + + + + + href + + + + + + + + + + + + + + + + + + + + ERROR: dbhtml-include processing instruction + href has no content. + + + + + + + ERROR: dbhtml-include processing instruction has + missing or empty href value. + + + + + + + + Sets topic name and topic id for context-sensitive HTML Help + + Use the dbhh PI as a child of components + that should be used as targets for context-sensitive help requests. + + + dbhh topicname="name" topicid="id" + + + + topicname="name" + + Specifies a unique string constant that identifies a help topic + + + topicid="id" + + Specifies a unique integer value for the topicname string + + + + + + Context-sensitive help + + + + + + + + + + filename + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        + + + # + + + + + + + + + + + + + + + + + + +
        + + + + + +
        +
        +
        + + + + + + + + + + + + + + + +
        + + + # + + + + + + + + + + + + + + + + + + +
        + + + + + +
        +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + / + + + + / + + + + +
        diff --git a/docbook-xsl-1.76.1/xhtml-1_1/profile-chunk-code.xsl b/docbook-xsl-1.76.1/xhtml-1_1/profile-chunk-code.xsl new file mode 100644 index 0000000..05c10c6 --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml-1_1/profile-chunk-code.xsl @@ -0,0 +1,617 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + bk + + + + + + + + + + + + + + + ar + + + + + + + + + + + + + + + pr + + + + + + + + + + + + + + + ch + + + + + + + + + + + + + + + ap + + + + + + + + + + + + + + + + + + + pt + + + + + + + + + + + + + + + + + + + rn + + + + + + + + + + + + + + + + + + + + + + + + re + + + + + + + + + + + + + + + + + + + co + + + + + + + + + + + s + + + + + + + + + + + + + + + + + + + bi + + + + + + + + + + + + + + + + + + + go + + + + + + + + + + + + + + + + + + + ix + + + + + + + + si + + + + + + + + chunk-filename-error- + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Note: namesp. cut : stripped namespace before processingNote: namesp. cut : processing stripped document + + + + + + + + + + + + + + + + + ID ' + + ' not found in document. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/xhtml-1_1/profile-chunk.xsl b/docbook-xsl-1.76.1/xhtml-1_1/profile-chunk.xsl new file mode 100644 index 0000000..def7fff --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml-1_1/profile-chunk.xsl @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/xhtml-1_1/profile-docbook.xsl b/docbook-xsl-1.76.1/xhtml-1_1/profile-docbook.xsl new file mode 100644 index 0000000..7ac0219 --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml-1_1/profile-docbook.xsl @@ -0,0 +1,408 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Element + + in namespace ' + + ' encountered + + in + + + , but no template matches. + + + + < + + > + + </ + + > + + + + + + + + + + + + + + + + + + + <xsl:copy-of select="$title"/> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Note: namesp. cut : stripped namespace before processingNote: namesp. cut : processing stripped document + + + + + + + + + + + + + + + + + + ID ' + + ' not found in document. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + + + diff --git a/docbook-xsl-1.76.1/xhtml-1_1/profile-onechunk.xsl b/docbook-xsl-1.76.1/xhtml-1_1/profile-onechunk.xsl new file mode 100644 index 0000000..b84b3e9 --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml-1_1/profile-onechunk.xsl @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + +1 + + + + # + + + + + + diff --git a/docbook-xsl-1.76.1/xhtml-1_1/qandaset.xsl b/docbook-xsl-1.76.1/xhtml-1_1/qandaset.xsl new file mode 100644 index 0000000..4a61c81 --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml-1_1/qandaset.xsl @@ -0,0 +1,420 @@ + + + + + + + + + + + + + + + + + + + + + + +
        + + + + + + + + + + + + + +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

        + +

        +
        + + + + + + + + + + + + +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

        + +

        +
        + + + + + + + + + + +
        + + + + + + + + + + + + + + +
        + + +
        +
        + + +
        +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        + + + + + + + + + + + + + +
        + + + + +
        + + + +
        + +
        +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1% + + + + + + + + +
        +
        + + + + + + + + + +
        diff --git a/docbook-xsl-1.76.1/xhtml-1_1/refentry.xsl b/docbook-xsl-1.76.1/xhtml-1_1/refentry.xsl new file mode 100644 index 0000000..dc2e57d --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml-1_1/refentry.xsl @@ -0,0 +1,299 @@ + + + + + + + + + + + + +
        + + + + + + + + + + + + + + + + + + + + + +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

        + +

        +
        + + + + +
        + + + + +
        +
        +
        +
        + + + + + + +
        +
        + + + + + + + + + + + + + + ( + + ) + + + + + + + + + + + +
        + + + + + + + + + + +

        + + + +

        +
        + +

        + + + + + + + + +

        +
        +
        + +

        + +

        +
        +
        + + + + + + , + + + + + + + + + em-dash + + + + + + + + + + + + + + + + : + + + + + + + +
        + + + + +

        + + + + + + + + + + +

        + +
        +
        + + + + + + + + + + + +
        + + + + + + + + + +
        +
        + + + + + + 0 + 1 + + + + 6 + + + + + + + + + + + + +

        + +

        +
        + + + +

        + +

        +
        + + + +

        + +

        +
        + + + + + + + + + +
        diff --git a/docbook-xsl-1.76.1/xhtml-1_1/sections.xsl b/docbook-xsl-1.76.1/xhtml-1_1/sections.xsl new file mode 100644 index 0000000..aec647d --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml-1_1/sections.xsl @@ -0,0 +1,541 @@ + + + + + + + + + + + + + + +
        + + + + + + + + + + + + + + + + + + + +
        +
        + + + + + + + + 1 + 2 + 3 + 4 + 5 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        + + + + + + + + +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        + + + + + + + + +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        + + + + + + + + +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        + + + + + + + + +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        + + + + + + + + +
        + + + + + + +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 6 + + + + + + + + + + clear: both + + + + + + + + + + + + + + + + + + + + + + + 1 + + + + + + + + + + + + 1 + + + + + + + 2 + 3 + 4 + 5 + 6 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        diff --git a/docbook-xsl-1.76.1/xhtml-1_1/synop.xsl b/docbook-xsl-1.76.1/xhtml-1_1/synop.xsl new file mode 100644 index 0000000..8506707 --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml-1_1/synop.xsl @@ -0,0 +1,1513 @@ + + + + + + + + + + + + + + +
        + +

        + + + + + + + + + + + + +

        +
        +
        + + +
        + + +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        + + + + + + + + + + + ( + + ) + +   + + + + + + + + + + + + + + + + + + + ( + + ) + + + + + + + + + + + + + + + + + + + + + + +
        +    
        +    
        +  
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

        + + +
        + +
        +

        +
        + + + + + + ( + + + + + + + fsfunc + + + + + + + + + ) + ; + + + + ... + ) + ; + + + + + + + , + + + ) + ; + + + + + + + + + + + + + + + + + + + + +
        + + + + ; +
        + + + + + + + + + + + + + + + + + + ( + + ) + + + + + + + + + + + + + + + + + +
        + +
         
        + +
        + +
        +
        +
         
        +
        + + + + + + ( + + + + + + + fsfunc + + + + + + + + + + ) + ; + +   + + + + + ... + ) + ; + +   + + + + + + + + , + + + ) + ; + + + +   + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +   + + + + + + + + + + + + + + + + + + + + + + + + + + + + +   + + + + + + ; + + + + + + + + + + + + + + + + + + + + + + + + ( + + ) + ; + + + + + + +

        + +

        +
        + + + + + + ( + + + + + + + fsfunc + + + + + + + + + void) + ; + + + + ... + ) + ; + + + + + + + , + + + ) + ; + + + + + + + + + + + + + + + + + + + + + ( + + ) + + + + + + + + + + + + + + + + + +
        + +
         
        +
         
        +
        + + + + + + ( + + + + + + + fsfunc + + + + + + + + + + void) + ; + +   + + + + + ... + ) + ; + +   + + + + + + + + , + + + ) + ; + + + + + + + + + + + + + + + + + + + + + + ( + + ) + + + + +java + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Unrecognized language on + + : + + + + + + + + + + + +
        +
        +
        + + + + + +
        +    
        +    
        +    
        +       extends
        +      
        +      
        +        
        +      +
        +
        + + implements + + +
        +      +
        +
        + + throws + + +  { +
        + + } +
        +
        + + + + + + + + + , + + + + + + + + + + + + + + + + +   + + + + + + + , + + + + + + + + + + , + + + + + + + + + + , + + + + + + + + + + + +    + + + ; + + + + + + + + +   + + + + + + + +   + + + + + + + + + + + + + + + void  + + + + + + + + + + + + 0 + + , +
        + + +   + + + +
        + + + + +
        + + + + + + + + + + + + + + +    + + + + + + + + + + + + + + + ( + + + + ) + +
        +     throws  + +
        + + + + + ; +
        + +
        + + + + +
        +    
        +    
        +    
        +      : 
        +      
        +      
        +        
        +      +
        +
        + + implements + + +
        +      +
        +
        + + throws + + +  { +
        + + } +
        +
        + + + + + + + + , + + + + + + + + + + + + +   + + + + + + + , + + + + + + + + + + , + + + + + + + + + + , + + + + + + + + + + + +    + + + ; + + + + + + + + +   + + + + + + + +   + + + + + + + + + + + + + + + void  + + + + + + + + + + + + + , + + + + + + + + + + + + + + + + + + + + + + +    + + + + + + + + + + ( + + ) + +
        +     throws  + +
        + + + + + ; +
        + +
        + + + + +
        +    
        +    interface 
        +    
        +    
        +      : 
        +      
        +      
        +        
        +      +
        +
        + + implements + + +
        +      +
        +
        + + throws + + +  { +
        + + } +
        +
        + + + + + + + + , + + + + + + + + + + + + +   + + + + + + + , + + + + + + + + + + , + + + + + + + + + + , + + + + + + + + + + + +    + + + ; + + + + + + + + +   + + + + + + + +   + + + + + + + + + + + + + + + void  + + + + + + + + + + + + + , + + + + + + + + + + + + + + + + + + + + + +    + + + + + + + + + + ( + + ) + +
        +     raises( + + ) +
        + + + + + ; +
        + +
        + + + + +
        +    
        +    package 
        +    
        +    ;
        +    
        + + + @ISA = ( + + ); +
        +
        + + +
        +
        + + + + + + + + , + + + + + + + + + + + + +   + + + + + + + , + + + + + + + + + + , + + + + + + + + + + , + + + + + + + + + + + +    + + + ; + + + + + + + + +   + + + + + + + +   + + + + + + + + + + + + + + + void  + + + + + + + + + + + + + , + + + + + + + + + + + + + + + + + + + + + + sub + + + { ... }; + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        diff --git a/docbook-xsl-1.76.1/xhtml-1_1/table.xsl b/docbook-xsl-1.76.1/xhtml-1_1/table.xsl new file mode 100644 index 0000000..3146c09 --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml-1_1/table.xsl @@ -0,0 +1,1168 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + +   + + + + + + + + + + + + + + + + + + + border- + + : + + + + + + ; + + + + + border- + + -width: + + ; + + + + border- + + -style: + + ; + + + + border- + + -color: + + ; + + + + + + + + + + + Error: CALS tables must specify the number of columns. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 100% + + + + + + + + border-collapse: collapse; + + + + + + + + + + + + + + + + + + + + + + + + + + + + + border-collapse: collapse; + + + + + + + + + + + + + + + + + border-collapse: collapse; + + + + + + + + + + + border-collapse: collapse; + + + + + + + + + + + border-collapse: collapse; + + + + + + + + + + + + + + + + + border: none; + + + + + border-collapse: collapse; + + + + + + + 0 + + + 1 + + + + + + + + + + + + + + + + + + + + + + + + 100% + + + + + + + + + + + + + + + + + + + + + + + + No convertLength function available. + + + + + + + + + + + + + + + + + + + + + + + + + + No adjustColumnWidths function available. + + + + + + + + + + + + + + + + + + + + +
        + +
        +
        + + + + + + + + + + + + + + + + + + + + + + text-align: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text-align: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Warning: overlapped row contains content! + + + This row intentionally left blank + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + background-color: + + + + + + + + + + + + + + + + + + + + + + text-align: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + + + + + + + + th + th + + th + + td + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + background-color: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text-align: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +   + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + + + + + + + + + + + + + + : + + + + + + + + 0: + + + + + + + + + + + + + + + 0 + + : + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + + 1 + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text-align: + + + + + + text-align: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        diff --git a/docbook-xsl-1.76.1/xhtml-1_1/task.xsl b/docbook-xsl-1.76.1/xhtml-1_1/task.xsl new file mode 100644 index 0000000..0a380d2 --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml-1_1/task.xsl @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + before + + + + + + + + +
        + + + + + + + + + + + + +
        +
        + + + + + + + + + + + + + + + + + + + + + + + +
        diff --git a/docbook-xsl-1.76.1/xhtml-1_1/titlepage.templates.xsl b/docbook-xsl-1.76.1/xhtml-1_1/titlepage.templates.xsl new file mode 100644 index 0000000..1f72e23 --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml-1_1/titlepage.templates.xsl @@ -0,0 +1,3817 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        + + + + + + + + +
        + + + + + + + + + + 1 + + + +
        +
        + + + + + + + + + + 1 + + + +
        +
        + +
        +
        + + + + + + + + + + + + + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        + + + + + + + + +
        + + + + + + + + + + 1 + + + +
        +
        + + + + + + + + + + 1 + + + +
        +
        + +
        +
        + + + + + + + + + + + + + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        + + + + + + + + +
        + + + + + + + + + + 1 + + + +
        +
        + + + + + + + + + + 1 + + + +
        +
        + +
        +
        + + + + + + + + + + + + + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + + +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        + + + + + + + + + + + + + + +
        + + + + + + + + + + 1 + + + +
        +
        + + + + + + + + + + 1 + + + +
        +
        + +
        +
        + + + + + + + + + + + + + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        + + + + + + + + + + 1 + + + +
        +
        + + + + + + + + + + 1 + + + +
        +
        + +
        +
        + + + + + + + + + + + + + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        + + + + + + + + +
        + + + + + + + + + + 1 + + + +
        +
        + + + + + + + + + + 1 + + + +
        +
        + +
        +
        + + + + + + + + + + + + + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + + + + + + + + + + + + + + + + +
        + + + + + + + + + + 1 + + + +
        +
        + + + + + + + + + + 1 + + + +
        +
        + +
        +
        + + + + + + + + + + + + + + +
        + + +
        + + + + + + + + + + + + + + + +
        + + + + + + + + + + + + + + +
        + + + + + + + + + + 1 + + + +
        +
        + + + + + + + + + + 1 + + + +
        +
        + +
        +
        + + + + + + + + + + + + + + +
        + +
        +
        + + +
        + + +
        + + + + + + + + + + + + + + + +
        + + + + + + + + + + + + + + +
        + + + + + + + + + + 1 + + + +
        +
        + + + + + + + + + + 1 + + + +
        +
        + +
        +
        + + + + + + + + + + + + + + +
        + +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        + + + + + + + + + + 1 + + + +
        +
        + + + + + + + + + + 1 + + + +
        +
        + +
        +
        + + + + + + + + + + + + + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        + + + + + + + + + + 1 + + + +
        +
        + + + + + + + + + + 1 + + + +
        +
        + +
        +
        + + + + + + + + + + + + + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        + + + + + + + + + + 1 + + + +
        +
        + + + + + + + + + + 1 + + + +
        +
        + +
        +
        + + + + + + + + + + + + + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        + + + + + + + + +
        + + + + + + + + + + 1 + + + +
        +
        + + + + + + + + + + 1 + + + +
        +
        + +
        +
        + + + + + + + + + + + + + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        + + + + + + + + +
        + + + + + + + + + + 1 + + + +
        +
        + + + + + + + + + + 1 + + + +
        +
        + +
        +
        + + + + + + + + + + + + + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        + + + + + + + + +
        + + + + + + + + + + 1 + + + +
        +
        + + + + + + + + + + 1 + + + +
        +
        + +
        +
        + + + + + + + + + + + + + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        + + + + + + + + +
        + + + + + + + + + + 1 + + + +
        +
        + + + + + + + + + + 1 + + + +
        +
        + +
        +
        + + + + + + + + + + + + + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        + + + + + + + + +
        + + + + + + + + + + 1 + + + +
        +
        + + + + + + + + + + 1 + + + +
        +
        + +
        +
        + + + + + + + + + + + + + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        + + + + + + + + +
        + + + + + + + + + + 1 + + + +
        +
        + + + + + + + + + + 1 + + + +
        +
        + +
        +
        + + + + + + + + + + + + + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        + + + + + + + + +
        + + + + + + + + + + 1 + + + +
        +
        + + + + + + + + + + 1 + + + +
        +
        + +
        +
        + + + + + + + + + + + + + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + + +
        + + + + + + + + + + + + + + + +
        + + + + + + + + + + + + + + +
        + + + + + + + + + + 1 + + + +
        +
        + + + + + + + + + + 1 + + + +
        +
        + +
        +
        + + + + + + + + + + + + + + +
        + +
        +
        + + +
        + + +
        + + + + + + + + + + + + + + + +
        + + + + + + + + + + + + + + +
        + + + + + + + + + + 1 + + + +
        +
        + + + + + + + + + + 1 + + + +
        +
        + +
        +
        + + + + + + + + + + + + + + +
        + +
        +
        + + +
        + + +
        + + + + + + + + + + + + + + + +
        + + + + + + + + + + + + + + +
        + + + + + + + + + + 1 + + + +
        +
        + + + + + + + + + + 1 + + + +
        +
        + +
        +
        + + + + + + + + + + + + + + +
        + +
        +
        + + +
        + + +
        + + + + + + + + + + + + + + + +
        + + + + + + + + + + + + + + +
        + + + + + + + + + + 1 + + + +
        +
        + + + + + + + + + + 1 + + + +
        +
        + +
        +
        + + + + + + + + + + + + + + +
        + +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        + + + + + + + + + + 1 + + + +
        +
        + + + + + + + + + + 1 + + + +
        +
        + +
        +
        + + + + + + + + + + + + + + +
        + + + +
        +
        + + +
        + +
        +
        + +
        diff --git a/docbook-xsl-1.76.1/xhtml-1_1/titlepage.xsl b/docbook-xsl-1.76.1/xhtml-1_1/titlepage.xsl new file mode 100644 index 0000000..c3f8217 --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml-1_1/titlepage.xsl @@ -0,0 +1,1030 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        +
        + + +
        + + + + + + + + + + + +
        +
        + + + + + + + + + + + + + +
        + + + + + + + + +
        +
        + + +
        + + + + + + + + +
        +
        +
        +
        + + +
        + + +
        +
        + + + + + +
        +
        +
        + + + + + + +
        + + +

        +
        +

        + + + + + + + + + +

        + + + + + + + + + + + + + + + +
        +
        + + +
        + + +
        +
        + + +
        + + +

        Authors

        +
        + + + +
        +
        + + + + + +
        +
        +
        + + + + + + + + + + + + + +
        +
        +
        + + + + + + + + + +
        + + +
        +
        + + + + + +
        +
        +
        + + + + + +
        +
        +
        + + + + + +
        +
        +
        + + + + + + + + + +
        +
        +
        + + + + + +
        +
        +
        + + + + + + + +   + + +
        + +

        +
        +
        +
        +
        + + + + +

        Copyright

        +
        + +

        + + + + + + + copyright + + + + + + + + + +

        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + , + + + + +

        + + +

        +
        + + + + + +
        +
        +
        + + + + + +
        +
        +
        + + + + + +
        +
        +
        + + +

        + + + + + + +

        +
        + + + + + + + + + + +
        +
        +
        + + + + + + + + + + +
        +
        +
        + + + + + +
        +
        +
        + + + + + +
        +
        +
        + + + + + +
        +
        +
        + + + + + + + + +
        +
        +
        + + + + + +
        +
        +
        + + + + + +
        +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        + + +
        + + + +
        +
        +
        + +
        + + + +
        +
        +
        +
        + + +

        +
        + + + + + +
        +
        +
        + + + + + + + + + + + +
        +
        +
        + + + + + +
        +
        +
        + + + + + + + + + + + + + : + + + + + + + + + + + + + + + + + + + + + + + + + + , + + + + + + + +
        +
        +
        + + + + + +
        +
        +
        + + +
        + + +
        +
        + + + + + +
        +
        +
        + + + + + +
        +
        +
        + + + + + + + + + + + + + + + + + + + + + + + +
        +
        +
        + + + + + +
        +
        +
        + + + + + + + + + + + + + + 3 + 2 + + + + + + + + RevHistory + + + + +
        + + + + + + + + +
        + + + + + +
        +
        +
        + + + + + + + + + + + + + + + + + + +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + , + + + + + +   + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        +
        + + + + + +
        +
        +
        + + + + + +

        + + +

        +
        + + + + + +
        +
        +
        + + + + + + + + + + + + + + + + + + +

        + + + + + + + + + + + + + + +

        +
        + + + + + + + + + +
        +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        diff --git a/docbook-xsl-1.76.1/xhtml-1_1/toc.xsl b/docbook-xsl-1.76.1/xhtml-1_1/toc.xsl new file mode 100644 index 0000000..92b7b14 --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml-1_1/toc.xsl @@ -0,0 +1,330 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        + + +
        + + +
        +
        + +
        + + + + + + + + + +
        +
        +
        + + + + + + + + + + + + + + +
        + + +
        + + +
        +
        + +
        + + + + + + + + + +
        +
        +
        + + + + + + + + +
        + + + + + +
        +
        + + + + + + +
        +
        +
        + + + + + +
        + + +
        + +
        + +
      • + + + +
      • +
        +
        +
        + + + + +
        + + +
        +
        + +
      • + + +
      • +
        +
        +
        + + + + + + + + + + + + + + +
        + + + + + + + + + + + + + + + +
        + + +
        +
        + + +
        + + +
        +
        + + + + + + + + + + + + +
        + + +
        +
        + + + +
        +
        + + + + +
        + + + + +
        + + +
        + +
        + + + +
        +
        + + + + +
        + + +
        + +
        + + + +
        +
        + + + + + Warning: don't know what to generate for + lot that has no children. + + + + +
        + + +
        +
        + + +
        + + +
        +
        + + + + + diff --git a/docbook-xsl-1.76.1/xhtml-1_1/verbatim.xsl b/docbook-xsl-1.76.1/xhtml-1_1/verbatim.xsl new file mode 100644 index 0000000..c0bc69d --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml-1_1/verbatim.xsl @@ -0,0 +1,388 @@ + + + + + + + + + + + + + + + + + + + + + + + + + div + pre + + + + + + The shade.verbatim parameter is deprecated. + Use CSS instead, + + + for example: pre. + + { background-color: #E0E0E0; } + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The shade.verbatim parameter is deprecated. + Use CSS instead, + + + for example: pre. + + { background-color: #E0E0E0; } + + + + + + + +
        +            
        +            
        +              
        +            
        +          
        +
        + +
        + +

        + + + +

        +
        +
        +
        +
        + + + +
        +            
        +            
        +          
        +
        + +
        + +

        + + + +

        +
        +
        +
        +
        +
        +
        + + + + + + + + + + +
        + +

        + + + +

        +
        +
        + + +
        + +

        + + + +

        +
        +
        +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Unexpected verbatim environment: + + + + + + + + + + 1 + + + + + + + + + + + + + No numberLines function available. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        diff --git a/docbook-xsl-1.76.1/xhtml-1_1/xref.xsl b/docbook-xsl-1.76.1/xhtml-1_1/xref.xsl new file mode 100644 index 0000000..74c6f20 --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml-1_1/xref.xsl @@ -0,0 +1,1316 @@ + + + + + + + + +http://docbook.org/xlink/role/olink + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Endterm points to nonexistent ID: + + + ??? + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR: xref linking to + + has no generated link text. + + ??? + + + + + + + + + + + + + + + + + + + + + + + + + + + + + XRef to nonexistent id: + + + ??? + + + + + + + + + + + + + + + + Endterm points to nonexistent ID: + + + + + ??? + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + suppress anchor + + + + + + + + + + + removing + + + + + + + + + + + + + + + + + removing + + + + + + + + + + + + + + + + + + + + + + Don't know what gentext to create for xref to: " + + ", (" + + ") + + + ??? + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + [ + + + + ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No bibliography entry: + + found in + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + [ + + + + + + + + + ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Endterm points to nonexistent ID: + + + ??? + + + + + + + + + + + + + Link element has no content and no Endterm. + Nothing to show in the link to + + + ??? + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Olink debug: root element of target.database ' + + ' is ' + + '. + + + + + + + + + + + + + + + Error: unresolved olink: + targetdoc/targetptr = ' + + / + + '. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Warning: olink linkmode pointer is wrong. + + + + # + + + + + + + + + + + + + ? + + + + + & + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/xhtml/admon.xsl b/docbook-xsl-1.76.1/xhtml/admon.xsl new file mode 100644 index 0000000..6a0090a --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml/admon.xsl @@ -0,0 +1,135 @@ + + + + + + + + + + 25 + + + + + + + + + + + + + + + + + + note + warning + caution + tip + important + note + + + + + + + + Note + Warning + Caution + Tip + Important + Note + + + + + + + + + +
        + + + + + + + + + + + + : + + + + + + + + + + +
        + + + + [{$alt}] + + + + + + + + + +
        + +
        +
        +
        + + +
        + + + + + + + + + + +

        + + +

        +
        + + +
        +
        + + + + + + + +
        diff --git a/docbook-xsl-1.76.1/xhtml/annotations.xsl b/docbook-xsl-1.76.1/xhtml/annotations.xsl new file mode 100644 index 0000000..3e137e8 --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml/annotations.xsl @@ -0,0 +1,158 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Note + + + namesp. cut + + + stripped namespace before processing + + + + + + + + Note + + + namesp. cut + + + processing stripped document + + + + + + + + Unable to strip the namespace from DB5 document, + cannot proceed. + + + + + + + + + ID ' + + ' not found in document. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + + + diff --git a/docbook-xsl-1.76.1/xhtml/ebnf.xsl b/docbook-xsl-1.76.1/xhtml/ebnf.xsl new file mode 100644 index 0000000..d228cfb --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml/ebnf.xsl @@ -0,0 +1,328 @@ + + + + + + + + + + +$Id: ebnf.xsl 8178 2008-12-15 22:26:38Z bobstayton $ + +Walsh +Norman +19992000 +Norman Walsh + + +HTML EBNF Reference + + +
        Introduction + +This is technical reference documentation for the DocBook XSL +Stylesheets; it documents (some of) the parameters, templates, and +other elements of the stylesheets. + +This reference describes the templates and parameters relevant +to formatting EBNF markup. + +This is not intended to be user documentation. +It is provided for developers writing customization layers for the +stylesheets, and for anyone who's interested in how it +works. + +Although I am trying to be thorough, this documentation is known +to be incomplete. Don't forget to read the source, too :-) +
        +
        +
        + + + + + + + + + + + + 1 + + + + + + EBNF + + for + + + + + + + + + + + + +
        + + +
        + + + + + + + + + + EBNF productions + +
        +
        +
        + + + + + + + + + + [ + + ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +   + + + + + + + + + + + + + Error: no ID for productionrecap linkend: + + . + + + + + + Warning: multiple "IDs" for productionrecap linkend: + + . + + + + + + + + + + + + + + + + | +
        +
        +
        + + + + + + + + + + + + + + + production + + + + + + + + + Non-terminals with no content must point to + production elements in the current document. + + + Invalid xpointer for empty nt: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ??? + + + + + + + + + + + + + /*  + +  */ +
        +
        + + + + + + + + + constraintdef + + + + + + + + + + + + + + + + : + + + + + + + : + + + + + + + + + +  ] + +
        +
        +
        + + +
        + + + +
        +
        + + +

        +
        + + + +
        diff --git a/docbook-xsl-1.76.1/xhtml/footnote.xsl b/docbook-xsl-1.76.1/xhtml/footnote.xsl new file mode 100644 index 0000000..6d81fa9 --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml/footnote.xsl @@ -0,0 +1,305 @@ + + + + + + + + + + + + + #ftn. + + + + + + + [ + + + + + ] + + + + + [ + + + + + ] + + + + + + + + + + + +ERROR: A footnoteref element has a linkend that points to an element that is not a footnote. +Typically this happens when an id attribute is accidentally applied to the child of a footnote element. +target element: +linkend/id: + + + + + + + + + + + + #ftn. + + + + + [ + + + + + ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ftn. + + + + + + # + + + + + + + + + + + + + + [ + + + + + ] + + + + + + + + + + + + ftn. + + + + + + # + + + + + + + [ + + + + + ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        +
        + +
        +
        + + +
        +
        +

        The following annotations are from this essay. You are seeing + them here because your browser doesn’t support the user-interface + techniques used to make them appear as ‘popups’ on modern browsers.

        +
        + + +
        +
        +
        + + + + + + + + +
        + + +
        +
        + + +
        + + + +
        +
        + + + + Warning: footnote number may not be generated + correctly; + + unexpected as first child of footnote. + +
        + + +
        +
        +
        +
        + + + + + + + + +
        diff --git a/docbook-xsl-1.76.1/xhtml/formal.xsl b/docbook-xsl-1.76.1/xhtml/formal.xsl new file mode 100644 index 0000000..57c98f3 --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml/formal.xsl @@ -0,0 +1,411 @@ + + + + + + + +1 + + + + + + + + + + +
        + + + + + + + +
        + +
        + + + + + +

        + + +

        +

        + + + + + + + +
        +
        + +
        +
        +
        + + + + + + + + + -float + + + + + + + + + +
        + + + + + + + + + + + + + +
        + +
        +
        + +

        + + + +

        +
        +
        +
        + + + + + +
        +

        + + + + + + + + +

        +

        +
        + + + + + + + + + -float + + + + + + + + + +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + before + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Broken table: tr descendent of CALS Table. + + + + + + + + + + before + + + + + + + + + + + + + + + + + + + + + + + + + Broken table: row descendent of HTML table. + + + + + + + + + + + + + + + + + + + + + + + + before + + + + + + + + + + + + + + + + + + + + + before + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        + + + float: + + ; + + + +
        +
        + +
        diff --git a/docbook-xsl-1.76.1/xhtml/glossary.xsl b/docbook-xsl-1.76.1/xhtml/glossary.xsl new file mode 100644 index 0000000..d22b6c5 --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml/glossary.xsl @@ -0,0 +1,564 @@ + + + + + + + + + + + + + + + + + + normalize.sort.input + + + + + + normalize.sort.output + + + + + +
        + + + + + + + + + + + + + + + + + + + + + + + + + + +
        + + + + + + + + + + +
        +
        + + + +
        + + + + +
        +
        + + + + + + + + + + + + + + + + + + normalize.sort.input + + + + + + normalize.sort.output + + + +
        + + + + + +
        + + + + + + + + + + +
        +
        +
        + + + + + + + + + + + + normalize.sort.input + + + + + + normalize.sort.output + + + + + +
        + + + +
        + + + + + + + + + + +
        +
        +
        + + +

        + + +

        +
        + + + + + + + + +
        + + + + 0 + 1 + + + + + + + + ( + + ) + + + + + +
        +
        + +
        + + + + 0 + 1 + + + + + + + + ( + + ) + +
        +
        + +
        + + + + 0 + 1 + + + + + +
        +
        +
        + + +
        + + + + , + + + + + , + + + + + , + + + + + + + + + + + +
        +

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Warning: glosssee @otherterm reference not found: + + + + + + + + + + + + + + +

        +
        +
        + + +
        + + +

        + + + + + + + + + + + + + +

        +
        +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Warning: glossseealso @otherterm reference not found: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + normalize.sort.input + + + + + + normalize.sort.output + + + + + + + + + + + Warning: processing automatic glossary + without a glossary.collection file. + + + + + + Warning: processing automatic glossary but unable to + open glossary.collection file ' + + ' + + + +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        + + + + + + + + + + + + + + + + + + + +
        +
        +
        + + + + +
        +
        + + + + + + + + + + + + + + + + + normalize.sort.input + + + + + + normalize.sort.output + + + + +
        + + + +
        + + + + ! + + + + + + + + + + + + + + + +
        +
        +
        + + + +
        diff --git a/docbook-xsl-1.76.1/xhtml/graphics.xsl b/docbook-xsl-1.76.1/xhtml/graphics.xsl new file mode 100644 index 0000000..d1c04fb --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml/graphics.xsl @@ -0,0 +1,1436 @@ + + + + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + +
        + + +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + 0 + 0 + + 1 + 0 + + + + + + 1.0 + 1.0 + + + + 1.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + px + + + + + + + + + + + px + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + px + + + + + + + + + + + px + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + middle + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Warning: imagemaps not supported + on scaled images + + + + 0 + + + + + + + + + + + + + + + + + + + + middle + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + height: + + px + + + + + + + + + + + +
        + + + + + background-color: + + + + + + + + + + + + + + + + + + + + + +
        +
        + + + +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + calspair + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + , + + , + + , + + + + + + + + + + + + Warning: only calspair or + otherunits='imagemap' supported + in imageobjectco + + + + + + +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + middle + + + + + + + + + + + + + + + + + +
        + + + + + + + +
        +
        +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No insertfile extension available. + + + + + + + Cannot insert + . Check use.extensions and textinsert.extension parameters. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        + + + + + + + + + + +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No insertfile extension available. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No insertfile extension available. + + + + + + + Cannot insert + . Check use.extensions and textinsert.extension parameters. + + + + + + + + +
        + + + + + +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        diff --git a/docbook-xsl-1.76.1/xhtml/highlight.xsl b/docbook-xsl-1.76.1/xhtml/highlight.xsl new file mode 100644 index 0000000..222a055 --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml/highlight.xsl @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/xhtml/html-rtf.xsl b/docbook-xsl-1.76.1/xhtml/html-rtf.xsl new file mode 100644 index 0000000..e079a73 --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml/html-rtf.xsl @@ -0,0 +1,321 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        + +
        + + + + + + + + + + +
        +
        +
        +
        + + + + + + + + + + + + + + +
        + +
        + + + + + + + + + + +
        +
        +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        diff --git a/docbook-xsl-1.76.1/xhtml/html.xsl b/docbook-xsl-1.76.1/xhtml/html.xsl new file mode 100644 index 0000000..154a645 --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml/html.xsl @@ -0,0 +1,598 @@ + + + + + + + + + + + + left + right + left + + + + + + right + left + right + + + + + + ltr + rtl + ltr + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + # + + + + + + + + + # + + + + + + + + + + + + + + + + + + + bullet + + + + + + + + + bullet + + + © + + + ® + (SM) +   + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ID recommended on + + + : + + + + ... + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR: no root element for CSS source file' + + '. + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR: missing CSS input filename. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/xhtml/htmltbl.xsl b/docbook-xsl-1.76.1/xhtml/htmltbl.xsl new file mode 100644 index 0000000..47c9a98 --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml/htmltbl.xsl @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + float: + + left + right + + + + + + + + + + + + + none + none + + ; + + + + diff --git a/docbook-xsl-1.76.1/xhtml/index.xsl b/docbook-xsl-1.76.1/xhtml/index.xsl new file mode 100644 index 0000000..2c39f4f --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml/index.xsl @@ -0,0 +1,264 @@ + + + + + + + + + + + + + + + + + + + +
        + + + + + + + + + + + + + + + + + + + + + + + + +
        + +
        +
        +
        +
        + + + + + + + + + + +
        +
        +
        + + + + + + + + + + + +
        + + + + + + + + + + + + + + + + + + + +
        +
        +
        + + + + + + + + + + + + +
        + + + + + + + + + +
        + +
        +
        +
        + + +

        + + +

        +
        + + + + + + + + + +
        + + + + + + + + + + + + +
        + +
        +
        + + + +
        +
        + + + + + + + + + + +
        +
        + +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        +
        + + +
        +
        + +
        +
        + + + + + + + + + + + + + + +
        +
        +
        + + +
        + ( + + + + + + ) +
        +
        + + +
        + ( + + + + + + ) +
        +
        + + diff --git a/docbook-xsl-1.76.1/xhtml/info.xsl b/docbook-xsl-1.76.1/xhtml/info.xsl new file mode 100644 index 0000000..76285ab --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml/info.xsl @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/xhtml/inline.xsl b/docbook-xsl-1.76.1/xhtml/inline.xsl new file mode 100644 index 0000000..da72226 --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml/inline.xsl @@ -0,0 +1,1451 @@ + + + + + + + + + + + + + + + + + + + + + + _blank + _top + + + + + + + + + + + + + + 1 + 0 + + + + + + + + + 1 + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + XLink to nonexistent id: + + + + + + +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + span + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ( + + ) + + + + + + + + + + + , + + + + + + + , + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + abbr + + + + + + acronym + + + + + + + + + + + + + + + + + + + + + + + + + + http://example.com/cgi-bin/man.cgi? + + ( + + ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + SM + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Warning: glossary.collection specified, but there are + + automatic glossaries + + + + + + + + + + + + + + + + + + + + + + + + There's no entry for + + in + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Error: no glossentry for glossterm: + + . + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + element + + + + + + + + + + + + + + + + </ + + > + + + & + + ; + + + &# + + ; + + + % + + ; + + + <? + + > + + + <? + + ?> + + + < + + > + + + < + + /> + + + <!-- + + --> + + + + + + + + + + + + + + + + + + + + + + < + + + + + mailto: + + + + + + > + + + + + + + + + + + + + - + - + - + + + + + + + + + + + + + + + + + + + + + + ( + + ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + [ + + + + + + + + + + + + + + + + + + + ] + + + [ + + ] + + + + + + + + + + + + + [ + + + + + + + + + + + + ] + + + [ + + ] + + + + + + + + + + + + +

        +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/xhtml/keywords.xsl b/docbook-xsl-1.76.1/xhtml/keywords.xsl new file mode 100644 index 0000000..5f6b4fb --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml/keywords.xsl @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + , + + + + + diff --git a/docbook-xsl-1.76.1/xhtml/lists.xsl b/docbook-xsl-1.76.1/xhtml/lists.xsl new file mode 100644 index 0000000..58916e5 --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml/lists.xsl @@ -0,0 +1,1121 @@ + + + + + + + + + + +
        + + + + + + + + + +
          + + + + + + + + + + + + + +
        +
        +
        + + + + + + + + + + + + + + + + + + + + + + + circle + disc + square + + + + + + +
      • + + + + list-style-type: + + + + + + + + + + + +
        + +
        +
        + + + +
        +
      • +
        + + + + + + + + + + + + + 1 + a + i + A + I + + + + Unexpected numeration: + + + + + + + +
        + + + + + + + + + + + + + + + + + + +
        +
        + +
          + + + + + + + + + + + + + + + + + +
        +
        +
        +
        +
        + + + + + + +
      • + + + + + + + + + + + + + + +
        + +
        +
        + + + +
        +
      • +
        + + + + + + + + + + + + + +
        + +
        +
        + + + +
        + + +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        + + + +
        + +
        +
        +
        +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + +

        + + + + + + + + + + + + + +

        +
        +
        +
        + + +
        + + +
        +
        + +
        +
        + + + + + + + + + + + + + + + + + + + + + +

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +

        + + + + + +
        + + + + + + + + + + + + + + + + + + +
        +
        +
        +
        +
        +
        + + + + + + + + + +
        + +
        +
        + + + +
        +
        + + + + + + + + + + + + + + + 1 + + + +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + , + + + + + + + + + + + + + + + + + + + + + + + 1 + + + +
        +
        + + + + + + + + + + + + 1 + + + +
        +
        + + + 1 + 1 + + + + + + + + + + + + + + + + + + + + + + + + + 1 + 1 + + 1 + + + + + + + + +   + + + + + + + + + + + + + + 1 + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + 1 + 1 + + 1 + + + + + + + + +   + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + before + + + + + + + + + +
        + + + + + 0 + 1 + + + + + + + + + + + + +
          + + +
        +
        + +
          + + + + + +
        +
        +
        + + + + +
        +
        + + + + + + + + + + + + +
          + + +
        +
        + + +
      • + + + +
      • +
        + + + +
          + + +
        +
        + + +

        + + + + +

        +
        + + + + + + + + +
        + + + + + + + + + + + + + + + + + +
        +
        + + +
        + + + + + + + +
        +
        + + + + + + + + + +
        + + + +
        +
        + + + + + + + + +
        + + + + + : + + + +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        + + + + + + + + + + + + + +
        +
        + +
        + +
        +
        +
        +
        +
        + + + + + + + + + + + + + + + +

        + + + + +

        + + + + + +
        + +
        + + + + +
        +
        +
        +
        +
        + + + + + + + + + +

        + + + + + + + + + + + + + + + +

        +
        +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ??? + + + + + # + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ??? + + + + + + + + + + + + + + + + + + + +
        diff --git a/docbook-xsl-1.76.1/xhtml/maketoc.xsl b/docbook-xsl-1.76.1/xhtml/maketoc.xsl new file mode 100644 index 0000000..0ae8055 --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml/maketoc.xsl @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + filename=" + + " + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/xhtml/manifest.xsl b/docbook-xsl-1.76.1/xhtml/manifest.xsl new file mode 100644 index 0000000..26b51d0 --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml/manifest.xsl @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/xhtml/math.xsl b/docbook-xsl-1.76.1/xhtml/math.xsl new file mode 100644 index 0000000..b2cac2d --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml/math.xsl @@ -0,0 +1,284 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Unsupported TeX math notation: + + + + + + + + + + + + + \nopagenumbers + + + + + \bye + + + + + + + + + + + + + + + + + + + + + + + + \special{dvi2bitmap outputfile + + } + + + $ + + + + $ + + + \vfill\eject + + + + + + + + + + + + + + + + + + + + + + + + + \special{dvi2bitmap outputfile + + } + + + $$ + + + + $$ + + + \vfill\eject + + + + + + + + + + \documentclass{article} + + \pagestyle{empty} + + \begin{document} + + + + + \end{document} + + + + + + + + + + + + + + + + + + + + + + + + \special{dvi2bitmap outputfile + + } + + + $ + + + + $ + + + \newpage + + + + + + + + + + + + + + + + + + + + + + + + + \special{dvi2bitmap outputfile + + } + + + $$ + + + + $$ + + + \newpage + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + 0 + 1 + + + + + + diff --git a/docbook-xsl-1.76.1/xhtml/oldchunker.xsl b/docbook-xsl-1.76.1/xhtml/oldchunker.xsl new file mode 100644 index 0000000..e727bf1 --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml/oldchunker.xsl @@ -0,0 +1,176 @@ + + + + + + + + + + + + + + + + +Encoding used in generated HTML pages + +This encoding is used in files generated by chunking stylesheet. Currently +only Saxon is able to change output encoding. + + + + + + + + + +Saxon character representation used in generated HTML pages + +This character representation is used in files generated by chunking stylesheet. If +you want to suppress entity references for characters with direct representation +in default.encoding, set this parameter to value native. + + + + + + + + + + + + + + + + + + + + + + + + Chunking isn't supported with + + + + + + + + + + + + + + + Writing + + + for + + + ( + + ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Can't make chunks with + + 's processor. + + + + + + + + + + + + + + + + Writing + + + for + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Can't make chunks with + + 's processor. + + + + + + diff --git a/docbook-xsl-1.76.1/xhtml/onechunk.xsl b/docbook-xsl-1.76.1/xhtml/onechunk.xsl new file mode 100644 index 0000000..15a04e1 --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml/onechunk.xsl @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + +1 + + + + # + + + + + + diff --git a/docbook-xsl-1.76.1/xhtml/param.xsl b/docbook-xsl-1.76.1/xhtml/param.xsl new file mode 100644 index 0000000..bebab47 --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml/param.xsl @@ -0,0 +1,436 @@ + + + + + + + + + +.png + +images/ + + + + + + +/* ====================================================================== + Annotations +*/ + +div.annotation-list { visibility: hidden; + } + +div.annotation-nocss { position: absolute; + visibility: hidden; + } + +div.annotation-popup { position: absolute; + z-index: 4; + visibility: hidden; + padding: 0px; + margin: 2px; + border-style: solid; + border-width: 1px; + width: 200px; + background-color: white; + } + +div.annotation-title { padding: 1px; + font-weight: bold; + border-bottom-style: solid; + border-bottom-width: 1px; + color: white; + background-color: black; + } + +div.annotation-body { padding: 2px; + } + +div.annotation-body p { margin-top: 0px; + padding-top: 0px; + } + +div.annotation-close { position: absolute; + top: 2px; + right: 2px; + } + + +http://docbook.sourceforge.net/release/images/annot-close.png +http://docbook.sourceforge.net/release/images/annot-open.png + + +http://docbook.sourceforge.net/release/script/AnchorPosition.js http://docbook.sourceforge.net/release/script/PopupWindow.js + + +A + + +. + +. +http://docbook.sourceforge.net/release/bibliography/bibliography.xml + + +normal + + +60 +.png + + +15 + +images/callouts/ + + +10 +10102 + + + + + + + + + + + +no + +1 + + + + + + left + before + + + +all + + +docbook.css.xml +no +images/draft.png + +::= + + + + +#F5DCB3 + + +com.example.help +DocBook Online Help Sample +Example provider +1 + + + + + + 1 + 0 + + + + +1 + + + +figure before +example before +equation before +table before +procedure before +task before + + +kr + + + + + + + + + + +appendix toc,title +article/appendix nop +article toc,title +book toc,title,figure,table,example,equation +chapter toc,title +part toc,title +preface toc,title +qandadiv toc +qandaset toc +reference toc,title +sect1 toc +sect2 toc +sect3 toc +sect4 toc +sect5 toc +section toc +set toc,title + + + + +no + + + + + + + + + + + + + +.html + + +copyright + + + +text/css +alias.h + + + + + + + +User1 + + +User2 + + + + + + + + + +htmlhelp.chm + + +iso-8859-1 + + + + + +toc.hhc +5 + + +index.hhk +htmlhelp.hhp + +Main + +context.h + + + + + + + + + + + + + +basic + + + + + + + +no + +no +iso-8859-1 + + +en + + + + +5 + + +3 + + + + + + + HTML.manifest + + + + ++ +.gif + +images/ +1 + + +6in + + +no +fragid= + +.olink + + replace + +pubid + /cgi-bin/olink +sysid +0 + +I + +90 +10 + + + + + + + + + + + + + + + + +; + + + + + +. +number + + + + + + + + + + I +index + +. +.!?: + +8 + + + + + 0 + #E0E0E0 + + + + + + +0 + + + + + +solid +0.5pt +a + + + +solid +0.5pt + + olinkdb.xml +target.db + +tex-math-equations.tex + + + +dl +8 +2 +_top + + + + + + + + +0 +, + + + writing-mode + + + + + + + + +: + + + + diff --git a/docbook-xsl-1.76.1/xhtml/pi.xsl b/docbook-xsl-1.76.1/xhtml/pi.xsl new file mode 100644 index 0000000..28f9efe --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml/pi.xsl @@ -0,0 +1,1203 @@ + + + + + + + +HTML Processing Instruction Reference + + $Id: pi.xsl 8394 2009-04-02 20:31:30Z mzjn $ + + + + Introduction + This is generated reference documentation for all + user-specifiable processing instructions (PIs) in the DocBook + XSL stylesheets for HTML output. + + You add these PIs at particular points in a document to + cause specific “exceptions” to formatting/output behavior. To + make global changes in formatting/output behavior across an + entire document, it’s better to do it by setting an + appropriate stylesheet parameter (if there is one). + + + + + + + + + Sets background color for an image + + Use the dbhtml background-color PI before or + after an image (graphic, inlinegraphic, + imagedata, or videodata element) as a + sibling to the element, to set a background color for the + image. + + + dbhtml background-color="color" + + + + background-color="color" + + An HTML color value + + + + + + Background color + + + + + + + + + + + + Sets background color on a CALS table row or table cell + + Use the dbhtml bgcolor PI as child of a CALS table row + or cell to set a background color for that table row or cell. + + + dbhtml bgcolor="color" + + + + bgcolor="color" + + An HTML color value + + + + + + Cell background color + + + + + + + + + + + + Specifies cellpadding in CALS table or qandaset output + + Use the dbhtml cellpadding PI as a child of a + CALS table or qandaset to specify the value + for the HTML cellpadding attribute in the + output HTML table. + + + dbhtml cellpadding="number" + + + + cellpadding="number" + + Specifies the cellpadding + + + + + + html.cellpadding + + + Cell spacing and cell padding, + Q and A formatting + + + + + + + + + + + + Specifies cellspacing in CALS table or qandaset output + + Use the dbhtml cellspacing PI as a child of a + CALS table or qandaset to specify the value + for the HTML cellspacing attribute in the + output HTML table. + + + dbhtml cellspacing="number" + + + + cellspacing="number" + + Specifies the cellspacing + + + + + + html.cellspacing + + + Cell spacing and cell padding, + Q and A formatting + + + + + + + + + + + + Set value of the class attribute for a CALS table row + + Use the dbhtml class PI as a child of a + row to specify a class + attribute and value in the HTML output for that row. + + + dbhtml class="name" + + + + class="name" + + Specifies the class name + + + + + + Table styles in HTML output + + + + + + + + + + + + Specifies a directory name in which to write files + + When chunking output, use the dbhtml dir PI + as a child of a chunk source to cause the output of that + chunk to be written to the specified directory; also, use it + as a child of a mediaobject to specify a + directory into which any long-description files for that + mediaobject will be written. + + + dbhtml dir="path" + + + + dir="path" + + Specifies the pathname for the directory + + + + + + base.dir + + + dbhtml dir processing instruction + + + + + + + + + + + + Specifies a filename for a chunk + + When chunking output, use the dbhtml filename + PI as a child of a chunk source to specify a filename for + the output file for that chunk. + + + dbhtml filename="filename" + + + + filename="path" + + Specifies the filename for the file + + + + + + use.id.as.filename + + + dbhtml filenames + + + + + + + + + + + + Specifies presentation style for a funcsynopsis + + Use the dbhtml funcsynopsis-style PI as a child of + a funcsynopsis or anywhere within a funcsynopsis + to control the presentation style for output of all + funcprototype instances within that funcsynopsis. + + + dbhtml funcsynopsis-style="kr"|"ansi" + + + + funcsynopsis-style="kr" + + Displays funcprototype output in K&R style + + + funcsynopsis-style="ansi" + + Displays funcprototype output in ANSI style + + + + + + funcsynopsis.style + + + + + + + + + + + + Specifies a path to the location of an image file + + Use the dbhtml img.src.path PI before or + after an image (graphic, + inlinegraphic, imagedata, or + videodata element) as a sibling to the element, + to specify a path to the location of the image; in HTML + output, the value specified for the + img.src.path attribute is prepended to the + filename. + + + dbhtml img.src.path="path" + + + + img.src.path="path" + + Specifies the pathname to prepend to the name of the image file + + + + + + img.src.path + + + Using fileref + + + + + + + + + + + + Specifies the label width for a qandaset + + Use the dbhtml label-width PI as a child of a + qandaset to specify the width of labels. + + + dbhtml label-width="width" + + + + label-width="width" + + Specifies the label width (including units) + + + + + + Q and A formatting + + + + + + + + + + + + Specifies interval for line numbers in verbatims + + Use the dbhtml linenumbering.everyNth PI as a child + of a “verbatim” element – programlisting, + screen, synopsis — to specify + the interval at which lines are numbered. + + + dbhtml linenumbering.everyNth="N" + + + + linenumbering.everyNth="N" + + Specifies numbering interval; a number is output + before every Nth line + + + + + + linenumbering.everyNth + + + Line numbering + + + + + + + + + + + + Specifies separator text for line numbers in verbatims + + Use the dbhtml linenumbering.separator PI as a child + of a “verbatim” element – programlisting, + screen, synopsis — to specify + the separator text output between the line numbers and content. + + + dbhtml linenumbering.separator="text" + + + + linenumbering.separator="text" + + Specifies the text (zero or more characters) + + + + + + linenumbering.separator + + + Line numbering + + + + + + + + + + + + Specifies width for line numbers in verbatims + + Use the dbhtml linenumbering.width PI as a child + of a “verbatim” element – programlisting, + screen, synopsis — to specify + the width set aside for line numbers. + + + dbhtml linenumbering.width="width" + + + + linenumbering.width="width" + + Specifies the width (inluding units) + + + + + + linenumbering.width + + + Line numbering + + + + + + + + + + + + Specifies presentation style for a variablelist or + segmentedlist + + Use the dbhtml list-presentation PI as a child of + a variablelist or segmentedlist to + control the presentation style for the list (to cause it, for + example, to be displayed as a table). + + + dbhtml list-presentation="list"|"table" + + + + list-presentation="list" + + Displays the list as a list + + + list-presentation="table" + + Displays the list as a table + + + + + + + + variablelist.as.table + + + segmentedlist.as.table + + + + + Variable list formatting in HTML + + + + + + + + + + + + Specifies the width of a variablelist or simplelist + + Use the dbhtml list-width PI as a child of a + variablelist or a simplelist presented + as a table, to specify the output width. + + + dbhtml list-width="width" + + + + list-width="width" + + Specifies the output width (including units) + + + + + + Variable list formatting in HTML + + + + + + + + + + + + Specifies the height for a CALS table row + + Use the dbhtml row-height PI as a child of a + row to specify the height of the row. + + + dbhtml row-height="height" + + + + row-height="height" + + Specifies the row height (including units) + + + + + + Row height + + + + + + + + + + + + (obsolete) Sets the starting number on an ordered list + + This PI is obsolete. The intent of + this PI was to provide a means for setting a specific starting + number for an ordered list. Instead of this PI, set a value + for the override attribute on the first + listitem in the list; that will have the same + effect as what this PI was intended for. + + + dbhtml start="character" + + + + start="character" + + Specifies the character to use as the starting + number; use 0-9, a-z, A-Z, or lowercase or uppercase + Roman numerals + + + + + + List starting number + + + + + + + + + + + + Do not chunk any descendants of this element. + + When generating chunked HTML output, adding this PI as the child of an element that contains elements that would normally be generated on separate pages if generating chunked output causes chunking to stop at this point. No descendants of the current element will be split into new HTML pages: +<section> +<title>Configuring pencil</title> +<?dbhtml stop-chunking?> + +... + +</section> + + + + dbhtml stop-chunking + + + Chunking into multiple HTML files + + + + + + Specifies summary for CALS table, variablelist, segmentedlist, or qandaset output + + Use the dbhtml table-summary PI as a child of + a CALS table, variablelist, + segmentedlist, or qandaset to specify + the text for the HTML summary attribute + in the output HTML table. + + + dbhtml table-summary="text" + + + + table-summary="text" + + Specifies the summary text (zero or more characters) + + + + + + Variable list formatting in HTML, + Table summary text + + + + + + + + + + + + Specifies the width for a CALS table + + Use the dbhtml table-width PI as a child of a + CALS table to specify the width of the table in + output. + + + dbhtml table-width="width" + + + + table-width="width" + + Specifies the table width (including units or as a percentage) + + + + + + default.table.width + + + Table width + + + + + + + + + + + + Sets character formatting for terms in a variablelist + + Use the dbhtml term-presentation PI as a child + of a variablelist to set character formatting for + the term output of the list. + + + dbhtml term-presentation="bold"|"italic"|"bold-italic" + + + + term-presentation="bold" + + Specifies that terms are displayed in bold + + + term-presentation="italic" + + Specifies that terms are displayed in italic + + + term-presentation="bold-italic" + + Specifies that terms are displayed in bold-italic + + + + + + Variable list formatting in HTML + + + + + + + + + + + + Specifies separator text among terms in a varlistentry + + Use the dbhtml term-separator PI as a child + of a variablelist to specify the separator text + among term instances. + + + dbhtml term-separator="text" + + + + term-separator="text" + + Specifies the text (zero or more characters) + + + + + + variablelist.term.separator + + + Variable list formatting in HTML + + + + + + + + + + + + Specifies the term width for a variablelist + + Use the dbhtml term-width PI as a child of a + variablelist to specify the width for + term output. + + + dbhtml term-width="width" + + + + term-width="width" + + Specifies the term width (including units) + + + + + + Variable list formatting in HTML + + + + + + + + + + + + Specifies whether a TOC should be generated for a qandaset + + Use the dbhtml toc PI as a child of a + qandaset to specify whether a table of contents + (TOC) is generated for the qandaset. + + + dbhtml toc="0"|"1" + + + + toc="0" + + If zero, no TOC is generated + + + toc="1" + + If 1 (or any non-zero value), + a TOC is generated + + + + + + Q and A list of questions, + Q and A formatting + + + + + + + + + + + + Generates a hyperlinked list of commands + + Use the dbcmdlist PI as the child of any + element (for example, refsynopsisdiv) containing multiple + cmdsynopsis instances; a hyperlinked navigational + “command list” will be generated at the top of output for that + element, enabling users to quickly jump + to each command synopsis. + + + dbcmdlist + + + [No parameters] + + + + + + No cmdsynopsis elements matched dbcmdlist PI, perhaps it's nested too deep? + + +
        + + + +
        +
        + + + Generates a hyperlinked list of functions + + Use the dbfunclist PI as the child of any + element (for example, refsynopsisdiv) containing multiple + funcsynopsis instances; a hyperlinked + navigational “function list” will be generated at the top of + output for that element, enabling users to quickly + jump to to each function synopsis. + + + dbfunclist + + + [No parameters] + + + + + + No funcsynopsis elements matched dbfunclist PI, perhaps it's nested too deep? + + +
        + + + +
        +
        + + + Copies an external well-formed HTML/XML file into current doc + + Use the dbhtml-include href PI anywhere in a + document to cause the contents of the file referenced by the + href pseudo-attribute to be copied/inserted “as + is” into your HTML output at the point in document order + where the PI occurs in the source. + + The referenced file may contain plain text (as long as + it is “wrapped” in an html element — see the + note below) or markup in any arbitrary vocabulary, + including HTML — but it must conform to XML + well-formedness constraints (because the feature in XSLT + 1.0 for opening external files, the + document() function, can only handle + files that meet XML well-formedness constraints). + Among other things, XML well-formedness constraints + require a document to have a single root + element. So if the content you want to + include is plain text or is markup that does + not have a single root element, + wrap the content in an + html element. The stylesheets will + strip out that surrounding html “wrapper” when + they find it, leaving just the content you want to + insert. + + + + dbhtml-include href="URI" + + + + href="URI" + + Specifies the URI for the file to include; the URI + can be, for example, a remote http: + URI, or a local filesystem file: + URI + + + + + + textinsert.extension + + + Inserting external HTML code, + External code files + + + + + + + href + + + + + + + + + + + + + + + + + + + + ERROR: dbhtml-include processing instruction + href has no content. + + + + + + + ERROR: dbhtml-include processing instruction has + missing or empty href value. + + + + + + + + Sets topic name and topic id for context-sensitive HTML Help + + Use the dbhh PI as a child of components + that should be used as targets for context-sensitive help requests. + + + dbhh topicname="name" topicid="id" + + + + topicname="name" + + Specifies a unique string constant that identifies a help topic + + + topicid="id" + + Specifies a unique integer value for the topicname string + + + + + + Context-sensitive help + + + + + + + + + + filename + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        + + + # + + + + + + + + + + + + + + + + + + +
        + + + + + +
        +
        +
        + + + + + + + + + + + + + + + +
        + + + # + + + + + + + + + + + + + + + + + + +
        + + + + + +
        +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + / + + + + / + + + + +
        diff --git a/docbook-xsl-1.76.1/xhtml/profile-chunk-code.xsl b/docbook-xsl-1.76.1/xhtml/profile-chunk-code.xsl new file mode 100644 index 0000000..05c10c6 --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml/profile-chunk-code.xsl @@ -0,0 +1,617 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + bk + + + + + + + + + + + + + + + ar + + + + + + + + + + + + + + + pr + + + + + + + + + + + + + + + ch + + + + + + + + + + + + + + + ap + + + + + + + + + + + + + + + + + + + pt + + + + + + + + + + + + + + + + + + + rn + + + + + + + + + + + + + + + + + + + + + + + + re + + + + + + + + + + + + + + + + + + + co + + + + + + + + + + + s + + + + + + + + + + + + + + + + + + + bi + + + + + + + + + + + + + + + + + + + go + + + + + + + + + + + + + + + + + + + ix + + + + + + + + si + + + + + + + + chunk-filename-error- + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Note: namesp. cut : stripped namespace before processingNote: namesp. cut : processing stripped document + + + + + + + + + + + + + + + + + ID ' + + ' not found in document. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/xhtml/profile-chunk.xsl b/docbook-xsl-1.76.1/xhtml/profile-chunk.xsl new file mode 100644 index 0000000..def7fff --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml/profile-chunk.xsl @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/docbook-xsl-1.76.1/xhtml/profile-docbook.xsl b/docbook-xsl-1.76.1/xhtml/profile-docbook.xsl new file mode 100644 index 0000000..652fbb7 --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml/profile-docbook.xsl @@ -0,0 +1,408 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Element + + in namespace ' + + ' encountered + + in + + + , but no template matches. + + + + < + + > + + </ + + > + + + + + + + +rtl + + + + + + + + + + + <xsl:copy-of select="$title"/> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Note: namesp. cut : stripped namespace before processingNote: namesp. cut : processing stripped document + + + + + + + + + + + + + + + + + + ID ' + + ' not found in document. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + + + diff --git a/docbook-xsl-1.76.1/xhtml/profile-onechunk.xsl b/docbook-xsl-1.76.1/xhtml/profile-onechunk.xsl new file mode 100644 index 0000000..b84b3e9 --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml/profile-onechunk.xsl @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + +1 + + + + # + + + + + + diff --git a/docbook-xsl-1.76.1/xhtml/qandaset.xsl b/docbook-xsl-1.76.1/xhtml/qandaset.xsl new file mode 100644 index 0000000..4a61c81 --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml/qandaset.xsl @@ -0,0 +1,420 @@ + + + + + + + + + + + + + + + + + + + + + + +
        + + + + + + + + + + + + + +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

        + +

        +
        + + + + + + + + + + + + +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

        + +

        +
        + + + + + + + + + + +
        + + + + + + + + + + + + + + +
        + + +
        +
        + + +
        +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        + + + + + + + + + + + + + +
        + + + + +
        + + + +
        + +
        +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1% + + + + + + + + +
        +
        + + + + + + + + + +
        diff --git a/docbook-xsl-1.76.1/xhtml/refentry.xsl b/docbook-xsl-1.76.1/xhtml/refentry.xsl new file mode 100644 index 0000000..dc2e57d --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml/refentry.xsl @@ -0,0 +1,299 @@ + + + + + + + + + + + + +
        + + + + + + + + + + + + + + + + + + + + + +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

        + +

        +
        + + + + +
        + + + + +
        +
        +
        +
        + + + + + + +
        +
        + + + + + + + + + + + + + + ( + + ) + + + + + + + + + + + +
        + + + + + + + + + + +

        + + + +

        +
        + +

        + + + + + + + + +

        +
        +
        + +

        + +

        +
        +
        + + + + + + , + + + + + + + + + em-dash + + + + + + + + + + + + + + + + : + + + + + + + +
        + + + + +

        + + + + + + + + + + +

        + +
        +
        + + + + + + + + + + + +
        + + + + + + + + + +
        +
        + + + + + + 0 + 1 + + + + 6 + + + + + + + + + + + + +

        + +

        +
        + + + +

        + +

        +
        + + + +

        + +

        +
        + + + + + + + + + +
        diff --git a/docbook-xsl-1.76.1/xhtml/sections.xsl b/docbook-xsl-1.76.1/xhtml/sections.xsl new file mode 100644 index 0000000..aec647d --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml/sections.xsl @@ -0,0 +1,541 @@ + + + + + + + + + + + + + + +
        + + + + + + + + + + + + + + + + + + + +
        +
        + + + + + + + + 1 + 2 + 3 + 4 + 5 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        + + + + + + + + +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        + + + + + + + + +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        + + + + + + + + +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        + + + + + + + + +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        + + + + + + + + +
        + + + + + + +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 6 + + + + + + + + + + clear: both + + + + + + + + + + + + + + + + + + + + + + + 1 + + + + + + + + + + + + 1 + + + + + + + 2 + 3 + 4 + 5 + 6 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        diff --git a/docbook-xsl-1.76.1/xhtml/synop.xsl b/docbook-xsl-1.76.1/xhtml/synop.xsl new file mode 100644 index 0000000..8506707 --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml/synop.xsl @@ -0,0 +1,1513 @@ + + + + + + + + + + + + + + +
        + +

        + + + + + + + + + + + + +

        +
        +
        + + +
        + + +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        + + + + + + + + + + + ( + + ) + +   + + + + + + + + + + + + + + + + + + + ( + + ) + + + + + + + + + + + + + + + + + + + + + + +
        +    
        +    
        +  
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

        + + +
        + +
        +

        +
        + + + + + + ( + + + + + + + fsfunc + + + + + + + + + ) + ; + + + + ... + ) + ; + + + + + + + , + + + ) + ; + + + + + + + + + + + + + + + + + + + + +
        + + + + ; +
        + + + + + + + + + + + + + + + + + + ( + + ) + + + + + + + + + + + + + + + + + +
        + +
         
        + +
        + +
        +
        +
         
        +
        + + + + + + ( + + + + + + + fsfunc + + + + + + + + + + ) + ; + +   + + + + + ... + ) + ; + +   + + + + + + + + , + + + ) + ; + + + +   + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +   + + + + + + + + + + + + + + + + + + + + + + + + + + + + +   + + + + + + ; + + + + + + + + + + + + + + + + + + + + + + + + ( + + ) + ; + + + + + + +

        + +

        +
        + + + + + + ( + + + + + + + fsfunc + + + + + + + + + void) + ; + + + + ... + ) + ; + + + + + + + , + + + ) + ; + + + + + + + + + + + + + + + + + + + + + ( + + ) + + + + + + + + + + + + + + + + + +
        + +
         
        +
         
        +
        + + + + + + ( + + + + + + + fsfunc + + + + + + + + + + void) + ; + +   + + + + + ... + ) + ; + +   + + + + + + + + , + + + ) + ; + + + + + + + + + + + + + + + + + + + + + + ( + + ) + + + + +java + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Unrecognized language on + + : + + + + + + + + + + + +
        +
        +
        + + + + + +
        +    
        +    
        +    
        +       extends
        +      
        +      
        +        
        +      +
        +
        + + implements + + +
        +      +
        +
        + + throws + + +  { +
        + + } +
        +
        + + + + + + + + + , + + + + + + + + + + + + + + + + +   + + + + + + + , + + + + + + + + + + , + + + + + + + + + + , + + + + + + + + + + + +    + + + ; + + + + + + + + +   + + + + + + + +   + + + + + + + + + + + + + + + void  + + + + + + + + + + + + 0 + + , +
        + + +   + + + +
        + + + + +
        + + + + + + + + + + + + + + +    + + + + + + + + + + + + + + + ( + + + + ) + +
        +     throws  + +
        + + + + + ; +
        + +
        + + + + +
        +    
        +    
        +    
        +      : 
        +      
        +      
        +        
        +      +
        +
        + + implements + + +
        +      +
        +
        + + throws + + +  { +
        + + } +
        +
        + + + + + + + + , + + + + + + + + + + + + +   + + + + + + + , + + + + + + + + + + , + + + + + + + + + + , + + + + + + + + + + + +    + + + ; + + + + + + + + +   + + + + + + + +   + + + + + + + + + + + + + + + void  + + + + + + + + + + + + + , + + + + + + + + + + + + + + + + + + + + + + +    + + + + + + + + + + ( + + ) + +
        +     throws  + +
        + + + + + ; +
        + +
        + + + + +
        +    
        +    interface 
        +    
        +    
        +      : 
        +      
        +      
        +        
        +      +
        +
        + + implements + + +
        +      +
        +
        + + throws + + +  { +
        + + } +
        +
        + + + + + + + + , + + + + + + + + + + + + +   + + + + + + + , + + + + + + + + + + , + + + + + + + + + + , + + + + + + + + + + + +    + + + ; + + + + + + + + +   + + + + + + + +   + + + + + + + + + + + + + + + void  + + + + + + + + + + + + + , + + + + + + + + + + + + + + + + + + + + + +    + + + + + + + + + + ( + + ) + +
        +     raises( + + ) +
        + + + + + ; +
        + +
        + + + + +
        +    
        +    package 
        +    
        +    ;
        +    
        + + + @ISA = ( + + ); +
        +
        + + +
        +
        + + + + + + + + , + + + + + + + + + + + + +   + + + + + + + , + + + + + + + + + + , + + + + + + + + + + , + + + + + + + + + + + +    + + + ; + + + + + + + + +   + + + + + + + +   + + + + + + + + + + + + + + + void  + + + + + + + + + + + + + , + + + + + + + + + + + + + + + + + + + + + + sub + + + { ... }; + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        diff --git a/docbook-xsl-1.76.1/xhtml/table.xsl b/docbook-xsl-1.76.1/xhtml/table.xsl new file mode 100644 index 0000000..42fe259 --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml/table.xsl @@ -0,0 +1,1168 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + +   + + + + + + + + + + + + + + + + + + + border- + + : + + + + + + ; + + + + + border- + + -width: + + ; + + + + border- + + -style: + + ; + + + + border- + + -color: + + ; + + + + + + + + + + + Error: CALS tables must specify the number of columns. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 100% + + + + + + + + border-collapse: collapse; + + + + + + + + + + + + + + + + + + + + + + + + + + + + + border-collapse: collapse; + + + + + + + + + + + + + + + + + border-collapse: collapse; + + + + + + + + + + + border-collapse: collapse; + + + + + + + + + + + border-collapse: collapse; + + + + + + + + + + + + + + + + + border: none; + + + + + border-collapse: collapse; + + + + + + + 0 + + + 1 + + + + + + + + + + + + + + + + + + + + + + + + 100% + + + + + + + + + + + + + + + + + + + + + + + + No convertLength function available. + + + + + + + + + + + + + + + + + + + + + + + + + + No adjustColumnWidths function available. + + + + + + + + + + + + + + + + + + + + +
        + +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Warning: overlapped row contains content! + + + This row intentionally left blank + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + + + + + + + + th + th + + th + + td + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +   + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + + + + + + + + + + + + + + : + + + + + + + + 0: + + + + + + + + + + + + + + + 0 + + : + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + + 1 + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        diff --git a/docbook-xsl-1.76.1/xhtml/task.xsl b/docbook-xsl-1.76.1/xhtml/task.xsl new file mode 100644 index 0000000..0a380d2 --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml/task.xsl @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + before + + + + + + + + +
        + + + + + + + + + + + + +
        +
        + + + + + + + + + + + + + + + + + + + + + + + +
        diff --git a/docbook-xsl-1.76.1/xhtml/titlepage.templates.xsl b/docbook-xsl-1.76.1/xhtml/titlepage.templates.xsl new file mode 100644 index 0000000..1f72e23 --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml/titlepage.templates.xsl @@ -0,0 +1,3817 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        + + + + + + + + +
        + + + + + + + + + + 1 + + + +
        +
        + + + + + + + + + + 1 + + + +
        +
        + +
        +
        + + + + + + + + + + + + + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        + + + + + + + + +
        + + + + + + + + + + 1 + + + +
        +
        + + + + + + + + + + 1 + + + +
        +
        + +
        +
        + + + + + + + + + + + + + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        + + + + + + + + +
        + + + + + + + + + + 1 + + + +
        +
        + + + + + + + + + + 1 + + + +
        +
        + +
        +
        + + + + + + + + + + + + + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + + +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        + + + + + + + + + + + + + + +
        + + + + + + + + + + 1 + + + +
        +
        + + + + + + + + + + 1 + + + +
        +
        + +
        +
        + + + + + + + + + + + + + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        + + + + + + + + + + 1 + + + +
        +
        + + + + + + + + + + 1 + + + +
        +
        + +
        +
        + + + + + + + + + + + + + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        + + + + + + + + +
        + + + + + + + + + + 1 + + + +
        +
        + + + + + + + + + + 1 + + + +
        +
        + +
        +
        + + + + + + + + + + + + + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + + + + + + + + + + + + + + + + +
        + + + + + + + + + + 1 + + + +
        +
        + + + + + + + + + + 1 + + + +
        +
        + +
        +
        + + + + + + + + + + + + + + +
        + + +
        + + + + + + + + + + + + + + + +
        + + + + + + + + + + + + + + +
        + + + + + + + + + + 1 + + + +
        +
        + + + + + + + + + + 1 + + + +
        +
        + +
        +
        + + + + + + + + + + + + + + +
        + +
        +
        + + +
        + + +
        + + + + + + + + + + + + + + + +
        + + + + + + + + + + + + + + +
        + + + + + + + + + + 1 + + + +
        +
        + + + + + + + + + + 1 + + + +
        +
        + +
        +
        + + + + + + + + + + + + + + +
        + +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        + + + + + + + + + + 1 + + + +
        +
        + + + + + + + + + + 1 + + + +
        +
        + +
        +
        + + + + + + + + + + + + + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        + + + + + + + + + + 1 + + + +
        +
        + + + + + + + + + + 1 + + + +
        +
        + +
        +
        + + + + + + + + + + + + + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        + + + + + + + + + + 1 + + + +
        +
        + + + + + + + + + + 1 + + + +
        +
        + +
        +
        + + + + + + + + + + + + + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        + + + + + + + + +
        + + + + + + + + + + 1 + + + +
        +
        + + + + + + + + + + 1 + + + +
        +
        + +
        +
        + + + + + + + + + + + + + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        + + + + + + + + +
        + + + + + + + + + + 1 + + + +
        +
        + + + + + + + + + + 1 + + + +
        +
        + +
        +
        + + + + + + + + + + + + + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        + + + + + + + + +
        + + + + + + + + + + 1 + + + +
        +
        + + + + + + + + + + 1 + + + +
        +
        + +
        +
        + + + + + + + + + + + + + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        + + + + + + + + +
        + + + + + + + + + + 1 + + + +
        +
        + + + + + + + + + + 1 + + + +
        +
        + +
        +
        + + + + + + + + + + + + + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        + + + + + + + + +
        + + + + + + + + + + 1 + + + +
        +
        + + + + + + + + + + 1 + + + +
        +
        + +
        +
        + + + + + + + + + + + + + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        + + + + + + + + +
        + + + + + + + + + + 1 + + + +
        +
        + + + + + + + + + + 1 + + + +
        +
        + +
        +
        + + + + + + + + + + + + + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        + + + + + + + + +
        + + + + + + + + + + 1 + + + +
        +
        + + + + + + + + + + 1 + + + +
        +
        + +
        +
        + + + + + + + + + + + + + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + +
        +
        + + +
        + + +
        + + + + + + + + + + + + + + + +
        + + + + + + + + + + + + + + +
        + + + + + + + + + + 1 + + + +
        +
        + + + + + + + + + + 1 + + + +
        +
        + +
        +
        + + + + + + + + + + + + + + +
        + +
        +
        + + +
        + + +
        + + + + + + + + + + + + + + + +
        + + + + + + + + + + + + + + +
        + + + + + + + + + + 1 + + + +
        +
        + + + + + + + + + + 1 + + + +
        +
        + +
        +
        + + + + + + + + + + + + + + +
        + +
        +
        + + +
        + + +
        + + + + + + + + + + + + + + + +
        + + + + + + + + + + + + + + +
        + + + + + + + + + + 1 + + + +
        +
        + + + + + + + + + + 1 + + + +
        +
        + +
        +
        + + + + + + + + + + + + + + +
        + +
        +
        + + +
        + + +
        + + + + + + + + + + + + + + + +
        + + + + + + + + + + + + + + +
        + + + + + + + + + + 1 + + + +
        +
        + + + + + + + + + + 1 + + + +
        +
        + +
        +
        + + + + + + + + + + + + + + +
        + +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        + + + + + + + + + + 1 + + + +
        +
        + + + + + + + + + + 1 + + + +
        +
        + +
        +
        + + + + + + + + + + + + + + +
        + + + +
        +
        + + +
        + +
        +
        + +
        diff --git a/docbook-xsl-1.76.1/xhtml/titlepage.xsl b/docbook-xsl-1.76.1/xhtml/titlepage.xsl new file mode 100644 index 0000000..c3f8217 --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml/titlepage.xsl @@ -0,0 +1,1030 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        +
        + + +
        + + + + + + + + + + + +
        +
        + + + + + + + + + + + + + +
        + + + + + + + + +
        +
        + + +
        + + + + + + + + +
        +
        +
        +
        + + +
        + + +
        +
        + + + + + +
        +
        +
        + + + + + + +
        + + +

        +
        +

        + + + + + + + + + +

        + + + + + + + + + + + + + + + +
        +
        + + +
        + + +
        +
        + + +
        + + +

        Authors

        +
        + + + +
        +
        + + + + + +
        +
        +
        + + + + + + + + + + + + + +
        +
        +
        + + + + + + + + + +
        + + +
        +
        + + + + + +
        +
        +
        + + + + + +
        +
        +
        + + + + + +
        +
        +
        + + + + + + + + + +
        +
        +
        + + + + + +
        +
        +
        + + + + + + + +   + + +
        + +

        +
        +
        +
        +
        + + + + +

        Copyright

        +
        + +

        + + + + + + + copyright + + + + + + + + + +

        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + , + + + + +

        + + +

        +
        + + + + + +
        +
        +
        + + + + + +
        +
        +
        + + + + + +
        +
        +
        + + +

        + + + + + + +

        +
        + + + + + + + + + + +
        +
        +
        + + + + + + + + + + +
        +
        +
        + + + + + +
        +
        +
        + + + + + +
        +
        +
        + + + + + +
        +
        +
        + + + + + + + + +
        +
        +
        + + + + + +
        +
        +
        + + + + + +
        +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        + + +
        + + + +
        +
        +
        + +
        + + + +
        +
        +
        +
        + + +

        +
        + + + + + +
        +
        +
        + + + + + + + + + + + +
        +
        +
        + + + + + +
        +
        +
        + + + + + + + + + + + + + : + + + + + + + + + + + + + + + + + + + + + + + + + + , + + + + + + + +
        +
        +
        + + + + + +
        +
        +
        + + +
        + + +
        +
        + + + + + +
        +
        +
        + + + + + +
        +
        +
        + + + + + + + + + + + + + + + + + + + + + + + +
        +
        +
        + + + + + +
        +
        +
        + + + + + + + + + + + + + + 3 + 2 + + + + + + + + RevHistory + + + + +
        + + + + + + + + +
        + + + + + +
        +
        +
        + + + + + + + + + + + + + + + + + + +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + , + + + + + +   + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        +
        + + + + + +
        +
        +
        + + + + + +

        + + +

        +
        + + + + + +
        +
        +
        + + + + + + + + + + + + + + + + + + +

        + + + + + + + + + + + + + + +

        +
        + + + + + + + + + +
        +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        diff --git a/docbook-xsl-1.76.1/xhtml/toc.xsl b/docbook-xsl-1.76.1/xhtml/toc.xsl new file mode 100644 index 0000000..92b7b14 --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml/toc.xsl @@ -0,0 +1,330 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        + + +
        + + +
        +
        + +
        + + + + + + + + + +
        +
        +
        + + + + + + + + + + + + + + +
        + + +
        + + +
        +
        + +
        + + + + + + + + + +
        +
        +
        + + + + + + + + +
        + + + + + +
        +
        + + + + + + +
        +
        +
        + + + + + +
        + + +
        + +
        + +
      • + + + +
      • +
        +
        +
        + + + + +
        + + +
        +
        + +
      • + + +
      • +
        +
        +
        + + + + + + + + + + + + + + +
        + + + + + + + + + + + + + + + +
        + + +
        +
        + + +
        + + +
        +
        + + + + + + + + + + + + +
        + + +
        +
        + + + +
        +
        + + + + +
        + + + + +
        + + +
        + +
        + + + +
        +
        + + + + +
        + + +
        + +
        + + + +
        +
        + + + + + Warning: don't know what to generate for + lot that has no children. + + + + +
        + + +
        +
        + + +
        + + +
        +
        + + + + + diff --git a/docbook-xsl-1.76.1/xhtml/verbatim.xsl b/docbook-xsl-1.76.1/xhtml/verbatim.xsl new file mode 100644 index 0000000..c0bc69d --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml/verbatim.xsl @@ -0,0 +1,388 @@ + + + + + + + + + + + + + + + + + + + + + + + + + div + pre + + + + + + The shade.verbatim parameter is deprecated. + Use CSS instead, + + + for example: pre. + + { background-color: #E0E0E0; } + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The shade.verbatim parameter is deprecated. + Use CSS instead, + + + for example: pre. + + { background-color: #E0E0E0; } + + + + + + + +
        +            
        +            
        +              
        +            
        +          
        +
        + +
        + +

        + + + +

        +
        +
        +
        +
        + + + +
        +            
        +            
        +          
        +
        + +
        + +

        + + + +

        +
        +
        +
        +
        +
        +
        + + + + + + + + + + +
        + +

        + + + +

        +
        +
        + + +
        + +

        + + + +

        +
        +
        +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Unexpected verbatim environment: + + + + + + + + + + 1 + + + + + + + + + + + + + No numberLines function available. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        diff --git a/docbook-xsl-1.76.1/xhtml/xref.xsl b/docbook-xsl-1.76.1/xhtml/xref.xsl new file mode 100644 index 0000000..74c6f20 --- /dev/null +++ b/docbook-xsl-1.76.1/xhtml/xref.xsl @@ -0,0 +1,1316 @@ + + + + + + + + +http://docbook.org/xlink/role/olink + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Endterm points to nonexistent ID: + + + ??? + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR: xref linking to + + has no generated link text. + + ??? + + + + + + + + + + + + + + + + + + + + + + + + + + + + + XRef to nonexistent id: + + + ??? + + + + + + + + + + + + + + + + Endterm points to nonexistent ID: + + + + + ??? + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + suppress anchor + + + + + + + + + + + removing + + + + + + + + + + + + + + + + + removing + + + + + + + + + + + + + + + + + + + + + + Don't know what gentext to create for xref to: " + + ", (" + + ") + + + ??? + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + [ + + + + ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No bibliography entry: + + found in + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + [ + + + + + + + + + ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Endterm points to nonexistent ID: + + + ??? + + + + + + + + + + + + + Link element has no content and no Endterm. + Nothing to show in the link to + + + ??? + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Olink debug: root element of target.database ' + + ' is ' + + '. + + + + + + + + + + + + + + + Error: unresolved olink: + targetdoc/targetptr = ' + + / + + '. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Warning: olink linkmode pointer is wrong. + + + + # + + + + + + + + + + + + + ? + + + + + & + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/report/environment.rb b/report/environment.rb index 3daf39d..723dd79 100644 --- a/report/environment.rb +++ b/report/environment.rb @@ -23,6 +23,7 @@ require "report/report_format.rb" require "report/validation_access.rb" require "report/validation_data.rb" require "report/util.rb" +require "report/statistical_test.rb" diff --git a/report/report_content.rb b/report/report_content.rb index 98eaad6..f605bdc 100644 --- a/report/report_content.rb +++ b/report/report_content.rb @@ -10,9 +10,43 @@ class Reports::ReportContent def initialize(title) @xml_report = Reports::XMLReport.new(title, Time.now.strftime("Created at %m.%d.%Y - %H:%M")) @tmp_file_count = 0 + @current_section = @xml_report.get_root_element end - def add_section_predictions( validation_set, + def add_section( section_title, section_text=nil ) + @current_section = @xml_report.add_section(@xml_report.get_root_element, section_title) + @xml_report.add_paragraph(@current_section, section_text) if section_text + end + + def end_section() + @current_section = @xml_report.get_root_element + end + + def add_paired_ttest_table( validation_set, + group_attribute, + test_attribute, + section_title = "Paired t-test", + section_text = nil) + + level = 0.90 + test_matrix = Reports::ReportStatisticalTest.test_matrix( validation_set.validations, + group_attribute, test_attribute, "paired_ttest", level ) + puts test_matrix.inspect + titles = test_matrix[:titles] + matrix = test_matrix[:matrix] + table = [] + puts titles.inspect + table << [""] + titles + titles.size.times do |i| + table << [titles[i]] + matrix[i].collect{|v| (v==nil || v==0) ? "" : (v<0 ? "-" : "+") } + end + + section_test = @xml_report.add_section(@current_section, section_title) + @xml_report.add_paragraph(section_test, section_text) if section_text + @xml_report.add_table(section_test, test_attribute.to_s+", significance-level: "+level.to_s, table, true, true) + end + + def add_predictions( validation_set, validation_attributes=[], section_title="Predictions", section_text=nil, @@ -21,17 +55,18 @@ class Reports::ReportContent #PENING raise "validation attributes not implemented in get prediction array" if validation_attributes.size>0 - section_table = @xml_report.add_section(@xml_report.get_root_element, section_title) + section_table = @xml_report.add_section(@current_section, section_title) if validation_set.validations[0].get_predictions @xml_report.add_paragraph(section_table, section_text) if section_text - @xml_report.add_table(section_table, table_title, Lib::OTPredictions.to_array(validation_set.validations.collect{|v| v.get_predictions}, true, true)) + @xml_report.add_table(section_table, table_title, Lib::OTPredictions.to_array(validation_set.validations.collect{|v| v.get_predictions}, + true, false, true)) else @xml_report.add_paragraph(section_table, "No prediction info available.") end end - def add_section_result_overview( validation_set, + def add_result_overview( validation_set, attribute_col, attribute_row, attribute_values, @@ -40,14 +75,14 @@ class Reports::ReportContent section_text=nil ) - section_table = @xml_report.add_section(xml_report.get_root_element, section_title) + section_table = @xml_report.add_section(@current_section, section_title) @xml_report.add_paragraph(section_table, section_text) if section_text attribute_values.size.times do |i| attribute_val = attribute_values[i] table_title = table_titles ? table_titles[i] : "Result overview for "+attribute_val.to_s vals = validation_set.to_table( attribute_col, attribute_row, attribute_val) - @xml_report.add_table(section_table, table_title, vals) + @xml_report.add_table(section_table, table_title, vals, true, true) end end @@ -59,7 +94,7 @@ class Reports::ReportContent # val2-attr1 |val2-attr2 |val2-attr3 # val3-attr1 |val3-attr2 |val3-attr3 # - def add_section_result( validation_set, + def add_result( validation_set, validation_attributes, table_title, section_title="Results", @@ -67,7 +102,7 @@ class Reports::ReportContent #rem_equal_vals_attr=[], search_for_existing_report_type=nil) - section_table = @xml_report.add_section(xml_report.get_root_element, section_title) + section_table = @xml_report.add_section(@current_section, section_title) @xml_report.add_paragraph(section_table, section_text) if section_text vals = validation_set.to_array(validation_attributes, true) vals = vals.collect{|a| a.collect{|v| v.to_s }} @@ -91,20 +126,20 @@ class Reports::ReportContent end #PENDING transpose values if there more than 4 columns, and there are more than columns than rows transpose = vals[0].size>4 && vals[0].size>vals.size - @xml_report.add_table(section_table, table_title, vals, !transpose, transpose) + @xml_report.add_table(section_table, table_title, vals, !transpose, transpose, transpose) end - def add_section_confusion_matrix( validation, + def add_confusion_matrix( validation, section_title="Confusion Matrix", section_text=nil, table_title="Confusion Matrix") - section_confusion = @xml_report.add_section(xml_report.get_root_element, section_title) + section_confusion = @xml_report.add_section(@current_section, section_title) @xml_report.add_paragraph(section_confusion, section_text) if section_text @xml_report.add_table(section_confusion, table_title, - Reports::XMLReportUtil::create_confusion_matrix( validation.confusion_matrix ), false) + Reports::XMLReportUtil::create_confusion_matrix( validation.confusion_matrix ), true, true) end - def add_section_regression_plot( validation_set, + def add_regression_plot( validation_set, name_attribute, section_title="Regression Plot", section_text=nil, @@ -113,7 +148,7 @@ class Reports::ReportContent image_title = "Regression plot" unless image_title - section_regr = @xml_report.add_section(@xml_report.get_root_element, section_title) + section_regr = @xml_report.add_section(@current_section, section_title) prediction_set = validation_set.collect{ |v| v.get_predictions } if prediction_set.size>0 @@ -136,14 +171,14 @@ class Reports::ReportContent end end - def add_section_roc_plot( validation_set, + def add_roc_plot( validation_set, split_set_attribute = nil, section_title="ROC Plots", section_text=nil, image_titles=nil, image_captions=nil) - section_roc = @xml_report.add_section(@xml_report.get_root_element, section_title) + section_roc = @xml_report.add_section(@current_section, section_title) prediction_set = validation_set.collect{ |v| v.get_predictions && v.get_predictions.confidence_values_available? } if prediction_set.size>0 @@ -178,14 +213,14 @@ class Reports::ReportContent end - def add_section_ranking_plots( validation_set, + def add_ranking_plots( validation_set, compare_attribute, equal_attribute, rank_attributes, section_title="Ranking Plots", section_text="This section contains the ranking plots.") - section_rank = @xml_report.add_section(@xml_report.get_root_element, section_title) + section_rank = @xml_report.add_section(@current_section, section_title) @xml_report.add_paragraph(section_rank, section_text) if section_text rank_attributes.each do |a| @@ -224,7 +259,7 @@ class Reports::ReportContent end end - def add_section_bar_plot(validation_set, + def add_bar_plot(validation_set, title_attribute, value_attributes, section_title="Bar Plot", @@ -232,7 +267,7 @@ class Reports::ReportContent image_title="Bar Plot", image_caption=nil) - section_bar = @xml_report.add_section(@xml_report.get_root_element, section_title) + section_bar = @xml_report.add_section(@current_section, section_title) @xml_report.add_paragraph(section_bar, section_text) if section_text plot_file_name = "bar_plot"+@tmp_file_count.to_s+".svg" diff --git a/report/report_factory.rb b/report/report_factory.rb index ef22be1..1688452 100644 --- a/report/report_factory.rb +++ b/report/report_factory.rb @@ -66,17 +66,17 @@ module Reports::ReportFactory report = Reports::ReportContent.new("Validation report") if (val.classification?) - report.add_section_result(validation_set, [:validation_uri] + VAL_ATTR_TRAIN_TEST + VAL_ATTR_CLASS, "Results", "Results") - report.add_section_roc_plot(validation_set) - report.add_section_confusion_matrix(val) + report.add_result(validation_set, [:validation_uri] + VAL_ATTR_TRAIN_TEST + VAL_ATTR_CLASS, "Results", "Results") + report.add_roc_plot(validation_set) + report.add_confusion_matrix(val) else #regression - report.add_section_result(validation_set, [:validation_uri] + VAL_ATTR_TRAIN_TEST + VAL_ATTR_REGR, "Results", "Results") - report.add_section_regression_plot(validation_set, :model_uri) + report.add_result(validation_set, [:validation_uri] + VAL_ATTR_TRAIN_TEST + VAL_ATTR_REGR, "Results", "Results") + report.add_regression_plot(validation_set, :model_uri) end task.progress(90) if task - report.add_section_result(validation_set, Lib::ALL_PROPS, "All Results", "All Results") - report.add_section_predictions( validation_set ) + report.add_result(validation_set, Lib::ALL_PROPS, "All Results", "All Results") + report.add_predictions( validation_set ) task.progress(100) if task report end @@ -101,21 +101,21 @@ module Reports::ReportFactory report = Reports::ReportContent.new("Crossvalidation report") if (validation_set.all_classification?) - report.add_section_result(merged, [:crossvalidation_uri]+VAL_ATTR_CV+VAL_ATTR_CLASS-[:crossvalidation_fold],"Mean Results","Mean Results") - report.add_section_roc_plot(validation_set, nil, "ROC Plots over all folds") - report.add_section_roc_plot(validation_set, :crossvalidation_fold) - report.add_section_confusion_matrix(merged.validations[0]) - report.add_section_result(validation_set, VAL_ATTR_CV+VAL_ATTR_CLASS-[:num_folds], + report.add_result(merged, [:crossvalidation_uri]+VAL_ATTR_CV+VAL_ATTR_CLASS-[:crossvalidation_fold],"Mean Results","Mean Results") + report.add_roc_plot(validation_set, nil, "ROC Plots over all folds") + report.add_roc_plot(validation_set, :crossvalidation_fold) + report.add_confusion_matrix(merged.validations[0]) + report.add_result(validation_set, VAL_ATTR_CV+VAL_ATTR_CLASS-[:num_folds], "Results","Results",nil,"validation") else #regression - report.add_section_result(merged, [:crossvalidation_uri]+VAL_ATTR_CV+VAL_ATTR_REGR-[:crossvalidation_fold],"Mean Results","Mean Results") - report.add_section_regression_plot(validation_set, :crossvalidation_fold) - report.add_section_result(validation_set, VAL_ATTR_CV+VAL_ATTR_REGR-[:num_folds], "Results","Results") + report.add_result(merged, [:crossvalidation_uri]+VAL_ATTR_CV+VAL_ATTR_REGR-[:crossvalidation_fold],"Mean Results","Mean Results") + report.add_regression_plot(validation_set, :crossvalidation_fold) + report.add_result(validation_set, VAL_ATTR_CV+VAL_ATTR_REGR-[:num_folds], "Results","Results") end task.progress(90) if task - report.add_section_result(validation_set, Lib::ALL_PROPS, "All Results", "All Results") - report.add_section_predictions( validation_set ) #, [:crossvalidation_fold] ) + report.add_result(validation_set, Lib::ALL_PROPS, "All Results", "All Results") + report.add_predictions( validation_set ) #, [:crossvalidation_fold] ) task.progress(100) if task report end @@ -162,9 +162,10 @@ module Reports::ReportFactory if (validation_set.num_different_values(:dataset_uri)>1) all_merged = validation_set.merge([:algorithm_uri, :dataset_uri, :crossvalidation_id, :crossvalidation_uri]) - report.add_section_ranking_plots(all_merged, :algorithm_uri, :dataset_uri, + report.add_ranking_plots(all_merged, :algorithm_uri, :dataset_uri, [:percent_correct, :weighted_area_under_roc, :true_positive_rate, :true_negative_rate] ) - report.add_section_result_overview(all_merged, :algorithm_uri, :dataset_uri, [:percent_correct, :weighted_area_under_roc]) + report.add_result_overview(all_merged, :algorithm_uri, :dataset_uri, [:percent_correct, :weighted_area_under_roc, :true_positive_rate, :true_negative_rate]) + end if (validation_set.all_classification?) @@ -179,10 +180,14 @@ module Reports::ReportFactory merged.sort(:algorithm_uri) merged.sort(:dataset_uri) - report.add_section_result(merged,attributes, - "Mean Results","Dataset: "+dataset,nil,"crossvalidation") - report.add_section_bar_plot(merged, :algorithm_uri, VAL_ATTR_BAR_PLOT_CLASS) - report.add_section_roc_plot(set, :algorithm_uri) + report.add_section("Dataset: "+dataset) + report.add_result(merged,attributes, + "Mean Results","Mean Results",nil,"crossvalidation") + report.add_paired_ttest_table(set, :algorithm_uri, :percent_correct) + + report.add_bar_plot(merged, :algorithm_uri, VAL_ATTR_BAR_PLOT_CLASS) + report.add_roc_plot(set, :algorithm_uri) + report.end_section end else # regression diff --git a/report/report_format.rb b/report/report_format.rb index 5368858..baf7434 100644 --- a/report/report_format.rb +++ b/report/report_format.rb @@ -1,5 +1,5 @@ -ENV['REPORT_XSL'] = "docbook-xsl-1.75.2/html/docbook.xsl" unless ENV['REPORT_XSL'] +ENV['REPORT_XSL'] = "docbook-xsl-1.76.1/html/docbook.xsl" unless ENV['REPORT_XSL'] ENV['JAVA_HOME'] = "/usr/bin" unless ENV['JAVA_HOME'] ENV['PATH'] = ENV['JAVA_HOME']+":"+ENV['PATH'] unless ENV['PATH'].split(":").index(ENV['JAVA_HOME']) ENV['SAXON_JAR'] = "saxonhe9-2-0-3j/saxon9he.jar" unless ENV['SAXON_JAR'] diff --git a/report/statistical_test.rb b/report/statistical_test.rb new file mode 100644 index 0000000..c37827e --- /dev/null +++ b/report/statistical_test.rb @@ -0,0 +1,76 @@ +#require "rubygems" +#require "rinruby" +#R.quit + +module LIB + class StatisticalTest + + @@r = RinRuby.new(true,false) + + # -1 -> array1 < array2 + # 0 -> not difference + # 1 -> array2 > array1 + # + def self.pairedTTest(array1, array2, significance_level=0.95) + @@r.assign "v1",array1 + @@r.assign "v2",array2 + @@r.eval "ttest = t.test(v1,v2,paired=T)" + t = @@r.pull "ttest$statistic" + p = @@r.pull "ttest$p.value" + #@@r.quit + if (1-significance_level > p) + t + else + 0 + end + end + end +end + +module Reports + + class ReportStatisticalTest + + # __grouped_validations__ : array of validation arrays + def self.test_matrix( validations, group_attribute, test_attribute, test_method="paired_ttest", significance_level=0.95 ) + + raise "statistical-test: '"+test_method+"' does not exist" unless ReportStatisticalTest.respond_to?(test_method) + grouped_validations = Reports::Util.group(validations, [group_attribute]) + LOGGER.debug "perfom test '"+test_method.to_s+"' for '"+test_attribute.to_s+"' for #"+grouped_validations.size.to_s+" "+group_attribute.to_s + + titles = [] + matrix = [] + grouped_validations.size.times do |i| + + validations1 = grouped_validations[i] + title1 = validations1[0].send(group_attribute) + titles << title1 + matrix[i] = [] unless matrix[i] + + grouped_validations.size.times do |j| + if (i == j) + matrix[i][j] = nil + else + validations2 = grouped_validations[j] + title2 = validations2[0].send(group_attribute) + matrix[i][j] = ReportStatisticalTest.send(test_method,validations1,validations2, + test_attribute, significance_level) + end + end + end + {:titles => titles, :matrix => matrix} + end + + def self.paired_ttest( validations1, validations2, attribute, significance_level=0.95 ) + + array1 = validations1.collect{ |v| v.send(attribute) } + array2 = validations2.collect{ |v| v.send(attribute) } + LOGGER.debug "paired-t-testing "+attribute.to_s+" "+array1.inspect+" vs "+array2.inspect + LIB::StatisticalTest.pairedTTest(array1, array2, significance_level) + end + end + +end + +#puts LIB::StatisticalTest.pairedTTest([1,2,3],[2,3,3]) + diff --git a/report/validation_data.rb b/report/validation_data.rb index bd04554..d558c88 100644 --- a/report/validation_data.rb +++ b/report/validation_data.rb @@ -302,6 +302,12 @@ module Reports col_values = get_values(attribute_col) #puts col_values.inspect + # get domain for classification attribute, i.e. ["true","false"] + class_domain = get_domain_for_attr(attribute_val) + # or the attribute has a complementary value, i.e. true_positive_rate + # -> domain is reduced to one class value + first_value_elem = (class_domain.size==1 && class_domain[0]!=nil) + cell_values = {} row_values.each do |row| col_values.each do |col| @@ -309,7 +315,9 @@ module Reports @validations.each do |v| if v.send(attribute_row)==row and v.send(attribute_col)==col raise "two validation have equal row and column values"if val!=nil - val = v.send(attribute_val).to_nice_s + val = v.send(attribute_val) + val = val[class_domain[0]] if first_value_elem + val = val.to_nice_s end end cell_values[row] = [] if cell_values[row]==nil diff --git a/report/xml_report.rb b/report/xml_report.rb index d280345..33b47d3 100644 --- a/report/xml_report.rb +++ b/report/xml_report.rb @@ -140,15 +140,17 @@ module Reports # adds a table to a REXML:Element, _table_values_ should be a multi-dimensional-array, returns the table as element # # call-seq: - # add_table( element, title, table_values, first_row_is_table_header=true ) => REXML::Element + # add_table( element, title, table_values, first_row_header=true ) => REXML::Element # - def add_table( element, title, table_values, first_row_is_table_header=true, transpose=false, auto_link_urls=true ) + def add_table( element, title, table_values, first_row_header=true, first_col_header=false, transpose=false, auto_link_urls=true ) raise "table_values is not mulit-dimensional-array" unless table_values && table_values.is_a?(Array) && table_values[0].is_a?(Array) values = transpose ? table_values.transpose : table_values - table = Reports::XMLReportUtil.attribute_element("table",{"frame" => "none", "colsep" => 1, "rowsep" => 1 }) + params = {"frame" => "none", "colsep" => 1, "rowsep" => 1 } + params["rowheader"] = "firstcol" if first_col_header + table = Reports::XMLReportUtil.attribute_element("table",params) table << Reports::XMLReportUtil.text_element("title", title) @@ -158,7 +160,7 @@ module Reports table_body_values = values - if first_row_is_table_header + if first_row_header table_head_values = values[0]; table_body_values = values[1..-1]; -- cgit v1.2.3 From 98e44551ce44ff9579fd9b07a2939c3731b55c71 Mon Sep 17 00:00:00 2001 From: mguetlein Date: Mon, 13 Dec 2010 16:55:41 +0100 Subject: minor changes on reporting --- report/environment.rb | 4 +++- report/report_content.rb | 10 +++++----- report/report_factory.rb | 4 ++-- report/xml_report.rb | 6 +++--- 4 files changed, 13 insertions(+), 11 deletions(-) diff --git a/report/environment.rb b/report/environment.rb index 723dd79..1f62d0e 100644 --- a/report/environment.rb +++ b/report/environment.rb @@ -1,11 +1,13 @@ ['rubygems', 'logger', 'fileutils', 'sinatra', 'sinatra/url_for', 'rest_client', - 'yaml', 'fileutils', 'mime/types', 'abbrev', + 'yaml', 'fileutils', 'mime/types', 'abbrev', 'rinruby', 'rexml/document', 'ruby-plot', 'opentox-ruby-api-wrapper' ].each do |g| require g end gem 'ruby-plot', '= 0.0.2' +R.quit + module Reports end diff --git a/report/report_content.rb b/report/report_content.rb index f605bdc..eeb65e9 100644 --- a/report/report_content.rb +++ b/report/report_content.rb @@ -59,7 +59,7 @@ class Reports::ReportContent if validation_set.validations[0].get_predictions @xml_report.add_paragraph(section_table, section_text) if section_text @xml_report.add_table(section_table, table_title, Lib::OTPredictions.to_array(validation_set.validations.collect{|v| v.get_predictions}, - true, false, true)) + true, true)) else @xml_report.add_paragraph(section_table, "No prediction info available.") end @@ -160,7 +160,7 @@ class Reports::ReportContent begin plot_file_path = add_tmp_file(plot_file_name) Reports::PlotFactory.create_regression_plot( plot_file_path, prediction_set, name_attribute ) - @xml_report.add_imagefigure(section_regr, image_title, plot_file_name, "SVG", image_caption) + @xml_report.add_imagefigure(section_regr, image_title, plot_file_name, "SVG", 120, image_caption) rescue RuntimeError => ex LOGGER.error("Could not create regression plot: "+ex.message) rm_tmp_file(plot_file_name) @@ -199,7 +199,7 @@ class Reports::ReportContent begin plot_file_path = add_tmp_file(plot_file_name) Reports::PlotFactory.create_roc_plot( plot_file_path, prediction_set, class_value, split_set_attribute, false )#prediction_set.size>1 ) - @xml_report.add_imagefigure(section_roc, image_title, plot_file_name, "SVG", image_caption) + @xml_report.add_imagefigure(section_roc, image_title, plot_file_name, "SVG", 120, image_caption) rescue RuntimeError => ex msg = "WARNING could not create roc plot for class value '"+class_value+"': "+ex.message LOGGER.error(msg) @@ -255,7 +255,7 @@ class Reports::ReportContent @tmp_file_count += 1 plot_file_path = add_tmp_file(plot_file_name) Reports::PlotFactory::create_ranking_plot(plot_file_path, validation_set, compare_attribute, equal_attribute, rank_attribute, class_value) - @xml_report.add_imagefigure(report_section, image_title, plot_file_name, "SVG", image_caption) + @xml_report.add_imagefigure(report_section, image_title, plot_file_name, "SVG", 75, image_caption) end end @@ -274,7 +274,7 @@ class Reports::ReportContent @tmp_file_count += 1 plot_file_path = add_tmp_file(plot_file_name) Reports::PlotFactory.create_bar_plot(plot_file_path, validation_set, title_attribute, value_attributes ) - @xml_report.add_imagefigure(section_bar, image_title, plot_file_name, "SVG", image_caption) + @xml_report.add_imagefigure(section_bar, image_title, plot_file_name, "SVG", 120, image_caption) end private diff --git a/report/report_factory.rb b/report/report_factory.rb index 1688452..ee66df7 100644 --- a/report/report_factory.rb +++ b/report/report_factory.rb @@ -173,11 +173,11 @@ module Reports::ReportFactory attributes = ([ :dataset_uri ] + attributes).uniq dataset_grouping.each do |validations| - + set = Reports::ValidationSet.create(validations) + dataset = validations[0].dataset_uri merged = set.merge([:algorithm_uri, :dataset_uri, :crossvalidation_id, :crossvalidation_uri]) - merged.sort(:algorithm_uri) merged.sort(:dataset_uri) report.add_section("Dataset: "+dataset) diff --git a/report/xml_report.rb b/report/xml_report.rb index 33b47d3..76844b3 100644 --- a/report/xml_report.rb +++ b/report/xml_report.rb @@ -100,14 +100,14 @@ module Reports # call-seq: # add_imagefigure( element, title, path, filetype, caption = nil ) => REXML::Element # - def add_imagefigure( element, title, path, filetype, caption = nil ) + def add_imagefigure( element, title, path, filetype, size_pct=100, caption = nil ) figure = Reports::XMLReportUtil.attribute_element("figure", {"float" => 0}) figure << Reports::XMLReportUtil.text_element("title", title) media = Element.new("mediaobject") image = Element.new("imageobject") imagedata = Reports::XMLReportUtil.attribute_element("imagedata", - {"fileref" => path, "format"=>filetype, "contentwidth" => "100%", + {"fileref" => path, "format"=>filetype, "contentwidth" => size_pct.to_s+"%", #"contentdepth"=> "4in" })#"width" => "6in", "height" => "5in"}) #"contentwidth" => "100%"}) #imagedata = Reports::XMLReportUtil.attribute_element("imagedata",{"width" => "6in", "fileref" => path, "format"=>filetype}) @@ -254,7 +254,7 @@ module Reports section1 = rep.add_section(rep.get_root_element, "First Section") rep.add_paragraph(section1, "some text") rep.add_paragraph(section1, "even more text") - rep.add_imagefigure(section1, "Figure", "http://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/Siegel_der_Albert-Ludwigs-Universit%C3%A4t_Freiburg.svg/354px-Siegel_der_Albert-Ludwigs-Universit%C3%A4t_Freiburg.svg", "SVG", "this is the logo of freiburg university") + rep.add_imagefigure(section1, "Figure", "http://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/Siegel_der_Albert-Ludwigs-Universit%C3%A4t_Freiburg.svg/354px-Siegel_der_Albert-Ludwigs-Universit%C3%A4t_Freiburg.svg", "SVG", 100, "this is the logo of freiburg university") section2 = rep.add_section(rep.get_root_element,"Second Section") rep.add_section(section2,"A Subsection") rep.add_section(section2,"Another Subsection") -- cgit v1.2.3 From 5786ebd5095451e928d9811bd6bbd98af72de99d Mon Sep 17 00:00:00 2001 From: mguetlein Date: Thu, 13 Jan 2011 14:42:34 +0100 Subject: outcomment activerecord, adjustments to new wrapper, change to dev-branch --- EXAMPLES | 19 - Rakefile | 18 +- application.rb | 4 +- data/hamster_carcinogenicity.test.yaml | 94 +- data/hamster_carcinogenicity.train.yaml | 183 +- data/hamster_carcinogenicity.yaml | 267 +- data/hamster_carcinogenicity_TRAIN.csv~ | 85 - data/kazius.csv | 8138 +++++++++++++++---------------- 8 files changed, 4391 insertions(+), 4417 deletions(-) mode change 100644 => 100755 EXAMPLES mode change 100644 => 100755 Rakefile mode change 100644 => 100755 application.rb mode change 100644 => 100755 data/hamster_carcinogenicity.yaml delete mode 100644 data/hamster_carcinogenicity_TRAIN.csv~ diff --git a/EXAMPLES b/EXAMPLES old mode 100644 new mode 100755 index df7626d..7a617d6 --- a/EXAMPLES +++ b/EXAMPLES @@ -73,26 +73,7 @@ result example (accept-header: application/rdf-xml) result example (accept-header: text/uri-list) <<< /id_i - -create a validation by comparing feature values ------------------------------------------------------ - ->>> curl -X POST -d test_dataset_uri="" \ - -d test_target_dataset_uri="" \ - -d prediction_dataset_uri="" \ - -d prediction_feature="" \ - -d predicted_feature="" \ - -d classification="true" \ - /validate_datasets - -optional params: -test_target_dataset_uri, default is test_dataset_uri -regression or classification has to be specified -result example (accept-header: text/uri-list) -<<< /id_i - - validate an algorithm on a dataset via training-test-split ------------------------------------------------------------------- diff --git a/Rakefile b/Rakefile old mode 100644 new mode 100755 index f764000..ead64f1 --- a/Rakefile +++ b/Rakefile @@ -1,11 +1,15 @@ require 'rubygems' require 'rake' -REPORT_GEMS = [ 'opentox-ruby-api-wrapper', 'mime-types', 'activerecord', 'activesupport', 'ar-extensions', 'ruby-plot'] -VALIDATION_GEMS = [ 'opentox-ruby-api-wrapper', 'activerecord', 'activesupport', 'ar-extensions', 'ruby-plot'] -GEM_VERSIONS = { "activerecord" => "= 2.3.8", "activesupport" => "= 2.3.8", "ar-extensions" => "= 0.9.2", "ruby-plot" => "= 0.0.2" } -# this is needed because otherwihse ar-extensions adds activesupport 3.0.0 which confuses things -GEM_INSTALL_OPTIONS = { "ar-extensions" => "--ignore-dependencies" } +REPORT_GEMS = [ 'opentox-ruby', 'mime-types', 'ruby-plot', 'rinruby'] #'ar-extensions', 'activerecord', 'activesupport', +VALIDATION_GEMS = [ 'opentox-ruby', 'ruby-plot'] #'ar-extensions', 'activerecord', 'activesupport', + +GEM_VERSIONS = { "ruby-plot" => "= 0.0.2" } +GEM_INSTALL_OPTIONS = {} + +#GEM_VERSIONS = { "activerecord" => "= 2.3.8", "activesupport" => "= 2.3.8", "ar-extensions" => "= 0.9.2", "ruby-plot" => "= 0.0.2" } +## this is needed because otherwihse ar-extensions adds activesupport 3.0.0 which confuses things +#GEM_INSTALL_OPTIONS = { "ar-extensions" => "--ignore-dependencies" } desc "Install required gems" @@ -33,6 +37,7 @@ task :install_gems do end end +=begin desc "Installs gems and inits db migration" task :init => [:install_gems, :migrate] do @@ -71,6 +76,7 @@ end desc "Migrate the database through scripts in db/migrate. Target specific version with VERSION=x" task :migrate => :load_config do [ 'rubygems', 'active_record', 'logger' ].each{ |l| require l } + puts "database config: "+@@config[:database].inspect.to_s ActiveRecord::Base.establish_connection( :adapter => @@config[:database][:adapter], :host => @@config[:database][:host], @@ -82,5 +88,5 @@ task :migrate => :load_config do ActiveRecord::Migrator.migrate('db/migrate', ENV["VERSION"] ? ENV["VERSION"].to_i : 2 ) end - +=end diff --git a/application.rb b/application.rb old mode 100644 new mode 100755 index 2cdbe32..89785e1 --- a/application.rb +++ b/application.rb @@ -1,6 +1,6 @@ require 'rubygems' -gem 'opentox-ruby-api-wrapper', '= 1.6.2.1' -[ 'sinatra', 'sinatra/url_for', 'opentox-ruby-api-wrapper' ].each do |lib| +gem "opentox-ruby", "~> 0" +[ 'sinatra', 'sinatra/url_for', 'opentox-ruby' ].each do |lib| require lib end diff --git a/data/hamster_carcinogenicity.test.yaml b/data/hamster_carcinogenicity.test.yaml index 32d305a..ea6d08f 100644 --- a/data/hamster_carcinogenicity.test.yaml +++ b/data/hamster_carcinogenicity.test.yaml @@ -28,92 +28,12 @@ compounds: - http://localhost/compound/InChI=1S/C6H7N3O/c7-9-6(10)5-1-3-8-4-2-5/h1-4H,7H2,(H,9,10) - http://localhost/compound/InChI=1S/C6H11N3O3/c1-3-9(8-12)6(11)7-4-5(2)10/h3-4H2,1-2H3,(H,7,11) - http://localhost/compound/InChI=1S/C5H8O2/c1-4(2)5(6)7-3/h1H2,2-3H3 -creator: http://example.org/training_test_split -data: - http://localhost/compound/InChI=1S/C9H11N3O2/c10-9(13)12(11-14)7-6-8-4-2-1-3-5-8/h1-5H,6-7H2,(H2,10,13): - - {} +data_entries: {} - http://localhost/compound/InChI=1S/C9H6O2/c10-9-6-5-7-3-1-2-4-8(7)11-9/h1-6H: - - {} +features: {} - http://localhost/compound/InChI=1S/C3H6O2/c4-1-3-2-5-3/h3-4H,1-2H2: - - {} - - http://localhost/compound/InChI=1S/C4H8N2O3/c1-3-9-4(7)6(2)5-8/h3H2,1-2H3: - - {} - - http://localhost/compound/InChI=1S/C5H6N2OS/c1-3-2-4(8)7-5(9)6-3/h2H,1H3,(H2,6,7,8,9): - - {} - - http://localhost/compound/InChI=1S/C6H12N2O2/c1-5-3-8(7-9)4-6(2)10-5/h5-6H,3-4H2,1-2H3: - - {} - - http://localhost/compound/InChI=1S/C10H12ClNO2/c1-7(2)14-10(13)12-9-5-3-4-8(11)6-9/h3-7H,1-2H3,(H,12,13): - - {} - - http://localhost/compound/InChI=1S/C9H7N3O4S/c1-5(13)10-9-11-6(4-17-9)7-2-3-8(16-7)12(14)15/h2-4H,1H3,(H,10,11,13): - - {} - - http://localhost/compound/InChI=1S/C6H11N3O3/c1-3-9(8-12)6(11)7-4-5(2)10/h3-4H2,1-2H3,(H,7,11): - - {} - - http://localhost/compound/InChI=1S/C5H4O2/c6-4-5-2-1-3-7-5/h1-4H: - - {} - - http://localhost/compound/InChI=1S/C8H6N4O4S/c13-4-9-11-8-10-5(3-17-8)6-1-2-7(16-6)12(14)15/h1-4H,(H,9,13)(H,10,11): - - {} - - http://localhost/compound/InChI=1S/C14H9Cl5/c15-11-5-1-9(2-6-11)13(14(17,18)19)10-3-7-12(16)8-4-10/h1-8,13H: - - {} - - http://localhost/compound/InChI=1S/C3H7NO2/c1-2-6-3(4)5/h2H2,1H3,(H2,4,5): - - {} - - http://localhost/compound/InChI=1S/C15H13NO/c1-10(17)16-13-6-7-15-12(9-13)8-11-4-2-3-5-14(11)15/h2-7,9H,8H2,1H3,(H,16,17): - - {} - - http://localhost/compound/InChI=1S/C5H10N2O/c8-6-7-4-2-1-3-5-7/h1-5H2: - - {} - - http://localhost/compound/InChI=1S/C19H17N3.ClH/c20-16-7-1-13(2-8-16)19(14-3-9-17(21)10-4-14)15-5-11-18(22)12-6-15;/h1-12,20H,21-22H2;1H: - - {} - - http://localhost/compound/InChI=1S/H4N2.H2O4S/c1-2;1-5(2,3)4/h1-2H2;(H2,1,2,3,4): - - {} - - http://localhost/compound/InChI=1S/C6H7N3O/c7-9-6(10)5-1-3-8-4-2-5/h1-4H,7H2,(H,9,10): - - {} - - http://localhost/compound/InChI=1S/CH6N2/c1-3-2/h3H,2H2,1H3: - - {} - - http://localhost/compound/InChI=1S/C6H12N4O2/c1-5-3-9(7-11)4-6(2)10(5)8-12/h5-6H,3-4H2,1-2H3: - - {} - - http://localhost/compound/InChI=1S/C2H6N2O/c1-4(3)2-5/h2H,3H2,1H3: - - {} - - http://localhost/compound/InChI=1S/C4H6N2O3/c1-3-2-6(5-8)4(7)9-3/h3H,2H2,1H3: - - {} - - http://localhost/compound/InChI=1S/C14H19N3S.ClH/c1-16(2)9-10-17(12-13-6-5-11-18-13)14-7-3-4-8-15-14;/h3-8,11H,9-10,12H2,1-2H3;1H: - - {} - - http://localhost/compound/InChI=1S/C4H7N3O3/c1-3(8)2-7(6-10)4(5)9/h2H2,1H3,(H2,5,9): - - {} - - http://localhost/compound/InChI=1S/2C2H4O2.4H2O.3Pb/c2*1-2(3)4;;;;;;;/h2*1H3,(H,3,4);4*1H2;;;/q;;;;;;3*+2/p-6: - - {} - - http://localhost/compound/InChI=1S/C5H8O2/c1-4(2)5(6)7-3/h1H2,2-3H3: - - {} - - http://localhost/compound/InChI=1S/C15H10O7.2H2O/c16-7-4-10(19)12-11(5-7)22-15(14(21)13(12)20)6-1-2-8(17)9(18)3-6;;/h1-5,16-19,21H;2*1H2: - - {} - - http://localhost/compound/InChI=1S/C5H11N3O3/c1-2-8(7-11)5(10)6-3-4-9/h9H,2-4H2,1H3,(H,6,10): - - {} - -features: [] - -title: Test dataset split of Hamster Carcinogenicity (DSSTOX/CPDB) +metadata: + http://purl.org/dc/elements/1.1/creator: http://localhost/validation/training_test_split + http://purl.org/dc/elements/1.1/title: Test dataset split of hamster_carcinogenicity + http://www.w3.org/2001/XMLSchema#anyURI: http://localhost/dataset/100 +uri: http://localhost/dataset/100 diff --git a/data/hamster_carcinogenicity.train.yaml b/data/hamster_carcinogenicity.train.yaml index fd1544f..d04877c 100644 --- a/data/hamster_carcinogenicity.train.yaml +++ b/data/hamster_carcinogenicity.train.yaml @@ -57,122 +57,183 @@ compounds: - http://localhost/compound/InChI=1S/C19H24N2O2/c22-18-13-20(19(23)15-7-2-1-3-8-15)12-17-16-9-5-4-6-14(16)10-11-21(17)18/h4-6,9,15,17H,1-3,7-8,10-13H2 - http://localhost/compound/InChI=1S/C12H8Cl6O/c13-8-9(14)11(16)5-3-1-2(6-7(3)19-6)4(5)10(8,15)12(11,17)18/h2-7H,1H2 - http://localhost/compound/InChI=1S/C5H12N2O4/c8-2-1-7(6-11)3-5(10)4-9/h5,8-10H,1-4H2 -creator: http://example.org/training_test_split -data: +data_entries: http://localhost/compound/InChI=1S/C7H6O4/c8-5-2-1-4(7(10)11)3-6(5)9/h1-3,8-9H,(H,10,11): - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - - false http://localhost/compound/InChI=1S/C3H6N2O/c6-4-5-2-1-3-5/h1-3H2: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - - true http://localhost/compound/InChI=1S/C10H13N3O2/c1-13(12-15)7-3-5-10(14)9-4-2-6-11-8-9/h2,4,6,8H,3,5,7H2,1H3: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - - false http://localhost/compound/InChI=1S/C2H6O/c1-2-3/h3H,2H2,1H3: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - - false http://localhost/compound/InChI=1S/C6H14N2O4/c1-5(10)2-8(7-12)3-6(11)4-9/h5-6,9-11H,2-4H2,1H3: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - - true http://localhost/compound/InChI=1S/C4H8N2O/c7-5-6-3-1-2-4-6/h1-4H2: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - - true http://localhost/compound/InChI=1S/Cd.2ClH/h;2*1H/q+2;;/p-2: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - - false http://localhost/compound/InChI=1S/C17H17ClO6/c1-8-5-9(19)6-12(23-4)17(8)16(20)13-10(21-2)7-11(22-3)14(18)15(13)24-17/h6-8H,5H2,1-4H3/t8-,17?/m1/s1: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - - false http://localhost/compound/InChI=1S/C4H10N2O3/c1-6(5-9)2-4(8)3-7/h4,7-8H,2-3H2,1H3: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - - true http://localhost/compound/InChI=1S/C20H22N8O5/c1-28(9-11-8-23-17-15(24-11)16(21)26-20(22)27-17)12-4-2-10(3-5-12)18(31)25-13(19(32)33)6-7-14(29)30/h2-5,8,13H,6-7,9H2,1H3,(H,25,31)(H,29,30)(H,32,33)(H4,21,22,23,26,27)/t13-/m0/s1: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - - false http://localhost/compound/InChI=1S/C2H8N2O/c3-4-1-2-5/h4-5H,1-3H2: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - - false http://localhost/compound/InChI=1S/C17H17ClO3/c1-17(2,16(19)20)21-11-12-3-5-13(6-4-12)14-7-9-15(18)10-8-14/h3-10H,11H2,1-2H3,(H,19,20): - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - - false http://localhost/compound/InChI=1S/C2H4O/c1-2-3/h2H,1H3: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - - true http://localhost/compound/InChI=1S/C2H5ClO/c1-4-2-3/h2H2,1H3: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - - true http://localhost/compound/InChI=1S/C8H5N3O4S/c12-4-9-8-10-5(3-16-8)6-1-2-7(15-6)11(13)14/h1-4H,(H,9,10,12): - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - - true http://localhost/compound/InChI=1S/C9H11N3O/c13-11-12-6-2-4-9(12)8-3-1-5-10-7-8/h1,3,5,7,9H,2,4,6H2: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - - true http://localhost/compound/InChI=1S/C20H22O3/c1-20(2,19(21)22)23-16-12-10-15(11-13-16)18-9-5-7-14-6-3-4-8-17(14)18/h3-4,6,8,10-13,18H,5,7,9H2,1-2H3,(H,21,22): - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - - false http://localhost/compound/InChI=1S/C11H8N2O5/c12-11(14)8(9-2-1-5-17-9)6-7-3-4-10(18-7)13(15)16/h1-6H,(H2,12,14): - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - - true http://localhost/compound/InChI=1S/C20H19N3.ClH/c1-13-12-16(6-11-19(13)23)20(14-2-7-17(21)8-3-14)15-4-9-18(22)10-5-15;/h2-12,21H,22-23H2,1H3;1H: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - - false http://localhost/compound/InChI=1S/C16H13N/c1-2-8-15(9-3-1)17-16-11-10-13-6-4-5-7-14(13)12-16/h1-12,17H: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - - false http://localhost/compound/InChI=1S/C12H9NO2/c14-13(15)11-7-6-9-5-4-8-2-1-3-10(11)12(8)9/h1-3,6-7H,4-5H2: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - - false http://localhost/compound/InChI=1S/C15H13NO2/c1-10(17)16(18)13-6-7-15-12(9-13)8-11-4-2-3-5-14(11)15/h2-7,9,18H,8H2,1H3: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - - true http://localhost/compound/InChI=1S/C4H8N2O2/c7-5-6-1-3-8-4-2-6/h1-4H2: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - - true http://localhost/compound/InChI=1S/C9H9NS/c11-8-10-7-6-9-4-2-1-3-5-9/h1-5H,6-7H2: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - - false http://localhost/compound/InChI=1S/BF4.Na/c2-1(3,4)5;/q-1;+1: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - - false http://localhost/compound/InChI=1S/C7H15N3O/c1-6-4-10(8-11)5-7(2)9(6)3/h6-7H,4-5H2,1-3H3: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - - true http://localhost/compound/InChI=1S/C5H10N2O3/c1-5(9)4-7(6-10)2-3-8/h8H,2-4H2,1H3: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - - true http://localhost/compound/InChI=1S/Cd.H2O4S/c;1-5(2,3)4/h;(H2,1,2,3,4)/q+2;/p-2: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - - false http://localhost/compound/InChI=1S/BrHO3.K/c2-1(3)4;/h(H,2,3,4);/q;+1/p-1: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - - true http://localhost/compound/InChI=1S/C3H6N2O2/c6-4-5-1-2-7-3-5/h1-3H2: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - - true http://localhost/compound/InChI=1S/C4H5Cl/c1-3-4(2)5/h3H,1-2H2: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - - false http://localhost/compound/InChI=1S/C6H10ClN3O3/c1-5(11)4-10(9-13)6(12)8-3-2-7/h2-4H2,1H3,(H,8,12): - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - - true http://localhost/compound/InChI=1S/C12H12N2O3/c1-2-12(8-6-4-3-5-7-8)9(15)13-11(17)14-10(12)16/h3-7H,2H2,1H3,(H2,13,14,15,16,17): - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - - false http://localhost/compound/InChI=1S/C6H12N2O4/c1-5(10)2-8(7-12)3-6(11)4-9/h6,9,11H,2-4H2,1H3: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - - true http://localhost/compound/InChI=1S/C12H8Cl6O/c13-8-9(14)11(16)5-3-1-2(6-7(3)19-6)4(5)10(8,15)12(11,17)18/h2-7H,1H2: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - - false http://localhost/compound/InChI=1S/C19H24N2O2/c22-18-13-20(19(23)15-7-2-1-3-8-15)12-17-16-9-5-4-6-14(16)10-11-21(17)18/h4-6,9,15,17H,1-3,7-8,10-13H2: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - - false http://localhost/compound/InChI=1S/C6H10N2O2/c1-3-4-8(7-10)5-6(2)9/h3H,1,4-5H2,2H3: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - - true http://localhost/compound/InChI=1S/C3H6ClNO/c1-5(2)3(4)6/h1-2H3: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - - true http://localhost/compound/InChI=1S/C10H13NO2/c1-8(2)13-10(12)11-9-6-4-3-5-7-9/h3-8H,1-2H3,(H,11,12): - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - - false http://localhost/compound/InChI=1S/C2H4N4/c3-2-4-1-5-6-2/h1H,(H3,3,4,5,6): - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - - false http://localhost/compound/InChI=1S/C14H8Cl4/c15-11-5-1-9(2-6-11)13(14(17)18)10-3-7-12(16)8-4-10/h1-8H: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - - true http://localhost/compound/InChI=1S/H4N2/c1-2/h1-2H2: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - - true http://localhost/compound/InChI=1S/C9H11N3O2/c13-10-12-6-2-4-9(12)8-3-1-5-11(14)7-8/h1,3,5,7,9H,2,4,6H2: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - - false http://localhost/compound/InChI=1S/C6Cl6/c7-1-2(8)4(10)6(12)5(11)3(1)9: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - - true http://localhost/compound/InChI=1S/C5H13N3O/c1-7(2)4-5-8(3)6-9/h4-5H2,1-3H3: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - - true http://localhost/compound/InChI=1S/HNO2.Na/c2-1-3;/h(H,2,3);/q;+1/p-1: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - - false http://localhost/compound/InChI=1S/C2HCl3/c3-1-2(4)5/h1H: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - - false http://localhost/compound/InChI=1S/C5H12N2O4/c8-2-1-7(6-11)3-5(10)4-9/h5,8-10H,1-4H2: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - - false http://localhost/compound/InChI=1S/C2H8N2/c1-4(2)3/h3H2,1-2H3: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - - true http://localhost/compound/InChI=1S/C6H5NO2/c8-6(9)5-1-3-7-4-2-5/h1-4H,(H,8,9): - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - - false http://localhost/compound/InChI=1S/CH2O/c1-2/h1H2: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - - false http://localhost/compound/InChI=1S/C6H5N2.BF4/c7-8-6-4-2-1-3-5-6;2-1(3,4)5/h1-5H;/q+1;-1: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - - false http://localhost/compound/InChI=1S/C27H30O16/c1-8-17(32)20(35)22(37)26(40-8)39-7-15-18(33)21(36)23(38)27(42-15)43-25-19(34)16-13(31)5-10(28)6-14(16)41-24(25)9-2-3-11(29)12(30)4-9/h2-6,8,15,17-18,20-23,26-33,35-38H,7H2,1H3/t8-,15+,17-,18+,20+,21-,22+,23+,26+,27?/m0/s1: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - - false http://localhost/compound/InChI=1S/C6H10N2O/c1-3-5-8(7-9)6-4-2/h3-4H,1-2,5-6H2: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - - true http://localhost/compound/InChI=1S/C2H3Cl/c1-2-3/h2H,1H2: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - - true http://localhost/compound/InChI=1S/C14H14ClN3O2S/c1-8-4-3-5-10(9(8)2)16-12-6-11(15)17-14(18-12)21-7-13(19)20/h3-6H,7H2,1-2H3,(H,19,20)(H,16,17,18): - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - - false http://localhost/compound/InChI=1S/C2H8N2.2ClH/c1-3-4-2;;/h3-4H,1-2H3;2*1H: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - - true features: -- http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB) -title: Training dataset split of Hamster Carcinogenicity (DSSTOX/CPDB) + http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://www.opentox.org/api/1.1#hasSource: +metadata: + http://purl.org/dc/elements/1.1/creator: http://localhost/validation/training_test_split + http://purl.org/dc/elements/1.1/title: Training dataset split of hamster_carcinogenicity + http://www.w3.org/2001/XMLSchema#anyURI: http://localhost/dataset/99 +uri: http://localhost/dataset/99 diff --git a/data/hamster_carcinogenicity.yaml b/data/hamster_carcinogenicity.yaml old mode 100644 new mode 100755 index 395ec47..108edd9 --- a/data/hamster_carcinogenicity.yaml +++ b/data/hamster_carcinogenicity.yaml @@ -85,177 +85,268 @@ compounds: - http://localhost/compound/InChI=1S/C9H11N3O2/c10-9(13)12(11-14)7-6-8-4-2-1-3-5-8/h1-5H,6-7H2,(H2,10,13) - http://localhost/compound/InChI=1S/C3H6N2O/c6-4-5-2-1-3-5/h1-3H2 - http://localhost/compound/InChI=1S/BF4.Na/c2-1(3,4)5;/q-1;+1 -data: +data_entries: http://localhost/compound/InChI=1S/C14H8Cl4/c15-11-5-1-9(2-6-11)13(14(17)18)10-3-7-12(16)8-4-10/h1-8H: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - true http://localhost/compound/InChI=1S/C3H6ClNO/c1-5(2)3(4)6/h1-2H3: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - true http://localhost/compound/InChI=1S/C2H8N2O/c3-4-1-2-5/h4-5H,1-3H2: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - false http://localhost/compound/InChI=1S/C4H10N2O3/c1-6(5-9)2-4(8)3-7/h4,7-8H,2-3H2,1H3: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - true http://localhost/compound/InChI=1S/CH2O/c1-2/h1H2: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - false http://localhost/compound/InChI=1S/C5H12N2O4/c8-2-1-7(6-11)3-5(10)4-9/h5,8-10H,1-4H2: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - false http://localhost/compound/InChI=1S/C7H15N3O/c1-6-4-10(8-11)5-7(2)9(6)3/h6-7H,4-5H2,1-3H3: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - true http://localhost/compound/InChI=1S/C4H8N2O2/c7-5-6-1-3-8-4-2-6/h1-4H2: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - true http://localhost/compound/InChI=1S/C16H13N/c1-2-8-15(9-3-1)17-16-11-10-13-6-4-5-7-14(13)12-16/h1-12,17H: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - false http://localhost/compound/InChI=1S/C3H6O2/c4-1-3-2-5-3/h3-4H,1-2H2: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - true http://localhost/compound/InChI=1S/C4H6N2O3/c1-3-2-6(5-8)4(7)9-3/h3H,2H2,1H3: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - true http://localhost/compound/InChI=1S/C6H5NO2/c8-6(9)5-1-3-7-4-2-5/h1-4H,(H,8,9): - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - false http://localhost/compound/InChI=1S/2C2H4O2.4H2O.3Pb/c2*1-2(3)4;;;;;;;/h2*1H3,(H,3,4);4*1H2;;;/q;;;;;;3*+2/p-6: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - false http://localhost/compound/InChI=1S/C17H17ClO6/c1-8-5-9(19)6-12(23-4)17(8)16(20)13-10(21-2)7-11(22-3)14(18)15(13)24-17/h6-8H,5H2,1-4H3/t8-,17?/m1/s1: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - false http://localhost/compound/InChI=1S/C3H6N2O2/c6-4-5-1-2-7-3-5/h1-3H2: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - true http://localhost/compound/InChI=1S/C3H7NO2/c1-2-6-3(4)5/h2H2,1H3,(H2,4,5): - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - true http://localhost/compound/InChI=1S/C5H8O2/c1-4(2)5(6)7-3/h1H2,2-3H3: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - false http://localhost/compound/InChI=1S/C2H6N2O/c1-4(3)2-5/h2H,3H2,1H3: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - true http://localhost/compound/InChI=1S/C6H12N2O4/c1-5(10)2-8(7-12)3-6(11)4-9/h6,9,11H,2-4H2,1H3: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - true http://localhost/compound/InChI=1S/C5H4O2/c6-4-5-2-1-3-7-5/h1-4H: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - false http://localhost/compound/InChI=1S/C4H8N2O/c7-5-6-3-1-2-4-6/h1-4H2: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - true http://localhost/compound/InChI=1S/C9H11N3O2/c10-9(13)12(11-14)7-6-8-4-2-1-3-5-8/h1-5H,6-7H2,(H2,10,13): - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - true http://localhost/compound/InChI=1S/C14H14ClN3O2S/c1-8-4-3-5-10(9(8)2)16-12-6-11(15)17-14(18-12)21-7-13(19)20/h3-6H,7H2,1-2H3,(H,19,20)(H,16,17,18): - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - false http://localhost/compound/InChI=1S/H4N2.H2O4S/c1-2;1-5(2,3)4/h1-2H2;(H2,1,2,3,4): - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - true http://localhost/compound/InChI=1S/C5H10N2O/c8-6-7-4-2-1-3-5-7/h1-5H2: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - true http://localhost/compound/InChI=1S/C10H13N3O2/c1-13(12-15)7-3-5-10(14)9-4-2-6-11-8-9/h2,4,6,8H,3,5,7H2,1H3: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - false http://localhost/compound/InChI=1S/C3H6N2O/c6-4-5-2-1-3-5/h1-3H2: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - true http://localhost/compound/InChI=1S/C4H8N2O3/c1-3-9-4(7)6(2)5-8/h3H2,1-2H3: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - true http://localhost/compound/InChI=1S/C6H10N2O2/c1-3-4-8(7-10)5-6(2)9/h3H,1,4-5H2,2H3: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - true http://localhost/compound/InChI=1S/C14H9Cl5/c15-11-5-1-9(2-6-11)13(14(17,18)19)10-3-7-12(16)8-4-10/h1-8,13H: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - false http://localhost/compound/InChI=1S/BrHO3.K/c2-1(3)4;/h(H,2,3,4);/q;+1/p-1: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - true http://localhost/compound/InChI=1S/C2H5ClO/c1-4-2-3/h2H2,1H3: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - true http://localhost/compound/InChI=1S/C10H12ClNO2/c1-7(2)14-10(13)12-9-5-3-4-8(11)6-9/h3-7H,1-2H3,(H,12,13): - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - false http://localhost/compound/InChI=1S/C8H5N3O4S/c12-4-9-8-10-5(3-16-8)6-1-2-7(15-6)11(13)14/h1-4H,(H,9,10,12): - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - true http://localhost/compound/InChI=1S/Cd.2ClH/h;2*1H/q+2;;/p-2: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - false http://localhost/compound/InChI=1S/C20H19N3.ClH/c1-13-12-16(6-11-19(13)23)20(14-2-7-17(21)8-3-14)15-4-9-18(22)10-5-15;/h2-12,21H,22-23H2,1H3;1H: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - false http://localhost/compound/InChI=1S/BF4.Na/c2-1(3,4)5;/q-1;+1: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - false http://localhost/compound/InChI=1S/C6H5N2.BF4/c7-8-6-4-2-1-3-5-6;2-1(3,4)5/h1-5H;/q+1;-1: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - false http://localhost/compound/InChI=1S/C2H4N4/c3-2-4-1-5-6-2/h1H,(H3,3,4,5,6): - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - false http://localhost/compound/InChI=1S/C9H6O2/c10-9-6-5-7-3-1-2-4-8(7)11-9/h1-6H: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - false http://localhost/compound/InChI=1S/C2HCl3/c3-1-2(4)5/h1H: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - false http://localhost/compound/InChI=1S/C2H8N2/c1-4(2)3/h3H2,1-2H3: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - true http://localhost/compound/InChI=1S/C6H7N3O/c7-9-6(10)5-1-3-8-4-2-5/h1-4H,7H2,(H,9,10): - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - false http://localhost/compound/InChI=1S/C12H8Cl6O/c13-8-9(14)11(16)5-3-1-2(6-7(3)19-6)4(5)10(8,15)12(11,17)18/h2-7H,1H2: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - false http://localhost/compound/InChI=1S/Cd.H2O4S/c;1-5(2,3)4/h;(H2,1,2,3,4)/q+2;/p-2: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - false http://localhost/compound/InChI=1S/C5H10N2O3/c1-5(9)4-7(6-10)2-3-8/h8H,2-4H2,1H3: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - true http://localhost/compound/InChI=1S/C27H30O16/c1-8-17(32)20(35)22(37)26(40-8)39-7-15-18(33)21(36)23(38)27(42-15)43-25-19(34)16-13(31)5-10(28)6-14(16)41-24(25)9-2-3-11(29)12(30)4-9/h2-6,8,15,17-18,20-23,26-33,35-38H,7H2,1H3/t8-,15+,17-,18+,20+,21-,22+,23+,26+,27?/m0/s1: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - false http://localhost/compound/InChI=1S/C12H12N2O3/c1-2-12(8-6-4-3-5-7-8)9(15)13-11(17)14-10(12)16/h3-7H,2H2,1H3,(H2,13,14,15,16,17): - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - false http://localhost/compound/InChI=1S/C8H6N4O4S/c13-4-9-11-8-10-5(3-17-8)6-1-2-7(16-6)12(14)15/h1-4H,(H,9,13)(H,10,11): - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - true http://localhost/compound/InChI=1S/C9H7N3O4S/c1-5(13)10-9-11-6(4-17-9)7-2-3-8(16-7)12(14)15/h2-4H,1H3,(H,10,11,13): - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - true http://localhost/compound/InChI=1S/CH6N2/c1-3-2/h3H,2H2,1H3: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - true http://localhost/compound/InChI=1S/C12H9NO2/c14-13(15)11-7-6-9-5-4-8-2-1-3-10(11)12(8)9/h1-3,6-7H,4-5H2: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - false http://localhost/compound/InChI=1S/C15H10O7.2H2O/c16-7-4-10(19)12-11(5-7)22-15(14(21)13(12)20)6-1-2-8(17)9(18)3-6;;/h1-5,16-19,21H;2*1H2: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - false http://localhost/compound/InChI=1S/C7H6O4/c8-5-2-1-4(7(10)11)3-6(5)9/h1-3,8-9H,(H,10,11): - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - false http://localhost/compound/InChI=1S/C9H9NS/c11-8-10-7-6-9-4-2-1-3-5-9/h1-5H,6-7H2: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - false http://localhost/compound/InChI=1S/C20H22O3/c1-20(2,19(21)22)23-16-12-10-15(11-13-16)18-9-5-7-14-6-3-4-8-17(14)18/h3-4,6,8,10-13,18H,5,7,9H2,1-2H3,(H,21,22): - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - false http://localhost/compound/InChI=1S/C6H12N2O2/c1-5-3-8(7-9)4-6(2)10-5/h5-6H,3-4H2,1-2H3: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - true http://localhost/compound/InChI=1S/C10H13NO2/c1-8(2)13-10(12)11-9-6-4-3-5-7-9/h3-8H,1-2H3,(H,11,12): - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - false http://localhost/compound/InChI=1S/C6H14N2O4/c1-5(10)2-8(7-12)3-6(11)4-9/h5-6,9-11H,2-4H2,1H3: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - true http://localhost/compound/InChI=1S/C19H24N2O2/c22-18-13-20(19(23)15-7-2-1-3-8-15)12-17-16-9-5-4-6-14(16)10-11-21(17)18/h4-6,9,15,17H,1-3,7-8,10-13H2: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - false http://localhost/compound/InChI=1S/C5H11N3O3/c1-2-8(7-11)5(10)6-3-4-9/h9H,2-4H2,1H3,(H,6,10): - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - true http://localhost/compound/InChI=1S/C14H19N3S.ClH/c1-16(2)9-10-17(12-13-6-5-11-18-13)14-7-3-4-8-15-14;/h3-8,11H,9-10,12H2,1-2H3;1H: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - false http://localhost/compound/InChI=1S/H4N2/c1-2/h1-2H2: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - true http://localhost/compound/InChI=1S/C4H5Cl/c1-3-4(2)5/h3H,1-2H2: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - false http://localhost/compound/InChI=1S/C17H17ClO3/c1-17(2,16(19)20)21-11-12-3-5-13(6-4-12)14-7-9-15(18)10-8-14/h3-10H,11H2,1-2H3,(H,19,20): - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - false http://localhost/compound/InChI=1S/C2H8N2.2ClH/c1-3-4-2;;/h3-4H,1-2H3;2*1H: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - true http://localhost/compound/InChI=1S/C6H10ClN3O3/c1-5(11)4-10(9-13)6(12)8-3-2-7/h2-4H2,1H3,(H,8,12): - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - true http://localhost/compound/InChI=1S/C6H11N3O3/c1-3-9(8-12)6(11)7-4-5(2)10/h3-4H2,1-2H3,(H,7,11): - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - true http://localhost/compound/InChI=1S/C11H8N2O5/c12-11(14)8(9-2-1-5-17-9)6-7-3-4-10(18-7)13(15)16/h1-6H,(H2,12,14): - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - true http://localhost/compound/InChI=1S/C2H6O/c1-2-3/h3H,2H2,1H3: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - false http://localhost/compound/InChI=1S/C5H13N3O/c1-7(2)4-5-8(3)6-9/h4-5H2,1-3H3: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - true http://localhost/compound/InChI=1S/C15H13NO/c1-10(17)16-13-6-7-15-12(9-13)8-11-4-2-3-5-14(11)15/h2-7,9H,8H2,1H3,(H,16,17): - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - true http://localhost/compound/InChI=1S/C5H6N2OS/c1-3-2-4(8)7-5(9)6-3/h2H,1H3,(H2,6,7,8,9): - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - true http://localhost/compound/InChI=1S/C9H11N3O/c13-11-12-6-2-4-9(12)8-3-1-5-10-7-8/h1,3,5,7,9H,2,4,6H2: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - true http://localhost/compound/InChI=1S/C6H12N4O2/c1-5-3-9(7-11)4-6(2)10(5)8-12/h5-6H,3-4H2,1-2H3: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - true http://localhost/compound/InChI=1S/C19H17N3.ClH/c20-16-7-1-13(2-8-16)19(14-3-9-17(21)10-4-14)15-5-11-18(22)12-6-15;/h1-12,20H,21-22H2;1H: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - false http://localhost/compound/InChI=1S/HNO2.Na/c2-1-3;/h(H,2,3);/q;+1/p-1: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - false http://localhost/compound/InChI=1S/C6Cl6/c7-1-2(8)4(10)6(12)5(11)3(1)9: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - true http://localhost/compound/InChI=1S/C2H3Cl/c1-2-3/h2H,1H2: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - true http://localhost/compound/InChI=1S/C6H10N2O/c1-3-5-8(7-9)6-4-2/h3-4H,1-2,5-6H2: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - true http://localhost/compound/InChI=1S/C9H11N3O2/c13-10-12-6-2-4-9(12)8-3-1-5-11(14)7-8/h1,3,5,7,9H,2,4,6H2: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - false http://localhost/compound/InChI=1S/C15H13NO2/c1-10(17)16(18)13-6-7-15-12(9-13)8-11-4-2-3-5-14(11)15/h2-7,9,18H,8H2,1H3: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - true http://localhost/compound/InChI=1S/C20H22N8O5/c1-28(9-11-8-23-17-15(24-11)16(21)26-20(22)27-17)12-4-2-10(3-5-12)18(31)25-13(19(32)33)6-7-14(29)30/h2-5,8,13H,6-7,9H2,1H3,(H,25,31)(H,29,30)(H,32,33)(H4,21,22,23,26,27)/t13-/m0/s1: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): false + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - false http://localhost/compound/InChI=1S/C4H7N3O3/c1-3(8)2-7(6-10)4(5)9/h2H2,1H3,(H2,5,9): - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - true http://localhost/compound/InChI=1S/C2H4O/c1-2-3/h2H,1H3: - - http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB): true + http://localhost/dataset/1/feature/hamster_carcinogenicity: + - true features: -- http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB) -title: Hamster Carcinogenicity (DSSTOX/CPDB) + http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://www.opentox.org/api/1.1#hasSource: hamster_carcinogenicity.csv + http://purl.org/dc/elements/1.1/title: hamster_carcinogenicity +metadata: + http://www.opentox.org/api/1.1#hasSource: hamster_carcinogenicity.csv + http://purl.org/dc/elements/1.1/title: hamster_carcinogenicity + http://www.w3.org/2001/XMLSchema#anyUri: http://localhost/dataset/1 +uri: http://localhost/dataset/1 diff --git a/data/hamster_carcinogenicity_TRAIN.csv~ b/data/hamster_carcinogenicity_TRAIN.csv~ deleted file mode 100644 index 009808f..0000000 --- a/data/hamster_carcinogenicity_TRAIN.csv~ +++ /dev/null @@ -1,85 +0,0 @@ -CC=O,true -C12C3=C(C=CC=C3)CC1=CC(=CC=2)NC(C)=O,true -O=C(N)\C(C2=CC=CO2)=C/C1=CC=C([N+]([O-])=O)O1,true -C1(N=CNN=1)N,false -Br(=O)(=O)[O-].[K+],true -[Cl-].[Cd+2].[Cl-],false -O=S(=O)([O-])[O-].[Cd+2],false -ClC1=CC(=NC(=N1)SCC(=O)O)NC2=CC=CC(=C2C)C,false -ClCOC,true -C=C(Cl)C=C,false -Clc1ccc(cc1)c2ccc(COC(C)(C)C(O)=O)cc2,false -O=C1OC2=C(C=CC=C2)C=C1,false -ClC(=C(C1=CC=C(C=C1)Cl)C2=CC=C(C=C2)Cl)Cl,true -ClC(C(C1=CC=C(C=C1)Cl)C2=CC=C(C=C2)Cl)(Cl)Cl,false -C=CCN(CC=C)N=O,true -Cl\C2=C(/Cl)C3(Cl)C1C4CC(C1C2(Cl)C3(Cl)Cl)C5OC45,false -O=C(N(C)C)Cl,true -CN(C)N,true -N(NC)C.[H]Cl.[H]Cl,true -CCO,false -O=C(N(CC)N=O)NCCO,true -O=C(N(CC)N=O)NCC(=O)C,true -C=O,false -[O-][N+](=O)C1=CC=C(O1)C2=CSC(=N2)NNC=O,true -O=CC1=CC=CO1,false -OCC1CO1,true -O=C2C1=C(OC)C=C(OC)C(Cl)=C1O[C@]32C(OC)=CC(C[C@@](C)3[H])=O,false -ClC1=C(C(=C(C(=C1Cl)Cl)Cl)Cl)Cl,true -NN,true -OS(=O)(=O)O.NN,true -CC(=O)N(O)C1=CC2=C(C=C1)C3=CC=CC=C3C2,true -OCCNN,false -O=C(C1=CC=NC=C1)NN,false -OC(=O)C1=CC=NC=C1,false -O=C(NC1=CC=CC(=C1)Cl)OC(C)C,false -O=C(NC1=CC=CC=C1)OC(C)C,false -[O-]C(C)=O.[O-]C(C)=O.[Pb+2].[OH-].[OH-].[Pb+2].[OH-].[OH-].[Pb+2],false -CN(C)CCN(CC2=CC=CS2)C1=NC=CC=C1.Cl,false -NC1=C2C(=NC(=N1)N)N=CC(=N2)CN(C3=CC=C(C=C3)C(=O)N[C@@H](CCC(=O)O)C(=O)O)C,false -CN(N)C=O,true -O=C(C(=C)C)OC,false -CNN,true -O=C(C1=CC=CN=C1)CCCN(N=O)C,false -CC1=CC(=O)NC(=S)N1,true -CC(C(O)=O)(OC1=CC=C(C=C1)C2CCCC3=C2C=CC=C3)C,false -O=N[O-].[Na+],false -[O-][N+](C1=CC=C(C2=CSC(NC(C)=O)=N2)O1)=O,true -[O-][N+](=O)C1=CC=C(O1)C2=CSC(=N2)NC=O,true -O=[N+](C1=CC=C2C3=C1C=CC=C3CC2)[O-],false -N(CC(CO)O)(CC(O)C)N=O,true -N(CC(CO)O)(CC(C)=O)N=O,true -N(CC(CO)O)(CCO)N=O,false -O=C(C)CN(N=O)CCO,true -C1C(N(C(CN1N=O)C)C)C,true -N(CC(C)=O)(CC=C)N=O,true -N(CC(CO)O)(C)N=O,true -O=NN1CCOCC1,true -N1C=CC=C(C=1)C2N(N=O)CCC2,true -C1=CC=C(C=[N+]1[O-])C2CCCN2N=O,false -O=NN1CCCCC1,true -O=NN1CCCC1,true -O=C(N(CC(C)=O)N=O)NCCCl,true -N(C(=O)N)(N=O)CC(C)=O,true -C1(CCN=C=S)=CC=CC=C1,false -O=C1C(C2=CC=CC=C2)(C(=O)NC(=O)N1)CC,false -C1=C2C(=CC=C1NC3=CC=CC=C3)C=CC=C2,false -O=C1N2C(C3=C(C=CC=C3)CC2)CN(C1)C(=O)C4CCCCC4,false -C1(=CC(=C(O)C=C1)O)C(O)=O,false -O=C1C2=C(C=C(C=C2O)O)O/C(=C\1O)C3=CC(=C(C=C3)O)O.O.O,false -C1=C(C=CC(=C1)C(C2=CC=C(N)C(=C2)C)=C3C=CC(=N)C=C3)N.[H]Cl,false -C(C1=CC=C(C=C1)N)(C2=CC=C(C=C2)N)=C3C=CC(C=C3)=N.[H]Cl,false -OC2=CC1=C(C(O)=C2)C(C(O[C@@H]4O[C@@H]([C@H]([C@H](O)[C@H]4O)O)CO[C@H]3[C@H](O)[C@H](O)[C@H]([C@H](C)O3)O)=C(C5=CC(O)=C(C=C5)O)O1)=O,false -ClC(=CCl)Cl,false -NC(=O)OCC,true -C=CCl,true -N#[N+]C1=CC=CC=C1.F[B-](F)(F)F,false -C1(CN(CC(N1N=O)C)N=O)C,true -N(CCN(C)C)(C)N=O,true -C1(CN(N=O)CC(O1)C)C,true -O1C(N(CC1C)N=O)=O,true -CCOC(=O)N(C)N=O,true -C1N(COC1)N=O,true -O=C(N(CCC1=CC=CC=C1)N=O)N,true -O=NN1CCC1,true -F[B-](F)(F)F.[Na+],false diff --git a/data/kazius.csv b/data/kazius.csv index c1e8999..9dc3a74 100644 --- a/data/kazius.csv +++ b/data/kazius.csv @@ -1,4069 +1,4069 @@ -COC1=CC=C(C=C1)C2=NC(=C([NH]2)C3=CC=CC=C3)C4=CC=CC=C4,true -CC1=C(C=CC=C1N=C=O)N=C=O,true -OCCC1=C[N](N=O)C2=CC=CC=C12,true -[O-][N+](=O)C1=CC(=CS1)C(=O)NC2=CC(=CC=C2)Br,true -CN(N=O)C1=CC=CC=C1,true -CN2C1=C(C=CC=C1)C(=O)C3=C2C4=C(C=C3O)OC(C4)C5(C)CO5,true -CS(=O)(=O)NC1=CC=C(C=C1)NC3=C2C=CC=CC2=NC4=CC=CC=C34,true -[O-][N+](=O)C1=CC=C(C=C1)OC2=C(C=C(C=C2)Cl)Cl,true -OC1=C(C=CC(=C1)[N+]([O-])=O)[N+]([O-])=O,true -C[N]2C(=NC3=C1N=CC=NC1=C(C)C(=C23)C)N,true -CSC1=C(C(=C(C(=C1)SC)N)C)N,true -OC1=CC4=C(C=C1)C3=CC2=CC=CC=C2C=C3C5=CC=CC=C45,true -CC(=O)C(Br)=C,true -NCCNCCNCCN,true -CN(C)C1=CC=C(C=C1)CCO,true -COC4=CC(=O)C3=C2[NH]C1=CC=NC=C1C2=CN=C3C4=O,true -N1C3C1C2=CSC=C2C4=CSC=C34,true -CC1=C(C=C(C(=C1)N=NC2=CC=CC=C2)N)N,true -NC3=CC2=NC1=CC(=CC=C1C=C2C=C3)N,true -[O-][N+](=O)C3=C1CCC2=CC=CC(=C12)C=C3,true -NC1=CC=C(C=C1)C=CC2=CC=C(C=C2)[N+]([O-])=O,true -COC(=O)C1(OC1(C)C(O)C(C)C)C(N)=O,true -CC(I)C1OCC(CO)O1,true -CN(C)CCNC(=O)C3=C2N=C1C=CC=CC1=NC2=CC=C3,true -CC1=C(C=C(C=C1)N)C,true -CC1=C3C(=CC=N1)C2=CC=CC=C2[NH]3,true -OC1CN(CCO1)N=O,true -[O-][N+](=O)C1=C(C=CC=C1)C(Cl)=O,true -ClCCOP(OCCCl)OCCCl,true -COC(=O)NC2=NC1=CC=CC=C1[NH]2,true -CCOC(=O)N(CCCC(=O)C1=CN=CC=C1)N=O,true -C1CSCCS1,true -NC1=CC=C(C=C1)C2=CC=C(C=C2)Cl,true -NNC2=C1C=CC=CC1=C(N=N2)NN,true -C[N]3C(=NC4=CC=C2C=CC1=CC=C(O)C=C1C2=C34)C,true -CC(=O)OC1=CC=C(C=C1)CCl,true -NC1=CC=C(C=C1)OC2=CC=C(C=C2)[N+]([O-])=O,true -[O-][N+](=O)C1=CC=C(C=C1)C2=C(C=C(C=C2)[N+]([O-])=O)[N+]([O-])=O,true -COC1=C(C=CC=C1)[N+]([O-])=O,true -C1=CC2=C(C=C1)C4=C(C=C2)C3=NC=CC=C3C=C4,true -OC2=C3C=CC4=CC=C(C5=C1C=CC=CC1=C(C=C2)C3=C45)[N+]([O-])=O,true -[O-][N+](=O)C1=CC(=C(C(=C1)[N+]([O-])=O)Cl)[N+]([O-])=O,true -[O-][N+](=O)C1=C3C(=CC=C1)C2=CC=CC=C2C(O3)=O,true -CC3=C2C1=CC=CC=C1C=CC2=C(C4=CC=CC=C34)CO,true -CC3=C2C=CC1=CC=CC=C1C2=CC4=CC=CC=C34,true -CC1=CC=C(C=C1)S(=O)(=O)OCC2=CC=C(C=C2)[N+]([O-])=O,true -CN1CCN(CC1)C5=CC(=O)C2=C(C4=C(C(=N2)C)C3=CC=CC=C3[NH]4)C5=O,true -CC1=C(C3=C(C=C1)C(=O)C2=C(C=CC=C2)C3=O)O,true -CC2C1=C(C=CC(=C1)F)C3=C2C=C(C=C3)F,true -O=NC1=CC3=C(C=C1)C2=CC=CC=C2C3,true -OC3C1OC1C2=C4C(=C(C=C2)O)C7=C5C(=C34)C(=CC=C5C6OC6C7=O)O,true -OC(=O)C1=CC(=C(C=C1)Cl)[N+]([O-])=O,true -N(C1=CC=CC=C1)C2=CC=C(C=C2)NC3=CC=CC=C3,true -C[N+]3=C2C=CC1OC1C2=CC=C3,true -COC1=C(C=C(C=C1)N)N,true -CC(=O)NC1=CC=C(C=C1)C(=O)C2OC2C3=CC=CC=C3,true -C[N]1C(=NC2=C1C=C(C)C3=NC(=CN=C23)C4=CC=CC=C4)N,true -[O-][N+]([O-])=C1CCCC1,true -COC2=C1OC(=CC1=C(C=C2)N(CCCl)CCCl)[N+]([O-])=O,true -COC3=C(C=C2N=C1C=C(C(=CC1=NC2=C3)N)OC)N,true -C[N]2C(=NC3=NC1=CC=CC=C1C=C23)N,true -OC5C(O)C4=C(C3=NC2=C1C=CC=CC1=CC=C2C=C3C=C4)C6OC56,true -NC3=C2C=C1C=CC=CC1=NC2=CC=C3,true -[O-][N+](=O)C1=CC4=C2C(=C1)CCC3=C2C(=CC(=C3)[N+]([O-])=O)CC4,true -[O-][N+](=O)C3=CC2=NC1=CC=CC=C1N=C2C=C3,true -CCOP(=O)(OC1=CC=C(C=C1)[N+]([O-])=O)C2=CC=CC=C2,true -[O-][N+](=O)C3=C2C=CC1=CC=CC4=C1C2=C(C=C3)C(=O)C4=O,true -CC(C)S(Cl)(=O)=O,true -CC3=C2C1=CC=CC=C1[NH]C2=CC(=N3)N,true -ClCC(Cl)CBr,true -CC2=C(N=C1C(=C(C=CC1=N2)N)C)C,true -CC1=CC4=C(C=C1)C5=C2C=CC=CC2=CC6=C3C=CC=CC3=CC4=C56,true -NC1=CC(=CC=C1)[N+]([O-])=O,true -[O-][N+](=O)C2=C1SN=C(C1=CC=C2)Cl,true -[O-][N+](=O)C4=C2C=CC=C3C1=CC=CC=C1C(=C23)C(=C4)[N+]([O-])=O,true -[O-][N+](=O)C1=C(C=CC=C1)SSC(Cl)=C(Cl)Cl,true -CN(C)CCCNC2=C1C(=CC=C(C1=NC3=CC=CC=C23)Cl)[N+]([O-])=O,true -COC4=CC(=O)C3=C2[NH]C1=C(CCCC1)C2=C(C)N=C3C4=O,true -CC=CC=O,true -C[N+]2=C1C=CC(=CC1=CC3=CC=CC=C23)N,true -CC(=O)ON(C(C)=O)C1=CC=C(C=C1)SC2=CC=CC=C2,true -CC1C=C(C=O)C(=CC2(O)CC(C)(C)CC12)C=O,true -C1=CC2=C(C=C1)C3=CC=C4C=CC=C5C=CC(=C2)C3=C45,true -ClC2=C1C=CC=CC1=CC=C2,true -C2C1=C(C=CC=C1)C3=C2C4=C(C=C3)C=CC5=C4C=CC=C5,true -CC1=C(C=CC(=C1)N)N,true -COC1=CC(=C(C=C1)OC)N=NC3=C2C=CC=CC2=CC=C3O,true -CN(C)C1=CC=C(C=C1)N=NC3=C2C=CC=CC2=CC=C3,true -COP(=O)(OC)OC,true -ClC(Cl)C#N,true -[O-][N+](=O)C1=CC2=C(C=C1)NCC2,true -[O-][N+](=O)C1=CC(=CS1)C(=O)NC2=C(C=CC=C2)F,true -C[N]1C(=NC=C1[N+]([O-])=O)C2NC(CO)(CO)CO2,true -COC1=C(C=CC(=C1)O)NC3=C2C=CC=CC2=NC4=CC=CC=C34,true -COC(=O)C1=C(C=CC=C1)O,true -O1C4C1C2=C(C=CC3=CC=CC=C23)C5=C4C=CC=C5,true -CC1=CC(=C(C=C1)[N+]([O-])=O)[N+]([O-])=O,true -O=C5C=C3C2=C(C=C1C=CC=CC1=C2)C4=C3C(=CC=C4)C5=O,true -[O-][N+](=O)C1=CC=C(O1)C=CC=NN2CC(=O)NC2=O,true -C[N]1C(=NC2=NC=C(C=C12)C3=CC=CC=C3)N,true -BrC(=C)C=O,true -CC(=O)NC(CSC(Cl)=C(Cl)C(Cl)=C(Cl)Cl)C(O)=O,true -[O-][N+](=O)C2=C1C(=CC=CC1=CC=C2)[N+]([O-])=O,true -COC4=C1C5=C(C(OC1=C3C2C=COC2OC3=C4)=O)C(CC5)O,true -CC(=C)C2=CC=C(C)C1=CC=C(C=O)C1=C2,true -CC1=CC=C[N]2C1=NC3=CC=C(N)N=C23,true -C1=CC2=C(C=C1)C3=CN=C4C=CC=C5C=CC(=C2)C3=C45,true -COC(=O)C(=CC1=CC=C(O1)[N+]([O-])=O)[N+]([O-])=O,true -ClCC4=CC=C3C2=C1C(=CC=CC1=CC=C2)C3=C4,true -[O-][N+](=O)C1=CC(=C(C=C1)Cl)[N+]([O-])=O,true -COC(=O)C(=CC1=CC=C(O1)[N+]([O-])=O)C#N,true -C(N1C3C1C2=C(C=CC=C2)C4=C3C=CC=C4)C5=CC=CC=C5,true -OC1C(O)C5=C4C2=C1C=CC=C2C3=CC=CC=C3C4=C(C=C5)[N+]([O-])=O,true -CN(C)C1=CC=C(C=C1)C=CC2=CC(C=C(C)O2)=C(C#N)C#N,true -CCCCOCC1CO1,true -OC(=O)C=CC1=CC(=CC=C1)[N+]([O-])=O,true -NC(O)=NO,true -FCC1CO1,true -ClC(C(=O)NCC1=CC=CC=C1)C2=CC=CC=C2,true -CC1(C)CC(O)CC(C)(C)N1O,true -CC(=O)NC1=CC=C(C=C1)SC2=CC=CC=C2,true -OC1=C(C=CC=C1)NC2=C(C=C(C=C2)[N+]([O-])=O)[N+]([O-])=O,true -CCC(=O)N(O)C1=CC=C(C=C1)C2=CC=CC=C2,true -O=CC1CC(=O)C(=O)CO1,true -C(COCC1CO1)OCC2CO2,true -C1CN1,true -OCC(CBr)(CBr)CBr,true -CCCCCCCCCCCCCCCCCC(=O)OCC1=CC=C2C(=CCC(C=C12)C(C)=C)C,true -OC(=O)C1=CC=C(C=C1)C=NN4N=NC2=C([NH]C3=CC=CC=C23)C4=O,true -ONC1=CC=C(C=C1)SC2=CC=CC=C2,true -CC1=CC=C[N]2C1=NC3=CC=C(NO)N=C23,true -ClC1=NC=CC=C1,true -FC2=CC1=NC=CC=C1C=C2,true -CN(C)CCNC(=O)C2=C1C(C3=C(C(C1=CC=C2)=O)C=CC=C3)=O,true -NC1=CC=C(C=C1)N,true -[O-][N+](=O)C3=CC2=C(C=C1C=CC=CC1=C2C=C3)[N+]([O-])=O,true -[O-][N+](=O)C1=CC4=C3C(=C1[N+]([O-])=O)C2=CC=CC=C2C3=CC=C4,true -[O-][N+](=O)C1=CC=C(C=C1)C=C,true -CN(CS(O)(=O)=O)C1=C(C)N(C)N(C1=O)C2=CC=CC=C2,true -N1C5C1C3=C(C2=CC=CC=C2C4=CC=CC=C34)C6=C5C=CC=C6,true -NC(=O)C(=CC1=CC=C(O1)[N+]([O-])=O)C2=CC=CO2,true -NC2=CC=C1SN=C(Cl)C1=C2,true -ClC1OC1CBr,true -OC2=C1C=CC=NC1=CC=C2,true -NC3=CC2=NC1=CC=CC(=C1N=C2C=C3)N,true -[O-][N+](=O)C1=CC(=CS1)C(=O)NC2=C(C=CC=C2)Br,true -C1=CN=C(C=C1)C2=CC=NC=C2,true -CC(C)C1CCC(C)CC1=O,true -CCOS(C)(=O)=O,true -O=NN1CCOCC1,true -[O-][N+](=O)C1=CC=C(C=C1)C=CC2=CC=C(C=C2)C#N,true -CCCC=CCC=O,true -NNC(=O)CNC(=O)C=[N+]=[N-],true -C=CCCCCC1CO1,true -CC(=O)NC1=CC(=CC=C1)N,true -CC1=C(C=CC=C1N)N,true -OC2=C3C=CC4=C1C=CC=CC1=CC5=CC=C(C=C2)C3=C45,true -CC1=CC3=C(C=C1)C2=CC=CC=C2C=C3,true -[O-][N+](=O)C1=C(C=CC(=C1)N=[N+]=[N-])F,true -COC4=CC(=O)C3=C2[NH]C1=CC=NC=C1C2=C(C)N=C3C4=O,true -CCC=CC=CC=CC=CC=COCC(O)CO,true -CNC(=O)ON(C(C)=O)C(=O)NC,true -[O-][N+](=O)C1=CC(=C(C=C1)I)[N+]([O-])=O,true -CC4=C2C=C1C=CC=CC1=CC2=C3C=CC=CC3=C4,true -C1OC1C2=CC=CC=C2,true -[O-][N+](=O)C1=CC(=CC(=C1)CCl)[N+]([O-])=O,true -CC(=O)OCC2=C1C=CC=CC1=CC3=CC=CC=C23,true -ClCC=CCl,true -COC1=CC=C(C=C1)N=O,true -NC1=C(C=CC=C1)C2=CC=CC=C2,true -CNC3CC2=C1C(=CC=CC1=CC=C2)C3,true -CC(=O)OCC1=COC=C2C(=CC=[C]12)C=O,true -OCC[N]1C(=NC=C1[N+]([O-])=O)CO,true -CCN1C=C(C(O)=O)C(=O)C3=C1C=C2OCOC2=C3,true -CC3=C2[NH]C1=CC=CC=C1C2=C(C)C4=CN=CC=C34,true -O=C2NC1(CCCCC1)C(=O)N2CCN3CC3,true -NC1=CC3=C(C=C1)C2=CC=C(C=C2C3)N,true -CCN(N)C1=CC=CC=C1,true -CC(=O)NC1=CC=C(C=C1)C=CC(=O)C2=CC=CC=C2,true -CCC[N]3C=C2CC1C(C=C(C)CN1C)C4=C2C3=CC=C4,true -C[N]1C=CN=C1N=O,true -[O-][N+](=O)C2=C1[NH]N=CC1=CC=C2,true -ClCC2=C4C1=CC=CC=C1C=C5C=CC3=CC=CC(=C2)C3=C45,true -NC1=C(C=CC=C1)SCCSC2=C(C=CC=C2)N,true -C1=CC4=C(C=C1)C3=CC2=CC=CC5=C2C(=C3C=C4)C=C5,true -[O-][N+](=O)C1=CC3=C(C=C1)C2=CC4=C(C=C2CC3)CCCC4,true -[O-][N+](=O)C2=C1N=CC=CC1=CC=C2,true -S=C1NCCN1,true -C2=CC1=CC3=C(C=C1C=C2)C5=C4C(=C3)C=CC=C4C=C5,true -NC1=CC4=C(C=C1)C3=CC=C2C=CC=CC2=C3C=C4,true -O=NC1=C2C=CC3=CC5=C(C4=CC=C(C=C1)C2=C34)CCCC5,true -CC(C)N(C(C)C)C(=O)SCC(Cl)=CCl,true -COC1=CC=C(C=C1)C2OC2C(=O)C3=CC=CC=C3,true -CC1CNCC(C)O1,true -CC(C)=C(Cl)C=O,true -[O-][N+](=O)C3=CC2=C1C=CC(=CC1=CC=C2O3)N(CCCl)CCCl,true -ClC(=O)CC1=CC=CC=C1,true -NC3=CC2=NC1=CC=CC=C1C(=C2C=C3)N,true -C1=CC5=C(C=C1)C4=CC3=C2C=CC=CC2=CC=C3N=C4C=C5,true -OC1=C4C(=CC=C1)C3=CC=C2C=CC=CC2=C3C=C4,true -C1=CC4=C(C=C1)C3=CC=C2C=CC=CC2=C3C=C4,true -[O-][N+](=O)C1=CC=C(C=C1)C=CC2=CC=C(C=C2)Cl,true -NC1=CC=C(C=C1)NC2=CC=C(C=C2)[N+]([O-])=O,true -OC1=CC=C(C=C1)C(=O)NN=CC2=CC=C(O2)[N+]([O-])=O,true -NC3=C2C(C1=CC=CC(=C1C(C2=C(C=C3)N)=O)[N+]([O-])=O)=O,true -[O-][N+](=O)C1=CC(=C(C=C1)C2=C(C=CC=C2)[N+]([O-])=O)[N+]([O-])=O,true -OC2=C3C1=CC=CC=C1C4=C(C=CC5=CC=C(C=C2)C3=C45)[N+]([O-])=O,true -CC1=CC(=C(C=C1)N=NC3=C2C=CC=CC2=CC=C3O)C,true -OC1=C(C=C(C=C1[N+]([O-])=O)[N+]([O-])=O)[N+]([O-])=O,true -C1=CC2=C(C=C1)C3=CC=CC4=CC=CC2=C34,true -CC2C1=C(C=CC=C1)C3=C2C=C(C=C3)F,true -OC4C=CC3=C2C=CC1=CC=CC=C1C2=CC=C3C4O,true -CCN(CC)N=O,true -OC2=C1C=CC=CC1=CC3=CC=CC=C23,true -[O-][N+](=O)C1=CC=C2C=CC3=C(C=CC4=CC=C1C2=C34)[N+]([O-])=O,true -OC2C=CC1=C3C=CC4=CC=C(C5=CC=C(C=C1C2O)C3=C45)[N+]([O-])=O,true -OCC4OC(OC2=C1C(C3=C(OC1=CC(=C2)O)C(=CC=C3O)O)=O)C(O)C(O)C4O,true -ClCCN(CCCl)P1(=O)OCCCN1CCCl,true -NC1=C(C=C(C=C1Cl)[N+]([O-])=O)[N+]([O-])=O,true -OC2C=CC1=C4C(=CC=C1C2O)C3=CC(=CC=C3C=C4)O,true -OCCN(CCO)C1=CC=C(C=C1)N=NC2=C(C=C(C=C2)[N+]([O-])=O)[N+]([O-])=O,true -NC2=NC(=C1[NH]C=NC1=N2)NO,true -CN(C)N,true -CN2N(C1=CC=CC=C1)C(=O)C(=C2C)N=O,true -ClCCNC(=O)N(CCCl)N=O,true -C1=CC2=C(C=C1)C4=C3C(=C2)C=CC=C3C=C4,true -OCC1=C2C=CC3=CC=CC4=CC=C(C=C1)C2=C34,true -CC3=CC2=C(C1=CC=CC=C1C(=C2C=C3)C)C,true -COC3=C(C=C2N=C1C=CC(=CC1=NC2=C3)N)N,true -BrCC1CO1,true -CN(C)N=O,true -[O-][N+](=O)C1=C(C=CC=C1)[N+]([O-])=O,true -CC(=O)C1=C(C(=C(O1)[N+]([O-])=O)C2=CC=CC=C2)C3=CC=CC=C3,true -OS(=O)(=O)C1=C2C=CC3=CC=CC4=CC=C(C=C1)C2=C34,true -C1OC1C2CO2,true -[O-][N+](=O)C1=CC(=C(C=C1)Br)[N+]([O-])=O,true -NC1=C(C=C(C(=C1)[N+]([O-])=O)N)Cl,true -[O-][N+](=O)C1=CC2=CC=C3C=CC=C4CCC(=C1)C2=C34,true -[O-][N+](=O)C1=C2C=CC3=C(C=CC4=CC=C(C=C1)C2=C34)N=O,true -CCN(CC)C3=CC=C2N=C1C=CC(=CC1=[O+]C2=C3)N(CC)CC,true -CCN1CCOCC1,true -OCCCBr,true -C1=CC3=C(C=C1)C2=NC=CC=C2C=C3,true -NC3=C(C=C2N=C1C=CC=CC1=NC2=C3)O,true -CN(C)C2=C(C1=NC(=C(N=C1C=C2)C)C)C,true -CC1=CC(=C(C=C1)N)N,true -NC1=C(C(=CC=C1)N)C(O)=O,true -OC(=O)C=CC1=CC=C(O1)[N+]([O-])=O,true -[O-][N+](=O)C1=C(C=CC=C1)SSC(F)=C(Cl)Cl,true -ONC1=CC3=C(C=C1)C2=CC=CC=C2C3,true -COC(=O)NC2=NC1=CC(=CC=C1[NH]2)C(=NO)C3=CC=C(C=C3)F,true -C1=CC2=CC=C3N=CC=C4C=CC(=C1)C2=C34,true -NC1=C(C=CC(=C1)[N+]([O-])=O)C(O)=O,true -CN(C)CCCNC2=C1C(=CC=C(C1=NC3=CC=CC=C23)F)[N+]([O-])=O,true -CC4=C1C=CC=CC1=C3N=C2C=CC=CC2=C(C3=C4C)N,true -NC4=CC=C3C2=C1C(=CC=CC1=CC=C2)C3=C4,true -CCC1=C3C(=CC2=CC=CC=C12)C4=C(C=C3)C(O)C(O)C5OC45,true -ON(C=O)C1=CC=C(C=C1)[N+]([O-])=O,true -CN(N=O)C(C)=O,true -BrC(C=O)=CC1=CC=CC=C1,true -C1OC1COC2=CC(=CC=C2)OCC3CO3,true -CC1=C(C=C(C=C1)N=C=O)N=C=O,true -N1C4C1C2=C(C=CC3=CC=CC=C23)C5=C4C=CC=C5,true -OC(=O)CCCC1=CC=C(C=C1)N(CCCl)CCCl,true -NCCNCCNCCNCCNCCN,true -CC(C)NCC2CCC1=C(C=C(C(=C1)CO)[N+]([O-])=O)N2,true -[O-][N+](=O)C1=CC(=CS1)C(=O)NC2=CC=C(C=C2)Cl,true -CC1=CC=C(C=C1)N=NNCC2=CC=CC=C2,true -CNC(=O)OC2=C1C=CC=CC1=CC=C2,true -CCOC(=O)N(C)C,true -ClC(=O)C1=C(C=C(C=C1)Cl)Cl,true -[O-][N+](=O)C2=CC(=C1C(=CC(=CC1=C2)[N+]([O-])=O)[N+]([O-])=O)[N+]([O-])=O,true -COS(=O)(=O)C(F)(F)F,true -CC1=CC(=C(C=C1)NO)C,true -ClC(=O)C1=C(C=CC=C1)C(Cl)=O,true -CC(=O)C=O,true -O=C1OC5=C4C3=C1C=C2C=CC=CC2=C3C=CC4=CC=C5,true -ClCC1=CC=CC=C1,true -C[N]1C(=NC2=C1C=CC3=NC(=C(C)N=C23)C)N,true -ClC(CBr)CBr,true -CC(=O)OC1=C2C=CC3=CC=CC4=CC=C(C(=C1)[N+]([O-])=O)C2=C34,true -CC1=CC=C[N]2C1=NC3=C(C)C(=CN=C23)N,true -OC1=C([NH]C2=CC=CC=C12)C4=NC3=C(C=CC=C3)C4=O,true -OCC1=C4C(=C(C2=CC=CC=C12)CO)C3=CC=CC=C3C=C4,true -NC1=CC3=C(C=C1)C2=CC=CC=C2O3,true -CC4=C3C=C2C1=CC=CC=C1C=CC2=CC3=CC=C4,true -C1CCC(CC1)N2C4C2C3=C(C=CC=C3)C5=C4C=CC=C5,true -COC1=C(C=CC=C1)N,true -ONC1=CC=C(C=C1)C2=CC=CC=C2,true -CN1CC(CBr)CC2C1CC3=C[NH]C4=CC=CC2=C34,true -CCN(CC)CCNC2=C1C(C3=C(SC1=C(C=C2)C)C=CC=C3)=O,true -OCC1=C3C=CC4=CC=CC5=CC=C(C2=CC=CC=C12)C3=C45,true -C1=CC5=C4C(=C1)C2=CC=CC3=CC=CC(=C23)C4=CC=C5,true -C[N]2C(=NC3=C1N=C(C)C=NC1=CC(=C23)C)N,true -CNN=O,true -COC(=O)C(=C)C#N,true -CN(C)C1=CC=C(C=C1)N=NC3=CC=C2N=CSC2=C3,true -COP(=S)(OC)SCN2N=NC1=C(C=CC=C1)C2=O,true -OCC1SCCN1N=O,true -[O-][N+](=O)C1=C(C(=CC=C1)[N+]([O-])=O)C=O,true -CC1=CC2=C(C=C1)C(=CC=C2)[N+]([O-])=O,true -OC1=C(C(=CC=C1)[N+]([O-])=O)[N+]([O-])=O,true -OC3=C(C2=CC1=CC=CC=C1C(=C2C=C3)O)O,true -OC1=C4C(=CC=C1)C3=CC2=CC=CC5=C2C(=C3C=C4)C=C5,true -CN2C(=O)CN=C(C1=C(C=CC=C1)F)C3=C2C=CC(=C3)[N+]([O-])=O,true -[O-][N+](=O)C1=CC2=C(C=C1)C(=O)OC2=O,true -COC(=O)C1=CC=C(C=C1)C=NN4N=NC2=C([NH]C3=CC=CC=C23)C4=O,true -ClCC2=C1C3=CC=C4C=CC=C5C=CC(=CC1=CC=C2)C3=C45,true -NC1=NC(=CC=C1)N,true -[O-][N+](=O)C1=CC=C(O1)C=CC(=O)NN=CC2=CC=C(O2)[N+]([O-])=O,true -OOC1CCCC2=C1C=CC=C2,true -[O-][N+](=O)C2=CC=C1SN=C(Cl)C1=C2,true -[O-][N+](=O)C1=CC(=CC=C1)CCl,true -CC(O)=NO,true -CN(C)CCNC(=O)C2=C1SC3=C(C(C1=CC=C2)=O)C=CC=C3,true -COC1=CC=C(C=C1)CNC(=O)C(C)Br,true -NC3=CC2=NC1=CC=C(C=C1N=C2C=C3)N,true -OCCC1=C[NH]C2=CC(=CC=C12)[N+]([O-])=O,true -CC1=C(C=CC=C1)N=NC2=CC(=C(C=C2)N)C,true -CC1=C(C3=C(C=C1)C(=O)C2=C(C=CC=C2)C3=O)N,true -[O-][N+](=O)C3=CC2=C1C(=CC=CC1=CC=C2C=C3)[N+]([O-])=O,true -C2=CC1=NC=CN=C1C=C2,true -[O-][N+](=O)C1=CC=C(C=C1)CCl,true -OC(=O)C1=CC=C(C=C1)NC3=C2C=CC(=CC2=NC4=CC=CC=C34)N=[N+]=[N-],true -COC1=C4C(=CC=C1)C3=C2OCOC2=CC(=C3C=C4)C(O)=O,true -CC2=[N+](C1=CC=CC=C1[N+](=C2C(=O)NCCO)[O-])[O-],true -CC(C)(C)C1=CC(=O)C=CC1=O,true -CN(C)CCCNC2=C1C=C(C=CC1=NC3=CC=CC=C23)[N+]([O-])=O,true -O=NC2=C3C=CC4=C1C=CC=CC1=CC5=CC=C(C=C2)C3=C45,true -CC1(CO1)C2=CC=CC=C2,true -NC2=C1SN=C(C1=CC=C2)Cl,true -CC2C1=C(C=CC=C1)C3=C2C=C(C(=C3)C)C,true -CC(O)C1=CC2=CC=C3C=CC=C4C=CC(=C1)C2=C34,true -[O-][N+](=O)C1=CC(=CS1)C(=O)NC2=CC=C(C=C2)[N+]([O-])=O,true -C1=CC2=C(C=C1)C4=CC=C5C=CC6=CC3=CC=CC2=C3C4=C56,true -[O-][N+](=O)C2=CC3=CC=C4C1=CC=CC=C1C=C5C=CC(=C2)C3=C45,true -CC1=C(C=CC(=C1)[N+]([O-])=O)N,true -OC1=CC=C(C=C1)N=O,true -NC2=CC=C1SN=CC1=C2,true -[N-]=[N+]=C1C=CC(=O)C=C1,true -O=C2CC(=NC1=CC=CC=C1)C(=O)C3=C2C=CC=C3,true -[O-][N+](=O)C2=CC1=CC(=CC=C1O2)N(CCCl)CCCl,true -OC(=O)C(Br)=C(Br)C=O,true -COC1=C4C(=CC=C1)C3=C2OCOC2=CC5=C3C(=C4)NC5=O,true -CN(C)N=NC1=CC=C(C=C1)[N+]([O-])=O,true -C1=CC2=C(C=C1)C5=C(C=C2)C4=C3C=CC=CC3=CC=C4C=C5,true -COC1=C(C3=C(C(=C1)N)C(=O)C2=C(C=CC=C2)C3=O)N,true -NC1=CC=C(C=C1)OC2=CC(=C(C=C2)N)N,true -CC(=O)N1CCCC1C(=O)N(CC(O)=O)N=O,true -COC1=C(C=CC(=C1)CC2CO2)O,true -CN(C)CCCNC2=C1C=CC=CC1=NC3=CC=CC=C23,true -CCC1=C(C3=C(C=C1)C(=O)C2=C(C=CC=C2)C3=O)[N+]([O-])=O,true -OC5C(O)C2=C1C6(C4=C(C1=CC=C2)C3=C(C=CC=C3)C=C4)OC56,true -NC(CSC(Cl)=C(Cl)C(Cl)(Cl)Cl)C(O)=O,true -C[N]2C1=CC=CC=C1C3=CC(=CC=C23)N,true -NC1=CC=C(C=C1)OC2=C(C=C(C=C2)Cl)Cl,true -C1=CC3=C(C=C1)C2=CC5=C(C=C2C=C3)C4=CC=CC=C4C=C5,true -OC1C=CC=CC1O,true -CCNN=O,true -S3C1=CC=CC=C1C4=CC=C2C=CC=CC2=C34,true -CC(=O)OCC1=CC=C(C=C1)N=NC2=CC=C(C=C2)COC(C)=O,true -CCC4(O)CC(O)C2=C(C=C1C(C3=C(C(C1=C2O)=O)C(=CC=C3)O)=O)C4C(=O)OC,true -OC5C=CC1=C(C2=CC=C3C=CC(=C4C=CC(=C1)C2=C34)[N+]([O-])=O)C5O,true -O[N+]([O-])=C=CC1=CC=C(O1)[N+]([O-])=O,true -NC(CS)C(O)=O,true -CCC3=C1C4=C(C=CC1=C2C=CC=CC2=C3)C(O)C(O)C5OC45,true -O=C3[N]2C1=CC=CC=C1N=C2C8=C6C3=CC=C7C5=NC4=CC=CC=C4[N]5C(C(=C67)C=C8)=O,true -OCCCCl,true -CCOC1=CC=C(C=C1)NC(=O)CC(C)O,true -CC1=C(C(=C(C=C1[N+]([O-])=O)[N+]([O-])=O)N)[N+]([O-])=O,true -ClCC1CO1,true -CC(C)=CC2C(C(=O)OC1=C(C)C(CC=C)C(=O)C1)C2(C)C,true -O=NC1=CC=C(C=C1)OC2=CC=CC=C2,true -[O-][N+](=O)C2=C4C=CC=C5C1=CC=CC=C1C3=CC=CC(=C2)C3=C45,true -CC(C)N(C(C)C)C(=O)SCC(Cl)=C(Cl)Cl,true -COC(=O)NC1=CC(=CC=C1)OC(=O)NC2=CC(=CC=C2)C,true -FC5=C3C=CC=C4C2=C1C=CC=CC1=CC=C2C(=C34)C=C5,true -ClC(=O)OCC2C1=C(C=CC=C1)C3=C2C=CC=C3,true -COC4=CC(=O)C1=C(C3=C(C(=N1)C)C2=CC=CC=C2[NH]3)C4=O,true -CC1=CC(=C(C=C1)N)O,true -CCOP(=S)(OCC)OC1=N[N](C(C)C)C(=N1)Cl,true -[O-][N+](=O)C1=CC5=C2C(=C1)CCC4=C2C(=C3CCCCC3=C4)CC5,true -S=P(N1CC1)(N2CC2)N3CC3,true -C1=CC4=C(C=C1)C3=CC=C2C=NC=CC2=C3C=C4,true -CN(C)CCNC(=O)C2=C1NC3=C(OC1=CC=C2)C=CC=C3,true -CC1=CC=C(C=C1)CCC2CO2,true -OC4=CC3=C2C=CC1=CC=CC=C1C2=CC=C3C=C4,true -NC2=C1N=C[N](C1=NC=N2)CC3=CC=CC=C3,true -OCC(O)CI,true -NC3=C2N=C1CCCCC1=CC2=CC=C3,true -CN1CCN(CC1)C4=C2OCN(N3C=C(C(C(=C23)C=C4F)=O)C(O)=O)C,true -C1=CC4=C(C=C1)C3=CC2=CC=NC=C2C=C3C=C4,true -CCN(CC)N(O)N=O,true -COC1=CC4=C(C=C1)C2=NC=CC3=CC(=C(C(=C23)C4=O)OC)OC,true -ClC(=O)C1=CC=C(C=C1)C(Cl)=O,true -NC1=CC3=C(C=C1)C2=CC=CC=C2C3,true -[O-][N+](=O)C2=CC1=C[NH]N=C1C=C2,true -OCC1OC(C(O)C1O)N(N=O)C2=CC=C(C=C2)[N+]([O-])=O,true -CCCCCCCCCCSC[N]1C=C[N+](=C1)C,true -OC4C=CC3=C(C2=CC=C1C=CC=CC1=C2C=C3)C4O,true -CC2=C1N=CC=CC1=CC=C2,true -OC1=C(C3=C(C(=C1)O)C(=O)C2=C(C=CC=C2)C3=O)O,true -NC2=C1C=CC=CC1=NC3=CC=CC=C23,true -[O-][N+](=O)C1=C2C=CC3=C(C=CC4=CC=C(C=C1)C2=C34)[N+]([O-])=O,true -BrCC1=CC=CC=C1,true -ClCN2C(=O)C1=C(C=CC=C1)C2=O,true -CN(C)C1=CC=C(C=C1)C=CC2=CC=CC=C2,true -C5=CC4=CC3=C1C=CC=CC1=C2C=CC=CC2=C3N=C4C=C5,true -ClCC4=C2C=CC=C3C1=CC=CC=C1C(=C23)C=C4,true -[O-][N+](=O)C4=CC=C3C2=C1C(=C(C=CC1=CC=C2)[N+]([O-])=O)C5=C3C4=CC=C5,true -COC1=CC4=C(C=C1)C2=C(C(=CC3=CC=NC(=C23)C4=O)OC)OC,true -CC1=CC(=C(C(=C1)C)N)C,true -CC2=C1C=CC=CC1=CC3=CC=CC=C23,true -COP(=S)(OC)OC1=CC=C(C=C1)[N+]([O-])=O,true -COC1=C(C4=C(C=C1)C3=C2OCOC2=CC5=C3C(=C4)N(C)C(=O)C5=O)OC,true -ON=C1C=CC(C=C1)=NO,true -CN(C1=C(C=C(C=C1[N+]([O-])=O)[N+]([O-])=O)[N+]([O-])=O)[N+]([O-])=O,true -ONC2=CC1=CC=CC=C1C=C2,true -[O-][N+](=O)C1=CC2=CC=C3C=C(C=C4C=CC(=C1)C2=C34)[N+]([O-])=O,true -COC5=C2[C]1=CC=C(C1=C(OC2=C4C3CCOC3OC4=C5)O)O,true -OCC(Cl)CCl,true -O=NN1CCCCC1,true -C1=CN=C(C=C1)C2=NC=CC=C2,true -CC3=C(C1=CC=CC=C1C4=CC=C2C=CC=CC2=C34)[N+]([O-])=O,true -C[N]1C(=NC2=CC=CC=C12)N,true -CC(=O)OC1CC5=C4C1=C3C=CC2=CC=CC=C2C3=CC4=CC=C5C,true -[O-][N+](=O)C1=C(N=C2SC=C[N]12)C3=CC=C(C=C3)Cl,true -CN2C1=C(C=CC=C1)C(=O)C3=C2C4=C(C=C3O)OC(C4)C(C)=C,true -[O-][N+](=O)C1=C(C=CC=C1)SSC(Cl)=C(Cl)C(F)(F)F,true -CC(=O)N(O)C1=CC3=C(C=C1)C2=CC=CC=C2C3,true -COC1=C(C=C(C=C1)C(=O)NC2=CC=CC=C2)[N+]([O-])=O,true -CN(C)CCCNC2=C1C(=CC=C(C1=NC3=CC=CC=C23)N(C)C)[N+]([O-])=O,true -NC1=CC=C(C=C1)Cl,true -ClC3=CC2=CC1=CC=CC=C1C=C2C=C3,true -OC(=O)C(Cl)=C(C(Cl)Cl)C(O)=O,true -ClC(Br)C#N,true -[O-][N+](=O)C3=C1C=CC=CC1=C2C=CC=CC2=C3,true -NC1=CC=C(C=C1)OC2=C(C=C(C=C2Cl)Cl)Cl,true -[O-][N+](=O)C2=CC1=C3C(=CC=C1C=C2)C(=CC=C3)[N+]([O-])=O,true -FC2=C1N=CC=CC1=CC=C2,true -CCC(Cl)=[N+](O)[O-],true -CC(C)(C)CCCCCC(=O)OCC1CO1,true -CC(=O)NNC1=CC=CC=C1,true -[O-][N+](=O)C1=CC(=CS1)C(=O)NC2=CC(=CC=C2)Cl,true -OC2=C(C1=CC=CC=C1C=C2)[N+]([O-])=O,true -CCN(CC)C(=O)C(Cl)=C(C)OP(=O)(OC)OC,true -CCC2=C1[NH]C3=C(C1=CC(=C2)O)CCOC3(CC)CC(O)=O,true -OC3C=CC2=C(C=C1C=CC(=CC1=C2)[N+]([O-])=O)C3O,true -NC1=CC=C(C=C1)C=CC2=CC=CC=C2,true -COCC1CO1,true -O=NN1CCCC1C2=CN=CC=C2,true -CCN(CC)C(=S)SCC(Cl)=C,true -NC(=O)NCC=C,true -O1C5C1C3=C(C2=CC=CC=C2C4=CC=CC=C34)C6=C5C=CC=C6,true -OC5C(O)C2=C(C1=NC4=C(C=C1C=C2)C3=CC=CC=C3C=C4)C6OC56,true -CC4=C3C1=CC=CC2=CC=CC(=C12)C3=C(C5=CC=CC=C45)C,true -O=CCC=O,true -NC1=C(C=C(C=C1)[N+]([O-])=O)[N+]([O-])=O,true -CC1=NSC(=C1)N,true -N(C1=CC=C(C=C1)NC3=CC2=CC=CC=C2C=C3)C5=CC4=CC=CC=C4C=C5,true -CCCCN1C3C1C2=C(C=CC=C2)C4=C3C=CC=C4,true -FC5=CC=C4C=C3C2=C1C(=CC=CC1=CC=C2)C3=CC4=C5,true -CC(=O)OCC1=CC=C(C=C1)[N+]([O-])=O,true -CN(C)C1=CC=C(C=C1)CC2=CC=C(C=C2)N(C)C,true -NCCNCCNCCNCCN,true -[O-][N+](=O)C1=CC3=C(C=C1)C2=C(C=CC=C2)C3=O,true -CC(=O)N(O)C1=C2C=CC3=CC=CC4=CC=C(C=C1)C2=C34,true -[O-][N+](=O)C1=CC=C(C=C1)OCC2CO2,true -C1OC1COC3=CC2=CC=CC=C2C=C3,true -O=C2C1=C(C=CC=C1)C4=C2C=C3C=CC=CC3=C4,true -CNC1=CC=C(C=C1)N=NC2=CC=CC=C2,true -CC2=C1C3=CC=C4C=CC=C5C=CC(=CC1=CC=C2)C3=C45,true -ClC1=C(N=CC=C1)Cl,true -[O-][N+](=O)C1=CC(=CC=C1)C#N,true -CN(C)CCNC(=O)C2=C1OC3=C(C(C1=CC=C2)=O)C=CC=C3,true -ClCC(CCl)OP(=O)(OC(CCl)CCl)OC(CCl)CCl,true -COC1=C(C=CC(=C1)CNC(=O)C(C)Br)O,true -CCN1C=C(C(O)=O)C(=O)C2=C1N=C(N=C2)N3CCNCC3,true -COP(=O)(OC)OC1=CC(=C(C=C1)[N+]([O-])=O)C,true -[O-][N+](=O)C1=CC2=C(C=C1)C(=CC3=CC=CC=C23)[N+]([O-])=O,true -O[N+]([O-])=C=CC1=CC=CC=C1,true -COC(=O)C4=C2C=CC1=C(C=CC=C1C2=C3OCOC3=C4)OC,true -COC1=NSC2=CC(=CC=C12)[N+]([O-])=O,true -ClCCOCC(Cl)=CCl,true -NC2=C1C(C3=C(C(C1=C(C=C2Br)Br)=O)C=CC=C3)=O,true -C[N]1C=NC2=C(N)N=CN=C12,true -C[N]1C=NC2=C1C=CC3=NC=CC=C23,true -CC2C1=C(C=CC=C1)C3=C2C=CC(=C3)C,true -[O-][N+](=O)C2=CC=C1C(=NSC1=C2)Cl,true -[O-][N+](=O)C1=CC(=CS1)C(=O)NC2=CC(=CC=C2)[N+]([O-])=O,true -ClC2=C1C=CC=CC1=CC3=CC=CC=C23,true -COC1=C(C=C(C(=C1)Cl)OC)Cl,true -[O-][N+](=O)C1=CC=C(C=C1)C=NN4N=NC2=C([NH]C3=CC=CC=C23)C4=O,true -OC(=O)C4=C2C(=CC1=C(C=CC=C1C2=C3OCOC3=C4)O)[N+]([O-])=O,true -NC(CCC(=O)NNC1=CC=CC=C1)C(O)=O,true -[O-][N+](=O)C1=CC=C(C=C1)OC=C,true -CC2(OO)C1=C(C=CC=C1)C3=C2C=CC=C3,true -[O-][N+](=O)C1=CC=C(C=C1)C=CC2=CC(=CC=C2)C#N,true -[O-][N+](=O)C1=CC4=C2C(=C1)CCC3=C2C(=CC=C3)CC4,true -CC2=C1C=C4C(=CC1=CC=C2)C3=CC=CC=C3C=C4,true -CC2=CC=C1N=C(SC1=C2)C3=CC=C(C=C3)N,true -N1C2C1C4=C3C2=CC=CC3=CC=C4,true -CC(C)(C)OC(=O)C(N)CN=[N+]=[N-],true -[O-][N+](=O)C2=CC1=CC=C(C=C1O2)N(CCCl)CCCl,true -ON(C=O)C1=CC=C(C=C1)C=CC2=CC=CC=C2,true -CN(CCCl)CCCl,true -CC(=O)NC1=CC=C(C=C1)C2=CC=CC=C2,true -COS(C)(=O)=O,true -CC2=C4C=CC=C5C=CC3=CC1=CC=CC=C1C(=C2)C3=C45,true -ClNC1=CC3=C(C=C1)C2=CC=CC=C2C3,true -CC(=O)NC2=CC1=CC=CN=C1C=C2,true -[O-][N+](=O)C5=C3C=CC=C4C2=CC1=CC=CC=C1C=C2C(=C34)C=C5,true -C1OC1CC2=CC=C(C=C2)C3=CC=CC=C3,true -C[N]2C1=CC=CC=C1C3=CC(=CC=C23)[N+]([O-])=O,true -CCCCCCOCC1CO1,true -OCC1=CC2=CC=C3C=CC=C4C=CC(=C1)C2=C34,true -CCOS(=O)(=O)OCC,true -BrCC(Br)C1=CC=CC=C1,true -CCCNN=O,true -OC2=CC1=CC=CC(=C1C=C2)O,true -CC1=C(N=C3C(=C1)C2=CC=CC=C2[NH]3)N,true -OC4=C1C=CC=CC1=C3C=CC2=CC=CC=C2C3=C4,true -ClC(Cl)(Cl)C1=CC=CC=C1,true -C=CC=O,true -CCC(=O)C2=C1C=CC=C(C1=C(C3=C(C=CC=C23)O)O)O,true -NC2=C3C=CC4=CC1=CC=CC=C1C5=CC=C(C=C2)C3=C45,true -CN(CC(O)CO)N=O,true -C1OC1COC3=C2C=CC=CC2=CC=C3,true -C1OC1COC2=CC=CC=C2,true -OCC1OC(CC1O)N2C=C(COO)C(=O)NC2=O,true -CC(Cl)C(Br)CBr,true -NC2=C1SN=CC1=CC=C2,true -OC(=O)C=CCl,true -[O-][N+](=O)C3=CC2=C1C=C(C=CC1=CC=C2C=C3)[N+]([O-])=O,true -CC1OC1C,true -CC1=C(C=C(C=C1)C(O)(P(O)(O)=O)P(O)(O)=O)N(CCCl)CCCl,true -OC(=O)C(Cl)=C(Cl)C=O,true -COC4=CC(=O)C3=C2[NH]C1=C(CCCC1)C2=CN=C3C4=O,true -CCN(CC)CCNC2=C1C(C3=C(SC1=C(C=C2)CO)C=CC=C3)=O,true -CC(=O)OC2=C(OC(C)=O)C4=C(C=CC5=C1C=CC=CC1=C3C=CC=C2C3=C45)[N+]([O-])=O,true -O[N+]([O-])=CCl,true -COC1=C(C=CC(=C1)N)NC(C)=O,true -COC(=O)C(CSCC(C)Br)NC(C)=O,true -ClCC(=O)NCC1=CC=CC=C1,true -FC1=CC=C2C(=C1)C=CC3=C2C4=CC=CC5=CC=CC3=C45,true -CC4=C2C1=CC=CC=C1[NH]C2=C3C(C(=CC(C3=N4)=O)N5CC5)=O,true -CC(Br)C(=O)NCC1=CC=C(C=C1)Cl,true -CC1CCCCN1CCCNCC(=O)NC2=C(C(=N[N]2C)C)C(=O)C3=C(C=CC=C3)F,true -[O-][N+](=O)C1=CC4=C(C=C1)C3=CC=C2CCCCC2=C3CC4,true -NC1=CC=C(C=C1)C=CC2=CC(=CC=C2)C#N,true -CCC(=O)OCC1=CC=C(C=C1)[N+]([O-])=O,true -CC(Br)CBr,true -CC1=C(C=C(C=C1)[N+]([O-])=O)[N+]([O-])=O,true -CCCCOC1=CC=C(C=C1)C=NC2=CC=C(C=C2)CC,true -OCC1=C(C=C(C=C1)[N+]([O-])=O)[N+]([O-])=O,true -OC1COC(C(O)C1O)N(N=O)C2=CC=C(C=C2)[N+]([O-])=O,true -CN(CC1=CC=CC=C1)N=O,true -NC(=O)C1=CSC(=C1)[N+]([O-])=O,true -OC2=C1C(C3=C(C(C1=C(C=C2)[N+]([O-])=O)=O)C(=CC=C3O)[N+]([O-])=O)=O,true -OC2C1=C(C=CC=C1)OC3=C2C=CC=C3,true -OC1=C(C=C(C=C1)Cl)C(=O)NC2=C(C=C(C=C2)[N+]([O-])=O)Cl,true -ClC2=C1N=CC=CC1=CC=C2,true -COC1=CC3=C(C(=C1)O)C(=O)C2=C(C=C(C=C2O)C)C3=O,true -CC(C)(C)OC(=O)NN=CC2=[N+](C1=CC=CC=C1[N+](=C2)[O-])[O-],true -CC(=O)N(O)C2=CC1=CC=CC=C1C=C2,true -CCOC1=CC(=O)C(CC1=O)=NC(C)=O,true -O1C5C1C2=C(C=C4C(=C2)C3=CC=CC=C3C=C4)C6=C5C=CC=C6,true -C1=CC4=C(C=C1)C3=CC2=CC=NC=C2C=C3C5=CC=CC=C45,true -CC1=CC=C(C=C1)CC2CO2,true -OC(=O)CC1=C(C=CC=C1)[N+]([O-])=O,true -COC1=C(C=CC(=C1)N)N,true -NC2=C1C=CC=CC1=CC3=CC=CC=C23,true -COC1=C(C4=C(C=C1)C3=C2OCOC2=CC5=C3C(=C4)N(C)CC5)OC,true -CC2=CC1=CC=CN=C1C=C2,true -C[N]2C(=NC3=C1N=C(C)C(=NC1=CC(=C23)C)C)N,true -OC(=O)CC=[N+](O)[O-],true -OC1=CC(=C(C=C1)O)O,true -OC3C=CC2=C1N=CC=CC1=CC=C2C3O,true -COC1=CC5=C(C=C1)C3=C2OCOC2=CC4=CC=NC(=C34)C5=O,true -OC(=O)C(Cl)=C(C(Cl)Cl)C(Cl)Cl,true -CC2=C[N]1C(=C(N=C1S2)C3=CC=C(C=C3)[N+]([O-])=O)[N+]([O-])=O,true -COC1=CC3=C(C=C1)OC2=C(C(=CC(=C2)OC)OC)C3=O,true -[O-][N+](=O)C1=CC=C(C=C1)C=CC=O,true -OCC1=C4C(=CC2=CC=CC=C12)C3=CC=CC=C3C=C4,true -NC1=CC=C(C=C1)C=CC2=CC=C(C=C2)Cl,true -NC1=CC3=C(C=C1)C2=CC=CC=C2C=C3,true -CC(=O)N(O)C1=CC=C(C=C1)OC2=CC=C(C=C2)Cl,true -CCCN(N=O)C(N)=O,true -NC1=CC=C(C=C1)C2=CC=C(C=C2)C3=CC=C(C=C3)N,true -CC(=O)NC1=CC3=C(C=C1)C2=CC=CC=C2C3,true -O=NC1=CC(=CC=C1)C2=CC=CC=C2,true -C5CC4=C(C3=CC2=C1C=CC=CC1=CC=C2N=C3C=C4)C=C5,true -O=C2C1=C(C=CC=C1)C4=C3C2=CC=CC3=CC=C4,true -COC1=CC=C(C=C1)N,true -NC(CCC(=O)NNC1=CC=C(C=C1)CO)C(O)=O,true -ClC1=CC(=C(C=C1)C(Cl)(Cl)Cl)Cl,true -[O-][N+](=O)C2=C3C=CC4=CC1=CC=CC=C1C5=CC=C(C=C2)C3=C45,true -OC1=C(C=C(C=C1)C2=CC(=CC=C2)[N+]([O-])=O)[N+]([O-])=O,true -CC(C)CNC(=O)C=CC1=CC=C(O1)[N+]([O-])=O,true -FC2=C1C=CC=NC1=CC=C2,true -CC(C)CC(=O)OC2OC=C(COC(C)=O)C3=CC(OC(=O)CC(C)C)C1(CO1)C23,true -[O-][N+](=O)C1=CC=C(C=C1)C=CC2=CC=CC=C2,true -[O-][N+](=O)C2=C1SN=CC1=CC=C2,true -[O-][N+](=O)C1=CC=C(C=C1)[N+]#N,true -CC3=C2C1OC1C5=C(C2=CC4=CC=CC=C34)C=CC=C5,true -CC1=C(C(=C(C=C1)[N+]([O-])=O)C)[N+]([O-])=O,true -NC2=C1N=C[NH]C1=NC=N2,true -OC2=C1N=CC=CC1=CC=C2,true -[O-][N+](=O)C1=CC=C(C=C1)C=O,true -NC(NC1=CC=CC=C1)=NC2=CC=CC=C2,true -CCC2=C1[NH]C3=C(C1=CC=C2O)CCOC3(CC)CC(O)=O,true -OC2=C(C1=C(C3=C(C(=C1C=C2)O)C(=O)C=CC3=O)O)O,true -CC(=O)OCC1=C3C=CC4=CC=CC5=CC=C(C2=CC=CC=C12)C3=C45,true -NC1=CC3=C(C=C1)C(=O)C2=C(C=CC=C2)C3=O,true -CC(O)CN(CC(C)=O)N=O,true -OC6C1OC1C5=C4C=C2C=CC=C3C=CC(=C23)C4=CC=C5C6O,true -CC1=CC5=C4C(=C1)C3=CC2=CC=CC=C2C=C3C4=CC=C5,true -ClCC2=C4C=C1C=CC=CC1=C5C=CC3=CC=CC(=C2)C3=C45,true -[O-][N+](=O)C3=CC=C2OC1=CC=CC=C1C2=C3,true -C2=CC1=CC4=C(C=C1C=C2)C3=NC=CC=C3C=C4,true -NC2=C(C=C1C=CC=CC1=C2)N,true -ClC2=C1C=CC=NC1=CC=C2,true -COC(=O)NC2=NC1=CC=C(C=C1[NH]2)C(=O)C3=CC=CC=C3,true -OC(CCl)CCl,true -NC1=CC=C(C=C1)C2=CC=CC=C2,true -OC(=O)C(Cl)=C(C=O)C(Cl)Cl,true -[O-][N+](=O)C4=C1C=CC=CC1=C3C=CC2=CC=CC=C2C3=C4,true -COP(=S)(OC)SCN2C(=O)C1=C(C=CC=C1)C2=O,true -CNC(=O)N(O)C(C)=O,true -CC(=O)NNC1=CC=C(C=C1)CO,true -[NH]2C1=CC=CC=C1N=C2C3=CSC=N3,true -CCOCC1CO1,true -CN(C)C1=CC=C(C=C1)N=NC2=CC=C(C=C2)N(C)C(C)=O,true -CC(C)(OO)C1=CC=CC=C1,true -C(SSCC1=CC=CC=C1)C2=CC=CC=C2,true -CCC(=O)C(=O)CC,true -ClCCSCC1=CC=CC=C1,true -ClCCNCCCNC1=C4C(=NC2=CC=CC=C12)C3=NC=CC=C3C=C4,true -CC(C)(O)CCC2=C1OC3=C(C(C1=C(C=C2)O)=O)C(=C4C(=C3)OC5OC=CC45O)O,true -NC(=N)NC#N,true -BrCBr,true -CN(C)N=NC1=CC=C(C=C1)C,true -CN(C)CCNC(=O)C2=CC=CN3C(=O)C1=C(C=CC=C1)N=C23,true -COC1=CC=C(C=C1)CC2CO2,true -COC1=C(C=C(C=C1)CNC(=O)C(C)Br)OC,true -ClC1=C(C=C(C=C1)C(Cl)(Cl)Cl)Cl,true -[O-][N+](=O)C1=CC(=C(C=C1)SC#N)[N+]([O-])=O,true -C1=NC=CC(=C1)C2=CC=NC=C2,true -NNC1=CC=C(C=C1)[N+]([O-])=O,true -OC1OC(=O)C=C1CCl,true -NC3=C2C(=C1C(C=CC(C1=C(C2=C(C=C3)N)O)=N)=N)O,true -CN(C)CCCNC2=C1C=CC(=CC1=NC3=CC=CC=C23)[N+]([O-])=O,true -COC5=C2[C]1=CC=C(C1=C(OC2=C4C3C=COC3OC4=C5)O)O,true -COC1=NSC2=CC(=CC=C12)N,true -ClCCl,true -OC1=CC(=C(C=C1)[N+]([O-])=O)[N+]([O-])=O,true -C1CS1,true -C1OCC2=C1C=CC=C2,true -OCCNCCNC3=C2C(=C1C(C=CC(C1=C(C2=C(C=C3)NCCNCCO)O)=O)=O)O,true -CC2C1=C(C=CC=C1)C3=C2C=CC=C3C,true -[O-][N+](=O)C1=CC(=CS1)C(=O)NC2=C(C=CC=C2)[N+]([O-])=O,true -[O-][N+](=O)C1=CC(=C(C=C1)Cl)Cl,true -O=C2N(N=CC1=CC=CC=C1)N=NC3=C2[NH]C4=CC=CC=C34,true -CC4=CC3=C(C2=CC=C1C=CC=CC1=C2N=C3C=C4)C,true -C5=CC4=CC3=C1C=CC=CC1=C2C=CC=CC2=C3C=C4C=C5,true -COC(=O)C2=C1C(C5=C(OC1=CC=C2)C3=C(OC4OC=CC34)C=C5OC)=O,true -CC3=CC2=C(C1=CC=CC=C1C=C2C=C3)C,true -C[N]2C1=CC(=CN=C1N=C2[N+]([O-])=O)C3=CC=CC=C3,true -NC3=C(C=C2N=C1C=CC=CC1=NC2=C3)N,true -COC2=C1C=C(OC1=C(C=C2)N(CCCl)CCCl)[N+]([O-])=O,true -C2CCC1OC1C2,true -OC6C1OC1C5=C4C2=CC=CC3=CC=CC(=C23)C4=CC=C5C6O,true -OCCNC1=CC=C(C=C1)N=NC2=CC=C(C=C2)NCCO,true -O=C(NC1=CC3=C(C=C1)C2=CC=CC=C2C3)C4=CC=CC=C4,true -CC2=CC(=O)C1=C(C=CC=C1)C2=O,true -CC(C)=CC3C(C(=O)OCC1=CC(=CC=C1)OC2=CC=CC=C2)C3(C)C,true -CC(=C)C2=CC=C(C)C1=CC=C(CO)C1=C2,true -O=C2C1=C(C=CC=C1)C3=C2C=CC4=C3C=CC=C4,true -CCC(C)OS(C)(=O)=O,true -CCCC(=O)C2=C1C=CC=C(C1=C(C3=C(C=CC=C23)O)O)O,true -OC3C=CC2=C1C=C5C(=CC1=CC=C2C3O)C4=CC=CC=C4C=C5,true -O=C2C1=C(C=CC=C1)C(=O)C3=C2C=CC=C3[N+]#N,true -C1OC1COC2=C(C=CC=C2)CC3=CC=CC=C3,true -NC4=C2C=CC=C3C1=CC=CC=C1C(=C23)C=C4,true -CC(O)C(=O)NCCO,true -CC3=C2C1=CC=CC=C1C=CC2=C(C4=CC=CC=C34)CCl,true -COC3=C2N=C1OC=CC1=C(C2=CC4=C3OCO4)OC,true -ClC(Cl)C(=O)C(Cl)(Cl)Cl,true -C[N]2C(=NC3=C1N=C(C)C=NC1=CC(=C23)CO)N,true -COC1=C(C=CC(=C1)C2=CC(=C(C=C2)N=C=O)OC)N=C=O,true -CC2=C3C=CC4=C1C=CC=CC1=CC5=CC=C(C=C2)C3=C45,true -CCCCN(CCO[N+]([O-])=O)[N+]([O-])=O,true -ClC(=C)C=O,true -COC4=C(C=C3C2=C1OCOC1=CC5=C2C(CC3=C4)N(C)CC5)OC,true -CC(=O)N(O)C1=CC=C(C=C1)OC2=CC=CC=C2,true -OC(=O)C1=C(C=CC=C1)[N+]([O-])=O,true -[O-][N+](=O)C1=C3C=CC=C4C5=C(C2=CC=CC(=C1)C2=C34)CCCC5,true -CC(C)OC(=O)C=CC1=CC=C(O1)[N+]([O-])=O,true -OC1=C2C=CC3=C(C=CC4=CC=C(C=C1)C2=C34)[N+]([O-])=O,true -CC1=CC(=C(C=C1)N)C,true -OC1=CC=C(C=C1)NC2=C(C=C(C=C2)[N+]([O-])=O)[N+]([O-])=O,true -CC2=C(C1=CC=CC=C1C=C2)[N+]([O-])=O,true -OC5C=CC4=C(C=C3C1=CC=CC2=CC=CC(=C12)C3=C4)C5O,true -[O-][N+](=O)C1=C(C=CC=C1)C=CC=O,true -NC1=CC=C(C=C1)C=CC2=CC=C(C=C2)C#N,true -OC(=O)C1=CC=C(C=C1)[N+]([O-])=O,true -CN(CC1=CC(=CC=C1)C#N)N=O,true -CC1=C(C(=CC(=C1)N)[N+]([O-])=O)N,true -OS(=O)(=O)C1=CC(=O)C(=O)C2=C1C=CC=C2,true -COC1=CC(=CC=C1)C=CC2=CC=C(C=C2)[N+]([O-])=O,true -CC(=O)NC1=CC=C(C=C1)OC2=CC=C(C=C2)N,true -CC1=CC3=C(C(=C1)O)C(=O)C2=C(C=C(C=C2O)O)C3=O,true -ONC2=C1N=C[NH]C1=NC=N2,true -[O-][N+](=O)C1=CC3=C(C=C1)C2=C(C=CC=C2C=C3[N+]([O-])=O)[N+]([O-])=O,true -CCN1N=C(C(O)=O)C(=O)C3=C1C=C2OCOC2=C3,true -CN(C)C1=CC=C(C=C1)N(C)C,true -[O-][N+](=O)C1=CC(=CC=C1)C2=C(C=C(C=C2)[N+]([O-])=O)[N+]([O-])=O,true -CCNC1=CC(=CC=C1)O,true -NC1=CC(=C(C=C1)CC2=C(C=C(C=C2)N)[N+]([O-])=O)[N+]([O-])=O,true -NC2=C1C=CC=NC1=CC=C2,true -FC2=C1C=CC=NC1=C(C=C2)F,true -NC1=CC3=C(C=C1)C2=CC=C(C=C2C3)[N+]([O-])=O,true -[O-][N+](=O)C1=CC4=C2C1=CC=CC2=CC5=C3C=CC=CC3=CC=C45,true -COC1=CC=C(C=C1)CCC2CO2,true -NC3=CC=C2[NH]C1=CC=CC=C1C2=C3[N+]([O-])=O,true -COC3=CC=C2[NH]C1=C(C)C=C(N)C(=C1C2=C3)C,true -O=NC1=C(C=CC=C1)C2=CC=CC=C2,true -CC2=NC1=CC=CC=C1C=C2,true -OC3C(O)C2=C(C1=NC=CC=C1C=C2)C4OC34,true -ClCC(Cl)CCl,true -COC1OC(=O)C(=C1C(Cl)Cl)Cl,true -CC1=CC(=CC=C1)C(Cl)=O,true -CC2=C[N]1C(=C(N=C1S2)C3=CC=C(C=C3)[N+]([O-])=O)N=O,true -COC1=C(C=C(C=C1)C)N,true -COC1=CC=C(C=C1)C=CC2=CC=C(C=C2)N,true -OC(=O)CCOP(O)(=N)N(CCCl)CCCl,true -S=C=NC2=C1C=CC=CC1=CC=C2,true -COC1=CC=C(C=C1)C(Br)=CC(O)=O,true -CCOC1=C(C=C(C=C1)N)N,true -CN(C)C1=CC=C(C=C1)N=NC2=CC=C(C=C2)NC(C)=O,true -CC(=O)N(O)C1=CC=C(C=C1)OC2=C(C=C(C=C2)Cl)Cl,true -C[N]2C(=NC3=C1N=CC=NC1=CC(=C23)C)N,true -[O-][N+](=O)C(Br)(Br)Br,true -OCCN(CCO)C2=C1C=CC=CC1=NC(=N2)C3=CC=C(S3)[N+]([O-])=O,true -CC1(C)CC2C(O)(C1)C=C(C=O)C34CC23C(=O)OC4O,true -NC3=C2N=C1C=CC=C(C1=NC2=CC=C3)N,true -OC4C=CC3=C2C=C1C=CC=CC1=C(C2=CC=C3C4O)Cl,true -[O-][N+](=O)C2=CC=C1SN=CC1=C2,true -OC2C=CC1=C3C=CC4=CC=CC5=CC=C(C=C1C2O)C3=C45,true -[O-][N+](=O)C1=CC3=C(C=C1)C2=CC(=CC=C2C=C3)[N+]([O-])=O,true -[O-][N+](=O)C2=C3C=CC4=C1C=CC=CC1=CC5=CC=C(C=C2)C3=C45,true -[O-][N+](=O)C1=CC3=C(C=C1)C2=CC=CC=C2[NH]3,true -NC1=C(C=C(C=C1Cl)[N+]([O-])=O)Cl,true -S=C=NCCC1=CC=CC=C1,true -CCC=CC=CC=CC=COCC(O)CO,true -[O-][N+](=O)C1=C2C=CC3=CC5=C(C4=CC=C(C=C1)C2=C34)CCC=C5,true -[O-][N+](=O)C2=C3C=CC4=CC=CC5=C1CCCCC1=C(C(=C2)[N+]([O-])=O)C3=C45,true -C1CO1,true -CN2C1=C(C=C(C(=C1)C)C)N=C3C(=O)NC(=O)N=C23,true -OC(=O)CC1=CC=C(C=C1)[N+]([O-])=O,true -CC1=C(C=CC2=CC=CC=C12)[N+]([O-])=O,true -CC(=O)ON(C(C)=O)C1=CC=C(C=C1)C2=CC=CC=C2,true -O5C6C=CC4=C3C=C1C=CC=C2C=CC(=C12)C3=CC=C4C56,true -NC(=O)C1=C(C=C(C(=C1)N2CC2)[N+]([O-])=O)[N+]([O-])=O,true -OCC(Br)=C(Br)CO,true -OC1=CC3=C(C(=C1)O)C(=O)C2=C(C(=CC=C2O)O)O3,true -[O-][N+](=O)C1=CC3=C(C=C1)OC2=C(C=CC(=C2)[N+]([O-])=O)O3,true -OC2C=CC1OC1C2O,true -[O-][N+](=O)C1=CC(=CC=C1)S(=O)(=O)OCC2CO2,true -[O-][N+](=O)C1=CC=C(O1)C=NN2CC(=O)NC2=O,true -CC1(CO1)C2=CC=C(C=C2)C#N,true -FC5=C4C=C3C1=CC=CC2=CC=CC(=C12)C3=CC4=CC=C5,true -OCC(O)CCl,true -CC1=C(C=C(C=C1[N+]([O-])=O)[N+]([O-])=O)[N+]([O-])=O,true -CCC1(C(=O)NC(=O)NC1=O)C2=CC=CC=C2,true -[O-][N+](=O)OCC(CO[N+]([O-])=O)O[N+]([O-])=O,true -CC(=C)C(=O)OCC(Br)CBr,true -CN(C)CCNC(=O)C3=C2C=C1C=CC=CC1=NC2=CC=C3,true -NC1=CC=C(C=C1)C=CC2=CC(=CC=C2)N,true -CC1=CC=C(C=C1)C=CC2=CC=C(C=C2)[N+]([O-])=O,true -CCCCOC3=NC2=C(C1=CC=C(C=C1N=C2C=C3)Cl)NCCCN(CC)CCCl,true -OCC=CCl,true -OCC(O)C(O)C(O)C(O)C1SCCN1N=O,true -C1OC1COC2=NSC3=CC=CC=C23,true -C1OC1COC2=CC=C(C=C2)CC3=CC=CC=C3,true -CN(CCC#N)C1=CC=C(C=C1)N=NC2=CC=CC=C2,true -[O-][N+](=O)C1=CC(=C(C(=C1)[N+]([O-])=O)NC2=C(C=C(C=C2[N+]([O-])=O)[N+]([O-])=O)[N+]([O-])=O)[N+]([O-])=O,true -C5CC1=C(C2=CC=C3C=CC=C4C=CC(=C1)C2=C34)C=C5,true -CCCCOC1=CC=C(C=C1)N=O,true -CC(C)(C)OCC1CO1,true -OC6C=CC5=C3C1=CC=CC=C1C4=CC2=CC=CC=C2C(=C34)C=C5C6O,true -CC1=CC4=C(C=C1)C3=CC2=CC=CC=C2C=C3C=C4,true -[O-][N+](=O)C3=CC=C2[NH]C1=CC=C(C=C1C2=C3)[N+]([O-])=O,true -NC1=C3C=CC=C4C=CC2=CC=CC(=C1)C2=C34,true -CCBr,true -C1COC1,true -[O-][N+](=O)C1=C3C=CC=C4C=CC2=CC=CC(=C1)C2=C34,true -C(CC1=CC=C(C=C1)C2=CC=CC=C2)C3CO3,true -ClC(=O)C1=CC(=CC=C1)Cl,true -CC(C)=CCC2=C1OC3=C(C(C1=C(C=C2)O)=O)C(=C4C(=C3)OC5OC=CC45O)O,true -COC1=CC=C(C=C1)[N+]([O-])=O,true -CC1(C)CC3=C(C1)C(C=O)C2(CC2(C)C3O)C=O,true -[O-][N+](=O)C2=CC1=NC3=C(N=C1C=C2)C(=CC=C3)[N+]([O-])=O,true -CC1=C(C=C(C=C1)N)N,true -OC(=O)C1=C(C=C(C=C1)[N+]([O-])=O)[N+]([O-])=O,true -CNC2=C1C(C3=C(C(C1=C(C=C2)NCCO)=O)C=CC=C3)=O,true -[O-][N+](=O)C4=C3C1=CC=CC=C1C2=CC=CC5=C2C3=C(C=C4)C6OC56,true -COC2=NSC3=CC=C(OCC1CO1)C=C23,true -CCCC(=C)C=O,true -C1=CC3=C(C=C1)C2=CC5=C(N=C2C=C3)C4=CC=CC=C4C=C5,true -NC1=C(C=C(C=C1Br)[N+]([O-])=O)[N+]([O-])=O,true -OCC1CO1,true -ClC1=CC=C(C=C1)C=NN4N=NC2=C([NH]C3=CC=CC=C23)C4=O,true -O[N+]([O-])=C(Cl)Cl,true -NC(=O)CNC(=O)C=[N+]=[N-],true -OC2=C1C(C3=C(C(C1=CC=C2)=O)C=CC=C3)=O,true -CC1=C(C=C(C=C1)[N+]([O-])=O)N,true -CC1=NC(=CN=C1)C,true -NC3=C2C=C1C=CC=CC1=CC2=CC=C3,true -NC1=CC=C(C=C1)C2=CC(=C(C(=C2)Cl)N)Cl,true -BrCC(Br)COC(=O)C=C,true -O=NC1=CC=C(C=C1)SC2=CC=CC=C2,true -ClC(=O)C1=C(C=CC=C1)Cl,true -NC1=CC=C(C=C1)OC2=CC=CC=C2,true -O=CCCCC=O,true -COC2=CC=C1OC(=CC1=C2N(CCCl)CCCl)[N+]([O-])=O,true -C=CC(=O)OCC1CO1,true -[NH]1N=NC2=CC=CC=C12,true -OC3C=CC2=C(C1=CC=CC=C1C=C2C3O)[N+]([O-])=O,true -COC1=C(C=C(C=C1)CC2=C(N=C(N=C2)N)N)OC,true -CC(=O)NC3=C2C1=CC=CC=C1CC2=CC=C3,true -CC1(CO1)C2CO2,true -NC(=O)C1CO1,true -NC(=S)NN=C1C=CC(C=C1)=NN=C(N)N,true -ClC(C(Cl)=O)C1=CC=CC=C1,true -NC1=CC=C(C=C1)N=NC2=CC=C(C=C2)N,true -[O-][N+](=O)C1=CC=C(O1)C=NN2CCOC2=O,true -[O-][N+](=O)C3=C2C=CC1=CC=CC4=C1C2=C(C=C3)C5OC45,true -[O-][N+](=O)C3=CC2=NC1=CC=C(C=C1N=C2C=C3)[N+]([O-])=O,true -NC2=C1N=C[N](C1=NC=N2)C3=CC=C(C=C3)[N+]([O-])=O,true -C1=CN=C(C=C1)C2=NC(=CC=C2)C3=NC=CC=C3,true -NC1=C(C=C(C=C1)C2=CC(=C(C=C2)N)Cl)Cl,true -C[N]3C2=CC=C1N=CC=CC1=C2N=C3[N+]([O-])=O,true -[O-][N+](=O)C1=CC=C(C=C1)C=CC2=CC(=CC=C2)[N+]([O-])=O,true -CC2=C1C=CC=CC1=C(C3=CC=CC=C23)CBr,true -NC1=CC=C(C=C1)C=C,true -CC1=C(C=CC(=C1)Cl)N,true -NC(CSC(Cl)=C(Cl)Cl)C(O)=O,true -OCC4=C2C1=CC=CC=C1C=CC2=C3C=CC=CC3=C4,true -NC2=NC1=CC=CC=C1C=C2,true -CCCCON=O,true -[O-][N+](=O)C1=CC=C(C=C1)Br,true -C[N]2C1=CC=CC=C1C(=C2C3=CC=CC=C3)N=NC4=[N+](C=CS4)C,true -CC1=C(C(=C(C(=C1)N)C)[N+]([O-])=O)N,true -OC1=CC3=C(C(=C1)O)C(=O)C2=C(C=CC=C2)C3=O,true -[O-][N+](=O)C1=CC3=C(C=C1)C2=CC(=CC=C2C(=C3)[N+]([O-])=O)[N+]([O-])=O,true -OCC3=C2C1=CC=CC=C1C=CC2=C(C4=CC=CC=C34)COS(O)(=O)=O,true -ClP(=O)(N1CCOC1=O)N2CCOC2=O,true -[O-][N+](=O)C1=CC3=C(C=C1)C2=CC=C(C=C2C3)[N+]([O-])=O,true -OCCCCCl,true -CC1=C(C=C(C=C1[N+]([O-])=O)N)[N+]([O-])=O,true -CC(C)CON=O,true -ClC2=C1C=CC=CC1=NC=C2,true -[O-][N+](=O)C3=CC2=NC1=CC(=CC=C1N=C2C=C3)[N+]([O-])=O,true -C1=C2C=CC3=CC=C4C=CC5=CC=C6C=CC(=C1)C7=C2C3=C4C5=C67,true -NC(CS)C(=O)NCC(O)=O,true -[O-][N+](=O)C1=CC(=CC=C1)C=O,true -C[N]1C(=NC2=NC=C(C=C12)C3=CC=CC=C3)NO,true -[O-][N+](=O)C5=CC=C4C3=C2C(=CC1=CC=CC=C1C2=CC=C3)C4=C5,true -OS(=O)(=O)C1=CC3=C(C=C1)C(=O)C2=C(C=CC=C2C3=O)[N+]([O-])=O,true -ClCCNCCCl,true -BrCC1=C4C(=CC2=CC=CC=C12)C3=CC=CC=C3C=C4,true -CC(C)(C1=CC=C(C=C1)OCC2CO2)C3=CC=C(C=C3)OCC4CO4,true -CC(=O)NC1=CC=C(C=C1)C(=O)CCl,true -CC3=C2[NH]C1=CC=C(N)C=C1C2=C(C)C4=CN=CC=C34,true -NC1=CC=C(C=C1)SC2=CC=C(C=C2)N,true -COC4=CC3=C1N=CC=C2C=C(C(C(=C12)C(=C3C=C4)O)=O)OC,true -CC1(C)CC(N)CC(C)(C)N1O,true -ClCC2=C1C=CC=CC1=CC3=CC=CC=C23,true -[O-][N+](=O)C4=C2C=CC=C3C1=C(C=CC=C1C(=C23)C=C4)[N+]([O-])=O,true -COC5=C2[C]1=C(C=C(C1=C(OC2=C4C3C=COC3OC4=C5)O)O)O,true -CCOC(=O)C=CC1=CC=C(O1)[N+]([O-])=O,true -COCC(O)C[N]1C=C(N=C1Cl)[N+]([O-])=O,true -ClC1=CC=C(C=C1)CCC2CO2,true -O=C2OC1=C(C=CC=C1)C=C2,true -CC(O)C1=C2C=CC3=CC=CC4=CC=C(C=C1)C2=C34,true -C1=CC2=CC=C3C=NC=C4C=CC(=C1)C2=C34,true -CC2=C1C=CC=CC1=C(C3=CC=CC=C23)CCl,true -OC5=CC4=C2C=C1C=CC=CC1=CC2=C3C=CC=CC3=C4C=C5,true -[O-][N+](=O)C1=CC=C(C=C1)COC(=O)C2=CC=CC=C2,true -CC(Br)C(N)=O,true -[O-][N+](=O)C3=C2C(C(C1=CC=CC4=C1C2=C(C=C3)C=C4)=O)=O,true -C[N]1C(=NC2=C1C=CC3=NC(=CN=C23)C)N,true -NC4=C2C1=CC=CC=C1C3=CC=CC(=C23)C=C4,true -C[N]2C=C1C=CC(=CC1=N2)[N+]([O-])=O,true -[O-][N+](=O)C1=CC=C(O1)C=NN2CCNC2=O,true -O=C3C2=C(C1=CC=CC=C1C=C2)C4=C3C=CC5=C4C=CC=C5,true -OC2=C1N=CC=CC1=C(C=C2)S(O)(=O)=O,true -OC1=CC3=C(C=C1)OC2=C(C(=CC(=C2)O)O)C3=O,true -CN(CCCC(=O)C1=CN=CC=C1)N=O,true -CN(C)C3CC2=C1C(=CC=CC1=CC=C2)C3,true -CC4=C3C2=CC=C1C=CC=CC1=C2C=CC3=CC=C4,true -CCN(N=O)C(N)=O,true -CN(C)C1=CC=C(C=C1)N=NC3=CC=C2[NH]N=CC2=C3,true -CC1=C(C=CC=C1)C2=CC(=C(C=C2)N)C,true -C1OC1COC3=C2SN=CC2=CC=C3,true -ONC1=CC=C(C=C1)[N+]([O-])=O,true -COC1=C(C=C(C(=C1)N)[N+]([O-])=O)N,true -CN(C)C(=O)N(C)C=O,true -ClC(Cl)C(C=O)=C(Cl)Cl,true -NC1=CC(=CC=C1)N,true -CC4=CC3=C(C2=CC=C1C=CC=CC1=C2N=C3C(=C4)C)C,true -CC(=O)NC1=C(C=C(C=C1)CC2=CC(=C(C=C2)N)Cl)Cl,true -CC(=O)NC1=CC=C(C=C1)NC2=CC=C(C=C2)[N+]([O-])=O,true -[O-][N+](=O)C1=CC=C(C=C1)OC2=CC=C(C=C2)N=C=S,true -CC1=CC=C(C=C1)N(CCO)CCO,true -CC1=CC=C(C=C1)C=CC2=CC=C(C=C2)N,true -[O-][N+](=O)C2=C3C=CC4=CC=C(C5=C1CCCCC1=C(C=C2)C3=C45)[N+]([O-])=O,true -CC(=O)OCC1=CC=CO1,true -NC1=C(C(=CC(=C1)[N+]([O-])=O)[N+]([O-])=O)O,true -NC3=C2C(=C1C=CC=CC1=C(C2=C(C=C3)N)O)O,true -CC(=O)C1=CC=CO1,true -CN(N=O)C(N)=O,true -C1C5=C4C3=C1C=C2C=CC=CC2=C3C=CC4=CC=C5,true -[O-][N+](=O)C1=CC3=C(C=C1)OC2=C(C=C(C=C2)[N+]([O-])=O)O3,true -OC(=O)C1=C(C(=C(O1)[N+]([O-])=O)C2=CC=CC=C2)C3=CC=CC=C3,true -CC4=C(C=C3C(=C2C=CC1=CC=CC=C1C2=NC3=C4)C)C,true -NC2=C1[NH]C=NC1=NC(=N2)C3=CC=C(C=C3)[N+]([O-])=O,true -BrCC(Br)C=O,true -[O-][N+](=O)C2=C1C=CC=CC1=CC3=CC=CC=C23,true -OC1=CC=C(C=C1)C2=CC=CC=C2,true -CC(=O)C=CC1=CC=CC=C1,true -CC2=C4C1=CC=CC=C1C=C5C=CC3=CC=CC(=C2)C3=C45,true -CC1=CC=C(C=C1)N(N)C2=CC=C(C=C2)C,true -COC1=C(C=C(C=C1[N+]([O-])=O)[N+]([O-])=O)[N+]([O-])=O,true -CC1=C4C(=CC=C1)C3=CC2=CC=CC=C2C=C3C=C4,true -CCC1(C(=O)NCNC1=O)C2=CC=CC=C2,true -C2=CC1=CC4=C(C=C1C=C2)C3=CN=CC=C3C=C4,true -O=S1(=O)CCCO1,true -CNC(=O)NOC(=O)NC,true -OC1=CC4=C(C=C1)C5=C2C=CC=CC2=CC6=C3C=CC=CC3=CC4=C56,true -COC2=C1C(C5=C(OC1=CC4=C2C3C=COC3O4)C(=CC=C5O)CCC(C)(C)O)=O,true -[O-][N+](=O)C4=C3C1=CC=CC2=CC=CC(=C12)C3=CC=C4,true -CC3=C1C4=C(C=CC1=C2C=CC=CC2=C3)C(O)C(O)C5OC45,true -NC2=CC1=CC=CC=C1N=C2,true -CC4=CC3=C2C=C1C=CC=CC1=CC2=CC=C3C=C4,true -ClCBr,true -ClC(Cl)(Cl)C1CO1,true -[O-][N+](=O)C1=CC(=C(C=C1)C=O)[N+]([O-])=O,true -CC(C)=CCOC2=C1OC=CC1=CC3=C2OC(C=C3)=O,true -CC1CC(=O)O1,true -OCC1=C(C3=C(C=C1O)C(=O)C2=C(C=CC=C2)C3=O)O,true -[O-][N+](=O)C1=C3C(=CC=C1)C2=C(C=CC=C2C(=C3)[N+]([O-])=O)[N+]([O-])=O,true -CCC(C)COC(=O)C=CC1=CC=C(C=C1)N=CC2=CC=C(C=C2)OC,true -C3=CC2=CC1=CC=CC=C1C=C2C=C3,true -CCCC(=O)C1=C(C=C(C(=C1)O)O)O,true -CCN(CCCl)C1=CC=C(C=C1)OCCCCCNC3=C2C=CC=CC2=NC4=CC=CC=C34,true -CC(=O)N(O)C1=CC=C(C=C1)C2=CC=CC=C2,true -O1C=CC2=CC3=CC=C4C=CC=C5C=CC(=C12)C3=C45,true -OC1OC(=O)C(=C1CCl)Cl,true -NC1=CC=C(C=C1)C=CC2=CC(=CC=C2)Cl,true -CCOC(=O)C(C)Br,true -COC1=NSC2=CC(=CC=C12)OCC3CO3,true -COC4=C2C1=CC=CC=C1C=CC2=C3CCC(C3=C4)=O,true -COC1=CC=C(C=C1)C=NN4N=NC2=C([NH]C3=CC=CC=C23)C4=O,true -CC1CN(CC(C)O1)N=O,true -O=CC1=C2C=CC3=CC=CC4=CC=C(C=C1)C2=C34,true -CN(C(=O)C1=CSC(=C1)[N+]([O-])=O)C2=CC=CC=C2,true -NC2=C1C(C3=C(C(C1=CC=C2)=O)C(=CC=C3)N)=O,true -NC1=C(C=C(C=C1)[N+]([O-])=O)N,true -O1C3C1C2=C(C=CC=C2)C4=C3C=CC=C4,true -NC1=C(C=C(C=C1)C2=CC(=C(C(=C2)Cl)N)Cl)Cl,true -C1OC1COC2=CC=C(C=C2)C3=CC=CC=C3,true -CCCSC(Cl)=O,true -CC3(C)CC2C=C(C=O)C14CC1(C2C3)C(=O)OC4O,true -NC2=C1C=C(C=CC1=NC3=CC=CC=C23)O,true -CC(=O)NC1=CC(=C(C=C1)C)N,true -CN(CC1=CC=C(C=C1)F)N=O,true -CC(=C)C(=O)OCC1CO1,true -CC1=C(C(=CC=C1N)N=NC2=CC=CC=C2)N,true -CC1=C(C=C(C=C1)[N+]([O-])=O)N=O,true -ClCC2=C1C=CC=CC1=C(C3=CC=CC=C23)CCl,true -CCC(COC(=O)C=C)(COC(=O)C=C)COC(=O)C=C,true -NC2=CC1=CC=CC=C1C=C2,true -CCCON=O,true -COC1=CC=C(C=C1)C=CC2=CC=C(C=C2)[N+]([O-])=O,true -NC3=CC=C2[NH]C1=CC=CC=C1C2=C3,true -CNC(=O)OC1=C(C=CC=C1)OC(C)C,true -CC1=C3C(=C(C(=C1)[N+]([O-])=O)C)C2=CC=CC=C2[NH]3,true -COC1=CC(=C(C=C1)N)C,true -C1=CC=C4C(=C1)C=C3C2=C(C=CC=C2)C5=C3C4=CC=C5,true -ClCC=C,true -CC3=C2C1=CC=CC=C1C=CC2=C(C4=CC=CC=C34)CBr,true -O=C1C=CC4=C2C1=CC=C3C=CC(C(=C23)C=C4)=O,true -CC(=O)C(Cl)(Cl)Cl,true -OC(=O)C1=CC(=C(C=C1)[N+]([O-])=O)[N+]([O-])=O,true -COC3=C1C=COC1=NC4=CC2=C(OCO2)C=C34,true -[O-][N+](=O)C4=C3C1OC1C2=CC=CC5=C2C3=C(C=C4)C=C5,true -NC(CCC(=O)NC(CSN=O)C(=O)NCC(O)=O)C(O)=O,true -OC1CCOP(=O)(N1)N(CCCl)CCCl,true -C[N]3C2=CC=C1C=CC=CC1=C2C4=C3C=CC5=CC=CC=C45,true -NC2=C1C=C(C=CC1=NC3=CC=CC=C23)Cl,true -NC1=C(C=C(C=C1)C2=CC(=C(C=C2)N)N)N,true -CC1=C(C(=CC=C1)N)C,true -OC5=C4C=C3C1=CC=CC=C1C2=CC=CC=C2C3=CC4=CC=C5,true -OCC(C(Cl)Cl)=C(Cl)C(O)=O,true -N(N=NC1=CC=CC=C1)C2=CC=CC=C2,true -C[N]1C=NC(=C1C(=O)N(C)N=O)N(C)N=O,true -CCCCN(CC(O)C1=CC(=[N+]=[N-])C(=O)C=C1)N=O,true -CN1CC(O)C4=C2C1CC5=C(C2=C3OCOC3=C4)C=CC=C5,true -[O-][N+](=O)C1=CC(=C(C=C1)C2=CC=CC=C2)[N+]([O-])=O,true -OC2=C1C(C=CC(C1=C(C=C2)O)=O)=O,true -OC2C=CC1=CC5=C4C(=C1C2O)C3=CC=CC=C3C4=CC6=CC=CC=C56,true -COC2=C1C=COC1=NC3=CC=CC=C23,true -CCCCCCN(N=O)C(N)=N[N+]([O-])=O,true -[O-][N+](=O)C1=CC=C(C=C1)C2=CC=C(C=C2)[N+]([O-])=O,true -NC1=CC3=C(C=C1)C(=O)C2=C(C=CC(=C2)N)C3=O,true -CC(=O)NC3=C(C=C2C1=CC=CC=C1CC2=C3)Cl,true -C1=CC5=C(C=C1)C4=C2C=CC3=CC=CC(=C23)C=C4C=C5,true -[O-][N+](=O)C1=CC3=C2C1=CC=CC2=CC=C3,true -COC2=CC=C1[N](C)C(=NC1=C2)N,true -COC1=CC(=C(C=C1)N)OC,true -CCNC1=C(C=CC(=C1)O)C,true -OC5C1OC1C4=C(C3=CC=C2C=CC=CC2=C3C=C4)C5O,true -[O-][N+](=O)C1=CC3=C2C1=CC=CC2=CC5=C3C4=CC=CC=C4C=C5,true -OC1OC(=O)C(=C1Cl)Cl,true -CC(=O)NC1=C2C=CC3=CC=CC4=CC=C(C=C1)C2=C34,true -CN(C)CCNC(=O)C3=C2N=C1C=CC=CC1=CC2=CC=C3,true -NC(=O)C=CC1=CC=C(O1)[N+]([O-])=O,true -CC(CC1=CC(=C(C=C1)O)O)(NN)C(O)=O,true -ClCC(Br)CCl,true -CC4=CC3=NC2=C1C=CC=CC1=CC=C2C(=C3C=C4)C,true -CC(=O)OCC2=C1C=CC=CC1=C(C3=CC=CC=C23)C,true -CCCCC(CC)COCC1CO1,true -COC4=CC=C3C(=O)C2=C1C(=NC=CC1=CC(=C2OC)OC)C3=C4,true -CC(O)CBr,true -COC(=O)C12CC1(C=O)C(C=O)C=C3CC(C)(C)CC23,true -[O-][N+](=O)C3=CC=C2OC1=CC=C(C=C1C2=C3)[N+]([O-])=O,true -NC2=C1N=C[N](C1=NC(=N2)C3=CC=C(C=C3)[N+]([O-])=O)C4CC(O)C(CO)O4,true -C3CC2=C(C1=NC=CC=C1C=C2)C4OC34,true -CCOP(=O)(OCC)N1C3C1C2=C(C=CC=C2)C4=C3C=CC=C4,true -NC1=CC=C(C=C1)SC2=CC=C(C=C2)[N+]([O-])=O,true -[O-][N+](=O)C1=CC=C(C=C1)C3=C([N]2CCSC2=N3)[N+]([O-])=O,true -OC5=C4C1=CC=CC=C1C3=CC2=CC=CC=C2C=C3C4=CC=C5,true -CC1=C(C=CC=C1)N,true -O1C4C1C3=C(C=C2C=CC=CC2=C3)C5=C4C=CC=C5,true -N1C4C1C3=C(C=C2C=CC=CC2=C3)C5=C4C=CC=C5,true -OC1CC(=O)C5=C4C1(C2CCC(C3=C(C=CC(=C23)C4=CC=C5O)O)=O)O,true -OC(=O)C1=CC=C(O1)[N+]([O-])=O,true -O=C(OCC1CO1)C2=CC(=CC=C2)C(=O)OCC3CO3,true -ClC(Cl)=C1OC(=O)C=C1,true -[O-][N+](=O)C3=C1C=CC2=CC=CC(=C12)C=C3,true -C[N]1C(=NC2=C1C=CC3=NC=CC=C23)NO,true -OC1=CC=C(C=C1)C3OC2=C(C(=CC(=C2)O)O)C(=O)C3=O,true -OCC(CO)(CBr)CBr,true -FC5=C3C=CC=C4C2=CC1=CC=CC=C1C=C2C(=C34)C=C5,true -BrCCOC(=O)C=C,true -[O-][N+](=O)C3=C2C=CC1=CC=CC4=C1C2=C(C=C3)OC4=O,true -[O-][N+](=O)C1=CC2=C(C=C1)CCN2,true -COC3=C2N=C1C=CC=CC1=C(C2=CC=C3)NCCCNCCCl,true -[O-][N+](=O)C2=NC1=CC=CC=C1[NH]2,true -COC(=O)C4=C2C(=CC1=C(C=CC=C1C2=C3OCOC3=C4)OC)[N+]([O-])=O,true -CCOCC1=C(C3=C(C=C1O)C(=O)C2=C(C=CC=C2)C3=O)O,true -NC1=CC4=C3C(=C1)C2=CC=CC=C2C3=CC=C4,true -COC3=CC2=C(C1=CC=C(C=C1N=C2C=C3)Cl)NCCCNCCCl,true -C1CN1C2=NC(=NC(=N2)N3CC3)N4CC4,true -CC3=C(C=C2C(=C1C=CC=CC1=C(C2=C3)C)C)C,true -CN(C)CCCNC2=C1C(=CC=C(C1=NC3=CC=CC=C23)C)[N+]([O-])=O,true -CC(=O)OCC1=C4C(=C(C2=CC=CC=C12)C)C3=CC=CC=C3C=C4,true -CC4=CC3=C2C=CC1=CC=CC=C1C2=CC=C3C=C4,true -OC4C=CC3=C(C2=CC=C1C=CC=CC1=C2C=C3[N+]([O-])=O)C4O,true -OC(=O)C4=CN(C1CC1)C2=C(C=C(C(=C2)N3CCNCC3)F)C4=O,true -CC1=C(C=CC=C1)OCC2CO2,true -[O-][N+](=O)C1=C(C=C(C=C1)Cl)Cl,true -COC1=CC2=C(C(=C1)O)C(C(C(O2)C3=CC(=C(C=C3)O)O)=O)=O,true -CCCCC1C(=O)N(N(C1=O)C2=CC=C(C=C2)O)C3=CC=CC=C3,true -CCN(CC)C1=CC=C(C=C1)C2=CC=C(C=C2)C3=CC=C(C=C3)N(CC)CC,true -NC3=CC2=CC1=CC=CC=C1N=C2C=C3,true -[O-][N+](=O)C1=C(C=CC(=C1)Cl)Cl,true -ONC1=C(C=CC=C1)C2=CC=CC=C2,true -NC2=NC1=CC(=CC=C1[NH]2)C#N,true -CC1=CC=C2C(=C1)C=CC3=C2C4=C([NH]3)C=CC5=C4C=CC=C5,true -CC1=C(C=C(C=C1N)[N+]([O-])=O)N,true -CC(=O)NC1=C(C=C(C=C1)CC2=CC(=C(C=C2)NC(C)=O)Cl)Cl,true -C=CC1CO1,true -C1=CC5=C(C=C1)C4=NC3=C2C=CC=CC2=CC=C3C=C4C=C5,true -CC(=O)NC1=CC3=C(C=C1)C2=CC=C(C=C2C3)NC(C)=O,true -[O-][N+](=O)C2=C3C=CC4=C1C=CCCC1=CC5=CC=C(C=C2)C3=C45,true -CCN1CCN(CC1)C3=C(C=C2C(C(=CN(C2=C3)C4CC4)C(O)=O)=O)F,true -OC3C=CC2=C1C=CC=CC1=CC=C2C3O,true -CN(C)C1=CC=C(C=C1)N=NC2=C(C=CC=C2)C(O)=O,true -[O-][N+](=O)C1=C2C5=C(C3=C(C=CC4=CC=C(C=C1)C2=C34)[N+]([O-])=O)CCCC5,true -OC2=C1C(C3=C(C(C1=C(C=C2)O)=O)C=CC=C3)=O,true -CC(C)CCON=O,true -OC3=C2C(=C1C=CC=CC1=C(C2=C(C=C3)O)O)O,true -CCN(CC)CCCC(C)NC2=C1N=CC=CC1=CC(=C2)OC,true -COC1=C(C(=C(C(=C1Cl)Cl)Cl)Cl)Cl,true -CN(C)C1=CC=C(C=C1)N=NS(O)(=O)=O,true -[O-][N+](=O)C1=CC3=C(C=C1)C2=CC(=CC=C2O3)[N+]([O-])=O,true -CCN(CCO[N+]([O-])=O)[N+]([O-])=O,true -OC(=O)C4=C2C(=CC1=CC=CC=C1C2=C3OCOC3=C4)[N+]([O-])=O,true -CCC(=O)C=C,true -ClCCOC(=O)C=C,true -CCC(O)C=CC=CC=CC=CC=O,true -NC2=C1C(C3=C(C(C1=C(C=C2)N)=O)C=CC=C3)=O,true -[O-][N+](=O)C1=CC=C(O1)C=N[N]2C=CC=N2,true -[O-][N+](=O)C3=CC=C2C(=O)C1=CC=CC=C1C2=C3,true -CC(C)OCC1CO1,true -CC2=C3C=CC4=CC1=CC=CC=C1C5=CC=C(C=C2)C3=C45,true -N1C2C1C6=C4C3=C2C=CC=C3C=CC4=C5C=CC=CC5=C6,true -ClC1CN(CC1Cl)N=O,true -NNC(=O)C1=CC=NC=C1,true -CCCOC(=O)C=CC1=CC=C(O1)[N+]([O-])=O,true -O=NC1=CC=C(C=C1)C2=CC=CC=C2,true -CC2=CC1=C3C=CC4=CC=CC5=CC=C(C=C1C=C2)C3=C45,true -[O-][N+](=O)C4=CC=C3C2=C1C(=CC=CC1=CC=C2)C3=C4,true -C[N]1C(=NC2=CC(=CC=C12)C#N)N,true -[N-]=[N+]=NCCC1=CC=CC=C1,true -CC4=C3C2=CC1=CC=CC=C1C=C2C=CC3=CC=C4,true -CC1=C(C=C(C(=C1)S(O)(=O)=O)N)Cl,true -OCC1OC(CC1O)N2C=C(CO)C(=O)NC2=O,true -C1=CC2=C(C=C1)C5=C(C=C2)C4=CC=C3C=CC=CC3=C4C=C5,true -C1=CC2=C(C=C1)C3=CC5=CC=CC6=CC=C4C=CC2=C3C4=C56,true -COC1=CC4=C3C(=C1OC)C2=CC5=C(C=C2CC3N(CC4)C)OCO5,true -NC1=C(C(=CC(=C1)[N+]([O-])=O)Cl)O,true -[O-][N+](=O)C1=CC=C(O1)C=C(C#N)C#N,true -CCCCNC(=O)C=CC1=CC=C(O1)[N+]([O-])=O,true -CC(=O)C1=CC=C(C=C1)[N+]([O-])=O,true -CCCC=CC=O,true -CC1=CC(=CC=C1)NC(=O)C2=CSC(=C2)[N+]([O-])=O,true -CN(N=O)N(C1=CC=CC=C1)C(=O)C(=NO)C(C)=O,true -O=NN1CCCCCC1,true -CN(C)C1=CC=C(C=C1)N=NC2=C(C=CC=C2)COC(C)=O,true -CC(C)(COCC1CO1)COCC2CO2,true -ClC1=C(Cl)C(=O)OC1,true -COC2=NSC3=C(OCC1CO1)C=CC=C23,true -O=C1NC4=C2C1=CC5=C(C2=C3C=CC=CC3=C4)OCO5,true -NC1=C(C=CC(=C1)[N+]([O-])=O)O,true -CC3=CC2=C(C1=CC=CC=C1N=C2C=C3)N,true -CC=CCC=O,true -OS(=O)(=O)C3=C2C(C1=CC=CC(=C1C(C2=CC=C3)=O)[N+]([O-])=O)=O,true -OCCNC(=O)N(CCCl)N=O,true -CN(CC1=CC=C(C=C1)Cl)N=O,true -[N-]=[N+]=NC1=CC=C(C=C1)NC3=C2C=CC=CC2=NC4=CC=CC=C34,true -CC(=O)CN(COC(C)=O)N=O,true -C=CCOCC1CO1,true -NC1=CC=C(C=C1)CC2=CC(=C(C=C2)N)CC3=CC=C(C=C3)N,true -O=NC1=C3C=CC4=CC=CC5=CC=C(C2=CC=CC=C12)C3=C45,true -CCOC(N)=O,true -OC(=O)C2=[N+](C1=CC=CC=C1[N+](=C2)[O-])[O-],true -NC1=CC=C(C=C1)F,true -CC4=C1C=CC=CC1=C3C=C2C=CC=CC2=CC3=C4,true -C=CCN1C3C1C2=C(C=CC=C2)C4=C3C=CC=C4,true -CCCN(CCC)N=O,true -CC(C)CN(N)CC(C)C,true -NC1=C(C=CC=C1)S(O)(=O)=O,true -ClC1=CC=C(C=C1)CC2CO2,true -O=C2C1=C(C=CC=C1)C(=O)C3=C2C=CC=C3,true -CN(C=O)N=O,true -CC(O)CCl,true -CC(=O)NC3=C2C=CC1=CC=CC4=C1C2=C(C=C3)C(=O)C4=O,true -[O-][N+](=O)C2=CC1=CC=CC=C1C=C2,true -[O-][N+](=O)C3=C2C=CC1=CC=CC=C1C2=CC=C3,true -OCC1=CC=C(O1)C=O,true -NC1=C3C(=CC=C1)C2=CC=CC=C2C3,true -ClC3=C2C=CC1=CC=CC=C1C2=CC4=CC=CC=C34,true -O1C2C1C5=C3C2=CC=CC3=CC6=C4C=CC=CC4=CC=C56,true -CN(C)C1=CC=C(C=C1)N=NC2=CC=CC=C2,true -CC1=CC3=C(C(=C1)C)C2=CC=CC=C2C=C3,true -CC1=C(C(=CC=C1)NO)C,true -BrCCC(=O)N1CCN(CC1)C(=O)CCBr,true -CC1=C(C3=C(C=C1)C(=O)C2=C(C=CC=C2)C3=O)[N+]([O-])=O,true -CC2C1=C(C=CC=C1)C3=C2C(=CC=C3)C,true -CC1=C(C(=CC=C1)[N+]([O-])=O)[N+]([O-])=O,true -CC1=CC(=O)OC2=C1C=C3CCCN4CCCC2=C34,true -NC1=CC=C(C=C1)C2=CC=C(C=C2)[N+]([O-])=O,true -COC2=C1C(C3=C(C(C1=CC=C2)=O)C=CC=C3)=O,true -[O-][N+](=O)C1=CC=C(C=C1)[N+]([O-])=O,true -NC1=CC=C(C=C1)CCC2=CC=CC=C2,true -C1=CC3=C(C=C1)C4=CC=C5C=CC=C6C2=CC=CC=C2C(=C3)C4=C56,true -COC(=O)NC(=S)NC1=C(C=CC=C1)NC(=S)NC(=O)OC,true -O=N[N]1C=C(CC#N)C2=CC=CC=C12,true -COC(=O)C1=NC(=C3C(=C1)C2=CC=CC=C2[NH]3)C4=NC5=C(C=C4)C(=O)C=CC5=O,true -[O-][N+](=O)C1=CC=C(C=C1)C=CC2=CC=C(C=C2)[N+]([O-])=O,true -COCC=O,true -CC1=C(C=CC=C1)C(Cl)=O,true -NC1=CC=C(C=C1)OC2=CC=C(C=C2)OC3=CC=C(C=C3)N,true -OC1=NSC2=CC(=CC=C12)[N+]([O-])=O,true -[O-][N+](=O)C1=CC5=C2C1=CC=CC2=C4C=C3C=CC=CC3=CC4=C5,true -NC3=C2C1=CC=CC=C1CC2=CC=C3,true -C3C=CC4=C2C1=CC=CC=C1C=CC2=CC=C34,true -CC(=O)C1=CC=C[N]1[N+]([O-])=O,true -NC1=CC(=C(C=C1)C2=C(C=C(C=C2)[N+]([O-])=O)N)[N+]([O-])=O,true -O=C2C1=C(C=CC=C1)C4=C3C2=NC=CC3=CC5=C4OCO5,true -COC6=C2[C]1=CC=C(C1=C(OC2=C5C4C3OC3OC4OC5=C6)O)O,true -CC1=C(C=CC=C1)N=NC3=C2C=CC=CC2=CC=C3O,true -OC(=O)C=CC1=CC=C(C=C1)[N+]([O-])=O,true -[O-][N+](=O)C1=C([NH]C=N1)C2=CC=CC=C2,true -ClCCNP1(=O)OCCCN1CCCl,true -NC(CSCCCl)C(O)=O,true -[O-][N+](=O)C1=C(N=C2SCC[N]12)C3=CC=C(C=C3)Cl,true -CC1=CC=C[N]2C1=NC3=C(C)C(=CN=C23)NO,true -CC3=C2C1NC1C5=C(C2=CC4=CC=CC=C34)C=CC=C5,true -[O-][N+](=O)C3=C1C=CC=C2C=CC(=C12)C=C3,true -CC1=CC=C(C=C1)[N+]#N,true -COC1=C(C=CC(=C1)C2=CC(=C(C=C2)N)OC)N,true -CC1=C(C=CC=C1)OP(=O)(OC2=C(C=CC=C2)C)OC3=C(C=CC=C3)C,true -[O-][N+](=O)C3=C2OC(C1=CC=CC4=C1C2=C(C=C3)C=C4)=O,true -NC4=C3C1=CC=CC2=CC=CC(=C12)C3=CC=C4,true -CC[N+](CC)=C4C=CC3=NC2=C1C=CC=CC1=C(C=C2OC3=C4)N,true -C[N]2C1=CC=CC=C1N=C2[N+]([O-])=O,true -ClCCN(N=O)C(=O)NC1CCCCC1,true -CC1=C3C(=C(C(=C1)[N+]([O-])=O)C)C2=CC(=CC=C2[NH]3)O,true -NC1=CC=C(C=C1)C2=CC(=C(C=C2)N)[N+]([O-])=O,true -OC1=C(C(=CC=C1)O)O,true -C=CC(=O)N(CC1CO1)CC2CO2,true -NC3=C1C=CC=CC1=C2C=CC4=C(C2=C3)C=CC(O)C4O,true -CC1=CC4=C(C=C1)C3=CC=C2C=CC=CC2=C3C=C4,true -OC1C(O)C4=C3C2=C1C=CC=C2C=CC3=C(C=C4)[N+]([O-])=O,true -[O-][N+](=O)C1=CC(=CC=C1)C(Cl)=O,true -CC=CC=CC=O,true -OC2=CC1=CC=CC=C1C(=C2)O,true -CCCOC=CC=CC=CC=CC=CCC,true -[O-][N+](=O)C1=CC(=CC(=C1)C(Cl)=O)[N+]([O-])=O,true -OCC4=CC=C3C2=C1C(=CC=CC1=CC=C2)C3=C4,true -CC(C)=CC(C)=NNC2=C1C=CC=CC1=CN=N2,true -C1CSCSC1,true -CC2=C1C=CC=CC1=C(C3=CC=CC=C23)C,true -NC1=C(C=C(C=C1)OC2=CC(=C(C=C2)N)Cl)Cl,true -NC3=CC2=NC1=CC=CC=C1C=C2C=C3,true -CC(=O)C1=C(C(=C(C=C1)Cl)Cl)Cl,true -[O-][N+](=O)C2=C3C1=CC=CC=C1C4=CC=CC5=CC=C(C=C2)C3=C45,true -COC4=C1C5=C(C(OC1=C3C2C=COC2OC3=C4)=O)C(OCC5)=O,true -O4C5=C1C=CC=CC1=C3C=C2C=CC=CC2=CC3=C45,true -NC(CN=[N+]=[N-])C(O)=O,true -[O-][N+](=O)C1=CC=C(C=C1)C(Cl)=O,true -O=C4OC1=C(C=C2CCCN3CCCC1=C23)C=C4,true -CC(=C)C=O,true -[O-][N+](=O)C1=C2C=CC3=CC5=C(C4=CC=C(C=C1)C2=C34)C=CCC5,true -OC1=C(C3=C(C=C1)C(=O)C2=C(C=CC=C2)C3=O)O,true -[O-][N+](=O)C1=C(C(=C(O1)C(=O)CBr)Cl)Cl,true -CC1=C(C=C(C(=C1)N)C)N,true -[O-][N+](=O)C1=C(C=CC=C1)CCl,true -OC1=C(C=C(C=C1Cl)Cl)S(=O)C2=C(C(=CC(=C2)Cl)Cl)O,true -OC(=O)CNC(=O)C1=CC=C(C=C1)[N+]([O-])=O,true -O1C4C1C3=C(C2=CC=CC=C2C=C3)C5=C4C=CC=C5,true -BrCCOC(=O)C(=O)OCCBr,true -C2CC1OC1CC2C3CO3,true -OC6=CC=C5C1=C2C(=CC3=CC=CC4=CC=C(C=C1)C2=C34)C5=C6,true -NC1=C(C=C3C(=C1)C2=CC=CC=C2[NH]3)[N+]([O-])=O,true -[O-][N+](=O)C3=CC(=C2C1=C(C=C(C=C1C(C2=C3)=O)[N+]([O-])=O)[N+]([O-])=O)[N+]([O-])=O,true -[O-][N+](=O)C1=C(C(=C(O1)C(=O)CBr)C2=CC=CC=C2)C3=CC=CC=C3,true -[O-][N+](=O)C2=C3C=CC4=C1CCCCC1=CC5=CC=C(C=C2)C3=C45,true -CC1=C3C(=CC=C1)C2=CC=CC=C2C=C3,true -CC1=C2C(=C(C=C1)C)C3=C(C=C2)C(O)C(O)C4OC34,true -COC1=CC3=C(C(=C1)O)C(=O)C2=C(C(=CC=C2O)O)O3,true -CC[N]1C(=NC2=C1C=CC3=NC(=CN=C23)C)N,true -CC(C)COC(=O)C=CC1=CC=C(O1)[N+]([O-])=O,true -CC5=C3CCC4=C2C1OC1C6=C(C2=CC(=C34)C=C5)C=CC=C6,true -OCN1C(O)C(O)N(CO)C1=O,true -CCC(C)NC(=O)C=CC1=CC=C(O1)[N+]([O-])=O,true -CC1(CO1)C(=O)NCC2=CC=CC=C2,true -NC1=CC=C(C=C1)CC(O)=O,true -[O-][N+](=O)C2=CC(=C1C=CC=CC1=C2)[N+]([O-])=O,true -CC2=CC3=CC=C4C1=CC=CC=C1C=C5C=CC(=C2)C3=C45,true -NC(CCC(=O)NC(CSC(=O)NCCCl)C(=O)NCC(O)=O)C(O)=O,true -NC1=CC=C(C=C1)CCC2=CC=C(C=C2)N,true -CC(C)(O)CCC2=C1OC5=C(C(C1=C(C=C2)O)=O)C(=C4C3C=COC3OC4=C5)O,true -CCOP(=O)(OCC)OC1=NC(=NC(=C1)C)C(C)C,true -CCCCOC(=O)C=CC1=CC=C(O1)[N+]([O-])=O,true -ClCCN(CCCl)C2=CC1=CC=CC=C1C=C2,true -CC(=O)OCC1=C4C(=CC2=CC=CC=C12)C3=CC=CC=C3C=C4,true -C[N]1C(=NC2=CC=C(C=C12)C#N)N,true -COC(=O)C12OC1(C)C(O)(NC2=O)C(C)C,true -NC2=CC1=NC=CC=C1C=C2,true -CC1=CC=C(C=C1)OCC2CO2,true -CC1CNC(=O)N1C2=NC=C(S2)[N+]([O-])=O,true -ClC(Cl)(Cl)CC1CO1,true -NC1=CC=C(C=C1)[N+]([O-])=O,true -ClCCNC(=O)SC2=C1[NH]C=NC1=NC=N2,true -CC(=O)C1=C(C(=C(O1)[N+]([O-])=O)Cl)Cl,true -CC(=O)N(O)C1=CC=C(C=C1)SC2=CC=CC=C2,true -OC1CC=CC2=C3C=CC4=CC=CC5=CC=C(C=C12)C3=C45,true -COC(=O)C(Cl)Cl,true -COC5=C2[C]1=CC=C(C1=C(OC2=C4C3(C=COC3OC4=C5)O)O)O,true -[O-][N+](=O)C1=CC2=C(C=C1)C(=CC3=C(C=CC=C23)[N+]([O-])=O)[N+]([O-])=O,true -OC2=C1C=CC(C(C1=C(C3=CC=CC=C23)O)=N)=N,true -NC1=C(C=C(C=C1)Cl)N,true -CC(=O)NC1=C2C=CC3=CC=C(C4=CC=C(C=C1)C2=C34)O,true -CC1=C(C=CC=C1)NC(=O)C2=CSC(=C2)[N+]([O-])=O,true -[O-][N+](=O)C1=CC2=C(O1)C3=CC=C4C=CC=C5C=CC(=C2)C3=C45,true -[O-][N+](=O)C1=CC3=C(C=C1)C2=CC=CC=C2S3,true -CC(=O)C1=CC=C(C=C1)NO,true -CN(C)C1=CC=C(C=C1)N=NC2=CC=C(C=C2)COC(C)=O,true -CN(COC(C)=O)N=O,true -CC(Br)C(=O)NCC1=CC=CC=C1,true -OC5C=CC4=C(C3=CC2=C1C=CC=CC1=CC=C2N=C3C=C4)C5O,true -CC(=O)NC1=CC=C(C=C1)C=N[N]3N=N[C]2=CC=NC2=C3O,true -[O-][N+](=O)C1=CC=C(C=C1)SC2=CC=CC=C2,true -ClC(Cl)(Cl)SN2C(=O)C1CC=CCC1C2=O,true -O=CNC1=CC3=C(C=C1)C2=CC=CC=C2C3,true -BrCCBr,true -CCOC(=O)CNC(=O)C=[N+]=[N-],true -O1C2C1C7=C5C3=C2C=CC=C3C=C6C4=CC=CC=C4C(=C56)C=C7,true -CC(=O)NC2=CC1=NC=CC=C1C=C2,true -NC3=CC2=NC1=CC(=CC=C1N=C2C=C3)N,true -C[N]2C(=NC3=NC1=CN=CC=C1C=C23)N,true -C1=CC=C2C(=C1)C=CC3=C2C4=CC=CC5=CC=CC3=C45,true -ClC3=C1C=CC=CC1=C2C=CC=CC2=C3,true -CC1CCC(CC1)NC(=O)N(CCCl)N=O,true -COC(=O)C12OC1(C)C(C)(O)NC2=O,true -CC1=C3C(=C(C(=C1)[N+]([O-])=O)C)C2=CC(=CC=C2[NH]3)[N+]([O-])=O,true -[O-][N+](=O)C2=C3C=CC4=CC=CC5=C1C=CC=CC1=C(C=C2)C3=C45,true -OCCCl,true -[O-][N+](=O)C1=CC3=C(C=C1)C2=CC=CC=C2C=C3,true -NC1=C(C(=CC=C1)[N+]([O-])=O)N,true -CCN(CCCl)CCCNC3=C2C=CC1=CC=CC=C1C2=NC4=CC=CC=C34,true -CC2=C1C=CC=CC1=C(C=C2)[N+]([O-])=O,true -O1C2C1C5=C4C2=CC3=CC=CC=C3C4=CC6=CC=CC=C56,true -CN(C)CCCNC1=C3C(=NC2=CC=CC=C12)C(=CC=C3)[N+]([O-])=O,true -CC1=C(C=C(C(=C1)C)N)C,true -OC4C=CC3=C2C=C(C1=CC=CC=C1C2=CC=C3C4O)[N+]([O-])=O,true -CC1=C(C(=CC=C1)C)NO,true -[O-][N+](=O)C3=C1C=CC=C2CCC(=C12)C=C3,true -COC(=O)C1=C(C=CC(=C1)C2=CC(=C(C=C2)N)C(=O)OC)N,true -CC(=O)N(OC1OC(CO)C(O)C(O)C1O)C2=CC=C(C=C2)OC3=CC=C(C=C3)Cl,true -CCCC(=O)OCC1=CC=C(C=C1)[N+]([O-])=O,true -CC(C)NC(OCC1=CC=C(C=C1)[N+]([O-])=O)=NC(C)C,true -C1=CC4=C(C=C1)C3=CC=C2N=CC=CC2=C3C=C4,true -C[N+](C)(C)CCNCCC1=CC=C(C=C1)N=NC2=C(C=C(C=C2)[N+]([O-])=O)Cl,true -[O-][N+](=O)C1=C2C=CC3=CC=CC4=CC=C(C=C1)C2=C34,true -O=C(OCC1CO1)C2CCCCC2C(=O)OCC3CO3,true -[O-][N+](=O)C3=CC2=C1C=C(C=CC1=C(C=C2C=C3)[N+]([O-])=O)[N+]([O-])=O,true -CCN(CC)C1=CC=C(C=C1)N=NC2=CC=C(C=C2)[N+]([O-])=O,true -[O-][N+](=O)C2=CC=C3C1=C(C=CC=C1)C4=C(C=CC5=CC=C2C3=C45)[N+]([O-])=O,true -NC(CSC(Cl)=CCl)C(O)=O,true -CCOP(=O)(OCC)C(C)NC(=O)N(CCCl)N=O,true -OCC1=CC3=C(C(=C1)O)C(=O)C2=C(C=CC=C2O)C3=O,true -CC1=C(Cl)C(=O)OC1O,true -C1=CC3=C(C=C1)C2=CC5=C4C(=C2C=C3)C=CC=C4C=C5,true -NC2=C1N=C[N](C1=NC(=N2)C3=CC=C(C=C3)[N+]([O-])=O)C4=CC=C(C=C4)[N+]([O-])=O,true -O=C3C(C2=NC1=CC=CC=C1C=C2)C(=O)C4=C3C=CC=C4,true -O=C2C=CC1=C(C=CC=C1)C2=O,true -CC(C)(C)ON=O,true -COC1=C(C=CC(=C1)[N+]([O-])=O)NC(C)=O,true -OC1=C3C(=CC=C4C=CC2=CC=CC(=C1)C2=C34)[N+]([O-])=O,true -CC1CC(OC(C)O1)OC(C)=O,true -CC1=C(C3=C(C=C1)C(=O)C2=C(C=CC=C2)C3=O)NC4=CC=CC=C4,true -CC(=O)C1=C(C=C([N]1[N+]([O-])=O)[N+]([O-])=O)[N+]([O-])=O,true -ClC1=C(Cl)C(=O)C(=C(Cl)C1=O)Cl,true -NC1=C(C=CC(=C1)[N+]([O-])=O)C2=CC=C(C=C2)[N+]([O-])=O,true -[O-][N+](=O)C1=CC=C2C=CC3=[N+](C5=C(C4=CC=C1C2=C34)C=CC=C5)[O-],true -OC1=CC3=C(C=C1)C2=CC=C(C=C2C3)[N+]([O-])=O,true -C[N]1C=NC(=C1[N+]([O-])=O)C2=CC=CC=C2,true -CN(CC(C)=O)N=O,true -ClN1C3C1C2=C(C=CC=C2)C4=C3C=CC=C4,true -SC2=C1[NH]C=NC1=NC=N2,true -CC1CN1,true -ONC3=CN=C2[N]1C=CC=CC1=NC2=C3,true -COC1=C(C=C(C=C1)CC2CO2)OC,true -C1=CC2=CC=C3C6=C5C(=C4C=CC(=C1)C2=C34)C=CC=C5C=C6,true -CCCCOC3=NC2=C(C1=CC=C(C=C1N=C2C=C3)Cl)NCCCNCCCl,true -C[N]2C(=NC3=C1C=CC=NC1=CC(=C23)C)N,true -OC(=O)CN(CC(O)=O)N=O,true -CCOC1=CC=C(C=C1)N=O,true -OS(=O)(=O)OCC1=C3C=CC4=CC=CC5=CC=C(C2=CC=CC=C12)C3=C45,true -COC1=CC=C(C=C1)NC3=C2C=CC=CC2=NC4=CC=CC=C34,true -C[N+]2=C1C=CC=C(C1=CC3=CC=CC=C23)N,true -C[N]1C(=NC2=C1C=CC3=NC=CC=C23)NC(C)=O,true -OC2=C1C(C3=C(C(C1=CC=C2)=O)C=CC=C3O)=O,true -COC1=CC4=C(C(=C1)OC2OC(CO)C(O)C(O)C2O)C(=O)C3=C(C(=CC=C3O)O)O4,true -CCC[N]3C=C2CC1C(CC(C)CN1C#N)C4=C2C3=CC=C4,true -[O-][N+](=O)C4=C2C1=CC=CC=C1C3=CC=CC(=C23)C=C4,true -C[N]2C(=NC3=CC=C1N=CC=CC1=C23)N,true -O=C1CCO1,true -NC4=C1C=CC=CC1=C3C=CC2=CC=CC=C2C3=C4,true -[O-][N+](=O)C1=CC=C(C=C1)C(=O)C=CC2=CC=CC=C2,true -O=NC1=C2C=CC3=CC=CC4=CC=C(C=C1)C2=C34,true -NC1=C(C=C(C=C1)C2=CC(=C(C=C2)N)F)F,true -C(OCC2=C1C=CC=CC1=CC=C2)C3CO3,true -[O-][N+](=O)C1=CC(=C(C=C1)F)[N+]([O-])=O,true -CC2=CC(=O)C1=C(C=CC=C1O)C2=O,true -NC(=O)NC2=NC1=CC=CC=C1[NH]2,true -COC1=NSC2=C1C=CC=C2[N+]([O-])=O,true -CC(C)(C)OO,true -O=C4C=CC3=C(C2=CC=C1C=CC=CC1=C2C=C3)C4=O,true -CCCNC(=O)C=CC1=CC=C(O1)[N+]([O-])=O,true -OC(=O)C1=CC(=CC(=C1)[N+]([O-])=O)[N+]([O-])=O,true -CN(C)C1=CC=C(C=C1)C=CC2=CC=C(C=C2)[N+]([O-])=O,true -[O-][N+](=O)C2=CC=C1[NH]C=CC1=C2,true -CC1=CC(=C(C=C1)C)N,true -CNC(=O)ONC(C)=O,true -COC1=CC=C(C=C1)NC(=O)C2=CSC(=C2)[N+]([O-])=O,true -CC1=CC=C(C=C1)S(=O)(=O)N2C4C2C3=C(C=CC=C3)C5=C4C=CC=C5,true -CC1=CC(=CC=C1)NO,true -OC(=O)C1=C(C=CC(=C1)[N+]([O-])=O)[N+]([O-])=O,true -CCN(CCCl)CCCNC2=C1C=C(C=CC1=NC3=CC(=CC=C23)Cl)OC,true -[O-][N+](=O)C1=C3C(=CC=C1)C2=CC=CC=C2O3,true -C[N]1C=NC(=C1C(=O)N(C)N=O)N(C)C(=O)OC(C)(C)C,true -NC1=CC(=CC=C1)O,true -[O-][N+](=O)C1=CC=C(C=C1)OC2CO2,true -NC1=C(C=C(C=C1)Cl)[N+]([O-])=O,true -CC1=CC=C(C=C1)NN=NCC2=CC=C(C=C2)[N+]([O-])=O,true -CNN=NC,true -CC(=O)C1=C(C=CC(=C1)NC(N)=O)OCC(O)CNC(C)(C)C,true -CCN1C=C(C(O)=O)C(=O)C2=C1C=C(C(=C2)F)N3CCN(C)CC3,true -CCC1=C(C(=CC=C1)CC)N,true -NC1=CC3=C(C=C1)C2=CC=CC=C2[NH]3,true -CS(=O)(=O)NC1=CC=C(C=C1)NC3=C2C=C(C=CC2=NC4=CC=CC=C34)N=[N+]=[N-],true -NC2=C1C(C3=C(C(C1=C(C=C2)O)=O)C=CC=C3)=O,true -CCC1CO1,true -CC1=C(C=C(C=C1)N=[N+]([O-])C2=CC(=C(C=C2)C)N)N,true -OC1=CC2=C(C=C1)C3=CC5=CC=CC6=CC=C4C=CC2=C3C4=C56,true -NC3=C(C=C2N=C1C=C(C=CC1=NC2=C3)Cl)N,true -ClCCSCCCl,true -NC2=C(C1=CC=CC=C1C=C2)N=NC3=CC=C(C=C3)[N+]([O-])=O,true -C[N]2C(=NC3=C1N=C(C)C=NC1=C(C)C(=C23)C)N,true -CC(=O)OC1CC4=C2C1=C(C=CC2=CC5=C3C=CC=CC3=CC=C45)C,true -CN1CCN(CC1)C2=C(C3=C(C=C2F)C(=O)C(=CN3CCF)C(O)=O)F,true -[O-][N+](=O)C1=C2C=CC3=CC5=C(C4=CC=C(C=C1)C2=C34)CCCC5,true -COC(=O)C12OC1(C)C(C)(O)OC2=O,true -CC[N]1C(=NC2=C1C=CC3=NC=C(C)N=C23)N,true -NC3=C2N=C1C=CC=CC1=NC2=CC=C3,true -CC2=CC1=NC=CC=C1C=C2,true -CC(C)(C)CNC(=O)C=CC1=CC=C(O1)[N+]([O-])=O,true -O=C1CCCCC1=O,true -[O-][N+](=O)C1=CC4=C(C=C1)C3=CC=C2C=CC=CC2=C3C=C4,true -[O-][N+](=O)C1=CC=C(O1)C=NN2C(=O)C=C(C=C2C3=CC=CC=C3)C4=CC=CC=C4,true -CCCCCCCC(Cl)=O,true -CN(CC1=CC(=CC=C1)C)N=O,true -[O-][N+](=O)C1=CC=C(C=C1)C=CC(=O)C2=CC=CC=C2,true -CC1=C(C=C(C=C1N)N)[N+]([O-])=O,true -CC1(CO1)C(=O)NC2=CC=CC=C2,true -OCCN(CC(O)=O)N=O,true -[O-][N+](=O)C2=C1C=CC=CC1=CC=C2,true -N=C1CC(=O)C(=O)C2=C1C=CC=C2,true -O=C3CN(CCN2CC(=O)N(CN1CCOCC1)C(=O)C2)CC(=O)N3CN4CCOCC4,true -CC2=C4C=CC=C5C=CC3=C1C=CC=CC1=CC(=C2)C3=C45,true -COP(=S)(OC)OC1=CC(=C(C=C1)N=O)C,true -ClC(Cl)C(Cl)=O,true -CC3=CC2=C(C(=C1C(=CC(=CC1=C2O)O)O)O)C(=O)C3=O,true -NC1=CC=C(C=C1)C=CC2=CC=C(C=C2)N,true -COC2=C1C(C5=C(OC1=CC=C2Cl)C=C4OC3OC=CC3C4=C5OC)=O,true -C[N]1C=CC3=C1C=CC4=CC=C2C=CC(=CC2=C34)O,true -O=C(NC1CCCCC1)OC(C#C)(C2=CC=CC=C2)C3=CC=CC=C3,true -NC3=C2C(=C1C(C=CC(C1=C(C2=C(C=C3)O)O)=N)=O)O,true -CC(C)NC(=O)C=CC1=CC=C(O1)[N+]([O-])=O,true -NC1=C(C=CC=C1)SCSC2=C(C=CC=C2)N,true -ON=C(O)C1=CC(=C(C=C1)O)O,true -NC1=CC(=C(C=C1)NCCO)[N+]([O-])=O,true -O=C3N(CC1CO1)C(=O)N(CC2CO2)C(=O)N3CC4CO4,true -BrCC(Br)=C,true -OCCNC1=C(C=C(C=C1)N(CCO)CCO)[N+]([O-])=O,true -NC(=O)CNC(=O)N(CCCl)N=O,true -C1=CC2=C(C=C1)C5=C4C(=C2)C=C3C=CC=CC3=C4C=C5,true -NC(CCC(=O)NC(CSCCCl)C(=O)NCC(O)=O)C(O)=O,true -[O-][N+](=O)C3=CC=C2SC1=CC=CC=C1C2=C3,true -COC1=C(C=C(C(=C1)OC)C=CC)OC,true -OC5CC1=C(C2=CC=C3C=CC=C4C=CC(=C1)C2=C34)C=C5,true -[O-][N+](=O)C3=CC2=C(C=C1C(=CC=CC1=C2C=C3)[N+]([O-])=O)[N+]([O-])=O,true -CC1=CC(=C(C=C1)O)N,true -CC4=NC3=C2C1=CC(=CC=C1C=CC2=C(C=C3[NH]4)C)O,true -CCC1=CC(=CC=C1)NC(=O)C2=CSC(=C2)[N+]([O-])=O,true -NC1=CC(=CC=C1)C2=CC=CC=C2,true -[O-][N+](=O)C3=CC2=C1C(=CC=CC1=CC=C2)O3,true -O=C2N(CC1CO1)SC3=C2C=CC(=C3)OCC4CO4,true -COC1=CC3=C(C=C1)OC2=C(C(=CC(=C2)O)O)C3=O,true -NC1=C2C=CC3=CC=CC4=CC=C(C=C1)C2=C34,true -CC1=C(C=CC=C1)C2=CC=C(C=C2)N,true -CC(CN(CC(C)OC(C)=O)N=O)OC(C)=O,true -CN1CCC4=C2C1C(C5=C(C2=C3OCOC3=C4)C=CC=C5)O,true -COC4=C1C(C5=C(OC1=C3C2C=COC2OC3=C4)C=CC=C5O)=O,true -ClC(Cl)(Cl)SN2C(=O)C1=C(C=CC=C1)C2=O,true -CC(C)CCCC(C)C3CCC4C2C=CC1(CC(O)CCC1(C)C2CCC34C)OO,true -CN(CC1=CC=C(C=C1)[N+]([O-])=O)N=O,true -NC2=C1C(=CC=CC1=CC=C2)N,true -C1=CC3=C(C=C1)C2=CC=CC4=C2C(=C3)C=C4,true -CCCCC(CC)COC(=O)C1=CC(=C(C=C1)N(C)C)[N+]([O-])=O,true -CC1COC3=C2N1C=CC(C2=C(C(=C3N4CCN(C)CC4)F)C(O)=O)=O,true -NC2=C1C(C3=C(C(C1=C(C=C2C(O)=O)[N+]([O-])=O)=O)C=CC=C3)=O,true -[O-][N+](=O)C1=CC=C(S1)C3NC(=O)C2=C(C=CC=C2)N3,true -CC1=C(C=CC=C1)N=NC2=C(C(=C(C=C2)N)C)N,true -C1=CC3=C(C=C1)C2=CC=CC=C2C4=CC=CC=C34,true -CCN(CCCl)CCCNC2=C1C=CC=C(C1=NC3=CC=CC=C23)OC,true -C1=CC2=C(C=C1)C4=CC=CC5=CC=C3C=CC=C2C3=C45,true -NC1=C(C3=C(C=C1)C2=CC=CC=C2[NH]3)[N+]([O-])=O,true -CC1=C(C=C(C=C1)C(OC(=O)NC2CCCCC2)(C#C)C3=CC=CC=C3)C,true -ClCCCBr,true -NC2=C1N=C[N](C1=NC(=N2)C3=CC=C(C=C3)[N+]([O-])=O)C4OC(CO)C(O)C4O,true -NC3=C1C=CC=CC1=C2C=CC=CC2=C3,true -CN(C)CCCNC2=C1C(=CC=CC1=NC3=CC=CC=C23)[N+]([O-])=O,true -CCOC1=C(C=C(C=C1)NC(C)=O)N,true -C1=CC=C(C=C1)N=NC2=CC=CC=C2,true -ClC4=C1C=CC=CC1=C3C=CC2=CC=CC=C2C3=C4,true -CCC12OC1(C(=O)NC2(C)O)C(=O)OC,true -OC5C(O)C4=C(C3=CC2=C1C=CC=CC1=CC=C2N=C3C=C4)C6OC56,true -O=S1(=O)C5=C4C3=C1C=C2C=CC=CC2=C3C=CC4=CC=C5,true -[O-][N+](=O)C1=CC3=C(C=C1)C2=CC=CC=C2CC3,true -CCN(CCCl)C1=CC=C(C=C1)CCCNC3=C2C=CC=CC2=NC4=CC=CC=C34,true -CN1CC(=CC2C1CC3=C[N](CC=C)C4=CC=CC2=C34)CO,true -CCCCC=CC=CC=CC=CC=COCC(O)CO,true -CC(C)(C)OOC(=O)C1=CC=CC=C1,true -ClC2=C1C(C3=C(C(C1=CC=C2)=O)C(=CC=C3)NC(=O)C4=CC=CC=C4)=O,true -[O-][N+](=O)C3=CC2=C1C=CC=CC1=CC=C2C=C3,true -CN(C)C(=O)C=CC1=CC=C(O1)[N+]([O-])=O,true -CN(C)C1=CC=C(C=C1)N=NC3=CC2=CC=CC=C2C=C3,true -O1C5C1C4=C3C2=CC=CC=C2C=CC3=CC6=C4C5=CC=C6,true -N(NC1=CC=CC=C1)C2=CC=CC=C2,true -CCOC(=O)CNC(=O)C(C)Br,true -OC5=CC4=CC3=C1C=CC=CC1=C2C=CC=CC2=C3C=C4C=C5,true -C1OC1CC2=CC=C(C=C2)CC3=CC=CC=C3,true -[O-][N+](=O)C4=CC=C3C1=CC=CC2=C(C=CC(=C12)C3=C4)[N+]([O-])=O,true -NC1=C(C=CC=C1)N,true -CC1=CC(=C(C=C1)C)NO,true -[O-][N+](=O)C1=CC=C(C=C1)C=CC(=O)C2=CC=C(C=C2)[N+]([O-])=O,true -CCC=C1OC(=O)C2=C1C=CC=C2,true -OC2=C(C1=CC=CC=C1C=C2)N=NC3=CC=CC=C3,true -C[N]1C(=NC2=CC(=CC=C12)Cl)N,true -NC3=CC2=C1C=CC=CC1=CC=C2C=C3,true -CC1=C(C=CC=C1)N=NC2=CC(=C(C=C2)N=NC4=C3C=CC=CC3=CC=C4O)C,true -C[N+]2=C1C=C(C=CC1=CC3=CC=CC=C23)N,true -ClC(=O)CCC1=CC=CC=C1,true -C1CCC2=C(C1)C6=C4C2=C3C=CC=CC3=CC4=C5C=CC=CC5=C6,true -COC1=C(C=CC=C1)N=NC3=C2C=CC=CC2=CC=C3O,true -CC1=CC(=C(C=C1)C)[N+]([O-])=O,true -[O-][N+](=O)C1=CC2=C(C=C1)C(=CC3=C2C(=CC=C3)[N+]([O-])=O)[N+]([O-])=O,true -CC2C(O)CCC3=CC(=O)C1(OC1C23C)C4OC4CO,true -CN(C)[N+]([O-])=O,true -OCCC1=CC=C(C=C1)[N+]([O-])=O,true -CC(=O)OCC1=C(C=CC(=C1)C(C)=O)OC(C)=O,true -O1C=CC2=C1C=C3C=CC4=CC=CC5=CC=C2C3=C45,true -OCCN(CCO)N=O,true -CC(C)=[N+]([O-])[O-],true -CC(=O)N(NC1=CC3=C(C=C1)C2=CC=CC=C2C3)C4=CC6=C(C=C4)C5=CC=CC=C5C6,true -ClC=C(Cl)C(Cl)Cl,true -OC2=C1C(C5=C(OC1=CC=C2)C3=C(OC4OC=CC34)C=C5O)=O,true -[O-][N+](=O)C4=C2C=CC=C3C1=CC=CC=C1C(=C23)C=C4,true -[O-][N+](=O)C1=CC(=CC=C1)[N+]([O-])=O,true -NC2=C1N=C([N](C1=NC=N2)C3=CC=C(C=C3)[N+]([O-])=O)C4=CC=C(C=C4)[N+]([O-])=O,true -OS(=O)(=O)OC2=C3C=CC4=C1C=CC=CC1=CC5=CC=C(C=C2)C3=C45,true -CC1CS(=O)(=O)CCN1N=CC2=CC=C(O2)[N+]([O-])=O,true -COC2=CC1=C(C3=C(C(=C1C(=C2)O)O)C(=O)C=C(C)C3=O)O,true -C1CC2(CCO1)CO2,true -OC1CC2=C4C1=CC=C5C=CC3=CC=CC(=C2)C3=C45,true -BrCC2=C1C=CC=CC1=CC3=CC=CC=C23,true -CC4=C1C=CC=CC1=C3N=C2C=CC=CC2=C(C3=C4C)Cl,true -O=NN1CCCC1,true -CC(=O)NC1=CC=C(C=C1)C2=CC=C(C=C2)NC(C)=O,true -C[N]2C1=CC=CC=C1C3=C(C)C=CC(=C23)C,true -CNC2=C(C1=NC=CN=C1C=C2)C,true -[O-][N+](=O)C2=C3C=CC4=[N+](C1=CC=CC=C1C5=CC=C(C=C2)C3=C45)[O-],true -NC1=C(C=C(C(=C1)Cl)[N+]([O-])=O)O,true -CN(C)CCCl,true -NNC1=CC=CC=C1,true -COC1=CC(=C(C=C1)C(=O)C2=C(C=CC=C2)O)O,true -CCN(CC)C1=CC(=CC=C1)O,true -NC3=C2C(=C1C=CC=CC1=NC2=CC=C3)N,true -CC1CO1,true -CC1=CC=C[N]2C1=NC3=C(C)C(=CN=C23)[N+]([O-])=O,true -CC1=CC2=C(C=C1)C3=CC=C4C=CC=C5C=CC(=C2)C3=C45,true -OC1=CC=C(C=C1)NC3=C2C=CC=CC2=NC4=CC=CC=C34,true -CC3=CC2=C1C=CC=CC1=CC=C2C(=C3)C,true -CC4CC1C(CC2=C[N](CC=C)C3=CC=CC1=C23)N(C4)C#N,true -[O-][N+](=O)C1=CC4=C3C(=C1)C2=CC=CC=C2C3=CC=C4,true -CC1(CO1)C2=CC=C(C=C2)[N+]([O-])=O,true -CNC3=NC1=C(C=CC2=NC=CC=C12)[N]3C,true -NC1=CC(=C(C=C1)Cl)N,true -CN(C)CCNC(=O)C2=C1N=C(C=CC1=CC=C2)C3=CC=CC=C3,true -ONC2=C1C=CC=CC1=CC=C2,true -OC1=NC2=CC=C3C=CC=C4C=CC(=C1)C2=C34,true -CC1=C2C(=CC=C1)C3=C(C(=C2)C)C4=C(C=C3)C(O)C(O)C5OC45,true -CCCCC1=CC=C(C=C1)N=CC2=CC=C(C=C2)OC,true -C[N+]1=CC=C(CC1)C2=CC=CC=C2,true -OC1=NC(=C(C=N1)N(CCCl)CCCl)O,true -[O-][N+](=O)C1=C(C=CC=C1)SSC(Cl)=C(Cl)C(Cl)=C(Cl)Cl,true -OC(=O)C1=CC(=CC=C1)[N+]([O-])=O,true -COC1=C(C=CC(=C1)C2=NC(=C([NH]2)C3=CC=CC=C3)C4=CC=CC=C4)O,true -[O-][N+](=O)C1=CC2=C(C=C1)NC(=O)C2=O,true -COC1=NSC2=CC=CC(=C12)[N+]([O-])=O,true -CN(CC(=O)COC(C)=O)N=O,true -CS(=O)(=O)OCCCCOS(C)(=O)=O,true -CCC=CC=CC=CC=CC=COCC(C)O,true -CN(C)CCNC(=O)N2C1=C(C=CC=C1)C(=O)C3=C2C=CC=C3,true -[O-][N+](=O)C1=CC(=CC(=C1)[N+]([O-])=O)[N+]([O-])=O,true -OCCBr,true -COC1=CC(=CC=C1)NC(=O)C2=CSC(=C2)[N+]([O-])=O,true -NNC1=C(C=C(C=C1)[N+]([O-])=O)[N+]([O-])=O,true -ClC(Cl)=CC=O,true -CC3=CC2=CC1=CC=CC(=C1C(=C2C(=C3)O)O)O,true -C[N]2C1=CC=CC=C1C3=CC=CC=C23,true -CCC(COC(=O)C(C)=C)(COC(=O)C(C)=C)COC(=O)C(C)=C,true -CC(=O)CN(CC(C)=O)N=O,true -C1=CC3=C(C=C1)C2=CC=CC=C2N=C3,true -COC1OC1(C)C,true -CC(Cl)CCl,true -[O-][N+](=O)C(Cl)(Cl)Cl,true -CC4=C2C1=CC=CC=C1[NH]C2=C3C(C=CC(C3=N4)=O)=O,true -OCC2=C1C=CC=CC1=CC3=CC=CC=C23,true -CC(C)=CC3C(C(=O)OCN2C(=O)C1=C(CCCC1)C2=O)C3(C)C,true -CC(C)Br,true -CCC1=CC=C(C=C1)NC(=O)C2=CSC(=C2)[N+]([O-])=O,true -CCCCC[N]3C=C2CC1C(C=C(C)CN1C)C4=C2C3=CC=C4,true -C(CC1=CC=CC=C1)C2CO2,true -C[N]2C(=NC3=C1N=CC(=NC1=C(C)C(=C23)C)C)N,true -NC1=CC=C(C=C1)C2=C(C=C(C=C2)N)[N+]([O-])=O,true -CCC12OC1(C(=O)OC)C(=O)OC2C,true -NC1=CC(=C(C=C1)N)[N+]([O-])=O,true -[O-][N+](=O)C1=CC=C(O1)C=CC=O,true -NC3=CC2=NC1=CC=CC=C1N=C2C=C3,true -CC1=C(C=CC=C1[N+]([O-])=O)[N+]([O-])=O,true -COC(=O)C(=CC)C=C(C)C=C(C)C=CC=C(C)C(=O)C12OC1C(O)(CCO)NC2=O,true -OC2=C(C(=C1C(C3=C(C(C1=C2)=O)C=CC=C3)=O)O)O,true -CCCCCNC(=O)C=CC1=CC=C(O1)[N+]([O-])=O,true -CCC(C)=NO,true -O1C2C1C6=C4C3=C2C=CC=C3C=CC4=C5C=CC=CC5=C6,true -[O-][N+](=O)C2=CC1=CC(=C(C=C1C=C2)[N+]([O-])=O)[N+]([O-])=O,true -COC3=CC2=CC1=CC(=CC(=C1C(=C2C(=C3)O)O)O)C,true -[O-][N+](=O)C1=CC2=C(C=C1)C=CC2,true -CC4=C2C1=CC=CC=C1C=CC2=C3C=CC=CC3=C4,true -ClC(Cl)(Cl)Br,true -[O-][N+](=O)C1=C2C=CC3=CC=C(C4=CC=C(C=C1)C2=C34)N=O,true -O=C(NCC1=CC=CC=C1)C2CO2,true -CN(C)C1=CC=C(C=C1)C(=O)C2=CC=C(C=C2)N(C)C,true -CC(C)C(NC(C)=O)C(=O)N(CC(O)=O)N=O,true -C1=CC2=CN=C3C=CC=C4C=CC(=C1)C2=C34,true -C(CC1CO1)C2CO2,true -ClCC=O,true -CN(C)C1=CC(=C(C=C1)N=NC2=CC=CC=C2)C,true -CC1=CC=C(C=C1)S(=O)(=O)NN,true -CN3CCC4=C2C1=CC(=CC=C1C=CC2=CC=C34)O,true -C[N]2C(=NC3=C1N=CC(=NC1=CC(=C23)C)C)N,true -COC3=C(C=C2C(=C1C=COC1=NC2=C3)OC)OC,true -N1C2C1C6=C5C3=C2C=CC=C3C4NC4C5=CC=C6,true -CNC(=O)ON,true -NC(=O)N=NC(N)=O,true -C5=CC=C4C=C3C2=C1C(=CC=CC1=CC=C2)C3=CC4=C5,true -COC3=NC2=C(C1=CC=C(C=C1N=C2C=C3)Cl)NCCCNCCCl,true -COC(=O)C1=C(C(=C(O1)[N+]([O-])=O)Cl)Cl,true -CC2C1=C(C=CC=C1)C3=C2C=C(C=C3)C,true -CC4=C3N=C2C1=CC=CC=C1C=CC2=C(C3=CC=C4)C,true -NC1=C(C=CC(=C1)Cl)O,true -CCC1=NC4=C([NH]1)C3=C2C=C(C=CC2=CC=C3C=C4)O,true -CC2C1=C(C=CC=C1)C3=C2C=CC=C3,true -CCC1=C(C=CC=C1)NC(=O)C2=CSC(=C2)[N+]([O-])=O,true -CC1=C(C=C(C(=C1)C)[N+]([O-])=O)[N+]([O-])=O,true -CC1=C(C=C(C=C1)N)[N+]([O-])=O,true -CCCCCOC(=O)C=CC1=CC=C(O1)[N+]([O-])=O,true -CC(C)N(N)C(C)C,true -COC3=C1C=CC=C2OC(=CC(=C12)C=C3)[N+]([O-])=O,true -NC(CCC(=O)NC(CSC(Cl)=C(Cl)Cl)C(=O)NCC(O)=O)C(O)=O,true -C4=CC3=CC2=CC1=CC=CC=C1C=C2C=C3C=C4,true -CNC(=O)C=C(C)OP(=O)(OC)OC,true -COC1=CC(=CC=C1)C=CC2=CC=C(C=C2)N,true -NC1=CC(=CC(=C1)[N+]([O-])=O)[N+]([O-])=O,true -CC(Br)C(=O)NC1=CC=CC=C1,true -OC(=O)C(Br)Br,true -COC3=C2N=C1C=CC=CC1=C(C2=C(C=C3)[N+]([O-])=O)NCCCN(C)C,true -CCN(N=O)C(=O)N(C)C,true -CC(C)(N=O)[N+]([O-])=O,true -CC1OCC(=O)C(=O)C1O,true -O=P2(OCC1=C(C=CC=C1)O2)OC3=CC=CC=C3,true -CCC1=C(C(=O)OC)C(=O)OC1C,true -COC(=O)C1=CCCN(C)C1,true -CN(CCO[N+]([O-])=O)[N+]([O-])=O,true -ClCC2=C4C=CC=C5C=CC3=CC1=CC=CC=C1C(=C2)C3=C45,true -NC1=CC(=C(C=C1)C2=C(C=C(C=C2)N)Cl)Cl,true -O=NN1CCSC1,true -C[N]1C(=NC2=C1C=CC3=CC=CN=C23)N,true -OC(=O)C(Cl)Br,true -CC1=C(C=CC=C1)N=NC2=C(C=C(C(=C2)C)N)N,true -NC3=CC=C2CC1=CC=CC=C1C2=C3,true -CC4=CC3=NC2=C1C=CC=CC1=CC=C2C=C3C=C4,true -COC(=O)C1=CCCN(C1)N=O,true -OC1=CC(=CC=C1)[N+]([O-])=O,true -CCS(=O)CCSP(=O)(OC)OC,true -O1C2C1C6=C3C2=CC=CC3=C5C=C4C=CC=CC4=CC5=C6,true -FC1=C(C=CC=C1)C(Cl)=O,true -CC1=C3C(=C(C(=C1)N)C)C2=CC(=CC=C2[NH]3)O,true -CCC1=C4C(=CC2=CC=CC=C12)C3=CC=CC=C3C=C4,true -OC2=C1C(C=CC(C1=C(C(=C2Cl)Cl)O)=O)=O,true -CNC1=CC=C(C=C1)N=NC2=CC=C(C=C2)N(C)C(C)=O,true -CC2=C1C=CC=CC1=NC=C2,true -NC1=C(C=C(C=C1)[N+]([O-])=O)Cl,true -[O-][N+](=O)C1=CC2=C(C=C1)C(=O)NC2=O,true -ClC(Cl)(Cl)C=O,true -COC(=COC(N)=O)C1=C(C(=C(C(=C1O)N2CC2)C)O)N3CC3,true -CC1=C(C=C(C(=C1)N)[N+]([O-])=O)N,true -[O-][N+](=O)C2=CC=C1C=N[NH]C1=C2,true -COC2=CC1=CC=CN=C1C(=C2)NC(C)CCCN,true -CCOC1=CC=C(C=C1)N,true -OC1=CC=C2C(=C1)C=CC3=C2C4=C([NH]3)C=CC5=C4C=CC=C5,true -[N-]=[N+]=C1C=NC(=O)NC1=O,true -C(CCOCC1CO1)COCC2CO2,true -CNC2=C(C1=NC(=CN=C1C=C2)C)C,true -CC1=CC3=C(C(=C1)O)C(=O)C2=C(C=CC=C2O)C3=O,true -COC1=C(C=CC(=C1)N)C,true -CC1=C(C(=C(C(=C1)C)N)C)N,true -ONC2=C1C=CC=CC1=[N+](C=C2)[O-],true -COP(=O)(OC)C(O)C(Cl)(Cl)Cl,true -NCCNCCO,true -C1=CC5=C(C=C1)C4=CC3=C2C=NC=CC2=CC=C3C=C4C=C5,true -CC(=O)N(Cl)C1=CC3=C(C=C1)C2=CC=CC=C2C3,true -[O-][N+](=O)C1=CC2=CC=C3C=CC=C4C=CC(=C1)C2=C34,true -CNC2=C(C1=NC=C(N=C1C=C2)C)C,true -CC(=O)NC1=CC3=C(C=C1)C2=C(C=CC=C2C3)O,true -[O-][N+](=O)C2=C3C=CC4=C1C=CC=CC1=NC5=CC=C(C=C2)C3=C45,true -ON=C1CCCCC1,true -[O-][N+](=O)C1=CC=C(O1)C=NN2CCCNC2=O,true -CCC=CC=CC=CC=CC=CC=COCC(O)CO,true -ClCC(Br)=C,true -CC1=NC(=C(C=N1)CNC(=O)N(CCCl)N=O)N,true -FC1=NC=CC=C1,true -ON(C(=O)C1=CC=CC=C1)C2=CC4=C(C=C2)C3=CC=CC=C3C4,true -O=CC1=CC=CO1,true -[O-][N+](=O)C3=CN=C2[N]1C=CC=CC1=NC2=C3,true -CC1=C2C(=CC=C1)C3=CC=C4C=CC=C5C=CC(=C2)C3=C45,true -CN(C)S(=O)(=O)CCNC(=O)N(CCCl)N=O,true -CCS(=O)(=O)CC[N]1C(=NC=C1[N+]([O-])=O)C,true -NC(=O)C1(OC1C(=O)C2=CC=CC=C2)C(N)=O,true -COC3=CC=C2N=C1OC=CC1=C(OC)C2=C3,true -CC1=C(C=CC(=C1)C2=CC(=C(C=C2)N)C)N,true -CCNN=NCC,true -OC2=C1C(C3=C(C(C1=CC=C2)=O)C(=CC=C3)O)=O,true -CCOC1=CC=C(C=C1)N(O)C(C)=O,true -COC1=C(C=C(C=C1)[N+]([O-])=O)N=NC3=C2C=CC=CC2=CC(=C3O)C(=O)NC4=CC(=CC=C4)[N+]([O-])=O,true -OCC=[N+](O)[O-],true -BrN1C(=O)CCC1=O,true -ON=C(O)CC1=C[N](C=N1)N=O,true -OCC(O)CN=[N+]=[N-],true -CC1=CC=C(C=C1)C(Cl)=O,true -NC1=CC=C(C=C1)OC2=CC=C(C=C2)N,true -CCC1=C(C(=CC=C1)CC)NC(=O)CCl,true -S1C=CN=C1,true -CC(C)(Cl)[N+]([O-])=O,true -CN(C)C1=CC=C(C=C1)N=NC2=CC(=CC=C2)C,true -NC1=C(C=C(C=C1)C2=CC(=C(C=C2)N)Br)Br,true -COC1=NSC2=C(N)C=CC=C12,true -C[N]1N=C(C)C(=C1N)C(=O)C2=C(C=CC=C2)F,true -CC1=CC(=CC(=C1)C)NO,true -COC1=CC=C(C=C1)N=[N+]([O-])C2=CC=C(C=C2)OC,true -[O-][N+](=O)C1=C2C(=CC=C1)C(=CC=C2)[N+]([O-])=O,true -C(OCC1=CC=CC=C1)C2CO2,true -CC(C)(C)C1=CC(=O)C=C(C1=O)C2=CC(=O)C=C(C2=O)C(C)(C)C,true -CCC=CC=CC=CC=CC=COCC(O)C1=CC=CC=C1,true -CC(=O)N(O)C1=C(C=CC=C1)C,true -COC1=C(C=CC=C1)NC(=O)C2=CSC(=C2)[N+]([O-])=O,true -CC1=CC=C(C=C1)S(=O)(=O)OCC2CO2,true -COC1=C(C=C(C=C1)[N+]([O-])=O)[N+]([O-])=O,true -CC(C)=CC2C(C(=O)OCC1=CC=C(O1)CC#C)C2(C)C,true -OC1OC(=O)C(=C1C(Cl)Cl)Cl,true -ClCCNCCCNC2=C1C=CC=CC1=NC3=CC=CC=C23,true -C1C4=C3C2=C1C=CC=C2C=CC3=CC=C4,true -O=CC1CO1,true -NC1=C(C=C(C=C1)CC2=CC(=C(C=C2)N)Cl)Cl,true -NC(=S)C1=C(C=CC=C1Cl)Cl,true -CC(C)(C)C1=CC=C(C=C1)OCC2CO2,true -COC1=CC=C2C(=C1)C=CC3=C2C=C(O3)[N+]([O-])=O,true -ClCC(Cl)=C,true -CC1OC(CC(N)C1O)OC2=CC(O)(CC5=C2C(=C4C(=C3C=CC=CC3=C(C4=C5O)O)O)O)C(C)=O,true -C=CCCC1CO1,true -BrCC3=C2C1=CC=CC=C1C=CC2=CC4=CC=CC=C34,true -[O-][N+](=O)C2=C3C=CC4=C1CCC=CC1=CC5=CC=C(C=C2)C3=C45,true -ClC1=CC3=C(C=C1)C2=CC=CC=C2O3,true -C([N]1C=CN=C1)C2=CC=CC=C2,true -OS(=O)(=O)OCC4=C2C1=CC=CC=C1C=CC2=C3C=CC=CC3=C4,true -CC1=CC(=C(C=C1)N=NC3=C2C=CC=CC2=CC=C3O)[N+]([O-])=O,true -NC3=C(C=C2C1=CC=CC=C1[NH]C2=C3)[N+]([O-])=O,true -OC(=O)COC1=CC=C(C=C1)N(CCCl)CCCl,true -NC2=C1N=C[N](C1=NC=N2)CC(O)CN=[N+]=[N-],true -C[N]2C(=NC3=C1N=C(C)C(=NC1=C(C)C(=C23)C)C)N,true -CC3=C2C=CC1=CC=CC=C1C2=NC4=CC=CC=C34,true -FC1=CC=C(C=C1)C(=O)C2OC2C3=CC=CC=C3,true -[O-][N+](=O)C1=C(C=CC=C1)CC#N,true -COC(=O)C12OC1(C)C(OC2=O)C(C)C,true -[O-][N+](=O)C3=CC2=CC1=CC=CC=C1C=C2C=C3,true -ClCC1=C4C(=CC2=CC=CC=C12)C3=CC=CC=C3C=C4,true -BrCC(Br)CBr,true -NCCC1=C(C=C(C(=C1)O)O)O,true -ONC1=CC=C(C=C1)N=NC2=CC=CC=C2,true -[O-][N+](=O)C1=CC3=C(C=C1)C2=C(C=C(C=C2C3=O)[N+]([O-])=O)[N+]([O-])=O,true -CC(=O)OC(OC(C)=O)C1=CC=C(O1)[N+]([O-])=O,true -COC1=CC=CC=CC1,true -NC1=NC3=C(C=C1)C2=CC=CC=C2[NH]3,true -BrCC(=O)NCC1=CC=CC=C1,true -COC(=O)C1=CC=C(O1)[N+]([O-])=O,true -CC1=CC=C2C=C4C(=C3CCC1=C23)C=CC5=CC=CC=C45,true -COC(=O)C(C)=CC1=CC=C(O1)[N+]([O-])=O,true -NC1=CC=C(C=C1)N=NC2=CC=CC=C2,true -CNC2=C(C1=NC(=C(N=C1C=C2)C)C)C,true -ClC(=O)C1=C(C=CC=C1Cl)Cl,true -O=C(NC1=CC=CC=C1)C2CO2,true -[O-][N+](=O)C1=NC=C[N]1CC(=O)NCC2=CC=CC=C2,true -N1C4C1C3=C(C2=CC=CC=C2C=C3)C5=C4C=CC=C5,true -O1C3C1C2=CSC=C2C4=CSC=C34,true -CBr,true -OC3C=CC2=C1C(=CC4=C(C1=CC=C2C3O)CCC4=O)C(F)(F)F,true -CNC3=CC2=C1C=C(C=CC1=CC=C2C=C3)O,true -CC3(C)CC2C=C(CO)C1(CC1(C)C2C3)C=O,true -ClCC1=CC(=O)OC1,true -CCOP(=S)(OCC)OP(=S)(OCC)OCC,true -N1C6C1C2=C(C=C4C(=C2)C3=CC=CC=C3C5NC45)C7=C6C=CC=C7,true -CC3=C2C1=CC=CC=C1C=CC2=CC4=CC=CC=C34,true -OC(CC1=C[N](N=O)C2=CC=CC=C12)C(O)=O,true -CC1=NC=C([N]1CCO)[N+]([O-])=O,true -ClC3C6(Cl)C4C2C1OC1C5C2C3(Cl)C(Cl)(C45)C6(Cl)Cl,true -[O-][N+](=O)C1=CC(=CC=C1)Br,true -[O-][N+](=O)C1=CC3=C(C=C1)C2=C(C=C(C=C2)[N+]([O-])=O)C3=O,true -COC1=CC4=C3C(=C1OC)C2=CC=CC=C2C(C3=NC=C4)=O,true -CCCCN(CCCCO)N=O,true -COS(=O)(=O)OC,true -OCC(O)C1CO1,true -ClC1=C2C=CC3=CC=CC4=CC=C(C=C1)C2=C34,true -C(CC2=C1C=CC=CC1=CC=C2)C3CO3,true -[O-][N+](=O)C2=C(C=C1OC3=C(OC1=C2)C=C(Cl)C(=C3)Cl)Cl,true -CC1(C)C(C=C(Cl)Cl)C1C(=O)OCC2=CC(=CC=C2)OC3=CC=CC=C3,true -[O-][N+](=O)C1=CC(=CS1)C(=O)NC2=CC=CC=C2,true -OC4=C3C2=CC=C1C=CC=CC1=C2C=CC3=CC=C4,true -CCN(CC)C1=CC=C(C=C1)N,true -C[N]2C(=NC3=CC1=NC=C(C)N=C1C(=C23)C)N,true -OCCC1=C(C=CC=C1)[N+]([O-])=O,true -CC4=C2C1=CC=CC=C1C=CC2=C3CCC(C3=C4)=O,true -OC1=CC4=C(C=C1)C3=CC=C2C=CC=CC2=C3C=C4,true -CC3=CC2=CC1=CC=CC=C1C=C2C=C3,true -CCC1=C(C(=CC=C1)CC)N(COC)C(=O)CCl,true -[NH]3C2=CC=C1C=CC=CC1=C2C4=C3C=CC5=CC=CC=C45,true -CC(=O)C=C,true -[O-][N+](=O)C1=CC(=C(C=C1)C2=C(C=C(C=C2)[N+]([O-])=O)[N+]([O-])=O)[N+]([O-])=O,true -CN1CCC4=C2C1CC5=C(C2=C3OCOC3=C4)C=CC=C5,true -CC1=C3C=CC4=CC=CC5=CC=C(C2=CC=CC=C12)C3=C45,true -CC(=O)OCC(O)CO,true -CC(C)CCCC(C)C3CCC4C2C(OO)C=C1CC(O)CCC1(C)C2CCC34C,true -CC(=O)C(Cl)Cl,true -[O-][N+](=O)C2=C1C=CC=C3C1=C(C=C2)C4=C(C=CC5=CC=CC3=C45)[N+]([O-])=O,true -C1=CC2=C5C=CC=C6C=CC4=CC=C3C=CC(=C1)C2=C3C4=C56,true -[O-][N+](=O)C3=CC=C2OC(=O)C1=CC=CC=C1C2=C3,true -CC(=O)NC1=CC=C(C=C1)OC2=CC=CC=C2,true -CC4CC3(OC1OC(CO)C(O)C(O)C1O)C=C(C)C2(CC2)C(C)(O)C3C4=O,true -C1OC1COC2=C(C=CC=C2)C3=CC=CC=C3,true -COC(=O)C(CSCCBr)NC(C)=O,true -CC5=C3CCC4=C2C1NC1C6=C(C2=CC(=C34)C=C5)C=CC=C6,true -CC(C)OS(C)(=O)=O,true -CN(C)C1=CC=C(C=C1)C,true -CNC(=O)OC1=CC=C(C=C1)C2=CC=CC=C2,true -C6CCC5=C3C1=CC=CC=C1C4=CC2=CC=CC=C2C(=C34)C=C5C6,true -NC1=C3C(=CC=C1)C2=CC=CC=C2C=C3,true -OP(=O)(OCC(Br)CBr)OCC(Br)CBr,true -[O-][N+](=O)C1=CC=C(C=C1)OC2=CC=CC=C2,true -CC1=C3C(=C(C=C1)C)C2=CC(=CC=C2[NH]3)[N+]([O-])=O,true -CC1=CC=C(C=C1)NCCCl,true -O=NC2=CC1=CC=CC=C1C=C2,true -C[N]1C(=NC2=C1C=CC3=CC=NC=C23)N,true -C2=CC1=CC4=C(C=C1C=C2)C3=CC=CC=C3C=C4,true -OP1(=NCCCO1)N(CCCl)CCCl,true -OC2C1=C(C=CC=C1)C3=C2C=C(C=C3)[N+]([O-])=O,true -C1OC1COC3=CC=C2SN=CC2=C3,true -[O-][N+](=O)C1=CC=C(C=C1)C3=C([N]2C=CSC2=N3)N=O,true -C1=CC2=CC=C3C=CC=C4C=CC(=C1)C2=C34,true -CC(=O)ON(C(C)=O)C1=CC3=C(C=C1)C2=CC=CC=C2C3,true -NC1=C(C=C(C=C1)[N+]([O-])=O)O,true -COC1=CC3=C(C=C1)OC2=C(C(=CC(=C2)OC)O)C3=O,true -OC2=C1C(C=CC(C1=CC=C2)=O)=O,true -CC3=CC(=O)C2=C(C(=C1C=CC=CC1=C2O)O)C3=O,true -CN(C)C(Cl)=O,true -COC1=C(C=CC(=C1)N=NC2=CC=CC=C2)N,true -CC(C)CC(=O)OCC1=COC=C2C(=CC=[C]12)C=O,true -CC(=O)OCC3=C2C1=CC=CC=C1C=CC2=CC4=CC=CC=C34,true -COC1=C(C=CC(=C1)[N+]([O-])=O)N,true -N1C3C1C2=C(C=CC=C2)C4=C3C=CC=C4,true -CNC(=O)CSP(=S)(OC)OC,true -CC1=C(C=CC=C1)NO,true -OC5=CC4=C3C2=C1C=CC=CC1=CC=C2[NH]C3=CC=C4C=C5,true -C=CC(=O)NCNC(=O)C=C,true -CCOC1=CC=C(C=C1)[N+]([O-])=O,true -CC(C)(C)N(CC(=O)C1=CC(=C(C=C1)O)CO)CC2=CC=CC=C2,true -[O-][N+](=O)C1=CC3=C(C=C1)C2=CC=CC=C2C(O3)=O,true -[O-][N+](=O)C1=CC(=CS1)C(=O)NC2=C(C=CC=C2)Cl,true -NC1=C(C=C(C(=C1)[N+]([O-])=O)N)F,true -OC1=CC2=C(C(=C1)O)C(C(C(O2)C3=CC(=C(C=C3)O)O)=O)=O,true -CN(C)C1=CC=C(C=C1)N=NC2=CC(=CC=C2)CCl,true -CC(Br)C(Br)CCl,true -C[N]1C(=NC2=C1C=C(C)C3=NC=CN=C23)N,true -C4CC3=C(C2=C1C=CC=CC1=CC=C2C=C3)C4,true -COCC4CN(C)C3CC1=C[N](C)C2=CC=CC(=C12)C3=C4,true -[O-][N+](=O)C1=CC(=C(C(=C1)[N+]([O-])=O)C2=CC=CC=C2)[N+]([O-])=O,true -C3=CC2=CC1=CC=CC=C1N=C2C=C3,true -CCN1C=C(C(O)=O)C(=O)C2=C1N=C(C(=C2)F)N3CCNCC3,true -CC(=O)NC(CSCCCl)C(O)=O,true -ClC(Cl)C1=CC=CC=C1,true -[O-][N+](=O)C1=CC=C(C=C1)C=CC2=CC(=CC=C2)Cl,true -[O-][N+](=O)C1=CC(=C(C=C1)C2=CC(=C(C=C2)[N+]([O-])=O)[N+]([O-])=O)[N+]([O-])=O,true -CCCCN(CCCC)N=O,true -CNC(=O)C=CC1=CC=C(O1)[N+]([O-])=O,true -COC1=C(C=CC(=C1)NS(C)(=O)=O)NC3=C2C=CC=CC2=NC4=CC=CC=C34,true -C[N]1C=NC(=C1N=O)C2=CC=CC=C2,true -[O-][N+](=O)C2=C3C=CC4=NC1=CC=CC=C1C5=CC=C(C=C2)C3=C45,true -N#CC1=CC3=C2C1=CC=CC2=CC=C3,true -NC3=CC2=C(C1=CC=CC=C1N=C2C=C3)N,true -ONC1=CC=CC=C1,true -ClC2=CC1=CC=CN=C1C=C2,true -C1=CC3=C(C=C1)C4=C2C=CC=CC2=C5C=CC=C6C=CC(=C3)C4=C56,true -CCC(C)OC(=O)C=CC1=CC=C(O1)[N+]([O-])=O,true -OC1=C2C=CC3=CC=C(C4=CC=C(C=C1)C2=C34)[N+]([O-])=O,true -ClC=C(Cl)SCC1=CC=CC=C1,true -S(SC2=NC1=CC=CC=C1S2)C4=NC3=CC=CC=C3S4,true -N1C5C1C2=C(C=C4C(=C2)C3=CC=CC=C3C=C4)C6=C5C=CC=C6,true -CC(=O)NC2=C1N=CC=CC1=CC=C2,true -CN1CN=C2C(=[N+](O)[C-]N=C12)N,true -CC=C(Cl)C=O,true -NC(=N)NC(=O)C1=C(N=C(C(=N1)Cl)N)N,true -C[N]1C(=NC2=C1C=CC3=NC=C(C)N=C23)N,true -COC3=CC(=C2N=C1OC=CC1=C(OC)C2=C3)OC,true -CN(COC(C)=O)[N+]([O-])=O,true -CC(Cl)(Cl)[N+]([O-])=O,true -CN(C)C(=S)SSC(=S)N(C)C,true -NC1=CC2=CC=C3C=CC=C4C=CC(=C1)C2=C34,true -NC1=CC=C(C=C1)SC2=CC=CC=C2,true -CC1=C3C(=CC2=CC=CC=C12)C4=C(C=C3)C(O)C(O)C5OC45,true -[O-][N+](=O)C1=CN=C(S1)N2CCN(C(=O)C(Cl)Cl)C2=O,true -COC1=NSC2=CC=C(N)C=C12,true -[O-][N+](=O)C1=CC=C2C=CC3=C(C5=C(C4=CC=C1C2=C34)C=CC=C5)[N+]([O-])=O,true -CN(C)CCCNC2=C1C(=CC=C(C1=NC3=CC=CC=C23)N(CCO)CCO)[N+]([O-])=O,true -CC1=CC=C(C=C1)NC(=O)C2=CSC(=C2)[N+]([O-])=O,true -ClC(Cl)=C(Cl)C=O,true -COC3=C2N=C1OC=CC1=C(C2=CC=C3)OC,true -COC1=C(C5=C(C(=C1)O)C(=O)C2=C(C3=C(C=C2OC)OC4OC=CC34)O5)OC,true -[O-][N+](=O)C1=CC=C(C=C1)NC2=CC=C(C=C2)Cl,true -NC1=CC=C(C=C1)CC2=CC=C(C=C2)N,true -NC(CCC(=O)NC(CSC1=C(C=C(C=C1)[N+]([O-])=O)[N+]([O-])=O)C(=O)NCC(O)=O)C(O)=O,true -NC(CSC(Cl)=C(Cl)C(Cl)=C(Cl)Cl)C(O)=O,true -CNC1=C([N](C=N1)C)C(=O)N(C)N=O,true -CC3=CC2=C1C=C(C=CC1=CC=C2C=C3)C,true -COC1=C(C=CC(=C1)NS(C)(=O)=O)NC3=C2C=CC=C(C2=NC4=CC(=CC=C34)N=[N+]=[N-])C,true -CCN(CCCl)CCCNC2=C1C=CC=CC1=NC3=CC=CC=C23,true -CC(O)CN(C)C1=NN=C(C=C1)NN,true -CC4=CC3=CC2=C1C=CC=CC1=CC=C2C=C3C=C4,true -CC1(C)COC1=O,true -CC(O)CN(CC(C)O)N=O,true -CC(Cl)CO,true -CC1=C(C=C(C=C1)N=NC2=CC(=C(C=C2)C)N)N,true -ClC(Cl)C(=O)C(Cl)Cl,true -COC2=C1OC=CC1=CC3=C2OC(C=C3)=O,true -CC4=C2C=C1C=CC=CC1=CC2=C3C=CC(C(C3=C4)O)O,true -NC2=C1C=CC=CC1=C(C=C2)N,true -O=NC2=C3C=CC4=CC1=CC=CC=C1C5=CC=C(C=C2)C3=C45,true -C[N]2C(=NC3=C1C=CC=NC1=CC(=C23)C)NC(C)=O,true -C1=CN=C(C=C1)C2=CN=CC=C2,true -CC(=O)NC1=CC=C(C=C1)C2OC2C(=O)C3=CC=CC=C3,true -CC1=C4C(=C(C2=CC=CC=C12)CBr)C3=CC=CC=C3C=C4,true -O=C1NCNC(=O)N1,true -CC(=O)NC1=C(C(=CC=C1)N)C(O)=O,true -C1OC1CC2=CC=CC=C2,true -OC1=C(C=C(C=C1[N+]([O-])=O)C2=CC=CC=C2)[N+]([O-])=O,true -C[N+]2=C1C=CC=CC1=C(C3=CC=CC=C23)N,true -CCOC1=C(C=CC=C1)[N+]([O-])=O,true -CCCCCN1C3C1C2=C(C=CC=C2)C4=C3C=CC=C4,true -CC2=CC1=CC4=C(N=C1C=C2)C3=CC=CC=C3C=C4,true -CC1=C3C(=C(C=C1)C)C2=CC=CC=C2C=C3,true -C1=CC3=C(C=C1)C4=CC=C5C2=CC=CC=C2C=C6C=CC(=C3)C4=C56,true -O1C2C=CC=CC12,true -COC(=O)C=CC1=CC=C(O1)[N+]([O-])=O,true -NC4=C1C=CC=CC1=C3N=C2C=CC(C=C2OC3=C4)=N,true -NC1=C(C=CC=C1[N+]([O-])=O)[N+]([O-])=O,true -COC1=CC3=C(C(=C1)OC)C(=O)C2=C(C(=CC=C2O)OC)O3,true -O=C1C=CC3=C2C1=CC=CC2=CC=C3,true -CCC2=C(N=C1C(=C(C=CC1=N2)NC)C)CC,true -[O-][N+](=O)C2=CC=C1[NH]C=NC1=C2,true -CN(C)C1=CC(=CC=C1)O,true -[N-]=[N+]=NCC1=CC=CC=C1,true -[O-][N+](=O)C1=CC=[N+](C=C1)[O-],true -CC4=C1C=CC=CC1=C3N=C2C=CC=CC2=C(C3=C4)C,true -COC1=C(C=CC(=C1)NS(C)(=O)=O)NC3=C2C=CC(=CC2=NC4=CC=CC=C34)N=[N+]=[N-],true -O=CC=O,true -CC2=NC1=CC(=C(C=C1C(=C2)C)C)N,true -COC1=C(C5=C(C=C1)C2=C(C4=C(C=C2)C=C3OCOC3=C4)N(C)C5=O)OC,true -CC1(C)CC2C(O)(C1)C=C(C=O)C3(CC23C)C=O,true -CC=C1CC(=C)C(O)(CO)C(=O)OCC2=CCN3CCC(OC1=O)C23,true -CC(=O)NC1=CC=C(C=C1)N,true -ClC1=NC(=CC=C1)C(Cl)(Cl)Cl,true -CCOS(=O)(=O)C1=CC=C(C=C1)C,true -[O-][N+](=O)C4=CC=C3C2=C1C(=CC=CC1=CC=C2)C5=C3C4=CC=C5,true -CC(=O)NN=CC2=[N+](C1=CC=CC=C1[N+](=C2)[O-])[O-],true -CCN(CC)CCCC(C)NC2=C1C=CC(=CC1=NC=C2)Cl,true -[O-][N+](=O)C1=CC3=C(C=C1)C2=CC=CC=C2C3,true -S2C4=CC=CC5=CC=C3C1=CC=CC=C1C=C2C3=C45,true -NC2=C1C(C4=C(C(C1=C(C=C2OC3=CC=CC=C3)O)=O)C=CC=C4)=O,true -[O-][N+](=O)C1=CC3=C(C=C1)C2=CC5=C(C=C2CC3)C4=CC=CC=C4CC5,true -O=C1C=CC(=O)C2=C1C=CC=C2,true -NC3=CN=C2[N]1C=CC=CC1=NC2=C3,true -[O-][N+](=O)C1=CC(=CS1)C(=O)NC2=CC=C(C=C2)F,true -NC1=CC(=C(C=C1)O)[N+]([O-])=O,true -CC1=C2C=CC3=CC=CC4=CC=C(C=C1)C2=C34,true -CC1=CC=C(C=C1)NO,true -NC3=CC2=CC1=CC=CC=C1C=C2C=C3,true -OC5C=C3C2=C(C1=CC=CC=C1C=C2)C4=C3C(=CC=C4)C5O,true -ClC1=C(Cl)C(=O)NC1=O,true -OCCN1CN(CCO)CN(CCO)C1,true -CSC1=C(C=C(C=C1)[N+]([O-])=O)[N+]([O-])=O,true -NC1=CC=C(C=C1)NC3=C2C=CC=CC2=NC4=CC=CC=C34,true -[O-][N+](=O)C4=C1C=CC=CC1=C3C=CC2=CC=CC5=C2C3=C4CC5,true -OCCNC2=C1C=CC=CC1=NC(=N2)C3=CC=C(S3)[N+]([O-])=O,true -ClCC=CCCl,true -ClCC1=CC4=C3C(=C1)C2=CC=CC=C2C3=CC=C4,true -C[N]1C=NC2=C(NO)N=CN=C12,true -O=CC(=O)C1=CC=CC=C1,true -[O-][N+](=O)C1=CC3=C(C=C1)C2=CC=C(C=C2C=C3)[N+]([O-])=O,true -OCCN(CCO)C2=CC1=CC=CC=C1C=C2,true -C=O,true -CN(C)C1=CC=C(C=C1)N,true -C[N]1C(=NC2=C1C=CC3=CN=CC=C23)N,true -ClCC2=C4C=CC=C5C=CC3=C1C=CC=CC1=CC(=C2)C3=C45,true -CC1=CC=C(C=C1)NC2=CC=C(C=C2)[N+]([O-])=O,true -CCCCCC=CC(=O)CCC1=CC(=C(C=C1)O)OC,true -CC1(CO1)C2=CC=C(C=C2)C3=CC=CC=C3,true -COP(=S)(OC)OC1=CC(=C(C=C1)N)C,true -CCNC(=O)C=CC1=CC=C(O1)[N+]([O-])=O,true -OC5C=CC4=C3C1=CC=CC2=CC=CC(=C12)C3=CC=C4C5O,true -COC1=C(C=CC(=C1)CNC(=O)CCCCCCC(C)C)O,true -O=C(OCC=CC1=CC=CC=C1)C=CC2=CC=CC=C2,true -C[N]1C(=NC2=C1C=CC3=NC=CC=C23)N,true -ClC1=CC=C(C=C1)C3=C([N]2C=CSC2=N3)N=O,true -COC1=C(C=CC=C1)CC2CO2,true -[O-][N+](=O)C1=C3C=CC4=CC=CC5=CC=C(C2=CC=CC=C12)C3=C45,true -CC(=O)N(OC(=O)C1=CC=CC=C1)C2=CC4=C(C=C2)C3=CC=CC=C3C4,true -CC(=O)C1=CC(=CC=C1)[N+]([O-])=O,true -FC2=CC1=CC=CN=C1C=C2,true -OC1=C2C=CC3=CC=CC4=CC=C(C(=C1)[N+]([O-])=O)C2=C34,true -C5CC4=C3C=C2C1=CC=CC=C1C=CC2=NC3=CC=C4C=C5,true -ON(C=O)C1=CC=C(C=C1)C2=CC=CC=C2,true -COC4=CC(=O)C3=C2[NH]C1=CC=CC=C1C2=C(C)N=C3C4=O,true -OC2=C(C1=CC=CC=C1C=C2)N=NC3=CC=C(C=C3)N=NC4=CC=CC=C4,true -C[N]1C(=NC2=C1C=CC3=NC(=CC=C23)O)N,true -ClCC(=O)CCl,true -OP(O)(=N)N(CCCl)CCCl,true -C[N]2C=C1C=CC=C(C1=N2)[N+]([O-])=O,true -FC2=C1C=CC=CC1=NC=C2,true -O=C1C4=C3C2=C1C=CC=C2C=CC3=CC=C4,true -ClCC1=C(Cl)C(=O)OC1,true -C1=CC3=C(C=C1)C2=CC=CC=C2C=C3,true -CC1=C(C=CC=C1)N=O,true -OC1=C2C(=CC=C1)C3=C(C=C2)[NH]C4=C3C5=C(C=C4)C=CC=C5,true -CC(=O)C(C)=O,true -CC1=C(C=C(C=C1)NO)C,true -[O-][N+](=O)C1=CC(=CS1)C(=O)NC2=CC=C(C=C2)Br,true -[O-][N+](=O)C2=CC1=C3C=CC4=CC=CC5=CC=C(C=C1O2)C3=C45,true -CN(C)C(=O)NC1=CC(=C(C=C1)Cl)Cl,true -CC1=C3C(=C(C=C1)C)C2=CC=CC=C2[NH]3,true -[O-][N+](=O)C1=CC3=C(C=C1)OC2=C(C=CC=C2)O3,true -NC(=O)NN=CC1=CC=C(O1)[N+]([O-])=O,true -C[N]1C(=NC2=C1C=C(C)C3=NC(=C(C)N=C23)C)N,true -C=CCN=C=S,true -[O-][N+](=O)C([N+]([O-])=O)([N+]([O-])=O)[N+]([O-])=O,true -C1COCC2(C1)CO2,true -ClC3=CC=C2OC1=CC=CC=C1C2=C3,true -OC2=C3C=CC4=CC1=CC=CC=C1C5=CC=C(C=C2)C3=C45,true -CC1=C(C=C(C=C1N)[N+]([O-])=O)[N+]([O-])=O,true -[O-][N+](=NC1=CC=CC=C1)C2=CC=CC=C2,true -ClC(=O)C1=CC=CC=C1,true -COC1=CC3=C(C(=C1)O)C(=O)C2=C(C=CC(=C2)O)O3,true -ClC2=C(Cl)C(=O)C1=C(C=CC=C1)C2=O,true -OC1=C3C=CC(=C4C=CC2=CC=CC(=C1)C2=C34)[N+]([O-])=O,true -COC3=CC=C2C(=C1C=COC1=NC2=C3)OC,true -C1CSCN1,true -C1=CC3=C(C=C1)C2=CC5=C(C=C2C=C3)C4=CN=CC=C4C=C5,true -CC2=CC1=CC=CC=C1N=C2,true -[O-][N+](=O)C1=C(C=CC=C1)Br,true -CC(C)(C)OC(=O)C=CC1=CC=C(O1)[N+]([O-])=O,true -C[N]1C=NC(=C1SC3=C2[NH]C=NC2=NC=N3)[N+]([O-])=O,true -NC1=C2C=CC3=C(C=CC4=CC=C(C=C1)C2=C34)[N+]([O-])=O,true -NC2=C1C=CC=CC1=CC=C2,true -BrCC1=C3C=CC4=CC=CC5=CC=C(C2=CC=CC=C12)C3=C45,true -NC(=O)OC1CO1,true -CCN(C=O)N=O,true -C[N]1C(=NC2=C1C=CC3=NC=C(C)N=C23)NO,true -OC1=C(C=C(C=C1)Cl)CC2=C(C=CC(=C2)Cl)O,true -CCCCN(N=O)C(N)=O,true -CC(C)(C)NC(=O)C=CC1=CC=C(O1)[N+]([O-])=O,true -[O-][N+](=O)C1=CC3=C(C=C1)C2=C(C=CC=C2C3)[N+]([O-])=O,true -COC(=O)NN=CC2=[N+](C1=CC=CC=C1[N+](=C2)[O-])[O-],true -NC1=CC=C(C=C1)C2=CC=C(C=C2)N,true -CCN(C)N=O,true -[O-][N+](=O)C1=CC3=C(C=C1)C2=CC=C(C=C2CC3)[N+]([O-])=O,true -CCOC1=CC=C(C=C1)NO,true -OC(CN=[N+]=[N-])CN=[N+]=[N-],true -NC1=C(C=C(C=C1)F)F,true -CC5=C1C=CC=CC1=C4C3=C2C=CC=CC2=C(C=C3[NH]C4=C5)C,true -[O-][N+](=O)C3=CC=C2[NH]C1=CC=CC=C1C2=C3,true -CC(O)CN(CC(O)CO)N=O,true -CC1=C(C=C(C=C1)N)O,true -[O-][N+](=O)C2=C3C=CC4=C(C1=CC=CC=C1C5=CC=C(C=C2)C3=C45)[N+]([O-])=O,true -CN(C)N=NC1=CC=C(C=C1)Cl,true -NC2=C3C=CC4=C1C=CC=CC1=CC5=CC=C(C=C2)C3=C45,true -CN(C)CCNC(=O)C2=C1OC3=C(OC1=CC=C2)C=CC=C3,true -CC#CC(OC(=O)NC1CCCCC1)(C2=CC=CC=C2)C3=CC=CC=C3,true -C[N]3C=CC4=CC=C2C=CC1=CC=C(O)C=C1C2=C34,true -ClCC2=C1C=CC=CC1=C(C3=CC=CC=C23)Cl,true -ON=C(O)C1=CC=CC=C1,true -C[N]1C=CN=C1[N+]([O-])=O,true -CC2=CC1=CC4=C(C=C1C=C2)C3=CC=CC=C3C=C4,true -CC(=O)NC1=C2C=CC3=CC=CC4=CC=C(C(=C1)O)C2=C34,true -C2=CC1=CC=CN=C1C=C2,true -[O-][N+](=O)C1=CC=C(C=C1)S,true -CC3=C2C=CC1=CC=CC=C1C2=C(C4=CC=CC=C34)C,true -CCN1C=C(C(O)=O)C(=O)C2=C1C=C(C(=C2)F)N3CCNCC3,true -ClCC4=C2C1=CC=CC=C1C3=CC=CC(=C23)C=C4,true -[O-][N+](=O)C1=CN=C(S1)N2CCNC2=O,true -CC3=C(C2=NC1=CC(=C(C=C1N=C2C=C3)C)N)N,true -C[N]1C(=NC2=C1C=C(C)C3=NC=C(C)N=C23)N,true -NC2=C1C=CC=C(C1=CC=C2)N,true -C[N]1C(=NC2=C1C=C(C)C3=NC=C(N=C23)C4=CC=CC=C4)N,true -C[N+]2=C1C=CC=CC1=CC3=CC=CC=C23,true -OC(=O)CC1=CC(=C(C=C1)O)O,true -C[N]1C(=NC2=CC(=CC=C12)C)N,true -COP(=O)(OC)OC=C(Cl)Cl,true -COC4=C2C1=CC=CC=C1CC3N(CCC(=C23)C=C4O)C,true -OCC(Br)CBr,true -[O-][N+](=O)C1=CC2=CC=C3C=C(C=C4CCC(=C1)C2=C34)[N+]([O-])=O,true -O=C1C(=O)C3=C2C1=CC=CC2=CC=C3,true -ClCC1=C2C=CC3=CC=CC4=CC=C(C=C1)C2=C34,true -[O-][N+](=O)C1=CC=C(O1)C=O,true -CC3=C2C1=CC=CC=C1[NH]C2=C(C(=N3)N)C,true -O=C1C=CC4=C2C1=CC=C3C(C=CC(=C23)C=C4)=O,true -CNC2=C(C1=NC(=CN=C1C=C2)C3=CC=CC=C3)C,true -CC(=O)NC1=CC=C(C=C1)C2=CC=C(C=C2)N,true -O2C3C=CC1=C(N=CC=C1)C23,true -CCC(=C)C=O,true -CC2=C(N=C1C=C(C=CC1=N2)N)C,true -OS(=O)(=O)C1=C(C=CC(=C1)NC2=C(C=C(C=C2)[N+]([O-])=O)[N+]([O-])=O)NC3=CC=CC=C3,true -CN(C)C1=CC=C(C=C1)N=NC2=CC=C(C=C2)C=O,true -CNC1=C(C=C(C=C1)N(CCO)CCO)[N+]([O-])=O,true -O=C1C5=C4C3=C1C=C2C=CC=CC2=C3C=CC4=CC=C5,true -COC(=O)C3=C2N=C1C=CC=CC1=C(C2=C(C=C3)[N+]([O-])=O)NCCCN(C)C,true -ClC(Cl)C1=C(Cl)C(=O)OC1,true -CC1=C(C=C(C(=C1C)N)[N+]([O-])=O)N,true -CC5CC2C(CC3=C[N](C1CCCC1)C4=CC=CC2=C34)N(C)C5,true -CC1=C(C=CC(=C1)[N+]([O-])=O)[N+]([O-])=O,true -C[N]1C(=NC3=C1C=CC4=CC=C2C=CC(=CC2=C34)O)C,true -[O-][N+](=O)C1=CC=C(C=C1)C(=O)OCC2CO2,true -[O-][N+](=O)C1=CC=C(C=C1)C2=CC=CC=C2,true -CC1=C(C(=CC=C1)N)N,true -[O-][N+](=O)C1=C2C=CC3=CC=CC4=CC=C(C(=C1)[N+]([O-])=O)C2=C34,true -CNC1=CC=C(C=C1)NC3=C2C=CC=CC2=NC4=CC=CC=C34,true -CC(=O)C1=CC=C[NH]1,true -[O-][N+](=O)C1=CC3=C(C=C1)C2=CC5=C(C=C2C=C3)C4=CC=CC=C4C=C5,true -[O-][N+](=O)C1=CC(=CS1)C(=O)NC2=CC(=CC=C2)F,true -[O-][N+](=O)C1=CC3=C(C=C1)C2=CC=CC=C2O3,true -BrCC(=O)C1=CC=C(C=C1)C2=CC=CC=C2,true -O=C1NC(=O)C=C1,true -CC(=O)NC1=CC=C(C=C1)N=NC2=C(C=CC(=C2)C)O,true -CN(C)C1=CC=C(C=C1)N=NC2=C(C=CC=C2)CO,true -NC1=C(C=C(C=C1)C2=CC(=C(C=C2)N)[N+]([O-])=O)[N+]([O-])=O,true -NC1=CC(=C(C=C1)CO)[N+]([O-])=O,true -[O-][N+](=O)C4=C2C(=CC=C3C1=CC=CC=C1C(=C23)C=C4)[N+]([O-])=O,true -[NH]1C(=NC(=C1C2=CC=CC=C2)C3=CC=CC=C3)C4=CC=CC=C4,true -CC(=O)NN,true -CC(O)CN,true -CC4=C2C=C1C(C(C=CC1=CC2=C3C=CC=CC3=C4)O)O,true -NC3=CC=C2N=C1C=CC=C[N]1C2=N3,true -NC1=C(C=CC(=C1)[N+]([O-])=O)CO,true -O=C1C(=O)C5=C3C2=C1C=CC=C2C=CC3=C4C=CC=CC4=C5,true -NC1=CC=C(C=C1)OC2=CC(=CC=C2)OC3=CC=C(C=C3)N,true -C1=CC2=CC4=CC=C5C=CC=C6C=C3C=CC(=C1)C2=C3C4=C56,true -ClCC4=C3C1=CC=CC2=CC=CC(=C12)C3=CC=C4,true -C[N]1C(=NC=C1[N+]([O-])=O)C,true -CN(C)CCNC(=O)C3=C2N=C1C=CC=CC1=C(C2=CC=C3)N,true -CC(=O)N(O)C1=CC=C(C=C1)[N+]([O-])=O,true -C5CCC4=C3C=C2C1=CC=CC=C1C=CC2=NC3=CC=C4C5,true -[O-][N+](=O)C2=CC1=CC=CN=C1C=C2,true -C(CCC1CO1)CC2CO2,true -O=C2CC(=O)C1=C(C=CC=C1)C2=O,true -C[N]1C(=NC2=C1C=C(C)C3=NC(=CN=C23)C)N,true -[O-][N+](=O)C2=C1C=CC=CC1=[N+](C=C2)[O-],true -OC5C=CC4=C3C=C1C=CC=C2C=CC(=C12)C3=CC=C4C5O,true -NC1=CC(=C(C=C1)[N+]([O-])=O)N,true -OC1=CC=C(C=C1)C=NN4N=NC2=C([NH]C3=CC=CC=C23)C4=O,true -CC(O)CN(C)N=O,true -CC1=C(C(=CC=C1)C)C,true -C1N2CN3CN1CN(C2)C3,true -CC4=C2C1=CC=CC=C1[NH]C2=C3C(C=C(C(C3=N4)=O)N5CC5)=O,true -CN(C)CCNC(=O)C3=C2C=C1C=CC=CC1=CC2=CC=C3,true -CC2=C4C=C1C=CC=CC1=C5C=CC3=CC=CC(=C2)C3=C45,true -[O-][N+](=O)C1=CC=C(C=C1)C(=O)C2OC2C3=CC=CC=C3,true -[O-][N+](=O)C1=CC=C(O1)C2=CSC(=N2)NC=O,true -OC3=C1C=CC=CC1=C2C=CC=CC2=C3,true -BrC=CBr,true -CCCC=CC(=O)OC1C(C)(C)CC2C1(O)C=C(C=O)C34CC23C(=O)OC4O,true -[O-][N+](=O)C1=CC3=C(C=C1)OC2=C(C=C(C(=C2)Cl)Cl)O3,true -NCCCNCCCCN(CCCN)N(O)N=O,true -CC3=C2C1OC1C5=C(C2=C(C4=CC=CC=C34)C)C=CC=C5,true -[O-][N+](=O)C1=CC=C(C=C1)C3=C([N]2C=CSC2=N3)[N+]([O-])=O,true -CN(C)N=NC1=CC=C(C=C1)Br,true -[O-][N+](=O)C3=CC=C2CC1=CC=CC=C1C2=C3,true -NC(=NO)C1=CC=C(O1)[N+]([O-])=O,true -C1=CC3=C(C=C1)C2=CC=CN=C2C=C3,true -[O-][N+](=O)C1=C3C(=CC=C1)C2=CC=CC=C2[NH]3,true -NC2=C1N=CC=CC1=CC=C2,true -CC[N+]2=C(C1=CC(=CC=C1C3=CC=C(C=C23)N)N)C4=CC=CC=C4,true -ON(N=O)C1=CC=CC=C1,true -CC3=C(C=C2N=C1C=C(C(=CC1=CC2=C3)C)N)N,true -NC1=CC(=C(C=C1)O)N,true -NC2=C1C=CC=CC1=NC3=C2CCCC3,true -CCN(CC)C1=CC=C(C=C1)C(C2=CC=C(C=C2)N(CC)CC)=C3C=CC(C=C3)=[N+](CC)CC,true -CN(C)C1=CC=C(C=C1)C(=N)C2=CC=C(C=C2)N(C)C,true -CC1=CC(=C(C=C1)N=NC3=C2C=CC(=CC2=CC(=C3O)S(O)(=O)=O)S(O)(=O)=O)C,true -ClC=CC[N+]23CN1CN(CN(C1)C2)C3,true -COC3=CC2=C(C1=CC=C(C=C1N=C2C=C3)Cl)NC(C)CCCN(CCCl)CCCl,true -CC3=C(C=C2[N+](=C1C=C(C(=CC1=NC2=C3)C)N)C4=CC=CC=C4)N,true -CN(C)CCCCl,true -NC1=CC=C(C=C1)C(C2=CC=C(C=C2)N)=C3C=CC(=N)C=C3,true -CN(C)C3=CC2=[S+]C1=CC(=CC=C1N=C2C=C3)N(C)C,true -CC(COC1=CC=CC=C1)N(CCCl)CC2=CC=CC=C2,true -CC1=C(C=CC(=C1)C(C2=CC=C(C=C2)N)=C3C=CC(=N)C=C3)N,true -CN(C)C3=CC2=NC1=CC(=CC=C1C=C2C=C3)N(C)C,true -CCN(CC)CCCC(C)NC2=C1C=C(C=CC1=NC3=CC(=CC=C23)Cl)OC,true -ClCC1=NC=CC=C1,true -ClCC1=CN=CC=C1,true -CCN(CC)C1=CC3=C(C=C1)C(=C2C=CC(=CC2=[O+]3)N(CC)CC)C4=C(C=CC=C4)C(O)=O,true -C[N+]2=C1C=C(C=CC1=CC3=CC=C(C=C23)N)N,true -CN(C)C3=CC2=[S+]C1=CC(=C(C=C1N=C2C=C3)C)N,true -NC(COC(=O)C=[N+]=[N-])C(O)=O,true -NC1=NC=C(S1)[N+]([O-])=O,true -CC(C)CCCC(C)C4CCC5C3CC1OC12CC(O)CCC2(C)C3CCC45C,true -CCCCN(N=O)C(=N)N[N+]([O-])=O,true -NC(CC1=CC=C(C=C1)N(CCCl)CCCl)C(O)=O,true -COC2=CC=C1N=C(N)SC1=C2,true -CN(N=O)C(=O)NC(C=O)C(O)C(O)C(O)CO,true -CC2=CN(C1CC(N=[N+]=[N-])C(CO)O1)C(=O)NC2=O,true -NC1=NC(=O)N(C=N1)C2OC(CO)C(O)C2O,true -BrC2=C1C=C4C(=CC1=CC=C2)C3=CC=CC=C3C=C4,true -OC2=C1C=CC(=CC1=C(N=N2)O)[N+]([O-])=O,true -CCN(N=O)C(=N)N[N+]([O-])=O,true -CN(C)N=NC1=C([NH]C=N1)C(N)=O,true -OC1=NC(=NN=C1)O,true -OC(CBr)C(O)C(O)C(O)CBr,true -COC24C1NC1CN2C3=C(C(=C(C(=C3O)C)N)O)C4=COC(N)=O,true -SC2=C1N=C[NH]C1=NC=N2,true -OCC1OC(C(O)C1O)[N]2C=NC3=C(S)N=CN=C23,true -NC(CC1=CC(=C(C=C1)O)O)C(O)=O,true -NC(=NO)C1=CC=CC=C1,true -CC(=O)NC(CS)C(O)=O,true -CC1=C(C=CC(=C1)N)C2=CC=C(C=C2)O,true -NC2=NC1=CC=C(C=C1S2)[N+]([O-])=O,true -OCC1OC(CC1O)N2C=C(C(=O)NC2=O)C(F)(F)F,true -CN(N=O)C(=N)N[N+]([O-])=O,true -NC2=C1N=C[NH]C1=NC=[N+]2[O-],true -NC2=C1N=C[N](C1=NC=N2)C3OC(CO)CC3O,true -NC1=NC=CS1,true -[O-][N+](=O)C1=CC=C(C=C1)CBr,true -C=CC#N,true -CCOP(=O)(OCC)OC1=CC=C(C=C1)[N+]([O-])=O,true -ClCC(Br)CBr,true -ClCCCl,true -CC2=C1C(O)C(C)(C)C=C1C(=O)C(C)(O)C23CC3,true -CC2=C1C(O)C(C)(CO)C=C1C(=O)C(C)(O)C23CC3,true -CCCN(C(N)=NN=O)[N+]([O-])=O,true -CCCCCN(N=O)C(=N)N[N+]([O-])=O,true -CC(C)(O)C3CC2=C(C=C1OC(C=CC1=C2)=O)O3,true -CN1C(SC2=C1C=CC=C2)=NN,true -NC(CO)C(=O)NNCC1=C(C(=C(C=C1)O)O)O,true -N1C(C1C2=CC=CC=C2)C3=CC=CC=C3,true -CC(C)CC(=O)OCC1=COC(OC(=O)CC(C)C)C2C1CC(OC(C)=O)C23CO3,true -C[N]1C(=CN=C1C2=NN=C(S2)N)[N+]([O-])=O,true -C1=CC=C3C(=C1)C=C4C=CC=C5C2=C(C=CC=C2)C3=C45,true -NC2=C1N=C([NH]C1=NC=N2)C3=CC=C(C=C3)[N+]([O-])=O,true -COC4=C3C(=C2C(=C1C(CC(CC1=C(C2=C(C3=CC=C4)O)O)(O)C(C)=O)=O)O)O,true -COC2=C1OC3=C(C(C1=C(C=C2)O)=O)C(=CC5=C3C4C=COC4O5)OC,true -NC(CSC1=C(C=C(C=C1)[N+]([O-])=O)[N+]([O-])=O)C(O)=O,true -ClCCN(CCCl)P1(=O)OCC(=O)CO1,true -C[N+]2=C1C=CC=CC1=NC3=CC=CC=C23,true -CS(=O)(=O)OCC(O)C(O)COS(C)(=O)=O,true -CC(C)(N=NC(C)(C)C(N)=N)C(N)=N,true -C[N+]([O-])(CCCl)CCCl,true -N=NC1=NNC=C2C=CC=CC12,true -[O-][N+](=O)C1=CC=C(S1)NC(=O)NCCCl,true -OCC1OC(C(O)C1O)[N]2C=NC3=C(NO)N=CN=C23,true -CCOC(=O)NNC2=C1C=CC=CC1=CN=N2,true -CCN(CCCl)CCCNC2=C1N=C(C=CC1=NC3=CC(=CC=C23)Cl)OC,true -CCN(CCCl)CCCNC1=C4C(=NC2=CC=CC=C12)C3=NC=CC=C3C=C4,true -CC=C1CC(=C)C(C)(O)C(=O)OCC2=CCN3CCC(OC1=O)C23,true -NCC(=O)NC1=CC=CC=C1,true -CC(C)CN(N=O)C(N)=N[N+]([O-])=O,true -CN1CC(=CC2C1CC3=C[NH]C4=CC=CC2=C34)C,true -CC4CC1C(CC2=C[NH]C3=CC=CC1=C23)N(C)C4,true -NC3=CC2=[S+]C1=CC(=CC=C1N=C2C=C3)N,true -CC[N]2C1=CC=CC=C1C3=CC(=CC=C23)N,true -CC2=CC=C1N=C(N)[NH]C1=C2,true -CCN(CC)C1=CC=C(C=C1)C(C2=CC=CC=C2)=C3C=CC(C=C3)=[N+](CC)CC,true -NC1=CC3=C(C=C1)C2=NC4=C(C(N2C3)=O)C=CC=C4,true -C1OC1CC3=C2C=CC=CC2=CC=C3,true -NC(CCC(=O)NC(CS)C(=O)NCC(O)=O)C(O)=O,true -O=C(C1OC1C2=CC=CC=C2)C3=CC=CC=C3,true -COC2=C(C1=NC3=C(C(=C1C=C2)OC)CCO3)OC,true -NN=C1N=NC=C2C=CC=CC12,true -NC(=O)CC1CO1,true -CCC(C)ON=O,true -CC3(C[N]1C=CN=N1)C(N2C(CC2=O)S3(=O)=O)C(O)=O,false -CN(C)CCOC(=O)C=C,false -ClC1=C(C=C(C(=C1)Cl)Cl)Cl,false -CCOC(=O)COC1=CC2=C(C=C1)C(=O)C=C(O2)C3=CC=CC=C3,false -CCCCCCCCCCCCC1=CC=CC=C1,false -CCOC(=O)CC(C)C,false -CCCCCOC(=O)C(C)=C,false -CC1CCCC2(C)CCCCC12O,false -CC(=C)C(=O)OCCOC(=O)C(C)=C,false -ClC1=C(C=CC=C1)C=O,false -OC1=C(C(=C(C=C1Cl)Cl)Cl)[N+]([O-])=O,false -CCOC1=CC2=C(C=C1)NC(C)(C)C=C2C,false -CCCCC(CC)COC(=O)C1=C(C=CC=C1)C(=O)OCC(CC)CCCC,false -CCCCC(CC)COC(=O)COC1=C(C=C(C=C1)Cl)Cl,false -CCN(CC)CC#CC(C)(C)OC(=O)C(O)(C1CCCCC1)C2=CC=CC=C2,false -CC(C)(C)COC(=O)C=C,false -FC(Cl)C(F)(F)C(F)(F)Cl,false -NC2=NC1=NC(=C(N=C1C(=N2)N)C3=CC=CC=C3)N,false -COC(=O)C1=CC=C(C=C1)C(=O)OC,false -ClC2=CC1=CC=CC=C1N=C2,false -CC(=C)C(=O)OCCCCCOC(=O)C(C)=C,false -CC(CC1=CC(=C(C=C1)O)O)C(C)CC2=CC(=C(C=C2)O)O,false -OC1=C(C=C(C=C1)Cl)SC2=C(C=CC(=C2)Cl)O,false -CC(=O)CC(=O)NC1=C(C=CC=C1)C,false -C1CCOC1,false -CCOCCC1=C(N=C([N]2N=CN=C12)N)C3=CC=CC=C3,false -NCCS,false -CC(C)(C)NC(=O)C3CCC4C2CC=C1C=C(CCC1(C)C2CCC34C)C(O)=O,false -OC1=CC=C(C=C1)C2=CC=C(C=C2)O,false -CC1=CC=C(C=C1)Br,false -ClC3=C2C=C1C=CC=CC1=CC2=CC=C3,false -COC2=C1OC=CC1=C(OC)C3=C2OC(C=C3)=O,false -C2C1=C(C=CC=C1)C3=C2C=CC=C3,false -CC2CCCC(=O)CCCC=CC1=C(C(=CC(=C1)O)O)C(=O)O2,false -NC(CCC(O)=O)C(O)=O,false -CC(O)C[N+](C)(C)NC(=O)C(C)=C,false -CCOC(=O)OCC,false -ClCC2=C3C=CC4=C1C=CC=CC1=CC5=CC=C(C=C2)C3=C45,false -C3CCC2OCCOCCOC1CCCCC1OCCOCCOC2C3,false -ON1C(=O)CCC1=O,false -CCN(CC)CCCN,false -CC(C)CCOC(C)=O,false -CC1=C(C(=CC(=C1)C2=CC(=C(C(=C2)C)N)C)C)N,false -CCCCCCC(O)=O,false -CC(C)C1C(C)C(C)(C)C2=C1C=C(C(=C2)C)C(C)=O,false -OC(=O)CC(O)(CC(O)=O)C(O)=O,false -ICI,false -COC1=CC(=CC=C1)C(=O)CBr,false -CCN(CC)CCO,false -CC3CC1=C(C(=C(C=C1)C(=O)NC(CC2=CC=CC=C2)C(O)=O)O)C(=O)O3,false -CCCCC1CO1,false -CCOCOCC,false -CC(=C)C(=O)OCCO,false -COC1=CC=C(C=C1)C3=COC2=C(C(=CC(=C2)O)O)C3=O,false -OCC(O)C1=C(C(=C(O1)O)O)O,false -COC(=O)C1=CC=C(C=C1)C,false -ClC1=CC(=CC(=C1)Cl)Cl,false -NC(N)=O,false -CCCCCl,false -[O-][N+](=O)C1=CC=CC=C1,false -C[N]1C=NC2=C1C(NC(N2C)=O)=O,false -CC1=CC=NC=C1,false -OC(=O)CCC1=C[NH]C2=CC=CC=C12,false -CC(C)(C)NCC(O)COC2=C1CC(C(CC1=CC=C2)O)O,false -NC(CC(=O)C1=C(C(=CC=C1)O)N)C(O)=O,false -CC(N)CCN,false -CC(S)C(=O)NCC(O)=O,false -N#CCCCCC#N,false -CCCCC(CC)COC(=O)C=CC1=CC=C(C=C1)OC,false -CC1(C)CC(CC(C)(CN=C=O)C1)N=C=O,false -CC1NC(CC2=C1[NH]C3=CC=CC=C23)C(O)=O,false -CCOP(=S)(OCC)OC2=NC1=CC=CC=C1N=C2,false -CCCCC(CC)COP(=O)(OCC(CC)CCCC)OCC(CC)CCCC,false -CNS(=O)(=O)C1=CC=C(C=C1)NC(C)=O,false -OC1=CC(=C(C(=C1)Cl)Cl)Cl,false -CCOC1=CC=C(C=C1)N=[N+]([O-])C2=CC=C(C=C2)OCC,false -C1=CC=C(C=C1)C2=CC=C(C=C2)C3=CC=CC=C3,false -CCCCCCCCN1SC=CC1=O,false -OC(=O)C1=C(C=CC(=C1)Cl)O,false -NC1=NC(=NC(=N1)N)Cl,false -CC1=C(C=C(C(=C1)O)C(C)(C)C)SC2=C(C=C(C(=C2)C(C)(C)C)O)C,false -NC2C1=C(C=CC=C1)C3=C2C=CC=C3,false -COC(N)=O,false -FC2=CN(C1CCCO1)C(=O)NC2=O,false -CC3(C)SC2C(NC(=O)COC1=CC=CC=C1)C(=O)N2C3C(O)=O,false -COC1=CC=C(C=C1)C=C,false -CC(=O)C2=CC1=CC=CC=C1C=C2,false -NC1=NCNC2=C1N=C[N]2C3OC(CO)C(O)C3=O,false -OC1=CC2=C(C=C1)C4=C(C(O2)=O)C3=CC=C(C=C3O4)O,false -CCCCCCCC(=O)CCC1=CC(=C(C=C1)O)OC,false -CC1CC(CC(C)(C)C1)OC(=O)C2=C(C=CC=C2)O,false -OC(=O)CCCCCCCCC(O)=O,false -COP(=O)(SC)SC,false -OC(CC(O)=O)C(O)=O,false -CC(=C)C(=O)OCC(C)(C)C,false -CC(C)NCC(O)COC1=C(C=CC=C1)CC=C,false -C1COCCOCCOCCOCCOCCOCCO1,false -C=CC1=CC=NC=C1,false -CC(NC(=O)CC1=C(N=C(N=C1)C)N)=C(CCOC(=O)C2=CC=CC=C2)SC(=O)C3=CC=CC=C3,false -COC(=O)COC1=C(C=C(C=C1)Cl)Cl,false -CC(Cl)=O,false -CCOC1=CC(=CC=C1)[N+]([O-])=O,false -CC1=NC=C[NH]1,false -CC(=O)NC1=CC=C(C=C1)S(=O)(=O)C2=CC=C(C=C2)N,false -CCOC(=O)CNC(=O)CBr,false -OC(=O)C=CC(O)=O,false -CN2C(CSCC(F)(F)F)NC1=C(C=C(C(=C1)Cl)S(N)(=O)=O)S2(=O)=O,false -NC1CCC(CC1)CC2CCC(N)CC2,false -CCCCC#N,false -CN(C)C1=CC=C(C=C1)N=NC2=CC=C(C=C2)N(C)C,false -CC2(N(O)C1=C(C=CC=C1)C2=O)C3=CC=CC=C3,false -CC1=NC=C(N=C1)C,false -CC(C)CCCCCOC(=O)C=C,false -NC1=C(C=CC=C1)C(O)=O,false -OC1=CC=CC=C1,false -NC(=O)N(C1=CC=CC=C1)C2=CC=CC=C2,false -CCCCCCCCCCCCS,false -CC(C)N=C=NC(C)C,false -COC1=CC=C(C=C1)CN(CCN(C)C)C2=NC=CC=C2,false -CN(C(=O)CN(CCO)CC(=O)N(C)C(C)(C)CC1=CC=CC=C1)C(C)(C)CC2=CC=CC=C2,false -CCOP(=S)(OCC)OC1=C(C=C(C(=N1)Cl)Cl)Cl,false -CC(C)CC(C)=O,false -OCC=CC1=CC=CC=C1,false -NC1=CC(=CC(=C1)Cl)Cl,false -CN1CCC(CC1)=C3C2=C(C=CC=C2)C=CC4=C3C=CC=C4,false -COC1=CC=C(C=C1)O,false -CCC(=C)C(=O)C1=C(C(=C(C=C1)OCC(O)=O)Cl)Cl,false -CS(C)(=O)=O,false -CC(C)(N=NC(C)(C)C#N)C#N,false -CCC(O)=O,false -CC(C)CN(CC(C)C)CC(C)C,false -OC1=CC2=C(C(=C1)O)C(C(C(O2)C3=CC=CC=C3)=O)=O,false -OCC1=C(C=CC=C1[N+]([O-])=O)[N+]([O-])=O,false -CCCCCC=CCC=CCCCCCCCC(O)=O,false -CC1=C(C2=C(C=C1[N+]([O-])=O)C(CC2(C)C)(C)C)[N+]([O-])=O,false -CCCCCCCCCCC1CO1,false -O=P(OC1=CC=CC=C1)(OC2=CC=CC=C2)OC3=CC=CC=C3,false -OC1=C(C(=C(C=C1Cl)Cl)Cl)Cl,false -OCC(=O)N(O)C1=CC=C(C=C1)Cl,false -CNP1(=NP(=NP(=N1)(NC)NC)(NC)NC)NC,false -CC(C)(C#N)C(C)(C)C#N,false -CS(=N)(=O)CCC(N)C(O)=O,false -CCN(CC)C1=CC2=C(C=C1)C=C(C(=O)O2)C4=NC3=CC=CC=C3[N]4C,false -NC(CC1=C[NH]C2=CC=C(O)C=C12)C(O)=O,false -NC1=C(C=CC=C1)C(=O)OCCC2=CC=CC=C2,false -OC(=O)C=CC1=C(C=CC=C1)[N+]([O-])=O,false -CC1=CC3=C(C=C1)C2=CC=C(C=C2C3)C,false -NC(=O)CCCCC(N)=O,false -NC(=O)C1=C(C=CC=C1)O,false -NC(CSC=CCl)C(O)=O,false -O3C4C1OC1C2=C(C=CC=N2)C34,false -C[N]2C(=NC3=NC1=NC=CC=C1C=C23)N,false -CC1=C(C=CC=C1)C=O,false -CCCCCN(CCCCC)CCCCC,false -CC(=O)OC2=C1N=CC=CC1=CC=C2,false -OC(=O)C2=C(C=C1C=CC=CC1=C2)O,false -CCCCC(CC)CNCC(CC)CCCC,false -CC(C)NC1=NC(=NC(=N1)N)Cl,false -[NH]1C=CN=C1,false -OC(=O)CC(NC(=O)COC1=C(C=C(C=C1)Cl)Cl)C(O)=O,false -OCCS,false -O=S1(=O)CCCC1,false -CC(C)C(C(=O)OC(C#N)C1=CC(=CC=C1)OC2=CC=CC=C2)C3=CC=C(C=C3)Cl,false -CCC(C)N,false -CCCCNC(=O)[N]1C(=NC2=CC=CC=C12)NC(=O)OC,false -O(C1=CC=CC=C1)C2=CC=CC=C2,false -CC(C)(C)NCC(O)C1=CC(=C(C=C1)O)NC(N)=O,false -CN2C(=O)CC(=O)N(C1=CC=CC=C1)C3=C2C=CC(=C3)Cl,false -CN(CCO)CCO,false -CC1=C(C(=CC=C1)O)N,false -CCC(CO)=[N+](O)[O-],false -OC(=O)C(F)(F)C(F)(Cl)C(F)(F)C(F)(Cl)C(F)(F)Cl,false -CC(C)OC(=O)CC(O)(CC(O)=O)C(O)=O,false -CC(C)(C)OC(=O)OC(=O)OC(C)(C)C,false -ClN1C(=O)N(Cl)C(=O)N(Cl)C1=O,false -OC1=CC(=CC=C1)NC2=CC=CC=C2,false -CC1=C(C=CC=C1N=[N+]([O-])C2=C(C(=CC=C2)[N+]([O-])=O)C)[N+]([O-])=O,false -NC=O,false -OC1=C(C=C(C=C1)Cl)CC2=CC=CC=C2,false -CN(N)C=O,false -CC2=CC=C1N=N[NH]C1=C2,false -CCCCCCCC(O)=O,false -CC1=CC=C(C=C1)N(O)C(C)=O,false -COC1=C(C=C(C(=C1)N)C)N,false -COC(=O)C1=CC=C(C=C1)O,false -OC(=O)CC(=CC(O)=O)C(O)=O,false -NC(=O)C1=NC=CN=C1,false -CCN(CC1=CC=CC=C1)C2=CC=CC=C2,false -CNC(=O)ON=CC(C)(C)SC,false -O=CC2=C1C=CC=CC1=CC3=CC=CC=C23,false -C1COCO1,false -OC(=O)C(Br)=C,false -C=CC1=C(C=CC=C1)C=C,false -OS(=O)(=O)C1=CC=CC=C1,false -CCCCCN(CCCOC)C(=O)C(CCC(O)=O)NC(=O)C1=CC(=C(C=C1)Cl)Cl,false -C=CC(=O)OCCCCOC(=O)C=C,false -C(OCC1=CC=CC=C1)C2=CC=CC=C2,false -BrC1=C(C2=C(C(=C1Br)Br)C(=O)OC2=O)Br,false -CC(C)N2C(=O)C1=C(C=CC=C1)NS2(=O)=O,false -CCOP(=S)(OCC)SCN1C(=O)OC2=C1C=CC(=C2)Cl,false -C=CCN(CC=C)CC=C,false -CCNC1=CC=CC=C1,false -NC1=C(C=CC=C1O)[N+]([O-])=O,false -CC(CO[N+]([O-])=O)(CO[N+]([O-])=O)CO[N+]([O-])=O,false -CC(C)(OC1=CC=C(C=C1)C(=O)C2=CC=C(C=C2)Cl)C(O)=O,false -CCOC(=O)C4=CC1=C(C3=C2C(=C1)CCCN2CCC3)OC4=O,false -COC(=O)C(=CC1=C(C=CC=C1)Br)C#N,false -CCCCC1C(=O)N(N(C1=O)C2=CC=CC=C2)C3=CC=CC=C3,false -CC(C)(C)OOC(C)(C)C,false -CC1=C(C=CC=C1)C(N)=O,false -CC(C)(OOC(C)(C)C1=CC=CC=C1)C2=CC=CC=C2,false -CCCCOC(=O)CCC,false -CCCCOCCCC,false -CCC(C)=[N+](O)[O-],false -NC(=O)C1CCCN1C(=O)C(CC2=C[NH]C=N2)NC(=O)C3CCC(=O)N3,false -CCCC=C(CC)C=O,false -CC1=CC=C(C=C1)C#N,false -C2=CC1=CN=NC=C1C=C2,false -ClC1=C(C(=CC=C1)Cl)C=O,false -COC1=C(C=CC(=C1)C(C)=O)O,false -CC(C)COC(=O)C(C)=C,false -CC(C)(C)C1=C(C=CC(=C1)O)O,false -NC1CCCC(N)C1,false -CCCCOC(=O)C1=CC=C(C=C1)N,false -CC1CCC(CC1)C(C)C,false -NCCCN,false -CC1=CC3=C(C=C1)C(=O)C2=C(C=CC=C2)C3=O,false -OC1=CC=C(C=C1)NC3=CC2=CC=CC=C2C=C3,false -CCCCC(CC)C(O)=O,false -ClCC(Cl)C=C,false -CC(C)CCOC(=O)CC(C)C,false -NCC(O)=O,false -OCC1=CC=C(C=C1)F,false -CCCCOCCOCCSC#N,false -O=C2N(SC1CCCCC1)C(=O)C3=C2C=CC=C3,false -CC3=NN=C4CN=C(C1=C(C=CC=C1)Cl)C2=CC(=CC=C2[N]34)Cl,false -OC1=CC=C(C=C1)C=CC(=O)C2=CC=CC=C2,false -ON(C=O)C1=CC=CC=C1,false -[O-][N+](=O)C1=CC(=CC=C1)Cl,false -[O-][N+](=O)C1=CC2=C(C=C1)NC(=O)CN=C2C3=CC=CC=C3,false -OC(C(O)C(O)=O)C(O)=O,false -CS(=O)(=O)C=C,false -CC(C)CC(C)O,false -O=CC=CC1=CC=CC=C1,false -CC(C)CNCC(C)C,false -BrC1=C(C=CC=C1)C2=CC=CC=C2,false -NC1=CC=C(C=C1)S(=O)(=O)NC3=NC2=CC=CC(=C2N=C3)Cl,false -CN2C(=O)N(C)C1=C(N=C[NH]1)C2=O,false -COC=O,false -OC(=O)C(O)=O,false -ClC(Cl)(Cl)C(Cl)(Cl)Cl,false -CSCCC(NC(=O)COC1=C(C=C(C(=C1)Cl)Cl)Cl)C(O)=O,false -CCCCCCCCCCCCCCCCCCO,false -OC(=O)CN(CC(O)=O)CC(O)=O,false -CCCN(CCC)C(=O)SCC,false -CC1=C(C=C(C=C1)NCCO)O,false -CC=O,false -CC1(C)C=C(C(O)=O)C(C)(C)N1O,false -OC(O)=O,false -CCCCCCC1CO1,false -CCCCCC(=O)CC2=C1C(OC3=C(OC1=CC(=C2)O)C(=C(C(O)=O)C(=C3)O)CCCCC)=O,false -COC1=C(C=C(C=C1)CC=C)OC,false -CC1=CC(=CC=C1)OP(=O)(OC2=CC=CC=C2)OC3=CC=CC=C3,false -[O-][N+](=O)C1=CC=C(C=C1)OC2=C(C=C(C=C2Cl)Cl)Cl,false -O=C3OC2=C1C=COC1=CC=C2C=C3,false -COC1=C(C(=CC(=C1)C(C)=O)OC)O,false -COC1(CCCC1)OC5CCC6C4CCC3CC2SC2CC3(C)C4CCC56C,false -OCC(O)COP(O)(O)=O,false -CCCCCCNCCCCCC,false -CSCCC=O,false -OCCOCCO,false -CN(C)C1=CC=C(C=C1)C(=C2C=CC(=N)C=C2)C3=CC=C(C=C3)N(C)C,false -O=C1NC(=O)C2CC=CCC12,false -CN1CCCC1=O,false -C=CC1=NC=CC=C1,false -CCCCC(CC)COP(=O)(OC1=CC=CC=C1)OC2=CC=CC=C2,false -OC1=CC3=C(C=C1)C(=O)C2=C(C=CC(=C2)O)C3=O,false -C3CCC2OCCOCCOCCOC1CCCCC1OCCOCCOCCOC2C3,false -CCCCCCCCCCCCCC[N+](C)(C)CC1=CC=CC=C1,false -NCC(=O)NCC(=O)NCC(=O)NCC(O)=O,false -OC1=C(C=CC=C1)C3=NC2=CC=CC=C2O3,false -CCOP(=O)(CC)OCC,false -CC(C)=CCC2C(=O)C(=O)C1=C(C=CC=C1)C2=O,false -BrCC1=CC=C(C=C1)Br,false -CC1=CC(=O)C=C(C)C1=O,false -CC5CC2C(CC3=C[N](CC1CC1)C4=CC(=CC2=C34)Br)N(C)C5,false -CC(=C)C(=O)OCCOCCOCCOC(=O)C(C)=C,false -OC[P+](CO)(CO)CO,false -OC2=CC1=C(C=C(C=C1C=C2)S(O)(=O)=O)S(O)(=O)=O,false -CC(=O)OC3(CCC4C2C=C(Cl)C1=CC(=O)OCC1(C)C2CCC34C)C(C)=O,false -C1=CC=C4C(=C1)N=C3C2=C(C=CC=C2)C6=C3C4=C5C=CC=CC5=N6,false -CC1=CC=C(C=C1)N=NC3=C2C=CC=CC2=CC=C3O,false -COC1=CC(=C(C(=C1)OC)Cl)N2C(=CC(=O)C(=C2C3=CC=C(C=C3)F)C)C4=CC=CC=C4,false -COC1=CC=C(C=C1)C(Cl)=C(C2=CC=C(C=C2)OC)C3=CC=C(C=C3)OC,false -ClCC1=C(C=CC=C1)CCl,false -CCC(=C(CC)C1=CC=C(C=C1)OP(O)(O)=O)C2=CC=C(C=C2)OP(O)(O)=O,false -CC1=NOC(=C1C)NS(=O)(=O)C2=CC=C(C=C2)N,false -CCCCCCCCCCCCCCCCC1CO1,false -COC(=O)C1=C(C)NC(=C(C1C2=C(C=CC=C2)[N+]([O-])=O)C(=O)OC)C,false -OC1=CC=C(C=C1)CC=C,false -ClC1=CC(=CC=C1)Cl,false -CC1=C(C=C(C=C1)[N+]([O-])=O)NO,false -CC3(O)CCC4C2CCC1CC(=O)C(CC1(C)C2CCC34C)C=O,false -CC1=C(C(=CC=C1)C)NC2=NC(=NC(=C2)Cl)SCC(=O)NCCO,false -CCOC(=O)C1=C(C=CC=C1)N,false -CCCC(O)=O,false -NC3=NC(=C2N=C(O)[N](C1CC(O)C(CO)O1)C2=N3)O,false -ClC1=CC(=C(N=C1)OC2=CC=C(C=C2)OC3=C(C=C(C=N3)Cl)Cl)Cl,false -COC1=C(C=CC(=C1)CCC(C)=O)O,false -NC1=CC=C(C=C1)S(=O)(=O)C2=CC=C(C=C2)N,false -NC(=O)C1=CC=C(C=C1)N,false -CC=[N+](O)[O-],false -OC(=O)CCC(=O)NC1=CC(=C(C=C1)Cl)Cl,false -CCCC(C)(COC(N)=O)COC(=O)NC(C)C,false -COC2=CC1=CC=C(C=C1C=C2)CCC(C)=O,false -OC(=O)COC1=C(C=C(C(=C1)Cl)Cl)Cl,false -OCCN(CCO)CCO,false -OC(C1CC1)(C2=CC=C(C=C2)Cl)C3=CC=C(C=C3)Cl,false -CC(=O)N(O)C1=CC=C(C=C1)Cl,false -ClC1=C(C(=CC=C1)Cl)Cl,false -CC(C)[N+](C)(CCOC(=O)C2C1=C(C=CC=C1)OC3=C2C=CC=C3)C(C)C,false -ClC1=CC=C(C=C1)Cl,false -COC1=C(C=CC(=C1)C=CC(O)=O)O,false -CCCCCCC1=CC=C(C=C1)C2=CC=C(C=C2)C#N,false -CCN1C=C(C(O)=O)C(=O)C2=C1C(=C(C(=C2)F)C3=CC=NC=C3)F,false -CC1=CC=CO1,false -OCC1OC(CC1O)N2C=C(CCCl)C(=O)NC2=O,false -NC1=NC(=CC(=N1)Cl)Cl,false -OC1=C(C=CC=C1)C(=O)OCC2=CC=CC=C2,false -C2=NC=C1C=NN=CC1=C2,false -FC1=CC=C(C=C1)C=CC(=O)C2=CC=CC=C2,false -NC(=O)C1=C(C=CC=C1)C(N)=O,false -CC(=O)NC1=CC=C(C=C1)CC2=CC=C(C=C2)N,false -COC3=C1C(N(C(C2=CC=CC(=C12)C=C3)=O)C)=O,false -CCCCOC(=O)C=C,false -O=C1OCC=C1,false -[O-][N+](=NC1=CC3=C(C=C1)C2=CC=CC=C2C3)C4=CC6=C(C=C4)C5=CC=CC=C5C6,false -CC(CS)C1CCC(C)C(S)C1,false -CC(=O)C1C(=O)OC(=CC1=O)C,false -NC(=O)NN=CC(O)=O,false -CCCCCCNC(=O)N1C=C(F)C(=O)NC1=O,false -N#CCC#N,false -CC(CCC(O)=O)C3CCC4C2CCC1CC(O)CCC1(C)C2CCC34C,false -[O-][N+](=O)C1=C(C=CC=C1)C(F)(F)F,false -COC1=C(C(=C(C(=C1Cl)Cl)[N+]([O-])=O)Cl)Cl,false -CCCCN(N)CCCC,false -CCOC(=O)OC(C1CC2CCN1CC2C=C)C4=C3C=C(C=CC3=NC=C4)OC,false -BrC1=CC=C(C=C1)C2=CC=CC=C2,false -ClCC(CCl)(CCl)CCl,false -ClC1=CC=C(C=C1)C3=NC2=CC=CC=C2O3,false -FC(F)(F)C(F)(F)C(Cl)Cl,false -CN(C)CCN(CC1=CSC=C1)C2=NC=CC=C2,false -CC1=C(C=C(C=C1)[N+]([O-])=O)N=[N+]([O-])C2=C(C=CC(=C2)[N+]([O-])=O)C,false -O=C(C=CC=CC1=CC2=C(C=C1)OCO2)N3CCCCC3,false -CC(O)CNCC(C)O,false -CCN(CC)C1=CC(=C(C=C1)N=O)O,false -COC1=CC=C(C=C1)OC,false -NC1=CC(=C(C(=C1)C(O)=O)O)S(O)(=O)=O,false -NC1=C(C=CC(=C1)S(O)(=O)=O)O,false -CCOP(O)(OC1=CC(=C(C=C1)SC)C)=NC(C)C,false -FC1=CC=C(C=C1)C(=O)C=CC2=CC=CC=C2,false -CC(Br)C1=CC=CC=C1,false -OCCN1CCNCC1,false -COC1=CC=C(C=C1)C2=NOC(=C2C3=CC=C(C=C3)OC)CC(O)=O,false -OC1=C(C=C(C=C1Cl)Cl)NC(=O)C2=C(C(=CC(=C2O)Cl)Cl)Cl,false -[O-][N+](=O)C1=C(C=CC=C1)C=CC(=O)C2=CC=CC=C2,false -OC(=O)C1=CC=CC=C1,false -S=C(NC1CCCCC1)NC2CCCCC2,false -OC1=C(C=C(C=C1Br)C#N)Br,false -CC1(C)CC(C(O)=O)C(C)(C)N1O,false -OC1=C(C(=CC(=C1)Cl)Cl)Cl,false -CC13CCC(=O)CC1=C2CC2C4C3CCC6(C)C4C5CC5C67CCC(=O)O7,false -CN2C(=O)CN=C(C1=CC=CC=C1)C3=C2C=CC(=C3)Cl,false -CC5=CC4=C3C=CC2=C1C=CC=C(C1=CC=C2C3=CC=C4C=C5)C,false -CCCCCOC(=O)C=C,false -CCCCOC4=C2C1=CC=CC=C1C=CC2=C3CCC(C3=C4)=O,false -CNC(O)=NO,false -CC1=CC(=CC(=C1)C)C,false -CNCC(O)C1=CC(=C(C=C1)O)O,false -O2C1=CC=CC=C1N=C2C3=CC=CC=C3,false -CCCCCCCCOC(=O)C1=C(C=CC=C1)C(=O)OCCCCCCCC,false -O=C1CN(CC2N1CCC3=C2C=CC=C3)C(=O)C4CCCCC4,false -OCC1=CC=CC=C1,false -CCN(CC)CC,false -BrC1=CC=C(C=C1)C(=O)C=CC2=CC=CC=C2,false -NC1=CC3=C(C=C1)C(=C2C=CC(C=C2O3)=N)C4=C(C=CC=C4)C(O)=O,false -BrCC1=CC(=CC=C1)CBr,false -OC1=C(C(=CC=C1)Cl)Cl,false -CNCCO,false -O=C(OC1CCCCC1)C2=C(C=CC=C2)C(=O)OC3CCCCC3,false -CN(C)C(=O)C1=N[N](C(=N1)CNC(=O)CN)C2=C(C=C(C=C2)Cl)C(=O)C3=C(C=CC=C3)Cl,false -CC(=C)C(=O)OCCCCCCOC(=O)C(C)=C,false -CC(CCO)CCC=C(C)C,false -CCSC(Cl)=O,false -NC1=C(C(=CC(=C1)Cl)Cl)O,false -ClN1C(=O)NC(=O)N(Cl)C1=O,false -C[N+](C)(C)NCCC(O)=O,false -ClC1=CC=C(C=C1)C(C2=CC=C(C=C2)Cl)C(Cl)(Cl)Cl,false -OC(=O)C2=NC1=CC=CC=C1C(=C2)O,false -ClC2=C(Cl)C3(Cl)C1COS(=O)OCC1C2(Cl)C3(Cl)Cl,false -OC2=CC1=NC=CC=C1C=C2,false -CC(=O)C1=C(C=CC=C1)[N+]([O-])=O,false -CCNS(=O)(=O)C1=CC=C(C=C1)C,false -CC(Cl)(Cl)C(O)=O,false -C1=CC=C(C=C1)C2=CC(=CC=C2)C3=CC=CC=C3,false -COC1=C(C(=CC=C1Cl)Cl)C(O)=O,false -CCOC(=O)C(C)=C,false -NCCC1=C[NH]C=N1,false -CC(COC(=O)C1=CC=CC=C1)(COC(=O)C2=CC=CC=C2)COC(=O)C3=CC=CC=C3,false -OC(=O)C1=CC=C(C=C1)C(O)=O,false -O=CC1=CC(=CC=C1)C2=CC=CC=C2,false -NCCCCCCN,false -CNCC(O)=O,false -OC1=CC(=CC(=C1)O)O,false -CC(=O)C1=CC3=C(C=C1)OC2(CC2)C3=O,false -CC(=C)C(=O)OCC(C)(C)COC(=O)C(C)=C,false -OC1=C(C(=C(C=C1[N+]([O-])=O)[N+]([O-])=O)O)[N+]([O-])=O,false -CCC(C)C=O,false -NC1=C(C=CC(=C1)C(F)(F)F)Cl,false -CN(C)C,false -CC(C)NC1=CC=CC=C1,false -OC(=O)C1=CC=C(C=C1)N=NC2=CC(=C(C=C2)O)C(O)=O,false -OC1=CC=C(C=C1)S(=O)(=O)C2=CC=C(C=C2)O,false -CN(C)C1=CC=CC=C1,false -ClC1=CC=NC=C1,false -FC(Cl)(Cl)Cl,false -CC1(C)SSCC(NC1=O)C(O)=O,false -C2=CC1=CC5=C(C=C1C=C2)C4=CC=C3C=CC=CC3=C4C=C5,false -CC1=CC=C(C=C1)C3=NC2=CC=CC=C2O3,false -CCCCCCCOC1=C(C=CC=C1)NC(=O)OC(C)CN(CC)CC,false -CC(CCC(O)=O)C3CCC4C2C(O)CC1CC(O)CCC1(C)C2CCC34C,false -CCOP(=S)(OCC)OC1=CC2=C(C=C1)C(=C(Cl)C(=O)O2)C,false -FC1=C(C(=C(C(=C1F)Cl)F)Cl)F,false -COC1=CC=C(C=C1)CCl,false -NC1=C(C(=CC=C1)[N+]([O-])=O)O,false -O=C3CCC(N2C(=O)C1=C(C=CC=C1)C2=O)C(=O)N3,false -NC(=N)C1=CC=CC=C1,false -CC(=C)C1CC=C(C)C(=O)C1,false -CN(C)C1=CC=C(C=C1)N=NC2=CN=CC=C2,false -ClCC(=O)C1=CC=CC=C1,false -NC(CCCCNCC(N)C(O)=O)C(O)=O,false -OC(=O)CCC(O)=O,false -CC34C=CC2=C1CCC(=O)CC1=CCC2C3CCC4O,false -OC(=O)C1=CN=CC=C1,false -CC1=CC=C(C=C1)C=O,false -CC(=C)C1CC=C(C)C(O)C1,false -C2CCCCCC1OC1CCCC2,false -CC(C)CN,false -CC(=O)C=CC1=CC=CO1,false -CCC2=C1[NH]C=C(C1=CC=C2)CCO,false -CC2CC(C)(C)C1=C(C=C(C(=C1)C(C)=O)C)C2(C)C,false -CCCCCCCCCCCC(=O)N(CCO)CCO,false -CNC(CC(O)=O)C(=O)N(C2C1SC(C)(C)C(N1C2=O)C(O)=O)C(C(N)=O)C3=CC=C(C=C3)O,false -CC1(C)C(C=C(Cl)Cl)C1C(=O)OC(C#N)C2=CC(=CC=C2)OC3=CC=CC=C3,false -NC2=NC(=C1[NH]C=NC1=N2)N,false -OC1COC2C(COC12)O[N+]([O-])=O,false -CC(C)CC(=O)OCC=C,false -CCCC(=O)OC1CCCCC1,false -COC3=CC(=C2C(=O)OC1=CC(=CC(=C1C2=C3)C)O)O,false -ClC1=NC(=NC(=C1)Cl)Cl,false -[O-][N+](=O)C1=C(C=CC=C1)NC2=CC=CC=C2,false -OC(=O)C3CC1=C([NH]C2=CC=CC=C12)C(N3)C4=CC=CC=C4,false -OCCC#N,false -CC(C)CC(NC(=O)COC1=C(C=C(C(=C1)Cl)Cl)Cl)C(O)=O,false -OC(=O)CCCC1=C[NH]C2=CC=CC=C12,false -COP(=O)(OC)SC,false -CCCCCCCCCCCOC(=O)C1=C(C=CC=C1)C(=O)OCCCCCCCCCCC,false -OCC1=CC3=C(C=C1)C(=O)C2=C(C=CC=C2)C3=O,false -CN1CCCN(C)C1=O,false -OC2(CCN(CCCC(=O)C1=CC=C(C=C1)F)CC2)C3=CC=C(C=C3)Cl,false -ClC1=CC(=C(C=C1)C=O)Cl,false -CC1=CC(=CC=C1)N,false -CC1(C)C2CCC1(C)C(O)C2,false -BrC1=CC=C(C=C1)C=CC(=O)C2=CC=CC=C2,false -C=CCOC(=O)C=C,false -CCCCCC=[N+](O)[O-],false -CCOC(=O)CC(SP(=S)(OC)OC)C(=O)OCC,false -CS(O)(=O)=O,false -O=C3C(=O)C1=C(C=CC2=CC=CC=C12)C4=C3C=CC=C4,false -CC(C)=CC1C(C(O)=O)C1(C)C,false -NC2=CC1=CC=CN=C1C=C2,false -CCCCOCCOP(=O)(OCCOCCCC)OCCOCCCC,false -OC1=CC=C(C=C1)C(=O)C=CC2=CC=CC=C2,false -OCC1=CC(=CC=C1)[N+]([O-])=O,false -NC1=CC=C(C=C1)S(=O)(=O)NC2=NC=CS2,false -ON=CC(=O)NC1=CC=CC=C1,false -CC(C=O)=CC=CC(C)=CC=CC=C(C)C=CC=C(C)C=CC1=C(C)CCCC1(C)C,false -CC(C)C1=CC(=C(C=C1)C)O,false -CC(=O)CCC(C)=O,false -OC(=O)CC1=C[NH]C2=CC=C(O)C=C12,false -CCCCC(CC)COC(=O)C(C#N)=C(C1=CC=CC=C1)C2=CC=CC=C2,false -CC(=O)CC(=O)CCC(O)=O,false -OC(=O)C=CC1=CC(=C(C=C1)O)O,false -OC2=C1N=CC=CC1=C(C=C2I)Cl,false -CC(C)(C)C(=O)C(OC1=CC=C(C=C1)Cl)[N]2C=CN=C2,false -CC3=C2C=C1C=CC=CC1=CC2=CC=C3,false -OC1OCC=C2OC(=O)C=C12,false -CC3=C2C1=CC(=CC(=C1C(OC2=CC(=C3)O)=O)O)O,false -CC(=C)C(=O)OCCOCCOC(=O)C(C)=C,false -CCCCC(CC)C=O,false -CCC2=CN(C1CC(O)C(CO)O1)C(=O)NC2=O,false -NS(=O)(=O)C1=C(C=C2C(=C1)S(NCN2)(=O)=O)Cl,false -CC(C)C1=C(C=C(C=C1)C)O,false -ClC1=CC(=CN=C1)Cl,false -CCC2NC(=O)C1=C(C=C(C(=C1)S(N)(=O)=O)Cl)N2,false -CN(C)C1=CC=C(C=C1)C=CC=O,false -CC(C)NCC(O)COC2=C1C=CC=CC1=CC=C2,false -O=CC1=CC=CC=C1,false -CC(C(O)=O)C1=CC=C(C=C1)OC2=NC=CS2,false -ClC2=C(C1=CC=CC=C1C(=C2Cl)Cl)Cl,false -CCNCC#CC(C)(C)OC(=O)C(O)(C1CCCCC1)C2=CC=CC=C2,false -O=C(C=CC1=CC=C(C=C1)C2=CC=CC=C2)C3=CC=CC=C3,false -COC2=CC1=C(C=CN=C1C=C2)C(O)C3CC4CCN3CC4C=C,false -ClCC1=CC(=CC=C1)CCl,false -CCN=C=S,false -NC1CCC(N)CC1,false -OC1=C(C=CC=C1)C2=C(C=CC=C2)O,false -FCC(F)(F)F,false -FC(F)(F)C1=CC=CC=C1,false -OC2=C(C1=CC=C(C=C1C=C2)S(O)(=O)=O)N=NC3=CC=C(C=C3)S(O)(=O)=O,false -CC(CCC=C(C)C)CC=O,false -ClCCN(CCCl)CCCl,false -ClCC1=CC=C(C=C1)Br,false -CCCCCCCCC1CO1,false -O=C1CCCO1,false -ClC1=C(C3=C(C(=C1Cl)Cl)OC2=C(C(=C(C(=C2Cl)Cl)Cl)Cl)O3)Cl,false -CCOC(=O)C(C)=O,false -CCCCCCCCC,false -O=C1C=CC(=O)N1C2=CC=C(C=C2)CC3=CC=C(C=C3)N4C(=O)C=CC4=O,false -FC1=CC=C(C=C1)C2OC2C(=O)C3=CC=CC=C3,false -CCC1=CC=C(C=C1)C,false -C2CC1OC1CCC3OC23,false -CC1=CC(=CC=C1)Br,false -CCSC(=O)N1CCCCCC1,false -CN(C)CC1=CC=CC=C1,false -CC1=CC(=CC=C1)C,false -O(P(OC1=CC=CC=C1)OC2=CC=CC=C2)C3=CC=CC=C3,false -ClC=CCl,false -CSSC,false -N#CC=CC#N,false -CN3C(=O)C24CC1=CC=CC(O)C1N2C(=O)C3(CO)SS4,false -OC(=O)C=CC=CC(O)=O,false -C=CC(=O)N1CCN(CC1)C2=CC=CC=C2,false -COC1=CC=C(C=C1)C=O,false -ClC1=CC=C(C=C1)CSC2=CC=C(C=C2)Cl,false -ClC1C(Cl)C(Cl)C(Cl)C(Cl)C1Cl,false -CC1=C(SCCO1)C(=O)NC2=CC=CC=C2,false -CCOC(=O)C(SP(=S)(OC)OC)C1=CC=CC=C1,false -CCOP(=S)(OCC)OC1=NC(=NC(=C1)C)C(C)C,false -CN3C(C(=O)NC1=NC=CC=C1)C(=O)C2=C(C=CS2)S3(=O)=O,false -CCOP(=S)(OCC)SCSCC,false -CCCCOCCOCCO,false -COC1=CC=C(C=C1)CO,false -OC3=C2C(=C1C(=CC=CC1=CC2=CC=C3)O)O,false -CC1=C(C(=C(C(=C1C)[N+]([O-])=O)C(C)(C)C)[N+]([O-])=O)C,false -CCCCCC(=O)OCC,false -C[N]1C=CC=C1,false -OC(C#N)C1=CC=CC=C1,false -CC(O)C2C1SC(=C(N1C2=O)C(O)=O)C3CCCO3,false -CCC(C)(C)C1=CC=C(C=C1)O,false -OCC(O)C(O)C(O)C(O)CO,false -ClC1=CC=C(C=C1)C=O,false -FC1=C(C(=C(C(=C1F)F)Cl)F)F,false -[O-][N+](=O)C1=CC=C(C=C1)C2OC2C(=O)C3=CC=CC=C3,false -O=C(NC1=CC=CC=C1)NC2=CC=CC=C2,false -CC(C)(C)C2=CC(=CC=C1C=C(C(=O)C(=C1)C(C)(C)C)C(C)(C)C)C=C(C2=O)C(C)(C)C,false -CCC1(CC(O)=O)OCCC2=C1[NH]C3=C(C=CC=C23)C(C)O,false -O[N+]([O-])=C=CC1=CC=CO1,false -CC(C)C1CC=C(C)C2CC=C(C)CC12,false -[O-][N+](=O)C1=C(C=CC=C1)CBr,false -CC1(C)C2CCC(=C)C1C2,false -N#CC1=CC=CC=C1,false -OS(=O)(=O)C1=C(C=CC=C1)[N+]([O-])=O,false -CCCCC(CC)COC(=O)CCCCC(=O)OCC(CC)CCCC,false -CC(=O)NC1=CC=C(C=C1)CC(O)=O,false -CC4SC5=C(C(O)=O)C(=O)C1=C(C=C(C(=C1)F)N2CCN(CC2)CC3=C(C)OC(=O)O3)N45,false -CCCCCCCCOC1=CC=C(C=C1)C(O)=O,false -CN(C)C1=CC=C(C=C1)C(C2=CC=CC=C2)C3=CC=C(C=C3)N(C)C,false -N#CC(C#N)=C(C#N)C#N,false -CC1=CN=CC=C1,false -[O-][N+](=O)C2=C1C=CC=CC1=C(C3=CC=CC=C23)[N+]([O-])=O,false -CCOCCO,false -CN(C(C)=O)C1=CC=C(C=C1)N=NC2=CC=C(C=C2)N(C)C(C)=O,false -CC(C)CCCCCCCOC(=O)C(C)=C,false -CCC(C(C)O)=[N+](O)[O-],false -CCC34CCC1C(CCC2=CC(=O)CCC12)C3CCC4(O)C#C,false -OCC2=C1C=CC=CC1=NC=C2,false -OC2=CC1=CC=CN=C1C=C2,false -NC1=C(C=CC=C1)C(=O)OCC=C,false -NC1=NC=CC=C1,false -CCCC=O,false -CC(=O)CC(C)(C)NC(=O)C=C,false -CCOP(=S)(OCC)SCCl,false -ClC1=C(C(=CC=C1)C=O)Cl,false -CCCCCCCCCCCCCCCCCCCC,false -CC(=O)OCC=C(C)C=CC=C(C)C=CC1=C(C)CCCC1(C)C,false -CC(C)COC(=O)CCCCC(=O)OCC(C)C,false -OC(=O)C1=CC=C(C=C1)Cl,false -CC(C)(N)C1CCC(C)(N)CC1,false -CCCCCCCCCCCC(=O)OOC(=O)CCCCCCCCCCC,false -CC1=C(C=C(C(=C1)C)S(O)(=O)=O)N=NC3=C(C2=CC=CC=C2C(=C3)S(O)(=O)=O)O,false -COC2=CC=C1[NH]C=C(CCNC(C)=O)C1=C2,false -CC(C)NC1=NC(=NC(=N1)Cl)NC(C)C,false -CC(C)COC(=O)CC1=CC=CC=C1,false -CC(=C)C(=O)OC(C)(C)C,false -COC(C)(C)CC(C)=O,false -CC1=C(C=C(C(=N1)O)C#N)C2=CC=NC=C2,false -CCOP(=O)(OCC)OC(=CBr)C1=C(C=C(C=C1)Cl)Cl,false -COC1=CC=C(C=C1)CN(C)N=O,false -CCOP(=S)(OCC)SCSC(C)(C)C,false -FC1=C(C=CC=C1)C2=CC=CC=C2,false -ClC2=CC1=CC=CC=C1C=C2,false -OC(=O)C1CSCN1,false -OC1=NSC2=CC=CC=C12,false -NC1=C(C(=CC=C1)[N+]([O-])=O)CO,false -N#CC1=CC(=CC=C1)C#N,false -CCOC(=O)CNC(=O)CCCCSC2=C1N=C[NH]C1=NC=N2,false -CCOCCOC(=O)C=CC1=CC=C(C=C1)OC,false -CCCCCCCCCC=C,false -CC(=O)CC(C)(C)O,false -CCNC1=NC(=NC(=N1)N)Cl,false -CC(C)=CCCC(C)=CCO,false -CCCCC(CC)COC(=O)CCCCCCCCC(=O)OCC(CC)CCCC,false -CC1=CC=C(C=C1)CO,false -CCC(C)(C)OC,false -ClC1=C(C=CC=C1)Cl,false -CCOC1=C(C=CC=C1)N,false -OCC1=CC4=C3C(=C1)C2=CC=CC=C2C3=CC=C4,false -OCC1OC(CC1O)N2C=C(C=CBr)C(=O)NC2=O,false -CC(=O)OC1=CC2=C(C=C1)C(=CC(=O)O2)CBr,false -CCN(C(=O)N(CC)C1=CC=CC=C1)C2=CC=CC=C2,false -CC(=O)NC1=CC=CC=C1,false -CC1=CC(=CC=C1)OP(=O)(OC2=CC(=CC=C2)C)OC3=CC(=CC=C3)C,false -CCNC(=O)NC1=CC(=C(C=C1)OCC(O)CNC(C)(C)C)C(C)=O,false -OCC(COC(=O)C=C)(COC(=O)C=C)COC(=O)C=C,false -ClC1=CC(=C(C(=C1)Cl)Cl)Cl,false -CC(CCC(O)=O)C1CCC2C4C(CCC12C)C3(C)CCC(O)CC3CC4=O,false -CCCCCCOC(=O)C(C)=C,false -ClC1=CC=C(C=C1)N2C(=O)CCC2=O,false -NC1=C(C=CC=C1O)C(O)=O,false -CCCCOP(=O)(OCCCC)OCCCC,false -C[N+]1=CC=C(C=C1)C2=CC=CC=C2,false -CC(OC1=C(C=C(C=C1)Cl)Cl)C(O)=O,false -[O-][N+](=O)C1=CC=C(C=C1)COC2=CC=CC=C2,false -COC1=CC(=O)C=CC1=O,false -CN(C)CCCN,false -ON=CC1=CC=NC=C1,false -OC(=O)CC1=CC(=CC=C1)[N+]([O-])=O,false -CC1(C)C2CCC1(C)C(C)(O)C2,false -C1=CC=C(C=C1)N(C2=CC=CC=C2)C3=CC=CC=C3,false -CC(Br)(CCl)CBr,false -COC1=CC(=C(C=C1)O)C(C)(C)C,false -CCCCCNCCCCC,false -OC1C(=O)C(=O)C1=O,false -OCC1=CC=C(C=C1)C(F)(F)F,false -OC2=C(C1=CC=CC=C1C=C2)N=NC4=C(C3=CC=CC=C3C=C4)S(O)(=O)=O,false -CCOCC(O)=O,false -CCC3=C2C1=CC=CC=C1C=CC2=CC4=CC=CC=C34,false -CC(C)=C,false -OC1=C(C=CC=C1[N+]([O-])=O)[N+]([O-])=O,false -COC1=C(C2=C(C(=C1)OC)C(=O)C3(O2)C(C)CC(=O)C=C3OC)Cl,false -O[N+]([O-])=C,false -CCCCN(CC)CC,false -NC(CCC(=O)NC1=CC=C(C=C1)[N+]([O-])=O)C(O)=O,false -COP(=O)(OC)N1CCOCC1,false -CC1=C(C=C(C=C1O)[N+]([O-])=O)[N+]([O-])=O,false -[NH]1C=CC2=CC=CC=C12,false -CCCCOC(=O)C1=C(C=CC=C1)C(=O)OCC2=CC=CC=C2,false -FC(F)(F)C1=CC(=CC=C1)Cl,false -OC2=C1C(C5=C(OC1=CC=C2)C=C4OC3OC=CC3C4=C5O)=O,false -CC(C)CC(C)N,false -CC(O)CN1CC(C)OC1=O,false -CC1=CC(=C(C=C1)N)S(O)(=O)=O,false -CC1=CC=C(C=C1)NC(=O)CBr,false -[NH]1C=NC2=CC=CC=C12,false -CCCCCCC(=O)OCC,false -C1=CC3=C(N=C1)C2=NC=CC=C2C=C3,false -CC(=O)NC1=CC=C(C=C1)CC2=CC=C(C=C2)NC(C)=O,false -CC1=CC(=CC=C1)C#N,false -NN(C1=CC=CC=C1)C2=CC=CC=C2,false -CN(C)C1=CC=C(C=C1)C=CC(=O)C2=CC=CC=C2,false -C=CN1CCCC1=O,false -CC(C)CCCCCCCOP(=O)(OC1=CC=CC=C1)OC2=CC=CC=C2,false -CC1=CC=C(C=C1)C(C)(C)C,false -NC(=N)C1=CC=C(C=C1)C3=CC2=CC=C(C=C2[NH]3)C(N)=N,false -CCCCC(CC)COC(=O)C1=C(C=CC=C1)C(O)=O,false -CCN(CC)C(=O)NC1=CC(=C(C=C1)OCC(O)CNC(C)(C)C)C(C)=O,false -CCCCCCCCCCCC=C,false -S=C(NC1=CC=CC=C1)NC2=CC=CC=C2,false -CCOC4=C2C1=CC=CC=C1C=CC2=C3CCC(C3=C4)=O,false -CCCCCCCCCCCCCC=C,false -OC(=O)C1=C(C=CC=C1)C(O)=O,false -CC(=O)NC1=CC=C(C=C1)[N+]([O-])=O,false -CN(C)[P+](O[N]1N=NC2=CC=CC=C12)(N(C)C)N(C)C,false -CC(=C)C#N,false -CCSCCC(N)C(O)=O,false -CN(C)NC(=O)CCC(O)=O,false -CSC(C)(C)C=NO,false -CNC(=O)C1=CC(=CC=C1)NCC(=O)NCCC2=CC(=C(C=C2)OC)OC,false -OC(=O)C1=CC=CO1,false -ClC1=C(Cl)C(=O)C(=C(C#N)C1=O)C#N,false -CC1=C(C=CC=C1)C#N,false -CN(C)C(=S)N(C)C,false -ClC1=CC(=O)C=CC1=O,false -CCCCCCCCCC1=CC=C(C=C1)O,false -CC([N]1C=CN=C1)=C(OCCOC2=CC=C(C=C2)Cl)C3=C(C=C(C=C3)Cl)Cl,false -CC1=NC(=C(N=C1)C)C,false -ONC1=CC=C(C=C1)Cl,false -CC(CNC(=O)C1=CN=CC=C1)NC(=O)C2=CN=CC=C2,false -CCOC(=O)CCl,false -OC1=C(C=CC(=C1)Cl)Cl,false -CC(C=CC(O)C1CC1)C2CCC3C(CCCC23C)=CC=C4CC(O)CC(O)C4=C,false -CC1=C(N=CC=N1)C,false -CCOC(=O)C1C(C=C(C)C)C1(C)C,false -OC3N=C(C1=CC=CC=C1)C2=C(C=CC(=C2)Cl)NC3=O,false -NCCS(O)(=O)=O,false -CN1CCN(CC1)C3=CC=C2[NH]C(=NC2=C3)C5=CC=C4[NH]C(=NC4=C5)C6=CC=C(C=C6)O,false -CC(CO)=[N+](O)[O-],false -CC(C)NCC(O)COC3=C2C1=CC=CC=C1[NH]C2=CC=C3,false -OCCOC(=O)C=C,false -CC(C)(C)N(CCO)CCO,false -C1CN=C(N1)C2=CC=C(C=C2)C4=CC3=CC=C(C=C3[NH]4)C5=NCCN5,false -CCCCO,false -CC1=C(C(=CC=C1)C)NC(=O)CN2CCCC2=O,false -CCCCCOC1=CC(=CC=C1)NC(=O)OC2CCCCC2N3CCCC3,false -CC(=O)NC1=CC(=CC=C1)C,false -OC1=N[NH]C2=CC=CC=C12,false -CCN(CC)C1=CC2=C(C=C1)C(=CC(O2)=O)C(F)(F)F,false -CSCCC(NC=O)C(=O)NC(CC1=CC=CC=C1)C(O)=O,false -CN(C)C1=CC=C(C=C1)C4CC2(C)C(CCC2(O)CCCO)C5CC=C3CC(=O)CCC3=C45,false -[O-][N+](=O)C1=CC=C(C=C1)NC2=CC=C(C=C2)N=C=S,false -CC1=CC(=C(C(=C1)CC2=C(C(=CC(=C2)C)C(C)(C)C)O)O)C(C)(C)C,false -CC1SCC(NC1=O)C(=O)NC(CC2=C[NH]C=N2)C(=O)N3CCCC3C(N)=O,false -CC(=O)NC1=CC=C(C=C1)OC2=CC=C(C=C2)NC(C)=O,false -CON(C)C(=O)NC1=CC=C(C=C1)Br,false -CC(=O)OC1=C(C=CC=C1)C(=O)OC2=C(C=CC=C2)C(O)=O,false -CC1=CC(=C(C=C1)OP(=O)(OC2=C(C=C(C=C2)C)C)OC3=C(C=C(C=C3)C)C)C,false -NC(=O)CN1CC(O)CC1=O,false -CC(N)=S,false -CCC1=NC=CN=C1,false -CC(C)(S)C(=O)NC(CS)C(O)=O,false -NN(CC1=CC=CC=C1)CC2=CC=CC=C2,false -OC(=O)C(=O)NC1=CC(=CC=C1)C2=N[NH]N=N2,false -OCCN1C(=O)N(CCO)C(=O)N(CCO)C1=O,false -CC(=C)C1CCC(=CC1)C,false -[O-][N+](=O)C1=C(C(=C(C(=C1Cl)Cl)Cl)Cl)Cl,false -ClC1=CC(=CC=C1)C=O,false -NC1=CC(=CC=C1)S(O)(=O)=O,false -C1=CC=C(C=C1)C=CC2=CC=CC=C2,false -O=C1OC(=O)C2=C1C=CC=C2,false -COC(=O)C1=C(C=CC=C1)N,false -OC(=O)C1CSCN1C(=O)C2CCC(=O)N2,false -CNC(=O)N(C)C2=NC1=CC=CC=C1S2,false -CCCCOC(=O)C1=C(C=CC=C1)C(=O)OC2CCCCC2,false -COCCO,false -CCCCCCCCCCCCC1CO1,false -CNC(=O)NC,false -COC1=CC=C(C=C1)NC2=CC=C(C=C2)OC,false -[O-][N+](=O)C3=C2C=CC1=CC=CC=C1C2=CC4=CC=CC=C34,false -CCCCOCC(O)=O,false -NC1=C(C=CC=C1)Cl,false -CN1CCNCC1,false -COC(=O)CC(C)=O,false -FC(F)(F)C(Cl)Br,false -CCC(C)(C)C,false -O=C(C=CC1=CC=CC=C1)C2=CC=C(C=C2)C3=CC=CC=C3,false -CC(C)OC(C)=O,false -CC3(C)C(C(=O)OC(C#N)C1=CC(=CC=C1)OC2=CC=CC=C2)C3(C)C,false -CC(=O)C1=C2C(=CC(=C1)C(C)(C)C)C(CC2)(C)C,false -NC2=C(C1=C(C=C(C=C1C=C2)S(O)(=O)=O)O)N=NC3=C(C=C(C=C3)[N+]([O-])=O)S(O)(=O)=O,false -C1=NC=CN=C1,false -[O-][N+](=O)C1=CC(=CC=C1)C(F)(F)F,false -COC5=C1OC2C(C=CC3C4CC(=C1C23CCN4C)C=C5)O,false -CC1=CC=CS1,false -CC2CCC1C(OC(=O)C1=C)C3(C)C(=O)CC=C23,false -OC1=C(C=CC=C1)[N+]([O-])=O,false -NC1=CC(=C(C(=C1)Cl)Cl)Cl,false -N(C1=CC=CC=C1)C3=C2C=CC=CC2=CC=C3,false -OC1=C(C=C(C=C1)C2=CC=CC=C2)[N+]([O-])=O,false -NC(=O)NNC(N)=O,false -[O-][N+](=O)C1=C(C=CC(=C1)C(F)(F)F)Cl,false -CCN(CC)C1=CC=C(C=C1)N=NC2=CC=CC=C2,false -ON=C,false -OC2=C1C=CC=CC1=NC=C2,false -NCCN1CCNCC1,false -O=C2C1=C(C=CC=C1)C3=C2C=CC=C3,false -CC(C)(COC(=O)C=C)COC(=O)C=C,false -CC(C)(Br)C(=O)NC1=CC=CC=C1,false -CC(C)(OC1=CC=C(C=C1)C2CCCC3=C2C=CC=C3)C(O)=O,false -CC(C)C1CCC(C)CC1OC(=O)C2=C(C=CC=C2)N,false -OC1=C(C=C(C=C1Br)Br)C(=O)NC2=CC=C(C=C2)Br,false -C1=CC=C(C=C1)P(C2=CC=CC=C2)C3=CC=CC=C3,false -COC(=O)NC2=NC1=CC(=CC=C1[NH]2)SC3=CC=CC=C3,false -O=NN(C1=CC=CC=C1)C2=CC=CC=C2,false -O=C2NC1=C(CCC1)C(=O)N2C3CCCCC3,false -NC1=C(C=CC=C1)C(=O)OCC=CC2=CC=CC=C2,false -C1CSCCO1,false -O=C(C=CC1=CC=CC=C1)C2=CC=CC=C2,false -CC1=CC2=C(C(=C1)O)C(=O)C=C(C2=O)C3=C(C4=C(C=C3C)C(=O)C=CC4=O)O,false -CC1=NN(C(=O)C1)C2=CC=CC=C2,false -NC1=CC(=CC=C1)C(F)(F)F,false -NC(=O)C1=CC=[N+](C=C1)COC[N+]2=C(C=CC=C2)C=NO,false -NCC=C,false -COP(=S)(OC)OC1=C(C=C(C(=N1)Cl)Cl)Cl,false -CC1OCCC2=C1C=C3C(=C2)C(C(C3(C)C)C)(C)C,false -NC1=CC(=C(C=C1)N)S(O)(=O)=O,false -CCC1=C(C=CC=C1)O,false -CCCCCC(=O)OCC=C,false -CC1=C(C=C(C=C1)N=[N+]([O-])C2=CC(=C(C=C2)C)[N+]([O-])=O)[N+]([O-])=O,false -NN2C(=O)C1=C(C=CC=C1)C2=O,false -CC(=O)C1=NC=CC=C1,false -COC4=C1C(C5=C(OC1=C3C2CCOC2OC3=C4)C=CC=C5O)=O,false -CCOCN(C(=O)CCl)C1=C(C=CC=C1C)CC,false -CC(N)=O,false -OC(=O)COC1=CC=C(C=C1)Cl,false -NC1=CC(=C(C=C1)Cl)Cl,false -ClC1=CN=CC=C1,false -O=C1CNC(=O)N1,false -CCCC(O)C(CC)CO,false -CC(=O)C1=C(C=CC(=C1)N)OCC(O)CNC(C)(C)C,false -OC1(CCCCC1)C#N,false -O=C(C1=CC=CC=C1)C(=O)C2=CC=CC=C2,false -C=CC(=O)OCCOCCOCCOCCOC(=O)C=C,false -CC(C)C=O,false -[O-][N+](=O)C1=C(C=CC=C1)C2=CC=CC=C2,false -CS(=O)C1=CC=C(C=C1)Cl,false -OCC1OC(CC1O)N2CC(=O)C(=N)NC2=O,false -OC(=O)C(Cl)(Cl)Cl,false -CCC1=C(C=CC=C1)[N+]([O-])=O,false -NC(=N)NC(N)=NCCC1=CC=CC=C1,false -CC1=CC(C)(C)NC2=C1C=CC=C2,false -COP(=S)(OC)SCC(=O)NCC=O,false -CC(C)OC(=O)COC1=C(C=C(C=C1)Cl)Cl,false -CC(C)[N]2C1=CC=CC=C1C(=C2C=CC(O)CC(O)CC(O)=O)C3=CC=C(C=C3)F,false -CCOC(C)(C)C,false -CCCCCCCCCCCCC=C,false -CCCCCCCCCC,false -C1COCCOCCOCCOCCO1,false -CC2=NC1=C(C=CC=C1)C2(C)C,false -CCCCCCCCCC(O)=O,false -CCC=O,false -CCCCCCCCCC=CCC1CC(=O)OC1=O,false -COC3=C(C=C2C1C(C5=C(OC1COC2=C3)C4=C(OC(C4)C(C)=C)C=C5)=O)OC,false -COC1=CC(=O)C(=O)C(=C1)C(C)(C)C,false -CC(=O)OCC(=O)NCCCOC1=CC(=CC=C1)CN2CCCCC2,false -CC1=C(C=CC=C1)Br,false -C[N+]1([O-])CCCC1C2=CN=CC=C2,false -CC(C)NC(=O)NS(=O)(=O)C1=C(C=CN=C1)NC2=CC(=CC=C2)C,false -CCNC3=C(C=C2C(=C1C=C(C(C=C1OC2=C3)=NCC)C)C4=C(C=CC=C4)C(=O)OCC)C,false -O=C4C2=CC=C1N=C(SC1=C2C(=O)C5=CC=C3N=C(SC3=C45)C6=CC=CC=C6)C7=CC=CC=C7,false -CC5=C2C1=CC=CC=C1C=CC2=C4C3OC3C(C(C4=C5)O)O,false -CC(C)CC1NC(=O)CNC1=O,false -OC2=CC1=CC=CC=C1N=C2,false -CCOC(=O)C(CCC1=CC=CC=C1)NC(C)C(=O)N(CC(O)=O)C3CC2=C(C=CC=C2)C3,false -CCCCN(CCO)CCCC,false -ClNC1=NC(=NC(=N1)NCl)NCl,false -CC1CN(CCN1)C3=C(C(=C2C(C(=CN(C2=C3)C4CC4)C(O)=O)=O)C)F,false -OCC(O)CO,false -CNC(=O)C1=CC=CC=C1,false -CCC1=C(C=CC=C1)N,false -OC(=O)C1=CC2=C(C=C1)C(=O)OC2=O,false -CC(C)CC(C)NC1=CC=C(C=C1)NC2=CC=CC=C2,false -O=C3OC2=C(C=C1C=COC1=C2)C=C3,false -NC1=C(C=CC(=C1)Cl)Cl,false -CCCCOC(=O)C=CC(=O)OCCCC,false -CNNC,false -O=C1C=CC(=O)C(=C1)C2=CC=CC=C2,false -CC(N)CN,false -CCOC2=C1N=CC=CC1=CC=C2,false -CC1=C(C=CC=C1)C3=NC2=CC=CC=C2O3,false -NC(N)=S,false -BrCC1=CC=C(C=C1)CBr,false -OC(=O)C(=O)C(O)=O,false -OC(=O)C1=CC3=C(C(=C1)O)C(=O)C2=C(C=C(C=C2O)O)C3=O,false -ClCC1=CC=NC=C1,false -CC(N(C)C)C1=CC=CC=C1,false -CC2COC1=C(C(=CC3=C1N2C=C(C(O)=O)C3=O)F)C4(N)CC4,false -[O-][N+](=O)C1=CC=C(C=C1)NC2=CC=CC=C2,false -O=C(OOC(=O)C1=CC=CC=C1)C2=CC=CC=C2,false -CCC2=C1[NH]C3=C(C1=CC=C2)CCOC3(C)CC,false -COC2=CC1=CC=C(C=C1C=C2)C(C)C(O)=O,false -CN1C(CCC1=O)C2=CN=CC=C2,false -CCCCCC=CC=CC=O,false -COC1=C(C=CC(=C1)C3OC2=C(C(=CC(=C2)O)O)C(=O)C3=O)O,false -COC(C)(C)C,false -O=C2CCC1=C(C=CC=C1)O2,false -CC=CC=CC(O)=O,false -CCN(CC)S(=O)(=O)C1=CC=C(C=C1)N,false -OCNC(=O)C=C,false -CC(C)=CCCC(C)=CC=O,false -CC2=NC1=CC=CC=C1N=C2,false -CC(O)CCC(=O)C1=COC=C1,false -CN(C)C(C)=O,false -CN1CCOCC1,false -CC(=C)OC(C)=O,false -CCOC(=O)CC(C)=O,false -OS(=O)(=O)C1=CC(=CC=C1)[N+]([O-])=O,false -CSC(C)(C)C(=O)NC(CS)C(O)=O,false -ClC1=NC(=NC(=N1)Cl)NC2=C(C=CC=C2)Cl,false -CC1COC3=C2N1C=C(C(C2=CC(=C3N4CCN(C)CC4)F)=O)C(O)=O,false -COC(=O)C(=CC1=CC=CO1)C#N,false -CC(=C)C=C,false -C1=CC=CC=C1,false -CCCCC(CC)COCCCN,false -[O-][N+](=O)C1=CC(=CC=C1)CBr,false -CN(C)C=NC1=C(C=C(C=C1)Cl)C,false -COC(=O)C1=C(C)NC(=C(C1C2=C(C=CC=C2)[N+]([O-])=O)C(=O)OCC(C)=O)C,false -NCC1CCC(CC1)C(=O)C2=CC=C(C=C2)CCC(O)=O,false -CCOC(=O)C1OC1C(=O)NC(CC(C)C)C(=O)NCCC(C)C,false -CC1=CC(=O)OC2=C1C(=CC(=C2)O)O,false -CN(C)C1=CC=C(C=C1)N=NC2=C(C=CC=C2)C,false -CC(=O)NC1=CC=C(C=C1)OC(=O)C2=C(C=CC=C2)OC(C)=O,false -C1CCC2(CC1)CO2,false -NC(=S)NCC=C,false -CC(CCC(O)=O)C3CCC4C2CCC1CC(O)CCC1(C)C2CC(O)C34C,false -CC(=O)NC1=CC=C(C=C1)S(=O)(=O)NC2=NC=CC=C2,false -CCCCCC(C)(O)C=CC1C(O)CC(=O)C1CC=CCCCC(O)=O,false -CC(=C)C1=CC=CC=C1,false -O=CC=CC1=CC=CO1,false -CCCCCCCCCCCCCCCCCC(O)=O,false -CCCCCCCCCCCCCCCCN,false -CCNC1=NC(=NC(=N1)Cl)NCC,false -COP(=S)(OC)OC,false -ClC1=C(C(=C(C(=C1)Cl)Cl)Cl)Cl,false -CCCC=[N+](O)[O-],false -CNC1=CC=CC=C1,false -OC(=O)C=C,false -CCCCCCCCCCCCCCCCCCN,false -COC1=CC2=C(C=C1)C(=CC(=O)O2)CBr,false -CCC#N,false -CC=C1CC2CC1C=C2,false -CC(C)C(C)C,false -COCC(O)=O,false -CNC(=O)NC1=CC=CC=C1,false -O2C1=C(C=CC=C1)SC3=C2C=CC=C3,false -C=CC(=O)OCCOC(=O)C=C,false -CC1=CC=C(C=C1)S(=O)(=O)NC2CCCCC2,false -CCC(C)NC1=CC=C(C=C1)NC(C)CC,false -CC(C)OC(=O)C(C)(C)OC1=CC=C(C=C1)C(=O)C2=CC=C(C=C2)Cl,false -OC1=CC(=C(C=C1)Cl)Cl,false -CCNC2=C(C=C1C(=CC(OC1=C2)=O)C)C,false -CCOP(=O)(OCC)OC(=CCl)C1=C(C=C(C=C1)Cl)Cl,false -OC1=NC(=NC(=N1)Cl)Cl,false -COC1=CC=C(C=C1)C(=O)C=CC2=CC=CC=C2,false -COC1=C(C=C(C(=C1)S(O)(=O)=O)C)N=NC3=C2C=CC(=CC2=CC=C3O)S(O)(=O)=O,false -CC(=O)CC(=O)NC1=CC=C(C=C1)C,false -CCCCNCC,false -NS(=O)(=O)C1=C(C=C(C(=C1)C(O)=O)NCC2=CC=CO2)Cl,false -CC(C)NCC(O)COC1=CC=C(C=C1)NC(C)=O,false -CC(F)(F)F,false -CCCCCCCCC=O,false -C1=CC=C(C=C1)C2=CC=CC=C2,false -FC(F)(F)C1=C(C=CC=C1)Cl,false -CC(C)CC(=O)CC(C)C,false -CCCCCC(C=O)=CC1=CC=CC=C1,false -CN(C)CC(O)=O,false -CCOC(=O)CC(=O)CCl,false -OC(=O)COC1=CC=CC=C1,false -BrC1=CC(=CC=C1)C2=CC=CC=C2,false -CC1=C(C=CC=C1)C,false -CCC1=C4C(=C(C2=CC=CC=C12)C)C3=CC=CC=C3C=C4,false -CC(C)CCCCCCOC(=O)CCCCC(=O)OCCCCCCC(C)C,false -OC1=C(C=CC=C1)O,false -NC1=C(C=CC=C1)C(=O)OC2CCCCC2,false -C1CCNC1,false -CCCCN(CCCC)CCCC,false -CC(C)C2=C(C)N(C)N(C1=CC=CC=C1)C2=O,false -C(SCC1=CC=CC=C1)C2=CC=CC=C2,false -COC(=O)C1=CC=CO1,false -OC1=C(C=C(C=C1I)C#N)[N+]([O-])=O,false -COC1=C(C=C(C=C1)C=O)OC,false -O=C2C(=O)C1=C(C=CC=C1)C3=C2C=CC=C3,false -CCO,false -CC(=O)N=C1C=CC(=O)C=C1,false -CC(C)(C)OOC(C)(C)C1=CC(=CC=C1)C(C)(C)OOC(C)(C)C,false -CSC1=CC=C(C=C1)Cl,false -O=C2C1=C(C=CC=C1)C6=C4C2=CC=C5C3=CC=CC=C3C(C(=C45)C=C6)=O,false -OC1=CC=C(C=C1)C2(OC(=O)C3=C2C=CC=C3)C4=CC=C(C=C4)O,false -ClCC1=CC=C(C=C1)CCl,false -S=C1SSC2=NCCN12,false -CC(O)C(C)O,false -NCCO,false -CCNC1=NC(=NC(=N1)Cl)NC(C)C,false -OC(=O)CCC(=O)NC1=CC=C(C=C1)Cl,false -OCC1NC(CC2=C1[NH]C3=CC=CC=C23)C(O)=O,false -COC(=O)C=C,false -CC(C)NC1=CC=C(C=C1)NC2=CC=CC=C2,false -CCCC(=O)OCCC(C)C,false -COC(=O)C1=C(C)NC(=C(C1C2=CC(=CC=C2)[N+]([O-])=O)C(=O)OCC=CC3=CC=CC=C3)C,false -CCN=[N+]([O-])CC,false -CNC(=O)OC2=C1OC(CC1=CC=C2)(C)C,false -CN(C)C1=CC=NC=C1,false -CCCCCCCCCCCC(=O)NCCO,false -CC(=C)C(O)=O,false -CC1=CC(=CC(=C1)C)N=NC3=C2C=CC=CC2=CC=C3O,false -CCCCCCCC1CCC(=O)O1,false -NC1=CC(=C(C=C1)O)C(O)=O,false -CCOP(=O)(C#N)N(C)C,false -CC(C)(C)C1=C(C(=CC(=C1)C=CC2=CC(=C(C(=C2)C(C)(C)C)O)C(C)(C)C)C(C)(C)C)O,false -NC1=C(C=C(C=C1Cl)Cl)Cl,false -OC(=O)CS,false -CC(C)COC(=O)C=C,false -CC1(C)CC(N)CC(C)(CN)C1,false -CC1=C(C=C(C=C1)NO)[N+]([O-])=O,false -ClC(Cl)=C(Cl)C1=C(C(=C(C(=C1Cl)Cl)Cl)Cl)Cl,false -CNC(=O)OC1=CC=CC=C1,false -NC1=CC=C(C=C1)C=CC(O)=O,false -OC2(O)C(=O)C1=C(C=CC=C1)C2=O,false -CC1=N[N](C(=C1)C)C2=C4C(=C(N=N2)NN)C3=CC=CC=C3[NH]4,false -NC1=NC(=NC(=N1)N)N,false -CC1=C(C(=C(C=C1)C)C)C,false -CC1=C(C(=C(C(=C1C)N)C)C)N,false -CC(C)COC(=O)C1=C(C=CC=C1)N,false -CCOC1=C(C=CC=C1)OCC2CNCCO2,false -CC1=CC=C(C=C1)NC(N)=O,false -OC(=O)CCl,false -OC(=O)C1CSC(N1C(=O)CCS)C2=C(C=CC=C2)O,false -CC2=NC1=CC=CC=C1S2,false -[O-][N+](=O)C1=CC=C(C=C1)S(=O)(=O)NC2=NC=CC=C2,false -CC1(C)CCCC(C)(C)N1O,false -CCCCCCCCCCC=CC1CC(=O)OC1=O,false -CCOP(=O)(OCC)OC1=C(C=C(C(=N1)Cl)Cl)Cl,false -CC(O)C(O)=O,false -NCCCCC(NC(CCC1=CC=CC=C1)C(O)=O)C(=O)N2CCCC2C(O)=O,false -NC1=CC(=C(C=C1)C=CC2=C(C=C(C=C2)N)S(O)(=O)=O)S(O)(=O)=O,false -C1CN(CCO1)SC3=NC2=CC=CC=C2S3,false -CCCCOCCOC(=O)COC1=C(C=C(C=C1)Cl)Cl,false -CCOC(=O)C(CCC1=CC=CC=C1)NC(C)C(=O)N3C2CCCCC2CC3C(O)=O,false -OC1=C(C=CC=C1)C=O,false -ClC1=CN=C(C=C1)Cl,false -CCC(=O)NC1=CC(=C(C=C1)Cl)Cl,false -N#CCCNCCC#N,false -COC(=O)C(C)(C)OC1=CC=C(C=C1)C2=CC=C(C=C2)Cl,false -CCCNCCC,false -CCCCCCC(CC=CCCCCCCCC(=O)OC)OC(C)=O,false -[O-][N+](=O)C1=C(C(=CC(=C1)C(F)(F)F)[N+]([O-])=O)Cl,false -CCOC(=O)CC(SP(=O)(OC)SC)C(=O)OCC,false -OCC3OC1C(OC2=NC(=N)C=CN12)C3O,false -OC(C(COC(=O)CCC(O)=O)NC(=O)C(Cl)Cl)C1=CC=C(C=C1)[N+]([O-])=O,false -CC(C)(C)C(=O)C2C(=O)C1=C(C=CC=C1)C2=O,false -CC(=O)NS(=O)(=O)C1=CC=C(C=C1)N,false -CC(=C)C(=O)OCCOC(=O)NNC(=O)OCCOC(=O)C(C)=C,false -FC1=CC=C(C=C1)C(=O)CCCN2CCN(CC2)C3=NC=CC=C3,false -CNCCS(O)(=O)=O,false -[O-][N+](=O)C1=C(C=CC=C1)C#N,false -CC=C(C)C#N,false -OC(=O)C1=C(C=CC(=C1)N=NC2=CC=C(C=C2)S(=O)(=O)NC3=NC=CC=C3)O,false -CCCCCCCCC1OC1CCCCCCCC(=O)OCC(CC)CCCC,false -O=C(C1=CC=CC=C1)C2=CC=CC=C2,false -BrCCCBr,false -CC(=O)OC(C)(C)C3CC2=C(C=C1OC(C(=CC1=C2)C(C)(C)C=C)=O)O3,false -OC1=C5C(=CC=C1)C4=CC3=C2C=CC=CC2=CC=C3N=C4C=C5,false -CN3CCC14C5OC2=C1C(=CC=C2O)CC3C4C=CC5O,false -NC1=C(C=CC=C1)C(F)(F)F,false -CN(C)CCN(CC1=CC=C(S1)Cl)C2=NC=CC=C2,false -C2COCCOC1=C(C=CC=C1)OCCOCCO2,false -CC1CS1,false -CC(CCC(O)=O)C3CCC4C2CCC1CC(O)CCC1(C)C2CC(=O)C34C,false -OC1=C(C=C(C(=C1)Cl)O)Cl,false -OCC(CO)NC1CC(O)(CO)C(O)C(O)C1O,false -CC(=O)NC1=CC=C(C=C1)S(N)(=O)=O,false -CCCCCCCCC1=CC=C(C=C1)NC2=CC=C(C=C2)CCCCCCCC,false -CCOC(=O)C(=C)C#N,false -CC1=CC(=O)C=CC1=O,false -CC34CCC1C(CCC2=C1C=CC(=C2)O)C35CCC4(O)C(O)C5,false -OC3C(O)C1=C(C=CC2=CC=CC=C12)C4=C3C=CC=C4,false -CC(=C)C(=O)OCCCCOC(=O)C(C)=C,false -OC(=O)C1=CC(=CC=C1)Cl,false -OC(=O)C(Cl)CCl,false -CNS(=O)(=O)C1=CC=C(C=C1)N,false -CC(C)NC(C)C,false -OC1=C(C(=C(C(=C1)Cl)Cl)Cl)Cl,false -BrCC#N,false -OCNC(=O)CCl,false -CCCCCCCCC=CCCCCCCCC(O)=O,false -CC1=C(C=C(C(=C1)N)S(O)(=O)=O)Cl,false -OC1=CC=C(C=C1)[N+]([O-])=O,false -NC(=O)NCC(O)=O,false -CN1CCN(C)CC1,false -CN(C)N=NC1=CC=C(C=C1)C(O)=O,false -CC(OC1=C(C=C(C=C1)Cl)C)C(O)=O,false -ClC2=C(N=C1C=CC=CC1=N2)Cl,false -CN(C)CCN(C)C,false -OC=O,false -CCCCCCOC(=O)C=C,false -COC1=C(OC)C(=O)C(=CC1=O)C,false -COC(=O)C1=C(C2=C(C(=C1)OC)OCO2)C3=C(C=C(C4=C3OCO4)OC)C(=O)OC,false -C1CC3=C2C1=CC=CC2=CC=C3,false -OC(=O)C=CC1=CN=C[NH]1,false -N(C1=CC=CC=C1)C3=CC2=CC=CC=C2C=C3,false -CC(C)CC1=CC=C(C=C1)C(C)C(O)=O,false -COC(=O)NC2=NC1=CC(=CC=C1[NH]2)C(=O)C3=CC=C(C=C3)F,false -OC(=O)C1=C(C=CC=C1)NC2=CC(=CC=C2)C(F)(F)F,false -ClC1=CC=C(C=C1)C(=C(Cl)Cl)C2=CC=C(C=C2)Cl,false -CC(C)N,false -OCC1CCCO1,false -CC(O)C(C)=O,false -CC2C(C)(C)C1=C(C(=O)CCC1)C2(C)C,false -CC2C(C)(C)C1=C(C=C(C(=C1)C)C(C)=O)C2(C)C,false -CCCCCC,false -CCCSSCC=C,false -C[N]2C(=NC3=NC1=CC=NC=C1C=C23)N,false -NC1=CC=C(C=C1)S(N)(=O)=O,false -NC1=C(C(=CC(=C1)Cl)S(O)(=O)=O)O,false -ClC1=CC=CC=C1,false -COC(=O)C1=CC=CC=C1,false -CC4=C2C1=CC=CC=C1C=CC2=C3CCCC3=C4,false -CCNCC,false -CCC(C1=CC=C(C=C1)O)=C(CC)C2=CC=C(C=C2)O,false -CC(=O)NC1=CC=C(C=C1)S(=O)(=O)C2=CC=C(C=C2)NC(C)=O,false -COC(=O)CCl,false -CC(=C)C(C)=O,false -CC(C)OC1=CC=C(C=C1)NC2=CC=CC=C2,false -CC1=CC(=O)C(=CC1=O)C,false -O=C3N2CC1=C(C=CC=C1)C(=O)N2CC4=C3C=CC=C4,false -CCCCCCCCOC(=O)C(C)=C,false -CC(C)OC(=O)CCl,false -CC(C)(O)C#N,false -CC1=C(C=CC(=C1)Cl)OCC(O)=O,false -CC(C)NCC(O)COC2=C1OCC(CC1=CC=C2)O,false -[O-][N+](=O)C1=CC=C(C=C1)CNC3=C2[NH]C=NC2=NC=N3,false -CC(=O)OC(C)=O,false -CC(C)(C)CBr,false -OC(=O)COC1=C(C=C(C=C1)Cl)Cl,false -NC1=C(N=CC(=C1)C2=CC=NC=C2)O,false -CC1=CC(=C(C(=C1)C(C)(C)C)O)C(C)(C)C,false -BrCC1=C(C=CC=C1)CBr,false -CC(C)OP(C)(F)=O,false -O=C1C(=O)C4=C3C2=C1C=CC=C2C=CC3=CC=C4,false -CC(C)(C)CC(C)(S)CC(C)(C)C,false -C=CCOC(=O)C1=C(C=CC=C1)C(=O)OCC=C,false -OC1=CC2=C(C(=C1)O)C(=O)C=C(O2)C3=CC(=C(C=C3)O)O,false -OCC1OC(CC1O)[N]2C=NC3=C2N=C[N]4C=CN=C34,false -CN(C)P(=O)(N(C)C)N(C)C,false -CC(=O)NC2=CC1=CC=CC=C1N=C2,false -CC(O)C1=CC=CC=C1,false -[O-][N+](=O)C1=CC=C(C=C1)C#N,false -NCCNCCN,false -CC(CC(O)=O)C(O)=O,false -CCCCCCCCCCCCOCC1CO1,false -OCC1=CC=CO1,false -CCC=CCCC=CC=O,false -CN1CCC(=CC1)C2=CC=CC=C2,false -ClCC#N,false -OC(=O)C(F)(F)C(F)(Cl)C(F)(F)C(F)(Cl)C(F)(F)C(F)(Cl)C(F)(F)Cl,false -COCCCN,false -N2C1=C(C=CC=C1)SC3=C2C=CC=C3,false -CC3(C)SC2C(NC(=O)C(N)C1=CC=CC=C1)C(=O)N2C3C(O)=O,false -CC(C)(C)[N+]([O-])=O,false -CC(C)C(O)CCC(C)C1CCC2C(CCCC12C)=CC=C3CC(O)CC(O)C3=C,false -OC(=O)CC1=C(C=CC=C1)Cl,false -OC2=CC1=CC=C(C=C1C=C2)SSC4=CC3=CC=C(C=C3C=C4)O,false -CC(=O)OCC1=CC2=C(C=C1)OCO2,false -CN(C)C#N,false -CCCCC(CC)COC(=O)C1=CC=C(C=C1)C(=O)OCC(CC)CCCC,false -O=C1CCC(=O)O1,false -COC(=O)C1=CC=C(C=C1)C=O,false -CC(=O)C=CC1=CC2=C(C=C1)OCO2,false -COC1=CC(=CC=C1)[N+]([O-])=O,false -OCC1OC(C(O)C1O)[N]4C=NC5=C(NCC(O)COC3=C2C=CC=CC2=CC=C3)N=CN=C45,false -C1=CC=C(C=C1)C(C2=CC=CC=C2)C3=CC=CC=C3,false -CC1=CCC(CC1)C(C)(C)O,false -COC1=C(C=C(C=C1)C(=O)N2CCN(CC2)C3=CC4=C(C=C3)NC(=O)CC4)OC,false -NC(=N)C1=CC=C(C=C1)OCCCCCOC2=CC=C(C=C2)C(N)=N,false -OCC1=C(C=CC=C1)[N+]([O-])=O,false -CC(=O)NC3=C(C=C2C1=CC=CC=C1CC2=C3)O,false -CC(=O)C1=C(C=CC(=C1)NC(=O)NC(C)(C)C)OCC(O)CNC(C)(C)C,false -BrCC(=O)NC1=CC=CC=C1,false -C2CC=CCCC1OC1CCC=C2,false -CC(=O)NC1=CC(=CC=C1)O,false -C=CCNCC=C,false -C[N]1C=NC2=C1C(N(C(N2C)=O)C)=O,false -ClC1=C(C=C(C=C1)C=O)Cl,false -CC(C)NCC(O)COC2=C1OCC(CC1=CC=C2)O[N+]([O-])=O,false -CC=NN(C)C=O,false -CC2=C(C=C1C=CC=CC1=C2)[N+]([O-])=O,false -CC(C)(C)C1=C(C(=CC(=C1)CC2=CC(=C(C(=C2)C(C)(C)C)O)C(C)(C)C)C(C)(C)C)O,false -C1CN(CCN1)C2=CC=CC=C2,false -FC1=NC(=CC=C1)F,false -CCCCCCCCCCCCCCC1CO1,false -ClC1=CC(=C(C=C1)Cl)Cl,false -C1CNCCN1,false -CC=C1CC(C)C(O)(CO)C(=O)OCC2=CC[N+]3([O-])CCC(OC1=O)C23,false -CC1=C(C=CC=C1)Cl,false -CCC1=C4C(=C(C2=CC=CC=C12)CC)C3=CC=CC=C3C=C4,false -CCSCCOP(=S)(OC)OC,false -CCOC(=O)C(Cl)C(C)=O,false -CC2=C1C=CC=CC1=C3C(=C2)C4=C(C=C3)C(O)C(O)C5OC45,false -NC1=CC=C(C=C1)Br,false -C1COCCOCCOCCO1,false -O=C1CCCCCN1,false -[O-][N+](=O)C1=C(C(=C(C(=C1)Cl)Cl)Cl)Cl,false -OCC1OC(C(O)C1O)N2CC(=O)C(=N)NC2=O,false -OCCCC1=CC=CC=C1,false -CC1=NC(=NC(=C1)C)SC(=O)OC(C)(C)C,false -OC(=O)C=CC1=CC=CC=C1,false -CCOP(=O)(OCC)OC1=NOC(=C1)C2=CC=CC=C2,false -CC(O)=O,false -N#CCC1=CC=CC=C1,false -CC1(C)N(Cl)C(=O)N(Cl)C1=O,false -CCC(C)=O,false -OC1=C(C(=C(C(=C1Br)Br)Br)Br)Br,false -CCN(CC)C1=CC2=C(C=C1)C(=CC(=O)O2)C,false -NCCCNCCCN,false -CCOC1=C(C=CC(=C1)C=O)O,false -CN1N(C(=O)C=C1C)C2=CC=CC=C2,false -COC1=C(C=C(C(=C1)OC)C=O)OC,false -CCCNC(=O)NS(=O)(=O)C1=CC=C(C=C1)Cl,false -CC(NC(=O)COC1=C(C=C(C=C1)Cl)Cl)C(O)=O,false -C[N]2C(=NC3=NC1=CC=CN=C1C=C23)N,false -OS(=O)(=O)C2=C1N=CC=CC1=CC=C2,false -CC1=NC2=C(C=N1)CCC2,false -CN(C1CCN(CC1)C3=NC2=CC=CC=C2[N]3CC4=CC=C(C=C4)F)C5=NC(=CC=N5)O,false -OC1=CC=C(C=C1)C3CC(=O)C2=C(C=C(C=C2O)O)O3,false -CC(=O)C(=O)C1=CC=CC=C1,false -O=C(CN1C(=O)SC2=C1C=CC=C2)OCC3=CC=CC=C3,false -ClC1=C(Cl)C(Cl)(Cl)C(=C1Cl)Cl,false -BrCC(=O)C1=CC=CC=C1,false -CCCCCCC=O,false -O2C1=CC=CC=C1C3=CC=CC=C23,false -CC1=CC=C(O1)C=O,false -C2CCCC1OC1CC2,false -C1COCCN1,false -OC2=NC1=CC=CC=C1O2,false -NC2=C(C1=CC=CC=C1C=C2)N=NC3=CC=CC=C3,false -O=CNC1=CC=CC=C1,false -CCSCCSP(=S)(OC)OC,false -COP(O)(SC)=NC(C)=O,false -CC(C)(C)OOC(C)(C)CCC(C)(C)OOC(C)(C)C,false -CC1=C(C=C(C=C1)Cl)[N+]([O-])=O,false -CCOC(=O)C1OC1(C)C2=CC=CC=C2,false -COC(=O)CCC(=O)OC,false -CCCCCCCOC1=C(C=CC=C1)NC(=O)OCCN2CCCCC2,false -CC(=C)C1=C(C=C(C(=C1)O)C)O,false -O1C=CC2=CC=CC=C12,false -CC(=O)C1=CC=CC=C1,false -CCCCSCCC(N)C(O)=O,false -OCC1=CC=C(C=C1)[N+]([O-])=O,false -CC(C)(C)OC(=O)ON=C(C#N)C1=CC=CC=C1,false -CCCOC(=O)C(C)=C,false -CC(=O)[N]1C=CN=C1,false -OC(=O)C2=NC1=C(C=CC=C1C(=C2)O)O,false -ON=CC=NO,false -N#CCCC#N,false -NC1=CC=C(C=C1)S(O)(=O)=O,false -OC2=C1C=C(C(OC1=CC=C2)=O)C4CCC3=C(C=CC=C3)C4,false -CC1=CC(=O)OC2=C1C=CC(=C2)N,false -CC(=O)NC1=C(C3=C(C=C1)C2=CC=CC=C2C3)O,false -CC(O)CN(CCN(CC(C)O)CC(C)O)CC(C)O,false -CCCCOCCOCCOCC2=C(C=C1OCOC1=C2)CCC,false -CC(=O)OC1=CC=C(C=C1)CO,false -CO,false -COCCOCCOC,false -CCC(=O)C(C)=O,false -CC1(C)CC(C(N)=O)C(C)(C)N1O,false -CC1=C(C=CC(=C1)Cl)OCCCC(O)=O,false -O=C1OC(=O)C=C1,false -CCCCC(CC)CN,false -CC(C)C1=CC3=C(C=C1)OC2=C(C=C(C(=N2)N)C(O)=O)C3=O,false -FC(F)(F)C1=CC=C(C=C1)Cl,false -CC1=NN=C(S1)NS(=O)(=O)C2=CC=C(C=C2)N,false -CCN(CC)S(=O)(=O)C1=CC=C(C=C1)NC(C)=O,false -OC1=CC2=C(C=C1)OCO2,false -CCC(C)C(C)CO,false -OC1(O)C(=O)NC(=O)NC1=O,false -NC(CC(O)=O)C(O)=O,false -CC(C)OC(=O)C(C)=C,false -COC1=C(C=CC(=C1)C=C)O,false -CCCCCCCCCCC,false -CC(=O)OC1=C(C=CC=C1)C(O)=O,false -CCCCOC(=O)C1=C(C=CC=C1)N,false -CC3=C(C2=C1C=CC=CC1=CC=C2C=C3)C,false -NC(=O)C1=CN=CC=C1,false -CC2(C)C3CCC1(CO1)C2C3,false -BrC1=CC=CC=C1,false -CCCCCCCCCCCCCC(O)=O,false -NC(C#N)C(=N)C#N,false -ClC2=NC1=CC=CC=C1C=C2,false -OC1=CC(=C(C=C1)N=NC2=CC=C(C=C2)[N+]([O-])=O)O,false -O=C4C=CC3=C2C=CC1=CC=CC=C1C2=CC=C3C4=O,false -CC1=CC=C(C=C1)C(=O)C2=CC(=C(C(=C2)O)O)[N+]([O-])=O,false -CN(C)C1=CC=C(C=C1)C4CC2(C)C(CCC2(O)C=CCO)C5CC=C3CC(=O)CCC3=C45,false -CCCC(C1=C(C=C(C(=C1)C(C)(C)C)O)C)C2=C(C=C(C(=C2)C(C)(C)C)O)C,false -CN(C)CCO,false -OC1=C(C=C(C=C1)Cl)Cl,false -OC(=O)C2=C1N=CC=CC1=CC=C2,false -C1=CC=NC=C1,false -ON=CC1=NC=CC=C1,false -OCCOC1=C(C=C(C(=C1)Cl)Cl)Cl,false -OCCO,false -OS(=O)(=O)C1=C(C=C(C=C1)[N+]([O-])=O)[N+]([O-])=O,false -OC1=C(C=C(C=C1)[N+]([O-])=O)[N+]([O-])=O,false -CCN(CC)C(=O)CC1=CC=CC=C1,false -OC1COC(O)(CN(CC(O)=O)N=O)C(O)C1O,false -C[N+]1=CC=C(C=C1)C2=CC=[N+](C=C2)C,false -COC4=C1C5=C(C(OC1=C3C2CCOC2OC3=C4)=O)C(OCC5)=O,false -CC(C)CCCCCCCOC(=O)C1=C(C=CC=C1)C(=O)OCCCCCCCC(C)C,false -CC(=O)OCC1=CC=CC=C1,false -OC2=CC=C1[NH]C=CC1=C2,false -CC(Br)Br,false -COC(=O)C1=C(C)NC(=C(C1C2=C(C(=CC=C2)Cl)Cl)C(=O)OC(C)C)COC(N)=O,false -OCC(CO)(CO)CO,false -OC1=CC(=CC(=C1)Cl)Cl,false -CC1=C(C=C(C=C1)N)Cl,false -CCCCCCCCCCOC(=O)C(C)=C,false -COC1=CC(=CC(=C1)OC2=C(C=C(C=C2)Cl)Cl)[N+]([O-])=O,false -ClC1=CC=C(C=C1)NC(=O)NC2=CC(=C(C=C2)Cl)Cl,false -C=CC1CCC=CC1,false -NCCC1=C[NH]C2=CC=C(O)C=C12,false -COC1=C(C=CC(=C1)C=O)O,false -COP(=O)(OC)OC(=CCl)C1=C(C=C(C(=C1)Cl)Cl)Cl,false -CC(C=O)=CC1=CC=CC=C1,false -CC(C)C1=CC3=C(C=C1)C2=CC=CC(=C2C=C3)C,false -OC1=CC=C(C=C1)C2(CCCCC2)C3=CC=C(C=C3)O,false -COC(=CC(O)=O)C(=O)C(C)=C,false -C=CC(=O)OCCOCCOC(=O)C=C,false -C=CC(=O)OCCCCCCOC(=O)C=C,false -OCC=O,false -CN(C)C=O,false -COC2=C1OC3=C(C(C1=C(C=C2)O)=O)C(=CC5=C3C4CCOC4O5)OC,false -CC(C)CCCCCCOC(=O)C1=C(C=CC=C1)C(=O)OCCCCCCC(C)C,false -C1COCCOCCOCCOCCOCCO1,false -CC1CCCC(C)N1CCCC(O)(C2=CC=CC=C2)C3=NC=CC=C3,false -CC(C)COC(=O)C1=C(C=CC=C1)C(=O)OCC(C)C,false -CCCCCCCCCCCCCl,false -CNC(=O)N(C1=CC=CC=C1)C2=CC=CC=C2,false -CCCCCC(O)=O,false -CCCCC(CC)COP(OCC(CC)CCCC)OCC(CC)CCCC,false -OC2=NC1=CC=CC=C1C=C2,false -OC1=C(C(=C(C=C1)Cl)Cl)Cl,false -OCC1=CC=C(C=C1)Br,false -CC1=NC=CC=C1,false -COC1=C(C2=C(C=C1O)OC(=CC2=O)C3=CC=C(C=C3)O)O,false -CC(C)NCC(O)COC1=C(C=CC=C1)OCC=C,false -CCCCCC1=CC(=CC(=C1)O)O,false -C=CC(=O)OCCCCCOC(=O)C=C,false -CC(=O)C(C)=NO,false -CCC1(CC(O)=O)OCCC2=C1[N](C3=CC=CC=C23)C,false -COC3=C1C=COC1=NC4=C(O)C2=C(OCO2)C(=C34)CC=C(C)C,false -COC3=C(C=C2C16CCN7CC5=CCOC4C(C1N(C2=C3)C(C4)=O)C5CC67)OC,false -OC(=O)COC2=CC1=CC=CC=C1C=C2,false -CCC=CC#N,false -CC1=C(C=CC(=C1C)N)N,false -OC1=C2C=CC3=CC=CC4=CC=C(C=N1)C2=C34,false -CNCC1=CC=C(O1)CSCCNC(NS(C)(=O)=O)=NCC(O)C2=CC=C(C=C2)O,false -CNNCC1=CC=C(C=C1)C(=O)NC(C)C,false -CC1=CC=C(C=C1)N(CCCl)CCCl,false -CN(C)S(=O)(=O)N(SC(F)(Cl)Cl)C1=CC=CC=C1,false -OCCNCCO,false -CC(C)(C)C1CCC2(CC1)CO2,false -COC(F)(F)C(Cl)Cl,false -OC2=C1N=CC=CC1=C(C=C2Cl)Cl,false -CCCCC=O,false -CC(=O)C=CC1=C(C)CCCC1(C)C,false -CC1=C(C=C(C=C1)S(O)(=O)=O)C,false -CCC2=C1OC(=CC1=CC=C2)C(O)CNC(C)(C)C,false -CC(C)=CCCC(C)(OC(=O)C1=C(C=CC=C1)N)C=C,false -CC4=C3N=C2C1=CC=CC=C1C=CC2=CC3=CC=C4,false -ClCC1=C3C=CC4=CC=CC5=CC=C(C2=CC=CC=C12)C3=C45,false -OC1=CC=C(C=C1)C3=COC2=C(C=CC(=C2)O)C3=O,false -O=C1NC(=O)C(N1)(C2=CC=CC=C2)C3=CC=CC=C3,false -CCCCCCOC(=O)C1=C(C=CC=C1)C(=O)OCCCCCC,false -[NH]1C=CC=C1,false -CCC1=C(C(=CC(=C1)N)C)CC2=C(C=C(C=C2C)N)CC,false -OCC#N,false -CC(=O)CC(C)=O,false -OC(=O)CC1=C[NH]C2=CC=CC=C12,false -O=C2CN(CCCN1CC(=O)NC(=O)C1)CC(=O)N2,false -CC(C)C2=CC=C(C)C1=C(C=C(C)C1=C2)S(O)(=O)=O,false -CC(=O)C1=C(C(=C(C(=C1C)[N+]([O-])=O)C(C)(C)C)[N+]([O-])=O)C,false -ClCC1(CCl)C2CC(Cl)(Cl)C1(CCl)C(Cl)C2Cl,false -ClC1=C(C(=C(C=C1)Cl)Cl)Cl,false -COC1=C(C=CC=C1)O,false -FC(F)(F)C1=CC=C(C=C1)CCl,false -OC(=O)CCC1=CC=CC=C1,false -COC4=CC2C3CC1=C(C(=C(C=C1)OC)O)C2(CCN3C)CC4=O,false -OC2=C(C1=CC=CC=C1C=C2)N=O,false -COC3=CC=C2C1=C(C(=NCC1)C)[NH]C2=C3,false -CNC1=C(C=CC=C1)C(=O)OC,false -OC(=O)CCCOC1=C(C=C(C=C1)Cl)Cl,false -ClC(Cl)C(C1=CC=C(C=C1)Cl)C2=C(C=CC=C2)Cl,false -CCCCC(CC)CO,false -CC(C)=CCCC(C)(O)C=C,false -CC(C)(C)C(Br)C(=O)NC1=CC=CC=C1,false -OS(=O)(=O)C1=CC=C(C=C1)[N+]([O-])=O,false -CS(=O)(=O)C1=CC=C(C=C1)Cl,false -CCC2=C1[NH]C3=C(C1=CC=C2)CCOC3(CC)CC(O)=O,false -CCCCOC(=O)CC(CC(=O)OCCCC)(OC(C)=O)C(=O)OCCCC,false -CC(=O)C1(CCNCC1)C2=CC=CC=C2,false -CCN(CC)C(=S)SSC(=S)N(CC)CC,false -NC1=CC=C(C=C1)C(O)=O,false -CC(C(O)=O)C1=CC(=CC=C1)C(=O)C2=CC=CC=C2,false -ClC1=C(C=CC=C1)C=C,false -CN(C)C(=N)N(C)C,false -CC4=C(COC(=O)C1N3C(SC1(C)C)C(NC(=O)C(N)C2=CC=CC=C2)C3=O)OC(=O)O4,false -N#CSCSC#N,false -OC(=O)C1=C(C=CC(=C1)Cl)Cl,false -CCCCC(CC)COC(=O)C=C,false -OC(=O)CCCCC(O)=O,false -BrCC(=O)C1=CC=C(C=C1)Br,false -C2CCC1=C(C=CC=C1)C2,false -CCC(C1=CC=CC=C1)=C(C2=CC=CC=C2)C3=CC=C(C=C3)OCCN(C)C,false -CC(=C)C1CCC(=CC1)C=O,false -OC(C(F)(F)F)C(F)(F)F,false -CC(C)CC=O,false -ClC1C=CC2C1C3(Cl)C(=C(Cl)C2(Cl)C3(Cl)Cl)Cl,false -CC1(CO1)C=C,false -CC(C)CCC(C)NC1=CC=C(C=C1)NC(C)CCC(C)C,false -COC(C)=O,false -CC(C)(C)N,false -CNC,false -CC1=CC(O)C2CC1C2(C)C,false -CN(C)C(=O)NC1=CC=C(C=C1)Cl,false -CCOP(=O)(OCC)OCC,false -CC(OC1=C(C=C(C(=C1)Cl)Cl)Cl)C(O)=O,false -NC1=NC(=O)N(C=C1)C2OC(COP(O)(O)=O)C(O)C2O,false -CC(C)O,false -CC1=CC(=O)CC(C)(C)C1,false -CCCN(CCC)S(=O)(=O)C1=CC=C(C=C1)C(O)=O,false -OC(=O)C1=C(C=CC=C1Cl)Cl,false -CC1=CC=C(C=C1)C,false -CCCO,false -S1C=CC=C1,false -O=S1(=O)CC=CC1,false -NC1=C(C(=CC(=C1)[N+]([O-])=O)S(O)(=O)=O)O,false -CC(=O)OC2C1OC(=O)C(OC(C)=O)C1OC2=O,false -ClCC1=CC=C(C=C1)C#N,false -OC(=O)CN(CCN(CC(O)=O)CC(O)=O)CC(O)=O,false -CCCCCCCCC=C,false -ClC2=C(C=C1OC3=C(OC1=C2)C=C(Cl)C(=C3)Cl)Cl,false -OC1=CC=C(C=C1)C2(NC(=O)NC2=O)C3=CC=CC=C3,false -C1=CC=C(C=C1)C2=C(C=CC=C2)C3=CC=CC=C3,false -CC1=CC=C(C=C1)CCl,false -O=C([N]1C=CN=C1)[N]2C=CN=C2,false -CC(=O)CC(=O)NC1=CC=CC=C1,false -[O-][N+](=O)C1=CC=C(C=C1)[N]2N=C(N=[N+]2C3=CC=C(C=C3)I)C4=CC=CC=C4,false -CCC(C)C1=C(C=CC=C1)O,false -C1CN2CCN1CC2,false -COP(=O)(OC)OC(=CBr)C1=C(C=C(C=C1)Cl)Cl,false -CC(O)COCC(C)O,false -COP(=S)(OC)OC1=CC(=C(C=C1)[N+]([O-])=O)C,false -CCCCCCCCCCCC(O)=O,false -NC(=O)C1=CC=CC=C1,false -CC(=O)CCl,false -NC(CC1=CC=C(C=C1)F)C(O)=O,false -COC1=CC=C(C=C1)C=CC(=O)C2=CC=CC=C2,false -ClC2=C1C=CC=CC1=CN=N2,false -CCC1=CC=CC=C1,false -COC1=C(C=CC(=C1)C=CC(=O)CC(=O)C=CC2=CC(=C(C=C2)O)OC)O,false -CC(=O)NNC(=O)C1=NC=CC=C1,false -COC2=C(C=C1[NH]C=C(C1=C2)CCNC(C)=O)O,false -BrCC(Br)C1CCC(Br)C(Br)C1,false -NCCC#N,false -OC1=CC=C(C=C1)CCC(=O)C2=C(C=C(C=C2O)O)O,false -CC(Cl)Cl,false -OC2=C1C=CC=CC1=NC3=CC=CC=C23,false -OC4C(O)C3=C(C=C2C1=CC=CC=C1C=CC2=N3)C5=C4C=CC=C5,false -CCC1=NC=CC(=C1)C(N)=S,false -CCCC,false -OC(=O)C=CC1=CC=C(C=C1)Cl,false -CCCCN,false -CCC(C)(C)C1=CC(=C(C(=C1)N3NC2=C(C=CC=C2)N3)O)C(C)(C)CC,false -NC1=CC=C(C=C1)O,false -OC1CCCCC1,false -[O-][N+](=O)C1=CC(=CC=C1)C=CC(=O)C2=CC=CC=C2,false -COP(C)(=O)OC,false -CCCCCCCCCCCCO,false -ClC1=C(C2=C(C(=C1Cl)Cl)C(=O)OC2=O)Cl,false -S=C1SC=C(S1)C2=CC=CC=C2,false -OC(=O)C1=C(N=CC=C1)NC2=CC(=CC=C2)C(F)(F)F,false -CC1CCCC1,false -OC2CC13OC1(C2)C=CC=C3,false -CC(C)(C)OC(=O)C=C,false -CC1=CSC=C1,false -COP(=O)(OC)C(OC(=O)CCl)C(Cl)(Cl)Cl,false -OCC1=CC=C(C=C1)Cl,false -ClC1=C(Cl)C(=O)C(Cl)(Cl)C1=O,false -CCCCCCCCOP(=O)(OCCCCCCCC)OCCCCCCCC,false -CCC1=CC=CO1,false -OC4=C2C1=CC=CC=C1C=CC2=C3C=CC=CC3=C4,false -CC1=C(C=CC(=C1)S(O)(=O)=O)N,false -CCN(CC)C(=O)C1=CC(=CC=C1)C,false -CC(C(O)=O)C1=CC3=C(C=C1)C2=CC(=CC=C2[NH]3)Cl,false -OCC(O)C(O)C(OC1OC(CO)C(O)C(O)C1O)C(O)CO,false -CCN,false -NS(=O)(=O)C2=C1N=CC=CC1=CC=C2,false -CC1=C(C(=CC=C1)NC2=NC(=NC(=C2)Cl)SCC(O)=O)C,false -CC1=C(C=C(C(=C1)C)C)C,false -CCCCOC(=O)CCCCCCCCC(=O)OCCCC,false -CCCCCCC1=C(C=C(C=C1)O)O,false -CC(O)CN(CC(C)O)CC(C)O,false -OC(=O)C2=N[N](CC1=C(C=C(C=C1)Cl)Cl)C3=CC=CC=C23,false -OC1=C(C=C(C=C1Br)Br)Br,false -NC2=NC=C1N=C[NH]C1=N2,false -N(C1=CC=CC=C1)C2=CC=CC=C2,false -CCOC(=O)C(C)(C)OC1=CC=C(C=C1)Cl,false -OCCCCO,false -CCCCOP(=O)(OCCCC)OC1=CC=CC=C1,false -NC2=C1C(C4=C(C(C1=C(C=C2S(O)(=O)=O)NC3CCCCC3)=O)C=CC=C4)=O,false -NC(=O)CBr,false -[O-][N+](=NC1=CC(=C(C=C1)Cl)Cl)C2=CC(=C(C=C2)Cl)Cl,false -FC(F)C(F)(F)F,false -CCC1=CC(=C(C(=C1)C(C)(C)C)O)C(C)(C)C,false -O=C1OC4=C3C2=C1C=CC=C2C=CC3=CC=C4,false -NC(=O)CI,false -CC1=C(SSC1=S)C2=NC=CN=C2,false -NC1=C(C(=C(C=C1)Cl)Cl)Cl,false -CC1=C(C(=C(C(=C1[N+]([O-])=O)C)[N+]([O-])=O)C(C)(C)C)[N+]([O-])=O,false -O=C2C1=C(C=CC=C1)CCC3=C2C=CC=C3,false -CC1=CC(=C(C=C1)C)C,false -ClC(=O)OCC1=CC=CC=C1,false -OC2=C1C(C5=C(OC1=CC=C2)C3=C(OC4OCCC34)C=C5O)=O,false -OC(=O)CC(Cl)C(O)=O,false -CC1=CCC(=O)O1,false -ClC2=C1C=CC=CC1=C(N=N2)Cl,false -OCC4=C2C=CC=C3C1=CC=CC=C1C(=C23)C=C4,false -CC1=C(C(=CC(=C1)[N+]([O-])=O)[N+]([O-])=O)C,false -C1COCCO1,false -CC1=CC=C(O1)C,false -OCC1=CC=C(C=C1)O,false -O[N+]([O-])=C2C1=C(C=CC=C1)C(=O)C3=C2C=CC=C3,false -CC(=O)OC3CC2C1(C)CCCC(C)(C)C1CCC2(C)C4(O)CC(=C(C=O)C34C)C=O,false -COC2=C(C(=C1C(OCC1=C2C)=O)O)CC=C(C)CCC(O)=O,false -CC(C)C(=O)NC1=CC=CC=C1,false -OC(=O)CC1=CC=C(C=C1)Cl,false -C2=CC1=CC=NC=C1C=C2,false -OC1=C(C4=C2C(=C1)C(=O)OC3=C2C(=CC(=C3O)O)C(=O)O4)O,false -OC1=C(C(=CC(=C1Cl)Cl)Cl)Cl,false -CC1=CC=CC=C1,false -ClC1=C(C(=CC=C1)Cl)C#N,false -CC(C)OC1=CC2=C(C=C1)C(C(=CO2)C3=CC=CC=C3)=O,false -[O-][N+]2=C1C=CC=CC1=CC=C2,false -CCN(CC)CC1=C(C=CC(=C1)NC3=C2C=CC(=CC2=NC=C3)Cl)O,false -C1CCC(CC1)NSC3=NC2=CC=CC=C2S3,false -CCN(N=O)C1=CC=CC=C1,false -O=C1CC(=O)C1=O,false -CC(C)(C1=CC=C(C=C1)O)C2=CC=C(C=C2)O,false -CC(=O)NC1=CC=C(C=C1)C(=O)C=CC2=CC=CC=C2,false -CC(=O)OO,false -CC(=O)C1=CC=C(C=C1)S(=O)(=O)NC(=O)NC2CCCCC2,false -CC(C)(C)O,false -CC(C)(OC1=CC=C(C=C1)C2CC2(Cl)Cl)C(O)=O,false -CC1=CC(=CC=C1)[N+]([O-])=O,false -CCC=[N+](O)[O-],false -C1OCOCO1,false -CCC3=C2C1=CC=CC=C1C=CC2=C(C4=CC=CC=C34)C,false -CCOC(C)=O,false -CCOC1=CC=C(C=C1)NC(N)=O,false -CC(C)=O,false -CC1=CC=C(C=C1)Cl,false -CCCCC(CC)COCCC#N,false -ClCC1=CC=C(C=C1)Cl,false -OC1=C(C=CC=C1)C(=O)OC2=CC=CC=C2,false -ClC(=C)C#N,false -CCOC(=O)OC(=O)OCC,false -CC(CCN(C)C)N(C)C,false -CC1=C(C)C(=O)C(=C(C)C1=O)C,false -C=CCN1C(=O)N(CC=C)C(=O)N(CC=C)C1=O,false -OC(=O)C1CC2=C(CN1)[NH]C3=CC=CC=C23,false -CCCCCN,false -[O-][N+](=O)OCC(CO[N+]([O-])=O)(CO[N+]([O-])=O)CO[N+]([O-])=O,false -COC1=C(C5=C(C(=C1)O)C(=O)C2=C(C3=C(C=C2OC)OC4OCCC34)O5)OC,false -OC(=O)C1=C(C=CC=C1)Cl,false -O=C1CCCCC1,false -CC1=CC=C(C=C1)OP(=O)(OC2=CC(=CC=C2)C)OC3=CC(=CC=C3)C,false -OC(=O)C1=C(C=CC=C1)NC2=C(C=CC(=C2)Cl)C(O)=O,false -CCCCCC(N)=O,false -CCCCCCCCCCCC(=O)OCCS(O)(=O)=O,false -OC1=C(C=C(C=C1Cl)Cl)SC2=C(C(=CC(=C2)Cl)Cl)O,false -[O-][N+]4=C2C=CC1=CC=CC=C1C2=CC5=C3C=CC=CC3=CC=C45,false -ClC1=CC=C(C=C1)S(=O)(=O)C2=C(C=C(C(=C2)Cl)Cl)Cl,false -CC(OP(C)(Cl)=O)C(C)(C)C,false -ClC1=CC(=CC(=C1)Cl)N2C(=O)CCC2=O,false -NCC1=CC(=CC=C1)CN,false -OC(=O)COC1=C(C(=C(C=C1)C(=O)C2=CC=CS2)Cl)Cl,false -O=C1C5=C4C3=C2C1=CC=CC2=CC=C3C=CC4=CC=C5,false -CC1=NC=CN=C1,false -CCC(O)CN,false -CC(=O)C3C(=O)C=C2OC1=C(C(=C(C(=C1C(C)=O)O)C)O)C2(C)C3=O,false -O=C1CSC(=S)N1,false -FC2=CC1=CC=CC=C1N=C2,false -OC1=CC=C(C=C1)C3=CC(=O)C2=C(C=C(C=C2O)O)O3,false -OC(=O)C1=CC(=C(C(=C1)O)O)O,false -C=COC(=O)C=C,false -CC(CCl)OP(=O)(OC(C)CCl)OC(C)CCl,false -CC1(C)C2CCC1(C)C(=O)C2=O,false -NC1=CC=C(C=C1)C(=O)OCCCOC(=O)C2=CC=C(C=C2)N,false -COC1=C(C=CC(=C1)C=CC)O,false -CC(C)CC(NC(=O)COC1=C(C=C(C=C1)Cl)Cl)C(O)=O,false -OC(=O)C1=CC(=CC(=C1)Cl)Cl,false -CCCCOC(C)=O,false -C2CCC1CCCCC1C2,false -CCC1=CC=C(C=C1)[N+]([O-])=O,false -CC1=C(C(=C(C(=C1Br)Br)Br)Br)Br,false -C[N+](C)(C)CC1=CC=CC=C1,false -CC#N,false -CC(C)(C)CC(C)(C)C1=CC=C(C=C1)OCCOCC[N+](C)(C)CC2=CC=CC=C2,false -CCCCCCCCCCCCCCCCCC[N+](C)(C)CC1=CC=CC=C1,false -CCCCC(CC)COS(O)(=O)=O,false -OCCN4CCN(CCCN2C1=C(C=CC=C1)SC3=C2C=C(C=C3)C(F)(F)F)CC4,false -OC(COC2=C1C(C=C(OC1=CC=C2)C(O)=O)=O)COC4=C3C(C=C(OC3=CC=C4)C(O)=O)=O,false -OC2=C(C1=CC=C(C=C1C=C2)S(O)(=O)=O)N=NC3=CC=CC=C3,false -OC2=C(C1=C(C=C(C=C1C=C2)S(O)(=O)=O)S(O)(=O)=O)N=NC3=CC=CC=C3,false -CN(C)CCN(CC1=CC=CC=C1)C2=CC=CC=C2,false -CC(C)C1CCC(C)CC1O,false -COC(=O)C(C1CCCCN1)C2=CC=CC=C2,false -CC(CCC1=CC=CC=C1)NCC(O)C2=CC(=C(C=C2)O)C(N)=O,false -NC2=C1C(=C(C(=CC1=CC(=C2)S(O)(=O)=O)S(O)(=O)=O)N=NC3=CC=CC=C3)O,false -CC3=C(OC1=C(C=CC=C1C(=O)OCCN2CCCCC2)C3=O)C4=CC=CC=C4,false -CC(CN2C1=C(C=CC=C1)SC3=C2C=CC=C3)N(C)C,false -CC(C)CCCC(C)CCCC(C)CCCC2(C)CCC1=C(C(=C(C(=C1C)O)C)C)O2,false -C[N+](C)(C)CC(O)=O,false -CON,false -OC2=C(C1=CC=CC=C1C=C2)N=NC3=CC=C(C=C3)S(O)(=O)=O,false -CC1=NC(=C(C=N1)C[N+]2=CSC(=C2C)CCO)N,false -OC1=NC(=NC(=N1)O)O,false -OC2=C1[N+](=CC=CC1=CC=C2)[O-],false -OC(=O)C1C(C(O)=O)C2(Cl)C(=C(Cl)C1(Cl)C2(Cl)Cl)Cl,false -OC2=C1C=CC=CC1=CN=N2,false -C(NC2=C1[NH]C=NC1=NC=N2)C3=CC=CC=C3,false -CC=C1CC(C)C(C)(O)C(=O)OCC2=CCN3CCC(OC1=O)C23,false -NC2=NC1=N[NH]N=C1C(=N2)O,false -CCCCCCCCCCCCCCCC(=O)OCC(O)C1=C(C(=C(O1)O)O)O,false -CCCCCC(CC)OC(=O)C1=CC(=CC=C1)C(=O)OC(CC)CCCCC,false -OC2=C1C=CC=CC1=C(N=N2)O,false -SC2=NC1=CC=CC=C1S2,false -OCC(O)C(O)CO,false -CC2(C)C3CC1OC1(C)C2C3,false -CC(=O)C1=C(O)[N]5C(=C1O)C2C(CC4=C3C2=C[NH]C3=CC=C4)C5(C)C,false -CC(C)CC(=O)OC4CC1(OC(C)=O)C(OC2C(O)C(OC(C)=O)C1(C)C23CO3)C=C4C,false -CC(=O)OCC12CCC(=CC1OC3C(O)C(OC(C)=O)C2(C)C34CO4)C,false -CC4CC3OC1C(O)C(OC(C)=O)C(C)(C12CO2)C3(CO)C(=O)C4=O,false -CC4CC3OC1C(O)C(O)C(C)(C12CO2)C3(CO)C(=O)C4=O,false -NC1=NN=C(S1)S,false -ClCC1C(CCl)C2(Cl)C(=C(Cl)C1(Cl)C2(Cl)Cl)Cl,false -ClC1=CC3=C(C=C1)N2C=NNC2=CN=C3C4=CC=CC=C4,false -C=CC1CC2CC1C=C2,false -ClC3=C(Cl)C4(Cl)C2C1CC(C=C1)C2C3(Cl)C4(Cl)Cl,false -CC1C(=O)OC2CCN3CC=C(COC(=O)C(C)(O)C1(C)O)C23,false -OC2CC(O)(CC(OC(=O)C=CC1=CC(=C(C=C1)O)O)C2O)C(O)=O,false -CN(C=NC=NC1=C(C=C(C=C1)C)C)C2=C(C=C(C=C2)C)C,false -NC3=NC(=C2N=C(O)[N](C1OC(CO)C(O)C1O)C2=N3)O,false -CC1(CO)C(O)CCC2(C)C1CCC3CC4CC23CCC4(O)CO,false -CNC(=N)N[N+]([O-])=O,false -CC(=O)OC4(CCC5C3C=C(Cl)C2=CC(=O)C1CC1C2(C)C3CCC45C)C(C)=O,false -CC12CCC(CC1)C(C)(C)O2,false -CC12CCCC(C)(C1CCC34CC(=C)C(O)(CCC23)C4)C(O)=O,false -CNC3=C1CC(=O)C(=CC=C1C2=C(C(=C(C=C2CC3)OC)OC)OC)OC,false -CC34CC(O)C1C(CCC2=CC(=O)C=CC12C)C3CCC4(O)C(O)C=O,false -CC34CCC1C(CCC2=C1C=CC(=C2)O)C3CC(O)C4O,false -CC34CCC1C(CCC2=C1C=CC(=C2)O)C3CCC4O,false -CC2=CN(C1CC(O)C(CO)O1)C(=O)NC2=O,false -OC1=NC(=C(C=N1)F)O,false -CC(=O)OC3(CCC4C2CCC1=C(CCC(=O)C1)C2CCC34C)C#C,false -CC1CCC6(OC1)OC5CC4C3CC=C2CC(O)CCC2(C)C3CCC4(C)C5C6C,false -CC4CC3OC1C(O)CC(C)(C12CO2)C3(CO)C(=O)C4=O,false -OC3=C(C=C2C1C4=C(OCC1(CC2=C3)O)C(=C(O)C=C4)O)O,false -COC1=C(C(=CC(=C1)C3C2C(COC2=O)C(O)C5=C3C=C4OCOC4=C5)OC)OC,false -CC2OC=C1C(=O)C(C(O)=O)C(=O)C(=C1C2C)C,false -NC2=C1C(=NN=C(C1=CC=C2)O)O,false -CC34CCC1C(CC=C2CC(O)CCC12C)C3CCC4=O,false -CN1CCCC1C2=CN=CC=C2,false -OCC1OC(CC1O)N2C=C(I)C(=O)NC2=O,false -CC(C)C12CC1C(C)C(=O)C2,false -CC(N)(CC1=CC(=C(C=C1)O)O)C(O)=O,false -CC1=NC(=NC(=C1)O)S,false -CC34CCC1C(CCC2=C1C=CC(=C2)O)C3CCC4(O)C#C,false -CC(=O)C3CCC4C2CC=C1CC(=O)CCC1(C)C2CCC34C,false -NC2=C1N=C[N](C1=NC=N2)C3OC(CO)C(O)C3O,false -OC(=O)CCCCC1SCC2NC(=O)NC12,false -NS(=O)(=O)C1=C(C=C2C(=C1)S(NC=N2)(=O)=O)Cl,false -SC2=NC1=CC=CC=C1[NH]2,false -OCC1OC(CC1O)N2C=C(Br)C(=O)NC2=O,false -NC2=NC1=NC=C(N=C1C(=N2)O)CNC3=CC=C(C=C3)C(=O)NC(CCC(O)=O)C(O)=O,false -CC1=C(N=C(N=C1)S)O,false -CC=CC(=O)OC2CC3OC1=CC(C)C(=O)CC1(C)C2(C)C34CO4,false -CC(C)CCCC(C)C1CCC2C(CCCC12C)=CC=C3CC(O)CCC3=C,false -NC(CC1=CC=CC=C1)C(O)=O,false -CC34CCC1C(CC=C2CC(=O)CCC12)C3CCC4(O)C#C,false -CC(=O)OC3(CCC4C2CC(=C1CC(=O)CCC1(C)C2CCC34C)C)C(C)=O,false -CC14C(O)C=CC5(OC1=O)C2CCC3(O)CC2(CC3=C)C(C45)C(O)=O,false -C2C=CC3C1CC(C=C1)C23,false -CC1=CCC2CC1C2(C)C,false -CC6CCC5C(C)C3C(CC4C2CC=C1CC(O)CCC1(C)C2CCC34C)N5C6,false -CC(CCC(O)=O)C3CCC4C2C(O)CC1CC(O)CCC1(C)C2CC(O)C34C,false -[O-][N+](=O)OC1COC2C(COC12)O[N+]([O-])=O,false -CC2=CCCC(=C)C1CC(C)(C)C1CC2,false -CC1=C(N=C(N=N1)O)O,false -OCC1OC(CC1O)N2C=CC(=O)NC2=O,false -NC2=C1N=C[N](C1=NC=N2)C3CC(O)C(CO)O3,false -CCCC(=O)OCC,false -CC(=O)C1=CC=NC=C1,false -ClC1=NC(=CC=C1)Cl,false -CC(O)CO,false -CC(C)CO,false -CC1CCC(=O)C1=O,false -CC1=CC(=O)OC2=C1C=CC(=C2)O,false -CCN(CC)C1=CC=CC=C1,false -CCCCOC(=O)C(C)=C,false -CN(C)C(=O)OC1=C[N+](=CC=C1)C,false -CCC(CO)NCCNC(CC)CO,false -CC12CCC(CC1O2)C=C,false -NC2=C1C=CC=CC1=CC=C2O,false -CN1CCC(C1)CN3C2=C(C=CC=C2)SC4=C3C=CC=C4,false -CCCCCC(=O)OC3(CCC4C2CCC1=C(CCC(=O)C1)C2CCC34C)C(C)=O,false -O=C1NS(=O)(=O)C2=C1C=CC=C2,false -OC2=C(C=C1C=C(C=CC1=C2)S(O)(=O)=O)S(O)(=O)=O,false -NC1=CC=CC=C1,false -COC1=C(C4=C(C=C1Cl)C3(C(C25SSC(C(N2C3N4C)=O)(C)N(C5=O)C)O)O)OC,false -CCCCCCCCCCCCOS(O)(=O)=O,false -OC(=O)CC1=C(C=CC=C1)NC2=C(C=CC=C2Cl)Cl,false -NC2=C1N=C[N](C1=NC(=N2)O)C3OC(CO)C(O)C3O,false -COC1=C(C(=CC(=C1)CC2NCCC3=C2C=C(C(=C3)O)O)OC)OC,false -OC(=O)C2=NN(C1=CC=C(C=C1)S(O)(=O)=O)C(=O)C2N=NC3=CC=C(C=C3)S(O)(=O)=O,false -CN(C)C4C3C(O)C2C(C(=O)C1=C(C=CC=C1O)C2(C)O)C(=O)C3(O)C(=O)C(C(N)=O)C4=O,false -CCNC1=NC(=NC(=N1)O)NC(C)C,false -ON1CN(Cl)CN(Cl)C1,false -C[N+]1(C)CCOCC1,false -ClC1=CC=C(C=C1)COC(C[N]2C=CN=C2)C3=C(C=C(C=C3)Cl)Cl,false -O[N]1N=NC2=CC=CC=C12,false -CN2CCN=C(C1=CC=CC=C1)C3=C2C=CC(=C3)Cl,false -CC(CCC(O)=O)C3CCC4C2CCC1CC(=O)CCC1(C)C2CC(=O)C34C,false -NC(CSCC1=CC=CC=C1)C(O)=O,false -CCNC(=O)CCC(N)C(O)=O,false -CCC3CN2CCC1=C(C=C(C(=C1)OC)OC)C2CC3CC4NCCC5=C4C=C(C(=C5)OC)OC,false -NC1=CC(=C(C=C1)Cl)C(F)(F)F,false -CCN(CC)CCCN(C2CC1=C(C=CC=C1)C2)C3=CC=CC=C3,false -OC1C(O)C(OC1COP(O)(O)=O)N2C=CC(=O)NC2=O,false -NCCC1=C[NH]C2=CC=CC=C12,false -CCCC(=O)NC1=CC(=C(C=C1)OCC(O)CNC(C)C)C(C)=O,false -FC1=CC=C(C=C1)CCl,false -CCCC(=O)NC2=C1N=C[N](C1=NC=N2)C4OC3COP(O)(=O)OC3C4OC(=O)CCC,false -FC1=CN=CC=C1,false -CCCCCCC(=O)OC3(CCC4C2CCC1=CC(=O)CCC1C2CCC34C)C#C,false -OCC1OC(C(O)C1O)[N]3C=NC4=C(NCC2=CC=C(C=C2)[N+]([O-])=O)N=CN=C34,false -OCC1OC(CC1O)N2C=C(C=O)C(=O)NC2=O,false -OC1C(O)C(OC1COP(O)(O)=O)[N]2C=NC3=C(O)N=CN=C23,false -OC2=C1C=CC=CC1=NC=N2,false -CCC5=C(CC1NCCC2=C1C=C(C(=C2)OC)OC)CC3N(CCC4=C3C=C(C(=C4)OC)OC)C5,false -CC(C)C3=CC2=CCC1C(C)(CCCC1(C)C(O)=O)C2CC3,false -OC1=CC2=C(C=C1)C4(C3=C(O2)C=C(O)C=C3)OC(=O)C5=C4C=CC=C5,false -OC2=CC(=C1C=C(O)C(=[O+]C1=C2)C3=CC(=C(C(=C3)O)O)O)O,false -CCCCCCC(O)CC=CCCCCCCCC(O)=O,false -C[N+]1=CC(=CC=C1)C(O)=O,false -OC(=O)C1=C(C=CC=C1)O,false -NC2=NC1=CC=C(C=C1[NH]2)Cl,false -CCCOC(C(=O)OC1CCN(C)CC1)(C2=CC=CC=C2)C3=CC=CC=C3,false -NC3=NC(=C2N=C[N](C1OC(COP(O)(O)=O)C(O)C1O)C2=N3)O,false -CNC(=O)OC1=CC2=C(C=C1)N(C)C3N(C)CCC23C,false -CC(C)CCCC(C)C3CCC4C2CC=C1CCCCC1(C)C2CCC34C,false -CC4CC2(C)C(CCC3C1CCC(O)C1(C)CCC23)CC4=O,false -CC1=C(C(=C(C=N1)CO)CO)O,false -CC1=CC(=C(C=C1)N=NC3=C2C=CC=CC2=CC(=C3O)C(O)=O)S(O)(=O)=O,false -CN,false -CC1=C(C(=CC=C1)OCC(O)CNC(C)(C)C)C,false -CN[N+]([O-])=O,false -ClC4=C(Cl)C5(Cl)C3C1CC(C2OC12)C3C4(Cl)C5(Cl)Cl,false -CC(C)CC(NC(=O)C(CC1=CC=CC=C1)NC(=O)CNC(=O)CN)C(O)=O,false -CC1=NCCC2=C1[NH]C3=CC(=CC=C23)O,false -CC(C)CCCC(C)C3CCC4C2CC=C1CC(CCC1(C)C2CCC34C)OC(C)=O,false -CNCC(O)C1=CC(=CC=C1)O,false -NC1=NC=N[NH]1,false -NC1=NC(=O)N(C=C1I)C2CC(O)C(CO)O2,false -NC(CC1=CC(=C(C=C1)O)[N+]([O-])=O)C(O)=O,false -COC1=CC=C(C=C1)CN(CCN(C)C)C2=NC=CC=N2,false -CN(C)C4C3CC2C(C(=O)C1=C(C=CC=C1O)C2(C)O)C(=O)C3(O)C(=O)C(C(N)=O)C4=O,false -COC1=CC=C2C(=CC1=O)C(CCC3=C2C(=C(C(=C3)OC)OC)OC)NC(C)=O,false -CN1C2CC(CC1C3OC23)OC(=O)C(CO)C4=CC=CC=C4,false -CNC(C=[N+](O)[O-])=NCCSCC1=CC=C(O1)CN(C)C,false -OCC1OC(C(O)C1O)N2C=CC(=N)NC2=O,false -OC1=NC(=NC=N1)O,false -CC2(C)C1CCC(C1)C2=C,false -CCCCCCCCCCCCOCCOCCOCCOCCOCCOCCOCCO,false -OCC1=CC(C(O)C1O)N2C=CC(=N)NC2=O,false -O=C1NC(=S)NC(=O)C1C(=O)NC2=CC=CC=C2,false +COC1=CC=C(C=C1)C2=NC(=C([NH]2)C3=CC=CC=C3)C4=CC=CC=C4,1 +CC1=C(C=CC=C1N=C=O)N=C=O,1 +OCCC1=C[N](N=O)C2=CC=CC=C12,1 +[O-][N+](=O)C1=CC(=CS1)C(=O)NC2=CC(=CC=C2)Br,1 +CN(N=O)C1=CC=CC=C1,1 +CN2C1=C(C=CC=C1)C(=O)C3=C2C4=C(C=C3O)OC(C4)C5(C)CO5,1 +CS(=O)(=O)NC1=CC=C(C=C1)NC3=C2C=CC=CC2=NC4=CC=CC=C34,1 +[O-][N+](=O)C1=CC=C(C=C1)OC2=C(C=C(C=C2)Cl)Cl,1 +OC1=C(C=CC(=C1)[N+]([O-])=O)[N+]([O-])=O,1 +C[N]2C(=NC3=C1N=CC=NC1=C(C)C(=C23)C)N,1 +CSC1=C(C(=C(C(=C1)SC)N)C)N,1 +OC1=CC4=C(C=C1)C3=CC2=CC=CC=C2C=C3C5=CC=CC=C45,1 +CC(=O)C(Br)=C,1 +NCCNCCNCCN,1 +CN(C)C1=CC=C(C=C1)CCO,1 +COC4=CC(=O)C3=C2[NH]C1=CC=NC=C1C2=CN=C3C4=O,1 +N1C3C1C2=CSC=C2C4=CSC=C34,1 +CC1=C(C=C(C(=C1)N=NC2=CC=CC=C2)N)N,1 +NC3=CC2=NC1=CC(=CC=C1C=C2C=C3)N,1 +[O-][N+](=O)C3=C1CCC2=CC=CC(=C12)C=C3,1 +NC1=CC=C(C=C1)C=CC2=CC=C(C=C2)[N+]([O-])=O,1 +COC(=O)C1(OC1(C)C(O)C(C)C)C(N)=O,1 +CC(I)C1OCC(CO)O1,1 +CN(C)CCNC(=O)C3=C2N=C1C=CC=CC1=NC2=CC=C3,1 +CC1=C(C=C(C=C1)N)C,1 +CC1=C3C(=CC=N1)C2=CC=CC=C2[NH]3,1 +OC1CN(CCO1)N=O,1 +[O-][N+](=O)C1=C(C=CC=C1)C(Cl)=O,1 +ClCCOP(OCCCl)OCCCl,1 +COC(=O)NC2=NC1=CC=CC=C1[NH]2,1 +CCOC(=O)N(CCCC(=O)C1=CN=CC=C1)N=O,1 +C1CSCCS1,1 +NC1=CC=C(C=C1)C2=CC=C(C=C2)Cl,1 +NNC2=C1C=CC=CC1=C(N=N2)NN,1 +C[N]3C(=NC4=CC=C2C=CC1=CC=C(O)C=C1C2=C34)C,1 +CC(=O)OC1=CC=C(C=C1)CCl,1 +NC1=CC=C(C=C1)OC2=CC=C(C=C2)[N+]([O-])=O,1 +[O-][N+](=O)C1=CC=C(C=C1)C2=C(C=C(C=C2)[N+]([O-])=O)[N+]([O-])=O,1 +COC1=C(C=CC=C1)[N+]([O-])=O,1 +C1=CC2=C(C=C1)C4=C(C=C2)C3=NC=CC=C3C=C4,1 +OC2=C3C=CC4=CC=C(C5=C1C=CC=CC1=C(C=C2)C3=C45)[N+]([O-])=O,1 +[O-][N+](=O)C1=CC(=C(C(=C1)[N+]([O-])=O)Cl)[N+]([O-])=O,1 +[O-][N+](=O)C1=C3C(=CC=C1)C2=CC=CC=C2C(O3)=O,1 +CC3=C2C1=CC=CC=C1C=CC2=C(C4=CC=CC=C34)CO,1 +CC3=C2C=CC1=CC=CC=C1C2=CC4=CC=CC=C34,1 +CC1=CC=C(C=C1)S(=O)(=O)OCC2=CC=C(C=C2)[N+]([O-])=O,1 +CN1CCN(CC1)C5=CC(=O)C2=C(C4=C(C(=N2)C)C3=CC=CC=C3[NH]4)C5=O,1 +CC1=C(C3=C(C=C1)C(=O)C2=C(C=CC=C2)C3=O)O,1 +CC2C1=C(C=CC(=C1)F)C3=C2C=C(C=C3)F,1 +O=NC1=CC3=C(C=C1)C2=CC=CC=C2C3,1 +OC3C1OC1C2=C4C(=C(C=C2)O)C7=C5C(=C34)C(=CC=C5C6OC6C7=O)O,1 +OC(=O)C1=CC(=C(C=C1)Cl)[N+]([O-])=O,1 +N(C1=CC=CC=C1)C2=CC=C(C=C2)NC3=CC=CC=C3,1 +C[N+]3=C2C=CC1OC1C2=CC=C3,1 +COC1=C(C=C(C=C1)N)N,1 +CC(=O)NC1=CC=C(C=C1)C(=O)C2OC2C3=CC=CC=C3,1 +C[N]1C(=NC2=C1C=C(C)C3=NC(=CN=C23)C4=CC=CC=C4)N,1 +[O-][N+]([O-])=C1CCCC1,1 +COC2=C1OC(=CC1=C(C=C2)N(CCCl)CCCl)[N+]([O-])=O,1 +COC3=C(C=C2N=C1C=C(C(=CC1=NC2=C3)N)OC)N,1 +C[N]2C(=NC3=NC1=CC=CC=C1C=C23)N,1 +OC5C(O)C4=C(C3=NC2=C1C=CC=CC1=CC=C2C=C3C=C4)C6OC56,1 +NC3=C2C=C1C=CC=CC1=NC2=CC=C3,1 +[O-][N+](=O)C1=CC4=C2C(=C1)CCC3=C2C(=CC(=C3)[N+]([O-])=O)CC4,1 +[O-][N+](=O)C3=CC2=NC1=CC=CC=C1N=C2C=C3,1 +CCOP(=O)(OC1=CC=C(C=C1)[N+]([O-])=O)C2=CC=CC=C2,1 +[O-][N+](=O)C3=C2C=CC1=CC=CC4=C1C2=C(C=C3)C(=O)C4=O,1 +CC(C)S(Cl)(=O)=O,1 +CC3=C2C1=CC=CC=C1[NH]C2=CC(=N3)N,1 +ClCC(Cl)CBr,1 +CC2=C(N=C1C(=C(C=CC1=N2)N)C)C,1 +CC1=CC4=C(C=C1)C5=C2C=CC=CC2=CC6=C3C=CC=CC3=CC4=C56,1 +NC1=CC(=CC=C1)[N+]([O-])=O,1 +[O-][N+](=O)C2=C1SN=C(C1=CC=C2)Cl,1 +[O-][N+](=O)C4=C2C=CC=C3C1=CC=CC=C1C(=C23)C(=C4)[N+]([O-])=O,1 +[O-][N+](=O)C1=C(C=CC=C1)SSC(Cl)=C(Cl)Cl,1 +CN(C)CCCNC2=C1C(=CC=C(C1=NC3=CC=CC=C23)Cl)[N+]([O-])=O,1 +COC4=CC(=O)C3=C2[NH]C1=C(CCCC1)C2=C(C)N=C3C4=O,1 +CC=CC=O,1 +C[N+]2=C1C=CC(=CC1=CC3=CC=CC=C23)N,1 +CC(=O)ON(C(C)=O)C1=CC=C(C=C1)SC2=CC=CC=C2,1 +CC1C=C(C=O)C(=CC2(O)CC(C)(C)CC12)C=O,1 +C1=CC2=C(C=C1)C3=CC=C4C=CC=C5C=CC(=C2)C3=C45,1 +ClC2=C1C=CC=CC1=CC=C2,1 +C2C1=C(C=CC=C1)C3=C2C4=C(C=C3)C=CC5=C4C=CC=C5,1 +CC1=C(C=CC(=C1)N)N,1 +COC1=CC(=C(C=C1)OC)N=NC3=C2C=CC=CC2=CC=C3O,1 +CN(C)C1=CC=C(C=C1)N=NC3=C2C=CC=CC2=CC=C3,1 +COP(=O)(OC)OC,1 +ClC(Cl)C#N,1 +[O-][N+](=O)C1=CC2=C(C=C1)NCC2,1 +[O-][N+](=O)C1=CC(=CS1)C(=O)NC2=C(C=CC=C2)F,1 +C[N]1C(=NC=C1[N+]([O-])=O)C2NC(CO)(CO)CO2,1 +COC1=C(C=CC(=C1)O)NC3=C2C=CC=CC2=NC4=CC=CC=C34,1 +COC(=O)C1=C(C=CC=C1)O,1 +O1C4C1C2=C(C=CC3=CC=CC=C23)C5=C4C=CC=C5,1 +CC1=CC(=C(C=C1)[N+]([O-])=O)[N+]([O-])=O,1 +O=C5C=C3C2=C(C=C1C=CC=CC1=C2)C4=C3C(=CC=C4)C5=O,1 +[O-][N+](=O)C1=CC=C(O1)C=CC=NN2CC(=O)NC2=O,1 +C[N]1C(=NC2=NC=C(C=C12)C3=CC=CC=C3)N,1 +BrC(=C)C=O,1 +CC(=O)NC(CSC(Cl)=C(Cl)C(Cl)=C(Cl)Cl)C(O)=O,1 +[O-][N+](=O)C2=C1C(=CC=CC1=CC=C2)[N+]([O-])=O,1 +COC4=C1C5=C(C(OC1=C3C2C=COC2OC3=C4)=O)C(CC5)O,1 +CC(=C)C2=CC=C(C)C1=CC=C(C=O)C1=C2,1 +CC1=CC=C[N]2C1=NC3=CC=C(N)N=C23,1 +C1=CC2=C(C=C1)C3=CN=C4C=CC=C5C=CC(=C2)C3=C45,1 +COC(=O)C(=CC1=CC=C(O1)[N+]([O-])=O)[N+]([O-])=O,1 +ClCC4=CC=C3C2=C1C(=CC=CC1=CC=C2)C3=C4,1 +[O-][N+](=O)C1=CC(=C(C=C1)Cl)[N+]([O-])=O,1 +COC(=O)C(=CC1=CC=C(O1)[N+]([O-])=O)C#N,1 +C(N1C3C1C2=C(C=CC=C2)C4=C3C=CC=C4)C5=CC=CC=C5,1 +OC1C(O)C5=C4C2=C1C=CC=C2C3=CC=CC=C3C4=C(C=C5)[N+]([O-])=O,1 +CN(C)C1=CC=C(C=C1)C=CC2=CC(C=C(C)O2)=C(C#N)C#N,1 +CCCCOCC1CO1,1 +OC(=O)C=CC1=CC(=CC=C1)[N+]([O-])=O,1 +NC(O)=NO,1 +FCC1CO1,1 +ClC(C(=O)NCC1=CC=CC=C1)C2=CC=CC=C2,1 +CC1(C)CC(O)CC(C)(C)N1O,1 +CC(=O)NC1=CC=C(C=C1)SC2=CC=CC=C2,1 +OC1=C(C=CC=C1)NC2=C(C=C(C=C2)[N+]([O-])=O)[N+]([O-])=O,1 +CCC(=O)N(O)C1=CC=C(C=C1)C2=CC=CC=C2,1 +O=CC1CC(=O)C(=O)CO1,1 +C(COCC1CO1)OCC2CO2,1 +C1CN1,1 +OCC(CBr)(CBr)CBr,1 +CCCCCCCCCCCCCCCCCC(=O)OCC1=CC=C2C(=CCC(C=C12)C(C)=C)C,1 +OC(=O)C1=CC=C(C=C1)C=NN4N=NC2=C([NH]C3=CC=CC=C23)C4=O,1 +ONC1=CC=C(C=C1)SC2=CC=CC=C2,1 +CC1=CC=C[N]2C1=NC3=CC=C(NO)N=C23,1 +ClC1=NC=CC=C1,1 +FC2=CC1=NC=CC=C1C=C2,1 +CN(C)CCNC(=O)C2=C1C(C3=C(C(C1=CC=C2)=O)C=CC=C3)=O,1 +NC1=CC=C(C=C1)N,1 +[O-][N+](=O)C3=CC2=C(C=C1C=CC=CC1=C2C=C3)[N+]([O-])=O,1 +[O-][N+](=O)C1=CC4=C3C(=C1[N+]([O-])=O)C2=CC=CC=C2C3=CC=C4,1 +[O-][N+](=O)C1=CC=C(C=C1)C=C,1 +CN(CS(O)(=O)=O)C1=C(C)N(C)N(C1=O)C2=CC=CC=C2,1 +N1C5C1C3=C(C2=CC=CC=C2C4=CC=CC=C34)C6=C5C=CC=C6,1 +NC(=O)C(=CC1=CC=C(O1)[N+]([O-])=O)C2=CC=CO2,1 +NC2=CC=C1SN=C(Cl)C1=C2,1 +ClC1OC1CBr,1 +OC2=C1C=CC=NC1=CC=C2,1 +NC3=CC2=NC1=CC=CC(=C1N=C2C=C3)N,1 +[O-][N+](=O)C1=CC(=CS1)C(=O)NC2=C(C=CC=C2)Br,1 +C1=CN=C(C=C1)C2=CC=NC=C2,1 +CC(C)C1CCC(C)CC1=O,1 +CCOS(C)(=O)=O,1 +O=NN1CCOCC1,1 +[O-][N+](=O)C1=CC=C(C=C1)C=CC2=CC=C(C=C2)C#N,1 +CCCC=CCC=O,1 +NNC(=O)CNC(=O)C=[N+]=[N-],1 +C=CCCCCC1CO1,1 +CC(=O)NC1=CC(=CC=C1)N,1 +CC1=C(C=CC=C1N)N,1 +OC2=C3C=CC4=C1C=CC=CC1=CC5=CC=C(C=C2)C3=C45,1 +CC1=CC3=C(C=C1)C2=CC=CC=C2C=C3,1 +[O-][N+](=O)C1=C(C=CC(=C1)N=[N+]=[N-])F,1 +COC4=CC(=O)C3=C2[NH]C1=CC=NC=C1C2=C(C)N=C3C4=O,1 +CCC=CC=CC=CC=CC=COCC(O)CO,1 +CNC(=O)ON(C(C)=O)C(=O)NC,1 +[O-][N+](=O)C1=CC(=C(C=C1)I)[N+]([O-])=O,1 +CC4=C2C=C1C=CC=CC1=CC2=C3C=CC=CC3=C4,1 +C1OC1C2=CC=CC=C2,1 +[O-][N+](=O)C1=CC(=CC(=C1)CCl)[N+]([O-])=O,1 +CC(=O)OCC2=C1C=CC=CC1=CC3=CC=CC=C23,1 +ClCC=CCl,1 +COC1=CC=C(C=C1)N=O,1 +NC1=C(C=CC=C1)C2=CC=CC=C2,1 +CNC3CC2=C1C(=CC=CC1=CC=C2)C3,1 +CC(=O)OCC1=COC=C2C(=CC=[C]12)C=O,1 +OCC[N]1C(=NC=C1[N+]([O-])=O)CO,1 +CCN1C=C(C(O)=O)C(=O)C3=C1C=C2OCOC2=C3,1 +CC3=C2[NH]C1=CC=CC=C1C2=C(C)C4=CN=CC=C34,1 +O=C2NC1(CCCCC1)C(=O)N2CCN3CC3,1 +NC1=CC3=C(C=C1)C2=CC=C(C=C2C3)N,1 +CCN(N)C1=CC=CC=C1,1 +CC(=O)NC1=CC=C(C=C1)C=CC(=O)C2=CC=CC=C2,1 +CCC[N]3C=C2CC1C(C=C(C)CN1C)C4=C2C3=CC=C4,1 +C[N]1C=CN=C1N=O,1 +[O-][N+](=O)C2=C1[NH]N=CC1=CC=C2,1 +ClCC2=C4C1=CC=CC=C1C=C5C=CC3=CC=CC(=C2)C3=C45,1 +NC1=C(C=CC=C1)SCCSC2=C(C=CC=C2)N,1 +C1=CC4=C(C=C1)C3=CC2=CC=CC5=C2C(=C3C=C4)C=C5,1 +[O-][N+](=O)C1=CC3=C(C=C1)C2=CC4=C(C=C2CC3)CCCC4,1 +[O-][N+](=O)C2=C1N=CC=CC1=CC=C2,1 +S=C1NCCN1,1 +C2=CC1=CC3=C(C=C1C=C2)C5=C4C(=C3)C=CC=C4C=C5,1 +NC1=CC4=C(C=C1)C3=CC=C2C=CC=CC2=C3C=C4,1 +O=NC1=C2C=CC3=CC5=C(C4=CC=C(C=C1)C2=C34)CCCC5,1 +CC(C)N(C(C)C)C(=O)SCC(Cl)=CCl,1 +COC1=CC=C(C=C1)C2OC2C(=O)C3=CC=CC=C3,1 +CC1CNCC(C)O1,1 +CC(C)=C(Cl)C=O,1 +[O-][N+](=O)C3=CC2=C1C=CC(=CC1=CC=C2O3)N(CCCl)CCCl,1 +ClC(=O)CC1=CC=CC=C1,1 +NC3=CC2=NC1=CC=CC=C1C(=C2C=C3)N,1 +C1=CC5=C(C=C1)C4=CC3=C2C=CC=CC2=CC=C3N=C4C=C5,1 +OC1=C4C(=CC=C1)C3=CC=C2C=CC=CC2=C3C=C4,1 +C1=CC4=C(C=C1)C3=CC=C2C=CC=CC2=C3C=C4,1 +[O-][N+](=O)C1=CC=C(C=C1)C=CC2=CC=C(C=C2)Cl,1 +NC1=CC=C(C=C1)NC2=CC=C(C=C2)[N+]([O-])=O,1 +OC1=CC=C(C=C1)C(=O)NN=CC2=CC=C(O2)[N+]([O-])=O,1 +NC3=C2C(C1=CC=CC(=C1C(C2=C(C=C3)N)=O)[N+]([O-])=O)=O,1 +[O-][N+](=O)C1=CC(=C(C=C1)C2=C(C=CC=C2)[N+]([O-])=O)[N+]([O-])=O,1 +OC2=C3C1=CC=CC=C1C4=C(C=CC5=CC=C(C=C2)C3=C45)[N+]([O-])=O,1 +CC1=CC(=C(C=C1)N=NC3=C2C=CC=CC2=CC=C3O)C,1 +OC1=C(C=C(C=C1[N+]([O-])=O)[N+]([O-])=O)[N+]([O-])=O,1 +C1=CC2=C(C=C1)C3=CC=CC4=CC=CC2=C34,1 +CC2C1=C(C=CC=C1)C3=C2C=C(C=C3)F,1 +OC4C=CC3=C2C=CC1=CC=CC=C1C2=CC=C3C4O,1 +CCN(CC)N=O,1 +OC2=C1C=CC=CC1=CC3=CC=CC=C23,1 +[O-][N+](=O)C1=CC=C2C=CC3=C(C=CC4=CC=C1C2=C34)[N+]([O-])=O,1 +OC2C=CC1=C3C=CC4=CC=C(C5=CC=C(C=C1C2O)C3=C45)[N+]([O-])=O,1 +OCC4OC(OC2=C1C(C3=C(OC1=CC(=C2)O)C(=CC=C3O)O)=O)C(O)C(O)C4O,1 +ClCCN(CCCl)P1(=O)OCCCN1CCCl,1 +NC1=C(C=C(C=C1Cl)[N+]([O-])=O)[N+]([O-])=O,1 +OC2C=CC1=C4C(=CC=C1C2O)C3=CC(=CC=C3C=C4)O,1 +OCCN(CCO)C1=CC=C(C=C1)N=NC2=C(C=C(C=C2)[N+]([O-])=O)[N+]([O-])=O,1 +NC2=NC(=C1[NH]C=NC1=N2)NO,1 +CN(C)N,1 +CN2N(C1=CC=CC=C1)C(=O)C(=C2C)N=O,1 +ClCCNC(=O)N(CCCl)N=O,1 +C1=CC2=C(C=C1)C4=C3C(=C2)C=CC=C3C=C4,1 +OCC1=C2C=CC3=CC=CC4=CC=C(C=C1)C2=C34,1 +CC3=CC2=C(C1=CC=CC=C1C(=C2C=C3)C)C,1 +COC3=C(C=C2N=C1C=CC(=CC1=NC2=C3)N)N,1 +BrCC1CO1,1 +CN(C)N=O,1 +[O-][N+](=O)C1=C(C=CC=C1)[N+]([O-])=O,1 +CC(=O)C1=C(C(=C(O1)[N+]([O-])=O)C2=CC=CC=C2)C3=CC=CC=C3,1 +OS(=O)(=O)C1=C2C=CC3=CC=CC4=CC=C(C=C1)C2=C34,1 +C1OC1C2CO2,1 +[O-][N+](=O)C1=CC(=C(C=C1)Br)[N+]([O-])=O,1 +NC1=C(C=C(C(=C1)[N+]([O-])=O)N)Cl,1 +[O-][N+](=O)C1=CC2=CC=C3C=CC=C4CCC(=C1)C2=C34,1 +[O-][N+](=O)C1=C2C=CC3=C(C=CC4=CC=C(C=C1)C2=C34)N=O,1 +CCN(CC)C3=CC=C2N=C1C=CC(=CC1=[O+]C2=C3)N(CC)CC,1 +CCN1CCOCC1,1 +OCCCBr,1 +C1=CC3=C(C=C1)C2=NC=CC=C2C=C3,1 +NC3=C(C=C2N=C1C=CC=CC1=NC2=C3)O,1 +CN(C)C2=C(C1=NC(=C(N=C1C=C2)C)C)C,1 +CC1=CC(=C(C=C1)N)N,1 +NC1=C(C(=CC=C1)N)C(O)=O,1 +OC(=O)C=CC1=CC=C(O1)[N+]([O-])=O,1 +[O-][N+](=O)C1=C(C=CC=C1)SSC(F)=C(Cl)Cl,1 +ONC1=CC3=C(C=C1)C2=CC=CC=C2C3,1 +COC(=O)NC2=NC1=CC(=CC=C1[NH]2)C(=NO)C3=CC=C(C=C3)F,1 +C1=CC2=CC=C3N=CC=C4C=CC(=C1)C2=C34,1 +NC1=C(C=CC(=C1)[N+]([O-])=O)C(O)=O,1 +CN(C)CCCNC2=C1C(=CC=C(C1=NC3=CC=CC=C23)F)[N+]([O-])=O,1 +CC4=C1C=CC=CC1=C3N=C2C=CC=CC2=C(C3=C4C)N,1 +NC4=CC=C3C2=C1C(=CC=CC1=CC=C2)C3=C4,1 +CCC1=C3C(=CC2=CC=CC=C12)C4=C(C=C3)C(O)C(O)C5OC45,1 +ON(C=O)C1=CC=C(C=C1)[N+]([O-])=O,1 +CN(N=O)C(C)=O,1 +BrC(C=O)=CC1=CC=CC=C1,1 +C1OC1COC2=CC(=CC=C2)OCC3CO3,1 +CC1=C(C=C(C=C1)N=C=O)N=C=O,1 +N1C4C1C2=C(C=CC3=CC=CC=C23)C5=C4C=CC=C5,1 +OC(=O)CCCC1=CC=C(C=C1)N(CCCl)CCCl,1 +NCCNCCNCCNCCNCCN,1 +CC(C)NCC2CCC1=C(C=C(C(=C1)CO)[N+]([O-])=O)N2,1 +[O-][N+](=O)C1=CC(=CS1)C(=O)NC2=CC=C(C=C2)Cl,1 +CC1=CC=C(C=C1)N=NNCC2=CC=CC=C2,1 +CNC(=O)OC2=C1C=CC=CC1=CC=C2,1 +CCOC(=O)N(C)C,1 +ClC(=O)C1=C(C=C(C=C1)Cl)Cl,1 +[O-][N+](=O)C2=CC(=C1C(=CC(=CC1=C2)[N+]([O-])=O)[N+]([O-])=O)[N+]([O-])=O,1 +COS(=O)(=O)C(F)(F)F,1 +CC1=CC(=C(C=C1)NO)C,1 +ClC(=O)C1=C(C=CC=C1)C(Cl)=O,1 +CC(=O)C=O,1 +O=C1OC5=C4C3=C1C=C2C=CC=CC2=C3C=CC4=CC=C5,1 +ClCC1=CC=CC=C1,1 +C[N]1C(=NC2=C1C=CC3=NC(=C(C)N=C23)C)N,1 +ClC(CBr)CBr,1 +CC(=O)OC1=C2C=CC3=CC=CC4=CC=C(C(=C1)[N+]([O-])=O)C2=C34,1 +CC1=CC=C[N]2C1=NC3=C(C)C(=CN=C23)N,1 +OC1=C([NH]C2=CC=CC=C12)C4=NC3=C(C=CC=C3)C4=O,1 +OCC1=C4C(=C(C2=CC=CC=C12)CO)C3=CC=CC=C3C=C4,1 +NC1=CC3=C(C=C1)C2=CC=CC=C2O3,1 +CC4=C3C=C2C1=CC=CC=C1C=CC2=CC3=CC=C4,1 +C1CCC(CC1)N2C4C2C3=C(C=CC=C3)C5=C4C=CC=C5,1 +COC1=C(C=CC=C1)N,1 +ONC1=CC=C(C=C1)C2=CC=CC=C2,1 +CN1CC(CBr)CC2C1CC3=C[NH]C4=CC=CC2=C34,1 +CCN(CC)CCNC2=C1C(C3=C(SC1=C(C=C2)C)C=CC=C3)=O,1 +OCC1=C3C=CC4=CC=CC5=CC=C(C2=CC=CC=C12)C3=C45,1 +C1=CC5=C4C(=C1)C2=CC=CC3=CC=CC(=C23)C4=CC=C5,1 +C[N]2C(=NC3=C1N=C(C)C=NC1=CC(=C23)C)N,1 +CNN=O,1 +COC(=O)C(=C)C#N,1 +CN(C)C1=CC=C(C=C1)N=NC3=CC=C2N=CSC2=C3,1 +COP(=S)(OC)SCN2N=NC1=C(C=CC=C1)C2=O,1 +OCC1SCCN1N=O,1 +[O-][N+](=O)C1=C(C(=CC=C1)[N+]([O-])=O)C=O,1 +CC1=CC2=C(C=C1)C(=CC=C2)[N+]([O-])=O,1 +OC1=C(C(=CC=C1)[N+]([O-])=O)[N+]([O-])=O,1 +OC3=C(C2=CC1=CC=CC=C1C(=C2C=C3)O)O,1 +OC1=C4C(=CC=C1)C3=CC2=CC=CC5=C2C(=C3C=C4)C=C5,1 +CN2C(=O)CN=C(C1=C(C=CC=C1)F)C3=C2C=CC(=C3)[N+]([O-])=O,1 +[O-][N+](=O)C1=CC2=C(C=C1)C(=O)OC2=O,1 +COC(=O)C1=CC=C(C=C1)C=NN4N=NC2=C([NH]C3=CC=CC=C23)C4=O,1 +ClCC2=C1C3=CC=C4C=CC=C5C=CC(=CC1=CC=C2)C3=C45,1 +NC1=NC(=CC=C1)N,1 +[O-][N+](=O)C1=CC=C(O1)C=CC(=O)NN=CC2=CC=C(O2)[N+]([O-])=O,1 +OOC1CCCC2=C1C=CC=C2,1 +[O-][N+](=O)C2=CC=C1SN=C(Cl)C1=C2,1 +[O-][N+](=O)C1=CC(=CC=C1)CCl,1 +CC(O)=NO,1 +CN(C)CCNC(=O)C2=C1SC3=C(C(C1=CC=C2)=O)C=CC=C3,1 +COC1=CC=C(C=C1)CNC(=O)C(C)Br,1 +NC3=CC2=NC1=CC=C(C=C1N=C2C=C3)N,1 +OCCC1=C[NH]C2=CC(=CC=C12)[N+]([O-])=O,1 +CC1=C(C=CC=C1)N=NC2=CC(=C(C=C2)N)C,1 +CC1=C(C3=C(C=C1)C(=O)C2=C(C=CC=C2)C3=O)N,1 +[O-][N+](=O)C3=CC2=C1C(=CC=CC1=CC=C2C=C3)[N+]([O-])=O,1 +C2=CC1=NC=CN=C1C=C2,1 +[O-][N+](=O)C1=CC=C(C=C1)CCl,1 +OC(=O)C1=CC=C(C=C1)NC3=C2C=CC(=CC2=NC4=CC=CC=C34)N=[N+]=[N-],1 +COC1=C4C(=CC=C1)C3=C2OCOC2=CC(=C3C=C4)C(O)=O,1 +CC2=[N+](C1=CC=CC=C1[N+](=C2C(=O)NCCO)[O-])[O-],1 +CC(C)(C)C1=CC(=O)C=CC1=O,1 +CN(C)CCCNC2=C1C=C(C=CC1=NC3=CC=CC=C23)[N+]([O-])=O,1 +O=NC2=C3C=CC4=C1C=CC=CC1=CC5=CC=C(C=C2)C3=C45,1 +CC1(CO1)C2=CC=CC=C2,1 +NC2=C1SN=C(C1=CC=C2)Cl,1 +CC2C1=C(C=CC=C1)C3=C2C=C(C(=C3)C)C,1 +CC(O)C1=CC2=CC=C3C=CC=C4C=CC(=C1)C2=C34,1 +[O-][N+](=O)C1=CC(=CS1)C(=O)NC2=CC=C(C=C2)[N+]([O-])=O,1 +C1=CC2=C(C=C1)C4=CC=C5C=CC6=CC3=CC=CC2=C3C4=C56,1 +[O-][N+](=O)C2=CC3=CC=C4C1=CC=CC=C1C=C5C=CC(=C2)C3=C45,1 +CC1=C(C=CC(=C1)[N+]([O-])=O)N,1 +OC1=CC=C(C=C1)N=O,1 +NC2=CC=C1SN=CC1=C2,1 +[N-]=[N+]=C1C=CC(=O)C=C1,1 +O=C2CC(=NC1=CC=CC=C1)C(=O)C3=C2C=CC=C3,1 +[O-][N+](=O)C2=CC1=CC(=CC=C1O2)N(CCCl)CCCl,1 +OC(=O)C(Br)=C(Br)C=O,1 +COC1=C4C(=CC=C1)C3=C2OCOC2=CC5=C3C(=C4)NC5=O,1 +CN(C)N=NC1=CC=C(C=C1)[N+]([O-])=O,1 +C1=CC2=C(C=C1)C5=C(C=C2)C4=C3C=CC=CC3=CC=C4C=C5,1 +COC1=C(C3=C(C(=C1)N)C(=O)C2=C(C=CC=C2)C3=O)N,1 +NC1=CC=C(C=C1)OC2=CC(=C(C=C2)N)N,1 +CC(=O)N1CCCC1C(=O)N(CC(O)=O)N=O,1 +COC1=C(C=CC(=C1)CC2CO2)O,1 +CN(C)CCCNC2=C1C=CC=CC1=NC3=CC=CC=C23,1 +CCC1=C(C3=C(C=C1)C(=O)C2=C(C=CC=C2)C3=O)[N+]([O-])=O,1 +OC5C(O)C2=C1C6(C4=C(C1=CC=C2)C3=C(C=CC=C3)C=C4)OC56,1 +NC(CSC(Cl)=C(Cl)C(Cl)(Cl)Cl)C(O)=O,1 +C[N]2C1=CC=CC=C1C3=CC(=CC=C23)N,1 +NC1=CC=C(C=C1)OC2=C(C=C(C=C2)Cl)Cl,1 +C1=CC3=C(C=C1)C2=CC5=C(C=C2C=C3)C4=CC=CC=C4C=C5,1 +OC1C=CC=CC1O,1 +CCNN=O,1 +S3C1=CC=CC=C1C4=CC=C2C=CC=CC2=C34,1 +CC(=O)OCC1=CC=C(C=C1)N=NC2=CC=C(C=C2)COC(C)=O,1 +CCC4(O)CC(O)C2=C(C=C1C(C3=C(C(C1=C2O)=O)C(=CC=C3)O)=O)C4C(=O)OC,1 +OC5C=CC1=C(C2=CC=C3C=CC(=C4C=CC(=C1)C2=C34)[N+]([O-])=O)C5O,1 +O[N+]([O-])=C=CC1=CC=C(O1)[N+]([O-])=O,1 +NC(CS)C(O)=O,1 +CCC3=C1C4=C(C=CC1=C2C=CC=CC2=C3)C(O)C(O)C5OC45,1 +O=C3[N]2C1=CC=CC=C1N=C2C8=C6C3=CC=C7C5=NC4=CC=CC=C4[N]5C(C(=C67)C=C8)=O,1 +OCCCCl,1 +CCOC1=CC=C(C=C1)NC(=O)CC(C)O,1 +CC1=C(C(=C(C=C1[N+]([O-])=O)[N+]([O-])=O)N)[N+]([O-])=O,1 +ClCC1CO1,1 +CC(C)=CC2C(C(=O)OC1=C(C)C(CC=C)C(=O)C1)C2(C)C,1 +O=NC1=CC=C(C=C1)OC2=CC=CC=C2,1 +[O-][N+](=O)C2=C4C=CC=C5C1=CC=CC=C1C3=CC=CC(=C2)C3=C45,1 +CC(C)N(C(C)C)C(=O)SCC(Cl)=C(Cl)Cl,1 +COC(=O)NC1=CC(=CC=C1)OC(=O)NC2=CC(=CC=C2)C,1 +FC5=C3C=CC=C4C2=C1C=CC=CC1=CC=C2C(=C34)C=C5,1 +ClC(=O)OCC2C1=C(C=CC=C1)C3=C2C=CC=C3,1 +COC4=CC(=O)C1=C(C3=C(C(=N1)C)C2=CC=CC=C2[NH]3)C4=O,1 +CC1=CC(=C(C=C1)N)O,1 +CCOP(=S)(OCC)OC1=N[N](C(C)C)C(=N1)Cl,1 +[O-][N+](=O)C1=CC5=C2C(=C1)CCC4=C2C(=C3CCCCC3=C4)CC5,1 +S=P(N1CC1)(N2CC2)N3CC3,1 +C1=CC4=C(C=C1)C3=CC=C2C=NC=CC2=C3C=C4,1 +CN(C)CCNC(=O)C2=C1NC3=C(OC1=CC=C2)C=CC=C3,1 +CC1=CC=C(C=C1)CCC2CO2,1 +OC4=CC3=C2C=CC1=CC=CC=C1C2=CC=C3C=C4,1 +NC2=C1N=C[N](C1=NC=N2)CC3=CC=CC=C3,1 +OCC(O)CI,1 +NC3=C2N=C1CCCCC1=CC2=CC=C3,1 +CN1CCN(CC1)C4=C2OCN(N3C=C(C(C(=C23)C=C4F)=O)C(O)=O)C,1 +C1=CC4=C(C=C1)C3=CC2=CC=NC=C2C=C3C=C4,1 +CCN(CC)N(O)N=O,1 +COC1=CC4=C(C=C1)C2=NC=CC3=CC(=C(C(=C23)C4=O)OC)OC,1 +ClC(=O)C1=CC=C(C=C1)C(Cl)=O,1 +NC1=CC3=C(C=C1)C2=CC=CC=C2C3,1 +[O-][N+](=O)C2=CC1=C[NH]N=C1C=C2,1 +OCC1OC(C(O)C1O)N(N=O)C2=CC=C(C=C2)[N+]([O-])=O,1 +CCCCCCCCCCSC[N]1C=C[N+](=C1)C,1 +OC4C=CC3=C(C2=CC=C1C=CC=CC1=C2C=C3)C4O,1 +CC2=C1N=CC=CC1=CC=C2,1 +OC1=C(C3=C(C(=C1)O)C(=O)C2=C(C=CC=C2)C3=O)O,1 +NC2=C1C=CC=CC1=NC3=CC=CC=C23,1 +[O-][N+](=O)C1=C2C=CC3=C(C=CC4=CC=C(C=C1)C2=C34)[N+]([O-])=O,1 +BrCC1=CC=CC=C1,1 +ClCN2C(=O)C1=C(C=CC=C1)C2=O,1 +CN(C)C1=CC=C(C=C1)C=CC2=CC=CC=C2,1 +C5=CC4=CC3=C1C=CC=CC1=C2C=CC=CC2=C3N=C4C=C5,1 +ClCC4=C2C=CC=C3C1=CC=CC=C1C(=C23)C=C4,1 +[O-][N+](=O)C4=CC=C3C2=C1C(=C(C=CC1=CC=C2)[N+]([O-])=O)C5=C3C4=CC=C5,1 +COC1=CC4=C(C=C1)C2=C(C(=CC3=CC=NC(=C23)C4=O)OC)OC,1 +CC1=CC(=C(C(=C1)C)N)C,1 +CC2=C1C=CC=CC1=CC3=CC=CC=C23,1 +COP(=S)(OC)OC1=CC=C(C=C1)[N+]([O-])=O,1 +COC1=C(C4=C(C=C1)C3=C2OCOC2=CC5=C3C(=C4)N(C)C(=O)C5=O)OC,1 +ON=C1C=CC(C=C1)=NO,1 +CN(C1=C(C=C(C=C1[N+]([O-])=O)[N+]([O-])=O)[N+]([O-])=O)[N+]([O-])=O,1 +ONC2=CC1=CC=CC=C1C=C2,1 +[O-][N+](=O)C1=CC2=CC=C3C=C(C=C4C=CC(=C1)C2=C34)[N+]([O-])=O,1 +COC5=C2[C]1=CC=C(C1=C(OC2=C4C3CCOC3OC4=C5)O)O,1 +OCC(Cl)CCl,1 +O=NN1CCCCC1,1 +C1=CN=C(C=C1)C2=NC=CC=C2,1 +CC3=C(C1=CC=CC=C1C4=CC=C2C=CC=CC2=C34)[N+]([O-])=O,1 +C[N]1C(=NC2=CC=CC=C12)N,1 +CC(=O)OC1CC5=C4C1=C3C=CC2=CC=CC=C2C3=CC4=CC=C5C,1 +[O-][N+](=O)C1=C(N=C2SC=C[N]12)C3=CC=C(C=C3)Cl,1 +CN2C1=C(C=CC=C1)C(=O)C3=C2C4=C(C=C3O)OC(C4)C(C)=C,1 +[O-][N+](=O)C1=C(C=CC=C1)SSC(Cl)=C(Cl)C(F)(F)F,1 +CC(=O)N(O)C1=CC3=C(C=C1)C2=CC=CC=C2C3,1 +COC1=C(C=C(C=C1)C(=O)NC2=CC=CC=C2)[N+]([O-])=O,1 +CN(C)CCCNC2=C1C(=CC=C(C1=NC3=CC=CC=C23)N(C)C)[N+]([O-])=O,1 +NC1=CC=C(C=C1)Cl,1 +ClC3=CC2=CC1=CC=CC=C1C=C2C=C3,1 +OC(=O)C(Cl)=C(C(Cl)Cl)C(O)=O,1 +ClC(Br)C#N,1 +[O-][N+](=O)C3=C1C=CC=CC1=C2C=CC=CC2=C3,1 +NC1=CC=C(C=C1)OC2=C(C=C(C=C2Cl)Cl)Cl,1 +[O-][N+](=O)C2=CC1=C3C(=CC=C1C=C2)C(=CC=C3)[N+]([O-])=O,1 +FC2=C1N=CC=CC1=CC=C2,1 +CCC(Cl)=[N+](O)[O-],1 +CC(C)(C)CCCCCC(=O)OCC1CO1,1 +CC(=O)NNC1=CC=CC=C1,1 +[O-][N+](=O)C1=CC(=CS1)C(=O)NC2=CC(=CC=C2)Cl,1 +OC2=C(C1=CC=CC=C1C=C2)[N+]([O-])=O,1 +CCN(CC)C(=O)C(Cl)=C(C)OP(=O)(OC)OC,1 +CCC2=C1[NH]C3=C(C1=CC(=C2)O)CCOC3(CC)CC(O)=O,1 +OC3C=CC2=C(C=C1C=CC(=CC1=C2)[N+]([O-])=O)C3O,1 +NC1=CC=C(C=C1)C=CC2=CC=CC=C2,1 +COCC1CO1,1 +O=NN1CCCC1C2=CN=CC=C2,1 +CCN(CC)C(=S)SCC(Cl)=C,1 +NC(=O)NCC=C,1 +O1C5C1C3=C(C2=CC=CC=C2C4=CC=CC=C34)C6=C5C=CC=C6,1 +OC5C(O)C2=C(C1=NC4=C(C=C1C=C2)C3=CC=CC=C3C=C4)C6OC56,1 +CC4=C3C1=CC=CC2=CC=CC(=C12)C3=C(C5=CC=CC=C45)C,1 +O=CCC=O,1 +NC1=C(C=C(C=C1)[N+]([O-])=O)[N+]([O-])=O,1 +CC1=NSC(=C1)N,1 +N(C1=CC=C(C=C1)NC3=CC2=CC=CC=C2C=C3)C5=CC4=CC=CC=C4C=C5,1 +CCCCN1C3C1C2=C(C=CC=C2)C4=C3C=CC=C4,1 +FC5=CC=C4C=C3C2=C1C(=CC=CC1=CC=C2)C3=CC4=C5,1 +CC(=O)OCC1=CC=C(C=C1)[N+]([O-])=O,1 +CN(C)C1=CC=C(C=C1)CC2=CC=C(C=C2)N(C)C,1 +NCCNCCNCCNCCN,1 +[O-][N+](=O)C1=CC3=C(C=C1)C2=C(C=CC=C2)C3=O,1 +CC(=O)N(O)C1=C2C=CC3=CC=CC4=CC=C(C=C1)C2=C34,1 +[O-][N+](=O)C1=CC=C(C=C1)OCC2CO2,1 +C1OC1COC3=CC2=CC=CC=C2C=C3,1 +O=C2C1=C(C=CC=C1)C4=C2C=C3C=CC=CC3=C4,1 +CNC1=CC=C(C=C1)N=NC2=CC=CC=C2,1 +CC2=C1C3=CC=C4C=CC=C5C=CC(=CC1=CC=C2)C3=C45,1 +ClC1=C(N=CC=C1)Cl,1 +[O-][N+](=O)C1=CC(=CC=C1)C#N,1 +CN(C)CCNC(=O)C2=C1OC3=C(C(C1=CC=C2)=O)C=CC=C3,1 +ClCC(CCl)OP(=O)(OC(CCl)CCl)OC(CCl)CCl,1 +COC1=C(C=CC(=C1)CNC(=O)C(C)Br)O,1 +CCN1C=C(C(O)=O)C(=O)C2=C1N=C(N=C2)N3CCNCC3,1 +COP(=O)(OC)OC1=CC(=C(C=C1)[N+]([O-])=O)C,1 +[O-][N+](=O)C1=CC2=C(C=C1)C(=CC3=CC=CC=C23)[N+]([O-])=O,1 +O[N+]([O-])=C=CC1=CC=CC=C1,1 +COC(=O)C4=C2C=CC1=C(C=CC=C1C2=C3OCOC3=C4)OC,1 +COC1=NSC2=CC(=CC=C12)[N+]([O-])=O,1 +ClCCOCC(Cl)=CCl,1 +NC2=C1C(C3=C(C(C1=C(C=C2Br)Br)=O)C=CC=C3)=O,1 +C[N]1C=NC2=C(N)N=CN=C12,1 +C[N]1C=NC2=C1C=CC3=NC=CC=C23,1 +CC2C1=C(C=CC=C1)C3=C2C=CC(=C3)C,1 +[O-][N+](=O)C2=CC=C1C(=NSC1=C2)Cl,1 +[O-][N+](=O)C1=CC(=CS1)C(=O)NC2=CC(=CC=C2)[N+]([O-])=O,1 +ClC2=C1C=CC=CC1=CC3=CC=CC=C23,1 +COC1=C(C=C(C(=C1)Cl)OC)Cl,1 +[O-][N+](=O)C1=CC=C(C=C1)C=NN4N=NC2=C([NH]C3=CC=CC=C23)C4=O,1 +OC(=O)C4=C2C(=CC1=C(C=CC=C1C2=C3OCOC3=C4)O)[N+]([O-])=O,1 +NC(CCC(=O)NNC1=CC=CC=C1)C(O)=O,1 +[O-][N+](=O)C1=CC=C(C=C1)OC=C,1 +CC2(OO)C1=C(C=CC=C1)C3=C2C=CC=C3,1 +[O-][N+](=O)C1=CC=C(C=C1)C=CC2=CC(=CC=C2)C#N,1 +[O-][N+](=O)C1=CC4=C2C(=C1)CCC3=C2C(=CC=C3)CC4,1 +CC2=C1C=C4C(=CC1=CC=C2)C3=CC=CC=C3C=C4,1 +CC2=CC=C1N=C(SC1=C2)C3=CC=C(C=C3)N,1 +N1C2C1C4=C3C2=CC=CC3=CC=C4,1 +CC(C)(C)OC(=O)C(N)CN=[N+]=[N-],1 +[O-][N+](=O)C2=CC1=CC=C(C=C1O2)N(CCCl)CCCl,1 +ON(C=O)C1=CC=C(C=C1)C=CC2=CC=CC=C2,1 +CN(CCCl)CCCl,1 +CC(=O)NC1=CC=C(C=C1)C2=CC=CC=C2,1 +COS(C)(=O)=O,1 +CC2=C4C=CC=C5C=CC3=CC1=CC=CC=C1C(=C2)C3=C45,1 +ClNC1=CC3=C(C=C1)C2=CC=CC=C2C3,1 +CC(=O)NC2=CC1=CC=CN=C1C=C2,1 +[O-][N+](=O)C5=C3C=CC=C4C2=CC1=CC=CC=C1C=C2C(=C34)C=C5,1 +C1OC1CC2=CC=C(C=C2)C3=CC=CC=C3,1 +C[N]2C1=CC=CC=C1C3=CC(=CC=C23)[N+]([O-])=O,1 +CCCCCCOCC1CO1,1 +OCC1=CC2=CC=C3C=CC=C4C=CC(=C1)C2=C34,1 +CCOS(=O)(=O)OCC,1 +BrCC(Br)C1=CC=CC=C1,1 +CCCNN=O,1 +OC2=CC1=CC=CC(=C1C=C2)O,1 +CC1=C(N=C3C(=C1)C2=CC=CC=C2[NH]3)N,1 +OC4=C1C=CC=CC1=C3C=CC2=CC=CC=C2C3=C4,1 +ClC(Cl)(Cl)C1=CC=CC=C1,1 +C=CC=O,1 +CCC(=O)C2=C1C=CC=C(C1=C(C3=C(C=CC=C23)O)O)O,1 +NC2=C3C=CC4=CC1=CC=CC=C1C5=CC=C(C=C2)C3=C45,1 +CN(CC(O)CO)N=O,1 +C1OC1COC3=C2C=CC=CC2=CC=C3,1 +C1OC1COC2=CC=CC=C2,1 +OCC1OC(CC1O)N2C=C(COO)C(=O)NC2=O,1 +CC(Cl)C(Br)CBr,1 +NC2=C1SN=CC1=CC=C2,1 +OC(=O)C=CCl,1 +[O-][N+](=O)C3=CC2=C1C=C(C=CC1=CC=C2C=C3)[N+]([O-])=O,1 +CC1OC1C,1 +CC1=C(C=C(C=C1)C(O)(P(O)(O)=O)P(O)(O)=O)N(CCCl)CCCl,1 +OC(=O)C(Cl)=C(Cl)C=O,1 +COC4=CC(=O)C3=C2[NH]C1=C(CCCC1)C2=CN=C3C4=O,1 +CCN(CC)CCNC2=C1C(C3=C(SC1=C(C=C2)CO)C=CC=C3)=O,1 +CC(=O)OC2=C(OC(C)=O)C4=C(C=CC5=C1C=CC=CC1=C3C=CC=C2C3=C45)[N+]([O-])=O,1 +O[N+]([O-])=CCl,1 +COC1=C(C=CC(=C1)N)NC(C)=O,1 +COC(=O)C(CSCC(C)Br)NC(C)=O,1 +ClCC(=O)NCC1=CC=CC=C1,1 +FC1=CC=C2C(=C1)C=CC3=C2C4=CC=CC5=CC=CC3=C45,1 +CC4=C2C1=CC=CC=C1[NH]C2=C3C(C(=CC(C3=N4)=O)N5CC5)=O,1 +CC(Br)C(=O)NCC1=CC=C(C=C1)Cl,1 +CC1CCCCN1CCCNCC(=O)NC2=C(C(=N[N]2C)C)C(=O)C3=C(C=CC=C3)F,1 +[O-][N+](=O)C1=CC4=C(C=C1)C3=CC=C2CCCCC2=C3CC4,1 +NC1=CC=C(C=C1)C=CC2=CC(=CC=C2)C#N,1 +CCC(=O)OCC1=CC=C(C=C1)[N+]([O-])=O,1 +CC(Br)CBr,1 +CC1=C(C=C(C=C1)[N+]([O-])=O)[N+]([O-])=O,1 +CCCCOC1=CC=C(C=C1)C=NC2=CC=C(C=C2)CC,1 +OCC1=C(C=C(C=C1)[N+]([O-])=O)[N+]([O-])=O,1 +OC1COC(C(O)C1O)N(N=O)C2=CC=C(C=C2)[N+]([O-])=O,1 +CN(CC1=CC=CC=C1)N=O,1 +NC(=O)C1=CSC(=C1)[N+]([O-])=O,1 +OC2=C1C(C3=C(C(C1=C(C=C2)[N+]([O-])=O)=O)C(=CC=C3O)[N+]([O-])=O)=O,1 +OC2C1=C(C=CC=C1)OC3=C2C=CC=C3,1 +OC1=C(C=C(C=C1)Cl)C(=O)NC2=C(C=C(C=C2)[N+]([O-])=O)Cl,1 +ClC2=C1N=CC=CC1=CC=C2,1 +COC1=CC3=C(C(=C1)O)C(=O)C2=C(C=C(C=C2O)C)C3=O,1 +CC(C)(C)OC(=O)NN=CC2=[N+](C1=CC=CC=C1[N+](=C2)[O-])[O-],1 +CC(=O)N(O)C2=CC1=CC=CC=C1C=C2,1 +CCOC1=CC(=O)C(CC1=O)=NC(C)=O,1 +O1C5C1C2=C(C=C4C(=C2)C3=CC=CC=C3C=C4)C6=C5C=CC=C6,1 +C1=CC4=C(C=C1)C3=CC2=CC=NC=C2C=C3C5=CC=CC=C45,1 +CC1=CC=C(C=C1)CC2CO2,1 +OC(=O)CC1=C(C=CC=C1)[N+]([O-])=O,1 +COC1=C(C=CC(=C1)N)N,1 +NC2=C1C=CC=CC1=CC3=CC=CC=C23,1 +COC1=C(C4=C(C=C1)C3=C2OCOC2=CC5=C3C(=C4)N(C)CC5)OC,1 +CC2=CC1=CC=CN=C1C=C2,1 +C[N]2C(=NC3=C1N=C(C)C(=NC1=CC(=C23)C)C)N,1 +OC(=O)CC=[N+](O)[O-],1 +OC1=CC(=C(C=C1)O)O,1 +OC3C=CC2=C1N=CC=CC1=CC=C2C3O,1 +COC1=CC5=C(C=C1)C3=C2OCOC2=CC4=CC=NC(=C34)C5=O,1 +OC(=O)C(Cl)=C(C(Cl)Cl)C(Cl)Cl,1 +CC2=C[N]1C(=C(N=C1S2)C3=CC=C(C=C3)[N+]([O-])=O)[N+]([O-])=O,1 +COC1=CC3=C(C=C1)OC2=C(C(=CC(=C2)OC)OC)C3=O,1 +[O-][N+](=O)C1=CC=C(C=C1)C=CC=O,1 +OCC1=C4C(=CC2=CC=CC=C12)C3=CC=CC=C3C=C4,1 +NC1=CC=C(C=C1)C=CC2=CC=C(C=C2)Cl,1 +NC1=CC3=C(C=C1)C2=CC=CC=C2C=C3,1 +CC(=O)N(O)C1=CC=C(C=C1)OC2=CC=C(C=C2)Cl,1 +CCCN(N=O)C(N)=O,1 +NC1=CC=C(C=C1)C2=CC=C(C=C2)C3=CC=C(C=C3)N,1 +CC(=O)NC1=CC3=C(C=C1)C2=CC=CC=C2C3,1 +O=NC1=CC(=CC=C1)C2=CC=CC=C2,1 +C5CC4=C(C3=CC2=C1C=CC=CC1=CC=C2N=C3C=C4)C=C5,1 +O=C2C1=C(C=CC=C1)C4=C3C2=CC=CC3=CC=C4,1 +COC1=CC=C(C=C1)N,1 +NC(CCC(=O)NNC1=CC=C(C=C1)CO)C(O)=O,1 +ClC1=CC(=C(C=C1)C(Cl)(Cl)Cl)Cl,1 +[O-][N+](=O)C2=C3C=CC4=CC1=CC=CC=C1C5=CC=C(C=C2)C3=C45,1 +OC1=C(C=C(C=C1)C2=CC(=CC=C2)[N+]([O-])=O)[N+]([O-])=O,1 +CC(C)CNC(=O)C=CC1=CC=C(O1)[N+]([O-])=O,1 +FC2=C1C=CC=NC1=CC=C2,1 +CC(C)CC(=O)OC2OC=C(COC(C)=O)C3=CC(OC(=O)CC(C)C)C1(CO1)C23,1 +[O-][N+](=O)C1=CC=C(C=C1)C=CC2=CC=CC=C2,1 +[O-][N+](=O)C2=C1SN=CC1=CC=C2,1 +[O-][N+](=O)C1=CC=C(C=C1)[N+]#N,1 +CC3=C2C1OC1C5=C(C2=CC4=CC=CC=C34)C=CC=C5,1 +CC1=C(C(=C(C=C1)[N+]([O-])=O)C)[N+]([O-])=O,1 +NC2=C1N=C[NH]C1=NC=N2,1 +OC2=C1N=CC=CC1=CC=C2,1 +[O-][N+](=O)C1=CC=C(C=C1)C=O,1 +NC(NC1=CC=CC=C1)=NC2=CC=CC=C2,1 +CCC2=C1[NH]C3=C(C1=CC=C2O)CCOC3(CC)CC(O)=O,1 +OC2=C(C1=C(C3=C(C(=C1C=C2)O)C(=O)C=CC3=O)O)O,1 +CC(=O)OCC1=C3C=CC4=CC=CC5=CC=C(C2=CC=CC=C12)C3=C45,1 +NC1=CC3=C(C=C1)C(=O)C2=C(C=CC=C2)C3=O,1 +CC(O)CN(CC(C)=O)N=O,1 +OC6C1OC1C5=C4C=C2C=CC=C3C=CC(=C23)C4=CC=C5C6O,1 +CC1=CC5=C4C(=C1)C3=CC2=CC=CC=C2C=C3C4=CC=C5,1 +ClCC2=C4C=C1C=CC=CC1=C5C=CC3=CC=CC(=C2)C3=C45,1 +[O-][N+](=O)C3=CC=C2OC1=CC=CC=C1C2=C3,1 +C2=CC1=CC4=C(C=C1C=C2)C3=NC=CC=C3C=C4,1 +NC2=C(C=C1C=CC=CC1=C2)N,1 +ClC2=C1C=CC=NC1=CC=C2,1 +COC(=O)NC2=NC1=CC=C(C=C1[NH]2)C(=O)C3=CC=CC=C3,1 +OC(CCl)CCl,1 +NC1=CC=C(C=C1)C2=CC=CC=C2,1 +OC(=O)C(Cl)=C(C=O)C(Cl)Cl,1 +[O-][N+](=O)C4=C1C=CC=CC1=C3C=CC2=CC=CC=C2C3=C4,1 +COP(=S)(OC)SCN2C(=O)C1=C(C=CC=C1)C2=O,1 +CNC(=O)N(O)C(C)=O,1 +CC(=O)NNC1=CC=C(C=C1)CO,1 +[NH]2C1=CC=CC=C1N=C2C3=CSC=N3,1 +CCOCC1CO1,1 +CN(C)C1=CC=C(C=C1)N=NC2=CC=C(C=C2)N(C)C(C)=O,1 +CC(C)(OO)C1=CC=CC=C1,1 +C(SSCC1=CC=CC=C1)C2=CC=CC=C2,1 +CCC(=O)C(=O)CC,1 +ClCCSCC1=CC=CC=C1,1 +ClCCNCCCNC1=C4C(=NC2=CC=CC=C12)C3=NC=CC=C3C=C4,1 +CC(C)(O)CCC2=C1OC3=C(C(C1=C(C=C2)O)=O)C(=C4C(=C3)OC5OC=CC45O)O,1 +NC(=N)NC#N,1 +BrCBr,1 +CN(C)N=NC1=CC=C(C=C1)C,1 +CN(C)CCNC(=O)C2=CC=CN3C(=O)C1=C(C=CC=C1)N=C23,1 +COC1=CC=C(C=C1)CC2CO2,1 +COC1=C(C=C(C=C1)CNC(=O)C(C)Br)OC,1 +ClC1=C(C=C(C=C1)C(Cl)(Cl)Cl)Cl,1 +[O-][N+](=O)C1=CC(=C(C=C1)SC#N)[N+]([O-])=O,1 +C1=NC=CC(=C1)C2=CC=NC=C2,1 +NNC1=CC=C(C=C1)[N+]([O-])=O,1 +OC1OC(=O)C=C1CCl,1 +NC3=C2C(=C1C(C=CC(C1=C(C2=C(C=C3)N)O)=N)=N)O,1 +CN(C)CCCNC2=C1C=CC(=CC1=NC3=CC=CC=C23)[N+]([O-])=O,1 +COC5=C2[C]1=CC=C(C1=C(OC2=C4C3C=COC3OC4=C5)O)O,1 +COC1=NSC2=CC(=CC=C12)N,1 +ClCCl,1 +OC1=CC(=C(C=C1)[N+]([O-])=O)[N+]([O-])=O,1 +C1CS1,1 +C1OCC2=C1C=CC=C2,1 +OCCNCCNC3=C2C(=C1C(C=CC(C1=C(C2=C(C=C3)NCCNCCO)O)=O)=O)O,1 +CC2C1=C(C=CC=C1)C3=C2C=CC=C3C,1 +[O-][N+](=O)C1=CC(=CS1)C(=O)NC2=C(C=CC=C2)[N+]([O-])=O,1 +[O-][N+](=O)C1=CC(=C(C=C1)Cl)Cl,1 +O=C2N(N=CC1=CC=CC=C1)N=NC3=C2[NH]C4=CC=CC=C34,1 +CC4=CC3=C(C2=CC=C1C=CC=CC1=C2N=C3C=C4)C,1 +C5=CC4=CC3=C1C=CC=CC1=C2C=CC=CC2=C3C=C4C=C5,1 +COC(=O)C2=C1C(C5=C(OC1=CC=C2)C3=C(OC4OC=CC34)C=C5OC)=O,1 +CC3=CC2=C(C1=CC=CC=C1C=C2C=C3)C,1 +C[N]2C1=CC(=CN=C1N=C2[N+]([O-])=O)C3=CC=CC=C3,1 +NC3=C(C=C2N=C1C=CC=CC1=NC2=C3)N,1 +COC2=C1C=C(OC1=C(C=C2)N(CCCl)CCCl)[N+]([O-])=O,1 +C2CCC1OC1C2,1 +OC6C1OC1C5=C4C2=CC=CC3=CC=CC(=C23)C4=CC=C5C6O,1 +OCCNC1=CC=C(C=C1)N=NC2=CC=C(C=C2)NCCO,1 +O=C(NC1=CC3=C(C=C1)C2=CC=CC=C2C3)C4=CC=CC=C4,1 +CC2=CC(=O)C1=C(C=CC=C1)C2=O,1 +CC(C)=CC3C(C(=O)OCC1=CC(=CC=C1)OC2=CC=CC=C2)C3(C)C,1 +CC(=C)C2=CC=C(C)C1=CC=C(CO)C1=C2,1 +O=C2C1=C(C=CC=C1)C3=C2C=CC4=C3C=CC=C4,1 +CCC(C)OS(C)(=O)=O,1 +CCCC(=O)C2=C1C=CC=C(C1=C(C3=C(C=CC=C23)O)O)O,1 +OC3C=CC2=C1C=C5C(=CC1=CC=C2C3O)C4=CC=CC=C4C=C5,1 +O=C2C1=C(C=CC=C1)C(=O)C3=C2C=CC=C3[N+]#N,1 +C1OC1COC2=C(C=CC=C2)CC3=CC=CC=C3,1 +NC4=C2C=CC=C3C1=CC=CC=C1C(=C23)C=C4,1 +CC(O)C(=O)NCCO,1 +CC3=C2C1=CC=CC=C1C=CC2=C(C4=CC=CC=C34)CCl,1 +COC3=C2N=C1OC=CC1=C(C2=CC4=C3OCO4)OC,1 +ClC(Cl)C(=O)C(Cl)(Cl)Cl,1 +C[N]2C(=NC3=C1N=C(C)C=NC1=CC(=C23)CO)N,1 +COC1=C(C=CC(=C1)C2=CC(=C(C=C2)N=C=O)OC)N=C=O,1 +CC2=C3C=CC4=C1C=CC=CC1=CC5=CC=C(C=C2)C3=C45,1 +CCCCN(CCO[N+]([O-])=O)[N+]([O-])=O,1 +ClC(=C)C=O,1 +COC4=C(C=C3C2=C1OCOC1=CC5=C2C(CC3=C4)N(C)CC5)OC,1 +CC(=O)N(O)C1=CC=C(C=C1)OC2=CC=CC=C2,1 +OC(=O)C1=C(C=CC=C1)[N+]([O-])=O,1 +[O-][N+](=O)C1=C3C=CC=C4C5=C(C2=CC=CC(=C1)C2=C34)CCCC5,1 +CC(C)OC(=O)C=CC1=CC=C(O1)[N+]([O-])=O,1 +OC1=C2C=CC3=C(C=CC4=CC=C(C=C1)C2=C34)[N+]([O-])=O,1 +CC1=CC(=C(C=C1)N)C,1 +OC1=CC=C(C=C1)NC2=C(C=C(C=C2)[N+]([O-])=O)[N+]([O-])=O,1 +CC2=C(C1=CC=CC=C1C=C2)[N+]([O-])=O,1 +OC5C=CC4=C(C=C3C1=CC=CC2=CC=CC(=C12)C3=C4)C5O,1 +[O-][N+](=O)C1=C(C=CC=C1)C=CC=O,1 +NC1=CC=C(C=C1)C=CC2=CC=C(C=C2)C#N,1 +OC(=O)C1=CC=C(C=C1)[N+]([O-])=O,1 +CN(CC1=CC(=CC=C1)C#N)N=O,1 +CC1=C(C(=CC(=C1)N)[N+]([O-])=O)N,1 +OS(=O)(=O)C1=CC(=O)C(=O)C2=C1C=CC=C2,1 +COC1=CC(=CC=C1)C=CC2=CC=C(C=C2)[N+]([O-])=O,1 +CC(=O)NC1=CC=C(C=C1)OC2=CC=C(C=C2)N,1 +CC1=CC3=C(C(=C1)O)C(=O)C2=C(C=C(C=C2O)O)C3=O,1 +ONC2=C1N=C[NH]C1=NC=N2,1 +[O-][N+](=O)C1=CC3=C(C=C1)C2=C(C=CC=C2C=C3[N+]([O-])=O)[N+]([O-])=O,1 +CCN1N=C(C(O)=O)C(=O)C3=C1C=C2OCOC2=C3,1 +CN(C)C1=CC=C(C=C1)N(C)C,1 +[O-][N+](=O)C1=CC(=CC=C1)C2=C(C=C(C=C2)[N+]([O-])=O)[N+]([O-])=O,1 +CCNC1=CC(=CC=C1)O,1 +NC1=CC(=C(C=C1)CC2=C(C=C(C=C2)N)[N+]([O-])=O)[N+]([O-])=O,1 +NC2=C1C=CC=NC1=CC=C2,1 +FC2=C1C=CC=NC1=C(C=C2)F,1 +NC1=CC3=C(C=C1)C2=CC=C(C=C2C3)[N+]([O-])=O,1 +[O-][N+](=O)C1=CC4=C2C1=CC=CC2=CC5=C3C=CC=CC3=CC=C45,1 +COC1=CC=C(C=C1)CCC2CO2,1 +NC3=CC=C2[NH]C1=CC=CC=C1C2=C3[N+]([O-])=O,1 +COC3=CC=C2[NH]C1=C(C)C=C(N)C(=C1C2=C3)C,1 +O=NC1=C(C=CC=C1)C2=CC=CC=C2,1 +CC2=NC1=CC=CC=C1C=C2,1 +OC3C(O)C2=C(C1=NC=CC=C1C=C2)C4OC34,1 +ClCC(Cl)CCl,1 +COC1OC(=O)C(=C1C(Cl)Cl)Cl,1 +CC1=CC(=CC=C1)C(Cl)=O,1 +CC2=C[N]1C(=C(N=C1S2)C3=CC=C(C=C3)[N+]([O-])=O)N=O,1 +COC1=C(C=C(C=C1)C)N,1 +COC1=CC=C(C=C1)C=CC2=CC=C(C=C2)N,1 +OC(=O)CCOP(O)(=N)N(CCCl)CCCl,1 +S=C=NC2=C1C=CC=CC1=CC=C2,1 +COC1=CC=C(C=C1)C(Br)=CC(O)=O,1 +CCOC1=C(C=C(C=C1)N)N,1 +CN(C)C1=CC=C(C=C1)N=NC2=CC=C(C=C2)NC(C)=O,1 +CC(=O)N(O)C1=CC=C(C=C1)OC2=C(C=C(C=C2)Cl)Cl,1 +C[N]2C(=NC3=C1N=CC=NC1=CC(=C23)C)N,1 +[O-][N+](=O)C(Br)(Br)Br,1 +OCCN(CCO)C2=C1C=CC=CC1=NC(=N2)C3=CC=C(S3)[N+]([O-])=O,1 +CC1(C)CC2C(O)(C1)C=C(C=O)C34CC23C(=O)OC4O,1 +NC3=C2N=C1C=CC=C(C1=NC2=CC=C3)N,1 +OC4C=CC3=C2C=C1C=CC=CC1=C(C2=CC=C3C4O)Cl,1 +[O-][N+](=O)C2=CC=C1SN=CC1=C2,1 +OC2C=CC1=C3C=CC4=CC=CC5=CC=C(C=C1C2O)C3=C45,1 +[O-][N+](=O)C1=CC3=C(C=C1)C2=CC(=CC=C2C=C3)[N+]([O-])=O,1 +[O-][N+](=O)C2=C3C=CC4=C1C=CC=CC1=CC5=CC=C(C=C2)C3=C45,1 +[O-][N+](=O)C1=CC3=C(C=C1)C2=CC=CC=C2[NH]3,1 +NC1=C(C=C(C=C1Cl)[N+]([O-])=O)Cl,1 +S=C=NCCC1=CC=CC=C1,1 +CCC=CC=CC=CC=COCC(O)CO,1 +[O-][N+](=O)C1=C2C=CC3=CC5=C(C4=CC=C(C=C1)C2=C34)CCC=C5,1 +[O-][N+](=O)C2=C3C=CC4=CC=CC5=C1CCCCC1=C(C(=C2)[N+]([O-])=O)C3=C45,1 +C1CO1,1 +CN2C1=C(C=C(C(=C1)C)C)N=C3C(=O)NC(=O)N=C23,1 +OC(=O)CC1=CC=C(C=C1)[N+]([O-])=O,1 +CC1=C(C=CC2=CC=CC=C12)[N+]([O-])=O,1 +CC(=O)ON(C(C)=O)C1=CC=C(C=C1)C2=CC=CC=C2,1 +O5C6C=CC4=C3C=C1C=CC=C2C=CC(=C12)C3=CC=C4C56,1 +NC(=O)C1=C(C=C(C(=C1)N2CC2)[N+]([O-])=O)[N+]([O-])=O,1 +OCC(Br)=C(Br)CO,1 +OC1=CC3=C(C(=C1)O)C(=O)C2=C(C(=CC=C2O)O)O3,1 +[O-][N+](=O)C1=CC3=C(C=C1)OC2=C(C=CC(=C2)[N+]([O-])=O)O3,1 +OC2C=CC1OC1C2O,1 +[O-][N+](=O)C1=CC(=CC=C1)S(=O)(=O)OCC2CO2,1 +[O-][N+](=O)C1=CC=C(O1)C=NN2CC(=O)NC2=O,1 +CC1(CO1)C2=CC=C(C=C2)C#N,1 +FC5=C4C=C3C1=CC=CC2=CC=CC(=C12)C3=CC4=CC=C5,1 +OCC(O)CCl,1 +CC1=C(C=C(C=C1[N+]([O-])=O)[N+]([O-])=O)[N+]([O-])=O,1 +CCC1(C(=O)NC(=O)NC1=O)C2=CC=CC=C2,1 +[O-][N+](=O)OCC(CO[N+]([O-])=O)O[N+]([O-])=O,1 +CC(=C)C(=O)OCC(Br)CBr,1 +CN(C)CCNC(=O)C3=C2C=C1C=CC=CC1=NC2=CC=C3,1 +NC1=CC=C(C=C1)C=CC2=CC(=CC=C2)N,1 +CC1=CC=C(C=C1)C=CC2=CC=C(C=C2)[N+]([O-])=O,1 +CCCCOC3=NC2=C(C1=CC=C(C=C1N=C2C=C3)Cl)NCCCN(CC)CCCl,1 +OCC=CCl,1 +OCC(O)C(O)C(O)C(O)C1SCCN1N=O,1 +C1OC1COC2=NSC3=CC=CC=C23,1 +C1OC1COC2=CC=C(C=C2)CC3=CC=CC=C3,1 +CN(CCC#N)C1=CC=C(C=C1)N=NC2=CC=CC=C2,1 +[O-][N+](=O)C1=CC(=C(C(=C1)[N+]([O-])=O)NC2=C(C=C(C=C2[N+]([O-])=O)[N+]([O-])=O)[N+]([O-])=O)[N+]([O-])=O,1 +C5CC1=C(C2=CC=C3C=CC=C4C=CC(=C1)C2=C34)C=C5,1 +CCCCOC1=CC=C(C=C1)N=O,1 +CC(C)(C)OCC1CO1,1 +OC6C=CC5=C3C1=CC=CC=C1C4=CC2=CC=CC=C2C(=C34)C=C5C6O,1 +CC1=CC4=C(C=C1)C3=CC2=CC=CC=C2C=C3C=C4,1 +[O-][N+](=O)C3=CC=C2[NH]C1=CC=C(C=C1C2=C3)[N+]([O-])=O,1 +NC1=C3C=CC=C4C=CC2=CC=CC(=C1)C2=C34,1 +CCBr,1 +C1COC1,1 +[O-][N+](=O)C1=C3C=CC=C4C=CC2=CC=CC(=C1)C2=C34,1 +C(CC1=CC=C(C=C1)C2=CC=CC=C2)C3CO3,1 +ClC(=O)C1=CC(=CC=C1)Cl,1 +CC(C)=CCC2=C1OC3=C(C(C1=C(C=C2)O)=O)C(=C4C(=C3)OC5OC=CC45O)O,1 +COC1=CC=C(C=C1)[N+]([O-])=O,1 +CC1(C)CC3=C(C1)C(C=O)C2(CC2(C)C3O)C=O,1 +[O-][N+](=O)C2=CC1=NC3=C(N=C1C=C2)C(=CC=C3)[N+]([O-])=O,1 +CC1=C(C=C(C=C1)N)N,1 +OC(=O)C1=C(C=C(C=C1)[N+]([O-])=O)[N+]([O-])=O,1 +CNC2=C1C(C3=C(C(C1=C(C=C2)NCCO)=O)C=CC=C3)=O,1 +[O-][N+](=O)C4=C3C1=CC=CC=C1C2=CC=CC5=C2C3=C(C=C4)C6OC56,1 +COC2=NSC3=CC=C(OCC1CO1)C=C23,1 +CCCC(=C)C=O,1 +C1=CC3=C(C=C1)C2=CC5=C(N=C2C=C3)C4=CC=CC=C4C=C5,1 +NC1=C(C=C(C=C1Br)[N+]([O-])=O)[N+]([O-])=O,1 +OCC1CO1,1 +ClC1=CC=C(C=C1)C=NN4N=NC2=C([NH]C3=CC=CC=C23)C4=O,1 +O[N+]([O-])=C(Cl)Cl,1 +NC(=O)CNC(=O)C=[N+]=[N-],1 +OC2=C1C(C3=C(C(C1=CC=C2)=O)C=CC=C3)=O,1 +CC1=C(C=C(C=C1)[N+]([O-])=O)N,1 +CC1=NC(=CN=C1)C,1 +NC3=C2C=C1C=CC=CC1=CC2=CC=C3,1 +NC1=CC=C(C=C1)C2=CC(=C(C(=C2)Cl)N)Cl,1 +BrCC(Br)COC(=O)C=C,1 +O=NC1=CC=C(C=C1)SC2=CC=CC=C2,1 +ClC(=O)C1=C(C=CC=C1)Cl,1 +NC1=CC=C(C=C1)OC2=CC=CC=C2,1 +O=CCCCC=O,1 +COC2=CC=C1OC(=CC1=C2N(CCCl)CCCl)[N+]([O-])=O,1 +C=CC(=O)OCC1CO1,1 +[NH]1N=NC2=CC=CC=C12,1 +OC3C=CC2=C(C1=CC=CC=C1C=C2C3O)[N+]([O-])=O,1 +COC1=C(C=C(C=C1)CC2=C(N=C(N=C2)N)N)OC,1 +CC(=O)NC3=C2C1=CC=CC=C1CC2=CC=C3,1 +CC1(CO1)C2CO2,1 +NC(=O)C1CO1,1 +NC(=S)NN=C1C=CC(C=C1)=NN=C(N)N,1 +ClC(C(Cl)=O)C1=CC=CC=C1,1 +NC1=CC=C(C=C1)N=NC2=CC=C(C=C2)N,1 +[O-][N+](=O)C1=CC=C(O1)C=NN2CCOC2=O,1 +[O-][N+](=O)C3=C2C=CC1=CC=CC4=C1C2=C(C=C3)C5OC45,1 +[O-][N+](=O)C3=CC2=NC1=CC=C(C=C1N=C2C=C3)[N+]([O-])=O,1 +NC2=C1N=C[N](C1=NC=N2)C3=CC=C(C=C3)[N+]([O-])=O,1 +C1=CN=C(C=C1)C2=NC(=CC=C2)C3=NC=CC=C3,1 +NC1=C(C=C(C=C1)C2=CC(=C(C=C2)N)Cl)Cl,1 +C[N]3C2=CC=C1N=CC=CC1=C2N=C3[N+]([O-])=O,1 +[O-][N+](=O)C1=CC=C(C=C1)C=CC2=CC(=CC=C2)[N+]([O-])=O,1 +CC2=C1C=CC=CC1=C(C3=CC=CC=C23)CBr,1 +NC1=CC=C(C=C1)C=C,1 +CC1=C(C=CC(=C1)Cl)N,1 +NC(CSC(Cl)=C(Cl)Cl)C(O)=O,1 +OCC4=C2C1=CC=CC=C1C=CC2=C3C=CC=CC3=C4,1 +NC2=NC1=CC=CC=C1C=C2,1 +CCCCON=O,1 +[O-][N+](=O)C1=CC=C(C=C1)Br,1 +C[N]2C1=CC=CC=C1C(=C2C3=CC=CC=C3)N=NC4=[N+](C=CS4)C,1 +CC1=C(C(=C(C(=C1)N)C)[N+]([O-])=O)N,1 +OC1=CC3=C(C(=C1)O)C(=O)C2=C(C=CC=C2)C3=O,1 +[O-][N+](=O)C1=CC3=C(C=C1)C2=CC(=CC=C2C(=C3)[N+]([O-])=O)[N+]([O-])=O,1 +OCC3=C2C1=CC=CC=C1C=CC2=C(C4=CC=CC=C34)COS(O)(=O)=O,1 +ClP(=O)(N1CCOC1=O)N2CCOC2=O,1 +[O-][N+](=O)C1=CC3=C(C=C1)C2=CC=C(C=C2C3)[N+]([O-])=O,1 +OCCCCCl,1 +CC1=C(C=C(C=C1[N+]([O-])=O)N)[N+]([O-])=O,1 +CC(C)CON=O,1 +ClC2=C1C=CC=CC1=NC=C2,1 +[O-][N+](=O)C3=CC2=NC1=CC(=CC=C1N=C2C=C3)[N+]([O-])=O,1 +C1=C2C=CC3=CC=C4C=CC5=CC=C6C=CC(=C1)C7=C2C3=C4C5=C67,1 +NC(CS)C(=O)NCC(O)=O,1 +[O-][N+](=O)C1=CC(=CC=C1)C=O,1 +C[N]1C(=NC2=NC=C(C=C12)C3=CC=CC=C3)NO,1 +[O-][N+](=O)C5=CC=C4C3=C2C(=CC1=CC=CC=C1C2=CC=C3)C4=C5,1 +OS(=O)(=O)C1=CC3=C(C=C1)C(=O)C2=C(C=CC=C2C3=O)[N+]([O-])=O,1 +ClCCNCCCl,1 +BrCC1=C4C(=CC2=CC=CC=C12)C3=CC=CC=C3C=C4,1 +CC(C)(C1=CC=C(C=C1)OCC2CO2)C3=CC=C(C=C3)OCC4CO4,1 +CC(=O)NC1=CC=C(C=C1)C(=O)CCl,1 +CC3=C2[NH]C1=CC=C(N)C=C1C2=C(C)C4=CN=CC=C34,1 +NC1=CC=C(C=C1)SC2=CC=C(C=C2)N,1 +COC4=CC3=C1N=CC=C2C=C(C(C(=C12)C(=C3C=C4)O)=O)OC,1 +CC1(C)CC(N)CC(C)(C)N1O,1 +ClCC2=C1C=CC=CC1=CC3=CC=CC=C23,1 +[O-][N+](=O)C4=C2C=CC=C3C1=C(C=CC=C1C(=C23)C=C4)[N+]([O-])=O,1 +COC5=C2[C]1=C(C=C(C1=C(OC2=C4C3C=COC3OC4=C5)O)O)O,1 +CCOC(=O)C=CC1=CC=C(O1)[N+]([O-])=O,1 +COCC(O)C[N]1C=C(N=C1Cl)[N+]([O-])=O,1 +ClC1=CC=C(C=C1)CCC2CO2,1 +O=C2OC1=C(C=CC=C1)C=C2,1 +CC(O)C1=C2C=CC3=CC=CC4=CC=C(C=C1)C2=C34,1 +C1=CC2=CC=C3C=NC=C4C=CC(=C1)C2=C34,1 +CC2=C1C=CC=CC1=C(C3=CC=CC=C23)CCl,1 +OC5=CC4=C2C=C1C=CC=CC1=CC2=C3C=CC=CC3=C4C=C5,1 +[O-][N+](=O)C1=CC=C(C=C1)COC(=O)C2=CC=CC=C2,1 +CC(Br)C(N)=O,1 +[O-][N+](=O)C3=C2C(C(C1=CC=CC4=C1C2=C(C=C3)C=C4)=O)=O,1 +C[N]1C(=NC2=C1C=CC3=NC(=CN=C23)C)N,1 +NC4=C2C1=CC=CC=C1C3=CC=CC(=C23)C=C4,1 +C[N]2C=C1C=CC(=CC1=N2)[N+]([O-])=O,1 +[O-][N+](=O)C1=CC=C(O1)C=NN2CCNC2=O,1 +O=C3C2=C(C1=CC=CC=C1C=C2)C4=C3C=CC5=C4C=CC=C5,1 +OC2=C1N=CC=CC1=C(C=C2)S(O)(=O)=O,1 +OC1=CC3=C(C=C1)OC2=C(C(=CC(=C2)O)O)C3=O,1 +CN(CCCC(=O)C1=CN=CC=C1)N=O,1 +CN(C)C3CC2=C1C(=CC=CC1=CC=C2)C3,1 +CC4=C3C2=CC=C1C=CC=CC1=C2C=CC3=CC=C4,1 +CCN(N=O)C(N)=O,1 +CN(C)C1=CC=C(C=C1)N=NC3=CC=C2[NH]N=CC2=C3,1 +CC1=C(C=CC=C1)C2=CC(=C(C=C2)N)C,1 +C1OC1COC3=C2SN=CC2=CC=C3,1 +ONC1=CC=C(C=C1)[N+]([O-])=O,1 +COC1=C(C=C(C(=C1)N)[N+]([O-])=O)N,1 +CN(C)C(=O)N(C)C=O,1 +ClC(Cl)C(C=O)=C(Cl)Cl,1 +NC1=CC(=CC=C1)N,1 +CC4=CC3=C(C2=CC=C1C=CC=CC1=C2N=C3C(=C4)C)C,1 +CC(=O)NC1=C(C=C(C=C1)CC2=CC(=C(C=C2)N)Cl)Cl,1 +CC(=O)NC1=CC=C(C=C1)NC2=CC=C(C=C2)[N+]([O-])=O,1 +[O-][N+](=O)C1=CC=C(C=C1)OC2=CC=C(C=C2)N=C=S,1 +CC1=CC=C(C=C1)N(CCO)CCO,1 +CC1=CC=C(C=C1)C=CC2=CC=C(C=C2)N,1 +[O-][N+](=O)C2=C3C=CC4=CC=C(C5=C1CCCCC1=C(C=C2)C3=C45)[N+]([O-])=O,1 +CC(=O)OCC1=CC=CO1,1 +NC1=C(C(=CC(=C1)[N+]([O-])=O)[N+]([O-])=O)O,1 +NC3=C2C(=C1C=CC=CC1=C(C2=C(C=C3)N)O)O,1 +CC(=O)C1=CC=CO1,1 +CN(N=O)C(N)=O,1 +C1C5=C4C3=C1C=C2C=CC=CC2=C3C=CC4=CC=C5,1 +[O-][N+](=O)C1=CC3=C(C=C1)OC2=C(C=C(C=C2)[N+]([O-])=O)O3,1 +OC(=O)C1=C(C(=C(O1)[N+]([O-])=O)C2=CC=CC=C2)C3=CC=CC=C3,1 +CC4=C(C=C3C(=C2C=CC1=CC=CC=C1C2=NC3=C4)C)C,1 +NC2=C1[NH]C=NC1=NC(=N2)C3=CC=C(C=C3)[N+]([O-])=O,1 +BrCC(Br)C=O,1 +[O-][N+](=O)C2=C1C=CC=CC1=CC3=CC=CC=C23,1 +OC1=CC=C(C=C1)C2=CC=CC=C2,1 +CC(=O)C=CC1=CC=CC=C1,1 +CC2=C4C1=CC=CC=C1C=C5C=CC3=CC=CC(=C2)C3=C45,1 +CC1=CC=C(C=C1)N(N)C2=CC=C(C=C2)C,1 +COC1=C(C=C(C=C1[N+]([O-])=O)[N+]([O-])=O)[N+]([O-])=O,1 +CC1=C4C(=CC=C1)C3=CC2=CC=CC=C2C=C3C=C4,1 +CCC1(C(=O)NCNC1=O)C2=CC=CC=C2,1 +C2=CC1=CC4=C(C=C1C=C2)C3=CN=CC=C3C=C4,1 +O=S1(=O)CCCO1,1 +CNC(=O)NOC(=O)NC,1 +OC1=CC4=C(C=C1)C5=C2C=CC=CC2=CC6=C3C=CC=CC3=CC4=C56,1 +COC2=C1C(C5=C(OC1=CC4=C2C3C=COC3O4)C(=CC=C5O)CCC(C)(C)O)=O,1 +[O-][N+](=O)C4=C3C1=CC=CC2=CC=CC(=C12)C3=CC=C4,1 +CC3=C1C4=C(C=CC1=C2C=CC=CC2=C3)C(O)C(O)C5OC45,1 +NC2=CC1=CC=CC=C1N=C2,1 +CC4=CC3=C2C=C1C=CC=CC1=CC2=CC=C3C=C4,1 +ClCBr,1 +ClC(Cl)(Cl)C1CO1,1 +[O-][N+](=O)C1=CC(=C(C=C1)C=O)[N+]([O-])=O,1 +CC(C)=CCOC2=C1OC=CC1=CC3=C2OC(C=C3)=O,1 +CC1CC(=O)O1,1 +OCC1=C(C3=C(C=C1O)C(=O)C2=C(C=CC=C2)C3=O)O,1 +[O-][N+](=O)C1=C3C(=CC=C1)C2=C(C=CC=C2C(=C3)[N+]([O-])=O)[N+]([O-])=O,1 +CCC(C)COC(=O)C=CC1=CC=C(C=C1)N=CC2=CC=C(C=C2)OC,1 +C3=CC2=CC1=CC=CC=C1C=C2C=C3,1 +CCCC(=O)C1=C(C=C(C(=C1)O)O)O,1 +CCN(CCCl)C1=CC=C(C=C1)OCCCCCNC3=C2C=CC=CC2=NC4=CC=CC=C34,1 +CC(=O)N(O)C1=CC=C(C=C1)C2=CC=CC=C2,1 +O1C=CC2=CC3=CC=C4C=CC=C5C=CC(=C12)C3=C45,1 +OC1OC(=O)C(=C1CCl)Cl,1 +NC1=CC=C(C=C1)C=CC2=CC(=CC=C2)Cl,1 +CCOC(=O)C(C)Br,1 +COC1=NSC2=CC(=CC=C12)OCC3CO3,1 +COC4=C2C1=CC=CC=C1C=CC2=C3CCC(C3=C4)=O,1 +COC1=CC=C(C=C1)C=NN4N=NC2=C([NH]C3=CC=CC=C23)C4=O,1 +CC1CN(CC(C)O1)N=O,1 +O=CC1=C2C=CC3=CC=CC4=CC=C(C=C1)C2=C34,1 +CN(C(=O)C1=CSC(=C1)[N+]([O-])=O)C2=CC=CC=C2,1 +NC2=C1C(C3=C(C(C1=CC=C2)=O)C(=CC=C3)N)=O,1 +NC1=C(C=C(C=C1)[N+]([O-])=O)N,1 +O1C3C1C2=C(C=CC=C2)C4=C3C=CC=C4,1 +NC1=C(C=C(C=C1)C2=CC(=C(C(=C2)Cl)N)Cl)Cl,1 +C1OC1COC2=CC=C(C=C2)C3=CC=CC=C3,1 +CCCSC(Cl)=O,1 +CC3(C)CC2C=C(C=O)C14CC1(C2C3)C(=O)OC4O,1 +NC2=C1C=C(C=CC1=NC3=CC=CC=C23)O,1 +CC(=O)NC1=CC(=C(C=C1)C)N,1 +CN(CC1=CC=C(C=C1)F)N=O,1 +CC(=C)C(=O)OCC1CO1,1 +CC1=C(C(=CC=C1N)N=NC2=CC=CC=C2)N,1 +CC1=C(C=C(C=C1)[N+]([O-])=O)N=O,1 +ClCC2=C1C=CC=CC1=C(C3=CC=CC=C23)CCl,1 +CCC(COC(=O)C=C)(COC(=O)C=C)COC(=O)C=C,1 +NC2=CC1=CC=CC=C1C=C2,1 +CCCON=O,1 +COC1=CC=C(C=C1)C=CC2=CC=C(C=C2)[N+]([O-])=O,1 +NC3=CC=C2[NH]C1=CC=CC=C1C2=C3,1 +CNC(=O)OC1=C(C=CC=C1)OC(C)C,1 +CC1=C3C(=C(C(=C1)[N+]([O-])=O)C)C2=CC=CC=C2[NH]3,1 +COC1=CC(=C(C=C1)N)C,1 +C1=CC=C4C(=C1)C=C3C2=C(C=CC=C2)C5=C3C4=CC=C5,1 +ClCC=C,1 +CC3=C2C1=CC=CC=C1C=CC2=C(C4=CC=CC=C34)CBr,1 +O=C1C=CC4=C2C1=CC=C3C=CC(C(=C23)C=C4)=O,1 +CC(=O)C(Cl)(Cl)Cl,1 +OC(=O)C1=CC(=C(C=C1)[N+]([O-])=O)[N+]([O-])=O,1 +COC3=C1C=COC1=NC4=CC2=C(OCO2)C=C34,1 +[O-][N+](=O)C4=C3C1OC1C2=CC=CC5=C2C3=C(C=C4)C=C5,1 +NC(CCC(=O)NC(CSN=O)C(=O)NCC(O)=O)C(O)=O,1 +OC1CCOP(=O)(N1)N(CCCl)CCCl,1 +C[N]3C2=CC=C1C=CC=CC1=C2C4=C3C=CC5=CC=CC=C45,1 +NC2=C1C=C(C=CC1=NC3=CC=CC=C23)Cl,1 +NC1=C(C=C(C=C1)C2=CC(=C(C=C2)N)N)N,1 +CC1=C(C(=CC=C1)N)C,1 +OC5=C4C=C3C1=CC=CC=C1C2=CC=CC=C2C3=CC4=CC=C5,1 +OCC(C(Cl)Cl)=C(Cl)C(O)=O,1 +N(N=NC1=CC=CC=C1)C2=CC=CC=C2,1 +C[N]1C=NC(=C1C(=O)N(C)N=O)N(C)N=O,1 +CCCCN(CC(O)C1=CC(=[N+]=[N-])C(=O)C=C1)N=O,1 +CN1CC(O)C4=C2C1CC5=C(C2=C3OCOC3=C4)C=CC=C5,1 +[O-][N+](=O)C1=CC(=C(C=C1)C2=CC=CC=C2)[N+]([O-])=O,1 +OC2=C1C(C=CC(C1=C(C=C2)O)=O)=O,1 +OC2C=CC1=CC5=C4C(=C1C2O)C3=CC=CC=C3C4=CC6=CC=CC=C56,1 +COC2=C1C=COC1=NC3=CC=CC=C23,1 +CCCCCCN(N=O)C(N)=N[N+]([O-])=O,1 +[O-][N+](=O)C1=CC=C(C=C1)C2=CC=C(C=C2)[N+]([O-])=O,1 +NC1=CC3=C(C=C1)C(=O)C2=C(C=CC(=C2)N)C3=O,1 +CC(=O)NC3=C(C=C2C1=CC=CC=C1CC2=C3)Cl,1 +C1=CC5=C(C=C1)C4=C2C=CC3=CC=CC(=C23)C=C4C=C5,1 +[O-][N+](=O)C1=CC3=C2C1=CC=CC2=CC=C3,1 +COC2=CC=C1[N](C)C(=NC1=C2)N,1 +COC1=CC(=C(C=C1)N)OC,1 +CCNC1=C(C=CC(=C1)O)C,1 +OC5C1OC1C4=C(C3=CC=C2C=CC=CC2=C3C=C4)C5O,1 +[O-][N+](=O)C1=CC3=C2C1=CC=CC2=CC5=C3C4=CC=CC=C4C=C5,1 +OC1OC(=O)C(=C1Cl)Cl,1 +CC(=O)NC1=C2C=CC3=CC=CC4=CC=C(C=C1)C2=C34,1 +CN(C)CCNC(=O)C3=C2N=C1C=CC=CC1=CC2=CC=C3,1 +NC(=O)C=CC1=CC=C(O1)[N+]([O-])=O,1 +CC(CC1=CC(=C(C=C1)O)O)(NN)C(O)=O,1 +ClCC(Br)CCl,1 +CC4=CC3=NC2=C1C=CC=CC1=CC=C2C(=C3C=C4)C,1 +CC(=O)OCC2=C1C=CC=CC1=C(C3=CC=CC=C23)C,1 +CCCCC(CC)COCC1CO1,1 +COC4=CC=C3C(=O)C2=C1C(=NC=CC1=CC(=C2OC)OC)C3=C4,1 +CC(O)CBr,1 +COC(=O)C12CC1(C=O)C(C=O)C=C3CC(C)(C)CC23,1 +[O-][N+](=O)C3=CC=C2OC1=CC=C(C=C1C2=C3)[N+]([O-])=O,1 +NC2=C1N=C[N](C1=NC(=N2)C3=CC=C(C=C3)[N+]([O-])=O)C4CC(O)C(CO)O4,1 +C3CC2=C(C1=NC=CC=C1C=C2)C4OC34,1 +CCOP(=O)(OCC)N1C3C1C2=C(C=CC=C2)C4=C3C=CC=C4,1 +NC1=CC=C(C=C1)SC2=CC=C(C=C2)[N+]([O-])=O,1 +[O-][N+](=O)C1=CC=C(C=C1)C3=C([N]2CCSC2=N3)[N+]([O-])=O,1 +OC5=C4C1=CC=CC=C1C3=CC2=CC=CC=C2C=C3C4=CC=C5,1 +CC1=C(C=CC=C1)N,1 +O1C4C1C3=C(C=C2C=CC=CC2=C3)C5=C4C=CC=C5,1 +N1C4C1C3=C(C=C2C=CC=CC2=C3)C5=C4C=CC=C5,1 +OC1CC(=O)C5=C4C1(C2CCC(C3=C(C=CC(=C23)C4=CC=C5O)O)=O)O,1 +OC(=O)C1=CC=C(O1)[N+]([O-])=O,1 +O=C(OCC1CO1)C2=CC(=CC=C2)C(=O)OCC3CO3,1 +ClC(Cl)=C1OC(=O)C=C1,1 +[O-][N+](=O)C3=C1C=CC2=CC=CC(=C12)C=C3,1 +C[N]1C(=NC2=C1C=CC3=NC=CC=C23)NO,1 +OC1=CC=C(C=C1)C3OC2=C(C(=CC(=C2)O)O)C(=O)C3=O,1 +OCC(CO)(CBr)CBr,1 +FC5=C3C=CC=C4C2=CC1=CC=CC=C1C=C2C(=C34)C=C5,1 +BrCCOC(=O)C=C,1 +[O-][N+](=O)C3=C2C=CC1=CC=CC4=C1C2=C(C=C3)OC4=O,1 +[O-][N+](=O)C1=CC2=C(C=C1)CCN2,1 +COC3=C2N=C1C=CC=CC1=C(C2=CC=C3)NCCCNCCCl,1 +[O-][N+](=O)C2=NC1=CC=CC=C1[NH]2,1 +COC(=O)C4=C2C(=CC1=C(C=CC=C1C2=C3OCOC3=C4)OC)[N+]([O-])=O,1 +CCOCC1=C(C3=C(C=C1O)C(=O)C2=C(C=CC=C2)C3=O)O,1 +NC1=CC4=C3C(=C1)C2=CC=CC=C2C3=CC=C4,1 +COC3=CC2=C(C1=CC=C(C=C1N=C2C=C3)Cl)NCCCNCCCl,1 +C1CN1C2=NC(=NC(=N2)N3CC3)N4CC4,1 +CC3=C(C=C2C(=C1C=CC=CC1=C(C2=C3)C)C)C,1 +CN(C)CCCNC2=C1C(=CC=C(C1=NC3=CC=CC=C23)C)[N+]([O-])=O,1 +CC(=O)OCC1=C4C(=C(C2=CC=CC=C12)C)C3=CC=CC=C3C=C4,1 +CC4=CC3=C2C=CC1=CC=CC=C1C2=CC=C3C=C4,1 +OC4C=CC3=C(C2=CC=C1C=CC=CC1=C2C=C3[N+]([O-])=O)C4O,1 +OC(=O)C4=CN(C1CC1)C2=C(C=C(C(=C2)N3CCNCC3)F)C4=O,1 +CC1=C(C=CC=C1)OCC2CO2,1 +[O-][N+](=O)C1=C(C=C(C=C1)Cl)Cl,1 +COC1=CC2=C(C(=C1)O)C(C(C(O2)C3=CC(=C(C=C3)O)O)=O)=O,1 +CCCCC1C(=O)N(N(C1=O)C2=CC=C(C=C2)O)C3=CC=CC=C3,1 +CCN(CC)C1=CC=C(C=C1)C2=CC=C(C=C2)C3=CC=C(C=C3)N(CC)CC,1 +NC3=CC2=CC1=CC=CC=C1N=C2C=C3,1 +[O-][N+](=O)C1=C(C=CC(=C1)Cl)Cl,1 +ONC1=C(C=CC=C1)C2=CC=CC=C2,1 +NC2=NC1=CC(=CC=C1[NH]2)C#N,1 +CC1=CC=C2C(=C1)C=CC3=C2C4=C([NH]3)C=CC5=C4C=CC=C5,1 +CC1=C(C=C(C=C1N)[N+]([O-])=O)N,1 +CC(=O)NC1=C(C=C(C=C1)CC2=CC(=C(C=C2)NC(C)=O)Cl)Cl,1 +C=CC1CO1,1 +C1=CC5=C(C=C1)C4=NC3=C2C=CC=CC2=CC=C3C=C4C=C5,1 +CC(=O)NC1=CC3=C(C=C1)C2=CC=C(C=C2C3)NC(C)=O,1 +[O-][N+](=O)C2=C3C=CC4=C1C=CCCC1=CC5=CC=C(C=C2)C3=C45,1 +CCN1CCN(CC1)C3=C(C=C2C(C(=CN(C2=C3)C4CC4)C(O)=O)=O)F,1 +OC3C=CC2=C1C=CC=CC1=CC=C2C3O,1 +CN(C)C1=CC=C(C=C1)N=NC2=C(C=CC=C2)C(O)=O,1 +[O-][N+](=O)C1=C2C5=C(C3=C(C=CC4=CC=C(C=C1)C2=C34)[N+]([O-])=O)CCCC5,1 +OC2=C1C(C3=C(C(C1=C(C=C2)O)=O)C=CC=C3)=O,1 +CC(C)CCON=O,1 +OC3=C2C(=C1C=CC=CC1=C(C2=C(C=C3)O)O)O,1 +CCN(CC)CCCC(C)NC2=C1N=CC=CC1=CC(=C2)OC,1 +COC1=C(C(=C(C(=C1Cl)Cl)Cl)Cl)Cl,1 +CN(C)C1=CC=C(C=C1)N=NS(O)(=O)=O,1 +[O-][N+](=O)C1=CC3=C(C=C1)C2=CC(=CC=C2O3)[N+]([O-])=O,1 +CCN(CCO[N+]([O-])=O)[N+]([O-])=O,1 +OC(=O)C4=C2C(=CC1=CC=CC=C1C2=C3OCOC3=C4)[N+]([O-])=O,1 +CCC(=O)C=C,1 +ClCCOC(=O)C=C,1 +CCC(O)C=CC=CC=CC=CC=O,1 +NC2=C1C(C3=C(C(C1=C(C=C2)N)=O)C=CC=C3)=O,1 +[O-][N+](=O)C1=CC=C(O1)C=N[N]2C=CC=N2,1 +[O-][N+](=O)C3=CC=C2C(=O)C1=CC=CC=C1C2=C3,1 +CC(C)OCC1CO1,1 +CC2=C3C=CC4=CC1=CC=CC=C1C5=CC=C(C=C2)C3=C45,1 +N1C2C1C6=C4C3=C2C=CC=C3C=CC4=C5C=CC=CC5=C6,1 +ClC1CN(CC1Cl)N=O,1 +NNC(=O)C1=CC=NC=C1,1 +CCCOC(=O)C=CC1=CC=C(O1)[N+]([O-])=O,1 +O=NC1=CC=C(C=C1)C2=CC=CC=C2,1 +CC2=CC1=C3C=CC4=CC=CC5=CC=C(C=C1C=C2)C3=C45,1 +[O-][N+](=O)C4=CC=C3C2=C1C(=CC=CC1=CC=C2)C3=C4,1 +C[N]1C(=NC2=CC(=CC=C12)C#N)N,1 +[N-]=[N+]=NCCC1=CC=CC=C1,1 +CC4=C3C2=CC1=CC=CC=C1C=C2C=CC3=CC=C4,1 +CC1=C(C=C(C(=C1)S(O)(=O)=O)N)Cl,1 +OCC1OC(CC1O)N2C=C(CO)C(=O)NC2=O,1 +C1=CC2=C(C=C1)C5=C(C=C2)C4=CC=C3C=CC=CC3=C4C=C5,1 +C1=CC2=C(C=C1)C3=CC5=CC=CC6=CC=C4C=CC2=C3C4=C56,1 +COC1=CC4=C3C(=C1OC)C2=CC5=C(C=C2CC3N(CC4)C)OCO5,1 +NC1=C(C(=CC(=C1)[N+]([O-])=O)Cl)O,1 +[O-][N+](=O)C1=CC=C(O1)C=C(C#N)C#N,1 +CCCCNC(=O)C=CC1=CC=C(O1)[N+]([O-])=O,1 +CC(=O)C1=CC=C(C=C1)[N+]([O-])=O,1 +CCCC=CC=O,1 +CC1=CC(=CC=C1)NC(=O)C2=CSC(=C2)[N+]([O-])=O,1 +CN(N=O)N(C1=CC=CC=C1)C(=O)C(=NO)C(C)=O,1 +O=NN1CCCCCC1,1 +CN(C)C1=CC=C(C=C1)N=NC2=C(C=CC=C2)COC(C)=O,1 +CC(C)(COCC1CO1)COCC2CO2,1 +ClC1=C(Cl)C(=O)OC1,1 +COC2=NSC3=C(OCC1CO1)C=CC=C23,1 +O=C1NC4=C2C1=CC5=C(C2=C3C=CC=CC3=C4)OCO5,1 +NC1=C(C=CC(=C1)[N+]([O-])=O)O,1 +CC3=CC2=C(C1=CC=CC=C1N=C2C=C3)N,1 +CC=CCC=O,1 +OS(=O)(=O)C3=C2C(C1=CC=CC(=C1C(C2=CC=C3)=O)[N+]([O-])=O)=O,1 +OCCNC(=O)N(CCCl)N=O,1 +CN(CC1=CC=C(C=C1)Cl)N=O,1 +[N-]=[N+]=NC1=CC=C(C=C1)NC3=C2C=CC=CC2=NC4=CC=CC=C34,1 +CC(=O)CN(COC(C)=O)N=O,1 +C=CCOCC1CO1,1 +NC1=CC=C(C=C1)CC2=CC(=C(C=C2)N)CC3=CC=C(C=C3)N,1 +O=NC1=C3C=CC4=CC=CC5=CC=C(C2=CC=CC=C12)C3=C45,1 +CCOC(N)=O,1 +OC(=O)C2=[N+](C1=CC=CC=C1[N+](=C2)[O-])[O-],1 +NC1=CC=C(C=C1)F,1 +CC4=C1C=CC=CC1=C3C=C2C=CC=CC2=CC3=C4,1 +C=CCN1C3C1C2=C(C=CC=C2)C4=C3C=CC=C4,1 +CCCN(CCC)N=O,1 +CC(C)CN(N)CC(C)C,1 +NC1=C(C=CC=C1)S(O)(=O)=O,1 +ClC1=CC=C(C=C1)CC2CO2,1 +O=C2C1=C(C=CC=C1)C(=O)C3=C2C=CC=C3,1 +CN(C=O)N=O,1 +CC(O)CCl,1 +CC(=O)NC3=C2C=CC1=CC=CC4=C1C2=C(C=C3)C(=O)C4=O,1 +[O-][N+](=O)C2=CC1=CC=CC=C1C=C2,1 +[O-][N+](=O)C3=C2C=CC1=CC=CC=C1C2=CC=C3,1 +OCC1=CC=C(O1)C=O,1 +NC1=C3C(=CC=C1)C2=CC=CC=C2C3,1 +ClC3=C2C=CC1=CC=CC=C1C2=CC4=CC=CC=C34,1 +O1C2C1C5=C3C2=CC=CC3=CC6=C4C=CC=CC4=CC=C56,1 +CN(C)C1=CC=C(C=C1)N=NC2=CC=CC=C2,1 +CC1=CC3=C(C(=C1)C)C2=CC=CC=C2C=C3,1 +CC1=C(C(=CC=C1)NO)C,1 +BrCCC(=O)N1CCN(CC1)C(=O)CCBr,1 +CC1=C(C3=C(C=C1)C(=O)C2=C(C=CC=C2)C3=O)[N+]([O-])=O,1 +CC2C1=C(C=CC=C1)C3=C2C(=CC=C3)C,1 +CC1=C(C(=CC=C1)[N+]([O-])=O)[N+]([O-])=O,1 +CC1=CC(=O)OC2=C1C=C3CCCN4CCCC2=C34,1 +NC1=CC=C(C=C1)C2=CC=C(C=C2)[N+]([O-])=O,1 +COC2=C1C(C3=C(C(C1=CC=C2)=O)C=CC=C3)=O,1 +[O-][N+](=O)C1=CC=C(C=C1)[N+]([O-])=O,1 +NC1=CC=C(C=C1)CCC2=CC=CC=C2,1 +C1=CC3=C(C=C1)C4=CC=C5C=CC=C6C2=CC=CC=C2C(=C3)C4=C56,1 +COC(=O)NC(=S)NC1=C(C=CC=C1)NC(=S)NC(=O)OC,1 +O=N[N]1C=C(CC#N)C2=CC=CC=C12,1 +COC(=O)C1=NC(=C3C(=C1)C2=CC=CC=C2[NH]3)C4=NC5=C(C=C4)C(=O)C=CC5=O,1 +[O-][N+](=O)C1=CC=C(C=C1)C=CC2=CC=C(C=C2)[N+]([O-])=O,1 +COCC=O,1 +CC1=C(C=CC=C1)C(Cl)=O,1 +NC1=CC=C(C=C1)OC2=CC=C(C=C2)OC3=CC=C(C=C3)N,1 +OC1=NSC2=CC(=CC=C12)[N+]([O-])=O,1 +[O-][N+](=O)C1=CC5=C2C1=CC=CC2=C4C=C3C=CC=CC3=CC4=C5,1 +NC3=C2C1=CC=CC=C1CC2=CC=C3,1 +C3C=CC4=C2C1=CC=CC=C1C=CC2=CC=C34,1 +CC(=O)C1=CC=C[N]1[N+]([O-])=O,1 +NC1=CC(=C(C=C1)C2=C(C=C(C=C2)[N+]([O-])=O)N)[N+]([O-])=O,1 +O=C2C1=C(C=CC=C1)C4=C3C2=NC=CC3=CC5=C4OCO5,1 +COC6=C2[C]1=CC=C(C1=C(OC2=C5C4C3OC3OC4OC5=C6)O)O,1 +CC1=C(C=CC=C1)N=NC3=C2C=CC=CC2=CC=C3O,1 +OC(=O)C=CC1=CC=C(C=C1)[N+]([O-])=O,1 +[O-][N+](=O)C1=C([NH]C=N1)C2=CC=CC=C2,1 +ClCCNP1(=O)OCCCN1CCCl,1 +NC(CSCCCl)C(O)=O,1 +[O-][N+](=O)C1=C(N=C2SCC[N]12)C3=CC=C(C=C3)Cl,1 +CC1=CC=C[N]2C1=NC3=C(C)C(=CN=C23)NO,1 +CC3=C2C1NC1C5=C(C2=CC4=CC=CC=C34)C=CC=C5,1 +[O-][N+](=O)C3=C1C=CC=C2C=CC(=C12)C=C3,1 +CC1=CC=C(C=C1)[N+]#N,1 +COC1=C(C=CC(=C1)C2=CC(=C(C=C2)N)OC)N,1 +CC1=C(C=CC=C1)OP(=O)(OC2=C(C=CC=C2)C)OC3=C(C=CC=C3)C,1 +[O-][N+](=O)C3=C2OC(C1=CC=CC4=C1C2=C(C=C3)C=C4)=O,1 +NC4=C3C1=CC=CC2=CC=CC(=C12)C3=CC=C4,1 +CC[N+](CC)=C4C=CC3=NC2=C1C=CC=CC1=C(C=C2OC3=C4)N,1 +C[N]2C1=CC=CC=C1N=C2[N+]([O-])=O,1 +ClCCN(N=O)C(=O)NC1CCCCC1,1 +CC1=C3C(=C(C(=C1)[N+]([O-])=O)C)C2=CC(=CC=C2[NH]3)O,1 +NC1=CC=C(C=C1)C2=CC(=C(C=C2)N)[N+]([O-])=O,1 +OC1=C(C(=CC=C1)O)O,1 +C=CC(=O)N(CC1CO1)CC2CO2,1 +NC3=C1C=CC=CC1=C2C=CC4=C(C2=C3)C=CC(O)C4O,1 +CC1=CC4=C(C=C1)C3=CC=C2C=CC=CC2=C3C=C4,1 +OC1C(O)C4=C3C2=C1C=CC=C2C=CC3=C(C=C4)[N+]([O-])=O,1 +[O-][N+](=O)C1=CC(=CC=C1)C(Cl)=O,1 +CC=CC=CC=O,1 +OC2=CC1=CC=CC=C1C(=C2)O,1 +CCCOC=CC=CC=CC=CC=CCC,1 +[O-][N+](=O)C1=CC(=CC(=C1)C(Cl)=O)[N+]([O-])=O,1 +OCC4=CC=C3C2=C1C(=CC=CC1=CC=C2)C3=C4,1 +CC(C)=CC(C)=NNC2=C1C=CC=CC1=CN=N2,1 +C1CSCSC1,1 +CC2=C1C=CC=CC1=C(C3=CC=CC=C23)C,1 +NC1=C(C=C(C=C1)OC2=CC(=C(C=C2)N)Cl)Cl,1 +NC3=CC2=NC1=CC=CC=C1C=C2C=C3,1 +CC(=O)C1=C(C(=C(C=C1)Cl)Cl)Cl,1 +[O-][N+](=O)C2=C3C1=CC=CC=C1C4=CC=CC5=CC=C(C=C2)C3=C45,1 +COC4=C1C5=C(C(OC1=C3C2C=COC2OC3=C4)=O)C(OCC5)=O,1 +O4C5=C1C=CC=CC1=C3C=C2C=CC=CC2=CC3=C45,1 +NC(CN=[N+]=[N-])C(O)=O,1 +[O-][N+](=O)C1=CC=C(C=C1)C(Cl)=O,1 +O=C4OC1=C(C=C2CCCN3CCCC1=C23)C=C4,1 +CC(=C)C=O,1 +[O-][N+](=O)C1=C2C=CC3=CC5=C(C4=CC=C(C=C1)C2=C34)C=CCC5,1 +OC1=C(C3=C(C=C1)C(=O)C2=C(C=CC=C2)C3=O)O,1 +[O-][N+](=O)C1=C(C(=C(O1)C(=O)CBr)Cl)Cl,1 +CC1=C(C=C(C(=C1)N)C)N,1 +[O-][N+](=O)C1=C(C=CC=C1)CCl,1 +OC1=C(C=C(C=C1Cl)Cl)S(=O)C2=C(C(=CC(=C2)Cl)Cl)O,1 +OC(=O)CNC(=O)C1=CC=C(C=C1)[N+]([O-])=O,1 +O1C4C1C3=C(C2=CC=CC=C2C=C3)C5=C4C=CC=C5,1 +BrCCOC(=O)C(=O)OCCBr,1 +C2CC1OC1CC2C3CO3,1 +OC6=CC=C5C1=C2C(=CC3=CC=CC4=CC=C(C=C1)C2=C34)C5=C6,1 +NC1=C(C=C3C(=C1)C2=CC=CC=C2[NH]3)[N+]([O-])=O,1 +[O-][N+](=O)C3=CC(=C2C1=C(C=C(C=C1C(C2=C3)=O)[N+]([O-])=O)[N+]([O-])=O)[N+]([O-])=O,1 +[O-][N+](=O)C1=C(C(=C(O1)C(=O)CBr)C2=CC=CC=C2)C3=CC=CC=C3,1 +[O-][N+](=O)C2=C3C=CC4=C1CCCCC1=CC5=CC=C(C=C2)C3=C45,1 +CC1=C3C(=CC=C1)C2=CC=CC=C2C=C3,1 +CC1=C2C(=C(C=C1)C)C3=C(C=C2)C(O)C(O)C4OC34,1 +COC1=CC3=C(C(=C1)O)C(=O)C2=C(C(=CC=C2O)O)O3,1 +CC[N]1C(=NC2=C1C=CC3=NC(=CN=C23)C)N,1 +CC(C)COC(=O)C=CC1=CC=C(O1)[N+]([O-])=O,1 +CC5=C3CCC4=C2C1OC1C6=C(C2=CC(=C34)C=C5)C=CC=C6,1 +OCN1C(O)C(O)N(CO)C1=O,1 +CCC(C)NC(=O)C=CC1=CC=C(O1)[N+]([O-])=O,1 +CC1(CO1)C(=O)NCC2=CC=CC=C2,1 +NC1=CC=C(C=C1)CC(O)=O,1 +[O-][N+](=O)C2=CC(=C1C=CC=CC1=C2)[N+]([O-])=O,1 +CC2=CC3=CC=C4C1=CC=CC=C1C=C5C=CC(=C2)C3=C45,1 +NC(CCC(=O)NC(CSC(=O)NCCCl)C(=O)NCC(O)=O)C(O)=O,1 +NC1=CC=C(C=C1)CCC2=CC=C(C=C2)N,1 +CC(C)(O)CCC2=C1OC5=C(C(C1=C(C=C2)O)=O)C(=C4C3C=COC3OC4=C5)O,1 +CCOP(=O)(OCC)OC1=NC(=NC(=C1)C)C(C)C,1 +CCCCOC(=O)C=CC1=CC=C(O1)[N+]([O-])=O,1 +ClCCN(CCCl)C2=CC1=CC=CC=C1C=C2,1 +CC(=O)OCC1=C4C(=CC2=CC=CC=C12)C3=CC=CC=C3C=C4,1 +C[N]1C(=NC2=CC=C(C=C12)C#N)N,1 +COC(=O)C12OC1(C)C(O)(NC2=O)C(C)C,1 +NC2=CC1=NC=CC=C1C=C2,1 +CC1=CC=C(C=C1)OCC2CO2,1 +CC1CNC(=O)N1C2=NC=C(S2)[N+]([O-])=O,1 +ClC(Cl)(Cl)CC1CO1,1 +NC1=CC=C(C=C1)[N+]([O-])=O,1 +ClCCNC(=O)SC2=C1[NH]C=NC1=NC=N2,1 +CC(=O)C1=C(C(=C(O1)[N+]([O-])=O)Cl)Cl,1 +CC(=O)N(O)C1=CC=C(C=C1)SC2=CC=CC=C2,1 +OC1CC=CC2=C3C=CC4=CC=CC5=CC=C(C=C12)C3=C45,1 +COC(=O)C(Cl)Cl,1 +COC5=C2[C]1=CC=C(C1=C(OC2=C4C3(C=COC3OC4=C5)O)O)O,1 +[O-][N+](=O)C1=CC2=C(C=C1)C(=CC3=C(C=CC=C23)[N+]([O-])=O)[N+]([O-])=O,1 +OC2=C1C=CC(C(C1=C(C3=CC=CC=C23)O)=N)=N,1 +NC1=C(C=C(C=C1)Cl)N,1 +CC(=O)NC1=C2C=CC3=CC=C(C4=CC=C(C=C1)C2=C34)O,1 +CC1=C(C=CC=C1)NC(=O)C2=CSC(=C2)[N+]([O-])=O,1 +[O-][N+](=O)C1=CC2=C(O1)C3=CC=C4C=CC=C5C=CC(=C2)C3=C45,1 +[O-][N+](=O)C1=CC3=C(C=C1)C2=CC=CC=C2S3,1 +CC(=O)C1=CC=C(C=C1)NO,1 +CN(C)C1=CC=C(C=C1)N=NC2=CC=C(C=C2)COC(C)=O,1 +CN(COC(C)=O)N=O,1 +CC(Br)C(=O)NCC1=CC=CC=C1,1 +OC5C=CC4=C(C3=CC2=C1C=CC=CC1=CC=C2N=C3C=C4)C5O,1 +CC(=O)NC1=CC=C(C=C1)C=N[N]3N=N[C]2=CC=NC2=C3O,1 +[O-][N+](=O)C1=CC=C(C=C1)SC2=CC=CC=C2,1 +ClC(Cl)(Cl)SN2C(=O)C1CC=CCC1C2=O,1 +O=CNC1=CC3=C(C=C1)C2=CC=CC=C2C3,1 +BrCCBr,1 +CCOC(=O)CNC(=O)C=[N+]=[N-],1 +O1C2C1C7=C5C3=C2C=CC=C3C=C6C4=CC=CC=C4C(=C56)C=C7,1 +CC(=O)NC2=CC1=NC=CC=C1C=C2,1 +NC3=CC2=NC1=CC(=CC=C1N=C2C=C3)N,1 +C[N]2C(=NC3=NC1=CN=CC=C1C=C23)N,1 +C1=CC=C2C(=C1)C=CC3=C2C4=CC=CC5=CC=CC3=C45,1 +ClC3=C1C=CC=CC1=C2C=CC=CC2=C3,1 +CC1CCC(CC1)NC(=O)N(CCCl)N=O,1 +COC(=O)C12OC1(C)C(C)(O)NC2=O,1 +CC1=C3C(=C(C(=C1)[N+]([O-])=O)C)C2=CC(=CC=C2[NH]3)[N+]([O-])=O,1 +[O-][N+](=O)C2=C3C=CC4=CC=CC5=C1C=CC=CC1=C(C=C2)C3=C45,1 +OCCCl,1 +[O-][N+](=O)C1=CC3=C(C=C1)C2=CC=CC=C2C=C3,1 +NC1=C(C(=CC=C1)[N+]([O-])=O)N,1 +CCN(CCCl)CCCNC3=C2C=CC1=CC=CC=C1C2=NC4=CC=CC=C34,1 +CC2=C1C=CC=CC1=C(C=C2)[N+]([O-])=O,1 +O1C2C1C5=C4C2=CC3=CC=CC=C3C4=CC6=CC=CC=C56,1 +CN(C)CCCNC1=C3C(=NC2=CC=CC=C12)C(=CC=C3)[N+]([O-])=O,1 +CC1=C(C=C(C(=C1)C)N)C,1 +OC4C=CC3=C2C=C(C1=CC=CC=C1C2=CC=C3C4O)[N+]([O-])=O,1 +CC1=C(C(=CC=C1)C)NO,1 +[O-][N+](=O)C3=C1C=CC=C2CCC(=C12)C=C3,1 +COC(=O)C1=C(C=CC(=C1)C2=CC(=C(C=C2)N)C(=O)OC)N,1 +CC(=O)N(OC1OC(CO)C(O)C(O)C1O)C2=CC=C(C=C2)OC3=CC=C(C=C3)Cl,1 +CCCC(=O)OCC1=CC=C(C=C1)[N+]([O-])=O,1 +CC(C)NC(OCC1=CC=C(C=C1)[N+]([O-])=O)=NC(C)C,1 +C1=CC4=C(C=C1)C3=CC=C2N=CC=CC2=C3C=C4,1 +C[N+](C)(C)CCNCCC1=CC=C(C=C1)N=NC2=C(C=C(C=C2)[N+]([O-])=O)Cl,1 +[O-][N+](=O)C1=C2C=CC3=CC=CC4=CC=C(C=C1)C2=C34,1 +O=C(OCC1CO1)C2CCCCC2C(=O)OCC3CO3,1 +[O-][N+](=O)C3=CC2=C1C=C(C=CC1=C(C=C2C=C3)[N+]([O-])=O)[N+]([O-])=O,1 +CCN(CC)C1=CC=C(C=C1)N=NC2=CC=C(C=C2)[N+]([O-])=O,1 +[O-][N+](=O)C2=CC=C3C1=C(C=CC=C1)C4=C(C=CC5=CC=C2C3=C45)[N+]([O-])=O,1 +NC(CSC(Cl)=CCl)C(O)=O,1 +CCOP(=O)(OCC)C(C)NC(=O)N(CCCl)N=O,1 +OCC1=CC3=C(C(=C1)O)C(=O)C2=C(C=CC=C2O)C3=O,1 +CC1=C(Cl)C(=O)OC1O,1 +C1=CC3=C(C=C1)C2=CC5=C4C(=C2C=C3)C=CC=C4C=C5,1 +NC2=C1N=C[N](C1=NC(=N2)C3=CC=C(C=C3)[N+]([O-])=O)C4=CC=C(C=C4)[N+]([O-])=O,1 +O=C3C(C2=NC1=CC=CC=C1C=C2)C(=O)C4=C3C=CC=C4,1 +O=C2C=CC1=C(C=CC=C1)C2=O,1 +CC(C)(C)ON=O,1 +COC1=C(C=CC(=C1)[N+]([O-])=O)NC(C)=O,1 +OC1=C3C(=CC=C4C=CC2=CC=CC(=C1)C2=C34)[N+]([O-])=O,1 +CC1CC(OC(C)O1)OC(C)=O,1 +CC1=C(C3=C(C=C1)C(=O)C2=C(C=CC=C2)C3=O)NC4=CC=CC=C4,1 +CC(=O)C1=C(C=C([N]1[N+]([O-])=O)[N+]([O-])=O)[N+]([O-])=O,1 +ClC1=C(Cl)C(=O)C(=C(Cl)C1=O)Cl,1 +NC1=C(C=CC(=C1)[N+]([O-])=O)C2=CC=C(C=C2)[N+]([O-])=O,1 +[O-][N+](=O)C1=CC=C2C=CC3=[N+](C5=C(C4=CC=C1C2=C34)C=CC=C5)[O-],1 +OC1=CC3=C(C=C1)C2=CC=C(C=C2C3)[N+]([O-])=O,1 +C[N]1C=NC(=C1[N+]([O-])=O)C2=CC=CC=C2,1 +CN(CC(C)=O)N=O,1 +ClN1C3C1C2=C(C=CC=C2)C4=C3C=CC=C4,1 +SC2=C1[NH]C=NC1=NC=N2,1 +CC1CN1,1 +ONC3=CN=C2[N]1C=CC=CC1=NC2=C3,1 +COC1=C(C=C(C=C1)CC2CO2)OC,1 +C1=CC2=CC=C3C6=C5C(=C4C=CC(=C1)C2=C34)C=CC=C5C=C6,1 +CCCCOC3=NC2=C(C1=CC=C(C=C1N=C2C=C3)Cl)NCCCNCCCl,1 +C[N]2C(=NC3=C1C=CC=NC1=CC(=C23)C)N,1 +OC(=O)CN(CC(O)=O)N=O,1 +CCOC1=CC=C(C=C1)N=O,1 +OS(=O)(=O)OCC1=C3C=CC4=CC=CC5=CC=C(C2=CC=CC=C12)C3=C45,1 +COC1=CC=C(C=C1)NC3=C2C=CC=CC2=NC4=CC=CC=C34,1 +C[N+]2=C1C=CC=C(C1=CC3=CC=CC=C23)N,1 +C[N]1C(=NC2=C1C=CC3=NC=CC=C23)NC(C)=O,1 +OC2=C1C(C3=C(C(C1=CC=C2)=O)C=CC=C3O)=O,1 +COC1=CC4=C(C(=C1)OC2OC(CO)C(O)C(O)C2O)C(=O)C3=C(C(=CC=C3O)O)O4,1 +CCC[N]3C=C2CC1C(CC(C)CN1C#N)C4=C2C3=CC=C4,1 +[O-][N+](=O)C4=C2C1=CC=CC=C1C3=CC=CC(=C23)C=C4,1 +C[N]2C(=NC3=CC=C1N=CC=CC1=C23)N,1 +O=C1CCO1,1 +NC4=C1C=CC=CC1=C3C=CC2=CC=CC=C2C3=C4,1 +[O-][N+](=O)C1=CC=C(C=C1)C(=O)C=CC2=CC=CC=C2,1 +O=NC1=C2C=CC3=CC=CC4=CC=C(C=C1)C2=C34,1 +NC1=C(C=C(C=C1)C2=CC(=C(C=C2)N)F)F,1 +C(OCC2=C1C=CC=CC1=CC=C2)C3CO3,1 +[O-][N+](=O)C1=CC(=C(C=C1)F)[N+]([O-])=O,1 +CC2=CC(=O)C1=C(C=CC=C1O)C2=O,1 +NC(=O)NC2=NC1=CC=CC=C1[NH]2,1 +COC1=NSC2=C1C=CC=C2[N+]([O-])=O,1 +CC(C)(C)OO,1 +O=C4C=CC3=C(C2=CC=C1C=CC=CC1=C2C=C3)C4=O,1 +CCCNC(=O)C=CC1=CC=C(O1)[N+]([O-])=O,1 +OC(=O)C1=CC(=CC(=C1)[N+]([O-])=O)[N+]([O-])=O,1 +CN(C)C1=CC=C(C=C1)C=CC2=CC=C(C=C2)[N+]([O-])=O,1 +[O-][N+](=O)C2=CC=C1[NH]C=CC1=C2,1 +CC1=CC(=C(C=C1)C)N,1 +CNC(=O)ONC(C)=O,1 +COC1=CC=C(C=C1)NC(=O)C2=CSC(=C2)[N+]([O-])=O,1 +CC1=CC=C(C=C1)S(=O)(=O)N2C4C2C3=C(C=CC=C3)C5=C4C=CC=C5,1 +CC1=CC(=CC=C1)NO,1 +OC(=O)C1=C(C=CC(=C1)[N+]([O-])=O)[N+]([O-])=O,1 +CCN(CCCl)CCCNC2=C1C=C(C=CC1=NC3=CC(=CC=C23)Cl)OC,1 +[O-][N+](=O)C1=C3C(=CC=C1)C2=CC=CC=C2O3,1 +C[N]1C=NC(=C1C(=O)N(C)N=O)N(C)C(=O)OC(C)(C)C,1 +NC1=CC(=CC=C1)O,1 +[O-][N+](=O)C1=CC=C(C=C1)OC2CO2,1 +NC1=C(C=C(C=C1)Cl)[N+]([O-])=O,1 +CC1=CC=C(C=C1)NN=NCC2=CC=C(C=C2)[N+]([O-])=O,1 +CNN=NC,1 +CC(=O)C1=C(C=CC(=C1)NC(N)=O)OCC(O)CNC(C)(C)C,1 +CCN1C=C(C(O)=O)C(=O)C2=C1C=C(C(=C2)F)N3CCN(C)CC3,1 +CCC1=C(C(=CC=C1)CC)N,1 +NC1=CC3=C(C=C1)C2=CC=CC=C2[NH]3,1 +CS(=O)(=O)NC1=CC=C(C=C1)NC3=C2C=C(C=CC2=NC4=CC=CC=C34)N=[N+]=[N-],1 +NC2=C1C(C3=C(C(C1=C(C=C2)O)=O)C=CC=C3)=O,1 +CCC1CO1,1 +CC1=C(C=C(C=C1)N=[N+]([O-])C2=CC(=C(C=C2)C)N)N,1 +OC1=CC2=C(C=C1)C3=CC5=CC=CC6=CC=C4C=CC2=C3C4=C56,1 +NC3=C(C=C2N=C1C=C(C=CC1=NC2=C3)Cl)N,1 +ClCCSCCCl,1 +NC2=C(C1=CC=CC=C1C=C2)N=NC3=CC=C(C=C3)[N+]([O-])=O,1 +C[N]2C(=NC3=C1N=C(C)C=NC1=C(C)C(=C23)C)N,1 +CC(=O)OC1CC4=C2C1=C(C=CC2=CC5=C3C=CC=CC3=CC=C45)C,1 +CN1CCN(CC1)C2=C(C3=C(C=C2F)C(=O)C(=CN3CCF)C(O)=O)F,1 +[O-][N+](=O)C1=C2C=CC3=CC5=C(C4=CC=C(C=C1)C2=C34)CCCC5,1 +COC(=O)C12OC1(C)C(C)(O)OC2=O,1 +CC[N]1C(=NC2=C1C=CC3=NC=C(C)N=C23)N,1 +NC3=C2N=C1C=CC=CC1=NC2=CC=C3,1 +CC2=CC1=NC=CC=C1C=C2,1 +CC(C)(C)CNC(=O)C=CC1=CC=C(O1)[N+]([O-])=O,1 +O=C1CCCCC1=O,1 +[O-][N+](=O)C1=CC4=C(C=C1)C3=CC=C2C=CC=CC2=C3C=C4,1 +[O-][N+](=O)C1=CC=C(O1)C=NN2C(=O)C=C(C=C2C3=CC=CC=C3)C4=CC=CC=C4,1 +CCCCCCCC(Cl)=O,1 +CN(CC1=CC(=CC=C1)C)N=O,1 +[O-][N+](=O)C1=CC=C(C=C1)C=CC(=O)C2=CC=CC=C2,1 +CC1=C(C=C(C=C1N)N)[N+]([O-])=O,1 +CC1(CO1)C(=O)NC2=CC=CC=C2,1 +OCCN(CC(O)=O)N=O,1 +[O-][N+](=O)C2=C1C=CC=CC1=CC=C2,1 +N=C1CC(=O)C(=O)C2=C1C=CC=C2,1 +O=C3CN(CCN2CC(=O)N(CN1CCOCC1)C(=O)C2)CC(=O)N3CN4CCOCC4,1 +CC2=C4C=CC=C5C=CC3=C1C=CC=CC1=CC(=C2)C3=C45,1 +COP(=S)(OC)OC1=CC(=C(C=C1)N=O)C,1 +ClC(Cl)C(Cl)=O,1 +CC3=CC2=C(C(=C1C(=CC(=CC1=C2O)O)O)O)C(=O)C3=O,1 +NC1=CC=C(C=C1)C=CC2=CC=C(C=C2)N,1 +COC2=C1C(C5=C(OC1=CC=C2Cl)C=C4OC3OC=CC3C4=C5OC)=O,1 +C[N]1C=CC3=C1C=CC4=CC=C2C=CC(=CC2=C34)O,1 +O=C(NC1CCCCC1)OC(C#C)(C2=CC=CC=C2)C3=CC=CC=C3,1 +NC3=C2C(=C1C(C=CC(C1=C(C2=C(C=C3)O)O)=N)=O)O,1 +CC(C)NC(=O)C=CC1=CC=C(O1)[N+]([O-])=O,1 +NC1=C(C=CC=C1)SCSC2=C(C=CC=C2)N,1 +ON=C(O)C1=CC(=C(C=C1)O)O,1 +NC1=CC(=C(C=C1)NCCO)[N+]([O-])=O,1 +O=C3N(CC1CO1)C(=O)N(CC2CO2)C(=O)N3CC4CO4,1 +BrCC(Br)=C,1 +OCCNC1=C(C=C(C=C1)N(CCO)CCO)[N+]([O-])=O,1 +NC(=O)CNC(=O)N(CCCl)N=O,1 +C1=CC2=C(C=C1)C5=C4C(=C2)C=C3C=CC=CC3=C4C=C5,1 +NC(CCC(=O)NC(CSCCCl)C(=O)NCC(O)=O)C(O)=O,1 +[O-][N+](=O)C3=CC=C2SC1=CC=CC=C1C2=C3,1 +COC1=C(C=C(C(=C1)OC)C=CC)OC,1 +OC5CC1=C(C2=CC=C3C=CC=C4C=CC(=C1)C2=C34)C=C5,1 +[O-][N+](=O)C3=CC2=C(C=C1C(=CC=CC1=C2C=C3)[N+]([O-])=O)[N+]([O-])=O,1 +CC1=CC(=C(C=C1)O)N,1 +CC4=NC3=C2C1=CC(=CC=C1C=CC2=C(C=C3[NH]4)C)O,1 +CCC1=CC(=CC=C1)NC(=O)C2=CSC(=C2)[N+]([O-])=O,1 +NC1=CC(=CC=C1)C2=CC=CC=C2,1 +[O-][N+](=O)C3=CC2=C1C(=CC=CC1=CC=C2)O3,1 +O=C2N(CC1CO1)SC3=C2C=CC(=C3)OCC4CO4,1 +COC1=CC3=C(C=C1)OC2=C(C(=CC(=C2)O)O)C3=O,1 +NC1=C2C=CC3=CC=CC4=CC=C(C=C1)C2=C34,1 +CC1=C(C=CC=C1)C2=CC=C(C=C2)N,1 +CC(CN(CC(C)OC(C)=O)N=O)OC(C)=O,1 +CN1CCC4=C2C1C(C5=C(C2=C3OCOC3=C4)C=CC=C5)O,1 +COC4=C1C(C5=C(OC1=C3C2C=COC2OC3=C4)C=CC=C5O)=O,1 +ClC(Cl)(Cl)SN2C(=O)C1=C(C=CC=C1)C2=O,1 +CC(C)CCCC(C)C3CCC4C2C=CC1(CC(O)CCC1(C)C2CCC34C)OO,1 +CN(CC1=CC=C(C=C1)[N+]([O-])=O)N=O,1 +NC2=C1C(=CC=CC1=CC=C2)N,1 +C1=CC3=C(C=C1)C2=CC=CC4=C2C(=C3)C=C4,1 +CCCCC(CC)COC(=O)C1=CC(=C(C=C1)N(C)C)[N+]([O-])=O,1 +CC1COC3=C2N1C=CC(C2=C(C(=C3N4CCN(C)CC4)F)C(O)=O)=O,1 +NC2=C1C(C3=C(C(C1=C(C=C2C(O)=O)[N+]([O-])=O)=O)C=CC=C3)=O,1 +[O-][N+](=O)C1=CC=C(S1)C3NC(=O)C2=C(C=CC=C2)N3,1 +CC1=C(C=CC=C1)N=NC2=C(C(=C(C=C2)N)C)N,1 +C1=CC3=C(C=C1)C2=CC=CC=C2C4=CC=CC=C34,1 +CCN(CCCl)CCCNC2=C1C=CC=C(C1=NC3=CC=CC=C23)OC,1 +C1=CC2=C(C=C1)C4=CC=CC5=CC=C3C=CC=C2C3=C45,1 +NC1=C(C3=C(C=C1)C2=CC=CC=C2[NH]3)[N+]([O-])=O,1 +CC1=C(C=C(C=C1)C(OC(=O)NC2CCCCC2)(C#C)C3=CC=CC=C3)C,1 +ClCCCBr,1 +NC2=C1N=C[N](C1=NC(=N2)C3=CC=C(C=C3)[N+]([O-])=O)C4OC(CO)C(O)C4O,1 +NC3=C1C=CC=CC1=C2C=CC=CC2=C3,1 +CN(C)CCCNC2=C1C(=CC=CC1=NC3=CC=CC=C23)[N+]([O-])=O,1 +CCOC1=C(C=C(C=C1)NC(C)=O)N,1 +C1=CC=C(C=C1)N=NC2=CC=CC=C2,1 +ClC4=C1C=CC=CC1=C3C=CC2=CC=CC=C2C3=C4,1 +CCC12OC1(C(=O)NC2(C)O)C(=O)OC,1 +OC5C(O)C4=C(C3=CC2=C1C=CC=CC1=CC=C2N=C3C=C4)C6OC56,1 +O=S1(=O)C5=C4C3=C1C=C2C=CC=CC2=C3C=CC4=CC=C5,1 +[O-][N+](=O)C1=CC3=C(C=C1)C2=CC=CC=C2CC3,1 +CCN(CCCl)C1=CC=C(C=C1)CCCNC3=C2C=CC=CC2=NC4=CC=CC=C34,1 +CN1CC(=CC2C1CC3=C[N](CC=C)C4=CC=CC2=C34)CO,1 +CCCCC=CC=CC=CC=CC=COCC(O)CO,1 +CC(C)(C)OOC(=O)C1=CC=CC=C1,1 +ClC2=C1C(C3=C(C(C1=CC=C2)=O)C(=CC=C3)NC(=O)C4=CC=CC=C4)=O,1 +[O-][N+](=O)C3=CC2=C1C=CC=CC1=CC=C2C=C3,1 +CN(C)C(=O)C=CC1=CC=C(O1)[N+]([O-])=O,1 +CN(C)C1=CC=C(C=C1)N=NC3=CC2=CC=CC=C2C=C3,1 +O1C5C1C4=C3C2=CC=CC=C2C=CC3=CC6=C4C5=CC=C6,1 +N(NC1=CC=CC=C1)C2=CC=CC=C2,1 +CCOC(=O)CNC(=O)C(C)Br,1 +OC5=CC4=CC3=C1C=CC=CC1=C2C=CC=CC2=C3C=C4C=C5,1 +C1OC1CC2=CC=C(C=C2)CC3=CC=CC=C3,1 +[O-][N+](=O)C4=CC=C3C1=CC=CC2=C(C=CC(=C12)C3=C4)[N+]([O-])=O,1 +NC1=C(C=CC=C1)N,1 +CC1=CC(=C(C=C1)C)NO,1 +[O-][N+](=O)C1=CC=C(C=C1)C=CC(=O)C2=CC=C(C=C2)[N+]([O-])=O,1 +CCC=C1OC(=O)C2=C1C=CC=C2,1 +OC2=C(C1=CC=CC=C1C=C2)N=NC3=CC=CC=C3,1 +C[N]1C(=NC2=CC(=CC=C12)Cl)N,1 +NC3=CC2=C1C=CC=CC1=CC=C2C=C3,1 +CC1=C(C=CC=C1)N=NC2=CC(=C(C=C2)N=NC4=C3C=CC=CC3=CC=C4O)C,1 +C[N+]2=C1C=C(C=CC1=CC3=CC=CC=C23)N,1 +ClC(=O)CCC1=CC=CC=C1,1 +C1CCC2=C(C1)C6=C4C2=C3C=CC=CC3=CC4=C5C=CC=CC5=C6,1 +COC1=C(C=CC=C1)N=NC3=C2C=CC=CC2=CC=C3O,1 +CC1=CC(=C(C=C1)C)[N+]([O-])=O,1 +[O-][N+](=O)C1=CC2=C(C=C1)C(=CC3=C2C(=CC=C3)[N+]([O-])=O)[N+]([O-])=O,1 +CC2C(O)CCC3=CC(=O)C1(OC1C23C)C4OC4CO,1 +CN(C)[N+]([O-])=O,1 +OCCC1=CC=C(C=C1)[N+]([O-])=O,1 +CC(=O)OCC1=C(C=CC(=C1)C(C)=O)OC(C)=O,1 +O1C=CC2=C1C=C3C=CC4=CC=CC5=CC=C2C3=C45,1 +OCCN(CCO)N=O,1 +CC(C)=[N+]([O-])[O-],1 +CC(=O)N(NC1=CC3=C(C=C1)C2=CC=CC=C2C3)C4=CC6=C(C=C4)C5=CC=CC=C5C6,1 +ClC=C(Cl)C(Cl)Cl,1 +OC2=C1C(C5=C(OC1=CC=C2)C3=C(OC4OC=CC34)C=C5O)=O,1 +[O-][N+](=O)C4=C2C=CC=C3C1=CC=CC=C1C(=C23)C=C4,1 +[O-][N+](=O)C1=CC(=CC=C1)[N+]([O-])=O,1 +NC2=C1N=C([N](C1=NC=N2)C3=CC=C(C=C3)[N+]([O-])=O)C4=CC=C(C=C4)[N+]([O-])=O,1 +OS(=O)(=O)OC2=C3C=CC4=C1C=CC=CC1=CC5=CC=C(C=C2)C3=C45,1 +CC1CS(=O)(=O)CCN1N=CC2=CC=C(O2)[N+]([O-])=O,1 +COC2=CC1=C(C3=C(C(=C1C(=C2)O)O)C(=O)C=C(C)C3=O)O,1 +C1CC2(CCO1)CO2,1 +OC1CC2=C4C1=CC=C5C=CC3=CC=CC(=C2)C3=C45,1 +BrCC2=C1C=CC=CC1=CC3=CC=CC=C23,1 +CC4=C1C=CC=CC1=C3N=C2C=CC=CC2=C(C3=C4C)Cl,1 +O=NN1CCCC1,1 +CC(=O)NC1=CC=C(C=C1)C2=CC=C(C=C2)NC(C)=O,1 +C[N]2C1=CC=CC=C1C3=C(C)C=CC(=C23)C,1 +CNC2=C(C1=NC=CN=C1C=C2)C,1 +[O-][N+](=O)C2=C3C=CC4=[N+](C1=CC=CC=C1C5=CC=C(C=C2)C3=C45)[O-],1 +NC1=C(C=C(C(=C1)Cl)[N+]([O-])=O)O,1 +CN(C)CCCl,1 +NNC1=CC=CC=C1,1 +COC1=CC(=C(C=C1)C(=O)C2=C(C=CC=C2)O)O,1 +CCN(CC)C1=CC(=CC=C1)O,1 +NC3=C2C(=C1C=CC=CC1=NC2=CC=C3)N,1 +CC1CO1,1 +CC1=CC=C[N]2C1=NC3=C(C)C(=CN=C23)[N+]([O-])=O,1 +CC1=CC2=C(C=C1)C3=CC=C4C=CC=C5C=CC(=C2)C3=C45,1 +OC1=CC=C(C=C1)NC3=C2C=CC=CC2=NC4=CC=CC=C34,1 +CC3=CC2=C1C=CC=CC1=CC=C2C(=C3)C,1 +CC4CC1C(CC2=C[N](CC=C)C3=CC=CC1=C23)N(C4)C#N,1 +[O-][N+](=O)C1=CC4=C3C(=C1)C2=CC=CC=C2C3=CC=C4,1 +CC1(CO1)C2=CC=C(C=C2)[N+]([O-])=O,1 +CNC3=NC1=C(C=CC2=NC=CC=C12)[N]3C,1 +NC1=CC(=C(C=C1)Cl)N,1 +CN(C)CCNC(=O)C2=C1N=C(C=CC1=CC=C2)C3=CC=CC=C3,1 +ONC2=C1C=CC=CC1=CC=C2,1 +OC1=NC2=CC=C3C=CC=C4C=CC(=C1)C2=C34,1 +CC1=C2C(=CC=C1)C3=C(C(=C2)C)C4=C(C=C3)C(O)C(O)C5OC45,1 +CCCCC1=CC=C(C=C1)N=CC2=CC=C(C=C2)OC,1 +C[N+]1=CC=C(CC1)C2=CC=CC=C2,1 +OC1=NC(=C(C=N1)N(CCCl)CCCl)O,1 +[O-][N+](=O)C1=C(C=CC=C1)SSC(Cl)=C(Cl)C(Cl)=C(Cl)Cl,1 +OC(=O)C1=CC(=CC=C1)[N+]([O-])=O,1 +COC1=C(C=CC(=C1)C2=NC(=C([NH]2)C3=CC=CC=C3)C4=CC=CC=C4)O,1 +[O-][N+](=O)C1=CC2=C(C=C1)NC(=O)C2=O,1 +COC1=NSC2=CC=CC(=C12)[N+]([O-])=O,1 +CN(CC(=O)COC(C)=O)N=O,1 +CS(=O)(=O)OCCCCOS(C)(=O)=O,1 +CCC=CC=CC=CC=CC=COCC(C)O,1 +CN(C)CCNC(=O)N2C1=C(C=CC=C1)C(=O)C3=C2C=CC=C3,1 +[O-][N+](=O)C1=CC(=CC(=C1)[N+]([O-])=O)[N+]([O-])=O,1 +OCCBr,1 +COC1=CC(=CC=C1)NC(=O)C2=CSC(=C2)[N+]([O-])=O,1 +NNC1=C(C=C(C=C1)[N+]([O-])=O)[N+]([O-])=O,1 +ClC(Cl)=CC=O,1 +CC3=CC2=CC1=CC=CC(=C1C(=C2C(=C3)O)O)O,1 +C[N]2C1=CC=CC=C1C3=CC=CC=C23,1 +CCC(COC(=O)C(C)=C)(COC(=O)C(C)=C)COC(=O)C(C)=C,1 +CC(=O)CN(CC(C)=O)N=O,1 +C1=CC3=C(C=C1)C2=CC=CC=C2N=C3,1 +COC1OC1(C)C,1 +CC(Cl)CCl,1 +[O-][N+](=O)C(Cl)(Cl)Cl,1 +CC4=C2C1=CC=CC=C1[NH]C2=C3C(C=CC(C3=N4)=O)=O,1 +OCC2=C1C=CC=CC1=CC3=CC=CC=C23,1 +CC(C)=CC3C(C(=O)OCN2C(=O)C1=C(CCCC1)C2=O)C3(C)C,1 +CC(C)Br,1 +CCC1=CC=C(C=C1)NC(=O)C2=CSC(=C2)[N+]([O-])=O,1 +CCCCC[N]3C=C2CC1C(C=C(C)CN1C)C4=C2C3=CC=C4,1 +C(CC1=CC=CC=C1)C2CO2,1 +C[N]2C(=NC3=C1N=CC(=NC1=C(C)C(=C23)C)C)N,1 +NC1=CC=C(C=C1)C2=C(C=C(C=C2)N)[N+]([O-])=O,1 +CCC12OC1(C(=O)OC)C(=O)OC2C,1 +NC1=CC(=C(C=C1)N)[N+]([O-])=O,1 +[O-][N+](=O)C1=CC=C(O1)C=CC=O,1 +NC3=CC2=NC1=CC=CC=C1N=C2C=C3,1 +CC1=C(C=CC=C1[N+]([O-])=O)[N+]([O-])=O,1 +COC(=O)C(=CC)C=C(C)C=C(C)C=CC=C(C)C(=O)C12OC1C(O)(CCO)NC2=O,1 +OC2=C(C(=C1C(C3=C(C(C1=C2)=O)C=CC=C3)=O)O)O,1 +CCCCCNC(=O)C=CC1=CC=C(O1)[N+]([O-])=O,1 +CCC(C)=NO,1 +O1C2C1C6=C4C3=C2C=CC=C3C=CC4=C5C=CC=CC5=C6,1 +[O-][N+](=O)C2=CC1=CC(=C(C=C1C=C2)[N+]([O-])=O)[N+]([O-])=O,1 +COC3=CC2=CC1=CC(=CC(=C1C(=C2C(=C3)O)O)O)C,1 +[O-][N+](=O)C1=CC2=C(C=C1)C=CC2,1 +CC4=C2C1=CC=CC=C1C=CC2=C3C=CC=CC3=C4,1 +ClC(Cl)(Cl)Br,1 +[O-][N+](=O)C1=C2C=CC3=CC=C(C4=CC=C(C=C1)C2=C34)N=O,1 +O=C(NCC1=CC=CC=C1)C2CO2,1 +CN(C)C1=CC=C(C=C1)C(=O)C2=CC=C(C=C2)N(C)C,1 +CC(C)C(NC(C)=O)C(=O)N(CC(O)=O)N=O,1 +C1=CC2=CN=C3C=CC=C4C=CC(=C1)C2=C34,1 +C(CC1CO1)C2CO2,1 +ClCC=O,1 +CN(C)C1=CC(=C(C=C1)N=NC2=CC=CC=C2)C,1 +CC1=CC=C(C=C1)S(=O)(=O)NN,1 +CN3CCC4=C2C1=CC(=CC=C1C=CC2=CC=C34)O,1 +C[N]2C(=NC3=C1N=CC(=NC1=CC(=C23)C)C)N,1 +COC3=C(C=C2C(=C1C=COC1=NC2=C3)OC)OC,1 +N1C2C1C6=C5C3=C2C=CC=C3C4NC4C5=CC=C6,1 +CNC(=O)ON,1 +NC(=O)N=NC(N)=O,1 +C5=CC=C4C=C3C2=C1C(=CC=CC1=CC=C2)C3=CC4=C5,1 +COC3=NC2=C(C1=CC=C(C=C1N=C2C=C3)Cl)NCCCNCCCl,1 +COC(=O)C1=C(C(=C(O1)[N+]([O-])=O)Cl)Cl,1 +CC2C1=C(C=CC=C1)C3=C2C=C(C=C3)C,1 +CC4=C3N=C2C1=CC=CC=C1C=CC2=C(C3=CC=C4)C,1 +NC1=C(C=CC(=C1)Cl)O,1 +CCC1=NC4=C([NH]1)C3=C2C=C(C=CC2=CC=C3C=C4)O,1 +CC2C1=C(C=CC=C1)C3=C2C=CC=C3,1 +CCC1=C(C=CC=C1)NC(=O)C2=CSC(=C2)[N+]([O-])=O,1 +CC1=C(C=C(C(=C1)C)[N+]([O-])=O)[N+]([O-])=O,1 +CC1=C(C=C(C=C1)N)[N+]([O-])=O,1 +CCCCCOC(=O)C=CC1=CC=C(O1)[N+]([O-])=O,1 +CC(C)N(N)C(C)C,1 +COC3=C1C=CC=C2OC(=CC(=C12)C=C3)[N+]([O-])=O,1 +NC(CCC(=O)NC(CSC(Cl)=C(Cl)Cl)C(=O)NCC(O)=O)C(O)=O,1 +C4=CC3=CC2=CC1=CC=CC=C1C=C2C=C3C=C4,1 +CNC(=O)C=C(C)OP(=O)(OC)OC,1 +COC1=CC(=CC=C1)C=CC2=CC=C(C=C2)N,1 +NC1=CC(=CC(=C1)[N+]([O-])=O)[N+]([O-])=O,1 +CC(Br)C(=O)NC1=CC=CC=C1,1 +OC(=O)C(Br)Br,1 +COC3=C2N=C1C=CC=CC1=C(C2=C(C=C3)[N+]([O-])=O)NCCCN(C)C,1 +CCN(N=O)C(=O)N(C)C,1 +CC(C)(N=O)[N+]([O-])=O,1 +CC1OCC(=O)C(=O)C1O,1 +O=P2(OCC1=C(C=CC=C1)O2)OC3=CC=CC=C3,1 +CCC1=C(C(=O)OC)C(=O)OC1C,1 +COC(=O)C1=CCCN(C)C1,1 +CN(CCO[N+]([O-])=O)[N+]([O-])=O,1 +ClCC2=C4C=CC=C5C=CC3=CC1=CC=CC=C1C(=C2)C3=C45,1 +NC1=CC(=C(C=C1)C2=C(C=C(C=C2)N)Cl)Cl,1 +O=NN1CCSC1,1 +C[N]1C(=NC2=C1C=CC3=CC=CN=C23)N,1 +OC(=O)C(Cl)Br,1 +CC1=C(C=CC=C1)N=NC2=C(C=C(C(=C2)C)N)N,1 +NC3=CC=C2CC1=CC=CC=C1C2=C3,1 +CC4=CC3=NC2=C1C=CC=CC1=CC=C2C=C3C=C4,1 +COC(=O)C1=CCCN(C1)N=O,1 +OC1=CC(=CC=C1)[N+]([O-])=O,1 +CCS(=O)CCSP(=O)(OC)OC,1 +O1C2C1C6=C3C2=CC=CC3=C5C=C4C=CC=CC4=CC5=C6,1 +FC1=C(C=CC=C1)C(Cl)=O,1 +CC1=C3C(=C(C(=C1)N)C)C2=CC(=CC=C2[NH]3)O,1 +CCC1=C4C(=CC2=CC=CC=C12)C3=CC=CC=C3C=C4,1 +OC2=C1C(C=CC(C1=C(C(=C2Cl)Cl)O)=O)=O,1 +CNC1=CC=C(C=C1)N=NC2=CC=C(C=C2)N(C)C(C)=O,1 +CC2=C1C=CC=CC1=NC=C2,1 +NC1=C(C=C(C=C1)[N+]([O-])=O)Cl,1 +[O-][N+](=O)C1=CC2=C(C=C1)C(=O)NC2=O,1 +ClC(Cl)(Cl)C=O,1 +COC(=COC(N)=O)C1=C(C(=C(C(=C1O)N2CC2)C)O)N3CC3,1 +CC1=C(C=C(C(=C1)N)[N+]([O-])=O)N,1 +[O-][N+](=O)C2=CC=C1C=N[NH]C1=C2,1 +COC2=CC1=CC=CN=C1C(=C2)NC(C)CCCN,1 +CCOC1=CC=C(C=C1)N,1 +OC1=CC=C2C(=C1)C=CC3=C2C4=C([NH]3)C=CC5=C4C=CC=C5,1 +[N-]=[N+]=C1C=NC(=O)NC1=O,1 +C(CCOCC1CO1)COCC2CO2,1 +CNC2=C(C1=NC(=CN=C1C=C2)C)C,1 +CC1=CC3=C(C(=C1)O)C(=O)C2=C(C=CC=C2O)C3=O,1 +COC1=C(C=CC(=C1)N)C,1 +CC1=C(C(=C(C(=C1)C)N)C)N,1 +ONC2=C1C=CC=CC1=[N+](C=C2)[O-],1 +COP(=O)(OC)C(O)C(Cl)(Cl)Cl,1 +NCCNCCO,1 +C1=CC5=C(C=C1)C4=CC3=C2C=NC=CC2=CC=C3C=C4C=C5,1 +CC(=O)N(Cl)C1=CC3=C(C=C1)C2=CC=CC=C2C3,1 +[O-][N+](=O)C1=CC2=CC=C3C=CC=C4C=CC(=C1)C2=C34,1 +CNC2=C(C1=NC=C(N=C1C=C2)C)C,1 +CC(=O)NC1=CC3=C(C=C1)C2=C(C=CC=C2C3)O,1 +[O-][N+](=O)C2=C3C=CC4=C1C=CC=CC1=NC5=CC=C(C=C2)C3=C45,1 +ON=C1CCCCC1,1 +[O-][N+](=O)C1=CC=C(O1)C=NN2CCCNC2=O,1 +CCC=CC=CC=CC=CC=CC=COCC(O)CO,1 +ClCC(Br)=C,1 +CC1=NC(=C(C=N1)CNC(=O)N(CCCl)N=O)N,1 +FC1=NC=CC=C1,1 +ON(C(=O)C1=CC=CC=C1)C2=CC4=C(C=C2)C3=CC=CC=C3C4,1 +O=CC1=CC=CO1,1 +[O-][N+](=O)C3=CN=C2[N]1C=CC=CC1=NC2=C3,1 +CC1=C2C(=CC=C1)C3=CC=C4C=CC=C5C=CC(=C2)C3=C45,1 +CN(C)S(=O)(=O)CCNC(=O)N(CCCl)N=O,1 +CCS(=O)(=O)CC[N]1C(=NC=C1[N+]([O-])=O)C,1 +NC(=O)C1(OC1C(=O)C2=CC=CC=C2)C(N)=O,1 +COC3=CC=C2N=C1OC=CC1=C(OC)C2=C3,1 +CC1=C(C=CC(=C1)C2=CC(=C(C=C2)N)C)N,1 +CCNN=NCC,1 +OC2=C1C(C3=C(C(C1=CC=C2)=O)C(=CC=C3)O)=O,1 +CCOC1=CC=C(C=C1)N(O)C(C)=O,1 +COC1=C(C=C(C=C1)[N+]([O-])=O)N=NC3=C2C=CC=CC2=CC(=C3O)C(=O)NC4=CC(=CC=C4)[N+]([O-])=O,1 +OCC=[N+](O)[O-],1 +BrN1C(=O)CCC1=O,1 +ON=C(O)CC1=C[N](C=N1)N=O,1 +OCC(O)CN=[N+]=[N-],1 +CC1=CC=C(C=C1)C(Cl)=O,1 +NC1=CC=C(C=C1)OC2=CC=C(C=C2)N,1 +CCC1=C(C(=CC=C1)CC)NC(=O)CCl,1 +S1C=CN=C1,1 +CC(C)(Cl)[N+]([O-])=O,1 +CN(C)C1=CC=C(C=C1)N=NC2=CC(=CC=C2)C,1 +NC1=C(C=C(C=C1)C2=CC(=C(C=C2)N)Br)Br,1 +COC1=NSC2=C(N)C=CC=C12,1 +C[N]1N=C(C)C(=C1N)C(=O)C2=C(C=CC=C2)F,1 +CC1=CC(=CC(=C1)C)NO,1 +COC1=CC=C(C=C1)N=[N+]([O-])C2=CC=C(C=C2)OC,1 +[O-][N+](=O)C1=C2C(=CC=C1)C(=CC=C2)[N+]([O-])=O,1 +C(OCC1=CC=CC=C1)C2CO2,1 +CC(C)(C)C1=CC(=O)C=C(C1=O)C2=CC(=O)C=C(C2=O)C(C)(C)C,1 +CCC=CC=CC=CC=CC=COCC(O)C1=CC=CC=C1,1 +CC(=O)N(O)C1=C(C=CC=C1)C,1 +COC1=C(C=CC=C1)NC(=O)C2=CSC(=C2)[N+]([O-])=O,1 +CC1=CC=C(C=C1)S(=O)(=O)OCC2CO2,1 +COC1=C(C=C(C=C1)[N+]([O-])=O)[N+]([O-])=O,1 +CC(C)=CC2C(C(=O)OCC1=CC=C(O1)CC#C)C2(C)C,1 +OC1OC(=O)C(=C1C(Cl)Cl)Cl,1 +ClCCNCCCNC2=C1C=CC=CC1=NC3=CC=CC=C23,1 +C1C4=C3C2=C1C=CC=C2C=CC3=CC=C4,1 +O=CC1CO1,1 +NC1=C(C=C(C=C1)CC2=CC(=C(C=C2)N)Cl)Cl,1 +NC(=S)C1=C(C=CC=C1Cl)Cl,1 +CC(C)(C)C1=CC=C(C=C1)OCC2CO2,1 +COC1=CC=C2C(=C1)C=CC3=C2C=C(O3)[N+]([O-])=O,1 +ClCC(Cl)=C,1 +CC1OC(CC(N)C1O)OC2=CC(O)(CC5=C2C(=C4C(=C3C=CC=CC3=C(C4=C5O)O)O)O)C(C)=O,1 +C=CCCC1CO1,1 +BrCC3=C2C1=CC=CC=C1C=CC2=CC4=CC=CC=C34,1 +[O-][N+](=O)C2=C3C=CC4=C1CCC=CC1=CC5=CC=C(C=C2)C3=C45,1 +ClC1=CC3=C(C=C1)C2=CC=CC=C2O3,1 +C([N]1C=CN=C1)C2=CC=CC=C2,1 +OS(=O)(=O)OCC4=C2C1=CC=CC=C1C=CC2=C3C=CC=CC3=C4,1 +CC1=CC(=C(C=C1)N=NC3=C2C=CC=CC2=CC=C3O)[N+]([O-])=O,1 +NC3=C(C=C2C1=CC=CC=C1[NH]C2=C3)[N+]([O-])=O,1 +OC(=O)COC1=CC=C(C=C1)N(CCCl)CCCl,1 +NC2=C1N=C[N](C1=NC=N2)CC(O)CN=[N+]=[N-],1 +C[N]2C(=NC3=C1N=C(C)C(=NC1=C(C)C(=C23)C)C)N,1 +CC3=C2C=CC1=CC=CC=C1C2=NC4=CC=CC=C34,1 +FC1=CC=C(C=C1)C(=O)C2OC2C3=CC=CC=C3,1 +[O-][N+](=O)C1=C(C=CC=C1)CC#N,1 +COC(=O)C12OC1(C)C(OC2=O)C(C)C,1 +[O-][N+](=O)C3=CC2=CC1=CC=CC=C1C=C2C=C3,1 +ClCC1=C4C(=CC2=CC=CC=C12)C3=CC=CC=C3C=C4,1 +BrCC(Br)CBr,1 +NCCC1=C(C=C(C(=C1)O)O)O,1 +ONC1=CC=C(C=C1)N=NC2=CC=CC=C2,1 +[O-][N+](=O)C1=CC3=C(C=C1)C2=C(C=C(C=C2C3=O)[N+]([O-])=O)[N+]([O-])=O,1 +CC(=O)OC(OC(C)=O)C1=CC=C(O1)[N+]([O-])=O,1 +COC1=CC=CC=CC1,1 +NC1=NC3=C(C=C1)C2=CC=CC=C2[NH]3,1 +BrCC(=O)NCC1=CC=CC=C1,1 +COC(=O)C1=CC=C(O1)[N+]([O-])=O,1 +CC1=CC=C2C=C4C(=C3CCC1=C23)C=CC5=CC=CC=C45,1 +COC(=O)C(C)=CC1=CC=C(O1)[N+]([O-])=O,1 +NC1=CC=C(C=C1)N=NC2=CC=CC=C2,1 +CNC2=C(C1=NC(=C(N=C1C=C2)C)C)C,1 +ClC(=O)C1=C(C=CC=C1Cl)Cl,1 +O=C(NC1=CC=CC=C1)C2CO2,1 +[O-][N+](=O)C1=NC=C[N]1CC(=O)NCC2=CC=CC=C2,1 +N1C4C1C3=C(C2=CC=CC=C2C=C3)C5=C4C=CC=C5,1 +O1C3C1C2=CSC=C2C4=CSC=C34,1 +CBr,1 +OC3C=CC2=C1C(=CC4=C(C1=CC=C2C3O)CCC4=O)C(F)(F)F,1 +CNC3=CC2=C1C=C(C=CC1=CC=C2C=C3)O,1 +CC3(C)CC2C=C(CO)C1(CC1(C)C2C3)C=O,1 +ClCC1=CC(=O)OC1,1 +CCOP(=S)(OCC)OP(=S)(OCC)OCC,1 +N1C6C1C2=C(C=C4C(=C2)C3=CC=CC=C3C5NC45)C7=C6C=CC=C7,1 +CC3=C2C1=CC=CC=C1C=CC2=CC4=CC=CC=C34,1 +OC(CC1=C[N](N=O)C2=CC=CC=C12)C(O)=O,1 +CC1=NC=C([N]1CCO)[N+]([O-])=O,1 +ClC3C6(Cl)C4C2C1OC1C5C2C3(Cl)C(Cl)(C45)C6(Cl)Cl,1 +[O-][N+](=O)C1=CC(=CC=C1)Br,1 +[O-][N+](=O)C1=CC3=C(C=C1)C2=C(C=C(C=C2)[N+]([O-])=O)C3=O,1 +COC1=CC4=C3C(=C1OC)C2=CC=CC=C2C(C3=NC=C4)=O,1 +CCCCN(CCCCO)N=O,1 +COS(=O)(=O)OC,1 +OCC(O)C1CO1,1 +ClC1=C2C=CC3=CC=CC4=CC=C(C=C1)C2=C34,1 +C(CC2=C1C=CC=CC1=CC=C2)C3CO3,1 +[O-][N+](=O)C2=C(C=C1OC3=C(OC1=C2)C=C(Cl)C(=C3)Cl)Cl,1 +CC1(C)C(C=C(Cl)Cl)C1C(=O)OCC2=CC(=CC=C2)OC3=CC=CC=C3,1 +[O-][N+](=O)C1=CC(=CS1)C(=O)NC2=CC=CC=C2,1 +OC4=C3C2=CC=C1C=CC=CC1=C2C=CC3=CC=C4,1 +CCN(CC)C1=CC=C(C=C1)N,1 +C[N]2C(=NC3=CC1=NC=C(C)N=C1C(=C23)C)N,1 +OCCC1=C(C=CC=C1)[N+]([O-])=O,1 +CC4=C2C1=CC=CC=C1C=CC2=C3CCC(C3=C4)=O,1 +OC1=CC4=C(C=C1)C3=CC=C2C=CC=CC2=C3C=C4,1 +CC3=CC2=CC1=CC=CC=C1C=C2C=C3,1 +CCC1=C(C(=CC=C1)CC)N(COC)C(=O)CCl,1 +[NH]3C2=CC=C1C=CC=CC1=C2C4=C3C=CC5=CC=CC=C45,1 +CC(=O)C=C,1 +[O-][N+](=O)C1=CC(=C(C=C1)C2=C(C=C(C=C2)[N+]([O-])=O)[N+]([O-])=O)[N+]([O-])=O,1 +CN1CCC4=C2C1CC5=C(C2=C3OCOC3=C4)C=CC=C5,1 +CC1=C3C=CC4=CC=CC5=CC=C(C2=CC=CC=C12)C3=C45,1 +CC(=O)OCC(O)CO,1 +CC(C)CCCC(C)C3CCC4C2C(OO)C=C1CC(O)CCC1(C)C2CCC34C,1 +CC(=O)C(Cl)Cl,1 +[O-][N+](=O)C2=C1C=CC=C3C1=C(C=C2)C4=C(C=CC5=CC=CC3=C45)[N+]([O-])=O,1 +C1=CC2=C5C=CC=C6C=CC4=CC=C3C=CC(=C1)C2=C3C4=C56,1 +[O-][N+](=O)C3=CC=C2OC(=O)C1=CC=CC=C1C2=C3,1 +CC(=O)NC1=CC=C(C=C1)OC2=CC=CC=C2,1 +CC4CC3(OC1OC(CO)C(O)C(O)C1O)C=C(C)C2(CC2)C(C)(O)C3C4=O,1 +C1OC1COC2=C(C=CC=C2)C3=CC=CC=C3,1 +COC(=O)C(CSCCBr)NC(C)=O,1 +CC5=C3CCC4=C2C1NC1C6=C(C2=CC(=C34)C=C5)C=CC=C6,1 +CC(C)OS(C)(=O)=O,1 +CN(C)C1=CC=C(C=C1)C,1 +CNC(=O)OC1=CC=C(C=C1)C2=CC=CC=C2,1 +C6CCC5=C3C1=CC=CC=C1C4=CC2=CC=CC=C2C(=C34)C=C5C6,1 +NC1=C3C(=CC=C1)C2=CC=CC=C2C=C3,1 +OP(=O)(OCC(Br)CBr)OCC(Br)CBr,1 +[O-][N+](=O)C1=CC=C(C=C1)OC2=CC=CC=C2,1 +CC1=C3C(=C(C=C1)C)C2=CC(=CC=C2[NH]3)[N+]([O-])=O,1 +CC1=CC=C(C=C1)NCCCl,1 +O=NC2=CC1=CC=CC=C1C=C2,1 +C[N]1C(=NC2=C1C=CC3=CC=NC=C23)N,1 +C2=CC1=CC4=C(C=C1C=C2)C3=CC=CC=C3C=C4,1 +OP1(=NCCCO1)N(CCCl)CCCl,1 +OC2C1=C(C=CC=C1)C3=C2C=C(C=C3)[N+]([O-])=O,1 +C1OC1COC3=CC=C2SN=CC2=C3,1 +[O-][N+](=O)C1=CC=C(C=C1)C3=C([N]2C=CSC2=N3)N=O,1 +C1=CC2=CC=C3C=CC=C4C=CC(=C1)C2=C34,1 +CC(=O)ON(C(C)=O)C1=CC3=C(C=C1)C2=CC=CC=C2C3,1 +NC1=C(C=C(C=C1)[N+]([O-])=O)O,1 +COC1=CC3=C(C=C1)OC2=C(C(=CC(=C2)OC)O)C3=O,1 +OC2=C1C(C=CC(C1=CC=C2)=O)=O,1 +CC3=CC(=O)C2=C(C(=C1C=CC=CC1=C2O)O)C3=O,1 +CN(C)C(Cl)=O,1 +COC1=C(C=CC(=C1)N=NC2=CC=CC=C2)N,1 +CC(C)CC(=O)OCC1=COC=C2C(=CC=[C]12)C=O,1 +CC(=O)OCC3=C2C1=CC=CC=C1C=CC2=CC4=CC=CC=C34,1 +COC1=C(C=CC(=C1)[N+]([O-])=O)N,1 +N1C3C1C2=C(C=CC=C2)C4=C3C=CC=C4,1 +CNC(=O)CSP(=S)(OC)OC,1 +CC1=C(C=CC=C1)NO,1 +OC5=CC4=C3C2=C1C=CC=CC1=CC=C2[NH]C3=CC=C4C=C5,1 +C=CC(=O)NCNC(=O)C=C,1 +CCOC1=CC=C(C=C1)[N+]([O-])=O,1 +CC(C)(C)N(CC(=O)C1=CC(=C(C=C1)O)CO)CC2=CC=CC=C2,1 +[O-][N+](=O)C1=CC3=C(C=C1)C2=CC=CC=C2C(O3)=O,1 +[O-][N+](=O)C1=CC(=CS1)C(=O)NC2=C(C=CC=C2)Cl,1 +NC1=C(C=C(C(=C1)[N+]([O-])=O)N)F,1 +OC1=CC2=C(C(=C1)O)C(C(C(O2)C3=CC(=C(C=C3)O)O)=O)=O,1 +CN(C)C1=CC=C(C=C1)N=NC2=CC(=CC=C2)CCl,1 +CC(Br)C(Br)CCl,1 +C[N]1C(=NC2=C1C=C(C)C3=NC=CN=C23)N,1 +C4CC3=C(C2=C1C=CC=CC1=CC=C2C=C3)C4,1 +COCC4CN(C)C3CC1=C[N](C)C2=CC=CC(=C12)C3=C4,1 +[O-][N+](=O)C1=CC(=C(C(=C1)[N+]([O-])=O)C2=CC=CC=C2)[N+]([O-])=O,1 +C3=CC2=CC1=CC=CC=C1N=C2C=C3,1 +CCN1C=C(C(O)=O)C(=O)C2=C1N=C(C(=C2)F)N3CCNCC3,1 +CC(=O)NC(CSCCCl)C(O)=O,1 +ClC(Cl)C1=CC=CC=C1,1 +[O-][N+](=O)C1=CC=C(C=C1)C=CC2=CC(=CC=C2)Cl,1 +[O-][N+](=O)C1=CC(=C(C=C1)C2=CC(=C(C=C2)[N+]([O-])=O)[N+]([O-])=O)[N+]([O-])=O,1 +CCCCN(CCCC)N=O,1 +CNC(=O)C=CC1=CC=C(O1)[N+]([O-])=O,1 +COC1=C(C=CC(=C1)NS(C)(=O)=O)NC3=C2C=CC=CC2=NC4=CC=CC=C34,1 +C[N]1C=NC(=C1N=O)C2=CC=CC=C2,1 +[O-][N+](=O)C2=C3C=CC4=NC1=CC=CC=C1C5=CC=C(C=C2)C3=C45,1 +N#CC1=CC3=C2C1=CC=CC2=CC=C3,1 +NC3=CC2=C(C1=CC=CC=C1N=C2C=C3)N,1 +ONC1=CC=CC=C1,1 +ClC2=CC1=CC=CN=C1C=C2,1 +C1=CC3=C(C=C1)C4=C2C=CC=CC2=C5C=CC=C6C=CC(=C3)C4=C56,1 +CCC(C)OC(=O)C=CC1=CC=C(O1)[N+]([O-])=O,1 +OC1=C2C=CC3=CC=C(C4=CC=C(C=C1)C2=C34)[N+]([O-])=O,1 +ClC=C(Cl)SCC1=CC=CC=C1,1 +S(SC2=NC1=CC=CC=C1S2)C4=NC3=CC=CC=C3S4,1 +N1C5C1C2=C(C=C4C(=C2)C3=CC=CC=C3C=C4)C6=C5C=CC=C6,1 +CC(=O)NC2=C1N=CC=CC1=CC=C2,1 +CN1CN=C2C(=[N+](O)[C-]N=C12)N,1 +CC=C(Cl)C=O,1 +NC(=N)NC(=O)C1=C(N=C(C(=N1)Cl)N)N,1 +C[N]1C(=NC2=C1C=CC3=NC=C(C)N=C23)N,1 +COC3=CC(=C2N=C1OC=CC1=C(OC)C2=C3)OC,1 +CN(COC(C)=O)[N+]([O-])=O,1 +CC(Cl)(Cl)[N+]([O-])=O,1 +CN(C)C(=S)SSC(=S)N(C)C,1 +NC1=CC2=CC=C3C=CC=C4C=CC(=C1)C2=C34,1 +NC1=CC=C(C=C1)SC2=CC=CC=C2,1 +CC1=C3C(=CC2=CC=CC=C12)C4=C(C=C3)C(O)C(O)C5OC45,1 +[O-][N+](=O)C1=CN=C(S1)N2CCN(C(=O)C(Cl)Cl)C2=O,1 +COC1=NSC2=CC=C(N)C=C12,1 +[O-][N+](=O)C1=CC=C2C=CC3=C(C5=C(C4=CC=C1C2=C34)C=CC=C5)[N+]([O-])=O,1 +CN(C)CCCNC2=C1C(=CC=C(C1=NC3=CC=CC=C23)N(CCO)CCO)[N+]([O-])=O,1 +CC1=CC=C(C=C1)NC(=O)C2=CSC(=C2)[N+]([O-])=O,1 +ClC(Cl)=C(Cl)C=O,1 +COC3=C2N=C1OC=CC1=C(C2=CC=C3)OC,1 +COC1=C(C5=C(C(=C1)O)C(=O)C2=C(C3=C(C=C2OC)OC4OC=CC34)O5)OC,1 +[O-][N+](=O)C1=CC=C(C=C1)NC2=CC=C(C=C2)Cl,1 +NC1=CC=C(C=C1)CC2=CC=C(C=C2)N,1 +NC(CCC(=O)NC(CSC1=C(C=C(C=C1)[N+]([O-])=O)[N+]([O-])=O)C(=O)NCC(O)=O)C(O)=O,1 +NC(CSC(Cl)=C(Cl)C(Cl)=C(Cl)Cl)C(O)=O,1 +CNC1=C([N](C=N1)C)C(=O)N(C)N=O,1 +CC3=CC2=C1C=C(C=CC1=CC=C2C=C3)C,1 +COC1=C(C=CC(=C1)NS(C)(=O)=O)NC3=C2C=CC=C(C2=NC4=CC(=CC=C34)N=[N+]=[N-])C,1 +CCN(CCCl)CCCNC2=C1C=CC=CC1=NC3=CC=CC=C23,1 +CC(O)CN(C)C1=NN=C(C=C1)NN,1 +CC4=CC3=CC2=C1C=CC=CC1=CC=C2C=C3C=C4,1 +CC1(C)COC1=O,1 +CC(O)CN(CC(C)O)N=O,1 +CC(Cl)CO,1 +CC1=C(C=C(C=C1)N=NC2=CC(=C(C=C2)C)N)N,1 +ClC(Cl)C(=O)C(Cl)Cl,1 +COC2=C1OC=CC1=CC3=C2OC(C=C3)=O,1 +CC4=C2C=C1C=CC=CC1=CC2=C3C=CC(C(C3=C4)O)O,1 +NC2=C1C=CC=CC1=C(C=C2)N,1 +O=NC2=C3C=CC4=CC1=CC=CC=C1C5=CC=C(C=C2)C3=C45,1 +C[N]2C(=NC3=C1C=CC=NC1=CC(=C23)C)NC(C)=O,1 +C1=CN=C(C=C1)C2=CN=CC=C2,1 +CC(=O)NC1=CC=C(C=C1)C2OC2C(=O)C3=CC=CC=C3,1 +CC1=C4C(=C(C2=CC=CC=C12)CBr)C3=CC=CC=C3C=C4,1 +O=C1NCNC(=O)N1,1 +CC(=O)NC1=C(C(=CC=C1)N)C(O)=O,1 +C1OC1CC2=CC=CC=C2,1 +OC1=C(C=C(C=C1[N+]([O-])=O)C2=CC=CC=C2)[N+]([O-])=O,1 +C[N+]2=C1C=CC=CC1=C(C3=CC=CC=C23)N,1 +CCOC1=C(C=CC=C1)[N+]([O-])=O,1 +CCCCCN1C3C1C2=C(C=CC=C2)C4=C3C=CC=C4,1 +CC2=CC1=CC4=C(N=C1C=C2)C3=CC=CC=C3C=C4,1 +CC1=C3C(=C(C=C1)C)C2=CC=CC=C2C=C3,1 +C1=CC3=C(C=C1)C4=CC=C5C2=CC=CC=C2C=C6C=CC(=C3)C4=C56,1 +O1C2C=CC=CC12,1 +COC(=O)C=CC1=CC=C(O1)[N+]([O-])=O,1 +NC4=C1C=CC=CC1=C3N=C2C=CC(C=C2OC3=C4)=N,1 +NC1=C(C=CC=C1[N+]([O-])=O)[N+]([O-])=O,1 +COC1=CC3=C(C(=C1)OC)C(=O)C2=C(C(=CC=C2O)OC)O3,1 +O=C1C=CC3=C2C1=CC=CC2=CC=C3,1 +CCC2=C(N=C1C(=C(C=CC1=N2)NC)C)CC,1 +[O-][N+](=O)C2=CC=C1[NH]C=NC1=C2,1 +CN(C)C1=CC(=CC=C1)O,1 +[N-]=[N+]=NCC1=CC=CC=C1,1 +[O-][N+](=O)C1=CC=[N+](C=C1)[O-],1 +CC4=C1C=CC=CC1=C3N=C2C=CC=CC2=C(C3=C4)C,1 +COC1=C(C=CC(=C1)NS(C)(=O)=O)NC3=C2C=CC(=CC2=NC4=CC=CC=C34)N=[N+]=[N-],1 +O=CC=O,1 +CC2=NC1=CC(=C(C=C1C(=C2)C)C)N,1 +COC1=C(C5=C(C=C1)C2=C(C4=C(C=C2)C=C3OCOC3=C4)N(C)C5=O)OC,1 +CC1(C)CC2C(O)(C1)C=C(C=O)C3(CC23C)C=O,1 +CC=C1CC(=C)C(O)(CO)C(=O)OCC2=CCN3CCC(OC1=O)C23,1 +CC(=O)NC1=CC=C(C=C1)N,1 +ClC1=NC(=CC=C1)C(Cl)(Cl)Cl,1 +CCOS(=O)(=O)C1=CC=C(C=C1)C,1 +[O-][N+](=O)C4=CC=C3C2=C1C(=CC=CC1=CC=C2)C5=C3C4=CC=C5,1 +CC(=O)NN=CC2=[N+](C1=CC=CC=C1[N+](=C2)[O-])[O-],1 +CCN(CC)CCCC(C)NC2=C1C=CC(=CC1=NC=C2)Cl,1 +[O-][N+](=O)C1=CC3=C(C=C1)C2=CC=CC=C2C3,1 +S2C4=CC=CC5=CC=C3C1=CC=CC=C1C=C2C3=C45,1 +NC2=C1C(C4=C(C(C1=C(C=C2OC3=CC=CC=C3)O)=O)C=CC=C4)=O,1 +[O-][N+](=O)C1=CC3=C(C=C1)C2=CC5=C(C=C2CC3)C4=CC=CC=C4CC5,1 +O=C1C=CC(=O)C2=C1C=CC=C2,1 +NC3=CN=C2[N]1C=CC=CC1=NC2=C3,1 +[O-][N+](=O)C1=CC(=CS1)C(=O)NC2=CC=C(C=C2)F,1 +NC1=CC(=C(C=C1)O)[N+]([O-])=O,1 +CC1=C2C=CC3=CC=CC4=CC=C(C=C1)C2=C34,1 +CC1=CC=C(C=C1)NO,1 +NC3=CC2=CC1=CC=CC=C1C=C2C=C3,1 +OC5C=C3C2=C(C1=CC=CC=C1C=C2)C4=C3C(=CC=C4)C5O,1 +ClC1=C(Cl)C(=O)NC1=O,1 +OCCN1CN(CCO)CN(CCO)C1,1 +CSC1=C(C=C(C=C1)[N+]([O-])=O)[N+]([O-])=O,1 +NC1=CC=C(C=C1)NC3=C2C=CC=CC2=NC4=CC=CC=C34,1 +[O-][N+](=O)C4=C1C=CC=CC1=C3C=CC2=CC=CC5=C2C3=C4CC5,1 +OCCNC2=C1C=CC=CC1=NC(=N2)C3=CC=C(S3)[N+]([O-])=O,1 +ClCC=CCCl,1 +ClCC1=CC4=C3C(=C1)C2=CC=CC=C2C3=CC=C4,1 +C[N]1C=NC2=C(NO)N=CN=C12,1 +O=CC(=O)C1=CC=CC=C1,1 +[O-][N+](=O)C1=CC3=C(C=C1)C2=CC=C(C=C2C=C3)[N+]([O-])=O,1 +OCCN(CCO)C2=CC1=CC=CC=C1C=C2,1 +C=O,1 +CN(C)C1=CC=C(C=C1)N,1 +C[N]1C(=NC2=C1C=CC3=CN=CC=C23)N,1 +ClCC2=C4C=CC=C5C=CC3=C1C=CC=CC1=CC(=C2)C3=C45,1 +CC1=CC=C(C=C1)NC2=CC=C(C=C2)[N+]([O-])=O,1 +CCCCCC=CC(=O)CCC1=CC(=C(C=C1)O)OC,1 +CC1(CO1)C2=CC=C(C=C2)C3=CC=CC=C3,1 +COP(=S)(OC)OC1=CC(=C(C=C1)N)C,1 +CCNC(=O)C=CC1=CC=C(O1)[N+]([O-])=O,1 +OC5C=CC4=C3C1=CC=CC2=CC=CC(=C12)C3=CC=C4C5O,1 +COC1=C(C=CC(=C1)CNC(=O)CCCCCCC(C)C)O,1 +O=C(OCC=CC1=CC=CC=C1)C=CC2=CC=CC=C2,1 +C[N]1C(=NC2=C1C=CC3=NC=CC=C23)N,1 +ClC1=CC=C(C=C1)C3=C([N]2C=CSC2=N3)N=O,1 +COC1=C(C=CC=C1)CC2CO2,1 +[O-][N+](=O)C1=C3C=CC4=CC=CC5=CC=C(C2=CC=CC=C12)C3=C45,1 +CC(=O)N(OC(=O)C1=CC=CC=C1)C2=CC4=C(C=C2)C3=CC=CC=C3C4,1 +CC(=O)C1=CC(=CC=C1)[N+]([O-])=O,1 +FC2=CC1=CC=CN=C1C=C2,1 +OC1=C2C=CC3=CC=CC4=CC=C(C(=C1)[N+]([O-])=O)C2=C34,1 +C5CC4=C3C=C2C1=CC=CC=C1C=CC2=NC3=CC=C4C=C5,1 +ON(C=O)C1=CC=C(C=C1)C2=CC=CC=C2,1 +COC4=CC(=O)C3=C2[NH]C1=CC=CC=C1C2=C(C)N=C3C4=O,1 +OC2=C(C1=CC=CC=C1C=C2)N=NC3=CC=C(C=C3)N=NC4=CC=CC=C4,1 +C[N]1C(=NC2=C1C=CC3=NC(=CC=C23)O)N,1 +ClCC(=O)CCl,1 +OP(O)(=N)N(CCCl)CCCl,1 +C[N]2C=C1C=CC=C(C1=N2)[N+]([O-])=O,1 +FC2=C1C=CC=CC1=NC=C2,1 +O=C1C4=C3C2=C1C=CC=C2C=CC3=CC=C4,1 +ClCC1=C(Cl)C(=O)OC1,1 +C1=CC3=C(C=C1)C2=CC=CC=C2C=C3,1 +CC1=C(C=CC=C1)N=O,1 +OC1=C2C(=CC=C1)C3=C(C=C2)[NH]C4=C3C5=C(C=C4)C=CC=C5,1 +CC(=O)C(C)=O,1 +CC1=C(C=C(C=C1)NO)C,1 +[O-][N+](=O)C1=CC(=CS1)C(=O)NC2=CC=C(C=C2)Br,1 +[O-][N+](=O)C2=CC1=C3C=CC4=CC=CC5=CC=C(C=C1O2)C3=C45,1 +CN(C)C(=O)NC1=CC(=C(C=C1)Cl)Cl,1 +CC1=C3C(=C(C=C1)C)C2=CC=CC=C2[NH]3,1 +[O-][N+](=O)C1=CC3=C(C=C1)OC2=C(C=CC=C2)O3,1 +NC(=O)NN=CC1=CC=C(O1)[N+]([O-])=O,1 +C[N]1C(=NC2=C1C=C(C)C3=NC(=C(C)N=C23)C)N,1 +C=CCN=C=S,1 +[O-][N+](=O)C([N+]([O-])=O)([N+]([O-])=O)[N+]([O-])=O,1 +C1COCC2(C1)CO2,1 +ClC3=CC=C2OC1=CC=CC=C1C2=C3,1 +OC2=C3C=CC4=CC1=CC=CC=C1C5=CC=C(C=C2)C3=C45,1 +CC1=C(C=C(C=C1N)[N+]([O-])=O)[N+]([O-])=O,1 +[O-][N+](=NC1=CC=CC=C1)C2=CC=CC=C2,1 +ClC(=O)C1=CC=CC=C1,1 +COC1=CC3=C(C(=C1)O)C(=O)C2=C(C=CC(=C2)O)O3,1 +ClC2=C(Cl)C(=O)C1=C(C=CC=C1)C2=O,1 +OC1=C3C=CC(=C4C=CC2=CC=CC(=C1)C2=C34)[N+]([O-])=O,1 +COC3=CC=C2C(=C1C=COC1=NC2=C3)OC,1 +C1CSCN1,1 +C1=CC3=C(C=C1)C2=CC5=C(C=C2C=C3)C4=CN=CC=C4C=C5,1 +CC2=CC1=CC=CC=C1N=C2,1 +[O-][N+](=O)C1=C(C=CC=C1)Br,1 +CC(C)(C)OC(=O)C=CC1=CC=C(O1)[N+]([O-])=O,1 +C[N]1C=NC(=C1SC3=C2[NH]C=NC2=NC=N3)[N+]([O-])=O,1 +NC1=C2C=CC3=C(C=CC4=CC=C(C=C1)C2=C34)[N+]([O-])=O,1 +NC2=C1C=CC=CC1=CC=C2,1 +BrCC1=C3C=CC4=CC=CC5=CC=C(C2=CC=CC=C12)C3=C45,1 +NC(=O)OC1CO1,1 +CCN(C=O)N=O,1 +C[N]1C(=NC2=C1C=CC3=NC=C(C)N=C23)NO,1 +OC1=C(C=C(C=C1)Cl)CC2=C(C=CC(=C2)Cl)O,1 +CCCCN(N=O)C(N)=O,1 +CC(C)(C)NC(=O)C=CC1=CC=C(O1)[N+]([O-])=O,1 +[O-][N+](=O)C1=CC3=C(C=C1)C2=C(C=CC=C2C3)[N+]([O-])=O,1 +COC(=O)NN=CC2=[N+](C1=CC=CC=C1[N+](=C2)[O-])[O-],1 +NC1=CC=C(C=C1)C2=CC=C(C=C2)N,1 +CCN(C)N=O,1 +[O-][N+](=O)C1=CC3=C(C=C1)C2=CC=C(C=C2CC3)[N+]([O-])=O,1 +CCOC1=CC=C(C=C1)NO,1 +OC(CN=[N+]=[N-])CN=[N+]=[N-],1 +NC1=C(C=C(C=C1)F)F,1 +CC5=C1C=CC=CC1=C4C3=C2C=CC=CC2=C(C=C3[NH]C4=C5)C,1 +[O-][N+](=O)C3=CC=C2[NH]C1=CC=CC=C1C2=C3,1 +CC(O)CN(CC(O)CO)N=O,1 +CC1=C(C=C(C=C1)N)O,1 +[O-][N+](=O)C2=C3C=CC4=C(C1=CC=CC=C1C5=CC=C(C=C2)C3=C45)[N+]([O-])=O,1 +CN(C)N=NC1=CC=C(C=C1)Cl,1 +NC2=C3C=CC4=C1C=CC=CC1=CC5=CC=C(C=C2)C3=C45,1 +CN(C)CCNC(=O)C2=C1OC3=C(OC1=CC=C2)C=CC=C3,1 +CC#CC(OC(=O)NC1CCCCC1)(C2=CC=CC=C2)C3=CC=CC=C3,1 +C[N]3C=CC4=CC=C2C=CC1=CC=C(O)C=C1C2=C34,1 +ClCC2=C1C=CC=CC1=C(C3=CC=CC=C23)Cl,1 +ON=C(O)C1=CC=CC=C1,1 +C[N]1C=CN=C1[N+]([O-])=O,1 +CC2=CC1=CC4=C(C=C1C=C2)C3=CC=CC=C3C=C4,1 +CC(=O)NC1=C2C=CC3=CC=CC4=CC=C(C(=C1)O)C2=C34,1 +C2=CC1=CC=CN=C1C=C2,1 +[O-][N+](=O)C1=CC=C(C=C1)S,1 +CC3=C2C=CC1=CC=CC=C1C2=C(C4=CC=CC=C34)C,1 +CCN1C=C(C(O)=O)C(=O)C2=C1C=C(C(=C2)F)N3CCNCC3,1 +ClCC4=C2C1=CC=CC=C1C3=CC=CC(=C23)C=C4,1 +[O-][N+](=O)C1=CN=C(S1)N2CCNC2=O,1 +CC3=C(C2=NC1=CC(=C(C=C1N=C2C=C3)C)N)N,1 +C[N]1C(=NC2=C1C=C(C)C3=NC=C(C)N=C23)N,1 +NC2=C1C=CC=C(C1=CC=C2)N,1 +C[N]1C(=NC2=C1C=C(C)C3=NC=C(N=C23)C4=CC=CC=C4)N,1 +C[N+]2=C1C=CC=CC1=CC3=CC=CC=C23,1 +OC(=O)CC1=CC(=C(C=C1)O)O,1 +C[N]1C(=NC2=CC(=CC=C12)C)N,1 +COP(=O)(OC)OC=C(Cl)Cl,1 +COC4=C2C1=CC=CC=C1CC3N(CCC(=C23)C=C4O)C,1 +OCC(Br)CBr,1 +[O-][N+](=O)C1=CC2=CC=C3C=C(C=C4CCC(=C1)C2=C34)[N+]([O-])=O,1 +O=C1C(=O)C3=C2C1=CC=CC2=CC=C3,1 +ClCC1=C2C=CC3=CC=CC4=CC=C(C=C1)C2=C34,1 +[O-][N+](=O)C1=CC=C(O1)C=O,1 +CC3=C2C1=CC=CC=C1[NH]C2=C(C(=N3)N)C,1 +O=C1C=CC4=C2C1=CC=C3C(C=CC(=C23)C=C4)=O,1 +CNC2=C(C1=NC(=CN=C1C=C2)C3=CC=CC=C3)C,1 +CC(=O)NC1=CC=C(C=C1)C2=CC=C(C=C2)N,1 +O2C3C=CC1=C(N=CC=C1)C23,1 +CCC(=C)C=O,1 +CC2=C(N=C1C=C(C=CC1=N2)N)C,1 +OS(=O)(=O)C1=C(C=CC(=C1)NC2=C(C=C(C=C2)[N+]([O-])=O)[N+]([O-])=O)NC3=CC=CC=C3,1 +CN(C)C1=CC=C(C=C1)N=NC2=CC=C(C=C2)C=O,1 +CNC1=C(C=C(C=C1)N(CCO)CCO)[N+]([O-])=O,1 +O=C1C5=C4C3=C1C=C2C=CC=CC2=C3C=CC4=CC=C5,1 +COC(=O)C3=C2N=C1C=CC=CC1=C(C2=C(C=C3)[N+]([O-])=O)NCCCN(C)C,1 +ClC(Cl)C1=C(Cl)C(=O)OC1,1 +CC1=C(C=C(C(=C1C)N)[N+]([O-])=O)N,1 +CC5CC2C(CC3=C[N](C1CCCC1)C4=CC=CC2=C34)N(C)C5,1 +CC1=C(C=CC(=C1)[N+]([O-])=O)[N+]([O-])=O,1 +C[N]1C(=NC3=C1C=CC4=CC=C2C=CC(=CC2=C34)O)C,1 +[O-][N+](=O)C1=CC=C(C=C1)C(=O)OCC2CO2,1 +[O-][N+](=O)C1=CC=C(C=C1)C2=CC=CC=C2,1 +CC1=C(C(=CC=C1)N)N,1 +[O-][N+](=O)C1=C2C=CC3=CC=CC4=CC=C(C(=C1)[N+]([O-])=O)C2=C34,1 +CNC1=CC=C(C=C1)NC3=C2C=CC=CC2=NC4=CC=CC=C34,1 +CC(=O)C1=CC=C[NH]1,1 +[O-][N+](=O)C1=CC3=C(C=C1)C2=CC5=C(C=C2C=C3)C4=CC=CC=C4C=C5,1 +[O-][N+](=O)C1=CC(=CS1)C(=O)NC2=CC(=CC=C2)F,1 +[O-][N+](=O)C1=CC3=C(C=C1)C2=CC=CC=C2O3,1 +BrCC(=O)C1=CC=C(C=C1)C2=CC=CC=C2,1 +O=C1NC(=O)C=C1,1 +CC(=O)NC1=CC=C(C=C1)N=NC2=C(C=CC(=C2)C)O,1 +CN(C)C1=CC=C(C=C1)N=NC2=C(C=CC=C2)CO,1 +NC1=C(C=C(C=C1)C2=CC(=C(C=C2)N)[N+]([O-])=O)[N+]([O-])=O,1 +NC1=CC(=C(C=C1)CO)[N+]([O-])=O,1 +[O-][N+](=O)C4=C2C(=CC=C3C1=CC=CC=C1C(=C23)C=C4)[N+]([O-])=O,1 +[NH]1C(=NC(=C1C2=CC=CC=C2)C3=CC=CC=C3)C4=CC=CC=C4,1 +CC(=O)NN,1 +CC(O)CN,1 +CC4=C2C=C1C(C(C=CC1=CC2=C3C=CC=CC3=C4)O)O,1 +NC3=CC=C2N=C1C=CC=C[N]1C2=N3,1 +NC1=C(C=CC(=C1)[N+]([O-])=O)CO,1 +O=C1C(=O)C5=C3C2=C1C=CC=C2C=CC3=C4C=CC=CC4=C5,1 +NC1=CC=C(C=C1)OC2=CC(=CC=C2)OC3=CC=C(C=C3)N,1 +C1=CC2=CC4=CC=C5C=CC=C6C=C3C=CC(=C1)C2=C3C4=C56,1 +ClCC4=C3C1=CC=CC2=CC=CC(=C12)C3=CC=C4,1 +C[N]1C(=NC=C1[N+]([O-])=O)C,1 +CN(C)CCNC(=O)C3=C2N=C1C=CC=CC1=C(C2=CC=C3)N,1 +CC(=O)N(O)C1=CC=C(C=C1)[N+]([O-])=O,1 +C5CCC4=C3C=C2C1=CC=CC=C1C=CC2=NC3=CC=C4C5,1 +[O-][N+](=O)C2=CC1=CC=CN=C1C=C2,1 +C(CCC1CO1)CC2CO2,1 +O=C2CC(=O)C1=C(C=CC=C1)C2=O,1 +C[N]1C(=NC2=C1C=C(C)C3=NC(=CN=C23)C)N,1 +[O-][N+](=O)C2=C1C=CC=CC1=[N+](C=C2)[O-],1 +OC5C=CC4=C3C=C1C=CC=C2C=CC(=C12)C3=CC=C4C5O,1 +NC1=CC(=C(C=C1)[N+]([O-])=O)N,1 +OC1=CC=C(C=C1)C=NN4N=NC2=C([NH]C3=CC=CC=C23)C4=O,1 +CC(O)CN(C)N=O,1 +CC1=C(C(=CC=C1)C)C,1 +C1N2CN3CN1CN(C2)C3,1 +CC4=C2C1=CC=CC=C1[NH]C2=C3C(C=C(C(C3=N4)=O)N5CC5)=O,1 +CN(C)CCNC(=O)C3=C2C=C1C=CC=CC1=CC2=CC=C3,1 +CC2=C4C=C1C=CC=CC1=C5C=CC3=CC=CC(=C2)C3=C45,1 +[O-][N+](=O)C1=CC=C(C=C1)C(=O)C2OC2C3=CC=CC=C3,1 +[O-][N+](=O)C1=CC=C(O1)C2=CSC(=N2)NC=O,1 +OC3=C1C=CC=CC1=C2C=CC=CC2=C3,1 +BrC=CBr,1 +CCCC=CC(=O)OC1C(C)(C)CC2C1(O)C=C(C=O)C34CC23C(=O)OC4O,1 +[O-][N+](=O)C1=CC3=C(C=C1)OC2=C(C=C(C(=C2)Cl)Cl)O3,1 +NCCCNCCCCN(CCCN)N(O)N=O,1 +CC3=C2C1OC1C5=C(C2=C(C4=CC=CC=C34)C)C=CC=C5,1 +[O-][N+](=O)C1=CC=C(C=C1)C3=C([N]2C=CSC2=N3)[N+]([O-])=O,1 +CN(C)N=NC1=CC=C(C=C1)Br,1 +[O-][N+](=O)C3=CC=C2CC1=CC=CC=C1C2=C3,1 +NC(=NO)C1=CC=C(O1)[N+]([O-])=O,1 +C1=CC3=C(C=C1)C2=CC=CN=C2C=C3,1 +[O-][N+](=O)C1=C3C(=CC=C1)C2=CC=CC=C2[NH]3,1 +NC2=C1N=CC=CC1=CC=C2,1 +CC[N+]2=C(C1=CC(=CC=C1C3=CC=C(C=C23)N)N)C4=CC=CC=C4,1 +ON(N=O)C1=CC=CC=C1,1 +CC3=C(C=C2N=C1C=C(C(=CC1=CC2=C3)C)N)N,1 +NC1=CC(=C(C=C1)O)N,1 +NC2=C1C=CC=CC1=NC3=C2CCCC3,1 +CCN(CC)C1=CC=C(C=C1)C(C2=CC=C(C=C2)N(CC)CC)=C3C=CC(C=C3)=[N+](CC)CC,1 +CN(C)C1=CC=C(C=C1)C(=N)C2=CC=C(C=C2)N(C)C,1 +CC1=CC(=C(C=C1)N=NC3=C2C=CC(=CC2=CC(=C3O)S(O)(=O)=O)S(O)(=O)=O)C,1 +ClC=CC[N+]23CN1CN(CN(C1)C2)C3,1 +COC3=CC2=C(C1=CC=C(C=C1N=C2C=C3)Cl)NC(C)CCCN(CCCl)CCCl,1 +CC3=C(C=C2[N+](=C1C=C(C(=CC1=NC2=C3)C)N)C4=CC=CC=C4)N,1 +CN(C)CCCCl,1 +NC1=CC=C(C=C1)C(C2=CC=C(C=C2)N)=C3C=CC(=N)C=C3,1 +CN(C)C3=CC2=[S+]C1=CC(=CC=C1N=C2C=C3)N(C)C,1 +CC(COC1=CC=CC=C1)N(CCCl)CC2=CC=CC=C2,1 +CC1=C(C=CC(=C1)C(C2=CC=C(C=C2)N)=C3C=CC(=N)C=C3)N,1 +CN(C)C3=CC2=NC1=CC(=CC=C1C=C2C=C3)N(C)C,1 +CCN(CC)CCCC(C)NC2=C1C=C(C=CC1=NC3=CC(=CC=C23)Cl)OC,1 +ClCC1=NC=CC=C1,1 +ClCC1=CN=CC=C1,1 +CCN(CC)C1=CC3=C(C=C1)C(=C2C=CC(=CC2=[O+]3)N(CC)CC)C4=C(C=CC=C4)C(O)=O,1 +C[N+]2=C1C=C(C=CC1=CC3=CC=C(C=C23)N)N,1 +CN(C)C3=CC2=[S+]C1=CC(=C(C=C1N=C2C=C3)C)N,1 +NC(COC(=O)C=[N+]=[N-])C(O)=O,1 +NC1=NC=C(S1)[N+]([O-])=O,1 +CC(C)CCCC(C)C4CCC5C3CC1OC12CC(O)CCC2(C)C3CCC45C,1 +CCCCN(N=O)C(=N)N[N+]([O-])=O,1 +NC(CC1=CC=C(C=C1)N(CCCl)CCCl)C(O)=O,1 +COC2=CC=C1N=C(N)SC1=C2,1 +CN(N=O)C(=O)NC(C=O)C(O)C(O)C(O)CO,1 +CC2=CN(C1CC(N=[N+]=[N-])C(CO)O1)C(=O)NC2=O,1 +NC1=NC(=O)N(C=N1)C2OC(CO)C(O)C2O,1 +BrC2=C1C=C4C(=CC1=CC=C2)C3=CC=CC=C3C=C4,1 +OC2=C1C=CC(=CC1=C(N=N2)O)[N+]([O-])=O,1 +CCN(N=O)C(=N)N[N+]([O-])=O,1 +CN(C)N=NC1=C([NH]C=N1)C(N)=O,1 +OC1=NC(=NN=C1)O,1 +OC(CBr)C(O)C(O)C(O)CBr,1 +COC24C1NC1CN2C3=C(C(=C(C(=C3O)C)N)O)C4=COC(N)=O,1 +SC2=C1N=C[NH]C1=NC=N2,1 +OCC1OC(C(O)C1O)[N]2C=NC3=C(S)N=CN=C23,1 +NC(CC1=CC(=C(C=C1)O)O)C(O)=O,1 +NC(=NO)C1=CC=CC=C1,1 +CC(=O)NC(CS)C(O)=O,1 +CC1=C(C=CC(=C1)N)C2=CC=C(C=C2)O,1 +NC2=NC1=CC=C(C=C1S2)[N+]([O-])=O,1 +OCC1OC(CC1O)N2C=C(C(=O)NC2=O)C(F)(F)F,1 +CN(N=O)C(=N)N[N+]([O-])=O,1 +NC2=C1N=C[NH]C1=NC=[N+]2[O-],1 +NC2=C1N=C[N](C1=NC=N2)C3OC(CO)CC3O,1 +NC1=NC=CS1,1 +[O-][N+](=O)C1=CC=C(C=C1)CBr,1 +C=CC#N,1 +CCOP(=O)(OCC)OC1=CC=C(C=C1)[N+]([O-])=O,1 +ClCC(Br)CBr,1 +ClCCCl,1 +CC2=C1C(O)C(C)(C)C=C1C(=O)C(C)(O)C23CC3,1 +CC2=C1C(O)C(C)(CO)C=C1C(=O)C(C)(O)C23CC3,1 +CCCN(C(N)=NN=O)[N+]([O-])=O,1 +CCCCCN(N=O)C(=N)N[N+]([O-])=O,1 +CC(C)(O)C3CC2=C(C=C1OC(C=CC1=C2)=O)O3,1 +CN1C(SC2=C1C=CC=C2)=NN,1 +NC(CO)C(=O)NNCC1=C(C(=C(C=C1)O)O)O,1 +N1C(C1C2=CC=CC=C2)C3=CC=CC=C3,1 +CC(C)CC(=O)OCC1=COC(OC(=O)CC(C)C)C2C1CC(OC(C)=O)C23CO3,1 +C[N]1C(=CN=C1C2=NN=C(S2)N)[N+]([O-])=O,1 +C1=CC=C3C(=C1)C=C4C=CC=C5C2=C(C=CC=C2)C3=C45,1 +NC2=C1N=C([NH]C1=NC=N2)C3=CC=C(C=C3)[N+]([O-])=O,1 +COC4=C3C(=C2C(=C1C(CC(CC1=C(C2=C(C3=CC=C4)O)O)(O)C(C)=O)=O)O)O,1 +COC2=C1OC3=C(C(C1=C(C=C2)O)=O)C(=CC5=C3C4C=COC4O5)OC,1 +NC(CSC1=C(C=C(C=C1)[N+]([O-])=O)[N+]([O-])=O)C(O)=O,1 +ClCCN(CCCl)P1(=O)OCC(=O)CO1,1 +C[N+]2=C1C=CC=CC1=NC3=CC=CC=C23,1 +CS(=O)(=O)OCC(O)C(O)COS(C)(=O)=O,1 +CC(C)(N=NC(C)(C)C(N)=N)C(N)=N,1 +C[N+]([O-])(CCCl)CCCl,1 +N=NC1=NNC=C2C=CC=CC12,1 +[O-][N+](=O)C1=CC=C(S1)NC(=O)NCCCl,1 +OCC1OC(C(O)C1O)[N]2C=NC3=C(NO)N=CN=C23,1 +CCOC(=O)NNC2=C1C=CC=CC1=CN=N2,1 +CCN(CCCl)CCCNC2=C1N=C(C=CC1=NC3=CC(=CC=C23)Cl)OC,1 +CCN(CCCl)CCCNC1=C4C(=NC2=CC=CC=C12)C3=NC=CC=C3C=C4,1 +CC=C1CC(=C)C(C)(O)C(=O)OCC2=CCN3CCC(OC1=O)C23,1 +NCC(=O)NC1=CC=CC=C1,1 +CC(C)CN(N=O)C(N)=N[N+]([O-])=O,1 +CN1CC(=CC2C1CC3=C[NH]C4=CC=CC2=C34)C,1 +CC4CC1C(CC2=C[NH]C3=CC=CC1=C23)N(C)C4,1 +NC3=CC2=[S+]C1=CC(=CC=C1N=C2C=C3)N,1 +CC[N]2C1=CC=CC=C1C3=CC(=CC=C23)N,1 +CC2=CC=C1N=C(N)[NH]C1=C2,1 +CCN(CC)C1=CC=C(C=C1)C(C2=CC=CC=C2)=C3C=CC(C=C3)=[N+](CC)CC,1 +NC1=CC3=C(C=C1)C2=NC4=C(C(N2C3)=O)C=CC=C4,1 +C1OC1CC3=C2C=CC=CC2=CC=C3,1 +NC(CCC(=O)NC(CS)C(=O)NCC(O)=O)C(O)=O,1 +O=C(C1OC1C2=CC=CC=C2)C3=CC=CC=C3,1 +COC2=C(C1=NC3=C(C(=C1C=C2)OC)CCO3)OC,1 +NN=C1N=NC=C2C=CC=CC12,1 +NC(=O)CC1CO1,1 +CCC(C)ON=O,1 +CC3(C[N]1C=CN=N1)C(N2C(CC2=O)S3(=O)=O)C(O)=O,0 +CN(C)CCOC(=O)C=C,0 +ClC1=C(C=C(C(=C1)Cl)Cl)Cl,0 +CCOC(=O)COC1=CC2=C(C=C1)C(=O)C=C(O2)C3=CC=CC=C3,0 +CCCCCCCCCCCCC1=CC=CC=C1,0 +CCOC(=O)CC(C)C,0 +CCCCCOC(=O)C(C)=C,0 +CC1CCCC2(C)CCCCC12O,0 +CC(=C)C(=O)OCCOC(=O)C(C)=C,0 +ClC1=C(C=CC=C1)C=O,0 +OC1=C(C(=C(C=C1Cl)Cl)Cl)[N+]([O-])=O,0 +CCOC1=CC2=C(C=C1)NC(C)(C)C=C2C,0 +CCCCC(CC)COC(=O)C1=C(C=CC=C1)C(=O)OCC(CC)CCCC,0 +CCCCC(CC)COC(=O)COC1=C(C=C(C=C1)Cl)Cl,0 +CCN(CC)CC#CC(C)(C)OC(=O)C(O)(C1CCCCC1)C2=CC=CC=C2,0 +CC(C)(C)COC(=O)C=C,0 +FC(Cl)C(F)(F)C(F)(F)Cl,0 +NC2=NC1=NC(=C(N=C1C(=N2)N)C3=CC=CC=C3)N,0 +COC(=O)C1=CC=C(C=C1)C(=O)OC,0 +ClC2=CC1=CC=CC=C1N=C2,0 +CC(=C)C(=O)OCCCCCOC(=O)C(C)=C,0 +CC(CC1=CC(=C(C=C1)O)O)C(C)CC2=CC(=C(C=C2)O)O,0 +OC1=C(C=C(C=C1)Cl)SC2=C(C=CC(=C2)Cl)O,0 +CC(=O)CC(=O)NC1=C(C=CC=C1)C,0 +C1CCOC1,0 +CCOCCC1=C(N=C([N]2N=CN=C12)N)C3=CC=CC=C3,0 +NCCS,0 +CC(C)(C)NC(=O)C3CCC4C2CC=C1C=C(CCC1(C)C2CCC34C)C(O)=O,0 +OC1=CC=C(C=C1)C2=CC=C(C=C2)O,0 +CC1=CC=C(C=C1)Br,0 +ClC3=C2C=C1C=CC=CC1=CC2=CC=C3,0 +COC2=C1OC=CC1=C(OC)C3=C2OC(C=C3)=O,0 +C2C1=C(C=CC=C1)C3=C2C=CC=C3,0 +CC2CCCC(=O)CCCC=CC1=C(C(=CC(=C1)O)O)C(=O)O2,0 +NC(CCC(O)=O)C(O)=O,0 +CC(O)C[N+](C)(C)NC(=O)C(C)=C,0 +CCOC(=O)OCC,0 +ClCC2=C3C=CC4=C1C=CC=CC1=CC5=CC=C(C=C2)C3=C45,0 +C3CCC2OCCOCCOC1CCCCC1OCCOCCOC2C3,0 +ON1C(=O)CCC1=O,0 +CCN(CC)CCCN,0 +CC(C)CCOC(C)=O,0 +CC1=C(C(=CC(=C1)C2=CC(=C(C(=C2)C)N)C)C)N,0 +CCCCCCC(O)=O,0 +CC(C)C1C(C)C(C)(C)C2=C1C=C(C(=C2)C)C(C)=O,0 +OC(=O)CC(O)(CC(O)=O)C(O)=O,0 +ICI,0 +COC1=CC(=CC=C1)C(=O)CBr,0 +CCN(CC)CCO,0 +CC3CC1=C(C(=C(C=C1)C(=O)NC(CC2=CC=CC=C2)C(O)=O)O)C(=O)O3,0 +CCCCC1CO1,0 +CCOCOCC,0 +CC(=C)C(=O)OCCO,0 +COC1=CC=C(C=C1)C3=COC2=C(C(=CC(=C2)O)O)C3=O,0 +OCC(O)C1=C(C(=C(O1)O)O)O,0 +COC(=O)C1=CC=C(C=C1)C,0 +ClC1=CC(=CC(=C1)Cl)Cl,0 +NC(N)=O,0 +CCCCCl,0 +[O-][N+](=O)C1=CC=CC=C1,0 +C[N]1C=NC2=C1C(NC(N2C)=O)=O,0 +CC1=CC=NC=C1,0 +OC(=O)CCC1=C[NH]C2=CC=CC=C12,0 +CC(C)(C)NCC(O)COC2=C1CC(C(CC1=CC=C2)O)O,0 +NC(CC(=O)C1=C(C(=CC=C1)O)N)C(O)=O,0 +CC(N)CCN,0 +CC(S)C(=O)NCC(O)=O,0 +N#CCCCCC#N,0 +CCCCC(CC)COC(=O)C=CC1=CC=C(C=C1)OC,0 +CC1(C)CC(CC(C)(CN=C=O)C1)N=C=O,0 +CC1NC(CC2=C1[NH]C3=CC=CC=C23)C(O)=O,0 +CCOP(=S)(OCC)OC2=NC1=CC=CC=C1N=C2,0 +CCCCC(CC)COP(=O)(OCC(CC)CCCC)OCC(CC)CCCC,0 +CNS(=O)(=O)C1=CC=C(C=C1)NC(C)=O,0 +OC1=CC(=C(C(=C1)Cl)Cl)Cl,0 +CCOC1=CC=C(C=C1)N=[N+]([O-])C2=CC=C(C=C2)OCC,0 +C1=CC=C(C=C1)C2=CC=C(C=C2)C3=CC=CC=C3,0 +CCCCCCCCN1SC=CC1=O,0 +OC(=O)C1=C(C=CC(=C1)Cl)O,0 +NC1=NC(=NC(=N1)N)Cl,0 +CC1=C(C=C(C(=C1)O)C(C)(C)C)SC2=C(C=C(C(=C2)C(C)(C)C)O)C,0 +NC2C1=C(C=CC=C1)C3=C2C=CC=C3,0 +COC(N)=O,0 +FC2=CN(C1CCCO1)C(=O)NC2=O,0 +CC3(C)SC2C(NC(=O)COC1=CC=CC=C1)C(=O)N2C3C(O)=O,0 +COC1=CC=C(C=C1)C=C,0 +CC(=O)C2=CC1=CC=CC=C1C=C2,0 +NC1=NCNC2=C1N=C[N]2C3OC(CO)C(O)C3=O,0 +OC1=CC2=C(C=C1)C4=C(C(O2)=O)C3=CC=C(C=C3O4)O,0 +CCCCCCCC(=O)CCC1=CC(=C(C=C1)O)OC,0 +CC1CC(CC(C)(C)C1)OC(=O)C2=C(C=CC=C2)O,0 +OC(=O)CCCCCCCCC(O)=O,0 +COP(=O)(SC)SC,0 +OC(CC(O)=O)C(O)=O,0 +CC(=C)C(=O)OCC(C)(C)C,0 +CC(C)NCC(O)COC1=C(C=CC=C1)CC=C,0 +C1COCCOCCOCCOCCOCCOCCO1,0 +C=CC1=CC=NC=C1,0 +CC(NC(=O)CC1=C(N=C(N=C1)C)N)=C(CCOC(=O)C2=CC=CC=C2)SC(=O)C3=CC=CC=C3,0 +COC(=O)COC1=C(C=C(C=C1)Cl)Cl,0 +CC(Cl)=O,0 +CCOC1=CC(=CC=C1)[N+]([O-])=O,0 +CC1=NC=C[NH]1,0 +CC(=O)NC1=CC=C(C=C1)S(=O)(=O)C2=CC=C(C=C2)N,0 +CCOC(=O)CNC(=O)CBr,0 +OC(=O)C=CC(O)=O,0 +CN2C(CSCC(F)(F)F)NC1=C(C=C(C(=C1)Cl)S(N)(=O)=O)S2(=O)=O,0 +NC1CCC(CC1)CC2CCC(N)CC2,0 +CCCCC#N,0 +CN(C)C1=CC=C(C=C1)N=NC2=CC=C(C=C2)N(C)C,0 +CC2(N(O)C1=C(C=CC=C1)C2=O)C3=CC=CC=C3,0 +CC1=NC=C(N=C1)C,0 +CC(C)CCCCCOC(=O)C=C,0 +NC1=C(C=CC=C1)C(O)=O,0 +OC1=CC=CC=C1,0 +NC(=O)N(C1=CC=CC=C1)C2=CC=CC=C2,0 +CCCCCCCCCCCCS,0 +CC(C)N=C=NC(C)C,0 +COC1=CC=C(C=C1)CN(CCN(C)C)C2=NC=CC=C2,0 +CN(C(=O)CN(CCO)CC(=O)N(C)C(C)(C)CC1=CC=CC=C1)C(C)(C)CC2=CC=CC=C2,0 +CCOP(=S)(OCC)OC1=C(C=C(C(=N1)Cl)Cl)Cl,0 +CC(C)CC(C)=O,0 +OCC=CC1=CC=CC=C1,0 +NC1=CC(=CC(=C1)Cl)Cl,0 +CN1CCC(CC1)=C3C2=C(C=CC=C2)C=CC4=C3C=CC=C4,0 +COC1=CC=C(C=C1)O,0 +CCC(=C)C(=O)C1=C(C(=C(C=C1)OCC(O)=O)Cl)Cl,0 +CS(C)(=O)=O,0 +CC(C)(N=NC(C)(C)C#N)C#N,0 +CCC(O)=O,0 +CC(C)CN(CC(C)C)CC(C)C,0 +OC1=CC2=C(C(=C1)O)C(C(C(O2)C3=CC=CC=C3)=O)=O,0 +OCC1=C(C=CC=C1[N+]([O-])=O)[N+]([O-])=O,0 +CCCCCC=CCC=CCCCCCCCC(O)=O,0 +CC1=C(C2=C(C=C1[N+]([O-])=O)C(CC2(C)C)(C)C)[N+]([O-])=O,0 +CCCCCCCCCCC1CO1,0 +O=P(OC1=CC=CC=C1)(OC2=CC=CC=C2)OC3=CC=CC=C3,0 +OC1=C(C(=C(C=C1Cl)Cl)Cl)Cl,0 +OCC(=O)N(O)C1=CC=C(C=C1)Cl,0 +CNP1(=NP(=NP(=N1)(NC)NC)(NC)NC)NC,0 +CC(C)(C#N)C(C)(C)C#N,0 +CS(=N)(=O)CCC(N)C(O)=O,0 +CCN(CC)C1=CC2=C(C=C1)C=C(C(=O)O2)C4=NC3=CC=CC=C3[N]4C,0 +NC(CC1=C[NH]C2=CC=C(O)C=C12)C(O)=O,0 +NC1=C(C=CC=C1)C(=O)OCCC2=CC=CC=C2,0 +OC(=O)C=CC1=C(C=CC=C1)[N+]([O-])=O,0 +CC1=CC3=C(C=C1)C2=CC=C(C=C2C3)C,0 +NC(=O)CCCCC(N)=O,0 +NC(=O)C1=C(C=CC=C1)O,0 +NC(CSC=CCl)C(O)=O,0 +O3C4C1OC1C2=C(C=CC=N2)C34,0 +C[N]2C(=NC3=NC1=NC=CC=C1C=C23)N,0 +CC1=C(C=CC=C1)C=O,0 +CCCCCN(CCCCC)CCCCC,0 +CC(=O)OC2=C1N=CC=CC1=CC=C2,0 +OC(=O)C2=C(C=C1C=CC=CC1=C2)O,0 +CCCCC(CC)CNCC(CC)CCCC,0 +CC(C)NC1=NC(=NC(=N1)N)Cl,0 +[NH]1C=CN=C1,0 +OC(=O)CC(NC(=O)COC1=C(C=C(C=C1)Cl)Cl)C(O)=O,0 +OCCS,0 +O=S1(=O)CCCC1,0 +CC(C)C(C(=O)OC(C#N)C1=CC(=CC=C1)OC2=CC=CC=C2)C3=CC=C(C=C3)Cl,0 +CCC(C)N,0 +CCCCNC(=O)[N]1C(=NC2=CC=CC=C12)NC(=O)OC,0 +O(C1=CC=CC=C1)C2=CC=CC=C2,0 +CC(C)(C)NCC(O)C1=CC(=C(C=C1)O)NC(N)=O,0 +CN2C(=O)CC(=O)N(C1=CC=CC=C1)C3=C2C=CC(=C3)Cl,0 +CN(CCO)CCO,0 +CC1=C(C(=CC=C1)O)N,0 +CCC(CO)=[N+](O)[O-],0 +OC(=O)C(F)(F)C(F)(Cl)C(F)(F)C(F)(Cl)C(F)(F)Cl,0 +CC(C)OC(=O)CC(O)(CC(O)=O)C(O)=O,0 +CC(C)(C)OC(=O)OC(=O)OC(C)(C)C,0 +ClN1C(=O)N(Cl)C(=O)N(Cl)C1=O,0 +OC1=CC(=CC=C1)NC2=CC=CC=C2,0 +CC1=C(C=CC=C1N=[N+]([O-])C2=C(C(=CC=C2)[N+]([O-])=O)C)[N+]([O-])=O,0 +NC=O,0 +OC1=C(C=C(C=C1)Cl)CC2=CC=CC=C2,0 +CN(N)C=O,0 +CC2=CC=C1N=N[NH]C1=C2,0 +CCCCCCCC(O)=O,0 +CC1=CC=C(C=C1)N(O)C(C)=O,0 +COC1=C(C=C(C(=C1)N)C)N,0 +COC(=O)C1=CC=C(C=C1)O,0 +OC(=O)CC(=CC(O)=O)C(O)=O,0 +NC(=O)C1=NC=CN=C1,0 +CCN(CC1=CC=CC=C1)C2=CC=CC=C2,0 +CNC(=O)ON=CC(C)(C)SC,0 +O=CC2=C1C=CC=CC1=CC3=CC=CC=C23,0 +C1COCO1,0 +OC(=O)C(Br)=C,0 +C=CC1=C(C=CC=C1)C=C,0 +OS(=O)(=O)C1=CC=CC=C1,0 +CCCCCN(CCCOC)C(=O)C(CCC(O)=O)NC(=O)C1=CC(=C(C=C1)Cl)Cl,0 +C=CC(=O)OCCCCOC(=O)C=C,0 +C(OCC1=CC=CC=C1)C2=CC=CC=C2,0 +BrC1=C(C2=C(C(=C1Br)Br)C(=O)OC2=O)Br,0 +CC(C)N2C(=O)C1=C(C=CC=C1)NS2(=O)=O,0 +CCOP(=S)(OCC)SCN1C(=O)OC2=C1C=CC(=C2)Cl,0 +C=CCN(CC=C)CC=C,0 +CCNC1=CC=CC=C1,0 +NC1=C(C=CC=C1O)[N+]([O-])=O,0 +CC(CO[N+]([O-])=O)(CO[N+]([O-])=O)CO[N+]([O-])=O,0 +CC(C)(OC1=CC=C(C=C1)C(=O)C2=CC=C(C=C2)Cl)C(O)=O,0 +CCOC(=O)C4=CC1=C(C3=C2C(=C1)CCCN2CCC3)OC4=O,0 +COC(=O)C(=CC1=C(C=CC=C1)Br)C#N,0 +CCCCC1C(=O)N(N(C1=O)C2=CC=CC=C2)C3=CC=CC=C3,0 +CC(C)(C)OOC(C)(C)C,0 +CC1=C(C=CC=C1)C(N)=O,0 +CC(C)(OOC(C)(C)C1=CC=CC=C1)C2=CC=CC=C2,0 +CCCCOC(=O)CCC,0 +CCCCOCCCC,0 +CCC(C)=[N+](O)[O-],0 +NC(=O)C1CCCN1C(=O)C(CC2=C[NH]C=N2)NC(=O)C3CCC(=O)N3,0 +CCCC=C(CC)C=O,0 +CC1=CC=C(C=C1)C#N,0 +C2=CC1=CN=NC=C1C=C2,0 +ClC1=C(C(=CC=C1)Cl)C=O,0 +COC1=C(C=CC(=C1)C(C)=O)O,0 +CC(C)COC(=O)C(C)=C,0 +CC(C)(C)C1=C(C=CC(=C1)O)O,0 +NC1CCCC(N)C1,0 +CCCCOC(=O)C1=CC=C(C=C1)N,0 +CC1CCC(CC1)C(C)C,0 +NCCCN,0 +CC1=CC3=C(C=C1)C(=O)C2=C(C=CC=C2)C3=O,0 +OC1=CC=C(C=C1)NC3=CC2=CC=CC=C2C=C3,0 +CCCCC(CC)C(O)=O,0 +ClCC(Cl)C=C,0 +CC(C)CCOC(=O)CC(C)C,0 +NCC(O)=O,0 +OCC1=CC=C(C=C1)F,0 +CCCCOCCOCCSC#N,0 +O=C2N(SC1CCCCC1)C(=O)C3=C2C=CC=C3,0 +CC3=NN=C4CN=C(C1=C(C=CC=C1)Cl)C2=CC(=CC=C2[N]34)Cl,0 +OC1=CC=C(C=C1)C=CC(=O)C2=CC=CC=C2,0 +ON(C=O)C1=CC=CC=C1,0 +[O-][N+](=O)C1=CC(=CC=C1)Cl,0 +[O-][N+](=O)C1=CC2=C(C=C1)NC(=O)CN=C2C3=CC=CC=C3,0 +OC(C(O)C(O)=O)C(O)=O,0 +CS(=O)(=O)C=C,0 +CC(C)CC(C)O,0 +O=CC=CC1=CC=CC=C1,0 +CC(C)CNCC(C)C,0 +BrC1=C(C=CC=C1)C2=CC=CC=C2,0 +NC1=CC=C(C=C1)S(=O)(=O)NC3=NC2=CC=CC(=C2N=C3)Cl,0 +CN2C(=O)N(C)C1=C(N=C[NH]1)C2=O,0 +COC=O,0 +OC(=O)C(O)=O,0 +ClC(Cl)(Cl)C(Cl)(Cl)Cl,0 +CSCCC(NC(=O)COC1=C(C=C(C(=C1)Cl)Cl)Cl)C(O)=O,0 +CCCCCCCCCCCCCCCCCCO,0 +OC(=O)CN(CC(O)=O)CC(O)=O,0 +CCCN(CCC)C(=O)SCC,0 +CC1=C(C=C(C=C1)NCCO)O,0 +CC=O,0 +CC1(C)C=C(C(O)=O)C(C)(C)N1O,0 +OC(O)=O,0 +CCCCCCC1CO1,0 +CCCCCC(=O)CC2=C1C(OC3=C(OC1=CC(=C2)O)C(=C(C(O)=O)C(=C3)O)CCCCC)=O,0 +COC1=C(C=C(C=C1)CC=C)OC,0 +CC1=CC(=CC=C1)OP(=O)(OC2=CC=CC=C2)OC3=CC=CC=C3,0 +[O-][N+](=O)C1=CC=C(C=C1)OC2=C(C=C(C=C2Cl)Cl)Cl,0 +O=C3OC2=C1C=COC1=CC=C2C=C3,0 +COC1=C(C(=CC(=C1)C(C)=O)OC)O,0 +COC1(CCCC1)OC5CCC6C4CCC3CC2SC2CC3(C)C4CCC56C,0 +OCC(O)COP(O)(O)=O,0 +CCCCCCNCCCCCC,0 +CSCCC=O,0 +OCCOCCO,0 +CN(C)C1=CC=C(C=C1)C(=C2C=CC(=N)C=C2)C3=CC=C(C=C3)N(C)C,0 +O=C1NC(=O)C2CC=CCC12,0 +CN1CCCC1=O,0 +C=CC1=NC=CC=C1,0 +CCCCC(CC)COP(=O)(OC1=CC=CC=C1)OC2=CC=CC=C2,0 +OC1=CC3=C(C=C1)C(=O)C2=C(C=CC(=C2)O)C3=O,0 +C3CCC2OCCOCCOCCOC1CCCCC1OCCOCCOCCOC2C3,0 +CCCCCCCCCCCCCC[N+](C)(C)CC1=CC=CC=C1,0 +NCC(=O)NCC(=O)NCC(=O)NCC(O)=O,0 +OC1=C(C=CC=C1)C3=NC2=CC=CC=C2O3,0 +CCOP(=O)(CC)OCC,0 +CC(C)=CCC2C(=O)C(=O)C1=C(C=CC=C1)C2=O,0 +BrCC1=CC=C(C=C1)Br,0 +CC1=CC(=O)C=C(C)C1=O,0 +CC5CC2C(CC3=C[N](CC1CC1)C4=CC(=CC2=C34)Br)N(C)C5,0 +CC(=C)C(=O)OCCOCCOCCOC(=O)C(C)=C,0 +OC[P+](CO)(CO)CO,0 +OC2=CC1=C(C=C(C=C1C=C2)S(O)(=O)=O)S(O)(=O)=O,0 +CC(=O)OC3(CCC4C2C=C(Cl)C1=CC(=O)OCC1(C)C2CCC34C)C(C)=O,0 +C1=CC=C4C(=C1)N=C3C2=C(C=CC=C2)C6=C3C4=C5C=CC=CC5=N6,0 +CC1=CC=C(C=C1)N=NC3=C2C=CC=CC2=CC=C3O,0 +COC1=CC(=C(C(=C1)OC)Cl)N2C(=CC(=O)C(=C2C3=CC=C(C=C3)F)C)C4=CC=CC=C4,0 +COC1=CC=C(C=C1)C(Cl)=C(C2=CC=C(C=C2)OC)C3=CC=C(C=C3)OC,0 +ClCC1=C(C=CC=C1)CCl,0 +CCC(=C(CC)C1=CC=C(C=C1)OP(O)(O)=O)C2=CC=C(C=C2)OP(O)(O)=O,0 +CC1=NOC(=C1C)NS(=O)(=O)C2=CC=C(C=C2)N,0 +CCCCCCCCCCCCCCCCC1CO1,0 +COC(=O)C1=C(C)NC(=C(C1C2=C(C=CC=C2)[N+]([O-])=O)C(=O)OC)C,0 +OC1=CC=C(C=C1)CC=C,0 +ClC1=CC(=CC=C1)Cl,0 +CC1=C(C=C(C=C1)[N+]([O-])=O)NO,0 +CC3(O)CCC4C2CCC1CC(=O)C(CC1(C)C2CCC34C)C=O,0 +CC1=C(C(=CC=C1)C)NC2=NC(=NC(=C2)Cl)SCC(=O)NCCO,0 +CCOC(=O)C1=C(C=CC=C1)N,0 +CCCC(O)=O,0 +NC3=NC(=C2N=C(O)[N](C1CC(O)C(CO)O1)C2=N3)O,0 +ClC1=CC(=C(N=C1)OC2=CC=C(C=C2)OC3=C(C=C(C=N3)Cl)Cl)Cl,0 +COC1=C(C=CC(=C1)CCC(C)=O)O,0 +NC1=CC=C(C=C1)S(=O)(=O)C2=CC=C(C=C2)N,0 +NC(=O)C1=CC=C(C=C1)N,0 +CC=[N+](O)[O-],0 +OC(=O)CCC(=O)NC1=CC(=C(C=C1)Cl)Cl,0 +CCCC(C)(COC(N)=O)COC(=O)NC(C)C,0 +COC2=CC1=CC=C(C=C1C=C2)CCC(C)=O,0 +OC(=O)COC1=C(C=C(C(=C1)Cl)Cl)Cl,0 +OCCN(CCO)CCO,0 +OC(C1CC1)(C2=CC=C(C=C2)Cl)C3=CC=C(C=C3)Cl,0 +CC(=O)N(O)C1=CC=C(C=C1)Cl,0 +ClC1=C(C(=CC=C1)Cl)Cl,0 +CC(C)[N+](C)(CCOC(=O)C2C1=C(C=CC=C1)OC3=C2C=CC=C3)C(C)C,0 +ClC1=CC=C(C=C1)Cl,0 +COC1=C(C=CC(=C1)C=CC(O)=O)O,0 +CCCCCCC1=CC=C(C=C1)C2=CC=C(C=C2)C#N,0 +CCN1C=C(C(O)=O)C(=O)C2=C1C(=C(C(=C2)F)C3=CC=NC=C3)F,0 +CC1=CC=CO1,0 +OCC1OC(CC1O)N2C=C(CCCl)C(=O)NC2=O,0 +NC1=NC(=CC(=N1)Cl)Cl,0 +OC1=C(C=CC=C1)C(=O)OCC2=CC=CC=C2,0 +C2=NC=C1C=NN=CC1=C2,0 +FC1=CC=C(C=C1)C=CC(=O)C2=CC=CC=C2,0 +NC(=O)C1=C(C=CC=C1)C(N)=O,0 +CC(=O)NC1=CC=C(C=C1)CC2=CC=C(C=C2)N,0 +COC3=C1C(N(C(C2=CC=CC(=C12)C=C3)=O)C)=O,0 +CCCCOC(=O)C=C,0 +O=C1OCC=C1,0 +[O-][N+](=NC1=CC3=C(C=C1)C2=CC=CC=C2C3)C4=CC6=C(C=C4)C5=CC=CC=C5C6,0 +CC(CS)C1CCC(C)C(S)C1,0 +CC(=O)C1C(=O)OC(=CC1=O)C,0 +NC(=O)NN=CC(O)=O,0 +CCCCCCNC(=O)N1C=C(F)C(=O)NC1=O,0 +N#CCC#N,0 +CC(CCC(O)=O)C3CCC4C2CCC1CC(O)CCC1(C)C2CCC34C,0 +[O-][N+](=O)C1=C(C=CC=C1)C(F)(F)F,0 +COC1=C(C(=C(C(=C1Cl)Cl)[N+]([O-])=O)Cl)Cl,0 +CCCCN(N)CCCC,0 +CCOC(=O)OC(C1CC2CCN1CC2C=C)C4=C3C=C(C=CC3=NC=C4)OC,0 +BrC1=CC=C(C=C1)C2=CC=CC=C2,0 +ClCC(CCl)(CCl)CCl,0 +ClC1=CC=C(C=C1)C3=NC2=CC=CC=C2O3,0 +FC(F)(F)C(F)(F)C(Cl)Cl,0 +CN(C)CCN(CC1=CSC=C1)C2=NC=CC=C2,0 +CC1=C(C=C(C=C1)[N+]([O-])=O)N=[N+]([O-])C2=C(C=CC(=C2)[N+]([O-])=O)C,0 +O=C(C=CC=CC1=CC2=C(C=C1)OCO2)N3CCCCC3,0 +CC(O)CNCC(C)O,0 +CCN(CC)C1=CC(=C(C=C1)N=O)O,0 +COC1=CC=C(C=C1)OC,0 +NC1=CC(=C(C(=C1)C(O)=O)O)S(O)(=O)=O,0 +NC1=C(C=CC(=C1)S(O)(=O)=O)O,0 +CCOP(O)(OC1=CC(=C(C=C1)SC)C)=NC(C)C,0 +FC1=CC=C(C=C1)C(=O)C=CC2=CC=CC=C2,0 +CC(Br)C1=CC=CC=C1,0 +OCCN1CCNCC1,0 +COC1=CC=C(C=C1)C2=NOC(=C2C3=CC=C(C=C3)OC)CC(O)=O,0 +OC1=C(C=C(C=C1Cl)Cl)NC(=O)C2=C(C(=CC(=C2O)Cl)Cl)Cl,0 +[O-][N+](=O)C1=C(C=CC=C1)C=CC(=O)C2=CC=CC=C2,0 +OC(=O)C1=CC=CC=C1,0 +S=C(NC1CCCCC1)NC2CCCCC2,0 +OC1=C(C=C(C=C1Br)C#N)Br,0 +CC1(C)CC(C(O)=O)C(C)(C)N1O,0 +OC1=C(C(=CC(=C1)Cl)Cl)Cl,0 +CC13CCC(=O)CC1=C2CC2C4C3CCC6(C)C4C5CC5C67CCC(=O)O7,0 +CN2C(=O)CN=C(C1=CC=CC=C1)C3=C2C=CC(=C3)Cl,0 +CC5=CC4=C3C=CC2=C1C=CC=C(C1=CC=C2C3=CC=C4C=C5)C,0 +CCCCCOC(=O)C=C,0 +CCCCOC4=C2C1=CC=CC=C1C=CC2=C3CCC(C3=C4)=O,0 +CNC(O)=NO,0 +CC1=CC(=CC(=C1)C)C,0 +CNCC(O)C1=CC(=C(C=C1)O)O,0 +O2C1=CC=CC=C1N=C2C3=CC=CC=C3,0 +CCCCCCCCOC(=O)C1=C(C=CC=C1)C(=O)OCCCCCCCC,0 +O=C1CN(CC2N1CCC3=C2C=CC=C3)C(=O)C4CCCCC4,0 +OCC1=CC=CC=C1,0 +CCN(CC)CC,0 +BrC1=CC=C(C=C1)C(=O)C=CC2=CC=CC=C2,0 +NC1=CC3=C(C=C1)C(=C2C=CC(C=C2O3)=N)C4=C(C=CC=C4)C(O)=O,0 +BrCC1=CC(=CC=C1)CBr,0 +OC1=C(C(=CC=C1)Cl)Cl,0 +CNCCO,0 +O=C(OC1CCCCC1)C2=C(C=CC=C2)C(=O)OC3CCCCC3,0 +CN(C)C(=O)C1=N[N](C(=N1)CNC(=O)CN)C2=C(C=C(C=C2)Cl)C(=O)C3=C(C=CC=C3)Cl,0 +CC(=C)C(=O)OCCCCCCOC(=O)C(C)=C,0 +CC(CCO)CCC=C(C)C,0 +CCSC(Cl)=O,0 +NC1=C(C(=CC(=C1)Cl)Cl)O,0 +ClN1C(=O)NC(=O)N(Cl)C1=O,0 +C[N+](C)(C)NCCC(O)=O,0 +ClC1=CC=C(C=C1)C(C2=CC=C(C=C2)Cl)C(Cl)(Cl)Cl,0 +OC(=O)C2=NC1=CC=CC=C1C(=C2)O,0 +ClC2=C(Cl)C3(Cl)C1COS(=O)OCC1C2(Cl)C3(Cl)Cl,0 +OC2=CC1=NC=CC=C1C=C2,0 +CC(=O)C1=C(C=CC=C1)[N+]([O-])=O,0 +CCNS(=O)(=O)C1=CC=C(C=C1)C,0 +CC(Cl)(Cl)C(O)=O,0 +C1=CC=C(C=C1)C2=CC(=CC=C2)C3=CC=CC=C3,0 +COC1=C(C(=CC=C1Cl)Cl)C(O)=O,0 +CCOC(=O)C(C)=C,0 +NCCC1=C[NH]C=N1,0 +CC(COC(=O)C1=CC=CC=C1)(COC(=O)C2=CC=CC=C2)COC(=O)C3=CC=CC=C3,0 +OC(=O)C1=CC=C(C=C1)C(O)=O,0 +O=CC1=CC(=CC=C1)C2=CC=CC=C2,0 +NCCCCCCN,0 +CNCC(O)=O,0 +OC1=CC(=CC(=C1)O)O,0 +CC(=O)C1=CC3=C(C=C1)OC2(CC2)C3=O,0 +CC(=C)C(=O)OCC(C)(C)COC(=O)C(C)=C,0 +OC1=C(C(=C(C=C1[N+]([O-])=O)[N+]([O-])=O)O)[N+]([O-])=O,0 +CCC(C)C=O,0 +NC1=C(C=CC(=C1)C(F)(F)F)Cl,0 +CN(C)C,0 +CC(C)NC1=CC=CC=C1,0 +OC(=O)C1=CC=C(C=C1)N=NC2=CC(=C(C=C2)O)C(O)=O,0 +OC1=CC=C(C=C1)S(=O)(=O)C2=CC=C(C=C2)O,0 +CN(C)C1=CC=CC=C1,0 +ClC1=CC=NC=C1,0 +FC(Cl)(Cl)Cl,0 +CC1(C)SSCC(NC1=O)C(O)=O,0 +C2=CC1=CC5=C(C=C1C=C2)C4=CC=C3C=CC=CC3=C4C=C5,0 +CC1=CC=C(C=C1)C3=NC2=CC=CC=C2O3,0 +CCCCCCCOC1=C(C=CC=C1)NC(=O)OC(C)CN(CC)CC,0 +CC(CCC(O)=O)C3CCC4C2C(O)CC1CC(O)CCC1(C)C2CCC34C,0 +CCOP(=S)(OCC)OC1=CC2=C(C=C1)C(=C(Cl)C(=O)O2)C,0 +FC1=C(C(=C(C(=C1F)Cl)F)Cl)F,0 +COC1=CC=C(C=C1)CCl,0 +NC1=C(C(=CC=C1)[N+]([O-])=O)O,0 +O=C3CCC(N2C(=O)C1=C(C=CC=C1)C2=O)C(=O)N3,0 +NC(=N)C1=CC=CC=C1,0 +CC(=C)C1CC=C(C)C(=O)C1,0 +CN(C)C1=CC=C(C=C1)N=NC2=CN=CC=C2,0 +ClCC(=O)C1=CC=CC=C1,0 +NC(CCCCNCC(N)C(O)=O)C(O)=O,0 +OC(=O)CCC(O)=O,0 +CC34C=CC2=C1CCC(=O)CC1=CCC2C3CCC4O,0 +OC(=O)C1=CN=CC=C1,0 +CC1=CC=C(C=C1)C=O,0 +CC(=C)C1CC=C(C)C(O)C1,0 +C2CCCCCC1OC1CCCC2,0 +CC(C)CN,0 +CC(=O)C=CC1=CC=CO1,0 +CCC2=C1[NH]C=C(C1=CC=C2)CCO,0 +CC2CC(C)(C)C1=C(C=C(C(=C1)C(C)=O)C)C2(C)C,0 +CCCCCCCCCCCC(=O)N(CCO)CCO,0 +CNC(CC(O)=O)C(=O)N(C2C1SC(C)(C)C(N1C2=O)C(O)=O)C(C(N)=O)C3=CC=C(C=C3)O,0 +CC1(C)C(C=C(Cl)Cl)C1C(=O)OC(C#N)C2=CC(=CC=C2)OC3=CC=CC=C3,0 +NC2=NC(=C1[NH]C=NC1=N2)N,0 +OC1COC2C(COC12)O[N+]([O-])=O,0 +CC(C)CC(=O)OCC=C,0 +CCCC(=O)OC1CCCCC1,0 +COC3=CC(=C2C(=O)OC1=CC(=CC(=C1C2=C3)C)O)O,0 +ClC1=NC(=NC(=C1)Cl)Cl,0 +[O-][N+](=O)C1=C(C=CC=C1)NC2=CC=CC=C2,0 +OC(=O)C3CC1=C([NH]C2=CC=CC=C12)C(N3)C4=CC=CC=C4,0 +OCCC#N,0 +CC(C)CC(NC(=O)COC1=C(C=C(C(=C1)Cl)Cl)Cl)C(O)=O,0 +OC(=O)CCCC1=C[NH]C2=CC=CC=C12,0 +COP(=O)(OC)SC,0 +CCCCCCCCCCCOC(=O)C1=C(C=CC=C1)C(=O)OCCCCCCCCCCC,0 +OCC1=CC3=C(C=C1)C(=O)C2=C(C=CC=C2)C3=O,0 +CN1CCCN(C)C1=O,0 +OC2(CCN(CCCC(=O)C1=CC=C(C=C1)F)CC2)C3=CC=C(C=C3)Cl,0 +ClC1=CC(=C(C=C1)C=O)Cl,0 +CC1=CC(=CC=C1)N,0 +CC1(C)C2CCC1(C)C(O)C2,0 +BrC1=CC=C(C=C1)C=CC(=O)C2=CC=CC=C2,0 +C=CCOC(=O)C=C,0 +CCCCCC=[N+](O)[O-],0 +CCOC(=O)CC(SP(=S)(OC)OC)C(=O)OCC,0 +CS(O)(=O)=O,0 +O=C3C(=O)C1=C(C=CC2=CC=CC=C12)C4=C3C=CC=C4,0 +CC(C)=CC1C(C(O)=O)C1(C)C,0 +NC2=CC1=CC=CN=C1C=C2,0 +CCCCOCCOP(=O)(OCCOCCCC)OCCOCCCC,0 +OC1=CC=C(C=C1)C(=O)C=CC2=CC=CC=C2,0 +OCC1=CC(=CC=C1)[N+]([O-])=O,0 +NC1=CC=C(C=C1)S(=O)(=O)NC2=NC=CS2,0 +ON=CC(=O)NC1=CC=CC=C1,0 +CC(C=O)=CC=CC(C)=CC=CC=C(C)C=CC=C(C)C=CC1=C(C)CCCC1(C)C,0 +CC(C)C1=CC(=C(C=C1)C)O,0 +CC(=O)CCC(C)=O,0 +OC(=O)CC1=C[NH]C2=CC=C(O)C=C12,0 +CCCCC(CC)COC(=O)C(C#N)=C(C1=CC=CC=C1)C2=CC=CC=C2,0 +CC(=O)CC(=O)CCC(O)=O,0 +OC(=O)C=CC1=CC(=C(C=C1)O)O,0 +OC2=C1N=CC=CC1=C(C=C2I)Cl,0 +CC(C)(C)C(=O)C(OC1=CC=C(C=C1)Cl)[N]2C=CN=C2,0 +CC3=C2C=C1C=CC=CC1=CC2=CC=C3,0 +OC1OCC=C2OC(=O)C=C12,0 +CC3=C2C1=CC(=CC(=C1C(OC2=CC(=C3)O)=O)O)O,0 +CC(=C)C(=O)OCCOCCOC(=O)C(C)=C,0 +CCCCC(CC)C=O,0 +CCC2=CN(C1CC(O)C(CO)O1)C(=O)NC2=O,0 +NS(=O)(=O)C1=C(C=C2C(=C1)S(NCN2)(=O)=O)Cl,0 +CC(C)C1=C(C=C(C=C1)C)O,0 +ClC1=CC(=CN=C1)Cl,0 +CCC2NC(=O)C1=C(C=C(C(=C1)S(N)(=O)=O)Cl)N2,0 +CN(C)C1=CC=C(C=C1)C=CC=O,0 +CC(C)NCC(O)COC2=C1C=CC=CC1=CC=C2,0 +O=CC1=CC=CC=C1,0 +CC(C(O)=O)C1=CC=C(C=C1)OC2=NC=CS2,0 +ClC2=C(C1=CC=CC=C1C(=C2Cl)Cl)Cl,0 +CCNCC#CC(C)(C)OC(=O)C(O)(C1CCCCC1)C2=CC=CC=C2,0 +O=C(C=CC1=CC=C(C=C1)C2=CC=CC=C2)C3=CC=CC=C3,0 +COC2=CC1=C(C=CN=C1C=C2)C(O)C3CC4CCN3CC4C=C,0 +ClCC1=CC(=CC=C1)CCl,0 +CCN=C=S,0 +NC1CCC(N)CC1,0 +OC1=C(C=CC=C1)C2=C(C=CC=C2)O,0 +FCC(F)(F)F,0 +FC(F)(F)C1=CC=CC=C1,0 +OC2=C(C1=CC=C(C=C1C=C2)S(O)(=O)=O)N=NC3=CC=C(C=C3)S(O)(=O)=O,0 +CC(CCC=C(C)C)CC=O,0 +ClCCN(CCCl)CCCl,0 +ClCC1=CC=C(C=C1)Br,0 +CCCCCCCCC1CO1,0 +O=C1CCCO1,0 +ClC1=C(C3=C(C(=C1Cl)Cl)OC2=C(C(=C(C(=C2Cl)Cl)Cl)Cl)O3)Cl,0 +CCOC(=O)C(C)=O,0 +CCCCCCCCC,0 +O=C1C=CC(=O)N1C2=CC=C(C=C2)CC3=CC=C(C=C3)N4C(=O)C=CC4=O,0 +FC1=CC=C(C=C1)C2OC2C(=O)C3=CC=CC=C3,0 +CCC1=CC=C(C=C1)C,0 +C2CC1OC1CCC3OC23,0 +CC1=CC(=CC=C1)Br,0 +CCSC(=O)N1CCCCCC1,0 +CN(C)CC1=CC=CC=C1,0 +CC1=CC(=CC=C1)C,0 +O(P(OC1=CC=CC=C1)OC2=CC=CC=C2)C3=CC=CC=C3,0 +ClC=CCl,0 +CSSC,0 +N#CC=CC#N,0 +CN3C(=O)C24CC1=CC=CC(O)C1N2C(=O)C3(CO)SS4,0 +OC(=O)C=CC=CC(O)=O,0 +C=CC(=O)N1CCN(CC1)C2=CC=CC=C2,0 +COC1=CC=C(C=C1)C=O,0 +ClC1=CC=C(C=C1)CSC2=CC=C(C=C2)Cl,0 +ClC1C(Cl)C(Cl)C(Cl)C(Cl)C1Cl,0 +CC1=C(SCCO1)C(=O)NC2=CC=CC=C2,0 +CCOC(=O)C(SP(=S)(OC)OC)C1=CC=CC=C1,0 +CCOP(=S)(OCC)OC1=NC(=NC(=C1)C)C(C)C,0 +CN3C(C(=O)NC1=NC=CC=C1)C(=O)C2=C(C=CS2)S3(=O)=O,0 +CCOP(=S)(OCC)SCSCC,0 +CCCCOCCOCCO,0 +COC1=CC=C(C=C1)CO,0 +OC3=C2C(=C1C(=CC=CC1=CC2=CC=C3)O)O,0 +CC1=C(C(=C(C(=C1C)[N+]([O-])=O)C(C)(C)C)[N+]([O-])=O)C,0 +CCCCCC(=O)OCC,0 +C[N]1C=CC=C1,0 +OC(C#N)C1=CC=CC=C1,0 +CC(O)C2C1SC(=C(N1C2=O)C(O)=O)C3CCCO3,0 +CCC(C)(C)C1=CC=C(C=C1)O,0 +OCC(O)C(O)C(O)C(O)CO,0 +ClC1=CC=C(C=C1)C=O,0 +FC1=C(C(=C(C(=C1F)F)Cl)F)F,0 +[O-][N+](=O)C1=CC=C(C=C1)C2OC2C(=O)C3=CC=CC=C3,0 +O=C(NC1=CC=CC=C1)NC2=CC=CC=C2,0 +CC(C)(C)C2=CC(=CC=C1C=C(C(=O)C(=C1)C(C)(C)C)C(C)(C)C)C=C(C2=O)C(C)(C)C,0 +CCC1(CC(O)=O)OCCC2=C1[NH]C3=C(C=CC=C23)C(C)O,0 +O[N+]([O-])=C=CC1=CC=CO1,0 +CC(C)C1CC=C(C)C2CC=C(C)CC12,0 +[O-][N+](=O)C1=C(C=CC=C1)CBr,0 +CC1(C)C2CCC(=C)C1C2,0 +N#CC1=CC=CC=C1,0 +OS(=O)(=O)C1=C(C=CC=C1)[N+]([O-])=O,0 +CCCCC(CC)COC(=O)CCCCC(=O)OCC(CC)CCCC,0 +CC(=O)NC1=CC=C(C=C1)CC(O)=O,0 +CC4SC5=C(C(O)=O)C(=O)C1=C(C=C(C(=C1)F)N2CCN(CC2)CC3=C(C)OC(=O)O3)N45,0 +CCCCCCCCOC1=CC=C(C=C1)C(O)=O,0 +CN(C)C1=CC=C(C=C1)C(C2=CC=CC=C2)C3=CC=C(C=C3)N(C)C,0 +N#CC(C#N)=C(C#N)C#N,0 +CC1=CN=CC=C1,0 +[O-][N+](=O)C2=C1C=CC=CC1=C(C3=CC=CC=C23)[N+]([O-])=O,0 +CCOCCO,0 +CN(C(C)=O)C1=CC=C(C=C1)N=NC2=CC=C(C=C2)N(C)C(C)=O,0 +CC(C)CCCCCCCOC(=O)C(C)=C,0 +CCC(C(C)O)=[N+](O)[O-],0 +CCC34CCC1C(CCC2=CC(=O)CCC12)C3CCC4(O)C#C,0 +OCC2=C1C=CC=CC1=NC=C2,0 +OC2=CC1=CC=CN=C1C=C2,0 +NC1=C(C=CC=C1)C(=O)OCC=C,0 +NC1=NC=CC=C1,0 +CCCC=O,0 +CC(=O)CC(C)(C)NC(=O)C=C,0 +CCOP(=S)(OCC)SCCl,0 +ClC1=C(C(=CC=C1)C=O)Cl,0 +CCCCCCCCCCCCCCCCCCCC,0 +CC(=O)OCC=C(C)C=CC=C(C)C=CC1=C(C)CCCC1(C)C,0 +CC(C)COC(=O)CCCCC(=O)OCC(C)C,0 +OC(=O)C1=CC=C(C=C1)Cl,0 +CC(C)(N)C1CCC(C)(N)CC1,0 +CCCCCCCCCCCC(=O)OOC(=O)CCCCCCCCCCC,0 +CC1=C(C=C(C(=C1)C)S(O)(=O)=O)N=NC3=C(C2=CC=CC=C2C(=C3)S(O)(=O)=O)O,0 +COC2=CC=C1[NH]C=C(CCNC(C)=O)C1=C2,0 +CC(C)NC1=NC(=NC(=N1)Cl)NC(C)C,0 +CC(C)COC(=O)CC1=CC=CC=C1,0 +CC(=C)C(=O)OC(C)(C)C,0 +COC(C)(C)CC(C)=O,0 +CC1=C(C=C(C(=N1)O)C#N)C2=CC=NC=C2,0 +CCOP(=O)(OCC)OC(=CBr)C1=C(C=C(C=C1)Cl)Cl,0 +COC1=CC=C(C=C1)CN(C)N=O,0 +CCOP(=S)(OCC)SCSC(C)(C)C,0 +FC1=C(C=CC=C1)C2=CC=CC=C2,0 +ClC2=CC1=CC=CC=C1C=C2,0 +OC(=O)C1CSCN1,0 +OC1=NSC2=CC=CC=C12,0 +NC1=C(C(=CC=C1)[N+]([O-])=O)CO,0 +N#CC1=CC(=CC=C1)C#N,0 +CCOC(=O)CNC(=O)CCCCSC2=C1N=C[NH]C1=NC=N2,0 +CCOCCOC(=O)C=CC1=CC=C(C=C1)OC,0 +CCCCCCCCCC=C,0 +CC(=O)CC(C)(C)O,0 +CCNC1=NC(=NC(=N1)N)Cl,0 +CC(C)=CCCC(C)=CCO,0 +CCCCC(CC)COC(=O)CCCCCCCCC(=O)OCC(CC)CCCC,0 +CC1=CC=C(C=C1)CO,0 +CCC(C)(C)OC,0 +ClC1=C(C=CC=C1)Cl,0 +CCOC1=C(C=CC=C1)N,0 +OCC1=CC4=C3C(=C1)C2=CC=CC=C2C3=CC=C4,0 +OCC1OC(CC1O)N2C=C(C=CBr)C(=O)NC2=O,0 +CC(=O)OC1=CC2=C(C=C1)C(=CC(=O)O2)CBr,0 +CCN(C(=O)N(CC)C1=CC=CC=C1)C2=CC=CC=C2,0 +CC(=O)NC1=CC=CC=C1,0 +CC1=CC(=CC=C1)OP(=O)(OC2=CC(=CC=C2)C)OC3=CC(=CC=C3)C,0 +CCNC(=O)NC1=CC(=C(C=C1)OCC(O)CNC(C)(C)C)C(C)=O,0 +OCC(COC(=O)C=C)(COC(=O)C=C)COC(=O)C=C,0 +ClC1=CC(=C(C(=C1)Cl)Cl)Cl,0 +CC(CCC(O)=O)C1CCC2C4C(CCC12C)C3(C)CCC(O)CC3CC4=O,0 +CCCCCCOC(=O)C(C)=C,0 +ClC1=CC=C(C=C1)N2C(=O)CCC2=O,0 +NC1=C(C=CC=C1O)C(O)=O,0 +CCCCOP(=O)(OCCCC)OCCCC,0 +C[N+]1=CC=C(C=C1)C2=CC=CC=C2,0 +CC(OC1=C(C=C(C=C1)Cl)Cl)C(O)=O,0 +[O-][N+](=O)C1=CC=C(C=C1)COC2=CC=CC=C2,0 +COC1=CC(=O)C=CC1=O,0 +CN(C)CCCN,0 +ON=CC1=CC=NC=C1,0 +OC(=O)CC1=CC(=CC=C1)[N+]([O-])=O,0 +CC1(C)C2CCC1(C)C(C)(O)C2,0 +C1=CC=C(C=C1)N(C2=CC=CC=C2)C3=CC=CC=C3,0 +CC(Br)(CCl)CBr,0 +COC1=CC(=C(C=C1)O)C(C)(C)C,0 +CCCCCNCCCCC,0 +OC1C(=O)C(=O)C1=O,0 +OCC1=CC=C(C=C1)C(F)(F)F,0 +OC2=C(C1=CC=CC=C1C=C2)N=NC4=C(C3=CC=CC=C3C=C4)S(O)(=O)=O,0 +CCOCC(O)=O,0 +CCC3=C2C1=CC=CC=C1C=CC2=CC4=CC=CC=C34,0 +CC(C)=C,0 +OC1=C(C=CC=C1[N+]([O-])=O)[N+]([O-])=O,0 +COC1=C(C2=C(C(=C1)OC)C(=O)C3(O2)C(C)CC(=O)C=C3OC)Cl,0 +O[N+]([O-])=C,0 +CCCCN(CC)CC,0 +NC(CCC(=O)NC1=CC=C(C=C1)[N+]([O-])=O)C(O)=O,0 +COP(=O)(OC)N1CCOCC1,0 +CC1=C(C=C(C=C1O)[N+]([O-])=O)[N+]([O-])=O,0 +[NH]1C=CC2=CC=CC=C12,0 +CCCCOC(=O)C1=C(C=CC=C1)C(=O)OCC2=CC=CC=C2,0 +FC(F)(F)C1=CC(=CC=C1)Cl,0 +OC2=C1C(C5=C(OC1=CC=C2)C=C4OC3OC=CC3C4=C5O)=O,0 +CC(C)CC(C)N,0 +CC(O)CN1CC(C)OC1=O,0 +CC1=CC(=C(C=C1)N)S(O)(=O)=O,0 +CC1=CC=C(C=C1)NC(=O)CBr,0 +[NH]1C=NC2=CC=CC=C12,0 +CCCCCCC(=O)OCC,0 +C1=CC3=C(N=C1)C2=NC=CC=C2C=C3,0 +CC(=O)NC1=CC=C(C=C1)CC2=CC=C(C=C2)NC(C)=O,0 +CC1=CC(=CC=C1)C#N,0 +NN(C1=CC=CC=C1)C2=CC=CC=C2,0 +CN(C)C1=CC=C(C=C1)C=CC(=O)C2=CC=CC=C2,0 +C=CN1CCCC1=O,0 +CC(C)CCCCCCCOP(=O)(OC1=CC=CC=C1)OC2=CC=CC=C2,0 +CC1=CC=C(C=C1)C(C)(C)C,0 +NC(=N)C1=CC=C(C=C1)C3=CC2=CC=C(C=C2[NH]3)C(N)=N,0 +CCCCC(CC)COC(=O)C1=C(C=CC=C1)C(O)=O,0 +CCN(CC)C(=O)NC1=CC(=C(C=C1)OCC(O)CNC(C)(C)C)C(C)=O,0 +CCCCCCCCCCCC=C,0 +S=C(NC1=CC=CC=C1)NC2=CC=CC=C2,0 +CCOC4=C2C1=CC=CC=C1C=CC2=C3CCC(C3=C4)=O,0 +CCCCCCCCCCCCCC=C,0 +OC(=O)C1=C(C=CC=C1)C(O)=O,0 +CC(=O)NC1=CC=C(C=C1)[N+]([O-])=O,0 +CN(C)[P+](O[N]1N=NC2=CC=CC=C12)(N(C)C)N(C)C,0 +CC(=C)C#N,0 +CCSCCC(N)C(O)=O,0 +CN(C)NC(=O)CCC(O)=O,0 +CSC(C)(C)C=NO,0 +CNC(=O)C1=CC(=CC=C1)NCC(=O)NCCC2=CC(=C(C=C2)OC)OC,0 +OC(=O)C1=CC=CO1,0 +ClC1=C(Cl)C(=O)C(=C(C#N)C1=O)C#N,0 +CC1=C(C=CC=C1)C#N,0 +CN(C)C(=S)N(C)C,0 +ClC1=CC(=O)C=CC1=O,0 +CCCCCCCCCC1=CC=C(C=C1)O,0 +CC([N]1C=CN=C1)=C(OCCOC2=CC=C(C=C2)Cl)C3=C(C=C(C=C3)Cl)Cl,0 +CC1=NC(=C(N=C1)C)C,0 +ONC1=CC=C(C=C1)Cl,0 +CC(CNC(=O)C1=CN=CC=C1)NC(=O)C2=CN=CC=C2,0 +CCOC(=O)CCl,0 +OC1=C(C=CC(=C1)Cl)Cl,0 +CC(C=CC(O)C1CC1)C2CCC3C(CCCC23C)=CC=C4CC(O)CC(O)C4=C,0 +CC1=C(N=CC=N1)C,0 +CCOC(=O)C1C(C=C(C)C)C1(C)C,0 +OC3N=C(C1=CC=CC=C1)C2=C(C=CC(=C2)Cl)NC3=O,0 +NCCS(O)(=O)=O,0 +CN1CCN(CC1)C3=CC=C2[NH]C(=NC2=C3)C5=CC=C4[NH]C(=NC4=C5)C6=CC=C(C=C6)O,0 +CC(CO)=[N+](O)[O-],0 +CC(C)NCC(O)COC3=C2C1=CC=CC=C1[NH]C2=CC=C3,0 +OCCOC(=O)C=C,0 +CC(C)(C)N(CCO)CCO,0 +C1CN=C(N1)C2=CC=C(C=C2)C4=CC3=CC=C(C=C3[NH]4)C5=NCCN5,0 +CCCCO,0 +CC1=C(C(=CC=C1)C)NC(=O)CN2CCCC2=O,0 +CCCCCOC1=CC(=CC=C1)NC(=O)OC2CCCCC2N3CCCC3,0 +CC(=O)NC1=CC(=CC=C1)C,0 +OC1=N[NH]C2=CC=CC=C12,0 +CCN(CC)C1=CC2=C(C=C1)C(=CC(O2)=O)C(F)(F)F,0 +CSCCC(NC=O)C(=O)NC(CC1=CC=CC=C1)C(O)=O,0 +CN(C)C1=CC=C(C=C1)C4CC2(C)C(CCC2(O)CCCO)C5CC=C3CC(=O)CCC3=C45,0 +[O-][N+](=O)C1=CC=C(C=C1)NC2=CC=C(C=C2)N=C=S,0 +CC1=CC(=C(C(=C1)CC2=C(C(=CC(=C2)C)C(C)(C)C)O)O)C(C)(C)C,0 +CC1SCC(NC1=O)C(=O)NC(CC2=C[NH]C=N2)C(=O)N3CCCC3C(N)=O,0 +CC(=O)NC1=CC=C(C=C1)OC2=CC=C(C=C2)NC(C)=O,0 +CON(C)C(=O)NC1=CC=C(C=C1)Br,0 +CC(=O)OC1=C(C=CC=C1)C(=O)OC2=C(C=CC=C2)C(O)=O,0 +CC1=CC(=C(C=C1)OP(=O)(OC2=C(C=C(C=C2)C)C)OC3=C(C=C(C=C3)C)C)C,0 +NC(=O)CN1CC(O)CC1=O,0 +CC(N)=S,0 +CCC1=NC=CN=C1,0 +CC(C)(S)C(=O)NC(CS)C(O)=O,0 +NN(CC1=CC=CC=C1)CC2=CC=CC=C2,0 +OC(=O)C(=O)NC1=CC(=CC=C1)C2=N[NH]N=N2,0 +OCCN1C(=O)N(CCO)C(=O)N(CCO)C1=O,0 +CC(=C)C1CCC(=CC1)C,0 +[O-][N+](=O)C1=C(C(=C(C(=C1Cl)Cl)Cl)Cl)Cl,0 +ClC1=CC(=CC=C1)C=O,0 +NC1=CC(=CC=C1)S(O)(=O)=O,0 +C1=CC=C(C=C1)C=CC2=CC=CC=C2,0 +O=C1OC(=O)C2=C1C=CC=C2,0 +COC(=O)C1=C(C=CC=C1)N,0 +OC(=O)C1CSCN1C(=O)C2CCC(=O)N2,0 +CNC(=O)N(C)C2=NC1=CC=CC=C1S2,0 +CCCCOC(=O)C1=C(C=CC=C1)C(=O)OC2CCCCC2,0 +COCCO,0 +CCCCCCCCCCCCC1CO1,0 +CNC(=O)NC,0 +COC1=CC=C(C=C1)NC2=CC=C(C=C2)OC,0 +[O-][N+](=O)C3=C2C=CC1=CC=CC=C1C2=CC4=CC=CC=C34,0 +CCCCOCC(O)=O,0 +NC1=C(C=CC=C1)Cl,0 +CN1CCNCC1,0 +COC(=O)CC(C)=O,0 +FC(F)(F)C(Cl)Br,0 +CCC(C)(C)C,0 +O=C(C=CC1=CC=CC=C1)C2=CC=C(C=C2)C3=CC=CC=C3,0 +CC(C)OC(C)=O,0 +CC3(C)C(C(=O)OC(C#N)C1=CC(=CC=C1)OC2=CC=CC=C2)C3(C)C,0 +CC(=O)C1=C2C(=CC(=C1)C(C)(C)C)C(CC2)(C)C,0 +NC2=C(C1=C(C=C(C=C1C=C2)S(O)(=O)=O)O)N=NC3=C(C=C(C=C3)[N+]([O-])=O)S(O)(=O)=O,0 +C1=NC=CN=C1,0 +[O-][N+](=O)C1=CC(=CC=C1)C(F)(F)F,0 +COC5=C1OC2C(C=CC3C4CC(=C1C23CCN4C)C=C5)O,0 +CC1=CC=CS1,0 +CC2CCC1C(OC(=O)C1=C)C3(C)C(=O)CC=C23,0 +OC1=C(C=CC=C1)[N+]([O-])=O,0 +NC1=CC(=C(C(=C1)Cl)Cl)Cl,0 +N(C1=CC=CC=C1)C3=C2C=CC=CC2=CC=C3,0 +OC1=C(C=C(C=C1)C2=CC=CC=C2)[N+]([O-])=O,0 +NC(=O)NNC(N)=O,0 +[O-][N+](=O)C1=C(C=CC(=C1)C(F)(F)F)Cl,0 +CCN(CC)C1=CC=C(C=C1)N=NC2=CC=CC=C2,0 +ON=C,0 +OC2=C1C=CC=CC1=NC=C2,0 +NCCN1CCNCC1,0 +O=C2C1=C(C=CC=C1)C3=C2C=CC=C3,0 +CC(C)(COC(=O)C=C)COC(=O)C=C,0 +CC(C)(Br)C(=O)NC1=CC=CC=C1,0 +CC(C)(OC1=CC=C(C=C1)C2CCCC3=C2C=CC=C3)C(O)=O,0 +CC(C)C1CCC(C)CC1OC(=O)C2=C(C=CC=C2)N,0 +OC1=C(C=C(C=C1Br)Br)C(=O)NC2=CC=C(C=C2)Br,0 +C1=CC=C(C=C1)P(C2=CC=CC=C2)C3=CC=CC=C3,0 +COC(=O)NC2=NC1=CC(=CC=C1[NH]2)SC3=CC=CC=C3,0 +O=NN(C1=CC=CC=C1)C2=CC=CC=C2,0 +O=C2NC1=C(CCC1)C(=O)N2C3CCCCC3,0 +NC1=C(C=CC=C1)C(=O)OCC=CC2=CC=CC=C2,0 +C1CSCCO1,0 +O=C(C=CC1=CC=CC=C1)C2=CC=CC=C2,0 +CC1=CC2=C(C(=C1)O)C(=O)C=C(C2=O)C3=C(C4=C(C=C3C)C(=O)C=CC4=O)O,0 +CC1=NN(C(=O)C1)C2=CC=CC=C2,0 +NC1=CC(=CC=C1)C(F)(F)F,0 +NC(=O)C1=CC=[N+](C=C1)COC[N+]2=C(C=CC=C2)C=NO,0 +NCC=C,0 +COP(=S)(OC)OC1=C(C=C(C(=N1)Cl)Cl)Cl,0 +CC1OCCC2=C1C=C3C(=C2)C(C(C3(C)C)C)(C)C,0 +NC1=CC(=C(C=C1)N)S(O)(=O)=O,0 +CCC1=C(C=CC=C1)O,0 +CCCCCC(=O)OCC=C,0 +CC1=C(C=C(C=C1)N=[N+]([O-])C2=CC(=C(C=C2)C)[N+]([O-])=O)[N+]([O-])=O,0 +NN2C(=O)C1=C(C=CC=C1)C2=O,0 +CC(=O)C1=NC=CC=C1,0 +COC4=C1C(C5=C(OC1=C3C2CCOC2OC3=C4)C=CC=C5O)=O,0 +CCOCN(C(=O)CCl)C1=C(C=CC=C1C)CC,0 +CC(N)=O,0 +OC(=O)COC1=CC=C(C=C1)Cl,0 +NC1=CC(=C(C=C1)Cl)Cl,0 +ClC1=CN=CC=C1,0 +O=C1CNC(=O)N1,0 +CCCC(O)C(CC)CO,0 +CC(=O)C1=C(C=CC(=C1)N)OCC(O)CNC(C)(C)C,0 +OC1(CCCCC1)C#N,0 +O=C(C1=CC=CC=C1)C(=O)C2=CC=CC=C2,0 +C=CC(=O)OCCOCCOCCOCCOC(=O)C=C,0 +CC(C)C=O,0 +[O-][N+](=O)C1=C(C=CC=C1)C2=CC=CC=C2,0 +CS(=O)C1=CC=C(C=C1)Cl,0 +OCC1OC(CC1O)N2CC(=O)C(=N)NC2=O,0 +OC(=O)C(Cl)(Cl)Cl,0 +CCC1=C(C=CC=C1)[N+]([O-])=O,0 +NC(=N)NC(N)=NCCC1=CC=CC=C1,0 +CC1=CC(C)(C)NC2=C1C=CC=C2,0 +COP(=S)(OC)SCC(=O)NCC=O,0 +CC(C)OC(=O)COC1=C(C=C(C=C1)Cl)Cl,0 +CC(C)[N]2C1=CC=CC=C1C(=C2C=CC(O)CC(O)CC(O)=O)C3=CC=C(C=C3)F,0 +CCOC(C)(C)C,0 +CCCCCCCCCCCCC=C,0 +CCCCCCCCCC,0 +C1COCCOCCOCCOCCO1,0 +CC2=NC1=C(C=CC=C1)C2(C)C,0 +CCCCCCCCCC(O)=O,0 +CCC=O,0 +CCCCCCCCCC=CCC1CC(=O)OC1=O,0 +COC3=C(C=C2C1C(C5=C(OC1COC2=C3)C4=C(OC(C4)C(C)=C)C=C5)=O)OC,0 +COC1=CC(=O)C(=O)C(=C1)C(C)(C)C,0 +CC(=O)OCC(=O)NCCCOC1=CC(=CC=C1)CN2CCCCC2,0 +CC1=C(C=CC=C1)Br,0 +C[N+]1([O-])CCCC1C2=CN=CC=C2,0 +CC(C)NC(=O)NS(=O)(=O)C1=C(C=CN=C1)NC2=CC(=CC=C2)C,0 +CCNC3=C(C=C2C(=C1C=C(C(C=C1OC2=C3)=NCC)C)C4=C(C=CC=C4)C(=O)OCC)C,0 +O=C4C2=CC=C1N=C(SC1=C2C(=O)C5=CC=C3N=C(SC3=C45)C6=CC=CC=C6)C7=CC=CC=C7,0 +CC5=C2C1=CC=CC=C1C=CC2=C4C3OC3C(C(C4=C5)O)O,0 +CC(C)CC1NC(=O)CNC1=O,0 +OC2=CC1=CC=CC=C1N=C2,0 +CCOC(=O)C(CCC1=CC=CC=C1)NC(C)C(=O)N(CC(O)=O)C3CC2=C(C=CC=C2)C3,0 +CCCCN(CCO)CCCC,0 +ClNC1=NC(=NC(=N1)NCl)NCl,0 +CC1CN(CCN1)C3=C(C(=C2C(C(=CN(C2=C3)C4CC4)C(O)=O)=O)C)F,0 +OCC(O)CO,0 +CNC(=O)C1=CC=CC=C1,0 +CCC1=C(C=CC=C1)N,0 +OC(=O)C1=CC2=C(C=C1)C(=O)OC2=O,0 +CC(C)CC(C)NC1=CC=C(C=C1)NC2=CC=CC=C2,0 +O=C3OC2=C(C=C1C=COC1=C2)C=C3,0 +NC1=C(C=CC(=C1)Cl)Cl,0 +CCCCOC(=O)C=CC(=O)OCCCC,0 +CNNC,0 +O=C1C=CC(=O)C(=C1)C2=CC=CC=C2,0 +CC(N)CN,0 +CCOC2=C1N=CC=CC1=CC=C2,0 +CC1=C(C=CC=C1)C3=NC2=CC=CC=C2O3,0 +NC(N)=S,0 +BrCC1=CC=C(C=C1)CBr,0 +OC(=O)C(=O)C(O)=O,0 +OC(=O)C1=CC3=C(C(=C1)O)C(=O)C2=C(C=C(C=C2O)O)C3=O,0 +ClCC1=CC=NC=C1,0 +CC(N(C)C)C1=CC=CC=C1,0 +CC2COC1=C(C(=CC3=C1N2C=C(C(O)=O)C3=O)F)C4(N)CC4,0 +[O-][N+](=O)C1=CC=C(C=C1)NC2=CC=CC=C2,0 +O=C(OOC(=O)C1=CC=CC=C1)C2=CC=CC=C2,0 +CCC2=C1[NH]C3=C(C1=CC=C2)CCOC3(C)CC,0 +COC2=CC1=CC=C(C=C1C=C2)C(C)C(O)=O,0 +CN1C(CCC1=O)C2=CN=CC=C2,0 +CCCCCC=CC=CC=O,0 +COC1=C(C=CC(=C1)C3OC2=C(C(=CC(=C2)O)O)C(=O)C3=O)O,0 +COC(C)(C)C,0 +O=C2CCC1=C(C=CC=C1)O2,0 +CC=CC=CC(O)=O,0 +CCN(CC)S(=O)(=O)C1=CC=C(C=C1)N,0 +OCNC(=O)C=C,0 +CC(C)=CCCC(C)=CC=O,0 +CC2=NC1=CC=CC=C1N=C2,0 +CC(O)CCC(=O)C1=COC=C1,0 +CN(C)C(C)=O,0 +CN1CCOCC1,0 +CC(=C)OC(C)=O,0 +CCOC(=O)CC(C)=O,0 +OS(=O)(=O)C1=CC(=CC=C1)[N+]([O-])=O,0 +CSC(C)(C)C(=O)NC(CS)C(O)=O,0 +ClC1=NC(=NC(=N1)Cl)NC2=C(C=CC=C2)Cl,0 +CC1COC3=C2N1C=C(C(C2=CC(=C3N4CCN(C)CC4)F)=O)C(O)=O,0 +COC(=O)C(=CC1=CC=CO1)C#N,0 +CC(=C)C=C,0 +C1=CC=CC=C1,0 +CCCCC(CC)COCCCN,0 +[O-][N+](=O)C1=CC(=CC=C1)CBr,0 +CN(C)C=NC1=C(C=C(C=C1)Cl)C,0 +COC(=O)C1=C(C)NC(=C(C1C2=C(C=CC=C2)[N+]([O-])=O)C(=O)OCC(C)=O)C,0 +NCC1CCC(CC1)C(=O)C2=CC=C(C=C2)CCC(O)=O,0 +CCOC(=O)C1OC1C(=O)NC(CC(C)C)C(=O)NCCC(C)C,0 +CC1=CC(=O)OC2=C1C(=CC(=C2)O)O,0 +CN(C)C1=CC=C(C=C1)N=NC2=C(C=CC=C2)C,0 +CC(=O)NC1=CC=C(C=C1)OC(=O)C2=C(C=CC=C2)OC(C)=O,0 +C1CCC2(CC1)CO2,0 +NC(=S)NCC=C,0 +CC(CCC(O)=O)C3CCC4C2CCC1CC(O)CCC1(C)C2CC(O)C34C,0 +CC(=O)NC1=CC=C(C=C1)S(=O)(=O)NC2=NC=CC=C2,0 +CCCCCC(C)(O)C=CC1C(O)CC(=O)C1CC=CCCCC(O)=O,0 +CC(=C)C1=CC=CC=C1,0 +O=CC=CC1=CC=CO1,0 +CCCCCCCCCCCCCCCCCC(O)=O,0 +CCCCCCCCCCCCCCCCN,0 +CCNC1=NC(=NC(=N1)Cl)NCC,0 +COP(=S)(OC)OC,0 +ClC1=C(C(=C(C(=C1)Cl)Cl)Cl)Cl,0 +CCCC=[N+](O)[O-],0 +CNC1=CC=CC=C1,0 +OC(=O)C=C,0 +CCCCCCCCCCCCCCCCCCN,0 +COC1=CC2=C(C=C1)C(=CC(=O)O2)CBr,0 +CCC#N,0 +CC=C1CC2CC1C=C2,0 +CC(C)C(C)C,0 +COCC(O)=O,0 +CNC(=O)NC1=CC=CC=C1,0 +O2C1=C(C=CC=C1)SC3=C2C=CC=C3,0 +C=CC(=O)OCCOC(=O)C=C,0 +CC1=CC=C(C=C1)S(=O)(=O)NC2CCCCC2,0 +CCC(C)NC1=CC=C(C=C1)NC(C)CC,0 +CC(C)OC(=O)C(C)(C)OC1=CC=C(C=C1)C(=O)C2=CC=C(C=C2)Cl,0 +OC1=CC(=C(C=C1)Cl)Cl,0 +CCNC2=C(C=C1C(=CC(OC1=C2)=O)C)C,0 +CCOP(=O)(OCC)OC(=CCl)C1=C(C=C(C=C1)Cl)Cl,0 +OC1=NC(=NC(=N1)Cl)Cl,0 +COC1=CC=C(C=C1)C(=O)C=CC2=CC=CC=C2,0 +COC1=C(C=C(C(=C1)S(O)(=O)=O)C)N=NC3=C2C=CC(=CC2=CC=C3O)S(O)(=O)=O,0 +CC(=O)CC(=O)NC1=CC=C(C=C1)C,0 +CCCCNCC,0 +NS(=O)(=O)C1=C(C=C(C(=C1)C(O)=O)NCC2=CC=CO2)Cl,0 +CC(C)NCC(O)COC1=CC=C(C=C1)NC(C)=O,0 +CC(F)(F)F,0 +CCCCCCCCC=O,0 +C1=CC=C(C=C1)C2=CC=CC=C2,0 +FC(F)(F)C1=C(C=CC=C1)Cl,0 +CC(C)CC(=O)CC(C)C,0 +CCCCCC(C=O)=CC1=CC=CC=C1,0 +CN(C)CC(O)=O,0 +CCOC(=O)CC(=O)CCl,0 +OC(=O)COC1=CC=CC=C1,0 +BrC1=CC(=CC=C1)C2=CC=CC=C2,0 +CC1=C(C=CC=C1)C,0 +CCC1=C4C(=C(C2=CC=CC=C12)C)C3=CC=CC=C3C=C4,0 +CC(C)CCCCCCOC(=O)CCCCC(=O)OCCCCCCC(C)C,0 +OC1=C(C=CC=C1)O,0 +NC1=C(C=CC=C1)C(=O)OC2CCCCC2,0 +C1CCNC1,0 +CCCCN(CCCC)CCCC,0 +CC(C)C2=C(C)N(C)N(C1=CC=CC=C1)C2=O,0 +C(SCC1=CC=CC=C1)C2=CC=CC=C2,0 +COC(=O)C1=CC=CO1,0 +OC1=C(C=C(C=C1I)C#N)[N+]([O-])=O,0 +COC1=C(C=C(C=C1)C=O)OC,0 +O=C2C(=O)C1=C(C=CC=C1)C3=C2C=CC=C3,0 +CCO,0 +CC(=O)N=C1C=CC(=O)C=C1,0 +CC(C)(C)OOC(C)(C)C1=CC(=CC=C1)C(C)(C)OOC(C)(C)C,0 +CSC1=CC=C(C=C1)Cl,0 +O=C2C1=C(C=CC=C1)C6=C4C2=CC=C5C3=CC=CC=C3C(C(=C45)C=C6)=O,0 +OC1=CC=C(C=C1)C2(OC(=O)C3=C2C=CC=C3)C4=CC=C(C=C4)O,0 +ClCC1=CC=C(C=C1)CCl,0 +S=C1SSC2=NCCN12,0 +CC(O)C(C)O,0 +NCCO,0 +CCNC1=NC(=NC(=N1)Cl)NC(C)C,0 +OC(=O)CCC(=O)NC1=CC=C(C=C1)Cl,0 +OCC1NC(CC2=C1[NH]C3=CC=CC=C23)C(O)=O,0 +COC(=O)C=C,0 +CC(C)NC1=CC=C(C=C1)NC2=CC=CC=C2,0 +CCCC(=O)OCCC(C)C,0 +COC(=O)C1=C(C)NC(=C(C1C2=CC(=CC=C2)[N+]([O-])=O)C(=O)OCC=CC3=CC=CC=C3)C,0 +CCN=[N+]([O-])CC,0 +CNC(=O)OC2=C1OC(CC1=CC=C2)(C)C,0 +CN(C)C1=CC=NC=C1,0 +CCCCCCCCCCCC(=O)NCCO,0 +CC(=C)C(O)=O,0 +CC1=CC(=CC(=C1)C)N=NC3=C2C=CC=CC2=CC=C3O,0 +CCCCCCCC1CCC(=O)O1,0 +NC1=CC(=C(C=C1)O)C(O)=O,0 +CCOP(=O)(C#N)N(C)C,0 +CC(C)(C)C1=C(C(=CC(=C1)C=CC2=CC(=C(C(=C2)C(C)(C)C)O)C(C)(C)C)C(C)(C)C)O,0 +NC1=C(C=C(C=C1Cl)Cl)Cl,0 +OC(=O)CS,0 +CC(C)COC(=O)C=C,0 +CC1(C)CC(N)CC(C)(CN)C1,0 +CC1=C(C=C(C=C1)NO)[N+]([O-])=O,0 +ClC(Cl)=C(Cl)C1=C(C(=C(C(=C1Cl)Cl)Cl)Cl)Cl,0 +CNC(=O)OC1=CC=CC=C1,0 +NC1=CC=C(C=C1)C=CC(O)=O,0 +OC2(O)C(=O)C1=C(C=CC=C1)C2=O,0 +CC1=N[N](C(=C1)C)C2=C4C(=C(N=N2)NN)C3=CC=CC=C3[NH]4,0 +NC1=NC(=NC(=N1)N)N,0 +CC1=C(C(=C(C=C1)C)C)C,0 +CC1=C(C(=C(C(=C1C)N)C)C)N,0 +CC(C)COC(=O)C1=C(C=CC=C1)N,0 +CCOC1=C(C=CC=C1)OCC2CNCCO2,0 +CC1=CC=C(C=C1)NC(N)=O,0 +OC(=O)CCl,0 +OC(=O)C1CSC(N1C(=O)CCS)C2=C(C=CC=C2)O,0 +CC2=NC1=CC=CC=C1S2,0 +[O-][N+](=O)C1=CC=C(C=C1)S(=O)(=O)NC2=NC=CC=C2,0 +CC1(C)CCCC(C)(C)N1O,0 +CCCCCCCCCCC=CC1CC(=O)OC1=O,0 +CCOP(=O)(OCC)OC1=C(C=C(C(=N1)Cl)Cl)Cl,0 +CC(O)C(O)=O,0 +NCCCCC(NC(CCC1=CC=CC=C1)C(O)=O)C(=O)N2CCCC2C(O)=O,0 +NC1=CC(=C(C=C1)C=CC2=C(C=C(C=C2)N)S(O)(=O)=O)S(O)(=O)=O,0 +C1CN(CCO1)SC3=NC2=CC=CC=C2S3,0 +CCCCOCCOC(=O)COC1=C(C=C(C=C1)Cl)Cl,0 +CCOC(=O)C(CCC1=CC=CC=C1)NC(C)C(=O)N3C2CCCCC2CC3C(O)=O,0 +OC1=C(C=CC=C1)C=O,0 +ClC1=CN=C(C=C1)Cl,0 +CCC(=O)NC1=CC(=C(C=C1)Cl)Cl,0 +N#CCCNCCC#N,0 +COC(=O)C(C)(C)OC1=CC=C(C=C1)C2=CC=C(C=C2)Cl,0 +CCCNCCC,0 +CCCCCCC(CC=CCCCCCCCC(=O)OC)OC(C)=O,0 +[O-][N+](=O)C1=C(C(=CC(=C1)C(F)(F)F)[N+]([O-])=O)Cl,0 +CCOC(=O)CC(SP(=O)(OC)SC)C(=O)OCC,0 +OCC3OC1C(OC2=NC(=N)C=CN12)C3O,0 +OC(C(COC(=O)CCC(O)=O)NC(=O)C(Cl)Cl)C1=CC=C(C=C1)[N+]([O-])=O,0 +CC(C)(C)C(=O)C2C(=O)C1=C(C=CC=C1)C2=O,0 +CC(=O)NS(=O)(=O)C1=CC=C(C=C1)N,0 +CC(=C)C(=O)OCCOC(=O)NNC(=O)OCCOC(=O)C(C)=C,0 +FC1=CC=C(C=C1)C(=O)CCCN2CCN(CC2)C3=NC=CC=C3,0 +CNCCS(O)(=O)=O,0 +[O-][N+](=O)C1=C(C=CC=C1)C#N,0 +CC=C(C)C#N,0 +OC(=O)C1=C(C=CC(=C1)N=NC2=CC=C(C=C2)S(=O)(=O)NC3=NC=CC=C3)O,0 +CCCCCCCCC1OC1CCCCCCCC(=O)OCC(CC)CCCC,0 +O=C(C1=CC=CC=C1)C2=CC=CC=C2,0 +BrCCCBr,0 +CC(=O)OC(C)(C)C3CC2=C(C=C1OC(C(=CC1=C2)C(C)(C)C=C)=O)O3,0 +OC1=C5C(=CC=C1)C4=CC3=C2C=CC=CC2=CC=C3N=C4C=C5,0 +CN3CCC14C5OC2=C1C(=CC=C2O)CC3C4C=CC5O,0 +NC1=C(C=CC=C1)C(F)(F)F,0 +CN(C)CCN(CC1=CC=C(S1)Cl)C2=NC=CC=C2,0 +C2COCCOC1=C(C=CC=C1)OCCOCCO2,0 +CC1CS1,0 +CC(CCC(O)=O)C3CCC4C2CCC1CC(O)CCC1(C)C2CC(=O)C34C,0 +OC1=C(C=C(C(=C1)Cl)O)Cl,0 +OCC(CO)NC1CC(O)(CO)C(O)C(O)C1O,0 +CC(=O)NC1=CC=C(C=C1)S(N)(=O)=O,0 +CCCCCCCCC1=CC=C(C=C1)NC2=CC=C(C=C2)CCCCCCCC,0 +CCOC(=O)C(=C)C#N,0 +CC1=CC(=O)C=CC1=O,0 +CC34CCC1C(CCC2=C1C=CC(=C2)O)C35CCC4(O)C(O)C5,0 +OC3C(O)C1=C(C=CC2=CC=CC=C12)C4=C3C=CC=C4,0 +CC(=C)C(=O)OCCCCOC(=O)C(C)=C,0 +OC(=O)C1=CC(=CC=C1)Cl,0 +OC(=O)C(Cl)CCl,0 +CNS(=O)(=O)C1=CC=C(C=C1)N,0 +CC(C)NC(C)C,0 +OC1=C(C(=C(C(=C1)Cl)Cl)Cl)Cl,0 +BrCC#N,0 +OCNC(=O)CCl,0 +CCCCCCCCC=CCCCCCCCC(O)=O,0 +CC1=C(C=C(C(=C1)N)S(O)(=O)=O)Cl,0 +OC1=CC=C(C=C1)[N+]([O-])=O,0 +NC(=O)NCC(O)=O,0 +CN1CCN(C)CC1,0 +CN(C)N=NC1=CC=C(C=C1)C(O)=O,0 +CC(OC1=C(C=C(C=C1)Cl)C)C(O)=O,0 +ClC2=C(N=C1C=CC=CC1=N2)Cl,0 +CN(C)CCN(C)C,0 +OC=O,0 +CCCCCCOC(=O)C=C,0 +COC1=C(OC)C(=O)C(=CC1=O)C,0 +COC(=O)C1=C(C2=C(C(=C1)OC)OCO2)C3=C(C=C(C4=C3OCO4)OC)C(=O)OC,0 +C1CC3=C2C1=CC=CC2=CC=C3,0 +OC(=O)C=CC1=CN=C[NH]1,0 +N(C1=CC=CC=C1)C3=CC2=CC=CC=C2C=C3,0 +CC(C)CC1=CC=C(C=C1)C(C)C(O)=O,0 +COC(=O)NC2=NC1=CC(=CC=C1[NH]2)C(=O)C3=CC=C(C=C3)F,0 +OC(=O)C1=C(C=CC=C1)NC2=CC(=CC=C2)C(F)(F)F,0 +ClC1=CC=C(C=C1)C(=C(Cl)Cl)C2=CC=C(C=C2)Cl,0 +CC(C)N,0 +OCC1CCCO1,0 +CC(O)C(C)=O,0 +CC2C(C)(C)C1=C(C(=O)CCC1)C2(C)C,0 +CC2C(C)(C)C1=C(C=C(C(=C1)C)C(C)=O)C2(C)C,0 +CCCCCC,0 +CCCSSCC=C,0 +C[N]2C(=NC3=NC1=CC=NC=C1C=C23)N,0 +NC1=CC=C(C=C1)S(N)(=O)=O,0 +NC1=C(C(=CC(=C1)Cl)S(O)(=O)=O)O,0 +ClC1=CC=CC=C1,0 +COC(=O)C1=CC=CC=C1,0 +CC4=C2C1=CC=CC=C1C=CC2=C3CCCC3=C4,0 +CCNCC,0 +CCC(C1=CC=C(C=C1)O)=C(CC)C2=CC=C(C=C2)O,0 +CC(=O)NC1=CC=C(C=C1)S(=O)(=O)C2=CC=C(C=C2)NC(C)=O,0 +COC(=O)CCl,0 +CC(=C)C(C)=O,0 +CC(C)OC1=CC=C(C=C1)NC2=CC=CC=C2,0 +CC1=CC(=O)C(=CC1=O)C,0 +O=C3N2CC1=C(C=CC=C1)C(=O)N2CC4=C3C=CC=C4,0 +CCCCCCCCOC(=O)C(C)=C,0 +CC(C)OC(=O)CCl,0 +CC(C)(O)C#N,0 +CC1=C(C=CC(=C1)Cl)OCC(O)=O,0 +CC(C)NCC(O)COC2=C1OCC(CC1=CC=C2)O,0 +[O-][N+](=O)C1=CC=C(C=C1)CNC3=C2[NH]C=NC2=NC=N3,0 +CC(=O)OC(C)=O,0 +CC(C)(C)CBr,0 +OC(=O)COC1=C(C=C(C=C1)Cl)Cl,0 +NC1=C(N=CC(=C1)C2=CC=NC=C2)O,0 +CC1=CC(=C(C(=C1)C(C)(C)C)O)C(C)(C)C,0 +BrCC1=C(C=CC=C1)CBr,0 +CC(C)OP(C)(F)=O,0 +O=C1C(=O)C4=C3C2=C1C=CC=C2C=CC3=CC=C4,0 +CC(C)(C)CC(C)(S)CC(C)(C)C,0 +C=CCOC(=O)C1=C(C=CC=C1)C(=O)OCC=C,0 +OC1=CC2=C(C(=C1)O)C(=O)C=C(O2)C3=CC(=C(C=C3)O)O,0 +OCC1OC(CC1O)[N]2C=NC3=C2N=C[N]4C=CN=C34,0 +CN(C)P(=O)(N(C)C)N(C)C,0 +CC(=O)NC2=CC1=CC=CC=C1N=C2,0 +CC(O)C1=CC=CC=C1,0 +[O-][N+](=O)C1=CC=C(C=C1)C#N,0 +NCCNCCN,0 +CC(CC(O)=O)C(O)=O,0 +CCCCCCCCCCCCOCC1CO1,0 +OCC1=CC=CO1,0 +CCC=CCCC=CC=O,0 +CN1CCC(=CC1)C2=CC=CC=C2,0 +ClCC#N,0 +OC(=O)C(F)(F)C(F)(Cl)C(F)(F)C(F)(Cl)C(F)(F)C(F)(Cl)C(F)(F)Cl,0 +COCCCN,0 +N2C1=C(C=CC=C1)SC3=C2C=CC=C3,0 +CC3(C)SC2C(NC(=O)C(N)C1=CC=CC=C1)C(=O)N2C3C(O)=O,0 +CC(C)(C)[N+]([O-])=O,0 +CC(C)C(O)CCC(C)C1CCC2C(CCCC12C)=CC=C3CC(O)CC(O)C3=C,0 +OC(=O)CC1=C(C=CC=C1)Cl,0 +OC2=CC1=CC=C(C=C1C=C2)SSC4=CC3=CC=C(C=C3C=C4)O,0 +CC(=O)OCC1=CC2=C(C=C1)OCO2,0 +CN(C)C#N,0 +CCCCC(CC)COC(=O)C1=CC=C(C=C1)C(=O)OCC(CC)CCCC,0 +O=C1CCC(=O)O1,0 +COC(=O)C1=CC=C(C=C1)C=O,0 +CC(=O)C=CC1=CC2=C(C=C1)OCO2,0 +COC1=CC(=CC=C1)[N+]([O-])=O,0 +OCC1OC(C(O)C1O)[N]4C=NC5=C(NCC(O)COC3=C2C=CC=CC2=CC=C3)N=CN=C45,0 +C1=CC=C(C=C1)C(C2=CC=CC=C2)C3=CC=CC=C3,0 +CC1=CCC(CC1)C(C)(C)O,0 +COC1=C(C=C(C=C1)C(=O)N2CCN(CC2)C3=CC4=C(C=C3)NC(=O)CC4)OC,0 +NC(=N)C1=CC=C(C=C1)OCCCCCOC2=CC=C(C=C2)C(N)=N,0 +OCC1=C(C=CC=C1)[N+]([O-])=O,0 +CC(=O)NC3=C(C=C2C1=CC=CC=C1CC2=C3)O,0 +CC(=O)C1=C(C=CC(=C1)NC(=O)NC(C)(C)C)OCC(O)CNC(C)(C)C,0 +BrCC(=O)NC1=CC=CC=C1,0 +C2CC=CCCC1OC1CCC=C2,0 +CC(=O)NC1=CC(=CC=C1)O,0 +C=CCNCC=C,0 +C[N]1C=NC2=C1C(N(C(N2C)=O)C)=O,0 +ClC1=C(C=C(C=C1)C=O)Cl,0 +CC(C)NCC(O)COC2=C1OCC(CC1=CC=C2)O[N+]([O-])=O,0 +CC=NN(C)C=O,0 +CC2=C(C=C1C=CC=CC1=C2)[N+]([O-])=O,0 +CC(C)(C)C1=C(C(=CC(=C1)CC2=CC(=C(C(=C2)C(C)(C)C)O)C(C)(C)C)C(C)(C)C)O,0 +C1CN(CCN1)C2=CC=CC=C2,0 +FC1=NC(=CC=C1)F,0 +CCCCCCCCCCCCCCC1CO1,0 +ClC1=CC(=C(C=C1)Cl)Cl,0 +C1CNCCN1,0 +CC=C1CC(C)C(O)(CO)C(=O)OCC2=CC[N+]3([O-])CCC(OC1=O)C23,0 +CC1=C(C=CC=C1)Cl,0 +CCC1=C4C(=C(C2=CC=CC=C12)CC)C3=CC=CC=C3C=C4,0 +CCSCCOP(=S)(OC)OC,0 +CCOC(=O)C(Cl)C(C)=O,0 +CC2=C1C=CC=CC1=C3C(=C2)C4=C(C=C3)C(O)C(O)C5OC45,0 +NC1=CC=C(C=C1)Br,0 +C1COCCOCCOCCO1,0 +O=C1CCCCCN1,0 +[O-][N+](=O)C1=C(C(=C(C(=C1)Cl)Cl)Cl)Cl,0 +OCC1OC(C(O)C1O)N2CC(=O)C(=N)NC2=O,0 +OCCCC1=CC=CC=C1,0 +CC1=NC(=NC(=C1)C)SC(=O)OC(C)(C)C,0 +OC(=O)C=CC1=CC=CC=C1,0 +CCOP(=O)(OCC)OC1=NOC(=C1)C2=CC=CC=C2,0 +CC(O)=O,0 +N#CCC1=CC=CC=C1,0 +CC1(C)N(Cl)C(=O)N(Cl)C1=O,0 +CCC(C)=O,0 +OC1=C(C(=C(C(=C1Br)Br)Br)Br)Br,0 +CCN(CC)C1=CC2=C(C=C1)C(=CC(=O)O2)C,0 +NCCCNCCCN,0 +CCOC1=C(C=CC(=C1)C=O)O,0 +CN1N(C(=O)C=C1C)C2=CC=CC=C2,0 +COC1=C(C=C(C(=C1)OC)C=O)OC,0 +CCCNC(=O)NS(=O)(=O)C1=CC=C(C=C1)Cl,0 +CC(NC(=O)COC1=C(C=C(C=C1)Cl)Cl)C(O)=O,0 +C[N]2C(=NC3=NC1=CC=CN=C1C=C23)N,0 +OS(=O)(=O)C2=C1N=CC=CC1=CC=C2,0 +CC1=NC2=C(C=N1)CCC2,0 +CN(C1CCN(CC1)C3=NC2=CC=CC=C2[N]3CC4=CC=C(C=C4)F)C5=NC(=CC=N5)O,0 +OC1=CC=C(C=C1)C3CC(=O)C2=C(C=C(C=C2O)O)O3,0 +CC(=O)C(=O)C1=CC=CC=C1,0 +O=C(CN1C(=O)SC2=C1C=CC=C2)OCC3=CC=CC=C3,0 +ClC1=C(Cl)C(Cl)(Cl)C(=C1Cl)Cl,0 +BrCC(=O)C1=CC=CC=C1,0 +CCCCCCC=O,0 +O2C1=CC=CC=C1C3=CC=CC=C23,0 +CC1=CC=C(O1)C=O,0 +C2CCCC1OC1CC2,0 +C1COCCN1,0 +OC2=NC1=CC=CC=C1O2,0 +NC2=C(C1=CC=CC=C1C=C2)N=NC3=CC=CC=C3,0 +O=CNC1=CC=CC=C1,0 +CCSCCSP(=S)(OC)OC,0 +COP(O)(SC)=NC(C)=O,0 +CC(C)(C)OOC(C)(C)CCC(C)(C)OOC(C)(C)C,0 +CC1=C(C=C(C=C1)Cl)[N+]([O-])=O,0 +CCOC(=O)C1OC1(C)C2=CC=CC=C2,0 +COC(=O)CCC(=O)OC,0 +CCCCCCCOC1=C(C=CC=C1)NC(=O)OCCN2CCCCC2,0 +CC(=C)C1=C(C=C(C(=C1)O)C)O,0 +O1C=CC2=CC=CC=C12,0 +CC(=O)C1=CC=CC=C1,0 +CCCCSCCC(N)C(O)=O,0 +OCC1=CC=C(C=C1)[N+]([O-])=O,0 +CC(C)(C)OC(=O)ON=C(C#N)C1=CC=CC=C1,0 +CCCOC(=O)C(C)=C,0 +CC(=O)[N]1C=CN=C1,0 +OC(=O)C2=NC1=C(C=CC=C1C(=C2)O)O,0 +ON=CC=NO,0 +N#CCCC#N,0 +NC1=CC=C(C=C1)S(O)(=O)=O,0 +OC2=C1C=C(C(OC1=CC=C2)=O)C4CCC3=C(C=CC=C3)C4,0 +CC1=CC(=O)OC2=C1C=CC(=C2)N,0 +CC(=O)NC1=C(C3=C(C=C1)C2=CC=CC=C2C3)O,0 +CC(O)CN(CCN(CC(C)O)CC(C)O)CC(C)O,0 +CCCCOCCOCCOCC2=C(C=C1OCOC1=C2)CCC,0 +CC(=O)OC1=CC=C(C=C1)CO,0 +CO,0 +COCCOCCOC,0 +CCC(=O)C(C)=O,0 +CC1(C)CC(C(N)=O)C(C)(C)N1O,0 +CC1=C(C=CC(=C1)Cl)OCCCC(O)=O,0 +O=C1OC(=O)C=C1,0 +CCCCC(CC)CN,0 +CC(C)C1=CC3=C(C=C1)OC2=C(C=C(C(=N2)N)C(O)=O)C3=O,0 +FC(F)(F)C1=CC=C(C=C1)Cl,0 +CC1=NN=C(S1)NS(=O)(=O)C2=CC=C(C=C2)N,0 +CCN(CC)S(=O)(=O)C1=CC=C(C=C1)NC(C)=O,0 +OC1=CC2=C(C=C1)OCO2,0 +CCC(C)C(C)CO,0 +OC1(O)C(=O)NC(=O)NC1=O,0 +NC(CC(O)=O)C(O)=O,0 +CC(C)OC(=O)C(C)=C,0 +COC1=C(C=CC(=C1)C=C)O,0 +CCCCCCCCCCC,0 +CC(=O)OC1=C(C=CC=C1)C(O)=O,0 +CCCCOC(=O)C1=C(C=CC=C1)N,0 +CC3=C(C2=C1C=CC=CC1=CC=C2C=C3)C,0 +NC(=O)C1=CN=CC=C1,0 +CC2(C)C3CCC1(CO1)C2C3,0 +BrC1=CC=CC=C1,0 +CCCCCCCCCCCCCC(O)=O,0 +NC(C#N)C(=N)C#N,0 +ClC2=NC1=CC=CC=C1C=C2,0 +OC1=CC(=C(C=C1)N=NC2=CC=C(C=C2)[N+]([O-])=O)O,0 +O=C4C=CC3=C2C=CC1=CC=CC=C1C2=CC=C3C4=O,0 +CC1=CC=C(C=C1)C(=O)C2=CC(=C(C(=C2)O)O)[N+]([O-])=O,0 +CN(C)C1=CC=C(C=C1)C4CC2(C)C(CCC2(O)C=CCO)C5CC=C3CC(=O)CCC3=C45,0 +CCCC(C1=C(C=C(C(=C1)C(C)(C)C)O)C)C2=C(C=C(C(=C2)C(C)(C)C)O)C,0 +CN(C)CCO,0 +OC1=C(C=C(C=C1)Cl)Cl,0 +OC(=O)C2=C1N=CC=CC1=CC=C2,0 +C1=CC=NC=C1,0 +ON=CC1=NC=CC=C1,0 +OCCOC1=C(C=C(C(=C1)Cl)Cl)Cl,0 +OCCO,0 +OS(=O)(=O)C1=C(C=C(C=C1)[N+]([O-])=O)[N+]([O-])=O,0 +OC1=C(C=C(C=C1)[N+]([O-])=O)[N+]([O-])=O,0 +CCN(CC)C(=O)CC1=CC=CC=C1,0 +OC1COC(O)(CN(CC(O)=O)N=O)C(O)C1O,0 +C[N+]1=CC=C(C=C1)C2=CC=[N+](C=C2)C,0 +COC4=C1C5=C(C(OC1=C3C2CCOC2OC3=C4)=O)C(OCC5)=O,0 +CC(C)CCCCCCCOC(=O)C1=C(C=CC=C1)C(=O)OCCCCCCCC(C)C,0 +CC(=O)OCC1=CC=CC=C1,0 +OC2=CC=C1[NH]C=CC1=C2,0 +CC(Br)Br,0 +COC(=O)C1=C(C)NC(=C(C1C2=C(C(=CC=C2)Cl)Cl)C(=O)OC(C)C)COC(N)=O,0 +OCC(CO)(CO)CO,0 +OC1=CC(=CC(=C1)Cl)Cl,0 +CC1=C(C=C(C=C1)N)Cl,0 +CCCCCCCCCCOC(=O)C(C)=C,0 +COC1=CC(=CC(=C1)OC2=C(C=C(C=C2)Cl)Cl)[N+]([O-])=O,0 +ClC1=CC=C(C=C1)NC(=O)NC2=CC(=C(C=C2)Cl)Cl,0 +C=CC1CCC=CC1,0 +NCCC1=C[NH]C2=CC=C(O)C=C12,0 +COC1=C(C=CC(=C1)C=O)O,0 +COP(=O)(OC)OC(=CCl)C1=C(C=C(C(=C1)Cl)Cl)Cl,0 +CC(C=O)=CC1=CC=CC=C1,0 +CC(C)C1=CC3=C(C=C1)C2=CC=CC(=C2C=C3)C,0 +OC1=CC=C(C=C1)C2(CCCCC2)C3=CC=C(C=C3)O,0 +COC(=CC(O)=O)C(=O)C(C)=C,0 +C=CC(=O)OCCOCCOC(=O)C=C,0 +C=CC(=O)OCCCCCCOC(=O)C=C,0 +OCC=O,0 +CN(C)C=O,0 +COC2=C1OC3=C(C(C1=C(C=C2)O)=O)C(=CC5=C3C4CCOC4O5)OC,0 +CC(C)CCCCCCOC(=O)C1=C(C=CC=C1)C(=O)OCCCCCCC(C)C,0 +C1COCCOCCOCCOCCOCCO1,0 +CC1CCCC(C)N1CCCC(O)(C2=CC=CC=C2)C3=NC=CC=C3,0 +CC(C)COC(=O)C1=C(C=CC=C1)C(=O)OCC(C)C,0 +CCCCCCCCCCCCCl,0 +CNC(=O)N(C1=CC=CC=C1)C2=CC=CC=C2,0 +CCCCCC(O)=O,0 +CCCCC(CC)COP(OCC(CC)CCCC)OCC(CC)CCCC,0 +OC2=NC1=CC=CC=C1C=C2,0 +OC1=C(C(=C(C=C1)Cl)Cl)Cl,0 +OCC1=CC=C(C=C1)Br,0 +CC1=NC=CC=C1,0 +COC1=C(C2=C(C=C1O)OC(=CC2=O)C3=CC=C(C=C3)O)O,0 +CC(C)NCC(O)COC1=C(C=CC=C1)OCC=C,0 +CCCCCC1=CC(=CC(=C1)O)O,0 +C=CC(=O)OCCCCCOC(=O)C=C,0 +CC(=O)C(C)=NO,0 +CCC1(CC(O)=O)OCCC2=C1[N](C3=CC=CC=C23)C,0 +COC3=C1C=COC1=NC4=C(O)C2=C(OCO2)C(=C34)CC=C(C)C,0 +COC3=C(C=C2C16CCN7CC5=CCOC4C(C1N(C2=C3)C(C4)=O)C5CC67)OC,0 +OC(=O)COC2=CC1=CC=CC=C1C=C2,0 +CCC=CC#N,0 +CC1=C(C=CC(=C1C)N)N,0 +OC1=C2C=CC3=CC=CC4=CC=C(C=N1)C2=C34,0 +CNCC1=CC=C(O1)CSCCNC(NS(C)(=O)=O)=NCC(O)C2=CC=C(C=C2)O,0 +CNNCC1=CC=C(C=C1)C(=O)NC(C)C,0 +CC1=CC=C(C=C1)N(CCCl)CCCl,0 +CN(C)S(=O)(=O)N(SC(F)(Cl)Cl)C1=CC=CC=C1,0 +OCCNCCO,0 +CC(C)(C)C1CCC2(CC1)CO2,0 +COC(F)(F)C(Cl)Cl,0 +OC2=C1N=CC=CC1=C(C=C2Cl)Cl,0 +CCCCC=O,0 +CC(=O)C=CC1=C(C)CCCC1(C)C,0 +CC1=C(C=C(C=C1)S(O)(=O)=O)C,0 +CCC2=C1OC(=CC1=CC=C2)C(O)CNC(C)(C)C,0 +CC(C)=CCCC(C)(OC(=O)C1=C(C=CC=C1)N)C=C,0 +CC4=C3N=C2C1=CC=CC=C1C=CC2=CC3=CC=C4,0 +ClCC1=C3C=CC4=CC=CC5=CC=C(C2=CC=CC=C12)C3=C45,0 +OC1=CC=C(C=C1)C3=COC2=C(C=CC(=C2)O)C3=O,0 +O=C1NC(=O)C(N1)(C2=CC=CC=C2)C3=CC=CC=C3,0 +CCCCCCOC(=O)C1=C(C=CC=C1)C(=O)OCCCCCC,0 +[NH]1C=CC=C1,0 +CCC1=C(C(=CC(=C1)N)C)CC2=C(C=C(C=C2C)N)CC,0 +OCC#N,0 +CC(=O)CC(C)=O,0 +OC(=O)CC1=C[NH]C2=CC=CC=C12,0 +O=C2CN(CCCN1CC(=O)NC(=O)C1)CC(=O)N2,0 +CC(C)C2=CC=C(C)C1=C(C=C(C)C1=C2)S(O)(=O)=O,0 +CC(=O)C1=C(C(=C(C(=C1C)[N+]([O-])=O)C(C)(C)C)[N+]([O-])=O)C,0 +ClCC1(CCl)C2CC(Cl)(Cl)C1(CCl)C(Cl)C2Cl,0 +ClC1=C(C(=C(C=C1)Cl)Cl)Cl,0 +COC1=C(C=CC=C1)O,0 +FC(F)(F)C1=CC=C(C=C1)CCl,0 +OC(=O)CCC1=CC=CC=C1,0 +COC4=CC2C3CC1=C(C(=C(C=C1)OC)O)C2(CCN3C)CC4=O,0 +OC2=C(C1=CC=CC=C1C=C2)N=O,0 +COC3=CC=C2C1=C(C(=NCC1)C)[NH]C2=C3,0 +CNC1=C(C=CC=C1)C(=O)OC,0 +OC(=O)CCCOC1=C(C=C(C=C1)Cl)Cl,0 +ClC(Cl)C(C1=CC=C(C=C1)Cl)C2=C(C=CC=C2)Cl,0 +CCCCC(CC)CO,0 +CC(C)=CCCC(C)(O)C=C,0 +CC(C)(C)C(Br)C(=O)NC1=CC=CC=C1,0 +OS(=O)(=O)C1=CC=C(C=C1)[N+]([O-])=O,0 +CS(=O)(=O)C1=CC=C(C=C1)Cl,0 +CCC2=C1[NH]C3=C(C1=CC=C2)CCOC3(CC)CC(O)=O,0 +CCCCOC(=O)CC(CC(=O)OCCCC)(OC(C)=O)C(=O)OCCCC,0 +CC(=O)C1(CCNCC1)C2=CC=CC=C2,0 +CCN(CC)C(=S)SSC(=S)N(CC)CC,0 +NC1=CC=C(C=C1)C(O)=O,0 +CC(C(O)=O)C1=CC(=CC=C1)C(=O)C2=CC=CC=C2,0 +ClC1=C(C=CC=C1)C=C,0 +CN(C)C(=N)N(C)C,0 +CC4=C(COC(=O)C1N3C(SC1(C)C)C(NC(=O)C(N)C2=CC=CC=C2)C3=O)OC(=O)O4,0 +N#CSCSC#N,0 +OC(=O)C1=C(C=CC(=C1)Cl)Cl,0 +CCCCC(CC)COC(=O)C=C,0 +OC(=O)CCCCC(O)=O,0 +BrCC(=O)C1=CC=C(C=C1)Br,0 +C2CCC1=C(C=CC=C1)C2,0 +CCC(C1=CC=CC=C1)=C(C2=CC=CC=C2)C3=CC=C(C=C3)OCCN(C)C,0 +CC(=C)C1CCC(=CC1)C=O,0 +OC(C(F)(F)F)C(F)(F)F,0 +CC(C)CC=O,0 +ClC1C=CC2C1C3(Cl)C(=C(Cl)C2(Cl)C3(Cl)Cl)Cl,0 +CC1(CO1)C=C,0 +CC(C)CCC(C)NC1=CC=C(C=C1)NC(C)CCC(C)C,0 +COC(C)=O,0 +CC(C)(C)N,0 +CNC,0 +CC1=CC(O)C2CC1C2(C)C,0 +CN(C)C(=O)NC1=CC=C(C=C1)Cl,0 +CCOP(=O)(OCC)OCC,0 +CC(OC1=C(C=C(C(=C1)Cl)Cl)Cl)C(O)=O,0 +NC1=NC(=O)N(C=C1)C2OC(COP(O)(O)=O)C(O)C2O,0 +CC(C)O,0 +CC1=CC(=O)CC(C)(C)C1,0 +CCCN(CCC)S(=O)(=O)C1=CC=C(C=C1)C(O)=O,0 +OC(=O)C1=C(C=CC=C1Cl)Cl,0 +CC1=CC=C(C=C1)C,0 +CCCO,0 +S1C=CC=C1,0 +O=S1(=O)CC=CC1,0 +NC1=C(C(=CC(=C1)[N+]([O-])=O)S(O)(=O)=O)O,0 +CC(=O)OC2C1OC(=O)C(OC(C)=O)C1OC2=O,0 +ClCC1=CC=C(C=C1)C#N,0 +OC(=O)CN(CCN(CC(O)=O)CC(O)=O)CC(O)=O,0 +CCCCCCCCC=C,0 +ClC2=C(C=C1OC3=C(OC1=C2)C=C(Cl)C(=C3)Cl)Cl,0 +OC1=CC=C(C=C1)C2(NC(=O)NC2=O)C3=CC=CC=C3,0 +C1=CC=C(C=C1)C2=C(C=CC=C2)C3=CC=CC=C3,0 +CC1=CC=C(C=C1)CCl,0 +O=C([N]1C=CN=C1)[N]2C=CN=C2,0 +CC(=O)CC(=O)NC1=CC=CC=C1,0 +[O-][N+](=O)C1=CC=C(C=C1)[N]2N=C(N=[N+]2C3=CC=C(C=C3)I)C4=CC=CC=C4,0 +CCC(C)C1=C(C=CC=C1)O,0 +C1CN2CCN1CC2,0 +COP(=O)(OC)OC(=CBr)C1=C(C=C(C=C1)Cl)Cl,0 +CC(O)COCC(C)O,0 +COP(=S)(OC)OC1=CC(=C(C=C1)[N+]([O-])=O)C,0 +CCCCCCCCCCCC(O)=O,0 +NC(=O)C1=CC=CC=C1,0 +CC(=O)CCl,0 +NC(CC1=CC=C(C=C1)F)C(O)=O,0 +COC1=CC=C(C=C1)C=CC(=O)C2=CC=CC=C2,0 +ClC2=C1C=CC=CC1=CN=N2,0 +CCC1=CC=CC=C1,0 +COC1=C(C=CC(=C1)C=CC(=O)CC(=O)C=CC2=CC(=C(C=C2)O)OC)O,0 +CC(=O)NNC(=O)C1=NC=CC=C1,0 +COC2=C(C=C1[NH]C=C(C1=C2)CCNC(C)=O)O,0 +BrCC(Br)C1CCC(Br)C(Br)C1,0 +NCCC#N,0 +OC1=CC=C(C=C1)CCC(=O)C2=C(C=C(C=C2O)O)O,0 +CC(Cl)Cl,0 +OC2=C1C=CC=CC1=NC3=CC=CC=C23,0 +OC4C(O)C3=C(C=C2C1=CC=CC=C1C=CC2=N3)C5=C4C=CC=C5,0 +CCC1=NC=CC(=C1)C(N)=S,0 +CCCC,0 +OC(=O)C=CC1=CC=C(C=C1)Cl,0 +CCCCN,0 +CCC(C)(C)C1=CC(=C(C(=C1)N3NC2=C(C=CC=C2)N3)O)C(C)(C)CC,0 +NC1=CC=C(C=C1)O,0 +OC1CCCCC1,0 +[O-][N+](=O)C1=CC(=CC=C1)C=CC(=O)C2=CC=CC=C2,0 +COP(C)(=O)OC,0 +CCCCCCCCCCCCO,0 +ClC1=C(C2=C(C(=C1Cl)Cl)C(=O)OC2=O)Cl,0 +S=C1SC=C(S1)C2=CC=CC=C2,0 +OC(=O)C1=C(N=CC=C1)NC2=CC(=CC=C2)C(F)(F)F,0 +CC1CCCC1,0 +OC2CC13OC1(C2)C=CC=C3,0 +CC(C)(C)OC(=O)C=C,0 +CC1=CSC=C1,0 +COP(=O)(OC)C(OC(=O)CCl)C(Cl)(Cl)Cl,0 +OCC1=CC=C(C=C1)Cl,0 +ClC1=C(Cl)C(=O)C(Cl)(Cl)C1=O,0 +CCCCCCCCOP(=O)(OCCCCCCCC)OCCCCCCCC,0 +CCC1=CC=CO1,0 +OC4=C2C1=CC=CC=C1C=CC2=C3C=CC=CC3=C4,0 +CC1=C(C=CC(=C1)S(O)(=O)=O)N,0 +CCN(CC)C(=O)C1=CC(=CC=C1)C,0 +CC(C(O)=O)C1=CC3=C(C=C1)C2=CC(=CC=C2[NH]3)Cl,0 +OCC(O)C(O)C(OC1OC(CO)C(O)C(O)C1O)C(O)CO,0 +CCN,0 +NS(=O)(=O)C2=C1N=CC=CC1=CC=C2,0 +CC1=C(C(=CC=C1)NC2=NC(=NC(=C2)Cl)SCC(O)=O)C,0 +CC1=C(C=C(C(=C1)C)C)C,0 +CCCCOC(=O)CCCCCCCCC(=O)OCCCC,0 +CCCCCCC1=C(C=C(C=C1)O)O,0 +CC(O)CN(CC(C)O)CC(C)O,0 +OC(=O)C2=N[N](CC1=C(C=C(C=C1)Cl)Cl)C3=CC=CC=C23,0 +OC1=C(C=C(C=C1Br)Br)Br,0 +NC2=NC=C1N=C[NH]C1=N2,0 +N(C1=CC=CC=C1)C2=CC=CC=C2,0 +CCOC(=O)C(C)(C)OC1=CC=C(C=C1)Cl,0 +OCCCCO,0 +CCCCOP(=O)(OCCCC)OC1=CC=CC=C1,0 +NC2=C1C(C4=C(C(C1=C(C=C2S(O)(=O)=O)NC3CCCCC3)=O)C=CC=C4)=O,0 +NC(=O)CBr,0 +[O-][N+](=NC1=CC(=C(C=C1)Cl)Cl)C2=CC(=C(C=C2)Cl)Cl,0 +FC(F)C(F)(F)F,0 +CCC1=CC(=C(C(=C1)C(C)(C)C)O)C(C)(C)C,0 +O=C1OC4=C3C2=C1C=CC=C2C=CC3=CC=C4,0 +NC(=O)CI,0 +CC1=C(SSC1=S)C2=NC=CN=C2,0 +NC1=C(C(=C(C=C1)Cl)Cl)Cl,0 +CC1=C(C(=C(C(=C1[N+]([O-])=O)C)[N+]([O-])=O)C(C)(C)C)[N+]([O-])=O,0 +O=C2C1=C(C=CC=C1)CCC3=C2C=CC=C3,0 +CC1=CC(=C(C=C1)C)C,0 +ClC(=O)OCC1=CC=CC=C1,0 +OC2=C1C(C5=C(OC1=CC=C2)C3=C(OC4OCCC34)C=C5O)=O,0 +OC(=O)CC(Cl)C(O)=O,0 +CC1=CCC(=O)O1,0 +ClC2=C1C=CC=CC1=C(N=N2)Cl,0 +OCC4=C2C=CC=C3C1=CC=CC=C1C(=C23)C=C4,0 +CC1=C(C(=CC(=C1)[N+]([O-])=O)[N+]([O-])=O)C,0 +C1COCCO1,0 +CC1=CC=C(O1)C,0 +OCC1=CC=C(C=C1)O,0 +O[N+]([O-])=C2C1=C(C=CC=C1)C(=O)C3=C2C=CC=C3,0 +CC(=O)OC3CC2C1(C)CCCC(C)(C)C1CCC2(C)C4(O)CC(=C(C=O)C34C)C=O,0 +COC2=C(C(=C1C(OCC1=C2C)=O)O)CC=C(C)CCC(O)=O,0 +CC(C)C(=O)NC1=CC=CC=C1,0 +OC(=O)CC1=CC=C(C=C1)Cl,0 +C2=CC1=CC=NC=C1C=C2,0 +OC1=C(C4=C2C(=C1)C(=O)OC3=C2C(=CC(=C3O)O)C(=O)O4)O,0 +OC1=C(C(=CC(=C1Cl)Cl)Cl)Cl,0 +CC1=CC=CC=C1,0 +ClC1=C(C(=CC=C1)Cl)C#N,0 +CC(C)OC1=CC2=C(C=C1)C(C(=CO2)C3=CC=CC=C3)=O,0 +[O-][N+]2=C1C=CC=CC1=CC=C2,0 +CCN(CC)CC1=C(C=CC(=C1)NC3=C2C=CC(=CC2=NC=C3)Cl)O,0 +C1CCC(CC1)NSC3=NC2=CC=CC=C2S3,0 +CCN(N=O)C1=CC=CC=C1,0 +O=C1CC(=O)C1=O,0 +CC(C)(C1=CC=C(C=C1)O)C2=CC=C(C=C2)O,0 +CC(=O)NC1=CC=C(C=C1)C(=O)C=CC2=CC=CC=C2,0 +CC(=O)OO,0 +CC(=O)C1=CC=C(C=C1)S(=O)(=O)NC(=O)NC2CCCCC2,0 +CC(C)(C)O,0 +CC(C)(OC1=CC=C(C=C1)C2CC2(Cl)Cl)C(O)=O,0 +CC1=CC(=CC=C1)[N+]([O-])=O,0 +CCC=[N+](O)[O-],0 +C1OCOCO1,0 +CCC3=C2C1=CC=CC=C1C=CC2=C(C4=CC=CC=C34)C,0 +CCOC(C)=O,0 +CCOC1=CC=C(C=C1)NC(N)=O,0 +CC(C)=O,0 +CC1=CC=C(C=C1)Cl,0 +CCCCC(CC)COCCC#N,0 +ClCC1=CC=C(C=C1)Cl,0 +OC1=C(C=CC=C1)C(=O)OC2=CC=CC=C2,0 +ClC(=C)C#N,0 +CCOC(=O)OC(=O)OCC,0 +CC(CCN(C)C)N(C)C,0 +CC1=C(C)C(=O)C(=C(C)C1=O)C,0 +C=CCN1C(=O)N(CC=C)C(=O)N(CC=C)C1=O,0 +OC(=O)C1CC2=C(CN1)[NH]C3=CC=CC=C23,0 +CCCCCN,0 +[O-][N+](=O)OCC(CO[N+]([O-])=O)(CO[N+]([O-])=O)CO[N+]([O-])=O,0 +COC1=C(C5=C(C(=C1)O)C(=O)C2=C(C3=C(C=C2OC)OC4OCCC34)O5)OC,0 +OC(=O)C1=C(C=CC=C1)Cl,0 +O=C1CCCCC1,0 +CC1=CC=C(C=C1)OP(=O)(OC2=CC(=CC=C2)C)OC3=CC(=CC=C3)C,0 +OC(=O)C1=C(C=CC=C1)NC2=C(C=CC(=C2)Cl)C(O)=O,0 +CCCCCC(N)=O,0 +CCCCCCCCCCCC(=O)OCCS(O)(=O)=O,0 +OC1=C(C=C(C=C1Cl)Cl)SC2=C(C(=CC(=C2)Cl)Cl)O,0 +[O-][N+]4=C2C=CC1=CC=CC=C1C2=CC5=C3C=CC=CC3=CC=C45,0 +ClC1=CC=C(C=C1)S(=O)(=O)C2=C(C=C(C(=C2)Cl)Cl)Cl,0 +CC(OP(C)(Cl)=O)C(C)(C)C,0 +ClC1=CC(=CC(=C1)Cl)N2C(=O)CCC2=O,0 +NCC1=CC(=CC=C1)CN,0 +OC(=O)COC1=C(C(=C(C=C1)C(=O)C2=CC=CS2)Cl)Cl,0 +O=C1C5=C4C3=C2C1=CC=CC2=CC=C3C=CC4=CC=C5,0 +CC1=NC=CN=C1,0 +CCC(O)CN,0 +CC(=O)C3C(=O)C=C2OC1=C(C(=C(C(=C1C(C)=O)O)C)O)C2(C)C3=O,0 +O=C1CSC(=S)N1,0 +FC2=CC1=CC=CC=C1N=C2,0 +OC1=CC=C(C=C1)C3=CC(=O)C2=C(C=C(C=C2O)O)O3,0 +OC(=O)C1=CC(=C(C(=C1)O)O)O,0 +C=COC(=O)C=C,0 +CC(CCl)OP(=O)(OC(C)CCl)OC(C)CCl,0 +CC1(C)C2CCC1(C)C(=O)C2=O,0 +NC1=CC=C(C=C1)C(=O)OCCCOC(=O)C2=CC=C(C=C2)N,0 +COC1=C(C=CC(=C1)C=CC)O,0 +CC(C)CC(NC(=O)COC1=C(C=C(C=C1)Cl)Cl)C(O)=O,0 +OC(=O)C1=CC(=CC(=C1)Cl)Cl,0 +CCCCOC(C)=O,0 +C2CCC1CCCCC1C2,0 +CCC1=CC=C(C=C1)[N+]([O-])=O,0 +CC1=C(C(=C(C(=C1Br)Br)Br)Br)Br,0 +C[N+](C)(C)CC1=CC=CC=C1,0 +CC#N,0 +CC(C)(C)CC(C)(C)C1=CC=C(C=C1)OCCOCC[N+](C)(C)CC2=CC=CC=C2,0 +CCCCCCCCCCCCCCCCCC[N+](C)(C)CC1=CC=CC=C1,0 +CCCCC(CC)COS(O)(=O)=O,0 +OCCN4CCN(CCCN2C1=C(C=CC=C1)SC3=C2C=C(C=C3)C(F)(F)F)CC4,0 +OC(COC2=C1C(C=C(OC1=CC=C2)C(O)=O)=O)COC4=C3C(C=C(OC3=CC=C4)C(O)=O)=O,0 +OC2=C(C1=CC=C(C=C1C=C2)S(O)(=O)=O)N=NC3=CC=CC=C3,0 +OC2=C(C1=C(C=C(C=C1C=C2)S(O)(=O)=O)S(O)(=O)=O)N=NC3=CC=CC=C3,0 +CN(C)CCN(CC1=CC=CC=C1)C2=CC=CC=C2,0 +CC(C)C1CCC(C)CC1O,0 +COC(=O)C(C1CCCCN1)C2=CC=CC=C2,0 +CC(CCC1=CC=CC=C1)NCC(O)C2=CC(=C(C=C2)O)C(N)=O,0 +NC2=C1C(=C(C(=CC1=CC(=C2)S(O)(=O)=O)S(O)(=O)=O)N=NC3=CC=CC=C3)O,0 +CC3=C(OC1=C(C=CC=C1C(=O)OCCN2CCCCC2)C3=O)C4=CC=CC=C4,0 +CC(CN2C1=C(C=CC=C1)SC3=C2C=CC=C3)N(C)C,0 +CC(C)CCCC(C)CCCC(C)CCCC2(C)CCC1=C(C(=C(C(=C1C)O)C)C)O2,0 +C[N+](C)(C)CC(O)=O,0 +CON,0 +OC2=C(C1=CC=CC=C1C=C2)N=NC3=CC=C(C=C3)S(O)(=O)=O,0 +CC1=NC(=C(C=N1)C[N+]2=CSC(=C2C)CCO)N,0 +OC1=NC(=NC(=N1)O)O,0 +OC2=C1[N+](=CC=CC1=CC=C2)[O-],0 +OC(=O)C1C(C(O)=O)C2(Cl)C(=C(Cl)C1(Cl)C2(Cl)Cl)Cl,0 +OC2=C1C=CC=CC1=CN=N2,0 +C(NC2=C1[NH]C=NC1=NC=N2)C3=CC=CC=C3,0 +CC=C1CC(C)C(C)(O)C(=O)OCC2=CCN3CCC(OC1=O)C23,0 +NC2=NC1=N[NH]N=C1C(=N2)O,0 +CCCCCCCCCCCCCCCC(=O)OCC(O)C1=C(C(=C(O1)O)O)O,0 +CCCCCC(CC)OC(=O)C1=CC(=CC=C1)C(=O)OC(CC)CCCCC,0 +OC2=C1C=CC=CC1=C(N=N2)O,0 +SC2=NC1=CC=CC=C1S2,0 +OCC(O)C(O)CO,0 +CC2(C)C3CC1OC1(C)C2C3,0 +CC(=O)C1=C(O)[N]5C(=C1O)C2C(CC4=C3C2=C[NH]C3=CC=C4)C5(C)C,0 +CC(C)CC(=O)OC4CC1(OC(C)=O)C(OC2C(O)C(OC(C)=O)C1(C)C23CO3)C=C4C,0 +CC(=O)OCC12CCC(=CC1OC3C(O)C(OC(C)=O)C2(C)C34CO4)C,0 +CC4CC3OC1C(O)C(OC(C)=O)C(C)(C12CO2)C3(CO)C(=O)C4=O,0 +CC4CC3OC1C(O)C(O)C(C)(C12CO2)C3(CO)C(=O)C4=O,0 +NC1=NN=C(S1)S,0 +ClCC1C(CCl)C2(Cl)C(=C(Cl)C1(Cl)C2(Cl)Cl)Cl,0 +ClC1=CC3=C(C=C1)N2C=NNC2=CN=C3C4=CC=CC=C4,0 +C=CC1CC2CC1C=C2,0 +ClC3=C(Cl)C4(Cl)C2C1CC(C=C1)C2C3(Cl)C4(Cl)Cl,0 +CC1C(=O)OC2CCN3CC=C(COC(=O)C(C)(O)C1(C)O)C23,0 +OC2CC(O)(CC(OC(=O)C=CC1=CC(=C(C=C1)O)O)C2O)C(O)=O,0 +CN(C=NC=NC1=C(C=C(C=C1)C)C)C2=C(C=C(C=C2)C)C,0 +NC3=NC(=C2N=C(O)[N](C1OC(CO)C(O)C1O)C2=N3)O,0 +CC1(CO)C(O)CCC2(C)C1CCC3CC4CC23CCC4(O)CO,0 +CNC(=N)N[N+]([O-])=O,0 +CC(=O)OC4(CCC5C3C=C(Cl)C2=CC(=O)C1CC1C2(C)C3CCC45C)C(C)=O,0 +CC12CCC(CC1)C(C)(C)O2,0 +CC12CCCC(C)(C1CCC34CC(=C)C(O)(CCC23)C4)C(O)=O,0 +CNC3=C1CC(=O)C(=CC=C1C2=C(C(=C(C=C2CC3)OC)OC)OC)OC,0 +CC34CC(O)C1C(CCC2=CC(=O)C=CC12C)C3CCC4(O)C(O)C=O,0 +CC34CCC1C(CCC2=C1C=CC(=C2)O)C3CC(O)C4O,0 +CC34CCC1C(CCC2=C1C=CC(=C2)O)C3CCC4O,0 +CC2=CN(C1CC(O)C(CO)O1)C(=O)NC2=O,0 +OC1=NC(=C(C=N1)F)O,0 +CC(=O)OC3(CCC4C2CCC1=C(CCC(=O)C1)C2CCC34C)C#C,0 +CC1CCC6(OC1)OC5CC4C3CC=C2CC(O)CCC2(C)C3CCC4(C)C5C6C,0 +CC4CC3OC1C(O)CC(C)(C12CO2)C3(CO)C(=O)C4=O,0 +OC3=C(C=C2C1C4=C(OCC1(CC2=C3)O)C(=C(O)C=C4)O)O,0 +COC1=C(C(=CC(=C1)C3C2C(COC2=O)C(O)C5=C3C=C4OCOC4=C5)OC)OC,0 +CC2OC=C1C(=O)C(C(O)=O)C(=O)C(=C1C2C)C,0 +NC2=C1C(=NN=C(C1=CC=C2)O)O,0 +CC34CCC1C(CC=C2CC(O)CCC12C)C3CCC4=O,0 +CN1CCCC1C2=CN=CC=C2,0 +OCC1OC(CC1O)N2C=C(I)C(=O)NC2=O,0 +CC(C)C12CC1C(C)C(=O)C2,0 +CC(N)(CC1=CC(=C(C=C1)O)O)C(O)=O,0 +CC1=NC(=NC(=C1)O)S,0 +CC34CCC1C(CCC2=C1C=CC(=C2)O)C3CCC4(O)C#C,0 +CC(=O)C3CCC4C2CC=C1CC(=O)CCC1(C)C2CCC34C,0 +NC2=C1N=C[N](C1=NC=N2)C3OC(CO)C(O)C3O,0 +OC(=O)CCCCC1SCC2NC(=O)NC12,0 +NS(=O)(=O)C1=C(C=C2C(=C1)S(NC=N2)(=O)=O)Cl,0 +SC2=NC1=CC=CC=C1[NH]2,0 +OCC1OC(CC1O)N2C=C(Br)C(=O)NC2=O,0 +NC2=NC1=NC=C(N=C1C(=N2)O)CNC3=CC=C(C=C3)C(=O)NC(CCC(O)=O)C(O)=O,0 +CC1=C(N=C(N=C1)S)O,0 +CC=CC(=O)OC2CC3OC1=CC(C)C(=O)CC1(C)C2(C)C34CO4,0 +CC(C)CCCC(C)C1CCC2C(CCCC12C)=CC=C3CC(O)CCC3=C,0 +NC(CC1=CC=CC=C1)C(O)=O,0 +CC34CCC1C(CC=C2CC(=O)CCC12)C3CCC4(O)C#C,0 +CC(=O)OC3(CCC4C2CC(=C1CC(=O)CCC1(C)C2CCC34C)C)C(C)=O,0 +CC14C(O)C=CC5(OC1=O)C2CCC3(O)CC2(CC3=C)C(C45)C(O)=O,0 +C2C=CC3C1CC(C=C1)C23,0 +CC1=CCC2CC1C2(C)C,0 +CC6CCC5C(C)C3C(CC4C2CC=C1CC(O)CCC1(C)C2CCC34C)N5C6,0 +CC(CCC(O)=O)C3CCC4C2C(O)CC1CC(O)CCC1(C)C2CC(O)C34C,0 +[O-][N+](=O)OC1COC2C(COC12)O[N+]([O-])=O,0 +CC2=CCCC(=C)C1CC(C)(C)C1CC2,0 +CC1=C(N=C(N=N1)O)O,0 +OCC1OC(CC1O)N2C=CC(=O)NC2=O,0 +NC2=C1N=C[N](C1=NC=N2)C3CC(O)C(CO)O3,0 +CCCC(=O)OCC,0 +CC(=O)C1=CC=NC=C1,0 +ClC1=NC(=CC=C1)Cl,0 +CC(O)CO,0 +CC(C)CO,0 +CC1CCC(=O)C1=O,0 +CC1=CC(=O)OC2=C1C=CC(=C2)O,0 +CCN(CC)C1=CC=CC=C1,0 +CCCCOC(=O)C(C)=C,0 +CN(C)C(=O)OC1=C[N+](=CC=C1)C,0 +CCC(CO)NCCNC(CC)CO,0 +CC12CCC(CC1O2)C=C,0 +NC2=C1C=CC=CC1=CC=C2O,0 +CN1CCC(C1)CN3C2=C(C=CC=C2)SC4=C3C=CC=C4,0 +CCCCCC(=O)OC3(CCC4C2CCC1=C(CCC(=O)C1)C2CCC34C)C(C)=O,0 +O=C1NS(=O)(=O)C2=C1C=CC=C2,0 +OC2=C(C=C1C=C(C=CC1=C2)S(O)(=O)=O)S(O)(=O)=O,0 +NC1=CC=CC=C1,0 +COC1=C(C4=C(C=C1Cl)C3(C(C25SSC(C(N2C3N4C)=O)(C)N(C5=O)C)O)O)OC,0 +CCCCCCCCCCCCOS(O)(=O)=O,0 +OC(=O)CC1=C(C=CC=C1)NC2=C(C=CC=C2Cl)Cl,0 +NC2=C1N=C[N](C1=NC(=N2)O)C3OC(CO)C(O)C3O,0 +COC1=C(C(=CC(=C1)CC2NCCC3=C2C=C(C(=C3)O)O)OC)OC,0 +OC(=O)C2=NN(C1=CC=C(C=C1)S(O)(=O)=O)C(=O)C2N=NC3=CC=C(C=C3)S(O)(=O)=O,0 +CN(C)C4C3C(O)C2C(C(=O)C1=C(C=CC=C1O)C2(C)O)C(=O)C3(O)C(=O)C(C(N)=O)C4=O,0 +CCNC1=NC(=NC(=N1)O)NC(C)C,0 +ON1CN(Cl)CN(Cl)C1,0 +C[N+]1(C)CCOCC1,0 +ClC1=CC=C(C=C1)COC(C[N]2C=CN=C2)C3=C(C=C(C=C3)Cl)Cl,0 +O[N]1N=NC2=CC=CC=C12,0 +CN2CCN=C(C1=CC=CC=C1)C3=C2C=CC(=C3)Cl,0 +CC(CCC(O)=O)C3CCC4C2CCC1CC(=O)CCC1(C)C2CC(=O)C34C,0 +NC(CSCC1=CC=CC=C1)C(O)=O,0 +CCNC(=O)CCC(N)C(O)=O,0 +CCC3CN2CCC1=C(C=C(C(=C1)OC)OC)C2CC3CC4NCCC5=C4C=C(C(=C5)OC)OC,0 +NC1=CC(=C(C=C1)Cl)C(F)(F)F,0 +CCN(CC)CCCN(C2CC1=C(C=CC=C1)C2)C3=CC=CC=C3,0 +OC1C(O)C(OC1COP(O)(O)=O)N2C=CC(=O)NC2=O,0 +NCCC1=C[NH]C2=CC=CC=C12,0 +CCCC(=O)NC1=CC(=C(C=C1)OCC(O)CNC(C)C)C(C)=O,0 +FC1=CC=C(C=C1)CCl,0 +CCCC(=O)NC2=C1N=C[N](C1=NC=N2)C4OC3COP(O)(=O)OC3C4OC(=O)CCC,0 +FC1=CN=CC=C1,0 +CCCCCCC(=O)OC3(CCC4C2CCC1=CC(=O)CCC1C2CCC34C)C#C,0 +OCC1OC(C(O)C1O)[N]3C=NC4=C(NCC2=CC=C(C=C2)[N+]([O-])=O)N=CN=C34,0 +OCC1OC(CC1O)N2C=C(C=O)C(=O)NC2=O,0 +OC1C(O)C(OC1COP(O)(O)=O)[N]2C=NC3=C(O)N=CN=C23,0 +OC2=C1C=CC=CC1=NC=N2,0 +CCC5=C(CC1NCCC2=C1C=C(C(=C2)OC)OC)CC3N(CCC4=C3C=C(C(=C4)OC)OC)C5,0 +CC(C)C3=CC2=CCC1C(C)(CCCC1(C)C(O)=O)C2CC3,0 +OC1=CC2=C(C=C1)C4(C3=C(O2)C=C(O)C=C3)OC(=O)C5=C4C=CC=C5,0 +OC2=CC(=C1C=C(O)C(=[O+]C1=C2)C3=CC(=C(C(=C3)O)O)O)O,0 +CCCCCCC(O)CC=CCCCCCCCC(O)=O,0 +C[N+]1=CC(=CC=C1)C(O)=O,0 +OC(=O)C1=C(C=CC=C1)O,0 +NC2=NC1=CC=C(C=C1[NH]2)Cl,0 +CCCOC(C(=O)OC1CCN(C)CC1)(C2=CC=CC=C2)C3=CC=CC=C3,0 +NC3=NC(=C2N=C[N](C1OC(COP(O)(O)=O)C(O)C1O)C2=N3)O,0 +CNC(=O)OC1=CC2=C(C=C1)N(C)C3N(C)CCC23C,0 +CC(C)CCCC(C)C3CCC4C2CC=C1CCCCC1(C)C2CCC34C,0 +CC4CC2(C)C(CCC3C1CCC(O)C1(C)CCC23)CC4=O,0 +CC1=C(C(=C(C=N1)CO)CO)O,0 +CC1=CC(=C(C=C1)N=NC3=C2C=CC=CC2=CC(=C3O)C(O)=O)S(O)(=O)=O,0 +CN,0 +CC1=C(C(=CC=C1)OCC(O)CNC(C)(C)C)C,0 +CN[N+]([O-])=O,0 +ClC4=C(Cl)C5(Cl)C3C1CC(C2OC12)C3C4(Cl)C5(Cl)Cl,0 +CC(C)CC(NC(=O)C(CC1=CC=CC=C1)NC(=O)CNC(=O)CN)C(O)=O,0 +CC1=NCCC2=C1[NH]C3=CC(=CC=C23)O,0 +CC(C)CCCC(C)C3CCC4C2CC=C1CC(CCC1(C)C2CCC34C)OC(C)=O,0 +CNCC(O)C1=CC(=CC=C1)O,0 +NC1=NC=N[NH]1,0 +NC1=NC(=O)N(C=C1I)C2CC(O)C(CO)O2,0 +NC(CC1=CC(=C(C=C1)O)[N+]([O-])=O)C(O)=O,0 +COC1=CC=C(C=C1)CN(CCN(C)C)C2=NC=CC=N2,0 +CN(C)C4C3CC2C(C(=O)C1=C(C=CC=C1O)C2(C)O)C(=O)C3(O)C(=O)C(C(N)=O)C4=O,0 +COC1=CC=C2C(=CC1=O)C(CCC3=C2C(=C(C(=C3)OC)OC)OC)NC(C)=O,0 +CN1C2CC(CC1C3OC23)OC(=O)C(CO)C4=CC=CC=C4,0 +CNC(C=[N+](O)[O-])=NCCSCC1=CC=C(O1)CN(C)C,0 +OCC1OC(C(O)C1O)N2C=CC(=N)NC2=O,0 +OC1=NC(=NC=N1)O,0 +CC2(C)C1CCC(C1)C2=C,0 +CCCCCCCCCCCCOCCOCCOCCOCCOCCOCCOCCO,0 +OCC1=CC(C(O)C1O)N2C=CC(=N)NC2=O,0 +O=C1NC(=S)NC(=O)C1C(=O)NC2=CC=CC=C2,0 -- cgit v1.2.3 From eeb0b6df2dbdae29ccf3f4ccd923002e0ed65506 Mon Sep 17 00:00:00 2001 From: mguetlein Date: Thu, 13 Jan 2011 15:18:45 +0100 Subject: adjust to new wrapper, replace activerecord with datamapper (remove activerecord code), is_classification to feature_type --- db/migrate/000_drop_validations.rb | 0 db/migrate/001_init_validation.rb | 0 db/migrate/002_init_reports.rb | 4 +- .../.CatalogManager.properties.example | 0 docbook-xsl-1.76.1/.urilist | 0 example.rb | 56 +++-- lib/active_record_setup.rb | 19 +- lib/ot_predictions.rb | 136 +++++++---- lib/predictions.rb | 51 ++-- lib/test_util.rb | 4 +- lib/validation_db.rb | 65 ++++- nightly/nightly.rb | 8 +- reach_reports/reach_application.rb | 4 +- reach_reports/reach_persistance.rb | 44 +--- reach_reports/reach_service.rb | 59 ++--- reach_reports/reach_test.rb | 12 +- report/environment.rb | 7 +- report/report_application.rb | 4 +- report/report_content.rb | 6 +- report/report_factory.rb | 23 +- report/report_persistance.rb | 109 +++++++-- report/report_test.rb | 13 +- report/validation_access.rb | 58 +++-- report/validation_data.rb | 72 +++--- report/xml_report.rb | 4 +- report/xml_report_util.rb | 9 +- test/test_application.rb | 3 +- test/test_examples.rb | 114 ++++++--- test/test_examples_util.rb | 96 ++++++-- validation/validation_application.rb | 161 ++++++++----- validation/validation_format.rb | 6 +- validation/validation_service.rb | 265 ++++++++++++++------- validation/validation_test.rb | 49 +++- 33 files changed, 959 insertions(+), 502 deletions(-) mode change 100644 => 100755 db/migrate/000_drop_validations.rb mode change 100644 => 100755 db/migrate/001_init_validation.rb mode change 100644 => 100755 db/migrate/002_init_reports.rb mode change 100644 => 100755 docbook-xsl-1.76.1/.CatalogManager.properties.example mode change 100644 => 100755 docbook-xsl-1.76.1/.urilist mode change 100644 => 100755 example.rb mode change 100644 => 100755 lib/active_record_setup.rb mode change 100644 => 100755 lib/ot_predictions.rb mode change 100644 => 100755 lib/predictions.rb mode change 100644 => 100755 lib/test_util.rb mode change 100644 => 100755 lib/validation_db.rb mode change 100644 => 100755 nightly/nightly.rb mode change 100644 => 100755 reach_reports/reach_application.rb mode change 100644 => 100755 reach_reports/reach_persistance.rb mode change 100644 => 100755 reach_reports/reach_service.rb mode change 100644 => 100755 reach_reports/reach_test.rb mode change 100644 => 100755 report/environment.rb mode change 100644 => 100755 report/report_application.rb mode change 100644 => 100755 report/report_content.rb mode change 100644 => 100755 report/report_factory.rb mode change 100644 => 100755 report/report_persistance.rb mode change 100644 => 100755 report/report_test.rb mode change 100644 => 100755 report/validation_access.rb mode change 100644 => 100755 report/validation_data.rb mode change 100644 => 100755 report/xml_report.rb mode change 100644 => 100755 report/xml_report_util.rb mode change 100644 => 100755 test/test_application.rb mode change 100644 => 100755 test/test_examples.rb mode change 100644 => 100755 test/test_examples_util.rb mode change 100644 => 100755 validation/validation_application.rb mode change 100644 => 100755 validation/validation_format.rb mode change 100644 => 100755 validation/validation_service.rb mode change 100644 => 100755 validation/validation_test.rb diff --git a/db/migrate/000_drop_validations.rb b/db/migrate/000_drop_validations.rb old mode 100644 new mode 100755 diff --git a/db/migrate/001_init_validation.rb b/db/migrate/001_init_validation.rb old mode 100644 new mode 100755 diff --git a/db/migrate/002_init_reports.rb b/db/migrate/002_init_reports.rb old mode 100644 new mode 100755 index 8029223..dcf44a1 --- a/db/migrate/002_init_reports.rb +++ b/db/migrate/002_init_reports.rb @@ -22,9 +22,9 @@ class InitReports < ActiveRecord::Migration def self.down drop_table :report_datum if table_exists? :report_datum - if @@config[:reports] and @@config[:reports][:report_dir] + if CONFIG[:reports] and CONFIG[:reports][:report_dir] ["validation", "crossvalidation", "algorithm_comparison"].each do |t| - dir = File.join(@@config[:reports][:report_dir],t) + dir = File.join(CONFIG[:reports][:report_dir],t) if File.exist?(dir) puts "deleting dir "+dir.to_s FileUtils.rm_rf(dir) diff --git a/docbook-xsl-1.76.1/.CatalogManager.properties.example b/docbook-xsl-1.76.1/.CatalogManager.properties.example old mode 100644 new mode 100755 diff --git a/docbook-xsl-1.76.1/.urilist b/docbook-xsl-1.76.1/.urilist old mode 100644 new mode 100755 diff --git a/example.rb b/example.rb old mode 100644 new mode 100755 index 3562dd0..1b4ee98 --- a/example.rb +++ b/example.rb @@ -5,15 +5,16 @@ class Example @@file=File.new("data/hamster_carcinogenicity.yaml","r") @@file_type="text/x-yaml" - @@model=File.join @@config[:services]["opentox-model"],"1" - @@feature= URI.encode("http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB)") - @@predicted_feature= URI.encode("http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB)_lazar_classification") - @@alg = File.join @@config[:services]["opentox-algorithm"],"lazar" - @@alg_params = "feature_generation_uri="+File.join(@@config[:services]["opentox-algorithm"],"fminer") - @@data=File.join @@config[:services]["opentox-dataset"],"1" - @@train_data=File.join @@config[:services]["opentox-dataset"],"2" - @@test_data=File.join @@config[:services]["opentox-dataset"],"3" - @@prediction_data=File.join @@config[:services]["opentox-dataset"],"5" + @@model=File.join CONFIG[:services]["opentox-model"],"1" + #@@feature= URI.encode("http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB)") + @@feature= File.join CONFIG[:services]["opentox-dataset"],"1/feature/hamster_carcinogenicity" + #@@predicted_feature= URI.encode("http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB)_lazar_classification") + @@alg = File.join CONFIG[:services]["opentox-algorithm"],"lazar" + @@alg_params = "feature_generation_uri="+File.join(CONFIG[:services]["opentox-algorithm"],"fminer/bbrc") + @@data=File.join CONFIG[:services]["opentox-dataset"],"1" + @@train_data=File.join CONFIG[:services]["opentox-dataset"],"2" + @@test_data=File.join CONFIG[:services]["opentox-dataset"],"3" + @@prediction_data=File.join CONFIG[:services]["opentox-dataset"],"5" @@css_file="http://apps.ideaconsult.net:8080/ToxPredict/style/global.css" @@summary="" @@ -28,7 +29,7 @@ class Example end file.close - sub = { "validation_service" => @@config[:services]["opentox-validation"].chomp("/"), + sub = { "validation_service" => CONFIG[:services]["opentox-validation"].chomp("/"), "validation_id" => "1", "model_uri" => @@model, "dataset_uri" => @@data, @@ -42,7 +43,7 @@ class Example "crossvalidation_report_id" => "2", "css_file" => @@css_file, "prediction_dataset_uri" => @@prediction_data, - "predicted_feature" => @@predicted_feature, + #"predicted_feature" => @@predicted_feature, "qmrf_id" => "1"} sub.each do |k,v| @@ -53,31 +54,39 @@ class Example # creates the resources that are requested by the examples def self.prepare_example_resources - OpenTox::Task.as_task("prepare examples", "n/a") do |task| + task = OpenTox::Task.create("prepare examples", "n/a") do |task| @@summary = "" #delete validations log "delete validations" - ActiveRecord::Base.logger = Logger.new("/dev/null") - ActiveRecord::Migrator.migrate('db/migrate', 0 ) - ActiveRecord::Migrator.migrate('db/migrate', 1 ) - ActiveRecord::Migrator.migrate('db/migrate', 2 ) + Lib::Validation.auto_migrate! + Lib::Crossvalidation.auto_migrate! + #ActiveRecord::Base.logger = Logger.new("/dev/null") + #ActiveRecord::Migrator.migrate('db/migrate', 0 ) + #ActiveRecord::Migrator.migrate('db/migrate', 1 ) + #ActiveRecord::Migrator.migrate('db/migrate', 2 ) #delete all qmrf reports ReachReports::QmrfReport.auto_migrate! - #delete_all(@@config[:services]["opentox-dataset"]) - log OpenTox::RestClientWrapper.delete @@config[:services]["opentox-dataset"] + #delete_all(CONFIG[:services]["opentox-dataset"]) + log OpenTox::RestClientWrapper.delete CONFIG[:services]["opentox-dataset"] task.progress(10) log "upload dataset" halt 400,"File not found: "+@@file.path.to_s unless File.exist?(@@file.path) + #data = File.read(@@file.path) + #data_uri = OpenTox::RestClientWrapper.post(CONFIG[:services]["opentox-dataset"],{:content_type => @@file_type},data).chomp("\n") data = File.read(@@file.path) - data_uri = OpenTox::RestClientWrapper.post(@@config[:services]["opentox-dataset"],{:content_type => @@file_type},data).chomp("\n") + dataset = OpenTox::Dataset.create + dataset.load_yaml(data) + dataset.save + data_uri = dataset.uri + log "-> "+data_uri task.progress(20) log "train-test-validation" - #delete_all(@@config[:services]["opentox-model"]) - OpenTox::RestClientWrapper.delete @@config[:services]["opentox-model"] + #delete_all(CONFIG[:services]["opentox-model"]) + OpenTox::RestClientWrapper.delete CONFIG[:services]["opentox-model"] split_params = Validation::Util.train_test_dataset_split(data_uri, URI.decode(@@feature), 0.9, 1) v = Validation::Validation.new :training_dataset_uri => split_params[:training_dataset_uri], @@ -93,7 +102,7 @@ class Example cv.perform_cv( URI.decode(@@feature), @@alg_params, OpenTox::SubTask.new(task, 40, 70) ) log "create validation report" - rep = Reports::ReportService.instance(File.join(@@config[:services]["opentox-validation"],"report")) + rep = Reports::ReportService.instance(File.join(CONFIG[:services]["opentox-validation"],"report")) rep.delete_all_reports("validation") rep.create_report("validation",v.validation_uri) task.progress(80) @@ -111,6 +120,7 @@ class Example log "done" @@summary end + task.uri end # performs all curl calls listed in examples after ">>>", next line is added if line ends with "\" @@ -163,7 +173,7 @@ class Example result.chomp! result.gsub!(/\n/, " \\n ") if ($?==0) - if OpenTox::Utils.task_uri?(result) + if result.task_uri? log "wait for task: "+result result = Lib::TestUtil.wait_for_task(result) end diff --git a/lib/active_record_setup.rb b/lib/active_record_setup.rb old mode 100644 new mode 100755 index 3682c7a..404bfec --- a/lib/active_record_setup.rb +++ b/lib/active_record_setup.rb @@ -1,17 +1,17 @@ -gem "activerecord", "= 2.3.8" -gem "ar-extensions", "= 0.9.2" -['rubygems', 'logger', 'active_record', 'ar-extensions', 'opentox-ruby-api-wrapper' ].each do |g| +#gem "activerecord", "= 2.3.8" +#gem "ar-extensions", "= 0.9.2" +['rubygems', 'logger', 'active_record', 'opentox-ruby' ].each do |g| #'ar-extensions', require g end unless ActiveRecord::Base.connected? ActiveRecord::Base.establish_connection( - :adapter => @@config[:database][:adapter], - :host => @@config[:database][:host], - :database => @@config[:database][:database], - :username => @@config[:database][:username], - :password => @@config[:database][:password] + :adapter => CONFIG[:database][:adapter], + :host => CONFIG[:database][:host], + :database => CONFIG[:database][:database], + :username => CONFIG[:database][:username], + :password => CONFIG[:database][:password] ) ActiveRecord::Base.logger = Logger.new("/dev/null") end @@ -19,6 +19,9 @@ end class ActiveRecord::Base def self.find_like(filter_params) + + raise "find like removed" + #puts "params before "+filter_params.inspect filter_params.keys.each do |k| key = k.to_s diff --git a/lib/ot_predictions.rb b/lib/ot_predictions.rb old mode 100644 new mode 100755 index 0175a0c..52683a6 --- a/lib/ot_predictions.rb +++ b/lib/ot_predictions.rb @@ -15,7 +15,7 @@ module Lib return @compounds[instance_index] end - def initialize(is_classification, test_dataset_uri, test_target_dataset_uri, + def initialize(feature_type, test_dataset_uri, test_target_dataset_uri, prediction_feature, prediction_dataset_uri, predicted_variable, task=nil) LOGGER.debug("loading prediciton via test-dataset:'"+test_dataset_uri.to_s+ @@ -53,38 +53,47 @@ module Lib raise "prediction_feature not found in test_target_dataset\n"+ "prediction_feature: '"+prediction_feature.to_s+"'\n"+ "test_target_dataset: '"+test_target_dataset_uri.to_s+"'\n"+ - "available features are: "+test_target_dataset.features.inspect if test_target_dataset.features.index(prediction_feature)==nil + "available features are: "+test_target_dataset.features.inspect if test_target_dataset.features.keys.index(prediction_feature)==nil end + test_dataset.load_all @compounds = test_dataset.compounds LOGGER.debug "test dataset size: "+@compounds.size.to_s raise "test dataset is empty" unless @compounds.size>0 - class_values = is_classification ? OpenTox::Feature.domain(prediction_feature) : nil + class_values = feature_type=="classification" ? OpenTox::Feature.new(prediction_feature).domain : nil actual_values = [] @compounds.each do |c| - value = test_target_dataset.get_value(c, prediction_feature) - - if is_classification - value = value.to_s unless value==nil - raise "illegal class_value of actual value "+value.to_s+" class: "+ - value.class.to_s unless value==nil or class_values.index(value)!=nil - actual_values.push class_values.index(value) - else - begin - value = value.to_f unless value==nil or value.is_a?(Numeric) - rescue - LOGGER.warn "no numeric value for regression: '"+value.to_s+"'" - value = nil - end - actual_values.push value + case feature_type + when "classification" + actual_values << classification_value(test_target_dataset, c, prediction_feature, class_values) + when "regression" + actual_values << regression_value(test_target_dataset, c, prediction_feature) end end task.progress(40) if task # loaded actual values prediction_dataset = OpenTox::Dataset.find prediction_dataset_uri raise "prediction dataset not found: '"+prediction_dataset_uri.to_s+"'" unless prediction_dataset - raise "prediction-feature not found: '"+predicted_variable+"' in prediction-dataset: "+prediction_dataset_uri.to_s+", available features: "+prediction_dataset.features.inspect if prediction_dataset.features.index(predicted_variable)==nil + + # TODO: remove LAZAR_PREDICTION_DATASET_HACK + no_prediction_feature = prediction_dataset.features.keys.index(predicted_variable)==nil + if no_prediction_feature + one_entry_per_compound = prediction_dataset.data_entries.keys.size == @compounds.size + @compounds.each do |c| + if prediction_dataset.data_entries[c].size != 1 + one_entry_per_compound = false + break + end + end + msg = "prediction-feature not found: '"+predicted_variable+"' in prediction-dataset: "+prediction_dataset_uri.to_s+", available features: "+ + prediction_dataset.features.keys.inspect + if one_entry_per_compound + LOGGER.warn msg + else + raise msg + end + end raise "more predicted than test compounds test:"+@compounds.size.to_s+" < prediction:"+ prediction_dataset.compounds.size.to_s if @compounds.size < prediction_dataset.compounds.size @@ -102,38 +111,79 @@ module Lib predicted_values << nil confidence_values << nil else - if is_classification - value = prediction_dataset.get_predicted_class(c, predicted_variable) - value = value.to_s unless value==nil - raise "illegal class_value of predicted value "+value.to_s+" class: "+value.class.to_s unless value==nil or class_values.index(value)!=nil - predicted_values << class_values.index(value) - else - value = prediction_dataset.get_predicted_regression(c, predicted_variable) - begin - value = value.to_f unless value==nil or value.is_a?(Numeric) - rescue - LOGGER.warn "no numeric value for regression: '"+value.to_s+"'" - value = nil - end - predicted_values << value + case feature_type + when "classification" + # TODO: remove LAZAR_PREDICTION_DATASET_HACK + predicted_values << classification_value(prediction_dataset, c, no_prediction_feature ? nil : predicted_variable, class_values) + when "regression" + predicted_values << regression_value(prediction_dataset, c, no_prediction_feature ? nil : predicted_variable) + end + # TODO confidence_values << prediction_dataset.get_prediction_confidence(c, predicted_variable) + conf = 1 + begin + feature = prediction_dataset.data_entries[c].keys[0] + feature_data = prediction_dataset.features[feature] + conf = feature_data[OT.confidence] if feature_data[OT.confidence]!=nil + rescue + LOGGER.warn "could not get confidence" end - confidence_values << prediction_dataset.get_prediction_confidence(c, predicted_variable) + confidence_values << conf end end task.progress(80) if task # loaded predicted values and confidence - super(predicted_values, actual_values, confidence_values, is_classification, class_values) + super(predicted_values, actual_values, confidence_values, feature_type, class_values) raise "illegal num compounds "+num_info if @compounds.size != @predicted_values.size task.progress(100) if task # done with the mathmatics end + private + def regression_value(dataset, compound, feature) + v = value(dataset, compound, feature) + begin + v = v.to_f unless v==nil or v.is_a?(Numeric) + v + rescue + LOGGER.warn "no numeric value for regression: '"+v.to_s+"'" + nil + end + end + + def classification_value(dataset, compound, feature, class_values) + v = value(dataset, compound, feature) + i = class_values.index(v) + raise "illegal class_value of predicted value "+v.to_s+" class: "+v.class.to_s unless v==nil or i!=nil + i + end + + def value(dataset, compound, feature) + + if feature==nil + v = dataset.data_entries[compound].values[0] + else + v = dataset.data_entries[compound][feature] + end + raise "no array" unless v.is_a?(Array) + if v.size>1 + raise "multiple values" + elsif v.size==1 + v = v[0] + else + v = nil + end + raise "array" if v.is_a?(Array) + v = nil if v.to_s.size==0 + v + end + public def compute_stats res = {} - if @is_classification + case @feature_type + when "classification" (Lib::VAL_CLASS_PROPS).each{ |s| res[s] = send(s)} - else + when "regression" (Lib::VAL_REGR_PROPS).each{ |s| res[s] = send(s) } end return res @@ -152,16 +202,18 @@ module Lib #PENDING! begin - a.push( "http://ambit.uni-plovdiv.bg:8080/ambit2/depict/cdk?search="+ - URI.encode(OpenTox::Compound.new(:uri=>p.identifier(i)).smiles) ) if add_pic + #a.push( "http://ambit.uni-plovdiv.bg:8080/ambit2/depict/cdk?search="+ + # URI.encode(OpenTox::Compound.new(:uri=>p.identifier(i)).smiles) ) if add_pic + a << p.identifier(i)+"/image" rescue => ex + raise ex #a.push("Could not add pic: "+ex.message) - a.push(p.identifier(i)) + #a.push(p.identifier(i)) end a << (format ? p.actual_value(i).to_nice_s : p.actual_value(i)) a << (format ? p.predicted_value(i).to_nice_s : p.predicted_value(i)) - if p.classification? + if p.feature_type=="classification" if (p.predicted_value(i)!=nil and p.actual_value(i)!=nil) a << (p.classification_miss?(i) ? 1 : 0) else @@ -180,7 +232,7 @@ module Lib header << "compound" if add_pic header << "actual value" header << "predicted value" - header << "missclassified" if predictions[0].classification? + header << "missclassified" if predictions[0].feature_type=="classification" header << "confidence value" if predictions[0].confidence_values_available? header << "compound-uri" res.insert(0, header) diff --git a/lib/predictions.rb b/lib/predictions.rb old mode 100644 new mode 100755 index 6e50e94..e73dda6 --- a/lib/predictions.rb +++ b/lib/predictions.rb @@ -22,13 +22,13 @@ module Lib def initialize( predicted_values, actual_values, confidence_values, - is_classification, + feature_type, class_domain=nil ) @predicted_values = predicted_values @actual_values = actual_values @confidence_values = confidence_values - @is_classification = is_classification + @feature_type = feature_type @class_domain = class_domain @num_classes = 1 @@ -36,6 +36,8 @@ module Lib #puts "actual: "+actual_values.inspect #puts "confidence: "+confidence_values.inspect + raise "unknown feature_type: "+@feature_type.to_s unless + @feature_type=="classification" || @feature_type=="regression" raise "no predictions" if @predicted_values.size == 0 num_info = "predicted:"+@predicted_values.size.to_s+ " confidence:"+@confidence_values.size.to_s+" actual:"+@actual_values.size.to_s @@ -54,15 +56,16 @@ module Lib # @confidence_values=nil #end - if @is_classification + case @feature_type + when "classification" raise "class_domain missing while performing classification" unless @class_domain @num_classes = @class_domain.size raise "num classes < 2" if @num_classes<2 { "predicted"=>@predicted_values, "actual"=>@actual_values }.each do |s,values| values.each{ |v| raise "illegal "+s+" classification-value ("+v.to_s+"),"+ - "has to be either nil or index of predicted-values" if v!=nil and (v<0 or v>@num_classes)} + "has to be either nil or index of predicted-values" if v!=nil and (!v.is_a?(Numeric) or v<0 or v>@num_classes)} end - else + when "regresssion" raise "class_domain != nil while performing regression" if @class_domain { "predicted"=>@predicted_values, "actual"=>@actual_values }.each do |s,values| values.each{ |v| raise "illegal "+s+" regression-value ("+v.to_s+"),"+ @@ -83,7 +86,8 @@ module Lib @num_predicted = 0 @num_unpredicted = 0 - if @is_classification + case @feature_type + when "classification" @confusion_matrix = [] @class_domain.each do |v| @confusion_matrix.push( Array.new( @num_classes, 0 ) ) @@ -91,7 +95,7 @@ module Lib @num_correct = 0 @num_incorrect = 0 - else + when "regression" @sum_error = 0 @sum_abs_error = 0 @sum_squared_error = 0 @@ -122,14 +126,15 @@ module Lib else @num_predicted += 1 - if @is_classification + case @feature_type + when "classification" @confusion_matrix[actual_value][predicted_value] += 1 if (predicted_value == actual_value) @num_correct += 1 else @num_incorrect += 1 end - else + when "regression" delta = predicted_value - actual_value @sum_error += delta @sum_abs_error += delta.abs @@ -156,13 +161,13 @@ module Lib end def percent_correct - raise "no classification" unless @is_classification + raise "no classification" unless @feature_type=="classification" return 0 if @num_with_actual_value==0 return 100 * @num_correct / @num_with_actual_value.to_f end def percent_incorrect - raise "no classification" unless @is_classification + raise "no classification" unless @feature_type=="classification" return 0 if @num_with_actual_value==0 return 100 * @num_incorrect / @num_with_actual_value.to_f end @@ -190,17 +195,17 @@ module Lib end def num_correct - raise "no classification" unless @is_classification + raise "no classification" unless @feature_type=="classification" return @num_correct end def num_incorrect - raise "no classification" unless @is_classification + raise "no classification" unless @feature_type=="classification" return @num_incorrect end def num_unclassified - raise "no classification" unless @is_classification + raise "no classification" unless @feature_type=="classification" return @num_unpredicted end @@ -209,7 +214,7 @@ module Lib # and values: def confusion_matrix - raise "no classification" unless @is_classification + raise "no classification" unless @feature_type=="classification" res = {} (0..@num_classes-1).each do |actual| (0..@num_classes-1).each do |predicted| @@ -505,9 +510,10 @@ module Lib end def predicted_value(instance_index) - if @is_classification + case @feature_type + when "classification" @predicted_values[instance_index]==nil ? nil : @class_domain[@predicted_values[instance_index]] - else + when "regression" @predicted_values[instance_index] end end @@ -517,9 +523,10 @@ module Lib end def actual_value(instance_index) - if @is_classification + case @feature_type + when "classification" @actual_values[instance_index]==nil ? nil : @class_domain[@actual_values[instance_index]] - else + when "regression" @actual_values[instance_index] end end @@ -529,13 +536,13 @@ module Lib end def classification_miss?(instance_index) - raise "no classification" unless @is_classification + raise "no classification" unless @feature_type=="classification" return false if predicted_value(instance_index)==nil or actual_value(instance_index)==nil return predicted_value(instance_index) != actual_value(instance_index) end - def classification? - @is_classification + def feature_type + @feature_type end def confidence_values_available? diff --git a/lib/test_util.rb b/lib/test_util.rb old mode 100644 new mode 100755 index ecab76c..0deee04 --- a/lib/test_util.rb +++ b/lib/test_util.rb @@ -10,11 +10,11 @@ module Lib end def self.wait_for_task(uri) - if OpenTox::Utils.task_uri?(uri) + if uri.task_uri? task = OpenTox::Task.find(uri) task.wait_for_completion raise "task failed: "+uri.to_s+", error is:\n"+task.description if task.error? - uri = task.resultURI + uri = task.result_uri end return uri end diff --git a/lib/validation_db.rb b/lib/validation_db.rb old mode 100644 new mode 100755 index cb3ece7..83b7e2f --- a/lib/validation_db.rb +++ b/lib/validation_db.rb @@ -49,11 +49,40 @@ module Lib VAL_MERGE_AVG = VAL_PROPS_AVG + VAL_CLASS_PROPS_SINGLE_AVG + VAL_CLASS_PROPS_PER_CLASS_AVG + VAL_REGR_PROPS - class Validation < ActiveRecord::Base - serialize :classification_statistics - serialize :regression_statistics +# class Validation < ActiveRecord::Base +# serialize :classification_statistics +# serialize :regression_statistics +# +# alias_attribute :date, :created_at - alias_attribute :date, :created_at + class Validation + include DataMapper::Resource + + property :id, Serial + property :validation_type, String, :length => 255 + property :model_uri, String, :length => 255 + property :algorithm_uri, String, :length => 255 + property :training_dataset_uri, String, :length => 255 + property :test_target_dataset_uri, String, :length => 255 + property :test_dataset_uri, String, :length => 255 + property :prediction_dataset_uri, String, :length => 255 + property :prediction_feature, String, :length => 255 + property :created_at, DateTime + property :num_instances, Integer + property :num_without_class, Integer + property :num_unpredicted, Integer + property :crossvalidation_id, Integer + property :crossvalidation_fold, Integer + property :real_runtime, Float + property :percent_without_class, Float + property :percent_unpredicted, Float + property :classification_statistics, Object + property :regression_statistics, Object + property :finished, Boolean, :default => false + + def date + created_at + end def validation_uri $sinatra.url_for("/"+self.id.to_s, :full) @@ -77,8 +106,23 @@ module Lib end - class Crossvalidation < ActiveRecord::Base - alias_attribute :date, :created_at +# class Crossvalidation < ActiveRecord::Base +# alias_attribute :date, :created_at + class Crossvalidation + include DataMapper::Resource + + property :id, Serial + property :algorithm_uri, String, :length => 255 + property :dataset_uri, String, :length => 255 + property :created_at, DateTime + property :num_folds, Integer, :default => 10 + property :random_seed, Integer, :default => 1 + property :finished, Boolean, :default => false + property :stratified, Boolean, :default => false + + def date + created_at + end def crossvalidation_uri $sinatra.url_for("/crossvalidation/"+self.id.to_s, :full) if self.id @@ -88,7 +132,8 @@ module Lib # in terms of dataset_uri,num_folds,stratified,random_seed # further conditions can be specified in __conditions__ def self.find_all_uniq(conditions={}) - cvs = Lib::Crossvalidation.find(:all, :conditions => conditions) + #cvs = Lib::Crossvalidation.find(:all, :conditions => conditions) + cvs = Lib::Crossvalidation.all(:conditions => conditions) uniq = [] cvs.each do |cv| match = false @@ -105,3 +150,9 @@ module Lib end end end + + +Lib::Validation.auto_upgrade! +Lib::Validation.raise_on_save_failure = true +Lib::Crossvalidation.auto_upgrade! +Lib::Crossvalidation.raise_on_save_failure = true \ No newline at end of file diff --git a/nightly/nightly.rb b/nightly/nightly.rb old mode 100644 new mode 100755 index eb802a3..550d14c --- a/nightly/nightly.rb +++ b/nightly/nightly.rb @@ -21,7 +21,7 @@ class Nightly validationExamples = ValidationExamples.select(select) return "please \"select\" validation examples:\n"+ValidationExamples.list if validationExamples.size==0 - task_uri = OpenTox::Task.as_task("Build nightly","nightly-validation-test-service",{:select => select, :dry_run => dry_run}) do |task| + task = OpenTox::Task.create("Build nightly","nightly-validation-test-service") do |task| #,{:select => select, :dry_run => dry_run}) LOGGER.info("Building nightly report") benchmarks = validationExamples.collect{ |e| ValidationBenchmark.new(e) } @@ -98,12 +98,12 @@ class Nightly end #benchmarks.collect{|b| b.uris}.join(",") - File.join(@@config[:services]["opentox-validation"],"nightly") + File.join(CONFIG[:services]["opentox-validation"],"nightly") end if defined?(halt) - halt 202,task_uri+"\n" + halt 202,task.uri+"\n" else - return task_uri+"\n" + return task.uri+"\n" end end diff --git a/reach_reports/reach_application.rb b/reach_reports/reach_application.rb old mode 100644 new mode 100755 index d82bc11..4187c1b --- a/reach_reports/reach_application.rb +++ b/reach_reports/reach_application.rb @@ -1,5 +1,5 @@ -[ 'rubygems', 'sinatra', 'sinatra/url_for', 'opentox-ruby-api-wrapper' ].each do |lib| +[ 'rubygems', 'sinatra', 'sinatra/url_for', 'opentox-ruby' ].each do |lib| require lib end @@ -67,7 +67,7 @@ post '/reach_report/:type' do #puts "creating "+type+" report "+params.inspect result_uri = ReachReports.create_report(type,params,request.env["rack.input"]) - if OpenTox::Utils.task_uri?(result_uri) + if result_uri and result_uri.task_uri? halt 202,result_uri+"\n" else result_uri+"\n" diff --git a/reach_reports/reach_persistance.rb b/reach_reports/reach_persistance.rb old mode 100644 new mode 100755 index 2cbcd71..a36e05f --- a/reach_reports/reach_persistance.rb +++ b/reach_reports/reach_persistance.rb @@ -1188,41 +1188,11 @@ module ReachReports # end # end - QsarSoftware.auto_upgrade! - QsarIdentifier.auto_upgrade! - - QmrfAuthor.auto_upgrade! - ModelAuthor.auto_upgrade! - Reference.auto_upgrade! - QsarGeneralInformation.auto_upgrade! - - ModelEndpoint.auto_upgrade! - QsarEndpoint.auto_upgrade! - - AlgorithmExplicit.auto_upgrade! - AlgorithmsDescriptor.auto_upgrade! - DescriptorsGenerationSoftware.auto_upgrade! - QsarAlgorithm.auto_upgrade! - - AppDomainSoftware.auto_upgrade! - QsarApplicabilityDomain.auto_upgrade! - - TrainingSetData.auto_upgrade! - QsarRobustness.auto_upgrade! - - ValidationSetData.auto_upgrade! - QsarPredictivity.auto_upgrade! - - QsarInterpretation.auto_upgrade! - - Bibliography.auto_upgrade! - AttachmentTrainingData.auto_upgrade! - AttachmentValidationData.auto_upgrade! - AttachmentDocument.auto_upgrade! - QsarMiscellaneous.auto_upgrade! - - QmrfSummary.auto_upgrade! - - QmrfReport.auto_upgrade! - + [ QsarSoftware, QsarIdentifier, QmrfAuthor, ModelAuthor, Reference, QsarGeneralInformation, ModelEndpoint, QsarEndpoint, AlgorithmExplicit, + AlgorithmsDescriptor, DescriptorsGenerationSoftware, QsarAlgorithm, AppDomainSoftware, QsarApplicabilityDomain, TrainingSetData, + QsarRobustness, ValidationSetData, QsarPredictivity, QsarInterpretation, Bibliography, AttachmentTrainingData, AttachmentValidationData, + AttachmentDocument, QsarMiscellaneous, QmrfSummary, QmrfReport ].each do |model| + model.auto_upgrade! + model.raise_on_save_failure = true + end end \ No newline at end of file diff --git a/reach_reports/reach_service.rb b/reach_reports/reach_service.rb old mode 100644 new mode 100755 index f297f26..808d08a --- a/reach_reports/reach_service.rb +++ b/reach_reports/reach_service.rb @@ -26,13 +26,14 @@ module ReachReports case type when /(?i)QMRF/ if params[:model_uri] - result_uri = OpenTox::Task.as_task( "Create "+type+" report", - $sinatra.url_for("/reach_report/"+type, :full), params ) do |task| + task = OpenTox::Task.create( "Create "+type+" report", + $sinatra.url_for("/reach_report/"+type, :full) ) do |task| #, params report = ReachReports::QmrfReport.new :model_uri => params[:model_uri] build_qmrf_report(report, task) report.report_uri end + result_uri = task.uri elsif xml_data and (input = xml_data.read).to_s.size>0 report = ReachReports::QmrfReport.new ReachReports::QmrfReport.from_xml(report,input) @@ -61,17 +62,18 @@ module ReachReports def self.build_qmrf_report(r, task=nil) #puts r.model_uri - model = OpenTox::Model::PredictionModel.find(r.model_uri) - classification = model.classification? + model = OpenTox::Model::Generic.find(r.model_uri) + raise "model not found "+r.model_uri.to_s unless model + feature_type = model.feature_type # chapter 1 r.qsar_identifier = QsarIdentifier.new - r.qsar_identifier.qsar_title = model.title + r.qsar_identifier.qsar_title = model.metadata[DC.title] # TODO QSAR_models -> sparql same endpoint r.qsar_identifier.qsar_software << QsarSoftware.new( :url => model.uri, - :name => model.title, :contact => model.creator ) - algorithm = OpenTox::Algorithm::Generic.find(model.algorithm) if model.algorithm - r.qsar_identifier.qsar_software << QsarSoftware.new( :url => algorithm.uri, :name => algorithm.title ) + :name => model.metadata[DC.title], :contact => model.metadata[DC.creator] ) + algorithm = OpenTox::Algorithm::Generic.find(model.metadata[OT.algorithm]) if model.metadata[OT.algorithm] + r.qsar_identifier.qsar_software << QsarSoftware.new( :url => algorithm.uri, :name => algorithm.metadata[DC.title] ) task.progress(10) if task #chpater 2 @@ -79,7 +81,7 @@ module ReachReports r.qsar_general_information.qmrf_date = DateTime.now.to_s # EMPTY: qmrf_authors, qmrf_date_revision, qmrf_revision # TODO: model_authors ? - r.qsar_general_information.model_date = model.date.to_s + r.qsar_general_information.model_date = model.metadata[DC.date].to_s # TODO: references? # EMPTY: info_availablity # TODO: related_models = find qmrf reports for QSAR_models @@ -88,11 +90,11 @@ module ReachReports # chapter 3 # TODO "model_species" ? r.qsar_endpoint = QsarEndpoint.new - model.predictedVariables.each do |p| + model.metadata[OT.predictedVariables].each do |p| r.qsar_endpoint.model_endpoint << ModelEndpoint.new( :name => p ) - end + end if model.metadata[OT.predictedVariables] # TODO "endpoint_comments" => "3.3", "endpoint_units" => "3.4", - r.qsar_endpoint.endpoint_variable = model.dependentVariables if model.dependentVariables + r.qsar_endpoint.endpoint_variable = model.metadata[OT.dependentVariables] if model.metadata[OT.dependentVariables] # TODO "endpoint_protocol" => "3.6", "endpoint_data_quality" => "3.7", task.progress(30) if task @@ -108,9 +110,9 @@ module ReachReports #training_dataset = model.trainingDataset ? OpenTox::Dataset.find(model.trainingDataset+"/metadata") : nil begin - training_dataset = model.trainingDataset ? OpenTox::Dataset.find(model.trainingDataset) : nil + training_dataset = model.metadata[OT.trainingDataset] ? OpenTox::Dataset.find(model.metadata[OT.trainingDataset]) : nil rescue - LOGGER.warn "build qmrf: training_dataset not found "+model.trainingDataset.to_s + LOGGER.warn "build qmrf: training_dataset not found "+model.metadata[OT.trainingDataset].to_s end task.progress(50) if task @@ -129,27 +131,27 @@ module ReachReports val_datasets = [] - if model.algorithm - cvs = Lib::Crossvalidation.find_all_uniq({:algorithm_uri => model.algorithm}) + if algorithm + cvs = Lib::Crossvalidation.find_all_uniq({:algorithm_uri => algorithm.uri}) # PENDING: cv classification/regression hack cvs = cvs.delete_if do |cv| val = Validation::Validation.first( :all, :conditions => { :crossvalidation_id => cv.id } ) - (val.classification_statistics!=nil) != classification + (val.classification_statistics!=nil) != (feature_type=="classification") end - lmo = [ "found "+cvs.size.to_s+" crossvalidation/s for algorithm '"+model.algorithm+"'" ] + lmo = [ "found "+cvs.size.to_s+" crossvalidation/s for algorithm '"+algorithm.uri.to_s+"'" ] if cvs.size>0 cvs_same_data = [] cvs_other_data = [] cvs.each do |cv| - if cv.dataset_uri == model.trainingDataset + if cv.dataset_uri == model.metadata[OT.trainingDataset] cvs_same_data << cv else cvs_other_data << cv end end lmo << cvs_same_data.size.to_s+" crossvalidations/s where performed on the training dataset of the model ("+ - model.trainingDataset.to_s+")" + model.metadata[OT.trainingDataset].to_s+")" lmo << cvs_other_data.size.to_s+" crossvalidations/s where performed on the other datasets" lmo << "" @@ -162,15 +164,16 @@ module ReachReports val_datasets << cv.dataset_uri lmo << "settings: num-folds="+cv.num_folds.to_s+", random-seed="+cv.random_seed.to_s+", stratified:"+cv.stratified.to_s val = YAML.load( OpenTox::RestClientWrapper.get File.join(cv.crossvalidation_uri,"statistics") ) - if classification + case feature_type + when "classification" lmo << "percent_correct: "+val[:classification_statistics][:percent_correct].to_s lmo << "weighted AUC: "+val[:classification_statistics][:weighted_area_under_roc].to_s - else + when "regression" lmo << "root_mean_squared_error: "+val[:regression_statistics][:root_mean_squared_error].to_s lmo << "r_square "+val[:regression_statistics][:r_square].to_s end reports = OpenTox::RestClientWrapper.get File.join(CONFIG[:services]["opentox-validation"],"report/crossvalidation?crossvalidation_uris="+cv.crossvalidation_uri) - if reports and reports.size>0 + if reports and reports.chomp.size>0 lmo << "for more info see report: "+reports.split("\n")[0] else lmo << "for more info see report: not yet created for '"+cv.crossvalidation_uri+"'" @@ -187,7 +190,8 @@ module ReachReports # "lmo" => "6.9", "yscrambling" => "6.10", "bootstrap" => "6.11", "other_statistics" => "6.12", LOGGER.debug "looking for validations with "+{:model_uri => model.uri}.inspect - vals = Lib::Validation.find(:all, :conditions => {:model_uri => model.uri}) + #vals = Lib::Validation.find(:all, :conditions => {:model_uri => model.uri}) + vals = Lib::Validation.all({:model_uri => model.uri}) uniq_vals = [] vals.each do |val| match = false @@ -212,10 +216,11 @@ module ReachReports v << "validation: "+validation.validation_uri v << "dataset (see 9.3 Validation data): "+validation.test_dataset_uri val_datasets << validation.test_dataset_uri - if classification + case feature_type + when "classification" v << "percent_correct: "+validation.classification_statistics[:percent_correct].to_s v << "weighted AUC: "+validation.classification_statistics[:weighted_area_under_roc].to_s - else + when "regression" v << "root_mean_squared_error: "+validation.regression_statistics[:root_mean_squared_error].to_s v << "r_square "+validation.regression_statistics[:r_square].to_s end @@ -252,7 +257,7 @@ module ReachReports r.qsar_miscellaneous.attachment_training_data << AttachmentTrainingData.new( { :description => training_dataset.title, :filetype => "owl-dl", - :url => model.trainingDataset} ) if training_dataset + :url => training_dataset.uri} ) if training_dataset val_datasets.each do |data_uri| begin diff --git a/reach_reports/reach_test.rb b/reach_reports/reach_test.rb old mode 100644 new mode 100755 index 4a18f6d..13625e5 --- a/reach_reports/reach_test.rb +++ b/reach_reports/reach_test.rb @@ -7,7 +7,7 @@ require 'rack/test' require 'lib/test_util.rb' require 'test/test_examples.rb' -LOGGER = MyLogger.new(STDOUT) +LOGGER = OTLogger.new(STDOUT) LOGGER.datetime_format = "%Y-%m-%d %H:%M:%S " LOGGER.formatter = Logger::Formatter.new @@ -115,7 +115,7 @@ class ReachTest < Test::Unit::TestCase # puts last_response.body #model_uri = "http://ambit.uni-plovdiv.bg:8080/ambit2/model/173393" - model_uri = "http://localhost/model/6" + model_uri = "http://localhost/model/1" #http://localhost/majority/class/model/15 #model_uri = "http://localhost/majority/class/model/15" # model_uri = "http://localhost/majority/class/model/91" @@ -141,15 +141,15 @@ class ReachTest < Test::Unit::TestCase # puts "RDF" # puts last_response.body - get '/reach_report/qmrf/'+id,nil,'HTTP_ACCEPT' => "application/qmrf-xml" - puts "XML" - puts last_response.body + #get '/reach_report/qmrf/'+id,nil,'HTTP_ACCEPT' => "application/qmrf-xml" + #puts "XML" + #puts last_response.body #r = ReachReports::QmrfReport.find_like( :QSAR_title => "Hamster") #puts r.collect{|rr| "report with id:"+rr.id.to_s}.inspect - File.new("/home/martin/tmp/qmr_rep_del_me.xml","w").puts last_response.body + #File.new("/home/martin/tmp/qmr_rep_del_me.xml","w").puts last_response.body #File.new("/home/martin/win/home/qmr_rep_del_me.xml","w").puts last_response.body #File.new("/home/martin/info_home/.public_html/qmr_rep_del_me.xml","w").puts last_response.body end diff --git a/report/environment.rb b/report/environment.rb old mode 100644 new mode 100755 index 1f62d0e..12e3272 --- a/report/environment.rb +++ b/report/environment.rb @@ -1,18 +1,19 @@ ['rubygems', 'logger', 'fileutils', 'sinatra', 'sinatra/url_for', 'rest_client', 'yaml', 'fileutils', 'mime/types', 'abbrev', 'rinruby', - 'rexml/document', 'ruby-plot', 'opentox-ruby-api-wrapper' ].each do |g| + 'rexml/document', 'ruby-plot', 'opentox-ruby' ].each do |g| require g end gem 'ruby-plot', '= 0.0.2' -R.quit +#R.quit module Reports end require "lib/ot_predictions.rb" -require "lib/active_record_setup.rb" +#require "lib/active_record_setup.rb" +require "lib/data_mapper_util.rb" require "report/plot_factory.rb" require "report/xml_report.rb" diff --git a/report/report_application.rb b/report/report_application.rb old mode 100644 new mode 100755 index a61a2df..6d6353f --- a/report/report_application.rb +++ b/report/report_application.rb @@ -123,11 +123,11 @@ delete '/report/:type/:id' do end post '/report/:type' do - task_uri = OpenTox::Task.as_task("Create report",url_for("/report/"+params[:type], :full), params) do |task| + task = OpenTox::Task.create("Create report",url_for("/report/"+params[:type], :full)) do |task| #,params perform do |rs| rs.create_report(params[:type],params[:validation_uris]?params[:validation_uris].split(/\n|,/):nil,task) end end content_type "text/uri-list" - halt 202,task_uri+"\n" + halt 202,task.uri+"\n" end diff --git a/report/report_content.rb b/report/report_content.rb old mode 100644 new mode 100755 index eeb65e9..1345e6f --- a/report/report_content.rb +++ b/report/report_content.rb @@ -192,7 +192,7 @@ class Reports::ReportContent class_domain = validation_set.get_class_domain class_domain.size.times do |i| class_value = class_domain[i] - image_title = image_titles ? image_titles[i] : "ROC Plot for class-value '"+class_value+"'" + image_title = image_titles ? image_titles[i] : "ROC Plot for class-value '"+class_value.to_s+"'" image_caption = image_captions ? image_captions[i] : nil plot_file_name = "roc_plot"+@tmp_file_count.to_s+".svg" @tmp_file_count += 1 @@ -201,7 +201,7 @@ class Reports::ReportContent Reports::PlotFactory.create_roc_plot( plot_file_path, prediction_set, class_value, split_set_attribute, false )#prediction_set.size>1 ) @xml_report.add_imagefigure(section_roc, image_title, plot_file_name, "SVG", 120, image_caption) rescue RuntimeError => ex - msg = "WARNING could not create roc plot for class value '"+class_value+"': "+ex.message + msg = "WARNING could not create roc plot for class value '"+class_value.to_s+"': "+ex.message LOGGER.error(msg) rm_tmp_file(plot_file_name) @xml_report.add_paragraph(section_roc, msg) @@ -245,7 +245,7 @@ class Reports::ReportContent image_title = image_titles[i] else if class_value!=nil - image_title = rank_attribute.to_s+" Ranking Plot for class-value '"+class_value+"'" + image_title = rank_attribute.to_s+" Ranking Plot for class-value '"+class_value.to_s+"'" else image_title = rank_attribute.to_s+" Ranking Plot" end diff --git a/report/report_factory.rb b/report/report_factory.rb old mode 100644 new mode 100755 index ee66df7..11e9bfa --- a/report/report_factory.rb +++ b/report/report_factory.rb @@ -65,11 +65,12 @@ module Reports::ReportFactory report = Reports::ReportContent.new("Validation report") - if (val.classification?) + case val.feature_type + when "classification" report.add_result(validation_set, [:validation_uri] + VAL_ATTR_TRAIN_TEST + VAL_ATTR_CLASS, "Results", "Results") report.add_roc_plot(validation_set) report.add_confusion_matrix(val) - else #regression + when "regression" report.add_result(validation_set, [:validation_uri] + VAL_ATTR_TRAIN_TEST + VAL_ATTR_REGR, "Results", "Results") report.add_regression_plot(validation_set, :model_uri) end @@ -90,8 +91,8 @@ module Reports::ReportFactory raise Reports::BadRequest.new("num validations ("+validation_set.size.to_s+") is not equal to num folds ("+ validation_set.unique_value(:num_folds).to_s+")") unless validation_set.unique_value(:num_folds)==validation_set.size raise Reports::BadRequest.new("num different folds is not equal to num validations") unless validation_set.num_different_values(:crossvalidation_fold)==validation_set.size - raise Reports::BadRequest.new("validations must be either all regression, "+ - +"or all classification validations") unless validation_set.all_classification? or validation_set.all_regression? + raise Reports::BadRequest.new("validations must have unique feature type, i.e. must be either all regression, "+ + +"or all classification validations") unless validation_set.unique_feature_type pre_load_predictions( validation_set, OpenTox::SubTask.create(task,0,80) ) merged = validation_set.merge([:crossvalidation_id]) @@ -100,14 +101,15 @@ module Reports::ReportFactory #puts merged.get_values(:percent_correct_variance, false).inspect report = Reports::ReportContent.new("Crossvalidation report") - if (validation_set.all_classification?) + case validation_set.unique_feature_type + when "classification" report.add_result(merged, [:crossvalidation_uri]+VAL_ATTR_CV+VAL_ATTR_CLASS-[:crossvalidation_fold],"Mean Results","Mean Results") report.add_roc_plot(validation_set, nil, "ROC Plots over all folds") report.add_roc_plot(validation_set, :crossvalidation_fold) report.add_confusion_matrix(merged.validations[0]) report.add_result(validation_set, VAL_ATTR_CV+VAL_ATTR_CLASS-[:num_folds], "Results","Results",nil,"validation") - else #regression + when "regression" report.add_result(merged, [:crossvalidation_uri]+VAL_ATTR_CV+VAL_ATTR_REGR-[:crossvalidation_fold],"Mean Results","Mean Results") report.add_regression_plot(validation_set, :crossvalidation_fold) report.add_result(validation_set, VAL_ATTR_CV+VAL_ATTR_REGR-[:num_folds], "Results","Results") @@ -124,8 +126,8 @@ module Reports::ReportFactory #validation_set.to_array([:test_dataset_uri, :model_uri, :algorithm_uri], false).each{|a| puts a.inspect} raise Reports::BadRequest.new("num validations is not >1") unless validation_set.size>1 - raise Reports::BadRequest.new("validations must be either all regression, "+ - "or all classification validations") unless validation_set.all_classification? or validation_set.all_regression? + raise Reports::BadRequest.new("validations must have unique feature type, i.e. must be either all regression, "+ + +"or all classification validations") unless validation_set.unique_feature_type raise Reports::BadRequest.new("number of different algorithms <2: "+ validation_set.get_values(:algorithm_uri).inspect) if validation_set.num_different_values(:algorithm_uri)<2 @@ -168,7 +170,8 @@ module Reports::ReportFactory end - if (validation_set.all_classification?) + case validation_set.unique_feature_type + when "classification" attributes = VAL_ATTR_CV+VAL_ATTR_CLASS-[:crossvalidation_fold] attributes = ([ :dataset_uri ] + attributes).uniq @@ -190,7 +193,7 @@ module Reports::ReportFactory report.end_section end - else # regression + when "regression" raise Reports::BadRequest.new("algorithm comparison for regression not yet implemented") end task.progress(100) if task diff --git a/report/report_persistance.rb b/report/report_persistance.rb old mode 100644 new mode 100755 index 1bd37b0..d24c792 --- a/report/report_persistance.rb +++ b/report/report_persistance.rb @@ -181,14 +181,28 @@ end module Reports - class ReportData < ActiveRecord::Base + #class ReportData < ActiveRecord::Base +# serialize :validation_uris +# serialize :crossvalidation_uris +# serialize :algorithm_uris +# serialize :model_uris +# alias_attribute :date, :created_at + + class ReportData + include DataMapper::Resource - serialize :validation_uris - serialize :crossvalidation_uris - serialize :algorithm_uris - serialize :model_uris + property :id, Serial + property :report_uri, String, :length => 255 + property :report_type, String, :length => 255 + property :created_at, DateTime + property :validation_uris, Object + property :crossvalidation_uris, Object + property :model_uris, Object + property :algorithm_uris, Object - alias_attribute :date, :created_at + def date + created_at + end def get_content_as_hash map = {} @@ -216,23 +230,40 @@ module Reports raise "report meta data missing" unless meta_data report = ReportData.new(meta_data) report.save #to set id - report.attributes = { :report_type => type, :report_uri => uri_provider.get_uri(type, report.id) } - report.save +# report.attributes = { :report_type => type, :report_uri => uri_provider.get_uri(type, report.id) } +# report.save + report.update :report_type => type, :report_uri => uri_provider.get_uri(type, report.id) new_report_with_id(report_content, type, report.id) end def list_reports(type, filter_params={}) filter_params["report_type"]=type unless filter_params.has_key?("report_type") - ReportData.find_like(filter_params).delete_if{|r| r.report_type!=type}.collect{ |r| r.id } + #ReportData.find_like(filter_params).delete_if{|r| r.report_type!=type}.collect{ |r| r.id } + + filter_params = Lib::DataMapperUtil.check_params(ReportData, filter_params) + # unfortunately, datamapper does not allow searching in Objects + # do filtering for list = Object params manually + list_params = {} + [:validation_uris, :crossvalidation_uris, :algorithm_uris, :model_uris].each do |l| + list_params[l] = filter_params.delete(l) if filter_params.has_key?(l) + end + + reports = ReportData.all(filter_params).delete_if{|r| r.report_type!=type} + list_params.each do |k,v| + reports = reports.delete_if{ |r| !r.send(k).include?(v) } + end + reports.collect{ |r| r.id } end def get_report(type, id, format, force_formating, params) - begin - report = ReportData.find(:first, :conditions => {:id => id, :report_type => type}) - rescue ActiveRecord::RecordNotFound - raise Reports::NotFound.new("Report with id='"+id.to_s+"' and type='"+type.to_s+"' not found.") - end + report = ReportData.first({:id => id, :report_type => type}) + raise Reports::NotFound.new("Report with id='"+id.to_s+"' and type='"+type.to_s+"' not found.") unless report +# begin +# report = ReportData.find(:first, :conditions => {:id => id, :report_type => type}) +# rescue ActiveRecord::RecordNotFound +# raise Reports::NotFound.new("Report with id='"+id.to_s+"' and type='"+type.to_s+"' not found.") +# end case format when "application/rdf+xml" @@ -245,13 +276,51 @@ module Reports end def delete_report(type, id) - begin - report = ReportData.find(:first, :conditions => {:id => id, :report_type => type}) - rescue ActiveRecord::RecordNotFound - raise Reports::NotFound.new("Report with id='"+id.to_s+"' and type='"+type.to_s+"' not found.") - end - ReportData.delete(id) +# begin +# report = ReportData.find(:first, :conditions => {:id => id, :report_type => type}) +# rescue ActiveRecord::RecordNotFound +# raise Reports::NotFound.new("Report with id='"+id.to_s+"' and type='"+type.to_s+"' not found.") +# end +# ReportData.delete(id) + report = ReportData.first({:id => id, :report_type => type}) + raise Reports::NotFound.new("Report with id='"+id.to_s+"' and type='"+type.to_s+"' not found.") unless report + report.destroy super end end end + +Reports::ReportData.auto_upgrade! +Reports::ReportData.raise_on_save_failure = true + +#module Reports +# def self.check_filter_params(model, filter_params) +# prop_names = model.properties.collect{|p| p.name.to_s} +# filter_params.keys.each do |k| +# key = k.to_s +# unless prop_names.include?(key) +# key = key.from_rdf_format +# unless prop_names.include?(key) +# key = key+"_uri" +# unless prop_names.include?(key) +# key = key+"s" +# unless prop_names.include?(key) +# err = "no attribute found: '"+k.to_s+"'" +# if $sinatra +# $sinatra.halt 400,err +# else +# raise err +# end +# end +# end +# end +# end +# filter_params[key] = filter_params.delete(k) +# end +# filter_params +# end +# +# def ReportData.all( params ) +# super Reports.check_filter_params( ReportData, params ) +# end +#end diff --git a/report/report_test.rb b/report/report_test.rb old mode 100644 new mode 100755 index 5351c7d..f579802 --- a/report/report_test.rb +++ b/report/report_test.rb @@ -33,7 +33,10 @@ class Reports::ApplicationTest < Test::Unit::TestCase #puts uri #get uri - get '/report/validation/117',nil,'HTTP_ACCEPT' => "text/html" + get '/report/crossvalidation',:model=>"http://localhost/majority/class/model/101" + puts last_response.body.to_s + + #get '/report/validation/117',nil,'HTTP_ACCEPT' => "text/html" #post '/report/validation/1/format_html',:css_style_sheet=>"http://apps.ideaconsult.net:8180/ToxPredict/style/global.css" #post 'http://ot.validation.de/report/validation',:validation_uris=>"http://ot.validation.de/1" @@ -119,12 +122,12 @@ end #class Reports::ReportServiceTest < Test::Unit::TestCase # include Lib::TestUtil # -# WS_VAL = @@config[:services]["opentox-validation"] -# WS_DATA=@@config[:services]["opentox-dataset"] +# WS_VAL = CONFIG[:services]["opentox-validation"] +# WS_DATA=CONFIG[:services]["opentox-dataset"] # FILE=File.new("data/hamster_carcinogenicity.owl","r") # -# WS_CLASS_ALG=File.join(@@config[:services]["opentox-algorithm"],"lazar") -# WS_FEATURE_ALG=File.join(@@config[:services]["opentox-algorithm"],"fminer") +# WS_CLASS_ALG=File.join(CONFIG[:services]["opentox-algorithm"],"lazar") +# WS_FEATURE_ALG=File.join(CONFIG[:services]["opentox-algorithm"],"fminer") # # #WS_CLASS_ALG_2="localhost:4008/algorithm" # #WS_FEATURE_ALG_2=nil diff --git a/report/validation_access.rb b/report/validation_access.rb old mode 100644 new mode 100755 index a0b6355..170cdfd --- a/report/validation_access.rb +++ b/report/validation_access.rb @@ -36,8 +36,8 @@ class Reports::ValidationAccess raise "not implemented" end - # is validation classification? - def classification?(validation) + # is validation classification/regression? + def feature_type(validation) raise "not implemented" end @@ -49,9 +49,9 @@ end class Reports::ValidationDB < Reports::ValidationAccess - def initialize() - @model_store = {} - end +# def initialize() +# @model_store = {} +# end def resolve_cv_uris(validation_uris) res = [] @@ -60,13 +60,15 @@ class Reports::ValidationDB < Reports::ValidationAccess cv_id = u.split("/")[-1].to_i cv = nil begin - cv = Lib::Crossvalidation.find( cv_id ) + #cv = Lib::Crossvalidation.find( cv_id ) + cv = Lib::Crossvalidation.get( cv_id ) rescue => ex raise "could not access crossvalidation with id "+validation_id.to_s+", error-msg: "+ex.message end raise Reports::BadRequest.new("crossvalidation with id '"+cv_id.to_s+"' not found") unless cv raise Reports::BadRequest.new("crossvalidation with id '"+cv_id.to_s+"' not finished") unless cv.finished - res += Lib::Validation.find( :all, :conditions => { :crossvalidation_id => cv_id } ).collect{|v| v.validation_uri.to_s} + #res += Lib::Validation.find( :all, :conditions => { :crossvalidation_id => cv_id } ).collect{|v| v.validation_uri.to_s} + res += Lib::Validation.all( :crossvalidation_id => cv_id ).collect{|v| v.validation_uri.to_s } else res += [u.to_s] end @@ -82,7 +84,8 @@ class Reports::ValidationDB < Reports::ValidationAccess (validation_id.to_i > 0 || validation_id.to_s=="0" ) v = nil begin - v = Lib::Validation.find(validation_id) + #v = Lib::Validation.find(validation_id) + v = Lib::Validation.get(validation_id) rescue => ex raise "could not access validation with id "+validation_id.to_s+", error-msg: "+ex.message end @@ -102,7 +105,8 @@ class Reports::ValidationDB < Reports::ValidationAccess def init_cv(validation) - cv = Lib::Crossvalidation.find(validation.crossvalidation_id) + #cv = Lib::Crossvalidation.find(validation.crossvalidation_id) + cv = Lib::Crossvalidation.get(validation.crossvalidation_id) raise Reports::BadRequest.new "no crossvalidation found with id "+validation.crossvalidation_id.to_s unless cv Lib::CROSS_VAL_PROPS.each do |p| @@ -111,35 +115,39 @@ class Reports::ValidationDB < Reports::ValidationAccess end def get_predictions(validation, task=nil) - Lib::OTPredictions.new( validation.classification?, validation.test_dataset_uri, + Lib::OTPredictions.new( validation.feature_type, validation.test_dataset_uri, validation.test_target_dataset_uri, validation.prediction_feature, validation.prediction_dataset_uri, validation.predicted_variable, task) end def get_class_domain( validation ) - OpenTox::Feature.domain( validation.prediction_feature ) + OpenTox::Feature.new( validation.prediction_feature ).domain end - def classification?( validation ) - get_model(validation).classification? + def feature_type( validation ) + OpenTox::Model::Generic.new(validation.model_uri).feature_type + #get_model(validation).classification? end def predicted_variable(validation) - get_model(validation).predictedVariables - end - - private - def get_model(validation) raise "cannot derive model depended props for merged validations" if Lib::MergeObjects.merged?(validation) - model = @model_store[validation.model_uri] - unless model - model = OpenTox::Model::PredictionModel.find(validation.model_uri) - raise "model not found '"+validation.model_uri+"'" unless validation.model_uri && model - @model_store[validation.model_uri] = model - end - return model + model = OpenTox::Model::Generic.find(validation.model_uri) + raise Reports::NotFound.new "model not found '"+validation.model_uri+"'" unless model + model.metadata[OT.predictedVariables] + #get_model(validation).predictedVariables end +# private +# def get_model(validation) +# raise "cannot derive model depended props for merged validations" if Lib::MergeObjects.merged?(validation) +# model = @model_store[validation.model_uri] +# unless model +# model = OpenTox::Model::PredictionModel.find(validation.model_uri) +# raise "model not found '"+validation.model_uri+"'" unless validation.model_uri && model +# @model_store[validation.model_uri] = model +# end +# return model +# end end diff --git a/report/validation_data.rb b/report/validation_data.rb old mode 100644 new mode 100755 index d558c88..c4eed12 --- a/report/validation_data.rb +++ b/report/validation_data.rb @@ -107,11 +107,11 @@ module Reports @class_domain end - # is classification validation? cache to save resr-calls + # is classification/regression validation? cache to save rest-calls # - def classification? - return @is_classification if @is_classification!=nil - @is_classification = @@validation_access.classification?(self) + def feature_type + return @feature_type if @feature_type!=nil + @feature_type = @@validation_access.feature_type(self) end def predicted_variable @@ -130,7 +130,7 @@ module Reports def validation_report_uri #puts "searching for validation report: "+self.validation_uri.to_s return @validation_report_uri if @validation_report_uri!=nil - ids = @@persistance.list_reports("validation",{:validation=>validation_uri }) + ids = @@persistance.list_reports("validation",{:validation_uris=>validation_uri }) @validation_report_uri = Reports::ReportService.instance.get_uri("validation",ids[-1]) if ids and ids.size>0 end @@ -259,19 +259,12 @@ module Reports end end - # checks weather all validations are classification validations + # checks weather all validations are classification/regression validations # - def all_classification? - return unique_value("classification?") + def unique_feature_type + return unique_value("feature_type") end - # checks weather all validations are regression validations - # - def all_regression? - # WARNING, NOT TRUE: !all_classification == all_regression? - return unique_value("classification?")==false - end - # returns a new set with all validation that have values as specified in the map # # call-seq: @@ -348,39 +341,42 @@ module Reports array.push(attributes.collect{|a| a.to_s.nice_attr}) attribute_not_nil = Array.new(attributes.size) @validations.each do |v| - index = 0 + index = -1 array.push(attributes.collect do |a| + index += 1 if VAL_ATTR_VARIANCE.index(a) variance = v.send( (a.to_s+"_variance").to_sym ) end #variance = " +- "+variance.to_nice_s if variance - attribute_not_nil[index] = true if remove_nil_attributes and v.send(a)!=nil - index += 1 val = v.send(a) - - class_domain = get_domain_for_attr(a) - # get domain for classification attribute, i.e. ["true","false"] - if class_domain.size==1 && class_domain[0]!=nil - # or the attribute has a complementary value, i.e. true_positive_rate - # -> domain is reduced to one class value - raise "illegal state" unless (val.is_a?(Hash)) - val = val[class_domain[0]] - end - - if variance - if (val.is_a?(Array)) - raise "not implemented" - elsif (val.is_a?(Hash)) - val.collect{ |i,j| i.to_nice_s+": "+j.to_nice_s + " +- " + - variance[i].to_nice_s }.join(", ") + if val==nil || val.to_s.chomp.size==0 + '' + else + attribute_not_nil[index] = true if remove_nil_attributes + + class_domain = get_domain_for_attr(a) + # get domain for classification attribute, i.e. ["true","false"] + if class_domain.size==1 && class_domain[0]!=nil + # or the attribute has a complementary value, i.e. true_positive_rate + # -> domain is reduced to one class value + raise "illegal state, value for "+a.to_s+" is no hash: '"+val.to_s+"'" unless (val.is_a?(Hash)) + val = val[class_domain[0]] + end + + if variance + if (val.is_a?(Array)) + raise "not implemented" + elsif (val.is_a?(Hash)) + val.collect{ |i,j| i.to_nice_s+": "+j.to_nice_s + " +- " + + variance[i].to_nice_s }.join(", ") + else + val.to_nice_s + " +- " + variance.to_nice_s + end else - val.to_nice_s + " +- " + variance.to_nice_s + val.to_nice_s end - else - val.to_nice_s end - end) end diff --git a/report/xml_report.rb b/report/xml_report.rb old mode 100644 new mode 100755 index 76844b3..46f2a67 --- a/report/xml_report.rb +++ b/report/xml_report.rb @@ -184,7 +184,7 @@ module Reports row = Element.new("row") r.each do |v| entry = Element.new("entry") - if auto_link_urls && v.to_s =~ /depict/ #PENDING + if auto_link_urls && v.to_s =~ /depict/ || v.to_s =~ /image$/ #PENDING add_image(entry, v.to_s) elsif auto_link_urls && v.to_s =~ /^http:\/\// add_url(entry, v.to_s, v.to_s) @@ -241,7 +241,7 @@ module Reports end end - @doc.write(out,2, true, true) + @doc.write(out) #,2, true, true) out.flush end diff --git a/report/xml_report_util.rb b/report/xml_report_util.rb old mode 100644 new mode 100755 index fcb7d96..fd1a179 --- a/report/xml_report_util.rb +++ b/report/xml_report_util.rb @@ -35,21 +35,22 @@ module Reports end confusion = [] - confusion.push( [ "", "", "actual" ] + [""] * num_classes ) - confusion.push( [ "", "" ] + class_values + [ "total"]) + confusion.push( [ " ", " ", "actual" ] + [" "] * num_classes ) + confusion.push( [ " ", " " ] + class_values + [ "total"]) class_values.each do |predicted| - row = [ (confusion.size==2 ? "predicted" : ""), predicted ] + row = [ (confusion.size==2 ? "predicted" : " "), predicted ] class_values.each do |actual| row.push( confusion_matrix[{:confusion_matrix_actual => actual, :confusion_matrix_predicted => predicted}].to_nice_s ) end row.push( sum_predicted[predicted].to_nice_s ) confusion.push( row ) end - last_row = [ "", "total" ] + last_row = [ " ", "total" ] class_values.each do |actual| last_row.push( sum_actual[actual].to_nice_s ) end + last_row.push(" ") confusion.push( last_row ) return confusion diff --git a/test/test_application.rb b/test/test_application.rb old mode 100644 new mode 100755 index 48cced7..c6c7963 --- a/test/test_application.rb +++ b/test/test_application.rb @@ -2,7 +2,7 @@ post '/test_validation/?' do validationExamples = ValidationExamples.select(params[:select]) return "please \"select\" a single validation example:\n"+ValidationExamples.list if validationExamples.size!=1 or validationExamples[0].size!=1 - OpenTox::Task.as_task("Test validation",url_for("/test_validation",:full), params) do + task = OpenTox::Task.create("Test validation",url_for("/test_validation",:full)) do #,params v = validationExamples[0][0] ex = v.new ex.upload_files @@ -13,5 +13,6 @@ post '/test_validation/?' do raise ex.report_error if ex.report_error ex.validation_uri + (params[:report] ? ","+ex.report_uri : "") end + task.uri end diff --git a/test/test_examples.rb b/test/test_examples.rb old mode 100644 new mode 100755 index 8927fb1..63fb505 --- a/test/test_examples.rb +++ b/test/test_examples.rb @@ -19,15 +19,15 @@ module ValidationExamples class MajorityIrisCrossvalidation < IrisCrossvalidation def initialize - @algorithm_uri = File.join(@@config[:services]["opentox-majority"],"/regr/algorithm") + @algorithm_uri = File.join(CONFIG[:services]["opentox-majority"],"/regr/algorithm") super end end class LazarIrisCrossvalidation < IrisCrossvalidation def initialize - @algorithm_uri = File.join(@@config[:services]["opentox-algorithm"],"lazar") - @algorithm_params = "feature_generation_uri="+File.join(@@config[:services]["opentox-algorithm"],"fminer") + @algorithm_uri = File.join(CONFIG[:services]["opentox-algorithm"],"lazar") + @algorithm_params = "feature_generation_uri="+File.join(CONFIG[:services]["opentox-algorithm"],"fminer") super end end @@ -43,15 +43,65 @@ module ValidationExamples class LazarIrisSplit < IrisSplit def initialize - @algorithm_uri = File.join(@@config[:services]["opentox-algorithm"],"lazar") - @algorithm_params = "feature_generation_uri="+File.join(@@config[:services]["opentox-algorithm"],"fminer") + @algorithm_uri = File.join(CONFIG[:services]["opentox-algorithm"],"lazar") + @algorithm_params = "feature_generation_uri="+File.join(CONFIG[:services]["opentox-algorithm"],"fminer") super end end class MajorityIrisSplit < IrisSplit def initialize - @algorithm_uri = File.join(@@config[:services]["opentox-majority"],"/regr/algorithm") + @algorithm_uri = File.join(CONFIG[:services]["opentox-majority"],"/regr/algorithm") + super + end + end + + ######################################################################################################## + + class EPAFHMSplit < SplitTestValidation + def initialize + @dataset_file = File.new("data/EPAFHM.csv","r") + #@prediction_feature = "http://ot-dev.in-silico.ch/toxcreate/feature#IRIS%20unit%20risk" + @split_ratio = 0.95 + end + end + + class LazarEPAFHMSplit < EPAFHMSplit + def initialize + @algorithm_uri = File.join(CONFIG[:services]["opentox-algorithm"],"lazar") + @algorithm_params = "feature_generation_uri="+File.join(CONFIG[:services]["opentox-algorithm"],"fminer/bbrc") + super + end + end + + class MajorityEPAFHMSplit < EPAFHMSplit + def initialize + @algorithm_uri = File.join(CONFIG[:services]["opentox-majority"],"/regr/algorithm") + super + end + end + + ######################################################################################################## + + class EPAFHMCrossvalidation < CrossValidation + def initialize + @dataset_file = File.new("data/EPAFHM.csv","r") + #@prediction_feature = "http://ot-dev.in-silico.ch/toxcreate/feature#IRIS%20unit%20risk" + @num_folds = 10 + end + end + + class MajorityEPAFHMCrossvalidation < EPAFHMCrossvalidation + def initialize + @algorithm_uri = File.join(CONFIG[:services]["opentox-majority"],"/regr/algorithm") + super + end + end + + class LazarEPAFHMCrossvalidation < EPAFHMCrossvalidation + def initialize + @algorithm_uri = File.join(CONFIG[:services]["opentox-algorithm"],"lazar") + @algorithm_params = "feature_generation_uri="+File.join(CONFIG[:services]["opentox-algorithm"],"fminer/bbrc") super end end @@ -61,21 +111,22 @@ module ValidationExamples class HamsterSplit < SplitTestValidation def initialize @dataset_file = File.new("data/hamster_carcinogenicity.yaml","r") - @prediction_feature = "http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB)" + #@prediction_feature = "http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB)" + @prediction_feature = "http://localhost/dataset/1/feature/hamster_carcinogenicity" end end class LazarHamsterSplit < HamsterSplit def initialize - @algorithm_uri = File.join(@@config[:services]["opentox-algorithm"],"lazar") - @algorithm_params = "feature_generation_uri="+File.join(@@config[:services]["opentox-algorithm"],"fminer") + @algorithm_uri = File.join(CONFIG[:services]["opentox-algorithm"],"lazar") + @algorithm_params = "feature_generation_uri="+File.join(CONFIG[:services]["opentox-algorithm"],"fminer/bbrc") super end end class MajorityHamsterSplit < HamsterSplit def initialize - @algorithm_uri = File.join(@@config[:services]["opentox-majority"],"/class/algorithm") + @algorithm_uri = File.join(CONFIG[:services]["opentox-majority"],"/class/algorithm") super end end @@ -85,21 +136,22 @@ module ValidationExamples class HamsterBootstrapping < BootstrappingValidation def initialize @dataset_file = File.new("data/hamster_carcinogenicity.yaml","r") - @prediction_feature = "http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB)" + #@prediction_feature = "http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB)" + @prediction_feature = "http://localhost/dataset/1/feature/hamster_carcinogenicity" end end class LazarHamsterBootstrapping < HamsterBootstrapping def initialize - @algorithm_uri = File.join(@@config[:services]["opentox-algorithm"],"lazar") - @algorithm_params = "feature_generation_uri="+File.join(@@config[:services]["opentox-algorithm"],"fminer") + @algorithm_uri = File.join(CONFIG[:services]["opentox-algorithm"],"lazar") + @algorithm_params = "feature_generation_uri="+File.join(CONFIG[:services]["opentox-algorithm"],"fminer/bbrc") super end end class MajorityHamsterBootstrapping < HamsterBootstrapping def initialize - @algorithm_uri = File.join(@@config[:services]["opentox-majority"],"/class/algorithm") + @algorithm_uri = File.join(CONFIG[:services]["opentox-majority"],"/class/algorithm") super end end @@ -111,21 +163,22 @@ module ValidationExamples @test_target_dataset_file = File.new("data/hamster_carcinogenicity.yaml","r") @training_dataset_file = File.new("data/hamster_carcinogenicity.train.yaml","r") @test_dataset_file = File.new("data/hamster_carcinogenicity.test.yaml","r") - @prediction_feature = "http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB)" + #@prediction_feature = "http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB)" + @prediction_feature = "http://localhost/dataset/1/feature/hamster_carcinogenicity" end end class MajorityHamsterTrainingTest < HamsterTrainingTest def initialize - @algorithm_uri = File.join(@@config[:services]["opentox-majority"],"/class/algorithm") + @algorithm_uri = File.join(CONFIG[:services]["opentox-majority"],"/class/algorithm") super end end class LazarHamsterTrainingTest < HamsterTrainingTest def initialize - @algorithm_uri = File.join(@@config[:services]["opentox-algorithm"],"lazar") - @algorithm_params = "feature_generation_uri="+File.join(@@config[:services]["opentox-algorithm"],"fminer") + @algorithm_uri = File.join(CONFIG[:services]["opentox-algorithm"],"lazar") + @algorithm_params = "feature_generation_uri="+File.join(CONFIG[:services]["opentox-algorithm"],"fminer/bbrc") super end end @@ -135,22 +188,23 @@ module ValidationExamples class HamsterCrossvalidation < CrossValidation def initialize @dataset_file = File.new("data/hamster_carcinogenicity.yaml","r") - @prediction_feature = "http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB)" + #@prediction_feature = "http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB)" + @prediction_feature = "http://localhost/dataset/1/feature/hamster_carcinogenicity" @num_folds = 10 end end class MajorityHamsterCrossvalidation < HamsterCrossvalidation def initialize - @algorithm_uri = File.join(@@config[:services]["opentox-majority"],"/class/algorithm") + @algorithm_uri = File.join(CONFIG[:services]["opentox-majority"],"/class/algorithm") super end end class LazarHamsterCrossvalidation < HamsterCrossvalidation def initialize - @algorithm_uri = File.join(@@config[:services]["opentox-algorithm"],"lazar") - @algorithm_params = "feature_generation_uri="+File.join(@@config[:services]["opentox-algorithm"],"fminer") + @algorithm_uri = File.join(CONFIG[:services]["opentox-algorithm"],"lazar") + @algorithm_params = "feature_generation_uri="+File.join(CONFIG[:services]["opentox-algorithm"],"fminer/bbrc") super end end @@ -166,15 +220,15 @@ module ValidationExamples class MajorityISTHamsterCrossvalidation < ISTHamsterCrossvalidation def initialize - @algorithm_uri = File.join(@@config[:services]["opentox-majority"],"/class/algorithm") + @algorithm_uri = File.join(CONFIG[:services]["opentox-majority"],"/class/algorithm") super end end class LazarISTHamsterCrossvalidation < ISTHamsterCrossvalidation def initialize - @algorithm_uri = File.join(@@config[:services]["opentox-algorithm"],"lazar") - @algorithm_params = "feature_generation_uri="+File.join(@@config[:services]["opentox-algorithm"],"fminer") + @algorithm_uri = File.join(CONFIG[:services]["opentox-algorithm"],"lazar") + @algorithm_params = "feature_generation_uri="+File.join(CONFIG[:services]["opentox-algorithm"],"fminer") super end end @@ -215,7 +269,7 @@ module ValidationExamples class MajorityISTRatLiverCrossvalidation < ISTRatLiverCrossvalidation def initialize - @algorithm_uri = File.join(@@config[:services]["opentox-majority"],"/class/algorithm") + @algorithm_uri = File.join(CONFIG[:services]["opentox-majority"],"/class/algorithm") super end end @@ -283,7 +337,7 @@ module ValidationExamples class MajorityCacoTrainingTest < CacoTrainingTest def initialize - @algorithm_uri = File.join(@@config[:services]["opentox-majority"],"/regr/algorithm") + @algorithm_uri = File.join(CONFIG[:services]["opentox-majority"],"/regr/algorithm") super end end @@ -331,6 +385,12 @@ module ValidationExamples "12" => [ LazarHamsterBootstrapping, MajorityHamsterBootstrapping ], "12a" => [ LazarHamsterBootstrapping ], "12b" => [ MajorityHamsterBootstrapping ], + + "13a" => [ LazarEPAFHMSplit ], + "13b" => [ MajorityEPAFHMSplit ], + + "14a" => [ LazarEPAFHMCrossvalidation ], + "14b" => [ MajorityEPAFHMCrossvalidation ], } def self.list diff --git a/test/test_examples_util.rb b/test/test_examples_util.rb old mode 100644 new mode 100755 index cc31fe5..b9a1c99 --- a/test/test_examples_util.rb +++ b/test/test_examples_util.rb @@ -4,20 +4,40 @@ module ValidationExamples class Util @@dataset_uris = {} + @@prediction_features = {} - def self.upload_dataset(file, dataset_service=@@config[:services]["opentox-dataset"], file_type="application/x-yaml") + def self.upload_dataset(file, dataset_service=CONFIG[:services]["opentox-dataset"]) #, file_type="application/x-yaml") raise "File not found: "+file.path.to_s unless File.exist?(file.path) if @@dataset_uris[file.path.to_s]==nil - data = File.read(file.path) - data_uri = OpenTox::RestClientWrapper.post(dataset_service,{:content_type => file_type},data).to_s.chomp - @@dataset_uris[file.path.to_s] = data_uri - LOGGER.debug "uploaded dataset: "+data_uri + LOGGER.debug "uploading file: "+file.path.to_s + if (file.path =~ /yaml$/) + data = File.read(file.path) + #data_uri = OpenTox::RestClientWrapper.post(dataset_service,{:content_type => file_type},data).to_s.chomp + #@@dataset_uris[file.path.to_s] = data_uri + #LOGGER.debug "uploaded dataset: "+data_uri + d = OpenTox::Dataset.create + d.load_yaml(data) + d.save + @@dataset_uris[file.path.to_s] = d.uri + elsif (file.path =~ /csv$/) + d = OpenTox::Dataset.create_from_csv_file(file.path) + raise "num features not 1 (="+d.features.keys.size.to_s+"), what to predict??" if d.features.keys.size != 1 + @@prediction_features[file.path.to_s] = d.features.keys[0] + @@dataset_uris[file.path.to_s] = d.uri + else + raise "unknown file type: "+file.path.to_s + end + LOGGER.debug "uploaded dataset: "+d.uri else LOGGER.debug "file already uploaded: "+@@dataset_uris[file.path.to_s] end return @@dataset_uris[file.path.to_s] end + def self.prediction_feature_for_file(file) + @@prediction_features[file.path.to_s] + end + def self.build_compare_report(validation_examples) @comp = validation_examples[0].algorithm_uri==nil ? :model_uri : :algorithm_uri @@ -35,12 +55,12 @@ module ValidationExamples end def self.validation_post(uri, params) + if $test_case - #puts "posting: "+uri+","+params.inspect - $test_case.post uri,params + $test_case.post uri,params return wait($test_case.last_response.body) else - return OpenTox::RestClientWrapper.post(File.join(@@config[:services]["opentox-validation"],uri),params).to_s + return OpenTox::RestClientWrapper.post(File.join(CONFIG[:services]["opentox-validation"],uri),params).to_s end end @@ -50,16 +70,27 @@ module ValidationExamples $test_case.get uri,nil,'HTTP_ACCEPT' => accept_header return wait($test_case.last_response.body) else - return OpenTox::RestClientWrapper.get(File.join(@@config[:services]["opentox-validation"],uri),{:accept => accept_header}) + return OpenTox::RestClientWrapper.get(File.join(CONFIG[:services]["opentox-validation"],uri),{:accept => accept_header}) + end + end + + def self.validation_delete(uri, accept_header='application/rdf+xml') + + if $test_case + $test_case.delete uri,nil,'HTTP_ACCEPT' => accept_header + return wait($test_case.last_response.body) + else + return OpenTox::RestClientWrapper.delete(File.join(CONFIG[:services]["opentox-validation"],uri),{:accept => accept_header}) end end + def self.wait(uri) - if OpenTox::Utils.task_uri?(uri) - task = OpenTox::Task.find(uri) + if uri.task_uri? + task = OpenTox::Task.find(uri.to_s.chomp) task.wait_for_completion - raise "task failed: "+uri.to_s+", error is:\n"+task.description if task.error? - uri = task.resultURI + raise "task failed: "+uri.to_s+", error is:\n"+task.description.to_s if task.error? + uri = task.result_uri end uri end @@ -214,6 +245,10 @@ module ValidationExamples send("#{uri.to_s}=".to_sym, Util.upload_dataset(send(file))) end end + + if (params.include?(:prediction_feature) and @prediction_feature==nil and @dataset_uri and @dataset_file) + @prediction_feature = Util.prediction_feature_for_file(@dataset_file) + end end def check_requirements @@ -222,21 +257,42 @@ module ValidationExamples end end + def delete + begin + if @validation_uri =~ /crossvalidation/ + cv = "crossvalidation/" + else + cv = "" + end + Util.validation_delete '/'+cv+@validation_uri.split('/')[-1] if @validation_uri + rescue => ex + puts "Could not delete validation: "+ex.message + end + begin + Util.validation_delete '/report/'+report_type+'/'+@report_uri.split('/')[-1] if @report_uri + rescue => ex + puts "Could not delete report:' "+@report_uri+" "+ex.message + end + end + def report begin @report_uri = Util.validation_post '/report/'+report_type,{:validation_uris => @validation_uri} rescue => ex + puts "could not create report: "+ex.message + raise ex @report_error = ex.message end end def validate - #begin + begin @validation_uri = Util.validation_post '/'+validation_type, get_params - #rescue => ex - # @validation_error = ex.message - # LOGGER.error ex.message - #end + rescue => ex + puts "could not validate: "+ex.message + @validation_error = ex.message + LOGGER.error ex.message + end end def compare_yaml_vs_rdf @@ -308,6 +364,10 @@ module ValidationExamples def opt_params [ :algorithm_params, :test_target_dataset_uri ] end + + def validation_type + "training_test_validation" + end end class SplitTestValidation < ValidationExample diff --git a/validation/validation_application.rb b/validation/validation_application.rb old mode 100644 new mode 100755 index 2a2bcb0..9c6c60c --- a/validation/validation_application.rb +++ b/validation/validation_application.rb @@ -1,16 +1,17 @@ -[ 'rubygems', 'sinatra', 'sinatra/url_for', 'opentox-ruby-api-wrapper' ].each do |lib| +[ 'rubygems', 'sinatra', 'sinatra/url_for', 'opentox-ruby' ].each do |lib| require lib end require 'lib/merge.rb' -require 'lib/active_record_setup.rb' +#require 'lib/active_record_setup.rb' require 'validation/validation_service.rb' get '/crossvalidation/?' do LOGGER.info "list all crossvalidations" - uri_list = Validation::Crossvalidation.find_like(params).collect{ |cv| cv.crossvalidation_uri }.join("\n")+"\n" + uri_list = Validation::Crossvalidation.all.collect{ |cv| cv.crossvalidation_uri }.join("\n")+"\n" + #uri_list = Validation::Crossvalidation.find_like(params).collect{ |cv| cv.crossvalidation_uri }.join("\n")+"\n" if request.env['HTTP_ACCEPT'] =~ /text\/html/ related_links = "Single validations: "+$sinatra.url_for("/",:full)+"\n"+ @@ -28,8 +29,7 @@ get '/crossvalidation/?' do end post '/crossvalidation/?' do - content_type "text/uri-list" - task_uri = OpenTox::Task.as_task( "Perform crossvalidation", url_for("/crossvalidation", :full), params ) do |task| + task = OpenTox::Task.create( "Perform crossvalidation", url_for("/crossvalidation", :full) ) do |task| #, params LOGGER.info "creating crossvalidation "+params.inspect halt 400, "dataset_uri missing" unless params[:dataset_uri] halt 400, "algorithm_uri missing" unless params[:algorithm_uri] @@ -44,20 +44,25 @@ post '/crossvalidation/?' do cv.perform_cv( params[:prediction_feature], params[:algorithm_params], task ) cv.crossvalidation_uri end - halt 202,task_uri+"\n" + content_type 'text/uri-list' + halt 503,task.uri+"\n" if task.status == "Cancelled" + halt 202,task.uri end post '/crossvalidation/cleanup/?' do LOGGER.info "crossvalidation cleanup, starting..." content_type "text/uri-list" deleted = [] - Validation::Crossvalidation.find_like(params).each do |cv| - num_vals = Validation::Validation.find( :all, :conditions => { :crossvalidation_id => cv.id } ).size - if cv.num_folds != num_vals - LOGGER.debug "delete cv with id:"+cv.id.to_s+" num-folds should be "+cv.num_folds.to_s+", is "+num_vals.to_s + #Validation::Crossvalidation.find_like(params).each do |cv| + Validation::Crossvalidation.all( { :finished => false } ).each do |cv| + #num_vals = Validation::Validation.find( :all, :conditions => { :crossvalidation_id => cv.id } ).size + #num_vals = Validation::Validation.all( :crossvalidation_id => cv.id ).size + #if cv.num_folds != num_vals || !cv.finished + LOGGER.debug "delete cv with id:"+cv.id.to_s+", finished is false" deleted << cv.crossvalidation_uri - Validation::Crossvalidation.delete(cv.id) - end + #Validation::Crossvalidation.delete(cv.id) + cv.delete + #end end LOGGER.info "crossvalidation cleanup, deleted "+deleted.size.to_s+" cvs" deleted.join("\n")+"\n" @@ -73,11 +78,13 @@ end get '/crossvalidation/:id' do LOGGER.info "get crossvalidation with id "+params[:id].to_s - begin - crossvalidation = Validation::Crossvalidation.find(params[:id]) - rescue ActiveRecord::RecordNotFound => ex - halt 404, "Crossvalidation '#{params[:id]}' not found." - end +# begin +# #crossvalidation = Validation::Crossvalidation.find(params[:id]) +# rescue ActiveRecord::RecordNotFound => ex +# halt 404, "Crossvalidation '#{params[:id]}' not found." +# end + crossvalidation = Validation::Crossvalidation.get(params[:id]) + halt 404,"Crossvalidation '#{params[:id]}' not found." unless crossvalidation case request.env['HTTP_ACCEPT'].to_s when "application/rdf+xml" @@ -104,19 +111,24 @@ end get '/crossvalidation/:id/statistics' do LOGGER.info "get merged validation-result for crossvalidation with id "+params[:id].to_s - begin - crossvalidation = Validation::Crossvalidation.find(params[:id]) - rescue ActiveRecord::RecordNotFound => ex - halt 404, "Crossvalidation '#{params[:id]}' not found." - end +# begin + #crossvalidation = Validation::Crossvalidation.find(params[:id]) +# rescue ActiveRecord::RecordNotFound => ex +# halt 404, "Crossvalidation '#{params[:id]}' not found." +# end + #crossvalidation = Validation::Crossvalidation.find(params[:id]) + crossvalidation = Validation::Crossvalidation.get(params[:id]) + + halt 404,"Crossvalidation '#{params[:id]}' not found." unless crossvalidation halt 400,"Crossvalidation '"+params[:id].to_s+"' not finished" unless crossvalidation.finished Lib::MergeObjects.register_merge_attributes( Validation::Validation, - Lib::VAL_MERGE_AVG,Lib::VAL_MERGE_SUM,Lib::VAL_MERGE_GENERAL-[:validation_uri,:crossvalidation_uri]) unless + Lib::VAL_MERGE_AVG,Lib::VAL_MERGE_SUM,Lib::VAL_MERGE_GENERAL-[:date,:validation_uri,:crossvalidation_uri]) unless Lib::MergeObjects.merge_attributes_registered?(Validation::Validation) - v = Lib::MergeObjects.merge_array_objects( Validation::Validation.find( :all, :conditions => { :crossvalidation_id => params[:id] } ) ) - v.date = nil + #v = Lib::MergeObjects.merge_array_objects( Validation::Validation.find( :all, :conditions => { :crossvalidation_id => params[:id] } ) ) + v = Lib::MergeObjects.merge_array_objects( Validation::Validation.all( :crossvalidation_id => params[:id] ) ) + v.created_at = nil v.id = nil case request.env['HTTP_ACCEPT'].to_s @@ -136,12 +148,16 @@ end delete '/crossvalidation/:id/?' do LOGGER.info "delete crossvalidation with id "+params[:id].to_s content_type "text/plain" - begin - crossvalidation = Validation::Crossvalidation.find(params[:id]) - rescue ActiveRecord::RecordNotFound => ex - halt 404, "Crossvalidation '#{params[:id]}' not found." - end - Validation::Crossvalidation.delete(params[:id]) +# begin + #crossvalidation = Validation::Crossvalidation.find(params[:id]) +# rescue ActiveRecord::RecordNotFound => ex +# halt 404, "Crossvalidation '#{params[:id]}' not found." +# end +# Validation::Crossvalidation.delete(params[:id]) + + cv = Validation::Crossvalidation.get(params[:id]) + halt 404,"Crossvalidation '#{params[:id]}' not found." unless cv + cv.delete end #get '/crossvalidation/:id/validations' do @@ -158,14 +174,16 @@ end get '/crossvalidation/:id/predictions' do LOGGER.info "get predictions for crossvalidation with id "+params[:id].to_s begin - crossvalidation = Validation::Crossvalidation.find(params[:id]) + #crossvalidation = Validation::Crossvalidation.find(params[:id]) + crossvalidation = Validation::Crossvalidation.get(params[:id]) rescue ActiveRecord::RecordNotFound => ex halt 404, "Crossvalidation '#{params[:id]}' not found." end halt 400,"Crossvalidation '"+params[:id].to_s+"' not finished" unless crossvalidation.finished content_type "application/x-yaml" - validations = Validation::Validation.find( :all, :conditions => { :crossvalidation_id => params[:id] } ) + #validations = Validation::Validation.find( :all, :conditions => { :crossvalidation_id => params[:id] } ) + validations = Validation::Validation.all( :crossvalidation_id => params[:id] ) p = Lib::OTPredictions.to_array( validations.collect{ |v| v.compute_validation_stats_with_model(nil, true) } ).to_yaml case request.env['HTTP_ACCEPT'].to_s @@ -184,8 +202,11 @@ get '/crossvalidation/:id/predictions' do end get '/?' do + LOGGER.info "list all validations, params: "+params.inspect - uri_list = Validation::Validation.find_like(params).collect{ |v| v.validation_uri }.join("\n")+"\n" + #uri_list = Validation::Validation.find_like(params).collect{ |v| v.validation_uri }.join("\n")+"\n" + uri_list = Validation::Validation.all.collect{ |v| v.validation_uri }.join("\n")+"\n" + if request.env['HTTP_ACCEPT'] =~ /text\/html/ related_links = "To perform a validation:\n"+ @@ -216,7 +237,7 @@ post '/test_set_validation' do content_type "text/uri-list" LOGGER.info "creating test-set-validation "+params.inspect if params[:model_uri] and params[:test_dataset_uri] and !params[:training_dataset_uri] and !params[:algorithm_uri] - task_uri = OpenTox::Task.as_task( "Perform test-set-validation", url_for("/", :full), params ) do |task| + task = OpenTox::Task.create( "Perform test-set-validation", url_for("/", :full) ) do |task| #, params v = Validation::Validation.new :validation_type => "test_set_validation", :model_uri => params[:model_uri], :test_dataset_uri => params[:test_dataset_uri], @@ -225,7 +246,7 @@ post '/test_set_validation' do v.validate_model( task ) v.validation_uri end - halt 202,task_uri+"\n" + halt 202,task.uri+"\n" else halt 400, "illegal parameters, pls specify model_uri and test_dataset_uri\n"+ "params given: "+params.inspect @@ -234,7 +255,10 @@ end get '/test_set_validation' do LOGGER.info "list all test-set-validations, params: "+params.inspect - uri_list = Validation::Validation.find( :all, :conditions => { :validation_type => "test_set_validation" } ).collect{ |v| v.validation_uri }.join("\n")+"\n" + + #uri_list = Validation::Validation.find( :all, :conditions => { :validation_type => "test_set_validation" } ).collect{ |v| v.validation_uri }.join("\n")+"\n" + uri_list = Validation::Validation.all( :validation_type => "test_set_validation" ).collect{ |v| v.validation_uri }.join("\n")+"\n" + if request.env['HTTP_ACCEPT'] =~ /text\/html/ related_links = "All validations: "+$sinatra.url_for("/",:full)+"\n"+ @@ -252,10 +276,9 @@ get '/test_set_validation' do end post '/training_test_validation/?' do - content_type "text/uri-list" LOGGER.info "creating training-test-validation "+params.inspect if params[:algorithm_uri] and params[:training_dataset_uri] and params[:test_dataset_uri] and params[:prediction_feature] and !params[:model_uri] - task_uri = OpenTox::Task.as_task( "Perform training-test-validation", url_for("/", :full), params ) do |task| + task = OpenTox::Task.create( "Perform training-test-validation", url_for("/", :full) ) do |task| #, params v = Validation::Validation.new :validation_type => "training_test_validation", :algorithm_uri => params[:algorithm_uri], :training_dataset_uri => params[:training_dataset_uri], @@ -265,7 +288,8 @@ post '/training_test_validation/?' do v.validate_algorithm( params[:algorithm_params], task ) v.validation_uri end - halt 202,task_uri+"\n" + content_type "text/uri-list" + halt 202,task.uri+"\n" else halt 400, "illegal parameters, pls specify algorithm_uri, training_dataset_uri, test_dataset_uri, prediction_feature\n"+ "params given: "+params.inspect @@ -274,7 +298,8 @@ end get '/training_test_validation' do LOGGER.info "list all training-test-validations, params: "+params.inspect - uri_list = Validation::Validation.find( :all, :conditions => { :validation_type => "training_test_validation" } ).collect{ |v| v.validation_uri }.join("\n")+"\n" + #uri_list = Validation::Validation.find( :all, :conditions => { :validation_type => "training_test_validation" } ).collect{ |v| v.validation_uri }.join("\n")+"\n" + uri_list = Validation::Validation.all( :validation_type => "training_test_validation" ).collect{ |v| v.validation_uri }.join("\n")+"\n" if request.env['HTTP_ACCEPT'] =~ /text\/html/ related_links = "All validations: "+$sinatra.url_for("/",:full)+"\n"+ @@ -298,7 +323,7 @@ end post '/bootstrapping' do content_type "text/uri-list" - task_uri = OpenTox::Task.as_task( "Perform bootstrapping validation", url_for("/bootstrapping", :full), params ) do |task| + task = OpenTox::Task.create( "Perform bootstrapping validation", url_for("/bootstrapping", :full) ) do |task| #, params LOGGER.info "performing bootstrapping validation "+params.inspect halt 400, "dataset_uri missing" unless params[:dataset_uri] halt 400, "algorithm_uri missing" unless params[:algorithm_uri] @@ -315,12 +340,13 @@ post '/bootstrapping' do v.validate_algorithm( params[:algorithm_params], OpenTox::SubTask.create(task,33,100)) v.validation_uri end - halt 202,task_uri+"\n" + halt 202,task.uri+"\n" end get '/bootstrapping' do LOGGER.info "list all bootstrapping-validations, params: "+params.inspect - uri_list = Validation::Validation.find( :all, :conditions => { :validation_type => "bootstrapping" } ).collect{ |v| v.validation_uri }.join("\n")+"\n" + #uri_list = Validation::Validation.find( :all, :conditions => { :validation_type => "bootstrapping" } ).collect{ |v| v.validation_uri }.join("\n")+"\n" + uri_list = Validation::Validation.all( :validation_type => "bootstrapping" ).collect{ |v| v.validation_uri }.join("\n")+"\n" if request.env['HTTP_ACCEPT'] =~ /text\/html/ related_links = "All validations: "+$sinatra.url_for("/",:full)+"\n"+ @@ -343,8 +369,7 @@ end post '/training_test_split' do - content_type "text/uri-list" - task_uri = OpenTox::Task.as_task( "Perform training test split validation", url_for("/training_test_split", :full), params ) do |task| + task = OpenTox::Task.create( "Perform training test split validation", url_for("/training_test_split", :full) ) do |task| #, params LOGGER.info "creating training test split "+params.inspect halt 400, "dataset_uri missing" unless params[:dataset_uri] @@ -362,12 +387,16 @@ post '/training_test_split' do v.validate_algorithm( params[:algorithm_params], OpenTox::SubTask.create(task,33,100)) v.validation_uri end - halt 202,task_uri+"\n" + content_type 'text/uri-list' + halt 503,task.uri+"\n" if task.status == "Cancelled" + halt 202,task.uri + end get '/training_test_split' do LOGGER.info "list all training-test-split-validations, params: "+params.inspect - uri_list = Validation::Validation.find( :all, :conditions => { :validation_type => "training_test_split" } ).collect{ |v| v.validation_uri }.join("\n")+"\n" + #uri_list = Validation::Validation.find( :all, :conditions => { :validation_type => "training_test_split" } ).collect{ |v| v.validation_uri }.join("\n")+"\n" + uri_list = Validation::Validation.all( :validation_type => "training_test_split" ).collect{ |v| v.validation_uri }.join("\n")+"\n" if request.env['HTTP_ACCEPT'] =~ /text\/html/ related_links = "All validations: "+$sinatra.url_for("/",:full)+"\n"+ @@ -393,10 +422,12 @@ post '/cleanup/?' do LOGGER.info "validation cleanup, starting..." content_type "text/uri-list" deleted = [] - Validation::Validation.find( :all, :conditions => { :prediction_dataset_uri => nil } ).each do |val| - LOGGER.debug "delete val with id:"+val.id.to_s+" prediction_dataset_uri is nil" + #Validation::Validation.find( :all, :conditions => { :prediction_dataset_uri => nil } ).each do |val| + Validation::Validation.all( :finished => false ).each do |val| + LOGGER.debug "delete val with id:"+val.id.to_s+", finished is false" deleted << val.validation_uri - Validation::Validation.delete(val.id) + #Validation::Validation.delete(val.id) + val.delete end LOGGER.info "validation cleanup, deleted "+deleted.size.to_s+" validations" deleted.join("\n")+"\n" @@ -413,7 +444,7 @@ end post '/validate_datasets' do content_type "text/uri-list" - task_uri = OpenTox::Task.as_task( "Perform dataset validation", url_for("/validate_datasets", :full), params ) do |task| + task = OpenTox::Task.create( "Perform dataset validation", url_for("/validate_datasets", :full) ) do |task| #, params LOGGER.info "validating values "+params.inspect halt 400, "test_dataset_uri missing" unless params[:test_dataset_uri] halt 400, "prediction_datset_uri missing" unless params[:prediction_dataset_uri] @@ -429,20 +460,21 @@ post '/validate_datasets' do params[:classification] or params[:regression] predicted_feature = params.delete("predicted_feature") - clazz = params.delete("classification")!=nil - regr = params.delete("regression")!=nil + feature_type = "classification" if params.delete("classification")!=nil + feature_type = "regression" if params.delete("regression")!=nil v = Validation::Validation.new params - v.compute_validation_stats((clazz and !regr),predicted_feature,nil,false,task) + v.compute_validation_stats(feature_type,predicted_feature,nil,nil,false,task) end v.validation_uri end - halt 202,task_uri+"\n" + halt 202,task.uri+"\n" end get '/:id/predictions' do LOGGER.info "get validation predictions "+params.inspect begin - validation = Validation::Validation.find(params[:id]) + #validation = Validation::Validation.find(params[:id]) + validation = Validation::Validation.get(params[:id]) rescue ActiveRecord::RecordNotFound => ex halt 404, "Validation '#{params[:id]}' not found." end @@ -482,7 +514,8 @@ end get '/:id' do LOGGER.info "get validation with id "+params[:id].to_s+" '"+request.env['HTTP_ACCEPT'].to_s+"'" begin - validation = Validation::Validation.find(params[:id]) + #validation = Validation::Validation.find(params[:id]) + validation = Validation::Validation.get(params[:id]) rescue ActiveRecord::RecordNotFound => ex halt 404, "Validation '#{params[:id]}' not found." end @@ -511,11 +544,13 @@ end delete '/:id' do LOGGER.info "delete validation with id "+params[:id].to_s - begin - validation = Validation::Validation.find(params[:id]) - rescue ActiveRecord::RecordNotFound => ex - halt 404, "Validation '#{params[:id]}' not found." - end +# begin + #validation = Validation::Validation.find(params[:id]) +# rescue ActiveRecord::RecordNotFound => ex +# halt 404, "Validation '#{params[:id]}' not found." +# end + validation = Validation::Validation.get(params[:id]) + halt 404, "Validation '#{params[:id]}' not found." unless validation content_type "text/plain" validation.delete end \ No newline at end of file diff --git a/validation/validation_format.rb b/validation/validation_format.rb old mode 100644 new mode 100755 index 0db8579..7c6396a --- a/validation/validation_format.rb +++ b/validation/validation_format.rb @@ -24,13 +24,14 @@ module Validation h[:crossvalidation_info] = cv end if classification_statistics + raise "classification_statistics is no has: "+classification_statistics.class.to_s unless classification_statistics.is_a?(Hash) clazz = {} Lib::VAL_CLASS_PROPS_SINGLE.each{ |p| clazz[p] = classification_statistics[p] } # transpose results per class class_values = {} Lib::VAL_CLASS_PROPS_PER_CLASS.each do |p| - $sinatra.halt 500, "missing classification statitstics: "+p.to_s+" "+classification_statistics.inspect unless classification_statistics[p] + $sinatra.halt 500, "missing classification statitstics: "+p.to_s+" "+classification_statistics.inspect if classification_statistics[p]==nil classification_statistics[p].each do |class_value, property_value| class_values[class_value] = {:class_value => class_value} unless class_values.has_key?(class_value) map = class_values[class_value] @@ -82,7 +83,8 @@ module Validation h[p] = self.send(p) end v = [] - Validation.find( :all, :conditions => { :crossvalidation_id => self.id } ).each do |val| + #Validation.find( :all, :conditions => { :crossvalidation_id => self.id } ).each do |val| + Validation.all( :crossvalidation_id => self.id ).each do |val| v.push( val.validation_uri.to_s ) end h[:validation_uris] = v diff --git a/validation/validation_service.rb b/validation/validation_service.rb old mode 100644 new mode 100755 index 7204699..01fba7b --- a/validation/validation_service.rb +++ b/validation/validation_service.rb @@ -1,7 +1,5 @@ -require "rdf/redland" - require "lib/validation_db.rb" require "lib/ot_predictions.rb" @@ -35,13 +33,13 @@ module Validation class Validation < Lib::Validation # constructs a validation object, Rsets id und uri - def initialize( params={} ) - $sinatra.halt 500,"do not set id manually" if params[:id] - params[:finished] = false - super params - self.save! - raise "internal error, validation-id not set "+to_yaml if self.id==nil - end + #def initialize( params={} ) + #$sinatra.halt 500,"do not set id manually" if params[:id] + #params[:finished] = false + #super params + #self.save! + #raise "internal error, validation-id not set "+to_yaml if self.id==nil + #end # deletes a validation # PENDING: model and referenced datasets are deleted as well, keep it that way? @@ -55,7 +53,8 @@ module Validation #dataset.delete if dataset #end - Validation::Validation.delete(self.id) + #Validation::Validation.delete(self.id) + self.destroy "Successfully deleted validation "+self.id.to_s+"." end @@ -76,14 +75,22 @@ module Validation end LOGGER.debug "building model '"+algorithm_uri.to_s+"' "+params.inspect - model = OpenTox::Model::PredictionModel.build(algorithm_uri, params, - OpenTox::SubTask.create(task, 0, 33) ) - $sinatra.halt 500,"model building failed" unless model - self.attributes = { :model_uri => model.uri } - self.save! + algorithm = OpenTox::Algorithm::Generic.new(algorithm_uri) + self.model_uri = algorithm.run(params) + task.progress(33) + + #model = OpenTox::Model::PredictionModel.build(algorithm_uri, params, + # OpenTox::SubTask.create(task, 0, 33) ) - $sinatra.halt 500,"error after building model: model.dependent_variable != validation.prediciton_feature ("+ - model.dependentVariables.to_s+" != "+self.prediction_feature+")" if self.prediction_feature!=model.dependentVariables + $sinatra.halt 500,"model building failed" unless model_uri + #self.attributes = { :model_uri => model_uri } + #self.save! + +# self.save if self.new? +# self.update :model_uri => model_uri + + #$sinatra.halt 500,"error after building model: model.dependent_variable != validation.prediciton_feature ("+ + # model.dependentVariables.to_s+" != "+self.prediction_feature+")" if self.prediction_feature!=model.dependentVariables validate_model OpenTox::SubTask.create(task, 33, 100) end @@ -95,70 +102,103 @@ module Validation $sinatra.halt 500,"validation_type missing" unless self.validation_type LOGGER.debug "validating model '"+self.model_uri+"'" - model = OpenTox::Model::PredictionModel.find(self.model_uri) + #model = OpenTox::Model::PredictionModel.find(self.model_uri) + #$sinatra.halt 400, "model not found: "+self.model_uri.to_s unless model + model = OpenTox::Model::Generic.find(self.model_uri) $sinatra.halt 400, "model not found: "+self.model_uri.to_s unless model unless self.algorithm_uri - self.attributes = { :algorithm_uri => model.algorithm } - self.save! +# self.attributes = { :algorithm_uri => model.algorithm } +# self.save! + #self.update :algorithm_uri => model.algorithm + self.algorithm_uri = model.metadata[OT.algorithm] end + dependentVariables = model.metadata[OT.dependentVariables] if self.prediction_feature - $sinatra.halt 400, "error validating model: model.dependent_variable != validation.prediciton_feature ("+ - model.dependentVariables+" != "+self.prediction_feature+")" if self.prediction_feature!=model.dependentVariables + $sinatra.halt 400, "error validating model: model.dependent_variable != validation.prediction_feature ("+ + dependentVariables.to_s+" != "+self.prediction_feature+"), model-metadata is "+model.metadata.inspect if self.prediction_feature!=dependentVariables else - $sinatra.halt 400, "model has no dependentVariables specified, please give prediction feature for model validation" unless model.dependentVariables - self.attributes = { :prediction_feature => model.dependentVariables } - self.save! + $sinatra.halt 400, "model has no dependentVariables specified, please give prediction feature for model validation" unless dependentVariables + #self.attributes = { :prediction_feature => model.dependentVariables } + #self.save! + #self.update :prediction_feature => model.dependentVariables + self.prediction_feature = model.metadata[OT.dependentVariables] end prediction_dataset_uri = "" benchmark = Benchmark.measure do - prediction_dataset_uri = model.predict_dataset(self.test_dataset_uri, OpenTox::SubTask.create(task, 0, 50)) + #prediction_dataset_uri = model.predict_dataset(self.test_dataset_uri, OpenTox::SubTask.create(task, 0, 50)) + prediction_dataset_uri = model.run(:dataset_uri => self.test_dataset_uri) + task.progress(50) end - self.attributes = { :prediction_dataset_uri => prediction_dataset_uri, - :real_runtime => benchmark.real } - self.save! - +# self.attributes = { :prediction_dataset_uri => prediction_dataset_uri, +# :real_runtime => benchmark.real } +# self.save! +# self.update :prediction_dataset_uri => prediction_dataset_uri, +# :real_runtime => benchmark.real + self.prediction_dataset_uri = prediction_dataset_uri + self.real_runtime = benchmark.real + compute_validation_stats_with_model( model, false, OpenTox::SubTask.create(task, 50, 100) ) end def compute_validation_stats_with_model( model=nil, dry_run=false, task=nil ) - model = OpenTox::Model::PredictionModel.find(self.model_uri) if model==nil and self.model_uri + #model = OpenTox::Model::PredictionModel.find(self.model_uri) if model==nil and self.model_uri + #$sinatra.halt 400, "model not found: "+self.model_uri.to_s unless model + model = OpenTox::Model::Generic.find(self.model_uri) if model==nil and self.model_uri $sinatra.halt 400, "model not found: "+self.model_uri.to_s unless model - prediction_feature = self.prediction_feature ? nil : model.dependentVariables - algorithm_uri = self.algorithm_uri ? nil : model.algorithm - compute_validation_stats( model.classification?, model.predictedVariables, + + dependentVariables = model.metadata[OT.dependentVariables] + prediction_feature = self.prediction_feature ? nil : dependentVariables + algorithm_uri = self.algorithm_uri ? nil : model.metadata[OT.algorithm] + predictedVariables = model.metadata[OT.predictedVariables] + compute_validation_stats( model.feature_type, predictedVariables, prediction_feature, algorithm_uri, dry_run, task ) end - def compute_validation_stats( classification, predicted_feature, prediction_feature=nil, + def compute_validation_stats( feature_type, predicted_feature, prediction_feature=nil, algorithm_uri=nil, dry_run=false, task=nil ) - self.attributes = { :prediction_feature => prediction_feature } if self.prediction_feature==nil && prediction_feature - self.attributes = { :algorithm_uri => algorithm_uri } if self.algorithm_uri==nil && algorithm_uri - self.save! +# self.attributes = { :prediction_feature => prediction_feature } if self.prediction_feature==nil && prediction_feature +# self.attributes = { :algorithm_uri => algorithm_uri } if self.algorithm_uri==nil && algorithm_uri +# self.save! +# self.update :prediction_feature => prediction_feature if self.prediction_feature==nil && prediction_feature +# self.update :algorithm_uri => algorithm_uri if self.algorithm_uri==nil && algorithm_uri + self.prediction_feature = prediction_feature if self.prediction_feature==nil && prediction_feature + self.algorithm_uri = algorithm_uri if self.algorithm_uri==nil && algorithm_uri LOGGER.debug "computing prediction stats" - prediction = Lib::OTPredictions.new( classification, + prediction = Lib::OTPredictions.new( feature_type, self.test_dataset_uri, self.test_target_dataset_uri, self.prediction_feature, self.prediction_dataset_uri, predicted_feature, OpenTox::SubTask.create(task, 0, 80) ) #reading datasets and computing the main stats is 80% the work - + unless dry_run - if prediction.classification? - self.attributes = { :classification_statistics => prediction.compute_stats } - else - self.attributes = { :regression_statistics => prediction.compute_stats } + case feature_type + when "classification" + #self.attributes = { :classification_statistics => prediction.compute_stats } + #self.update :classification_statistics => prediction.compute_stats + self.classification_statistics = prediction.compute_stats + when "regression" + #self.attributes = { :regression_statistics => prediction.compute_stats } + self.regression_statistics = prediction.compute_stats end - self.attributes = { :num_instances => prediction.num_instances, +# self.attributes = { :num_instances => prediction.num_instances, +# :num_without_class => prediction.num_without_class, +# :percent_without_class => prediction.percent_without_class, +# :num_unpredicted => prediction.num_unpredicted, +# :percent_unpredicted => prediction.percent_unpredicted, +# :finished => true} +# self.save! + self.attributes= {:num_instances => prediction.num_instances, :num_without_class => prediction.num_without_class, :percent_without_class => prediction.percent_without_class, :num_unpredicted => prediction.num_unpredicted, :percent_unpredicted => prediction.percent_unpredicted, :finished => true} - self.save! + self.save end task.progress(100) if task @@ -169,17 +209,17 @@ module Validation class Crossvalidation < Lib::Crossvalidation # constructs a crossvalidation, id and uri are set - def initialize( params={} ) - - $sinatra.halt 500,"do not set id manually" if params[:id] - params[:num_folds] = 10 if params[:num_folds]==nil - params[:random_seed] = 1 if params[:random_seed]==nil - params[:stratified] = false if params[:stratified]==nil - params[:finished] = false - super params - self.save! - raise "internal error, crossvalidation-id not set" if self.id==nil - end + #def initialize( params={} ) + # + # $sinatra.halt 500,"do not set id manually" if params[:id] + # params[:num_folds] = 10 if params[:num_folds]==nil + # params[:random_seed] = 1 if params[:random_seed]==nil + # params[:stratified] = false if params[:stratified]==nil + # params[:finished] = false + # super params + # self.save! + # raise "internal error, crossvalidation-id not set" if self.id==nil + #end def perform_cv ( prediction_feature, algorithm_params=nil, task=nil ) @@ -189,7 +229,7 @@ module Validation # deletes a crossvalidation, all validations are deleted as well def delete - Validation.all(:crossvalidation_id => self.id).each{ |v| v.delete } + Validation.all(:crossvalidation_id => self.id).each{ |v| v.destroy } destroy "Successfully deleted crossvalidation "+self.id.to_s+"." end @@ -216,8 +256,11 @@ module Validation i += 1 end - self.attributes = { :finished => true } - self.save! +# self.attributes = { :finished => true } +# self.save! + #self.save if self.new? + self.finished = true + self.save end private @@ -255,7 +298,7 @@ module Validation # stores uris in validation objects def create_new_cv_datasets( prediction_feature, task = nil ) - $sinatra.halt(500,"random seed not set") unless self.random_seed + $sinatra.halt(500,"random seed not set "+self.inspect) unless self.random_seed LOGGER.debug "creating datasets for crossvalidation" orig_dataset = OpenTox::Dataset.find(self.dataset_uri) $sinatra.halt 400, "Dataset not found: "+self.dataset_uri.to_s unless orig_dataset @@ -302,7 +345,7 @@ module Validation end LOGGER.debug "cv: num instances for each fold: "+split_compounds.collect{|c| c.size}.join(", ") - test_features = orig_dataset.features.dclone - [prediction_feature] + test_features = orig_dataset.features.keys.dclone - [prediction_feature] @tmp_validations = [] @@ -332,11 +375,17 @@ module Validation $sinatra.halt 500,"internal error, num train compounds not correct" unless shuffled_compounds.size - test_compounds.size == train_compounds.size LOGGER.debug "training set: "+datasetname+"_train, compounds: "+train_compounds.size.to_s - train_dataset_uri = orig_dataset.create_new_dataset( train_compounds, orig_dataset.features, datasetname + '_train', source ) + #train_dataset_uri = orig_dataset.create_new_dataset( train_compounds, orig_dataset.features, datasetname + '_train', source ) + train_dataset_uri = orig_dataset.split( train_compounds, orig_dataset.features.keys, + { DC.title => datasetname + '_train', DC.creator => source } ).uri LOGGER.debug "test set: "+datasetname+"_test, compounds: "+test_compounds.size.to_s - test_dataset_uri = orig_dataset.create_new_dataset( test_compounds, test_features, datasetname + '_test', source ) - + #test_dataset_uri = orig_dataset.create_new_dataset( test_compounds, test_features, datasetname + '_test', source ) + test_dataset_uri = orig_dataset.split( test_compounds, test_features, + { DC.title => datasetname + '_test', DC.creator => source } ).uri + + #make sure self.id is set + self.save if self.new? tmp_validation = { :validation_type => "crossvalidation", :training_dataset_uri => train_dataset_uri, :test_dataset_uri => test_dataset_uri, @@ -362,6 +411,7 @@ module Validation random_seed=1 unless random_seed orig_dataset = OpenTox::Dataset.find orig_dataset_uri + orig_dataset.load_all $sinatra.halt 400, "Dataset not found: "+orig_dataset_uri.to_s unless orig_dataset if prediction_feature $sinatra.halt 400, "Prediction feature '"+prediction_feature.to_s+ @@ -374,6 +424,11 @@ module Validation compounds = orig_dataset.compounds $sinatra.halt 400, "Cannot split datset, num compounds in dataset < 2 ("+compounds.size.to_s+")" if compounds.size<2 + compounds.each do |c| + $sinatra.halt 400, "Bootstrapping not yet implemented for duplicate compounds" if + orig_dataset.data_entries[c][prediction_feature].size > 1 + end + srand random_seed.to_i while true training_compounds = [] @@ -397,23 +452,35 @@ module Validation task.progress(33) if task result = {} - result[:training_dataset_uri] = orig_dataset.create_new_dataset( training_compounds, - orig_dataset.features, - "Bootstrapping training dataset of "+orig_dataset.title.to_s, - $sinatra.url_for('/bootstrapping',:full) ) +# result[:training_dataset_uri] = orig_dataset.create_new_dataset( training_compounds, +# orig_dataset.features, +# "Bootstrapping training dataset of "+orig_dataset.title.to_s, +# $sinatra.url_for('/bootstrapping',:full) ) + result[:training_dataset_uri] = orig_dataset.split( training_compounds, + orig_dataset.features.keys, + { DC.title => "Bootstrapping training dataset of "+orig_dataset.title.to_s, + DC.creator => $sinatra.url_for('/bootstrapping',:full) }).uri task.progress(66) if task - result[:test_dataset_uri] = orig_dataset.create_new_dataset( test_compounds, - orig_dataset.features.dclone - [prediction_feature], - "Bootstrapping test dataset of "+orig_dataset.title.to_s, - $sinatra.url_for('/bootstrapping',:full) ) +# result[:test_dataset_uri] = orig_dataset.create_new_dataset( test_compounds, +# orig_dataset.features.dclone - [prediction_feature], +# "Bootstrapping test dataset of "+orig_dataset.title.to_s, +# $sinatra.url_for('/bootstrapping',:full) ) + result[:test_dataset_uri] = orig_dataset.split( test_compounds, + orig_dataset.features.keys.dclone - [prediction_feature], + { DC.title => "Bootstrapping test dataset of "+orig_dataset.title.to_s, + DC.creator => $sinatra.url_for('/bootstrapping',:full) }).uri task.progress(100) if task if ENV['RACK_ENV'] =~ /test|debug/ training_dataset = OpenTox::Dataset.find result[:training_dataset_uri] $sinatra.halt 400, "Training dataset not found: '"+result[:training_dataset_uri].to_s+"'" unless training_dataset - training_compounds_verify = training_dataset.compounds - $sinatra.halt 500, "training compounds error" unless training_compounds_verify==training_compounds + training_dataset.load_all + value_count = 0 + training_dataset.compounds.each do |c| + value_count += training_dataset.data_entries[c][prediction_feature].size + end + $sinatra.halt 500, "training compounds error" unless value_count==training_compounds.size $sinatra.halt 400, "Test dataset not found: '"+result[:test_dataset_uri].to_s+"'" unless OpenTox::Dataset.find result[:test_dataset_uri] end LOGGER.debug "bootstrapping done, training dataset: '"+result[:training_dataset_uri].to_s+"', test dataset: '"+result[:test_dataset_uri].to_s+"'" @@ -429,13 +496,14 @@ module Validation random_seed=1 unless random_seed orig_dataset = OpenTox::Dataset.find orig_dataset_uri + orig_dataset.load_all $sinatra.halt 400, "Dataset not found: "+orig_dataset_uri.to_s unless orig_dataset $sinatra.halt 400, "Split ratio invalid: "+split_ratio.to_s unless split_ratio and split_ratio=split_ratio.to_f $sinatra.halt 400, "Split ratio not >0 and <1 :"+split_ratio.to_s unless split_ratio>0 && split_ratio<1 if prediction_feature $sinatra.halt 400, "Prediction feature '"+prediction_feature.to_s+ "' not found in dataset, features are: \n"+ - orig_dataset.features.inspect unless orig_dataset.features.include?(prediction_feature) + orig_dataset.features.keys.inspect unless orig_dataset.features.include?(prediction_feature) else LOGGER.warn "no prediciton feature given, all features included in test dataset" end @@ -453,21 +521,46 @@ module Validation task.progress(33) if task result = {} - result[:training_dataset_uri] = orig_dataset.create_new_dataset( compounds[0..split], - orig_dataset.features, - "Training dataset split of "+orig_dataset.title.to_s, - $sinatra.url_for('/training_test_split',:full) ) +# result[:training_dataset_uri] = orig_dataset.create_new_dataset( compounds[0..split], +# orig_dataset.features, +# "Training dataset split of "+orig_dataset.title.to_s, +# $sinatra.url_for('/training_test_split',:full) ) + +# orig_dataset.data_entries.each do |k,v| +# puts k.inspect+" =>"+v.inspect +# puts v.values[0].to_s+" "+v.values[0].class.to_s +# end + + result[:training_dataset_uri] = orig_dataset.split( compounds[0..split], + orig_dataset.features.keys, + { DC.title => "Training dataset split of "+orig_dataset.title.to_s, + DC.creator => $sinatra.url_for('/training_test_split',:full) } ).uri task.progress(66) if task - - result[:test_dataset_uri] = orig_dataset.create_new_dataset( compounds[(split+1)..-1], - orig_dataset.features.dclone - [prediction_feature], - "Test dataset split of "+orig_dataset.title.to_s, - $sinatra.url_for('/training_test_split',:full) ) + +# d = OpenTox::Dataset.find(result[:training_dataset_uri]) +# d.data_entries.values.each do |v| +# puts v.inspect +# puts v.values[0].to_s+" "+v.values[0].class.to_s +# end +# raise "stop here" + +# result[:test_dataset_uri] = orig_dataset.create_new_dataset( compounds[(split+1)..-1], +# orig_dataset.features.dclone - [prediction_feature], +# "Test dataset split of "+orig_dataset.title.to_s, +# $sinatra.url_for('/training_test_split',:full) ) + result[:test_dataset_uri] = orig_dataset.split( compounds[(split+1)..-1], + orig_dataset.features.keys.dclone - [prediction_feature], + { DC.title => "Test dataset split of "+orig_dataset.title.to_s, + DC.creator => $sinatra.url_for('/training_test_split',:full) } ).uri task.progress(100) if task if ENV['RACK_ENV'] =~ /test|debug/ $sinatra.halt 400, "Training dataset not found: '"+result[:training_dataset_uri].to_s+"'" unless OpenTox::Dataset.find result[:training_dataset_uri] - $sinatra.halt 400, "Test dataset not found: '"+result[:test_dataset_uri].to_s+"'" unless OpenTox::Dataset.find result[:test_dataset_uri] + test_data = OpenTox::Dataset.find result[:test_dataset_uri] + $sinatra.halt 400, "Test dataset not found: '"+result[:test_dataset_uri].to_s+"'" unless test_data + test_data.load_compounds + $sinatra.halt 400, "Test dataset num coumpounds != "+(compounds.size-split-1).to_s+", instead: "+ + test_data.compounds.size.to_s+"\n"+test_data.to_yaml unless test_data.compounds.size==(compounds.size-1-split) end LOGGER.debug "split done, training dataset: '"+result[:training_dataset_uri].to_s+"', test dataset: '"+result[:test_dataset_uri].to_s+"'" diff --git a/validation/validation_test.rb b/validation/validation_test.rb old mode 100644 new mode 100755 index b1fbf25..d9c2fbb --- a/validation/validation_test.rb +++ b/validation/validation_test.rb @@ -7,7 +7,7 @@ require 'rack/test' require 'lib/test_util.rb' require 'test/test_examples.rb' -LOGGER = MyLogger.new(STDOUT) +LOGGER = OTLogger.new(STDOUT) LOGGER.datetime_format = "%Y-%m-%d %H:%M:%S " LOGGER.formatter = Logger::Formatter.new @@ -15,7 +15,7 @@ LOGGER.formatter = Logger::Formatter.new module Sinatra module UrlForHelper BASE = "http://localhost/validation" - def url_for url_fragment, mode=:path_only + def url_for url_fragment, mode=:path_only case mode when :path_only raise "not impl" @@ -35,8 +35,9 @@ class ValidationTest < Test::Unit::TestCase $test_case = self #get "/1",nil,'HTTP_ACCEPT' => "text/html" -# get "/",nil,'HTTP_ACCEPT' => "text/html" + #get "/2",nil,'HTTP_ACCEPT' => "application/rdf+xml" #puts last_response.body + #exit # d = OpenTox::Dataset.find("http://ot-dev.in-silico.ch/dataset/307") # puts d.compounds.inspect @@ -59,12 +60,13 @@ class ValidationTest < Test::Unit::TestCase #post "/crossvalidation/cleanup" #puts last_response.body - #get "/crossvalidation/4/statistics" + #get "/crossvalidation/19/predictions",nil,'HTTP_ACCEPT' => "application/x-yaml" #/statistics" # post "",:model_uri=>"http://localhost/model/1",:test_dataset_uri=>"http://localhost/dataset/3", # :test_target_dataset_uri=>"http://localhost/dataset/1" # get "/crossvalidation/2",nil,'HTTP_ACCEPT' => "application/rdf+xml" - #puts last_response.body + #puts last_response.body + #exit #get "/crossvalidation?model_uri=lazar" # post "/test_validation",:select=>"6d" #,:report=>"yes,please" @@ -79,8 +81,32 @@ class ValidationTest < Test::Unit::TestCase # :regression=>"true"} # #:classification=>"true"} # puts last_response.body - - #run_test("1b","http://localhost/validation/28")#,"http://localhost/validation/394"); + +# post "/validate_datasets",{ +# :test_dataset_uri=>"http://localhost/dataset/89", +# :prediction_dataset_uri=>"http://localhost/dataset/91", +# :test_target_dataset_uri=>"http://localhost/dataset/87", +# :prediction_feature=>"http://localhost/dataset/1/feature/hamster_carcinogenicity", +# :predicted_feature=>"", +## :regression=>"true"} +# :classification=>"true"} +# puts last_response.body + + # m = OpenTox::Model::Generic.find("http://localhost/model/1323333") + # puts m.to_yaml + +# post "/validate_datasets",{ +# :test_dataset_uri=>"http://localhost/dataset/150", +# :prediction_dataset_uri=>"http://localhost/dataset/152", +# :test_target_dataset_uri=>"http://localhost/dataset/148", +# :prediction_feature=>"http://localhost/dataset/148/feature/LC50_mmol", +# :model_uri=>"http://localhost/model/13"} +# #:regression=>"true"} +## :classification=>"true"} +# puts last_response.body + + #run_test("13a","http://localhost/validation/39",nil,false) #,"http://localhost/validation/28")#,"http://localhost/validation/394"); + run_test("1b",nil,nil,false) #run_test("7b","http://localhost/validation/21") @@ -96,7 +122,7 @@ class ValidationTest < Test::Unit::TestCase #puts Nightly.build_nightly("1") - prepare_examples + #prepare_examples #do_test_examples # USES CURL, DO NOT FORGET TO RESTART VALIDATION SERVICE #do_test_examples_ortona end @@ -105,7 +131,7 @@ class ValidationTest < Test::Unit::TestCase Sinatra::Application end - def run_test(select=nil, validation_uri=nil, report_uri=nil) + def run_test(select=nil, validation_uri=nil, report_uri=nil, delete=false) puts ValidationExamples.list unless select validationExamples = ValidationExamples.select(select) validationExamples.each do |vv| @@ -122,8 +148,9 @@ class ValidationTest < Test::Unit::TestCase unless ex.report_uri ex.report end - ex.verify_yaml - ex.compare_yaml_vs_rdf + #ex.verify_yaml + #ex.compare_yaml_vs_rdf + ex.delete if delete end end end -- cgit v1.2.3 From bba009c7c59655392236e1cdaf873117bb59600f Mon Sep 17 00:00:00 2001 From: mguetlein Date: Fri, 14 Jan 2011 15:02:31 +0100 Subject: minor fixes + adjustments to set percentage completed --- lib/ot_predictions.rb | 4 ++-- validation/validation_service.rb | 10 ++++------ validation/validation_test.rb | 12 ++++++------ 3 files changed, 12 insertions(+), 14 deletions(-) diff --git a/lib/ot_predictions.rb b/lib/ot_predictions.rb index 52683a6..50934e5 100755 --- a/lib/ot_predictions.rb +++ b/lib/ot_predictions.rb @@ -79,9 +79,9 @@ module Lib # TODO: remove LAZAR_PREDICTION_DATASET_HACK no_prediction_feature = prediction_dataset.features.keys.index(predicted_variable)==nil if no_prediction_feature - one_entry_per_compound = prediction_dataset.data_entries.keys.size == @compounds.size + one_entry_per_compound = true @compounds.each do |c| - if prediction_dataset.data_entries[c].size != 1 + if prediction_dataset.data_entries[c] and prediction_dataset.data_entries[c].size != 1 one_entry_per_compound = false break end diff --git a/validation/validation_service.rb b/validation/validation_service.rb index 01fba7b..da5822e 100755 --- a/validation/validation_service.rb +++ b/validation/validation_service.rb @@ -76,8 +76,7 @@ module Validation LOGGER.debug "building model '"+algorithm_uri.to_s+"' "+params.inspect algorithm = OpenTox::Algorithm::Generic.new(algorithm_uri) - self.model_uri = algorithm.run(params) - task.progress(33) + self.model_uri = algorithm.run(params, OpenTox::SubTask.create(task, 0, 33)) #model = OpenTox::Model::PredictionModel.build(algorithm_uri, params, # OpenTox::SubTask.create(task, 0, 33) ) @@ -129,8 +128,7 @@ module Validation prediction_dataset_uri = "" benchmark = Benchmark.measure do #prediction_dataset_uri = model.predict_dataset(self.test_dataset_uri, OpenTox::SubTask.create(task, 0, 50)) - prediction_dataset_uri = model.run(:dataset_uri => self.test_dataset_uri) - task.progress(50) + prediction_dataset_uri = model.run( {:dataset_uri => self.test_dataset_uri}, OpenTox::SubTask.create(task, 0, 50)) end # self.attributes = { :prediction_dataset_uri => prediction_dataset_uri, # :real_runtime => benchmark.real } @@ -223,8 +221,8 @@ module Validation def perform_cv ( prediction_feature, algorithm_params=nil, task=nil ) - create_cv_datasets( prediction_feature, OpenTox::SubTask.create(task, 0, 0.33) ) - perform_cv_validations( algorithm_params, OpenTox::SubTask.create(task, 0.33, 1) ) + create_cv_datasets( prediction_feature, OpenTox::SubTask.create(task, 0, 33) ) + perform_cv_validations( algorithm_params, OpenTox::SubTask.create(task, 33, 100) ) end # deletes a crossvalidation, all validations are deleted as well diff --git a/validation/validation_test.rb b/validation/validation_test.rb index d9c2fbb..3139b29 100755 --- a/validation/validation_test.rb +++ b/validation/validation_test.rb @@ -96,15 +96,15 @@ class ValidationTest < Test::Unit::TestCase # puts m.to_yaml # post "/validate_datasets",{ -# :test_dataset_uri=>"http://localhost/dataset/150", -# :prediction_dataset_uri=>"http://localhost/dataset/152", -# :test_target_dataset_uri=>"http://localhost/dataset/148", -# :prediction_feature=>"http://localhost/dataset/148/feature/LC50_mmol", -# :model_uri=>"http://localhost/model/13"} +# :test_dataset_uri=>"http://localhost/dataset/506", +# :prediction_dataset_uri=>"http://localhost/dataset/526", +# :test_target_dataset_uri=>"http://localhost/dataset/504", +# :prediction_feature=>"http://localhost/dataset/504/feature/LC50_mmol", +# :model_uri=>"http://localhost/model/48"} # #:regression=>"true"} ## :classification=>"true"} # puts last_response.body - + #run_test("13a","http://localhost/validation/39",nil,false) #,"http://localhost/validation/28")#,"http://localhost/validation/394"); run_test("1b",nil,nil,false) -- cgit v1.2.3 From 7b06ce45180a5b2c0dd0095cd1a60ec974b46aa5 Mon Sep 17 00:00:00 2001 From: mguetlein Date: Wed, 19 Jan 2011 16:12:21 +0100 Subject: aa suport, rdf support --- data/hamster_carcinogenicity.csv | 171 ++++++------ data/hamster_carcinogenicity.yaml | 516 +++++++++++++++++------------------ example.rb | 12 +- lib/active_record_setup.rb | 8 +- lib/format_util.rb | 28 ++ lib/validation_db.rb | 26 +- reach_reports/reach_application.rb | 8 +- reach_reports/reach_persistance.rb | 4 +- reach_reports/reach_service.rb | 10 +- reach_reports/reach_test.rb | 18 +- report/report_application.rb | 12 +- report/report_persistance.rb | 46 +++- report/report_service.rb | 12 +- report/report_test.rb | 25 +- report/xml_report.rb | 4 +- test/test_examples.rb | 40 ++- test/test_examples_util.rb | 24 +- validation/validation_application.rb | 85 +++--- validation/validation_format.rb | 32 +-- validation/validation_service.rb | 160 +++++++---- validation/validation_test.rb | 241 +++++++++------- 21 files changed, 844 insertions(+), 638 deletions(-) diff --git a/data/hamster_carcinogenicity.csv b/data/hamster_carcinogenicity.csv index 009808f..d314193 100644 --- a/data/hamster_carcinogenicity.csv +++ b/data/hamster_carcinogenicity.csv @@ -1,85 +1,86 @@ -CC=O,true -C12C3=C(C=CC=C3)CC1=CC(=CC=2)NC(C)=O,true -O=C(N)\C(C2=CC=CO2)=C/C1=CC=C([N+]([O-])=O)O1,true -C1(N=CNN=1)N,false -Br(=O)(=O)[O-].[K+],true -[Cl-].[Cd+2].[Cl-],false -O=S(=O)([O-])[O-].[Cd+2],false -ClC1=CC(=NC(=N1)SCC(=O)O)NC2=CC=CC(=C2C)C,false -ClCOC,true -C=C(Cl)C=C,false -Clc1ccc(cc1)c2ccc(COC(C)(C)C(O)=O)cc2,false -O=C1OC2=C(C=CC=C2)C=C1,false -ClC(=C(C1=CC=C(C=C1)Cl)C2=CC=C(C=C2)Cl)Cl,true -ClC(C(C1=CC=C(C=C1)Cl)C2=CC=C(C=C2)Cl)(Cl)Cl,false -C=CCN(CC=C)N=O,true -Cl\C2=C(/Cl)C3(Cl)C1C4CC(C1C2(Cl)C3(Cl)Cl)C5OC45,false -O=C(N(C)C)Cl,true -CN(C)N,true -N(NC)C.[H]Cl.[H]Cl,true -CCO,false -O=C(N(CC)N=O)NCCO,true -O=C(N(CC)N=O)NCC(=O)C,true -C=O,false -[O-][N+](=O)C1=CC=C(O1)C2=CSC(=N2)NNC=O,true -O=CC1=CC=CO1,false -OCC1CO1,true -O=C2C1=C(OC)C=C(OC)C(Cl)=C1O[C@]32C(OC)=CC(C[C@@](C)3[H])=O,false -ClC1=C(C(=C(C(=C1Cl)Cl)Cl)Cl)Cl,true -NN,true -OS(=O)(=O)O.NN,true -CC(=O)N(O)C1=CC2=C(C=C1)C3=CC=CC=C3C2,true -OCCNN,false -O=C(C1=CC=NC=C1)NN,false -OC(=O)C1=CC=NC=C1,false -O=C(NC1=CC=CC(=C1)Cl)OC(C)C,false -O=C(NC1=CC=CC=C1)OC(C)C,false -[O-]C(C)=O.[O-]C(C)=O.[Pb+2].[OH-].[OH-].[Pb+2].[OH-].[OH-].[Pb+2],false -CN(C)CCN(CC2=CC=CS2)C1=NC=CC=C1.Cl,false -NC1=C2C(=NC(=N1)N)N=CC(=N2)CN(C3=CC=C(C=C3)C(=O)N[C@@H](CCC(=O)O)C(=O)O)C,false -CN(N)C=O,true -O=C(C(=C)C)OC,false -CNN,true -O=C(C1=CC=CN=C1)CCCN(N=O)C,false -CC1=CC(=O)NC(=S)N1,true -CC(C(O)=O)(OC1=CC=C(C=C1)C2CCCC3=C2C=CC=C3)C,false -O=N[O-].[Na+],false -[O-][N+](C1=CC=C(C2=CSC(NC(C)=O)=N2)O1)=O,true -[O-][N+](=O)C1=CC=C(O1)C2=CSC(=N2)NC=O,true -O=[N+](C1=CC=C2C3=C1C=CC=C3CC2)[O-],false -N(CC(CO)O)(CC(O)C)N=O,true -N(CC(CO)O)(CC(C)=O)N=O,true -N(CC(CO)O)(CCO)N=O,false -O=C(C)CN(N=O)CCO,true -C1C(N(C(CN1N=O)C)C)C,true -N(CC(C)=O)(CC=C)N=O,true -N(CC(CO)O)(C)N=O,true -O=NN1CCOCC1,true -N1C=CC=C(C=1)C2N(N=O)CCC2,true -C1=CC=C(C=[N+]1[O-])C2CCCN2N=O,false -O=NN1CCCCC1,true -O=NN1CCCC1,true -O=C(N(CC(C)=O)N=O)NCCCl,true -N(C(=O)N)(N=O)CC(C)=O,true -C1(CCN=C=S)=CC=CC=C1,false -O=C1C(C2=CC=CC=C2)(C(=O)NC(=O)N1)CC,false -C1=C2C(=CC=C1NC3=CC=CC=C3)C=CC=C2,false -O=C1N2C(C3=C(C=CC=C3)CC2)CN(C1)C(=O)C4CCCCC4,false -C1(=CC(=C(O)C=C1)O)C(O)=O,false -O=C1C2=C(C=C(C=C2O)O)O/C(=C\1O)C3=CC(=C(C=C3)O)O.O.O,false -C1=C(C=CC(=C1)C(C2=CC=C(N)C(=C2)C)=C3C=CC(=N)C=C3)N.[H]Cl,false -C(C1=CC=C(C=C1)N)(C2=CC=C(C=C2)N)=C3C=CC(C=C3)=N.[H]Cl,false -OC2=CC1=C(C(O)=C2)C(C(O[C@@H]4O[C@@H]([C@H]([C@H](O)[C@H]4O)O)CO[C@H]3[C@H](O)[C@H](O)[C@H]([C@H](C)O3)O)=C(C5=CC(O)=C(C=C5)O)O1)=O,false -ClC(=CCl)Cl,false -NC(=O)OCC,true -C=CCl,true -N#[N+]C1=CC=CC=C1.F[B-](F)(F)F,false -C1(CN(CC(N1N=O)C)N=O)C,true -N(CCN(C)C)(C)N=O,true -C1(CN(N=O)CC(O1)C)C,true -O1C(N(CC1C)N=O)=O,true -CCOC(=O)N(C)N=O,true -C1N(COC1)N=O,true -O=C(N(CCC1=CC=CC=C1)N=O)N,true -O=NN1CCC1,true -F[B-](F)(F)F.[Na+],false +SMILES, Hamster Carcinogenicity +CC=O,1 +C12C3=C(C=CC=C3)CC1=CC(=CC=2)NC(C)=O,1 +O=C(N)\C(C2=CC=CO2)=C/C1=CC=C([N+]([O-])=O)O1,1 +C1(N=CNN=1)N,0 +Br(=O)(=O)[O-].[K+],1 +[Cl-].[Cd+2].[Cl-],0 +O=S(=O)([O-])[O-].[Cd+2],0 +ClC1=CC(=NC(=N1)SCC(=O)O)NC2=CC=CC(=C2C)C,0 +ClCOC,1 +C=C(Cl)C=C,0 +Clc1ccc(cc1)c2ccc(COC(C)(C)C(O)=O)cc2,0 +O=C1OC2=C(C=CC=C2)C=C1,0 +ClC(=C(C1=CC=C(C=C1)Cl)C2=CC=C(C=C2)Cl)Cl,1 +ClC(C(C1=CC=C(C=C1)Cl)C2=CC=C(C=C2)Cl)(Cl)Cl,0 +C=CCN(CC=C)N=O,1 +Cl\C2=C(/Cl)C3(Cl)C1C4CC(C1C2(Cl)C3(Cl)Cl)C5OC45,0 +O=C(N(C)C)Cl,1 +CN(C)N,1 +N(NC)C.[H]Cl.[H]Cl,1 +CCO,0 +O=C(N(CC)N=O)NCCO,1 +O=C(N(CC)N=O)NCC(=O)C,1 +C=O,0 +[O-][N+](=O)C1=CC=C(O1)C2=CSC(=N2)NNC=O,1 +O=CC1=CC=CO1,0 +OCC1CO1,1 +O=C2C1=C(OC)C=C(OC)C(Cl)=C1O[C@]32C(OC)=CC(C[C@@](C)3[H])=O,0 +ClC1=C(C(=C(C(=C1Cl)Cl)Cl)Cl)Cl,1 +NN,1 +OS(=O)(=O)O.NN,1 +CC(=O)N(O)C1=CC2=C(C=C1)C3=CC=CC=C3C2,1 +OCCNN,0 +O=C(C1=CC=NC=C1)NN,0 +OC(=O)C1=CC=NC=C1,0 +O=C(NC1=CC=CC(=C1)Cl)OC(C)C,0 +O=C(NC1=CC=CC=C1)OC(C)C,0 +[O-]C(C)=O.[O-]C(C)=O.[Pb+2].[OH-].[OH-].[Pb+2].[OH-].[OH-].[Pb+2],0 +CN(C)CCN(CC2=CC=CS2)C1=NC=CC=C1.Cl,0 +NC1=C2C(=NC(=N1)N)N=CC(=N2)CN(C3=CC=C(C=C3)C(=O)N[C@@H](CCC(=O)O)C(=O)O)C,0 +CN(N)C=O,1 +O=C(C(=C)C)OC,0 +CNN,1 +O=C(C1=CC=CN=C1)CCCN(N=O)C,0 +CC1=CC(=O)NC(=S)N1,1 +CC(C(O)=O)(OC1=CC=C(C=C1)C2CCCC3=C2C=CC=C3)C,0 +O=N[O-].[Na+],0 +[O-][N+](C1=CC=C(C2=CSC(NC(C)=O)=N2)O1)=O,1 +[O-][N+](=O)C1=CC=C(O1)C2=CSC(=N2)NC=O,1 +O=[N+](C1=CC=C2C3=C1C=CC=C3CC2)[O-],0 +N(CC(CO)O)(CC(O)C)N=O,1 +N(CC(CO)O)(CC(C)=O)N=O,1 +N(CC(CO)O)(CCO)N=O,0 +O=C(C)CN(N=O)CCO,1 +C1C(N(C(CN1N=O)C)C)C,1 +N(CC(C)=O)(CC=C)N=O,1 +N(CC(CO)O)(C)N=O,1 +O=NN1CCOCC1,1 +N1C=CC=C(C=1)C2N(N=O)CCC2,1 +C1=CC=C(C=[N+]1[O-])C2CCCN2N=O,0 +O=NN1CCCCC1,1 +O=NN1CCCC1,1 +O=C(N(CC(C)=O)N=O)NCCCl,1 +N(C(=O)N)(N=O)CC(C)=O,1 +C1(CCN=C=S)=CC=CC=C1,0 +O=C1C(C2=CC=CC=C2)(C(=O)NC(=O)N1)CC,0 +C1=C2C(=CC=C1NC3=CC=CC=C3)C=CC=C2,0 +O=C1N2C(C3=C(C=CC=C3)CC2)CN(C1)C(=O)C4CCCCC4,0 +C1(=CC(=C(O)C=C1)O)C(O)=O,0 +O=C1C2=C(C=C(C=C2O)O)O/C(=C\1O)C3=CC(=C(C=C3)O)O.O.O,0 +C1=C(C=CC(=C1)C(C2=CC=C(N)C(=C2)C)=C3C=CC(=N)C=C3)N.[H]Cl,0 +C(C1=CC=C(C=C1)N)(C2=CC=C(C=C2)N)=C3C=CC(C=C3)=N.[H]Cl,0 +OC2=CC1=C(C(O)=C2)C(C(O[C@@H]4O[C@@H]([C@H]([C@H](O)[C@H]4O)O)CO[C@H]3[C@H](O)[C@H](O)[C@H]([C@H](C)O3)O)=C(C5=CC(O)=C(C=C5)O)O1)=O,0 +ClC(=CCl)Cl,0 +NC(=O)OCC,1 +C=CCl,1 +N#[N+]C1=CC=CC=C1.F[B-](F)(F)F,0 +C1(CN(CC(N1N=O)C)N=O)C,1 +N(CCN(C)C)(C)N=O,1 +C1(CN(N=O)CC(O1)C)C,1 +O1C(N(CC1C)N=O)=O,1 +CCOC(=O)N(C)N=O,1 +C1N(COC1)N=O,1 +O=C(N(CCC1=CC=CC=C1)N=O)N,1 +O=NN1CCC1,1 +F[B-](F)(F)F.[Na+],0 diff --git a/data/hamster_carcinogenicity.yaml b/data/hamster_carcinogenicity.yaml index 108edd9..1638049 100755 --- a/data/hamster_carcinogenicity.yaml +++ b/data/hamster_carcinogenicity.yaml @@ -1,352 +1,352 @@ --- !ruby/object:OpenTox::Dataset compounds: -- http://localhost/compound/InChI=1S/C2H4O/c1-2-3/h2H,1H3 -- http://localhost/compound/InChI=1S/C15H13NO/c1-10(17)16-13-6-7-15-12(9-13)8-11-4-2-3-5-14(11)15/h2-7,9H,8H2,1H3,(H,16,17) -- http://localhost/compound/InChI=1S/C11H8N2O5/c12-11(14)8(9-2-1-5-17-9)6-7-3-4-10(18-7)13(15)16/h1-6H,(H2,12,14) -- http://localhost/compound/InChI=1S/C2H4N4/c3-2-4-1-5-6-2/h1H,(H3,3,4,5,6) -- http://localhost/compound/InChI=1S/BrHO3.K/c2-1(3)4;/h(H,2,3,4);/q;+1/p-1 -- http://localhost/compound/InChI=1S/Cd.2ClH/h;2*1H/q+2;;/p-2 -- http://localhost/compound/InChI=1S/Cd.H2O4S/c;1-5(2,3)4/h;(H2,1,2,3,4)/q+2;/p-2 -- http://localhost/compound/InChI=1S/C14H14ClN3O2S/c1-8-4-3-5-10(9(8)2)16-12-6-11(15)17-14(18-12)21-7-13(19)20/h3-6H,7H2,1-2H3,(H,19,20)(H,16,17,18) -- http://localhost/compound/InChI=1S/C2H5ClO/c1-4-2-3/h2H2,1H3 -- http://localhost/compound/InChI=1S/C4H5Cl/c1-3-4(2)5/h3H,1-2H2 -- http://localhost/compound/InChI=1S/C17H17ClO3/c1-17(2,16(19)20)21-11-12-3-5-13(6-4-12)14-7-9-15(18)10-8-14/h3-10H,11H2,1-2H3,(H,19,20) -- http://localhost/compound/InChI=1S/C9H6O2/c10-9-6-5-7-3-1-2-4-8(7)11-9/h1-6H -- http://localhost/compound/InChI=1S/C14H8Cl4/c15-11-5-1-9(2-6-11)13(14(17)18)10-3-7-12(16)8-4-10/h1-8H -- http://localhost/compound/InChI=1S/C14H9Cl5/c15-11-5-1-9(2-6-11)13(14(17,18)19)10-3-7-12(16)8-4-10/h1-8,13H -- http://localhost/compound/InChI=1S/C6H10N2O/c1-3-5-8(7-9)6-4-2/h3-4H,1-2,5-6H2 -- http://localhost/compound/InChI=1S/C12H8Cl6O/c13-8-9(14)11(16)5-3-1-2(6-7(3)19-6)4(5)10(8,15)12(11,17)18/h2-7H,1H2 -- http://localhost/compound/InChI=1S/C3H6ClNO/c1-5(2)3(4)6/h1-2H3 -- http://localhost/compound/InChI=1S/C2H8N2/c1-4(2)3/h3H2,1-2H3 -- http://localhost/compound/InChI=1S/C2H8N2.2ClH/c1-3-4-2;;/h3-4H,1-2H3;2*1H -- http://localhost/compound/InChI=1S/C2H6O/c1-2-3/h3H,2H2,1H3 -- http://localhost/compound/InChI=1S/C5H11N3O3/c1-2-8(7-11)5(10)6-3-4-9/h9H,2-4H2,1H3,(H,6,10) -- http://localhost/compound/InChI=1S/C6H11N3O3/c1-3-9(8-12)6(11)7-4-5(2)10/h3-4H2,1-2H3,(H,7,11) -- http://localhost/compound/InChI=1S/CH2O/c1-2/h1H2 -- http://localhost/compound/InChI=1S/C8H6N4O4S/c13-4-9-11-8-10-5(3-17-8)6-1-2-7(16-6)12(14)15/h1-4H,(H,9,13)(H,10,11) -- http://localhost/compound/InChI=1S/C5H4O2/c6-4-5-2-1-3-7-5/h1-4H -- http://localhost/compound/InChI=1S/C3H6O2/c4-1-3-2-5-3/h3-4H,1-2H2 -- http://localhost/compound/InChI=1S/C17H17ClO6/c1-8-5-9(19)6-12(23-4)17(8)16(20)13-10(21-2)7-11(22-3)14(18)15(13)24-17/h6-8H,5H2,1-4H3/t8-,17?/m1/s1 -- http://localhost/compound/InChI=1S/C6Cl6/c7-1-2(8)4(10)6(12)5(11)3(1)9 -- http://localhost/compound/InChI=1S/H4N2/c1-2/h1-2H2 -- http://localhost/compound/InChI=1S/H4N2.H2O4S/c1-2;1-5(2,3)4/h1-2H2;(H2,1,2,3,4) -- http://localhost/compound/InChI=1S/C15H13NO2/c1-10(17)16(18)13-6-7-15-12(9-13)8-11-4-2-3-5-14(11)15/h2-7,9,18H,8H2,1H3 -- http://localhost/compound/InChI=1S/C2H8N2O/c3-4-1-2-5/h4-5H,1-3H2 -- http://localhost/compound/InChI=1S/C6H7N3O/c7-9-6(10)5-1-3-8-4-2-5/h1-4H,7H2,(H,9,10) -- http://localhost/compound/InChI=1S/C6H5NO2/c8-6(9)5-1-3-7-4-2-5/h1-4H,(H,8,9) -- http://localhost/compound/InChI=1S/C10H12ClNO2/c1-7(2)14-10(13)12-9-5-3-4-8(11)6-9/h3-7H,1-2H3,(H,12,13) -- http://localhost/compound/InChI=1S/C10H13NO2/c1-8(2)13-10(12)11-9-6-4-3-5-7-9/h3-8H,1-2H3,(H,11,12) -- http://localhost/compound/InChI=1S/2C2H4O2.4H2O.3Pb/c2*1-2(3)4;;;;;;;/h2*1H3,(H,3,4);4*1H2;;;/q;;;;;;3*+2/p-6 -- http://localhost/compound/InChI=1S/C14H19N3S.ClH/c1-16(2)9-10-17(12-13-6-5-11-18-13)14-7-3-4-8-15-14;/h3-8,11H,9-10,12H2,1-2H3;1H -- http://localhost/compound/InChI=1S/C20H22N8O5/c1-28(9-11-8-23-17-15(24-11)16(21)26-20(22)27-17)12-4-2-10(3-5-12)18(31)25-13(19(32)33)6-7-14(29)30/h2-5,8,13H,6-7,9H2,1H3,(H,25,31)(H,29,30)(H,32,33)(H4,21,22,23,26,27)/t13-/m0/s1 -- http://localhost/compound/InChI=1S/C2H6N2O/c1-4(3)2-5/h2H,3H2,1H3 -- http://localhost/compound/InChI=1S/C5H8O2/c1-4(2)5(6)7-3/h1H2,2-3H3 -- http://localhost/compound/InChI=1S/CH6N2/c1-3-2/h3H,2H2,1H3 -- http://localhost/compound/InChI=1S/C10H13N3O2/c1-13(12-15)7-3-5-10(14)9-4-2-6-11-8-9/h2,4,6,8H,3,5,7H2,1H3 -- http://localhost/compound/InChI=1S/C5H6N2OS/c1-3-2-4(8)7-5(9)6-3/h2H,1H3,(H2,6,7,8,9) -- http://localhost/compound/InChI=1S/C20H22O3/c1-20(2,19(21)22)23-16-12-10-15(11-13-16)18-9-5-7-14-6-3-4-8-17(14)18/h3-4,6,8,10-13,18H,5,7,9H2,1-2H3,(H,21,22) -- http://localhost/compound/InChI=1S/HNO2.Na/c2-1-3;/h(H,2,3);/q;+1/p-1 -- http://localhost/compound/InChI=1S/C9H7N3O4S/c1-5(13)10-9-11-6(4-17-9)7-2-3-8(16-7)12(14)15/h2-4H,1H3,(H,10,11,13) -- http://localhost/compound/InChI=1S/C8H5N3O4S/c12-4-9-8-10-5(3-16-8)6-1-2-7(15-6)11(13)14/h1-4H,(H,9,10,12) -- http://localhost/compound/InChI=1S/C12H9NO2/c14-13(15)11-7-6-9-5-4-8-2-1-3-10(11)12(8)9/h1-3,6-7H,4-5H2 -- http://localhost/compound/InChI=1S/C6H14N2O4/c1-5(10)2-8(7-12)3-6(11)4-9/h5-6,9-11H,2-4H2,1H3 -- http://localhost/compound/InChI=1S/C6H12N2O4/c1-5(10)2-8(7-12)3-6(11)4-9/h6,9,11H,2-4H2,1H3 -- http://localhost/compound/InChI=1S/C5H12N2O4/c8-2-1-7(6-11)3-5(10)4-9/h5,8-10H,1-4H2 -- http://localhost/compound/InChI=1S/C5H10N2O3/c1-5(9)4-7(6-10)2-3-8/h8H,2-4H2,1H3 -- http://localhost/compound/InChI=1S/C7H15N3O/c1-6-4-10(8-11)5-7(2)9(6)3/h6-7H,4-5H2,1-3H3 -- http://localhost/compound/InChI=1S/C6H10N2O2/c1-3-4-8(7-10)5-6(2)9/h3H,1,4-5H2,2H3 -- http://localhost/compound/InChI=1S/C4H10N2O3/c1-6(5-9)2-4(8)3-7/h4,7-8H,2-3H2,1H3 -- http://localhost/compound/InChI=1S/C4H8N2O2/c7-5-6-1-3-8-4-2-6/h1-4H2 -- http://localhost/compound/InChI=1S/C9H11N3O/c13-11-12-6-2-4-9(12)8-3-1-5-10-7-8/h1,3,5,7,9H,2,4,6H2 -- http://localhost/compound/InChI=1S/C9H11N3O2/c13-10-12-6-2-4-9(12)8-3-1-5-11(14)7-8/h1,3,5,7,9H,2,4,6H2 -- http://localhost/compound/InChI=1S/C5H10N2O/c8-6-7-4-2-1-3-5-7/h1-5H2 -- http://localhost/compound/InChI=1S/C4H8N2O/c7-5-6-3-1-2-4-6/h1-4H2 -- http://localhost/compound/InChI=1S/C6H10ClN3O3/c1-5(11)4-10(9-13)6(12)8-3-2-7/h2-4H2,1H3,(H,8,12) -- http://localhost/compound/InChI=1S/C4H7N3O3/c1-3(8)2-7(6-10)4(5)9/h2H2,1H3,(H2,5,9) -- http://localhost/compound/InChI=1S/C9H9NS/c11-8-10-7-6-9-4-2-1-3-5-9/h1-5H,6-7H2 -- http://localhost/compound/InChI=1S/C12H12N2O3/c1-2-12(8-6-4-3-5-7-8)9(15)13-11(17)14-10(12)16/h3-7H,2H2,1H3,(H2,13,14,15,16,17) -- http://localhost/compound/InChI=1S/C16H13N/c1-2-8-15(9-3-1)17-16-11-10-13-6-4-5-7-14(13)12-16/h1-12,17H -- http://localhost/compound/InChI=1S/C19H24N2O2/c22-18-13-20(19(23)15-7-2-1-3-8-15)12-17-16-9-5-4-6-14(16)10-11-21(17)18/h4-6,9,15,17H,1-3,7-8,10-13H2 -- http://localhost/compound/InChI=1S/C7H6O4/c8-5-2-1-4(7(10)11)3-6(5)9/h1-3,8-9H,(H,10,11) -- http://localhost/compound/InChI=1S/C15H10O7.2H2O/c16-7-4-10(19)12-11(5-7)22-15(14(21)13(12)20)6-1-2-8(17)9(18)3-6;;/h1-5,16-19,21H;2*1H2 -- http://localhost/compound/InChI=1S/C20H19N3.ClH/c1-13-12-16(6-11-19(13)23)20(14-2-7-17(21)8-3-14)15-4-9-18(22)10-5-15;/h2-12,21H,22-23H2,1H3;1H -- http://localhost/compound/InChI=1S/C19H17N3.ClH/c20-16-7-1-13(2-8-16)19(14-3-9-17(21)10-4-14)15-5-11-18(22)12-6-15;/h1-12,20H,21-22H2;1H -- http://localhost/compound/InChI=1S/C27H30O16/c1-8-17(32)20(35)22(37)26(40-8)39-7-15-18(33)21(36)23(38)27(42-15)43-25-19(34)16-13(31)5-10(28)6-14(16)41-24(25)9-2-3-11(29)12(30)4-9/h2-6,8,15,17-18,20-23,26-33,35-38H,7H2,1H3/t8-,15+,17-,18+,20+,21-,22+,23+,26+,27?/m0/s1 -- http://localhost/compound/InChI=1S/C2HCl3/c3-1-2(4)5/h1H -- http://localhost/compound/InChI=1S/C3H7NO2/c1-2-6-3(4)5/h2H2,1H3,(H2,4,5) -- http://localhost/compound/InChI=1S/C2H3Cl/c1-2-3/h2H,1H2 -- http://localhost/compound/InChI=1S/C6H5N2.BF4/c7-8-6-4-2-1-3-5-6;2-1(3,4)5/h1-5H;/q+1;-1 -- http://localhost/compound/InChI=1S/C6H12N4O2/c1-5-3-9(7-11)4-6(2)10(5)8-12/h5-6H,3-4H2,1-2H3 -- http://localhost/compound/InChI=1S/C5H13N3O/c1-7(2)4-5-8(3)6-9/h4-5H2,1-3H3 -- http://localhost/compound/InChI=1S/C6H12N2O2/c1-5-3-8(7-9)4-6(2)10-5/h5-6H,3-4H2,1-2H3 -- http://localhost/compound/InChI=1S/C4H6N2O3/c1-3-2-6(5-8)4(7)9-3/h3H,2H2,1H3 -- http://localhost/compound/InChI=1S/C4H8N2O3/c1-3-9-4(7)6(2)5-8/h3H2,1-2H3 -- http://localhost/compound/InChI=1S/C3H6N2O2/c6-4-5-1-2-7-3-5/h1-3H2 -- http://localhost/compound/InChI=1S/C9H11N3O2/c10-9(13)12(11-14)7-6-8-4-2-1-3-5-8/h1-5H,6-7H2,(H2,10,13) -- http://localhost/compound/InChI=1S/C3H6N2O/c6-4-5-2-1-3-5/h1-3H2 -- http://localhost/compound/InChI=1S/BF4.Na/c2-1(3,4)5;/q-1;+1 +- http://local-ot/compound/InChI=1S/C2H4O/c1-2-3/h2H,1H3 +- http://local-ot/compound/InChI=1S/C15H13NO/c1-10(17)16-13-6-7-15-12(9-13)8-11-4-2-3-5-14(11)15/h2-7,9H,8H2,1H3,(H,16,17) +- http://local-ot/compound/InChI=1S/C11H8N2O5/c12-11(14)8(9-2-1-5-17-9)6-7-3-4-10(18-7)13(15)16/h1-6H,(H2,12,14) +- http://local-ot/compound/InChI=1S/C2H4N4/c3-2-4-1-5-6-2/h1H,(H3,3,4,5,6) +- http://local-ot/compound/InChI=1S/BrHO3.K/c2-1(3)4;/h(H,2,3,4);/q;+1/p-1 +- http://local-ot/compound/InChI=1S/Cd.2ClH/h;2*1H/q+2;;/p-2 +- http://local-ot/compound/InChI=1S/Cd.H2O4S/c;1-5(2,3)4/h;(H2,1,2,3,4)/q+2;/p-2 +- http://local-ot/compound/InChI=1S/C14H14ClN3O2S/c1-8-4-3-5-10(9(8)2)16-12-6-11(15)17-14(18-12)21-7-13(19)20/h3-6H,7H2,1-2H3,(H,19,20)(H,16,17,18) +- http://local-ot/compound/InChI=1S/C2H5ClO/c1-4-2-3/h2H2,1H3 +- http://local-ot/compound/InChI=1S/C4H5Cl/c1-3-4(2)5/h3H,1-2H2 +- http://local-ot/compound/InChI=1S/C17H17ClO3/c1-17(2,16(19)20)21-11-12-3-5-13(6-4-12)14-7-9-15(18)10-8-14/h3-10H,11H2,1-2H3,(H,19,20) +- http://local-ot/compound/InChI=1S/C9H6O2/c10-9-6-5-7-3-1-2-4-8(7)11-9/h1-6H +- http://local-ot/compound/InChI=1S/C14H8Cl4/c15-11-5-1-9(2-6-11)13(14(17)18)10-3-7-12(16)8-4-10/h1-8H +- http://local-ot/compound/InChI=1S/C14H9Cl5/c15-11-5-1-9(2-6-11)13(14(17,18)19)10-3-7-12(16)8-4-10/h1-8,13H +- http://local-ot/compound/InChI=1S/C6H10N2O/c1-3-5-8(7-9)6-4-2/h3-4H,1-2,5-6H2 +- http://local-ot/compound/InChI=1S/C12H8Cl6O/c13-8-9(14)11(16)5-3-1-2(6-7(3)19-6)4(5)10(8,15)12(11,17)18/h2-7H,1H2 +- http://local-ot/compound/InChI=1S/C3H6ClNO/c1-5(2)3(4)6/h1-2H3 +- http://local-ot/compound/InChI=1S/C2H8N2/c1-4(2)3/h3H2,1-2H3 +- http://local-ot/compound/InChI=1S/C2H8N2.2ClH/c1-3-4-2;;/h3-4H,1-2H3;2*1H +- http://local-ot/compound/InChI=1S/C2H6O/c1-2-3/h3H,2H2,1H3 +- http://local-ot/compound/InChI=1S/C5H11N3O3/c1-2-8(7-11)5(10)6-3-4-9/h9H,2-4H2,1H3,(H,6,10) +- http://local-ot/compound/InChI=1S/C6H11N3O3/c1-3-9(8-12)6(11)7-4-5(2)10/h3-4H2,1-2H3,(H,7,11) +- http://local-ot/compound/InChI=1S/CH2O/c1-2/h1H2 +- http://local-ot/compound/InChI=1S/C8H6N4O4S/c13-4-9-11-8-10-5(3-17-8)6-1-2-7(16-6)12(14)15/h1-4H,(H,9,13)(H,10,11) +- http://local-ot/compound/InChI=1S/C5H4O2/c6-4-5-2-1-3-7-5/h1-4H +- http://local-ot/compound/InChI=1S/C3H6O2/c4-1-3-2-5-3/h3-4H,1-2H2 +- http://local-ot/compound/InChI=1S/C17H17ClO6/c1-8-5-9(19)6-12(23-4)17(8)16(20)13-10(21-2)7-11(22-3)14(18)15(13)24-17/h6-8H,5H2,1-4H3/t8-,17?/m1/s1 +- http://local-ot/compound/InChI=1S/C6Cl6/c7-1-2(8)4(10)6(12)5(11)3(1)9 +- http://local-ot/compound/InChI=1S/H4N2/c1-2/h1-2H2 +- http://local-ot/compound/InChI=1S/H4N2.H2O4S/c1-2;1-5(2,3)4/h1-2H2;(H2,1,2,3,4) +- http://local-ot/compound/InChI=1S/C15H13NO2/c1-10(17)16(18)13-6-7-15-12(9-13)8-11-4-2-3-5-14(11)15/h2-7,9,18H,8H2,1H3 +- http://local-ot/compound/InChI=1S/C2H8N2O/c3-4-1-2-5/h4-5H,1-3H2 +- http://local-ot/compound/InChI=1S/C6H7N3O/c7-9-6(10)5-1-3-8-4-2-5/h1-4H,7H2,(H,9,10) +- http://local-ot/compound/InChI=1S/C6H5NO2/c8-6(9)5-1-3-7-4-2-5/h1-4H,(H,8,9) +- http://local-ot/compound/InChI=1S/C10H12ClNO2/c1-7(2)14-10(13)12-9-5-3-4-8(11)6-9/h3-7H,1-2H3,(H,12,13) +- http://local-ot/compound/InChI=1S/C10H13NO2/c1-8(2)13-10(12)11-9-6-4-3-5-7-9/h3-8H,1-2H3,(H,11,12) +- http://local-ot/compound/InChI=1S/2C2H4O2.4H2O.3Pb/c2*1-2(3)4;;;;;;;/h2*1H3,(H,3,4);4*1H2;;;/q;;;;;;3*+2/p-6 +- http://local-ot/compound/InChI=1S/C14H19N3S.ClH/c1-16(2)9-10-17(12-13-6-5-11-18-13)14-7-3-4-8-15-14;/h3-8,11H,9-10,12H2,1-2H3;1H +- http://local-ot/compound/InChI=1S/C20H22N8O5/c1-28(9-11-8-23-17-15(24-11)16(21)26-20(22)27-17)12-4-2-10(3-5-12)18(31)25-13(19(32)33)6-7-14(29)30/h2-5,8,13H,6-7,9H2,1H3,(H,25,31)(H,29,30)(H,32,33)(H4,21,22,23,26,27)/t13-/m0/s1 +- http://local-ot/compound/InChI=1S/C2H6N2O/c1-4(3)2-5/h2H,3H2,1H3 +- http://local-ot/compound/InChI=1S/C5H8O2/c1-4(2)5(6)7-3/h1H2,2-3H3 +- http://local-ot/compound/InChI=1S/CH6N2/c1-3-2/h3H,2H2,1H3 +- http://local-ot/compound/InChI=1S/C10H13N3O2/c1-13(12-15)7-3-5-10(14)9-4-2-6-11-8-9/h2,4,6,8H,3,5,7H2,1H3 +- http://local-ot/compound/InChI=1S/C5H6N2OS/c1-3-2-4(8)7-5(9)6-3/h2H,1H3,(H2,6,7,8,9) +- http://local-ot/compound/InChI=1S/C20H22O3/c1-20(2,19(21)22)23-16-12-10-15(11-13-16)18-9-5-7-14-6-3-4-8-17(14)18/h3-4,6,8,10-13,18H,5,7,9H2,1-2H3,(H,21,22) +- http://local-ot/compound/InChI=1S/HNO2.Na/c2-1-3;/h(H,2,3);/q;+1/p-1 +- http://local-ot/compound/InChI=1S/C9H7N3O4S/c1-5(13)10-9-11-6(4-17-9)7-2-3-8(16-7)12(14)15/h2-4H,1H3,(H,10,11,13) +- http://local-ot/compound/InChI=1S/C8H5N3O4S/c12-4-9-8-10-5(3-16-8)6-1-2-7(15-6)11(13)14/h1-4H,(H,9,10,12) +- http://local-ot/compound/InChI=1S/C12H9NO2/c14-13(15)11-7-6-9-5-4-8-2-1-3-10(11)12(8)9/h1-3,6-7H,4-5H2 +- http://local-ot/compound/InChI=1S/C6H14N2O4/c1-5(10)2-8(7-12)3-6(11)4-9/h5-6,9-11H,2-4H2,1H3 +- http://local-ot/compound/InChI=1S/C6H12N2O4/c1-5(10)2-8(7-12)3-6(11)4-9/h6,9,11H,2-4H2,1H3 +- http://local-ot/compound/InChI=1S/C5H12N2O4/c8-2-1-7(6-11)3-5(10)4-9/h5,8-10H,1-4H2 +- http://local-ot/compound/InChI=1S/C5H10N2O3/c1-5(9)4-7(6-10)2-3-8/h8H,2-4H2,1H3 +- http://local-ot/compound/InChI=1S/C7H15N3O/c1-6-4-10(8-11)5-7(2)9(6)3/h6-7H,4-5H2,1-3H3 +- http://local-ot/compound/InChI=1S/C6H10N2O2/c1-3-4-8(7-10)5-6(2)9/h3H,1,4-5H2,2H3 +- http://local-ot/compound/InChI=1S/C4H10N2O3/c1-6(5-9)2-4(8)3-7/h4,7-8H,2-3H2,1H3 +- http://local-ot/compound/InChI=1S/C4H8N2O2/c7-5-6-1-3-8-4-2-6/h1-4H2 +- http://local-ot/compound/InChI=1S/C9H11N3O/c13-11-12-6-2-4-9(12)8-3-1-5-10-7-8/h1,3,5,7,9H,2,4,6H2 +- http://local-ot/compound/InChI=1S/C9H11N3O2/c13-10-12-6-2-4-9(12)8-3-1-5-11(14)7-8/h1,3,5,7,9H,2,4,6H2 +- http://local-ot/compound/InChI=1S/C5H10N2O/c8-6-7-4-2-1-3-5-7/h1-5H2 +- http://local-ot/compound/InChI=1S/C4H8N2O/c7-5-6-3-1-2-4-6/h1-4H2 +- http://local-ot/compound/InChI=1S/C6H10ClN3O3/c1-5(11)4-10(9-13)6(12)8-3-2-7/h2-4H2,1H3,(H,8,12) +- http://local-ot/compound/InChI=1S/C4H7N3O3/c1-3(8)2-7(6-10)4(5)9/h2H2,1H3,(H2,5,9) +- http://local-ot/compound/InChI=1S/C9H9NS/c11-8-10-7-6-9-4-2-1-3-5-9/h1-5H,6-7H2 +- http://local-ot/compound/InChI=1S/C12H12N2O3/c1-2-12(8-6-4-3-5-7-8)9(15)13-11(17)14-10(12)16/h3-7H,2H2,1H3,(H2,13,14,15,16,17) +- http://local-ot/compound/InChI=1S/C16H13N/c1-2-8-15(9-3-1)17-16-11-10-13-6-4-5-7-14(13)12-16/h1-12,17H +- http://local-ot/compound/InChI=1S/C19H24N2O2/c22-18-13-20(19(23)15-7-2-1-3-8-15)12-17-16-9-5-4-6-14(16)10-11-21(17)18/h4-6,9,15,17H,1-3,7-8,10-13H2 +- http://local-ot/compound/InChI=1S/C7H6O4/c8-5-2-1-4(7(10)11)3-6(5)9/h1-3,8-9H,(H,10,11) +- http://local-ot/compound/InChI=1S/C15H10O7.2H2O/c16-7-4-10(19)12-11(5-7)22-15(14(21)13(12)20)6-1-2-8(17)9(18)3-6;;/h1-5,16-19,21H;2*1H2 +- http://local-ot/compound/InChI=1S/C20H19N3.ClH/c1-13-12-16(6-11-19(13)23)20(14-2-7-17(21)8-3-14)15-4-9-18(22)10-5-15;/h2-12,21H,22-23H2,1H3;1H +- http://local-ot/compound/InChI=1S/C19H17N3.ClH/c20-16-7-1-13(2-8-16)19(14-3-9-17(21)10-4-14)15-5-11-18(22)12-6-15;/h1-12,20H,21-22H2;1H +- http://local-ot/compound/InChI=1S/C27H30O16/c1-8-17(32)20(35)22(37)26(40-8)39-7-15-18(33)21(36)23(38)27(42-15)43-25-19(34)16-13(31)5-10(28)6-14(16)41-24(25)9-2-3-11(29)12(30)4-9/h2-6,8,15,17-18,20-23,26-33,35-38H,7H2,1H3/t8-,15+,17-,18+,20+,21-,22+,23+,26+,27?/m0/s1 +- http://local-ot/compound/InChI=1S/C2HCl3/c3-1-2(4)5/h1H +- http://local-ot/compound/InChI=1S/C3H7NO2/c1-2-6-3(4)5/h2H2,1H3,(H2,4,5) +- http://local-ot/compound/InChI=1S/C2H3Cl/c1-2-3/h2H,1H2 +- http://local-ot/compound/InChI=1S/C6H5N2.BF4/c7-8-6-4-2-1-3-5-6;2-1(3,4)5/h1-5H;/q+1;-1 +- http://local-ot/compound/InChI=1S/C6H12N4O2/c1-5-3-9(7-11)4-6(2)10(5)8-12/h5-6H,3-4H2,1-2H3 +- http://local-ot/compound/InChI=1S/C5H13N3O/c1-7(2)4-5-8(3)6-9/h4-5H2,1-3H3 +- http://local-ot/compound/InChI=1S/C6H12N2O2/c1-5-3-8(7-9)4-6(2)10-5/h5-6H,3-4H2,1-2H3 +- http://local-ot/compound/InChI=1S/C4H6N2O3/c1-3-2-6(5-8)4(7)9-3/h3H,2H2,1H3 +- http://local-ot/compound/InChI=1S/C4H8N2O3/c1-3-9-4(7)6(2)5-8/h3H2,1-2H3 +- http://local-ot/compound/InChI=1S/C3H6N2O2/c6-4-5-1-2-7-3-5/h1-3H2 +- http://local-ot/compound/InChI=1S/C9H11N3O2/c10-9(13)12(11-14)7-6-8-4-2-1-3-5-8/h1-5H,6-7H2,(H2,10,13) +- http://local-ot/compound/InChI=1S/C3H6N2O/c6-4-5-2-1-3-5/h1-3H2 +- http://local-ot/compound/InChI=1S/BF4.Na/c2-1(3,4)5;/q-1;+1 data_entries: - http://localhost/compound/InChI=1S/C14H8Cl4/c15-11-5-1-9(2-6-11)13(14(17)18)10-3-7-12(16)8-4-10/h1-8H: - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C14H8Cl4/c15-11-5-1-9(2-6-11)13(14(17)18)10-3-7-12(16)8-4-10/h1-8H: + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - true - http://localhost/compound/InChI=1S/C3H6ClNO/c1-5(2)3(4)6/h1-2H3: - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C3H6ClNO/c1-5(2)3(4)6/h1-2H3: + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - true - http://localhost/compound/InChI=1S/C2H8N2O/c3-4-1-2-5/h4-5H,1-3H2: - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C2H8N2O/c3-4-1-2-5/h4-5H,1-3H2: + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - false - http://localhost/compound/InChI=1S/C4H10N2O3/c1-6(5-9)2-4(8)3-7/h4,7-8H,2-3H2,1H3: - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C4H10N2O3/c1-6(5-9)2-4(8)3-7/h4,7-8H,2-3H2,1H3: + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - true - http://localhost/compound/InChI=1S/CH2O/c1-2/h1H2: - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/CH2O/c1-2/h1H2: + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - false - http://localhost/compound/InChI=1S/C5H12N2O4/c8-2-1-7(6-11)3-5(10)4-9/h5,8-10H,1-4H2: - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C5H12N2O4/c8-2-1-7(6-11)3-5(10)4-9/h5,8-10H,1-4H2: + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - false - http://localhost/compound/InChI=1S/C7H15N3O/c1-6-4-10(8-11)5-7(2)9(6)3/h6-7H,4-5H2,1-3H3: - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C7H15N3O/c1-6-4-10(8-11)5-7(2)9(6)3/h6-7H,4-5H2,1-3H3: + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - true - http://localhost/compound/InChI=1S/C4H8N2O2/c7-5-6-1-3-8-4-2-6/h1-4H2: - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C4H8N2O2/c7-5-6-1-3-8-4-2-6/h1-4H2: + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - true - http://localhost/compound/InChI=1S/C16H13N/c1-2-8-15(9-3-1)17-16-11-10-13-6-4-5-7-14(13)12-16/h1-12,17H: - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C16H13N/c1-2-8-15(9-3-1)17-16-11-10-13-6-4-5-7-14(13)12-16/h1-12,17H: + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - false - http://localhost/compound/InChI=1S/C3H6O2/c4-1-3-2-5-3/h3-4H,1-2H2: - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C3H6O2/c4-1-3-2-5-3/h3-4H,1-2H2: + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - true - http://localhost/compound/InChI=1S/C4H6N2O3/c1-3-2-6(5-8)4(7)9-3/h3H,2H2,1H3: - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C4H6N2O3/c1-3-2-6(5-8)4(7)9-3/h3H,2H2,1H3: + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - true - http://localhost/compound/InChI=1S/C6H5NO2/c8-6(9)5-1-3-7-4-2-5/h1-4H,(H,8,9): - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C6H5NO2/c8-6(9)5-1-3-7-4-2-5/h1-4H,(H,8,9): + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - false - http://localhost/compound/InChI=1S/2C2H4O2.4H2O.3Pb/c2*1-2(3)4;;;;;;;/h2*1H3,(H,3,4);4*1H2;;;/q;;;;;;3*+2/p-6: - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/2C2H4O2.4H2O.3Pb/c2*1-2(3)4;;;;;;;/h2*1H3,(H,3,4);4*1H2;;;/q;;;;;;3*+2/p-6: + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - false - http://localhost/compound/InChI=1S/C17H17ClO6/c1-8-5-9(19)6-12(23-4)17(8)16(20)13-10(21-2)7-11(22-3)14(18)15(13)24-17/h6-8H,5H2,1-4H3/t8-,17?/m1/s1: - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C17H17ClO6/c1-8-5-9(19)6-12(23-4)17(8)16(20)13-10(21-2)7-11(22-3)14(18)15(13)24-17/h6-8H,5H2,1-4H3/t8-,17?/m1/s1: + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - false - http://localhost/compound/InChI=1S/C3H6N2O2/c6-4-5-1-2-7-3-5/h1-3H2: - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C3H6N2O2/c6-4-5-1-2-7-3-5/h1-3H2: + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - true - http://localhost/compound/InChI=1S/C3H7NO2/c1-2-6-3(4)5/h2H2,1H3,(H2,4,5): - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C3H7NO2/c1-2-6-3(4)5/h2H2,1H3,(H2,4,5): + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - true - http://localhost/compound/InChI=1S/C5H8O2/c1-4(2)5(6)7-3/h1H2,2-3H3: - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C5H8O2/c1-4(2)5(6)7-3/h1H2,2-3H3: + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - false - http://localhost/compound/InChI=1S/C2H6N2O/c1-4(3)2-5/h2H,3H2,1H3: - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C2H6N2O/c1-4(3)2-5/h2H,3H2,1H3: + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - true - http://localhost/compound/InChI=1S/C6H12N2O4/c1-5(10)2-8(7-12)3-6(11)4-9/h6,9,11H,2-4H2,1H3: - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C6H12N2O4/c1-5(10)2-8(7-12)3-6(11)4-9/h6,9,11H,2-4H2,1H3: + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - true - http://localhost/compound/InChI=1S/C5H4O2/c6-4-5-2-1-3-7-5/h1-4H: - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C5H4O2/c6-4-5-2-1-3-7-5/h1-4H: + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - false - http://localhost/compound/InChI=1S/C4H8N2O/c7-5-6-3-1-2-4-6/h1-4H2: - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C4H8N2O/c7-5-6-3-1-2-4-6/h1-4H2: + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - true - http://localhost/compound/InChI=1S/C9H11N3O2/c10-9(13)12(11-14)7-6-8-4-2-1-3-5-8/h1-5H,6-7H2,(H2,10,13): - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C9H11N3O2/c10-9(13)12(11-14)7-6-8-4-2-1-3-5-8/h1-5H,6-7H2,(H2,10,13): + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - true - http://localhost/compound/InChI=1S/C14H14ClN3O2S/c1-8-4-3-5-10(9(8)2)16-12-6-11(15)17-14(18-12)21-7-13(19)20/h3-6H,7H2,1-2H3,(H,19,20)(H,16,17,18): - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C14H14ClN3O2S/c1-8-4-3-5-10(9(8)2)16-12-6-11(15)17-14(18-12)21-7-13(19)20/h3-6H,7H2,1-2H3,(H,19,20)(H,16,17,18): + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - false - http://localhost/compound/InChI=1S/H4N2.H2O4S/c1-2;1-5(2,3)4/h1-2H2;(H2,1,2,3,4): - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/H4N2.H2O4S/c1-2;1-5(2,3)4/h1-2H2;(H2,1,2,3,4): + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - true - http://localhost/compound/InChI=1S/C5H10N2O/c8-6-7-4-2-1-3-5-7/h1-5H2: - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C5H10N2O/c8-6-7-4-2-1-3-5-7/h1-5H2: + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - true - http://localhost/compound/InChI=1S/C10H13N3O2/c1-13(12-15)7-3-5-10(14)9-4-2-6-11-8-9/h2,4,6,8H,3,5,7H2,1H3: - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C10H13N3O2/c1-13(12-15)7-3-5-10(14)9-4-2-6-11-8-9/h2,4,6,8H,3,5,7H2,1H3: + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - false - http://localhost/compound/InChI=1S/C3H6N2O/c6-4-5-2-1-3-5/h1-3H2: - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C3H6N2O/c6-4-5-2-1-3-5/h1-3H2: + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - true - http://localhost/compound/InChI=1S/C4H8N2O3/c1-3-9-4(7)6(2)5-8/h3H2,1-2H3: - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C4H8N2O3/c1-3-9-4(7)6(2)5-8/h3H2,1-2H3: + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - true - http://localhost/compound/InChI=1S/C6H10N2O2/c1-3-4-8(7-10)5-6(2)9/h3H,1,4-5H2,2H3: - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C6H10N2O2/c1-3-4-8(7-10)5-6(2)9/h3H,1,4-5H2,2H3: + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - true - http://localhost/compound/InChI=1S/C14H9Cl5/c15-11-5-1-9(2-6-11)13(14(17,18)19)10-3-7-12(16)8-4-10/h1-8,13H: - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C14H9Cl5/c15-11-5-1-9(2-6-11)13(14(17,18)19)10-3-7-12(16)8-4-10/h1-8,13H: + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - false - http://localhost/compound/InChI=1S/BrHO3.K/c2-1(3)4;/h(H,2,3,4);/q;+1/p-1: - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/BrHO3.K/c2-1(3)4;/h(H,2,3,4);/q;+1/p-1: + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - true - http://localhost/compound/InChI=1S/C2H5ClO/c1-4-2-3/h2H2,1H3: - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C2H5ClO/c1-4-2-3/h2H2,1H3: + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - true - http://localhost/compound/InChI=1S/C10H12ClNO2/c1-7(2)14-10(13)12-9-5-3-4-8(11)6-9/h3-7H,1-2H3,(H,12,13): - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C10H12ClNO2/c1-7(2)14-10(13)12-9-5-3-4-8(11)6-9/h3-7H,1-2H3,(H,12,13): + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - false - http://localhost/compound/InChI=1S/C8H5N3O4S/c12-4-9-8-10-5(3-16-8)6-1-2-7(15-6)11(13)14/h1-4H,(H,9,10,12): - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C8H5N3O4S/c12-4-9-8-10-5(3-16-8)6-1-2-7(15-6)11(13)14/h1-4H,(H,9,10,12): + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - true - http://localhost/compound/InChI=1S/Cd.2ClH/h;2*1H/q+2;;/p-2: - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/Cd.2ClH/h;2*1H/q+2;;/p-2: + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - false - http://localhost/compound/InChI=1S/C20H19N3.ClH/c1-13-12-16(6-11-19(13)23)20(14-2-7-17(21)8-3-14)15-4-9-18(22)10-5-15;/h2-12,21H,22-23H2,1H3;1H: - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C20H19N3.ClH/c1-13-12-16(6-11-19(13)23)20(14-2-7-17(21)8-3-14)15-4-9-18(22)10-5-15;/h2-12,21H,22-23H2,1H3;1H: + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - false - http://localhost/compound/InChI=1S/BF4.Na/c2-1(3,4)5;/q-1;+1: - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/BF4.Na/c2-1(3,4)5;/q-1;+1: + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - false - http://localhost/compound/InChI=1S/C6H5N2.BF4/c7-8-6-4-2-1-3-5-6;2-1(3,4)5/h1-5H;/q+1;-1: - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C6H5N2.BF4/c7-8-6-4-2-1-3-5-6;2-1(3,4)5/h1-5H;/q+1;-1: + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - false - http://localhost/compound/InChI=1S/C2H4N4/c3-2-4-1-5-6-2/h1H,(H3,3,4,5,6): - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C2H4N4/c3-2-4-1-5-6-2/h1H,(H3,3,4,5,6): + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - false - http://localhost/compound/InChI=1S/C9H6O2/c10-9-6-5-7-3-1-2-4-8(7)11-9/h1-6H: - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C9H6O2/c10-9-6-5-7-3-1-2-4-8(7)11-9/h1-6H: + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - false - http://localhost/compound/InChI=1S/C2HCl3/c3-1-2(4)5/h1H: - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C2HCl3/c3-1-2(4)5/h1H: + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - false - http://localhost/compound/InChI=1S/C2H8N2/c1-4(2)3/h3H2,1-2H3: - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C2H8N2/c1-4(2)3/h3H2,1-2H3: + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - true - http://localhost/compound/InChI=1S/C6H7N3O/c7-9-6(10)5-1-3-8-4-2-5/h1-4H,7H2,(H,9,10): - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C6H7N3O/c7-9-6(10)5-1-3-8-4-2-5/h1-4H,7H2,(H,9,10): + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - false - http://localhost/compound/InChI=1S/C12H8Cl6O/c13-8-9(14)11(16)5-3-1-2(6-7(3)19-6)4(5)10(8,15)12(11,17)18/h2-7H,1H2: - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C12H8Cl6O/c13-8-9(14)11(16)5-3-1-2(6-7(3)19-6)4(5)10(8,15)12(11,17)18/h2-7H,1H2: + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - false - http://localhost/compound/InChI=1S/Cd.H2O4S/c;1-5(2,3)4/h;(H2,1,2,3,4)/q+2;/p-2: - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/Cd.H2O4S/c;1-5(2,3)4/h;(H2,1,2,3,4)/q+2;/p-2: + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - false - http://localhost/compound/InChI=1S/C5H10N2O3/c1-5(9)4-7(6-10)2-3-8/h8H,2-4H2,1H3: - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C5H10N2O3/c1-5(9)4-7(6-10)2-3-8/h8H,2-4H2,1H3: + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - true - http://localhost/compound/InChI=1S/C27H30O16/c1-8-17(32)20(35)22(37)26(40-8)39-7-15-18(33)21(36)23(38)27(42-15)43-25-19(34)16-13(31)5-10(28)6-14(16)41-24(25)9-2-3-11(29)12(30)4-9/h2-6,8,15,17-18,20-23,26-33,35-38H,7H2,1H3/t8-,15+,17-,18+,20+,21-,22+,23+,26+,27?/m0/s1: - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C27H30O16/c1-8-17(32)20(35)22(37)26(40-8)39-7-15-18(33)21(36)23(38)27(42-15)43-25-19(34)16-13(31)5-10(28)6-14(16)41-24(25)9-2-3-11(29)12(30)4-9/h2-6,8,15,17-18,20-23,26-33,35-38H,7H2,1H3/t8-,15+,17-,18+,20+,21-,22+,23+,26+,27?/m0/s1: + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - false - http://localhost/compound/InChI=1S/C12H12N2O3/c1-2-12(8-6-4-3-5-7-8)9(15)13-11(17)14-10(12)16/h3-7H,2H2,1H3,(H2,13,14,15,16,17): - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C12H12N2O3/c1-2-12(8-6-4-3-5-7-8)9(15)13-11(17)14-10(12)16/h3-7H,2H2,1H3,(H2,13,14,15,16,17): + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - false - http://localhost/compound/InChI=1S/C8H6N4O4S/c13-4-9-11-8-10-5(3-17-8)6-1-2-7(16-6)12(14)15/h1-4H,(H,9,13)(H,10,11): - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C8H6N4O4S/c13-4-9-11-8-10-5(3-17-8)6-1-2-7(16-6)12(14)15/h1-4H,(H,9,13)(H,10,11): + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - true - http://localhost/compound/InChI=1S/C9H7N3O4S/c1-5(13)10-9-11-6(4-17-9)7-2-3-8(16-7)12(14)15/h2-4H,1H3,(H,10,11,13): - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C9H7N3O4S/c1-5(13)10-9-11-6(4-17-9)7-2-3-8(16-7)12(14)15/h2-4H,1H3,(H,10,11,13): + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - true - http://localhost/compound/InChI=1S/CH6N2/c1-3-2/h3H,2H2,1H3: - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/CH6N2/c1-3-2/h3H,2H2,1H3: + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - true - http://localhost/compound/InChI=1S/C12H9NO2/c14-13(15)11-7-6-9-5-4-8-2-1-3-10(11)12(8)9/h1-3,6-7H,4-5H2: - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C12H9NO2/c14-13(15)11-7-6-9-5-4-8-2-1-3-10(11)12(8)9/h1-3,6-7H,4-5H2: + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - false - http://localhost/compound/InChI=1S/C15H10O7.2H2O/c16-7-4-10(19)12-11(5-7)22-15(14(21)13(12)20)6-1-2-8(17)9(18)3-6;;/h1-5,16-19,21H;2*1H2: - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C15H10O7.2H2O/c16-7-4-10(19)12-11(5-7)22-15(14(21)13(12)20)6-1-2-8(17)9(18)3-6;;/h1-5,16-19,21H;2*1H2: + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - false - http://localhost/compound/InChI=1S/C7H6O4/c8-5-2-1-4(7(10)11)3-6(5)9/h1-3,8-9H,(H,10,11): - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C7H6O4/c8-5-2-1-4(7(10)11)3-6(5)9/h1-3,8-9H,(H,10,11): + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - false - http://localhost/compound/InChI=1S/C9H9NS/c11-8-10-7-6-9-4-2-1-3-5-9/h1-5H,6-7H2: - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C9H9NS/c11-8-10-7-6-9-4-2-1-3-5-9/h1-5H,6-7H2: + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - false - http://localhost/compound/InChI=1S/C20H22O3/c1-20(2,19(21)22)23-16-12-10-15(11-13-16)18-9-5-7-14-6-3-4-8-17(14)18/h3-4,6,8,10-13,18H,5,7,9H2,1-2H3,(H,21,22): - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C20H22O3/c1-20(2,19(21)22)23-16-12-10-15(11-13-16)18-9-5-7-14-6-3-4-8-17(14)18/h3-4,6,8,10-13,18H,5,7,9H2,1-2H3,(H,21,22): + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - false - http://localhost/compound/InChI=1S/C6H12N2O2/c1-5-3-8(7-9)4-6(2)10-5/h5-6H,3-4H2,1-2H3: - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C6H12N2O2/c1-5-3-8(7-9)4-6(2)10-5/h5-6H,3-4H2,1-2H3: + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - true - http://localhost/compound/InChI=1S/C10H13NO2/c1-8(2)13-10(12)11-9-6-4-3-5-7-9/h3-8H,1-2H3,(H,11,12): - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C10H13NO2/c1-8(2)13-10(12)11-9-6-4-3-5-7-9/h3-8H,1-2H3,(H,11,12): + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - false - http://localhost/compound/InChI=1S/C6H14N2O4/c1-5(10)2-8(7-12)3-6(11)4-9/h5-6,9-11H,2-4H2,1H3: - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C6H14N2O4/c1-5(10)2-8(7-12)3-6(11)4-9/h5-6,9-11H,2-4H2,1H3: + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - true - http://localhost/compound/InChI=1S/C19H24N2O2/c22-18-13-20(19(23)15-7-2-1-3-8-15)12-17-16-9-5-4-6-14(16)10-11-21(17)18/h4-6,9,15,17H,1-3,7-8,10-13H2: - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C19H24N2O2/c22-18-13-20(19(23)15-7-2-1-3-8-15)12-17-16-9-5-4-6-14(16)10-11-21(17)18/h4-6,9,15,17H,1-3,7-8,10-13H2: + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - false - http://localhost/compound/InChI=1S/C5H11N3O3/c1-2-8(7-11)5(10)6-3-4-9/h9H,2-4H2,1H3,(H,6,10): - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C5H11N3O3/c1-2-8(7-11)5(10)6-3-4-9/h9H,2-4H2,1H3,(H,6,10): + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - true - http://localhost/compound/InChI=1S/C14H19N3S.ClH/c1-16(2)9-10-17(12-13-6-5-11-18-13)14-7-3-4-8-15-14;/h3-8,11H,9-10,12H2,1-2H3;1H: - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C14H19N3S.ClH/c1-16(2)9-10-17(12-13-6-5-11-18-13)14-7-3-4-8-15-14;/h3-8,11H,9-10,12H2,1-2H3;1H: + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - false - http://localhost/compound/InChI=1S/H4N2/c1-2/h1-2H2: - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/H4N2/c1-2/h1-2H2: + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - true - http://localhost/compound/InChI=1S/C4H5Cl/c1-3-4(2)5/h3H,1-2H2: - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C4H5Cl/c1-3-4(2)5/h3H,1-2H2: + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - false - http://localhost/compound/InChI=1S/C17H17ClO3/c1-17(2,16(19)20)21-11-12-3-5-13(6-4-12)14-7-9-15(18)10-8-14/h3-10H,11H2,1-2H3,(H,19,20): - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C17H17ClO3/c1-17(2,16(19)20)21-11-12-3-5-13(6-4-12)14-7-9-15(18)10-8-14/h3-10H,11H2,1-2H3,(H,19,20): + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - false - http://localhost/compound/InChI=1S/C2H8N2.2ClH/c1-3-4-2;;/h3-4H,1-2H3;2*1H: - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C2H8N2.2ClH/c1-3-4-2;;/h3-4H,1-2H3;2*1H: + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - true - http://localhost/compound/InChI=1S/C6H10ClN3O3/c1-5(11)4-10(9-13)6(12)8-3-2-7/h2-4H2,1H3,(H,8,12): - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C6H10ClN3O3/c1-5(11)4-10(9-13)6(12)8-3-2-7/h2-4H2,1H3,(H,8,12): + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - true - http://localhost/compound/InChI=1S/C6H11N3O3/c1-3-9(8-12)6(11)7-4-5(2)10/h3-4H2,1-2H3,(H,7,11): - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C6H11N3O3/c1-3-9(8-12)6(11)7-4-5(2)10/h3-4H2,1-2H3,(H,7,11): + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - true - http://localhost/compound/InChI=1S/C11H8N2O5/c12-11(14)8(9-2-1-5-17-9)6-7-3-4-10(18-7)13(15)16/h1-6H,(H2,12,14): - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C11H8N2O5/c12-11(14)8(9-2-1-5-17-9)6-7-3-4-10(18-7)13(15)16/h1-6H,(H2,12,14): + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - true - http://localhost/compound/InChI=1S/C2H6O/c1-2-3/h3H,2H2,1H3: - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C2H6O/c1-2-3/h3H,2H2,1H3: + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - false - http://localhost/compound/InChI=1S/C5H13N3O/c1-7(2)4-5-8(3)6-9/h4-5H2,1-3H3: - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C5H13N3O/c1-7(2)4-5-8(3)6-9/h4-5H2,1-3H3: + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - true - http://localhost/compound/InChI=1S/C15H13NO/c1-10(17)16-13-6-7-15-12(9-13)8-11-4-2-3-5-14(11)15/h2-7,9H,8H2,1H3,(H,16,17): - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C15H13NO/c1-10(17)16-13-6-7-15-12(9-13)8-11-4-2-3-5-14(11)15/h2-7,9H,8H2,1H3,(H,16,17): + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - true - http://localhost/compound/InChI=1S/C5H6N2OS/c1-3-2-4(8)7-5(9)6-3/h2H,1H3,(H2,6,7,8,9): - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C5H6N2OS/c1-3-2-4(8)7-5(9)6-3/h2H,1H3,(H2,6,7,8,9): + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - true - http://localhost/compound/InChI=1S/C9H11N3O/c13-11-12-6-2-4-9(12)8-3-1-5-10-7-8/h1,3,5,7,9H,2,4,6H2: - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C9H11N3O/c13-11-12-6-2-4-9(12)8-3-1-5-10-7-8/h1,3,5,7,9H,2,4,6H2: + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - true - http://localhost/compound/InChI=1S/C6H12N4O2/c1-5-3-9(7-11)4-6(2)10(5)8-12/h5-6H,3-4H2,1-2H3: - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C6H12N4O2/c1-5-3-9(7-11)4-6(2)10(5)8-12/h5-6H,3-4H2,1-2H3: + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - true - http://localhost/compound/InChI=1S/C19H17N3.ClH/c20-16-7-1-13(2-8-16)19(14-3-9-17(21)10-4-14)15-5-11-18(22)12-6-15;/h1-12,20H,21-22H2;1H: - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C19H17N3.ClH/c20-16-7-1-13(2-8-16)19(14-3-9-17(21)10-4-14)15-5-11-18(22)12-6-15;/h1-12,20H,21-22H2;1H: + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - false - http://localhost/compound/InChI=1S/HNO2.Na/c2-1-3;/h(H,2,3);/q;+1/p-1: - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/HNO2.Na/c2-1-3;/h(H,2,3);/q;+1/p-1: + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - false - http://localhost/compound/InChI=1S/C6Cl6/c7-1-2(8)4(10)6(12)5(11)3(1)9: - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C6Cl6/c7-1-2(8)4(10)6(12)5(11)3(1)9: + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - true - http://localhost/compound/InChI=1S/C2H3Cl/c1-2-3/h2H,1H2: - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C2H3Cl/c1-2-3/h2H,1H2: + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - true - http://localhost/compound/InChI=1S/C6H10N2O/c1-3-5-8(7-9)6-4-2/h3-4H,1-2,5-6H2: - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C6H10N2O/c1-3-5-8(7-9)6-4-2/h3-4H,1-2,5-6H2: + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - true - http://localhost/compound/InChI=1S/C9H11N3O2/c13-10-12-6-2-4-9(12)8-3-1-5-11(14)7-8/h1,3,5,7,9H,2,4,6H2: - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C9H11N3O2/c13-10-12-6-2-4-9(12)8-3-1-5-11(14)7-8/h1,3,5,7,9H,2,4,6H2: + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - false - http://localhost/compound/InChI=1S/C15H13NO2/c1-10(17)16(18)13-6-7-15-12(9-13)8-11-4-2-3-5-14(11)15/h2-7,9,18H,8H2,1H3: - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C15H13NO2/c1-10(17)16(18)13-6-7-15-12(9-13)8-11-4-2-3-5-14(11)15/h2-7,9,18H,8H2,1H3: + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - true - http://localhost/compound/InChI=1S/C20H22N8O5/c1-28(9-11-8-23-17-15(24-11)16(21)26-20(22)27-17)12-4-2-10(3-5-12)18(31)25-13(19(32)33)6-7-14(29)30/h2-5,8,13H,6-7,9H2,1H3,(H,25,31)(H,29,30)(H,32,33)(H4,21,22,23,26,27)/t13-/m0/s1: - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C20H22N8O5/c1-28(9-11-8-23-17-15(24-11)16(21)26-20(22)27-17)12-4-2-10(3-5-12)18(31)25-13(19(32)33)6-7-14(29)30/h2-5,8,13H,6-7,9H2,1H3,(H,25,31)(H,29,30)(H,32,33)(H4,21,22,23,26,27)/t13-/m0/s1: + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - false - http://localhost/compound/InChI=1S/C4H7N3O3/c1-3(8)2-7(6-10)4(5)9/h2H2,1H3,(H2,5,9): - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C4H7N3O3/c1-3(8)2-7(6-10)4(5)9/h2H2,1H3,(H2,5,9): + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - true - http://localhost/compound/InChI=1S/C2H4O/c1-2-3/h2H,1H3: - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/compound/InChI=1S/C2H4O/c1-2-3/h2H,1H3: + http://local-ot/dataset/1/feature/hamster_carcinogenicity: - true features: - http://localhost/dataset/1/feature/hamster_carcinogenicity: + http://local-ot/dataset/1/feature/hamster_carcinogenicity: http://www.opentox.org/api/1.1#hasSource: hamster_carcinogenicity.csv http://purl.org/dc/elements/1.1/title: hamster_carcinogenicity metadata: http://www.opentox.org/api/1.1#hasSource: hamster_carcinogenicity.csv http://purl.org/dc/elements/1.1/title: hamster_carcinogenicity - http://www.w3.org/2001/XMLSchema#anyUri: http://localhost/dataset/1 -uri: http://localhost/dataset/1 + http://www.w3.org/2001/XMLSchema#anyUri: http://local-ot/dataset/1 +uri: http://local-ot/dataset/1 diff --git a/example.rb b/example.rb index 1b4ee98..3cced72 100755 --- a/example.rb +++ b/example.rb @@ -6,9 +6,9 @@ class Example @@file=File.new("data/hamster_carcinogenicity.yaml","r") @@file_type="text/x-yaml" @@model=File.join CONFIG[:services]["opentox-model"],"1" - #@@feature= URI.encode("http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB)") + #@@feature= URI.encode("http://local-ot/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB)") @@feature= File.join CONFIG[:services]["opentox-dataset"],"1/feature/hamster_carcinogenicity" - #@@predicted_feature= URI.encode("http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB)_lazar_classification") + #@@predicted_feature= URI.encode("http://local-ot/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB)_lazar_classification") @@alg = File.join CONFIG[:services]["opentox-algorithm"],"lazar" @@alg_params = "feature_generation_uri="+File.join(CONFIG[:services]["opentox-algorithm"],"fminer/bbrc") @@data=File.join CONFIG[:services]["opentox-dataset"],"1" @@ -54,6 +54,10 @@ class Example # creates the resources that are requested by the examples def self.prepare_example_resources + + #TODO + subjectid = nil + task = OpenTox::Task.create("prepare examples", "n/a") do |task| @@summary = "" #delete validations @@ -103,12 +107,12 @@ class Example log "create validation report" rep = Reports::ReportService.instance(File.join(CONFIG[:services]["opentox-validation"],"report")) - rep.delete_all_reports("validation") + rep.delete_all_reports("validation", subjectid) rep.create_report("validation",v.validation_uri) task.progress(80) log "create crossvalidation report" - rep.delete_all_reports("crossvalidation") + rep.delete_all_reports("crossvalidation", subjectid) rep.create_report("crossvalidation",cv.crossvalidation_uri) task.progress(90) diff --git a/lib/active_record_setup.rb b/lib/active_record_setup.rb index 404bfec..b43e692 100755 --- a/lib/active_record_setup.rb +++ b/lib/active_record_setup.rb @@ -33,11 +33,11 @@ class ActiveRecord::Base key = key+"s" unless self.column_names.include?(key) err = "no attribute found: '"+k.to_s+"'" - if $sinatra - $sinatra.halt 400,err - else +# if $sinatra +# $sinatra.halt 400,err +# else raise err - end +# end end end end diff --git a/lib/format_util.rb b/lib/format_util.rb index c1f5e7c..3d3a3e6 100644 --- a/lib/format_util.rb +++ b/lib/format_util.rb @@ -4,6 +4,7 @@ class String # :prediction_feature -> predictionFeature # :test_dataset_uri -> testDataset + # :validation_uris -> validation def to_rdf_format s = gsub(/_uri(s|)$/,"") s.gsub(/_./) do |m| @@ -18,6 +19,18 @@ class String end end + DC_KEYS = [ "title", "creator", "date", "format" ] + RDF_KEYS = [ "type" ] + + def to_owl_uri + if DC_KEYS.include?(self) + return DC.send(self) + elsif RDF_KEYS.include?(self) + return RDF.send(self) + else + return OT.send(self) + end + end end class Hash @@ -36,5 +49,20 @@ class Hash end return res end + + def keys_to_owl_uris + res = {} + keys.each do |k| + v = self[k] + if v.is_a?(Hash) + v = v.keys_to_owl_uris + elsif v.is_a?(Array) + v = v.collect{ |vv| vv.is_a?(Hash) ? vv.keys_to_owl_uris : vv } + end + res[k.to_s.to_owl_uri] = v + end + return res + end + end diff --git a/lib/validation_db.rb b/lib/validation_db.rb index 83b7e2f..4b852f9 100755 --- a/lib/validation_db.rb +++ b/lib/validation_db.rb @@ -80,16 +80,26 @@ module Lib property :regression_statistics, Object property :finished, Boolean, :default => false + attr_accessor :subjectid + + after :save, :check_policy + private + def check_policy + OpenTox::Authorization.check_policy(validation_uri, subjectid) + end + + public def date created_at end def validation_uri - $sinatra.url_for("/"+self.id.to_s, :full) + raise "no id" if self.id==nil + $url_provider.url_for("/"+self.id.to_s, :full) end def crossvalidation_uri - $sinatra.url_for("/crossvalidation/"+self.crossvalidation_id.to_s, :full) if self.crossvalidation_id + $url_provider.url_for("/crossvalidation/"+self.crossvalidation_id.to_s, :full) if self.crossvalidation_id end def self.classification_property?( property ) @@ -120,12 +130,22 @@ module Lib property :finished, Boolean, :default => false property :stratified, Boolean, :default => false + attr_accessor :subjectid + + after :save, :check_policy + private + def check_policy + OpenTox::Authorization.check_policy(crossvalidation_uri, subjectid) + end + + public def date created_at end def crossvalidation_uri - $sinatra.url_for("/crossvalidation/"+self.id.to_s, :full) if self.id + raise "no id" if self.id==nil + $url_provider.url_for("/crossvalidation/"+self.id.to_s, :full) if self.id end # convenience method to list all crossvalidations that are unique diff --git a/reach_reports/reach_application.rb b/reach_reports/reach_application.rb index 4187c1b..fd77078 100755 --- a/reach_reports/reach_application.rb +++ b/reach_reports/reach_application.rb @@ -20,8 +20,8 @@ get '/reach_report' do if request.env['HTTP_ACCEPT'] =~ /text\/html/ content_type "text/html" related_links = - "All validations: "+$sinatra.url_for("/",:full)+"\n"+ - "Validation reporting: "+$sinatra.url_for("/report",:full) + "All validations: "+url_for("/",:full)+"\n"+ + "Validation reporting: "+url_for("/report",:full) description = "A list of all suported REACH reporting types." OpenTox.text_to_html uri_list,related_links,description @@ -37,7 +37,7 @@ get '/reach_report/:type' do if request.env['HTTP_ACCEPT'] =~ /text\/html/ content_type "text/html" related_links = - "All REACH reporting types: "+$sinatra.url_for("/reach_report",:full) + "All REACH reporting types: "+url_for("/reach_report",:full) description = "A list of "+type+" reports." post_params = "" @@ -95,7 +95,7 @@ get '/reach_report/:type/:id' do content_type "text/html" related_links = "Open report in QMRF editor: "+rep.report_uri+"/editor"+"\n"+ - "All "+type+" reports: "+$sinatra.url_for("/reach_report/"+type,:full) + "All "+type+" reports: "+url_for("/reach_report/"+type,:full) description = "A QMRF report." OpenTox.text_to_html rep.to_yaml,related_links,description diff --git a/reach_reports/reach_persistance.rb b/reach_reports/reach_persistance.rb index a36e05f..ec45ba4 100755 --- a/reach_reports/reach_persistance.rb +++ b/reach_reports/reach_persistance.rb @@ -400,7 +400,7 @@ module ReachReports def self.get_uri( report ) raise "internal error, id not set "+to_yaml if report.id==nil - return $sinatra.url_for("/"+File.join(report.type,report.id.to_s), :full).to_s + return $url_provider.url_for("/"+File.join(report.type,report.id.to_s), :full).to_s end @@ -1006,7 +1006,7 @@ module ReachReports end def report_uri - return $sinatra.url_for("/reach_report/QMRF/"+@id.to_s, :full).to_s + return $url_provider.url_for("/reach_report/QMRF/"+@id.to_s, :full).to_s end def self.from_xml(report, xml_data) diff --git a/reach_reports/reach_service.rb b/reach_reports/reach_service.rb index 808d08a..5e11dc1 100755 --- a/reach_reports/reach_service.rb +++ b/reach_reports/reach_service.rb @@ -27,7 +27,7 @@ module ReachReports when /(?i)QMRF/ if params[:model_uri] task = OpenTox::Task.create( "Create "+type+" report", - $sinatra.url_for("/reach_report/"+type, :full) ) do |task| #, params + $url_provider.url_for("/reach_report/"+type, :full) ) do |task| #, params report = ReachReports::QmrfReport.new :model_uri => params[:model_uri] build_qmrf_report(report, task) @@ -39,17 +39,17 @@ module ReachReports ReachReports::QmrfReport.from_xml(report,input) result_uri = report.report_uri else - $sinatra.halt 400, "illegal parameters for qmrf-report creation, either\n"+ + raise OpenTox::BadRequestError.new "illegal parameters for qmrf-report creation, either\n"+ "* give 'model_uri' as param\n"+ "* provide xml file\n"+ "params given: "+params.inspect end when /(?i)QPRF/ - $sinatra.halt 400,"qprf report creation not yet implemented" + raise OpenTox::BadRequestError.new "qprf report creation not yet implemented" if params[:compound_uri] #report = ReachReports::QprfReport.new :compound_uri => params[:compound_uri] else - $sinatra.halt 400, "illegal parameters for qprf-report, use either\n"+ + raise OpenTox::BadRequestError.new "illegal parameters for qprf-report, use either\n"+ "* compound-uri\n"+ "params given: "+params.inspect end @@ -294,7 +294,7 @@ module ReachReports when /(?i)QPRF/ report = ReachReports::QprfReport.get(id) end - $sinatra.halt 404, type+" report with id '#{id}' not found." unless report + raise OpenTox::NotFoundError.new type+" report with id '#{id}' not found." unless report return report end end diff --git a/reach_reports/reach_test.rb b/reach_reports/reach_test.rb index 13625e5..4f7113b 100755 --- a/reach_reports/reach_test.rb +++ b/reach_reports/reach_test.rb @@ -11,10 +11,10 @@ LOGGER = OTLogger.new(STDOUT) LOGGER.datetime_format = "%Y-%m-%d %H:%M:%S " LOGGER.formatter = Logger::Formatter.new -#Rack::Test::DEFAULT_HOST = "localhost/validation" +#Rack::Test::DEFAULT_HOST = "local-ot/validation" module Sinatra module UrlForHelper - BASE = "http://localhost/validation" + BASE = "http://local-ot/validation" def url_for url_fragment, mode=:path_only case mode when :path_only @@ -109,19 +109,19 @@ class ReachTest < Test::Unit::TestCase # raise "File not found: "+file.path.to_s unless File.exist?(file.path) # data = File.read(file.path) # #puts "data found "+data.to_s[0..1000] -# puts OpenTox::RestClientWrapper.post("http://localhost/validation/reach_report/qmrf/20",{:content_type => "application/qmrf-xml"},data).to_s.chomp +# puts OpenTox::RestClientWrapper.post("http://local-ot/validation/reach_report/qmrf/20",{:content_type => "application/qmrf-xml"},data).to_s.chomp # post "/reach_report/qmrf/8" # puts last_response.body #model_uri = "http://ambit.uni-plovdiv.bg:8080/ambit2/model/173393" - model_uri = "http://localhost/model/1" - #http://localhost/majority/class/model/15 - #model_uri = "http://localhost/majority/class/model/15" - # model_uri = "http://localhost/majority/class/model/91" + model_uri = "http://local-ot/model/1" + #http://local-ot/majority/class/model/15 + #model_uri = "http://local-ot/majority/class/model/15" + # model_uri = "http://local-ot/majority/class/model/91" #model_uri = "http://apps.ideaconsult.net:8080/ambit2/model/2" - post '/reach_report/qmrf',:model_uri=>model_uri #http://localhost/model/1" - ##post '/reach_report/qprf',:compound_uri=>"http://localhost/compound/XYZ" + post '/reach_report/qmrf',:model_uri=>model_uri #http://local-ot/model/1" + ##post '/reach_report/qprf',:compound_uri=>"http://local-ot/compound/XYZ" uri = last_response.body puts "task: "+uri.to_s uri = Lib::TestUtil.wait_for_task(uri) diff --git a/report/report_application.rb b/report/report_application.rb index 6d6353f..b02b780 100755 --- a/report/report_application.rb +++ b/report/report_application.rb @@ -46,7 +46,7 @@ get '/report/?' do case request.env['HTTP_ACCEPT'].to_s when /text\/html/ related_links = - "All validations: "+$sinatra.url_for("/",:full) + "All validations: "+url_for("/",:full) description = "A list of all report types." content_type "text/html" @@ -63,9 +63,9 @@ get '/report/:report_type' do case request.env['HTTP_ACCEPT'].to_s when /text\/html/ related_links = - "Available report types: "+$sinatra.url_for("/report",:full)+"\n"+ - "Single validations: "+$sinatra.url_for("/",:full)+"\n"+ - "Crossvalidations: "+$sinatra.url_for("/crossvalidation",:full) + "Available report types: "+url_for("/report",:full)+"\n"+ + "Single validations: "+url_for("/",:full)+"\n"+ + "Crossvalidations: "+url_for("/crossvalidation",:full) description = "A list of all "+params[:report_type]+" reports. To create a report, use the POST method." post_params = [[:validation_uris]] @@ -118,14 +118,14 @@ end delete '/report/:type/:id' do perform do |rs| content_type "text/plain" - rs.delete_report(params[:type],params[:id]) + rs.delete_report(params[:type],params[:id],@subjectid) end end post '/report/:type' do task = OpenTox::Task.create("Create report",url_for("/report/"+params[:type], :full)) do |task| #,params perform do |rs| - rs.create_report(params[:type],params[:validation_uris]?params[:validation_uris].split(/\n|,/):nil,task) + rs.create_report(params[:type],params[:validation_uris]?params[:validation_uris].split(/\n|,/):nil,@subjectid,task) end end content_type "text/uri-list" diff --git a/report/report_persistance.rb b/report/report_persistance.rb index d24c792..613e652 100755 --- a/report/report_persistance.rb +++ b/report/report_persistance.rb @@ -52,7 +52,7 @@ class Reports::ReportPersistance # call-seq: # delete_report(type, id) => boolean # - def delete_report(type, id) + def delete_report(type, id, subjectid=nil) raise "not implemented" end @@ -104,7 +104,7 @@ class Reports::FileReportPersistance < Reports::ReportPersistance return file_path end - def delete_report(type, id) + def delete_report(type, id, subjectid=nil) report_dir = report_directory(type, id) raise_report_not_found(type, id) unless File.directory?(report_dir) @@ -192,7 +192,6 @@ module Reports include DataMapper::Resource property :id, Serial - property :report_uri, String, :length => 255 property :report_type, String, :length => 255 property :created_at, DateTime property :validation_uris, Object @@ -200,10 +199,24 @@ module Reports property :model_uris, Object property :algorithm_uris, Object + attr_accessor :subjectid + + after :save, :check_policy + private + def check_policy + OpenTox::Authorization.check_policy(report_uri, subjectid) + end + + public def date created_at end + def report_uri + raise "no id" if self.id==nil + Reports::ReportService.instance.get_uri(self.report_type, self.id) + end + def get_content_as_hash map = {} [ :date, :report_type, :validation_uris, :crossvalidation_uris, @@ -214,25 +227,24 @@ module Reports end def to_yaml - get_content_as_hash.to_yaml + get_content_as_hash.keys_to_rdf_format.keys_to_owl_uris.to_yaml end def to_rdf - owl = OpenTox::Owl.create("ValidationReport",report_uri) - owl.set_data(get_content_as_hash.keys_to_rdf_format) - owl.rdf + s = OpenTox::Serializer::Owl.new + s.add_val(report_uri,OT.Report,get_content_as_hash.keys_to_rdf_format.keys_to_owl_uris) + s.to_rdfxml end end class ExtendedFileReportPersistance < FileReportPersistance - def new_report(report_content, type, meta_data, uri_provider) + def new_report(report_content, type, meta_data, uri_provider, subjectid=nil) raise "report meta data missing" unless meta_data report = ReportData.new(meta_data) - report.save #to set id -# report.attributes = { :report_type => type, :report_uri => uri_provider.get_uri(type, report.id) } -# report.save - report.update :report_type => type, :report_uri => uri_provider.get_uri(type, report.id) + report.subjectid = subjectid + report.report_type = type + report.save new_report_with_id(report_content, type, report.id) end @@ -275,7 +287,7 @@ module Reports end end - def delete_report(type, id) + def delete_report(type, id, subjectid=nil) # begin # report = ReportData.find(:first, :conditions => {:id => id, :report_type => type}) # rescue ActiveRecord::RecordNotFound @@ -285,6 +297,14 @@ module Reports report = ReportData.first({:id => id, :report_type => type}) raise Reports::NotFound.new("Report with id='"+id.to_s+"' and type='"+type.to_s+"' not found.") unless report report.destroy + if (subjectid) + begin + res = OpenTox::Authorization.delete_policies_from_uri(report.report_uri, subjectid) + LOGGER.debug "Deleted validation policy: #{res}" + rescue + LOGGER.warn "Policy delete error for validation: #{report.report_uri}" + end + end super end end diff --git a/report/report_service.rb b/report/report_service.rb index 5221b6d..dd1f6b3 100644 --- a/report/report_service.rb +++ b/report/report_service.rb @@ -60,7 +60,7 @@ module Reports # call-seq: # create_report(type, validation_uris) => string # - def create_report(type, validation_uris, task=nil) + def create_report(type, validation_uris, subjectid=nil, task=nil) LOGGER.info "create report of type '"+type.to_s+"'" check_report_type(type) @@ -79,7 +79,7 @@ module Reports LOGGER.debug "report created" #step 3: persist report if creation not failed - id = @@persistance.new_report(report_content, type, create_meta_data(type, validation_set, validation_uris), self) + id = @@persistance.new_report(report_content, type, create_meta_data(type, validation_set, validation_uris), self, subjectid) LOGGER.debug "report persisted with id: '"+id.to_s+"'" task.progress(100) if task @@ -118,19 +118,19 @@ module Reports # call-seq: # delete_report( type, id ) # - def delete_report( type, id ) + def delete_report( type, id, subjectid=nil ) LOGGER.info "delete report '"+id.to_s+"' of type '"+type.to_s+"'" check_report_type(type) - @@persistance.delete_report(type, id) + @@persistance.delete_report(type, id, subjectid) end # no api-access for this method - def delete_all_reports( type ) + def delete_all_reports( type, subjectid=nil ) LOGGER.info "deleting all reports of type '"+type.to_s+"'" check_report_type(type) - @@persistance.list_reports(type).each{ |id| @@persistance.delete_report(type, id) } + @@persistance.list_reports(type).each{ |id| @@persistance.delete_report(type, id, subjectid) } end def parse_type( report_uri ) diff --git a/report/report_test.rb b/report/report_test.rb index f579802..1f3e524 100755 --- a/report/report_test.rb +++ b/report/report_test.rb @@ -20,10 +20,10 @@ class Reports::ApplicationTest < Test::Unit::TestCase # file = File.new("qmrf-report.xml") # raise "File not found: "+file.path.to_s unless File.exist?(file.path) # data = File.read(file.path) -# puts OpenTox::RestClientWrapper.post("http://localhost/validation/report/qmrf/1",{:content_type => "application/qmrf-xml"},data).to_s.chomp +# puts OpenTox::RestClientWrapper.post("http://local-ot/validation/report/qmrf/1",{:content_type => "application/qmrf-xml"},data).to_s.chomp #get "/report/qmrf/1",nil,'HTTP_ACCEPT' => "application/qmrf-xml"#"application/rdf+xml"#"application/x-yaml" -# get "/report/validation" # ?model=http://localhost/model/1" #,nil,'HTTP_ACCEPT' => "application/rdf+xml"#"application/x-yaml" +# get "/report/validation" # ?model=http://local-ot/model/1" #,nil,'HTTP_ACCEPT' => "application/rdf+xml"#"application/x-yaml" # puts last_response.body.to_s #Reports::XMLReport.generate_demo_xml_report.write_to @@ -33,9 +33,16 @@ class Reports::ApplicationTest < Test::Unit::TestCase #puts uri #get uri - get '/report/crossvalidation',:model=>"http://localhost/majority/class/model/101" - puts last_response.body.to_s + #get '/report/crossvalidation',:model=>"http://local-ot/majority/class/model/101" + #puts last_response.body.to_s + get '/report/validation/2',nil,'HTTP_ACCEPT' => "application/x-yaml" + puts last_response.body.to_s + + get '/report/validation/2',nil,'HTTP_ACCEPT' => "application/rdf+xml" + puts last_response.body.to_s + + #get '/report/validation/117',nil,'HTTP_ACCEPT' => "text/html" #post '/report/validation/1/format_html',:css_style_sheet=>"http://apps.ideaconsult.net:8180/ToxPredict/style/global.css" @@ -45,7 +52,7 @@ class Reports::ApplicationTest < Test::Unit::TestCase #post 'http://ot.validation.de/report/crossvalidation',:validation_uris=>"http://ot.validation.de/crossvalidation/1" #uri = last_response.body.to_s -# val_uris = ["http://localhost/validation/64"]#,"http://localhost/validation/65" ] +# val_uris = ["http://local-ot/validation/64"]#,"http://local-ot/validation/65" ] # # post '/report/validation',:validation_uris=>val_uris.join("\n") # uri = wait_for_task(last_response.body.to_s) @@ -129,7 +136,7 @@ end # WS_CLASS_ALG=File.join(CONFIG[:services]["opentox-algorithm"],"lazar") # WS_FEATURE_ALG=File.join(CONFIG[:services]["opentox-algorithm"],"fminer") # -# #WS_CLASS_ALG_2="localhost:4008/algorithm" +# #WS_CLASS_ALG_2="local-ot:4008/algorithm" # #WS_FEATURE_ALG_2=nil # # def test_service_ot_webservice @@ -175,13 +182,13 @@ end # #val_uri = create_cross_validation(data_uri, WS_CLASS_ALG_2, WS_FEATURE_ALG_2) # #val_uri = create_cross_validation(data_uri) # val_uri = File.join(WS_VAL,"crossvalidation/1") -# #val_uri2 = "http://localhost:4007/crossvalidation/14" +# #val_uri2 = "http://local-ot:4007/crossvalidation/14" ## # add_resource val_uri # create_report(rep, val_uri, "crossvalidation") # ## #val_uri2 = create_cross_validation(data_uri, WS_CLASS_ALG_2, WS_FEATURE_ALG_2) -## #val_uri = ["http://localhost:4007/crossvalidation/6", "http://localhost:4007/crossvalidation/8"] -# #val_uri = ["http://localhost:4007/crossvalidation/7", "http://localhost:4007/crossvalidation/8"] +## #val_uri = ["http://local-ot:4007/crossvalidation/6", "http://local-ot:4007/crossvalidation/8"] +# #val_uri = ["http://local-ot:4007/crossvalidation/7", "http://local-ot:4007/crossvalidation/8"] ## #add_resource val_uri # #create_report(rep, val_uri, "algorithm_comparison") # diff --git a/report/xml_report.rb b/report/xml_report.rb index 46f2a67..5f2709e 100755 --- a/report/xml_report.rb +++ b/report/xml_report.rb @@ -22,8 +22,8 @@ module Reports include REXML def self.dtd_directory - if $sinatra - $sinatra.url_for('/'+ENV['DOCBOOK_DIRECTORY']+'/'+ENV['REPORT_DTD'], :full) + if $url_provider + $url_provider.url_for('/'+ENV['DOCBOOK_DIRECTORY']+'/'+ENV['REPORT_DTD'], :full) else f = File.expand_path(File.join(ENV['DOCBOOK_DIRECTORY'],ENV['REPORT_DTD'])) raise "cannot find dtd" unless File.exist?(f) diff --git a/test/test_examples.rb b/test/test_examples.rb index 63fb505..45d7035 100755 --- a/test/test_examples.rb +++ b/test/test_examples.rb @@ -110,9 +110,11 @@ module ValidationExamples class HamsterSplit < SplitTestValidation def initialize - @dataset_file = File.new("data/hamster_carcinogenicity.yaml","r") - #@prediction_feature = "http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB)" - @prediction_feature = "http://localhost/dataset/1/feature/hamster_carcinogenicity" + #@dataset_file = File.new("data/hamster_carcinogenicity.yaml","r") + @dataset_file = File.new("data/hamster_carcinogenicity.csv","r") + + #@prediction_feature = "http://local-ot/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB)" + #@prediction_feature = "http://local-ot/dataset/1/feature/hamster_carcinogenicity" end end @@ -135,9 +137,11 @@ module ValidationExamples class HamsterBootstrapping < BootstrappingValidation def initialize - @dataset_file = File.new("data/hamster_carcinogenicity.yaml","r") - #@prediction_feature = "http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB)" - @prediction_feature = "http://localhost/dataset/1/feature/hamster_carcinogenicity" + #@dataset_file = File.new("data/hamster_carcinogenicity.yaml","r") + @dataset_file = File.new("data/hamster_carcinogenicity.csv","r") + + #@prediction_feature = "http://local-ot/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB)" + #@prediction_feature = "http://local-ot/dataset/1/feature/hamster_carcinogenicity" end end @@ -160,11 +164,17 @@ module ValidationExamples class HamsterTrainingTest < TrainingTestValidation def initialize - @test_target_dataset_file = File.new("data/hamster_carcinogenicity.yaml","r") - @training_dataset_file = File.new("data/hamster_carcinogenicity.train.yaml","r") - @test_dataset_file = File.new("data/hamster_carcinogenicity.test.yaml","r") - #@prediction_feature = "http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB)" - @prediction_feature = "http://localhost/dataset/1/feature/hamster_carcinogenicity" +# @test_target_dataset_file = File.new("data/hamster_carcinogenicity.yaml","r") +# @training_dataset_file = File.new("data/hamster_carcinogenicity.train.yaml","r") +# @test_dataset_file = File.new("data/hamster_carcinogenicity.test.yaml","r") + + @test_target_dataset_file = File.new("data/hamster_carcinogenicity.csv","r") + @training_dataset_file = File.new("data/hamster_carcinogenicity.train.csv","r") + @test_dataset_file = File.new("data/hamster_carcinogenicity.test.csv","r") + + + #@prediction_feature = "http://local-ot/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB)" + #@prediction_feature = "http://local-ot/dataset/1/feature/hamster_carcinogenicity" end end @@ -187,9 +197,11 @@ module ValidationExamples class HamsterCrossvalidation < CrossValidation def initialize - @dataset_file = File.new("data/hamster_carcinogenicity.yaml","r") - #@prediction_feature = "http://localhost/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB)" - @prediction_feature = "http://localhost/dataset/1/feature/hamster_carcinogenicity" + #@dataset_file = File.new("data/hamster_carcinogenicity.yaml","r") + @dataset_file = File.new("data/hamster_carcinogenicity.csv","r") + + #@prediction_feature = "http://local-ot/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB)" + #@prediction_feature = "http://local-ot/dataset/1/feature/hamster_carcinogenicity" @num_folds = 10 end end diff --git a/test/test_examples_util.rb b/test/test_examples_util.rb index b9a1c99..9f11fe7 100755 --- a/test/test_examples_util.rb +++ b/test/test_examples_util.rb @@ -15,12 +15,12 @@ module ValidationExamples #data_uri = OpenTox::RestClientWrapper.post(dataset_service,{:content_type => file_type},data).to_s.chomp #@@dataset_uris[file.path.to_s] = data_uri #LOGGER.debug "uploaded dataset: "+data_uri - d = OpenTox::Dataset.create + d = OpenTox::Dataset.create(CONFIG[:services]["opentox-dataset"], SUBJECTID) d.load_yaml(data) - d.save + d.save( SUBJECTID ) @@dataset_uris[file.path.to_s] = d.uri elsif (file.path =~ /csv$/) - d = OpenTox::Dataset.create_from_csv_file(file.path) + d = OpenTox::Dataset.create_from_csv_file(file.path, SUBJECTID) raise "num features not 1 (="+d.features.keys.size.to_s+"), what to predict??" if d.features.keys.size != 1 @@prediction_features[file.path.to_s] = d.features.keys[0] @@dataset_uris[file.path.to_s] = d.uri @@ -56,6 +56,7 @@ module ValidationExamples def self.validation_post(uri, params) + params[:subjectid] = SUBJECTID if SUBJECTID and params[:subjectid]==nil if $test_case $test_case.post uri,params return wait($test_case.last_response.body) @@ -77,10 +78,10 @@ module ValidationExamples def self.validation_delete(uri, accept_header='application/rdf+xml') if $test_case - $test_case.delete uri,nil,'HTTP_ACCEPT' => accept_header + $test_case.delete uri,{:subjectid => SUBJECTID},'HTTP_ACCEPT' => accept_header return wait($test_case.last_response.body) else - return OpenTox::RestClientWrapper.delete(File.join(CONFIG[:services]["opentox-validation"],uri),{:accept => accept_header}) + return OpenTox::RestClientWrapper.delete(File.join(CONFIG[:services]["opentox-validation"],uri),{:accept => accept_header,:subjectid => SUBJECTID}) end end @@ -242,7 +243,10 @@ module ValidationExamples uri = a[0] file = a[1] if send(uri)==nil and send(file)!=nil - send("#{uri.to_s}=".to_sym, Util.upload_dataset(send(file))) + dataset_uri = Util.upload_dataset(send(file)) + send("#{uri.to_s}=".to_sym, dataset_uri) + @uploaded_datasets = [] unless @uploaded_datasets + @uploaded_datasets << dataset_uri end end @@ -273,6 +277,14 @@ module ValidationExamples rescue => ex puts "Could not delete report:' "+@report_uri+" "+ex.message end + @uploaded_datasets.each do |d| + begin + puts "deleting dataset "+d + OpenTox::RestClientWrapper.delete(d,{:subjectid => SUBJECTID}) + rescue => ex + puts "Could not delete dataset:' "+d+" "+ex.message + end + end end def report diff --git a/validation/validation_application.rb b/validation/validation_application.rb index 9c6c60c..5d521a8 100755 --- a/validation/validation_application.rb +++ b/validation/validation_application.rb @@ -5,7 +5,6 @@ end require 'lib/merge.rb' #require 'lib/active_record_setup.rb' - require 'validation/validation_service.rb' get '/crossvalidation/?' do @@ -14,8 +13,8 @@ get '/crossvalidation/?' do #uri_list = Validation::Crossvalidation.find_like(params).collect{ |cv| cv.crossvalidation_uri }.join("\n")+"\n" if request.env['HTTP_ACCEPT'] =~ /text\/html/ related_links = - "Single validations: "+$sinatra.url_for("/",:full)+"\n"+ - "Crossvalidation reports: "+$sinatra.url_for("/report/crossvalidation",:full) + "Single validations: "+url_for("/",:full)+"\n"+ + "Crossvalidation reports: "+url_for("/report/crossvalidation",:full) description = "A list of all crossvalidations.\n"+ "Use the POST method to perform a crossvalidation." @@ -41,6 +40,7 @@ post '/crossvalidation/?' do :algorithm_uri => params[:algorithm_uri] } [ :num_folds, :random_seed, :stratified ].each{ |sym| cv_params[sym] = params[sym] if params[sym] } cv = Validation::Crossvalidation.new cv_params + cv.subjectid = @subjectid cv.perform_cv( params[:prediction_feature], params[:algorithm_params], task ) cv.crossvalidation_uri end @@ -61,6 +61,7 @@ post '/crossvalidation/cleanup/?' do LOGGER.debug "delete cv with id:"+cv.id.to_s+", finished is false" deleted << cv.crossvalidation_uri #Validation::Crossvalidation.delete(cv.id) + cv.subjectid = @subjectid cv.delete #end end @@ -92,11 +93,11 @@ get '/crossvalidation/:id' do crossvalidation.to_rdf when /text\/html/ related_links = - "Search for corresponding cv report: "+$sinatra.url_for("/report/crossvalidation?crossvalidation="+crossvalidation.crossvalidation_uri,:full)+"\n"+ - "Statistics for this crossvalidation: "+$sinatra.url_for("/crossvalidation/"+params[:id]+"/statistics",:full)+"\n"+ - "Predictions of this crossvalidation: "+$sinatra.url_for("/crossvalidation/"+params[:id]+"/predictions",:full)+"\n"+ - "All crossvalidations: "+$sinatra.url_for("/crossvalidation",:full)+"\n"+ - "All crossvalidation reports: "+$sinatra.url_for("/report/crossvalidation",:full) + "Search for corresponding cv report: "+url_for("/report/crossvalidation?crossvalidation="+crossvalidation.crossvalidation_uri,:full)+"\n"+ + "Statistics for this crossvalidation: "+url_for("/crossvalidation/"+params[:id]+"/statistics",:full)+"\n"+ + "Predictions of this crossvalidation: "+url_for("/crossvalidation/"+params[:id]+"/predictions",:full)+"\n"+ + "All crossvalidations: "+url_for("/crossvalidation",:full)+"\n"+ + "All crossvalidation reports: "+url_for("/report/crossvalidation",:full) description = "A crossvalidation resource." content_type "text/html" @@ -134,7 +135,7 @@ get '/crossvalidation/:id/statistics' do case request.env['HTTP_ACCEPT'].to_s when /text\/html/ related_links = - "The corresponding crossvalidation resource: "+$sinatra.url_for("/crossvalidation/"+params[:id],:full) + "The corresponding crossvalidation resource: "+url_for("/crossvalidation/"+params[:id],:full) description = "The averaged statistics for the crossvalidation." content_type "text/html" @@ -156,6 +157,7 @@ delete '/crossvalidation/:id/?' do # Validation::Crossvalidation.delete(params[:id]) cv = Validation::Crossvalidation.get(params[:id]) + cv.subjectid = @subjectid halt 404,"Crossvalidation '#{params[:id]}' not found." unless cv cv.delete end @@ -192,8 +194,8 @@ get '/crossvalidation/:id/predictions' do description = "The crossvalidation predictions as (yaml-)array." related_links = - "All crossvalidations: "+$sinatra.url_for("/crossvalidation",:full)+"\n"+ - "Correspoding crossvalidation: "+$sinatra.url_for("/crossvalidation/"+params[:id],:full) + "All crossvalidations: "+url_for("/crossvalidation",:full)+"\n"+ + "Correspoding crossvalidation: "+url_for("/crossvalidation/"+params[:id],:full) OpenTox.text_to_html p, related_links, description else content_type "text/x-yaml" @@ -210,14 +212,14 @@ get '/?' do if request.env['HTTP_ACCEPT'] =~ /text\/html/ related_links = "To perform a validation:\n"+ - "* "+$sinatra.url_for("/test_set_validation",:full)+"\n"+ - "* "+$sinatra.url_for("/training_test_validation",:full)+"\n"+ - "* "+$sinatra.url_for("/bootstrapping",:full)+"\n"+ - "* "+$sinatra.url_for("/training_test_split",:full)+"\n"+ - "* "+$sinatra.url_for("/crossvalidation",:full)+"\n"+ - "Validation reporting: "+$sinatra.url_for("/report",:full)+"\n"+ - "REACH relevant reporting: "+$sinatra.url_for("/reach_report",:full)+"\n"+ - "Examples for using this service: "+$sinatra.url_for("/examples",:full)+"\n" + "* "+url_for("/test_set_validation",:full)+"\n"+ + "* "+url_for("/training_test_validation",:full)+"\n"+ + "* "+url_for("/bootstrapping",:full)+"\n"+ + "* "+url_for("/training_test_split",:full)+"\n"+ + "* "+url_for("/crossvalidation",:full)+"\n"+ + "Validation reporting: "+url_for("/report",:full)+"\n"+ + "REACH relevant reporting: "+url_for("/reach_report",:full)+"\n"+ + "Examples for using this service: "+url_for("/examples",:full)+"\n" description = "A validation web service for the OpenTox project ( http://opentox.org ).\n"+ "In the root directory (this is where you are now), a list of all validation resources is returned." @@ -243,6 +245,7 @@ post '/test_set_validation' do :test_dataset_uri => params[:test_dataset_uri], :test_target_dataset_uri => params[:test_target_dataset_uri], :prediction_feature => params[:prediction_feature] + v.subjectid = @subjectid v.validate_model( task ) v.validation_uri end @@ -261,8 +264,8 @@ get '/test_set_validation' do if request.env['HTTP_ACCEPT'] =~ /text\/html/ related_links = - "All validations: "+$sinatra.url_for("/",:full)+"\n"+ - "Validation reports: "+$sinatra.url_for("/report/validation",:full) + "All validations: "+url_for("/",:full)+"\n"+ + "Validation reports: "+url_for("/report/validation",:full) description = "A list of all test-set-validations.\n"+ "To perform a test-set-validation use the POST method." @@ -285,6 +288,7 @@ post '/training_test_validation/?' do :test_dataset_uri => params[:test_dataset_uri], :test_target_dataset_uri => params[:test_target_dataset_uri], :prediction_feature => params[:prediction_feature] + v.subjectid = @subjectid v.validate_algorithm( params[:algorithm_params], task ) v.validation_uri end @@ -302,8 +306,8 @@ get '/training_test_validation' do uri_list = Validation::Validation.all( :validation_type => "training_test_validation" ).collect{ |v| v.validation_uri }.join("\n")+"\n" if request.env['HTTP_ACCEPT'] =~ /text\/html/ related_links = - "All validations: "+$sinatra.url_for("/",:full)+"\n"+ - "Validation reports: "+$sinatra.url_for("/report/validation",:full) + "All validations: "+url_for("/",:full)+"\n"+ + "Validation reports: "+url_for("/report/validation",:full) description = "A list of all training-test-validations.\n"+ "To perform a training-test-validation use the POST method." @@ -330,13 +334,13 @@ post '/bootstrapping' do halt 400, "prediction_feature missing" unless params[:prediction_feature] params.merge!( Validation::Util.bootstrapping( params[:dataset_uri], - params[:prediction_feature], params[:random_seed], OpenTox::SubTask.create(task,0,33)) ) + params[:prediction_feature], @subjectid, + params[:random_seed], OpenTox::SubTask.create(task,0,33)) ) v = Validation::Validation.new :validation_type => "bootstrapping", - :training_dataset_uri => params[:training_dataset_uri], - :test_dataset_uri => params[:test_dataset_uri], :test_target_dataset_uri => params[:dataset_uri], :prediction_feature => params[:prediction_feature], :algorithm_uri => params[:algorithm_uri] + v.subjectid = @subjectid v.validate_algorithm( params[:algorithm_params], OpenTox::SubTask.create(task,33,100)) v.validation_uri end @@ -349,8 +353,8 @@ get '/bootstrapping' do uri_list = Validation::Validation.all( :validation_type => "bootstrapping" ).collect{ |v| v.validation_uri }.join("\n")+"\n" if request.env['HTTP_ACCEPT'] =~ /text\/html/ related_links = - "All validations: "+$sinatra.url_for("/",:full)+"\n"+ - "Validation reports: "+$sinatra.url_for("/report/validation",:full) + "All validations: "+url_for("/",:full)+"\n"+ + "Validation reports: "+url_for("/report/validation",:full) description = "A list of all bootstrapping-validations.\n"+ "To perform a bootstrapping-validation use the POST method." @@ -377,13 +381,14 @@ post '/training_test_split' do halt 400, "prediction_feature missing" unless params[:prediction_feature] params.merge!( Validation::Util.train_test_dataset_split(params[:dataset_uri], params[:prediction_feature], - params[:split_ratio], params[:random_seed], OpenTox::SubTask.create(task,0,33))) + @subjectid, params[:split_ratio], params[:random_seed], OpenTox::SubTask.create(task,0,33))) v = Validation::Validation.new :validation_type => "training_test_split", :training_dataset_uri => params[:training_dataset_uri], :test_dataset_uri => params[:test_dataset_uri], :test_target_dataset_uri => params[:dataset_uri], :prediction_feature => params[:prediction_feature], :algorithm_uri => params[:algorithm_uri] + v.subjectid = @subjectid v.validate_algorithm( params[:algorithm_params], OpenTox::SubTask.create(task,33,100)) v.validation_uri end @@ -399,8 +404,8 @@ get '/training_test_split' do uri_list = Validation::Validation.all( :validation_type => "training_test_split" ).collect{ |v| v.validation_uri }.join("\n")+"\n" if request.env['HTTP_ACCEPT'] =~ /text\/html/ related_links = - "All validations: "+$sinatra.url_for("/",:full)+"\n"+ - "Validation reports: "+$sinatra.url_for("/report/validation",:full) + "All validations: "+url_for("/",:full)+"\n"+ + "Validation reports: "+url_for("/report/validation",:full) description = "A list of all training-test-split-validations.\n"+ "To perform a training-test-split-validation use the POST method." @@ -427,6 +432,7 @@ post '/cleanup/?' do LOGGER.debug "delete val with id:"+val.id.to_s+", finished is false" deleted << val.validation_uri #Validation::Validation.delete(val.id) + val.subjectid = @subjectid val.delete end LOGGER.info "validation cleanup, deleted "+deleted.size.to_s+" validations" @@ -452,6 +458,7 @@ post '/validate_datasets' do if params[:model_uri] v = Validation::Validation.new params + v.subjectid = @subjectid v.compute_validation_stats_with_model(nil,false,task) else halt 400, "please specify 'model_uri' or 'prediction_feature'" unless params[:prediction_feature] @@ -462,7 +469,8 @@ post '/validate_datasets' do predicted_feature = params.delete("predicted_feature") feature_type = "classification" if params.delete("classification")!=nil feature_type = "regression" if params.delete("regression")!=nil - v = Validation::Validation.new params + v = Validation::Validation.new params + v.subjectid = @subjectid v.compute_validation_stats(feature_type,predicted_feature,nil,nil,false,task) end v.validation_uri @@ -486,8 +494,8 @@ get '/:id/predictions' do description = "The validation predictions as (yaml-)array." related_links = - "All validations: "+$sinatra.url_for("/",:full)+"\n"+ - "Correspoding validation: "+$sinatra.url_for("/"+params[:id],:full) + "All validations: "+url_for("/",:full)+"\n"+ + "Correspoding validation: "+url_for("/"+params[:id],:full) OpenTox.text_to_html p.to_array.to_yaml, related_links, description else content_type "text/x-yaml" @@ -529,10 +537,10 @@ get '/:id' do description = "A validation resource." related_links = - "Search for corresponding report: "+$sinatra.url_for("/report/validation?validation="+validation.validation_uri,:full)+"\n"+ - "Get validation predictions: "+$sinatra.url_for("/"+params[:id]+"/predictions",:full)+"\n"+ - "All validations: "+$sinatra.url_for("/",:full)+"\n"+ - "All validation reports: "+$sinatra.url_for("/report/validation",:full) + "Search for corresponding report: "+url_for("/report/validation?validation="+validation.validation_uri,:full)+"\n"+ + "Get validation predictions: "+url_for("/"+params[:id]+"/predictions",:full)+"\n"+ + "All validations: "+url_for("/",:full)+"\n"+ + "All validation reports: "+url_for("/report/validation",:full) OpenTox.text_to_html validation.to_yaml,related_links,description when /application\/x-yaml|\*\/\*/ content_type "application/x-yaml" @@ -550,6 +558,7 @@ delete '/:id' do # halt 404, "Validation '#{params[:id]}' not found." # end validation = Validation::Validation.get(params[:id]) + validation.subjectid = @subjectid halt 404, "Validation '#{params[:id]}' not found." unless validation content_type "text/plain" validation.delete diff --git a/validation/validation_format.rb b/validation/validation_format.rb index 7c6396a..4f46100 100755 --- a/validation/validation_format.rb +++ b/validation/validation_format.rb @@ -17,7 +17,7 @@ module Validation h[p] = self.send(p) end if crossvalidation_id!=nil - cv = {} + cv = {:type => OT.CrossvalidationInfo} #skip crossvalidation_id cv[:crossvalidation_fold] = self.crossvalidation_fold cv[:crossvalidation_uri] = self.crossvalidation_uri @@ -25,15 +25,15 @@ module Validation end if classification_statistics raise "classification_statistics is no has: "+classification_statistics.class.to_s unless classification_statistics.is_a?(Hash) - clazz = {} + clazz = { :type => OT.ClassificationStatistics } Lib::VAL_CLASS_PROPS_SINGLE.each{ |p| clazz[p] = classification_statistics[p] } # transpose results per class class_values = {} Lib::VAL_CLASS_PROPS_PER_CLASS.each do |p| - $sinatra.halt 500, "missing classification statitstics: "+p.to_s+" "+classification_statistics.inspect if classification_statistics[p]==nil + raise "missing classification statitstics: "+p.to_s+" "+classification_statistics.inspect if classification_statistics[p]==nil classification_statistics[p].each do |class_value, property_value| - class_values[class_value] = {:class_value => class_value} unless class_values.has_key?(class_value) + class_values[class_value] = {:class_value => class_value, :type => OT.ClassValueStatistics} unless class_values.has_key?(class_value) map = class_values[class_value] map[p] = property_value end @@ -42,20 +42,20 @@ module Validation #converting confusion matrix cells = [] - $sinatra.halt 500,"confusion matrix missing" unless classification_statistics[:confusion_matrix]!=nil + raise "confusion matrix missing" unless classification_statistics[:confusion_matrix]!=nil classification_statistics[:confusion_matrix].each do |k,v| - cell = {} + cell = { :type => OT.ConfusionMatrixCell } # key in confusion matrix is map with predicted and actual attribute k.each{ |kk,vv| cell[kk] = vv } cell[:confusion_matrix_value] = v cells.push cell end - cm = { :confusion_matrix_cell => cells } + cm = { :confusion_matrix_cell => cells, :type => OT.ConfusionMatrix } clazz[:confusion_matrix] = cm h[:classification_statistics] = clazz elsif regression_statistics - regr = {} + regr = {:type => OT.RegressionStatistics } Lib::VAL_REGR_PROPS.each{ |p| regr[p] = regression_statistics[p]} h[:regression_statistics] = regr end @@ -63,13 +63,13 @@ module Validation end def to_rdf - owl = OpenTox::Owl.create("Validation",validation_uri) - owl.set_data(get_content_as_hash.keys_to_rdf_format) - owl.rdf + s = OpenTox::Serializer::Owl.new + s.add_val(validation_uri,OT.Validation,get_content_as_hash.keys_to_rdf_format.keys_to_owl_uris) + s.to_rdfxml end def to_yaml - get_content_as_hash.to_yaml + get_content_as_hash.keys_to_rdf_format.keys_to_owl_uris.to_yaml end end @@ -92,13 +92,13 @@ module Validation end def to_rdf - owl = OpenTox::Owl.create("'Crossvalidation",crossvalidation_uri) - owl.set_data(get_content_as_hash.keys_to_rdf_format) - owl.rdf + s = OpenTox::Serializer::Owl.new + s.add_val(crossvalidation_uri,OT.Crossvalidation,get_content_as_hash.keys_to_rdf_format.keys_to_owl_uris) + s.to_rdfxml end def to_yaml - get_content_as_hash.to_yaml + get_content_as_hash.keys_to_rdf_format.keys_to_owl_uris.to_yaml end end end diff --git a/validation/validation_service.rb b/validation/validation_service.rb index da5822e..eb9ecff 100755 --- a/validation/validation_service.rb +++ b/validation/validation_service.rb @@ -29,12 +29,12 @@ class Array end module Validation - + class Validation < Lib::Validation # constructs a validation object, Rsets id und uri #def initialize( params={} ) - #$sinatra.halt 500,"do not set id manually" if params[:id] + #raise "do not set id manually" if params[:id] #params[:finished] = false #super params #self.save! @@ -43,32 +43,57 @@ module Validation # deletes a validation # PENDING: model and referenced datasets are deleted as well, keep it that way? - def delete - - #model = OpenTox::Model::PredictionModel.find(self.model_uri) if self.model_uri - #model.destroy if model - - #[@test_dataset_uri, @training_dataset_uri, @prediction_dataset_uri].each do |d| - #dataset = OpenTox::Dataset.find(d) if d - #dataset.delete if dataset - #end - - #Validation::Validation.delete(self.id) + def delete( delete_all=true ) + if (delete_all) + to_delete = [:model_uri, :training_dataset_uri, :test_dataset_uri, :test_target_dataset_uri, :prediction_dataset_uri ] + case self.validation_type + when /test_set_validation/ + to_delete -= [ :model_uri, :training_dataset_uri, :test_dataset_uri, :test_target_dataset_uri ] + when /bootstrapping/ + to_delete -= [ :test_target_dataset_uri ] + when /training_test_validation/ + to_delete -= [ :training_dataset_uri, :test_dataset_uri, :test_target_dataset_uri ] + when /training_test_split/ + to_delete -= [ :test_target_dataset_uri ] + when /validate_dataset/ + to_delete = [] + when /crossvalidation/ + to_delete -= [ :test_target_dataset_uri ] + else + raise "unknown dataset type" + end + to_delete.each do |attr| + uri = self.send(attr) + LOGGER.debug "also deleting "+attr.to_s+" : "+uri.to_s if uri + begin + OpenTox::RestClientWrapper.delete(uri, :subjectid => subjectid) if uri + rescue => ex + LOGGER.warn "could not delete "+uri.to_s+" : "+ex.message.to_s + end + end + end self.destroy + if (subjectid) + begin + res = OpenTox::Authorization.delete_policies_from_uri(validation_uri, subjectid) + LOGGER.debug "Deleted validation policy: #{res}" + rescue + LOGGER.warn "Policy delete error for validation: #{validation_uri}" + end + end "Successfully deleted validation "+self.id.to_s+"." end # validates an algorithm by building a model and validating this model def validate_algorithm( algorithm_params=nil, task=nil ) - - $sinatra.halt 500,"validation_type missing" unless self.validation_type - $sinatra.halt 404, "no algorithm uri: '"+self.algorithm_uri.to_s+"'" if self.algorithm_uri==nil or self.algorithm_uri.to_s.size<1 + raise "validation_type missing" unless self.validation_type + raise OpenTox::BadRequestError.new "no algorithm uri: '"+self.algorithm_uri.to_s+"'" if self.algorithm_uri==nil or self.algorithm_uri.to_s.size<1 params = { :dataset_uri => self.training_dataset_uri, :prediction_feature => self.prediction_feature } if (algorithm_params!=nil) algorithm_params.split(";").each do |alg_params| alg_param = alg_params.split("=") - $sinatra.halt 404, "invalid algorithm param: '"+alg_params.to_s+"'" unless alg_param.size==2 or alg_param[0].to_s.size<1 or alg_param[1].to_s.size<1 + raise OpenTox::BadRequestError.new "invalid algorithm param: '"+alg_params.to_s+"'" unless alg_param.size==2 or alg_param[0].to_s.size<1 or alg_param[1].to_s.size<1 LOGGER.warn "algorihtm param contains empty space, encode? "+alg_param[1].to_s if alg_param[1] =~ /\s/ params[alg_param[0].to_sym] = alg_param[1] end @@ -76,19 +101,20 @@ module Validation LOGGER.debug "building model '"+algorithm_uri.to_s+"' "+params.inspect algorithm = OpenTox::Algorithm::Generic.new(algorithm_uri) + params[:subjectid] = subjectid self.model_uri = algorithm.run(params, OpenTox::SubTask.create(task, 0, 33)) #model = OpenTox::Model::PredictionModel.build(algorithm_uri, params, # OpenTox::SubTask.create(task, 0, 33) ) - $sinatra.halt 500,"model building failed" unless model_uri + raise "model building failed" unless model_uri #self.attributes = { :model_uri => model_uri } #self.save! # self.save if self.new? # self.update :model_uri => model_uri - #$sinatra.halt 500,"error after building model: model.dependent_variable != validation.prediciton_feature ("+ + #raise "error after building model: model.dependent_variable != validation.prediciton_feature ("+ # model.dependentVariables.to_s+" != "+self.prediction_feature+")" if self.prediction_feature!=model.dependentVariables validate_model OpenTox::SubTask.create(task, 33, 100) @@ -98,13 +124,13 @@ module Validation # PENDING: a new dataset is created to store the predictions, this should be optional: delete predictions afterwards yes/no def validate_model( task=nil ) - $sinatra.halt 500,"validation_type missing" unless self.validation_type + raise "validation_type missing" unless self.validation_type LOGGER.debug "validating model '"+self.model_uri+"'" #model = OpenTox::Model::PredictionModel.find(self.model_uri) - #$sinatra.halt 400, "model not found: "+self.model_uri.to_s unless model + #raise OpenTox::NotFoundError.new "model not found: "+self.model_uri.to_s unless model model = OpenTox::Model::Generic.find(self.model_uri) - $sinatra.halt 400, "model not found: "+self.model_uri.to_s unless model + raise OpenTox::NotFoundError.new "model not found: "+self.model_uri.to_s unless model unless self.algorithm_uri # self.attributes = { :algorithm_uri => model.algorithm } @@ -115,10 +141,10 @@ module Validation dependentVariables = model.metadata[OT.dependentVariables] if self.prediction_feature - $sinatra.halt 400, "error validating model: model.dependent_variable != validation.prediction_feature ("+ + raise OpenTox::NotFoundError.new "error validating model: model.dependent_variable != validation.prediction_feature ("+ dependentVariables.to_s+" != "+self.prediction_feature+"), model-metadata is "+model.metadata.inspect if self.prediction_feature!=dependentVariables else - $sinatra.halt 400, "model has no dependentVariables specified, please give prediction feature for model validation" unless dependentVariables + raise OpenTox::NotFoundError.new "model has no dependentVariables specified, please give prediction feature for model validation" unless dependentVariables #self.attributes = { :prediction_feature => model.dependentVariables } #self.save! #self.update :prediction_feature => model.dependentVariables @@ -128,7 +154,9 @@ module Validation prediction_dataset_uri = "" benchmark = Benchmark.measure do #prediction_dataset_uri = model.predict_dataset(self.test_dataset_uri, OpenTox::SubTask.create(task, 0, 50)) - prediction_dataset_uri = model.run( {:dataset_uri => self.test_dataset_uri}, OpenTox::SubTask.create(task, 0, 50)) + prediction_dataset_uri = model.run( + {:dataset_uri => self.test_dataset_uri, :subjectid => self.subjectid}, + OpenTox::SubTask.create(task, 0, 50)) end # self.attributes = { :prediction_dataset_uri => prediction_dataset_uri, # :real_runtime => benchmark.real } @@ -144,9 +172,9 @@ module Validation def compute_validation_stats_with_model( model=nil, dry_run=false, task=nil ) #model = OpenTox::Model::PredictionModel.find(self.model_uri) if model==nil and self.model_uri - #$sinatra.halt 400, "model not found: "+self.model_uri.to_s unless model + #raise OpenTox::NotFoundError.new "model not found: "+self.model_uri.to_s unless model model = OpenTox::Model::Generic.find(self.model_uri) if model==nil and self.model_uri - $sinatra.halt 400, "model not found: "+self.model_uri.to_s unless model + raise OpenTox::NotFoundError.new "model not found: "+self.model_uri.to_s unless model dependentVariables = model.metadata[OT.dependentVariables] prediction_feature = self.prediction_feature ? nil : dependentVariables @@ -209,7 +237,7 @@ module Validation # constructs a crossvalidation, id and uri are set #def initialize( params={} ) # - # $sinatra.halt 500,"do not set id manually" if params[:id] + # raise "do not set id manually" if params[:id] # params[:num_folds] = 10 if params[:num_folds]==nil # params[:random_seed] = 1 if params[:random_seed]==nil # params[:stratified] = false if params[:stratified]==nil @@ -227,8 +255,19 @@ module Validation # deletes a crossvalidation, all validations are deleted as well def delete - Validation.all(:crossvalidation_id => self.id).each{ |v| v.destroy } - destroy + Validation.all(:crossvalidation_id => self.id).each do |v| + v.subjectid = self.subjectid + v.delete + end + self.destroy + if (subjectid) + begin + res = OpenTox::Authorization.delete_policies_from_uri(crossvalidation_uri, subjectid) + LOGGER.debug "Deleted crossvalidation policy: #{res}" + rescue + LOGGER.warn "Policy delete error for crossvalidation: #{crossvalidation_uri}" + end + end "Successfully deleted crossvalidation "+self.id.to_s+"." end @@ -247,6 +286,7 @@ module Validation task_step = 100 / self.num_folds.to_f; @tmp_validations.each do | val | validation = Validation.new val + validation.subjectid = self.subjectid validation.validate_algorithm( algorithm_params, OpenTox::SubTask.create(task, i * task_step, ( i + 1 ) * task_step) ) raise "validation '"+validation.validation_uri+"' for crossvaldation could not be finished" unless @@ -296,10 +336,10 @@ module Validation # stores uris in validation objects def create_new_cv_datasets( prediction_feature, task = nil ) - $sinatra.halt(500,"random seed not set "+self.inspect) unless self.random_seed + raise "random seed not set "+self.inspect unless self.random_seed LOGGER.debug "creating datasets for crossvalidation" orig_dataset = OpenTox::Dataset.find(self.dataset_uri) - $sinatra.halt 400, "Dataset not found: "+self.dataset_uri.to_s unless orig_dataset + raise OpenTox::NotFoundError.new "Dataset not found: "+self.dataset_uri.to_s unless orig_dataset shuffled_compounds = orig_dataset.compounds.shuffle( self.random_seed ) @@ -354,7 +394,7 @@ module Validation '_f'+n.to_s+'of'+self.num_folds.to_s+ '_r'+self.random_seed.to_s+ '_s'+self.stratified.to_s - source = $sinatra.url_for('/crossvalidation',:full) + source = $url_provider.url_for('/crossvalidation',:full) test_compounds = [] train_compounds = [] @@ -369,18 +409,18 @@ module Validation end end - $sinatra.halt 500,"internal error, num test compounds not correct" unless (shuffled_compounds.size/self.num_folds - test_compounds.size).abs <= 1 - $sinatra.halt 500,"internal error, num train compounds not correct" unless shuffled_compounds.size - test_compounds.size == train_compounds.size + raise "internal error, num test compounds not correct" unless (shuffled_compounds.size/self.num_folds - test_compounds.size).abs <= 1 + raise "internal error, num train compounds not correct" unless shuffled_compounds.size - test_compounds.size == train_compounds.size LOGGER.debug "training set: "+datasetname+"_train, compounds: "+train_compounds.size.to_s #train_dataset_uri = orig_dataset.create_new_dataset( train_compounds, orig_dataset.features, datasetname + '_train', source ) train_dataset_uri = orig_dataset.split( train_compounds, orig_dataset.features.keys, - { DC.title => datasetname + '_train', DC.creator => source } ).uri + { DC.title => datasetname + '_train', DC.creator => source }, self.subjectid ).uri LOGGER.debug "test set: "+datasetname+"_test, compounds: "+test_compounds.size.to_s #test_dataset_uri = orig_dataset.create_new_dataset( test_compounds, test_features, datasetname + '_test', source ) test_dataset_uri = orig_dataset.split( test_compounds, test_features, - { DC.title => datasetname + '_test', DC.creator => source } ).uri + { DC.title => datasetname + '_test', DC.creator => source }, self.subjectid ).uri #make sure self.id is set self.save if self.new? @@ -404,15 +444,15 @@ module Validation # splits a dataset into test and training dataset via bootstrapping # (training dataset-size is n, sampling from orig dataset with replacement) # returns map with training_dataset_uri and test_dataset_uri - def self.bootstrapping( orig_dataset_uri, prediction_feature, random_seed=nil, task=nil ) + def self.bootstrapping( orig_dataset_uri, prediction_feature, subjectid, random_seed=nil, task=nil ) random_seed=1 unless random_seed orig_dataset = OpenTox::Dataset.find orig_dataset_uri orig_dataset.load_all - $sinatra.halt 400, "Dataset not found: "+orig_dataset_uri.to_s unless orig_dataset + raise OpenTox::NotFoundError.new "Dataset not found: "+orig_dataset_uri.to_s unless orig_dataset if prediction_feature - $sinatra.halt 400, "Prediction feature '"+prediction_feature.to_s+ + raise OpenTox::NotFoundError.new "Prediction feature '"+prediction_feature.to_s+ "' not found in dataset, features are: \n"+ orig_dataset.features.inspect unless orig_dataset.features.include?(prediction_feature) else @@ -420,10 +460,10 @@ module Validation end compounds = orig_dataset.compounds - $sinatra.halt 400, "Cannot split datset, num compounds in dataset < 2 ("+compounds.size.to_s+")" if compounds.size<2 + raise OpenTox::NotFoundError.new "Cannot split datset, num compounds in dataset < 2 ("+compounds.size.to_s+")" if compounds.size<2 compounds.each do |c| - $sinatra.halt 400, "Bootstrapping not yet implemented for duplicate compounds" if + raise OpenTox::NotFoundError.new "Bootstrapping not yet implemented for duplicate compounds" if orig_dataset.data_entries[c][prediction_feature].size > 1 end @@ -457,7 +497,8 @@ module Validation result[:training_dataset_uri] = orig_dataset.split( training_compounds, orig_dataset.features.keys, { DC.title => "Bootstrapping training dataset of "+orig_dataset.title.to_s, - DC.creator => $sinatra.url_for('/bootstrapping',:full) }).uri + DC.creator => $url_provider.url_for('/bootstrapping',:full) }, + subjectid ).uri task.progress(66) if task # result[:test_dataset_uri] = orig_dataset.create_new_dataset( test_compounds, @@ -467,19 +508,20 @@ module Validation result[:test_dataset_uri] = orig_dataset.split( test_compounds, orig_dataset.features.keys.dclone - [prediction_feature], { DC.title => "Bootstrapping test dataset of "+orig_dataset.title.to_s, - DC.creator => $sinatra.url_for('/bootstrapping',:full) }).uri + DC.creator => $url_provider.url_for('/bootstrapping',:full)} , + subjectid ).uri task.progress(100) if task if ENV['RACK_ENV'] =~ /test|debug/ training_dataset = OpenTox::Dataset.find result[:training_dataset_uri] - $sinatra.halt 400, "Training dataset not found: '"+result[:training_dataset_uri].to_s+"'" unless training_dataset + raise OpenTox::NotFoundError.new "Training dataset not found: '"+result[:training_dataset_uri].to_s+"'" unless training_dataset training_dataset.load_all value_count = 0 training_dataset.compounds.each do |c| value_count += training_dataset.data_entries[c][prediction_feature].size end - $sinatra.halt 500, "training compounds error" unless value_count==training_compounds.size - $sinatra.halt 400, "Test dataset not found: '"+result[:test_dataset_uri].to_s+"'" unless OpenTox::Dataset.find result[:test_dataset_uri] + raise "training compounds error" unless value_count==training_compounds.size + raise OpenTox::NotFoundError.new "Test dataset not found: '"+result[:test_dataset_uri].to_s+"'" unless OpenTox::Dataset.find result[:test_dataset_uri] end LOGGER.debug "bootstrapping done, training dataset: '"+result[:training_dataset_uri].to_s+"', test dataset: '"+result[:test_dataset_uri].to_s+"'" @@ -488,18 +530,18 @@ module Validation # splits a dataset into test and training dataset # returns map with training_dataset_uri and test_dataset_uri - def self.train_test_dataset_split( orig_dataset_uri, prediction_feature, split_ratio=nil, random_seed=nil, task=nil ) + def self.train_test_dataset_split( orig_dataset_uri, prediction_feature, subjectid, split_ratio=nil, random_seed=nil, task=nil ) split_ratio=0.67 unless split_ratio random_seed=1 unless random_seed orig_dataset = OpenTox::Dataset.find orig_dataset_uri orig_dataset.load_all - $sinatra.halt 400, "Dataset not found: "+orig_dataset_uri.to_s unless orig_dataset - $sinatra.halt 400, "Split ratio invalid: "+split_ratio.to_s unless split_ratio and split_ratio=split_ratio.to_f - $sinatra.halt 400, "Split ratio not >0 and <1 :"+split_ratio.to_s unless split_ratio>0 && split_ratio<1 + raise OpenTox::NotFoundError.new "Dataset not found: "+orig_dataset_uri.to_s unless orig_dataset + raise OpenTox::NotFoundError.new "Split ratio invalid: "+split_ratio.to_s unless split_ratio and split_ratio=split_ratio.to_f + raise OpenTox::NotFoundError.new "Split ratio not >0 and <1 :"+split_ratio.to_s unless split_ratio>0 && split_ratio<1 if prediction_feature - $sinatra.halt 400, "Prediction feature '"+prediction_feature.to_s+ + raise OpenTox::NotFoundError.new "Prediction feature '"+prediction_feature.to_s+ "' not found in dataset, features are: \n"+ orig_dataset.features.keys.inspect unless orig_dataset.features.include?(prediction_feature) else @@ -507,7 +549,7 @@ module Validation end compounds = orig_dataset.compounds - $sinatra.halt 400, "Cannot split datset, num compounds in dataset < 2 ("+compounds.size.to_s+")" if compounds.size<2 + raise OpenTox::BadRequestError.new "Cannot split datset, num compounds in dataset < 2 ("+compounds.size.to_s+")" if compounds.size<2 split = (compounds.size*split_ratio).to_i split = [split,1].max split = [split,compounds.size-2].min @@ -532,7 +574,8 @@ module Validation result[:training_dataset_uri] = orig_dataset.split( compounds[0..split], orig_dataset.features.keys, { DC.title => "Training dataset split of "+orig_dataset.title.to_s, - DC.creator => $sinatra.url_for('/training_test_split',:full) } ).uri + DC.creator => $url_provider.url_for('/training_test_split',:full) }, + subjectid ).uri task.progress(66) if task # d = OpenTox::Dataset.find(result[:training_dataset_uri]) @@ -549,15 +592,16 @@ module Validation result[:test_dataset_uri] = orig_dataset.split( compounds[(split+1)..-1], orig_dataset.features.keys.dclone - [prediction_feature], { DC.title => "Test dataset split of "+orig_dataset.title.to_s, - DC.creator => $sinatra.url_for('/training_test_split',:full) } ).uri + DC.creator => $url_provider.url_for('/training_test_split',:full) }, + subjectid ).uri task.progress(100) if task if ENV['RACK_ENV'] =~ /test|debug/ - $sinatra.halt 400, "Training dataset not found: '"+result[:training_dataset_uri].to_s+"'" unless OpenTox::Dataset.find result[:training_dataset_uri] + raise OpenTox::NotFoundError.new "Training dataset not found: '"+result[:training_dataset_uri].to_s+"'" unless OpenTox::Dataset.find result[:training_dataset_uri] test_data = OpenTox::Dataset.find result[:test_dataset_uri] - $sinatra.halt 400, "Test dataset not found: '"+result[:test_dataset_uri].to_s+"'" unless test_data + raise OpenTox::NotFoundError.new "Test dataset not found: '"+result[:test_dataset_uri].to_s+"'" unless test_data test_data.load_compounds - $sinatra.halt 400, "Test dataset num coumpounds != "+(compounds.size-split-1).to_s+", instead: "+ + raise "Test dataset num coumpounds != "+(compounds.size-split-1).to_s+", instead: "+ test_data.compounds.size.to_s+"\n"+test_data.to_yaml unless test_data.compounds.size==(compounds.size-1-split) end diff --git a/validation/validation_test.rb b/validation/validation_test.rb index 3139b29..f7c94ee 100755 --- a/validation/validation_test.rb +++ b/validation/validation_test.rb @@ -1,3 +1,11 @@ + +require "rubygems" +require "sinatra" +before { + request.env['HTTP_HOST']="local-ot/validation" + request.env["REQUEST_URI"]=request.env["PATH_INFO"] +} + require "uri" require "yaml" ENV['RACK_ENV'] = 'test' @@ -11,10 +19,20 @@ LOGGER = OTLogger.new(STDOUT) LOGGER.datetime_format = "%Y-%m-%d %H:%M:%S " LOGGER.formatter = Logger::Formatter.new -#Rack::Test::DEFAULT_HOST = "localhost" #"/validation" +if AA_SERVER + TEST_USER = "mgtest" + TEST_PW = "mgpasswd" + SUBJECTID = OpenTox::Authorization.authenticate(TEST_USER,TEST_PW) + raise "could not log in" unless SUBJECTID + puts "logged in: "+SUBJECTID.to_s +else + SUBJECTID = nil +end + +#Rack::Test::DEFAULT_HOST = "local-ot" #"/validation" module Sinatra module UrlForHelper - BASE = "http://localhost/validation" + BASE = "http://local-ot/validation" def url_for url_fragment, mode=:path_only case mode when :path_only @@ -32,99 +50,112 @@ class ValidationTest < Test::Unit::TestCase include Lib::TestUtil def test_it - $test_case = self - - #get "/1",nil,'HTTP_ACCEPT' => "text/html" - #get "/2",nil,'HTTP_ACCEPT' => "application/rdf+xml" - #puts last_response.body - #exit - -# d = OpenTox::Dataset.find("http://ot-dev.in-silico.ch/dataset/307") -# puts d.compounds.inspect -# exit - - #get "?model=http://localhost/model/1" -# get "/crossvalidation/3/predictions" -# puts last_response.body - -# post "/validate_datasets",{ -# :test_dataset_uri=>"http://apps.deaconsult.net:8080/ambit2/dataset/R3924", -# :prediction_dataset_uri=>"http://apps.ideaconsult.net:8080/ambit2/dataset/R3924?feature_uris[]=http%3A%2F%2Fapps.ideaconsult.net%3A8080%2Fambit2%2Fmodel%2F52%2Fpredicted", -# #:test_target_dataset_uri=>"http://localhost/dataset/202", -# :prediction_feature=>"http://apps.ideaconsult.net:8080/ambit2/feature/21715", -# :predicted_feature=>"http://apps.ideaconsult.net:8080/ambit2/feature/28944", -# :regression=>"true"} -# #:classification=>"true"} -# puts last_response.body - - #post "/crossvalidation/cleanup" - #puts last_response.body - - #get "/crossvalidation/19/predictions",nil,'HTTP_ACCEPT' => "application/x-yaml" #/statistics" -# post "",:model_uri=>"http://localhost/model/1",:test_dataset_uri=>"http://localhost/dataset/3", -# :test_target_dataset_uri=>"http://localhost/dataset/1" - -# get "/crossvalidation/2",nil,'HTTP_ACCEPT' => "application/rdf+xml" - #puts last_response.body - #exit - - #get "/crossvalidation?model_uri=lazar" -# post "/test_validation",:select=>"6d" #,:report=>"yes,please" - #puts last_response.body - -# post "/validate_datasets",{ -# :test_dataset_uri=>"http://localhost/dataset/204", -# :prediction_dataset_uri=>"http://localhost/dataset/206", -# :test_target_dataset_uri=>"http://localhost/dataset/202", -# :prediction_feature=>"http://ot-dev.in-silico.ch/toxcreate/feature#IRIS%20unit%20risk", -# :predicted_feature=>"http://ot-dev.in-silico.ch/toxcreate/feature#IRIS%20unit%20risk_lazar_regression", -# :regression=>"true"} -# #:classification=>"true"} -# puts last_response.body - -# post "/validate_datasets",{ -# :test_dataset_uri=>"http://localhost/dataset/89", -# :prediction_dataset_uri=>"http://localhost/dataset/91", -# :test_target_dataset_uri=>"http://localhost/dataset/87", -# :prediction_feature=>"http://localhost/dataset/1/feature/hamster_carcinogenicity", -# :predicted_feature=>"", -## :regression=>"true"} -# :classification=>"true"} -# puts last_response.body - - # m = OpenTox::Model::Generic.find("http://localhost/model/1323333") - # puts m.to_yaml - -# post "/validate_datasets",{ -# :test_dataset_uri=>"http://localhost/dataset/506", -# :prediction_dataset_uri=>"http://localhost/dataset/526", -# :test_target_dataset_uri=>"http://localhost/dataset/504", -# :prediction_feature=>"http://localhost/dataset/504/feature/LC50_mmol", -# :model_uri=>"http://localhost/model/48"} -# #:regression=>"true"} -## :classification=>"true"} -# puts last_response.body - - #run_test("13a","http://localhost/validation/39",nil,false) #,"http://localhost/validation/28")#,"http://localhost/validation/394"); - run_test("1b",nil,nil,false) - - #run_test("7b","http://localhost/validation/21") - - #run_test("3a","http://localhost/validation/crossvalidation/4") - #run_test("3b","http://localhost/validation/crossvalidation/3") - - #run_test("8a", "http://localhost/validation/crossvalidation/6") - #run_test("8b", "http://localhost/validation/crossvalidation/5") + begin + $test_case = self + + #get "/1",nil,'HTTP_ACCEPT' => "text/html" + +# get "/crossvalidation/1",nil,'HTTP_ACCEPT' => "application/x-yaml" +# puts last_response.body +## +# get "/crossvalidation/1",nil,'HTTP_ACCEPT' => "application/rdf+xml" +# puts last_response.body +# exit + + # d = OpenTox::Dataset.find("http://ot-dev.in-silico.ch/dataset/307") + # puts d.compounds.inspect + # exit + + #get "?model=http://local-ot/model/1" + # get "/crossvalidation/3/predictions" + # puts last_response.body + + # post "/validate_datasets",{ + # :test_dataset_uri=>"http://apps.deaconsult.net:8080/ambit2/dataset/R3924", + # :prediction_dataset_uri=>"http://apps.ideaconsult.net:8080/ambit2/dataset/R3924?feature_uris[]=http%3A%2F%2Fapps.ideaconsult.net%3A8080%2Fambit2%2Fmodel%2F52%2Fpredicted", + # #:test_target_dataset_uri=>"http://local-ot/dataset/202", + # :prediction_feature=>"http://apps.ideaconsult.net:8080/ambit2/feature/21715", + # :predicted_feature=>"http://apps.ideaconsult.net:8080/ambit2/feature/28944", + # :regression=>"true"} + # #:classification=>"true"} + # puts last_response.body + + #post "/crossvalidation/cleanup" + #puts last_response.body + + #get "/crossvalidation/19/predictions",nil,'HTTP_ACCEPT' => "application/x-yaml" #/statistics" + # post "",:model_uri=>"http://local-ot/model/1",:test_dataset_uri=>"http://local-ot/dataset/3", + # :test_target_dataset_uri=>"http://local-ot/dataset/1" + + # get "/crossvalidation/2",nil,'HTTP_ACCEPT' => "application/rdf+xml" + #puts last_response.body + #exit + + #get "/crossvalidation?model_uri=lazar" + # post "/test_validation",:select=>"6d" #,:report=>"yes,please" + #puts last_response.body + + # post "/validate_datasets",{ + # :test_dataset_uri=>"http://local-ot/dataset/204", + # :prediction_dataset_uri=>"http://local-ot/dataset/206", + # :test_target_dataset_uri=>"http://local-ot/dataset/202", + # :prediction_feature=>"http://ot-dev.in-silico.ch/toxcreate/feature#IRIS%20unit%20risk", + # :predicted_feature=>"http://ot-dev.in-silico.ch/toxcreate/feature#IRIS%20unit%20risk_lazar_regression", + # :regression=>"true"} + # #:classification=>"true"} + # puts last_response.body + + # post "/validate_datasets",{ + # :test_dataset_uri=>"http://local-ot/dataset/89", + # :prediction_dataset_uri=>"http://local-ot/dataset/91", + # :test_target_dataset_uri=>"http://local-ot/dataset/87", + # :prediction_feature=>"http://local-ot/dataset/1/feature/hamster_carcinogenicity", + # :predicted_feature=>"", + ## :regression=>"true"} + # :classification=>"true"} + # puts last_response.body + + # m = OpenTox::Model::Generic.find("http://local-ot/model/1323333") + # puts m.to_yaml + + # post "/validate_datasets",{ + # :test_dataset_uri=>"http://local-ot/dataset/506", + # :prediction_dataset_uri=>"http://local-ot/dataset/526", + # :test_target_dataset_uri=>"http://local-ot/dataset/504", + # :prediction_feature=>"http://local-ot/dataset/504/feature/LC50_mmol", + # :model_uri=>"http://local-ot/model/48"} + # #:regression=>"true"} + ## :classification=>"true"} + # puts last_response.body + + #run_test("13a","http://local-ot/validation/39",nil,false) #,"http://local-ot/validation/28")#,"http://local-ot/validation/394"); + + #puts OpenTox::Authorization.list_policy_uris(SUBJECTID).inspect - #run_test("11b", "http://localhost/validation/crossvalidation/2" )# //localhost/validation/42")#, "http://localhost/validation/report/validation/8") #,"http://localhost/validation/report/validation/36") #, "http://localhost/validation/321") - # run_test("7a","http://localhost/validation/40") #,"http://localhost/validation/crossvalidation/10") #, "http://localhost/validation/321") - #run_test("8b", "http://localhost/validation/crossvalidation/4") - - #puts Nightly.build_nightly("1") - - #prepare_examples - #do_test_examples # USES CURL, DO NOT FORGET TO RESTART VALIDATION SERVICE - #do_test_examples_ortona + run_test("3b",nil,nil,true) + #delete "/1",:subjectid=>SUBJECTID + + #run_test("7b","http://local-ot/validation/21") + + #run_test("3a","http://local-ot/validation/crossvalidation/4") + #run_test("3b","http://local-ot/validation/crossvalidation/3") + + #run_test("8a", "http://local-ot/validation/crossvalidation/6") + #run_test("8b", "http://local-ot/validation/crossvalidation/5") + + #run_test("11b", "http://local-ot/validation/crossvalidation/2" )# //local-ot/validation/42")#, "http://local-ot/validation/report/validation/8") #,"http://local-ot/validation/report/validation/36") #, "http://local-ot/validation/321") + # run_test("7a","http://local-ot/validation/40") #,"http://local-ot/validation/crossvalidation/10") #, "http://local-ot/validation/321") + #run_test("8b", "http://local-ot/validation/crossvalidation/4") + + #puts Nightly.build_nightly("1") + + #prepare_examples + #do_test_examples # USES CURL, DO NOT FORGET TO RESTART VALIDATION SERVICE + #do_test_examples_ortona + + ensure + OpenTox::Authorization.logout(SUBJECTID) if AA_SERVER + end end def app @@ -132,6 +163,11 @@ class ValidationTest < Test::Unit::TestCase end def run_test(select=nil, validation_uri=nil, report_uri=nil, delete=false) + + if AA_SERVER && delete + policies_before = OpenTox::Authorization.list_policy_uris(SUBJECTID) + end + puts ValidationExamples.list unless select validationExamples = ValidationExamples.select(select) validationExamples.each do |vv| @@ -148,11 +184,24 @@ class ValidationTest < Test::Unit::TestCase unless ex.report_uri ex.report end - #ex.verify_yaml - #ex.compare_yaml_vs_rdf + ##ex.verify_yaml + ##ex.compare_yaml_vs_rdf ex.delete if delete end end + + if AA_SERVER && delete + policies_after= OpenTox::Authorization.list_policy_uris(SUBJECTID) + diff = policies_after.size - policies_before.size + if (diff != 0) + policies_before.each do |k,v| + policies_after.delete(k) + end + LOGGER.warn diff.to_s+" policies NOT deleted:\n"+policies_after.collect{|k,v| k.to_s+" => "+v.to_s}.join("\n") + else + LOGGER.debug "all policies deleted" + end + end end def prepare_examples -- cgit v1.2.3 From c4d553732ff4cfa3a4de4d439c5e174ca0e57b53 Mon Sep 17 00:00:00 2001 From: mguetlein Date: Thu, 20 Jan 2011 11:33:07 +0100 Subject: adjust to rdf method name, add new error handling support --- config.ru | 2 ++ report/report_persistance.rb | 2 +- validation/validation_application.rb | 13 +++++++------ validation/validation_format.rb | 4 ++-- validation/validation_test.rb | 27 +++++++++++++++++++-------- 5 files changed, 31 insertions(+), 17 deletions(-) diff --git a/config.ru b/config.ru index 7ff6c57..305bd9f 100644 --- a/config.ru +++ b/config.ru @@ -3,3 +3,5 @@ require 'sinatra' require 'application.rb' require 'config/config_ru' run Sinatra::Application +set :raise_errors, false +set :show_exceptions, false \ No newline at end of file diff --git a/report/report_persistance.rb b/report/report_persistance.rb index 613e652..808547d 100755 --- a/report/report_persistance.rb +++ b/report/report_persistance.rb @@ -232,7 +232,7 @@ module Reports def to_rdf s = OpenTox::Serializer::Owl.new - s.add_val(report_uri,OT.Report,get_content_as_hash.keys_to_rdf_format.keys_to_owl_uris) + s.add_resource(report_uri,OT.Report,get_content_as_hash.keys_to_rdf_format.keys_to_owl_uris) s.to_rdfxml end end diff --git a/validation/validation_application.rb b/validation/validation_application.rb index 5d521a8..7819114 100755 --- a/validation/validation_application.rb +++ b/validation/validation_application.rb @@ -521,13 +521,14 @@ end get '/:id' do LOGGER.info "get validation with id "+params[:id].to_s+" '"+request.env['HTTP_ACCEPT'].to_s+"'" - begin +# begin #validation = Validation::Validation.find(params[:id]) - validation = Validation::Validation.get(params[:id]) - rescue ActiveRecord::RecordNotFound => ex - halt 404, "Validation '#{params[:id]}' not found." - end - +# rescue ActiveRecord::RecordNotFound => ex +# halt 404, "Validation '#{params[:id]}' not found." +# end + validation = Validation::Validation.get(params[:id]) + raise OpenTox::NotFoundError.new "Validation '#{params[:id]}' not found." unless validation + case request.env['HTTP_ACCEPT'].to_s when "application/rdf+xml" content_type "application/rdf+xml" diff --git a/validation/validation_format.rb b/validation/validation_format.rb index 4f46100..e72e7ec 100755 --- a/validation/validation_format.rb +++ b/validation/validation_format.rb @@ -64,7 +64,7 @@ module Validation def to_rdf s = OpenTox::Serializer::Owl.new - s.add_val(validation_uri,OT.Validation,get_content_as_hash.keys_to_rdf_format.keys_to_owl_uris) + s.add_resource(validation_uri,OT.Validation,get_content_as_hash.keys_to_rdf_format.keys_to_owl_uris) s.to_rdfxml end @@ -93,7 +93,7 @@ module Validation def to_rdf s = OpenTox::Serializer::Owl.new - s.add_val(crossvalidation_uri,OT.Crossvalidation,get_content_as_hash.keys_to_rdf_format.keys_to_owl_uris) + s.add_resource(crossvalidation_uri,OT.Crossvalidation,get_content_as_hash.keys_to_rdf_format.keys_to_owl_uris) s.to_rdfxml end diff --git a/validation/validation_test.rb b/validation/validation_test.rb index f7c94ee..3138252 100755 --- a/validation/validation_test.rb +++ b/validation/validation_test.rb @@ -54,8 +54,8 @@ class ValidationTest < Test::Unit::TestCase $test_case = self #get "/1",nil,'HTTP_ACCEPT' => "text/html" - -# get "/crossvalidation/1",nil,'HTTP_ACCEPT' => "application/x-yaml" +# +# get "/234234232341",nil,'HTTP_ACCEPT' => "application/x-yaml" # puts last_response.body ## # get "/crossvalidation/1",nil,'HTTP_ACCEPT' => "application/rdf+xml" @@ -132,7 +132,13 @@ class ValidationTest < Test::Unit::TestCase #puts OpenTox::Authorization.list_policy_uris(SUBJECTID).inspect - run_test("3b",nil,nil,true) + #run_test("1b",nil,nil,false,{:dataset_uri=>"http://local-ot/dataset/45", :prediction_feature => "http://local-ot/dataset/45/feature/Hamster%20Carcinogenicity"}) + + #get "/12123123123123123" + get "/chain" + #get "/examples" + puts last_response.body + #delete "/1",:subjectid=>SUBJECTID #run_test("7b","http://local-ot/validation/21") @@ -162,7 +168,7 @@ class ValidationTest < Test::Unit::TestCase Sinatra::Application end - def run_test(select=nil, validation_uri=nil, report_uri=nil, delete=false) + def run_test(select=nil, validation_uri=nil, report_uri=nil, delete=false, overwrite={}) if AA_SERVER && delete policies_before = OpenTox::Authorization.list_policy_uris(SUBJECTID) @@ -173,17 +179,22 @@ class ValidationTest < Test::Unit::TestCase validationExamples.each do |vv| vv.each do |v| ex = v.new + ex.validation_uri = validation_uri + overwrite.each do |k,v| + ex.send(k.to_s+"=",v) + end + unless ex.validation_uri ex.upload_files ex.check_requirements ex.validate LOGGER.debug "validation done '"+ex.validation_uri.to_s+"'" end - ex.report_uri = report_uri - unless ex.report_uri - ex.report - end +# ex.report_uri = report_uri +# unless ex.report_uri +# ex.report +# end ##ex.verify_yaml ##ex.compare_yaml_vs_rdf ex.delete if delete -- cgit v1.2.3 From 3af7a871c60fb7d853edd348634d6603fccec101 Mon Sep 17 00:00:00 2001 From: mguetlein Date: Thu, 20 Jan 2011 14:30:25 +0100 Subject: forgot to check in data_mapper_util --- lib/data_mapper_util.rb | 60 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 lib/data_mapper_util.rb diff --git a/lib/data_mapper_util.rb b/lib/data_mapper_util.rb new file mode 100644 index 0000000..25d9d61 --- /dev/null +++ b/lib/data_mapper_util.rb @@ -0,0 +1,60 @@ + +#DataObjects::Mysql.logger = DataObjects::Logger.new(STDOUT, 0) + +module Lib + module DataMapperUtil + + def self.check_params(model, params) + prop_names = model.properties.collect{|p| p.name.to_s if p.is_a?DataMapper::Property::Object} + params.keys.each do |k| + key = k.to_s + unless prop_names.include?(key) + key = key.from_rdf_format + unless prop_names.include?(key) + key = key+"_uri" + unless prop_names.include?(key) + key = key+"s" + unless prop_names.include?(key) + raise OpenTox::BadRequestError.new "no attribute found: '"+k.to_s+"'" + end + end + end + end + params[key.to_sym] = params.delete(k) + end + params + end + +# def self.all(model, filter_params) +# prop_names = model.properties.collect{|p| p.name.to_s if p.is_a?DataMapper::Property::Object} +# puts prop_names.inspect +# +# filter_params.keys.each do |k| +# key = k.to_s +# unless prop_names.include?(key) +# key = key.from_rdf_format +# unless prop_names.include?(key) +# key = key+"_uri" +# unless prop_names.include?(key) +# key = key+"s" +# unless prop_names.include?(key) +# err = "no attribute found: '"+k.to_s+"'" +# if $sinatra +# $sinatra.halt 400,err +# else +# raise err +# end +# end +# end +# end +# end +# filter_params[key.to_sym] = filter_params.delete(k) +# end +# puts filter_params.inspect +# +# #model.all(filter_params) +# model.all(:model_uris.like => "%") +# end + + end +end \ No newline at end of file -- cgit v1.2.3 From 9750da9cb7dc14309be38f98bc0b50c8bff9eb72 Mon Sep 17 00:00:00 2001 From: mguetlein Date: Wed, 26 Jan 2011 15:58:18 +0100 Subject: adjust to new A&A for GET, remove old Report-Errorreporting --- application.rb | 2 ++ lib/ot_predictions.rb | 10 +++--- report/report_application.rb | 22 +++--------- report/report_factory.rb | 24 ++++++------- report/report_format.rb | 2 +- report/report_persistance.rb | 12 +++---- report/report_service.rb | 30 +++------------- report/report_test.rb | 10 +++--- report/util.rb | 6 ++-- report/validation_access.rb | 75 ++++++++++++++++++++-------------------- report/validation_data.rb | 16 +++++---- test/test_examples.rb | 15 +++++++- test/test_examples_util.rb | 9 +++-- validation/validation_service.rb | 26 +++++++------- validation/validation_test.rb | 38 ++++++++++++++------ 15 files changed, 152 insertions(+), 145 deletions(-) diff --git a/application.rb b/application.rb index 89785e1..cf9621d 100755 --- a/application.rb +++ b/application.rb @@ -9,6 +9,8 @@ end #LOGGER.datetime_format = "%Y-%m-%d %H:%M:%S " #end +#require "error_application.rb" + require "example.rb" get '/examples/?' do diff --git a/lib/ot_predictions.rb b/lib/ot_predictions.rb index 50934e5..c593f55 100755 --- a/lib/ot_predictions.rb +++ b/lib/ot_predictions.rb @@ -16,7 +16,7 @@ module Lib end def initialize(feature_type, test_dataset_uri, test_target_dataset_uri, - prediction_feature, prediction_dataset_uri, predicted_variable, task=nil) + prediction_feature, prediction_dataset_uri, predicted_variable, subjectid=nil, task=nil) LOGGER.debug("loading prediciton via test-dataset:'"+test_dataset_uri.to_s+ "', test-target-datset:'"+test_target_dataset_uri.to_s+ @@ -31,7 +31,7 @@ module Lib predicted_variable=prediction_feature if predicted_variable==nil - test_dataset = OpenTox::Dataset.find test_dataset_uri + test_dataset = OpenTox::Dataset.find test_dataset_uri,subjectid raise "test dataset not found: '"+test_dataset_uri.to_s+"'" unless test_dataset raise "prediction_feature missing" unless prediction_feature @@ -43,7 +43,7 @@ module Lib "test_dataset: '"+test_target_dataset_uri.to_s+"'\n"+ "available features are: "+test_target_dataset.features.inspect if test_target_dataset.features.index(prediction_feature)==nil else - test_target_dataset = OpenTox::Dataset.find test_target_dataset_uri + test_target_dataset = OpenTox::Dataset.find test_target_dataset_uri,subjectid raise "test target datset not found: '"+test_target_dataset_uri.to_s+"'" unless test_target_dataset if CHECK_VALUES test_dataset.compounds.each do |c| @@ -56,7 +56,7 @@ module Lib "available features are: "+test_target_dataset.features.inspect if test_target_dataset.features.keys.index(prediction_feature)==nil end - test_dataset.load_all + test_dataset.load_all(subjectid) @compounds = test_dataset.compounds LOGGER.debug "test dataset size: "+@compounds.size.to_s raise "test dataset is empty" unless @compounds.size>0 @@ -73,7 +73,7 @@ module Lib end task.progress(40) if task # loaded actual values - prediction_dataset = OpenTox::Dataset.find prediction_dataset_uri + prediction_dataset = OpenTox::Dataset.find prediction_dataset_uri,subjectid raise "prediction dataset not found: '"+prediction_dataset_uri.to_s+"'" unless prediction_dataset # TODO: remove LAZAR_PREDICTION_DATASET_HACK diff --git a/report/report_application.rb b/report/report_application.rb index b02b780..9fcf871 100755 --- a/report/report_application.rb +++ b/report/report_application.rb @@ -1,20 +1,8 @@ require "report/environment.rb" def perform - begin - @@report_service = Reports::ReportService.instance( url_for("/report", :full) ) unless defined?@@report_service - yield( @@report_service ) - rescue Reports::NotFound => ex - halt 404, ex.message - rescue Reports::BadRequest => ex - halt 400, ex.message - rescue Exception => ex - #LOGGER.error(ex.message) - LOGGER.error "report error: "+ex.message - LOGGER.error ": "+ex.backtrace.join("\n") - raise ex # sinatra returns 501 - #halt 500, ex.message - end + @@report_service = Reports::ReportService.instance( url_for("/report", :full) ) unless defined?@@report_service + yield( @@report_service ) end def get_docbook_resource(filepath) @@ -104,11 +92,11 @@ get '/report/:type/:id' do end end -get '/report/:type/:id/:resource' do - #hack: using request.env['REQUEST_URI'].split("/")[-1] instead of params[:resource] because the file extension is lost +OpenTox::Authorization.whitelist( Regexp.new("/report/.*/[0-9]+/.*"),"GET") +get '/report/:type/:id/:resource' do perform do |rs| - filepath = rs.get_report_resource(params[:type],params[:id],request.env['REQUEST_URI'].split("/")[-1]) + filepath = rs.get_report_resource(params[:type],params[:id],params[:resource]) types = MIME::Types.type_for(filepath) content_type(types[0].content_type) if types and types.size>0 and types[0] result = body(File.new(filepath)) diff --git a/report/report_factory.rb b/report/report_factory.rb index 11e9bfa..a5234a3 100755 --- a/report/report_factory.rb +++ b/report/report_factory.rb @@ -59,7 +59,7 @@ module Reports::ReportFactory def self.create_report_validation(validation_set, task=nil) - raise Reports::BadRequest.new("num validations is not equal to 1") unless validation_set.size==1 + raise OpenTox::BadRequestError.new("num validations is not equal to 1") unless validation_set.size==1 val = validation_set.validations[0] pre_load_predictions( validation_set, OpenTox::SubTask.create(task,0,80) ) @@ -84,14 +84,14 @@ module Reports::ReportFactory def self.create_report_crossvalidation(validation_set, task=nil) - raise Reports::BadRequest.new("num validations is not >1") unless validation_set.size>1 - raise Reports::BadRequest.new("crossvalidation-id not unique and != nil: "+ + raise OpenTox::BadRequestError.new("num validations is not >1") unless validation_set.size>1 + raise OpenTox::BadRequestError.new("crossvalidation-id not unique and != nil: "+ validation_set.get_values(:crossvalidation_id,false).inspect) if validation_set.unique_value(:crossvalidation_id)==nil validation_set.load_cv_attributes - raise Reports::BadRequest.new("num validations ("+validation_set.size.to_s+") is not equal to num folds ("+ + raise OpenTox::BadRequestError.new("num validations ("+validation_set.size.to_s+") is not equal to num folds ("+ validation_set.unique_value(:num_folds).to_s+")") unless validation_set.unique_value(:num_folds)==validation_set.size - raise Reports::BadRequest.new("num different folds is not equal to num validations") unless validation_set.num_different_values(:crossvalidation_fold)==validation_set.size - raise Reports::BadRequest.new("validations must have unique feature type, i.e. must be either all regression, "+ + raise OpenTox::BadRequestError.new("num different folds is not equal to num validations") unless validation_set.num_different_values(:crossvalidation_fold)==validation_set.size + raise OpenTox::BadRequestError.new("validations must have unique feature type, i.e. must be either all regression, "+ +"or all classification validations") unless validation_set.unique_feature_type pre_load_predictions( validation_set, OpenTox::SubTask.create(task,0,80) ) @@ -125,16 +125,16 @@ module Reports::ReportFactory def self.create_report_compare_algorithms(validation_set, task=nil) #validation_set.to_array([:test_dataset_uri, :model_uri, :algorithm_uri], false).each{|a| puts a.inspect} - raise Reports::BadRequest.new("num validations is not >1") unless validation_set.size>1 - raise Reports::BadRequest.new("validations must have unique feature type, i.e. must be either all regression, "+ + raise OpenTox::BadRequestError.new("num validations is not >1") unless validation_set.size>1 + raise OpenTox::BadRequestError.new("validations must have unique feature type, i.e. must be either all regression, "+ +"or all classification validations") unless validation_set.unique_feature_type - raise Reports::BadRequest.new("number of different algorithms <2: "+ + raise OpenTox::BadRequestError.new("number of different algorithms <2: "+ validation_set.get_values(:algorithm_uri).inspect) if validation_set.num_different_values(:algorithm_uri)<2 if validation_set.has_nil_values?(:crossvalidation_id) - raise Reports::BadRequest.new("algorithm comparison for non crossvalidation not yet implemented") + raise OpenTox::BadRequestError.new("algorithm comparison for non crossvalidation not yet implemented") else - raise Reports::BadRequest.new("num different cross-validation-ids <2") if validation_set.num_different_values(:crossvalidation_id)<2 + raise OpenTox::BadRequestError.new("num different cross-validation-ids <2") if validation_set.num_different_values(:crossvalidation_id)<2 validation_set.load_cv_attributes compare_algorithms_crossvalidation(validation_set, task) end @@ -194,7 +194,7 @@ module Reports::ReportFactory end when "regression" - raise Reports::BadRequest.new("algorithm comparison for regression not yet implemented") + raise OpenTox::BadRequestError.new("algorithm comparison for regression not yet implemented") end task.progress(100) if task report diff --git a/report/report_format.rb b/report/report_format.rb index baf7434..98dea39 100644 --- a/report/report_format.rb +++ b/report/report_format.rb @@ -23,7 +23,7 @@ module Reports::ReportFormat when /application\/x-yaml|\*\/\*/ "application/x-yaml" else - raise Reports::BadRequest.new("Accept header '"+accept_header_value.to_s+ + raise OpenTox::BadRequestError.new("Accept header '"+accept_header_value.to_s+ "' not supported, supported types are "+ "text/html"+", "+ "application/rdf+xml"+", "+ diff --git a/report/report_persistance.rb b/report/report_persistance.rb index 808547d..df4930c 100755 --- a/report/report_persistance.rb +++ b/report/report_persistance.rb @@ -100,7 +100,7 @@ class Reports::FileReportPersistance < Reports::ReportPersistance report_dir = report_directory(type, id) raise_report_not_found(type, id) unless File.directory?(report_dir) file_path = report_dir+"/"+resource.to_s - raise Reports::NotFound.new("resource not found, resource: '"+resource.to_s+"', type:'"+type.to_s+"', id:'"+id.to_s+"'") unless File.exist?(file_path) + raise OpenTox::NotFoundError.new("resource not found, resource: '"+resource.to_s+"', type:'"+type.to_s+"', id:'"+id.to_s+"'") unless File.exist?(file_path) return file_path end @@ -162,7 +162,7 @@ class Reports::FileReportPersistance < Reports::ReportPersistance private def raise_report_not_found(type, id) - raise Reports::NotFound.new("report not found, type:'"+type.to_s+"', id:'"+id.to_s+"'") + raise OpenTox::NotFoundError.new("report not found, type:'"+type.to_s+"', id:'"+id.to_s+"'") end def type_directory(type) @@ -270,11 +270,11 @@ module Reports def get_report(type, id, format, force_formating, params) report = ReportData.first({:id => id, :report_type => type}) - raise Reports::NotFound.new("Report with id='"+id.to_s+"' and type='"+type.to_s+"' not found.") unless report + raise OpenTox::NotFoundError.new("Report with id='"+id.to_s+"' and type='"+type.to_s+"' not found.") unless report # begin # report = ReportData.find(:first, :conditions => {:id => id, :report_type => type}) # rescue ActiveRecord::RecordNotFound -# raise Reports::NotFound.new("Report with id='"+id.to_s+"' and type='"+type.to_s+"' not found.") +# raise OpenTox::NotFoundError.new("Report with id='"+id.to_s+"' and type='"+type.to_s+"' not found.") # end case format @@ -291,11 +291,11 @@ module Reports # begin # report = ReportData.find(:first, :conditions => {:id => id, :report_type => type}) # rescue ActiveRecord::RecordNotFound -# raise Reports::NotFound.new("Report with id='"+id.to_s+"' and type='"+type.to_s+"' not found.") +# raise OpenTox::NotFoundError.new("Report with id='"+id.to_s+"' and type='"+type.to_s+"' not found.") # end # ReportData.delete(id) report = ReportData.first({:id => id, :report_type => type}) - raise Reports::NotFound.new("Report with id='"+id.to_s+"' and type='"+type.to_s+"' not found.") unless report + raise OpenTox::NotFoundError.new("Report with id='"+id.to_s+"' and type='"+type.to_s+"' not found.") unless report report.destroy if (subjectid) begin diff --git a/report/report_service.rb b/report/report_service.rb index dd1f6b3..91eefe8 100644 --- a/report/report_service.rb +++ b/report/report_service.rb @@ -66,10 +66,10 @@ module Reports check_report_type(type) # step1: load validations - raise Reports::BadRequest.new("validation_uris missing") unless validation_uris + raise OpenTox::BadRequestError.new("validation_uris missing") unless validation_uris LOGGER.debug "validation_uri(s): '"+validation_uris.inspect+"'" - validation_set = Reports::ValidationSet.new(validation_uris) - raise Reports::BadRequest.new("cannot get validations from validation_uris '"+validation_uris.inspect+"'") unless validation_set and validation_set.size > 0 + validation_set = Reports::ValidationSet.new(validation_uris, subjectid) + raise OpenTox::BadRequestError.new("cannot get validations from validation_uris '"+validation_uris.inspect+"'") unless validation_set and validation_set.size > 0 LOGGER.debug "loaded "+validation_set.size.to_s+" validation/s" task.progress(10) if task @@ -182,30 +182,8 @@ module Reports end def check_report_type(type) - raise Reports::NotFound.new("report type not found '"+type.to_s+"'") unless Reports::ReportFactory::REPORT_TYPES.index(type) + raise OpenTox::NotFoundError.new("report type not found '"+type.to_s+"'") unless Reports::ReportFactory::REPORT_TYPES.index(type) end end end - -class Reports::LoggedException < Exception - - def initialize(message) - super(message) - LOGGER.error(message) - end - -end - -# corresponds to 400 -# -class Reports::BadRequest < Reports::LoggedException - -end - -# corresponds to 404 -# -class Reports::NotFound < Reports::LoggedException - -end - diff --git a/report/report_test.rb b/report/report_test.rb index 1f3e524..571d6d8 100755 --- a/report/report_test.rb +++ b/report/report_test.rb @@ -148,7 +148,7 @@ end # assert types.is_a?(String) # assert types.split("\n").size == Reports::ReportFactory::REPORT_TYPES.size # #Reports::ReportFactory::REPORT_TYPES.each{|t| rep.get_all_reports(t)} -# #assert_raise(Reports::NotFound){rep.get_all_reports("osterhase")} +# #assert_raise(OpenTox::NotFoundError){rep.get_all_reports("osterhase")} # # ### using ot_mock_layer (reporting component does not rely on ot validation webservice) # @@ -156,11 +156,11 @@ end # #Reports::Validation.reset_validation_access # ## create_report(rep, "validation_uri_1", "validation") -## assert_raise(Reports::BadRequest){create_report(rep, ["validation_uri_1","validation_uri_2"], "validation")} +## assert_raise(OpenTox::BadRequestError){create_report(rep, ["validation_uri_1","validation_uri_2"], "validation")} ## ## create_report(rep, "crossvalidation_uri_1", "crossvalidation") ## create_report(rep, ["validation_uri_1"]*Reports::OTMockLayer::NUM_FOLDS, "crossvalidation") -## assert_raise(Reports::BadRequest){create_report(rep, ["validation_uri_1"]*(Reports::OTMockLayer::NUM_FOLDS-1), "crossvalidation")} +## assert_raise(OpenTox::BadRequestError){create_report(rep, ["validation_uri_1"]*(Reports::OTMockLayer::NUM_FOLDS-1), "crossvalidation")} ## ## create_report(rep, ["crossvalidation_uri_1"]* (Reports::OTMockLayer::NUM_DATASETS * Reports::OTMockLayer::NUM_ALGS), "algorithm_comparison") ## create_report(rep, ["validation_uri_1"]* (Reports::OTMockLayer::NUM_DATASETS * Reports::OTMockLayer::NUM_ALGS * Reports::OTMockLayer::NUM_FOLDS), "algorithm_comparison") @@ -229,11 +229,11 @@ end # # #puts "created report with id "+id.to_s # -# #assert_raise(Reports::BadRequest){report_service.get_report(type, id, "weihnachtsmann")} +# #assert_raise(OpenTox::BadRequestError){report_service.get_report(type, id, "weihnachtsmann")} # # report_service.get_report(type, id, "text/html") # #report_service.get_report(type, id, "application/pdf") -# #assert_raise(Reports::NotFound){report_service.delete_report(type, 877658)} +# #assert_raise(OpenTox::NotFoundError){report_service.delete_report(type, 877658)} # ## rep.delete_report(type, id) # end diff --git a/report/util.rb b/report/util.rb index 9844fd8..ca5f3cc 100644 --- a/report/util.rb +++ b/report/util.rb @@ -75,10 +75,10 @@ module Reports::Util # def self.check_group_matching( grouped_objects, match_attributes ) - raise Reports::BadRequest.new("less then 2 groups, no matching possible") if grouped_objects.size<2 + raise OpenTox::BadRequestError.new("less then 2 groups, no matching possible") if grouped_objects.size<2 first_group = grouped_objects[0] other_groups = grouped_objects[1..-1].collect{ |g| g.collect{|o| o }} - other_groups.each{ |g| raise Reports::BadRequest.new("groups are not equally sized, matching impossible") if g.size != first_group.size } + other_groups.each{ |g| raise OpenTox::BadRequestError.new("groups are not equally sized, matching impossible") if g.size != first_group.size } first_group.each do |o| @@ -94,7 +94,7 @@ module Reports::Util break end end - raise Reports::BadRequest.new("no match found for "+inspect_attributes(o, match_attributes)) unless match + raise OpenTox::BadRequestError.new("no match found for "+inspect_attributes(o, match_attributes)) unless match end end end diff --git a/report/validation_access.rb b/report/validation_access.rb index 170cdfd..9c45165 100755 --- a/report/validation_access.rb +++ b/report/validation_access.rb @@ -8,7 +8,7 @@ class Reports::ValidationAccess # initialize Reports::Validation object with data from Lib:Validation object # - def init_validation(validation, uri) + def init_validation(validation, uri, subjectid=nil) raise "not implemented" end @@ -20,13 +20,13 @@ class Reports::ValidationAccess # yields predictions (Lib::OTPredictions) if available # - def get_predictions(validation, task=nil) + def get_predictions(validation, subjectid=nil, task=nil) raise "not implemented" end # replaces crossvalidations uris with corresponding validation uris, in-/output: array # - def resolve_cv_uris(validation_uris) + def resolve_cv_uris(validation_uris,subjectid=nil) raise "not implemented" end @@ -37,11 +37,11 @@ class Reports::ValidationAccess end # is validation classification/regression? - def feature_type(validation) + def feature_type(validation, subjectid=nil) raise "not implemented" end - def predicted_variable(validation) + def predicted_variable(validation, subjectid=nil) raise "not implemented" end @@ -53,20 +53,23 @@ class Reports::ValidationDB < Reports::ValidationAccess # @model_store = {} # end - def resolve_cv_uris(validation_uris) + def resolve_cv_uris(validation_uris, subjectid=nil) res = [] validation_uris.each do |u| if u.to_s =~ /.*\/crossvalidation\/[0-9]+/ cv_id = u.split("/")[-1].to_i cv = nil - begin - #cv = Lib::Crossvalidation.find( cv_id ) - cv = Lib::Crossvalidation.get( cv_id ) - rescue => ex - raise "could not access crossvalidation with id "+validation_id.to_s+", error-msg: "+ex.message - end - raise Reports::BadRequest.new("crossvalidation with id '"+cv_id.to_s+"' not found") unless cv - raise Reports::BadRequest.new("crossvalidation with id '"+cv_id.to_s+"' not finished") unless cv.finished + + raise OpenTox::NotAuthorizedError.new "Not authorized: GET "+u.to_s if + subjectid and !OpenTox::Authorization.authorized?(u,"GET",subjectid) +# begin +# #cv = Lib::Crossvalidation.find( cv_id ) +# rescue => ex +# raise "could not access crossvalidation with id "+validation_id.to_s+", error-msg: "+ex.message +# end + cv = Lib::Crossvalidation.get( cv_id ) + raise OpenTox::NotFoundError.new "crossvalidation with id "+cv_id.to_s+" not found" unless cv + raise OpenTox::BadRequestError.new("crossvalidation with id '"+cv_id.to_s+"' not finished") unless cv.finished #res += Lib::Validation.find( :all, :conditions => { :crossvalidation_id => cv_id } ).collect{|v| v.validation_uri.to_s} res += Lib::Validation.all( :crossvalidation_id => cv_id ).collect{|v| v.validation_uri.to_s } else @@ -76,21 +79,18 @@ class Reports::ValidationDB < Reports::ValidationAccess res end - def init_validation(validation, uri) + def init_validation(validation, uri, subjectid=nil) - raise Reports::BadRequest.new "not a validation uri: "+uri.to_s unless uri =~ /.*\/[0-9]+/ + raise OpenTox::BadRequestError.new "not a validation uri: "+uri.to_s unless uri =~ /.*\/[0-9]+/ validation_id = uri.split("/")[-1] - raise Reports::BadRequest.new "invalid validation id "+validation_id.to_s unless validation_id!=nil and + raise OpenTox::BadRequestError.new "invalid validation id "+validation_id.to_s unless validation_id!=nil and (validation_id.to_i > 0 || validation_id.to_s=="0" ) v = nil - begin - #v = Lib::Validation.find(validation_id) - v = Lib::Validation.get(validation_id) - rescue => ex - raise "could not access validation with id "+validation_id.to_s+", error-msg: "+ex.message - end - raise Reports::BadRequest.new "no validation found with id "+validation_id.to_s unless v #+" and uri "+uri.to_s unless v - raise Reports::BadRequest.new "validation with id "+validation_id.to_s+" is not finished yet" unless v.finished + raise OpenTox::NotAuthorizedError.new "Not authorized: GET "+uri.to_s if + subjectid and !OpenTox::Authorization.authorized?(uri,"GET",subjectid) + v = Lib::Validation.get(validation_id) + raise OpenTox::NotFoundError.new "validation with id "+validation_id.to_s+" not found" unless v + raise OpenTox::BadRequestError.new "validation with id "+validation_id.to_s+" is not finished yet" unless v.finished (Lib::VAL_PROPS + Lib::VAL_CV_PROPS).each do |p| validation.send("#{p.to_s}=".to_sym, v.send(p)) @@ -107,32 +107,33 @@ class Reports::ValidationDB < Reports::ValidationAccess #cv = Lib::Crossvalidation.find(validation.crossvalidation_id) cv = Lib::Crossvalidation.get(validation.crossvalidation_id) - raise Reports::BadRequest.new "no crossvalidation found with id "+validation.crossvalidation_id.to_s unless cv + raise OpenTox::BadRequestError.new "no crossvalidation found with id "+validation.crossvalidation_id.to_s unless cv Lib::CROSS_VAL_PROPS.each do |p| validation.send("#{p.to_s}=".to_sym, cv[p]) end end - def get_predictions(validation, task=nil) + def get_predictions(validation, subjectid=nil, task=nil) Lib::OTPredictions.new( validation.feature_type, validation.test_dataset_uri, validation.test_target_dataset_uri, validation.prediction_feature, validation.prediction_dataset_uri, - validation.predicted_variable, task) + validation.predicted_variable, subjectid, task) end def get_class_domain( validation ) OpenTox::Feature.new( validation.prediction_feature ).domain end - def feature_type( validation ) - OpenTox::Model::Generic.new(validation.model_uri).feature_type + def feature_type( validation, subjectid=nil ) + raise "subjectid is nil" unless subjectid + OpenTox::Model::Generic.new(validation.model_uri).feature_type(subjectid) #get_model(validation).classification? end - def predicted_variable(validation) + def predicted_variable(validation, subjectid=nil) raise "cannot derive model depended props for merged validations" if Lib::MergeObjects.merged?(validation) - model = OpenTox::Model::Generic.find(validation.model_uri) - raise Reports::NotFound.new "model not found '"+validation.model_uri+"'" unless model + model = OpenTox::Model::Generic.find(validation.model_uri, subjectid) + raise OpenTox::NotFoundError.new "model not found '"+validation.model_uri+"'" unless model model.metadata[OT.predictedVariables] #get_model(validation).predictedVariables end @@ -164,7 +165,7 @@ class Reports::ValidationWebservice < Reports::ValidationAccess begin vali_uri_list = RestClientWrapper.get uri rescue => ex - raise Reports::BadRequest.new "cannot get validations for cv at '"+uri.to_s+"', error msg: "+ex.message + raise OpenTox::BadRequestError.new "cannot get validations for cv at '"+uri.to_s+"', error msg: "+ex.message end res += vali_uri_list.split("\n") else @@ -180,7 +181,7 @@ class Reports::ValidationWebservice < Reports::ValidationAccess begin data = YAML.load(RestClient.get uri) rescue => ex - raise Reports::BadRequest.new "cannot get validation at '"+uri.to_s+"', error msg: "+ex.message + raise OpenTox::BadRequestError.new "cannot get validation at '"+uri.to_s+"', error msg: "+ex.message end Lib::VAL_PROPS.each do |p| @@ -205,7 +206,7 @@ class Reports::ValidationWebservice < Reports::ValidationAccess begin data = YAML.load(RestClient.get validation.crossvalidation_uri) rescue => ex - raise Reports::BadRequest.new "cannot get crossvalidation at '"+validation.crossvalidation_uri.to_s+"', error msg: "+ex.message + raise OpenTox::BadRequestError.new "cannot get crossvalidation at '"+validation.crossvalidation_uri.to_s+"', error msg: "+ex.message end Lib::CROSS_VAL_PROPS.each do |p| @@ -213,7 +214,7 @@ class Reports::ValidationWebservice < Reports::ValidationAccess end end - def get_predictions(validation, task=nil) + def get_predictions(validation, subjectid=nil, task=nil) Lib::Predictions.new( validation.prediction_feature, validation.test_dataset_uri, validation.prediction_dataset_uri) end end diff --git a/report/validation_data.rb b/report/validation_data.rb index c4eed12..0dd63ee 100755 --- a/report/validation_data.rb +++ b/report/validation_data.rb @@ -76,8 +76,10 @@ module Reports attr_reader :predictions - def initialize(uri = nil) - @@validation_access.init_validation(self, uri) if uri + def initialize(uri = nil, subjectid = nil) + @@validation_access.init_validation(self, uri, subjectid) if uri + @subjectid = subjectid + #raise "subjectid is nil" unless subjectid end # returns/creates predictions, cache to save rest-calls/computation time @@ -95,7 +97,7 @@ module Reports task.progress(100) if task nil else - @predictions = @@validation_access.get_predictions( self, task ) + @predictions = @@validation_access.get_predictions( self, @subjectid, task ) end end end @@ -111,12 +113,12 @@ module Reports # def feature_type return @feature_type if @feature_type!=nil - @feature_type = @@validation_access.feature_type(self) + @feature_type = @@validation_access.feature_type(self, @subjectid) end def predicted_variable return @predicted_variable if @predicted_variable!=nil - @predicted_variable = @@validation_access.predicted_variable(self) + @predicted_variable = @@validation_access.predicted_variable(self, @subjectid) end # loads all crossvalidation attributes, of the corresponding cv into this object @@ -156,11 +158,11 @@ module Reports # class ValidationSet - def initialize(validation_uris = nil) + def initialize(validation_uris=nil, subjectid=nil) @unique_values = {} validation_uris = Reports::Validation.resolve_cv_uris(validation_uris) if validation_uris @validations = Array.new - validation_uris.each{|u| @validations.push(Reports::Validation.new(u))} if validation_uris + validation_uris.each{|u| @validations.push(Reports::Validation.new(u, subjectid))} if validation_uris end diff --git a/test/test_examples.rb b/test/test_examples.rb index 45d7035..192f1a4 100755 --- a/test/test_examples.rb +++ b/test/test_examples.rb @@ -355,7 +355,18 @@ module ValidationExamples end ######################################################################################################## - + + + class NtuaModel < ModelValidation + def initialize + @model_uri = "http://opentox.ntua.gr:4000/model/0d8a9a27-3481-4450-bca1-d420a791de9d" + @test_dataset_uri = "http://apps.ideaconsult.net:8080/ambit2/dataset/54" + #@prediction_feature=http://apps.ideaconsult.net:8080/ambit2/feature/22200 + end + end + + ######################################################################################################## + @@list = { "1" => [ LazarHamsterSplit, MajorityHamsterSplit ], "1a" => [ LazarHamsterSplit ], @@ -403,6 +414,8 @@ module ValidationExamples "14a" => [ LazarEPAFHMCrossvalidation ], "14b" => [ MajorityEPAFHMCrossvalidation ], + + "15a" => [ NtuaModel ], } def self.list diff --git a/test/test_examples_util.rb b/test/test_examples_util.rb index 9f11fe7..02d5921 100755 --- a/test/test_examples_util.rb +++ b/test/test_examples_util.rb @@ -89,8 +89,9 @@ module ValidationExamples def self.wait(uri) if uri.task_uri? task = OpenTox::Task.find(uri.to_s.chomp) - task.wait_for_completion - raise "task failed: "+uri.to_s+", error is:\n"+task.description.to_s if task.error? + task.wait_for_completion nil,5 + #raise "task failed: "+uri.to_s+", description: '"+task.description.to_s+"'" if task.error? + LOGGER.error "task failed:\n"+task.errorReport.to_yaml if task.error? uri = task.result_uri end uri @@ -366,6 +367,10 @@ module ValidationExamples def opt_params [ :prediction_feature, :test_target_dataset_uri ] end + + def validation_type + "test_set_validation" + end end class TrainingTestValidation < ValidationExample diff --git a/validation/validation_service.rb b/validation/validation_service.rb index eb9ecff..fa638cf 100755 --- a/validation/validation_service.rb +++ b/validation/validation_service.rb @@ -129,7 +129,7 @@ module Validation #model = OpenTox::Model::PredictionModel.find(self.model_uri) #raise OpenTox::NotFoundError.new "model not found: "+self.model_uri.to_s unless model - model = OpenTox::Model::Generic.find(self.model_uri) + model = OpenTox::Model::Generic.find(self.model_uri, self.subjectid) raise OpenTox::NotFoundError.new "model not found: "+self.model_uri.to_s unless model unless self.algorithm_uri @@ -173,7 +173,7 @@ module Validation #model = OpenTox::Model::PredictionModel.find(self.model_uri) if model==nil and self.model_uri #raise OpenTox::NotFoundError.new "model not found: "+self.model_uri.to_s unless model - model = OpenTox::Model::Generic.find(self.model_uri) if model==nil and self.model_uri + model = OpenTox::Model::Generic.find(self.model_uri, self.subjectid) if model==nil and self.model_uri raise OpenTox::NotFoundError.new "model not found: "+self.model_uri.to_s unless model dependentVariables = model.metadata[OT.dependentVariables] @@ -198,7 +198,7 @@ module Validation LOGGER.debug "computing prediction stats" prediction = Lib::OTPredictions.new( feature_type, self.test_dataset_uri, self.test_target_dataset_uri, self.prediction_feature, - self.prediction_dataset_uri, predicted_feature, OpenTox::SubTask.create(task, 0, 80) ) + self.prediction_dataset_uri, predicted_feature, self.subjectid, OpenTox::SubTask.create(task, 0, 80) ) #reading datasets and computing the main stats is 80% the work unless dry_run @@ -338,7 +338,7 @@ module Validation raise "random seed not set "+self.inspect unless self.random_seed LOGGER.debug "creating datasets for crossvalidation" - orig_dataset = OpenTox::Dataset.find(self.dataset_uri) + orig_dataset = OpenTox::Dataset.find(self.dataset_uri,self.subjectid) raise OpenTox::NotFoundError.new "Dataset not found: "+self.dataset_uri.to_s unless orig_dataset shuffled_compounds = orig_dataset.compounds.shuffle( self.random_seed ) @@ -448,7 +448,7 @@ module Validation random_seed=1 unless random_seed - orig_dataset = OpenTox::Dataset.find orig_dataset_uri + orig_dataset = OpenTox::Dataset.find orig_dataset_uri,subjectid orig_dataset.load_all raise OpenTox::NotFoundError.new "Dataset not found: "+orig_dataset_uri.to_s unless orig_dataset if prediction_feature @@ -513,7 +513,7 @@ module Validation task.progress(100) if task if ENV['RACK_ENV'] =~ /test|debug/ - training_dataset = OpenTox::Dataset.find result[:training_dataset_uri] + training_dataset = OpenTox::Dataset.find result[:training_dataset_uri],subjectid raise OpenTox::NotFoundError.new "Training dataset not found: '"+result[:training_dataset_uri].to_s+"'" unless training_dataset training_dataset.load_all value_count = 0 @@ -521,7 +521,8 @@ module Validation value_count += training_dataset.data_entries[c][prediction_feature].size end raise "training compounds error" unless value_count==training_compounds.size - raise OpenTox::NotFoundError.new "Test dataset not found: '"+result[:test_dataset_uri].to_s+"'" unless OpenTox::Dataset.find result[:test_dataset_uri] + raise OpenTox::NotFoundError.new "Test dataset not found: '"+result[:test_dataset_uri].to_s+"'" unless + OpenTox::Dataset.find result[:test_dataset_uri], subjectid end LOGGER.debug "bootstrapping done, training dataset: '"+result[:training_dataset_uri].to_s+"', test dataset: '"+result[:test_dataset_uri].to_s+"'" @@ -535,8 +536,8 @@ module Validation split_ratio=0.67 unless split_ratio random_seed=1 unless random_seed - orig_dataset = OpenTox::Dataset.find orig_dataset_uri - orig_dataset.load_all + orig_dataset = OpenTox::Dataset.find orig_dataset_uri, subjectid + orig_dataset.load_all subjectid raise OpenTox::NotFoundError.new "Dataset not found: "+orig_dataset_uri.to_s unless orig_dataset raise OpenTox::NotFoundError.new "Split ratio invalid: "+split_ratio.to_s unless split_ratio and split_ratio=split_ratio.to_f raise OpenTox::NotFoundError.new "Split ratio not >0 and <1 :"+split_ratio.to_s unless split_ratio>0 && split_ratio<1 @@ -597,10 +598,11 @@ module Validation task.progress(100) if task if ENV['RACK_ENV'] =~ /test|debug/ - raise OpenTox::NotFoundError.new "Training dataset not found: '"+result[:training_dataset_uri].to_s+"'" unless OpenTox::Dataset.find result[:training_dataset_uri] - test_data = OpenTox::Dataset.find result[:test_dataset_uri] + raise OpenTox::NotFoundError.new "Training dataset not found: '"+result[:training_dataset_uri].to_s+"'" unless + OpenTox::Dataset.find(result[:training_dataset_uri],subjectid) + test_data = OpenTox::Dataset.find result[:test_dataset_uri],subjectid raise OpenTox::NotFoundError.new "Test dataset not found: '"+result[:test_dataset_uri].to_s+"'" unless test_data - test_data.load_compounds + test_data.load_compounds subjectid raise "Test dataset num coumpounds != "+(compounds.size-split-1).to_s+", instead: "+ test_data.compounds.size.to_s+"\n"+test_data.to_yaml unless test_data.compounds.size==(compounds.size-1-split) end diff --git a/validation/validation_test.rb b/validation/validation_test.rb index 3138252..603b270 100755 --- a/validation/validation_test.rb +++ b/validation/validation_test.rb @@ -26,11 +26,16 @@ if AA_SERVER raise "could not log in" unless SUBJECTID puts "logged in: "+SUBJECTID.to_s else + puts "AA disabled" SUBJECTID = nil end #Rack::Test::DEFAULT_HOST = "local-ot" #"/validation" module Sinatra + + set :raise_errors, false + set :show_exceptions, false + module UrlForHelper BASE = "http://local-ot/validation" def url_for url_fragment, mode=:path_only @@ -53,7 +58,8 @@ class ValidationTest < Test::Unit::TestCase begin $test_case = self - #get "/1",nil,'HTTP_ACCEPT' => "text/html" +# get "/19999",nil,'HTTP_ACCEPT' => "text/html" +# exit # # get "/234234232341",nil,'HTTP_ACCEPT' => "application/x-yaml" # puts last_response.body @@ -130,14 +136,24 @@ class ValidationTest < Test::Unit::TestCase #run_test("13a","http://local-ot/validation/39",nil,false) #,"http://local-ot/validation/28")#,"http://local-ot/validation/394"); + #puts OpenTox::Authorization.list_policy_uris(SUBJECTID).inspect + #puts OpenTox::Authorization.list_policy_uris(SUBJECTID).inspect - #run_test("1b",nil,nil,false,{:dataset_uri=>"http://local-ot/dataset/45", :prediction_feature => "http://local-ot/dataset/45/feature/Hamster%20Carcinogenicity"}) + run_test("14a",nil,nil,false) #,{:dataset_uri=>"http://local-ot/dataset/45", :prediction_feature => "http://local-ot/dataset/45/feature/Hamster%20Carcinogenicity"}) #get "/12123123123123123" - get "/chain" - #get "/examples" - puts last_response.body + #get "/chain" + + #OpenTox::RestClientWrapper.get("http://local-ot/validation/task-error") + #get "/error",nil,'HTTP_ACCEPT' => "application/rdf+xml" + #puts "" + #puts "" + #puts last_response.body + #exit + +# get "/error" +# puts last_response.body #delete "/1",:subjectid=>SUBJECTID @@ -170,7 +186,7 @@ class ValidationTest < Test::Unit::TestCase def run_test(select=nil, validation_uri=nil, report_uri=nil, delete=false, overwrite={}) - if AA_SERVER && delete + if AA_SERVER && SUBJECTID && delete policies_before = OpenTox::Authorization.list_policy_uris(SUBJECTID) end @@ -191,17 +207,17 @@ class ValidationTest < Test::Unit::TestCase ex.validate LOGGER.debug "validation done '"+ex.validation_uri.to_s+"'" end -# ex.report_uri = report_uri -# unless ex.report_uri -# ex.report -# end + ex.report_uri = report_uri + unless ex.report_uri + ex.report + end ##ex.verify_yaml ##ex.compare_yaml_vs_rdf ex.delete if delete end end - if AA_SERVER && delete + if AA_SERVER && SUBJECTID && delete policies_after= OpenTox::Authorization.list_policy_uris(SUBJECTID) diff = policies_after.size - policies_before.size if (diff != 0) -- cgit v1.2.3 From 4466015d27af0a5424953eb7f1502994d73027cf Mon Sep 17 00:00:00 2001 From: mguetlein Date: Fri, 28 Jan 2011 12:41:49 +0100 Subject: whitelist validation-non-resource-uris, minor fixes --- application.rb | 3 +++ lib/ot_predictions.rb | 2 +- report/report_application.rb | 2 +- test/test_examples_util.rb | 8 ++++++-- validation/validation_service.rb | 1 + validation/validation_test.rb | 6 ++++-- 6 files changed, 16 insertions(+), 6 deletions(-) diff --git a/application.rb b/application.rb index cf9621d..319a95d 100755 --- a/application.rb +++ b/application.rb @@ -13,6 +13,9 @@ end require "example.rb" +# this allows GET access to all validation URIS that do NOT end with / or // +OpenTox::Authorization.whitelist( /\/[0-9]+(\/?)$/, "GET", true ) + get '/examples/?' do LOGGER.info "list examples" diff --git a/lib/ot_predictions.rb b/lib/ot_predictions.rb index c593f55..e28f35b 100755 --- a/lib/ot_predictions.rb +++ b/lib/ot_predictions.rb @@ -41,7 +41,7 @@ module Lib raise "prediction_feature not found in test_dataset, specify a test_target_dataset\n"+ "prediction_feature: '"+prediction_feature.to_s+"'\n"+ "test_dataset: '"+test_target_dataset_uri.to_s+"'\n"+ - "available features are: "+test_target_dataset.features.inspect if test_target_dataset.features.index(prediction_feature)==nil + "available features are: "+test_target_dataset.features.inspect if test_target_dataset.features.keys.index(prediction_feature)==nil else test_target_dataset = OpenTox::Dataset.find test_target_dataset_uri,subjectid raise "test target datset not found: '"+test_target_dataset_uri.to_s+"'" unless test_target_dataset diff --git a/report/report_application.rb b/report/report_application.rb index 9fcf871..8403b4c 100755 --- a/report/report_application.rb +++ b/report/report_application.rb @@ -92,7 +92,7 @@ get '/report/:type/:id' do end end -OpenTox::Authorization.whitelist( Regexp.new("/report/.*/[0-9]+/.*"),"GET") +#OpenTox::Authorization.whitelist( Regexp.new("/report/.*/[0-9]+/.*"),"GET") get '/report/:type/:id/:resource' do perform do |rs| diff --git a/test/test_examples_util.rb b/test/test_examples_util.rb index 02d5921..c465d94 100755 --- a/test/test_examples_util.rb +++ b/test/test_examples_util.rb @@ -66,12 +66,15 @@ module ValidationExamples end def self.validation_get(uri, accept_header='application/rdf+xml') + params = {} + params[:subjectid] = SUBJECTID if SUBJECTID if $test_case #puts "getting "+uri+","+accept_header - $test_case.get uri,nil,'HTTP_ACCEPT' => accept_header + $test_case.get uri,params,'HTTP_ACCEPT' => accept_header return wait($test_case.last_response.body) else - return OpenTox::RestClientWrapper.get(File.join(CONFIG[:services]["opentox-validation"],uri),{:accept => accept_header}) + params[:accept] = accept_header + return OpenTox::RestClientWrapper.get(File.join(CONFIG[:services]["opentox-validation"],uri),params) end end @@ -291,6 +294,7 @@ module ValidationExamples def report begin @report_uri = Util.validation_post '/report/'+report_type,{:validation_uris => @validation_uri} + Util.validation_get "/report/"+report_uri.split("/")[-2]+"/"+report_uri.split("/")[-1] rescue => ex puts "could not create report: "+ex.message raise ex diff --git a/validation/validation_service.rb b/validation/validation_service.rb index fa638cf..2208116 100755 --- a/validation/validation_service.rb +++ b/validation/validation_service.rb @@ -156,6 +156,7 @@ module Validation #prediction_dataset_uri = model.predict_dataset(self.test_dataset_uri, OpenTox::SubTask.create(task, 0, 50)) prediction_dataset_uri = model.run( {:dataset_uri => self.test_dataset_uri, :subjectid => self.subjectid}, + "text/uri-list", OpenTox::SubTask.create(task, 0, 50)) end # self.attributes = { :prediction_dataset_uri => prediction_dataset_uri, diff --git a/validation/validation_test.rb b/validation/validation_test.rb index 603b270..c368747 100755 --- a/validation/validation_test.rb +++ b/validation/validation_test.rb @@ -140,7 +140,7 @@ class ValidationTest < Test::Unit::TestCase #puts OpenTox::Authorization.list_policy_uris(SUBJECTID).inspect - run_test("14a",nil,nil,false) #,{:dataset_uri=>"http://local-ot/dataset/45", :prediction_feature => "http://local-ot/dataset/45/feature/Hamster%20Carcinogenicity"}) + run_test("15a",nil,nil,false) #,{:dataset_uri=>"http://local-ot/dataset/45", :prediction_feature => "http://local-ot/dataset/45/feature/Hamster%20Carcinogenicity"}) #get "/12123123123123123" #get "/chain" @@ -176,7 +176,7 @@ class ValidationTest < Test::Unit::TestCase #do_test_examples_ortona ensure - OpenTox::Authorization.logout(SUBJECTID) if AA_SERVER + #OpenTox::Authorization.logout(SUBJECTID) if AA_SERVER end end @@ -206,10 +206,12 @@ class ValidationTest < Test::Unit::TestCase ex.check_requirements ex.validate LOGGER.debug "validation done '"+ex.validation_uri.to_s+"'" + puts ex.validation_uri+"?subjectid="+CGI.escape(SUBJECTID) if SUBJECTID and !delete end ex.report_uri = report_uri unless ex.report_uri ex.report + puts ex.report_uri+"?subjectid="+CGI.escape(SUBJECTID) if SUBJECTID and !delete end ##ex.verify_yaml ##ex.compare_yaml_vs_rdf -- cgit v1.2.3 From d3336b01ad57209a4b9cb3677c798d97e6c80ec7 Mon Sep 17 00:00:00 2001 From: mguetlein Date: Fri, 28 Jan 2011 13:24:58 +0100 Subject: repaired test_examples with subjectid --- test/test_application.rb | 9 +++++++-- test/test_examples_util.rb | 45 ++++++++++++++++++++++--------------------- validation/validation_test.rb | 7 ++++--- 3 files changed, 34 insertions(+), 27 deletions(-) diff --git a/test/test_application.rb b/test/test_application.rb index c6c7963..e59bf3a 100755 --- a/test/test_application.rb +++ b/test/test_application.rb @@ -5,13 +5,18 @@ post '/test_validation/?' do task = OpenTox::Task.create("Test validation",url_for("/test_validation",:full)) do #,params v = validationExamples[0][0] ex = v.new + ex.subjectid = @subjectid ex.upload_files ex.check_requirements ex.validate raise ex.validation_error if ex.validation_error - ex.report if params[:report] + ex.report unless params[:report]=="false" raise ex.report_error if ex.report_error - ex.validation_uri + (params[:report] ? ","+ex.report_uri : "") + if ex.report_uri + ex.report_uri + else + ex.validation_uri + end end task.uri end diff --git a/test/test_examples_util.rb b/test/test_examples_util.rb index c465d94..492b497 100755 --- a/test/test_examples_util.rb +++ b/test/test_examples_util.rb @@ -6,7 +6,7 @@ module ValidationExamples @@dataset_uris = {} @@prediction_features = {} - def self.upload_dataset(file, dataset_service=CONFIG[:services]["opentox-dataset"]) #, file_type="application/x-yaml") + def self.upload_dataset(file, subjectid=nil, dataset_service=CONFIG[:services]["opentox-dataset"]) #, file_type="application/x-yaml") raise "File not found: "+file.path.to_s unless File.exist?(file.path) if @@dataset_uris[file.path.to_s]==nil LOGGER.debug "uploading file: "+file.path.to_s @@ -15,12 +15,12 @@ module ValidationExamples #data_uri = OpenTox::RestClientWrapper.post(dataset_service,{:content_type => file_type},data).to_s.chomp #@@dataset_uris[file.path.to_s] = data_uri #LOGGER.debug "uploaded dataset: "+data_uri - d = OpenTox::Dataset.create(CONFIG[:services]["opentox-dataset"], SUBJECTID) + d = OpenTox::Dataset.create(CONFIG[:services]["opentox-dataset"], subjectid) d.load_yaml(data) - d.save( SUBJECTID ) + d.save( subjectid ) @@dataset_uris[file.path.to_s] = d.uri elsif (file.path =~ /csv$/) - d = OpenTox::Dataset.create_from_csv_file(file.path, SUBJECTID) + d = OpenTox::Dataset.create_from_csv_file(file.path, subjectid) raise "num features not 1 (="+d.features.keys.size.to_s+"), what to predict??" if d.features.keys.size != 1 @@prediction_features[file.path.to_s] = d.features.keys[0] @@dataset_uris[file.path.to_s] = d.uri @@ -38,7 +38,7 @@ module ValidationExamples @@prediction_features[file.path.to_s] end - def self.build_compare_report(validation_examples) + def self.build_compare_report(validation_examples, subjectid) @comp = validation_examples[0].algorithm_uri==nil ? :model_uri : :algorithm_uri return nil if @comp == :model_uri @@ -48,15 +48,15 @@ module ValidationExamples end return nil if to_compare.size < 2 begin - return validation_post "report/algorithm_comparison",{ :validation_uris => to_compare.join("\n") } + return validation_post "report/algorithm_comparison",{ :validation_uris => to_compare.join("\n") }, subjectid rescue => ex return "error creating comparison report "+ex.message end end - def self.validation_post(uri, params) + def self.validation_post(uri, params, subjectid ) - params[:subjectid] = SUBJECTID if SUBJECTID and params[:subjectid]==nil + params[:subjectid] = subjectid if subjectid if $test_case $test_case.post uri,params return wait($test_case.last_response.body) @@ -65,9 +65,9 @@ module ValidationExamples end end - def self.validation_get(uri, accept_header='application/rdf+xml') + def self.validation_get(uri, subjectid, accept_header='application/rdf+xml') params = {} - params[:subjectid] = SUBJECTID if SUBJECTID + params[:subjectid] = subjectid if subjectid if $test_case #puts "getting "+uri+","+accept_header $test_case.get uri,params,'HTTP_ACCEPT' => accept_header @@ -232,13 +232,14 @@ module ValidationExamples :split_ratio, :random_seed, :num_folds, - :stratified + :stratified, + :subjectid #results attr_accessor :validation_uri, :report_uri, :validation_error, :report_error - + def upload_files [[:test_dataset_uri, :test_dataset_file], [:test_target_dataset_uri, :test_target_dataset_file], @@ -247,7 +248,7 @@ module ValidationExamples uri = a[0] file = a[1] if send(uri)==nil and send(file)!=nil - dataset_uri = Util.upload_dataset(send(file)) + dataset_uri = Util.upload_dataset(send(file), @subjectid) send("#{uri.to_s}=".to_sym, dataset_uri) @uploaded_datasets = [] unless @uploaded_datasets @uploaded_datasets << dataset_uri @@ -293,8 +294,8 @@ module ValidationExamples def report begin - @report_uri = Util.validation_post '/report/'+report_type,{:validation_uris => @validation_uri} - Util.validation_get "/report/"+report_uri.split("/")[-2]+"/"+report_uri.split("/")[-1] + @report_uri = Util.validation_post '/report/'+report_type,{:validation_uris => @validation_uri}, @subjectid + Util.validation_get "/report/"+report_uri.split("/")[-2]+"/"+report_uri.split("/")[-1], @subjectid rescue => ex puts "could not create report: "+ex.message raise ex @@ -304,7 +305,7 @@ module ValidationExamples def validate begin - @validation_uri = Util.validation_post '/'+validation_type, get_params + @validation_uri = Util.validation_post '/'+validation_type, get_params, @subjectid rescue => ex puts "could not validate: "+ex.message @validation_error = ex.message @@ -314,15 +315,15 @@ module ValidationExamples def compare_yaml_vs_rdf if @validation_uri - yaml = YAML.load(Util.validation_get(@validation_uri.split("/")[-1],'application/x-yaml')) - owl = OpenTox::Owl.from_data(Util.validation_get(@validation_uri.split("/")[-1]),@validation_uri,"Validation") + yaml = YAML.load(Util.validation_get(@validation_uri.split("/")[-1],@subjectid,'application/x-yaml')) + owl = OpenTox::Owl.from_data(Util.validation_get(@validation_uri.split("/")[-1],@subjectid),@validation_uri,"Validation") Util.compare_yaml_and_owl(yaml,owl) end if @report_uri - yaml = YAML.load(Util.validation_get(@report_uri.split("/")[-3..-1].join("/"),'application/x-yaml')) - owl = OpenTox::Owl.from_data(Util.validation_get(@report_uri.split("/")[-3..-1].join("/")),@report_uri,"ValidationReport") + yaml = YAML.load(Util.validation_get(@report_uri.split("/")[-3..-1].join("/"),@subjectid,'application/x-yaml')) + owl = OpenTox::Owl.from_data(Util.validation_get(@report_uri.split("/")[-3..-1].join("/"),@subjectid),@report_uri,"ValidationReport") Util.compare_yaml_and_owl(yaml,owl) - Util.validation_get(@report_uri.split("/")[-3..-1].join("/"),'text/html') + Util.validation_get(@report_uri.split("/")[-3..-1].join("/"),@subjectid,'text/html') else puts "no report" end @@ -336,7 +337,7 @@ module ValidationExamples Util.validation_get("crossvalidation/"+@validation_uri.split("/")[-1]+"/statistics",'application/x-yaml') Util.verify_validation(Util.validation_get("crossvalidation/"+@validation_uri.split("/")[-1]+"/statistics",'application/x-yaml')) else - Util.verify_validation(Util.validation_get(@validation_uri.split("/")[-1],'application/x-yaml')) + Util.verify_validation(Util.validation_get(@validation_uri.split("/")[-1],@subjectid,'application/x-yaml')) end end diff --git a/validation/validation_test.rb b/validation/validation_test.rb index c368747..b77f32f 100755 --- a/validation/validation_test.rb +++ b/validation/validation_test.rb @@ -140,7 +140,7 @@ class ValidationTest < Test::Unit::TestCase #puts OpenTox::Authorization.list_policy_uris(SUBJECTID).inspect - run_test("15a",nil,nil,false) #,{:dataset_uri=>"http://local-ot/dataset/45", :prediction_feature => "http://local-ot/dataset/45/feature/Hamster%20Carcinogenicity"}) + run_test("1b",nil,nil,false) #,{:dataset_uri=>"http://local-ot/dataset/45", :prediction_feature => "http://local-ot/dataset/45/feature/Hamster%20Carcinogenicity"}) #get "/12123123123123123" #get "/chain" @@ -176,7 +176,7 @@ class ValidationTest < Test::Unit::TestCase #do_test_examples_ortona ensure - #OpenTox::Authorization.logout(SUBJECTID) if AA_SERVER + OpenTox::Authorization.logout(SUBJECTID) if AA_SERVER end end @@ -195,6 +195,7 @@ class ValidationTest < Test::Unit::TestCase validationExamples.each do |vv| vv.each do |v| ex = v.new + ex.subjectid = SUBJECTID ex.validation_uri = validation_uri overwrite.each do |k,v| @@ -206,7 +207,7 @@ class ValidationTest < Test::Unit::TestCase ex.check_requirements ex.validate LOGGER.debug "validation done '"+ex.validation_uri.to_s+"'" - puts ex.validation_uri+"?subjectid="+CGI.escape(SUBJECTID) if SUBJECTID and !delete + puts ex.validation_uri+"?subjectid="+CGI.escape(SUBJECTID) if SUBJECTID and !delete end ex.report_uri = report_uri unless ex.report_uri -- cgit v1.2.3 From e9af5334f70c5a80ad5f63b6028a3d0a27340360 Mon Sep 17 00:00:00 2001 From: mguetlein Date: Mon, 31 Jan 2011 09:45:40 +0100 Subject: update serach facilities, minor test fixes --- lib/data_mapper_util.rb | 49 ++++++++++-------------------------- test/test_examples_util.rb | 4 +-- validation/validation_application.rb | 27 +++++++++++++++----- validation/validation_test.rb | 12 +++++---- 4 files changed, 43 insertions(+), 49 deletions(-) diff --git a/lib/data_mapper_util.rb b/lib/data_mapper_util.rb index 25d9d61..23f52f5 100644 --- a/lib/data_mapper_util.rb +++ b/lib/data_mapper_util.rb @@ -8,53 +8,30 @@ module Lib prop_names = model.properties.collect{|p| p.name.to_s if p.is_a?DataMapper::Property::Object} params.keys.each do |k| key = k.to_s - unless prop_names.include?(key) - key = key.from_rdf_format + if (key == "subjectid") + params.delete(k) + else unless prop_names.include?(key) - key = key+"_uri" + key = key.from_rdf_format unless prop_names.include?(key) - key = key+"s" + key = key+"_uri" unless prop_names.include?(key) - raise OpenTox::BadRequestError.new "no attribute found: '"+k.to_s+"'" + key = key+"s" + unless prop_names.include?(key) + raise OpenTox::BadRequestError.new "no attribute found: '"+k.to_s+"'" + end end end end + params[key.to_sym] = params.delete(k) end - params[key.to_sym] = params.delete(k) end params end -# def self.all(model, filter_params) -# prop_names = model.properties.collect{|p| p.name.to_s if p.is_a?DataMapper::Property::Object} -# puts prop_names.inspect -# -# filter_params.keys.each do |k| -# key = k.to_s -# unless prop_names.include?(key) -# key = key.from_rdf_format -# unless prop_names.include?(key) -# key = key+"_uri" -# unless prop_names.include?(key) -# key = key+"s" -# unless prop_names.include?(key) -# err = "no attribute found: '"+k.to_s+"'" -# if $sinatra -# $sinatra.halt 400,err -# else -# raise err -# end -# end -# end -# end -# end -# filter_params[key.to_sym] = filter_params.delete(k) -# end -# puts filter_params.inspect -# -# #model.all(filter_params) -# model.all(:model_uris.like => "%") -# end + def self.all(model, filter_params) + model.all(check_params(model,filter_params)) + end end end \ No newline at end of file diff --git a/test/test_examples_util.rb b/test/test_examples_util.rb index 492b497..8344594 100755 --- a/test/test_examples_util.rb +++ b/test/test_examples_util.rb @@ -294,8 +294,8 @@ module ValidationExamples def report begin - @report_uri = Util.validation_post '/report/'+report_type,{:validation_uris => @validation_uri}, @subjectid - Util.validation_get "/report/"+report_uri.split("/")[-2]+"/"+report_uri.split("/")[-1], @subjectid + @report_uri = Util.validation_post '/report/'+report_type,{:validation_uris => @validation_uri}, @subjectid if @validation_uri + Util.validation_get "/report/"+report_uri.split("/")[-2]+"/"+report_uri.split("/")[-1], @subjectid if @report_uri rescue => ex puts "could not create report: "+ex.message raise ex diff --git a/validation/validation_application.rb b/validation/validation_application.rb index 7819114..b2bb400 100755 --- a/validation/validation_application.rb +++ b/validation/validation_application.rb @@ -9,7 +9,9 @@ require 'validation/validation_service.rb' get '/crossvalidation/?' do LOGGER.info "list all crossvalidations" - uri_list = Validation::Crossvalidation.all.collect{ |cv| cv.crossvalidation_uri }.join("\n")+"\n" + #uri_list = Validation::Crossvalidation.all.collect{ |cv| cv.crossvalidation_uri }.join("\n")+"\n" + uri_list = Lib::DataMapperUtil.all(Validation::Crossvalidation,params).collect{ |cv| cv.crossvalidation_uri }.join("\n")+"\n" + #uri_list = Validation::Crossvalidation.find_like(params).collect{ |cv| cv.crossvalidation_uri }.join("\n")+"\n" if request.env['HTTP_ACCEPT'] =~ /text\/html/ related_links = @@ -207,7 +209,9 @@ get '/?' do LOGGER.info "list all validations, params: "+params.inspect #uri_list = Validation::Validation.find_like(params).collect{ |v| v.validation_uri }.join("\n")+"\n" - uri_list = Validation::Validation.all.collect{ |v| v.validation_uri }.join("\n")+"\n" + #uri_list = Validation::Validation.all(params).collect{ |v| v.validation_uri }.join("\n")+"\n" + uri_list = Lib::DataMapperUtil.all(Validation::Validation,params).collect{ |v| v.validation_uri }.join("\n")+"\n" + if request.env['HTTP_ACCEPT'] =~ /text\/html/ related_links = @@ -260,7 +264,9 @@ get '/test_set_validation' do LOGGER.info "list all test-set-validations, params: "+params.inspect #uri_list = Validation::Validation.find( :all, :conditions => { :validation_type => "test_set_validation" } ).collect{ |v| v.validation_uri }.join("\n")+"\n" - uri_list = Validation::Validation.all( :validation_type => "test_set_validation" ).collect{ |v| v.validation_uri }.join("\n")+"\n" + #uri_list = Validation::Validation.all( :validation_type => "test_set_validation" ).collect{ |v| v.validation_uri }.join("\n")+"\n" + params[:validation_type] = "test_set_validation" + uri_list = Lib::DataMapperUtil.all(Validation::Validation,params).collect{ |v| v.validation_uri }.join("\n")+"\n" if request.env['HTTP_ACCEPT'] =~ /text\/html/ related_links = @@ -303,7 +309,10 @@ end get '/training_test_validation' do LOGGER.info "list all training-test-validations, params: "+params.inspect #uri_list = Validation::Validation.find( :all, :conditions => { :validation_type => "training_test_validation" } ).collect{ |v| v.validation_uri }.join("\n")+"\n" - uri_list = Validation::Validation.all( :validation_type => "training_test_validation" ).collect{ |v| v.validation_uri }.join("\n")+"\n" + #uri_list = Validation::Validation.all( :validation_type => "training_test_validation" ).collect{ |v| v.validation_uri }.join("\n")+"\n" + params[:validation_type] = "training_test_validation" + uri_list = Lib::DataMapperUtil.all(Validation::Validation,params).collect{ |v| v.validation_uri }.join("\n")+"\n" + if request.env['HTTP_ACCEPT'] =~ /text\/html/ related_links = "All validations: "+url_for("/",:full)+"\n"+ @@ -350,7 +359,10 @@ end get '/bootstrapping' do LOGGER.info "list all bootstrapping-validations, params: "+params.inspect #uri_list = Validation::Validation.find( :all, :conditions => { :validation_type => "bootstrapping" } ).collect{ |v| v.validation_uri }.join("\n")+"\n" - uri_list = Validation::Validation.all( :validation_type => "bootstrapping" ).collect{ |v| v.validation_uri }.join("\n")+"\n" + #uri_list = Validation::Validation.all( :validation_type => "bootstrapping" ).collect{ |v| v.validation_uri }.join("\n")+"\n" + params[:validation_type] = "bootstrapping" + uri_list = Lib::DataMapperUtil.all(Validation::Validation,params).collect{ |v| v.validation_uri }.join("\n")+"\n" + if request.env['HTTP_ACCEPT'] =~ /text\/html/ related_links = "All validations: "+url_for("/",:full)+"\n"+ @@ -401,7 +413,10 @@ end get '/training_test_split' do LOGGER.info "list all training-test-split-validations, params: "+params.inspect #uri_list = Validation::Validation.find( :all, :conditions => { :validation_type => "training_test_split" } ).collect{ |v| v.validation_uri }.join("\n")+"\n" - uri_list = Validation::Validation.all( :validation_type => "training_test_split" ).collect{ |v| v.validation_uri }.join("\n")+"\n" + #uri_list = Validation::Validation.all( :validation_type => "training_test_split" ).collect{ |v| v.validation_uri }.join("\n")+"\n" + params[:validation_type] = "training_test_split" + uri_list = Lib::DataMapperUtil.all(Validation::Validation,params).collect{ |v| v.validation_uri }.join("\n")+"\n" + if request.env['HTTP_ACCEPT'] =~ /text\/html/ related_links = "All validations: "+url_for("/",:full)+"\n"+ diff --git a/validation/validation_test.rb b/validation/validation_test.rb index b77f32f..26f12e7 100755 --- a/validation/validation_test.rb +++ b/validation/validation_test.rb @@ -20,8 +20,10 @@ LOGGER.datetime_format = "%Y-%m-%d %H:%M:%S " LOGGER.formatter = Logger::Formatter.new if AA_SERVER - TEST_USER = "mgtest" - TEST_PW = "mgpasswd" + #TEST_USER = "mgtest" + #TEST_PW = "mgpasswd" + TEST_USER = "guest" + TEST_PW = "guest" SUBJECTID = OpenTox::Authorization.authenticate(TEST_USER,TEST_PW) raise "could not log in" unless SUBJECTID puts "logged in: "+SUBJECTID.to_s @@ -140,7 +142,7 @@ class ValidationTest < Test::Unit::TestCase #puts OpenTox::Authorization.list_policy_uris(SUBJECTID).inspect - run_test("1b",nil,nil,false) #,{:dataset_uri=>"http://local-ot/dataset/45", :prediction_feature => "http://local-ot/dataset/45/feature/Hamster%20Carcinogenicity"}) + run_test("15a",nil,nil,false) #,{:dataset_uri=>"http://local-ot/dataset/45", :prediction_feature => "http://local-ot/dataset/45/feature/Hamster%20Carcinogenicity"}) #get "/12123123123123123" #get "/chain" @@ -207,12 +209,12 @@ class ValidationTest < Test::Unit::TestCase ex.check_requirements ex.validate LOGGER.debug "validation done '"+ex.validation_uri.to_s+"'" - puts ex.validation_uri+"?subjectid="+CGI.escape(SUBJECTID) if SUBJECTID and !delete + puts ex.validation_uri+"?subjectid="+CGI.escape(SUBJECTID) if SUBJECTID and !delete and ex.validation_uri end ex.report_uri = report_uri unless ex.report_uri ex.report - puts ex.report_uri+"?subjectid="+CGI.escape(SUBJECTID) if SUBJECTID and !delete + puts ex.report_uri+"?subjectid="+CGI.escape(SUBJECTID) if SUBJECTID and !delete and ex.report_uri end ##ex.verify_yaml ##ex.compare_yaml_vs_rdf -- cgit v1.2.3 From 068bdeb4a6e73ae3c932428b9174be121d8c4b48 Mon Sep 17 00:00:00 2001 From: mguetlein Date: Tue, 1 Feb 2011 13:42:12 +0100 Subject: replace halts with raise OT:Error --- validation/validation_application.rb | 86 ++++++++++++++++++------------------ 1 file changed, 43 insertions(+), 43 deletions(-) diff --git a/validation/validation_application.rb b/validation/validation_application.rb index b2bb400..f9b8b51 100755 --- a/validation/validation_application.rb +++ b/validation/validation_application.rb @@ -32,10 +32,10 @@ end post '/crossvalidation/?' do task = OpenTox::Task.create( "Perform crossvalidation", url_for("/crossvalidation", :full) ) do |task| #, params LOGGER.info "creating crossvalidation "+params.inspect - halt 400, "dataset_uri missing" unless params[:dataset_uri] - halt 400, "algorithm_uri missing" unless params[:algorithm_uri] - halt 400, "prediction_feature missing" unless params[:prediction_feature] - halt 400, "illegal param-value num_folds: '"+params[:num_folds].to_s+"', must be integer >1" unless params[:num_folds]==nil or + raise OpenTox::BadRequestError "dataset_uri missing" unless params[:dataset_uri] + raise OpenTox::BadRequestError "algorithm_uri missing" unless params[:algorithm_uri] + raise OpenTox::BadRequestError "prediction_feature missing" unless params[:prediction_feature] + raise OpenTox::BadRequestError "illegal param-value num_folds: '"+params[:num_folds].to_s+"', must be integer >1" unless params[:num_folds]==nil or params[:num_folds].to_i>1 cv_params = { :dataset_uri => params[:dataset_uri], @@ -47,8 +47,8 @@ post '/crossvalidation/?' do cv.crossvalidation_uri end content_type 'text/uri-list' - halt 503,task.uri+"\n" if task.status == "Cancelled" - halt 202,task.uri + raise OpenTox::ServiceUnavailableError.new task.uri+"\n" if task.status == "Cancelled" + halt 202, task.uri end post '/crossvalidation/cleanup/?' do @@ -72,11 +72,11 @@ post '/crossvalidation/cleanup/?' do end post '/crossvalidation/loo/?' do - halt 500, "not yet implemented" + raise "not yet implemented" end get '/crossvalidation/loo/?' do - halt 400, "GET operation not supported, use POST for performing a loo-crossvalidation, see "+url_for("/crossvalidation", :full)+" for crossvalidation results" + raise OpenTox::BadRequestError "GET operation not supported, use POST for performing a loo-crossvalidation, see "+url_for("/crossvalidation", :full)+" for crossvalidation results" end get '/crossvalidation/:id' do @@ -84,10 +84,10 @@ get '/crossvalidation/:id' do # begin # #crossvalidation = Validation::Crossvalidation.find(params[:id]) # rescue ActiveRecord::RecordNotFound => ex -# halt 404, "Crossvalidation '#{params[:id]}' not found." +# raise OpenTox::NotFoundError.new "Crossvalidation '#{params[:id]}' not found." # end crossvalidation = Validation::Crossvalidation.get(params[:id]) - halt 404,"Crossvalidation '#{params[:id]}' not found." unless crossvalidation + raise OpenTox::NotFoundError.new "Crossvalidation '#{params[:id]}' not found." unless crossvalidation case request.env['HTTP_ACCEPT'].to_s when "application/rdf+xml" @@ -108,7 +108,7 @@ get '/crossvalidation/:id' do content_type "application/x-yaml" crossvalidation.to_yaml else - halt 400, "MIME type '"+request.env['HTTP_ACCEPT'].to_s+"' not supported, valid Accept-Headers: \"application/rdf+xml\", \"application/x-yaml\", \"text/html\"." + raise OpenTox::BadRequestError.new "MIME type '"+request.env['HTTP_ACCEPT'].to_s+"' not supported, valid Accept-Headers: \"application/rdf+xml\", \"application/x-yaml\", \"text/html\"." end end @@ -117,13 +117,13 @@ get '/crossvalidation/:id/statistics' do # begin #crossvalidation = Validation::Crossvalidation.find(params[:id]) # rescue ActiveRecord::RecordNotFound => ex -# halt 404, "Crossvalidation '#{params[:id]}' not found." +# raise OpenTox::NotFoundError.new "Crossvalidation '#{params[:id]}' not found." # end #crossvalidation = Validation::Crossvalidation.find(params[:id]) crossvalidation = Validation::Crossvalidation.get(params[:id]) - halt 404,"Crossvalidation '#{params[:id]}' not found." unless crossvalidation - halt 400,"Crossvalidation '"+params[:id].to_s+"' not finished" unless crossvalidation.finished + raise OpenTox::NotFoundError.new "Crossvalidation '#{params[:id]}' not found." unless crossvalidation + raise OpenTox::BadRequestError.new "Crossvalidation '"+params[:id].to_s+"' not finished" unless crossvalidation.finished Lib::MergeObjects.register_merge_attributes( Validation::Validation, Lib::VAL_MERGE_AVG,Lib::VAL_MERGE_SUM,Lib::VAL_MERGE_GENERAL-[:date,:validation_uri,:crossvalidation_uri]) unless @@ -154,13 +154,13 @@ delete '/crossvalidation/:id/?' do # begin #crossvalidation = Validation::Crossvalidation.find(params[:id]) # rescue ActiveRecord::RecordNotFound => ex -# halt 404, "Crossvalidation '#{params[:id]}' not found." +# raise OpenTox::NotFoundError.new "Crossvalidation '#{params[:id]}' not found." # end # Validation::Crossvalidation.delete(params[:id]) cv = Validation::Crossvalidation.get(params[:id]) cv.subjectid = @subjectid - halt 404,"Crossvalidation '#{params[:id]}' not found." unless cv + raise OpenTox::NotFoundError.new "Crossvalidation '#{params[:id]}' not found." unless cv cv.delete end @@ -169,7 +169,7 @@ end # begin # crossvalidation = Validation::Crossvalidation.find(params[:id]) # rescue ActiveRecord::RecordNotFound => ex -# halt 404, "Crossvalidation '#{params[:id]}' not found." +# raise OpenTox::NotFoundError.new "Crossvalidation '#{params[:id]}' not found." # end # content_type "text/uri-list" # Validation::Validation.find( :all, :conditions => { :crossvalidation_id => params[:id] } ).collect{ |v| v.validation_uri.to_s }.join("\n")+"\n" @@ -181,9 +181,9 @@ get '/crossvalidation/:id/predictions' do #crossvalidation = Validation::Crossvalidation.find(params[:id]) crossvalidation = Validation::Crossvalidation.get(params[:id]) rescue ActiveRecord::RecordNotFound => ex - halt 404, "Crossvalidation '#{params[:id]}' not found." + raise OpenTox::NotFoundError.new "Crossvalidation '#{params[:id]}' not found." end - halt 400,"Crossvalidation '"+params[:id].to_s+"' not finished" unless crossvalidation.finished + raise OpenTox::BadRequestError.new "Crossvalidation '"+params[:id].to_s+"' not finished" unless crossvalidation.finished content_type "application/x-yaml" #validations = Validation::Validation.find( :all, :conditions => { :crossvalidation_id => params[:id] } ) @@ -236,7 +236,7 @@ get '/?' do end post '/?' do - halt 400, "Post not supported, to perfom a validation use '/test_set_validation', '/training_test_validation', 'bootstrapping', 'training_test_split'" + raise OpenTox::BadRequestError.new "Post not supported, to perfom a validation use '/test_set_validation', '/training_test_validation', 'bootstrapping', 'training_test_split'" end post '/test_set_validation' do @@ -255,7 +255,7 @@ post '/test_set_validation' do end halt 202,task.uri+"\n" else - halt 400, "illegal parameters, pls specify model_uri and test_dataset_uri\n"+ + raise OpenTox::BadRequestError.new "illegal parameters, pls specify model_uri and test_dataset_uri\n"+ "params given: "+params.inspect end end @@ -301,7 +301,7 @@ post '/training_test_validation/?' do content_type "text/uri-list" halt 202,task.uri+"\n" else - halt 400, "illegal parameters, pls specify algorithm_uri, training_dataset_uri, test_dataset_uri, prediction_feature\n"+ + raise OpenTox::BadRequestError.new "illegal parameters, pls specify algorithm_uri, training_dataset_uri, test_dataset_uri, prediction_feature\n"+ "params given: "+params.inspect end end @@ -338,9 +338,9 @@ post '/bootstrapping' do content_type "text/uri-list" task = OpenTox::Task.create( "Perform bootstrapping validation", url_for("/bootstrapping", :full) ) do |task| #, params LOGGER.info "performing bootstrapping validation "+params.inspect - halt 400, "dataset_uri missing" unless params[:dataset_uri] - halt 400, "algorithm_uri missing" unless params[:algorithm_uri] - halt 400, "prediction_feature missing" unless params[:prediction_feature] + raise OpenTox::BadRequestError.new "dataset_uri missing" unless params[:dataset_uri] + raise OpenTox::BadRequestError.new "algorithm_uri missing" unless params[:algorithm_uri] + raise OpenTox::BadRequestError.new "prediction_feature missing" unless params[:prediction_feature] params.merge!( Validation::Util.bootstrapping( params[:dataset_uri], params[:prediction_feature], @subjectid, @@ -388,9 +388,9 @@ post '/training_test_split' do task = OpenTox::Task.create( "Perform training test split validation", url_for("/training_test_split", :full) ) do |task| #, params LOGGER.info "creating training test split "+params.inspect - halt 400, "dataset_uri missing" unless params[:dataset_uri] - halt 400, "algorithm_uri missing" unless params[:algorithm_uri] - halt 400, "prediction_feature missing" unless params[:prediction_feature] + raise OpenTox::BadRequestError.new "dataset_uri missing" unless params[:dataset_uri] + raise OpenTox::BadRequestError.new "algorithm_uri missing" unless params[:algorithm_uri] + raise OpenTox::BadRequestError.new "prediction_feature missing" unless params[:prediction_feature] params.merge!( Validation::Util.train_test_dataset_split(params[:dataset_uri], params[:prediction_feature], @subjectid, params[:split_ratio], params[:random_seed], OpenTox::SubTask.create(task,0,33))) @@ -405,7 +405,7 @@ post '/training_test_split' do v.validation_uri end content_type 'text/uri-list' - halt 503,task.uri+"\n" if task.status == "Cancelled" + raise OpenTox::ServiceUnavailableError.new task.uri+"\n" if task.status == "Cancelled" halt 202,task.uri end @@ -456,7 +456,7 @@ end post '/plain_training_test_split' do LOGGER.info "creating pure training test split "+params.inspect - halt 400, "dataset_uri missing" unless params[:dataset_uri] + raise OpenTox::BadRequestError.new "dataset_uri missing" unless params[:dataset_uri] result = Validation::Util.train_test_dataset_split(params[:dataset_uri], params[:prediction_feature], params[:split_ratio], params[:random_seed]) content_type "text/uri-list" @@ -467,8 +467,8 @@ post '/validate_datasets' do content_type "text/uri-list" task = OpenTox::Task.create( "Perform dataset validation", url_for("/validate_datasets", :full) ) do |task| #, params LOGGER.info "validating values "+params.inspect - halt 400, "test_dataset_uri missing" unless params[:test_dataset_uri] - halt 400, "prediction_datset_uri missing" unless params[:prediction_dataset_uri] + raise OpenTox::BadRequestError.new "test_dataset_uri missing" unless params[:test_dataset_uri] + raise OpenTox::BadRequestError.new "prediction_datset_uri missing" unless params[:prediction_dataset_uri] params[:validation_type] = "validate_datasets" if params[:model_uri] @@ -476,9 +476,9 @@ post '/validate_datasets' do v.subjectid = @subjectid v.compute_validation_stats_with_model(nil,false,task) else - halt 400, "please specify 'model_uri' or 'prediction_feature'" unless params[:prediction_feature] - halt 400, "please specify 'model_uri' or 'predicted_feature'" unless params[:predicted_feature] - halt 400, "please specify 'model_uri' or set either 'classification' or 'regression' flag" unless + raise OpenTox::BadRequestError.new "please specify 'model_uri' or 'prediction_feature'" unless params[:prediction_feature] + raise OpenTox::BadRequestError.new "please specify 'model_uri' or 'predicted_feature'" unless params[:predicted_feature] + raise OpenTox::BadRequestError.new "please specify 'model_uri' or set either 'classification' or 'regression' flag" unless params[:classification] or params[:regression] predicted_feature = params.delete("predicted_feature") @@ -499,9 +499,9 @@ get '/:id/predictions' do #validation = Validation::Validation.find(params[:id]) validation = Validation::Validation.get(params[:id]) rescue ActiveRecord::RecordNotFound => ex - halt 404, "Validation '#{params[:id]}' not found." + raise OpenTox::NotFoundError.new "Validation '#{params[:id]}' not found." end - halt 400,"Validation '"+params[:id].to_s+"' not finished" unless validation.finished + raise OpenTox::BadRequestError.new "Validation '"+params[:id].to_s+"' not finished" unless validation.finished p = validation.compute_validation_stats_with_model(nil, true) case request.env['HTTP_ACCEPT'].to_s when /text\/html/ @@ -523,12 +523,12 @@ end # begin # validation = Validation::Validation.find(params[:id]) # rescue ActiveRecord::RecordNotFound => ex -# halt 404, "Validation '#{params[:id]}' not found." +# raise OpenTox::NotFoundError.new "Validation '#{params[:id]}' not found." # end # begin # raise unless validation.attribute_loaded?(params[:attribute]) # rescue -# halt 400, "Not a validation attribute: "+params[:attribute].to_s +# raise OpenTox::BadRequestError.new "Not a validation attribute: "+params[:attribute].to_s # end # content_type "text/plain" # return validation.send(params[:attribute]) @@ -539,7 +539,7 @@ get '/:id' do # begin #validation = Validation::Validation.find(params[:id]) # rescue ActiveRecord::RecordNotFound => ex -# halt 404, "Validation '#{params[:id]}' not found." +# raise OpenTox::NotFoundError.new "Validation '#{params[:id]}' not found." # end validation = Validation::Validation.get(params[:id]) raise OpenTox::NotFoundError.new "Validation '#{params[:id]}' not found." unless validation @@ -562,7 +562,7 @@ get '/:id' do content_type "application/x-yaml" validation.to_yaml else - halt 400, "MIME type '"+request.env['HTTP_ACCEPT'].to_s+"' not supported, valid Accept-Headers: \"application/rdf+xml\", \"application/x-yaml\", \"text/html\"." + raise OpenTox::BadRequestError.new "MIME type '"+request.env['HTTP_ACCEPT'].to_s+"' not supported, valid Accept-Headers: \"application/rdf+xml\", \"application/x-yaml\", \"text/html\"." end end @@ -571,11 +571,11 @@ delete '/:id' do # begin #validation = Validation::Validation.find(params[:id]) # rescue ActiveRecord::RecordNotFound => ex -# halt 404, "Validation '#{params[:id]}' not found." +# raise OpenTox::NotFoundError.new "Validation '#{params[:id]}' not found." # end validation = Validation::Validation.get(params[:id]) validation.subjectid = @subjectid - halt 404, "Validation '#{params[:id]}' not found." unless validation + raise OpenTox::NotFoundError.new "Validation '#{params[:id]}' not found." unless validation content_type "text/plain" validation.delete end \ No newline at end of file -- cgit v1.2.3 From 7906047a423d94692581ac6aa15295924c8b89db Mon Sep 17 00:00:00 2001 From: mguetlein Date: Thu, 3 Feb 2011 09:47:46 +0100 Subject: use return task method for sinatra --- nightly/nightly.rb | 6 +----- report/report_application.rb | 3 +-- validation/validation_application.rb | 31 +++++++++++-------------------- validation/validation_service.rb | 2 +- 4 files changed, 14 insertions(+), 28 deletions(-) diff --git a/nightly/nightly.rb b/nightly/nightly.rb index 550d14c..ba32864 100755 --- a/nightly/nightly.rb +++ b/nightly/nightly.rb @@ -100,11 +100,7 @@ class Nightly #benchmarks.collect{|b| b.uris}.join(",") File.join(CONFIG[:services]["opentox-validation"],"nightly") end - if defined?(halt) - halt 202,task.uri+"\n" - else - return task.uri+"\n" - end + return_task(task) end class ValidationBenchmark diff --git a/report/report_application.rb b/report/report_application.rb index 8403b4c..1a4504d 100755 --- a/report/report_application.rb +++ b/report/report_application.rb @@ -116,6 +116,5 @@ post '/report/:type' do rs.create_report(params[:type],params[:validation_uris]?params[:validation_uris].split(/\n|,/):nil,@subjectid,task) end end - content_type "text/uri-list" - halt 202,task.uri+"\n" + return_task(task) end diff --git a/validation/validation_application.rb b/validation/validation_application.rb index f9b8b51..b444b3f 100755 --- a/validation/validation_application.rb +++ b/validation/validation_application.rb @@ -32,10 +32,10 @@ end post '/crossvalidation/?' do task = OpenTox::Task.create( "Perform crossvalidation", url_for("/crossvalidation", :full) ) do |task| #, params LOGGER.info "creating crossvalidation "+params.inspect - raise OpenTox::BadRequestError "dataset_uri missing" unless params[:dataset_uri] - raise OpenTox::BadRequestError "algorithm_uri missing" unless params[:algorithm_uri] - raise OpenTox::BadRequestError "prediction_feature missing" unless params[:prediction_feature] - raise OpenTox::BadRequestError "illegal param-value num_folds: '"+params[:num_folds].to_s+"', must be integer >1" unless params[:num_folds]==nil or + raise OpenTox::BadRequestError.new "dataset_uri missing" unless params[:dataset_uri] + raise OpenTox::BadRequestError.new "algorithm_uri missing" unless params[:algorithm_uri] + raise OpenTox::BadRequestError.new "prediction_feature missing" unless params[:prediction_feature] + raise OpenTox::BadRequestError.new "illegal param-value num_folds: '"+params[:num_folds].to_s+"', must be integer >1" unless params[:num_folds]==nil or params[:num_folds].to_i>1 cv_params = { :dataset_uri => params[:dataset_uri], @@ -46,9 +46,7 @@ post '/crossvalidation/?' do cv.perform_cv( params[:prediction_feature], params[:algorithm_params], task ) cv.crossvalidation_uri end - content_type 'text/uri-list' - raise OpenTox::ServiceUnavailableError.new task.uri+"\n" if task.status == "Cancelled" - halt 202, task.uri + return_task(task) end post '/crossvalidation/cleanup/?' do @@ -76,7 +74,7 @@ post '/crossvalidation/loo/?' do end get '/crossvalidation/loo/?' do - raise OpenTox::BadRequestError "GET operation not supported, use POST for performing a loo-crossvalidation, see "+url_for("/crossvalidation", :full)+" for crossvalidation results" + raise OpenTox::BadRequestError.new "GET operation not supported, use POST for performing a loo-crossvalidation, see "+url_for("/crossvalidation", :full)+" for crossvalidation results" end get '/crossvalidation/:id' do @@ -240,7 +238,6 @@ post '/?' do end post '/test_set_validation' do - content_type "text/uri-list" LOGGER.info "creating test-set-validation "+params.inspect if params[:model_uri] and params[:test_dataset_uri] and !params[:training_dataset_uri] and !params[:algorithm_uri] task = OpenTox::Task.create( "Perform test-set-validation", url_for("/", :full) ) do |task| #, params @@ -253,7 +250,7 @@ post '/test_set_validation' do v.validate_model( task ) v.validation_uri end - halt 202,task.uri+"\n" + return_task(task) else raise OpenTox::BadRequestError.new "illegal parameters, pls specify model_uri and test_dataset_uri\n"+ "params given: "+params.inspect @@ -298,8 +295,7 @@ post '/training_test_validation/?' do v.validate_algorithm( params[:algorithm_params], task ) v.validation_uri end - content_type "text/uri-list" - halt 202,task.uri+"\n" + return_task(task) else raise OpenTox::BadRequestError.new "illegal parameters, pls specify algorithm_uri, training_dataset_uri, test_dataset_uri, prediction_feature\n"+ "params given: "+params.inspect @@ -335,7 +331,6 @@ get '/training_test_validation' do end post '/bootstrapping' do - content_type "text/uri-list" task = OpenTox::Task.create( "Perform bootstrapping validation", url_for("/bootstrapping", :full) ) do |task| #, params LOGGER.info "performing bootstrapping validation "+params.inspect raise OpenTox::BadRequestError.new "dataset_uri missing" unless params[:dataset_uri] @@ -353,7 +348,7 @@ post '/bootstrapping' do v.validate_algorithm( params[:algorithm_params], OpenTox::SubTask.create(task,33,100)) v.validation_uri end - halt 202,task.uri+"\n" + return_task(task) end get '/bootstrapping' do @@ -386,7 +381,6 @@ end post '/training_test_split' do task = OpenTox::Task.create( "Perform training test split validation", url_for("/training_test_split", :full) ) do |task| #, params - LOGGER.info "creating training test split "+params.inspect raise OpenTox::BadRequestError.new "dataset_uri missing" unless params[:dataset_uri] raise OpenTox::BadRequestError.new "algorithm_uri missing" unless params[:algorithm_uri] @@ -404,9 +398,7 @@ post '/training_test_split' do v.validate_algorithm( params[:algorithm_params], OpenTox::SubTask.create(task,33,100)) v.validation_uri end - content_type 'text/uri-list' - raise OpenTox::ServiceUnavailableError.new task.uri+"\n" if task.status == "Cancelled" - halt 202,task.uri + return_task(task) end @@ -464,7 +456,6 @@ post '/plain_training_test_split' do end post '/validate_datasets' do - content_type "text/uri-list" task = OpenTox::Task.create( "Perform dataset validation", url_for("/validate_datasets", :full) ) do |task| #, params LOGGER.info "validating values "+params.inspect raise OpenTox::BadRequestError.new "test_dataset_uri missing" unless params[:test_dataset_uri] @@ -490,7 +481,7 @@ post '/validate_datasets' do end v.validation_uri end - halt 202,task.uri+"\n" + return_task(task) end get '/:id/predictions' do diff --git a/validation/validation_service.rb b/validation/validation_service.rb index 2208116..417c72a 100755 --- a/validation/validation_service.rb +++ b/validation/validation_service.rb @@ -181,7 +181,7 @@ module Validation prediction_feature = self.prediction_feature ? nil : dependentVariables algorithm_uri = self.algorithm_uri ? nil : model.metadata[OT.algorithm] predictedVariables = model.metadata[OT.predictedVariables] - compute_validation_stats( model.feature_type, predictedVariables, + compute_validation_stats( model.feature_type(self.subjectid), predictedVariables, prediction_feature, algorithm_uri, dry_run, task ) end -- cgit v1.2.3 From aca886bf82e7ebf5a9d76642614418ed983ab45e Mon Sep 17 00:00:00 2001 From: mguetlein Date: Thu, 3 Feb 2011 18:14:20 +0100 Subject: adding weighted_accuracy, change accuracy computation, some minor changes --- application.rb | 2 - example.rb | 2 +- lib/ot_predictions.rb | 4 +- lib/predictions.rb | 21 ++++++++- lib/validation_db.rb | 3 +- reach_reports/reach_service.rb | 14 +++--- reach_reports/reach_test.rb | 10 +++- report/report_factory.rb | 2 +- report/validation_access.rb | 1 - test/test_examples.rb | 82 +++++++++++++++++++++++++++++++- test/test_examples_util.rb | 60 ++++++++++++------------ validation/validation_application.rb | 4 +- validation/validation_format.rb | 2 - validation/validation_test.rb | 91 +++++++++++++++++++++++++++--------- 14 files changed, 221 insertions(+), 77 deletions(-) diff --git a/application.rb b/application.rb index 319a95d..c18b05e 100755 --- a/application.rb +++ b/application.rb @@ -13,8 +13,6 @@ end require "example.rb" -# this allows GET access to all validation URIS that do NOT end with / or // -OpenTox::Authorization.whitelist( /\/[0-9]+(\/?)$/, "GET", true ) get '/examples/?' do LOGGER.info "list examples" diff --git a/example.rb b/example.rb index 3cced72..07151a8 100755 --- a/example.rb +++ b/example.rb @@ -124,7 +124,7 @@ class Example log "done" @@summary end - task.uri + return_task(task) end # performs all curl calls listed in examples after ">>>", next line is added if line ends with "\" diff --git a/lib/ot_predictions.rb b/lib/ot_predictions.rb index e28f35b..b0e9720 100755 --- a/lib/ot_predictions.rb +++ b/lib/ot_predictions.rb @@ -165,7 +165,9 @@ module Lib end raise "no array" unless v.is_a?(Array) if v.size>1 - raise "multiple values" + v.uniq! + raise "not yet implemented: multiple non-equal values "+compound.to_s+" "+v.inspect if v.size>1 + v = v[0] elsif v.size==1 v = v[0] else diff --git a/lib/predictions.rb b/lib/predictions.rb index e73dda6..5850024 100755 --- a/lib/predictions.rb +++ b/lib/predictions.rb @@ -163,19 +163,36 @@ module Lib def percent_correct raise "no classification" unless @feature_type=="classification" return 0 if @num_with_actual_value==0 - return 100 * @num_correct / @num_with_actual_value.to_f + return 100 * @num_correct / (@num_with_actual_value - @num_unpredicted).to_f end def percent_incorrect raise "no classification" unless @feature_type=="classification" return 0 if @num_with_actual_value==0 - return 100 * @num_incorrect / @num_with_actual_value.to_f + return 100 * @num_incorrect / (@num_with_actual_value - @num_unpredicted).to_f end def accuracy return percent_correct / 100.0 end + def weighted_accuracy + raise "no classification" unless @feature_type=="classification" + total = 0 + correct = 0 + (0..@predicted_values.size-1).each do |i| + if @predicted_values[i]!=nil + total += @confidence_values[i] + correct += @confidence_values[i] if @actual_values[i]==@predicted_values[i] + end + end + if total==0 || correct == 0 + return 0 + else + return correct / total + end + end + def percent_unpredicted return 0 if @num_with_actual_value==0 return 100 * @num_unpredicted / @num_with_actual_value.to_f diff --git a/lib/validation_db.rb b/lib/validation_db.rb index 4b852f9..c4cb2a2 100755 --- a/lib/validation_db.rb +++ b/lib/validation_db.rb @@ -18,10 +18,9 @@ module Lib # :classification_statistics VAL_CLASS_PROPS_SINGLE_SUM = [ :num_correct, :num_incorrect, :confusion_matrix ] VAL_CLASS_PROPS_SINGLE_AVG = [ :percent_correct, :percent_incorrect, - :weighted_area_under_roc, :accuracy ] + :weighted_area_under_roc, :accuracy, :weighted_accuracy ] VAL_CLASS_PROPS_SINGLE = VAL_CLASS_PROPS_SINGLE_SUM + VAL_CLASS_PROPS_SINGLE_AVG - # :class_value_statistics VAL_CLASS_PROPS_PER_CLASS_SUM = [ :num_false_positives, :num_false_negatives, :num_true_positives, :num_true_negatives ] diff --git a/reach_reports/reach_service.rb b/reach_reports/reach_service.rb index 5e11dc1..f5b4b12 100755 --- a/reach_reports/reach_service.rb +++ b/reach_reports/reach_service.rb @@ -132,10 +132,12 @@ module ReachReports val_datasets = [] if algorithm - cvs = Lib::Crossvalidation.find_all_uniq({:algorithm_uri => algorithm.uri}) + cvs = Lib::Crossvalidation.find_all_uniq({:algorithm_uri => algorithm.uri, :finished => true}) # PENDING: cv classification/regression hack cvs = cvs.delete_if do |cv| - val = Validation::Validation.first( :all, :conditions => { :crossvalidation_id => cv.id } ) + #val = Validation::Validation.first( :all, :conditions => { :crossvalidation_id => cv.id } ) + val = Validation::Validation.first( :crossvalidation_id => cv.id ) + raise "should not happen: no validations found for crossvalidation "+cv.id.to_s unless val (val.classification_statistics!=nil) != (feature_type=="classification") end @@ -166,11 +168,11 @@ module ReachReports val = YAML.load( OpenTox::RestClientWrapper.get File.join(cv.crossvalidation_uri,"statistics") ) case feature_type when "classification" - lmo << "percent_correct: "+val[:classification_statistics][:percent_correct].to_s - lmo << "weighted AUC: "+val[:classification_statistics][:weighted_area_under_roc].to_s + lmo << "percent_correct: "+val[OT.classificationStatistics][OT.percentCorrect].to_s + lmo << "weighted AUC: "+val[OT.classificationStatistics][OT.weightedAreaUnderRoc].to_s when "regression" - lmo << "root_mean_squared_error: "+val[:regression_statistics][:root_mean_squared_error].to_s - lmo << "r_square "+val[:regression_statistics][:r_square].to_s + lmo << "root_mean_squared_error: "+val[OT.regressionStatistics][OT.rootMeanSquaredError].to_s + lmo << "r_square "+val[OT.regressionStatistics][OT.rSquare].to_s end reports = OpenTox::RestClientWrapper.get File.join(CONFIG[:services]["opentox-validation"],"report/crossvalidation?crossvalidation_uris="+cv.crossvalidation_uri) if reports and reports.chomp.size>0 diff --git a/reach_reports/reach_test.rb b/reach_reports/reach_test.rb index 4f7113b..9a354e7 100755 --- a/reach_reports/reach_test.rb +++ b/reach_reports/reach_test.rb @@ -115,7 +115,15 @@ class ReachTest < Test::Unit::TestCase # puts last_response.body #model_uri = "http://ambit.uni-plovdiv.bg:8080/ambit2/model/173393" - model_uri = "http://local-ot/model/1" + + model_uri = "http://local-ot/majority/class/model/58" +# m = OpenTox::Model::Generic.find(model_uri) +# puts m.metadata[OT.algorithm] if m +# a = OpenTox::Algorithm::Generic.find(m.metadata[OT.algorithm]) +# puts a.metadata.inspect +# exit + +# model_uri = "http://local-ot/model/1" #http://local-ot/majority/class/model/15 #model_uri = "http://local-ot/majority/class/model/15" # model_uri = "http://local-ot/majority/class/model/91" diff --git a/report/report_factory.rb b/report/report_factory.rb index a5234a3..8fa185e 100755 --- a/report/report_factory.rb +++ b/report/report_factory.rb @@ -5,7 +5,7 @@ VAL_ATTR_TRAIN_TEST = [ :model_uri, :training_dataset_uri, :test_dataset_uri, :p VAL_ATTR_CV = [ :algorithm_uri, :dataset_uri, :num_folds, :crossvalidation_fold ] # selected attributes of interest when performing classification -VAL_ATTR_CLASS = [ :percent_correct, :weighted_area_under_roc, +VAL_ATTR_CLASS = [ :accuracy, :weighted_accuracy, :weighted_area_under_roc, :area_under_roc, :f_measure, :true_positive_rate, :true_negative_rate ] VAL_ATTR_REGR = [ :root_mean_squared_error, :mean_absolute_error, :r_square ] diff --git a/report/validation_access.rb b/report/validation_access.rb index 9c45165..03ec0e5 100755 --- a/report/validation_access.rb +++ b/report/validation_access.rb @@ -125,7 +125,6 @@ class Reports::ValidationDB < Reports::ValidationAccess end def feature_type( validation, subjectid=nil ) - raise "subjectid is nil" unless subjectid OpenTox::Model::Generic.new(validation.model_uri).feature_type(subjectid) #get_model(validation).classification? end diff --git a/test/test_examples.rb b/test/test_examples.rb index 192f1a4..29fe8cd 100755 --- a/test/test_examples.rb +++ b/test/test_examples.rb @@ -355,17 +355,87 @@ module ValidationExamples end ######################################################################################################## - class NtuaModel < ModelValidation def initialize - @model_uri = "http://opentox.ntua.gr:4000/model/0d8a9a27-3481-4450-bca1-d420a791de9d" + @model_uri = "http://opentox.ntua.gr:4000/model/0d8a9a27-3481-4450-bca1-d420a791de9d" @test_dataset_uri = "http://apps.ideaconsult.net:8080/ambit2/dataset/54" #@prediction_feature=http://apps.ideaconsult.net:8080/ambit2/feature/22200 end end ######################################################################################################## + + class HamsterTrainingTest < TrainingTestValidation + def initialize +# @test_target_dataset_file = File.new("data/hamster_carcinogenicity.yaml","r") +# @training_dataset_file = File.new("data/hamster_carcinogenicity.train.yaml","r") +# @test_dataset_file = File.new("data/hamster_carcinogenicity.test.yaml","r") + + @test_target_dataset_file = File.new("data/hamster_carcinogenicity.csv","r") + @training_dataset_file = File.new("data/hamster_carcinogenicity.train.csv","r") + @test_dataset_file = File.new("data/hamster_carcinogenicity.test.csv","r") + + + #@prediction_feature = "http://local-ot/toxmodel/feature#Hamster%20Carcinogenicity%20(DSSTOX/CPDB)" + #@prediction_feature = "http://local-ot/dataset/1/feature/hamster_carcinogenicity" + end + end + + class MajorityHamsterTrainingTest < HamsterTrainingTest + def initialize + @algorithm_uri = File.join(CONFIG[:services]["opentox-majority"],"/class/algorithm") + super + end + end + + ######################################################################################################## + + class RepdoseSplit < SplitTestValidation + def initialize + @dataset_file = File.new("data/repdose_classification.csv","r") + end + end + + class LazarRepdoseSplit < RepdoseSplit + def initialize + @algorithm_uri = File.join(CONFIG[:services]["opentox-algorithm"],"lazar") + @algorithm_params = "feature_generation_uri="+File.join(CONFIG[:services]["opentox-algorithm"],"fminer/bbrc") + super + end + end + + class MajorityRepdoseSplit < RepdoseSplit + def initialize + @algorithm_uri = File.join(CONFIG[:services]["opentox-majority"],"/class/algorithm") + super + end + end + + ######################################################################################################## + + class RepdoseCrossValidation < CrossValidation + def initialize + @dataset_file = File.new("data/repdose_classification.csv","r") + end + end + + class LazarRepdoseCrossValidation < RepdoseCrossValidation + def initialize + @algorithm_uri = File.join(CONFIG[:services]["opentox-algorithm"],"lazar") + @algorithm_params = "feature_generation_uri="+File.join(CONFIG[:services]["opentox-algorithm"],"fminer/bbrc") + super + end + end + + class MajorityRepdoseCrossValidation < RepdoseCrossValidation + def initialize + @algorithm_uri = File.join(CONFIG[:services]["opentox-majority"],"/class/algorithm") + super + end + end + + ######################################################################################################## @@list = { "1" => [ LazarHamsterSplit, MajorityHamsterSplit ], @@ -416,6 +486,14 @@ module ValidationExamples "14b" => [ MajorityEPAFHMCrossvalidation ], "15a" => [ NtuaModel ], + + "16" => [ LazarRepdoseSplit, MajorityRepdoseSplit ], + "16a" => [ LazarRepdoseSplit ], + "16b" => [ MajorityRepdoseSplit ], + + "17" => [ LazarRepdoseCrossValidation, MajorityRepdoseCrossValidation ], + "17a" => [ LazarRepdoseCrossValidation ], + "17b" => [ MajorityRepdoseCrossValidation ], } def self.list diff --git a/test/test_examples_util.rb b/test/test_examples_util.rb index 8344594..51cf4cc 100755 --- a/test/test_examples_util.rb +++ b/test/test_examples_util.rb @@ -47,11 +47,11 @@ module ValidationExamples to_compare << v.validation_uri if v.validation_uri and v.validation_error==nil end return nil if to_compare.size < 2 - begin + #begin return validation_post "report/algorithm_comparison",{ :validation_uris => to_compare.join("\n") }, subjectid - rescue => ex - return "error creating comparison report "+ex.message - end + #rescue => ex + #return "error creating comparison report "+ex.message + #end end def self.validation_post(uri, params, subjectid ) @@ -92,9 +92,9 @@ module ValidationExamples def self.wait(uri) if uri.task_uri? task = OpenTox::Task.find(uri.to_s.chomp) - task.wait_for_completion nil,5 + task.wait_for_completion #raise "task failed: "+uri.to_s+", description: '"+task.description.to_s+"'" if task.error? - LOGGER.error "task failed:\n"+task.errorReport.to_yaml if task.error? + LOGGER.error "task failed :\n"+task.to_yaml if task.error? uri = task.result_uri end uri @@ -267,50 +267,50 @@ module ValidationExamples end def delete - begin + #begin if @validation_uri =~ /crossvalidation/ cv = "crossvalidation/" else cv = "" end Util.validation_delete '/'+cv+@validation_uri.split('/')[-1] if @validation_uri - rescue => ex - puts "Could not delete validation: "+ex.message - end - begin + #rescue => ex + #puts "Could not delete validation: "+ex.message + #end + #begin Util.validation_delete '/report/'+report_type+'/'+@report_uri.split('/')[-1] if @report_uri - rescue => ex - puts "Could not delete report:' "+@report_uri+" "+ex.message - end + #rescue => ex + #puts "Could not delete report:' "+@report_uri+" "+ex.message + #end @uploaded_datasets.each do |d| - begin + # begin puts "deleting dataset "+d OpenTox::RestClientWrapper.delete(d,{:subjectid => SUBJECTID}) - rescue => ex - puts "Could not delete dataset:' "+d+" "+ex.message - end +# rescue => ex + #puts "Could not delete dataset:' "+d+" "+ex.message + #end end end def report - begin + #begin @report_uri = Util.validation_post '/report/'+report_type,{:validation_uris => @validation_uri}, @subjectid if @validation_uri Util.validation_get "/report/"+report_uri.split("/")[-2]+"/"+report_uri.split("/")[-1], @subjectid if @report_uri - rescue => ex - puts "could not create report: "+ex.message - raise ex - @report_error = ex.message - end + #rescue => ex + #puts "could not create report: "+ex.message + #raise ex + #@report_error = ex.message + #end end def validate - begin + #begin @validation_uri = Util.validation_post '/'+validation_type, get_params, @subjectid - rescue => ex - puts "could not validate: "+ex.message - @validation_error = ex.message - LOGGER.error ex.message - end + #rescue => ex + #puts "could not validate: "+ex.message + #@validation_error = ex.message + #LOGGER.error ex.message + #end end def compare_yaml_vs_rdf diff --git a/validation/validation_application.rb b/validation/validation_application.rb index b444b3f..9b517cf 100755 --- a/validation/validation_application.rb +++ b/validation/validation_application.rb @@ -549,11 +549,9 @@ get '/:id' do "All validations: "+url_for("/",:full)+"\n"+ "All validation reports: "+url_for("/report/validation",:full) OpenTox.text_to_html validation.to_yaml,related_links,description - when /application\/x-yaml|\*\/\*/ + else #default is yaml content_type "application/x-yaml" validation.to_yaml - else - raise OpenTox::BadRequestError.new "MIME type '"+request.env['HTTP_ACCEPT'].to_s+"' not supported, valid Accept-Headers: \"application/rdf+xml\", \"application/x-yaml\", \"text/html\"." end end diff --git a/validation/validation_format.rb b/validation/validation_format.rb index e72e7ec..f69ceac 100755 --- a/validation/validation_format.rb +++ b/validation/validation_format.rb @@ -10,8 +10,6 @@ module Validation # the hash is directly printed in to_yaml, or added to the owl-structure def get_content_as_hash() - LOGGER.debug self.validation_uri - h = {} (Lib::VAL_PROPS - [:validation_uri]).each do |p| h[p] = self.send(p) diff --git a/validation/validation_test.rb b/validation/validation_test.rb index 26f12e7..27fd6b1 100755 --- a/validation/validation_test.rb +++ b/validation/validation_test.rb @@ -20,10 +20,10 @@ LOGGER.datetime_format = "%Y-%m-%d %H:%M:%S " LOGGER.formatter = Logger::Formatter.new if AA_SERVER - #TEST_USER = "mgtest" - #TEST_PW = "mgpasswd" - TEST_USER = "guest" - TEST_PW = "guest" + TEST_USER = "mgtest" + TEST_PW = "mgpasswd" +# TEST_USER = "guest" +# TEST_PW = "guest" SUBJECTID = OpenTox::Authorization.authenticate(TEST_USER,TEST_PW) raise "could not log in" unless SUBJECTID puts "logged in: "+SUBJECTID.to_s @@ -60,6 +60,18 @@ class ValidationTest < Test::Unit::TestCase begin $test_case = self +# begin +# #OpenTox::RestClientWrapper.get "http://local-ot/validation/runtime-error",{:accept => "application/rdf+xml"} +# puts OpenTox::RestClientWrapper.post "http://opentox.ntua.gr:4000/model/0d8a9a27-3481-4450-bca1-d420a791de9d", +# {:dataset=>"http://apps.ideaconsult.net:8080/ambit2/dataset/54"},{:accept => "text/uri-list", :subjectid => SUBJECTID} +# #puts OpenTox::RestClientWrapper.post "http://opentox.ntua.gr:4000/model/0d8a9a27-3481-4450-bca1-d420a791de9d",{},{:accept => "text/uri-list", :subjectid => "AQIC5wM2LY4SfcwUNX97nTvaSTdYJ+nTUqZsR0UitJ4+jlc=@AAJTSQACMDE=#"} +# rescue => err +# rep = OpenTox::ErrorReport.create(err, "") +# puts rep.to_yaml +# end + + # "http://opentox.ntua.gr:4000/model/0d8a9a27-3481-4450-bca1-d420a791de9d" + # get "/19999",nil,'HTTP_ACCEPT' => "text/html" # exit # @@ -126,23 +138,41 @@ class ValidationTest < Test::Unit::TestCase # m = OpenTox::Model::Generic.find("http://local-ot/model/1323333") # puts m.to_yaml - # post "/validate_datasets",{ - # :test_dataset_uri=>"http://local-ot/dataset/506", - # :prediction_dataset_uri=>"http://local-ot/dataset/526", - # :test_target_dataset_uri=>"http://local-ot/dataset/504", - # :prediction_feature=>"http://local-ot/dataset/504/feature/LC50_mmol", - # :model_uri=>"http://local-ot/model/48"} - # #:regression=>"true"} - ## :classification=>"true"} - # puts last_response.body - - #run_test("13a","http://local-ot/validation/39",nil,false) #,"http://local-ot/validation/28")#,"http://local-ot/validation/394"); +# post "/validate_datasets",{ +# :test_dataset_uri=>"http://local-ot/dataset/390", +# :prediction_dataset_uri=>"http://local-ot/dataset/392", +# :test_target_dataset_uri=>"http://local-ot/dataset/388", +# :prediction_feature=>"http://local-ot/dataset/388/feature/repdose_classification", +# :model_uri=>"http://local-ot/model/31"} +# #:regression=>"true"} +# # :classification=>"true"} +# uri = last_response.body +# val = wait_for_task(uri) +# puts val +# get "/"+val.split("/")[-1] + #run_test("17a") #,"http://local-ot/validation/39",nil,false) #,"http://local-ot/validation/28")#,"http://local-ot/validation/394"); + +# p = { +# :dataset_uri=>"http://local-ot/dataset/388", +# :algorithm_uri => "http://local-ot/majority/class/algorithm", +# :prediction_feature=>"http://local-ot/dataset/388/feature/repdose_classification", +# :num_folds => 2 } + #cv = OpenTox::Crossvalidation.create(p) +# cv = OpenTox::Crossvalidation.find("http://local-ot/validation/crossvalidation/14") +# puts cv.uri +# puts cv.find_or_create_report.uri +# puts cv.summary.inspect + #puts OpenTox::Authorization.list_policy_uris(SUBJECTID).inspect #puts OpenTox::Authorization.list_policy_uris(SUBJECTID).inspect - run_test("15a",nil,nil,false) #,{:dataset_uri=>"http://local-ot/dataset/45", :prediction_feature => "http://local-ot/dataset/45/feature/Hamster%20Carcinogenicity"}) + #run_test("1b") #,{:dataset_uri => "http://local-ot/dataset/313", :prediction_feature => "http://local-ot/dataset/313/feature/repdose_classification"}) + + model = OpenTox::Model::Generic.find("http://local-ot/majority/class/model/58") + OpenTox::QMRFReport.create(model) + #get "/12123123123123123" #get "/chain" @@ -176,9 +206,12 @@ class ValidationTest < Test::Unit::TestCase #prepare_examples #do_test_examples # USES CURL, DO NOT FORGET TO RESTART VALIDATION SERVICE #do_test_examples_ortona - + + rescue => ex + rep = OpenTox::ErrorReport.create(ex, "") + puts rep.to_yaml ensure - OpenTox::Authorization.logout(SUBJECTID) if AA_SERVER + #OpenTox::Authorization.logout(SUBJECTID) if AA_SERVER end end @@ -186,7 +219,7 @@ class ValidationTest < Test::Unit::TestCase Sinatra::Application end - def run_test(select=nil, validation_uri=nil, report_uri=nil, delete=false, overwrite={}) + def run_test(select=nil, overwrite={}, delete=false ) if AA_SERVER && SUBJECTID && delete policies_before = OpenTox::Authorization.list_policy_uris(SUBJECTID) @@ -199,7 +232,6 @@ class ValidationTest < Test::Unit::TestCase ex = v.new ex.subjectid = SUBJECTID - ex.validation_uri = validation_uri overwrite.each do |k,v| ex.send(k.to_s+"=",v) end @@ -208,13 +240,26 @@ class ValidationTest < Test::Unit::TestCase ex.upload_files ex.check_requirements ex.validate + LOGGER.debug "validation done '"+ex.validation_uri.to_s+"'" - puts ex.validation_uri+"?subjectid="+CGI.escape(SUBJECTID) if SUBJECTID and !delete and ex.validation_uri + if !delete and ex.validation_uri + if SUBJECTID + puts ex.validation_uri+"?subjectid="+CGI.escape(SUBJECTID) + else + puts ex.validation_uri + end + end + end - ex.report_uri = report_uri unless ex.report_uri ex.report - puts ex.report_uri+"?subjectid="+CGI.escape(SUBJECTID) if SUBJECTID and !delete and ex.report_uri + if !delete and ex.report_uri + if SUBJECTID + puts ex.report_uri+"?subjectid="+CGI.escape(SUBJECTID) + else + puts ex.report_uri + end + end end ##ex.verify_yaml ##ex.compare_yaml_vs_rdf -- cgit v1.2.3 From 6762fc56b83fd91e8270a01b689bbf6e0eceb984 Mon Sep 17 00:00:00 2001 From: mguetlein Date: Fri, 4 Feb 2011 11:52:06 +0100 Subject: add num unpredicted to report --- report/report_factory.rb | 4 ++-- test/test_application.rb | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/report/report_factory.rb b/report/report_factory.rb index 8fa185e..e770d2f 100755 --- a/report/report_factory.rb +++ b/report/report_factory.rb @@ -5,9 +5,9 @@ VAL_ATTR_TRAIN_TEST = [ :model_uri, :training_dataset_uri, :test_dataset_uri, :p VAL_ATTR_CV = [ :algorithm_uri, :dataset_uri, :num_folds, :crossvalidation_fold ] # selected attributes of interest when performing classification -VAL_ATTR_CLASS = [ :accuracy, :weighted_accuracy, :weighted_area_under_roc, +VAL_ATTR_CLASS = [ :num_instances, :num_unpredicted, :accuracy, :weighted_accuracy, :weighted_area_under_roc, :area_under_roc, :f_measure, :true_positive_rate, :true_negative_rate ] -VAL_ATTR_REGR = [ :root_mean_squared_error, :mean_absolute_error, :r_square ] +VAL_ATTR_REGR = [ :num_instances, :num_unpredicted, :root_mean_squared_error, :mean_absolute_error, :r_square ] VAL_ATTR_BAR_PLOT_CLASS = [ :accuracy, :weighted_area_under_roc, :area_under_roc, :f_measure, :true_positive_rate, :true_negative_rate ] diff --git a/test/test_application.rb b/test/test_application.rb index e59bf3a..d1b0458 100755 --- a/test/test_application.rb +++ b/test/test_application.rb @@ -18,6 +18,6 @@ post '/test_validation/?' do ex.validation_uri end end - task.uri + return_task(task) end -- cgit v1.2.3 From 9407e4f481bc2a7c5d1daa3c42a0123c5fb5fbbf Mon Sep 17 00:00:00 2001 From: mguetlein Date: Fri, 4 Feb 2011 16:15:20 +0100 Subject: add unit tests --- Rakefile | 5 ++ data/hamster_carcinogenicity.mini.csv | 11 +++ test/unit_test.rb | 149 ++++++++++++++++++++++++++++++++++ 3 files changed, 165 insertions(+) create mode 100644 data/hamster_carcinogenicity.mini.csv create mode 100644 test/unit_test.rb diff --git a/Rakefile b/Rakefile index ead64f1..9a49df7 100755 --- a/Rakefile +++ b/Rakefile @@ -37,6 +37,11 @@ task :install_gems do end end +desc "Perform unit tests" +task :test do + require 'test/unit_test.rb' +end + =begin desc "Installs gems and inits db migration" diff --git a/data/hamster_carcinogenicity.mini.csv b/data/hamster_carcinogenicity.mini.csv new file mode 100644 index 0000000..4267235 --- /dev/null +++ b/data/hamster_carcinogenicity.mini.csv @@ -0,0 +1,11 @@ +SMILES, Hamster Carcinogenicity +CC=O,1 +C12C3=C(C=CC=C3)CC1=CC(=CC=2)NC(C)=O,1 +O=C(N)\C(C2=CC=CO2)=C/C1=CC=C([N+]([O-])=O)O1,1 +C1(N=CNN=1)N,0 +Br(=O)(=O)[O-].[K+],1 +[Cl-].[Cd+2].[Cl-],0 +O=S(=O)([O-])[O-].[Cd+2],0 +ClC1=CC(=NC(=N1)SCC(=O)O)NC2=CC=CC(=C2C)C,0 +ClCOC,1 +C=C(Cl)C=C,0 diff --git a/test/unit_test.rb b/test/unit_test.rb new file mode 100644 index 0000000..d76e156 --- /dev/null +++ b/test/unit_test.rb @@ -0,0 +1,149 @@ + +require "rubygems" +require "sinatra" +require "uri" +require "yaml" +ENV['RACK_ENV'] = 'test' +require 'application.rb' +require 'test/unit' +require 'rack/test' +require 'lib/test_util.rb' +require 'test/test_examples.rb' + +TEST_USER = "guest" +TEST_PW = "guest" + +#LOGGER = OTLogger.new(STDOUT) +#LOGGER.datetime_format = "%Y-%m-%d %H:%M:%S " +#LOGGER.formatter = Logger::Formatter.new + +module Sinatra + set :raise_errors, false + set :show_exceptions, false +end + +class Exception + def message + errorCause ? errorCause.to_yaml : to_s + end +end + +class ValidationTest < Test::Unit::TestCase + include Rack::Test::Methods + include Lib::TestUtil + + def global_setup + puts "login and upload datasets" + if AA_SERVER + @@subjectid = OpenTox::Authorization.authenticate(TEST_USER,TEST_PW) + raise "could not log in" unless @@subjectid + puts "logged in: "+@@subjectid.to_s + else + puts "AA disabled" + @@subjectid = nil + end + f = File.new("data/hamster_carcinogenicity.mini.csv") + @@data_class_mini = ValidationExamples::Util.upload_dataset(f, @@subjectid) + @@feat_class_mini = ValidationExamples::Util.prediction_feature_for_file(f) + end + + def global_teardown + puts "delete and logout" + OpenTox::Dataset.find(@@data_class_mini,@@subjectid).delete(@@subjectid) + @@cv.delete(@@subjectid) if defined?@@cv + @@report.delete(@@subjectid) if defined?@@report + OpenTox::Authorization.logout(@@subjectid) if AA_SERVER + end + + def test_crossvalidation + puts "test_crossvalidation" + assert_rest_call_error OpenTox::NotFoundError do + OpenTox::Crossvalidation.find(File.join(CONFIG[:services]["opentox-validation"],"crossvalidation/noexistingid")) + end + p = { + :dataset_uri => @@data_class_mini, + :algorithm_uri => File.join(CONFIG[:services]["opentox-algorithm"],"lazar"), + :algorithm_params => "feature_generation_uri="+File.join(CONFIG[:services]["opentox-algorithm"],"fminer/bbrc"), + :prediction_feature => @@feat_class_mini, + :num_folds => 2 } + cv = OpenTox::Crossvalidation.create(p, @@subjectid) + assert cv.uri.uri? + if @@subjectid + assert_rest_call_error OpenTox::NotAuthorizedError do + OpenTox::Crossvalidation.find(cv.uri) + end + end + cv = OpenTox::Crossvalidation.find(cv.uri, @@subjectid) + assert cv.uri.uri? + if @@subjectid + assert_rest_call_error OpenTox::NotAuthorizedError do + cv.summary(cv) + end + end + summary = cv.summary(@@subjectid) + assert_kind_of Hash,summary + @@cv = cv + end + + def test_crossvalidation_report + puts "test_crossvalidation_report" + assert defined?@@cv,"no crossvalidation defined" + assert_kind_of OpenTox::Crossvalidation,@@cv + assert_rest_call_error OpenTox::NotFoundError do + OpenTox::CrossvalidationReport.find_for_crossvalidation(@@cv) + end + if @@subjectid + assert_rest_call_error OpenTox::NotAuthorizedError do + OpenTox::CrossvalidationReport.create(@@cv) + end + end + report = OpenTox::CrossvalidationReport.create(@@cv,@@subjectid) + assert report.uri.uri? + if @@subjectid + assert_rest_call_error OpenTox::NotAuthorizedError do + OpenTox::CrossvalidationReport.find(report.uri) + end + end + report = OpenTox::CrossvalidationReport.find(report.uri,@@subjectid) + assert report.uri.uri? + report2 = OpenTox::CrossvalidationReport.find_for_crossvalidation(@@cv,@@subjectid) + assert_equal report.uri,report2.uri + report3 = @@cv.find_or_create_report(@@subjectid) + assert_equal report.uri,report3.uri + @report = report + end + + def app + Sinatra::Application + end + + def assert_rest_call_error( ex ) + if ex==OpenTox::NotAuthorizedError and @@subjectid==nil + puts "AA disabled: skipping test for not authorized" + return + end + begin + yield + rescue OpenTox::RestCallError => e + report = e.errorCause + while report.errorCause + report = report.errorCause + end + assert_equal report.errorType,ex.to_s + end + end + + def teardown + if((@@expected_test_count-=1) == 0) + global_teardown + end + end + + def setup + unless defined?@@expected_test_count + @@expected_test_count = (self.class.instance_methods.reject{|method| method[0..3] != 'test'}).length + global_setup + end + end + +end -- cgit v1.2.3 From 6e73d2f1c60382ed9f9a54b4fe6677cf767dc8db Mon Sep 17 00:00:00 2001 From: mguetlein Date: Mon, 7 Feb 2011 10:09:29 +0100 Subject: activate copy of old cv dataset folds --- report/validation_access.rb | 4 +-- test/test_examples.rb | 8 ++++-- test/unit_test.rb | 5 +++- validation/validation_service.rb | 59 ++++++++++++++++++++++++---------------- 4 files changed, 47 insertions(+), 29 deletions(-) diff --git a/report/validation_access.rb b/report/validation_access.rb index 03ec0e5..83ca144 100755 --- a/report/validation_access.rb +++ b/report/validation_access.rb @@ -61,7 +61,7 @@ class Reports::ValidationDB < Reports::ValidationAccess cv = nil raise OpenTox::NotAuthorizedError.new "Not authorized: GET "+u.to_s if - subjectid and !OpenTox::Authorization.authorized?(u,"GET",subjectid) + AA_SERVER and !OpenTox::Authorization.authorized?(u,"GET",subjectid) # begin # #cv = Lib::Crossvalidation.find( cv_id ) # rescue => ex @@ -87,7 +87,7 @@ class Reports::ValidationDB < Reports::ValidationAccess (validation_id.to_i > 0 || validation_id.to_s=="0" ) v = nil raise OpenTox::NotAuthorizedError.new "Not authorized: GET "+uri.to_s if - subjectid and !OpenTox::Authorization.authorized?(uri,"GET",subjectid) + AA_SERVER and !OpenTox::Authorization.authorized?(uri,"GET",subjectid) v = Lib::Validation.get(validation_id) raise OpenTox::NotFoundError.new "validation with id "+validation_id.to_s+" not found" unless v raise OpenTox::BadRequestError.new "validation with id "+validation_id.to_s+" is not finished yet" unless v.finished diff --git a/test/test_examples.rb b/test/test_examples.rb index 29fe8cd..e7a07ca 100755 --- a/test/test_examples.rb +++ b/test/test_examples.rb @@ -310,9 +310,13 @@ module ValidationExamples class LR_AmbitCacoModel < ModelValidation def initialize - @model_uri = "http://apps.ideaconsult.net:8080/ambit2/model/33" - @test_dataset_uri = "http://apps.ideaconsult.net:8080/ambit2/dataset/R545" +# @model_uri = "http://apps.ideaconsult.net:8080/ambit2/model/33" +# @test_dataset_uri = "http://apps.ideaconsult.net:8080/ambit2/dataset/R545" #@prediction_feature=http://apps.ideaconsult.net:8080/ambit2/feature/22200 + + @model_uri = "https://ambit.uni-plovdiv.bg:8443/ambit2/model/33" + @test_dataset_uri = "https://ambit.uni-plovdiv.bg:8443/ambit2/dataset/R545" + end end diff --git a/test/unit_test.rb b/test/unit_test.rb index d76e156..8474dd2 100644 --- a/test/unit_test.rb +++ b/test/unit_test.rb @@ -112,11 +112,14 @@ class ValidationTest < Test::Unit::TestCase assert_equal report.uri,report3.uri @report = report end + + ################### utils and overrides ########################## def app Sinatra::Application end + # checks RestCallError type def assert_rest_call_error( ex ) if ex==OpenTox::NotAuthorizedError and @@subjectid==nil puts "AA disabled: skipping test for not authorized" @@ -133,12 +136,12 @@ class ValidationTest < Test::Unit::TestCase end end + # hack to have a global_setup and global_teardown def teardown if((@@expected_test_count-=1) == 0) global_teardown end end - def setup unless defined?@@expected_test_count @@expected_test_count = (self.class.instance_methods.reject{|method| method[0..3] != 'test'}).length diff --git a/validation/validation_service.rb b/validation/validation_service.rb index 417c72a..0ef01ae 100755 --- a/validation/validation_service.rb +++ b/validation/validation_service.rb @@ -273,10 +273,13 @@ module Validation end # creates the cv folds - # PENDING copying datasets of an equal (same dataset, same params) crossvalidation is disabled for now def create_cv_datasets( prediction_feature, task=nil ) - - create_new_cv_datasets( prediction_feature, task ) #unless copy_cv_datasets( prediction_feature ) + if copy_cv_datasets( prediction_feature ) + # dataset folds of a previous crossvalidaiton could be used + task.progress(100) if task + else + create_new_cv_datasets( prediction_feature, task ) + end end # executes the cross-validation (build models and validates them) @@ -307,30 +310,38 @@ module Validation # returns true if successfull, false otherwise def copy_cv_datasets( prediction_feature ) - equal_cvs = Crossvalidation.all( { :dataset_uri => self.dataset_uri, :num_folds => self.num_folds, - :stratified => self.stratified, :random_seed => self.random_seed } ).reject{ |cv| cv.id == self.id } - return false if equal_cvs.size == 0 - cv = equal_cvs[0] - Validation.all( :crossvalidation_id => cv.id ).each do |v| - - if self.stratified and v.prediction_feature != prediction_feature - return false; + cvs = Crossvalidation.all( { + :dataset_uri => self.dataset_uri, + :num_folds => self.num_folds, + :stratified => self.stratified, + :random_seed => self.random_seed, + :finished => true} ).reject{ |cv| cv.id == self.id } + cvs.each do |cv| + next if AA_SERVER and !OpenTox::Authorization.authorized?(cv.crossvalidation_uri,"GET",self.subjectid) + tmp_val = [] + Validation.all( :crossvalidation_id => cv.id ).each do |v| + break unless + v.prediction_feature == prediction_feature and + OpenTox::Dataset.exist?(v.training_dataset_uri,self.subjectid) and + OpenTox::Dataset.exist?(v.test_dataset_uri,self.subjectid) + #make sure self.id is set + self.save if self.new? + tmp_val << { :validation_type => "crossvalidation", + :training_dataset_uri => v.training_dataset_uri, + :test_dataset_uri => v.test_dataset_uri, + :test_target_dataset_uri => self.dataset_uri, + :crossvalidation_id => self.id, + :crossvalidation_fold => v.crossvalidation_fold, + :prediction_feature => prediction_feature, + :algorithm_uri => self.algorithm_uri } end - unless (OpenTox::Dataset.find(v.training_dataset_uri) and - OpenTox::Dataset.find(v.test_dataset_uri)) - LOGGER.debug "dataset uris obsolete, aborting copy of datasets" - Validation.all( :crossvalidation_id => self.id ).each{ |v| v.delete } - return false + if tmp_val.size == self.num_folds + @tmp_validations = tmp_val + LOGGER.debug "copied dataset uris from cv "+cv.crossvalidation_uri.to_s #+":\n"+tmp_val.inspect + return true end - validation = Validation.new :validation_type => "crossvalidation", - :crossvalidation_id => self.id, - :crossvalidation_fold => v.crossvalidation_fold, - :training_dataset_uri => v.training_dataset_uri, - :test_dataset_uri => v.test_dataset_uri, - :algorithm_uri => self.algorithm_uri end - LOGGER.debug "copied dataset uris from cv "+cv.crossvalidation_uri.to_s - return true + false end # creates cv folds (training and testdatasets) -- cgit v1.2.3 From 67e72fe916dab5c0ee18e65d4cbc1f3e0ed64b99 Mon Sep 17 00:00:00 2001 From: mguetlein Date: Mon, 7 Feb 2011 10:44:13 +0100 Subject: add missing subjectid --- report/validation_data.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/report/validation_data.rb b/report/validation_data.rb index 0dd63ee..15d51ec 100755 --- a/report/validation_data.rb +++ b/report/validation_data.rb @@ -64,8 +64,8 @@ module Reports @@validation_access = validation_access end - def self.resolve_cv_uris(validation_uris) - @@validation_access.resolve_cv_uris(validation_uris) + def self.resolve_cv_uris(validation_uris, subjectid) + @@validation_access.resolve_cv_uris(validation_uris, subjectid) end # create member variables for all validation properties @@ -160,7 +160,7 @@ module Reports def initialize(validation_uris=nil, subjectid=nil) @unique_values = {} - validation_uris = Reports::Validation.resolve_cv_uris(validation_uris) if validation_uris + validation_uris = Reports::Validation.resolve_cv_uris(validation_uris, subjectid) if validation_uris @validations = Array.new validation_uris.each{|u| @validations.push(Reports::Validation.new(u, subjectid))} if validation_uris end -- cgit v1.2.3 From d99823f61fc3b2f463bc1a51db0a952c965c2141 Mon Sep 17 00:00:00 2001 From: mguetlein Date: Mon, 7 Feb 2011 15:38:33 +0100 Subject: add a&a to qmrf reports --- lib/validation_db.rb | 3 +- reach_reports/reach_application.rb | 7 +- reach_reports/reach_persistance.rb | 11 ++ reach_reports/reach_service.rb | 42 ++++--- reach_reports/reach_test.rb | 4 + report/validation_access.rb | 219 +------------------------------------ test/unit_test.rb | 35 +++++- validation/validation_service.rb | 1 - validation/validation_test.rb | 61 ++++++----- 9 files changed, 118 insertions(+), 265 deletions(-) diff --git a/lib/validation_db.rb b/lib/validation_db.rb index c4cb2a2..25f1d66 100755 --- a/lib/validation_db.rb +++ b/lib/validation_db.rb @@ -150,11 +150,12 @@ module Lib # convenience method to list all crossvalidations that are unique # in terms of dataset_uri,num_folds,stratified,random_seed # further conditions can be specified in __conditions__ - def self.find_all_uniq(conditions={}) + def self.find_all_uniq(conditions={}, subjectid=nil ) #cvs = Lib::Crossvalidation.find(:all, :conditions => conditions) cvs = Lib::Crossvalidation.all(:conditions => conditions) uniq = [] cvs.each do |cv| + next if AA_SERVER and !OpenTox::Authorization.authorized?(cv.crossvalidation_uri,"GET",subjectid) match = false uniq.each do |cv2| if cv.dataset_uri == cv2.dataset_uri and cv.num_folds == cv2.num_folds and diff --git a/reach_reports/reach_application.rb b/reach_reports/reach_application.rb index fd77078..969ce8b 100755 --- a/reach_reports/reach_application.rb +++ b/reach_reports/reach_application.rb @@ -65,7 +65,7 @@ post '/reach_report/:type' do LOGGER.info "creating "+type+" report "+params.inspect #puts "creating "+type+" report "+params.inspect - result_uri = ReachReports.create_report(type,params,request.env["rack.input"]) + result_uri = ReachReports.create_report(type,params,@subjectid,request.env["rack.input"]) if result_uri and result_uri.task_uri? halt 202,result_uri+"\n" @@ -123,6 +123,11 @@ post '/reach_report/:type/:id' do #f.puts rep.to_xml end +delete '/reach_report/:type/:id' do + type = extract_type(params) + LOGGER.info "delete "+type+" report with id '"+params[:id].to_s+"'" + ReachReports.delete_report(type, params[:id], @subjectid) +end #get '/reach_report/:type/:id/:section' do diff --git a/reach_reports/reach_persistance.rb b/reach_reports/reach_persistance.rb index ec45ba4..3118809 100755 --- a/reach_reports/reach_persistance.rb +++ b/reach_reports/reach_persistance.rb @@ -1001,6 +1001,17 @@ module ReachReports CHAPTERS.each{ |c,clazz| has 1, c } + attr_accessor :subjectid + + after :save, :check_policy + private + def check_policy + raise "no id" unless @id + #raise "no subjectid" unless subjectid + OpenTox::Authorization.check_policy(report_uri, subjectid) + end + + public def to_yaml super(:methods => CHAPTERS) end diff --git a/reach_reports/reach_service.rb b/reach_reports/reach_service.rb index f5b4b12..028a53c 100755 --- a/reach_reports/reach_service.rb +++ b/reach_reports/reach_service.rb @@ -21,7 +21,7 @@ module ReachReports end end - def self.create_report( type, params, xml_data=nil ) + def self.create_report( type, params, subjectid, xml_data=nil ) case type when /(?i)QMRF/ @@ -30,12 +30,14 @@ module ReachReports $url_provider.url_for("/reach_report/"+type, :full) ) do |task| #, params report = ReachReports::QmrfReport.new :model_uri => params[:model_uri] + report.subjectid = subjectid build_qmrf_report(report, task) report.report_uri end result_uri = task.uri elsif xml_data and (input = xml_data.read).to_s.size>0 report = ReachReports::QmrfReport.new + report.subjectid = subjectid ReachReports::QmrfReport.from_xml(report,input) result_uri = report.report_uri else @@ -57,14 +59,11 @@ module ReachReports result_uri end - - def self.build_qmrf_report(r, task=nil) #puts r.model_uri - model = OpenTox::Model::Generic.find(r.model_uri) - raise "model not found "+r.model_uri.to_s unless model - feature_type = model.feature_type + model = OpenTox::Model::Generic.find(r.model_uri, r.subjectid) + feature_type = model.feature_type(r.subjectid) # chapter 1 r.qsar_identifier = QsarIdentifier.new @@ -132,7 +131,7 @@ module ReachReports val_datasets = [] if algorithm - cvs = Lib::Crossvalidation.find_all_uniq({:algorithm_uri => algorithm.uri, :finished => true}) + cvs = Lib::Crossvalidation.find_all_uniq({:algorithm_uri => algorithm.uri, :finished => true},r.subjectid) # PENDING: cv classification/regression hack cvs = cvs.delete_if do |cv| #val = Validation::Validation.first( :all, :conditions => { :crossvalidation_id => cv.id } ) @@ -165,7 +164,8 @@ module ReachReports lmo << "dataset (see 9.3 Validation data): "+cv.dataset_uri val_datasets << cv.dataset_uri lmo << "settings: num-folds="+cv.num_folds.to_s+", random-seed="+cv.random_seed.to_s+", stratified:"+cv.stratified.to_s - val = YAML.load( OpenTox::RestClientWrapper.get File.join(cv.crossvalidation_uri,"statistics") ) + + val = YAML.load( OpenTox::RestClientWrapper.get(File.join(cv.crossvalidation_uri,"statistics"),{:subjectid => r.subjectid}) ) case feature_type when "classification" lmo << "percent_correct: "+val[OT.classificationStatistics][OT.percentCorrect].to_s @@ -174,7 +174,8 @@ module ReachReports lmo << "root_mean_squared_error: "+val[OT.regressionStatistics][OT.rootMeanSquaredError].to_s lmo << "r_square "+val[OT.regressionStatistics][OT.rSquare].to_s end - reports = OpenTox::RestClientWrapper.get File.join(CONFIG[:services]["opentox-validation"],"report/crossvalidation?crossvalidation_uris="+cv.crossvalidation_uri) + reports = OpenTox::RestClientWrapper.get(File.join(CONFIG[:services]["opentox-validation"], + "report/crossvalidation?crossvalidation_uris="+cv.crossvalidation_uri),{:subjectid => r.subjectid}) if reports and reports.chomp.size>0 lmo << "for more info see report: "+reports.split("\n")[0] else @@ -226,10 +227,11 @@ module ReachReports v << "root_mean_squared_error: "+validation.regression_statistics[:root_mean_squared_error].to_s v << "r_square "+validation.regression_statistics[:r_square].to_s end - reports = OpenTox::RestClientWrapper.get(File.join(CONFIG[:services]["opentox-validation"], - "report/validation?validation_uris="+validation.validation_uri)) - if reports and reports.size>0 - v << "for more info see report: "+reports.split("\n")[0] + report = OpenTox::ValidationReport.find_for_validation(validation.validation_uri,r.subjectid) + #reports = OpenTox::RestClientWrapper.get(File.join(CONFIG[:services]["opentox-validation"], + # "report/validation?validation_uris="+validation.validation_uri),{:subjectid => r.subjectid}) + if report + v << "for more info see report: "+report.uri else v << "for more info see report: not yet created for '"+validation.validation_uri+"'" end @@ -299,4 +301,18 @@ module ReachReports raise OpenTox::NotFoundError.new type+" report with id '#{id}' not found." unless report return report end + + def self.delete_report(type, id, subjectid=nil) + + case type + when /(?i)QMRF/ + report = ReachReports::QmrfReport.get(id) + when /(?i)QPRF/ + report = ReachReports::QprfReport.get(id) + end + raise OpenTox::NotFoundError.new type+" report with id '#{id}' not found." unless report + OpenTox::Authorization.delete_policies_from_uri(report.report_uri, subjectid) if subjectid + return report.destroy + end + end diff --git a/reach_reports/reach_test.rb b/reach_reports/reach_test.rb index 9a354e7..7d1569d 100755 --- a/reach_reports/reach_test.rb +++ b/reach_reports/reach_test.rb @@ -76,6 +76,10 @@ class ReachTest < Test::Unit::TestCase def test_it + delete '/reach_report/QMRF/3' + puts last_response.body + + exit # testResource = TestResource.new # # TestResource.info diff --git a/report/validation_access.rb b/report/validation_access.rb index 83ca144..53ecc46 100755 --- a/report/validation_access.rb +++ b/report/validation_access.rb @@ -1,57 +1,11 @@ require "lib/validation_db.rb" -# = Reports::ValidationAccess +# = Reports::ValidationDB # -# service that connects (mainly) to the validation-service +# connects directly to the validation db, overwirte with restclient calls +# if reports/reach reports are seperated from validation someday # -class Reports::ValidationAccess - - # initialize Reports::Validation object with data from Lib:Validation object - # - def init_validation(validation, uri, subjectid=nil) - raise "not implemented" - end - - # sets cv-attributes in Reports::Validation object - # - def init_cv(validation) - raise "not implemented" - end - - # yields predictions (Lib::OTPredictions) if available - # - def get_predictions(validation, subjectid=nil, task=nil) - raise "not implemented" - end - - # replaces crossvalidations uris with corresponding validation uris, in-/output: array - # - def resolve_cv_uris(validation_uris,subjectid=nil) - raise "not implemented" - end - - # get domain/class values of prediction feature - # - def get_class_domain(validation) - raise "not implemented" - end - - # is validation classification/regression? - def feature_type(validation, subjectid=nil) - raise "not implemented" - end - - def predicted_variable(validation, subjectid=nil) - raise "not implemented" - end - -end - -class Reports::ValidationDB < Reports::ValidationAccess - -# def initialize() -# @model_store = {} -# end +class Reports::ValidationDB def resolve_cv_uris(validation_uris, subjectid=nil) res = [] @@ -150,168 +104,3 @@ class Reports::ValidationDB < Reports::ValidationAccess # end end - -# -# OUTDATED, please update before use -# -class Reports::ValidationWebservice < Reports::ValidationAccess - - def resolve_cv_uris(validation_uris) - res = [] - validation_uris.each do |u| - if u.to_s =~ /.*\/crossvalidation\/.*/ - uri = u.to_s+"/validations" - begin - vali_uri_list = RestClientWrapper.get uri - rescue => ex - raise OpenTox::BadRequestError.new "cannot get validations for cv at '"+uri.to_s+"', error msg: "+ex.message - end - res += vali_uri_list.split("\n") - else - res += [u.to_s] - end - end - res - end - - - def init_validation(validation, uri) - - begin - data = YAML.load(RestClient.get uri) - rescue => ex - raise OpenTox::BadRequestError.new "cannot get validation at '"+uri.to_s+"', error msg: "+ex.message - end - - Lib::VAL_PROPS.each do |p| - validation.send("#{p}=".to_sym, data[p]) - end - - #model = OpenTox::Model::LazarClassificationModel.new(v[:model_uri]) - #raise "cannot access model '"+v[:model_uri].to_s+"'" unless model - #validation.prediction_feature = model.get_prediction_feature - - {Lib::VAL_CV_PROP => Lib::VAL_CV_PROPS, - Lib::VAL_CLASS_PROP => Lib::VAL_CLASS_PROPS_EXTENDED}.each do |subset_name,subset_props| - subset = data[subset_name] - subset_props.each{ |prop| validation.send("#{prop}=".to_sym, subset[prop]) } if subset - end - end - - def init_cv(validation) - - raise "cv-uri not set" unless validation.crossvalidation_uri - - begin - data = YAML.load(RestClient.get validation.crossvalidation_uri) - rescue => ex - raise OpenTox::BadRequestError.new "cannot get crossvalidation at '"+validation.crossvalidation_uri.to_s+"', error msg: "+ex.message - end - - Lib::CROSS_VAL_PROPS.each do |p| - validation.send("#{p.to_s}=".to_sym, data[p]) - end - end - - def get_predictions(validation, subjectid=nil, task=nil) - Lib::Predictions.new( validation.prediction_feature, validation.test_dataset_uri, validation.prediction_dataset_uri) - end -end - -# = Reports::OTMockLayer -# -# OUTDATED, please update before use -# -# does not connect to other services, provides randomly generated data -# -class Reports::ValidationMockLayer < Reports::ValidationAccess - - NUM_DATASETS = 1 - NUM_ALGS = 4 - NUM_FOLDS = 5 - NUM_PREDICTIONS = 30 - ALGS = ["naive-bayes", "c4.5", "svm", "knn", "lazar", "id3"] - DATASETS = ["hamster", "mouse" , "rat", "dog", "cat", "horse", "bug", "ant", "butterfly", "rabbit", "donkey", "monkey", "dragonfly", "frog", "dragon", "dinosaur"] - FOLDS = [1,2,3,4,5,6,7,8,9,10] - - def initialize - - super - @algs = [] - @datasets = [] - @folds = [] - sum = NUM_DATASETS*NUM_ALGS*NUM_FOLDS - (0..sum-1).each do |i| - @folds[i] = FOLDS[i%NUM_FOLDS] - @algs[i] = ALGS[(i/NUM_FOLDS)%NUM_ALGS] - @datasets[i] = DATASETS[((i/NUM_FOLDS)/NUM_ALGS)%NUM_DATASETS] - end - @count = 0 - end - - def resolve_cv_uris(validation_uris) - res = [] - validation_uris.each do |u| - if u.to_s =~ /.*crossvalidation.*/ - res += ["validation_x"]*NUM_FOLDS - else - res += [u.to_s] - end - end - res - end - - def init_validation(validation, uri) - - validation.model_uri = @algs[@count] - validation.test_dataset_uri = @datasets[@count] - validation.prediction_dataset_uri = "bla" - - cv_id = @count/NUM_FOLDS - validation.crossvalidation_id = cv_id - validation.crossvalidation_fold = @folds[@count] - - validation.auc = 0.5 + cv_id*0.02 + rand/3.0 - validation.acc = 0.5 + cv_id*0.02 + rand/3.0 - validation.tp = 1 - validation.fp = 1 - validation.tn = 1 - validation.fn = 1 - - validation.algorithm_uri = @algs[@count] - validation.training_dataset_uri = @datasets[@count] - validation.test_dataset_uri = @datasets[@count] - - validation.prediction_feature = "classification" - - @count += 1 - end - - def init_cv(validation) - - raise "cv-id not set" unless validation.crossvalidation_id - - validation.num_folds = NUM_FOLDS - validation.algorithm_uri = @algs[validation.crossvalidation_id.to_i * NUM_FOLDS] - validation.dataset_uri = @datasets[validation.crossvalidation_id.to_i * NUM_FOLDS] - validation.stratified = true - validation.random_seed = 1 - #validation.CV_dataset_name = @datasets[validation.crossvalidation_id.to_i * NUM_FOLDS] - end - - def get_predictions(validation, task=nil) - - p = Array.new - c = Array.new - conf = Array.new - u = Array.new - (0..NUM_PREDICTIONS).each do |i| - p.push rand(2) - c.push rand(2) - conf.push rand - u.push("compound no"+(i+1).to_s) - end - Lib::MockPredictions.new( p, c, conf, u ) - end - - end diff --git a/test/unit_test.rb b/test/unit_test.rb index 8474dd2..bc5167e 100644 --- a/test/unit_test.rb +++ b/test/unit_test.rb @@ -49,9 +49,10 @@ class ValidationTest < Test::Unit::TestCase def global_teardown puts "delete and logout" - OpenTox::Dataset.find(@@data_class_mini,@@subjectid).delete(@@subjectid) + OpenTox::Dataset.find(@@data_class_mini,@@subjectid).delete(@@subjectid) if defined?@@data_class_mini @@cv.delete(@@subjectid) if defined?@@cv @@report.delete(@@subjectid) if defined?@@report + @@qmrfReport.delete(@@subjectid) if defined?@@qmrfReport OpenTox::Authorization.logout(@@subjectid) if AA_SERVER end @@ -86,18 +87,20 @@ class ValidationTest < Test::Unit::TestCase end def test_crossvalidation_report + #@@cv = OpenTox::Crossvalidation.find("http://local-ot/validation/crossvalidation/47", @@subjectid) + puts "test_crossvalidation_report" assert defined?@@cv,"no crossvalidation defined" assert_kind_of OpenTox::Crossvalidation,@@cv assert_rest_call_error OpenTox::NotFoundError do - OpenTox::CrossvalidationReport.find_for_crossvalidation(@@cv) + OpenTox::CrossvalidationReport.find_for_crossvalidation(@@cv.uri) end if @@subjectid assert_rest_call_error OpenTox::NotAuthorizedError do - OpenTox::CrossvalidationReport.create(@@cv) + OpenTox::CrossvalidationReport.create(@@cv.uri) end end - report = OpenTox::CrossvalidationReport.create(@@cv,@@subjectid) + report = OpenTox::CrossvalidationReport.create(@@cv.uri,@@subjectid) assert report.uri.uri? if @@subjectid assert_rest_call_error OpenTox::NotAuthorizedError do @@ -106,13 +109,35 @@ class ValidationTest < Test::Unit::TestCase end report = OpenTox::CrossvalidationReport.find(report.uri,@@subjectid) assert report.uri.uri? - report2 = OpenTox::CrossvalidationReport.find_for_crossvalidation(@@cv,@@subjectid) + report2 = OpenTox::CrossvalidationReport.find_for_crossvalidation(@@cv.uri,@@subjectid) assert_equal report.uri,report2.uri report3 = @@cv.find_or_create_report(@@subjectid) assert_equal report.uri,report3.uri @report = report end + def test_qmrf_report + #@@cv = OpenTox::Crossvalidation.find("http://local-ot/validation/crossvalidation/47", @@subjectid) + + puts "test_qmrf_report" + assert defined?@@cv,"no crossvalidation defined" + + validations = @@cv.metadata[OT.validation] + assert_kind_of Array,validations + assert validations.size==@@cv.metadata[OT.numFolds] + + val = OpenTox::Validation.find(validations[0], @@subjectid) + model_uri = val.metadata[OT.model] + model = OpenTox::Model::Generic.find(model_uri, @@subjectid) + assert model!=nil + + assert_rest_call_error OpenTox::NotFoundError do + OpenTox::QMRFReport.find_for_model(model_uri, @@subjectid) + end + + @@qmrfReport = OpenTox::QMRFReport.create(model_uri, @@subjectid) + end + ################### utils and overrides ########################## def app diff --git a/validation/validation_service.rb b/validation/validation_service.rb index 0ef01ae..944bed6 100755 --- a/validation/validation_service.rb +++ b/validation/validation_service.rb @@ -130,7 +130,6 @@ module Validation #model = OpenTox::Model::PredictionModel.find(self.model_uri) #raise OpenTox::NotFoundError.new "model not found: "+self.model_uri.to_s unless model model = OpenTox::Model::Generic.find(self.model_uri, self.subjectid) - raise OpenTox::NotFoundError.new "model not found: "+self.model_uri.to_s unless model unless self.algorithm_uri # self.attributes = { :algorithm_uri => model.algorithm } diff --git a/validation/validation_test.rb b/validation/validation_test.rb index 27fd6b1..bfdd563 100755 --- a/validation/validation_test.rb +++ b/validation/validation_test.rb @@ -20,10 +20,10 @@ LOGGER.datetime_format = "%Y-%m-%d %H:%M:%S " LOGGER.formatter = Logger::Formatter.new if AA_SERVER - TEST_USER = "mgtest" - TEST_PW = "mgpasswd" -# TEST_USER = "guest" -# TEST_PW = "guest" +# TEST_USER = "mgtest" +# TEST_PW = "mgpasswd" + TEST_USER = "guest" + TEST_PW = "guest" SUBJECTID = OpenTox::Authorization.authenticate(TEST_USER,TEST_PW) raise "could not log in" unless SUBJECTID puts "logged in: "+SUBJECTID.to_s @@ -63,7 +63,8 @@ class ValidationTest < Test::Unit::TestCase # begin # #OpenTox::RestClientWrapper.get "http://local-ot/validation/runtime-error",{:accept => "application/rdf+xml"} # puts OpenTox::RestClientWrapper.post "http://opentox.ntua.gr:4000/model/0d8a9a27-3481-4450-bca1-d420a791de9d", -# {:dataset=>"http://apps.ideaconsult.net:8080/ambit2/dataset/54"},{:accept => "text/uri-list", :subjectid => SUBJECTID} +# { :asdfasdf => "asdfasdf" } #{:dataset=>"http://apps.ideaconsult.net:8080/ambit2/dataset/54?max=2"}, +# { :accept => "text/uri-list", :subjectid => SUBJECTID } # #puts OpenTox::RestClientWrapper.post "http://opentox.ntua.gr:4000/model/0d8a9a27-3481-4450-bca1-d420a791de9d",{},{:accept => "text/uri-list", :subjectid => "AQIC5wM2LY4SfcwUNX97nTvaSTdYJ+nTUqZsR0UitJ4+jlc=@AAJTSQACMDE=#"} # rescue => err # rep = OpenTox::ErrorReport.create(err, "") @@ -151,27 +152,29 @@ class ValidationTest < Test::Unit::TestCase # puts val # get "/"+val.split("/")[-1] - #run_test("17a") #,"http://local-ot/validation/39",nil,false) #,"http://local-ot/validation/28")#,"http://local-ot/validation/394"); - + #run_test("1a",:validation_uri=>"http://local-ot/validation/119") #,"http://local-ot/validation/28")#,"http://local-ot/validation/394"); + + run_test("3b",:validation_uri=>"http://local-ot/validation/crossvalidation/45") #,{:dataset_uri => "http://local-ot/dataset/773", :prediction_feature => "http://local-ot/dataset/773/feature/Hamster%20Carcinogenicity"}) + # p = { -# :dataset_uri=>"http://local-ot/dataset/388", +# :dataset_uri=>"http://local-ot/dataset/527", # :algorithm_uri => "http://local-ot/majority/class/algorithm", -# :prediction_feature=>"http://local-ot/dataset/388/feature/repdose_classification", +# :prediction_feature=>"http://local-ot/dataset/527/feature/Hamster%20Carcinogenicity", # :num_folds => 2 } - #cv = OpenTox::Crossvalidation.create(p) -# cv = OpenTox::Crossvalidation.find("http://local-ot/validation/crossvalidation/14") + #cv = OpenTox::Crossvalidation.create(p, SUBJECTID) +# cv = OpenTox::Crossvalidation.find("http://local-ot/validation/crossvalidation/17", SUBJECTID) # puts cv.uri -# puts cv.find_or_create_report.uri -# puts cv.summary.inspect +## puts cv.find_or_create_report.uri +# puts cv.summary(SUBJECTID).inspect #puts OpenTox::Authorization.list_policy_uris(SUBJECTID).inspect #puts OpenTox::Authorization.list_policy_uris(SUBJECTID).inspect - #run_test("1b") #,{:dataset_uri => "http://local-ot/dataset/313", :prediction_feature => "http://local-ot/dataset/313/feature/repdose_classification"}) +# run_test("16b") #,{:dataset_uri => "http://local-ot/dataset/313", :prediction_feature => "http://local-ot/dataset/313/feature/repdose_classification"}) - model = OpenTox::Model::Generic.find("http://local-ot/majority/class/model/58") - OpenTox::QMRFReport.create(model) +# model = OpenTox::Model::Generic.find("http://local-ot/majority/class/model/58") +# OpenTox::QMRFReport.create(model) #get "/12123123123123123" @@ -242,23 +245,23 @@ class ValidationTest < Test::Unit::TestCase ex.validate LOGGER.debug "validation done '"+ex.validation_uri.to_s+"'" - if !delete and ex.validation_uri - if SUBJECTID - puts ex.validation_uri+"?subjectid="+CGI.escape(SUBJECTID) - else - puts ex.validation_uri - end + end + if !delete and ex.validation_uri + if SUBJECTID + puts ex.validation_uri+"?subjectid="+CGI.escape(SUBJECTID) + else + puts ex.validation_uri end - end + unless ex.report_uri ex.report - if !delete and ex.report_uri - if SUBJECTID - puts ex.report_uri+"?subjectid="+CGI.escape(SUBJECTID) - else - puts ex.report_uri - end + end + if !delete and ex.report_uri + if SUBJECTID + puts ex.report_uri+"?subjectid="+CGI.escape(SUBJECTID) + else + puts ex.report_uri end end ##ex.verify_yaml -- cgit v1.2.3 From c17b549f4a48d1bec843017b3b951eb9b0c109e8 Mon Sep 17 00:00:00 2001 From: mguetlein Date: Tue, 8 Feb 2011 09:00:57 +0100 Subject: fix create qmrf report, remove not-found-test from unit-test --- lib/test_util.rb | 3 ++- reach_reports/reach_service.rb | 19 +++++++-------- reach_reports/reach_test.rb | 52 ++++++++++++++++++++++++++++++++++++------ test/unit_test.rb | 39 +++++++++++++++++++------------ validation/validation_test.rb | 12 +++++----- 5 files changed, 88 insertions(+), 37 deletions(-) diff --git a/lib/test_util.rb b/lib/test_util.rb index 0deee04..590d295 100755 --- a/lib/test_util.rb +++ b/lib/test_util.rb @@ -13,7 +13,8 @@ module Lib if uri.task_uri? task = OpenTox::Task.find(uri) task.wait_for_completion - raise "task failed: "+uri.to_s+", error is:\n"+task.description if task.error? + #raise "task failed: "+uri.to_s+", error is:\n"+task.description if task.error? + LOGGER.error "task failed :\n"+task.to_yaml if task.error? uri = task.result_uri end return uri diff --git a/reach_reports/reach_service.rb b/reach_reports/reach_service.rb index 028a53c..53acb62 100755 --- a/reach_reports/reach_service.rb +++ b/reach_reports/reach_service.rb @@ -71,7 +71,7 @@ module ReachReports # TODO QSAR_models -> sparql same endpoint r.qsar_identifier.qsar_software << QsarSoftware.new( :url => model.uri, :name => model.metadata[DC.title], :contact => model.metadata[DC.creator] ) - algorithm = OpenTox::Algorithm::Generic.find(model.metadata[OT.algorithm]) if model.metadata[OT.algorithm] + algorithm = OpenTox::Algorithm::Generic.find(model.metadata[OT.algorithm], r.subjectid) if model.metadata[OT.algorithm] r.qsar_identifier.qsar_software << QsarSoftware.new( :url => algorithm.uri, :name => algorithm.metadata[DC.title] ) task.progress(10) if task @@ -108,9 +108,11 @@ module ReachReports # TODO app_domain_description, app_domain_method, app_domain_software, applicability_limits #training_dataset = model.trainingDataset ? OpenTox::Dataset.find(model.trainingDataset+"/metadata") : nil - begin - training_dataset = model.metadata[OT.trainingDataset] ? OpenTox::Dataset.find(model.metadata[OT.trainingDataset]) : nil - rescue + if ( OpenTox::Dataset.exist?(model.metadata[OT.trainingDataset]) ) + training_dataset = OpenTox::Dataset.new( model.metadata[OT.trainingDataset] ) + training_dataset.load_metadata( r.subjectid ) + else + training_dataset = nil LOGGER.warn "build qmrf: training_dataset not found "+model.metadata[OT.trainingDataset].to_s end task.progress(50) if task @@ -264,14 +266,13 @@ module ReachReports :url => training_dataset.uri} ) if training_dataset val_datasets.each do |data_uri| - begin - d = OpenTox::Dataset.find(data_uri) #+"/metadata") + if OpenTox::Dataset.exist?(data_uri, r.subjectid) + d = OpenTox::Dataset.new(data_uri) + d.load_metadata( r.subjectid) r.qsar_miscellaneous.attachment_validation_data << AttachmentValidationData.new( { :description => d.title, :filetype => "owl-dl", - :url => data_uri} ) if d - rescue - LOGGER.warn "could not add dataset: "+data_uri.to_s + :url => data_uri} ) end end task.progress(90) if task diff --git a/reach_reports/reach_test.rb b/reach_reports/reach_test.rb index 7d1569d..47e5158 100755 --- a/reach_reports/reach_test.rb +++ b/reach_reports/reach_test.rb @@ -1,3 +1,11 @@ + +require "rubygems" +require "sinatra" +before { + request.env['HTTP_HOST']="local-ot/validation" + request.env["REQUEST_URI"]=request.env["PATH_INFO"] +} + require "uri" require "yaml" ENV['RACK_ENV'] = 'test' @@ -11,6 +19,19 @@ LOGGER = OTLogger.new(STDOUT) LOGGER.datetime_format = "%Y-%m-%d %H:%M:%S " LOGGER.formatter = Logger::Formatter.new +if AA_SERVER + TEST_USER = "mgtest" + TEST_PW = "mgpasswd" +# TEST_USER = "guest" +# TEST_PW = "guest" + SUBJECTID = OpenTox::Authorization.authenticate(TEST_USER,TEST_PW) + raise "could not log in" unless SUBJECTID + puts "logged in: "+SUBJECTID.to_s +else + puts "AA disabled" + SUBJECTID = nil +end + #Rack::Test::DEFAULT_HOST = "local-ot/validation" module Sinatra module UrlForHelper @@ -24,8 +45,11 @@ module Sinatra "#{BASE}#{url_fragment}" end end + set :raise_errors, false + set :show_exceptions, false end + #DataMapper::Model.raise_on_save_failure = true # #class TestResourceX @@ -76,10 +100,12 @@ class ReachTest < Test::Unit::TestCase def test_it - delete '/reach_report/QMRF/3' - puts last_response.body + begin + + # delete '/reach_report/QMRF/3' + # puts last_response.body - exit + #exit # testResource = TestResource.new # # TestResource.info @@ -120,7 +146,10 @@ class ReachTest < Test::Unit::TestCase #model_uri = "http://ambit.uni-plovdiv.bg:8080/ambit2/model/173393" - model_uri = "http://local-ot/majority/class/model/58" + #model_uri = "http://local-ot/majority/class/model/58" + + model_uri = "http://local-ot/model/104" + # m = OpenTox::Model::Generic.find(model_uri) # puts m.metadata[OT.algorithm] if m # a = OpenTox::Algorithm::Generic.find(m.metadata[OT.algorithm]) @@ -132,13 +161,15 @@ class ReachTest < Test::Unit::TestCase #model_uri = "http://local-ot/majority/class/model/15" # model_uri = "http://local-ot/majority/class/model/91" #model_uri = "http://apps.ideaconsult.net:8080/ambit2/model/2" - post '/reach_report/qmrf',:model_uri=>model_uri #http://local-ot/model/1" + post '/reach_report/qmrf', {:model_uri=>model_uri}, {:subjectid => SUBJECTID} #http://local-ot/model/1" ##post '/reach_report/qprf',:compound_uri=>"http://local-ot/compound/XYZ" uri = last_response.body puts "task: "+uri.to_s uri = Lib::TestUtil.wait_for_task(uri) - id = uri.split("/")[-1] - puts uri + if uri + id = uri.split("/")[-1] + puts uri + end # id = "8" @@ -164,6 +195,13 @@ class ReachTest < Test::Unit::TestCase #File.new("/home/martin/tmp/qmr_rep_del_me.xml","w").puts last_response.body #File.new("/home/martin/win/home/qmr_rep_del_me.xml","w").puts last_response.body #File.new("/home/martin/info_home/.public_html/qmr_rep_del_me.xml","w").puts last_response.body + + rescue => ex + rep = OpenTox::ErrorReport.create(ex, "") + puts rep.to_yaml + end + + end end diff --git a/test/unit_test.rb b/test/unit_test.rb index bc5167e..3ee73d1 100644 --- a/test/unit_test.rb +++ b/test/unit_test.rb @@ -1,9 +1,11 @@ +#TEST_USER = "mgtest" +#TEST_PW = "mgpasswd" +#ENV['RACK_ENV'] = 'test' require "rubygems" require "sinatra" require "uri" require "yaml" -ENV['RACK_ENV'] = 'test' require 'application.rb' require 'test/unit' require 'rack/test' @@ -12,7 +14,7 @@ require 'test/test_examples.rb' TEST_USER = "guest" TEST_PW = "guest" - + #LOGGER = OTLogger.new(STDOUT) #LOGGER.datetime_format = "%Y-%m-%d %H:%M:%S " #LOGGER.formatter = Logger::Formatter.new @@ -58,16 +60,23 @@ class ValidationTest < Test::Unit::TestCase def test_crossvalidation puts "test_crossvalidation" - assert_rest_call_error OpenTox::NotFoundError do - OpenTox::Crossvalidation.find(File.join(CONFIG[:services]["opentox-validation"],"crossvalidation/noexistingid")) - end + #assert_rest_call_error OpenTox::NotFoundError do + # OpenTox::Crossvalidation.find(File.join(CONFIG[:services]["opentox-validation"],"crossvalidation/noexistingid")) + #end p = { :dataset_uri => @@data_class_mini, :algorithm_uri => File.join(CONFIG[:services]["opentox-algorithm"],"lazar"), :algorithm_params => "feature_generation_uri="+File.join(CONFIG[:services]["opentox-algorithm"],"fminer/bbrc"), :prediction_feature => @@feat_class_mini, :num_folds => 2 } - cv = OpenTox::Crossvalidation.create(p, @@subjectid) + t = OpenTox::SubTask.new(nil,0,1) + def t.progress(pct) + if !defined?@last_msg or @last_msg+3"http://local-ot/validation/119") #,"http://local-ot/validation/28")#,"http://local-ot/validation/394"); + run_test("1a") #,:validation_uri=>"http://local-ot/validation/119") #,"http://local-ot/validation/28")#,"http://local-ot/validation/394"); - run_test("3b",:validation_uri=>"http://local-ot/validation/crossvalidation/45") #,{:dataset_uri => "http://local-ot/dataset/773", :prediction_feature => "http://local-ot/dataset/773/feature/Hamster%20Carcinogenicity"}) + #run_test("3b",:validation_uri=>"http://local-ot/validation/crossvalidation/45") #,{:dataset_uri => "http://local-ot/dataset/773", :prediction_feature => "http://local-ot/dataset/773/feature/Hamster%20Carcinogenicity"}) # p = { # :dataset_uri=>"http://local-ot/dataset/527", -- cgit v1.2.3 From f30718ed4d0240167843604d9bb7d6fa7f01e83a Mon Sep 17 00:00:00 2001 From: mguetlein Date: Tue, 8 Feb 2011 16:59:22 +0100 Subject: overwirte waiting_for in test --- test/unit_test.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/test/unit_test.rb b/test/unit_test.rb index 3ee73d1..16fa94c 100644 --- a/test/unit_test.rb +++ b/test/unit_test.rb @@ -76,6 +76,7 @@ class ValidationTest < Test::Unit::TestCase @last_msg=Time.new end end + def t.waiting_for(task_uri); end cv = OpenTox::Crossvalidation.create(p, @@subjectid, t) assert cv.uri.uri? if @@subjectid -- cgit v1.2.3 From 5c3d7d79f9d0d4e1c88d38885929869c433be550 Mon Sep 17 00:00:00 2001 From: mguetlein Date: Wed, 9 Feb 2011 14:07:18 +0100 Subject: render https in reports --- lib/ot_predictions.rb | 2 +- report/xml_report.rb | 4 ++-- test/test_examples.rb | 15 ++++++++++++++- validation/validation_test.rb | 14 +++++++++----- 4 files changed, 26 insertions(+), 9 deletions(-) diff --git a/lib/ot_predictions.rb b/lib/ot_predictions.rb index b0e9720..0b40e97 100755 --- a/lib/ot_predictions.rb +++ b/lib/ot_predictions.rb @@ -59,7 +59,7 @@ module Lib test_dataset.load_all(subjectid) @compounds = test_dataset.compounds LOGGER.debug "test dataset size: "+@compounds.size.to_s - raise "test dataset is empty" unless @compounds.size>0 + raise "test dataset is empty "+test_dataset_uri.to_s unless @compounds.size>0 class_values = feature_type=="classification" ? OpenTox::Feature.new(prediction_feature).domain : nil actual_values = [] diff --git a/report/xml_report.rb b/report/xml_report.rb index 5f2709e..4b9a11a 100755 --- a/report/xml_report.rb +++ b/report/xml_report.rb @@ -168,7 +168,7 @@ module Reports row = Element.new("row") table_head_values.each do |v| entry = Element.new("entry") - if auto_link_urls && v.to_s =~ /^http:\/\// + if auto_link_urls && v.to_s =~ /^http(s?):\/\// add_url(entry, v.to_s) else entry.text = v.to_s @@ -186,7 +186,7 @@ module Reports entry = Element.new("entry") if auto_link_urls && v.to_s =~ /depict/ || v.to_s =~ /image$/ #PENDING add_image(entry, v.to_s) - elsif auto_link_urls && v.to_s =~ /^http:\/\// + elsif auto_link_urls && v.to_s =~ /^http(s?):\/\// add_url(entry, v.to_s, v.to_s) else entry.text = v.to_s diff --git a/test/test_examples.rb b/test/test_examples.rb index e7a07ca..ebb5b9f 100755 --- a/test/test_examples.rb +++ b/test/test_examples.rb @@ -368,6 +368,17 @@ module ValidationExamples end end + ######################################################################################################## + + class TumModel < ModelValidation + def initialize + @model_uri = "http://opentox-dev.informatik.tu-muenchen.de:8080/OpenTox-sec/sec/model/TUMOpenToxModel_M5P_5" + @test_dataset_uri = "http://apps.ideaconsult.net:8080/ambit2/dataset/99488" + end + end + + + ######################################################################################################## class HamsterTrainingTest < TrainingTestValidation @@ -497,7 +508,9 @@ module ValidationExamples "17" => [ LazarRepdoseCrossValidation, MajorityRepdoseCrossValidation ], "17a" => [ LazarRepdoseCrossValidation ], - "17b" => [ MajorityRepdoseCrossValidation ], + "17b" => [ MajorityRepdoseCrossValidation ], + + "18a" => [ TumModel ], } def self.list diff --git a/validation/validation_test.rb b/validation/validation_test.rb index 22d766f..e98a4d1 100755 --- a/validation/validation_test.rb +++ b/validation/validation_test.rb @@ -20,10 +20,10 @@ LOGGER.datetime_format = "%Y-%m-%d %H:%M:%S " LOGGER.formatter = Logger::Formatter.new if AA_SERVER - TEST_USER = "mgtest" - TEST_PW = "mgpasswd" -# TEST_USER = "guest" -# TEST_PW = "guest" + #TEST_USER = "mgtest" + #TEST_PW = "mgpasswd" + TEST_USER = "guest" + TEST_PW = "guest" SUBJECTID = OpenTox::Authorization.authenticate(TEST_USER,TEST_PW) raise "could not log in" unless SUBJECTID puts "logged in: "+SUBJECTID.to_s @@ -152,7 +152,11 @@ class ValidationTest < Test::Unit::TestCase # puts val # get "/"+val.split("/")[-1] - run_test("1a") #,:validation_uri=>"http://local-ot/validation/119") #,"http://local-ot/validation/28")#,"http://local-ot/validation/394"); +# d = OpenTox::Dataset.find("https://ambit.uni-plovdiv.bg:8443/ambit2/dataset/R545",SUBJECTID) +# puts d.compounds.inspect +# exit + + run_test("5a",:validation_uri=>"http://local-ot/validation/253") #,"http://local-ot/validation/28")#,"http://local-ot/validation/394"); #run_test("3b",:validation_uri=>"http://local-ot/validation/crossvalidation/45") #,{:dataset_uri => "http://local-ot/dataset/773", :prediction_feature => "http://local-ot/dataset/773/feature/Hamster%20Carcinogenicity"}) -- cgit v1.2.3 From 9168d6b226e43712f800a8dbc661c10495a46bad Mon Sep 17 00:00:00 2001 From: mguetlein Date: Thu, 10 Feb 2011 10:05:58 +0100 Subject: fix unit test --- test/unit_test.rb | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/test/unit_test.rb b/test/unit_test.rb index 16fa94c..26fc17e 100644 --- a/test/unit_test.rb +++ b/test/unit_test.rb @@ -117,13 +117,13 @@ class ValidationTest < Test::Unit::TestCase OpenTox::CrossvalidationReport.find(report.uri) end end - report = OpenTox::CrossvalidationReport.find(report.uri,@@subjectid) - assert report.uri.uri? + report_uri = OpenTox::CrossvalidationReport.find(report.uri,@@subjectid) + assert report_uri.uri? report2 = OpenTox::CrossvalidationReport.find_for_crossvalidation(@@cv.uri,@@subjectid) - assert_equal report.uri,report2.uri + assert_equal report_uri,report2.uri report3 = @@cv.find_or_create_report(@@subjectid) - assert_equal report.uri,report3.uri - @report = report + assert_equal report_uri,report3.uri + @report = report2 end def test_qmrf_report -- cgit v1.2.3 From 8a8d4cf28ae8b946bc7048ba8b3a36026537ba81 Mon Sep 17 00:00:00 2001 From: mguetlein Date: Thu, 10 Feb 2011 14:55:24 +0100 Subject: add new ambit example --- test/test_examples.rb | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/test/test_examples.rb b/test/test_examples.rb index ebb5b9f..fb6db4c 100755 --- a/test/test_examples.rb +++ b/test/test_examples.rb @@ -377,6 +377,15 @@ module ValidationExamples end end + ######################################################################################################## + + class AmbitModel < ModelValidation + def initialize + @model_uri = "https://ambit.uni-plovdiv.bg:8443/ambit2/model/29139" + @test_dataset_uri = "https://ambit.uni-plovdiv.bg:8443/ambit2/dataset/R401560" + end + end + ######################################################################################################## @@ -511,6 +520,8 @@ module ValidationExamples "17b" => [ MajorityRepdoseCrossValidation ], "18a" => [ TumModel ], + + "19a" => [ AmbitModel ], } def self.list -- cgit v1.2.3 From 7856b7f17ff65bebe078115d32325bef3e9cebdf Mon Sep 17 00:00:00 2001 From: mguetlein Date: Thu, 10 Feb 2011 15:50:25 +0100 Subject: add waiting task for tests, add new ambit example --- test/test_application.rb | 11 ++++++----- test/test_examples.rb | 28 ++++++++++++++++++++++++++++ test/test_examples_util.rb | 12 ++++++------ validation/validation_test.rb | 2 +- 4 files changed, 41 insertions(+), 12 deletions(-) diff --git a/test/test_application.rb b/test/test_application.rb index d1b0458..f255d1d 100755 --- a/test/test_application.rb +++ b/test/test_application.rb @@ -2,16 +2,17 @@ post '/test_validation/?' do validationExamples = ValidationExamples.select(params[:select]) return "please \"select\" a single validation example:\n"+ValidationExamples.list if validationExamples.size!=1 or validationExamples[0].size!=1 - task = OpenTox::Task.create("Test validation",url_for("/test_validation",:full)) do #,params + task = OpenTox::Task.create("Test validation",url_for("/test_validation",:full)) do |task| v = validationExamples[0][0] ex = v.new ex.subjectid = @subjectid ex.upload_files + task.progress(10) ex.check_requirements - ex.validate - raise ex.validation_error if ex.validation_error - ex.report unless params[:report]=="false" - raise ex.report_error if ex.report_error + ex.validate(OpenTox::SubTask.create(task,10,80)) + #raise ex.validation_error if ex.validation_error + ex.report(OpenTox::SubTask.create(task,80,99)) unless params[:report]=="false" + #raise ex.report_error if ex.report_error if ex.report_uri ex.report_uri else diff --git a/test/test_examples.rb b/test/test_examples.rb index fb6db4c..cfedcbd 100755 --- a/test/test_examples.rb +++ b/test/test_examples.rb @@ -387,6 +387,30 @@ module ValidationExamples end + ######################################################################################################## + + class AmbitTrainingTest < TrainingTestValidation + def initialize + #@model_uri = "https://ambit.uni-plovdiv.bg:8443/ambit2/model/29139" + @training_dataset_uri = "https://ambit.uni-plovdiv.bg:8443/ambit2/dataset/R401560" + @test_dataset_uri = "https://ambit.uni-plovdiv.bg:8443/ambit2/dataset/R401560" + @prediction_feature = "https://ambit.uni-plovdiv.bg:8443/ambit2/feature/22190" + @algorithm_uri = "https://ambit.uni-plovdiv.bg:8443/ambit2/algorithm/LR" + end + end + + ######################################################################################################## + + class AmbitTrainingTestSplit < SplitTestValidation + def initialize + #@model_uri = "https://ambit.uni-plovdiv.bg:8443/ambit2/model/29139" + @dataset_uri = "https://ambit.uni-plovdiv.bg:8443/ambit2/dataset/R401560" + #@test_dataset_uri = "https://ambit.uni-plovdiv.bg:8443/ambit2/dataset/R401560" + @prediction_feature = "https://ambit.uni-plovdiv.bg:8443/ambit2/feature/22190" + @algorithm_uri = "https://ambit.uni-plovdiv.bg:8443/ambit2/algorithm/LR" + end + end + ######################################################################################################## @@ -522,6 +546,10 @@ module ValidationExamples "18a" => [ TumModel ], "19a" => [ AmbitModel ], + + "20a" => [ AmbitTrainingTest ], + + "21a" => [ AmbitTrainingTestSplit ], } def self.list diff --git a/test/test_examples_util.rb b/test/test_examples_util.rb index 51cf4cc..d596a9a 100755 --- a/test/test_examples_util.rb +++ b/test/test_examples_util.rb @@ -54,14 +54,14 @@ module ValidationExamples #end end - def self.validation_post(uri, params, subjectid ) + def self.validation_post(uri, params, subjectid, waiting_task=nil ) params[:subjectid] = subjectid if subjectid if $test_case $test_case.post uri,params return wait($test_case.last_response.body) else - return OpenTox::RestClientWrapper.post(File.join(CONFIG[:services]["opentox-validation"],uri),params).to_s + return OpenTox::RestClientWrapper.post(File.join(CONFIG[:services]["opentox-validation"],uri),params,nil,waiting_task).to_s end end @@ -292,9 +292,9 @@ module ValidationExamples end end - def report + def report( waiting_task=nil ) #begin - @report_uri = Util.validation_post '/report/'+report_type,{:validation_uris => @validation_uri}, @subjectid if @validation_uri + @report_uri = Util.validation_post '/report/'+report_type,{:validation_uris => @validation_uri},@subjectid,waiting_task if @validation_uri Util.validation_get "/report/"+report_uri.split("/")[-2]+"/"+report_uri.split("/")[-1], @subjectid if @report_uri #rescue => ex #puts "could not create report: "+ex.message @@ -303,9 +303,9 @@ module ValidationExamples #end end - def validate + def validate( waiting_task=nil ) #begin - @validation_uri = Util.validation_post '/'+validation_type, get_params, @subjectid + @validation_uri = Util.validation_post '/'+validation_type, get_params, @subjectid, waiting_task #rescue => ex #puts "could not validate: "+ex.message #@validation_error = ex.message diff --git a/validation/validation_test.rb b/validation/validation_test.rb index e98a4d1..e39dbeb 100755 --- a/validation/validation_test.rb +++ b/validation/validation_test.rb @@ -156,7 +156,7 @@ class ValidationTest < Test::Unit::TestCase # puts d.compounds.inspect # exit - run_test("5a",:validation_uri=>"http://local-ot/validation/253") #,"http://local-ot/validation/28")#,"http://local-ot/validation/394"); + run_test("21a")#,:validation_uri=>"http://local-ot/validation/253") #,"http://local-ot/validation/28")#,"http://local-ot/validation/394"); #run_test("3b",:validation_uri=>"http://local-ot/validation/crossvalidation/45") #,{:dataset_uri => "http://local-ot/dataset/773", :prediction_feature => "http://local-ot/dataset/773/feature/Hamster%20Carcinogenicity"}) -- cgit v1.2.3 From 38c437943716bba2b634edac26e949f60f47463d Mon Sep 17 00:00:00 2001 From: mguetlein Date: Sun, 13 Feb 2011 13:28:11 +0100 Subject: adding ambit hack to allow validation --- lib/ot_predictions.rb | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/lib/ot_predictions.rb b/lib/ot_predictions.rb index 0b40e97..a3d0d11 100755 --- a/lib/ot_predictions.rb +++ b/lib/ot_predictions.rb @@ -24,11 +24,6 @@ module Lib "', prediction_feature: '"+prediction_feature.to_s+"' "+ "', predicted_variable: '"+predicted_variable.to_s+"'") - if prediction_feature =~ /ambit.uni-plovdiv.bg.*feature.*264185/ - LOGGER.warn "HACK for report example" - prediction_feature = "http://ambit.uni-plovdiv.bg:8080/ambit2/feature/264187" - end - predicted_variable=prediction_feature if predicted_variable==nil test_dataset = OpenTox::Dataset.find test_dataset_uri,subjectid @@ -94,6 +89,14 @@ module Lib raise msg end end + + #AMBIT HACK + if @compounds[0]=~/ambit/ and @compounds[0]=~/conformer/ + LOGGER.warn "AMBIT HACK, removing conformer endings in test-datset" + @compounds.each do |c| + c.gsub!(/\/conformer.*/,"") + end + end raise "more predicted than test compounds test:"+@compounds.size.to_s+" < prediction:"+ prediction_dataset.compounds.size.to_s if @compounds.size < prediction_dataset.compounds.size -- cgit v1.2.3 From adaea8a18537d6a436d2d41427c7ef2fda1156cc Mon Sep 17 00:00:00 2001 From: mguetlein Date: Sun, 13 Feb 2011 13:44:26 +0100 Subject: remove ambit hack again, nina fixed it --- lib/ot_predictions.rb | 8 -------- 1 file changed, 8 deletions(-) diff --git a/lib/ot_predictions.rb b/lib/ot_predictions.rb index a3d0d11..537f0b8 100755 --- a/lib/ot_predictions.rb +++ b/lib/ot_predictions.rb @@ -90,14 +90,6 @@ module Lib end end - #AMBIT HACK - if @compounds[0]=~/ambit/ and @compounds[0]=~/conformer/ - LOGGER.warn "AMBIT HACK, removing conformer endings in test-datset" - @compounds.each do |c| - c.gsub!(/\/conformer.*/,"") - end - end - raise "more predicted than test compounds test:"+@compounds.size.to_s+" < prediction:"+ prediction_dataset.compounds.size.to_s if @compounds.size < prediction_dataset.compounds.size if CHECK_VALUES -- cgit v1.2.3 From 6a720662721f3c7b67d41189cb8966929b30a048 Mon Sep 17 00:00:00 2001 From: mguetlein Date: Sun, 13 Feb 2011 17:27:29 +0100 Subject: set text/html to default value of report to make validation with validator possible --- report/report_format.rb | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/report/report_format.rb b/report/report_format.rb index 98dea39..67abc1e 100644 --- a/report/report_format.rb +++ b/report/report_format.rb @@ -12,23 +12,15 @@ module Reports::ReportFormat # returns report-format, according to header value def self.get_format(accept_header_value) - case accept_header_value - when /text\/html/ - "text/html" when /application\/rdf\+xml/ "application/rdf+xml" when /text\/xml/ "text/xml" - when /application\/x-yaml|\*\/\*/ + when /application\/x-yaml/ "application/x-yaml" else - raise OpenTox::BadRequestError.new("Accept header '"+accept_header_value.to_s+ - "' not supported, supported types are "+ - "text/html"+", "+ - "application/rdf+xml"+", "+ - "text/xml"+", "+ - "application/x-yaml") + "text/html" end end -- cgit v1.2.3 From ebaeedc374729ffb737fdc9bd5b1166548678036 Mon Sep 17 00:00:00 2001 From: mguetlein Date: Mon, 14 Feb 2011 17:46:14 +0100 Subject: set cookie in reports, hack for ambit, new examples --- EXAMPLES | 34 +++++++++++++++++----------------- lib/ot_predictions.rb | 7 ++++--- report/report_application.rb | 3 ++- validation/validation_service.rb | 22 +++++++++++++--------- 4 files changed, 36 insertions(+), 30 deletions(-) diff --git a/EXAMPLES b/EXAMPLES index 7a617d6..a27e33b 100755 --- a/EXAMPLES +++ b/EXAMPLES @@ -17,7 +17,7 @@ get list of available validations >>> curl -result example (accept-header: application/rdf-xml) +result example (accept-header: application/rdf+xml) <<< not yet supported result example (accept-header: text/uri-list) @@ -31,7 +31,7 @@ get validation >>> curl / -supported accept-headers: "text/x-yaml" and "application/rdf-xml" +supported accept-headers: "text/x-yaml" and "application/rdf+xml" validate model on test-dateset @@ -45,7 +45,7 @@ validate model on test-dateset optional params: test_target_dataset_uri, default is test_dataset_uri -result example (accept-header: application/rdf-xml) +result example (accept-header: application/rdf+xml) <<< not yet supported result example (accept-header: text/uri-list) @@ -67,7 +67,7 @@ optional params: algorithm_params, default is empty test_target_dataset_uri, default is test_dataset_uri -result example (accept-header: application/rdf-xml) +result example (accept-header: application/rdf+xml) <<< not yet supported result example (accept-header: text/uri-list) @@ -90,7 +90,7 @@ algorithm_params, default is empty split_ratio, default is 0.67 random_seed, default is 1 -result example (accept-header: application/rdf-xml) +result example (accept-header: application/rdf+xml) <<< not yet supported result example (accept-header: text/uri-list) @@ -111,7 +111,7 @@ optional params: algorithm_params, default is empty random_seed, default is 1 -result example (accept-header: application/rdf-xml) +result example (accept-header: application/rdf+xml) <<< not yet supported result example (accept-header: text/uri-list) @@ -123,7 +123,7 @@ get list of available crossvalidations >>> curl /crossvalidation -result example (accept-header: application/rdf-xml) +result example (accept-header: application/rdf+xml) <<< not yet supported result example (accept-header: text/uri-list) @@ -137,7 +137,7 @@ get crossvalidation >>> curl /crossvalidation/ -supported accept-headers: "text/x-yaml" and "application/rdf-xml" +supported accept-headers: "text/x-yaml" and "application/rdf+xml" validate an algorithm on a dataset via crossvalidation @@ -159,7 +159,7 @@ num_folds, default is 10 random_seed, default is 1 stratified, default is false -result example (accept-header: application/rdf-xml) +result example (accept-header: application/rdf+xml) <<< not yet supported result example (accept-header: text/uri-list) @@ -176,7 +176,7 @@ get list of available report types >>> curl /report -result example (accept-header: application/rdf-xml) +result example (accept-header: application/rdf+xml) <<< not yet supported result example (accept-header: text/uri-list) @@ -190,7 +190,7 @@ get list of available reports of type validation >>> curl /report/validation -result example (accept-header: application/rdf-xml) +result example (accept-header: application/rdf+xml) <<< not yet supported result example (accept-header: text/uri-list) @@ -219,7 +219,7 @@ create validation report from validation >>> curl -X POST -d validation_uris="/" \ /report/validation -result example (accept-header: application/rdf-xml) +result example (accept-header: application/rdf+xml) <<< not yet supported result example (accept-header: text/uri-list) @@ -231,7 +231,7 @@ get list of available reports of type crossvalidation >>> curl /report/crossvalidation -result example (accept-header: application/rdf-xml) +result example (accept-header: application/rdf+xml) <<< not yet supported result example (accept-header: text/uri-list) @@ -260,7 +260,7 @@ create crossvalidation report from crossvalidation >>> curl -X POST -d validation_uris="/crossvalidation/" \ /report/crossvalidation -result example (accept-header: application/rdf-xml) +result example (accept-header: application/rdf+xml) <<< not yet supported result example (accept-header: text/uri-list) @@ -275,7 +275,7 @@ manually format html report This explicity invokes the report convertion to html, with css-style-sheet as parameter. -result example (accept-header: application/rdf-xml) +result example (accept-header: application/rdf+xml) <<< not yet supported result example (accept-header: text/uri-list) @@ -319,7 +319,7 @@ get list of available qmrf report >>> curl /reach_report/qmrf -result example (accept-header: application/rdf-xml) +result example (accept-header: application/rdf+xml) <<< not yet supported result example (accept-header: text/uri-list) @@ -334,7 +334,7 @@ create a QMRF from a model >>> curl -X POST -d model_uri="" \ /reach_report/qmrf -result example (accept-header: application/rdf-xml) +result example (accept-header: application/rdf+xml) <<< not yet supported result example (accept-header: text/uri-list) diff --git a/lib/ot_predictions.rb b/lib/ot_predictions.rb index 537f0b8..9b1ee51 100755 --- a/lib/ot_predictions.rb +++ b/lib/ot_predictions.rb @@ -55,7 +55,7 @@ module Lib @compounds = test_dataset.compounds LOGGER.debug "test dataset size: "+@compounds.size.to_s raise "test dataset is empty "+test_dataset_uri.to_s unless @compounds.size>0 - class_values = feature_type=="classification" ? OpenTox::Feature.new(prediction_feature).domain : nil + class_values = feature_type=="classification" ? OpenTox::Feature.find(prediction_feature, subjectid).domain : nil actual_values = [] @compounds.each do |c| @@ -147,12 +147,13 @@ module Lib def classification_value(dataset, compound, feature, class_values) v = value(dataset, compound, feature) i = class_values.index(v) - raise "illegal class_value of predicted value "+v.to_s+" class: "+v.class.to_s unless v==nil or i!=nil + raise "illegal class_value of prediction (value is '"+v.to_s+"', class is '"+v.class.to_s+"'), possible values are "+ + class_values.inspect unless v==nil or i!=nil i end def value(dataset, compound, feature) - + return nil if dataset.data_entries[compound]==nil if feature==nil v = dataset.data_entries[compound].values[0] else diff --git a/report/report_application.rb b/report/report_application.rb index 1a4504d..ab3d91b 100755 --- a/report/report_application.rb +++ b/report/report_application.rb @@ -76,7 +76,6 @@ end get '/report/:type/:id' do - perform do |rs| accept_header = request.env['HTTP_ACCEPT'] @@ -90,6 +89,8 @@ get '/report/:type/:id' do result = body(File.new(report)) end end + + response.set_cookie("subjectid", @subjectid) end #OpenTox::Authorization.whitelist( Regexp.new("/report/.*/[0-9]+/.*"),"GET") diff --git a/validation/validation_service.rb b/validation/validation_service.rb index 944bed6..d917a96 100755 --- a/validation/validation_service.rb +++ b/validation/validation_service.rb @@ -138,16 +138,20 @@ module Validation self.algorithm_uri = model.metadata[OT.algorithm] end - dependentVariables = model.metadata[OT.dependentVariables] - if self.prediction_feature - raise OpenTox::NotFoundError.new "error validating model: model.dependent_variable != validation.prediction_feature ("+ - dependentVariables.to_s+" != "+self.prediction_feature+"), model-metadata is "+model.metadata.inspect if self.prediction_feature!=dependentVariables + if self.prediction_feature and model.uri=~/ambit2\/model/ + LOGGER.warn "REMOVE AMBIT HACK TO __NOT__ RELY ON DEPENDENT VARIABLE" else - raise OpenTox::NotFoundError.new "model has no dependentVariables specified, please give prediction feature for model validation" unless dependentVariables - #self.attributes = { :prediction_feature => model.dependentVariables } - #self.save! - #self.update :prediction_feature => model.dependentVariables - self.prediction_feature = model.metadata[OT.dependentVariables] + dependentVariables = model.metadata[OT.dependentVariables] + if self.prediction_feature + raise OpenTox::NotFoundError.new "error validating model: model.dependent_variable != validation.prediction_feature ("+ + dependentVariables.to_s+" != "+self.prediction_feature+"), model-metadata is "+model.metadata.inspect if self.prediction_feature!=dependentVariables + else + raise OpenTox::NotFoundError.new "model has no dependentVariables specified, please give prediction feature for model validation" unless dependentVariables + #self.attributes = { :prediction_feature => model.dependentVariables } + #self.save! + #self.update :prediction_feature => model.dependentVariables + self.prediction_feature = model.metadata[OT.dependentVariables] + end end prediction_dataset_uri = "" -- cgit v1.2.3 From e7c994932c9f1fc9b7b76200babd87b8d6e0e962 Mon Sep 17 00:00:00 2001 From: mguetlein Date: Mon, 14 Feb 2011 17:46:47 +0100 Subject: set cookie in reports, hack for ambit, new examples --- test/test_examples.rb | 49 +++++++++++++++++++++++++++++++++++++--------- test/test_examples_util.rb | 5 +++++ 2 files changed, 45 insertions(+), 9 deletions(-) diff --git a/test/test_examples.rb b/test/test_examples.rb index cfedcbd..892efb9 100755 --- a/test/test_examples.rb +++ b/test/test_examples.rb @@ -379,27 +379,47 @@ module ValidationExamples ######################################################################################################## - class AmbitModel < ModelValidation + class AmbitModelValidation < ModelValidation def initialize @model_uri = "https://ambit.uni-plovdiv.bg:8443/ambit2/model/29139" @test_dataset_uri = "https://ambit.uni-plovdiv.bg:8443/ambit2/dataset/R401560" end end - - ######################################################################################################## + class AmbitBursiModelValidation < ModelValidation + def initialize + @model_uri = "https://ambit.uni-plovdiv.bg:8443/ambit2/model/35194" + @test_dataset_uri = "https://ambit.uni-plovdiv.bg:8443/ambit2/dataset/R401577" + end + end class AmbitTrainingTest < TrainingTestValidation def initialize - #@model_uri = "https://ambit.uni-plovdiv.bg:8443/ambit2/model/29139" @training_dataset_uri = "https://ambit.uni-plovdiv.bg:8443/ambit2/dataset/R401560" + #@training_dataset_uri = "http://opentox.informatik.uni-freiburg.de/dataset/317" @test_dataset_uri = "https://ambit.uni-plovdiv.bg:8443/ambit2/dataset/R401560" @prediction_feature = "https://ambit.uni-plovdiv.bg:8443/ambit2/feature/22190" @algorithm_uri = "https://ambit.uni-plovdiv.bg:8443/ambit2/algorithm/LR" end end - ######################################################################################################## + class AmbitBursiTrainingTest < TrainingTestValidation + def initialize + @test_dataset_uri = "https://ambit.uni-plovdiv.bg:8443/ambit2/dataset/R401577" + @training_dataset_uri = "https://ambit.uni-plovdiv.bg:8443/ambit2/dataset/R401577" + @prediction_feature = "https://ambit.uni-plovdiv.bg:8443/ambit2/feature/26221" + @algorithm_uri = "https://ambit.uni-plovdiv.bg:8443/ambit2/algorithm/J48" + end + end + + class AmbitJ48TrainingTest < TrainingTestValidation + def initialize + @test_dataset_uri = "https://ambit.uni-plovdiv.bg:8443/ambit2/dataset/39914" + @training_dataset_uri = "https://ambit.uni-plovdiv.bg:8443/ambit2/dataset/39914" + @prediction_feature = "https://ambit.uni-plovdiv.bg:8443/ambit2/feature/221726" + @algorithm_uri = "https://ambit.uni-plovdiv.bg:8443/ambit2/algorithm/J48" + end + end class AmbitTrainingTestSplit < SplitTestValidation def initialize @@ -411,6 +431,14 @@ module ValidationExamples end end + class AmbitBursiTrainingTestSplit < SplitTestValidation + def initialize + @dataset_uri = "https://ambit.uni-plovdiv.bg:8443/ambit2/dataset/R401577" + @prediction_feature = "https://ambit.uni-plovdiv.bg:8443/ambit2/feature/26221" + @algorithm_uri = "https://ambit.uni-plovdiv.bg:8443/ambit2/algorithm/J48" + end + end + ######################################################################################################## @@ -545,11 +573,14 @@ module ValidationExamples "18a" => [ TumModel ], - "19a" => [ AmbitModel ], - - "20a" => [ AmbitTrainingTest ], + "19a" => [ AmbitModelValidation ], + "19b" => [ AmbitTrainingTest ], + "19c" => [ AmbitTrainingTestSplit ], + "19d" => [ AmbitBursiTrainingTest ], + "19e" => [ AmbitBursiModelValidation ], + "19f" => [ AmbitBursiTrainingTestSplit ], + "19g" => [ AmbitJ48TrainingTest ], - "21a" => [ AmbitTrainingTestSplit ], } def self.list diff --git a/test/test_examples_util.rb b/test/test_examples_util.rb index d596a9a..2df6e7e 100755 --- a/test/test_examples_util.rb +++ b/test/test_examples_util.rb @@ -24,6 +24,11 @@ module ValidationExamples raise "num features not 1 (="+d.features.keys.size.to_s+"), what to predict??" if d.features.keys.size != 1 @@prediction_features[file.path.to_s] = d.features.keys[0] @@dataset_uris[file.path.to_s] = d.uri + elsif (file.path =~ /rdf$/) + d = OpenTox::Dataset.create(CONFIG[:services]["opentox-dataset"], subjectid) + d.load_rdfxml_file(file, subjectid) + d.save(subjectid) + @@dataset_uris[file.path.to_s] = d.uri else raise "unknown file type: "+file.path.to_s end -- cgit v1.2.3 From 344fbf29648f2eba041ddfb4505d587f7abfa4a6 Mon Sep 17 00:00:00 2001 From: mguetlein Date: Mon, 14 Feb 2011 17:51:49 +0100 Subject: add one more example --- test/test_examples.rb | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/test/test_examples.rb b/test/test_examples.rb index 892efb9..c66867b 100755 --- a/test/test_examples.rb +++ b/test/test_examples.rb @@ -439,6 +439,14 @@ module ValidationExamples end end + class AmbitJ48TrainingTestSplit < TrainingTestValidation + def initialize + @dataset_uri = "https://ambit.uni-plovdiv.bg:8443/ambit2/dataset/39914" + @prediction_feature = "https://ambit.uni-plovdiv.bg:8443/ambit2/feature/221726" + @algorithm_uri = "https://ambit.uni-plovdiv.bg:8443/ambit2/algorithm/J48" + end + end + ######################################################################################################## @@ -580,6 +588,7 @@ module ValidationExamples "19e" => [ AmbitBursiModelValidation ], "19f" => [ AmbitBursiTrainingTestSplit ], "19g" => [ AmbitJ48TrainingTest ], + "19h" => [ AmbitJ48TrainingTestSplit ], } -- cgit v1.2.3 From c73a7fbf8ffb80507a748b38ec4bc28742fcebc1 Mon Sep 17 00:00:00 2001 From: mguetlein Date: Mon, 14 Feb 2011 17:53:47 +0100 Subject: fix example --- test/test_examples.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_examples.rb b/test/test_examples.rb index c66867b..53f1f81 100755 --- a/test/test_examples.rb +++ b/test/test_examples.rb @@ -439,7 +439,7 @@ module ValidationExamples end end - class AmbitJ48TrainingTestSplit < TrainingTestValidation + class AmbitJ48TrainingTestSplit < SplitTestValidation def initialize @dataset_uri = "https://ambit.uni-plovdiv.bg:8443/ambit2/dataset/39914" @prediction_feature = "https://ambit.uni-plovdiv.bg:8443/ambit2/feature/221726" -- cgit v1.2.3 From 808db6ef7d84fcaeaee3933d0f3317ee916d1a6a Mon Sep 17 00:00:00 2001 From: mguetlein Date: Fri, 18 Feb 2011 12:00:01 +0100 Subject: add subject id to qmrf-jnlp --- reach_reports/reach_application.rb | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/reach_reports/reach_application.rb b/reach_reports/reach_application.rb index 969ce8b..f11b2f8 100755 --- a/reach_reports/reach_application.rb +++ b/reach_reports/reach_application.rb @@ -219,6 +219,13 @@ EOF jnlp += < +-s +EOF + jnlp.chomp! + jnlp += @subjectid + + jnlp += < -d http://opentox.informatik.uni-freiburg.de/qmrfedit2/qmrf.dtd -t http://opentox.informatik.uni-freiburg.de/qmrfedit2/verdana.ttf -- cgit v1.2.3 From eaca95b2a3cdb807743e6f7248ac5e933d0820b6 Mon Sep 17 00:00:00 2001 From: mguetlein Date: Fri, 18 Feb 2011 12:15:16 +0100 Subject: use --subjectid instead of .s --- reach_reports/reach_application.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reach_reports/reach_application.rb b/reach_reports/reach_application.rb index f11b2f8..f650d6a 100755 --- a/reach_reports/reach_application.rb +++ b/reach_reports/reach_application.rb @@ -219,7 +219,7 @@ EOF jnlp += < --s +--subjectid= EOF jnlp.chomp! jnlp += @subjectid -- cgit v1.2.3 From 299552130b7deb821f7de544f153a9ebf00929db Mon Sep 17 00:00:00 2001 From: mguetlein Date: Fri, 18 Feb 2011 13:55:58 +0100 Subject: fix report uri in jnlp --- reach_reports/reach_application.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reach_reports/reach_application.rb b/reach_reports/reach_application.rb index f650d6a..293a5ac 100755 --- a/reach_reports/reach_application.rb +++ b/reach_reports/reach_application.rb @@ -212,10 +212,10 @@ get '/reach_report/:type/:id/editor' do --x http://opentox.informatik.uni-freiburg.de/validation/reach_report/QMRF/ +-x EOF jnlp.chomp! - jnlp += params[:id].to_s + jnlp += File.join(url_for("/reach_report/QMRF",:full),params[:id]) jnlp += < -- cgit v1.2.3 From e77fd138b4de5e467ded21ef075828e2b04e7928 Mon Sep 17 00:00:00 2001 From: mguetlein Date: Sat, 19 Feb 2011 11:28:29 +0100 Subject: add subject-id to to-html, minor changes --- application.rb | 2 +- lib/ot_predictions.rb | 1 - reach_reports/reach_application.rb | 6 ++-- reach_reports/reach_test.rb | 17 +++++---- report/report_application.rb | 6 ++-- test/test_examples.rb | 5 +-- test/unit_test.rb | 12 +++---- validation/validation_application.rb | 22 ++++++------ validation/validation_test.rb | 67 ++++++++++++++++++++++++++++++++---- 9 files changed, 97 insertions(+), 41 deletions(-) diff --git a/application.rb b/application.rb index c18b05e..f543167 100755 --- a/application.rb +++ b/application.rb @@ -19,7 +19,7 @@ get '/examples/?' do if request.env['HTTP_ACCEPT'] =~ /text\/html/ content_type "text/html" - OpenTox.text_to_html Example.transform_example + OpenTox.text_to_html Example.transform_example,@subjectid else content_type "text/plain" Example.transform_example diff --git a/lib/ot_predictions.rb b/lib/ot_predictions.rb index 9b1ee51..116b4db 100755 --- a/lib/ot_predictions.rb +++ b/lib/ot_predictions.rb @@ -51,7 +51,6 @@ module Lib "available features are: "+test_target_dataset.features.inspect if test_target_dataset.features.keys.index(prediction_feature)==nil end - test_dataset.load_all(subjectid) @compounds = test_dataset.compounds LOGGER.debug "test dataset size: "+@compounds.size.to_s raise "test dataset is empty "+test_dataset_uri.to_s unless @compounds.size>0 diff --git a/reach_reports/reach_application.rb b/reach_reports/reach_application.rb index 293a5ac..fc670fd 100755 --- a/reach_reports/reach_application.rb +++ b/reach_reports/reach_application.rb @@ -24,7 +24,7 @@ get '/reach_report' do "Validation reporting: "+url_for("/report",:full) description = "A list of all suported REACH reporting types." - OpenTox.text_to_html uri_list,related_links,description + OpenTox.text_to_html uri_list,related_links,description, @subjectid else content_type "text/uri-list" uri_list @@ -51,7 +51,7 @@ get '/reach_report/:type' do when /(?i)QPRF/ #TODO end - OpenTox.text_to_html ReachReports.list_reports(type),related_links,description,post_params + OpenTox.text_to_html ReachReports.list_reports(type),@subjectid,related_links,description,post_params else content_type "text/uri-list" ReachReports.list_reports(type) @@ -98,7 +98,7 @@ get '/reach_report/:type/:id' do "All "+type+" reports: "+url_for("/reach_report/"+type,:full) description = "A QMRF report." - OpenTox.text_to_html rep.to_yaml,related_links,description + OpenTox.text_to_html rep.to_yaml,@subjectid,related_links,description when /application\/x-yaml|\*\/\*|^$/ # matches 'application/x-yaml', '*/*', '' content_type "application/x-yaml" rep.to_yaml diff --git a/reach_reports/reach_test.rb b/reach_reports/reach_test.rb index 47e5158..87addfa 100755 --- a/reach_reports/reach_test.rb +++ b/reach_reports/reach_test.rb @@ -20,10 +20,10 @@ LOGGER.datetime_format = "%Y-%m-%d %H:%M:%S " LOGGER.formatter = Logger::Formatter.new if AA_SERVER - TEST_USER = "mgtest" - TEST_PW = "mgpasswd" -# TEST_USER = "guest" -# TEST_PW = "guest" + #TEST_USER = "mgtest" + #TEST_PW = "mgpasswd" + TEST_USER = "guest" + TEST_PW = "guest" SUBJECTID = OpenTox::Authorization.authenticate(TEST_USER,TEST_PW) raise "could not log in" unless SUBJECTID puts "logged in: "+SUBJECTID.to_s @@ -148,7 +148,10 @@ class ReachTest < Test::Unit::TestCase #model_uri = "http://local-ot/majority/class/model/58" - model_uri = "http://local-ot/model/104" + + #model_uri = "http://local-ot/model/104" + model_uri = "http://local-ot/majority/class/model/125" + # m = OpenTox::Model::Generic.find(model_uri) # puts m.metadata[OT.algorithm] if m @@ -156,12 +159,14 @@ class ReachTest < Test::Unit::TestCase # puts a.metadata.inspect # exit + puts SUBJECTID + # model_uri = "http://local-ot/model/1" #http://local-ot/majority/class/model/15 #model_uri = "http://local-ot/majority/class/model/15" # model_uri = "http://local-ot/majority/class/model/91" #model_uri = "http://apps.ideaconsult.net:8080/ambit2/model/2" - post '/reach_report/qmrf', {:model_uri=>model_uri}, {:subjectid => SUBJECTID} #http://local-ot/model/1" + post '/reach_report/qmrf',{:model_uri=>model_uri, :subjectid => SUBJECTID} #http://local-ot/model/1" ##post '/reach_report/qprf',:compound_uri=>"http://local-ot/compound/XYZ" uri = last_response.body puts "task: "+uri.to_s diff --git a/report/report_application.rb b/report/report_application.rb index ab3d91b..5a47063 100755 --- a/report/report_application.rb +++ b/report/report_application.rb @@ -38,7 +38,7 @@ get '/report/?' do description = "A list of all report types." content_type "text/html" - OpenTox.text_to_html rs.get_report_types,related_links,description + OpenTox.text_to_html rs.get_report_types,@subjectid,related_links,description else content_type "text/uri-list" rs.get_report_types @@ -58,7 +58,7 @@ get '/report/:report_type' do "A list of all "+params[:report_type]+" reports. To create a report, use the POST method." post_params = [[:validation_uris]] content_type "text/html" - OpenTox.text_to_html rs.get_all_reports(params[:report_type], params),related_links,description,post_params + OpenTox.text_to_html rs.get_all_reports(params[:report_type], params),@subjectid,related_links,description,post_params else content_type "text/uri-list" rs.get_all_reports(params[:report_type], params) @@ -89,8 +89,6 @@ get '/report/:type/:id' do result = body(File.new(report)) end end - - response.set_cookie("subjectid", @subjectid) end #OpenTox::Authorization.whitelist( Regexp.new("/report/.*/[0-9]+/.*"),"GET") diff --git a/test/test_examples.rb b/test/test_examples.rb index 53f1f81..503bc13 100755 --- a/test/test_examples.rb +++ b/test/test_examples.rb @@ -381,8 +381,9 @@ module ValidationExamples class AmbitModelValidation < ModelValidation def initialize - @model_uri = "https://ambit.uni-plovdiv.bg:8443/ambit2/model/29139" - @test_dataset_uri = "https://ambit.uni-plovdiv.bg:8443/ambit2/dataset/R401560" + @model_uri = "https://ambit.uni-plovdiv.bg:8443/ambit2/model/39319" + #@model_uri = "https://ambit.uni-plovdiv.bg:8443/ambit2/model/29139" + @test_dataset_uri = "https://ambit.uni-plovdiv.bg:8443/ambit2/dataset/R401577?max=3" end end diff --git a/test/unit_test.rb b/test/unit_test.rb index 26fc17e..11b0759 100644 --- a/test/unit_test.rb +++ b/test/unit_test.rb @@ -97,7 +97,7 @@ class ValidationTest < Test::Unit::TestCase end def test_crossvalidation_report - #@@cv = OpenTox::Crossvalidation.find("http://local-ot/validation/crossvalidation/47", @@subjectid) + #@@cv = OpenTox::Crossvalidation.find("http://local-ot/validation/crossvalidation/48", @@subjectid) puts "test_crossvalidation_report" assert defined?@@cv,"no crossvalidation defined" @@ -117,12 +117,12 @@ class ValidationTest < Test::Unit::TestCase OpenTox::CrossvalidationReport.find(report.uri) end end - report_uri = OpenTox::CrossvalidationReport.find(report.uri,@@subjectid) - assert report_uri.uri? + report = OpenTox::CrossvalidationReport.find(report.uri,@@subjectid) + assert report.uri.uri? report2 = OpenTox::CrossvalidationReport.find_for_crossvalidation(@@cv.uri,@@subjectid) - assert_equal report_uri,report2.uri - report3 = @@cv.find_or_create_report(@@subjectid) - assert_equal report_uri,report3.uri + assert_equal report.uri,report2.uri + report3_uri = @@cv.find_or_create_report(@@subjectid) + assert_equal report.uri,report3_uri @report = report2 end diff --git a/validation/validation_application.rb b/validation/validation_application.rb index 9b517cf..e07acf0 100755 --- a/validation/validation_application.rb +++ b/validation/validation_application.rb @@ -22,7 +22,7 @@ get '/crossvalidation/?' do "Use the POST method to perform a crossvalidation." post_params = [[:dataset_uri,:algorithm_uri,:prediction_feature,[:num_folds,10],[:random_seed,1],[:stratified,false],[:algorithm_params,""]]] content_type "text/html" - OpenTox.text_to_html uri_list,related_links,description,post_params + OpenTox.text_to_html uri_list,@subjectid,related_links,description,post_params else content_type "text/uri-list" uri_list @@ -101,7 +101,7 @@ get '/crossvalidation/:id' do description = "A crossvalidation resource." content_type "text/html" - OpenTox.text_to_html crossvalidation.to_yaml,related_links,description + OpenTox.text_to_html crossvalidation.to_yaml,@subjectid,related_links,description when /application\/x-yaml|\*\/\*/ content_type "application/x-yaml" crossvalidation.to_yaml @@ -139,7 +139,7 @@ get '/crossvalidation/:id/statistics' do description = "The averaged statistics for the crossvalidation." content_type "text/html" - OpenTox.text_to_html v.to_yaml,related_links,description + OpenTox.text_to_html v.to_yaml,@subjectid,related_links,description else content_type "application/x-yaml" v.to_yaml @@ -196,7 +196,7 @@ get '/crossvalidation/:id/predictions' do related_links = "All crossvalidations: "+url_for("/crossvalidation",:full)+"\n"+ "Correspoding crossvalidation: "+url_for("/crossvalidation/"+params[:id],:full) - OpenTox.text_to_html p, related_links, description + OpenTox.text_to_html p,@subjectid, related_links, description else content_type "text/x-yaml" p @@ -226,7 +226,7 @@ get '/?' do "A validation web service for the OpenTox project ( http://opentox.org ).\n"+ "In the root directory (this is where you are now), a list of all validation resources is returned." content_type "text/html" - OpenTox.text_to_html uri_list,related_links,description + OpenTox.text_to_html uri_list,@subjectid,related_links,description else content_type "text/uri-list" uri_list @@ -274,7 +274,7 @@ get '/test_set_validation' do "To perform a test-set-validation use the POST method." post_params = [[:model_uri, :test_dataset_uri, [:test_target_dataset_uri,"same-as-test_dataset_uri"], [:prediction_feature, "dependent-variable-of-model"]]] content_type "text/html" - OpenTox.text_to_html uri_list,related_links,description,post_params + OpenTox.text_to_html uri_list,@subjectid,related_links,description,post_params else content_type "text/uri-list" uri_list @@ -323,7 +323,7 @@ get '/training_test_validation' do :prediction_feature, [:algorithm_params, ""]]] content_type "text/html" - OpenTox.text_to_html uri_list,related_links,description,post_params + OpenTox.text_to_html uri_list,@subjectid,related_links,description,post_params else content_type "text/uri-list" uri_list @@ -371,7 +371,7 @@ get '/bootstrapping' do [:algorithm_params, ""], [:random_seed, 1]]] content_type "text/html" - OpenTox.text_to_html uri_list,related_links,description,post_params + OpenTox.text_to_html uri_list,@subjectid,related_links,description,post_params else content_type "text/uri-list" uri_list @@ -423,7 +423,7 @@ get '/training_test_split' do [:random_seed, 1], [:split_ratio, 0.66]]] content_type "text/html" - OpenTox.text_to_html uri_list,related_links,description,post_params + OpenTox.text_to_html uri_list,@subjectid,related_links,description,post_params else content_type "text/uri-list" uri_list @@ -502,7 +502,7 @@ get '/:id/predictions' do related_links = "All validations: "+url_for("/",:full)+"\n"+ "Correspoding validation: "+url_for("/"+params[:id],:full) - OpenTox.text_to_html p.to_array.to_yaml, related_links, description + OpenTox.text_to_html p.to_array.to_yaml,@subjectid, related_links, description else content_type "text/x-yaml" p.to_array.to_yaml @@ -548,7 +548,7 @@ get '/:id' do "Get validation predictions: "+url_for("/"+params[:id]+"/predictions",:full)+"\n"+ "All validations: "+url_for("/",:full)+"\n"+ "All validation reports: "+url_for("/report/validation",:full) - OpenTox.text_to_html validation.to_yaml,related_links,description + OpenTox.text_to_html validation.to_yaml,@subjectid,related_links,description else #default is yaml content_type "application/x-yaml" validation.to_yaml diff --git a/validation/validation_test.rb b/validation/validation_test.rb index e39dbeb..3f10ca2 100755 --- a/validation/validation_test.rb +++ b/validation/validation_test.rb @@ -20,10 +20,10 @@ LOGGER.datetime_format = "%Y-%m-%d %H:%M:%S " LOGGER.formatter = Logger::Formatter.new if AA_SERVER - #TEST_USER = "mgtest" - #TEST_PW = "mgpasswd" - TEST_USER = "guest" - TEST_PW = "guest" + TEST_USER = "mgtest" + TEST_PW = "mgpasswd" + #TEST_USER = "guest" + #TEST_PW = "guest" SUBJECTID = OpenTox::Authorization.authenticate(TEST_USER,TEST_PW) raise "could not log in" unless SUBJECTID puts "logged in: "+SUBJECTID.to_s @@ -60,6 +60,10 @@ class ValidationTest < Test::Unit::TestCase begin $test_case = self +# prediction_feature = "https://ambit.uni-plovdiv.bg:8443/ambit2/feature/26221" +# puts OpenTox::Feature.find(prediction_feature).domain.inspect +# exit + # begin # #OpenTox::RestClientWrapper.get "http://local-ot/validation/runtime-error",{:accept => "application/rdf+xml"} # puts OpenTox::RestClientWrapper.post "http://opentox.ntua.gr:4000/model/0d8a9a27-3481-4450-bca1-d420a791de9d", @@ -151,12 +155,61 @@ class ValidationTest < Test::Unit::TestCase # val = wait_for_task(uri) # puts val # get "/"+val.split("/")[-1] - + +# post "/validate_datasets",{ +# :test_dataset_uri=>"http://opentox.informatik.uni-freiburg.de/dataset/409", +# :prediction_dataset_uri=>"http://opentox.informatik.uni-freiburg.de/dataset/410", +# :test_target_dataset_uri=>"https://ambit.uni-plovdiv.bg:8443/ambit2/dataset/R401560", +# :prediction_feature=>"https://ambit.uni-plovdiv.bg:8443/ambit2/feature/22190", +# :predicted_feature=>"https://ambit.uni-plovdiv.bg:8443/ambit2/feature/218304", +# :regression=>"true", +# :subjectid=>SUBJECTID} +# #:model_uri=>"http://local-ot/model/31"} +# #:regression=>"true"} +# # :classification=>"true"} +# uri = last_response.body +# val = wait_for_task(uri) +# puts val +# #get "/"+val.split("/")[-1] + + + + #ambit_service = "https://ambit.uni-plovdiv.bg:8443/ambit2" + #https%3A%2F%2Fambit.uni-plovdiv.bg%3A8443%2Fambit2 + +# post "/validate_datasets",{ +# :test_dataset_uri=>ambit_service+"/dataset/R401577?max=50", +# :prediction_dataset_uri=>ambit_service+"/dataset/R401577?max=50&feature_uris[]="+CGI.escape(ambit_service)+"%2Fmodel%2F35194%2Fpredicted", +# #:test_target_dataset_uri=>ambit_service+"/dataset/R401560", +# :prediction_feature=>ambit_service+"/feature/26221", +# :predicted_feature=>ambit_service+"/feature/218699", +# :classification=>"true", +# :subjectid=>SUBJECTID} +# #:model_uri=>"http://local-ot/model/31"} +# #:regression=>"true"} +# # :classification=>"true"} +# uri = last_response.body +# val = wait_for_task(uri) +# puts val +# #get "/"+val.split("/")[-1] + + # d = OpenTox::Dataset.find("https://ambit.uni-plovdiv.bg:8443/ambit2/dataset/R545",SUBJECTID) # puts d.compounds.inspect # exit + +# f = File.new("data/ambit-dataset.rdf") +# d = ValidationExamples::Util.upload_dataset(f, SUBJECTID) +# puts d + +# d = OpenTox::Dataset.find("https://ambit.uni-plovdiv.bg:8443/ambit2/dataset/R401560",SUBJECTID) +# #puts d.compounds.to_yaml +# #puts d.features.keys.to_yaml +# puts d.to_yaml +# d2 = d.split(d.compounds[0..5], d.features.keys[0..1], {}, SUBJECTID) +# puts d2.to_yaml - run_test("21a")#,:validation_uri=>"http://local-ot/validation/253") #,"http://local-ot/validation/28")#,"http://local-ot/validation/394"); + run_test("1b")#,:validation_uri=>"http://local-ot/validation/253") #,"http://local-ot/validation/28")#,"http://local-ot/validation/394"); #run_test("3b",:validation_uri=>"http://local-ot/validation/crossvalidation/45") #,{:dataset_uri => "http://local-ot/dataset/773", :prediction_feature => "http://local-ot/dataset/773/feature/Hamster%20Carcinogenicity"}) @@ -175,7 +228,7 @@ class ValidationTest < Test::Unit::TestCase #puts OpenTox::Authorization.list_policy_uris(SUBJECTID).inspect -# run_test("16b") #,{:dataset_uri => "http://local-ot/dataset/313", :prediction_feature => "http://local-ot/dataset/313/feature/repdose_classification"}) + #run_test("19d") #,{:dataset_uri => "http://local-ot/dataset/313", :prediction_feature => "http://local-ot/dataset/313/feature/repdose_classification"}) # model = OpenTox::Model::Generic.find("http://local-ot/majority/class/model/58") # OpenTox::QMRFReport.create(model) -- cgit v1.2.3 From 84b787bf6d99f6b8cce56df2bc45a8b93ada4d64 Mon Sep 17 00:00:00 2001 From: mguetlein Date: Tue, 22 Feb 2011 15:40:59 +0100 Subject: fix for building reports with no @subjectid --- reach_reports/reach_application.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reach_reports/reach_application.rb b/reach_reports/reach_application.rb index fc670fd..cd0695c 100755 --- a/reach_reports/reach_application.rb +++ b/reach_reports/reach_application.rb @@ -222,7 +222,7 @@ EOF --subjectid= EOF jnlp.chomp! - jnlp += @subjectid + jnlp += @subjectid.to_s jnlp += < -- cgit v1.2.3 From e57856a3c2cd10df207e722301c24a022e9fd802 Mon Sep 17 00:00:00 2001 From: mguetlein Date: Wed, 23 Feb 2011 12:14:04 +0100 Subject: extend limit to 512 from 255, plus minor fix --- lib/ot_predictions.rb | 3 ++- lib/validation_db.rb | 20 ++++++++++---------- test/test_examples.rb | 10 ++++++++++ validation/validation_service.rb | 6 +++++- validation/validation_test.rb | 12 ++++++++++-- 5 files changed, 37 insertions(+), 14 deletions(-) diff --git a/lib/ot_predictions.rb b/lib/ot_predictions.rb index 116b4db..eb80205 100755 --- a/lib/ot_predictions.rb +++ b/lib/ot_predictions.rb @@ -158,7 +158,8 @@ module Lib else v = dataset.data_entries[compound][feature] end - raise "no array" unless v.is_a?(Array) + return nil if v==nil + raise "no array "+v.class.to_s+" : '"+v.to_s+"'" unless v.is_a?(Array) if v.size>1 v.uniq! raise "not yet implemented: multiple non-equal values "+compound.to_s+" "+v.inspect if v.size>1 diff --git a/lib/validation_db.rb b/lib/validation_db.rb index 25f1d66..d12f5ce 100755 --- a/lib/validation_db.rb +++ b/lib/validation_db.rb @@ -58,14 +58,14 @@ module Lib include DataMapper::Resource property :id, Serial - property :validation_type, String, :length => 255 - property :model_uri, String, :length => 255 - property :algorithm_uri, String, :length => 255 - property :training_dataset_uri, String, :length => 255 - property :test_target_dataset_uri, String, :length => 255 - property :test_dataset_uri, String, :length => 255 - property :prediction_dataset_uri, String, :length => 255 - property :prediction_feature, String, :length => 255 + property :validation_type, String, :length => 512 + property :model_uri, String, :length => 512 + property :algorithm_uri, String, :length => 512 + property :training_dataset_uri, String, :length => 512 + property :test_target_dataset_uri, String, :length => 512 + property :test_dataset_uri, String, :length => 512 + property :prediction_dataset_uri, String, :length => 512 + property :prediction_feature, String, :length => 512 property :created_at, DateTime property :num_instances, Integer property :num_without_class, Integer @@ -121,8 +121,8 @@ module Lib include DataMapper::Resource property :id, Serial - property :algorithm_uri, String, :length => 255 - property :dataset_uri, String, :length => 255 + property :algorithm_uri, String, :length => 512 + property :dataset_uri, String, :length => 512 property :created_at, DateTime property :num_folds, Integer, :default => 10 property :random_seed, Integer, :default => 1 diff --git a/test/test_examples.rb b/test/test_examples.rb index 503bc13..b2b9c19 100755 --- a/test/test_examples.rb +++ b/test/test_examples.rb @@ -394,6 +394,14 @@ module ValidationExamples end end + class AmbitAquaticModelValidation < ModelValidation + def initialize + @model_uri = "http://apps.ideaconsult.net:8080/ambit2/model/130668" + @test_dataset_uri = "http://apps.ideaconsult.net:8080/ambit2/dataset/186293?feature_uris[]=http://apps.ideaconsult.net:8080/ambit2/feature/430904&feature_uris[]=http://apps.ideaconsult.net:8080/ambit2/feature/430905" + @prediction_feature = "http://apps.ideaconsult.net:8080/ambit2/feature/430905" + end + end + class AmbitTrainingTest < TrainingTestValidation def initialize @training_dataset_uri = "https://ambit.uni-plovdiv.bg:8443/ambit2/dataset/R401560" @@ -590,6 +598,8 @@ module ValidationExamples "19f" => [ AmbitBursiTrainingTestSplit ], "19g" => [ AmbitJ48TrainingTest ], "19h" => [ AmbitJ48TrainingTestSplit ], + "19i" => [ AmbitAquaticModelValidation ], + } diff --git a/validation/validation_service.rb b/validation/validation_service.rb index d917a96..a1efba5 100755 --- a/validation/validation_service.rb +++ b/validation/validation_service.rb @@ -228,7 +228,11 @@ module Validation :num_unpredicted => prediction.num_unpredicted, :percent_unpredicted => prediction.percent_unpredicted, :finished => true} - self.save + begin + self.save + rescue DataMapper::SaveFailureError => e + raise "could not save validation: "+e.resource.errors.inspect + end end task.progress(100) if task diff --git a/validation/validation_test.rb b/validation/validation_test.rb index 3f10ca2..ffb25c4 100755 --- a/validation/validation_test.rb +++ b/validation/validation_test.rb @@ -115,6 +115,14 @@ class ValidationTest < Test::Unit::TestCase # get "/crossvalidation/2",nil,'HTTP_ACCEPT' => "application/rdf+xml" #puts last_response.body #exit + +# OpenTox::Crossvalidation.create( +# :dataset_uri=>"http://local-ot/dataset/1874", +# :algorithm_uri=>"http://local-ot/algorithm/lazar", +# :prediction_feature=>"http://local-ot/dataset/1874/feature/Hamster%20Carcinogenicity", +# :algorithm_params=>"feature_generation_uri=http://local-ot/algorithm/fminer/bbrc") + +#http://local-ot/dataset/1878 #get "/crossvalidation?model_uri=lazar" # post "/test_validation",:select=>"6d" #,:report=>"yes,please" @@ -209,7 +217,7 @@ class ValidationTest < Test::Unit::TestCase # d2 = d.split(d.compounds[0..5], d.features.keys[0..1], {}, SUBJECTID) # puts d2.to_yaml - run_test("1b")#,:validation_uri=>"http://local-ot/validation/253") #,"http://local-ot/validation/28")#,"http://local-ot/validation/394"); + # run_test("1b")#,:validation_uri=>"http://local-ot/validation/253") #,"http://local-ot/validation/28")#,"http://local-ot/validation/394"); #run_test("3b",:validation_uri=>"http://local-ot/validation/crossvalidation/45") #,{:dataset_uri => "http://local-ot/dataset/773", :prediction_feature => "http://local-ot/dataset/773/feature/Hamster%20Carcinogenicity"}) @@ -249,7 +257,7 @@ class ValidationTest < Test::Unit::TestCase #delete "/1",:subjectid=>SUBJECTID - #run_test("7b","http://local-ot/validation/21") + run_test("19i") #run_test("3a","http://local-ot/validation/crossvalidation/4") #run_test("3b","http://local-ot/validation/crossvalidation/3") -- cgit v1.2.3 From 6e9d20a1417ad2f4548194d226f6b3f2b3c47036 Mon Sep 17 00:00:00 2001 From: root Date: Thu, 3 Mar 2011 12:16:51 +0000 Subject: contradicting multiple measurements ignored --- lib/ot_predictions.rb | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/lib/ot_predictions.rb b/lib/ot_predictions.rb index eb80205..f812854 100755 --- a/lib/ot_predictions.rb +++ b/lib/ot_predictions.rb @@ -162,8 +162,12 @@ module Lib raise "no array "+v.class.to_s+" : '"+v.to_s+"'" unless v.is_a?(Array) if v.size>1 v.uniq! - raise "not yet implemented: multiple non-equal values "+compound.to_s+" "+v.inspect if v.size>1 - v = v[0] + if v.size>1 + v = nil + LOGGER.warn "not yet implemented: multiple non-equal values "+compound.to_s+" "+v.inspect + else + v = v[0] + end elsif v.size==1 v = v[0] else -- cgit v1.2.3 From d0dbdc711cddff823db456136a2604ab1912ee53 Mon Sep 17 00:00:00 2001 From: root Date: Thu, 3 Mar 2011 12:36:10 +0000 Subject: remaining merge conflicts removed --- application.rb | 8 +++++ db/migrate/000_drop_validations.rb | 13 -------- db/migrate/001_init_validation.rb | 65 -------------------------------------- db/migrate/002_init_reports.rb | 36 --------------------- example.rb | 39 ----------------------- report/report_test.rb | 2 +- test/test_examples.rb | 8 ----- test/test_examples_util.rb | 8 ----- 8 files changed, 9 insertions(+), 170 deletions(-) delete mode 100755 db/migrate/000_drop_validations.rb delete mode 100755 db/migrate/001_init_validation.rb delete mode 100755 db/migrate/002_init_reports.rb diff --git a/application.rb b/application.rb index f543167..ad9653a 100755 --- a/application.rb +++ b/application.rb @@ -3,6 +3,14 @@ gem "opentox-ruby", "~> 0" [ 'sinatra', 'sinatra/url_for', 'opentox-ruby' ].each do |lib| require lib end +['dm-core', 'dm-serializer', 'dm-timestamps', 'dm-types', 'dm-migrations', 'dm-validations' ].each{|lib| require lib } +DataMapper.setup(:default, { + :adapter => CONFIG[:database][:adapter], + :database => CONFIG[:database][:database], + :username => CONFIG[:database][:username], + :password => CONFIG[:database][:password], + :host => CONFIG[:database][:host]}) +set :lock, true #unless(defined? LOGGER) #LOGGER = Logger.new(STDOUT) diff --git a/db/migrate/000_drop_validations.rb b/db/migrate/000_drop_validations.rb deleted file mode 100755 index fb70967..0000000 --- a/db/migrate/000_drop_validations.rb +++ /dev/null @@ -1,13 +0,0 @@ - -class DropValidations < ActiveRecord::Migration - def self.up - # drop_table :validations if table_exists? :validations - # drop_table :crossvalidations if table_exists? :crossvalidations - end - - def self.down - #drop_table :validations if table_exists? :validations - #drop_table :crossvalidations if table_exists? :crossvalidations - end -end - diff --git a/db/migrate/001_init_validation.rb b/db/migrate/001_init_validation.rb deleted file mode 100755 index 2189568..0000000 --- a/db/migrate/001_init_validation.rb +++ /dev/null @@ -1,65 +0,0 @@ - -class InitValidation < ActiveRecord::Migration - def self.up - - create_table :crossvalidations do |t| - - [:algorithm_uri, - :dataset_uri ].each do |p| - t.column p, :string, :limit => 255 - end - - [:created_at ].each do |p| - t.column p, :datetime - end - - [:num_folds, - :random_seed ].each do |p| - t.column p, :integer, :null => false - end - - [ :stratified, :finished ].each do |p| - t.column p, :boolean, :null => false - end - end - - create_table :validations do |t| - - [:validation_type, - :model_uri, - :algorithm_uri, - :training_dataset_uri, - :test_target_dataset_uri, - :test_dataset_uri, - :prediction_dataset_uri, - :prediction_feature].each do |p| - t.column p, :string, :limit => 255 - end - - [:created_at ].each do |p| - t.column p, :datetime - end - - [:real_runtime, :num_instances, :num_without_class, :num_unpredicted, :crossvalidation_id, :crossvalidation_fold ].each do |p| - t.column p, :integer - end - - [:real_runtime, :percent_without_class, :percent_unpredicted ].each do |p| - t.column p, :float - end - - [:classification_statistics, :regression_statistics].each do |p| - t.column(p, :text, :limit => 16320) - end - - [ :finished ].each do |p| - t.column p, :boolean, :null => false - end - end - end - - def self.down - drop_table :validations if table_exists? :validations - drop_table :crossvalidations if table_exists? :crossvalidations - end -end diff --git a/db/migrate/002_init_reports.rb b/db/migrate/002_init_reports.rb deleted file mode 100755 index dcf44a1..0000000 --- a/db/migrate/002_init_reports.rb +++ /dev/null @@ -1,36 +0,0 @@ - -class InitReports < ActiveRecord::Migration - def self.up - - create_table :report_datum do |t| - - [:report_uri, - :report_type - ].each do |p| - t.column p, :string, :limit => 255 - end - - [:created_at ].each do |p| - t.column p, :datetime - end - - [:validation_uris, :crossvalidation_uris, :model_uris, :algorithm_uris].each do |p| - t.column(p, :text, :limit => 16320) - end - end - end - - def self.down - drop_table :report_datum if table_exists? :report_datum - if CONFIG[:reports] and CONFIG[:reports][:report_dir] - ["validation", "crossvalidation", "algorithm_comparison"].each do |t| - dir = File.join(CONFIG[:reports][:report_dir],t) - if File.exist?(dir) - puts "deleting dir "+dir.to_s - FileUtils.rm_rf(dir) - end - end - end - end -end - diff --git a/example.rb b/example.rb index c691375..07151a8 100755 --- a/example.rb +++ b/example.rb @@ -58,44 +58,6 @@ class Example #TODO subjectid = nil -<<<<<<< HEAD - #delete_all(CONFIG[:services]["opentox-dataset"]) - log OpenTox::RestClientWrapper.delete CONFIG[:services]["opentox-dataset"] - - log "upload dataset" - halt 400,"File not found: "+@@file.path.to_s unless File.exist?(@@file.path) - data = File.read(@@file.path) - data_uri = OpenTox::RestClientWrapper.post(CONFIG[:services]["opentox-dataset"],{:content_type => @@file_type},data).chomp("\n") - - log "train-test-validation" - #delete_all(CONFIG[:services]["opentox-model"]) - OpenTox::RestClientWrapper.delete CONFIG[:services]["opentox-model"] - - split_params = Validation::Util.train_test_dataset_split(data_uri, URI.decode(@@feature), 0.9, 1) - v = Validation::Validation.new :training_dataset_uri => split_params[:training_dataset_uri], - :test_dataset_uri => split_params[:test_dataset_uri], - :test_target_dataset_uri => data_uri, - :prediction_feature => URI.decode(@@feature), - :algorithm_uri => @@alg - v.validate_algorithm( @@alg_params ) - - log "crossvalidation" - cv = Validation::Crossvalidation.new({ :dataset_uri => data_uri, :algorithm_uri => @@alg, :num_folds => 5, :stratified => false }) - cv.create_cv_datasets( URI.decode(@@feature) ) - cv.perform_cv( @@alg_params ) - - log "create validation report" - rep = Reports::ReportService.new(File.join(CONFIG[:services]["opentox-validation"],"report")) - rep.delete_all_reports("validation") - rep.create_report("validation",v.validation_uri) - - log "create crossvalidation report" - rep.delete_all_reports("crossvalidation") - rep.create_report("crossvalidation",cv.crossvalidation_uri) - - log "done" - @@summary -======= task = OpenTox::Task.create("prepare examples", "n/a") do |task| @@summary = "" #delete validations @@ -163,7 +125,6 @@ class Example @@summary end return_task(task) ->>>>>>> mguetlein/test end # performs all curl calls listed in examples after ">>>", next line is added if line ends with "\" diff --git a/report/report_test.rb b/report/report_test.rb index 57e867b..571d6d8 100755 --- a/report/report_test.rb +++ b/report/report_test.rb @@ -344,4 +344,4 @@ end # # end # -#end +#end \ No newline at end of file diff --git a/test/test_examples.rb b/test/test_examples.rb index 9476ed7..3c6f00e 100755 --- a/test/test_examples.rb +++ b/test/test_examples.rb @@ -188,11 +188,7 @@ module ValidationExamples class LazarHamsterTrainingTest < HamsterTrainingTest def initialize @algorithm_uri = File.join(CONFIG[:services]["opentox-algorithm"],"lazar") -<<<<<<< HEAD - @algorithm_params = "feature_generation_uri="+File.join(CONFIG[:services]["opentox-algorithm"],"fminer") -======= @algorithm_params = "feature_generation_uri="+File.join(CONFIG[:services]["opentox-algorithm"],"fminer/bbrc") ->>>>>>> mguetlein/test super end end @@ -220,11 +216,7 @@ module ValidationExamples class LazarHamsterCrossvalidation < HamsterCrossvalidation def initialize @algorithm_uri = File.join(CONFIG[:services]["opentox-algorithm"],"lazar") -<<<<<<< HEAD - @algorithm_params = "feature_generation_uri="+File.join(CONFIG[:services]["opentox-algorithm"],"fminer") -======= @algorithm_params = "feature_generation_uri="+File.join(CONFIG[:services]["opentox-algorithm"],"fminer/bbrc") ->>>>>>> mguetlein/test super end end diff --git a/test/test_examples_util.rb b/test/test_examples_util.rb index 56bee6b..a5f2867 100755 --- a/test/test_examples_util.rb +++ b/test/test_examples_util.rb @@ -66,11 +66,7 @@ module ValidationExamples $test_case.post uri,params return wait($test_case.last_response.body) else -<<<<<<< HEAD - return OpenTox::RestClientWrapper.post(File.join(CONFIG[:services]["opentox-validation"],uri),params) -======= return OpenTox::RestClientWrapper.post(File.join(CONFIG[:services]["opentox-validation"],uri),params,nil,waiting_task).to_s ->>>>>>> mguetlein/test end end @@ -93,11 +89,7 @@ module ValidationExamples $test_case.delete uri,{:subjectid => SUBJECTID},'HTTP_ACCEPT' => accept_header return wait($test_case.last_response.body) else -<<<<<<< HEAD - return OpenTox::RestClientWrapper.get(File.join(CONFIG[:services]["opentox-validation"],uri),{:accept => accept_header}) -======= return OpenTox::RestClientWrapper.delete(File.join(CONFIG[:services]["opentox-validation"],uri),{:accept => accept_header,:subjectid => SUBJECTID}) ->>>>>>> mguetlein/test end end -- cgit v1.2.3 From e5128684c271afb14f0cc43089ece23d64f12701 Mon Sep 17 00:00:00 2001 From: Christoph Helma Date: Thu, 10 Mar 2011 11:58:12 +0100 Subject: README updated --- README | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README b/README index 80d390f..7191239 100644 --- a/README +++ b/README @@ -3,8 +3,10 @@ OpenTox Validation * An OpenTox REST Webservice for validation and reporting -* see http://opentox.org/dev/apis/api-1.1/Validation for a current version of the API +API documentation +----------------- -* online test-service not yet available +http://rdoc.info/github/opentox/validation + +Copyright (c) 2009-2011 Christoph Helma, Martin Guetlein, Micha Rautenberg, Andreas Maunz, David Vorgrimmler, Denis Gebele. See LICENSE for details. -* see EXAMPLES file for examples using curl, a version without placeholders (in <> brackets) will be available soon -- cgit v1.2.3 From 7cd9c9656010b88b7e41477e1571cb7e722650c4 Mon Sep 17 00:00:00 2001 From: Christoph Helma Date: Fri, 11 Mar 2011 14:26:38 +0100 Subject: README converted to markdown, .yardopts added --- .yardopts | 1 + README | 12 ------------ README.md | 9 +++++++++ 3 files changed, 10 insertions(+), 12 deletions(-) create mode 100644 .yardopts delete mode 100644 README create mode 100644 README.md diff --git a/.yardopts b/.yardopts new file mode 100644 index 0000000..c1a7ad0 --- /dev/null +++ b/.yardopts @@ -0,0 +1 @@ +application.rb diff --git a/README b/README deleted file mode 100644 index 7191239..0000000 --- a/README +++ /dev/null @@ -1,12 +0,0 @@ -OpenTox Validation -================== - -* An OpenTox REST Webservice for validation and reporting - -API documentation ------------------ - -http://rdoc.info/github/opentox/validation - -Copyright (c) 2009-2011 Christoph Helma, Martin Guetlein, Micha Rautenberg, Andreas Maunz, David Vorgrimmler, Denis Gebele. See LICENSE for details. - diff --git a/README.md b/README.md new file mode 100644 index 0000000..4bbec5d --- /dev/null +++ b/README.md @@ -0,0 +1,9 @@ +OpenTox Validation +================== + +* An OpenTox REST Webservice for validation and reporting + +[API documentation](http://rdoc.info/github/opentox/validation) +-------------------------------------------------------------- + +Copyright (c) 2009-2011 Martin Guetlein, Christoph Helma. See LICENSE for details. -- cgit v1.2.3